{"id":"bc3032a1e31439ae5812eadb6f6d2bfd","_format":"hh-sol-build-info-1","solcVersion":"0.8.30","solcLongVersion":"0.8.30+commit.73712a01","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/EntryPoint.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity ^0.8.23;\n/* solhint-disable avoid-low-level-calls */\n/* solhint-disable no-inline-assembly */\n\nimport \"../interfaces/IAccount.sol\";\nimport \"../interfaces/IAccountExecute.sol\";\nimport \"../interfaces/IPaymaster.sol\";\nimport \"../interfaces/IEntryPoint.sol\";\n\nimport \"../utils/Exec.sol\";\nimport \"./StakeManager.sol\";\nimport \"./SenderCreator.sol\";\nimport \"./Helpers.sol\";\nimport \"./NonceManager.sol\";\nimport \"./UserOperationLib.sol\";\n\nimport \"@openzeppelin/contracts/utils/introspection/ERC165.sol\";\nimport \"@openzeppelin/contracts/utils/ReentrancyGuard.sol\";\n\n/*\n * Account-Abstraction (EIP-4337) singleton EntryPoint implementation.\n * Only one instance required on each chain.\n */\n\n/// @custom:security-contact https://bounty.ethereum.org\ncontract EntryPoint is IEntryPoint, StakeManager, NonceManager, ReentrancyGuard, ERC165 {\n\n    using UserOperationLib for PackedUserOperation;\n\n    SenderCreator private immutable _senderCreator = new SenderCreator();\n\n    function senderCreator() internal view virtual returns (SenderCreator) {\n        return _senderCreator;\n    }\n\n    //compensate for innerHandleOps' emit message and deposit refund.\n    // allow some slack for future gas price changes.\n    uint256 private constant INNER_GAS_OVERHEAD = 10000;\n\n    // Marker for inner call revert on out of gas\n    bytes32 private constant INNER_OUT_OF_GAS = hex\"deaddead\";\n    bytes32 private constant INNER_REVERT_LOW_PREFUND = hex\"deadaa51\";\n\n    uint256 private constant REVERT_REASON_MAX_LEN = 2048;\n    uint256 private constant PENALTY_PERCENT = 10;\n\n    /// @inheritdoc IERC165\n    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n        // note: solidity \"type(IEntryPoint).interfaceId\" is without inherited methods but we want to check everything\n        return interfaceId == (type(IEntryPoint).interfaceId ^ type(IStakeManager).interfaceId ^ type(INonceManager).interfaceId) ||\n            interfaceId == type(IEntryPoint).interfaceId ||\n            interfaceId == type(IStakeManager).interfaceId ||\n            interfaceId == type(INonceManager).interfaceId ||\n            super.supportsInterface(interfaceId);\n    }\n\n    /**\n     * Compensate the caller's beneficiary address with the collected fees of all UserOperations.\n     * @param beneficiary - The address to receive the fees.\n     * @param amount      - Amount to transfer.\n     */\n    function _compensate(address payable beneficiary, uint256 amount) internal {\n        require(beneficiary != address(0), \"AA90 invalid beneficiary\");\n        (bool success, ) = beneficiary.call{value: amount}(\"\");\n        require(success, \"AA91 failed send to beneficiary\");\n    }\n\n    /**\n     * Execute a user operation.\n     * @param opIndex    - Index into the opInfo array.\n     * @param userOp     - The userOp to execute.\n     * @param opInfo     - The opInfo filled by validatePrepayment for this userOp.\n     * @return collected - The total amount this userOp paid.\n     */\n    function _executeUserOp(\n        uint256 opIndex,\n        PackedUserOperation calldata userOp,\n        UserOpInfo memory opInfo\n    )\n    internal\n    returns\n    (uint256 collected) {\n        uint256 preGas = gasleft();\n        bytes memory context = getMemoryBytesFromOffset(opInfo.contextOffset);\n        bool success;\n        {\n            uint256 saveFreePtr;\n            assembly (\"memory-safe\") {\n                saveFreePtr := mload(0x40)\n            }\n            bytes calldata callData = userOp.callData;\n            bytes memory innerCall;\n            bytes4 methodSig;\n            assembly {\n                let len := callData.length\n                if gt(len, 3) {\n                    methodSig := calldataload(callData.offset)\n                }\n            }\n            if (methodSig == IAccountExecute.executeUserOp.selector) {\n                bytes memory executeUserOp = abi.encodeCall(IAccountExecute.executeUserOp, (userOp, opInfo.userOpHash));\n                innerCall = abi.encodeCall(this.innerHandleOp, (executeUserOp, opInfo, context));\n            } else\n            {\n                innerCall = abi.encodeCall(this.innerHandleOp, (callData, opInfo, context));\n            }\n            assembly (\"memory-safe\") {\n                success := call(gas(), address(), 0, add(innerCall, 0x20), mload(innerCall), 0, 32)\n                collected := mload(0)\n                mstore(0x40, saveFreePtr)\n            }\n        }\n        if (!success) {\n            bytes32 innerRevertCode;\n            assembly (\"memory-safe\") {\n                let len := returndatasize()\n                if eq(32,len) {\n                    returndatacopy(0, 0, 32)\n                    innerRevertCode := mload(0)\n                }\n            }\n            if (innerRevertCode == INNER_OUT_OF_GAS) {\n                // handleOps was called with gas limit too low. abort entire bundle.\n                //can only be caused by bundler (leaving not enough gas for inner call)\n                revert FailedOp(opIndex, \"AA95 out of gas\");\n            } else if (innerRevertCode == INNER_REVERT_LOW_PREFUND) {\n                // innerCall reverted on prefund too low. treat entire prefund as \"gas cost\"\n                uint256 actualGas = preGas - gasleft() + opInfo.preOpGas;\n                uint256 actualGasCost = opInfo.prefund;\n                emitPrefundTooLow(opInfo);\n                emitUserOperationEvent(opInfo, false, actualGasCost, actualGas);\n                collected = actualGasCost;\n            } else {\n                emit PostOpRevertReason(\n                    opInfo.userOpHash,\n                    opInfo.mUserOp.sender,\n                    opInfo.mUserOp.nonce,\n                    Exec.getReturnData(REVERT_REASON_MAX_LEN)\n                );\n\n                uint256 actualGas = preGas - gasleft() + opInfo.preOpGas;\n                collected = _postExecution(\n                    IPaymaster.PostOpMode.postOpReverted,\n                    opInfo,\n                    context,\n                    actualGas\n                );\n            }\n        }\n    }\n\n    function emitUserOperationEvent(UserOpInfo memory opInfo, bool success, uint256 actualGasCost, uint256 actualGas) internal virtual {\n        emit UserOperationEvent(\n            opInfo.userOpHash,\n            opInfo.mUserOp.sender,\n            opInfo.mUserOp.paymaster,\n            opInfo.mUserOp.nonce,\n            success,\n            actualGasCost,\n            actualGas\n        );\n    }\n\n    function emitPrefundTooLow(UserOpInfo memory opInfo) internal virtual {\n        emit UserOperationPrefundTooLow(\n            opInfo.userOpHash,\n            opInfo.mUserOp.sender,\n            opInfo.mUserOp.nonce\n        );\n    }\n\n    /// @inheritdoc IEntryPoint\n    function handleOps(\n        PackedUserOperation[] calldata ops,\n        address payable beneficiary\n    ) public nonReentrant {\n        uint256 opslen = ops.length;\n        UserOpInfo[] memory opInfos = new UserOpInfo[](opslen);\n\n        unchecked {\n            for (uint256 i = 0; i < opslen; i++) {\n                UserOpInfo memory opInfo = opInfos[i];\n                (\n                    uint256 validationData,\n                    uint256 pmValidationData\n                ) = _validatePrepayment(i, ops[i], opInfo);\n                _validateAccountAndPaymasterValidationData(\n                    i,\n                    validationData,\n                    pmValidationData,\n                    address(0)\n                );\n            }\n\n            uint256 collected = 0;\n            emit BeforeExecution();\n\n            for (uint256 i = 0; i < opslen; i++) {\n                collected += _executeUserOp(i, ops[i], opInfos[i]);\n            }\n\n            _compensate(beneficiary, collected);\n        }\n    }\n\n    /// @inheritdoc IEntryPoint\n    function handleAggregatedOps(\n        UserOpsPerAggregator[] calldata opsPerAggregator,\n        address payable beneficiary\n    ) public nonReentrant {\n\n        uint256 opasLen = opsPerAggregator.length;\n        uint256 totalOps = 0;\n        for (uint256 i = 0; i < opasLen; i++) {\n            UserOpsPerAggregator calldata opa = opsPerAggregator[i];\n            PackedUserOperation[] calldata ops = opa.userOps;\n            IAggregator aggregator = opa.aggregator;\n\n            //address(1) is special marker of \"signature error\"\n            require(\n                address(aggregator) != address(1),\n                \"AA96 invalid aggregator\"\n            );\n\n            if (address(aggregator) != address(0)) {\n                // solhint-disable-next-line no-empty-blocks\n                try aggregator.validateSignatures(ops, opa.signature) {} catch {\n                    revert SignatureValidationFailed(address(aggregator));\n                }\n            }\n\n            totalOps += ops.length;\n        }\n\n        UserOpInfo[] memory opInfos = new UserOpInfo[](totalOps);\n\n        uint256 opIndex = 0;\n        for (uint256 a = 0; a < opasLen; a++) {\n            UserOpsPerAggregator calldata opa = opsPerAggregator[a];\n            PackedUserOperation[] calldata ops = opa.userOps;\n            IAggregator aggregator = opa.aggregator;\n\n            uint256 opslen = ops.length;\n            for (uint256 i = 0; i < opslen; i++) {\n                UserOpInfo memory opInfo = opInfos[opIndex];\n                (\n                    uint256 validationData,\n                    uint256 paymasterValidationData\n                ) = _validatePrepayment(opIndex, ops[i], opInfo);\n                _validateAccountAndPaymasterValidationData(\n                    i,\n                    validationData,\n                    paymasterValidationData,\n                    address(aggregator)\n                );\n                opIndex++;\n            }\n        }\n\n        emit BeforeExecution();\n\n        uint256 collected = 0;\n        opIndex = 0;\n        for (uint256 a = 0; a < opasLen; a++) {\n            UserOpsPerAggregator calldata opa = opsPerAggregator[a];\n            emit SignatureAggregatorChanged(address(opa.aggregator));\n            PackedUserOperation[] calldata ops = opa.userOps;\n            uint256 opslen = ops.length;\n\n            for (uint256 i = 0; i < opslen; i++) {\n                collected += _executeUserOp(opIndex, ops[i], opInfos[opIndex]);\n                opIndex++;\n            }\n        }\n        emit SignatureAggregatorChanged(address(0));\n\n        _compensate(beneficiary, collected);\n    }\n\n    /**\n     * A memory copy of UserOp static fields only.\n     * Excluding: callData, initCode and signature. Replacing paymasterAndData with paymaster.\n     */\n    struct MemoryUserOp {\n        address sender;\n        uint256 nonce;\n        uint256 verificationGasLimit;\n        uint256 callGasLimit;\n        uint256 paymasterVerificationGasLimit;\n        uint256 paymasterPostOpGasLimit;\n        uint256 preVerificationGas;\n        address paymaster;\n        uint256 maxFeePerGas;\n        uint256 maxPriorityFeePerGas;\n    }\n\n    struct UserOpInfo {\n        MemoryUserOp mUserOp;\n        bytes32 userOpHash;\n        uint256 prefund;\n        uint256 contextOffset;\n        uint256 preOpGas;\n    }\n\n    /**\n     * Inner function to handle a UserOperation.\n     * Must be declared \"external\" to open a call context, but it can only be called by handleOps.\n     * @param callData - The callData to execute.\n     * @param opInfo   - The UserOpInfo struct.\n     * @param context  - The context bytes.\n     * @return actualGasCost - the actual cost in eth this UserOperation paid for gas\n     */\n    function innerHandleOp(\n        bytes memory callData,\n        UserOpInfo memory opInfo,\n        bytes calldata context\n    ) external returns (uint256 actualGasCost) {\n        uint256 preGas = gasleft();\n        require(msg.sender == address(this), \"AA92 internal call only\");\n        MemoryUserOp memory mUserOp = opInfo.mUserOp;\n\n        uint256 callGasLimit = mUserOp.callGasLimit;\n        unchecked {\n            // handleOps was called with gas limit too low. abort entire bundle.\n            if (\n                gasleft() * 63 / 64 <\n                callGasLimit +\n                mUserOp.paymasterPostOpGasLimit +\n                INNER_GAS_OVERHEAD\n            ) {\n                assembly (\"memory-safe\") {\n                    mstore(0, INNER_OUT_OF_GAS)\n                    revert(0, 32)\n                }\n            }\n        }\n\n        IPaymaster.PostOpMode mode = IPaymaster.PostOpMode.opSucceeded;\n        if (callData.length > 0) {\n            bool success = Exec.call(mUserOp.sender, 0, callData, callGasLimit);\n            if (!success) {\n                bytes memory result = Exec.getReturnData(REVERT_REASON_MAX_LEN);\n                if (result.length > 0) {\n                    emit UserOperationRevertReason(\n                        opInfo.userOpHash,\n                        mUserOp.sender,\n                        mUserOp.nonce,\n                        result\n                    );\n                }\n                mode = IPaymaster.PostOpMode.opReverted;\n            }\n        }\n\n        unchecked {\n            uint256 actualGas = preGas - gasleft() + opInfo.preOpGas;\n            return _postExecution(mode, opInfo, context, actualGas);\n        }\n    }\n\n    /// @inheritdoc IEntryPoint\n    function getUserOpHash(\n        PackedUserOperation calldata userOp\n    ) public view returns (bytes32) {\n        return\n            keccak256(abi.encode(userOp.hash(), address(this), block.chainid));\n    }\n\n    /**\n     * Copy general fields from userOp into the memory opInfo structure.\n     * @param userOp  - The user operation.\n     * @param mUserOp - The memory user operation.\n     */\n    function _copyUserOpToMemory(\n        PackedUserOperation calldata userOp,\n        MemoryUserOp memory mUserOp\n    ) internal pure {\n        mUserOp.sender = userOp.sender;\n        mUserOp.nonce = userOp.nonce;\n        (mUserOp.verificationGasLimit, mUserOp.callGasLimit) = UserOperationLib.unpackUints(userOp.accountGasLimits);\n        mUserOp.preVerificationGas = userOp.preVerificationGas;\n        (mUserOp.maxPriorityFeePerGas, mUserOp.maxFeePerGas) = UserOperationLib.unpackUints(userOp.gasFees);\n        bytes calldata paymasterAndData = userOp.paymasterAndData;\n        if (paymasterAndData.length > 0) {\n            require(\n                paymasterAndData.length >= UserOperationLib.PAYMASTER_DATA_OFFSET,\n                \"AA93 invalid paymasterAndData\"\n            );\n            (mUserOp.paymaster, mUserOp.paymasterVerificationGasLimit, mUserOp.paymasterPostOpGasLimit) = UserOperationLib.unpackPaymasterStaticFields(paymasterAndData);\n        } else {\n            mUserOp.paymaster = address(0);\n            mUserOp.paymasterVerificationGasLimit = 0;\n            mUserOp.paymasterPostOpGasLimit = 0;\n        }\n    }\n\n    /**\n     * Get the required prefunded gas fee amount for an operation.\n     * @param mUserOp - The user operation in memory.\n     */\n    function _getRequiredPrefund(\n        MemoryUserOp memory mUserOp\n    ) internal pure returns (uint256 requiredPrefund) {\n        unchecked {\n            uint256 requiredGas = mUserOp.verificationGasLimit +\n                mUserOp.callGasLimit +\n                mUserOp.paymasterVerificationGasLimit +\n                mUserOp.paymasterPostOpGasLimit +\n                mUserOp.preVerificationGas;\n\n            requiredPrefund = requiredGas * mUserOp.maxFeePerGas;\n        }\n    }\n\n    /**\n     * Create sender smart contract account if init code is provided.\n     * @param opIndex  - The operation index.\n     * @param opInfo   - The operation info.\n     * @param initCode - The init code for the smart contract account.\n     */\n    function _createSenderIfNeeded(\n        uint256 opIndex,\n        UserOpInfo memory opInfo,\n        bytes calldata initCode\n    ) internal {\n        if (initCode.length != 0) {\n            address sender = opInfo.mUserOp.sender;\n            if (sender.code.length != 0)\n                revert FailedOp(opIndex, \"AA10 sender already constructed\");\n            address sender1 = senderCreator().createSender{\n                gas: opInfo.mUserOp.verificationGasLimit\n            }(initCode);\n            if (sender1 == address(0))\n                revert FailedOp(opIndex, \"AA13 initCode failed or OOG\");\n            if (sender1 != sender)\n                revert FailedOp(opIndex, \"AA14 initCode must return sender\");\n            if (sender1.code.length == 0)\n                revert FailedOp(opIndex, \"AA15 initCode must create sender\");\n            address factory = address(bytes20(initCode[0:20]));\n            emit AccountDeployed(\n                opInfo.userOpHash,\n                sender,\n                factory,\n                opInfo.mUserOp.paymaster\n            );\n        }\n    }\n\n    /// @inheritdoc IEntryPoint\n    function getSenderAddress(bytes calldata initCode) public {\n        address sender = senderCreator().createSender(initCode);\n        revert SenderAddressResult(sender);\n    }\n\n    /**\n     * Call account.validateUserOp.\n     * Revert (with FailedOp) in case validateUserOp reverts, or account didn't send required prefund.\n     * Decrement account's deposit if needed.\n     * @param opIndex         - The operation index.\n     * @param op              - The user operation.\n     * @param opInfo          - The operation info.\n     * @param requiredPrefund - The required prefund amount.\n     */\n    function _validateAccountPrepayment(\n        uint256 opIndex,\n        PackedUserOperation calldata op,\n        UserOpInfo memory opInfo,\n        uint256 requiredPrefund,\n        uint256 verificationGasLimit\n    )\n        internal\n        returns (\n            uint256 validationData\n        )\n    {\n        unchecked {\n            MemoryUserOp memory mUserOp = opInfo.mUserOp;\n            address sender = mUserOp.sender;\n            _createSenderIfNeeded(opIndex, opInfo, op.initCode);\n            address paymaster = mUserOp.paymaster;\n            uint256 missingAccountFunds = 0;\n            if (paymaster == address(0)) {\n                uint256 bal = balanceOf(sender);\n                missingAccountFunds = bal > requiredPrefund\n                    ? 0\n                    : requiredPrefund - bal;\n            }\n            try\n                IAccount(sender).validateUserOp{\n                    gas: verificationGasLimit\n                }(op, opInfo.userOpHash, missingAccountFunds)\n            returns (uint256 _validationData) {\n                validationData = _validationData;\n            } catch {\n                revert FailedOpWithRevert(opIndex, \"AA23 reverted\", Exec.getReturnData(REVERT_REASON_MAX_LEN));\n            }\n            if (paymaster == address(0)) {\n                DepositInfo storage senderInfo = deposits[sender];\n                uint256 deposit = senderInfo.deposit;\n                if (requiredPrefund > deposit) {\n                    revert FailedOp(opIndex, \"AA21 didn't pay prefund\");\n                }\n                senderInfo.deposit = deposit - requiredPrefund;\n            }\n        }\n    }\n\n    /**\n     * In case the request has a paymaster:\n     *  - Validate paymaster has enough deposit.\n     *  - Call paymaster.validatePaymasterUserOp.\n     *  - Revert with proper FailedOp in case paymaster reverts.\n     *  - Decrement paymaster's deposit.\n     * @param opIndex                            - The operation index.\n     * @param op                                 - The user operation.\n     * @param opInfo                             - The operation info.\n     * @param requiredPreFund                    - The required prefund amount.\n     */\n    function _validatePaymasterPrepayment(\n        uint256 opIndex,\n        PackedUserOperation calldata op,\n        UserOpInfo memory opInfo,\n        uint256 requiredPreFund\n    ) internal returns (bytes memory context, uint256 validationData) {\n        unchecked {\n            uint256 preGas = gasleft();\n            MemoryUserOp memory mUserOp = opInfo.mUserOp;\n            address paymaster = mUserOp.paymaster;\n            DepositInfo storage paymasterInfo = deposits[paymaster];\n            uint256 deposit = paymasterInfo.deposit;\n            if (deposit < requiredPreFund) {\n                revert FailedOp(opIndex, \"AA31 paymaster deposit too low\");\n            }\n            paymasterInfo.deposit = deposit - requiredPreFund;\n            uint256 pmVerificationGasLimit = mUserOp.paymasterVerificationGasLimit;\n            try\n                IPaymaster(paymaster).validatePaymasterUserOp{gas: pmVerificationGasLimit}(\n                    op,\n                    opInfo.userOpHash,\n                    requiredPreFund\n                )\n            returns (bytes memory _context, uint256 _validationData) {\n                context = _context;\n                validationData = _validationData;\n            } catch {\n                revert FailedOpWithRevert(opIndex, \"AA33 reverted\", Exec.getReturnData(REVERT_REASON_MAX_LEN));\n            }\n            if (preGas - gasleft() > pmVerificationGasLimit) {\n                revert FailedOp(opIndex, \"AA36 over paymasterVerificationGasLimit\");\n            }\n        }\n    }\n\n    /**\n     * Revert if either account validationData or paymaster validationData is expired.\n     * @param opIndex                 - The operation index.\n     * @param validationData          - The account validationData.\n     * @param paymasterValidationData - The paymaster validationData.\n     * @param expectedAggregator      - The expected aggregator.\n     */\n    function _validateAccountAndPaymasterValidationData(\n        uint256 opIndex,\n        uint256 validationData,\n        uint256 paymasterValidationData,\n        address expectedAggregator\n    ) internal view {\n        (address aggregator, bool outOfTimeRange) = _getValidationData(\n            validationData\n        );\n        if (expectedAggregator != aggregator) {\n            revert FailedOp(opIndex, \"AA24 signature error\");\n        }\n        if (outOfTimeRange) {\n            revert FailedOp(opIndex, \"AA22 expired or not due\");\n        }\n        // pmAggregator is not a real signature aggregator: we don't have logic to handle it as address.\n        // Non-zero address means that the paymaster fails due to some signature check (which is ok only during estimation).\n        address pmAggregator;\n        (pmAggregator, outOfTimeRange) = _getValidationData(\n            paymasterValidationData\n        );\n        if (pmAggregator != address(0)) {\n            revert FailedOp(opIndex, \"AA34 signature error\");\n        }\n        if (outOfTimeRange) {\n            revert FailedOp(opIndex, \"AA32 paymaster expired or not due\");\n        }\n    }\n\n    /**\n     * Parse validationData into its components.\n     * @param validationData - The packed validation data (sigFailed, validAfter, validUntil).\n     * @return aggregator the aggregator of the validationData\n     * @return outOfTimeRange true if current time is outside the time range of this validationData.\n     */\n    function _getValidationData(\n        uint256 validationData\n    ) internal view returns (address aggregator, bool outOfTimeRange) {\n        if (validationData == 0) {\n            return (address(0), false);\n        }\n        ValidationData memory data = _parseValidationData(validationData);\n        // solhint-disable-next-line not-rely-on-time\n        outOfTimeRange = block.timestamp > data.validUntil || block.timestamp < data.validAfter;\n        aggregator = data.aggregator;\n    }\n\n    /**\n     * Validate account and paymaster (if defined) and\n     * also make sure total validation doesn't exceed verificationGasLimit.\n     * This method is called off-chain (simulateValidation()) and on-chain (from handleOps)\n     * @param opIndex - The index of this userOp into the \"opInfos\" array.\n     * @param userOp  - The userOp to validate.\n     */\n    function _validatePrepayment(\n        uint256 opIndex,\n        PackedUserOperation calldata userOp,\n        UserOpInfo memory outOpInfo\n    )\n        internal\n        returns (uint256 validationData, uint256 paymasterValidationData)\n    {\n        uint256 preGas = gasleft();\n        MemoryUserOp memory mUserOp = outOpInfo.mUserOp;\n        _copyUserOpToMemory(userOp, mUserOp);\n        outOpInfo.userOpHash = getUserOpHash(userOp);\n\n        // Validate all numeric values in userOp are well below 128 bit, so they can safely be added\n        // and multiplied without causing overflow.\n        uint256 verificationGasLimit = mUserOp.verificationGasLimit;\n        uint256 maxGasValues = mUserOp.preVerificationGas |\n            verificationGasLimit |\n            mUserOp.callGasLimit |\n            mUserOp.paymasterVerificationGasLimit |\n            mUserOp.paymasterPostOpGasLimit |\n            mUserOp.maxFeePerGas |\n            mUserOp.maxPriorityFeePerGas;\n        require(maxGasValues <= type(uint120).max, \"AA94 gas values overflow\");\n\n        uint256 requiredPreFund = _getRequiredPrefund(mUserOp);\n        validationData = _validateAccountPrepayment(\n            opIndex,\n            userOp,\n            outOpInfo,\n            requiredPreFund,\n            verificationGasLimit\n        );\n\n        if (!_validateAndUpdateNonce(mUserOp.sender, mUserOp.nonce)) {\n            revert FailedOp(opIndex, \"AA25 invalid account nonce\");\n        }\n\n        unchecked {\n            if (preGas - gasleft() > verificationGasLimit) {\n                revert FailedOp(opIndex, \"AA26 over verificationGasLimit\");\n            }\n        }\n\n        bytes memory context;\n        if (mUserOp.paymaster != address(0)) {\n            (context, paymasterValidationData) = _validatePaymasterPrepayment(\n                opIndex,\n                userOp,\n                outOpInfo,\n                requiredPreFund\n            );\n        }\n        unchecked {\n            outOpInfo.prefund = requiredPreFund;\n            outOpInfo.contextOffset = getOffsetOfMemoryBytes(context);\n            outOpInfo.preOpGas = preGas - gasleft() + userOp.preVerificationGas;\n        }\n    }\n\n    /**\n     * Process post-operation, called just after the callData is executed.\n     * If a paymaster is defined and its validation returned a non-empty context, its postOp is called.\n     * The excess amount is refunded to the account (or paymaster - if it was used in the request).\n     * @param mode      - Whether is called from innerHandleOp, or outside (postOpReverted).\n     * @param opInfo    - UserOp fields and info collected during validation.\n     * @param context   - The context returned in validatePaymasterUserOp.\n     * @param actualGas - The gas used so far by this user operation.\n     */\n    function _postExecution(\n        IPaymaster.PostOpMode mode,\n        UserOpInfo memory opInfo,\n        bytes memory context,\n        uint256 actualGas\n    ) private returns (uint256 actualGasCost) {\n        uint256 preGas = gasleft();\n        unchecked {\n            address refundAddress;\n            MemoryUserOp memory mUserOp = opInfo.mUserOp;\n            uint256 gasPrice = getUserOpGasPrice(mUserOp);\n\n            address paymaster = mUserOp.paymaster;\n            if (paymaster == address(0)) {\n                refundAddress = mUserOp.sender;\n            } else {\n                refundAddress = paymaster;\n                if (context.length > 0) {\n                    actualGasCost = actualGas * gasPrice;\n                    if (mode != IPaymaster.PostOpMode.postOpReverted) {\n                        try IPaymaster(paymaster).postOp{\n                            gas: mUserOp.paymasterPostOpGasLimit\n                        }(mode, context, actualGasCost, gasPrice)\n                        // solhint-disable-next-line no-empty-blocks\n                        {} catch {\n                            bytes memory reason = Exec.getReturnData(REVERT_REASON_MAX_LEN);\n                            revert PostOpReverted(reason);\n                        }\n                    }\n                }\n            }\n            actualGas += preGas - gasleft();\n\n            // Calculating a penalty for unused execution gas\n            {\n                uint256 executionGasLimit = mUserOp.callGasLimit + mUserOp.paymasterPostOpGasLimit;\n                uint256 executionGasUsed = actualGas - opInfo.preOpGas;\n                // this check is required for the gas used within EntryPoint and not covered by explicit gas limits\n                if (executionGasLimit > executionGasUsed) {\n                    uint256 unusedGas = executionGasLimit - executionGasUsed;\n                    uint256 unusedGasPenalty = (unusedGas * PENALTY_PERCENT) / 100;\n                    actualGas += unusedGasPenalty;\n                }\n            }\n\n            actualGasCost = actualGas * gasPrice;\n            uint256 prefund = opInfo.prefund;\n            if (prefund < actualGasCost) {\n                if (mode == IPaymaster.PostOpMode.postOpReverted) {\n                    actualGasCost = prefund;\n                    emitPrefundTooLow(opInfo);\n                    emitUserOperationEvent(opInfo, false, actualGasCost, actualGas);\n                } else {\n                    assembly (\"memory-safe\") {\n                        mstore(0, INNER_REVERT_LOW_PREFUND)\n                        revert(0, 32)\n                    }\n                }\n            } else {\n                uint256 refund = prefund - actualGasCost;\n                _incrementDeposit(refundAddress, refund);\n                bool success = mode == IPaymaster.PostOpMode.opSucceeded;\n                emitUserOperationEvent(opInfo, success, actualGasCost, actualGas);\n            }\n        } // unchecked\n    }\n\n    /**\n     * The gas price this UserOp agrees to pay.\n     * Relayer/block builder might submit the TX with higher priorityFee, but the user should not.\n     * @param mUserOp - The userOp to get the gas price from.\n     */\n    function getUserOpGasPrice(\n        MemoryUserOp memory mUserOp\n    ) internal view returns (uint256) {\n        unchecked {\n            uint256 maxFeePerGas = mUserOp.maxFeePerGas;\n            uint256 maxPriorityFeePerGas = mUserOp.maxPriorityFeePerGas;\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     * The offset of the given bytes in memory.\n     * @param data - The bytes to get the offset of.\n     */\n    function getOffsetOfMemoryBytes(\n        bytes memory data\n    ) internal pure returns (uint256 offset) {\n        assembly {\n            offset := data\n        }\n    }\n\n    /**\n     * The bytes in memory at the given offset.\n     * @param offset - The offset to get the bytes from.\n     */\n    function getMemoryBytesFromOffset(\n        uint256 offset\n    ) internal pure returns (bytes memory data) {\n        assembly (\"memory-safe\") {\n            data := offset\n        }\n    }\n\n    /// @inheritdoc IEntryPoint\n    function delegateAndRevert(address target, bytes calldata data) external {\n        (bool success, bytes memory ret) = target.delegatecall(data);\n        revert DelegateAndRevert(success, ret);\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/NonceManager.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity ^0.8.23;\n\nimport \"../interfaces/INonceManager.sol\";\n\n/**\n * nonce management functionality\n */\nabstract contract NonceManager is INonceManager {\n\n    /**\n     * The next valid sequence number for a given nonce key.\n     */\n    mapping(address => mapping(uint192 => uint256)) public nonceSequenceNumber;\n\n    /// @inheritdoc INonceManager\n    function getNonce(address sender, uint192 key)\n    public view override returns (uint256 nonce) {\n        return nonceSequenceNumber[sender][key] | (uint256(key) << 64);\n    }\n\n    // allow an account to manually increment its own nonce.\n    // (mainly so that during construction nonce can be made non-zero,\n    // to \"absorb\" the gas cost of first nonce increment to 1st transaction (construction),\n    // not to 2nd transaction)\n    function incrementNonce(uint192 key) public override {\n        nonceSequenceNumber[msg.sender][key]++;\n    }\n\n    /**\n     * validate nonce uniqueness for this account.\n     * called just after validateUserOp()\n     * @return true if the nonce was incremented successfully.\n     *         false if the current nonce doesn't match the given one.\n     */\n    function _validateAndUpdateNonce(address sender, uint256 nonce) internal returns (bool) {\n\n        uint192 key = uint192(nonce >> 64);\n        uint64 seq = uint64(nonce);\n        return nonceSequenceNumber[sender][key]++ == seq;\n    }\n\n}\n"},"@account-abstraction/contracts/core/SenderCreator.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity ^0.8.23;\n\n/**\n * Helper contract for EntryPoint, to call userOp.initCode from a \"neutral\" address,\n * which is explicitly not the entryPoint itself.\n */\ncontract SenderCreator {\n    /**\n     * Call the \"initCode\" factory to create and return the sender account address.\n     * @param initCode - The initCode value from a UserOp. contains 20 bytes of factory address,\n     *                   followed by calldata.\n     * @return sender  - The returned address of the created account, or zero address on failure.\n     */\n    function createSender(\n        bytes calldata initCode\n    ) external returns (address sender) {\n        address factory = address(bytes20(initCode[0:20]));\n        bytes memory initCallData = initCode[20:];\n        bool success;\n        /* solhint-disable no-inline-assembly */\n        assembly (\"memory-safe\") {\n            success := call(\n                gas(),\n                factory,\n                0,\n                add(initCallData, 0x20),\n                mload(initCallData),\n                0,\n                32\n            )\n            sender := mload(0)\n        }\n        if (!success) {\n            sender = address(0);\n        }\n    }\n}\n"},"@account-abstraction/contracts/core/StakeManager.sol":{"content":"// SPDX-License-Identifier: GPL-3.0-only\npragma solidity ^0.8.23;\n\nimport \"../interfaces/IStakeManager.sol\";\n\n/* solhint-disable avoid-low-level-calls */\n/* solhint-disable not-rely-on-time */\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 a paymaster.\n */\nabstract contract StakeManager is IStakeManager {\n    /// maps paymaster to their deposits and stakes\n    mapping(address => DepositInfo) public deposits;\n\n    /// @inheritdoc IStakeManager\n    function getDepositInfo(\n        address account\n    ) public view returns (DepositInfo memory info) {\n        return deposits[account];\n    }\n\n    /**\n     * Internal method to return just the stake info.\n     * @param addr - The account to query.\n     */\n    function _getStakeInfo(\n        address addr\n    ) internal view returns (StakeInfo memory info) {\n        DepositInfo storage depositInfo = deposits[addr];\n        info.stake = depositInfo.stake;\n        info.unstakeDelaySec = depositInfo.unstakeDelaySec;\n    }\n\n    /// @inheritdoc IStakeManager\n    function balanceOf(address account) public view returns (uint256) {\n        return deposits[account].deposit;\n    }\n\n    receive() external payable {\n        depositTo(msg.sender);\n    }\n\n    /**\n     * Increments an account's deposit.\n     * @param account - The account to increment.\n     * @param amount  - The amount to increment by.\n     * @return the updated deposit of this account\n     */\n    function _incrementDeposit(address account, uint256 amount) internal returns (uint256) {\n        DepositInfo storage info = deposits[account];\n        uint256 newAmount = info.deposit + amount;\n        info.deposit = newAmount;\n        return newAmount;\n    }\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) public virtual payable {\n        uint256 newDeposit = _incrementDeposit(account, msg.value);\n        emit Deposited(account, newDeposit);\n    }\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) public payable {\n        DepositInfo storage info = deposits[msg.sender];\n        require(unstakeDelaySec > 0, \"must specify unstake delay\");\n        require(\n            unstakeDelaySec >= info.unstakeDelaySec,\n            \"cannot decrease unstake time\"\n        );\n        uint256 stake = info.stake + msg.value;\n        require(stake > 0, \"no stake specified\");\n        require(stake <= type(uint112).max, \"stake overflow\");\n        deposits[msg.sender] = DepositInfo(\n            info.deposit,\n            true,\n            uint112(stake),\n            unstakeDelaySec,\n            0\n        );\n        emit StakeLocked(msg.sender, stake, unstakeDelaySec);\n    }\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        DepositInfo storage info = deposits[msg.sender];\n        require(info.unstakeDelaySec != 0, \"not staked\");\n        require(info.staked, \"already unstaking\");\n        uint48 withdrawTime = uint48(block.timestamp) + info.unstakeDelaySec;\n        info.withdrawTime = withdrawTime;\n        info.staked = false;\n        emit StakeUnlocked(msg.sender, withdrawTime);\n    }\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        DepositInfo storage info = deposits[msg.sender];\n        uint256 stake = info.stake;\n        require(stake > 0, \"No stake to withdraw\");\n        require(info.withdrawTime > 0, \"must call unlockStake() first\");\n        require(\n            info.withdrawTime <= block.timestamp,\n            \"Stake withdrawal is not due\"\n        );\n        info.unstakeDelaySec = 0;\n        info.withdrawTime = 0;\n        info.stake = 0;\n        emit StakeWithdrawn(msg.sender, withdrawAddress, stake);\n        (bool success,) = withdrawAddress.call{value: stake}(\"\");\n        require(success, \"failed to withdraw stake\");\n    }\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        DepositInfo storage info = deposits[msg.sender];\n        require(withdrawAmount <= info.deposit, \"Withdraw amount too large\");\n        info.deposit = info.deposit - withdrawAmount;\n        emit Withdrawn(msg.sender, withdrawAddress, withdrawAmount);\n        (bool success,) = withdrawAddress.call{value: withdrawAmount}(\"\");\n        require(success, \"failed to withdraw\");\n    }\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/IAccountExecute.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.5;\n\nimport \"./PackedUserOperation.sol\";\n\ninterface IAccountExecute {\n    /**\n     * Account may implement this execute method.\n     * passing this methodSig at the beginning of callData will cause the entryPoint to pass the full UserOp (and hash)\n     * to the account.\n     * The account should skip the methodSig, and use the callData (and optionally, other UserOp fields)\n     *\n     * @param userOp              - The operation that was just validated.\n     * @param userOpHash          - Hash of the user's request data.\n     */\n    function executeUserOp(\n        PackedUserOperation calldata userOp,\n        bytes32 userOpHash\n    ) external;\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/IPaymaster.sol":{"content":"// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.5;\n\nimport \"./PackedUserOperation.sol\";\n\n/**\n * The interface exposed by a paymaster contract, who agrees to pay the gas for user's operations.\n * A paymaster must hold a stake to cover the required entrypoint stake and also the gas for the transaction.\n */\ninterface IPaymaster {\n    enum PostOpMode {\n        // User op succeeded.\n        opSucceeded,\n        // User op reverted. Still has to pay for gas.\n        opReverted,\n        // Only used internally in the EntryPoint (cleanup after postOp reverts). Never calling paymaster with this value\n        postOpReverted\n    }\n\n    /**\n     * Payment validation: check if paymaster agrees to pay.\n     * Must verify sender is the entryPoint.\n     * Revert to reject this request.\n     * Note that bundlers will reject this method if it changes the state, unless the paymaster is trusted (whitelisted).\n     * The paymaster pre-pays using its deposit, and receive back a refund after the postOp method returns.\n     * @param userOp          - The user operation.\n     * @param userOpHash      - Hash of the user's request data.\n     * @param maxCost         - The maximum cost of this transaction (based on maximum gas and gas price from userOp).\n     * @return context        - Value to send to a postOp. Zero length to signify postOp is not required.\n     * @return validationData - Signature and time-range of this operation, encoded the same as the return\n     *                          value of validateUserOperation.\n     *                          <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,\n     *                                                    other values are invalid for paymaster.\n     *                          <6-byte> validUntil - last timestamp this operation is valid. 0 for \"indefinite\"\n     *                          <6-byte> validAfter - first timestamp this operation is valid\n     *                          Note that the validation code cannot use block.timestamp (or block.number) directly.\n     */\n    function validatePaymasterUserOp(\n        PackedUserOperation calldata userOp,\n        bytes32 userOpHash,\n        uint256 maxCost\n    ) external returns (bytes memory context, uint256 validationData);\n\n    /**\n     * Post-operation handler.\n     * Must verify sender is the entryPoint.\n     * @param mode          - Enum with the following options:\n     *                        opSucceeded - User operation succeeded.\n     *                        opReverted  - User op reverted. The paymaster still has to pay for gas.\n     *                        postOpReverted - never passed in a call to postOp().\n     * @param context       - The context value returned by validatePaymasterUserOp\n     * @param actualGasCost - Actual gas used so far (without this postOp call).\n     * @param actualUserOpFeePerGas - the gas price this UserOp pays. This value is based on the UserOp's maxFeePerGas\n     *                        and maxPriorityFee (and basefee)\n     *                        It is not the same as tx.gasprice, which is what the bundler pays.\n     */\n    function postOp(\n        PostOpMode mode,\n        bytes calldata context,\n        uint256 actualGasCost,\n        uint256 actualUserOpFeePerGas\n    ) 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"},"@account-abstraction/contracts/utils/Exec.sol":{"content":"// SPDX-License-Identifier: LGPL-3.0-only\npragma solidity ^0.8.23;\n\n// solhint-disable no-inline-assembly\n\n/**\n * Utility functions helpful when making different kinds of contract calls in Solidity.\n */\nlibrary Exec {\n\n    function call(\n        address to,\n        uint256 value,\n        bytes memory data,\n        uint256 txGas\n    ) internal returns (bool success) {\n        assembly (\"memory-safe\") {\n            success := call(txGas, to, value, add(data, 0x20), mload(data), 0, 0)\n        }\n    }\n\n    function staticcall(\n        address to,\n        bytes memory data,\n        uint256 txGas\n    ) internal view returns (bool success) {\n        assembly (\"memory-safe\") {\n            success := staticcall(txGas, to, add(data, 0x20), mload(data), 0, 0)\n        }\n    }\n\n    function delegateCall(\n        address to,\n        bytes memory data,\n        uint256 txGas\n    ) internal returns (bool success) {\n        assembly (\"memory-safe\") {\n            success := delegatecall(txGas, to, add(data, 0x20), mload(data), 0, 0)\n        }\n    }\n\n    // get returned data from last call or calldelegate\n    function getReturnData(uint256 maxLen) internal pure returns (bytes memory returnData) {\n        assembly (\"memory-safe\") {\n            let len := returndatasize()\n            if gt(len, maxLen) {\n                len := maxLen\n            }\n            let ptr := mload(0x40)\n            mstore(0x40, add(ptr, add(len, 0x20)))\n            mstore(ptr, len)\n            returndatacopy(add(ptr, 0x20), 0, len)\n            returnData := ptr\n        }\n    }\n\n    // revert with explicit byte array (probably reverted info from call)\n    function revertWithData(bytes memory returnData) internal pure {\n        assembly (\"memory-safe\") {\n            revert(add(returnData, 32), mload(returnData))\n        }\n    }\n\n    function callAndRevert(address to, bytes memory data, uint256 maxLen) internal {\n        bool success = call(to,0,data,gasleft());\n        if (!success) {\n            revertWithData(getReturnData(maxLen));\n        }\n    }\n}\n"},"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {IAccessManager} from \"@openzeppelin/contracts/access/manager/IAccessManager.sol\";\nimport {IAccessManagedProxy} from \"./interfaces/IAccessManagedProxy.sol\";\nimport {AccessManagedProxyBase} from \"./AccessManagedProxyBase.sol\";\nimport {AMPUtils} from \"./AMPUtils.sol\";\n\n/**\n * @title AccessManagedProxy\n * @notice Proxy contract using IAccessManager to manage access control before delegating calls (mutable version)\n * @dev It's a variant of ERC1967Proxy.\n *\n *      Currently the check is executed on any call received by the proxy contract (even calls to view methods, i.e.\n *      staticcall). For gas efficiency, you can also have `passThruMethods`, and for those methods it will skip\n *      the call to the AccessManager, calling directly to the implementation contract.\n *\n *      The accessManager and the passThruMethods are in the storage, but this contract doesn't include any method\n *      to modify them. They should be modified by the implementation contract (check AMPUtils for functions that\n *      encapsulate these operations).\n *\n *      Check https://forum.openzeppelin.com/t/accessmanagedproxy-is-a-good-idea/41917 for a discussion on the\n *      advantages and disadvantages of using it. Also https://www.youtube.com/watch?v=DKdwJ9Ap9vM for a presentation\n *      on this approach.\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract AccessManagedProxy is AccessManagedProxyBase {\n  /// @custom:storage-location erc7201:ensuro.storage.AccessManagedProxy\n  /// For struct AMPUtils.AccessManagedProxyStorage\n\n  /**\n   * @notice Constructor of the proxy, defining the implementation and the access manager\n   * @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation` and\n   *      with `accessManager` as the ACCESS_MANAGER that will handle access control.\n   *\n   * @param implementation The initial implementation contract.\n   * @param _data If nonempty, it's used as data in a delegate call to `implementation`. This will typically be an\n   *              encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\n   * @param accessManager The access manager that will handle access control\n   * @param passThruMethods The selector of methods that will skip the access control validation, typically used for\n   *                        views and other methods for gas optimization.\n   *\n   * @custom:pre If `_data` is empty, `msg.value` must be zero.\n   */\n  constructor(\n    address implementation,\n    bytes memory _data,\n    IAccessManager accessManager,\n    bytes4[] memory passThruMethods\n  ) payable AccessManagedProxyBase(implementation, _data) {\n    AMPUtils.setAccessManager(accessManager);\n    AMPUtils.setPassThruMethods(passThruMethods);\n  }\n\n  /// @inheritdoc AccessManagedProxyBase\n  function _skipAC(bytes4 selector) internal view override returns (bool) {\n    return AMPUtils.getAccessManagedProxyStorage().skipAc[selector];\n  }\n\n  /// @inheritdoc IAccessManagedProxy\n  // solhint-disable-next-line func-name-mixedcase\n  function PASS_THRU_METHODS() external view override returns (bytes4[] memory methods) {\n    return AMPUtils.getAccessManagedProxyStorage().passThruMethods;\n  }\n\n  /// @inheritdoc IAccessManagedProxy\n  // solhint-disable-next-line func-name-mixedcase\n  function ACCESS_MANAGER() public view override returns (IAccessManager) {\n    return AMPUtils.getAccessManagedProxyStorage().accessManager;\n  }\n}\n"},"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {ERC1967Proxy} from \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\";\nimport {IAccessManager} from \"@openzeppelin/contracts/access/manager/IAccessManager.sol\";\nimport {IAccessManagedProxy} from \"./interfaces/IAccessManagedProxy.sol\";\n\n/**\n * @title AccessManagedProxyBase\n * @notice Proxy contract using IAccessManager to manage access control before delegating calls.\n * @dev It's a variant of ERC1967Proxy.\n *\n *      Currently the check is executed on any call received by the proxy contract even calls to view methods\n *      (staticcall). In the setup of the ACCESS_MANAGER permissions you would want to make all the views and pure\n *      functions enabled for the PUBLIC_ROLE.\n *\n *      This base contract delegates on descendent contracts the storage of the ACCESS_MANAGER.\n *\n *      Check https://forum.openzeppelin.com/t/accessmanagedproxy-is-a-good-idea/41917 for a discussion on the\n *      advantages and disadvantages of using it.\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\nabstract contract AccessManagedProxyBase is ERC1967Proxy, IAccessManagedProxy {\n  /**\n   * @notice Constructor of the proxy, defining the implementation and the access manager\n   * @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation` and\n   *      with `manager` as the ACCESS_MANAGER that will handle access control.\n   *\n   * @param implementation The initial implementation contract.\n   * @param _data If nonempty, it's used as data in a delegate call to `implementation`. This will typically be an\n   *              encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\n   *\n   * @custom:pre If `_data` is empty, `msg.value` must be zero.\n   */\n  constructor(address implementation, bytes memory _data) payable ERC1967Proxy(implementation, _data) {}\n\n  /// @inheritdoc IAccessManagedProxy\n  // solhint-disable-next-line func-name-mixedcase\n  function ACCESS_MANAGER() public view virtual returns (IAccessManager);\n\n  /// @inheritdoc IAccessManagedProxy\n  function authority() external view virtual returns (address) {\n    return address(ACCESS_MANAGER());\n  }\n\n  /**\n   * @notice Intercepts the super._delegate call to implement access control\n   * @dev Checks with the ACCESS_MANAGER if msg.sender is authorized to call the current call's function,\n   * and if so, delegates the current call to `implementation`.\n   * @param implementation The implementation contract\n   *\n   * This function does not return to its internal call site, it will return directly to the external caller.\n   */\n  function _delegate(address implementation) internal virtual override {\n    bytes4 selector = bytes4(msg.data[0:4]);\n    bool immediate = _skipAC(selector); // reuse immediate variable both for skipped methods and canCall result\n    if (!immediate) {\n      (immediate, ) = ACCESS_MANAGER().canCall(msg.sender, address(this), selector);\n      if (!immediate) revert AccessManagedUnauthorized(msg.sender);\n    }\n    super._delegate(implementation);\n  }\n\n  /**\n   * @notice Returns whether to skip the access control validation or not\n   * @dev Hook called before ACCESS_MANAGER.canCall to enable skipping the call to the access manager for performance\n   *      reasons (for example on views) or to remove access control for other specific cases\n   * @param selector The selector of the method called\n   * @return Whether the access control using ACCESS_MANAGER should be skipped or not\n   */\n  function _skipAC(bytes4 selector) internal view virtual returns (bool);\n}\n"},"@ensuro/access-managed-proxy/contracts/AMPUtils.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {IAccessManager} from \"@openzeppelin/contracts/access/manager/IAccessManager.sol\";\nimport {IAccessManagedProxy} from \"./interfaces/IAccessManagedProxy.sol\";\n\n/**\n * @title AMPUtils\n * @dev Utility functions for doing custom access control rules, for contracts deployed\n *      with AccessManagedProxy\n * @author Ensuro\n */\nlibrary AMPUtils {\n  // Error copied from IAccessManaged\n  error AccessManagedUnauthorized(address caller);\n\n  struct AccessManagedProxyStorage {\n    IAccessManager accessManager;\n    bytes4[] passThruMethods; // This is used for observability\n    mapping(bytes4 => bool) skipAc; // This is the used for actual lookup\n  }\n\n  /**\n   * @notice Storage slot with the address of the current access mananger.\n   * @dev Computed as: `keccak256(\n   *    abi.encode(uint256(keccak256(\"ensuro.storage.AccessManagedProxy\")) - 1)\n   * ) & ~bytes32(uint256(0xff))\n   */\n  // solhint-disable-next-line const-name-snakecase\n  bytes32 internal constant AccessManagedProxyStorageLocation =\n    0x787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c00;\n\n  function getAccessManagedProxyStorage() internal pure returns (AccessManagedProxyStorage storage $) {\n    // solhint-disable-next-line no-inline-assembly\n    assembly {\n      $.slot := AccessManagedProxyStorageLocation\n    }\n  }\n\n  function setAccessManager(IAccessManager accessManager) internal {\n    if (address(accessManager).code.length == 0) {\n      revert IAccessManagedProxy.AccessManagedInvalidAuthority(address(accessManager));\n    }\n    getAccessManagedProxyStorage().accessManager = accessManager;\n    emit IAccessManagedProxy.AuthorityUpdated(address(accessManager));\n  }\n\n  function setPassThruMethods(bytes4[] memory passThruMethods) internal {\n    AccessManagedProxyStorage storage $ = AMPUtils.getAccessManagedProxyStorage();\n    $.passThruMethods = new bytes4[](passThruMethods.length);\n    for (uint256 i; i < passThruMethods.length; ++i) {\n      $.passThruMethods[i] = passThruMethods[i];\n      $.skipAc[passThruMethods[i]] = true;\n    }\n    emit IAccessManagedProxy.PassThruMethodsChanged(passThruMethods);\n  }\n\n  function replacePassThruMethods(bytes4[] memory newPassThruMethods) internal {\n    AccessManagedProxyStorage storage $ = AMPUtils.getAccessManagedProxyStorage();\n    bytes4[] memory oldPassThruMethods = $.passThruMethods;\n    for (uint256 i; i < oldPassThruMethods.length; ++i) {\n      $.skipAc[oldPassThruMethods[i]] = false;\n    }\n    setPassThruMethods(newPassThruMethods);\n  }\n\n  /**\n   * @dev Checks if the user can call a particular selector, assuming the calling contract was deployed as an AMP.\n   *\n   * @param user The user for which you want to check the access, typically msg.sender\n   * @param selector The selector of the method called (or a fake selector generated with makeSelector or another way)\n   */\n  function checkCanCall(address user, bytes4 selector) internal view {\n    (bool immediate, ) = IAccessManagedProxy(payable(address(this))).ACCESS_MANAGER().canCall(\n      user,\n      address(this),\n      selector\n    );\n    require(immediate, AccessManagedUnauthorized(user));\n  }\n\n  /**\n   * @dev Standard way of creating \"fake selectors\" (not necessarily tied to a method call) for specific permissions\n   */\n  function makeSelector(bytes memory something) internal pure returns (bytes4) {\n    return bytes4(keccak256(something));\n  }\n}\n"},"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IAccessManager} from \"@openzeppelin/contracts/access/manager/IAccessManager.sol\";\n\n/**\n * @title IAccessManagedProxy - Interface of AccessManagedProxy contracts\n * @notice This interface gives observability of the access control setup\n *\n * @dev The `ACCESS_MANAGER()` is the AccessManager contract that stores the access roles for most of the methods,\n * except those listed in `PASS_THRU_METHODS()` that are forwarded directly to the proxy and don't have access control\n * (at least not by the AccessManager contract).\n *\n * @author Ensuro\n */\ninterface IAccessManagedProxy {\n  /**\n   * @notice The ACCESS_MANAGER that manages the access controls was updated\n   * @dev Authority that manages this contract was updated. Uses same interface as OZ's IAccessManaged\n   */\n  // solhint-disable-next-line gas-indexed-events\n  event AuthorityUpdated(address authority);\n\n  /**\n   * @dev Emitted when the passThruMethods has changed.\n   */\n  event PassThruMethodsChanged(bytes4[] newPassThruMethods);\n\n  // Errors copied from OZ's IAccessManaged\n  error AccessManagedUnauthorized(address caller);\n  error AccessManagedInvalidAuthority(address authority);\n\n  /**\n   * @notice Returns the current authority.\n   * @dev Returns the current authority. Same as ACCESS_MANAGER(), added for compatibility with OZ's IAccessManaged\n   */\n  function authority() external view returns (address);\n\n  /**\n   * @notice AccessManager contract that handles the permissions to access the implementation methods\n   */\n  // solhint-disable-next-line func-name-mixedcase\n  function ACCESS_MANAGER() external view returns (IAccessManager);\n\n  /**\n   * @notice Gives observability to the methods that are skipped from access control\n   * @return methods The list of method selectors that skip ACCESS_MANAGER access control\n   */\n  // solhint-disable-next-line func-name-mixedcase\n  function PASS_THRU_METHODS() external view returns (bytes4[] memory methods);\n}\n"},"@ensuro/account-abstraction/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"},"@ensuro/core/contracts/ETKLib.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\n\npragma solidity ^0.8.28;\n\nimport {Math} from \"@openzeppelin/contracts/utils/math/Math.sol\";\nimport {SafeCast} from \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\n\n/**\n * @title ETKLib\n * @notice Library with different datatypes and utils used by the eToken contract\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\nlibrary ETKLib {\n  using SafeCast for uint256;\n  using ETKLib for Scale;\n\n  type Scale is uint96;\n\n  uint256 private constant SECONDS_PER_YEAR = 365 days;\n  uint256 private constant MIN_SCALE = 1e8; // 0.0000000001 == 1e-10 in wad\n  Scale private constant SCALE_ONE = Scale.wrap(1e18);\n  uint256 internal constant WAD = 1e18;\n  int256 internal constant SWAD = 1e18;\n\n  // solhint-disable-next-line gas-struct-packing\n  struct ScaledAmount {\n    uint128 amount; // amount before applying any factor to take it to current value\n    Scale scale; // in Wad - factor used to compute the current value from the amount at the lastUpdate time\n    uint32 lastUpdate; // Timestamp when the scale was computed. From that point to 'now', we increase with at a\n    // given interestRate.\n  }\n\n  struct Scr {\n    uint128 scr; // amount - Capital locked as Solvency Capital Requirement of backed up policies\n    uint128 interestRate; // in Wad - Interest rate received in exchange of solvency capital\n  }\n\n  error ScaleTooSmall(uint256 rejectedScale); // Scale too small, can lead to rounding errors\n\n  /**\n   * @notice unchecked version of Math.mulDiv that returns the result of a * b / c.\n   *\n   * Assumes a * b < 2**256\n   */\n  function _mulDiv(uint256 a, uint256 b, uint256 c) internal pure returns (uint256) {\n    unchecked {\n      return (a * b) / c;\n    }\n  }\n\n  /**\n   * @notice unchecked version of Math.mulDiv that returns the result of a * b / c. (signed version)\n   *\n   * Assumes a * b < 2**256\n   */\n  function _mulDiv(int256 a, int256 b, int256 c) internal pure returns (int256) {\n    unchecked {\n      return (a * b) / c;\n    }\n  }\n\n  /**\n   * @notice unchecked version of Math.mulDiv that returns the result of a * b / c, rounding up when there is non-zero remainder.\n   *\n   * Assumes a * b < 2**256\n   */\n  function _mulDivCeil(uint256 a, uint256 b, uint256 c) internal pure returns (uint256) {\n    unchecked {\n      return (a * b) / c + SafeCast.toUint(mulmod(a, b, c) > 0);\n    }\n  }\n\n  /*** BEGIN Scale functions ***/\n\n  /**\n   * @notice Converts a \"scaled amount\" (raw value, without applying earnings) to the current value after\n   *      after applying the scale.\n   * @param scaledAmount The `scaled amount` as the ones stored in `$._balances`\n   * @param scale        The scale to apply.\n   * @return The current amount, that results of `scaledAmount * scale`\n   */\n  function toCurrent(Scale scale, uint256 scaledAmount) internal pure returns (uint256) {\n    return _mulDiv(scaledAmount, scale.toUint256(), WAD);\n  }\n\n  /**\n   * @notice Converts a \"scaled amount\" (raw value, without applying earnings) to the current value after\n   *      after applying the scale, rounding to the ceil\n   * @param scaledAmount The `scaled amount` as the ones stored in `$._balances`\n   * @param scale        The scale to apply.\n   * @return The current amount, that results of `scaledAmount * scale`\n   */\n  function toCurrentCeil(Scale scale, uint256 scaledAmount) internal pure returns (uint256) {\n    return _mulDivCeil(scaledAmount, scale.toUint256(), WAD);\n  }\n\n  /**\n   * @notice Converts a \"current amount\" (user-facing value, after applying earnings/scale) into a scaled amount (raw value).\n   * @dev Un-applies the scale (in WAD): `scaled = currentAmount * WAD / scale`.\n   * @param scale The scale (WAD) to un-apply.\n   * @param currentAmount The current amount as obtained from balanceOf() or totalSupply().\n   * @return scaledAmount The scaled amount (raw value).\n   */\n  function toScaled(Scale scale, uint256 currentAmount) internal pure returns (uint256) {\n    return _mulDiv(currentAmount, WAD, scale.toUint256());\n  }\n\n  /**\n   * @notice Same as {toScaled}, but rounds up when there is a non-zero remainder.\n   * @dev `scaled = ceil(currentAmount * WAD / scale)`.\n   * @param scale The scale (WAD) to un-apply.\n   * @param currentAmount The current amount as obtained from balanceOf() or totalSupply().\n   * @return scaledAmount The scaled amount (raw value), rounded up.\n   */\n  function toScaledCeil(Scale scale, uint256 currentAmount) internal pure returns (uint256) {\n    return _mulDivCeil(currentAmount, WAD, scale.toUint256());\n  }\n\n  /**\n   * @notice Returns a `newScale = scale * (1 + factor)`\n   *\n   * @param scale The base scale.\n   * @param factor The multiplicative increment, in WAD.\n   * @return newScale The updated scale.\n   */\n  function grow(Scale scale, uint256 factor) internal pure returns (Scale newScale) {\n    return Scale.wrap(_mulDiv(scale.toUint256(), factor + WAD, WAD).toUint96());\n  }\n\n  /**\n   * @notice Returns a `newScale = scale + factor`.\n   *\n   * @param scale The base scale.\n   * @param factor The additive increment (same units as `scale`).\n   * @return newScale The updated scale.\n   */\n  function add(Scale scale, uint256 factor) internal pure returns (Scale newScale) {\n    return Scale.wrap((scale.toUint256() + factor).toUint96());\n  }\n\n  /**\n   * @notice Returns a `newScale = scale + factor`, allowing it to increase or decrease.\n   *         Reverts if the resulting scale would be below `MIN_SCALE`.\n   * @param scale The base scale.\n   * @param factor The signed additive increment (same units as `scale`).\n   * @return newScale The updated scale.\n   */\n  function add(Scale scale, int256 factor) internal pure returns (Scale newScale) {\n    uint256 newScaleInt = uint256(int256(scale.toUint256()) + factor);\n    require(newScaleInt >= MIN_SCALE, ScaleTooSmall(newScaleInt));\n    return Scale.wrap(newScaleInt.toUint96());\n  }\n\n  /**\n   * @notice Unwraps {Scale} into uint256.\n   */\n  function toUint256(Scale scale) internal pure returns (uint256) {\n    return Scale.unwrap(scale);\n  }\n\n  /*** BEGIN ScaledAmount functions ***/\n\n  /**\n   * @notice Computes the scale of the scaledAmount projecting the last recorded value to the future asumming linear rate\n   */\n  function projectScale(ScaledAmount storage scaledAmount, uint256 interestRate) internal view returns (Scale) {\n    uint32 now_ = uint32(block.timestamp);\n    if (scaledAmount.lastUpdate < now_) {\n      return scaledAmount.scale.grow((interestRate * uint256(now_ - scaledAmount.lastUpdate)) / SECONDS_PER_YEAR);\n    } else {\n      return scaledAmount.scale;\n    }\n  }\n\n  /**\n   * @notice Computes the scale of the scaledAmount projecting the last recorded value to the future asumming linear rate\n   */\n  function projectScale(ScaledAmount storage scaledAmount, Scr storage scr) internal view returns (Scale ret) {\n    uint256 scrEarnings = earnings(scr, scaledAmount.lastUpdate);\n    if (scrEarnings == 0) return scaledAmount.scale;\n    ret = scaledAmount.scale.add(_mulDiv(scrEarnings, WAD, uint256(scaledAmount.amount)));\n  }\n\n  function init(ScaledAmount storage scaledAmount) internal {\n    scaledAmount.scale = SCALE_ONE;\n    scaledAmount.amount = 0;\n    scaledAmount.lastUpdate = uint32(block.timestamp);\n  }\n\n  /**\n   * @notice Internal helper to add `amount` (current units) to a {ScaledAmount} using a given `scale`.\n   *\n   * @return newScaledAmount Updated in-memory struct (caller is expected to store it).\n   * @return scaledAdd Amount converted to scaled units (rounded down).\n   *\n   * @custom:pre `uint256(scale) != 0`\n   * @custom:pre `uint256(scaledAmount.amount) + scale.toScaled(amount)` fits in uint128\n   */\n  function _add(\n    ScaledAmount storage scaledAmount,\n    uint256 amount,\n    Scale scale\n  ) internal view returns (ScaledAmount memory newScaledAmount, uint256 scaledAdd) {\n    scaledAdd = scale.toScaled(amount);\n    return (\n      ScaledAmount({\n        scale: scale,\n        amount: (uint256(scaledAmount.amount) + scaledAdd).toUint128(),\n        lastUpdate: uint32(block.timestamp)\n      }),\n      scaledAdd\n    );\n  }\n\n  /**\n   * @notice Subtracts `amount` (current units) from a {ScaledAmount} using the provided `scale`.\n   *\n   * @dev It uses `toScaledCeil` (round up) to avoid leaving dust due to rounding. If the ceil conversion\n   * would underflow by 1 unit, it retries with `toScaled` (round down).\n   *\n   * @param scaledAmount The storage record to update.\n   * @param amount Amount expressed in current units.\n   * @param scale Scale (wad) to use to convert `amount` into scaled units.\n   * @return newScaledAmount Updated in-memory struct (caller is expected to store it).\n   * @return scaledSub The subtracted value expressed in scaled units (ceil, or floor in the retry path).\n   *\n   * @custom:pre `uint256(scale) != 0`\n   * @custom:pre `scale.toScaledCeil(amount) <= scaledAmount.amount` OR `scale.toScaled(amount) <= scaledAmount.amount`\n   */\n  function _sub(\n    ScaledAmount storage scaledAmount,\n    uint256 amount,\n    Scale scale\n  ) internal view returns (ScaledAmount memory newScaledAmount, uint256 scaledSub) {\n    scaledSub = scale.toScaledCeil(amount);\n    uint256 oldAmount = uint256(scaledAmount.amount);\n    (bool success, uint256 newAmount) = Math.trySub(oldAmount, scaledSub);\n    if (!success) {\n      // The operation can fail if scaledSub was rounded up and `scaledSub - 1 = scaledAmount.amount`\n      // try again using toScaled to floor\n      scaledSub = scale.toScaled(amount);\n      newAmount = oldAmount - scaledSub; // If it was a different error, it will fail\n    }\n    if (newAmount == 0) {\n      // Reset scale if amount == 0\n      scale = SCALE_ONE;\n    }\n    return (\n      ScaledAmount({scale: scale, amount: newAmount.toUint128(), lastUpdate: uint32(block.timestamp)}),\n      scaledSub\n    );\n  }\n\n  /**\n   * @notice Adds `amount` (current units) projecting the scale forward using a linear `interestRate`.\n   */\n  function add(\n    ScaledAmount storage scaledAmount,\n    uint256 amount,\n    uint256 interestRate\n  ) internal view returns (ScaledAmount memory newScaledAmount, uint256 scaledAdd) {\n    return _add(scaledAmount, amount, projectScale(scaledAmount, interestRate));\n  }\n\n  /**\n   * @notice Subtracts `amount` (current units) projecting the scale forward using a linear `interestRate`.\n   */\n  function sub(\n    ScaledAmount storage scaledAmount,\n    uint256 amount,\n    uint256 interestRate\n  ) internal view returns (ScaledAmount memory newScaledAmount, uint256 scaledSub) {\n    return _sub(scaledAmount, amount, projectScale(scaledAmount, interestRate));\n  }\n\n  /**\n   * @notice Adds `amount` (current units) projecting the scale forward using SCR earnings.\n   */\n  function add(\n    ScaledAmount storage scaledAmount,\n    uint256 amount,\n    Scr storage scr\n  ) internal view returns (ScaledAmount memory newScaledAmount, uint256 scaledAdd) {\n    return _add(scaledAmount, amount, projectScale(scaledAmount, scr));\n  }\n\n  /**\n   * @notice Subtracts `amount` (current units) projecting the scale forward using SCR earnings.\n   */\n  function sub(\n    ScaledAmount storage scaledAmount,\n    uint256 amount,\n    Scr storage scr\n  ) internal view returns (ScaledAmount memory newScaledAmount, uint256 scaledSub) {\n    return _sub(scaledAmount, amount, projectScale(scaledAmount, scr));\n  }\n\n  /**\n   * @notice Applies a discrete signed change (in current units) to the scale, and also accounts for SCR earnings accrued\n   * since `scaledAmount.lastUpdate`.\n   *\n   * @param amount Signed discrete change in current units.\n   * @return newScaledAmount Updated in-memory struct with the same stored `amount`, but an adjusted `scale`.\n   *\n   * @custom:pre `scaledAmount.amount != 0` (required to compute proportional scale change)\n   */\n  function discreteChange(\n    ScaledAmount storage scaledAmount,\n    int256 amount,\n    Scr storage scr\n  ) internal view returns (ScaledAmount memory newScaledAmount) {\n    // Adds to the discrete change what was earned from SCR returns\n    amount += int256(earnings(scr, scaledAmount.lastUpdate));\n    Scale newScale = scaledAmount.scale.add(_mulDiv(amount, SWAD, int256(uint256(scaledAmount.amount))));\n    return ScaledAmount({amount: scaledAmount.amount, scale: newScale, lastUpdate: uint32(block.timestamp)});\n  }\n\n  /**\n   * @notice Returns the minimum current value representable by `scaledAmount.amount` under the minimum scale.\n   */\n  function minValue(ScaledAmount storage scaledAmount) internal view returns (uint256) {\n    return _mulDivCeil(uint256(scaledAmount.amount), MIN_SCALE, WAD);\n  }\n  /*** END ScaledAmount functions ***/\n\n  /*** BEGIN Scr functions ***/\n  /**\n   * @notice Adds SCR and updates the weighted-average `interestRate`.\n   *\n   * @param scrAmount_ Amount of SCR to add.\n   * @param policyInterestRate Annualized rate (wad) associated with `scrAmount_`.\n   * @return modifiedScr New in-memory SCR struct reflecting the addition.\n   *\n   * @custom:pre If `scr.scr != 0`, then `uint256(scr.scr) + scrAmount_` fits in uint256\n   * @custom:pre `policyInterestRate` is expressed in wad\n   */\n  function add(\n    Scr storage scr,\n    uint256 scrAmount_,\n    uint256 policyInterestRate\n  ) internal view returns (Scr memory modifiedScr) {\n    if (scr.scr == 0) {\n      return Scr({scr: scrAmount_.toUint128(), interestRate: policyInterestRate.toUint128()});\n    } else {\n      uint256 origScr = uint256(scr.scr);\n      uint256 newScr = origScr + scrAmount_;\n      // newInterestRate = (oldInterestRate * oldScr + policyInterestRate * scrAmount_) / newScr\n      uint256 newInterestRate = _mulDiv(\n        _mulDiv(uint256(scr.interestRate), origScr, WAD) + _mulDiv(policyInterestRate, scrAmount_, WAD),\n        WAD,\n        newScr\n      );\n\n      return Scr({scr: newScr.toUint128(), interestRate: newInterestRate.toUint128()});\n    }\n  }\n\n  /**\n   * @notice Subtracts SCR and updates the weighted-average `interestRate`.\n   *\n   * @param scrAmount_ Amount of SCR to remove.\n   * @param policyInterestRate Annualized rate (wad) associated with `scrAmount_`.\n   * @return modifiedScr New in-memory SCR struct reflecting the subtraction.\n   *\n   * @custom:pre `scrAmount_ <= scr.scr`\n   */\n  function sub(\n    Scr storage scr,\n    uint256 scrAmount_,\n    uint256 policyInterestRate\n  ) internal view returns (Scr memory modifiedScr) {\n    if (scr.scr == scrAmount_) {\n      return Scr({scr: 0, interestRate: 0});\n    } else {\n      uint256 origScr = uint256(scr.scr);\n      uint256 newScr = origScr - scrAmount_;\n      // newInterestRate = (oldInterestRate * oldScr - scrAmount_ * policyInterestRate) / newScr\n      uint256 newInterestRate = _mulDiv(\n        _mulDiv(uint256(scr.interestRate), origScr, WAD) - _mulDiv(policyInterestRate, scrAmount_, WAD),\n        WAD,\n        newScr\n      );\n\n      return Scr({scr: newScr.toUint128(), interestRate: newInterestRate.toUint128()});\n    }\n  }\n\n  /**\n   * @notice Returns the earnings of the SCR since a given date\n   */\n  function earnings(Scr storage scr, uint32 since) internal view returns (uint256) {\n    return\n      _mulDiv(\n        uint256(scr.scr),\n        (uint256(scr.interestRate) * (block.timestamp - uint256(since))) / SECONDS_PER_YEAR,\n        WAD\n      );\n  }\n\n  /**\n   * @notice Returns liquid funds available given `totalSupply`, excluding locked SCR.\n   *\n   * @param totalSupply Total supply expressed in current units.\n   * @return available `max(totalSupply - scr.scr, 0)`.\n   */\n  function fundsAvailable(Scr storage scr, uint256 totalSupply) internal view returns (uint256) {\n    uint256 scr_ = uint256(scr.scr);\n    if (totalSupply > scr_) return totalSupply - scr_;\n    else return 0;\n  }\n\n  /**\n   * @notice Returns the SCR amount (locked capital) in current units.\n   */\n  function scrAmount(Scr storage scr) internal view returns (uint256) {\n    return uint256(scr.scr);\n  }\n\n  /*** END Scr functions ***/\n}\n"},"@ensuro/core/contracts/EToken.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IERC20} from \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\nimport {IERC4626} from \"@openzeppelin/contracts/interfaces/IERC4626.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {ERC20Upgradeable} from \"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\";\nimport {ERC20PermitUpgradeable} from \"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol\";\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {SafeCast} from \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport {Math} from \"@openzeppelin/contracts/utils/math/Math.sol\";\nimport {IPolicyPool} from \"./interfaces/IPolicyPool.sol\";\nimport {ILPWhitelist} from \"./interfaces/ILPWhitelist.sol\";\nimport {ICooler} from \"./interfaces/ICooler.sol\";\nimport {IEToken} from \"./interfaces/IEToken.sol\";\nimport {IPolicyPoolComponent} from \"./interfaces/IPolicyPoolComponent.sol\";\nimport {ETKLib} from \"./ETKLib.sol\";\nimport {Reserve} from \"./Reserve.sol\";\n\n/**\n * @title Ensuro ERC20 EToken - interest-bearing token\n * @notice These are the liquidity pools where users provide funds to cover insurance products\n * @dev Implementation of the interest/earnings bearing token for the Ensuro protocol.\n *      `_tsScaled.scale` scales the balances stored in _balances. _tsScaled (totalSupply scaled) grows\n *      continuoulsly at tokenInterestRate().\n *      Every operation that changes the utilization rate (_scr.scr/totalSupply) or the _scr.interestRate, updates\n *      first the _tsScaled.scale accumulating the interest accrued since _tsScaled.lastUpdate.\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract EToken is Reserve, ERC20PermitUpgradeable, IEToken {\n  using Math for uint256;\n  using ETKLib for ETKLib.ScaledAmount;\n  using ETKLib for ETKLib.Scr;\n  using ETKLib for ETKLib.Scale;\n  using SafeERC20 for IERC20Metadata;\n  using SafeCast for uint256;\n\n  uint256 internal constant WAD = 1e18;\n  uint256 internal constant FOUR_DECIMAL_TO_WAD = 1e14;\n  uint16 internal constant HUNDRED_PERCENT = 1e4;\n  uint256 internal constant LIQ_REQ_MIN = 0.8e18; // 80%\n  uint256 internal constant LIQ_REQ_MAX = 1.3e18; // 130%\n  uint256 internal constant INT_LOAN_IR_MAX = 0.5e18; // 50% - Maximum value for InternalLoan interest rate\n\n  ETKLib.ScaledAmount internal _tsScaled; // Total Supply scaled\n\n  ETKLib.Scr internal _scr;\n\n  /// @notice Mapping that keeps track of allowed borrowers (PremiumsAccount) and their current debt\n  mapping(address => ETKLib.ScaledAmount) internal _loans;\n\n  /**\n   * @notice Struct to store different parameters of the eToken\n   * @dev Packed so it fits in 256 bits. The parameters are stored with 4 decimals.\n   */\n  struct PackedParams {\n    ILPWhitelist whitelist; // Whitelist for deposits and transfers\n    uint16 liquidityRequirement; // Liquidity requirement to lock more/less than SCR - 4 decimals\n    uint16 minUtilizationRate; // Min utilization rate, to reject deposits that leave UR under this value - 4 decimals\n    uint16 maxUtilizationRate; // Max utilization rate, to reject lockScr that leave UR above this value - 4 decimals\n    uint16 internalLoanInterestRate; // Annualized interest rate charged to internal borrowers (premiums accounts) - 4dec\n  }\n\n  /// @notice eToken parameters\n  PackedParams internal _params;\n\n  /// @notice ERC-4626 vault where the funds of the eToken are invested to generate additional yields\n  IERC4626 internal _yieldVault;\n\n  /// @notice When defined (not address(0)), it's a contract that will handle the coooldown period and process\n  ICooler internal _cooler;\n\n  /// @notice Thrown when called by a non-borrower on borrower operations (internalLoan and lock/unlock scr)\n  error OnlyBorrower(address caller);\n\n  /// @notice Thrown on setParam when the given value doesn't match the specific validations\n  error InvalidParameter(Parameter parameter);\n\n  /// @notice Thrown when a transfer is rejected by the Whitelist\n  error TransferNotWhitelisted(address from_, address to_, uint256 value);\n\n  /// @notice Thrown when a deposit is rejected by the Whitelist\n  error DepositNotWhitelisted(address account, uint256 value);\n\n  /// @notice Thrown when a withdrawal is rejected by the Whitelist\n  error WithdrawalNotWhitelisted(address account, uint256 value);\n\n  /// @notice Thrown when trying to lock more funds than the ones that are available\n  error NotEnoughScrFunds(uint256 required, uint256 available);\n\n  /// @notice Thrown when a deposit leaves the utilizationRate under the minUtilization\n  error UtilizationRateTooLow(uint256 actualUtilization, uint256 minUtilization);\n\n  /// @notice Thrown when trying to repayLoan or query a loan of a non-borrower\n  error InvalidBorrower(address borrower);\n\n  /// @notice Thrown when trying to add a borrower twice\n  error BorrowerAlreadyAdded(address borrower);\n\n  /// @notice Thrown when trying to change the whitelist to a contract that doesn't belong to the same policyPool()\n  error InvalidWhitelist(ILPWhitelist whitelist);\n\n  /// @notice Thrown when trying to change the cooler to a contract that doesn't belong to the same policyPool()\n  error InvalidCooler(ICooler cooler);\n\n  /// @notice Thrown when trying to withdraw an amount that exceeds either the user funds or totalWithdrawable()\n  error ExceedsMaxWithdraw(uint256 requested, uint256 maxWithdraw);\n\n  /// @notice Thrown when trying to execute an instant withdraw when the eToken has non-zero cooldownPeriod\n  error WithdrawalsRequireCooldown(ICooler cooler);\n\n  /**\n   * @notice Event emitted when a PremiumsAccount takes funds (loan) from the eToken\n   * @dev These funds are used to cover the losses and may be later repaid if the performance of the product improves\n   * and accumulates surplus.\n   *\n   * @param borrower The address of the borrower, a {PremiumsAccount}\n   * @param value The amount of the loan\n   * @param amountAsked The amount originally asked\n   */\n  event InternalLoan(address indexed borrower, uint256 value, uint256 amountAsked);\n\n  /**\n   * @notice Event emitted when a PremiumsAccount repays a loan previously taken\n   *\n   * @param borrower The address of the borrower, a {PremiumsAccount}\n   * @param value The amount of the repayment\n   */\n  event InternalLoanRepaid(address indexed borrower, uint256 value);\n\n  /// @notice Event emitted when a new borrower (PremiumsAccount) is added\n  event InternalBorrowerAdded(address indexed borrower);\n\n  /**\n   * @notice Event emitted when a borrower is removed (it can't lock funds or take loans anymore)\n   *\n   * @param borrower The address of the borrower, a {PremiumsAccount}\n   * @param defaultedDebt The unpaid amount left by the borrower\n   */\n  event InternalBorrowerRemoved(address indexed borrower, uint256 defaultedDebt);\n\n  /**\n   * @notice Event emitted when a parameter was changed\n   *\n   * @param param Type of parameter change\n   * @param newValue The new value set\n   */\n  event ParameterChanged(Parameter param, uint256 newValue);\n\n  /**\n   * @notice Event emitted when the whitelist is changed\n   * @dev The event reports the old and new whitelist\n   */\n  event WhitelistChanged(ILPWhitelist oldWhitelist, ILPWhitelist newWhitelist);\n\n  /**\n   * @notice Event emitted when the cooler is changed\n   * @dev The event reports the old and new cooler\n   */\n  event CoolerChanged(ICooler oldCooler, ICooler newCooler);\n\n  /**\n   * @notice Event emitted when tokens are burn, redistributing the value to the rest of LPs\n   * @dev This typically happens when a cooldown is executed and there were profits during the period\n   *\n   * @param owner The owner of the burned tokens (the cooler)\n   * @param distributedProfit The amount that is distributed between all the LPs\n   */\n  event ETokensRedistributed(address indexed owner, uint256 distributedProfit);\n\n  /**\n   * @notice Event emitted when part of a previously received CoC is refunded\n   * @dev This happends when a policy is cancelled with refund. It doesn't affect the totalSupply since it should\n   * be not yet accrued money.\n   *\n   * @param policyId The owner of the burned tokens (the cooler)\n   * @param receiver The user that received the refund\n   * @param amount The amount of the refund\n   */\n  event CoCRefunded(uint256 indexed policyId, address indexed receiver, uint256 amount);\n\n  /// @notice Modifier used to validate the methods that can be called only by borrowers (PremiumsAccount)\n  modifier onlyBorrower() {\n    require(_loans[_msgSender()].lastUpdate != 0, OnlyBorrower(_msgSender()));\n    _;\n  }\n\n  // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.ERC20\")) - 1)) & ~bytes32(uint256(0xff))\n  // solhint-disable-next-line const-name-snakecase\n  bytes32 private constant ERC20StorageLocation = 0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00;\n\n  function _getERC20StorageFromEToken() private pure returns (ERC20Storage storage $) {\n    // solhint-disable-next-line no-inline-assembly\n    assembly {\n      $.slot := ERC20StorageLocation\n    }\n  }\n\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  // solhint-disable-next-line no-empty-blocks\n  constructor(IPolicyPool policyPool_) Reserve(policyPool_) {}\n\n  /**\n   * @dev Initializes the eToken\n   * @param name_ Name of the eToken\n   * @param symbol_ Symbol of the eToken\n   * @param maxUtilizationRate_ Max utilization rate (scr / totalSupply), in WAD (1e18)\n   * @param internalLoanInterestRate_ Annualized interest rate charged on internal loans, in WAD (1e18)\n   */\n  function initialize(\n    string memory name_,\n    string memory symbol_,\n    uint256 maxUtilizationRate_,\n    uint256 internalLoanInterestRate_\n  ) public initializer {\n    __Reserve_init();\n    __ERC20_init(name_, symbol_);\n    __ERC20Permit_init(name_);\n    __EToken_init_unchained(maxUtilizationRate_, internalLoanInterestRate_);\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function __EToken_init_unchained(\n    uint256 maxUtilizationRate_,\n    uint256 internalLoanInterestRate_\n  ) internal onlyInitializing {\n    _tsScaled.init();\n    /* _scr = Scr({\n      scr: 0,\n      interestRate: 0,\n      tokenInterestRate: 0\n    }); */\n    _params = PackedParams({\n      maxUtilizationRate: 0, // Will be set in the next line\n      liquidityRequirement: HUNDRED_PERCENT,\n      minUtilizationRate: 0,\n      internalLoanInterestRate: 0, // Will be set in the next line\n      whitelist: ILPWhitelist(address(0))\n    });\n\n    setParam(Parameter.maxUtilizationRate, maxUtilizationRate_);\n    setParam(Parameter.internalLoanInterestRate, internalLoanInterestRate_);\n  }\n\n  /// @inheritdoc IERC165\n  function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n    return\n      super.supportsInterface(interfaceId) ||\n      interfaceId == type(IERC20).interfaceId ||\n      interfaceId == type(IERC20Metadata).interfaceId ||\n      interfaceId == type(IEToken).interfaceId;\n  }\n\n  /*** BEGIN ERC20 methods - changes required to customize OZ's ERC20 implementation */\n\n  /// @inheritdoc IERC20Metadata\n  function decimals() public view virtual override returns (uint8) {\n    return _policyPool.currency().decimals();\n  }\n\n  /// @inheritdoc IERC20\n  function totalSupply() public view virtual override returns (uint256) {\n    return _tsScaled.projectScale(_scr).toCurrent(_tsScaled.amount);\n  }\n\n  /// @inheritdoc IERC20\n  function balanceOf(address account) public view virtual override returns (uint256) {\n    return _tsScaled.projectScale(_scr).toCurrent(super.balanceOf(account));\n  }\n\n  /// @inheritdoc ERC20Upgradeable\n  function _update(address from, address to, uint256 value) internal virtual override {\n    uint256 valueScaled;\n    if (from == address(0)) {\n      // Mint\n      (_tsScaled, valueScaled) = _tsScaled.add(value, _scr);\n    } else if (to == address(0)) {\n      // Burn\n      (_tsScaled, valueScaled) = _tsScaled.sub(value, _scr);\n    } else {\n      // Transfer\n      require(\n        address(_params.whitelist) == address(0) || _params.whitelist.acceptsTransfer(this, from, to, value),\n        TransferNotWhitelisted(from, to, value)\n      );\n      valueScaled = _tsScaled.projectScale(_scr).toScaledCeil(value);\n    }\n\n    ERC20Storage storage $ = _getERC20StorageFromEToken();\n    if (from != address(0)) {\n      uint256 fromBalance = $._balances[from];\n      if (fromBalance < valueScaled) {\n        revert ERC20InsufficientBalance(from, _tsScaled.projectScale(_scr).toCurrent(fromBalance), value);\n      }\n      unchecked {\n        // Overflow not possible: valueScaled <= fromBalance <= totalSupply.\n        $._balances[from] = fromBalance - valueScaled;\n      }\n    }\n\n    if (to != address(0)) {\n      unchecked {\n        // Overflow not possible: balance + valueScaled is at most totalSupply, which we know fits into a uint256.\n        $._balances[to] += valueScaled;\n      }\n    }\n\n    emit Transfer(from, to, value);\n  }\n\n  /*** END ERC20 methods */\n\n  /** BEGIN Methods following AAVE's IScaledBalanceToken, to simplify future integrations */\n\n  /**\n   * @dev Returns the scaled balance of the user. The scaled balance is the sum of all the\n   * updated stored balance divided by the EToken's scale index\n   * @param user The user whose balance is calculated\n   * @return The scaled balance of the user\n   **/\n  function scaledBalanceOf(address user) external view returns (uint256) {\n    return super.balanceOf(user);\n  }\n\n  /**\n   * @dev Returns the scaled balance of the user and the scaled total supply.\n   * @param user The address of the user\n   * @return The scaled balance of the user\n   * @return The scaled balance and the scaled total supply\n   **/\n  function getScaledUserBalanceAndSupply(address user) external view returns (uint256, uint256) {\n    return (super.balanceOf(user), uint256(_tsScaled.amount));\n  }\n\n  /**\n   * @notice Returns the total supply in scaled/raw units (without applying the current scale index). Equals the sum of {scaledBalanceOf} across all users.\n   * @return The total supply in scaled/raw units.\n   */\n  function scaledTotalSupply() external view returns (uint256) {\n    return uint256(_tsScaled.amount);\n  }\n\n  /** END Methods following AAVE's IScaledBalanceToken */\n\n  /// @inheritdoc IEToken\n  function getCurrentScale(bool updated) public view override returns (uint256) {\n    if (updated) return _tsScaled.projectScale(_scr).toUint256();\n    else return _tsScaled.scale.toUint256();\n  }\n\n  /**\n   * @dev Returns the amount of totalSupply that isn't utilized as SCR.\n   */\n  function fundsAvailable() public view returns (uint256) {\n    return _scr.fundsAvailable(totalSupply());\n  }\n\n  /**\n   * @dev Returns the funds that can be treated as available to lock as SCR, after applying the\n   *      max utilization cap and (if a Cooler is configured) subtracting pending withdrawals.\n   */\n  function fundsAvailableToLock() public view returns (uint256) {\n    uint256 ts = totalSupply();\n    if (address(_cooler) != address(0)) {\n      uint256 pendingWithdraw = _cooler.pendingWithdrawals(this);\n      if (pendingWithdraw >= ts) {\n        ts = 0;\n      } else {\n        ts = Math.min(ts - pendingWithdraw, ts.mulDiv(maxUtilizationRate(), WAD));\n      }\n    } else {\n      ts = ts.mulDiv(maxUtilizationRate(), WAD);\n    }\n    return _scr.fundsAvailable(ts);\n  }\n\n  /// @inheritdoc Reserve\n  function yieldVault() public view override returns (IERC4626) {\n    return _yieldVault;\n  }\n\n  function _setYieldVault(IERC4626 newYV) internal override {\n    _yieldVault = newYV;\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function _4toWad(uint16 value) internal pure returns (uint256) {\n    // 4 decimals to Wad (18 decimals)\n    return uint256(value) * FOUR_DECIMAL_TO_WAD;\n  }\n\n  function _wadTo4(uint256 value) internal pure returns (uint16) {\n    // Wad to 4 decimals\n    return (value / FOUR_DECIMAL_TO_WAD).toUint16();\n  }\n\n  /// @inheritdoc IEToken\n  function scr() public view virtual override returns (uint256) {\n    return _scr.scrAmount();\n  }\n\n  /// @inheritdoc IEToken\n  function scrInterestRate() public view override returns (uint256) {\n    return uint256(_scr.interestRate);\n  }\n\n  /// @inheritdoc IEToken\n  function tokenInterestRate() public view override returns (uint256) {\n    uint256 ts = totalSupply();\n    if (ts == 0) return 0;\n    else {\n      return uint256(_scr.interestRate).mulDiv(_scr.scr, ts);\n    }\n  }\n\n  /**\n   * @dev Returns the factor applied to SCR when computing the non-withdrawable. Typically 1.0 (in wad).\n   */\n  function liquidityRequirement() public view returns (uint256) {\n    return _4toWad(_params.liquidityRequirement);\n  }\n\n  /**\n   * @dev Returns the maximum utilization rate (UR) that is acceptable when locking funds.\n   *      The UR can be higher than this value as a consequence of withdrawals or other operations,\n   *      but not as a consequence of a lockScr call.\n   */\n  function maxUtilizationRate() public view returns (uint256) {\n    return _4toWad(_params.maxUtilizationRate);\n  }\n\n  /**\n   * @dev Returns the minimum utilization rate (UR) that is acceptable after deposits.\n   *      The UR can be lower than this value as a consequence of SCR unlocks or other operations,\n   *      but not as a consequence of a deposit call.\n   */\n  function minUtilizationRate() public view returns (uint256) {\n    return _4toWad(_params.minUtilizationRate);\n  }\n\n  /**\n   * @dev Returns the percentage of the total supply that is used as SCR (solvency capital backing risks)\n   */\n  function utilizationRate() public view returns (uint256) {\n    return _scr.scrAmount().mulDiv(WAD, this.totalSupply());\n  }\n\n  function lockScr(uint256 policyId, uint256 scrAmount, uint256 policyInterestRate) external override onlyBorrower {\n    if (scrAmount > fundsAvailableToLock()) revert NotEnoughScrFunds(scrAmount, fundsAvailableToLock());\n    _tsScaled = _tsScaled.discreteChange(0, _scr); // Accrues interests so far, to update the scale before SCR changes\n    _scr = _scr.add(scrAmount, policyInterestRate);\n    emit SCRLocked(policyId, policyInterestRate, scrAmount);\n  }\n\n  function _unlockScr(uint256 policyId, uint256 scrAmount, uint256 policyInterestRate, int256 adjustment) internal {\n    // Require removed, since it shouldn't happen and if happens it will fail in _scr.sub\n    // require(scrAmount <= uint256(_scr.scr), \"Current SCR less than the amount you want to unlock\");\n    _tsScaled = _tsScaled.discreteChange(adjustment, _scr);\n    _scr = _scr.sub(scrAmount, policyInterestRate);\n    emit SCRUnlocked(policyId, policyInterestRate, scrAmount, adjustment);\n  }\n\n  function unlockScr(\n    uint256 policyId,\n    uint256 scrAmount,\n    uint256 policyInterestRate,\n    int256 adjustment\n  ) external override onlyBorrower {\n    _unlockScr(policyId, scrAmount, policyInterestRate, adjustment);\n  }\n\n  function unlockScrWithRefund(\n    uint256 policyId,\n    uint256 scrAmount,\n    uint256 policyInterestRate,\n    int256 adjustment,\n    address receiver,\n    uint256 refundAmount\n  ) external override onlyBorrower {\n    _unlockScr(policyId, scrAmount, policyInterestRate, adjustment);\n    if (refundAmount != 0) {\n      _transferTo(receiver, refundAmount);\n      emit CoCRefunded(policyId, receiver, refundAmount);\n    }\n  }\n\n  function _yieldEarnings(int256 earnings) internal override {\n    _discreteChange(earnings);\n    super._yieldEarnings(earnings);\n  }\n\n  function _discreteChange(int256 amount) internal {\n    _tsScaled = _tsScaled.discreteChange(amount, _scr);\n  }\n\n  function deposit(uint256 amount, address caller, address receiver) external override onlyPolicyPool {\n    require(\n      address(_params.whitelist) == address(0) ||\n        (_params.whitelist.acceptsDeposit(this, caller, amount) &&\n          (caller == receiver || _params.whitelist.acceptsTransfer(this, caller, receiver, amount))),\n      DepositNotWhitelisted(caller, amount)\n    );\n    _mint(receiver, amount);\n    if (utilizationRate() < minUtilizationRate()) revert UtilizationRateTooLow(utilizationRate(), minUtilizationRate());\n  }\n\n  /// @inheritdoc IEToken\n  function totalWithdrawable() public view virtual override returns (uint256) {\n    uint256 locked = _scr.scrAmount().mulDiv(liquidityRequirement(), WAD);\n    uint256 totalSupply_ = totalSupply();\n    if (totalSupply_ >= locked) return totalSupply_ - locked;\n    else return 0;\n  }\n\n  function withdraw(\n    uint256 amount,\n    address caller,\n    address owner,\n    address receiver\n  ) external override onlyPolicyPool returns (uint256) {\n    /**\n     * Here we don't check for maxUtilizationRate because that limit only affects locking more capital (`lockScr`), but\n     * doesn't affects the right of liquidity providers to withdraw their funds.\n     * The only limit for withdraws is the `totalWithdrawable()` function, that's affected by the relation between the\n     * scr and the totalSupply.\n     */\n    if (address(yieldVault()) != address(0)) {\n      // Always update the accounting before a withdrawal. There may be unrecorded earnings/losses otherwise.\n      recordEarnings();\n    }\n    uint256 maxWithdraw = Math.min(balanceOf(owner), totalWithdrawable());\n    if (amount == type(uint256).max) amount = maxWithdraw;\n    if (amount == 0) return 0;\n    require(\n      address(_cooler) == address(0) || address(_cooler) == caller || _cooler.cooldownPeriod(this, owner, amount) == 0,\n      WithdrawalsRequireCooldown(_cooler)\n    );\n    require(amount <= maxWithdraw, ExceedsMaxWithdraw(amount, maxWithdraw));\n    /**\n     * For the whitelist validation, I use the owner address. If the caller != owner, then I assume that if the\n     * owner gave spending approval to the caller, that's enough.\n     */\n    require(\n      address(_params.whitelist) == address(0) || _params.whitelist.acceptsWithdrawal(this, owner, amount),\n      WithdrawalNotWhitelisted(owner, amount)\n    );\n    if (caller != owner) {\n      _spendAllowance(owner, caller, amount);\n    }\n    _burn(owner, amount);\n    _transferTo(receiver, amount);\n    return amount;\n  }\n\n  function redistribute(uint256 amount) external override {\n    _burn(_msgSender(), amount);\n    _discreteChange(amount.toInt256());\n    emit ETokensRedistributed(_msgSender(), amount);\n  }\n\n  function addBorrower(address borrower) external override onlyPolicyPool {\n    require(borrower != address(0), InvalidBorrower(borrower));\n    ETKLib.ScaledAmount storage loan = _loans[borrower];\n    require(loan.lastUpdate == 0, BorrowerAlreadyAdded(borrower));\n    loan.init();\n    emit InternalBorrowerAdded(borrower);\n  }\n\n  function removeBorrower(address borrower) external override onlyPolicyPool {\n    require(borrower != address(0), InvalidBorrower(borrower));\n    uint256 defaultedDebt = getLoan(borrower);\n    delete _loans[borrower];\n    emit InternalBorrowerRemoved(borrower, defaultedDebt);\n  }\n\n  /**\n   * @dev Returns the maximum negative adjustment (discrete loss) the eToken can accept without breaking consistency.\n   *      The limit comes from limits in the internal scale that takes scaledTotalSupply() to totalSupply()\n   */\n  function maxNegativeAdjustment() public view returns (uint256) {\n    return totalSupply() - _tsScaled.minValue(); // Min value accepted by _tsScaled\n  }\n\n  function internalLoan(uint256 amount, address receiver) external override onlyBorrower returns (uint256) {\n    uint256 amountAsked = amount;\n    amount = Math.min(amount, maxNegativeAdjustment());\n    if (amount == 0) return amountAsked;\n    (_loans[_msgSender()], ) = _loans[_msgSender()].add(amount, internalLoanInterestRate());\n    _discreteChange(-int256(amount));\n    _transferTo(receiver, amount);\n    emit InternalLoan(_msgSender(), amount, amountAsked);\n    return amountAsked - amount;\n  }\n\n  function repayLoan(uint256 amount, address onBehalfOf) external override {\n    // Anyone can call this method, since it has to pay\n    ETKLib.ScaledAmount storage loan = _loans[onBehalfOf];\n    require(loan.lastUpdate != 0, InvalidBorrower(onBehalfOf));\n    (_loans[onBehalfOf], ) = loan.sub(amount, internalLoanInterestRate());\n    _discreteChange(int256(amount));\n    emit InternalLoanRepaid(onBehalfOf, amount);\n    // Interaction at the end for security reasons\n    currency().safeTransferFrom(_msgSender(), address(this), amount);\n  }\n\n  /// @inheritdoc IEToken\n  function getLoan(address borrower) public view virtual override returns (uint256) {\n    ETKLib.ScaledAmount storage loan = _loans[borrower];\n    require(loan.lastUpdate != 0, InvalidBorrower(borrower));\n    return loan.projectScale(internalLoanInterestRate()).toCurrentCeil(uint256(loan.amount));\n  }\n\n  /**\n   * @dev Returns the annualized interest rate charged to borrowers (see PremiumsAccount) when they take funds\n   */\n  function internalLoanInterestRate() public view returns (uint256) {\n    return _4toWad(_params.internalLoanInterestRate);\n  }\n\n  function setParam(Parameter param, uint256 newValue) public {\n    if (param == Parameter.liquidityRequirement) {\n      require(newValue >= LIQ_REQ_MIN && newValue <= LIQ_REQ_MAX, InvalidParameter(param));\n      _params.liquidityRequirement = _wadTo4(newValue);\n    } else if (param == Parameter.minUtilizationRate) {\n      require(newValue <= WAD, InvalidParameter(param));\n      _params.minUtilizationRate = _wadTo4(newValue);\n    } else if (param == Parameter.maxUtilizationRate) {\n      require(newValue <= WAD, InvalidParameter(param));\n      _params.maxUtilizationRate = _wadTo4(newValue);\n      /*\n       * We don't validate minUtilizationRate < maxUtilizationRate because the opposite is valid too.\n       * These limits aren't strong limits on the values the utilization rate can take, but instead they are\n       * limits on specific operations.\n       * `minUtilizationRate` is used to avoid new deposits to dilute the yields of existing LPs, but it doesn't\n       * prevent the UR from going down in other operations (`unlockScr` for example).\n       * `maxUtilizationRate` is used to prevent selling more coverage when UR is too high, only checked on `lockScr`\n       * operations, but not in withdrawals or other operations.\n       */\n    } else {\n      // (param == Parameter.internalLoanInterestRate) - since param can only take one of 4 values\n\n      // This call changes the interest rate without updating the current loans up to this point\n      // So, if interest rate goes from 5% to 6%, this change will be retroactive to the lastUpdate of each\n      // loan. Since it's a permissioned call, I'm ok with this. If a caller wants to reduce the impact, it can\n      // issue 1 wei repayLoan to each active loan, forcing the update of the scales\n      require(newValue <= INT_LOAN_IR_MAX, InvalidParameter(param));\n      _params.internalLoanInterestRate = _wadTo4(newValue);\n    }\n    emit ParameterChanged(param, newValue);\n  }\n\n  function setWhitelist(ILPWhitelist lpWhitelist_) external {\n    require(\n      address(lpWhitelist_) == address(0) || IPolicyPoolComponent(address(lpWhitelist_)).policyPool() == _policyPool,\n      InvalidWhitelist(lpWhitelist_)\n    );\n    emit WhitelistChanged(_params.whitelist, lpWhitelist_);\n    _params.whitelist = lpWhitelist_;\n  }\n\n  function whitelist() external view returns (ILPWhitelist) {\n    return _params.whitelist;\n  }\n\n  function setCooler(ICooler newCooler) external {\n    require(\n      address(newCooler) == address(0) || IPolicyPoolComponent(address(newCooler)).policyPool() == _policyPool,\n      InvalidCooler(newCooler)\n    );\n    emit CoolerChanged(_cooler, newCooler);\n    _cooler = newCooler;\n  }\n\n  function cooler() external view override returns (address) {\n    return address(_cooler);\n  }\n\n  /**\n   * @dev This empty reserved space is put in place to allow future versions to add new\n   * variables without shifting down storage in the inheritance chain.\n   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n   */\n  uint256[44] private __gap;\n}\n"},"@ensuro/core/contracts/interfaces/ICooler.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IEToken} from \"./IEToken.sol\";\n\n/**\n * @title ICooler - Interface of Cooler contracts, for eTokens that have cooldown\n *\n * @dev This contract will hold the tokens during the cooldown period\n * @author Ensuro\n */\ninterface ICooler {\n  /**\n   * @notice Returns the amount of pending (scheduled) withdrawals for a given eToken\n   *\n   * @param eToken The eToken (see {EToken})\n   * @return The amount in currency that is pending\n   */\n  function pendingWithdrawals(IEToken eToken) external view returns (uint256);\n\n  /**\n   * @notice Returns the cooldown period in seconds required for withdrawals in a given eToken\n   *\n   * @param eToken The eToken (see {EToken})\n   * @param owner  The owner of the tokens requested to withdraw\n   * @param amount The amount requested to withdraw\n   * @return The cooldown period in seconds\n   */\n  function cooldownPeriod(IEToken eToken, address owner, uint256 amount) external view returns (uint40);\n}\n"},"@ensuro/core/contracts/interfaces/IEToken.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\n/**\n * @title IEToken interface\n * @notice Interface for EToken smart contracts, these are the capital pools.\n * @author Ensuro\n */\ninterface IEToken {\n  /**\n   * @notice Enum of the configurable parameters in an EToken.\n   *\n   * @dev These are the supported parameter types:\n   * - liquidityRequirement: target solvency/liquidity constraint (typically 1, scales the SCR to lock more)\n   * - minUtilizationRate: lower bound for utilization rate after deposits (prevents excess idle liquidity)\n   * - maxUtilizationRate: upper bound for utilization rate after capital lock (prevents locking all the capital)\n   * - internalLoanInterestRate: annualized rate charged on internal loans (wad)\n   */\n  enum Parameter {\n    liquidityRequirement,\n    minUtilizationRate,\n    maxUtilizationRate,\n    internalLoanInterestRate\n  }\n\n  /**\n   * @notice Event emitted when part of the funds of the eToken are locked as solvency capital.\n   * @param policyId The id of the policy that locks the capital\n   * @param interestRate The annualized interestRate paid for the capital (wad)\n   * @param value The amount locked\n   */\n  event SCRLocked(uint256 indexed policyId, uint256 interestRate, uint256 value);\n\n  /**\n   * @notice Event emitted when the locked funds are unlocked and no longer used as solvency capital.\n   * @param policyId The id of the policy that unlocks the capital (should be the that locked before with SCRLocked)\n   * @param interestRate The annualized interestRate that was paid for the capital (wad)\n   * @param value The amount unlocked\n   * @param adjustment Discrete amount of adjustment done to the totalSupply to reflect when more or less\n   *                   than the received cost of capital has been accrued since the SCR was locked.\n   */\n  event SCRUnlocked(uint256 indexed policyId, uint256 interestRate, uint256 value, int256 adjustment);\n\n  /**\n   * @notice Returns the amount of capital that's locked as solvency capital for active policies.\n   */\n  function scr() external view returns (uint256);\n\n  /**\n   * @notice Locks part of the liquidity of the EToken as solvency capital.\n   *\n   * @param policyId The id of the policy that locks the capital\n   * @param scrAmount The amount to lock\n   * @param policyInterestRate The annualized interest rate (wad) to be paid for the `scrAmount`\n   *\n   * @custom:pre Must be called by a _borrower_ (PremiumsAccount) previously added with `addBorrower`.\n   * @custom:pre `scrAmount` <= `fundsAvailableToLock()`\n   *\n   * @custom:emits SCRLocked\n   */\n  function lockScr(uint256 policyId, uint256 scrAmount, uint256 policyInterestRate) external;\n\n  /**\n   * @notice Unlocks solvency capital previously locked with `lockScr`.\n   * @dev The capital no longer needed as solvency, enabling withdrawal.\n   *\n   * @param policyId The id of the policy that locked the scr originally\n   * @param scrAmount The amount to unlock\n   * @param policyInterestRate The annualized interest rate that was paid for the `scrAmount`, must be the same that\n   *                           was sent in `lockScr` call.\n   * @param adjustment Discrete amount of adjustment done to the totalSupply to reflect when more or less\n   *                   than the received cost of capital has been accrued since the SCR was locked.\n   *\n   * @custom:pre Must be called by a _borrower_ (PremiumsAccount) previously added with `addBorrower`.\n   * @custom:pre `scrAmount` must be <= {scr}\n   *\n   * @custom:emits SCRUnlocked\n   */\n  function unlockScr(uint256 policyId, uint256 scrAmount, uint256 policyInterestRate, int256 adjustment) external;\n\n  /**\n   * @notice Unlocks solvency capital previously locked with `lockScr`, doing a refund of the CoC previously received\n   * @dev The capital no longer needed as solvency . It refunds part of the Coc received that wasn't accrued (or if\n   * it was already accrued, it is adjusted). The refund doesn't affect the totalSupply. It just changes the reserves.\n   *\n   * @param policyId The id of the policy that locked the scr originally\n   * @param scrAmount The amount to unlock\n   * @param policyInterestRate The annualized interest rate that was paid for the `scrAmount`, must be the same that\n   * was sent in `lockScr` call.\n   * @param receiver The address of the receiver of the refund\n   * @param refundAmount The amount to refund\n   *\n   * @custom:pre Must be called by a _borrower_ previously added with `addBorrower`.\n   *\n   * @custom:emits SCRUnlocked\n   * @custom:emits CoCRefunded\n   */\n  function unlockScrWithRefund(\n    uint256 policyId,\n    uint256 scrAmount,\n    uint256 policyInterestRate,\n    int256 adjustment,\n    address receiver,\n    uint256 refundAmount\n  ) external;\n\n  /**\n   * @notice Registers a deposit of liquidity in the pool.\n   * @dev Called from the PolicyPool, assumes the amount has already been transferred. `amount` of eToken are minted\n   * and given to the provider in exchange of the liquidity provided.\n   *\n   * @param amount The amount deposited.\n   * @param caller The user that initiates the deposit\n   * @param receiver The user that will receive the minted eTokens\n   *\n   * @custom:pre Must be called by `policyPool()`\n   * @custom:pre The amount was transferred\n   * @custom:pre `utilizationRate()` after the deposit is >= `minUtilizationRate()`\n   * @custom:pre If there is a whitelist, caller must be authorized to deposit. If caller != receiver, then transfer from caller\n   *             to received must be authorized\n   *\n   * @custom:emits Transfer with `from` = 0x0 and to = `provider` (mint)\n   */\n  function deposit(uint256 amount, address caller, address receiver) external;\n\n  /**\n   * @notice Withdraws an amount from an eToken.\n   * @dev `withdrawn` eTokens are be burned and the user receives the same amount in `currency()`.\n   * If `amount == type(uint256).max`, it withdraws up to `maxWithdraw` (i.e., as much as possible).\n   * Otherwise, it reverts if `amount > maxWithdraw`.\n   *\n   * @param amount The amount to withdraw. If `amount == type(uint256).max`, withdraws up to `maxWithdraw`.\n   * @param caller The user that initiates the withdrawal\n   * @param owner The owner of the eTokens (either caller==owner or caller has allowance)\n   * @param receiver The address that will receive the resulting `currency()`\n   *\n   * @custom:pre Must be called by `policyPool()`\n   *\n   * @custom:emits Transfer with `from` = `provider` and to = `0x0` (burn)\n   */\n  function withdraw(\n    uint256 amount,\n    address caller,\n    address owner,\n    address receiver\n  ) external returns (uint256 withdrawn);\n\n  /**\n   * @notice Returns the total amount that can be withdrawn\n   */\n  function totalWithdrawable() external view returns (uint256);\n\n  /**\n   * @notice Adds an authorized _borrower_ to the eToken. This _borrower_ will be allowed to lock/unlock funds and to take\n   * loans.\n   *\n   * @dev Borrowers (typically PremiumsAccounts) can:\n   * - lock/unlock SCR via {lockScr}/{unlockScr}/{unlockScrWithRefund}\n   * - take internal loans via {internalLoan}\n   *\n   * @param borrower The address of the _borrower_, a PremiumsAccount that has this eToken as senior or junior eToken.\n   *\n   * @custom:pre Must be called by `policyPool()`\n   * @custom:emits InternalBorrowerAdded\n   */\n  function addBorrower(address borrower) external;\n\n  /**\n   * @notice Removes an authorized _borrower_ to the eToken. The _borrower_ can't no longer lock funds or take loans.\n   *\n   * @param borrower The address of the _borrower_, a PremiumsAccount that has this eToken as senior or junior eToken.\n   *\n   * @custom:pre Must be called by `policyPool()`\n   * @custom:emits InternalBorrowerRemoved with the defaulted debt\n   */\n  function removeBorrower(address borrower) external;\n\n  /**\n   * @notice Lends `amount` to the borrower (msg.sender), transferring the money to `receiver`.\n   * @dev This reduces the `totalSupply()` of the eToken, and stores a debt that will be repaid (hopefully) with\n   * `repayLoan`.\n   *\n   * @param amount The amount required\n   * @param receiver The received of the funds lent. This is usually the policyholder if the loan is used for a payout.\n   * @return Returns the amount that wasn't able to fulfil. `amount - lent`\n   *\n   * @custom:pre Must be called by a _borrower_ previously added with `addBorrower`.\n   *\n   * @custom:emits {InternalLoan}\n   * @custom:emits {ERC20-Transfer} transferring `lent` to `receiver`\n   */\n  function internalLoan(uint256 amount, address receiver) external returns (uint256);\n\n  /**\n   * @notice Repays a loan taken with `internalLoan`.\n   *\n   * @param amount The amount to repaid, that will be transferred from `msg.sender` balance.\n   * @param onBehalfOf The address of the borrower that took the loan. Usually `onBehalfOf == msg.sender` but we keep it\n   * open because in some cases with might need someone else pays the debt.\n   *\n   * @custom:pre `msg.sender` approved the spending of `currency()` for at least `amount`\n   *\n   * @custom:emits {InternalLoanRepaid}\n   * @custom:emits {ERC20-Transfer} transferring `amount` from `msg.sender` to `this`\n   */\n  function repayLoan(uint256 amount, address onBehalfOf) external;\n\n  /**\n   * @notice Returns the updated debt (principal + interest) of the `borrower`.\n   */\n  function getLoan(address borrower) external view returns (uint256);\n\n  /**\n   * @notice The annualized interest rate at which the `totalSupply()` grows\n   */\n  function tokenInterestRate() external view returns (uint256);\n\n  /**\n   * @notice The weighted average annualized interest rate paid by the currently locked `scr()`.\n   */\n  function scrInterestRate() external view returns (uint256);\n\n  /**\n   * @notice Returns the number that scales the shares to reflect the earnings or losses (rebasing token)\n   *\n   * @param updated When it's false, it returns the last scale stored. When it's true, it projects that scale applying\n   *                the accrued returns of the scr\n   */\n  function getCurrentScale(bool updated) external view returns (uint256);\n\n  /**\n   * @notice Redistributes a given amount of eTokens of the caller between the remaining LPs\n   *\n   * @param amount The amount of eTokens to burn\n   */\n  function redistribute(uint256 amount) external;\n\n  /**\n   * @notice Returns the cooler contract plugged into the eToken\n   */\n  function cooler() external view returns (address);\n}\n"},"@ensuro/core/contracts/interfaces/ILPWhitelist.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IEToken} from \"./IEToken.sol\";\n\n/**\n * @title ILPWhitelist - Interface that handles the whitelisting of Liquidity Providers\n * @author Ensuro\n */\ninterface ILPWhitelist {\n  /**\n   * @dev Indicates whether or not a liquidity provider can do a deposit in an eToken.\n   *\n   * @param etoken The eToken (see {EToken}) where the provider wants to deposit money.\n   * @param provider The address of the liquidity provider (user) that wants to deposit\n   * @param amount The amount of the deposit\n   * @return true if `provider` deposit is accepted, false if not\n   */\n  function acceptsDeposit(IEToken etoken, address provider, uint256 amount) external view returns (bool);\n\n  /**\n   * @dev Indicates whether or not the eTokens can be transferred from `providerFrom` to `providerTo`\n   *\n   * @param etoken The eToken (see {EToken}) that the LPs have the intention to transfer.\n   * @param providerFrom The current owner of the tokens\n   * @param providerTo The destination of the tokens if the transfer is accepted\n   * @param amount The amount of tokens to be transferred\n   * @return true if the transfer operation is accepted, false if not.\n   */\n  function acceptsTransfer(\n    IEToken etoken,\n    address providerFrom,\n    address providerTo,\n    uint256 amount\n  ) external view returns (bool);\n\n  /**\n   * @dev Indicates whether or not a liquidity provider can withdraw an eToken.\n   *\n   * @param etoken The eToken (see {EToken}) where the provider wants to withdraw money.\n   * @param provider The address of the liquidity provider (user) that wants to withdraw\n   * @param amount The amount of the withdrawal\n   * @return true if `provider` withdraw request is accepted, false if not\n   */\n  function acceptsWithdrawal(IEToken etoken, address provider, uint256 amount) external view returns (bool);\n}\n"},"@ensuro/core/contracts/interfaces/IPolicyHolder.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IERC721Receiver} from \"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\";\n\n/**\n * @title Policy holder interface\n * @dev Interface for any contract that wants to be a holder of Ensuro Policies and receive the payouts\n */\ninterface IPolicyHolder is IERC721Receiver {\n  /**\n   * @dev Whenever an Policy is expired or resolved with payout = 0, this function is called\n   *\n   * It should return its Solidity selector to confirm the payout.\n   * If interface is not implemented by the recipient, it will be ignored and the payout will be successful.\n   * No mather what's the return value or even if this function reverts, this function will not revert the policy\n   * expiration.\n   *\n   * The selector can be obtained in Solidity with `IPolicyHolder.onPolicyExpired.selector`.\n   */\n  function onPolicyExpired(address operator, address from, uint256 policyId) external returns (bytes4);\n\n  /**\n   * @dev Whenever an Policy is resolved with payout > 0, this function is called\n   *\n   * It must return its Solidity selector to confirm the payout.\n   * If interface is not implemented by the recipient, it will be ignored and the payout will be successful.\n   * If any other value is returned or it reverts, the policy resolution / payout will be reverted.\n   *\n   * The selector can be obtained in Solidity with `IPolicyHolder.onPayoutReceived.selector`.\n   */\n  function onPayoutReceived(address operator, address from, uint256 policyId, uint256 amount) external returns (bytes4);\n\n  /**\n   * @dev Whenever a policy is replaced, this function is called\n   *\n   * It must return its Solidity selector to confirm the operation.\n   * If interface is not implemented by the recipient, it will be ignored and the replacement will be successful.\n   * If any other value is returned or it reverts, the policy replacement will be reverted.\n   *\n   * The selector can be obtained in Solidity with `IPolicyHolder.onPolicyReplaced.selector`.\n   */\n  function onPolicyReplaced(\n    address operator,\n    address from,\n    uint256 oldPolicyId,\n    uint256 newPolicyId\n  ) external returns (bytes4);\n\n  /**\n   * @dev Whenever a policy is cancelled, this function is called\n   *\n   * It must return its Solidity selector to confirm the operation.\n   * If interface is not implemented by the recipient, it will be ignored and the cancellation will be successful.\n   * If any other value is returned or it reverts, the policy cancellation will be reverted.\n   *\n   * The selector can be obtained in Solidity with `IPolicyHolder.onPolicyCancelled.selector`.\n   */\n  function onPolicyCancelled(\n    address operator,\n    address from,\n    uint256 cancelledPolicyId,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund\n  ) external returns (bytes4);\n}\n"},"@ensuro/core/contracts/interfaces/IPolicyPool.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {Policy} from \"../Policy.sol\";\nimport {IEToken} from \"./IEToken.sol\";\nimport {IRiskModule} from \"./IRiskModule.sol\";\n\n/**\n * @title Interface of PolicyPool contracts\n * @notice There's a single instance of PolicyPool contract for a given deployment of the protocol\n * @dev Some methods of this interface will be called by other components of the protocol (like RiskModule or\n *      PremiumsAccount).\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ninterface IPolicyPool {\n  /**\n   * @notice Event emitted every time a new policy is added to the pool\n   * @dev Contains all the data about the policy that is later required for doing operations with the policy like\n   *      resolution or expiration.\n   *\n   * @param riskModule The risk module that created the policy\n   * @param policy The {Policy-PolicyData} struct with all the immutable fields of the policy.\n   */\n  event NewPolicy(IRiskModule indexed riskModule, Policy.PolicyData policy);\n\n  /**\n   * @notice Event emitted every time a new policy replaces an old Policy.\n   * @dev The event contains only the id of the replacement policy, the full data is available in the NewPolicy event.\n   *\n   * @param riskModule The risk module that created the policy\n   * @param oldPolicyId The id of the replaced policy.\n   * @param newPolicyId The id of the new policy.\n   */\n  event PolicyReplaced(IRiskModule indexed riskModule, uint256 indexed oldPolicyId, uint256 indexed newPolicyId);\n\n  /**\n   * @notice Event emitted when a policy is cancelled, and part of the paid premium is refunded.\n   * @dev After this, the policy is no longer active. The refund amounts are transferred to the policy holder.\n   *\n   * @param riskModule The risk module that created the policy\n   * @param cancelledPolicyId The id of the cancelled policy.\n   * @param purePremiumRefund The amount of pure premium refunded\n   * @param jrCocRefund The amount of Jr CoC refunded\n   * @param srCocRefund The amount of Sr CoC refunded\n   */\n  event PolicyCancelled(\n    IRiskModule indexed riskModule,\n    uint256 indexed cancelledPolicyId,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund\n  );\n\n  /**\n   * @notice Event emitted every time a policy is removed from the pool\n   * @dev If the policy expired, the `payout` is 0, otherwise is the amount transferred to the policyholder.\n   *\n   * @param riskModule The risk module where that created the policy initially.\n   * @param policyId The unique id of the policy\n   * @param payout The payout that has been paid to the policy holder. 0 when the policy expired.\n   */\n  event PolicyResolved(IRiskModule indexed riskModule, uint256 indexed policyId, uint256 payout);\n\n  /**\n   * @notice Reference to the main currency (ERC20, e.g. USDC) used in the protocol\n   */\n  function currency() external view returns (IERC20Metadata);\n\n  /**\n   * @notice Address of the treasury, that receives protocol fees.\n   */\n  function treasury() external view returns (address);\n\n  /**\n   * @notice Creates a new Policy\n   * @dev It charges the premium and distributes it to the different parties (PremiumsAccount, ETokens, treasury)\n   *\n   * @custom:pre `msg.sender` must be an active RiskModule\n   * @custom:pre `rm.premiumsAccount()` must be an active PremiumsAccount\n   * @custom:pre `payer` approved the spending of `currency()` for at least `policy.premium`\n   * @custom:pre `internalId` must be unique within the risk module (`msg.sender`) and not used before\n   *\n   * @custom:emits NewPolicy with all the details about the policy\n   * @custom:emits ERC20-Transfer transfers from `payer` to the different receivers of the premium\n   *               (see Premium Split in the docs)\n   *\n   * @custom:throws PolicyAlreadyExists when reusing an internalId\n\n   * @param policy A policy created with {Policy-initialize}\n   * @param payer The address that will pay for the premium\n   * @param policyHolder The address of the policy holder\n   * @param internalId A unique id within the RiskModule, that will be used to compute the policy id\n   * @return The policy id, identifying the NFT and the policy\n   */\n  function newPolicy(\n    Policy.PolicyData memory policy,\n    address payer,\n    address policyHolder,\n    uint96 internalId\n  ) external returns (uint256);\n\n  /**\n   * @notice Replaces a policy with another\n   * @dev After this call, the oldPolicy is no longer active and a new policy is created. Diferencial changes to\n   *      premiums and locked SCR.\n   *\n   * @param oldPolicy A policy created previously and not expired\n   * @param newPolicy_ A policy created with {Policy-initialize}\n   * @param payer The address that will pay for the premium difference\n   * @param internalId A unique id within the RiskModule, that will be used to compute the policy id\n   * @return The policy id, identifying the NFT and the policy\n   *\n   * @custom:pre `msg.sender` must be an active RiskModule\n   * @custom:pre `rm.premiumsAccount()` must be an active PremiumsAccount\n   * @custom:pre `payer` approved the spending of `currency()` for at least `newPolicy_.premium - oldPolicy.premium`\n   * @custom:pre `internalId` must be unique within `policy.riskModule` and not used before\n   *\n   * @custom:throws PolicyAlreadyExpired when trying to replace an expired policy\n   * @custom:throws InvalidPolicyReplacement when trying to reduce some of the premium componentsa\n   *\n   * @custom:emits PolicyReplaced with the ids of the new and replaced policy\n   * @custom:emits NewPolicy with all the details of the new policy\n   */\n  function replacePolicy(\n    Policy.PolicyData memory oldPolicy,\n    Policy.PolicyData memory newPolicy_,\n    address payer,\n    uint96 internalId\n  ) external returns (uint256);\n\n  /**\n   * @notice Cancels a policy, doing optional refunds of parts of the premium.\n   * @dev After this call the policy is not claimable and funds are unlocked\n   *\n   * @custom:pre `msg.sender` must be an active or deprecated RiskModule\n   * @custom:pre Policy not expired\n   *\n   * Events:\n   * @custom:emits PolicyCancelled with the refund amounts\n   * @custom:emits ERC20-Transfer transfers of the refunds amount to the policy holder\n   *\n   * @param policyToCancel A policy created previously and not expired, that will be cancelled\n   * @param purePremiumRefund The amount to refund from pure premiums (<= policyToCancel.purePremium)\n   * @param jrCocRefund The amount to refund from jrCoc (<= policyToCancel.jrCoc)\n   * @param srCocRefund The amount to refund from srCoc (<= policyToCancel.jrCoc)\n   */\n  function cancelPolicy(\n    Policy.PolicyData calldata policyToCancel,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund\n  ) external;\n\n  /**\n   * @notice Resolves a policy with a payout, sending the payment to the owner of the policy NFT.\n   * @dev After this call the policy is no longer active and the funds have been unlocked.\n   *\n   * @custom:pre `msg.sender` must be an active or deprecated RiskModule\n   * @custom:pre `payout`: must be less than equal to `policy.payout`.\n   * @custom:pre `policy`: must be a Policy not resolved before and not expired (if payout > 0).\n   *\n   * @custom:emits PolicyResolved with the payout amount\n   * @custom:emits ERC20-Transfer to the policyholder with the payout\n   *\n   * @param policy A policy previously created with `newPolicy`\n   * @param payout The amount to pay to the policyholder\n   */\n  function resolvePolicy(Policy.PolicyData calldata policy, uint256 payout) external;\n\n  /**\n   * @notice Expires a policy, unlocked the solvency.\n   * @dev Resolves a policy with a payout 0, unlocking the solvency. Can be called by anyone, but only after\n   *      `Policy.expiration`.\n   *\n   * @custom:pre `policy`: must be a Policy not resolved before\n   * @custom:pre `policy.expiration` <= block.timestamp\n   *\n   * @custom:emits PolicyResolved with the payout == 0\n   *\n   * @param policy A policy previously created with `newPolicy`\n   */\n  function expirePolicy(Policy.PolicyData calldata policy) external;\n\n  /**\n   * @notice Returns whether a policy is active\n   * @dev A policy is active when it's still in the PolicyPool, not yet resolved or expired.\n   *      Be aware that a policy might be active but the `block.timestamp` might be after the expiration date, so it\n   *      can't be triggered with a payout.\n   *\n   * @param policyId The id of the policy queried\n   * @return Whether the policy is active or not\n   */\n  function isActive(uint256 policyId) external view returns (bool);\n\n  /**\n   * @notice Returns the stored hash of the policy\n   * @dev Returns `bytes32(0)` if the policy isn't active.\n   *\n   * @param policyId The id of the policy queried\n   * @return Returns the hash of a given policy id\n   */\n  function getPolicyHash(uint256 policyId) external view returns (bytes32);\n\n  /**\n   * @notice Deposits liquidity into an eToken\n   * @dev Forwards the call to {EToken-deposit}, after transferring the funds.\n   *      The user will receive etokens for the same amount deposited.\n   *\n   * @custom:pre `msg.sender` approved the spending of `currency()` for at least `amount`\n   * @custom:pre `eToken` is an active eToken installed in the pool.\n   *\n   * @custom:emits EToken-Transfer from 0x0 to `receiver`, reflects the eTokens minted.\n   * @custom:emits ERC20-Transfer from `msg.sender` to address(eToken)\n   *\n   * @param eToken The address of the eToken to which the user wants to provide liquidity\n   * @param amount The amount to deposit\n   * @param receiver The user that will receive the minted tokens\n   */\n  function deposit(IEToken eToken, uint256 amount, address receiver) external;\n\n  /**\n   * @notice Deposits liquidity into an eToken, EIP-2612 compatible version.\n   * @dev Forwards the call to {EToken-deposit}, after transferring the funds.\n   *      The user will receive etokens for the same amount deposited. EIP-2612 compatible version, allows sending a\n   *      signed permit in the same operation.\n   *\n   * @custom:pre `msg.sender` approved the spending of `currency()` for at least `amount`\n   * @custom:pre `eToken` is an active eToken installed in the pool.\n   *\n   * @custom:emits EToken-Transfer from 0x0 to `receiver`, reflects the eTokens minted.\n   * @custom:emits ERC20-Transfer from `msg.sender` to address(eToken)\n   *\n   * @param eToken The address of the eToken to which the user wants to provide liquidity\n   * @param receiver The user that will receive the minted tokens\n   * @param amount The amount to deposit\n   * @param deadline The deadline of the permit\n   * @param v Component of the secp256k1 signature\n   * @param r Component of the secp256k1 signature\n   * @param s Component of the secp256k1 signature\n   */\n  function depositWithPermit(\n    IEToken eToken,\n    uint256 amount,\n    address receiver,\n    uint256 deadline,\n    uint8 v,\n    bytes32 r,\n    bytes32 s\n  ) external;\n\n  /**\n   * @notice Withdraws an amount from an eToken\n   * @dev Forwards the call to {EToken-withdraw}. `amount` of eTokens will be burned and the user will receive the\n   *      same amount in `currency()`.\n   *\n   * @custom:pre `eToken` is an active (or deprecated) eToken installed in the pool.\n   *\n   * @custom:emits EToken-Transfer from `owner` to `0x0`, reflects the eTokens burned.\n   * @custom:emits ERC20-Transfer from address(eToken) to `receiver`\n   *\n   * @param eToken The address of the eToken from where the user wants to withdraw liquidity\n   * @param amount The amount to withdraw. If equal to type(uint256).max, means full withdrawal.\n   *               If the balance is not enough or can't be withdrawn (locked as SCR), it withdraws\n   *               as much as it can, but doesn't fails.\n   * @param receiver The user that will receive the resulting `currency()`\n   * @param owner The user that owns the eTokens (must be msg.sender or have allowance)\n   * @return Returns the actual amount withdrawn.\n   */\n  function withdraw(IEToken eToken, uint256 amount, address receiver, address owner) external returns (uint256);\n}\n"},"@ensuro/core/contracts/interfaces/IPolicyPoolComponent.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IPolicyPool} from \"./IPolicyPool.sol\";\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\n\n/**\n * @title IPolicyPoolComponent interface\n * @notice Interface for Contracts linked (owned) by a PolicyPool. Useful to avoid cyclic dependencies\n * @author Ensuro\n */\ninterface IPolicyPoolComponent is IERC165 {\n  /**\n   * @notice Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\n   */\n  function policyPool() external view returns (IPolicyPool);\n}\n"},"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IEToken} from \"./IEToken.sol\";\nimport {Policy} from \"../Policy.sol\";\n\n/**\n * @title IPremiumsAccount interface\n * @notice Interface for Premiums Account contracts.\n * @author Ensuro\n */\ninterface IPremiumsAccount {\n  /**\n   * @notice Adds a policy to the PremiumsAccount. Stores the pure premiums and locks the aditional funds from junior and\n   * senior eTokens.\n   *\n   * @param policy The policy to add (created in this transaction)\n   *\n   * @custom:pre Must be called by `policyPool()`\n   *\n   * @custom:emits {EToken-SCRLocked}\n   */\n  function policyCreated(Policy.PolicyData memory policy) external;\n\n  /**\n   * @notice Replaces a policy with another in PremiumsAccount. Stores the pure premiums difference and\n   * re-locks the aditional funds from junior and senior eTokens.\n   *\n   * @param oldPolicy The policy to replace (created in a previous transaction)\n   * @param newPolicy The policy that will replace the old one (created in this transaction)\n   *\n   * @custom:pre Must be called by `policyPool()`\n   *\n   * @custom:emits {EToken-SCRUnlocked}\n   * @custom:emits {EToken-SCRLocked}\n   */\n  function policyReplaced(Policy.PolicyData memory oldPolicy, Policy.PolicyData memory newPolicy) external;\n\n  /**\n   * @notice Reflects the cancellation of a policy, doing the required refunds.\n   *\n   * @param policyToCancel The policy that is being cancelled\n   * @param purePremiumRefund The pure premium amount that will be reimbursed to the policy holder\n   * @param jrCocRefund The jrCoc that will be reimbursed to the policy holder\n   * @param srCocRefund The srCoc that will be reimbursed to the policy holder\n   * @param policyHolder Owner of the policy that will receive the reimbursement\n   *\n   * @custom:pre Must be called by `policyPool()`\n   *\n   * @custom:emits {EToken-SCRUnlocked}\n   */\n  function policyCancelled(\n    Policy.PolicyData calldata policyToCancel,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund,\n    address policyHolder\n  ) external;\n\n  /**\n   * @notice The PremiumsAccount is notified that the policy was resolved and issues the payout to the policyHolder.\n   *\n   * @param policyHolder The one that will receive the payout\n   * @param policy The policy that was resolved\n   * @param payout The amount that has to be transferred to `policyHolder`\n   *\n   * @custom:pre Must be called by `policyPool()`\n   * @custom:emits {ERC20-Transfer}: `to == policyHolder`, `amount == payout`\n   * @custom:emits {EToken-InternalLoan}: optional, if a loan needs to be taken\n   * @custom:emits {EToken-SCRUnlocked}\n   */\n  function policyResolvedWithPayout(address policyHolder, Policy.PolicyData memory policy, uint256 payout) external;\n\n  /**\n   * @notice The PremiumsAccount is notified that the policy has expired, unlocks the SCR and earns the pure premium.\n   *\n   * @param policy The policy that has expired\n   *\n   * @custom:pre Must be called by `policyPool()`\n   * @custom:emits {ERC20-Transfer}: `to == policyHolder`, `amount == payout`\n   * @custom:emits {EToken-InternalLoanRepaid}: optional, if a loan was taken before\n   */\n  function policyExpired(Policy.PolicyData memory policy) external;\n\n  /**\n   * @notice The senior eToken, the secondary source of solvency, used if the premiums account is exhausted and junior too\n   */\n  function seniorEtk() external view returns (IEToken);\n\n  /**\n   * @notice The junior eToken, the primary source of solvency, used if the premiums account is exhausted.\n   */\n  function juniorEtk() external view returns (IEToken);\n\n  /**\n   * @notice Returns the juniorEtk and seniorEtk. See {juniorEtk()} and {seniorEtk()}\n   */\n  function etks() external view returns (IEToken juniorEtk, IEToken seniorEtk);\n\n  /**\n   * @notice The total amount of premiums hold by this PremiumsAccount\n   */\n  function purePremiums() external view returns (uint256);\n}\n"},"@ensuro/core/contracts/interfaces/IRiskModule.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IPremiumsAccount} from \"./IPremiumsAccount.sol\";\n\n/**\n * @title IRiskModule interface\n * @notice Interface for RiskModule smart contracts. Gives access to RiskModule configuration parameters\n * @author Ensuro\n */\ninterface IRiskModule {\n  /**\n   * @notice Returns the address of the partner that receives the partnerCommission\n   */\n  function wallet() external view returns (address);\n\n  /**\n   * @notice Returns the {PremiumsAccount} where the premiums of this risk module are collected. Never changes.\n   */\n  function premiumsAccount() external view returns (IPremiumsAccount);\n}\n"},"@ensuro/core/contracts/interfaces/IUnderwriter.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\nimport {Policy} from \"../Policy.sol\";\n\n/**\n * @title Underwriter interface\n * @notice Interface for a contract that validates inputs and converts it into the fields required to create a policy\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ninterface IUnderwriter {\n  /**\n   * @notice Prices a new policy request for RiskModule `rm`.\n   *\n   * @param rm        The RiskModule address requesting pricing (implementations may use it for access checks).\n   * @param inputData Opaque payload consumed by the Underwriter implementation.\n   *\n   * @return payout      The policy payout.\n   * @return premium     The total premium for the policy.\n   * @return lossProb    Loss probability used for pricing/risk calculations.\n   * @return expiration  Policy expiration timestamp (seconds since epoch).\n   * @return internalId  Unique id within `rm` used to derive the policy id.\n   * @return params      Additional policy parameters used by {Policy-initialize}.\n   *\n   * @custom:pre `inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.\n   * @custom:pre The caller must satisfy any access/authentication requirements imposed by the implementation.\n   */\n  function priceNewPolicy(\n    address rm,\n    bytes calldata inputData\n  )\n    external\n    view\n    returns (\n      uint256 payout,\n      uint256 premium,\n      uint256 lossProb,\n      uint40 expiration,\n      uint96 internalId,\n      Policy.Params memory params\n    );\n\n  /**\n   * @notice Prices a policy replacement request for RiskModule `rm`.\n   *\n   * @param rm        The RiskModule address requesting pricing (implementations may use it for access checks).\n   * @param inputData Opaque payload consumed by the Underwriter implementation.\n   *\n   * @return oldPolicy   The policy being replaced (as {Policy-PolicyData}).\n   * @return payout      The replacement policy payout.\n   * @return premium     The replacement policy premium.\n   * @return lossProb    Loss probability used for pricing/risk calculations.\n   * @return expiration  Replacement policy expiration timestamp.\n   * @return internalId  Unique id within `rm` for the replacement policy.\n   * @return params      Additional policy parameters used by {Policy-initialize}.\n   *\n   * @custom:pre `inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.\n   * @custom:pre The caller must satisfy any access/authentication requirements imposed by the implementation.\n   */\n  function pricePolicyReplacement(\n    address rm,\n    bytes calldata inputData\n  )\n    external\n    view\n    returns (\n      Policy.PolicyData memory oldPolicy,\n      uint256 payout,\n      uint256 premium,\n      uint256 lossProb,\n      uint40 expiration,\n      uint96 internalId,\n      Policy.Params memory params\n    );\n\n  /**\n   * @notice Prices a policy cancellation request for RiskModule `rm`.\n   *\n   * @param rm        The RiskModule address requesting pricing (implementations may use it for access checks).\n   * @param inputData Opaque payload consumed by the Underwriter implementation.\n   *\n   * @return policyToCancel    The policy to cancel (as {Policy-PolicyData}).\n   * @return purePremiumRefund Amount to refund from pure premium.\n   * @return jrCocRefund       Amount to refund from junior CoC (or a sentinel value, if supported).\n   * @return srCocRefund       Amount to refund from senior CoC (or a sentinel value, if supported).\n   *\n   * @custom:pre `inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.\n   * @custom:pre The caller must satisfy any access/authentication requirements imposed by the implementation.\n   */\n  function pricePolicyCancellation(\n    address rm,\n    bytes calldata inputData\n  )\n    external\n    view\n    returns (\n      Policy.PolicyData memory policyToCancel,\n      uint256 purePremiumRefund,\n      uint256 jrCocRefund,\n      uint256 srCocRefund\n    );\n}\n"},"@ensuro/core/contracts/Policy.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\nimport {Math} from \"@openzeppelin/contracts/utils/math/Math.sol\";\n\n/**\n * @title Policy library\n * @notice Library for PolicyData struct. This struct represents an active policy, the premium and solvency breakdown\n * @dev Tracks how the premium is distributed, the probability of payout, duration and how the capital is locked.\n * It is never stored on-chain, but instead we store a hash and we receive the policy on each operation\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\nlibrary Policy {\n  using Math for uint256;\n\n  uint256 internal constant WAD = 1e18;\n  uint256 internal constant SECONDS_PER_YEAR = 365 days;\n\n  /**\n   * @notice Struct of the parameters of the risk module that are used to calculate the different Policy fields (see\n   * {Policy-PolicyData}.\n   */\n  struct Params {\n    /**\n     * @dev MoC (Margin of Conservativism) is a factor that multiplies the lossProb to increase or decrease the pure\n     * premium.\n     */\n    uint256 moc;\n    /**\n     * @dev Junior Collateralization Ratio is the percentage of policy exposure (payout) that will be covered with the\n     * purePremium and the Junior EToken\n     */\n    uint256 jrCollRatio;\n    /**\n     * @dev Collateralization Ratio is the percentage of policy exposure (payout) that will be covered by the\n     * purePremium and the Junior and Senior EToken. Usually is calculated as the relation between VAR99.5% and VAR100\n     * (full collateralization).\n     */\n    uint256 collRatio;\n    /**\n     * @dev Ensuro PurePremium Fee is the percentage that will be multiplied by the pure premium to obtain the part of\n     * the Ensuro Fee that's proportional to the pure premium.\n     */\n    uint256 ensuroPpFee;\n    /**\n     * @dev Ensuro Cost of Capital Fee is the percentage that will be multiplied by the cost of capital (CoC) to\n     * obtain the part of the Ensuro Fee that's proportional to the CoC.\n     */\n    uint256 ensuroCocFee;\n    /**\n     * @dev Junior Return on Capital is the annualized interest rate that's charged for the capital locked in the Junior\n     * EToken.\n     */\n    uint256 jrRoc;\n    /**\n     * @dev Senior Return on Capital is the annualized interest rate that's charged for the capital locked in the Senior\n     * EToken.\n     */\n    uint256 srRoc;\n  }\n\n  /**\n   * @notice Struct with all the info of a given policy\n   * @dev It includes the premium breakdown\n   * (`premium=purePremium + jrCoc + srCoc + ensuroCommission + partnerCommission`), the solvency breakdown\n   * (`solvency = purePremium + jrScr + srScr = payout * collRatio`), and the start and end of the policy.\n   */\n  struct PolicyData {\n    uint256 id;\n    uint256 payout;\n    uint256 jrScr;\n    uint256 srScr;\n    uint256 lossProb; // original loss probability (in wad)\n    uint256 purePremium; // share of the premium that covers expected losses\n    // equal to payout * lossProb * riskModule.moc\n    uint256 ensuroCommission; // share of the premium that goes for Ensuro\n    uint256 partnerCommission; // share of the premium that goes for the RM\n    uint256 jrCoc; // share of the premium that goes to junior liquidity providers (won or not)\n    uint256 srCoc; // share of the premium that goes to senior liquidity providers (won or not)\n    uint40 start;\n    uint40 expiration;\n  }\n\n  /**\n   * @notice Struct that contains the breakdown of premium and policy solvency\n   * @dev Used for internal calculations.\n   * `totalPremium = purePremium + jrCoc + srCoc + ensuroCommission + partnerCommission`\n   */\n  struct PremiumComposition {\n    uint256 purePremium;\n    uint256 jrScr;\n    uint256 srScr;\n    uint256 jrCoc;\n    uint256 srCoc;\n    uint256 ensuroCommission;\n    uint256 partnerCommission;\n    uint256 totalPremium;\n  }\n\n  /**\n   * @notice Raised when the received premium is less than the minimum\n   * @dev The minPremium is the one that results of computing the CoCs, purePremium and ensuroCommission for the given\n   * parameters, assuming partnerCommission = 0.\n   */\n  error PremiumLessThanMinimum(uint256 premium, uint256 minPremium);\n\n  /// @notice Raised when the premium exceeds the payoutreceived premium is less than the minimum\n  error PremiumExceedsPayout(uint256 premium, uint256 payout);\n\n  /// @notice Raised when the computed hash is bytes32(0)\n  error ZeroHash(PolicyData policy);\n\n  /**\n   * @notice Computes the minimum premium\n   * @dev The minPremium is the one that results of computing the CoCs, purePremium and ensuroCommission for the given\n   * parameters, assuming partnerCommission = 0.\n   *\n   * @param rmParams Struct with the business and quantitative parameters that define the risk (see {Params}).\n   * @param payout Maximum payout (exposure) of the policy\n   * @param lossProb Probability of paying the maximum payout (purePremium = rmParams.moc * lossProb * payout)\n   * @param expiration Timestamp when the policy expires (can't be claimed anymore)\n   * @param start Timestamp when the policy starts (block.timestamp for new policies)\n   * @return minPremium PremiumComposition struct with the computed premium and its breakdown\n   */\n  function getMinimumPremium(\n    Params memory rmParams,\n    uint256 payout,\n    uint256 lossProb,\n    uint40 expiration,\n    uint40 start\n  ) internal pure returns (PremiumComposition memory minPremium) {\n    minPremium.purePremium = payout.mulDiv(lossProb, WAD).mulDiv(rmParams.moc, WAD);\n    minPremium.jrScr = payout.mulDiv(rmParams.jrCollRatio, WAD);\n    if (minPremium.jrScr > minPremium.purePremium) {\n      minPremium.jrScr -= minPremium.purePremium;\n    } else {\n      minPremium.jrScr = 0;\n    }\n\n    minPremium.srScr = payout.mulDiv(rmParams.collRatio, WAD);\n    if (minPremium.srScr > (minPremium.purePremium + minPremium.jrScr)) {\n      minPremium.srScr -= minPremium.purePremium + minPremium.jrScr;\n    } else {\n      minPremium.srScr = 0;\n    }\n\n    // Calculate CoCs\n    minPremium.jrCoc = minPremium.jrScr.mulDiv(rmParams.jrRoc * (expiration - start), WAD * SECONDS_PER_YEAR);\n    minPremium.srCoc = minPremium.srScr.mulDiv(rmParams.srRoc * (expiration - start), WAD * SECONDS_PER_YEAR);\n    uint256 totalCoc = minPremium.jrCoc + minPremium.srCoc;\n\n    minPremium.ensuroCommission =\n      minPremium.purePremium.mulDiv(rmParams.ensuroPpFee, WAD) +\n      totalCoc.mulDiv(rmParams.ensuroCocFee, WAD);\n\n    minPremium.totalPremium = minPremium.purePremium + minPremium.ensuroCommission + totalCoc;\n  }\n\n  /**\n   * @notice Initializes a policy struct\n   * @dev Computes the minimum premium and the remaining (premium - minPremium) is assigned as partnerCommissiona\n   *\n   * @custom:throws PremiumLessThanMinimum when `premium` parameter is less than the computed minPremium\n   *\n   * @param rmParams Struct with the business and quantitative parameters that define the risk (see {Params}).\n   * @param premium The premium that will be paid for the policy\n   * @param payout Maximum payout (exposure) of the policy\n   * @param lossProb Probability of paying the maximum payout (purePremium = rmParams.moc * lossProb * payout)\n   * @param expiration Timestamp when the policy expires (can't be claimed anymore)\n   * @param start Timestamp when the policy starts (block.timestamp for new policies)\n   * @return newPolicy PolicyData struct with the fields initialized (all except .id)\n   */\n  function initialize(\n    Params memory rmParams,\n    uint256 premium,\n    uint256 payout,\n    uint256 lossProb,\n    uint40 expiration,\n    uint40 start\n  ) internal pure returns (PolicyData memory newPolicy) {\n    require(premium < payout, PremiumExceedsPayout(premium, payout));\n    PolicyData memory policy;\n\n    policy.payout = payout;\n    policy.lossProb = lossProb;\n    policy.start = start;\n    policy.expiration = expiration;\n\n    PremiumComposition memory minPremium = getMinimumPremium(rmParams, payout, lossProb, expiration, start);\n\n    policy.purePremium = minPremium.purePremium;\n    policy.jrScr = minPremium.jrScr;\n    policy.srScr = minPremium.srScr;\n    policy.jrCoc = minPremium.jrCoc;\n    policy.srCoc = minPremium.srCoc;\n    policy.ensuroCommission = minPremium.ensuroCommission;\n\n    require(minPremium.totalPremium <= premium, PremiumLessThanMinimum(premium, minPremium.totalPremium));\n\n    policy.partnerCommission = premium - minPremium.totalPremium;\n    return policy;\n  }\n\n  /**\n   * @notice Computes the annualized interest rate paid to Junior LPs, for a given policy\n   * @dev Computed as `(jrCoc / jrScr) * (SECONDS_PER_YEAR / duration)`. The result should be almost the same as\n   * the initial rmParams.jrRoc sent to `initialize`.\n   *\n   * @param policy Struct with all the info of the policy\n   * @return Annualized interest rate in WAD\n   */\n  function jrInterestRate(PolicyData memory policy) internal pure returns (uint256) {\n    return (policy.jrCoc * SECONDS_PER_YEAR).mulDiv(WAD, policy.jrScr * duration(policy));\n  }\n\n  /**\n   * @notice Computed the interest accrued by junior LPs\n   * @dev The value is directly proportional to the elapsed time since policy.start with respect to the duration\n   *\n   * @param policy Struct with all the info of the policy\n   * @return Amount of the JrCoc accrued so far\n   */\n  function jrAccruedInterest(PolicyData memory policy) internal view returns (uint256) {\n    return (policy.jrCoc * (block.timestamp - policy.start)) / duration(policy);\n  }\n\n  /**\n   * @notice Computes the annualized interest rate paid to Senior LPs, for a given policy\n   * @dev Computed as `(srCoc / srScr) * (SECONDS_PER_YEAR / duration)`. The result should be almost the same as\n   * the initial rmParams.srRoc sent to `initialize`.\n   *\n   * @param policy Struct with all the info of the policy\n   * @return Annualized interest rate in WAD\n   */\n  function srInterestRate(PolicyData memory policy) internal pure returns (uint256) {\n    return (policy.srCoc * SECONDS_PER_YEAR).mulDiv(WAD, policy.srScr * duration(policy));\n  }\n\n  /**\n   * @notice Computed the interest accrued by senior LPs\n   * @dev The value is directly proportional to the elapsed time since policy.start with respect to the duration\n   *\n   * @param policy Struct with all the info of the policy\n   * @return Amount of the SrCoc accrued so far\n   */\n  function srAccruedInterest(PolicyData memory policy) internal view returns (uint256) {\n    return (policy.srCoc * (block.timestamp - policy.start)) / duration(policy);\n  }\n\n  /// @notice Returns the duration in seconds of the policy\n  function duration(PolicyData memory policy) internal pure returns (uint40) {\n    return policy.expiration - policy.start;\n  }\n\n  /// @notice Returns a hash of all the fields of the policy\n  function hash(PolicyData memory policy) internal pure returns (bytes32 retHash) {\n    retHash = keccak256(abi.encode(policy));\n    require(retHash != bytes32(0), ZeroHash(policy));\n    return retHash;\n  }\n\n  /// @notice Extracts the risk module address from a policyId (first 20 bytes)\n  function extractRiskModule(uint256 policyId) internal pure returns (address) {\n    return address(uint160(policyId >> 96));\n  }\n\n  /// @notice Extracts the internalId from a policyId (last 96 bits)\n  function extractInternalId(uint256 policyId) internal pure returns (uint96) {\n    return uint96(policyId % (2 ** 96));\n  }\n\n  /**\n   * @notice Generates a policyId, combining the riskModule (first 20 bytes) with the internalId (last 12 bytes)\n   *\n   * @param rm The risk module\n   * @param internalId An identifier for the policy that is unique within a given risk module\n   * @return The policy id, that will be used as the tokenId for the minted policy NFT\n   */\n  function makePolicyId(address rm, uint96 internalId) internal pure returns (uint256) {\n    return (uint256(uint160(address(rm))) << 96) + internalId;\n  }\n}\n"},"@ensuro/core/contracts/PolicyPool.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\nimport {ERC165Checker} from \"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\";\nimport {ERC721Upgradeable} from \"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol\";\nimport {IERC20Permit} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {PausableUpgradeable} from \"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol\";\nimport {MulticallUpgradeable} from \"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol\";\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {SafeCast} from \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport {UUPSUpgradeable} from \"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\";\n\nimport {IEToken} from \"./interfaces/IEToken.sol\";\nimport {IPolicyHolder} from \"./interfaces/IPolicyHolder.sol\";\nimport {IPolicyPool} from \"./interfaces/IPolicyPool.sol\";\nimport {IPolicyPoolComponent} from \"./interfaces/IPolicyPoolComponent.sol\";\nimport {IPremiumsAccount} from \"./interfaces/IPremiumsAccount.sol\";\nimport {IRiskModule} from \"./interfaces/IRiskModule.sol\";\nimport {Policy} from \"./Policy.sol\";\n\n/**\n * @title Ensuro PolicyPool contract\n * @notice This is the main contract of the protocol.\n * @dev There's a single instance of PolicyPool contract for a given deployment of the protocol.\n * It stores the registry of components (eTokens, PremiumsAccounts, and RiskModules). It also tracks the active\n * exposure and exposure limit per risk module.\n *\n * This is also the contract that receives and sends the underlying asset (currency, typically USDC).\n * The currency spending approvals should be done to this protocol for deposits or premium payments.\n *\n * This contract implements the ERC721 standard, because it mints and NFT for each policy created. The\n * property of the NFT represents the one that will receive the payout.\n *\n * The active policies are tracked in _policies as hashes, but for gas optimization we just store the hash\n * of the policy struct, and the struct needs to be stored off-chain and provided on every subsequent call.\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract PolicyPool is IPolicyPool, PausableUpgradeable, UUPSUpgradeable, ERC721Upgradeable, MulticallUpgradeable {\n  using Policy for Policy.PolicyData;\n  using SafeERC20 for IERC20Metadata;\n  using SafeCast for uint256;\n\n  uint256 internal constant HOLDER_GAS_LIMIT = 150000;\n\n  /**\n   * @notice {ERC20} token used in PolicyPool as currency. Usually it will be a stablecoin such as USDC.\n   */\n  /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n  IERC20Metadata internal immutable _currency;\n\n  /**\n   * @notice Address of Ensuro's treasury that receives the protocol fees.\n   */\n  address internal _treasury; // address of Ensuro treasury\n\n  /**\n   * @notice Different statuses that a component ({PremiumsAccount}, {EToken} or {RiskModule} can have.\n   */\n  enum ComponentStatus {\n    /**\n     * @notice inactive status = 0 means the component doesn't exists - All operations rejected\n     */\n    inactive,\n    /**\n     * @notice active means the component is fully functional, all the component operations are allowed.\n     *         deposit / withdraw for eTokens\n     *         newPolicy / resolvePolicy for riskModules\n     *         policyCreated / policyExpired / policyResolvedWithPayout for premiumsAccount\n     */\n    active,\n    /**\n     * @notice deprecated means the component is in process of being deactivated. Only some operations are allowed:\n     *         withdraw for eTokens\n     *         resolvePolicy / expirePolicy for riskModules\n     *         policyExpired / policyResolvedWithPayout for premiumsAccount\n     */\n    deprecated,\n    /**\n     * @notice suspended means the component is temporarily deactivated. All the operations are rejected. Only GUARDIAN\n     *         can suspend.\n     */\n    suspended\n  }\n\n  /**\n   * @notice Enum of the different kind of top level components that can be plugged into the pool. Each one corresponds\n   * with the {EToken}, {RiskModule} and {PremiumsAccount} respectively.\n   */\n  enum ComponentKind {\n    unknown,\n    eToken,\n    riskModule,\n    premiumsAccount\n  }\n\n  /**\n   * @notice Struct to keep the state and type of the components installed\n   * @dev The `kind` never changes. The `status` initially is `active` and can be changes with\n   * {PolicyPool-changeComponentStatus} and {PolicyPool-removeComponent}.\n   */\n  struct Component {\n    ComponentStatus status;\n    ComponentKind kind;\n  }\n\n  /**\n   * @notice Mapping of installed components (see {EToken}, {RiskModule}, {PremiumsAccount}) in the PolicyPool.\n   */\n  mapping(IPolicyPoolComponent => Component) internal _components;\n\n  /**\n   * @notice Mapping that stores the active policies (the policyId is the key).\n   * @dev It just saves the hash of the policies, the full {Policy-PolicyData} struct has to be sent for each\n   * operation (hash is used to verify).\n   */\n  mapping(uint256 => bytes32) internal _policies;\n\n  struct Exposure {\n    uint128 active;\n    uint128 limit;\n  }\n\n  /**\n   * @notice Base URI for the minted policy NFTs.\n   */\n  string internal _nftBaseURI;\n\n  /**\n   * @notice Mapping of current exposures and limits for each risk module.\n   */\n  mapping(IRiskModule => Exposure) internal _exposureByRm;\n\n  /**\n   * @notice Constructor error when address(0) is sent as `access()`\n   */\n  error NoZeroAccess();\n\n  /**\n   * @notice Constructor error when address(0) is sent as `currency()`\n   */\n  error NoZeroCurrency();\n\n  /**\n   * @notice Constructor error (or setTreasury) when address(0) is sent as `treasury()`\n   */\n  error NoZeroTreasury();\n\n  /**\n   * @notice Initialization error when empty name for the ERC721 is sent\n   */\n  error NoEmptyName();\n\n  /**\n   * @notice Initialization error when empty symbol for the ERC721 is sent\n   */\n  error NoEmptySymbol();\n\n  /// @notice Thrown when trying to change the currency during an upgrade\n  error UpgradeCannotChangeCurrency();\n\n  /**\n   * @notice Error when trying to add a component that was already added to the PolicyPool\n   */\n  error ComponentAlreadyInThePool();\n\n  /**\n   * @notice Error when trying to add a component that isn't linked to this pool (`.policyPool() != this`)\n   */\n  error ComponentNotLinkedToThisPool();\n\n  /**\n   * @notice Raised when a component is not of the right kind\n   * @dev It might happen if a component declared as ComponentKind.eToken doesn't support the IEToken interface (or\n   * similar) or when in a given operation we expect a component to be a risk module and the stored kind is different.\n   */\n  error ComponentNotTheRightKind(IPolicyPoolComponent component, ComponentKind expectedKind);\n\n  /**\n   * @notice Error when a component is not deprecated for the operation (see `removeComponent`), when it must.\n   */\n  error ComponentNotDeprecated();\n\n  /**\n   * @notice Error when trying to remove a component that is still in use.\n   * @dev The \"in use\" definition can change from one component to the other. For eToken in use means\n   * `totalSupply() != 0`. For PremiumsAccount means `purePremiums() != 0`. For RiskModule means\n   * `activeExposure() != 0`.\n   */\n  error ComponentInUseCannotRemove(ComponentKind kind, uint256 amount);\n\n  /**\n   * @notice Error when a component is not found in the pool (status = 0 = inactive)\n   */\n  error ComponentNotFound();\n\n  /**\n   * @notice Error when a component is not found in the pool or is not active (status != active)\n   */\n  error ComponentNotFoundOrNotActive();\n\n  /// @notice Thrown when attempting to set a component status to `inactive` via changeComponentStatus, use removeComponent() instead.\n  error InvalidComponentStatus();\n\n  /**\n   * @notice Error when a component is not active or deprecated. Happens on some operations like eToken withdrawals or\n   * policy resolutions that accept the component might be active or deprecated and isn't on any of those states.\n   */\n  error ComponentMustBeActiveOrDeprecated();\n\n  /**\n   * @notice Error when a method intented to be called by riskModule (and by policy's risk module) is called by\n   * someone else.\n   */\n  error OnlyRiskModuleAllowed();\n\n  /**\n   * @notice Raised when IPolicyHolder doesn't return the expected selector answer when notified of policy payout,\n   * replacement or cancellation.\n   */\n  error InvalidNotificationResponse(bytes4 response);\n\n  /// @notice Thrown when attempting to create a policy with an ID that already exists\n  error PolicyAlreadyExists(uint256 policyId);\n\n  /// @notice Thrown when attempting to process an action (other than expiration) on a policy after its expiration date\n  error PolicyAlreadyExpired(uint256 policyId);\n\n  /// @notice Thrown when attempting to execute an action on a policy that does not exist (or was already expired)\n  error PolicyNotFound(uint256 policyId);\n\n  /**\n   * @notice Thrown when attempting to expire a policy, but the policy is still active (policy.expiration >\n   * block.timestamp)\n   *\n   * @param policyId The ID of the policy that is not yet expired\n   * @param expiration The timestamp when the policy expires\n   * @param now The current block timestamp\n   */\n  error PolicyNotExpired(uint256 policyId, uint40 expiration, uint256 now);\n\n  /**\n   * @notice Thrown when attempting to replace a policy with an invalid replacement\n   * @dev This could occur if the policies have a different start, or if any of the premium components of the\n   *      newPolicy are lower than the same component of the original policy.\n   *\n   * @param oldPolicy The original policy data\n   * @param newPolicy The proposed replacement policy data\n   */\n  error InvalidPolicyReplacement(Policy.PolicyData oldPolicy, Policy.PolicyData newPolicy);\n\n  /**\n   * @notice Thrown when attempting to cancel a policy with invalid refunds\n   * @dev The refunds amounts can never exceed the original premium components.\n   *\n   * @param policyToCancel The data of the policy being cancelled\n   * @param purePremiumRefund The amount to refund from pure premium charged\n   * @param jrCocRefund The amount to refund from jrCoc charged\n   * @param srCocRefund The amount to refund from srCoc charged\n   */\n  error InvalidPolicyCancellation(\n    Policy.PolicyData policyToCancel,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund\n  );\n\n  /// @notice Thrown when a requested payout exceeds the policy's maximum payout limit\n  error PayoutExceedsLimit(uint256 payout, uint256 policyPayout);\n\n  /// @notice Thrown when an action would cause the active exposure to exceed the configured limit\n  error ExposureLimitExceeded(uint128 activeExposure, uint128 exposureLimit);\n\n  /// @notice Thrown when an invalid receiver address (address(0)) is provided as received of deposit or withdraw\n  error InvalidReceiver(address receiver);\n\n  /**\n   * @notice Event emitted when the treasury (who receives ensuroCommission) changes\n   *\n   * @param oldTreasury The address of the treasury before the change\n   * @param newTreasury  The address of the treasury after the change\n   */\n  event TreasuryChanged(address oldTreasury, address newTreasury);\n\n  /**\n   * @notice Event emitted when the baseURI (for policy NFTs) changes\n   *\n   * @param oldBaseURI The baseURI before the change\n   * @param newBaseURI The baseURI after the change\n   */\n  event BaseURIChanged(string oldBaseURI, string newBaseURI);\n\n  /**\n   * @notice Event emitted when a new component added/removed to the pool or the status changes.\n   *\n   * @param component The address of the component, it can be an {EToken}, {RiskModule} or {PremiumsAccount}\n   * @param kind Value indicating the kind of component. See {ComponentKind}\n   * @param newStatus The status of the component after the operation. See {ComponentStatus}\n   */\n  event ComponentStatusChanged(IPolicyPoolComponent indexed component, ComponentKind kind, ComponentStatus newStatus);\n\n  /**\n   * @notice Event emitted when a IPolicyHolder reverts on the expiration notification. The operation doesn't reverts\n   *\n   * @param policyId The id of the policy being expired\n   * @param holder The address of the contract that owns the policy\n   */\n  event ExpirationNotificationFailed(uint256 indexed policyId, IPolicyHolder holder);\n\n  /**\n   * @notice Event emitted when the exposure limit for a given risk module is changed\n   *\n   * @param riskModule The risk module whose limit will be changed\n   * @param oldLimit Exposure limit before the change\n   * @param newLimit Exposure limit after the change\n   */\n  event ExposureLimitChanged(IRiskModule indexed riskModule, uint128 oldLimit, uint128 newLimit);\n\n  /**\n   * @notice Event emitted for every deposit into an eToken\n   *\n   * @param eToken The eToken receiving the funds\n   * @param sender The sender of the funds (the user calling `deposit` or `depositWithPermit`)\n   * @param owner The user that will receive the minted eTokens\n   * @param amount Amount in `currency()` paid for the eTokens (equal to the amount of eTokens received)\n   */\n  event Deposit(IEToken indexed eToken, address indexed sender, address indexed owner, uint256 amount);\n\n  /**\n   * @notice Event emitted for every withdrawal from an eToken\n   *\n   * @param eToken The eToken where the withdrawal will be done\n   * @param sender The user calling the withdraw method. Must be the owner or have spending approval from it.\n   * @param receiver The user that receives the resulting funds (`currency()`)\n   * @param owner The owner of the burned eTokens\n   * @param amount Amount in `currency()` that will be received by `receiver`.\n   */\n  event Withdraw(\n    IEToken indexed eToken,\n    address indexed sender,\n    address indexed receiver,\n    address owner,\n    uint256 amount\n  );\n\n  /**\n   * @dev Instantiates a Policy Pool. Sets immutable fields.\n   *\n   * @param currency_ The {ERC20} token that's used as a currency in the protocol. Usually a stablecoin such as USDC.\n   */\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  constructor(IERC20Metadata currency_) {\n    if (address(currency_) == address(0)) revert NoZeroCurrency();\n    _disableInitializers();\n    _currency = currency_;\n  }\n\n  /**\n   * @dev Initializes a Policy Pool\n   *\n   * @param name_ The name of the ERC721 token.\n   * @param symbol_ The symbol of the ERC721 token.\n   * @param treasury_ The address of the treasury that will receive the protocol fees.\n   */\n  function initialize(string memory name_, string memory symbol_, address treasury_) public initializer {\n    if (bytes(name_).length == 0) revert NoEmptyName();\n    if (bytes(symbol_).length == 0) revert NoEmptySymbol();\n    __ERC721_init(name_, symbol_);\n    __Pausable_init();\n    __PolicyPool_init_unchained(treasury_);\n  }\n\n  /// @inheritdoc IERC165\n  function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n    return super.supportsInterface(interfaceId) || interfaceId == type(IPolicyPool).interfaceId;\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function __PolicyPool_init_unchained(address treasury_) internal onlyInitializing {\n    _setTreasury(treasury_);\n  }\n\n  function _authorizeUpgrade(address newImpl) internal view override {\n    IPolicyPool newPool = IPolicyPool(newImpl);\n    if (newPool.currency() != _currency) revert UpgradeCannotChangeCurrency();\n  }\n\n  /**\n   * @notice Pauses the contract.\n   * @dev When the contract is paused, several operations are rejected: deposits, withdrawals, new\n   * policies, policy resolution and expiration, nft transfers.\n   */\n  function pause() public {\n    _pause();\n  }\n\n  /**\n   * @notice Unpauses the contract.\n   * @dev All the operations disabled when the contract was paused are re-enabled.\n   */\n  function unpause() public {\n    _unpause();\n  }\n\n  /// @inheritdoc IPolicyPool\n  function currency() external view virtual override returns (IERC20Metadata) {\n    return _currency;\n  }\n\n  function _setTreasury(address treasury_) internal {\n    if (treasury_ == address(0)) revert NoZeroTreasury();\n    emit TreasuryChanged(_treasury, treasury_);\n    _treasury = treasury_;\n  }\n\n  /**\n   * @notice Changes the address of the treasury, the one that receives the protocol fees.\n   *\n   * @custom:emits TreasuryChanged with the previous and current treasury\n   */\n  function setTreasury(address treasury_) external {\n    _setTreasury(treasury_);\n  }\n\n  /// @inheritdoc IPolicyPool\n  function treasury() external view override returns (address) {\n    return _treasury;\n  }\n\n  /**\n   * @notice Adds a new component (either an {EToken}, {RiskModule} or {PremiumsAccount}) to the protocol.\n   * @dev The component status will be `active`.\n   *\n   * @custom:emits ComponentStatusChanged with status active.\n   * @custom:throws ComponentNotTheRightKind When there's a mismatch between the specified kind and supported interface\n   *\n   * @param component The address of component contract. Must be an {EToken}, {RiskModule} or {PremiumsAccount} linked\n   * to this specific {PolicyPool} and matching the `kind` specified in the next paramter.\n   * @param kind The type of component to be added.\n   */\n  function addComponent(IPolicyPoolComponent component, ComponentKind kind) external {\n    Component storage comp = _components[component];\n    if (comp.status != ComponentStatus.inactive) revert ComponentAlreadyInThePool();\n    if (component.policyPool() != this) revert ComponentNotLinkedToThisPool();\n\n    if (\n      (kind == ComponentKind.eToken && !component.supportsInterface(type(IEToken).interfaceId)) ||\n      (kind == ComponentKind.premiumsAccount && !component.supportsInterface(type(IPremiumsAccount).interfaceId)) ||\n      (kind == ComponentKind.riskModule && !component.supportsInterface(type(IRiskModule).interfaceId))\n    ) revert ComponentNotTheRightKind(component, kind);\n\n    comp.status = ComponentStatus.active;\n    comp.kind = kind;\n    if (kind == ComponentKind.premiumsAccount) {\n      IPremiumsAccount pa = IPremiumsAccount(address(component));\n      IEToken etk = pa.juniorEtk();\n      if (address(etk) != address(0)) {\n        etk.addBorrower(address(pa));\n      }\n      etk = pa.seniorEtk();\n      if (address(etk) != address(0)) {\n        etk.addBorrower(address(pa));\n      }\n    }\n    emit ComponentStatusChanged(component, kind, ComponentStatus.active);\n  }\n\n  /**\n   * @notice Removes a component from the protocol\n   * @dev The component needs to be in `deprecated` status before doing this operation.\n   *\n   * @custom:emits ComponentStatusChanged with status inactive.\n   *\n   * @param component The address of component contract. Must be a component added before.\n   */\n  function removeComponent(IPolicyPoolComponent component) external {\n    Component storage comp = _components[component];\n    if (comp.status != ComponentStatus.deprecated) revert ComponentNotDeprecated();\n    if (comp.kind == ComponentKind.eToken) {\n      if (IERC20Metadata(address(component)).totalSupply() != 0)\n        revert ComponentInUseCannotRemove(comp.kind, IERC20Metadata(address(component)).totalSupply());\n    } else if (comp.kind == ComponentKind.riskModule) {\n      if (_exposureByRm[IRiskModule(address(component))].active != 0)\n        revert ComponentInUseCannotRemove(comp.kind, _exposureByRm[IRiskModule(address(component))].active);\n    } else {\n      // (comp.kind == ComponentKind.premiumsAccount)\n      IPremiumsAccount pa = IPremiumsAccount(address(component));\n      if (pa.purePremiums() != 0) revert ComponentInUseCannotRemove(comp.kind, pa.purePremiums());\n      IEToken etk = pa.juniorEtk();\n      if (address(etk) != address(0)) {\n        etk.removeBorrower(address(pa));\n      }\n      etk = pa.seniorEtk();\n      if (address(etk) != address(0)) {\n        etk.removeBorrower(address(pa));\n      }\n    }\n    emit ComponentStatusChanged(component, comp.kind, ComponentStatus.inactive);\n    delete _components[component];\n  }\n\n  /**\n   * @notice Changes the status of a component.\n   *\n   * @custom:emits ComponentStatusChanged with the new status.\n   * @custom:throws InvalidComponentStatus() when newStatus is inactive (use removeComponent() instead)\n   * @param component The address of component contract. Must be a component added before.\n   * @param newStatus The new status, must be either `active`, `deprecated` or `suspended`.\n   */\n  function changeComponentStatus(IPolicyPoolComponent component, ComponentStatus newStatus) external {\n    Component storage comp = _components[component];\n    require(comp.status != ComponentStatus.inactive, ComponentNotFound());\n    require(newStatus != ComponentStatus.inactive, InvalidComponentStatus());\n    comp.status = newStatus;\n    emit ComponentStatusChanged(component, comp.kind, newStatus);\n  }\n\n  /**\n   * @notice Returns the status of a component.\n   *\n   * @param component The address of the component\n   * @return The status of the component. See {ComponentStatus}\n   */\n  function getComponentStatus(IPolicyPoolComponent component) external view returns (ComponentStatus) {\n    return _components[component].status;\n  }\n\n  function _componentStatus(address component, ComponentKind kind) internal view returns (ComponentStatus) {\n    Component storage comp = _components[IPolicyPoolComponent(component)];\n    if (comp.kind != kind) revert ComponentNotTheRightKind(IPolicyPoolComponent(component), kind);\n    return comp.status;\n  }\n\n  function _requireCompActive(address component, ComponentKind kind) internal view {\n    if (_componentStatus(component, kind) != ComponentStatus.active) revert ComponentNotFoundOrNotActive();\n  }\n\n  function _requireCompActiveOrDeprecated(address component, ComponentKind kind) internal view {\n    ComponentStatus status = _componentStatus(component, kind);\n    if (status != ComponentStatus.active && status != ComponentStatus.deprecated)\n      revert ComponentMustBeActiveOrDeprecated();\n  }\n\n  function _deposit(IEToken eToken, uint256 amount, address receiver) internal {\n    require(receiver != address(0), InvalidReceiver(receiver));\n    _requireCompActive(address(eToken), ComponentKind.eToken);\n    _currency.safeTransferFrom(_msgSender(), address(eToken), amount);\n    eToken.deposit(amount, _msgSender(), receiver);\n    emit Deposit(eToken, _msgSender(), receiver, amount);\n  }\n\n  /// @inheritdoc IPolicyPool\n  function deposit(IEToken eToken, uint256 amount, address receiver) external override whenNotPaused {\n    _deposit(eToken, amount, receiver);\n  }\n\n  /// @inheritdoc IPolicyPool\n  function depositWithPermit(\n    IEToken eToken,\n    uint256 amount,\n    address receiver,\n    uint256 deadline,\n    uint8 v,\n    bytes32 r,\n    bytes32 s\n  ) external override whenNotPaused {\n    // solhint-disable-next-line no-empty-blocks\n    try IERC20Permit(address(_currency)).permit(_msgSender(), address(this), amount, deadline, v, r, s) {} catch {}\n    // Check https://github.com/OpenZeppelin/openzeppelin-contracts/blob/1cf13771092c83a060eaef0f8809493fb4c04eb1/contracts/token/ERC20/extensions/IERC20Permit.sol#L16\n    // for explanation of this try/catch pattern\n    _deposit(eToken, amount, receiver);\n  }\n\n  /// @inheritdoc IPolicyPool\n  function withdraw(\n    IEToken eToken,\n    uint256 amount,\n    address receiver,\n    address owner\n  ) external override whenNotPaused returns (uint256 amountWithdrawn) {\n    require(receiver != address(0), InvalidReceiver(receiver));\n    _requireCompActiveOrDeprecated(address(eToken), ComponentKind.eToken);\n    amountWithdrawn = eToken.withdraw(amount, _msgSender(), owner, receiver);\n    emit Withdraw(eToken, _msgSender(), receiver, owner, amountWithdrawn);\n  }\n\n  /// @inheritdoc IPolicyPool\n  function newPolicy(\n    Policy.PolicyData memory policy,\n    address payer,\n    address policyHolder,\n    uint96 internalId\n  ) external override whenNotPaused returns (uint256) {\n    // Checks\n    IRiskModule rm = IRiskModule(_msgSender());\n    _requireCompActive(address(rm), ComponentKind.riskModule);\n    IPremiumsAccount pa = rm.premiumsAccount();\n    _requireCompActive(address(pa), ComponentKind.premiumsAccount);\n\n    // Effects\n    policy.id = Policy.makePolicyId(address(rm), internalId);\n    policy.start = uint40(block.timestamp);\n    require(_policies[policy.id] == bytes32(0), PolicyAlreadyExists(policy.id));\n    _policies[policy.id] = policy.hash();\n    _safeMint(policyHolder, policy.id, \"\");\n    _changeExposure(rm, true, policy.payout);\n\n    // Interactions\n    pa.policyCreated(policy);\n\n    // Distribute the premium\n    _currency.safeTransferFrom(payer, address(pa), policy.purePremium);\n    (IEToken jrEtk, IEToken srEtk) = pa.etks();\n    if (policy.srCoc > 0) _currency.safeTransferFrom(payer, address(srEtk), policy.srCoc);\n    if (policy.jrCoc > 0) _currency.safeTransferFrom(payer, address(jrEtk), policy.jrCoc);\n    _currency.safeTransferFrom(payer, _treasury, policy.ensuroCommission);\n    if (policy.partnerCommission > 0 && payer != rm.wallet())\n      _currency.safeTransferFrom(payer, rm.wallet(), policy.partnerCommission);\n    /**\n     * This code does up to 5 ERC20 transfers. This can be avoided to reduce the gas cost, by implementing delayed\n     * transfers. This might be considered in the future, but to avoid increasing the complexity and since so far we\n     * operate on low gas-cost blockchains, we keep it as it is.\n     */\n\n    emit NewPolicy(rm, policy);\n    return policy.id;\n  }\n\n  /// @inheritdoc IPolicyPool\n  // solhint-disable-next-line function-max-lines\n  function replacePolicy(\n    Policy.PolicyData calldata oldPolicy,\n    Policy.PolicyData memory newPolicy_,\n    address payer,\n    uint96 internalId\n  ) external override whenNotPaused returns (uint256) {\n    // Checks\n    _validatePolicy(oldPolicy);\n    IRiskModule rm = IRiskModule(_msgSender());\n    if (Policy.extractRiskModule(oldPolicy.id) != address(rm)) revert OnlyRiskModuleAllowed();\n    _requireCompActive(address(rm), ComponentKind.riskModule);\n    IPremiumsAccount pa = rm.premiumsAccount();\n    _requireCompActive(address(pa), ComponentKind.premiumsAccount);\n    require(\n      oldPolicy.expiration > uint40(block.timestamp) && newPolicy_.expiration >= uint40(block.timestamp),\n      PolicyAlreadyExpired(oldPolicy.id)\n    );\n    require(\n      oldPolicy.start == newPolicy_.start &&\n        oldPolicy.purePremium <= newPolicy_.purePremium &&\n        oldPolicy.ensuroCommission <= newPolicy_.ensuroCommission &&\n        oldPolicy.jrCoc <= newPolicy_.jrCoc &&\n        oldPolicy.srCoc <= newPolicy_.srCoc &&\n        oldPolicy.partnerCommission <= newPolicy_.partnerCommission,\n      InvalidPolicyReplacement(oldPolicy, newPolicy_)\n    );\n    // payout, jrScr, srScr, expiration can change in any direction\n\n    // Effects\n    newPolicy_.id = Policy.makePolicyId(address(rm), internalId);\n    require(_policies[newPolicy_.id] == bytes32(0), PolicyAlreadyExists(newPolicy_.id));\n    _policies[newPolicy_.id] = newPolicy_.hash();\n    address policyHolder = ownerOf(oldPolicy.id);\n    _safeMint(policyHolder, newPolicy_.id, \"\");\n    if (newPolicy_.payout > oldPolicy.payout) _changeExposure(rm, true, newPolicy_.payout - oldPolicy.payout);\n    else _changeExposure(rm, false, oldPolicy.payout - newPolicy_.payout);\n    delete _policies[oldPolicy.id];\n\n    // Interactions\n    pa.policyReplaced(oldPolicy, newPolicy_);\n\n    // Distribute the premium\n    _transferIfNonZero(payer, address(pa), newPolicy_.purePremium, oldPolicy.purePremium);\n    (IEToken jrEtk, IEToken srEtk) = pa.etks();\n    _transferIfNonZero(payer, address(srEtk), newPolicy_.srCoc, oldPolicy.srCoc);\n    _transferIfNonZero(payer, address(jrEtk), newPolicy_.jrCoc, oldPolicy.jrCoc);\n    _transferIfNonZero(payer, _treasury, newPolicy_.ensuroCommission, oldPolicy.ensuroCommission);\n    address rmWallet = rm.wallet();\n    if (payer != rmWallet)\n      _transferIfNonZero(payer, rmWallet, newPolicy_.partnerCommission, oldPolicy.partnerCommission);\n    /**\n     * This code does up to 5 ERC20 transfers. This can be avoided to reduce the gas cost, by implementing delayed\n     * transfers. This might be considered in the future, but to avoid increasing the complexity and since so far we\n     * operate on low gas-cost blockchains, we keep it as it is.\n     */\n\n    emit NewPolicy(rm, newPolicy_);\n    emit PolicyReplaced(rm, oldPolicy.id, newPolicy_.id);\n    _notifyReplacement(oldPolicy.id, newPolicy_.id);\n    return newPolicy_.id;\n  }\n\n  /// @inheritdoc IPolicyPool\n  function cancelPolicy(\n    Policy.PolicyData calldata policyToCancel,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund\n  ) external override whenNotPaused {\n    // Checks\n    _validatePolicy(policyToCancel);\n    IRiskModule rm = IRiskModule(_msgSender());\n    if (Policy.extractRiskModule(policyToCancel.id) != address(rm)) revert OnlyRiskModuleAllowed();\n    _requireCompActiveOrDeprecated(address(rm), ComponentKind.riskModule);\n    IPremiumsAccount pa = rm.premiumsAccount();\n    _requireCompActiveOrDeprecated(address(pa), ComponentKind.premiumsAccount);\n    require(policyToCancel.expiration > uint40(block.timestamp), PolicyAlreadyExpired(policyToCancel.id));\n    require(\n      purePremiumRefund <= policyToCancel.purePremium &&\n        jrCocRefund <= policyToCancel.jrCoc &&\n        srCocRefund <= policyToCancel.srCoc,\n      InvalidPolicyCancellation(policyToCancel, purePremiumRefund, jrCocRefund, srCocRefund)\n    );\n\n    // Effects\n    address policyHolder = ownerOf(policyToCancel.id);\n    _changeExposure(rm, false, policyToCancel.payout);\n    delete _policies[policyToCancel.id];\n\n    // Interactions\n    pa.policyCancelled(policyToCancel, purePremiumRefund, jrCocRefund, srCocRefund, policyHolder);\n\n    emit PolicyCancelled(rm, policyToCancel.id, purePremiumRefund, jrCocRefund, srCocRefund);\n    _notifyCancellation(policyToCancel.id, purePremiumRefund, jrCocRefund, srCocRefund);\n  }\n\n  function _transferIfNonZero(address payer, address target, uint256 new_, uint256 old_) internal {\n    uint256 aux = new_ - old_;\n    if (aux != 0) {\n      _currency.safeTransferFrom(payer, target, aux);\n    }\n  }\n\n  function _validatePolicy(Policy.PolicyData memory policy) internal view {\n    require(policy.id != 0 && policy.hash() == _policies[policy.id], PolicyNotFound(policy.id));\n  }\n\n  /// @inheritdoc IPolicyPool\n  function expirePolicy(Policy.PolicyData calldata policy) external override whenNotPaused {\n    if (policy.expiration > block.timestamp) revert PolicyNotExpired(policy.id, policy.expiration, block.timestamp);\n    return _resolvePolicy(policy, 0, true);\n  }\n\n  /// @inheritdoc IPolicyPool\n  function resolvePolicy(Policy.PolicyData calldata policy, uint256 payout) external override whenNotPaused {\n    return _resolvePolicy(policy, payout, false);\n  }\n\n  /// @inheritdoc IPolicyPool\n  function isActive(uint256 policyId) external view override returns (bool) {\n    return _policies[policyId] != bytes32(0);\n  }\n\n  /// @inheritdoc IPolicyPool\n  function getPolicyHash(uint256 policyId) external view override returns (bytes32) {\n    return _policies[policyId];\n  }\n\n  /**\n   * @notice Internal function that handles the different alternative resolutions for a policy.\n   * @dev Alternatives: with or without payout and expiration.\n   *\n   * @custom:emits PolicyResolved with the payout amount\n   *\n   * @param policy A policy created with {Policy-initialize}\n   * @param payout The amount to paid to the policyholder\n   * @param expired True for expiration resolution (`payout` must be 0)\n   */\n  function _resolvePolicy(Policy.PolicyData memory policy, uint256 payout, bool expired) internal {\n    // Checks\n    _validatePolicy(policy);\n    IRiskModule rm = IRiskModule(Policy.extractRiskModule(policy.id));\n    if (!expired && address(rm) != _msgSender()) revert OnlyRiskModuleAllowed();\n    require(payout == 0 || policy.expiration > block.timestamp, PolicyAlreadyExpired(policy.id));\n    _requireCompActiveOrDeprecated(address(rm), ComponentKind.riskModule);\n\n    require(payout <= policy.payout, PayoutExceedsLimit(payout, policy.payout));\n\n    bool customerWon = payout > 0;\n\n    IPremiumsAccount pa = rm.premiumsAccount();\n    _requireCompActiveOrDeprecated(address(pa), ComponentKind.premiumsAccount);\n    // Effects\n    delete _policies[policy.id];\n    // Interactions\n    if (customerWon) {\n      address policyOwner = ownerOf(policy.id);\n      pa.policyResolvedWithPayout(policyOwner, policy, payout);\n    } else {\n      pa.policyExpired(policy);\n    }\n\n    _changeExposure(rm, false, policy.payout);\n\n    emit PolicyResolved(rm, policy.id, payout);\n    if (payout > 0) {\n      _notifyPayout(policy.id, payout);\n    } else {\n      _notifyExpiration(policy.id);\n    }\n  }\n\n  function _changeExposure(IRiskModule rm, bool increase, uint256 change) internal {\n    Exposure storage exposure = _exposureByRm[rm];\n    if (increase) {\n      exposure.active += change.toUint128();\n      require(exposure.active <= exposure.limit, ExposureLimitExceeded(exposure.active, exposure.limit));\n    } else {\n      exposure.active -= change.toUint128();\n    }\n  }\n\n  /**\n   * @notice  Changes the maximum cumulative loss limit (exposure limit) for a given risk module\n   * @dev     This function allows updating the exposure limit for a risk module.\n   *          The new limit must be greater than or equal to the current active exposure.\n   *\n   * @param   rm  The risk module interface for which to update the exposure limit\n   * @param   newLimit  The new exposure limit to set (will be converted to uint128)\n   * @custom:throws ExposureLimitExceeded if the new limit is less than the current active exposure\n   * @custom:emits  ExposureLimitChanged with parameters: (risk module, old limit, new limit)\n   */\n  function setExposureLimit(IRiskModule rm, uint256 newLimit) external {\n    Exposure storage exposure = _exposureByRm[rm];\n    uint128 newLimit128 = newLimit.toUint128();\n    require(exposure.active <= newLimit128, ExposureLimitExceeded(exposure.active, newLimit128));\n    emit ExposureLimitChanged(rm, exposure.limit, newLimit128);\n    exposure.limit = newLimit128;\n  }\n\n  /**\n   * @notice  Retrieves the current exposure data for a specific risk module\n   * @dev     Returns both the active exposure (current cumulative losses)\n   * and the configured exposure limit for the given risk module.\n   *\n   * @param   rm  The risk module interface to query exposure data for\n   * @return  active  The current active exposure (cumulative losses) for the risk module\n   * @return  limit   The configured maximum exposure limit for the risk module\n   */\n  function getExposure(IRiskModule rm) external view returns (uint256 active, uint256 limit) {\n    Exposure storage exposure = _exposureByRm[rm];\n    active = exposure.active;\n    limit = exposure.limit;\n  }\n\n  /**\n   * @notice Notifies the payout with a callback\n   * @dev Only if the policyholder implements the IPolicyHolder interface.\n   * Reverts if the policyholder contract explicitly reverts or it doesn't return the\n   * IPolicyHolder.onPayoutReceived selector.\n   */\n  function _notifyPayout(uint256 policyId, uint256 payout) internal {\n    address customer = ownerOf(policyId);\n    if (!ERC165Checker.supportsInterface(customer, type(IPolicyHolder).interfaceId)) return;\n\n    bytes4 retval = IPolicyHolder(customer).onPayoutReceived(_msgSender(), address(this), policyId, payout);\n    if (retval != IPolicyHolder.onPayoutReceived.selector) revert InvalidNotificationResponse(retval);\n  }\n\n  /**\n   * @notice Notifies the expiration with a callback\n   * @dev Only if the policyholder implements the IPolicyHolder interface. Never reverts. The onPolicyExpired has\n   * a gas limit = HOLDER_GAS_LIMIT\n   */\n  function _notifyExpiration(uint256 policyId) internal {\n    address customer = ownerOf(policyId);\n    if (!ERC165Checker.supportsInterface(customer, type(IPolicyHolder).interfaceId)) return;\n\n    try IPolicyHolder(customer).onPolicyExpired{gas: HOLDER_GAS_LIMIT}(_msgSender(), address(this), policyId) returns (\n      bytes4\n    ) {\n      return;\n    } catch {\n      emit ExpirationNotificationFailed(policyId, IPolicyHolder(customer));\n      return;\n    }\n  }\n\n  /**\n   * @notice Notifies the replacement with a callback\n   * @dev Only if the policyholder implements the IPolicyHolder interface.\n   * Reverts if the policyholder contract explicitly reverts or it doesn't return the\n   * IPolicyHolder.onPolicyReplaced selector.\n   */\n  function _notifyReplacement(uint256 oldPolicyId, uint256 newPolicyId) internal {\n    address customer = ownerOf(oldPolicyId);\n    if (!ERC165Checker.supportsInterface(customer, type(IPolicyHolder).interfaceId)) return;\n\n    bytes4 retval = IPolicyHolder(customer).onPolicyReplaced(_msgSender(), address(this), oldPolicyId, newPolicyId);\n    // PolicyHolder can revert and cancel the policy replacement\n    if (retval != IPolicyHolder.onPolicyReplaced.selector) revert InvalidNotificationResponse(retval);\n  }\n\n  /**\n   * @notice Notifies the cancellation with a callback\n   * @dev Only if the policyholder implements the IPolicyHolder interface.\n   * Reverts if the policyholder contract explicitly reverts or it doesn't return the\n   * IPolicyHolder.onPolicyCancelled selector.\n   */\n  function _notifyCancellation(\n    uint256 cancelledPolicyId,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund\n  ) internal {\n    address customer = ownerOf(cancelledPolicyId);\n    if (!ERC165Checker.supportsInterface(customer, type(IPolicyHolder).interfaceId)) return;\n\n    bytes4 retval = IPolicyHolder(customer).onPolicyCancelled(\n      _msgSender(),\n      address(this),\n      cancelledPolicyId,\n      purePremiumRefund,\n      jrCocRefund,\n      srCocRefund\n    );\n    // PolicyHolder can revert and cancel the policy cancellation\n    if (retval != IPolicyHolder.onPolicyCancelled.selector) revert InvalidNotificationResponse(retval);\n  }\n\n  /**\n   * @notice Base URI for computing {tokenURI}.\n   * @dev If set, the resulting URI for each token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n   * by default, can be modified calling {setBaseURI}.\n   */\n  function _baseURI() internal view virtual override returns (string memory) {\n    return _nftBaseURI;\n  }\n\n  /**\n   * @notice Changes the baseURI of the minted policy NFTs\n   *\n   * @custom:emits BaseURIChanged With the new and old URIs\n   */\n  function setBaseURI(string calldata nftBaseURI_) external {\n    emit BaseURIChanged(_nftBaseURI, nftBaseURI_);\n    _nftBaseURI = nftBaseURI_;\n  }\n\n  function _update(address to, uint256 tokenId, address auth) internal override whenNotPaused returns (address) {\n    return super._update(to, tokenId, auth);\n  }\n\n  /**\n   * @dev This empty reserved space is put in place to allow future versions to add new\n   * variables without shifting down storage in the inheritance chain.\n   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n   */\n  uint256[45] private __gap;\n}\n"},"@ensuro/core/contracts/PolicyPoolComponent.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {UUPSUpgradeable} from \"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\nimport {IPolicyPool} from \"./interfaces/IPolicyPool.sol\";\nimport {IPolicyPoolComponent} from \"./interfaces/IPolicyPoolComponent.sol\";\n\n/**\n * @title Base class for PolicyPool components\n * @dev This is the base class of all the components of the protocol that are linked to the PolicyPool and created\n *      after it.\n *      Holds the reference to _policyPool as immutable, also provides access to common admin roles:\n *\n *      This contract also keeps track of the tweaks to avoid two tweaks of the same type are done in a short period.\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\nabstract contract PolicyPoolComponent is Initializable, UUPSUpgradeable, IPolicyPoolComponent {\n  /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n  IPolicyPool internal immutable _policyPool;\n\n  error NoZeroPolicyPool();\n  error UpgradeCannotChangePolicyPool();\n  error OnlyPolicyPool();\n\n  modifier onlyPolicyPool() {\n    require(msg.sender == address(_policyPool), OnlyPolicyPool());\n    _;\n  }\n\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  constructor(IPolicyPool policyPool_) {\n    if (address(policyPool_) == address(0)) revert NoZeroPolicyPool();\n    _disableInitializers();\n    _policyPool = policyPool_;\n  }\n\n  // solhint-disable-next-line func-name-mixedcase, no-empty-blocks\n  function __PolicyPoolComponent_init() internal onlyInitializing {}\n\n  function _authorizeUpgrade(address newImpl) internal view override {\n    _upgradeValidations(newImpl);\n  }\n\n  function _upgradeValidations(address newImpl) internal view virtual {\n    if (IPolicyPoolComponent(newImpl).policyPool() != _policyPool) revert UpgradeCannotChangePolicyPool();\n  }\n\n  /**\n   * @dev See {IERC165-supportsInterface}.\n   */\n  function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n    return interfaceId == type(IERC165).interfaceId || interfaceId == type(IPolicyPoolComponent).interfaceId;\n  }\n\n  function policyPool() public view override returns (IPolicyPool) {\n    return _policyPool;\n  }\n\n  function currency() public view returns (IERC20Metadata) {\n    return _policyPool.currency();\n  }\n\n  /**\n   * @dev This empty reserved space is put in place to allow future versions to add new\n   * variables without shifting down storage in the inheritance chain.\n   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n   */\n  uint256[50] private __gap;\n}\n"},"@ensuro/core/contracts/PremiumsAccount.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {Math} from \"@openzeppelin/contracts/utils/math/Math.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {IERC4626} from \"@openzeppelin/contracts/interfaces/IERC4626.sol\";\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {SafeCast} from \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport {IPolicyPool} from \"./interfaces/IPolicyPool.sol\";\nimport {IEToken} from \"./interfaces/IEToken.sol\";\nimport {Reserve} from \"./Reserve.sol\";\nimport {IPremiumsAccount} from \"./interfaces/IPremiumsAccount.sol\";\nimport {Policy} from \"./Policy.sol\";\n\n/**\n * @title Ensuro Premiums Account\n * @notice This contract holds the pure premiums of a set of risk modules.\n * @dev Pure premiums is the part of the premium that is expected to cover the losses. The contract keeps track of the pure premiums of the active policies\n * (_activePurePremiums) and the surplus or deficit generated by the finalized policies (pure premiums collected -\n * losses).\n *\n * Collaborates with a junior {EToken} and a senior {EToken} that act as lenders when the premiums aren't enough to\n * cover the losses.\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract PremiumsAccount is IPremiumsAccount, Reserve {\n  using Policy for Policy.PolicyData;\n  using Math for uint256;\n  using SafeERC20 for IERC20Metadata;\n  using SafeCast for uint256;\n\n  uint256 internal constant WAD = 1e18;\n  uint256 internal constant FOUR_DECIMAL_TO_WAD = 1e14;\n  uint16 internal constant HUNDRED_PERCENT = 1e4;\n\n  /**\n   * @dev The Junior eToken is the first {EToken} to which the PremiumsAccount will go for credit when it runs out of\n   * money. Optional (address(0)).\n   */\n  /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n  IEToken internal immutable _juniorEtk;\n\n  /**\n   * @dev The Senior eToken is the second {EToken} to which the PremiumsAccount will go for credit, after trying before\n   * with the junior eToken, when it runs out of money. Optional (address(0)).\n   */\n  /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n  IEToken internal immutable _seniorEtk;\n\n  /**\n   * @dev The active pure premiums field keeps track of the pure premiums collected by the active policies of risk\n   * modules linked with this PremiumsAccount.\n   */\n  uint256 internal _activePurePremiums; // sum of pure-premiums of active policies - In Wad\n\n  /**\n   * @dev The surplus field keeps track of the surplus or deficit (when negative) of the actual payouts made by the\n   * PremiumsAccount versus the collected pure premiums. On the negative side, it has a limit defined by `_maxDeficit()`,\n   * after that limit, internal loans are taken from the eTokens.\n   */\n  int256 internal _surplus;\n\n  /**\n   * @notice This struct has the parameters that can be modified by governance\n   * @member deficitRatio A value between [0, 1] that defines the percentage of active pure premiums that can be used\n   *                      to cover losses.\n   * @member yieldVault   This is the implementation contract that manages the PremiumsAccount's funds. See\n   *                      {yieldVault()}\n   * @member jrLoanLimit  This is the maximum amount that can be borrowed from the Junior eToken (without decimals)\n   * @member srLoanLimit  This is the maximum amount that can be borrowed from the Senior eToken (without decimals)\n   */\n  struct PackedParams {\n    IERC4626 yieldVault;\n    uint32 jrLoanLimit;\n    uint32 srLoanLimit;\n    uint16 deficitRatio;\n  }\n\n  PackedParams internal _params;\n\n  /**\n   * @notice Thrown when yield-vault losses would push the account below its maximum allowed deficit.\n   * @dev `excess` is the remaining unpaid amount returned by `_payFromPremiums(losses)` after clamping to `_maxDeficit()`.\n   * @param losses The total losses being applied\n   * @param excess The unpaid portion that exceeds the max-deficit capacity\n   */\n  error LossesCannotExceedMaxDeficit(uint256 losses, uint256 excess);\n  /**\n   * @notice Thrown during upgrade validation if the configured eToken addresses change unexpectedly.\n   * @dev Upgrades must keep the same junior/senior eToken wiring (unless the current eToken is zero-address).\n   * @param oldEToken The currently configured eToken\n   * @param newEToken The eToken reported by the new implementation\n   */\n  error InvalidUpgradeETokenChanged(IEToken oldEToken, IEToken newEToken);\n  /**\n   * @notice Thrown when a new deficit ratio is invalid (out of range or not representable with 4 decimals).\n   * @param newDeficitRatio The proposed ratio (wad)\n   */\n  error InvalidDeficitRatio(uint256 newDeficitRatio);\n  /**\n   * @notice Thrown when attempting to set a deficit ratio without adjustment while the current deficit exceeds the new\n   * maximum allowed deficit.\n   * @param currentDeficit Current deficit (positive value, i.e., `-surplus`)\n   * @param newMaxDeficit New maximum deficit (positive value, i.e., `-maxDeficit`)\n   */\n  error DeficitExceedsMaxDeficit(int256 currentDeficit, int256 newMaxDeficit);\n  /**\n   * @notice Thrown when the required funds cannot be fully borrowed from the configured eTokens within their limits.\n   * @param amountLeft The remaining amount that could not be borrowed\n   */\n  error CannotBeBorrowed(uint256 amountLeft);\n  /**\n   * @notice Thrown when a loan limit cannot be represented with 0 decimals when packing/unpacking.\n   * @param loanLimit The provided limit value\n   */\n  error InvalidLoanLimit(uint256 loanLimit);\n  /**\n   * @notice Thrown when the destination address is invalid.\n   * @param destination The provided destination address\n   */\n  error InvalidDestination(address destination);\n  /**\n   * @notice Thrown when attempting to withdraw more than the current surplus (when `amount != type(uint256).max`).\n   * @param amountRequired The requested amount to withdraw\n   * @param surplus The current surplus (can be negative)\n   */\n  error WithdrawExceedsSurplus(uint256 amountRequired, int256 surplus);\n\n  /**\n   * @notice Emitted when \"won premiums\" move in or out of the PremiumsAccount.\n   * @dev Emitted by `receiveGrant` when funds are received without liability, and by `withdrawWonPremiums` when\n   * surplus is withdrawn (typically to the treasury).\n   *\n   * @param moneyIn Indicates if money came in or out (false).\n   * @param value The amount of money received or given\n   */\n  event WonPremiumsInOut(bool moneyIn, uint256 value);\n\n  /**\n   * @notice Emitted when the deficitRatio is changed\n   *\n   * @param oldRatio Ratio before the change\n   * @param newRatio Ratio after the change\n   * @param adjustment Adjustement (etk loan) made to adjust the contract, so deficit <= maxDeficit\n   */\n  event DeficitRatioChanged(uint256 oldRatio, uint256 newRatio, uint256 adjustment);\n\n  /**\n   * @notice Emitted when the loan limits are changed\n   *\n   * @param oldLimit Limit before the change\n   * @param newLimit Limit after the change\n   * @param isSenior If true, the limit changed is the senior limit, otherwise is the junior limit\n   */\n  event LoanLimitChanged(uint256 oldLimit, uint256 newLimit, bool isSenior);\n\n  /**\n   * @dev Constructor of the contract, sets the immutable fields.\n   *\n   * @param juniorEtk_ Address of the Junior EToken (first loss lender). `address(0)` if not present.\n   * @param seniorEtk_ Address of the Senior EToken (2nd loss lender). `address(0)` if not present.\n   */\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  constructor(IPolicyPool policyPool_, IEToken juniorEtk_, IEToken seniorEtk_) Reserve(policyPool_) {\n    _juniorEtk = juniorEtk_;\n    _seniorEtk = seniorEtk_;\n  }\n\n  /**\n   * @dev Initializes the PremiumsAccount\n   */\n  function initialize() public initializer {\n    __PremiumsAccount_init();\n  }\n\n  /**\n   * @dev Initializes the PremiumsAccount (to be called by subclasses)\n   */\n  // solhint-disable-next-line func-name-mixedcase\n  function __PremiumsAccount_init() internal onlyInitializing {\n    __Reserve_init();\n    __PremiumsAccount_init_unchained();\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function __PremiumsAccount_init_unchained() internal onlyInitializing {\n    /*\n    _activePurePremiums = 0;\n    */\n    _params = PackedParams({\n      deficitRatio: HUNDRED_PERCENT,\n      yieldVault: IERC4626(address(0)),\n      jrLoanLimit: 0,\n      srLoanLimit: 0\n    });\n  }\n\n  function _upgradeValidations(address newImpl) internal view virtual override {\n    super._upgradeValidations(newImpl);\n    IPremiumsAccount newPA = IPremiumsAccount(newImpl);\n    (IEToken newJr, IEToken newSr) = newPA.etks();\n    require(newJr == _juniorEtk || address(_juniorEtk) == address(0), InvalidUpgradeETokenChanged(_juniorEtk, newJr));\n    require(newSr == _seniorEtk || address(_seniorEtk) == address(0), InvalidUpgradeETokenChanged(_seniorEtk, newSr));\n  }\n\n  /**\n   * @dev See {IERC165-supportsInterface}.\n   */\n  function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n    return super.supportsInterface(interfaceId) || interfaceId == type(IPremiumsAccount).interfaceId;\n  }\n\n  /// @inheritdoc Reserve\n  function yieldVault() public view override returns (IERC4626) {\n    return _params.yieldVault;\n  }\n\n  /// @inheritdoc Reserve\n  function _setYieldVault(IERC4626 newYV) internal override {\n    _params.yieldVault = newYV;\n  }\n\n  /**\n   * @dev This is called by the {Reserve} base class to record the earnings generated by the asset management.\n   *\n   * @param earningsOrLosses Indicates the amount earned since last time earnings where recorded.\n   * - If positive, accumulates the amount in the surplus.\n   * - If negative (losses) substracts it from surplus. It never can exceed _maxDeficit and doesn't takes\n   *   loans to cover asset losses.\n   */\n  function _yieldEarnings(int256 earningsOrLosses) internal override {\n    if (earningsOrLosses >= 0) {\n      _storePurePremiumWon(uint256(earningsOrLosses));\n    } else {\n      uint256 excess = _payFromPremiums(-earningsOrLosses);\n      require(excess == 0, LossesCannotExceedMaxDeficit(uint256(-earningsOrLosses), excess));\n    }\n    super._yieldEarnings(earningsOrLosses);\n  }\n\n  function purePremiums() external view override returns (uint256) {\n    return uint256(int256(_activePurePremiums) + _surplus);\n  }\n\n  /**\n   * @dev Returns the total amount of pure premiums that were collected by the active policies of the risk modules\n   * linked to this PremiumsAccount.\n   */\n  function activePurePremiums() external view returns (uint256) {\n    return _activePurePremiums;\n  }\n\n  /**\n   * @dev Returns the surplus between pure premiums collected and payouts of finalized policies. Returns 0 if no surplus\n   * or deficit.\n   */\n  function wonPurePremiums() external view returns (uint256) {\n    return _surplus >= 0 ? uint256(_surplus) : 0;\n  }\n\n  /**\n   * @dev Returns the amount of active pure premiums that was used to cover payouts of finalized policies (in excess of\n   * collected pure premiums). This is limited by `_maxDeficit()`\n   */\n  function borrowedActivePP() external view returns (uint256) {\n    return _surplus >= 0 ? 0 : uint256(-_surplus);\n  }\n\n  /**\n   * @dev Returns the surplus between pure premiums collected and payouts of finalized policies. Losses where more than\n   * premiums collected, returns a negative number that indicates the amount of the active pure premiums that was used\n   * to cover finalized premiums.\n   */\n  function surplus() external view returns (int256) {\n    return _surplus;\n  }\n\n  /**\n   * @dev Returns the amount of funds available to cover losses or repay eToken loans.\n   */\n  function fundsAvailable() public view returns (uint256) {\n    // This is guaranteed to be positive because _maxDeficit is negative and always gte _surplus in absolute value\n    return uint256(_surplus - _maxDeficit(deficitRatio()));\n  }\n\n  function seniorEtk() external view override returns (IEToken) {\n    return _seniorEtk;\n  }\n\n  function juniorEtk() external view override returns (IEToken) {\n    return _juniorEtk;\n  }\n\n  function etks() external view override returns (IEToken, IEToken) {\n    return (_juniorEtk, _seniorEtk);\n  }\n\n  /**\n   * @dev Returns the maximum deficit that's supported by the PremiumsAccount. If more money is needed, it must take\n   * loans from the eTokens. The value is calculated as a fraction of the active pure premiums. The fraction is\n   * regulated by the `deficitRatio` parameter that indicates the percentage of the active pure premiums that can be\n   * used to cover payouts of finalized policies. In many cases is fine to use the active pure premiums to cover the\n   * losses because in most cases the policies with payout are triggered long time before the policies without payout.\n   * But this also can be dangerous because it can be postponing the losses that should impact on liquidity providers.\n   *\n   * @param ratio The ratio used in the calculation of the deficit. It's the deficitRatio parameter (whether the current\n   * one or the new one when it's being modified).\n   */\n  function _maxDeficit(uint256 ratio) internal view returns (int256) {\n    return -int256(_activePurePremiums.mulDiv(ratio, WAD));\n  }\n\n  function _toAmount(uint32 value) internal view returns (uint256) {\n    // 0 decimals to amount decimals\n    return uint256(value) * 10 ** currency().decimals();\n  }\n\n  function _toZeroDecimals(uint256 amount) internal view returns (uint32) {\n    // Removes the decimals from the amount\n    return (amount / 10 ** currency().decimals()).toUint32();\n  }\n\n  /**\n   * @dev Returns the percentage of the active pure premiums that can be used to cover losses of finalized policies.\n   */\n  function deficitRatio() public view returns (uint256) {\n    return uint256(_params.deficitRatio) * FOUR_DECIMAL_TO_WAD; // 4 -> 18 decimals\n  }\n\n  /**\n   * @dev Returns the limit on the Junior eToken loans (infinite if _params.jrLoanLimit == 0)\n   */\n  function jrLoanLimit() public view returns (uint256) {\n    return _params.jrLoanLimit == 0 ? type(uint256).max : _toAmount(_params.jrLoanLimit);\n  }\n\n  /**\n   * @dev Returns the limit on the Senior eToken loans (infinite if _params.srLoanLimit == 0)\n   */\n  function srLoanLimit() public view returns (uint256) {\n    return _params.srLoanLimit == 0 ? type(uint256).max : _toAmount(_params.srLoanLimit);\n  }\n\n  /**\n   * @notice Changes the `deficitRatio` parameter.\n   *\n   * @param newRatio New deficit ratio (wad). Must be `<= WAD` and exactly representable with 4 decimals\n   *                 (multiple of `FOUR_DECIMAL_TO_WAD`).\n   * @param adjustment If true, allows borrowing from eTokens to satisfy the new max-deficit bound when needed.\n   *\n   * @custom:pre `newRatio <= WAD`\n   * @custom:pre `newRatio` must be exactly representable with 4 decimals:\n   *             `uint256(uint16(newRatio / FOUR_DECIMAL_TO_WAD)) * FOUR_DECIMAL_TO_WAD == newRatio`\n   * @custom:pre If `adjustment == false`, then `_surplus >= _maxDeficit(newRatio)`\n   *\n   * @custom:throws {InvalidDeficitRatio} if `newRatio` is out of range or not representable with 4 decimals\n   * @custom:throws {DeficitExceedsMaxDeficit} if `adjustment == false` and `_surplus < _maxDeficit(newRatio)`\n   *\n   * @custom:emits {DeficitRatioChanged}\n   */\n  function setDeficitRatio(uint256 newRatio, bool adjustment) external {\n    uint16 truncatedRatio = (newRatio / FOUR_DECIMAL_TO_WAD).toUint16();\n    require(\n      newRatio <= WAD && uint256(truncatedRatio) * FOUR_DECIMAL_TO_WAD == newRatio,\n      InvalidDeficitRatio(newRatio)\n    );\n\n    int256 maxDeficit = _maxDeficit(newRatio);\n    if (!adjustment && _surplus < maxDeficit) revert DeficitExceedsMaxDeficit(-_surplus, -maxDeficit);\n\n    uint256 borrow;\n    if (_surplus < maxDeficit) {\n      // Do the adjustment\n      borrow = uint256(-_surplus + maxDeficit);\n      _surplus = maxDeficit;\n      _borrowFromEtk(borrow, address(this), address(_juniorEtk) != address(0));\n    }\n    emit DeficitRatioChanged(_params.deficitRatio * FOUR_DECIMAL_TO_WAD, newRatio, borrow);\n    _params.deficitRatio = truncatedRatio;\n  }\n\n  /**\n   * @notice Changes the `jrLoanLimit` or `srLoanLimit` parameter.\n   *\n   * @param newLimitJr The new limit to be set for the loans taken from the Junior eToken.\n   *                   If newLimitJr == MAX_UINT, it's ignored. If == 0, means the loans are unbounded.\n   * @param newLimitSr The new limit to be set for the loans taken from the Senior eToken.\n   *                   If newLimitSr == MAX_UINT, it's ignored. If == 0, means the loans are unbounded.\n   *\n   * @custom:pre For each limit `newLimit` that is updated (`newLimit != type(uint256).max`), it must be representable with 0 decimals:\n   *             `_toAmount(_toZeroDecimals(newLimit)) == newLimit`\n   *\n   * @custom:throws {InvalidLoanLimit} if any provided limit cannot be packed/unpacked without losing precision\n   *\n   * @custom:emits {LoanLimitChanged} once per updated limit (up to two emits)\n   */\n  function setLoanLimits(uint256 newLimitJr, uint256 newLimitSr) external {\n    if (newLimitJr != type(uint256).max) {\n      emit LoanLimitChanged(jrLoanLimit(), newLimitJr, false);\n      _params.jrLoanLimit = _toZeroDecimals(newLimitJr);\n      require(_toAmount(_params.jrLoanLimit) == newLimitJr, InvalidLoanLimit(newLimitJr));\n    }\n    if (newLimitSr != type(uint256).max) {\n      emit LoanLimitChanged(srLoanLimit(), newLimitSr, true);\n      _params.srLoanLimit = _toZeroDecimals(newLimitSr);\n      require(_toAmount(_params.srLoanLimit) == newLimitSr, InvalidLoanLimit(newLimitSr));\n    }\n  }\n\n  /**\n   * @dev Internal function called when money in the PremiumsAccount is not enough and we need to borrow from the\n   * eTokens.\n   *\n   * @param borrow The amount to borrow.\n   * @param receiver The address that will receive the money of the loan. Usually is the policy holder if this is called\n   *                 in the context of a policy payout.\n   * @param jrEtk If true it indicates that the loan is asked first from the junior eToken.\n   */\n  function _borrowFromEtk(uint256 borrow, address receiver, bool jrEtk) internal {\n    uint256 left = borrow;\n    if (jrEtk) {\n      uint256 jrLoan = _juniorEtk.getLoan(address(this));\n      if (jrLoan + borrow <= jrLoanLimit()) {\n        left = _juniorEtk.internalLoan(borrow, receiver);\n      } else if (jrLoan < jrLoanLimit()) {\n        // Partial loan\n        uint256 loanExcess = jrLoan + borrow - jrLoanLimit();\n        left = loanExcess + _juniorEtk.internalLoan(borrow - loanExcess, receiver);\n      }\n    }\n    if (left != 0) {\n      // if _seniorEtk == address(0) it will revert without message, instead of CannotBeBorrowed\n      if (_seniorEtk.getLoan(address(this)) + left <= srLoanLimit()) {\n        left = _seniorEtk.internalLoan(left, receiver);\n      } // in the senior eToken doesn't make sense to handle partial loan\n      require(left == 0, CannotBeBorrowed(left));\n    }\n  }\n\n  /**\n   * @dev Updates the `_surplus` field with the payment made. Since the _surplus can never exceed `_maxDeficit()`,\n   * returns the remaining amount in case something can't be paid from the PremiumsAccount.\n   *\n   * @param toPay The amount to pay.\n   * @return The amount that couldn't be paid from the premiums account.\n   */\n  function _payFromPremiums(int256 toPay) internal returns (uint256) {\n    int256 newSurplus = _surplus - toPay;\n    int256 maxDeficit = _maxDeficit(deficitRatio());\n    if (newSurplus >= maxDeficit) {\n      _surplus = newSurplus;\n      return 0;\n    }\n    _surplus = maxDeficit;\n    return uint256(-newSurplus + maxDeficit);\n  }\n\n  /**\n   * @dev Stores an earned pure premium. Adds to the surplus, increasing the surplus if it was positive or reducing the\n   * deficit if it was negative.\n   *\n   * @param purePremiumWon The amount earned\n   */\n  function _storePurePremiumWon(uint256 purePremiumWon) internal {\n    _surplus += int256(purePremiumWon);\n  }\n\n  /**\n   * @notice Endpoint to receive \"free money\" and inject that money into the premium pool.\n   * @dev Can be used for example if the PolicyPool subscribes an excess loss policy with other company.\n   *\n   * @param amount The amount to be transferred.\n   *\n   * @custom:pre `msg.sender` approved `currency()` to this contract for at least `amount`\n   *\n   * @custom:emits {WonPremiumsInOut} with `moneyIn = true`\n   */\n  function receiveGrant(uint256 amount) external {\n    _storePurePremiumWon(amount);\n    currency().safeTransferFrom(msg.sender, address(this), amount);\n    emit WonPremiumsInOut(true, amount);\n  }\n\n  /**\n   * @notice Withdraws excess premiums (surplus) to the destination.\n   * @dev This might be needed in some cases for example if we are deprecating the protocol or the excess premiums\n   * are needed to compensate something. Or to extract profits accrued either by Ensuro or the partners.\n   *\n   * @param amount The amount to withdraw. If amount == type(uint256).max it withdraws as much as possible and doesn't\n   *               fails. If amount != type(uint256).max it tries to withdraw that amount or it fails\n   * @param destination The address that will receive the transferred funds.\n   * @return Returns the actual amount withdrawn.\n   *\n   * @custom:pre `destination != address(0)`\n   * @custom:pre If `amount != type(uint256).max`, then `int256(amount) <= _surplus`\n   *\n   * @custom:throws {InvalidDestination} if `destination == address(0)`\n   * @custom:throws {WithdrawExceedsSurplus} if `amount != type(uint256).max` and `int256(amount) > _surplus`\n   *\n   * @custom:emits {WonPremiumsInOut} with `moneyIn = false`\n   */\n  function withdrawWonPremiums(uint256 amount, address destination) external returns (uint256) {\n    require(destination != address(0), InvalidDestination(destination));\n    if (address(yieldVault()) != address(0)) recordEarnings();\n    if (amount == type(uint256).max) {\n      if (_surplus <= 0) return 0;\n      amount = uint256(_surplus);\n    } else {\n      require(int256(amount) <= _surplus, WithdrawExceedsSurplus(amount, _surplus));\n    }\n    _surplus -= int256(amount);\n    _transferTo(destination, amount);\n    emit WonPremiumsInOut(false, amount);\n    return amount;\n  }\n\n  /// @inheritdoc IPremiumsAccount\n  function policyCreated(Policy.PolicyData calldata policy) external override onlyPolicyPool {\n    _activePurePremiums += policy.purePremium;\n    if (policy.jrScr > 0) _juniorEtk.lockScr(policy.id, policy.jrScr, policy.jrInterestRate());\n    if (policy.srScr > 0) _seniorEtk.lockScr(policy.id, policy.srScr, policy.srInterestRate());\n  }\n\n  /// @inheritdoc IPremiumsAccount\n  function policyReplaced(\n    Policy.PolicyData calldata oldPolicy,\n    Policy.PolicyData calldata newPolicy\n  ) external override onlyPolicyPool {\n    /**\n     * Assumptions:\n     * 1. newPolicy.purePremium >= oldPolicy.purePremium (validated by PolicyPool)\n     * 2. jrCoc != 0 ==> jrScr != 0 ^ srCoc != 0 ==> srScr != 0 (guaranteed by Policy.sol)\n     * 3. newPolicy.jrCoc >= oldPolicy.jrCoc (validated by PolicyPool)\n     * 4. newPolicy.srCoc >= oldPolicy.srCoc (validated by PolicyPool)\n     * 5. Then sr/jrInterestRate() never fails\n     */\n    _activePurePremiums += newPolicy.purePremium - oldPolicy.purePremium;\n\n    /**\n     * Applies an adjustment based on the difference between the accrued interest with the old policy and the new\n     * policy.\n     * The CoC is disbursed linearly from policy start (the same for old and new policy) and policy.expiration (might\n     * be different).\n     * The adjustment corrects the gap between the two straight lines at the replacement time\n     */\n    if (oldPolicy.jrScr != 0)\n      _juniorEtk.unlockScr(\n        oldPolicy.id,\n        oldPolicy.jrScr,\n        oldPolicy.jrInterestRate(),\n        int256(newPolicy.jrAccruedInterest()) - int256(oldPolicy.jrAccruedInterest())\n      );\n    if (newPolicy.jrScr > 0) _juniorEtk.lockScr(newPolicy.id, newPolicy.jrScr, newPolicy.jrInterestRate());\n    if (oldPolicy.srScr != 0)\n      _seniorEtk.unlockScr(\n        oldPolicy.id,\n        oldPolicy.srScr,\n        oldPolicy.srInterestRate(),\n        int256(newPolicy.srAccruedInterest()) - int256(oldPolicy.srAccruedInterest())\n      );\n    if (newPolicy.srScr > 0) _seniorEtk.lockScr(newPolicy.id, newPolicy.srScr, newPolicy.srInterestRate());\n  }\n\n  /// @inheritdoc IPremiumsAccount\n  function policyCancelled(\n    Policy.PolicyData calldata policy,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund,\n    address policyHolder\n  ) external override onlyPolicyPool {\n    _activePurePremiums -= policy.purePremium;\n    uint256 borrowFromScr = _payFromPremiums(int256(purePremiumRefund) - int256(policy.purePremium));\n    if (borrowFromScr != 0) {\n      _unlockScrWithRefund(policy, jrCocRefund, srCocRefund, policyHolder);\n      _borrowFromEtk(borrowFromScr, policyHolder, policy.jrScr > 0);\n    } else {\n      _unlockScrWithRefund(policy, jrCocRefund, srCocRefund, policyHolder);\n    }\n    _transferTo(policyHolder, purePremiumRefund - borrowFromScr);\n  }\n\n  /// @inheritdoc IPremiumsAccount\n  function policyResolvedWithPayout(\n    address policyHolder,\n    Policy.PolicyData calldata policy,\n    uint256 payout\n  ) external override onlyPolicyPool {\n    _activePurePremiums -= policy.purePremium;\n    uint256 borrowFromScr = _payFromPremiums(int256(payout) - int256(policy.purePremium));\n    if (borrowFromScr != 0) {\n      _unlockScr(policy);\n      _borrowFromEtk(borrowFromScr, policyHolder, policy.jrScr > 0);\n    } else {\n      _unlockScr(policy);\n    }\n    _transferTo(policyHolder, payout - borrowFromScr);\n  }\n\n  /**\n   * @dev Internal function that calls the eTokens to unlock the solvency capital when the policy expires\n   *\n   * @param policy The policy expired\n   */\n  function _unlockScr(Policy.PolicyData memory policy) internal {\n    if (policy.jrScr > 0) {\n      _juniorEtk.unlockScr(\n        policy.id,\n        policy.jrScr,\n        policy.jrInterestRate(),\n        int256(policy.jrCoc) - int256(policy.jrAccruedInterest())\n      );\n    }\n    if (policy.srScr > 0) {\n      _seniorEtk.unlockScr(\n        policy.id,\n        policy.srScr,\n        policy.srInterestRate(),\n        int256(policy.srCoc) - int256(policy.srAccruedInterest())\n      );\n    }\n  }\n\n  /**\n   * @dev Internal function that calls the eTokens to unlock the solvency capital when the policy is cancelled, doing\n   *      refund of the jr and sr Coc\n   *\n   * @param policy The policy cancelled\n   */\n  function _unlockScrWithRefund(\n    Policy.PolicyData memory policy,\n    uint256 jrCocRefund,\n    uint256 srCocRefund,\n    address policyHolder\n  ) internal {\n    if (policy.jrScr > 0) {\n      _juniorEtk.unlockScrWithRefund(\n        policy.id,\n        policy.jrScr,\n        policy.jrInterestRate(),\n        int256(policy.jrCoc - jrCocRefund) - int256(policy.jrAccruedInterest()),\n        policyHolder,\n        jrCocRefund\n      );\n    }\n    if (policy.srScr > 0) {\n      _seniorEtk.unlockScrWithRefund(\n        policy.id,\n        policy.srScr,\n        policy.srInterestRate(),\n        int256(policy.srCoc - srCocRefund) - int256(policy.srAccruedInterest()),\n        policyHolder,\n        srCocRefund\n      );\n    }\n  }\n\n  /**\n   * @notice Function that repays the loan(s) if fundsAvailable\n   *\n   * @return available The funds still available after repayment\n   */\n  function repayLoans() external returns (uint256 available) {\n    if (address(yieldVault()) != address(0)) recordEarnings();\n    available = fundsAvailable();\n    if (available != 0 && address(_seniorEtk) != address(0)) available = _repayLoan(available, _seniorEtk);\n    if (available != 0 && address(_juniorEtk) != address(0)) available = _repayLoan(available, _juniorEtk);\n    return available;\n  }\n\n  /**\n   * @dev Internal function that repays a loan taken (if any outstanding) from the an eToken\n   *\n   * @param fundsAvailable_ The amount of funds available for the repayment\n   * @param etk The eToken with the potential debt\n   * @return The excess amount of the purePremiumWon that wasn't used for the loan repayment.\n   */\n  function _repayLoan(uint256 fundsAvailable_, IEToken etk) internal returns (uint256) {\n    uint256 borrowedFromEtk = etk.getLoan(address(this));\n    if (borrowedFromEtk == 0) return fundsAvailable_;\n    uint256 repayAmount = Math.min(fundsAvailable_, borrowedFromEtk);\n    _surplus -= int256(repayAmount);\n\n    // Makes sure there's enough liquidity for repayAmount\n    _transferTo(address(this), repayAmount);\n    // Checks the allowance before repayment\n    if (currency().allowance(address(this), address(etk)) < repayAmount) {\n      // If I have to approve, I approve for all the pending debt (not just repayAmount), this way I avoid some\n      // future approvals.\n      currency().approve(address(etk), borrowedFromEtk);\n    }\n    etk.repayLoan(repayAmount, address(this));\n    return fundsAvailable_ - repayAmount;\n  }\n\n  /// @inheritdoc IPremiumsAccount\n  function policyExpired(Policy.PolicyData calldata policy) external override onlyPolicyPool {\n    _activePurePremiums -= policy.purePremium;\n    _storePurePremiumWon(policy.purePremium);\n    _unlockScr(policy);\n  }\n\n  /**\n   * @dev This empty reserved space is put in place to allow future versions to add new\n   * variables without shifting down storage in the inheritance chain.\n   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n   */\n  uint256[47] private __gap;\n}\n"},"@ensuro/core/contracts/Reserve.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {IERC4626} from \"@openzeppelin/contracts/interfaces/IERC4626.sol\";\nimport {IPolicyPool} from \"./interfaces/IPolicyPool.sol\";\nimport {PolicyPoolComponent} from \"./PolicyPoolComponent.sol\";\n\n/**\n * @title Base contract for Ensuro cash reserves\n * @notice Implements the methods related with management of the reserves and payments. {EToken} and\n * {PremiumsAccount} inherit from this contract.\n *\n * @dev These contracts have an asset manager {IAssetManager} that's a strategy contract that runs in the same context\n * (called with delegatecall) that apply some strategy to reinvest the assets managed by the contract to generate\n * additional returns.\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\nabstract contract Reserve is PolicyPoolComponent {\n  using SafeERC20 for IERC20Metadata;\n\n  /**\n   * @dev Tracks the amount of assets invested in the yieldVault, up to the last time it was recorded\n   */\n  uint256 internal _invested;\n\n  /// @notice Thrown when the yield vault is unset or invalid for the configured currency.\n  error InvalidYieldVault();\n  /**\n   * @notice Thrown when trying to invest more cash than currently liquid in the reserve.\n   * @param required The requested amount of liquid funds\n   * @param available The currently available liquid balance\n   */\n  error NotEnoughCash(uint256 required, uint256 available);\n  /**\n   * @notice Thrown when attempting to transfer to the zero address.\n   * @param receiver The receiver that was provided (cannot be the zero address)\n   */\n  error ReserveInvalidReceiver(address receiver);\n\n  /**\n   * @notice Emitted when the yield vault is changed.\n   * @dev When replacing an existing vault, the reserve attempts to redeem the full position (unless `force` is used).\n   *\n   * @param oldVault The previous yield vault (can be `address(0)`)\n   * @param newVault The new yield vault (can be `address(0)`)\n   * @param forced True if the switch ignored a partial/failed deinvestment and proceeded anyway\n   */\n  event YieldVaultChanged(IERC4626 indexed oldVault, IERC4626 indexed newVault, bool forced);\n\n  /**\n   * @notice Emitted when a forced deinvestment ignored a redeem failure.\n   *\n   * @param oldVault The vault that failed to redeem\n   * @param shares The number of shares attempted to redeem\n   */\n  event ErrorIgnoredDeinvestingVault(IERC4626 indexed oldVault, uint256 shares);\n\n  /**\n   * @notice Event emitted when investment yields are accounted in the reserve\n   *\n   * @param earnings The amount of earnings generated since last record. It's positive in the case of earnings or\n   * negative when there are losses.\n   */\n  event EarningsRecorded(int256 earnings);\n\n  /**\n   * @dev Reserve constructor\n   *\n   * @param policyPool_ The {PolicyPool} where this reserve will be plugged\n   */\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  constructor(IPolicyPool policyPool_) PolicyPoolComponent(policyPool_) {}\n\n  /**\n   * @dev Initializes the Reserve (to be called by subclasses)\n   */\n  // solhint-disable-next-line func-name-mixedcase\n  function __Reserve_init() internal onlyInitializing {\n    __PolicyPoolComponent_init();\n  }\n\n  /**\n   * @dev Internal function that transfers money to a destination. It might need to call `_deinvest` to deinvest\n   *      some money to have enough liquidity for the payment.\n   *\n   * @param destination The destination of the transfer. If destination == address(this) it doesn't transfer, just\n   *                    makes sure the amount is available.\n   * @param amount The amount to be transferred.\n   *\n   * @custom:pre `destination` must not be `address(0)`\n   * @custom:pre If a yield vault is configured, it must be compatible with {currency()}\n   *\n   * @custom:throws ReserveInvalidReceiver if `destination == address(0)`\n   */\n  function _transferTo(address destination, uint256 amount) internal {\n    require(destination != address(0), ReserveInvalidReceiver(destination));\n    if (amount == 0) return;\n    uint256 balance = _balance();\n    if (balance < amount) {\n      IERC4626 yv = yieldVault();\n      if (address(yv) != address(0)) {\n        _deinvest(yv, amount - balance);\n      }\n      // If balance still < amount, it will fail later...\n    }\n    if (destination != address(this)) currency().safeTransfer(destination, amount);\n  }\n\n  /**\n   * @notice Returns the address of the yield vault, where the part of the funds are invested to generate additional\n   *      yields. Can be `address(0)` if no yieldVault has been set.\n   */\n  function yieldVault() public view virtual returns (IERC4626);\n\n  /**\n   * @dev Internal function that needs to be implemented by child contracts because they might store the yield vault\n   * address in a different way. This function just stores the value, doesn't do any validation (validations are done\n   * on `setYieldVault`.\n   *\n   * @param newYieldVault The address of the new Yield vault. The yield vault is an ERC-4626 compatible vault\n   */\n  function _setYieldVault(IERC4626 newYieldVault) internal virtual;\n\n  /**\n   * @notice Returns the amount of funds that were invested in the yieldVault, up to the last recorded earnings / losses\n   */\n  function investedInYV() public view returns (uint256) {\n    return _invested;\n  }\n\n  /**\n   * @dev Internal function that needs to be implemented by child contracts to record the earnings (or losses if\n   * negative) generated by the yield vault\n   *\n   * @param earnings The amount of earnings (or losses if negative) generated since last time the earnings were\n   * recorded.\n   *\n   * @custom:emits {EarningsRecorded}\n   */\n  function _yieldEarnings(int256 earnings) internal virtual {\n    emit EarningsRecorded(earnings);\n  }\n\n  /**\n   * @notice Sets the new yield vault for this reserve. If the reserve had previously a yield vault, it will deinvest all\n   * the funds, making all of the liquid in the reserve balance.\n   *\n   *\n   * @param newYieldVault The address of the new yield vault to assign to the reserve. If is `address(0)` it means\n   *                      the reserve will not have a yield vault. If not `address(0)` it MUST be an IERC4626\n   *                      where `newYieldVault.asset()` equals `.currency()`\n   * @param force When a previous yield vault exists, before setting the new one, the funds are deinvested. When\n   *              `force` is true, an error in the deinvestment of the assets (or some assets not withdrawable)\n   *              will be ignored. When `force` is false, it will revert if `oldVault.balanceOf(address(this)) != 0`.\n   * @custom:emits {YieldVaultChanged}\n   */\n  function setYieldVault(IERC4626 newYieldVault, bool force) external {\n    bool forced;\n    IERC20Metadata asset = currency();\n    require(address(newYieldVault) == address(0) || newYieldVault.asset() == address(asset), InvalidYieldVault());\n    IERC4626 oldYV = yieldVault();\n    uint256 deinvested;\n\n    if (address(oldYV) != address(0)) {\n      uint256 yvShares = oldYV.balanceOf(address(this));\n      if (yvShares != 0) {\n        if (force) {\n          // Never fails, honors maxRedeem and deinvest as much as possible\n          (deinvested, forced) = _safeDeInvestAll(oldYV, yvShares);\n        } else {\n          // Redeems ALL the shares, otherwise, it fails\n          deinvested = oldYV.redeem(yvShares, address(this), address(this));\n        }\n      }\n    }\n    _setYieldVault(newYieldVault); // Stores the new YV\n\n    // Records the earnings\n    _yieldEarnings(int256(deinvested) - int256(_invested));\n    _invested = 0;\n    emit YieldVaultChanged(oldYV, newYieldVault, forced);\n  }\n\n  /**\n   * @dev Internal helper to deinvest `amount` assets from `yieldVault_`.\n   *\n   * It calls `withdraw(amount, address(this), address(this))` on the vault and updates `_invested`,\n   * also recording earnings if more than the tracked `_invested` is recovered.\n   *\n   * Although the protocol usually operates with safe investments where significant losses are not expected,\n   * there could be losses anyway. Calls to deinvest should be preceded by a call to `recordEarnings()`\n   * in situations where accurate earnings/losses tracking is required (like LP withdrawals).\n   *\n   * @param yieldVault_ Yield vault to deinvest from\n   * @param amount Amount of assets to withdraw from the vault\n   */\n  function _deinvest(IERC4626 yieldVault_, uint256 amount) internal {\n    yieldVault_.withdraw(amount, address(this), address(this));\n    if (amount > _invested) {\n      // If deinvests more than was already invested, then there's an earning and we have to record it.\n      _yieldEarnings(int256(amount - _invested));\n      _invested = 0;\n    } else {\n      _invested -= amount;\n    }\n  }\n\n  /**\n   * @dev Deinvests all the funds or as much as possible, without failing.\n   *\n   * @param yieldVault_ Yield vault to deinvest from\n   * @param sharesToRedeem Initial amount of shares to redeem\n   *\n   * @return deinvested The amount that was withdrawn from the vault\n   * @return forced If true, it indicates that something failed and it wasn't able to withdraw all the funds\n   *\n   * @custom:emits {ErrorIgnoredDeinvestingVault}\n   */\n  function _safeDeInvestAll(\n    IERC4626 yieldVault_,\n    uint256 sharesToRedeem\n  ) internal returns (uint256 deinvested, bool forced) {\n    try yieldVault_.maxRedeem(address(this)) returns (uint256 result) {\n      if (result < sharesToRedeem) {\n        forced = true;\n        sharesToRedeem = result;\n      }\n      // solhint-disable-next-line no-empty-blocks\n    } catch {}\n    try yieldVault_.redeem(sharesToRedeem, address(this), address(this)) returns (uint256 result) {\n      deinvested = result;\n    } catch {\n      emit ErrorIgnoredDeinvestingVault(yieldVault_, sharesToRedeem);\n      forced = true;\n    }\n  }\n\n  /**\n   * @dev Returns the liquid balance of `currency()` held directly by this reserve.\n   */\n  function _balance() internal view returns (uint256) {\n    return IERC20Metadata(currency()).balanceOf(address(this));\n  }\n\n  /**\n   * @notice Deinvest from the vault a given amount.\n   *\n   * @param amount Amount to withdraw from the `yieldVault()`. If equal type(uint256).max, deinvests maxWithdraw()\n   * @return deinvested The amount that was deinvested and added as liquid funds to the reserve\n   * @custom:pre yieldVault() != address(0)\n   * @custom:pre yieldVault().maxWithdraw(address(this)) >= amount\n   *             (this condition is not checked here; exceeding it is expected to revert in the vault during _deinvest()).\n   */\n  function withdrawFromYieldVault(uint256 amount) external returns (uint256 deinvested) {\n    recordEarnings();\n    IERC4626 yv = yieldVault();\n    if (amount == type(uint256).max) amount = yv.maxWithdraw(address(this));\n    _deinvest(yv, amount);\n    return amount;\n  }\n\n  /**\n   * @notice Moves money that's liquid in the contract to the yield vault, to generate yields\n   * @param amount Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\n   * @custom:pre _balance() >= amount\n   */\n  function depositIntoYieldVault(uint256 amount) external {\n    IERC4626 yv = yieldVault();\n    require(address(yv) != address(0), InvalidYieldVault());\n    uint256 balance = _balance();\n    if (amount == type(uint256).max) {\n      amount = balance;\n    } else {\n      require(amount <= balance, NotEnoughCash(amount, balance));\n    }\n    _invested += amount;\n    currency().approve(address(yv), amount);\n    yv.deposit(amount, address(this));\n  }\n\n  /**\n   * @dev Computes the value of the assets invested in the yieldVault() and then calls `_yieldEarnings` to\n   *      reflect the earnings/losses in the way defined for each reserve.\n   * @custom:emits {EarningsRecorded}\n   */\n  function recordEarnings() public {\n    IERC4626 yv = yieldVault();\n    require(address(yv) != address(0), InvalidYieldVault());\n    uint256 assetsInvested = yv.convertToAssets(yv.balanceOf(address(this)));\n    int256 earned = int256(assetsInvested) - int256(_invested);\n    if (earned != 0) {\n      _invested = assetsInvested;\n      _yieldEarnings(earned);\n    }\n  }\n\n  /**\n   * @dev This empty reserved space is put in place to allow future versions to add new\n   * variables without shifting down storage in the inheritance chain.\n   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n   */\n  uint256[49] private __gap;\n}\n"},"@ensuro/core/contracts/RiskModule.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\n\nimport {SafeCast} from \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport {IPolicyPool} from \"./interfaces/IPolicyPool.sol\";\nimport {PolicyPoolComponent} from \"./PolicyPoolComponent.sol\";\nimport {IRiskModule} from \"./interfaces/IRiskModule.sol\";\nimport {IUnderwriter} from \"./interfaces/IUnderwriter.sol\";\nimport {IPremiumsAccount} from \"./interfaces/IPremiumsAccount.sol\";\nimport {Policy} from \"./Policy.sol\";\n\n/**\n * @title Ensuro Risk Module contract\n * @dev Risk Module that keeps the configuration and is responsible for injecting policies and policy resolution\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract RiskModule is IRiskModule, PolicyPoolComponent {\n  using Policy for Policy.PolicyData;\n  using SafeCast for uint256;\n\n  /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n  IPremiumsAccount internal immutable _premiumsAccount;\n\n  IUnderwriter internal _underwriter;\n\n  address internal _wallet; // Address of the RiskModule provider\n\n  event PartnerWalletChanged(address oldWallet, address newWallet);\n  event UnderwriterChanged(IUnderwriter oldUW, IUnderwriter newUW);\n\n  error InvalidWallet(address wallet);\n  error InvalidUnderwriter(IUnderwriter uw);\n  error PremiumsAccountMustBePartOfThePool();\n  error UpgradeCannotChangePremiumsAccount();\n  error ExpirationMustBeInTheFuture(uint40 expiration, uint40 now);\n  error InvalidCustomer(address customer);\n\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  constructor(IPolicyPool policyPool_, IPremiumsAccount premiumsAccount_) PolicyPoolComponent(policyPool_) {\n    if (PolicyPoolComponent(address(premiumsAccount_)).policyPool() != policyPool_) {\n      revert PremiumsAccountMustBePartOfThePool();\n    }\n    _premiumsAccount = premiumsAccount_;\n  }\n\n  /**\n   * @dev Initializes the RiskModule\n   * @param underwriter_ Contract in charge of decoding and validating the input and pricing the policies\n   * @param wallet_ Address of the RiskModule provider\n   */\n  function initialize(IUnderwriter underwriter_, address wallet_) public initializer {\n    __RiskModule_init(underwriter_, wallet_);\n  }\n\n  /**\n   * @dev Initializes the RiskModule\n   * @param underwriter_ Contract in charge of decoding and validating the input and pricing the policies\n   * @param wallet_ Address of the RiskModule provider\n   */\n  // solhint-disable-next-line func-name-mixedcase\n  function __RiskModule_init(IUnderwriter underwriter_, address wallet_) internal onlyInitializing {\n    __PolicyPoolComponent_init();\n    __RiskModule_init_unchained(underwriter_, wallet_);\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function __RiskModule_init_unchained(IUnderwriter underwriter_, address wallet_) internal onlyInitializing {\n    setWallet(wallet_);\n    setUnderwriter(underwriter_);\n  }\n\n  function _upgradeValidations(address newImpl) internal view virtual override {\n    super._upgradeValidations(newImpl);\n    IRiskModule newRM = IRiskModule(newImpl);\n    if (newRM.premiumsAccount() != _premiumsAccount) {\n      revert UpgradeCannotChangePremiumsAccount();\n    }\n  }\n\n  /**\n   * @dev See {IERC165-supportsInterface}.\n   */\n  function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n    return super.supportsInterface(interfaceId) || interfaceId == type(IRiskModule).interfaceId;\n  }\n\n  /// @inheritdoc IRiskModule\n  function wallet() public view override returns (address) {\n    return _wallet;\n  }\n\n  /**\n   * @dev Changes the wallet that will receive the partner commission of the policies created by this risk module.\n   * Events:\n   * - {RiskModule-PartnerWalletChanged}\n   * @param newWallet The new wallet that will receive the partner commissions. It can't be address(0).\n   */\n  function setWallet(address newWallet) public {\n    require(newWallet != address(0), InvalidWallet(newWallet));\n    emit PartnerWalletChanged(_wallet, newWallet);\n    _wallet = newWallet;\n  }\n\n  /**\n   * @notice Returns the underwriter contract, responsible for pricing and validating new policies, replacements and cancellations.\n   */\n  function underwriter() public view returns (IUnderwriter) {\n    return _underwriter;\n  }\n\n  /**\n   * @dev Changes the underwriter contract, responsible for pricing and validating new policies, replacements and cancellations.\n   * Events:\n   * - {RiskModule-UnderwriterChanged}\n   * @param newUW The new underwriter contract. It can't be address(0)\n   */\n  function setUnderwriter(IUnderwriter newUW) public {\n    require(address(newUW) != address(0), InvalidUnderwriter(newUW));\n    emit UnderwriterChanged(_underwriter, newUW);\n    _underwriter = newUW;\n  }\n\n  /// @inheritdoc IRiskModule\n  function premiumsAccount() external view override returns (IPremiumsAccount) {\n    return _premiumsAccount;\n  }\n\n  function getMinimumPremium(\n    uint256 payout,\n    uint256 lossProb,\n    uint40 start,\n    uint40 expiration,\n    Policy.Params memory p\n  ) public pure returns (uint256) {\n    return Policy.getMinimumPremium(p, payout, lossProb, expiration, start).totalPremium;\n  }\n\n  /**\n   * @dev Creates a new policy. The premium will paid by msg.sender\n   *\n   * @param inputData Input data that will be decoded by the _underwriter to construct the parameters for the\n   *                  new policy.\n   * @param onBehalfOf The address that will be the owner of the created policy\n   */\n  function newPolicy(bytes calldata inputData, address onBehalfOf) public returns (Policy.PolicyData memory policy) {\n    (\n      uint256 payout,\n      uint256 premium,\n      uint256 lossProb,\n      uint40 expiration,\n      uint96 internalId,\n      Policy.Params memory params_\n    ) = _underwriter.priceNewPolicy(address(this), inputData);\n\n    uint40 now_ = uint40(block.timestamp);\n    if (premium == type(uint256).max) {\n      premium = getMinimumPremium(payout, lossProb, now_, expiration, params_);\n    }\n    require(expiration > now_, ExpirationMustBeInTheFuture(expiration, now_));\n    require(onBehalfOf != address(0), InvalidCustomer(onBehalfOf));\n    policy = Policy.initialize(params_, premium, payout, lossProb, expiration, now_);\n    policy.id = _policyPool.newPolicy(policy, msg.sender, onBehalfOf, internalId);\n    return policy;\n  }\n\n  /**\n   * @dev Creates several policies, the premium is paid by msg.sender\n   *\n   * @param inputData Input data that will be decoded by the _underwriter to construct the parameters for the\n   *                  new policy.\n   * @param onBehalfOf The address that will be the owner of the created policy (same for all the policies)\n   */\n  function newPolicies(bytes[] calldata inputData, address onBehalfOf) external {\n    for (uint256 i = 0; i < inputData.length; ++i) {\n      newPolicy(inputData[i], onBehalfOf);\n    }\n  }\n\n  /**\n   * @dev Replaces a policy with a new one, with the same owner\n   *\n   * @param inputData Input data that will be decoded by the _underwriter to construct the oldPolicy and the\n   *                  parameters for the new policy.\n   */\n  function replacePolicy(bytes calldata inputData) external virtual returns (Policy.PolicyData memory policy) {\n    (\n      Policy.PolicyData memory oldPolicy,\n      uint256 payout,\n      uint256 premium,\n      uint256 lossProb,\n      uint40 expiration,\n      uint96 internalId,\n      Policy.Params memory params_\n    ) = _underwriter.pricePolicyReplacement(address(this), inputData);\n\n    if (premium == type(uint256).max) {\n      premium = getMinimumPremium(payout, lossProb, oldPolicy.start, expiration, params_);\n    }\n    if (expiration < uint40(block.timestamp)) revert ExpirationMustBeInTheFuture(expiration, uint40(block.timestamp));\n    policy = Policy.initialize(params_, premium, payout, lossProb, expiration, oldPolicy.start);\n\n    policy.id = _policyPool.replacePolicy(oldPolicy, policy, msg.sender, internalId);\n\n    return policy;\n  }\n\n  /**\n   * @dev Cancels a policy, giving back all (or part) of the pure premium and the non-accrued CoC\n   *\n   * @param inputData Input data that will be decoded by the _underwriter to construct the oldPolicy and the\n   *                  parameters for the new policy.\n   */\n  function cancelPolicy(bytes calldata inputData) external virtual {\n    (\n      Policy.PolicyData memory policyToCancel,\n      uint256 purePremiumRefund,\n      uint256 jrCocRefund,\n      uint256 srCocRefund\n    ) = _underwriter.pricePolicyCancellation(address(this), inputData);\n\n    _policyPool.cancelPolicy(policyToCancel, purePremiumRefund, jrCocRefund, srCocRefund);\n  }\n\n  /**\n   * @dev Resolves a policy, if payout > 0, it pays to the policy holder.\n   *\n   * Requirements:\n   * - payout <= policy.payout\n   * - block.timestamp >= policy.expiration\n   *\n   * Emits:\n   * - {PolicyPool.PolicyResolved}\n   *\n   * @param policy The policy previously created (from {NewPolicy} event)\n   * @param payout The payout to transfer to the policy holder\n   */\n  function resolvePolicy(Policy.PolicyData calldata policy, uint256 payout) external {\n    _policyPool.resolvePolicy(policy, payout);\n  }\n\n  /**\n   * @dev This empty reserved space is put in place to allow future versions to add new\n   * variables without shifting down storage in the inheritance chain.\n   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n   */\n  uint256[48] private __gap;\n}\n"},"@ensuro/core/contracts/underwriters/FullSignedUW.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\nimport {ECDSA} from \"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\";\nimport {MessageHashUtils} from \"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\";\nimport {Policy} from \"../Policy.sol\";\nimport {IUnderwriter} from \"../interfaces/IUnderwriter.sol\";\nimport {AccessManagedProxy} from \"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol\";\n\n/**\n * @title FullSignedUW\n * @notice Underwriter that just decodes what it receives and checks it was signed by an authorized account.\n *      The signer needs to have the specific selectors granted in the target RM\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract FullSignedUW is IUnderwriter {\n  using Policy for Policy.PolicyData;\n\n  bytes4 internal constant FULL_PRICE_NEW_POLICY = bytes4(keccak256(\"FULL_PRICE_NEW_POLICY\"));\n  bytes4 internal constant FULL_PRICE_REPLACE_POLICY = bytes4(keccak256(\"FULL_PRICE_REPLACE_POLICY\"));\n  bytes4 internal constant FULL_PRICE_CANCEL_POLICY = bytes4(keccak256(\"FULL_PRICE_CANCEL_POLICY\"));\n  uint256 private constant NEW_POLICY_DATA_SIZE = 5 * 32 + 7 * 32 /* Params */;\n  uint256 private constant REPLACE_POLICY_DATA_SIZE = NEW_POLICY_DATA_SIZE + 12 * 32 /* Policy */;\n  uint256 private constant CANCEL_POLICY_DATA_SIZE = 12 * 32 /* Policy */ + 3 * 32;\n  uint256 private constant SIGNATURE_SIZE = 65;\n\n  /**\n   * @notice Thrown when the recovered signer is not authorized to perform the requested pricing operation on `rm`.\n   * @dev `selector` is the permission/role identifier checked through the RM's AccessManager (one of `FULL_PRICE_*`).\n   *\n   * @param signer   The address recovered from the appended ECDSA signature.\n   * @param selector The required permission/role id for the operation.\n   */\n  error UnauthorizedSigner(address signer, bytes4 selector);\n  /**\n   * @notice Thrown when `inputData` does not have the expected length: `payload || signature`.\n   * @dev The signature is expected to be exactly 65 bytes, so `inputData.length` must be `inputSize + 65`.\n   *\n   * @param actual   The actual length of `inputData` in bytes.\n   * @param expected The expected length of `inputData` in bytes.\n   */\n  error InvalidInputSize(uint256 actual, uint256 expected);\n\n  /// @notice Thrown when the received signature doesn't match the calling rm\n  error SignatureRmMismatch();\n\n  /**\n   * @notice Validates the signature appended to `inputData` and checks the recovered signer is authorized in `rm`.\n   *\n   * @param rm           Target RiskModule (must be an {AccessManagedProxy}).\n   * @param inputData    Concatenated bytes: `payload || signature`.\n   * @param inputSize    Expected length of the payload portion (without signature).\n   * @param requiredRole Role/selector id required for this operation (one of the `FULL_PRICE_*` constants).\n   *\n   * @custom:pre `inputData` is exactly `inputSize + 65` bytes long.\n   * @custom:pre `rm` is an {AccessManagedProxy} instance whose `ACCESS_MANAGER()` supports `canCall(...)`.\n   *\n   * @custom:throws InvalidInputSize if `inputData.length != inputSize + 65`.\n   * @custom:throws (via {ECDSA-recover}) if the signature is malformed/invalid.\n   * @custom:throws UnauthorizedSigner if the recovered signer is not permitted to call `rm` with `requiredRole`.\n   */\n  function _checkSignature(address rm, bytes calldata inputData, uint256 inputSize, bytes4 requiredRole) internal view {\n    // Check length\n    uint256 inputLength = inputData.length;\n    if (inputLength != (inputSize + SIGNATURE_SIZE)) revert InvalidInputSize(inputLength, inputSize + SIGNATURE_SIZE);\n\n    // Recover signer\n    bytes32 inputHash = MessageHashUtils.toEthSignedMessageHash(inputData[0:inputSize]);\n    address signer = ECDSA.recover(inputHash, inputData[inputSize:inputLength]);\n\n    // Check it has the permission in the RM\n    (bool immediate, ) = AccessManagedProxy(payable(rm)).ACCESS_MANAGER().canCall(signer, rm, requiredRole);\n    require(immediate, UnauthorizedSigner(signer, requiredRole));\n  }\n\n  /// @inheritdoc IUnderwriter\n  function priceNewPolicy(\n    address rm,\n    bytes calldata inputData\n  )\n    external\n    view\n    override\n    returns (\n      uint256 payout,\n      uint256 premium,\n      uint256 lossProb,\n      uint40 expiration,\n      uint96 internalId,\n      Policy.Params memory params\n    )\n  {\n    _checkSignature(rm, inputData, NEW_POLICY_DATA_SIZE, FULL_PRICE_NEW_POLICY);\n    uint256 policyId;\n    (payout, premium, lossProb, expiration, policyId, params) = abi.decode(\n      inputData[0:NEW_POLICY_DATA_SIZE],\n      (uint256, uint256, uint256, uint40, uint256, Policy.Params)\n    );\n    require(Policy.extractRiskModule(policyId) == rm, SignatureRmMismatch());\n    internalId = Policy.extractInternalId(policyId);\n  }\n\n  /// @inheritdoc IUnderwriter\n  function pricePolicyReplacement(\n    address rm,\n    bytes calldata inputData\n  )\n    external\n    view\n    override\n    returns (\n      Policy.PolicyData memory oldPolicy,\n      uint256 payout,\n      uint256 premium,\n      uint256 lossProb,\n      uint40 expiration,\n      uint96 internalId,\n      Policy.Params memory params\n    )\n  {\n    _checkSignature(rm, inputData, REPLACE_POLICY_DATA_SIZE, FULL_PRICE_REPLACE_POLICY);\n    uint256 policyId;\n    (oldPolicy, payout, premium, lossProb, expiration, policyId, params) = abi.decode(\n      inputData[0:REPLACE_POLICY_DATA_SIZE],\n      (Policy.PolicyData, uint256, uint256, uint256, uint40, uint256, Policy.Params)\n    );\n    require(\n      Policy.extractRiskModule(policyId) == rm && Policy.extractRiskModule(oldPolicy.id) == rm,\n      SignatureRmMismatch()\n    );\n    internalId = Policy.extractInternalId(policyId);\n  }\n\n  /// @inheritdoc IUnderwriter\n  function pricePolicyCancellation(\n    address rm,\n    bytes calldata inputData\n  )\n    external\n    view\n    override\n    returns (\n      Policy.PolicyData memory policyToCancel,\n      uint256 purePremiumRefund,\n      uint256 jrCocRefund,\n      uint256 srCocRefund\n    )\n  {\n    _checkSignature(rm, inputData, CANCEL_POLICY_DATA_SIZE, FULL_PRICE_CANCEL_POLICY);\n    (policyToCancel, purePremiumRefund, jrCocRefund, srCocRefund) = abi.decode(\n      inputData[0:CANCEL_POLICY_DATA_SIZE],\n      (Policy.PolicyData, uint256, uint256, uint256)\n    );\n    require(Policy.extractRiskModule(policyToCancel.id) == rm, SignatureRmMismatch());\n    if (jrCocRefund == type(uint256).max) jrCocRefund = policyToCancel.jrCoc - policyToCancel.jrAccruedInterest();\n    if (srCocRefund == type(uint256).max) srCocRefund = policyToCancel.srCoc - policyToCancel.srAccruedInterest();\n  }\n}\n"},"@ensuro/core/contracts/underwriters/FullTrustedUW.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.28;\nimport {Policy} from \"../Policy.sol\";\nimport {IUnderwriter} from \"../interfaces/IUnderwriter.sol\";\n\n/**\n * @title FullTrustedUW\n * @notice Underwriter that just decodes what it receives. The access validations should be done on risk module methods.\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract FullTrustedUW is IUnderwriter {\n  using Policy for Policy.PolicyData;\n\n  /// @inheritdoc IUnderwriter\n  function priceNewPolicy(\n    address /* rm */,\n    bytes calldata inputData\n  )\n    external\n    pure\n    override\n    returns (\n      uint256 payout,\n      uint256 premium,\n      uint256 lossProb,\n      uint40 expiration,\n      uint96 internalId,\n      Policy.Params memory params\n    )\n  {\n    return abi.decode(inputData, (uint256, uint256, uint256, uint40, uint96, Policy.Params));\n  }\n\n  /// @inheritdoc IUnderwriter\n  function pricePolicyReplacement(\n    address /* rm */,\n    bytes calldata inputData\n  )\n    external\n    pure\n    override\n    returns (\n      Policy.PolicyData memory oldPolicy,\n      uint256 payout,\n      uint256 premium,\n      uint256 lossProb,\n      uint40 expiration,\n      uint96 internalId,\n      Policy.Params memory params\n    )\n  {\n    return abi.decode(inputData, (Policy.PolicyData, uint256, uint256, uint256, uint40, uint96, Policy.Params));\n  }\n\n  /// @inheritdoc IUnderwriter\n  function pricePolicyCancellation(\n    address /* rm */,\n    bytes calldata inputData\n  )\n    external\n    view\n    override\n    returns (\n      Policy.PolicyData memory policyToCancel,\n      uint256 purePremiumRefund,\n      uint256 jrCocRefund,\n      uint256 srCocRefund\n    )\n  {\n    (policyToCancel, purePremiumRefund, jrCocRefund, srCocRefund) = abi.decode(\n      inputData,\n      (Policy.PolicyData, uint256, uint256, uint256)\n    );\n    if (jrCocRefund == type(uint256).max) jrCocRefund = policyToCancel.jrCoc - policyToCancel.jrAccruedInterest();\n    if (srCocRefund == type(uint256).max) srCocRefund = policyToCancel.srCoc - policyToCancel.srAccruedInterest();\n  }\n}\n"},"@ensuro/utils/contracts/TestCurrency.sol":{"content":"//SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {ERC20} from \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\n\ncontract TestCurrency is ERC20 {\n  uint8 internal immutable _decimals;\n\n  constructor(\n    string memory name_,\n    string memory symbol_,\n    uint256 initialSupply,\n    uint8 decimals_\n  ) ERC20(name_, symbol_) {\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  function mint(address recipient, uint256 amount) public virtual {\n    return _mint(recipient, amount);\n  }\n\n  function burn(address recipient, uint256 amount) public virtual {\n    return _burn(recipient, amount);\n  }\n}\n"},"@ensuro/utils/contracts/TestERC4626.sol":{"content":"//SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {ERC20} from \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\nimport {ERC4626} from \"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\n\ninterface IMintable {\n  function mint(address recipient, uint256 amount) external;\n  function burn(address recipient, uint256 amount) external;\n}\n\ncontract TestERC4626 is ERC4626 {\n  bool internal _broken;\n\n  uint256 public overrideMaxDeposit;\n  uint256 public overrideMaxMint;\n  uint256 public overrideMaxWithdraw;\n  uint256 public overrideMaxRedeem;\n\n  uint256 public constant OVERRIDE_UNSET = type(uint256).max - 99;\n\n  enum OverrideOption {\n    deposit,\n    mint,\n    withdraw,\n    redeem\n  }\n\n  error VaultIsBroken(bytes4 selector);\n\n  modifier isBroken() {\n    require(!_broken, VaultIsBroken(bytes4(msg.data[0:4])));\n    _;\n  }\n\n  constructor(string memory name_, string memory symbol_, IERC20Metadata asset_) ERC20(name_, symbol_) ERC4626(asset_) {\n    overrideMaxRedeem = overrideMaxWithdraw = overrideMaxMint = overrideMaxDeposit = OVERRIDE_UNSET;\n  }\n\n  function _deposit(\n    address caller,\n    address receiver,\n    uint256 assets,\n    uint256 shares\n  ) internal virtual override isBroken {\n    super._deposit(caller, receiver, assets, shares);\n  }\n\n  function _withdraw(\n    address caller,\n    address receiver,\n    address owner,\n    uint256 assets,\n    uint256 shares\n  ) internal virtual override isBroken {\n    super._withdraw(caller, receiver, owner, assets, shares);\n  }\n\n  /*\n   * @dev Adds or remove assets not generated by deposits/withdraw - For testing discrete earnings/losses\n   */\n  function discreteEarning(int256 assets) external {\n    if (assets > 0) {\n      IMintable(asset()).mint(address(this), uint256(assets));\n    } else {\n      IMintable(asset()).burn(address(this), uint256(-assets));\n    }\n  }\n\n  function setBroken(bool broken_) external {\n    _broken = broken_;\n  }\n\n  function broken() external view returns (bool) {\n    return _broken;\n  }\n\n  function maxDeposit(address owner) public view override returns (uint256) {\n    return overrideMaxDeposit == OVERRIDE_UNSET ? super.maxDeposit(owner) : overrideMaxDeposit;\n  }\n\n  function maxMint(address owner) public view override returns (uint256) {\n    return overrideMaxMint == OVERRIDE_UNSET ? super.maxMint(owner) : overrideMaxMint;\n  }\n\n  function maxWithdraw(address owner) public view override returns (uint256) {\n    return overrideMaxWithdraw == OVERRIDE_UNSET ? super.maxWithdraw(owner) : overrideMaxWithdraw;\n  }\n\n  function maxRedeem(address owner) public view override returns (uint256) {\n    return overrideMaxRedeem == OVERRIDE_UNSET ? super.maxRedeem(owner) : overrideMaxRedeem;\n  }\n\n  function setOverride(OverrideOption option, uint256 newValue) external {\n    if (option == OverrideOption.deposit) overrideMaxDeposit = newValue;\n    if (option == OverrideOption.mint) overrideMaxMint = newValue;\n    if (option == OverrideOption.withdraw) overrideMaxWithdraw = newValue;\n    if (option == OverrideOption.redeem) overrideMaxRedeem = newValue;\n  }\n}\n"},"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (metatx/ERC2771Context.sol)\n\npragma solidity ^0.8.20;\n\nimport {ContextUpgradeable} from \"../utils/ContextUpgradeable.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\n\n/**\n * @dev Context variant with ERC-2771 support.\n *\n * WARNING: Avoid using this pattern in contracts that rely on 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 ERC2771ContextUpgradeable is Initializable, ContextUpgradeable {\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 (calldataLength >= contextSuffixLength && isTrustedForwarder(msg.sender)) {\n            unchecked {\n                return address(bytes20(msg.data[calldataLength - contextSuffixLength:]));\n            }\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 (calldataLength >= contextSuffixLength && isTrustedForwarder(msg.sender)) {\n            unchecked {\n                return msg.data[:calldataLength - contextSuffixLength];\n            }\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-upgradeable/proxy/utils/UUPSUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.22;\n\nimport {UUPSUpgradeable} from \"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\";\n"},"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {ContextUpgradeable} from \"../../utils/ContextUpgradeable.sol\";\nimport {IERC20Errors} from \"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.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 ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20, IERC20Metadata, IERC20Errors {\n    /// @custom:storage-location erc7201:openzeppelin.storage.ERC20\n    struct ERC20Storage {\n        mapping(address account => uint256) _balances;\n\n        mapping(address account => mapping(address spender => uint256)) _allowances;\n\n        uint256 _totalSupply;\n\n        string _name;\n        string _symbol;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.ERC20\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant ERC20StorageLocation = 0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00;\n\n    function _getERC20Storage() private pure returns (ERC20Storage storage $) {\n        assembly {\n            $.slot := ERC20StorageLocation\n        }\n    }\n\n    /**\n     * @dev Sets the values for {name} and {symbol}.\n     *\n     * Both values are immutable: they can only be set once during construction.\n     */\n    function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing {\n        __ERC20_init_unchained(name_, symbol_);\n    }\n\n    function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {\n        ERC20Storage storage $ = _getERC20Storage();\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        ERC20Storage storage $ = _getERC20Storage();\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        ERC20Storage storage $ = _getERC20Storage();\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    /// @inheritdoc IERC20\n    function totalSupply() public view virtual returns (uint256) {\n        ERC20Storage storage $ = _getERC20Storage();\n        return $._totalSupply;\n    }\n\n    /// @inheritdoc IERC20\n    function balanceOf(address account) public view virtual returns (uint256) {\n        ERC20Storage storage $ = _getERC20Storage();\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    /// @inheritdoc IERC20\n    function allowance(address owner, address spender) public view virtual returns (uint256) {\n        ERC20Storage storage $ = _getERC20Storage();\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        ERC20Storage storage $ = _getERC20Storage();\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 sets 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        ERC20Storage storage $ = _getERC20Storage();\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-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC20/extensions/ERC20Permit.sol)\n\npragma solidity ^0.8.24;\n\nimport {IERC20Permit} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\";\nimport {ERC20Upgradeable} from \"../ERC20Upgradeable.sol\";\nimport {ECDSA} from \"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\";\nimport {EIP712Upgradeable} from \"../../../utils/cryptography/EIP712Upgradeable.sol\";\nimport {NoncesUpgradeable} from \"../../../utils/NoncesUpgradeable.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\n\n/**\n * @dev Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n */\nabstract contract ERC20PermitUpgradeable is Initializable, ERC20Upgradeable, IERC20Permit, EIP712Upgradeable, NoncesUpgradeable {\n    bytes32 private constant PERMIT_TYPEHASH =\n        keccak256(\"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\");\n\n    /**\n     * @dev Permit deadline has expired.\n     */\n    error ERC2612ExpiredSignature(uint256 deadline);\n\n    /**\n     * @dev Mismatched signature.\n     */\n    error ERC2612InvalidSigner(address signer, address owner);\n\n    /**\n     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\"1\"`.\n     *\n     * It's a good idea to use the same `name` that is defined as the ERC-20 token name.\n     */\n    function __ERC20Permit_init(string memory name) internal onlyInitializing {\n        __EIP712_init_unchained(name, \"1\");\n    }\n\n    function __ERC20Permit_init_unchained(string memory) internal onlyInitializing {}\n\n    /// @inheritdoc IERC20Permit\n    function permit(\n        address owner,\n        address spender,\n        uint256 value,\n        uint256 deadline,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) public virtual {\n        if (block.timestamp > deadline) {\n            revert ERC2612ExpiredSignature(deadline);\n        }\n\n        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));\n\n        bytes32 hash = _hashTypedDataV4(structHash);\n\n        address signer = ECDSA.recover(hash, v, r, s);\n        if (signer != owner) {\n            revert ERC2612InvalidSigner(signer, owner);\n        }\n\n        _approve(owner, spender, value);\n    }\n\n    /// @inheritdoc IERC20Permit\n    function nonces(address owner) public view virtual override(IERC20Permit, NoncesUpgradeable) returns (uint256) {\n        return super.nonces(owner);\n    }\n\n    /// @inheritdoc IERC20Permit\n    // solhint-disable-next-line func-name-mixedcase\n    function DOMAIN_SEPARATOR() external view returns (bytes32) {\n        return _domainSeparatorV4();\n    }\n}\n"},"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC20/extensions/ERC4626.sol)\n\npragma solidity ^0.8.24;\n\nimport {IERC20} from \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport {ERC20Upgradeable} from \"../ERC20Upgradeable.sol\";\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {IERC4626} from \"@openzeppelin/contracts/interfaces/IERC4626.sol\";\nimport {LowLevelCall} from \"@openzeppelin/contracts/utils/LowLevelCall.sol\";\nimport {Memory} from \"@openzeppelin/contracts/utils/Memory.sol\";\nimport {Math} from \"@openzeppelin/contracts/utils/math/Math.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\n\n/**\n * @dev Implementation of the ERC-4626 \"Tokenized Vault Standard\" as defined in\n * https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].\n *\n * This extension allows the minting and burning of \"shares\" (represented using the ERC-20 inheritance) in exchange for\n * underlying \"assets\" through standardized {deposit}, {mint}, {redeem} and {burn} workflows. This contract extends\n * the ERC-20 standard. Any additional extensions included along it would affect the \"shares\" token represented by this\n * contract and not the \"assets\" token which is an independent contract.\n *\n * [CAUTION]\n * ====\n * In empty (or nearly empty) ERC-4626 vaults, deposits are at high risk of being stolen through frontrunning\n * with a \"donation\" to the vault that inflates the price of a share. This is variously known as a donation or inflation\n * attack and is essentially a problem of slippage. Vault deployers can protect against this attack by making an initial\n * deposit of a non-trivial amount of the asset, such that price manipulation becomes infeasible. Withdrawals may\n * similarly be affected by slippage. Users can protect against this attack as well as unexpected slippage in general by\n * verifying the amount received is as expected, using a wrapper that performs these checks such as\n * https://github.com/fei-protocol/ERC4626#erc4626router-and-base[ERC4626Router].\n *\n * Since v4.9, this implementation introduces configurable virtual assets and shares to help developers mitigate that risk.\n * The `_decimalsOffset()` corresponds to an offset in the decimal representation between the underlying asset's decimals\n * and the vault decimals. This offset also determines the rate of virtual shares to virtual assets in the vault, which\n * itself determines the initial exchange rate. While not fully preventing the attack, analysis shows that the default\n * offset (0) makes it non-profitable even if an attacker is able to capture value from multiple user deposits, as a result\n * of the value being captured by the virtual shares (out of the attacker's donation) matching the attacker's expected gains.\n * With a larger offset, the attack becomes orders of magnitude more expensive than it is profitable. More details about the\n * underlying math can be found xref:ROOT:erc4626.adoc#inflation-attack[here].\n *\n * The drawback of this approach is that the virtual shares do capture (a very small) part of the value being accrued\n * to the vault. Also, if the vault experiences losses, the users try to exit the vault, the virtual shares and assets\n * will cause the first user to exit to experience reduced losses in detriment to the last users that will experience\n * bigger losses. Developers willing to revert back to the pre-v4.9 behavior just need to override the\n * `_convertToShares` and `_convertToAssets` functions.\n *\n * To learn more, check out our xref:ROOT:erc4626.adoc[ERC-4626 guide].\n * ====\n *\n * [NOTE]\n * ====\n * When overriding this contract, some elements must be considered:\n *\n * * When overriding the behavior of the deposit or withdraw mechanisms, it is recommended to override the internal\n * functions. Overriding {_deposit} automatically affects both {deposit} and {mint}. Similarly, overriding {_withdraw}\n * automatically affects both {withdraw} and {redeem}. Overall it is not recommended to override the public facing\n * functions since that could lead to inconsistent behaviors between the {deposit} and {mint} or between {withdraw} and\n * {redeem}, which is documented to have lead to loss of funds.\n *\n * * Overrides to the deposit or withdraw mechanism must be reflected in the preview functions as well.\n *\n * * {maxWithdraw} depends on {maxRedeem}. Therefore, overriding {maxRedeem} only is enough. On the other hand,\n * overriding {maxWithdraw} only would have no effect on {maxRedeem}, and could create an inconsistency between the two\n * functions.\n *\n * * If {previewRedeem} is overridden to revert, {maxWithdraw} must be overridden as necessary to ensure it\n * always return successfully.\n * ====\n */\nabstract contract ERC4626Upgradeable is Initializable, ERC20Upgradeable, IERC4626 {\n    using Math for uint256;\n\n    /// @custom:storage-location erc7201:openzeppelin.storage.ERC4626\n    struct ERC4626Storage {\n        IERC20 _asset;\n        uint8 _underlyingDecimals;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.ERC4626\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant ERC4626StorageLocation = 0x0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e00;\n\n    function _getERC4626Storage() private pure returns (ERC4626Storage storage $) {\n        assembly {\n            $.slot := ERC4626StorageLocation\n        }\n    }\n\n    /**\n     * @dev Attempted to deposit more assets than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxDeposit(address receiver, uint256 assets, uint256 max);\n\n    /**\n     * @dev Attempted to mint more shares than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxMint(address receiver, uint256 shares, uint256 max);\n\n    /**\n     * @dev Attempted to withdraw more assets than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxWithdraw(address owner, uint256 assets, uint256 max);\n\n    /**\n     * @dev Attempted to redeem more shares than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxRedeem(address owner, uint256 shares, uint256 max);\n\n    /**\n     * @dev Set the underlying asset contract. This must be an ERC20-compatible contract (ERC-20 or ERC-777).\n     */\n    function __ERC4626_init(IERC20 asset_) internal onlyInitializing {\n        __ERC4626_init_unchained(asset_);\n    }\n\n    function __ERC4626_init_unchained(IERC20 asset_) internal onlyInitializing {\n        ERC4626Storage storage $ = _getERC4626Storage();\n        (bool success, uint8 assetDecimals) = _tryGetAssetDecimals(asset_);\n        $._underlyingDecimals = success ? assetDecimals : 18;\n        $._asset = asset_;\n    }\n\n    /**\n     * @dev Attempts to fetch the asset decimals. A return value of false indicates that the attempt failed in some way.\n     */\n    function _tryGetAssetDecimals(IERC20 asset_) private view returns (bool ok, uint8 assetDecimals) {\n        Memory.Pointer ptr = Memory.getFreeMemoryPointer();\n        (bool success, bytes32 returnedDecimals, ) = LowLevelCall.staticcallReturn64Bytes(\n            address(asset_),\n            abi.encodeCall(IERC20Metadata.decimals, ())\n        );\n        Memory.setFreeMemoryPointer(ptr);\n\n        return\n            (success && LowLevelCall.returnDataSize() >= 32 && uint256(returnedDecimals) <= type(uint8).max)\n                ? (true, uint8(uint256(returnedDecimals)))\n                : (false, 0);\n    }\n\n    /**\n     * @dev Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This\n     * \"original\" value is cached during construction of the vault contract. If this read operation fails (e.g., the\n     * asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals.\n     *\n     * See {IERC20Metadata-decimals}.\n     */\n    function decimals() public view virtual override(IERC20Metadata, ERC20Upgradeable) returns (uint8) {\n        ERC4626Storage storage $ = _getERC4626Storage();\n        return $._underlyingDecimals + _decimalsOffset();\n    }\n\n    /// @inheritdoc IERC4626\n    function asset() public view virtual returns (address) {\n        ERC4626Storage storage $ = _getERC4626Storage();\n        return address($._asset);\n    }\n\n    /// @inheritdoc IERC4626\n    function totalAssets() public view virtual returns (uint256) {\n        return IERC20(asset()).balanceOf(address(this));\n    }\n\n    /// @inheritdoc IERC4626\n    function convertToShares(uint256 assets) public view virtual returns (uint256) {\n        return _convertToShares(assets, Math.Rounding.Floor);\n    }\n\n    /// @inheritdoc IERC4626\n    function convertToAssets(uint256 shares) public view virtual returns (uint256) {\n        return _convertToAssets(shares, Math.Rounding.Floor);\n    }\n\n    /// @inheritdoc IERC4626\n    function maxDeposit(address) public view virtual returns (uint256) {\n        return type(uint256).max;\n    }\n\n    /// @inheritdoc IERC4626\n    function maxMint(address) public view virtual returns (uint256) {\n        return type(uint256).max;\n    }\n\n    /// @inheritdoc IERC4626\n    function maxWithdraw(address owner) public view virtual returns (uint256) {\n        return previewRedeem(maxRedeem(owner));\n    }\n\n    /// @inheritdoc IERC4626\n    function maxRedeem(address owner) public view virtual returns (uint256) {\n        return balanceOf(owner);\n    }\n\n    /// @inheritdoc IERC4626\n    function previewDeposit(uint256 assets) public view virtual returns (uint256) {\n        return _convertToShares(assets, Math.Rounding.Floor);\n    }\n\n    /// @inheritdoc IERC4626\n    function previewMint(uint256 shares) public view virtual returns (uint256) {\n        return _convertToAssets(shares, Math.Rounding.Ceil);\n    }\n\n    /// @inheritdoc IERC4626\n    function previewWithdraw(uint256 assets) public view virtual returns (uint256) {\n        return _convertToShares(assets, Math.Rounding.Ceil);\n    }\n\n    /// @inheritdoc IERC4626\n    function previewRedeem(uint256 shares) public view virtual returns (uint256) {\n        return _convertToAssets(shares, Math.Rounding.Floor);\n    }\n\n    /// @inheritdoc IERC4626\n    function deposit(uint256 assets, address receiver) public virtual returns (uint256) {\n        uint256 maxAssets = maxDeposit(receiver);\n        if (assets > maxAssets) {\n            revert ERC4626ExceededMaxDeposit(receiver, assets, maxAssets);\n        }\n\n        uint256 shares = previewDeposit(assets);\n        _deposit(_msgSender(), receiver, assets, shares);\n\n        return shares;\n    }\n\n    /// @inheritdoc IERC4626\n    function mint(uint256 shares, address receiver) public virtual returns (uint256) {\n        uint256 maxShares = maxMint(receiver);\n        if (shares > maxShares) {\n            revert ERC4626ExceededMaxMint(receiver, shares, maxShares);\n        }\n\n        uint256 assets = previewMint(shares);\n        _deposit(_msgSender(), receiver, assets, shares);\n\n        return assets;\n    }\n\n    /// @inheritdoc IERC4626\n    function withdraw(uint256 assets, address receiver, address owner) public virtual returns (uint256) {\n        uint256 maxAssets = maxWithdraw(owner);\n        if (assets > maxAssets) {\n            revert ERC4626ExceededMaxWithdraw(owner, assets, maxAssets);\n        }\n\n        uint256 shares = previewWithdraw(assets);\n        _withdraw(_msgSender(), receiver, owner, assets, shares);\n\n        return shares;\n    }\n\n    /// @inheritdoc IERC4626\n    function redeem(uint256 shares, address receiver, address owner) public virtual returns (uint256) {\n        uint256 maxShares = maxRedeem(owner);\n        if (shares > maxShares) {\n            revert ERC4626ExceededMaxRedeem(owner, shares, maxShares);\n        }\n\n        uint256 assets = previewRedeem(shares);\n        _withdraw(_msgSender(), receiver, owner, assets, shares);\n\n        return assets;\n    }\n\n    /**\n     * @dev Internal conversion function (from assets to shares) with support for rounding direction.\n     */\n    function _convertToShares(uint256 assets, Math.Rounding rounding) internal view virtual returns (uint256) {\n        return assets.mulDiv(totalSupply() + 10 ** _decimalsOffset(), totalAssets() + 1, rounding);\n    }\n\n    /**\n     * @dev Internal conversion function (from shares to assets) with support for rounding direction.\n     */\n    function _convertToAssets(uint256 shares, Math.Rounding rounding) internal view virtual returns (uint256) {\n        return shares.mulDiv(totalAssets() + 1, totalSupply() + 10 ** _decimalsOffset(), rounding);\n    }\n\n    /**\n     * @dev Deposit/mint common workflow.\n     */\n    function _deposit(address caller, address receiver, uint256 assets, uint256 shares) internal virtual {\n        // If asset() is ERC-777, `transferFrom` can trigger a reentrancy BEFORE the transfer happens through the\n        // `tokensToSend` hook. On the other hand, the `tokenReceived` hook, that is triggered after the transfer,\n        // calls the vault, which is assumed not malicious.\n        //\n        // Conclusion: we need to do the transfer before we mint so that any reentrancy would happen before the\n        // assets are transferred and before the shares are minted, which is a valid state.\n        // slither-disable-next-line reentrancy-no-eth\n        SafeERC20.safeTransferFrom(IERC20(asset()), caller, address(this), assets);\n        _mint(receiver, shares);\n\n        emit Deposit(caller, receiver, assets, shares);\n    }\n\n    /**\n     * @dev Withdraw/redeem common workflow.\n     */\n    function _withdraw(\n        address caller,\n        address receiver,\n        address owner,\n        uint256 assets,\n        uint256 shares\n    ) internal virtual {\n        if (caller != owner) {\n            _spendAllowance(owner, caller, shares);\n        }\n\n        // If asset() is ERC-777, `transfer` can trigger a reentrancy AFTER the transfer happens through the\n        // `tokensReceived` hook. On the other hand, the `tokensToSend` hook, that is triggered before the transfer,\n        // calls the vault, which is assumed not malicious.\n        //\n        // Conclusion: we need to do the transfer after the burn so that any reentrancy would happen after the\n        // shares are burned and after the assets are transferred, which is a valid state.\n        _burn(owner, shares);\n        SafeERC20.safeTransfer(IERC20(asset()), receiver, assets);\n\n        emit Withdraw(caller, receiver, owner, assets, shares);\n    }\n\n    function _decimalsOffset() internal view virtual returns (uint8) {\n        return 0;\n    }\n}\n"},"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC721/ERC721.sol)\n\npragma solidity ^0.8.24;\n\nimport {IERC721} from \"@openzeppelin/contracts/token/ERC721/IERC721.sol\";\nimport {IERC721Metadata} from \"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\";\nimport {ERC721Utils} from \"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol\";\nimport {ContextUpgradeable} from \"../../utils/ContextUpgradeable.sol\";\nimport {Strings} from \"@openzeppelin/contracts/utils/Strings.sol\";\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\nimport {ERC165Upgradeable} from \"../../utils/introspection/ERC165Upgradeable.sol\";\nimport {IERC721Errors} from \"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\n\n/**\n * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including\n * the Metadata extension, but not including the Enumerable extension, which is available separately as\n * {ERC721Enumerable}.\n */\nabstract contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721, IERC721Metadata, IERC721Errors {\n    using Strings for uint256;\n\n    /// @custom:storage-location erc7201:openzeppelin.storage.ERC721\n    struct ERC721Storage {\n        // Token name\n        string _name;\n\n        // Token symbol\n        string _symbol;\n\n        mapping(uint256 tokenId => address) _owners;\n\n        mapping(address owner => uint256) _balances;\n\n        mapping(uint256 tokenId => address) _tokenApprovals;\n\n        mapping(address owner => mapping(address operator => bool)) _operatorApprovals;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.ERC721\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant ERC721StorageLocation = 0x80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300;\n\n    function _getERC721Storage() private pure returns (ERC721Storage storage $) {\n        assembly {\n            $.slot := ERC721StorageLocation\n        }\n    }\n\n    /**\n     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.\n     */\n    function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing {\n        __ERC721_init_unchained(name_, symbol_);\n    }\n\n    function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {\n        ERC721Storage storage $ = _getERC721Storage();\n        $._name = name_;\n        $._symbol = symbol_;\n    }\n\n    /// @inheritdoc IERC165\n    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165) returns (bool) {\n        return\n            interfaceId == type(IERC721).interfaceId ||\n            interfaceId == type(IERC721Metadata).interfaceId ||\n            super.supportsInterface(interfaceId);\n    }\n\n    /// @inheritdoc IERC721\n    function balanceOf(address owner) public view virtual returns (uint256) {\n        ERC721Storage storage $ = _getERC721Storage();\n        if (owner == address(0)) {\n            revert ERC721InvalidOwner(address(0));\n        }\n        return $._balances[owner];\n    }\n\n    /// @inheritdoc IERC721\n    function ownerOf(uint256 tokenId) public view virtual returns (address) {\n        return _requireOwned(tokenId);\n    }\n\n    /// @inheritdoc IERC721Metadata\n    function name() public view virtual returns (string memory) {\n        ERC721Storage storage $ = _getERC721Storage();\n        return $._name;\n    }\n\n    /// @inheritdoc IERC721Metadata\n    function symbol() public view virtual returns (string memory) {\n        ERC721Storage storage $ = _getERC721Storage();\n        return $._symbol;\n    }\n\n    /// @inheritdoc IERC721Metadata\n    function tokenURI(uint256 tokenId) public view virtual returns (string memory) {\n        _requireOwned(tokenId);\n\n        string memory baseURI = _baseURI();\n        return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : \"\";\n    }\n\n    /**\n     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\n     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n     * by default, can be overridden in child contracts.\n     */\n    function _baseURI() internal view virtual returns (string memory) {\n        return \"\";\n    }\n\n    /// @inheritdoc IERC721\n    function approve(address to, uint256 tokenId) public virtual {\n        _approve(to, tokenId, _msgSender());\n    }\n\n    /// @inheritdoc IERC721\n    function getApproved(uint256 tokenId) public view virtual returns (address) {\n        _requireOwned(tokenId);\n\n        return _getApproved(tokenId);\n    }\n\n    /// @inheritdoc IERC721\n    function setApprovalForAll(address operator, bool approved) public virtual {\n        _setApprovalForAll(_msgSender(), operator, approved);\n    }\n\n    /// @inheritdoc IERC721\n    function isApprovedForAll(address owner, address operator) public view virtual returns (bool) {\n        ERC721Storage storage $ = _getERC721Storage();\n        return $._operatorApprovals[owner][operator];\n    }\n\n    /// @inheritdoc IERC721\n    function transferFrom(address from, address to, uint256 tokenId) public virtual {\n        if (to == address(0)) {\n            revert ERC721InvalidReceiver(address(0));\n        }\n        // Setting an \"auth\" arguments enables the `_isAuthorized` check which verifies that the token exists\n        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.\n        address previousOwner = _update(to, tokenId, _msgSender());\n        if (previousOwner != from) {\n            revert ERC721IncorrectOwner(from, tokenId, previousOwner);\n        }\n    }\n\n    /// @inheritdoc IERC721\n    function safeTransferFrom(address from, address to, uint256 tokenId) public {\n        safeTransferFrom(from, to, tokenId, \"\");\n    }\n\n    /// @inheritdoc IERC721\n    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {\n        transferFrom(from, to, tokenId);\n        ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data);\n    }\n\n    /**\n     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist\n     *\n     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the\n     * core ERC-721 logic MUST be matched with the use of {_increaseBalance} to keep balances\n     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by\n     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.\n     */\n    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {\n        ERC721Storage storage $ = _getERC721Storage();\n        return $._owners[tokenId];\n    }\n\n    /**\n     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.\n     */\n    function _getApproved(uint256 tokenId) internal view virtual returns (address) {\n        ERC721Storage storage $ = _getERC721Storage();\n        return $._tokenApprovals[tokenId];\n    }\n\n    /**\n     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in\n     * particular (ignoring whether it is owned by `owner`).\n     *\n     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this\n     * assumption.\n     */\n    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {\n        return\n            spender != address(0) &&\n            (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);\n    }\n\n    /**\n     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.\n     * Reverts if:\n     * - `spender` does not have approval from `owner` for `tokenId`.\n     * - `spender` does not have approval to manage all of `owner`'s assets.\n     *\n     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this\n     * assumption.\n     */\n    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {\n        if (!_isAuthorized(owner, spender, tokenId)) {\n            if (owner == address(0)) {\n                revert ERC721NonexistentToken(tokenId);\n            } else {\n                revert ERC721InsufficientApproval(spender, tokenId);\n            }\n        }\n    }\n\n    /**\n     * @dev Unsafe write access to the balances, used by extensions that \"mint\" tokens using an {ownerOf} override.\n     *\n     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that\n     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.\n     *\n     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the\n     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership\n     * remain consistent with one another.\n     */\n    function _increaseBalance(address account, uint128 value) internal virtual {\n        ERC721Storage storage $ = _getERC721Storage();\n        unchecked {\n            $._balances[account] += value;\n        }\n    }\n\n    /**\n     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner\n     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.\n     *\n     * The `auth` argument is optional. If the value passed is non 0, then this function will check that\n     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).\n     *\n     * Emits a {Transfer} event.\n     *\n     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.\n     */\n    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {\n        ERC721Storage storage $ = _getERC721Storage();\n        address from = _ownerOf(tokenId);\n\n        // Perform (optional) operator check\n        if (auth != address(0)) {\n            _checkAuthorized(from, auth, tokenId);\n        }\n\n        // Execute the update\n        if (from != address(0)) {\n            // Clear approval. No need to re-authorize or emit the Approval event\n            _approve(address(0), tokenId, address(0), false);\n\n            unchecked {\n                $._balances[from] -= 1;\n            }\n        }\n\n        if (to != address(0)) {\n            unchecked {\n                $._balances[to] += 1;\n            }\n        }\n\n        $._owners[tokenId] = to;\n\n        emit Transfer(from, to, tokenId);\n\n        return from;\n    }\n\n    /**\n     * @dev Mints `tokenId` and transfers it to `to`.\n     *\n     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible\n     *\n     * Requirements:\n     *\n     * - `tokenId` must not exist.\n     * - `to` cannot be the zero address.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _mint(address to, uint256 tokenId) internal {\n        if (to == address(0)) {\n            revert ERC721InvalidReceiver(address(0));\n        }\n        address previousOwner = _update(to, tokenId, address(0));\n        if (previousOwner != address(0)) {\n            revert ERC721InvalidSender(address(0));\n        }\n    }\n\n    /**\n     * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must not exist.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _safeMint(address to, uint256 tokenId) internal {\n        _safeMint(to, tokenId, \"\");\n    }\n\n    /**\n     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is\n     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.\n     */\n    function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {\n        _mint(to, tokenId);\n        ERC721Utils.checkOnERC721Received(_msgSender(), address(0), to, tokenId, data);\n    }\n\n    /**\n     * @dev Destroys `tokenId`.\n     * The approval is cleared when the token is burned.\n     * This is an internal function that does not check if the sender is authorized to operate on the token.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _burn(uint256 tokenId) internal {\n        address previousOwner = _update(address(0), tokenId, address(0));\n        if (previousOwner == address(0)) {\n            revert ERC721NonexistentToken(tokenId);\n        }\n    }\n\n    /**\n     * @dev Transfers `tokenId` from `from` to `to`.\n     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.\n     *\n     * Requirements:\n     *\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must be owned by `from`.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _transfer(address from, address to, uint256 tokenId) internal {\n        if (to == address(0)) {\n            revert ERC721InvalidReceiver(address(0));\n        }\n        address previousOwner = _update(to, tokenId, address(0));\n        if (previousOwner == address(0)) {\n            revert ERC721NonexistentToken(tokenId);\n        } else if (previousOwner != from) {\n            revert ERC721IncorrectOwner(from, tokenId, previousOwner);\n        }\n    }\n\n    /**\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients\n     * are aware of the ERC-721 standard to prevent tokens from being forever locked.\n     *\n     * `data` is additional data, it has no specified format and it is sent in call to `to`.\n     *\n     * This internal function is like {safeTransferFrom} in the sense that it invokes\n     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.\n     * implement alternative mechanisms to perform token transfer, such as signature-based.\n     *\n     * Requirements:\n     *\n     * - `tokenId` token must exist and be owned by `from`.\n     * - `to` cannot be the zero address.\n     * - `from` cannot be the zero address.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _safeTransfer(address from, address to, uint256 tokenId) internal {\n        _safeTransfer(from, to, tokenId, \"\");\n    }\n\n    /**\n     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is\n     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.\n     */\n    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {\n        _transfer(from, to, tokenId);\n        ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data);\n    }\n\n    /**\n     * @dev Approve `to` to operate on `tokenId`\n     *\n     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is\n     * either the owner of the token, or approved to operate on all tokens held by this owner.\n     *\n     * Emits an {Approval} event.\n     *\n     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.\n     */\n    function _approve(address to, uint256 tokenId, address auth) internal {\n        _approve(to, tokenId, auth, true);\n    }\n\n    /**\n     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not\n     * emitted in the context of transfers.\n     */\n    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {\n        ERC721Storage storage $ = _getERC721Storage();\n        // Avoid reading the owner unless necessary\n        if (emitEvent || auth != address(0)) {\n            address owner = _requireOwned(tokenId);\n\n            // We do not use _isAuthorized because single-token approvals should not be able to call approve\n            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {\n                revert ERC721InvalidApprover(auth);\n            }\n\n            if (emitEvent) {\n                emit Approval(owner, to, tokenId);\n            }\n        }\n\n        $._tokenApprovals[tokenId] = to;\n    }\n\n    /**\n     * @dev Approve `operator` to operate on all of `owner` tokens\n     *\n     * Requirements:\n     * - operator can't be the address zero.\n     *\n     * Emits an {ApprovalForAll} event.\n     */\n    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {\n        ERC721Storage storage $ = _getERC721Storage();\n        if (operator == address(0)) {\n            revert ERC721InvalidOperator(operator);\n        }\n        $._operatorApprovals[owner][operator] = approved;\n        emit ApprovalForAll(owner, operator, approved);\n    }\n\n    /**\n     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).\n     * Returns the owner.\n     *\n     * Overrides to ownership logic should be done to {_ownerOf}.\n     */\n    function _requireOwned(uint256 tokenId) internal view returns (address) {\n        address owner = _ownerOf(tokenId);\n        if (owner == address(0)) {\n            revert ERC721NonexistentToken(tokenId);\n        }\n        return owner;\n    }\n}\n"},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)\n\npragma solidity ^0.8.20;\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\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 ContextUpgradeable is Initializable {\n    function __Context_init() internal onlyInitializing {\n    }\n\n    function __Context_init_unchained() internal onlyInitializing {\n    }\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-upgradeable/utils/cryptography/EIP712Upgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/cryptography/EIP712.sol)\n\npragma solidity ^0.8.24;\n\nimport {MessageHashUtils} from \"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\";\nimport {IERC5267} from \"@openzeppelin/contracts/interfaces/IERC5267.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\n\n/**\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP-712] is a standard for hashing and signing of typed structured data.\n *\n * The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose\n * encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract\n * does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to\n * produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.\n *\n * This contract implements the EIP-712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\n * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\n * ({_hashTypedDataV4}).\n *\n * The implementation of the domain separator was designed to be as efficient as possible while still properly updating\n * the chain id to protect against replay attacks on an eventual fork of the chain.\n *\n * NOTE: This contract implements the version of the encoding known as \"v4\", as implemented by the JSON RPC method\n * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\n *\n * NOTE: The upgradeable version of this contract does not use an immutable cache and recomputes the domain separator\n * each time {_domainSeparatorV4} is called. That is cheaper than accessing a cached version in cold storage.\n */\nabstract contract EIP712Upgradeable is Initializable, IERC5267 {\n    bytes32 private constant TYPE_HASH =\n        keccak256(\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\");\n\n    /// @custom:storage-location erc7201:openzeppelin.storage.EIP712\n    struct EIP712Storage {\n        /// @custom:oz-renamed-from _HASHED_NAME\n        bytes32 _hashedName;\n        /// @custom:oz-renamed-from _HASHED_VERSION\n        bytes32 _hashedVersion;\n\n        string _name;\n        string _version;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.EIP712\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant EIP712StorageLocation = 0xa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d100;\n\n    function _getEIP712Storage() private pure returns (EIP712Storage storage $) {\n        assembly {\n            $.slot := EIP712StorageLocation\n        }\n    }\n\n    /**\n     * @dev Initializes the domain separator and parameter caches.\n     *\n     * The meaning of `name` and `version` is specified in\n     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP-712]:\n     *\n     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\n     * - `version`: the current major version of the signing domain.\n     *\n     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\n     * contract upgrade].\n     */\n    function __EIP712_init(string memory name, string memory version) internal onlyInitializing {\n        __EIP712_init_unchained(name, version);\n    }\n\n    function __EIP712_init_unchained(string memory name, string memory version) internal onlyInitializing {\n        EIP712Storage storage $ = _getEIP712Storage();\n        $._name = name;\n        $._version = version;\n\n        // Reset prior values in storage if upgrading\n        $._hashedName = 0;\n        $._hashedVersion = 0;\n    }\n\n    /**\n     * @dev Returns the domain separator for the current chain.\n     */\n    function _domainSeparatorV4() internal view returns (bytes32) {\n        return _buildDomainSeparator();\n    }\n\n    function _buildDomainSeparator() private view returns (bytes32) {\n        return keccak256(abi.encode(TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash(), block.chainid, address(this)));\n    }\n\n    /**\n     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\n     * function returns the hash of the fully encoded EIP712 message for this domain.\n     *\n     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\n     *\n     * ```solidity\n     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\n     *     keccak256(\"Mail(address to,string contents)\"),\n     *     mailTo,\n     *     keccak256(bytes(mailContents))\n     * )));\n     * address signer = ECDSA.recover(digest, signature);\n     * ```\n     */\n    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {\n        return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash);\n    }\n\n    /// @inheritdoc IERC5267\n    function eip712Domain()\n        public\n        view\n        virtual\n        returns (\n            bytes1 fields,\n            string memory name,\n            string memory version,\n            uint256 chainId,\n            address verifyingContract,\n            bytes32 salt,\n            uint256[] memory extensions\n        )\n    {\n        EIP712Storage storage $ = _getEIP712Storage();\n        // If the hashed name and version in storage are non-zero, the contract hasn't been properly initialized\n        // and the EIP712 domain is not reliable, as it will be missing name and version.\n        require($._hashedName == 0 && $._hashedVersion == 0, \"EIP712: Uninitialized\");\n\n        return (\n            hex\"0f\", // 01111\n            _EIP712Name(),\n            _EIP712Version(),\n            block.chainid,\n            address(this),\n            bytes32(0),\n            new uint256[](0)\n        );\n    }\n\n    /**\n     * @dev The name parameter for the EIP712 domain.\n     *\n     * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs\n     * are a concern.\n     */\n    function _EIP712Name() internal view virtual returns (string memory) {\n        EIP712Storage storage $ = _getEIP712Storage();\n        return $._name;\n    }\n\n    /**\n     * @dev The version parameter for the EIP712 domain.\n     *\n     * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs\n     * are a concern.\n     */\n    function _EIP712Version() internal view virtual returns (string memory) {\n        EIP712Storage storage $ = _getEIP712Storage();\n        return $._version;\n    }\n\n    /**\n     * @dev The hash of the name parameter for the EIP712 domain.\n     *\n     * NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Name` instead.\n     */\n    function _EIP712NameHash() internal view returns (bytes32) {\n        EIP712Storage storage $ = _getEIP712Storage();\n        string memory name = _EIP712Name();\n        if (bytes(name).length > 0) {\n            return keccak256(bytes(name));\n        } else {\n            // If the name is empty, the contract may have been upgraded without initializing the new storage.\n            // We return the name hash in storage if non-zero, otherwise we assume the name is empty by design.\n            bytes32 hashedName = $._hashedName;\n            if (hashedName != 0) {\n                return hashedName;\n            } else {\n                return keccak256(\"\");\n            }\n        }\n    }\n\n    /**\n     * @dev The hash of the version parameter for the EIP712 domain.\n     *\n     * NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Version` instead.\n     */\n    function _EIP712VersionHash() internal view returns (bytes32) {\n        EIP712Storage storage $ = _getEIP712Storage();\n        string memory version = _EIP712Version();\n        if (bytes(version).length > 0) {\n            return keccak256(bytes(version));\n        } else {\n            // If the version is empty, the contract may have been upgraded without initializing the new storage.\n            // We return the version hash in storage if non-zero, otherwise we assume the version is empty by design.\n            bytes32 hashedVersion = $._hashedVersion;\n            if (hashedVersion != 0) {\n                return hashedVersion;\n            } else {\n                return keccak256(\"\");\n            }\n        }\n    }\n}\n"},"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165 {\n    function __ERC165_init() internal onlyInitializing {\n    }\n\n    function __ERC165_init_unchained() internal onlyInitializing {\n    }\n    /// @inheritdoc IERC165\n    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {\n        return interfaceId == type(IERC165).interfaceId;\n    }\n}\n"},"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/Multicall.sol)\n\npragma solidity ^0.8.20;\n\nimport {Address} from \"@openzeppelin/contracts/utils/Address.sol\";\nimport {ContextUpgradeable} from \"./ContextUpgradeable.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.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 {Context-_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 * {Context-_msgSender} are not propagated to subcalls.\n */\nabstract contract MulticallUpgradeable is Initializable, ContextUpgradeable {\n    function __Multicall_init() internal onlyInitializing {\n    }\n\n    function __Multicall_init_unchained() internal onlyInitializing {\n    }\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) public 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-upgradeable/utils/NoncesUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)\npragma solidity ^0.8.20;\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\n\n/**\n * @dev Provides tracking nonces for addresses. Nonces will only increment.\n */\nabstract contract NoncesUpgradeable is Initializable {\n    /**\n     * @dev The nonce used for an `account` is not the expected current nonce.\n     */\n    error InvalidAccountNonce(address account, uint256 currentNonce);\n\n    /// @custom:storage-location erc7201:openzeppelin.storage.Nonces\n    struct NoncesStorage {\n        mapping(address account => uint256) _nonces;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.Nonces\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant NoncesStorageLocation = 0x5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb00;\n\n    function _getNoncesStorage() private pure returns (NoncesStorage storage $) {\n        assembly {\n            $.slot := NoncesStorageLocation\n        }\n    }\n\n    function __Nonces_init() internal onlyInitializing {\n    }\n\n    function __Nonces_init_unchained() internal onlyInitializing {\n    }\n    /**\n     * @dev Returns the next unused nonce for an address.\n     */\n    function nonces(address owner) public view virtual returns (uint256) {\n        NoncesStorage storage $ = _getNoncesStorage();\n        return $._nonces[owner];\n    }\n\n    /**\n     * @dev Consumes a nonce.\n     *\n     * Returns the current value and increments nonce.\n     */\n    function _useNonce(address owner) internal virtual returns (uint256) {\n        NoncesStorage storage $ = _getNoncesStorage();\n        // For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be\n        // decremented or reset. This guarantees that the nonce never overflows.\n        unchecked {\n            // It is important to do x++ and not ++x here.\n            return $._nonces[owner]++;\n        }\n    }\n\n    /**\n     * @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`.\n     */\n    function _useCheckedNonce(address owner, uint256 nonce) internal virtual {\n        uint256 current = _useNonce(owner);\n        if (nonce != current) {\n            revert InvalidAccountNonce(owner, current);\n        }\n    }\n}\n"},"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (utils/Pausable.sol)\n\npragma solidity ^0.8.20;\n\nimport {ContextUpgradeable} from \"../utils/ContextUpgradeable.sol\";\nimport {Initializable} from \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\n\n/**\n * @dev Contract module which allows children to implement an emergency stop\n * mechanism that can be triggered by an authorized account.\n *\n * This module is used through inheritance. It will make available the\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\n * the functions of your contract. Note that they will not be pausable by\n * simply including this module, only once the modifiers are put in place.\n */\nabstract contract PausableUpgradeable is Initializable, ContextUpgradeable {\n    /// @custom:storage-location erc7201:openzeppelin.storage.Pausable\n    struct PausableStorage {\n        bool _paused;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.Pausable\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant PausableStorageLocation = 0xcd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300;\n\n    function _getPausableStorage() private pure returns (PausableStorage storage $) {\n        assembly {\n            $.slot := PausableStorageLocation\n        }\n    }\n\n    /**\n     * @dev Emitted when the pause is triggered by `account`.\n     */\n    event Paused(address account);\n\n    /**\n     * @dev Emitted when the pause is lifted by `account`.\n     */\n    event Unpaused(address account);\n\n    /**\n     * @dev The operation failed because the contract is paused.\n     */\n    error EnforcedPause();\n\n    /**\n     * @dev The operation failed because the contract is not paused.\n     */\n    error ExpectedPause();\n\n    /**\n     * @dev Modifier to make a function callable only when the contract is not paused.\n     *\n     * Requirements:\n     *\n     * - The contract must not be paused.\n     */\n    modifier whenNotPaused() {\n        _requireNotPaused();\n        _;\n    }\n\n    /**\n     * @dev Modifier to make a function callable only when the contract is paused.\n     *\n     * Requirements:\n     *\n     * - The contract must be paused.\n     */\n    modifier whenPaused() {\n        _requirePaused();\n        _;\n    }\n\n    function __Pausable_init() internal onlyInitializing {\n    }\n\n    function __Pausable_init_unchained() internal onlyInitializing {\n    }\n    /**\n     * @dev Returns true if the contract is paused, and false otherwise.\n     */\n    function paused() public view virtual returns (bool) {\n        PausableStorage storage $ = _getPausableStorage();\n        return $._paused;\n    }\n\n    /**\n     * @dev Throws if the contract is paused.\n     */\n    function _requireNotPaused() internal view virtual {\n        if (paused()) {\n            revert EnforcedPause();\n        }\n    }\n\n    /**\n     * @dev Throws if the contract is not paused.\n     */\n    function _requirePaused() internal view virtual {\n        if (!paused()) {\n            revert ExpectedPause();\n        }\n    }\n\n    /**\n     * @dev Triggers stopped state.\n     *\n     * Requirements:\n     *\n     * - The contract must not be paused.\n     */\n    function _pause() internal virtual whenNotPaused {\n        PausableStorage storage $ = _getPausableStorage();\n        $._paused = true;\n        emit Paused(_msgSender());\n    }\n\n    /**\n     * @dev Returns to normal state.\n     *\n     * Requirements:\n     *\n     * - The contract must be paused.\n     */\n    function _unpause() internal virtual whenPaused {\n        PausableStorage storage $ = _getPausableStorage();\n        $._paused = false;\n        emit Unpaused(_msgSender());\n    }\n}\n"},"@openzeppelin/contracts/access/AccessControl.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (access/AccessControl.sol)\n\npragma solidity ^0.8.20;\n\nimport {IAccessControl} from \"./IAccessControl.sol\";\nimport {Context} from \"../utils/Context.sol\";\nimport {IERC165, 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    /// @inheritdoc IERC165\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` from `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.4.0) (access/IAccessControl.sol)\n\npragma solidity >=0.8.4;\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 to signal 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/AccessManager.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (access/manager/AccessManager.sol)\n\npragma solidity ^0.8.20;\n\nimport {IAccessManager} from \"./IAccessManager.sol\";\nimport {IAccessManaged} from \"./IAccessManaged.sol\";\nimport {Address} from \"../../utils/Address.sol\";\nimport {Context} from \"../../utils/Context.sol\";\nimport {Multicall} from \"../../utils/Multicall.sol\";\nimport {Math} from \"../../utils/math/Math.sol\";\nimport {Time} from \"../../utils/types/Time.sol\";\nimport {Hashes} from \"../../utils/cryptography/Hashes.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 structure fits 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    /**\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    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        (currentDelay, pendingDelay, effect) = access.delay.getFull();\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 && 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 Hashes.efficientKeccak256(bytes32(uint256(uint160(target))), selector);\n    }\n}\n"},"@openzeppelin/contracts/access/manager/IAccessManaged.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (access/manager/IAccessManaged.sol)\n\npragma solidity >=0.8.4;\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.5.0) (access/manager/IAccessManager.sol)\n\npragma solidity >=0.8.4;\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 `allowed` 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 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 operations 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 contracts 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-IERC1822.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC1822.sol)\n\npragma solidity >=0.4.16;\n\n/**\n * @dev ERC-1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified\n * proxy whose upgrades are fully controlled by the current implementation.\n */\ninterface IERC1822Proxiable {\n    /**\n     * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation\n     * address.\n     *\n     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n     * function revert if invoked through a proxy.\n     */\n    function proxiableUUID() external view returns (bytes32);\n}\n"},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (interfaces/draft-IERC6093.sol)\n\npragma solidity >=0.8.4;\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-721.\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/IERC1363.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC1363.sol)\n\npragma solidity >=0.6.2;\n\nimport {IERC20} from \"./IERC20.sol\";\nimport {IERC165} from \"./IERC165.sol\";\n\n/**\n * @title IERC1363\n * @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].\n *\n * Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract\n * after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.\n */\ninterface IERC1363 is IERC20, IERC165 {\n    /*\n     * Note: the ERC-165 identifier for this interface is 0xb0202a11.\n     * 0xb0202a11 ===\n     *   bytes4(keccak256('transferAndCall(address,uint256)')) ^\n     *   bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^\n     *   bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^\n     *   bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^\n     *   bytes4(keccak256('approveAndCall(address,uint256)')) ^\n     *   bytes4(keccak256('approveAndCall(address,uint256,bytes)'))\n     */\n\n    /**\n     * @dev Moves a `value` amount of tokens from the caller's account to `to`\n     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n     * @param to The address which you want to transfer to.\n     * @param value The amount of tokens to be transferred.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function transferAndCall(address to, uint256 value) external returns (bool);\n\n    /**\n     * @dev Moves a `value` amount of tokens from the caller's account to `to`\n     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n     * @param to The address which you want to transfer to.\n     * @param value The amount of tokens to be transferred.\n     * @param data Additional data with no specified format, sent in call to `to`.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);\n\n    /**\n     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism\n     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n     * @param from The address which you want to send tokens from.\n     * @param to The address which you want to transfer to.\n     * @param value The amount of tokens to be transferred.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function transferFromAndCall(address from, address to, uint256 value) external returns (bool);\n\n    /**\n     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism\n     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n     * @param from The address which you want to send tokens from.\n     * @param to The address which you want to transfer to.\n     * @param value The amount of tokens to be transferred.\n     * @param data Additional data with no specified format, sent in call to `to`.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool);\n\n    /**\n     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\n     * @param spender The address which will spend the funds.\n     * @param value The amount of tokens to be spent.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function approveAndCall(address spender, uint256 value) external returns (bool);\n\n    /**\n     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\n     * @param spender The address which will spend the funds.\n     * @param value The amount of tokens to be spent.\n     * @param data Additional data with no specified format, sent in call to `spender`.\n     * @return A boolean value indicating whether the operation succeeded unless throwing.\n     */\n    function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);\n}\n"},"@openzeppelin/contracts/interfaces/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC165.sol)\n\npragma solidity >=0.4.16;\n\nimport {IERC165} from \"../utils/introspection/IERC165.sol\";\n"},"@openzeppelin/contracts/interfaces/IERC1967.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC1967.sol)\n\npragma solidity >=0.4.11;\n\n/**\n * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\n */\ninterface IERC1967 {\n    /**\n     * @dev Emitted when the implementation is upgraded.\n     */\n    event Upgraded(address indexed implementation);\n\n    /**\n     * @dev Emitted when the admin account has changed.\n     */\n    event AdminChanged(address previousAdmin, address newAdmin);\n\n    /**\n     * @dev Emitted when the beacon is changed.\n     */\n    event BeaconUpgraded(address indexed beacon);\n}\n"},"@openzeppelin/contracts/interfaces/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC20.sol)\n\npragma solidity >=0.4.16;\n\nimport {IERC20} from \"../token/ERC20/IERC20.sol\";\n"},"@openzeppelin/contracts/interfaces/IERC20Metadata.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC20Metadata.sol)\n\npragma solidity >=0.6.2;\n\nimport {IERC20Metadata} from \"../token/ERC20/extensions/IERC20Metadata.sol\";\n"},"@openzeppelin/contracts/interfaces/IERC4626.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (interfaces/IERC4626.sol)\n\npragma solidity >=0.6.2;\n\nimport {IERC20} from \"../token/ERC20/IERC20.sol\";\nimport {IERC20Metadata} from \"../token/ERC20/extensions/IERC20Metadata.sol\";\n\n/**\n * @dev Interface of the ERC-4626 \"Tokenized Vault Standard\", as defined in\n * https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].\n */\ninterface IERC4626 is IERC20, IERC20Metadata {\n    event Deposit(address indexed sender, address indexed owner, uint256 assets, uint256 shares);\n\n    event Withdraw(\n        address indexed sender,\n        address indexed receiver,\n        address indexed owner,\n        uint256 assets,\n        uint256 shares\n    );\n\n    /**\n     * @dev Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing.\n     *\n     * - MUST be an ERC-20 token contract.\n     * - MUST NOT revert.\n     */\n    function asset() external view returns (address assetTokenAddress);\n\n    /**\n     * @dev Returns the total amount of the underlying asset that is “managed” by Vault.\n     *\n     * - SHOULD include any compounding that occurs from yield.\n     * - MUST be inclusive of any fees that are charged against assets in the Vault.\n     * - MUST NOT revert.\n     */\n    function totalAssets() external view returns (uint256 totalManagedAssets);\n\n    /**\n     * @dev Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal\n     * scenario where all the conditions are met.\n     *\n     * - MUST NOT be inclusive of any fees that are charged against assets in the Vault.\n     * - MUST NOT show any variations depending on the caller.\n     * - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange.\n     * - MUST NOT revert.\n     *\n     * NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the\n     * “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and\n     * from.\n     */\n    function convertToShares(uint256 assets) external view returns (uint256 shares);\n\n    /**\n     * @dev Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal\n     * scenario where all the conditions are met.\n     *\n     * - MUST NOT be inclusive of any fees that are charged against assets in the Vault.\n     * - MUST NOT show any variations depending on the caller.\n     * - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange.\n     * - MUST NOT revert.\n     *\n     * NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the\n     * “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and\n     * from.\n     */\n    function convertToAssets(uint256 shares) external view returns (uint256 assets);\n\n    /**\n     * @dev Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver,\n     * through a deposit call.\n     *\n     * - MUST return a limited value if receiver is subject to some deposit limit.\n     * - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited.\n     * - MUST NOT revert.\n     */\n    function maxDeposit(address receiver) external view returns (uint256 maxAssets);\n\n    /**\n     * @dev Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given\n     * current on-chain conditions.\n     *\n     * - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit\n     *   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called\n     *   in the same transaction.\n     * - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the\n     *   deposit would be accepted, regardless if the user has enough tokens approved, etc.\n     * - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees.\n     * - MUST NOT revert.\n     *\n     * NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in\n     * share price or some other type of condition, meaning the depositor will lose assets by depositing.\n     */\n    function previewDeposit(uint256 assets) external view returns (uint256 shares);\n\n    /**\n     * @dev Deposit `assets` underlying tokens and send the corresponding number of vault shares (`shares`) to `receiver`.\n     *\n     * - MUST emit the Deposit event.\n     * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n     *   deposit execution, and are accounted for during deposit.\n     * - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not\n     *   approving enough underlying tokens to the Vault contract, etc).\n     *\n     * NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token.\n     */\n    function deposit(uint256 assets, address receiver) external returns (uint256 shares);\n\n    /**\n     * @dev Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call.\n     * - MUST return a limited value if receiver is subject to some mint limit.\n     * - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted.\n     * - MUST NOT revert.\n     */\n    function maxMint(address receiver) external view returns (uint256 maxShares);\n\n    /**\n     * @dev Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given\n     * current on-chain conditions.\n     *\n     * - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call\n     *   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the\n     *   same transaction.\n     * - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint\n     *   would be accepted, regardless if the user has enough tokens approved, etc.\n     * - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees.\n     * - MUST NOT revert.\n     *\n     * NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in\n     * share price or some other type of condition, meaning the depositor will lose assets by minting.\n     */\n    function previewMint(uint256 shares) external view returns (uint256 assets);\n\n    /**\n     * @dev Mints exactly `shares` vault shares to `receiver` in exchange for `assets` underlying tokens.\n     *\n     * - MUST emit the Deposit event.\n     * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint\n     *   execution, and are accounted for during mint.\n     * - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not\n     *   approving enough underlying tokens to the Vault contract, etc).\n     *\n     * NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token.\n     */\n    function mint(uint256 shares, address receiver) external returns (uint256 assets);\n\n    /**\n     * @dev Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the\n     * Vault, through a withdraw call.\n     *\n     * - MUST return a limited value if owner is subject to some withdrawal limit or timelock.\n     * - MUST NOT revert.\n     */\n    function maxWithdraw(address owner) external view returns (uint256 maxAssets);\n\n    /**\n     * @dev Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block,\n     * given current on-chain conditions.\n     *\n     * - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw\n     *   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if\n     *   called\n     *   in the same transaction.\n     * - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though\n     *   the withdrawal would be accepted, regardless if the user has enough shares, etc.\n     * - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees.\n     * - MUST NOT revert.\n     *\n     * NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in\n     * share price or some other type of condition, meaning the depositor will lose assets by depositing.\n     */\n    function previewWithdraw(uint256 assets) external view returns (uint256 shares);\n\n    /**\n     * @dev Burns shares from owner and sends exactly assets of underlying tokens to receiver.\n     *\n     * - MUST emit the Withdraw event.\n     * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n     *   withdraw execution, and are accounted for during withdraw.\n     * - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner\n     *   not having enough shares, etc).\n     *\n     * Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed.\n     * Those methods should be performed separately.\n     */\n    function withdraw(uint256 assets, address receiver, address owner) external returns (uint256 shares);\n\n    /**\n     * @dev Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault,\n     * through a redeem call.\n     *\n     * - MUST return a limited value if owner is subject to some withdrawal limit or timelock.\n     * - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock.\n     * - MUST NOT revert.\n     */\n    function maxRedeem(address owner) external view returns (uint256 maxShares);\n\n    /**\n     * @dev Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block,\n     * given current on-chain conditions.\n     *\n     * - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call\n     *   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the\n     *   same transaction.\n     * - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the\n     *   redemption would be accepted, regardless if the user has enough shares, etc.\n     * - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees.\n     * - MUST NOT revert.\n     *\n     * NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in\n     * share price or some other type of condition, meaning the depositor will lose assets by redeeming.\n     */\n    function previewRedeem(uint256 shares) external view returns (uint256 assets);\n\n    /**\n     * @dev Burns exactly shares from owner and sends assets of underlying tokens to receiver.\n     *\n     * - MUST emit the Withdraw event.\n     * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n     *   redeem execution, and are accounted for during redeem.\n     * - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner\n     *   not having enough shares, etc).\n     *\n     * NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed.\n     * Those methods should be performed separately.\n     */\n    function redeem(uint256 shares, address receiver, address owner) external returns (uint256 assets);\n}\n"},"@openzeppelin/contracts/interfaces/IERC5267.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC5267.sol)\n\npragma solidity >=0.4.16;\n\ninterface IERC5267 {\n    /**\n     * @dev MAY be emitted to signal that the domain could have changed.\n     */\n    event EIP712DomainChanged();\n\n    /**\n     * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712\n     * signature.\n     */\n    function eip712Domain()\n        external\n        view\n        returns (\n            bytes1 fields,\n            string memory name,\n            string memory version,\n            uint256 chainId,\n            address verifyingContract,\n            bytes32 salt,\n            uint256[] memory extensions\n        );\n}\n"},"@openzeppelin/contracts/interfaces/IERC721.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC721.sol)\n\npragma solidity >=0.6.2;\n\nimport {IERC721} from \"../token/ERC721/IERC721.sol\";\n"},"@openzeppelin/contracts/interfaces/IERC721Receiver.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC721Receiver.sol)\n\npragma solidity >=0.5.0;\n\nimport {IERC721Receiver} from \"../token/ERC721/IERC721Receiver.sol\";\n"},"@openzeppelin/contracts/metatx/ERC2771Context.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.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 on 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 (calldataLength >= contextSuffixLength && isTrustedForwarder(msg.sender)) {\n            unchecked {\n                return address(bytes20(msg.data[calldataLength - contextSuffixLength:]));\n            }\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 (calldataLength >= contextSuffixLength && isTrustedForwarder(msg.sender)) {\n            unchecked {\n                return msg.data[:calldataLength - contextSuffixLength];\n            }\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/proxy/beacon/IBeacon.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (proxy/beacon/IBeacon.sol)\n\npragma solidity >=0.4.16;\n\n/**\n * @dev This is the interface that {BeaconProxy} expects of its beacon.\n */\ninterface IBeacon {\n    /**\n     * @dev Must return an address that can be used as a delegate call target.\n     *\n     * {UpgradeableBeacon} will check that this address is a contract.\n     */\n    function implementation() external view returns (address);\n}\n"},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (proxy/ERC1967/ERC1967Proxy.sol)\n\npragma solidity ^0.8.22;\n\nimport {Proxy} from \"../Proxy.sol\";\nimport {ERC1967Utils} from \"./ERC1967Utils.sol\";\n\n/**\n * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an\n * implementation address that can be changed. This address is stored in storage in the location specified by\n * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967], so that it doesn't conflict with the storage layout of the\n * implementation behind the proxy.\n */\ncontract ERC1967Proxy is Proxy {\n    /**\n     * @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation`.\n     *\n     * If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an\n     * encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\n     *\n     * Requirements:\n     *\n     * - If `data` is empty, `msg.value` must be zero.\n     */\n    constructor(address implementation, bytes memory _data) payable {\n        ERC1967Utils.upgradeToAndCall(implementation, _data);\n    }\n\n    /**\n     * @dev Returns the current implementation address.\n     *\n     * TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n     * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n     * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`\n     */\n    function _implementation() internal view virtual override returns (address) {\n        return ERC1967Utils.getImplementation();\n    }\n}\n"},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (proxy/ERC1967/ERC1967Utils.sol)\n\npragma solidity ^0.8.21;\n\nimport {IBeacon} from \"../beacon/IBeacon.sol\";\nimport {IERC1967} from \"../../interfaces/IERC1967.sol\";\nimport {Address} from \"../../utils/Address.sol\";\nimport {StorageSlot} from \"../../utils/StorageSlot.sol\";\n\n/**\n * @dev This library provides getters and event emitting update functions for\n * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.\n */\nlibrary ERC1967Utils {\n    /**\n     * @dev Storage slot with the address of the current implementation.\n     * This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1.\n     */\n    // solhint-disable-next-line private-vars-leading-underscore\n    bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n\n    /**\n     * @dev The `implementation` of the proxy is invalid.\n     */\n    error ERC1967InvalidImplementation(address implementation);\n\n    /**\n     * @dev The `admin` of the proxy is invalid.\n     */\n    error ERC1967InvalidAdmin(address admin);\n\n    /**\n     * @dev The `beacon` of the proxy is invalid.\n     */\n    error ERC1967InvalidBeacon(address beacon);\n\n    /**\n     * @dev An upgrade function sees `msg.value > 0` that may be lost.\n     */\n    error ERC1967NonPayable();\n\n    /**\n     * @dev Returns the current implementation address.\n     */\n    function getImplementation() internal view returns (address) {\n        return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value;\n    }\n\n    /**\n     * @dev Stores a new address in the ERC-1967 implementation slot.\n     */\n    function _setImplementation(address newImplementation) private {\n        if (newImplementation.code.length == 0) {\n            revert ERC1967InvalidImplementation(newImplementation);\n        }\n        StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation;\n    }\n\n    /**\n     * @dev Performs implementation upgrade with additional setup call if data is nonempty.\n     * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n     * to avoid stuck value in the contract.\n     *\n     * Emits an {IERC1967-Upgraded} event.\n     */\n    function upgradeToAndCall(address newImplementation, bytes memory data) internal {\n        _setImplementation(newImplementation);\n        emit IERC1967.Upgraded(newImplementation);\n\n        if (data.length > 0) {\n            Address.functionDelegateCall(newImplementation, data);\n        } else {\n            _checkNonPayable();\n        }\n    }\n\n    /**\n     * @dev Storage slot with the admin of the contract.\n     * This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1.\n     */\n    // solhint-disable-next-line private-vars-leading-underscore\n    bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;\n\n    /**\n     * @dev Returns the current admin.\n     *\n     * TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n     * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n     * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`\n     */\n    function getAdmin() internal view returns (address) {\n        return StorageSlot.getAddressSlot(ADMIN_SLOT).value;\n    }\n\n    /**\n     * @dev Stores a new address in the ERC-1967 admin slot.\n     */\n    function _setAdmin(address newAdmin) private {\n        if (newAdmin == address(0)) {\n            revert ERC1967InvalidAdmin(address(0));\n        }\n        StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin;\n    }\n\n    /**\n     * @dev Changes the admin of the proxy.\n     *\n     * Emits an {IERC1967-AdminChanged} event.\n     */\n    function changeAdmin(address newAdmin) internal {\n        emit IERC1967.AdminChanged(getAdmin(), newAdmin);\n        _setAdmin(newAdmin);\n    }\n\n    /**\n     * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.\n     * This is the keccak-256 hash of \"eip1967.proxy.beacon\" subtracted by 1.\n     */\n    // solhint-disable-next-line private-vars-leading-underscore\n    bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;\n\n    /**\n     * @dev Returns the current beacon.\n     */\n    function getBeacon() internal view returns (address) {\n        return StorageSlot.getAddressSlot(BEACON_SLOT).value;\n    }\n\n    /**\n     * @dev Stores a new beacon in the ERC-1967 beacon slot.\n     */\n    function _setBeacon(address newBeacon) private {\n        if (newBeacon.code.length == 0) {\n            revert ERC1967InvalidBeacon(newBeacon);\n        }\n\n        StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon;\n\n        address beaconImplementation = IBeacon(newBeacon).implementation();\n        if (beaconImplementation.code.length == 0) {\n            revert ERC1967InvalidImplementation(beaconImplementation);\n        }\n    }\n\n    /**\n     * @dev Change the beacon and trigger a setup call if data is nonempty.\n     * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n     * to avoid stuck value in the contract.\n     *\n     * Emits an {IERC1967-BeaconUpgraded} event.\n     *\n     * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since\n     * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for\n     * efficiency.\n     */\n    function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal {\n        _setBeacon(newBeacon);\n        emit IERC1967.BeaconUpgraded(newBeacon);\n\n        if (data.length > 0) {\n            Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);\n        } else {\n            _checkNonPayable();\n        }\n    }\n\n    /**\n     * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract\n     * if an upgrade doesn't perform an initialization call.\n     */\n    function _checkNonPayable() private {\n        if (msg.value > 0) {\n            revert ERC1967NonPayable();\n        }\n    }\n}\n"},"@openzeppelin/contracts/proxy/Proxy.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (proxy/Proxy.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM\n * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to\n * be specified by overriding the virtual {_implementation} function.\n *\n * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a\n * different contract through the {_delegate} function.\n *\n * The success and return data of the delegated call will be returned back to the caller of the proxy.\n */\nabstract contract Proxy {\n    /**\n     * @dev Delegates the current call to `implementation`.\n     *\n     * This function does not return to its internal call site, it will return directly to the external caller.\n     */\n    function _delegate(address implementation) internal virtual {\n        assembly {\n            // Copy msg.data. We take full control of memory in this inline assembly\n            // block because it will not return to Solidity code. We overwrite the\n            // Solidity scratch pad at memory position 0.\n            calldatacopy(0x00, 0x00, calldatasize())\n\n            // Call the implementation.\n            // out and outsize are 0 because we don't know the size yet.\n            let result := delegatecall(gas(), implementation, 0x00, calldatasize(), 0x00, 0x00)\n\n            // Copy the returned data.\n            returndatacopy(0x00, 0x00, returndatasize())\n\n            switch result\n            // delegatecall returns 0 on error.\n            case 0 {\n                revert(0x00, returndatasize())\n            }\n            default {\n                return(0x00, returndatasize())\n            }\n        }\n    }\n\n    /**\n     * @dev This is a virtual function that should be overridden so it returns the address to which the fallback\n     * function and {_fallback} should delegate.\n     */\n    function _implementation() internal view virtual returns (address);\n\n    /**\n     * @dev Delegates the current call to the address returned by `_implementation()`.\n     *\n     * This function does not return to its internal call site, it will return directly to the external caller.\n     */\n    function _fallback() internal virtual {\n        _delegate(_implementation());\n    }\n\n    /**\n     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other\n     * function in the contract matches the call data.\n     */\n    fallback() external payable virtual {\n        _fallback();\n    }\n}\n"},"@openzeppelin/contracts/proxy/utils/Initializable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n *\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n * reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n * case an upgrade adds a module that needs to be initialized.\n *\n * For example:\n *\n * [.hljs-theme-light.nopadding]\n * ```solidity\n * contract MyToken is ERC20Upgradeable {\n *     function initialize() initializer public {\n *         __ERC20_init(\"MyToken\", \"MTK\");\n *     }\n * }\n *\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n *     function initializeV2() reinitializer(2) public {\n *         __ERC20Permit_init(\"MyToken\");\n *     }\n * }\n * ```\n *\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n *\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n *\n * [CAUTION]\n * ====\n * Avoid leaving a contract uninitialized.\n *\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n *\n * [.hljs-theme-light.nopadding]\n * ```\n * /// @custom:oz-upgrades-unsafe-allow constructor\n * constructor() {\n *     _disableInitializers();\n * }\n * ```\n * ====\n */\nabstract contract Initializable {\n    /**\n     * @dev Storage of the initializable contract.\n     *\n     * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions\n     * when using with upgradeable contracts.\n     *\n     * @custom:storage-location erc7201:openzeppelin.storage.Initializable\n     */\n    struct InitializableStorage {\n        /**\n         * @dev Indicates that the contract has been initialized.\n         */\n        uint64 _initialized;\n        /**\n         * @dev Indicates that the contract is in the process of being initialized.\n         */\n        bool _initializing;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.Initializable\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00;\n\n    /**\n     * @dev The contract is already initialized.\n     */\n    error InvalidInitialization();\n\n    /**\n     * @dev The contract is not initializing.\n     */\n    error NotInitializing();\n\n    /**\n     * @dev Triggered when the contract has been initialized or reinitialized.\n     */\n    event Initialized(uint64 version);\n\n    /**\n     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n     * `onlyInitializing` functions can be used to initialize parent contracts.\n     *\n     * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any\n     * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in\n     * production.\n     *\n     * Emits an {Initialized} event.\n     */\n    modifier initializer() {\n        // solhint-disable-next-line var-name-mixedcase\n        InitializableStorage storage $ = _getInitializableStorage();\n\n        // Cache values to avoid duplicated sloads\n        bool isTopLevelCall = !$._initializing;\n        uint64 initialized = $._initialized;\n\n        // Allowed calls:\n        // - initialSetup: the contract is not in the initializing state and no previous version was\n        //                 initialized\n        // - construction: the contract is initialized at version 1 (no reinitialization) and the\n        //                 current contract is just being deployed\n        bool initialSetup = initialized == 0 && isTopLevelCall;\n        bool construction = initialized == 1 && address(this).code.length == 0;\n\n        if (!initialSetup && !construction) {\n            revert InvalidInitialization();\n        }\n        $._initialized = 1;\n        if (isTopLevelCall) {\n            $._initializing = true;\n        }\n        _;\n        if (isTopLevelCall) {\n            $._initializing = false;\n            emit Initialized(1);\n        }\n    }\n\n    /**\n     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n     * used to initialize parent contracts.\n     *\n     * A reinitializer may be used after the original initialization step. This is essential to configure modules that\n     * are added through upgrades and that require initialization.\n     *\n     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n     * cannot be nested. If one is invoked in the context of another, execution will revert.\n     *\n     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n     * a contract, executing them in the right order is up to the developer or operator.\n     *\n     * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.\n     *\n     * Emits an {Initialized} event.\n     */\n    modifier reinitializer(uint64 version) {\n        // solhint-disable-next-line var-name-mixedcase\n        InitializableStorage storage $ = _getInitializableStorage();\n\n        if ($._initializing || $._initialized >= version) {\n            revert InvalidInitialization();\n        }\n        $._initialized = version;\n        $._initializing = true;\n        _;\n        $._initializing = false;\n        emit Initialized(version);\n    }\n\n    /**\n     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n     * {initializer} and {reinitializer} modifiers, directly or indirectly.\n     */\n    modifier onlyInitializing() {\n        _checkInitializing();\n        _;\n    }\n\n    /**\n     * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.\n     */\n    function _checkInitializing() internal view virtual {\n        if (!_isInitializing()) {\n            revert NotInitializing();\n        }\n    }\n\n    /**\n     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n     * through proxies.\n     *\n     * Emits an {Initialized} event the first time it is successfully executed.\n     */\n    function _disableInitializers() internal virtual {\n        // solhint-disable-next-line var-name-mixedcase\n        InitializableStorage storage $ = _getInitializableStorage();\n\n        if ($._initializing) {\n            revert InvalidInitialization();\n        }\n        if ($._initialized != type(uint64).max) {\n            $._initialized = type(uint64).max;\n            emit Initialized(type(uint64).max);\n        }\n    }\n\n    /**\n     * @dev Returns the highest version that has been initialized. See {reinitializer}.\n     */\n    function _getInitializedVersion() internal view returns (uint64) {\n        return _getInitializableStorage()._initialized;\n    }\n\n    /**\n     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\n     */\n    function _isInitializing() internal view returns (bool) {\n        return _getInitializableStorage()._initializing;\n    }\n\n    /**\n     * @dev Pointer to storage slot. Allows integrators to override it with a custom storage location.\n     *\n     * NOTE: Consider following the ERC-7201 formula to derive storage locations.\n     */\n    function _initializableStorageSlot() internal pure virtual returns (bytes32) {\n        return INITIALIZABLE_STORAGE;\n    }\n\n    /**\n     * @dev Returns a pointer to the storage namespace.\n     */\n    // solhint-disable-next-line var-name-mixedcase\n    function _getInitializableStorage() private pure returns (InitializableStorage storage $) {\n        bytes32 slot = _initializableStorageSlot();\n        assembly {\n            $.slot := slot\n        }\n    }\n}\n"},"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (proxy/utils/UUPSUpgradeable.sol)\n\npragma solidity ^0.8.22;\n\nimport {IERC1822Proxiable} from \"../../interfaces/draft-IERC1822.sol\";\nimport {ERC1967Utils} from \"../ERC1967/ERC1967Utils.sol\";\n\n/**\n * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an\n * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.\n *\n * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is\n * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing\n * `UUPSUpgradeable` with a custom implementation of upgrades.\n *\n * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.\n *\n * @custom:stateless\n */\nabstract contract UUPSUpgradeable is IERC1822Proxiable {\n    /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n    address private immutable __self = address(this);\n\n    /**\n     * @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)`\n     * and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called,\n     * while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string.\n     * If the getter returns `\"5.0.0\"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must\n     * be the empty byte string if no function should be called, making it impossible to invoke the `receive` function\n     * during an upgrade.\n     */\n    string public constant UPGRADE_INTERFACE_VERSION = \"5.0.0\";\n\n    /**\n     * @dev The call is from an unauthorized context.\n     */\n    error UUPSUnauthorizedCallContext();\n\n    /**\n     * @dev The storage `slot` is unsupported as a UUID.\n     */\n    error UUPSUnsupportedProxiableUUID(bytes32 slot);\n\n    /**\n     * @dev Check that the execution is being performed through a delegatecall call and that the execution context is\n     * a proxy contract with an implementation (as defined in ERC-1967) pointing to self. This should only be the case\n     * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a\n     * function through ERC-1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to\n     * fail.\n     */\n    modifier onlyProxy() {\n        _checkProxy();\n        _;\n    }\n\n    /**\n     * @dev Check that the execution is not being performed through a delegate call. This allows a function to be\n     * callable on the implementing contract but not through proxies.\n     */\n    modifier notDelegated() {\n        _checkNotDelegated();\n        _;\n    }\n\n    /**\n     * @dev Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the\n     * implementation. It is used to validate the implementation's compatibility when performing an upgrade.\n     *\n     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n     * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\n     */\n    function proxiableUUID() external view notDelegated returns (bytes32) {\n        return ERC1967Utils.IMPLEMENTATION_SLOT;\n    }\n\n    /**\n     * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call\n     * encoded in `data`.\n     *\n     * Calls {_authorizeUpgrade}.\n     *\n     * Emits an {Upgraded} event.\n     *\n     * @custom:oz-upgrades-unsafe-allow-reachable delegatecall\n     */\n    function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {\n        _authorizeUpgrade(newImplementation);\n        _upgradeToAndCallUUPS(newImplementation, data);\n    }\n\n    /**\n     * @dev Reverts if the execution is not performed via delegatecall or the execution\n     * context is not of a proxy with an ERC-1967 compliant implementation pointing to self.\n     */\n    function _checkProxy() internal view virtual {\n        if (\n            address(this) == __self || // Must be called through delegatecall\n            ERC1967Utils.getImplementation() != __self // Must be called through an active proxy\n        ) {\n            revert UUPSUnauthorizedCallContext();\n        }\n    }\n\n    /**\n     * @dev Reverts if the execution is performed via delegatecall.\n     * See {notDelegated}.\n     */\n    function _checkNotDelegated() internal view virtual {\n        if (address(this) != __self) {\n            // Must not be called through delegatecall\n            revert UUPSUnauthorizedCallContext();\n        }\n    }\n\n    /**\n     * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by\n     * {upgradeToAndCall}.\n     *\n     * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.\n     *\n     * ```solidity\n     * function _authorizeUpgrade(address) internal onlyOwner {}\n     * ```\n     */\n    function _authorizeUpgrade(address newImplementation) internal virtual;\n\n    /**\n     * @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call.\n     *\n     * As a security check, {proxiableUUID} is invoked in the new implementation, and the return value\n     * is expected to be the implementation slot in ERC-1967.\n     *\n     * Emits an {IERC1967-Upgraded} event.\n     */\n    function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private {\n        try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) {\n            if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) {\n                revert UUPSUnsupportedProxiableUUID(slot);\n            }\n            ERC1967Utils.upgradeToAndCall(newImplementation, data);\n        } catch {\n            // The implementation is not UUPS\n            revert ERC1967Utils.ERC1967InvalidImplementation(newImplementation);\n        }\n    }\n}\n"},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.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     * Both values are immutable: they can only be set once during 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    /// @inheritdoc IERC20\n    function totalSupply() public view virtual returns (uint256) {\n        return _totalSupply;\n    }\n\n    /// @inheritdoc IERC20\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    /// @inheritdoc IERC20\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 sets 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/ERC4626.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC20/extensions/ERC4626.sol)\n\npragma solidity ^0.8.24;\n\nimport {IERC20, IERC20Metadata, ERC20} from \"../ERC20.sol\";\nimport {SafeERC20} from \"../utils/SafeERC20.sol\";\nimport {IERC4626} from \"../../../interfaces/IERC4626.sol\";\nimport {LowLevelCall} from \"../../../utils/LowLevelCall.sol\";\nimport {Memory} from \"../../../utils/Memory.sol\";\nimport {Math} from \"../../../utils/math/Math.sol\";\n\n/**\n * @dev Implementation of the ERC-4626 \"Tokenized Vault Standard\" as defined in\n * https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].\n *\n * This extension allows the minting and burning of \"shares\" (represented using the ERC-20 inheritance) in exchange for\n * underlying \"assets\" through standardized {deposit}, {mint}, {redeem} and {burn} workflows. This contract extends\n * the ERC-20 standard. Any additional extensions included along it would affect the \"shares\" token represented by this\n * contract and not the \"assets\" token which is an independent contract.\n *\n * [CAUTION]\n * ====\n * In empty (or nearly empty) ERC-4626 vaults, deposits are at high risk of being stolen through frontrunning\n * with a \"donation\" to the vault that inflates the price of a share. This is variously known as a donation or inflation\n * attack and is essentially a problem of slippage. Vault deployers can protect against this attack by making an initial\n * deposit of a non-trivial amount of the asset, such that price manipulation becomes infeasible. Withdrawals may\n * similarly be affected by slippage. Users can protect against this attack as well as unexpected slippage in general by\n * verifying the amount received is as expected, using a wrapper that performs these checks such as\n * https://github.com/fei-protocol/ERC4626#erc4626router-and-base[ERC4626Router].\n *\n * Since v4.9, this implementation introduces configurable virtual assets and shares to help developers mitigate that risk.\n * The `_decimalsOffset()` corresponds to an offset in the decimal representation between the underlying asset's decimals\n * and the vault decimals. This offset also determines the rate of virtual shares to virtual assets in the vault, which\n * itself determines the initial exchange rate. While not fully preventing the attack, analysis shows that the default\n * offset (0) makes it non-profitable even if an attacker is able to capture value from multiple user deposits, as a result\n * of the value being captured by the virtual shares (out of the attacker's donation) matching the attacker's expected gains.\n * With a larger offset, the attack becomes orders of magnitude more expensive than it is profitable. More details about the\n * underlying math can be found xref:ROOT:erc4626.adoc#inflation-attack[here].\n *\n * The drawback of this approach is that the virtual shares do capture (a very small) part of the value being accrued\n * to the vault. Also, if the vault experiences losses, the users try to exit the vault, the virtual shares and assets\n * will cause the first user to exit to experience reduced losses in detriment to the last users that will experience\n * bigger losses. Developers willing to revert back to the pre-v4.9 behavior just need to override the\n * `_convertToShares` and `_convertToAssets` functions.\n *\n * To learn more, check out our xref:ROOT:erc4626.adoc[ERC-4626 guide].\n * ====\n *\n * [NOTE]\n * ====\n * When overriding this contract, some elements must be considered:\n *\n * * When overriding the behavior of the deposit or withdraw mechanisms, it is recommended to override the internal\n * functions. Overriding {_deposit} automatically affects both {deposit} and {mint}. Similarly, overriding {_withdraw}\n * automatically affects both {withdraw} and {redeem}. Overall it is not recommended to override the public facing\n * functions since that could lead to inconsistent behaviors between the {deposit} and {mint} or between {withdraw} and\n * {redeem}, which is documented to have lead to loss of funds.\n *\n * * Overrides to the deposit or withdraw mechanism must be reflected in the preview functions as well.\n *\n * * {maxWithdraw} depends on {maxRedeem}. Therefore, overriding {maxRedeem} only is enough. On the other hand,\n * overriding {maxWithdraw} only would have no effect on {maxRedeem}, and could create an inconsistency between the two\n * functions.\n *\n * * If {previewRedeem} is overridden to revert, {maxWithdraw} must be overridden as necessary to ensure it\n * always return successfully.\n * ====\n */\nabstract contract ERC4626 is ERC20, IERC4626 {\n    using Math for uint256;\n\n    IERC20 private immutable _asset;\n    uint8 private immutable _underlyingDecimals;\n\n    /**\n     * @dev Attempted to deposit more assets than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxDeposit(address receiver, uint256 assets, uint256 max);\n\n    /**\n     * @dev Attempted to mint more shares than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxMint(address receiver, uint256 shares, uint256 max);\n\n    /**\n     * @dev Attempted to withdraw more assets than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxWithdraw(address owner, uint256 assets, uint256 max);\n\n    /**\n     * @dev Attempted to redeem more shares than the max amount for `receiver`.\n     */\n    error ERC4626ExceededMaxRedeem(address owner, uint256 shares, uint256 max);\n\n    /**\n     * @dev Set the underlying asset contract. This must be an ERC20-compatible contract (ERC-20 or ERC-777).\n     */\n    constructor(IERC20 asset_) {\n        (bool success, uint8 assetDecimals) = _tryGetAssetDecimals(asset_);\n        _underlyingDecimals = success ? assetDecimals : 18;\n        _asset = asset_;\n    }\n\n    /**\n     * @dev Attempts to fetch the asset decimals. A return value of false indicates that the attempt failed in some way.\n     */\n    function _tryGetAssetDecimals(IERC20 asset_) private view returns (bool ok, uint8 assetDecimals) {\n        Memory.Pointer ptr = Memory.getFreeMemoryPointer();\n        (bool success, bytes32 returnedDecimals, ) = LowLevelCall.staticcallReturn64Bytes(\n            address(asset_),\n            abi.encodeCall(IERC20Metadata.decimals, ())\n        );\n        Memory.setFreeMemoryPointer(ptr);\n\n        return\n            (success && LowLevelCall.returnDataSize() >= 32 && uint256(returnedDecimals) <= type(uint8).max)\n                ? (true, uint8(uint256(returnedDecimals)))\n                : (false, 0);\n    }\n\n    /**\n     * @dev Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This\n     * \"original\" value is cached during construction of the vault contract. If this read operation fails (e.g., the\n     * asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals.\n     *\n     * See {IERC20Metadata-decimals}.\n     */\n    function decimals() public view virtual override(IERC20Metadata, ERC20) returns (uint8) {\n        return _underlyingDecimals + _decimalsOffset();\n    }\n\n    /// @inheritdoc IERC4626\n    function asset() public view virtual returns (address) {\n        return address(_asset);\n    }\n\n    /// @inheritdoc IERC4626\n    function totalAssets() public view virtual returns (uint256) {\n        return IERC20(asset()).balanceOf(address(this));\n    }\n\n    /// @inheritdoc IERC4626\n    function convertToShares(uint256 assets) public view virtual returns (uint256) {\n        return _convertToShares(assets, Math.Rounding.Floor);\n    }\n\n    /// @inheritdoc IERC4626\n    function convertToAssets(uint256 shares) public view virtual returns (uint256) {\n        return _convertToAssets(shares, Math.Rounding.Floor);\n    }\n\n    /// @inheritdoc IERC4626\n    function maxDeposit(address) public view virtual returns (uint256) {\n        return type(uint256).max;\n    }\n\n    /// @inheritdoc IERC4626\n    function maxMint(address) public view virtual returns (uint256) {\n        return type(uint256).max;\n    }\n\n    /// @inheritdoc IERC4626\n    function maxWithdraw(address owner) public view virtual returns (uint256) {\n        return previewRedeem(maxRedeem(owner));\n    }\n\n    /// @inheritdoc IERC4626\n    function maxRedeem(address owner) public view virtual returns (uint256) {\n        return balanceOf(owner);\n    }\n\n    /// @inheritdoc IERC4626\n    function previewDeposit(uint256 assets) public view virtual returns (uint256) {\n        return _convertToShares(assets, Math.Rounding.Floor);\n    }\n\n    /// @inheritdoc IERC4626\n    function previewMint(uint256 shares) public view virtual returns (uint256) {\n        return _convertToAssets(shares, Math.Rounding.Ceil);\n    }\n\n    /// @inheritdoc IERC4626\n    function previewWithdraw(uint256 assets) public view virtual returns (uint256) {\n        return _convertToShares(assets, Math.Rounding.Ceil);\n    }\n\n    /// @inheritdoc IERC4626\n    function previewRedeem(uint256 shares) public view virtual returns (uint256) {\n        return _convertToAssets(shares, Math.Rounding.Floor);\n    }\n\n    /// @inheritdoc IERC4626\n    function deposit(uint256 assets, address receiver) public virtual returns (uint256) {\n        uint256 maxAssets = maxDeposit(receiver);\n        if (assets > maxAssets) {\n            revert ERC4626ExceededMaxDeposit(receiver, assets, maxAssets);\n        }\n\n        uint256 shares = previewDeposit(assets);\n        _deposit(_msgSender(), receiver, assets, shares);\n\n        return shares;\n    }\n\n    /// @inheritdoc IERC4626\n    function mint(uint256 shares, address receiver) public virtual returns (uint256) {\n        uint256 maxShares = maxMint(receiver);\n        if (shares > maxShares) {\n            revert ERC4626ExceededMaxMint(receiver, shares, maxShares);\n        }\n\n        uint256 assets = previewMint(shares);\n        _deposit(_msgSender(), receiver, assets, shares);\n\n        return assets;\n    }\n\n    /// @inheritdoc IERC4626\n    function withdraw(uint256 assets, address receiver, address owner) public virtual returns (uint256) {\n        uint256 maxAssets = maxWithdraw(owner);\n        if (assets > maxAssets) {\n            revert ERC4626ExceededMaxWithdraw(owner, assets, maxAssets);\n        }\n\n        uint256 shares = previewWithdraw(assets);\n        _withdraw(_msgSender(), receiver, owner, assets, shares);\n\n        return shares;\n    }\n\n    /// @inheritdoc IERC4626\n    function redeem(uint256 shares, address receiver, address owner) public virtual returns (uint256) {\n        uint256 maxShares = maxRedeem(owner);\n        if (shares > maxShares) {\n            revert ERC4626ExceededMaxRedeem(owner, shares, maxShares);\n        }\n\n        uint256 assets = previewRedeem(shares);\n        _withdraw(_msgSender(), receiver, owner, assets, shares);\n\n        return assets;\n    }\n\n    /**\n     * @dev Internal conversion function (from assets to shares) with support for rounding direction.\n     */\n    function _convertToShares(uint256 assets, Math.Rounding rounding) internal view virtual returns (uint256) {\n        return assets.mulDiv(totalSupply() + 10 ** _decimalsOffset(), totalAssets() + 1, rounding);\n    }\n\n    /**\n     * @dev Internal conversion function (from shares to assets) with support for rounding direction.\n     */\n    function _convertToAssets(uint256 shares, Math.Rounding rounding) internal view virtual returns (uint256) {\n        return shares.mulDiv(totalAssets() + 1, totalSupply() + 10 ** _decimalsOffset(), rounding);\n    }\n\n    /**\n     * @dev Deposit/mint common workflow.\n     */\n    function _deposit(address caller, address receiver, uint256 assets, uint256 shares) internal virtual {\n        // If asset() is ERC-777, `transferFrom` can trigger a reentrancy BEFORE the transfer happens through the\n        // `tokensToSend` hook. On the other hand, the `tokenReceived` hook, that is triggered after the transfer,\n        // calls the vault, which is assumed not malicious.\n        //\n        // Conclusion: we need to do the transfer before we mint so that any reentrancy would happen before the\n        // assets are transferred and before the shares are minted, which is a valid state.\n        // slither-disable-next-line reentrancy-no-eth\n        SafeERC20.safeTransferFrom(IERC20(asset()), caller, address(this), assets);\n        _mint(receiver, shares);\n\n        emit Deposit(caller, receiver, assets, shares);\n    }\n\n    /**\n     * @dev Withdraw/redeem common workflow.\n     */\n    function _withdraw(\n        address caller,\n        address receiver,\n        address owner,\n        uint256 assets,\n        uint256 shares\n    ) internal virtual {\n        if (caller != owner) {\n            _spendAllowance(owner, caller, shares);\n        }\n\n        // If asset() is ERC-777, `transfer` can trigger a reentrancy AFTER the transfer happens through the\n        // `tokensReceived` hook. On the other hand, the `tokensToSend` hook, that is triggered before the transfer,\n        // calls the vault, which is assumed not malicious.\n        //\n        // Conclusion: we need to do the transfer after the burn so that any reentrancy would happen after the\n        // shares are burned and after the assets are transferred, which is a valid state.\n        _burn(owner, shares);\n        SafeERC20.safeTransfer(IERC20(asset()), receiver, assets);\n\n        emit Withdraw(caller, receiver, owner, assets, shares);\n    }\n\n    function _decimalsOffset() internal view virtual returns (uint8) {\n        return 0;\n    }\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity >=0.6.2;\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/extensions/IERC20Permit.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC20/extensions/IERC20Permit.sol)\n\npragma solidity >=0.4.16;\n\n/**\n * @dev Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n *\n * ==== Security Considerations\n *\n * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\n * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\n * considered as an intention to spend the allowance in any specific way. The second is that because permits have\n * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\n * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\n * generally recommended is:\n *\n * ```solidity\n * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\n *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\n *     doThing(..., value);\n * }\n *\n * function doThing(..., uint256 value) public {\n *     token.safeTransferFrom(msg.sender, address(this), value);\n *     ...\n * }\n * ```\n *\n * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\n * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\n * {SafeERC20-safeTransferFrom}).\n *\n * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\n * contracts should have entry points that don't rely on permit.\n */\ninterface IERC20Permit {\n    /**\n     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n     * given ``owner``'s signed approval.\n     *\n     * IMPORTANT: The same issues {IERC20-approve} has related to transaction\n     * ordering also applies here.\n     *\n     * Emits an {Approval} event.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     * - `deadline` must be a timestamp in the future.\n     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n     * over the EIP712-formatted function arguments.\n     * - the signature must use ``owner``'s current nonce (see {nonces}).\n     *\n     * For more information on the signature format, see the\n     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n     * section].\n     *\n     * CAUTION: See Security Considerations above.\n     */\n    function permit(\n        address owner,\n        address spender,\n        uint256 value,\n        uint256 deadline,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) external;\n\n    /**\n     * @dev Returns the current nonce for `owner`. This value must be\n     * included whenever a signature is generated for {permit}.\n     *\n     * Every successful call to {permit} increases ``owner``'s nonce by one. This\n     * prevents a signature from being used multiple times.\n     */\n    function nonces(address owner) external view returns (uint256);\n\n    /**\n     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\n     */\n    // solhint-disable-next-line func-name-mixedcase\n    function DOMAIN_SEPARATOR() external view returns (bytes32);\n}\n"},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)\n\npragma solidity >=0.4.16;\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/token/ERC20/utils/SafeERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC20/utils/SafeERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"../IERC20.sol\";\nimport {IERC1363} from \"../../../interfaces/IERC1363.sol\";\n\n/**\n * @title SafeERC20\n * @dev Wrappers around ERC-20 operations that throw on failure (when the token\n * contract returns false). Tokens that return no value (and instead revert or\n * throw on failure) are also supported, non-reverting calls are assumed to be\n * successful.\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\n */\nlibrary SafeERC20 {\n    /**\n     * @dev An operation with an ERC-20 token failed.\n     */\n    error SafeERC20FailedOperation(address token);\n\n    /**\n     * @dev Indicates a failed `decreaseAllowance` request.\n     */\n    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);\n\n    /**\n     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\n     * non-reverting calls are assumed to be successful.\n     */\n    function safeTransfer(IERC20 token, address to, uint256 value) internal {\n        if (!_safeTransfer(token, to, value, true)) {\n            revert SafeERC20FailedOperation(address(token));\n        }\n    }\n\n    /**\n     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\n     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.\n     */\n    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {\n        if (!_safeTransferFrom(token, from, to, value, true)) {\n            revert SafeERC20FailedOperation(address(token));\n        }\n    }\n\n    /**\n     * @dev Variant of {safeTransfer} that returns a bool instead of reverting if the operation is not successful.\n     */\n    function trySafeTransfer(IERC20 token, address to, uint256 value) internal returns (bool) {\n        return _safeTransfer(token, to, value, false);\n    }\n\n    /**\n     * @dev Variant of {safeTransferFrom} that returns a bool instead of reverting if the operation is not successful.\n     */\n    function trySafeTransferFrom(IERC20 token, address from, address to, uint256 value) internal returns (bool) {\n        return _safeTransferFrom(token, from, to, value, false);\n    }\n\n    /**\n     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n     * non-reverting calls are assumed to be successful.\n     *\n     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the \"client\"\n     * smart contract uses ERC-7674 to set temporary allowances, then the \"client\" smart contract should avoid using\n     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract\n     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.\n     */\n    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {\n        uint256 oldAllowance = token.allowance(address(this), spender);\n        forceApprove(token, spender, oldAllowance + value);\n    }\n\n    /**\n     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no\n     * value, non-reverting calls are assumed to be successful.\n     *\n     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the \"client\"\n     * smart contract uses ERC-7674 to set temporary allowances, then the \"client\" smart contract should avoid using\n     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract\n     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.\n     */\n    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {\n        unchecked {\n            uint256 currentAllowance = token.allowance(address(this), spender);\n            if (currentAllowance < requestedDecrease) {\n                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);\n            }\n            forceApprove(token, spender, currentAllowance - requestedDecrease);\n        }\n    }\n\n    /**\n     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\n     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\n     * to be set to zero before setting it to a non-zero value, such as USDT.\n     *\n     * NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function\n     * only sets the \"standard\" allowance. Any temporary allowance will remain active, in addition to the value being\n     * set here.\n     */\n    function forceApprove(IERC20 token, address spender, uint256 value) internal {\n        if (!_safeApprove(token, spender, value, false)) {\n            if (!_safeApprove(token, spender, 0, true)) revert SafeERC20FailedOperation(address(token));\n            if (!_safeApprove(token, spender, value, true)) revert SafeERC20FailedOperation(address(token));\n        }\n    }\n\n    /**\n     * @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no\n     * code. This can be used to implement an {ERC721}-like safe transfer that relies on {ERC1363} checks when\n     * targeting contracts.\n     *\n     * Reverts if the returned value is other than `true`.\n     */\n    function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {\n        if (to.code.length == 0) {\n            safeTransfer(token, to, value);\n        } else if (!token.transferAndCall(to, value, data)) {\n            revert SafeERC20FailedOperation(address(token));\n        }\n    }\n\n    /**\n     * @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target\n     * has no code. This can be used to implement an {ERC721}-like safe transfer that relies on {ERC1363} checks when\n     * targeting contracts.\n     *\n     * Reverts if the returned value is other than `true`.\n     */\n    function transferFromAndCallRelaxed(\n        IERC1363 token,\n        address from,\n        address to,\n        uint256 value,\n        bytes memory data\n    ) internal {\n        if (to.code.length == 0) {\n            safeTransferFrom(token, from, to, value);\n        } else if (!token.transferFromAndCall(from, to, value, data)) {\n            revert SafeERC20FailedOperation(address(token));\n        }\n    }\n\n    /**\n     * @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no\n     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when\n     * targeting contracts.\n     *\n     * NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.\n     * Oppositely, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}\n     * once without retrying, and relies on the returned value to be true.\n     *\n     * Reverts if the returned value is other than `true`.\n     */\n    function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {\n        if (to.code.length == 0) {\n            forceApprove(token, to, value);\n        } else if (!token.approveAndCall(to, value, data)) {\n            revert SafeERC20FailedOperation(address(token));\n        }\n    }\n\n    /**\n     * @dev Imitates a Solidity `token.transfer(to, value)` call, relaxing the requirement on the return value: the\n     * return value is optional (but if data is returned, it must not be false).\n     *\n     * @param token The token targeted by the call.\n     * @param to The recipient of the tokens\n     * @param value The amount of token to transfer\n     * @param bubble Behavior switch if the transfer call reverts: bubble the revert reason or return a false boolean.\n     */\n    function _safeTransfer(IERC20 token, address to, uint256 value, bool bubble) private returns (bool success) {\n        bytes4 selector = IERC20.transfer.selector;\n\n        assembly (\"memory-safe\") {\n            let fmp := mload(0x40)\n            mstore(0x00, selector)\n            mstore(0x04, and(to, shr(96, not(0))))\n            mstore(0x24, value)\n            success := call(gas(), token, 0, 0x00, 0x44, 0x00, 0x20)\n            // if call success and return is true, all is good.\n            // otherwise (not success or return is not true), we need to perform further checks\n            if iszero(and(success, eq(mload(0x00), 1))) {\n                // if the call was a failure and bubble is enabled, bubble the error\n                if and(iszero(success), bubble) {\n                    returndatacopy(fmp, 0x00, returndatasize())\n                    revert(fmp, returndatasize())\n                }\n                // if the return value is not true, then the call is only successful if:\n                // - the token address has code\n                // - the returndata is empty\n                success := and(success, and(iszero(returndatasize()), gt(extcodesize(token), 0)))\n            }\n            mstore(0x40, fmp)\n        }\n    }\n\n    /**\n     * @dev Imitates a Solidity `token.transferFrom(from, to, value)` call, relaxing the requirement on the return\n     * value: the return value is optional (but if data is returned, it must not be false).\n     *\n     * @param token The token targeted by the call.\n     * @param from The sender of the tokens\n     * @param to The recipient of the tokens\n     * @param value The amount of token to transfer\n     * @param bubble Behavior switch if the transfer call reverts: bubble the revert reason or return a false boolean.\n     */\n    function _safeTransferFrom(\n        IERC20 token,\n        address from,\n        address to,\n        uint256 value,\n        bool bubble\n    ) private returns (bool success) {\n        bytes4 selector = IERC20.transferFrom.selector;\n\n        assembly (\"memory-safe\") {\n            let fmp := mload(0x40)\n            mstore(0x00, selector)\n            mstore(0x04, and(from, shr(96, not(0))))\n            mstore(0x24, and(to, shr(96, not(0))))\n            mstore(0x44, value)\n            success := call(gas(), token, 0, 0x00, 0x64, 0x00, 0x20)\n            // if call success and return is true, all is good.\n            // otherwise (not success or return is not true), we need to perform further checks\n            if iszero(and(success, eq(mload(0x00), 1))) {\n                // if the call was a failure and bubble is enabled, bubble the error\n                if and(iszero(success), bubble) {\n                    returndatacopy(fmp, 0x00, returndatasize())\n                    revert(fmp, returndatasize())\n                }\n                // if the return value is not true, then the call is only successful if:\n                // - the token address has code\n                // - the returndata is empty\n                success := and(success, and(iszero(returndatasize()), gt(extcodesize(token), 0)))\n            }\n            mstore(0x40, fmp)\n            mstore(0x60, 0)\n        }\n    }\n\n    /**\n     * @dev Imitates a Solidity `token.approve(spender, value)` call, relaxing the requirement on the return value:\n     * the return value is optional (but if data is returned, it must not be false).\n     *\n     * @param token The token targeted by the call.\n     * @param spender The spender of the tokens\n     * @param value The amount of token to transfer\n     * @param bubble Behavior switch if the transfer call reverts: bubble the revert reason or return a false boolean.\n     */\n    function _safeApprove(IERC20 token, address spender, uint256 value, bool bubble) private returns (bool success) {\n        bytes4 selector = IERC20.approve.selector;\n\n        assembly (\"memory-safe\") {\n            let fmp := mload(0x40)\n            mstore(0x00, selector)\n            mstore(0x04, and(spender, shr(96, not(0))))\n            mstore(0x24, value)\n            success := call(gas(), token, 0, 0x00, 0x44, 0x00, 0x20)\n            // if call success and return is true, all is good.\n            // otherwise (not success or return is not true), we need to perform further checks\n            if iszero(and(success, eq(mload(0x00), 1))) {\n                // if the call was a failure and bubble is enabled, bubble the error\n                if and(iszero(success), bubble) {\n                    returndatacopy(fmp, 0x00, returndatasize())\n                    revert(fmp, returndatasize())\n                }\n                // if the return value is not true, then the call is only successful if:\n                // - the token address has code\n                // - the returndata is empty\n                success := and(success, and(iszero(returndatasize()), gt(extcodesize(token), 0)))\n            }\n            mstore(0x40, fmp)\n        }\n    }\n}\n"},"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC721/extensions/IERC721Metadata.sol)\n\npragma solidity >=0.6.2;\n\nimport {IERC721} from \"../IERC721.sol\";\n\n/**\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n * @dev See https://eips.ethereum.org/EIPS/eip-721\n */\ninterface IERC721Metadata is IERC721 {\n    /**\n     * @dev Returns the token collection name.\n     */\n    function name() external view returns (string memory);\n\n    /**\n     * @dev Returns the token collection symbol.\n     */\n    function symbol() external view returns (string memory);\n\n    /**\n     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\n     */\n    function tokenURI(uint256 tokenId) external view returns (string memory);\n}\n"},"@openzeppelin/contracts/token/ERC721/IERC721.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC721/IERC721.sol)\n\npragma solidity >=0.6.2;\n\nimport {IERC165} from \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC-721 compliant contract.\n */\ninterface IERC721 is IERC165 {\n    /**\n     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\n     */\n    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\n\n    /**\n     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\n     */\n    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\n\n    /**\n     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\n     */\n    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\n\n    /**\n     * @dev Returns the number of tokens in ``owner``'s account.\n     */\n    function balanceOf(address owner) external view returns (uint256 balance);\n\n    /**\n     * @dev Returns the owner of the `tokenId` token.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     */\n    function ownerOf(uint256 tokenId) external view returns (address owner);\n\n    /**\n     * @dev Safely transfers `tokenId` token from `from` to `to`.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must exist and be owned by `from`.\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon\n     *   a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;\n\n    /**\n     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n     * are aware of the ERC-721 protocol to prevent tokens from being forever locked.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must exist and be owned by `from`.\n     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or\n     *   {setApprovalForAll}.\n     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon\n     *   a safe transfer.\n     *\n     * Emits a {Transfer} event.\n     */\n    function safeTransferFrom(address from, address to, uint256 tokenId) external;\n\n    /**\n     * @dev Transfers `tokenId` token from `from` to `to`.\n     *\n     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721\n     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must\n     * understand this adds an external call which potentially creates a reentrancy vulnerability.\n     *\n     * Requirements:\n     *\n     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `tokenId` token must be owned by `from`.\n     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transferFrom(address from, address to, uint256 tokenId) external;\n\n    /**\n     * @dev Gives permission to `to` to transfer `tokenId` token to another account.\n     * The approval is cleared when the token is transferred.\n     *\n     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n     *\n     * Requirements:\n     *\n     * - The caller must own the token or be an approved operator.\n     * - `tokenId` must exist.\n     *\n     * Emits an {Approval} event.\n     */\n    function approve(address to, uint256 tokenId) external;\n\n    /**\n     * @dev Approve or remove `operator` as an operator for the caller.\n     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n     *\n     * Requirements:\n     *\n     * - The `operator` cannot be the address zero.\n     *\n     * Emits an {ApprovalForAll} event.\n     */\n    function setApprovalForAll(address operator, bool approved) external;\n\n    /**\n     * @dev Returns the account approved for `tokenId` token.\n     *\n     * Requirements:\n     *\n     * - `tokenId` must exist.\n     */\n    function getApproved(uint256 tokenId) external view returns (address operator);\n\n    /**\n     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n     *\n     * See {setApprovalForAll}\n     */\n    function isApprovedForAll(address owner, address operator) external view returns (bool);\n}\n"},"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC721/IERC721Receiver.sol)\n\npragma solidity >=0.5.0;\n\n/**\n * @title ERC-721 token receiver interface\n * @dev Interface for any contract that wants to support safeTransfers\n * from ERC-721 asset contracts.\n */\ninterface IERC721Receiver {\n    /**\n     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n     * by `operator` from `from`, this function is called.\n     *\n     * It must return its Solidity selector to confirm the token transfer.\n     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be\n     * reverted.\n     *\n     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\n     */\n    function onERC721Received(\n        address operator,\n        address from,\n        uint256 tokenId,\n        bytes calldata data\n    ) external returns (bytes4);\n}\n"},"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC721/utils/ERC721Utils.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC721Receiver} from \"../IERC721Receiver.sol\";\nimport {IERC721Errors} from \"../../../interfaces/draft-IERC6093.sol\";\n\n/**\n * @dev Library that provides common ERC-721 utility functions.\n *\n * See https://eips.ethereum.org/EIPS/eip-721[ERC-721].\n *\n * _Available since v5.1._\n */\nlibrary ERC721Utils {\n    /**\n     * @dev Performs an acceptance check for the provided `operator` by calling {IERC721Receiver-onERC721Received}\n     * on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`).\n     *\n     * The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA).\n     * Otherwise, the recipient must implement {IERC721Receiver-onERC721Received} and return the acceptance magic value to accept\n     * the transfer.\n     */\n    function checkOnERC721Received(\n        address operator,\n        address from,\n        address to,\n        uint256 tokenId,\n        bytes memory data\n    ) internal {\n        if (to.code.length > 0) {\n            try IERC721Receiver(to).onERC721Received(operator, from, tokenId, data) returns (bytes4 retval) {\n                if (retval != IERC721Receiver.onERC721Received.selector) {\n                    // Token rejected\n                    revert IERC721Errors.ERC721InvalidReceiver(to);\n                }\n            } catch (bytes memory reason) {\n                if (reason.length == 0) {\n                    // non-IERC721Receiver implementer\n                    revert IERC721Errors.ERC721InvalidReceiver(to);\n                } else {\n                    assembly (\"memory-safe\") {\n                        revert(add(reason, 0x20), mload(reason))\n                    }\n                }\n            }\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Address.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/Address.sol)\n\npragma solidity ^0.8.20;\n\nimport {Errors} from \"./Errors.sol\";\nimport {LowLevelCall} from \"./LowLevelCall.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        if (LowLevelCall.callNoReturn(recipient, amount, \"\")) {\n            // call successful, nothing to do\n            return;\n        } else if (LowLevelCall.returnDataSize() > 0) {\n            LowLevelCall.bubbleRevert();\n        } else {\n            revert Errors.FailedCall();\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 = LowLevelCall.callNoReturn(target, value, data);\n        if (success && (LowLevelCall.returnDataSize() > 0 || target.code.length > 0)) {\n            return LowLevelCall.returnData();\n        } else if (success) {\n            revert AddressEmptyCode(target);\n        } else if (LowLevelCall.returnDataSize() > 0) {\n            LowLevelCall.bubbleRevert();\n        } else {\n            revert Errors.FailedCall();\n        }\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 = LowLevelCall.staticcallNoReturn(target, data);\n        if (success && (LowLevelCall.returnDataSize() > 0 || target.code.length > 0)) {\n            return LowLevelCall.returnData();\n        } else if (success) {\n            revert AddressEmptyCode(target);\n        } else if (LowLevelCall.returnDataSize() > 0) {\n            LowLevelCall.bubbleRevert();\n        } else {\n            revert Errors.FailedCall();\n        }\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 = LowLevelCall.delegatecallNoReturn(target, data);\n        if (success && (LowLevelCall.returnDataSize() > 0 || target.code.length > 0)) {\n            return LowLevelCall.returnData();\n        } else if (success) {\n            revert AddressEmptyCode(target);\n        } else if (LowLevelCall.returnDataSize() > 0) {\n            LowLevelCall.bubbleRevert();\n        } else {\n            revert Errors.FailedCall();\n        }\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     * NOTE: This function is DEPRECATED and may be removed in the next major release.\n     */\n    function verifyCallResultFromTarget(\n        address target,\n        bool success,\n        bytes memory returndata\n    ) internal view returns (bytes memory) {\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 (success && (returndata.length > 0 || target.code.length > 0)) {\n            return returndata;\n        } else if (success) {\n            revert AddressEmptyCode(target);\n        } else if (returndata.length > 0) {\n            LowLevelCall.bubbleRevert(returndata);\n        } else {\n            revert Errors.FailedCall();\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            return returndata;\n        } else if (returndata.length > 0) {\n            LowLevelCall.bubbleRevert(returndata);\n        } else {\n            revert Errors.FailedCall();\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Bytes.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/Bytes.sol)\n\npragma solidity ^0.8.24;\n\nimport {Math} from \"./math/Math.sol\";\n\n/**\n * @dev Bytes operations.\n */\nlibrary Bytes {\n    /**\n     * @dev Forward search for `s` in `buffer`\n     * * If `s` is present in the buffer, returns the index of the first instance\n     * * If `s` is not present in the buffer, returns type(uint256).max\n     *\n     * NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf[Javascript's `Array.indexOf`]\n     */\n    function indexOf(bytes memory buffer, bytes1 s) internal pure returns (uint256) {\n        return indexOf(buffer, s, 0);\n    }\n\n    /**\n     * @dev Forward search for `s` in `buffer` starting at position `pos`\n     * * If `s` is present in the buffer (at or after `pos`), returns the index of the next instance\n     * * If `s` is not present in the buffer (at or after `pos`), returns type(uint256).max\n     *\n     * NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf[Javascript's `Array.indexOf`]\n     */\n    function indexOf(bytes memory buffer, bytes1 s, uint256 pos) internal pure returns (uint256) {\n        uint256 length = buffer.length;\n        for (uint256 i = pos; i < length; ++i) {\n            if (bytes1(_unsafeReadBytesOffset(buffer, i)) == s) {\n                return i;\n            }\n        }\n        return type(uint256).max;\n    }\n\n    /**\n     * @dev Backward search for `s` in `buffer`\n     * * If `s` is present in the buffer, returns the index of the last instance\n     * * If `s` is not present in the buffer, returns type(uint256).max\n     *\n     * NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf[Javascript's `Array.lastIndexOf`]\n     */\n    function lastIndexOf(bytes memory buffer, bytes1 s) internal pure returns (uint256) {\n        return lastIndexOf(buffer, s, type(uint256).max);\n    }\n\n    /**\n     * @dev Backward search for `s` in `buffer` starting at position `pos`\n     * * If `s` is present in the buffer (at or before `pos`), returns the index of the previous instance\n     * * If `s` is not present in the buffer (at or before `pos`), returns type(uint256).max\n     *\n     * NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf[Javascript's `Array.lastIndexOf`]\n     */\n    function lastIndexOf(bytes memory buffer, bytes1 s, uint256 pos) internal pure returns (uint256) {\n        unchecked {\n            uint256 length = buffer.length;\n            for (uint256 i = Math.min(Math.saturatingAdd(pos, 1), length); i > 0; --i) {\n                if (bytes1(_unsafeReadBytesOffset(buffer, i - 1)) == s) {\n                    return i - 1;\n                }\n            }\n            return type(uint256).max;\n        }\n    }\n\n    /**\n     * @dev Copies the content of `buffer`, from `start` (included) to the end of `buffer` into a new bytes object in\n     * memory.\n     *\n     * NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice[Javascript's `Array.slice`]\n     */\n    function slice(bytes memory buffer, uint256 start) internal pure returns (bytes memory) {\n        return slice(buffer, start, buffer.length);\n    }\n\n    /**\n     * @dev Copies the content of `buffer`, from `start` (included) to `end` (excluded) into a new bytes object in\n     * memory. The `end` argument is truncated to the length of the `buffer`.\n     *\n     * NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice[Javascript's `Array.slice`]\n     */\n    function slice(bytes memory buffer, uint256 start, uint256 end) internal pure returns (bytes memory) {\n        // sanitize\n        end = Math.min(end, buffer.length);\n        start = Math.min(start, end);\n\n        // allocate and copy\n        bytes memory result = new bytes(end - start);\n        assembly (\"memory-safe\") {\n            mcopy(add(result, 0x20), add(add(buffer, 0x20), start), sub(end, start))\n        }\n\n        return result;\n    }\n\n    /**\n     * @dev Moves the content of `buffer`, from `start` (included) to the end of `buffer` to the start of that buffer.\n     *\n     * NOTE: This function modifies the provided buffer in place. If you need to preserve the original buffer, use {slice} instead\n     * NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice[Javascript's `Array.splice`]\n     */\n    function splice(bytes memory buffer, uint256 start) internal pure returns (bytes memory) {\n        return splice(buffer, start, buffer.length);\n    }\n\n    /**\n     * @dev Moves the content of `buffer`, from `start` (included) to end (excluded) to the start of that buffer. The\n     * `end` argument is truncated to the length of the `buffer`.\n     *\n     * NOTE: This function modifies the provided buffer in place. If you need to preserve the original buffer, use {slice} instead\n     * NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice[Javascript's `Array.splice`]\n     */\n    function splice(bytes memory buffer, uint256 start, uint256 end) internal pure returns (bytes memory) {\n        // sanitize\n        end = Math.min(end, buffer.length);\n        start = Math.min(start, end);\n\n        // allocate and copy\n        assembly (\"memory-safe\") {\n            mcopy(add(buffer, 0x20), add(add(buffer, 0x20), start), sub(end, start))\n            mstore(buffer, sub(end, start))\n        }\n\n        return buffer;\n    }\n\n    /**\n     * @dev Concatenate an array of bytes into a single bytes object.\n     *\n     * For fixed bytes types, we recommend using the solidity built-in `bytes.concat` or (equivalent)\n     * `abi.encodePacked`.\n     *\n     * NOTE: this could be done in assembly with a single loop that expands starting at the FMP, but that would be\n     * significantly less readable. It might be worth benchmarking the savings of the full-assembly approach.\n     */\n    function concat(bytes[] memory buffers) internal pure returns (bytes memory) {\n        uint256 length = 0;\n        for (uint256 i = 0; i < buffers.length; ++i) {\n            length += buffers[i].length;\n        }\n\n        bytes memory result = new bytes(length);\n\n        uint256 offset = 0x20;\n        for (uint256 i = 0; i < buffers.length; ++i) {\n            bytes memory input = buffers[i];\n            assembly (\"memory-safe\") {\n                mcopy(add(result, offset), add(input, 0x20), mload(input))\n            }\n            unchecked {\n                offset += input.length;\n            }\n        }\n\n        return result;\n    }\n\n    /**\n     * @dev Returns true if the two byte buffers are equal.\n     */\n    function equal(bytes memory a, bytes memory b) internal pure returns (bool) {\n        return a.length == b.length && keccak256(a) == keccak256(b);\n    }\n\n    /**\n     * @dev Reverses the byte order of a bytes32 value, converting between little-endian and big-endian.\n     * Inspired by https://graphics.stanford.edu/~seander/bithacks.html#ReverseParallel[Reverse Parallel]\n     */\n    function reverseBytes32(bytes32 value) internal pure returns (bytes32) {\n        value = // swap bytes\n            ((value >> 8) & 0x00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF) |\n            ((value & 0x00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF) << 8);\n        value = // swap 2-byte long pairs\n            ((value >> 16) & 0x0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF) |\n            ((value & 0x0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF) << 16);\n        value = // swap 4-byte long pairs\n            ((value >> 32) & 0x00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF) |\n            ((value & 0x00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF) << 32);\n        value = // swap 8-byte long pairs\n            ((value >> 64) & 0x0000000000000000FFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF) |\n            ((value & 0x0000000000000000FFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF) << 64);\n        return (value >> 128) | (value << 128); // swap 16-byte long pairs\n    }\n\n    /// @dev Same as {reverseBytes32} but optimized for 128-bit values.\n    function reverseBytes16(bytes16 value) internal pure returns (bytes16) {\n        value = // swap bytes\n            ((value & 0xFF00FF00FF00FF00FF00FF00FF00FF00) >> 8) |\n            ((value & 0x00FF00FF00FF00FF00FF00FF00FF00FF) << 8);\n        value = // swap 2-byte long pairs\n            ((value & 0xFFFF0000FFFF0000FFFF0000FFFF0000) >> 16) |\n            ((value & 0x0000FFFF0000FFFF0000FFFF0000FFFF) << 16);\n        value = // swap 4-byte long pairs\n            ((value & 0xFFFFFFFF00000000FFFFFFFF00000000) >> 32) |\n            ((value & 0x00000000FFFFFFFF00000000FFFFFFFF) << 32);\n        return (value >> 64) | (value << 64); // swap 8-byte long pairs\n    }\n\n    /// @dev Same as {reverseBytes32} but optimized for 64-bit values.\n    function reverseBytes8(bytes8 value) internal pure returns (bytes8) {\n        value = ((value & 0xFF00FF00FF00FF00) >> 8) | ((value & 0x00FF00FF00FF00FF) << 8); // swap bytes\n        value = ((value & 0xFFFF0000FFFF0000) >> 16) | ((value & 0x0000FFFF0000FFFF) << 16); // swap 2-byte long pairs\n        return (value >> 32) | (value << 32); // swap 4-byte long pairs\n    }\n\n    /// @dev Same as {reverseBytes32} but optimized for 32-bit values.\n    function reverseBytes4(bytes4 value) internal pure returns (bytes4) {\n        value = ((value & 0xFF00FF00) >> 8) | ((value & 0x00FF00FF) << 8); // swap bytes\n        return (value >> 16) | (value << 16); // swap 2-byte long pairs\n    }\n\n    /// @dev Same as {reverseBytes32} but optimized for 16-bit values.\n    function reverseBytes2(bytes2 value) internal pure returns (bytes2) {\n        return (value >> 8) | (value << 8);\n    }\n\n    /**\n     * @dev Counts the number of leading zero bits a bytes array. Returns `8 * buffer.length`\n     * if the buffer is all zeros.\n     */\n    function clz(bytes memory buffer) internal pure returns (uint256) {\n        for (uint256 i = 0; i < buffer.length; i += 0x20) {\n            bytes32 chunk = _unsafeReadBytesOffset(buffer, i);\n            if (chunk != bytes32(0)) {\n                return Math.min(8 * i + Math.clz(uint256(chunk)), 8 * buffer.length);\n            }\n        }\n        return 8 * buffer.length;\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(add(buffer, 0x20), offset))\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.5.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     * NOTE: This function only supports 65-byte signatures. ERC-2098 short signatures are rejected. This restriction\n     * is DEPRECATED and will be removed in v6.0. Developers SHOULD NOT use signatures as unique identifiers; use hash\n     * invalidation or nonces for replay protection.\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     *\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 Variant of {tryRecover} that takes a signature in calldata\n     */\n    function tryRecoverCalldata(\n        bytes32 hash,\n        bytes calldata 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, calldata slices would work here, but are\n            // significantly more expensive (length check) than using calldataload in assembly.\n            assembly (\"memory-safe\") {\n                r := calldataload(signature.offset)\n                s := calldataload(add(signature.offset, 0x20))\n                v := byte(0, calldataload(add(signature.offset, 0x40)))\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     * NOTE: This function only supports 65-byte signatures. ERC-2098 short signatures are rejected. This restriction\n     * is DEPRECATED and will be removed in v6.0. Developers SHOULD NOT use signatures as unique identifiers; use hash\n     * invalidation or nonces for replay protection.\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 Variant of {recover} that takes a signature in calldata\n     */\n    function recoverCalldata(bytes32 hash, bytes calldata signature) internal pure returns (address) {\n        (address recovered, RecoverError error, bytes32 errorArg) = tryRecoverCalldata(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 Parse a signature into its `v`, `r` and `s` components. Supports 65-byte and 64-byte (ERC-2098)\n     * formats. Returns (0,0,0) for invalid signatures.\n     *\n     * For 64-byte signatures, `v` is automatically normalized to 27 or 28.\n     * For 65-byte signatures, `v` is returned as-is and MUST already be 27 or 28 for use with ecrecover.\n     *\n     * Consider validating the result before use, or use {tryRecover}/{recover} which perform full validation.\n     */\n    function parse(bytes memory signature) internal pure returns (uint8 v, bytes32 r, bytes32 s) {\n        assembly (\"memory-safe\") {\n            // Check the signature length\n            switch mload(signature)\n            // - case 65: r,s,v signature (standard)\n            case 65 {\n                r := mload(add(signature, 0x20))\n                s := mload(add(signature, 0x40))\n                v := byte(0, mload(add(signature, 0x60)))\n            }\n            // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098)\n            case 64 {\n                let vs := mload(add(signature, 0x40))\n                r := mload(add(signature, 0x20))\n                s := and(vs, shr(1, not(0)))\n                v := add(shr(255, vs), 27)\n            }\n            default {\n                r := 0\n                s := 0\n                v := 0\n            }\n        }\n    }\n\n    /**\n     * @dev Variant of {parse} that takes a signature in calldata\n     */\n    function parseCalldata(bytes calldata signature) internal pure returns (uint8 v, bytes32 r, bytes32 s) {\n        assembly (\"memory-safe\") {\n            // Check the signature length\n            switch signature.length\n            // - case 65: r,s,v signature (standard)\n            case 65 {\n                r := calldataload(signature.offset)\n                s := calldataload(add(signature.offset, 0x20))\n                v := byte(0, calldataload(add(signature.offset, 0x40)))\n            }\n            // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098)\n            case 64 {\n                let vs := calldataload(add(signature.offset, 0x20))\n                r := calldataload(signature.offset)\n                s := and(vs, shr(1, not(0)))\n                v := add(shr(255, vs), 27)\n            }\n            default {\n                r := 0\n                s := 0\n                v := 0\n            }\n        }\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/Hashes.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (utils/cryptography/Hashes.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Library of standard hash functions.\n *\n * _Available since v5.1._\n */\nlibrary Hashes {\n    /**\n     * @dev Commutative Keccak256 hash of a sorted pair of bytes32. Frequently used when working with merkle proofs.\n     *\n     * NOTE: Equivalent to the `standardNodeHash` in our https://github.com/OpenZeppelin/merkle-tree[JavaScript library].\n     */\n    function commutativeKeccak256(bytes32 a, bytes32 b) internal pure returns (bytes32) {\n        return a < b ? efficientKeccak256(a, b) : efficientKeccak256(b, a);\n    }\n\n    /**\n     * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory.\n     */\n    function efficientKeccak256(bytes32 a, bytes32 b) internal pure returns (bytes32 value) {\n        assembly (\"memory-safe\") {\n            mstore(0x00, a)\n            mstore(0x20, b)\n            value := keccak256(0x00, 0x40)\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/cryptography/MessageHashUtils.sol)\n\npragma solidity ^0.8.24;\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://ethereum.org/en/developers/docs/apis/json-rpc/#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://ethereum.org/en/developers/docs/apis/json-rpc/#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 Variant of {toDataWithIntendedValidatorHash-address-bytes} optimized for cases where `data` is a bytes32.\n     */\n    function toDataWithIntendedValidatorHash(\n        address validator,\n        bytes32 messageHash\n    ) internal pure returns (bytes32 digest) {\n        assembly (\"memory-safe\") {\n            mstore(0x00, hex\"19_00\")\n            mstore(0x02, shl(96, validator))\n            mstore(0x16, messageHash)\n            digest := keccak256(0x00, 0x36)\n        }\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.4.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    /// @inheritdoc IERC165\n    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {\n        return interfaceId == type(IERC165).interfaceId;\n    }\n}\n"},"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/introspection/ERC165Checker.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"./IERC165.sol\";\n\n/**\n * @dev Library used to query support of an interface declared via {IERC165}.\n *\n * Note that these functions return the actual result of the query: they do not\n * `revert` if an interface is not supported. It is up to the caller to decide\n * what to do in these cases.\n */\nlibrary ERC165Checker {\n    // As per the ERC-165 spec, no interface should ever match 0xffffffff\n    bytes4 private constant INTERFACE_ID_INVALID = 0xffffffff;\n\n    /**\n     * @dev Returns true if `account` supports the {IERC165} interface.\n     */\n    function supportsERC165(address account) internal view returns (bool) {\n        // Any contract that implements ERC-165 must explicitly indicate support of\n        // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid\n        if (supportsERC165InterfaceUnchecked(account, type(IERC165).interfaceId)) {\n            (bool success, bool supported) = _trySupportsInterface(account, INTERFACE_ID_INVALID);\n            return success && !supported;\n        } else {\n            return false;\n        }\n    }\n\n    /**\n     * @dev Returns true if `account` supports the interface defined by\n     * `interfaceId`. Support for {IERC165} itself is queried automatically.\n     *\n     * See {IERC165-supportsInterface}.\n     */\n    function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {\n        // query support of both ERC-165 as per the spec and support of _interfaceId\n        return supportsERC165(account) && supportsERC165InterfaceUnchecked(account, interfaceId);\n    }\n\n    /**\n     * @dev Returns a boolean array where each value corresponds to the\n     * interfaces passed in and whether they're supported or not. This allows\n     * you to batch check interfaces for a contract where your expectation\n     * is that some interfaces may not be supported.\n     *\n     * See {IERC165-supportsInterface}.\n     */\n    function getSupportedInterfaces(\n        address account,\n        bytes4[] memory interfaceIds\n    ) internal view returns (bool[] memory) {\n        // an array of booleans corresponding to interfaceIds and whether they're supported or not\n        bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);\n\n        // query support of ERC-165 itself\n        if (supportsERC165(account)) {\n            // query support of each interface in interfaceIds\n            for (uint256 i = 0; i < interfaceIds.length; i++) {\n                interfaceIdsSupported[i] = supportsERC165InterfaceUnchecked(account, interfaceIds[i]);\n            }\n        }\n\n        return interfaceIdsSupported;\n    }\n\n    /**\n     * @dev Returns true if `account` supports all the interfaces defined in\n     * `interfaceIds`. Support for {IERC165} itself is queried automatically.\n     *\n     * Batch-querying can lead to gas savings by skipping repeated checks for\n     * {IERC165} support.\n     *\n     * See {IERC165-supportsInterface}.\n     */\n    function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {\n        // query support of ERC-165 itself\n        if (!supportsERC165(account)) {\n            return false;\n        }\n\n        // query support of each interface in interfaceIds\n        for (uint256 i = 0; i < interfaceIds.length; i++) {\n            if (!supportsERC165InterfaceUnchecked(account, interfaceIds[i])) {\n                return false;\n            }\n        }\n\n        // all interfaces supported\n        return true;\n    }\n\n    /**\n     * @notice Query if a contract implements an interface, does not check ERC-165 support\n     * @param account The address of the contract to query for support of an interface\n     * @param interfaceId The interface identifier, as specified in ERC-165\n     * @return true if the contract at account indicates support of the interface with\n     * identifier interfaceId, false otherwise\n     * @dev Assumes that account contains a contract that supports ERC-165, otherwise\n     * the behavior of this method is undefined. This precondition can be checked\n     * with {supportsERC165}.\n     *\n     * Some precompiled contracts will falsely indicate support for a given interface, so caution\n     * should be exercised when using this function.\n     *\n     * Interface identification is specified in ERC-165.\n     */\n    function supportsERC165InterfaceUnchecked(address account, bytes4 interfaceId) internal view returns (bool) {\n        (bool success, bool supported) = _trySupportsInterface(account, interfaceId);\n        return success && supported;\n    }\n\n    /**\n     * @dev Attempts to call `supportsInterface` on a contract and returns both the call\n     * success status and the interface support result.\n     *\n     * This function performs a low-level static call to the contract's `supportsInterface`\n     * function. It returns:\n     *\n     * * `success`: true if the call didn't revert, false if it did\n     * * `supported`: true if the call succeeded AND returned data indicating the interface is supported\n     */\n    function _trySupportsInterface(\n        address account,\n        bytes4 interfaceId\n    ) private view returns (bool success, bool supported) {\n        bytes4 selector = IERC165.supportsInterface.selector;\n\n        assembly (\"memory-safe\") {\n            mstore(0x00, selector)\n            mstore(0x04, interfaceId)\n            success := staticcall(30000, account, 0x00, 0x24, 0x00, 0x20)\n            supported := and(\n                gt(returndatasize(), 0x1F), // we have at least 32 bytes of returndata\n                iszero(iszero(mload(0x00))) // the first 32 bytes of returndata are non-zero\n            )\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (utils/introspection/IERC165.sol)\n\npragma solidity >=0.4.16;\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/LowLevelCall.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/LowLevelCall.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Library of low level call functions that implement different calling strategies to deal with the return data.\n *\n * WARNING: Using this library requires an advanced understanding of Solidity and how the EVM works. It is recommended\n * to use the {Address} library instead.\n */\nlibrary LowLevelCall {\n    /// @dev Performs a Solidity function call using a low level `call` and ignoring the return data.\n    function callNoReturn(address target, bytes memory data) internal returns (bool success) {\n        return callNoReturn(target, 0, data);\n    }\n\n    /// @dev Same as {callNoReturn}, but allows to specify the value to be sent in the call.\n    function callNoReturn(address target, uint256 value, bytes memory data) internal returns (bool success) {\n        assembly (\"memory-safe\") {\n            success := call(gas(), target, value, add(data, 0x20), mload(data), 0x00, 0x00)\n        }\n    }\n\n    /// @dev Performs a Solidity function call using a low level `call` and returns the first 64 bytes of the result\n    /// in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n    ///\n    /// WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n    /// and this function doesn't zero it out.\n    function callReturn64Bytes(\n        address target,\n        bytes memory data\n    ) internal returns (bool success, bytes32 result1, bytes32 result2) {\n        return callReturn64Bytes(target, 0, data);\n    }\n\n    /// @dev Same as {callReturnBytes32Pair}, but allows to specify the value to be sent in the call.\n    function callReturn64Bytes(\n        address target,\n        uint256 value,\n        bytes memory data\n    ) internal returns (bool success, bytes32 result1, bytes32 result2) {\n        assembly (\"memory-safe\") {\n            success := call(gas(), target, value, add(data, 0x20), mload(data), 0x00, 0x40)\n            result1 := mload(0x00)\n            result2 := mload(0x20)\n        }\n    }\n\n    /// @dev Performs a Solidity function call using a low level `staticcall` and ignoring the return data.\n    function staticcallNoReturn(address target, bytes memory data) internal view returns (bool success) {\n        assembly (\"memory-safe\") {\n            success := staticcall(gas(), target, add(data, 0x20), mload(data), 0x00, 0x00)\n        }\n    }\n\n    /// @dev Performs a Solidity function call using a low level `staticcall` and returns the first 64 bytes of the result\n    /// in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n    ///\n    /// WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n    /// and this function doesn't zero it out.\n    function staticcallReturn64Bytes(\n        address target,\n        bytes memory data\n    ) internal view returns (bool success, bytes32 result1, bytes32 result2) {\n        assembly (\"memory-safe\") {\n            success := staticcall(gas(), target, add(data, 0x20), mload(data), 0x00, 0x40)\n            result1 := mload(0x00)\n            result2 := mload(0x20)\n        }\n    }\n\n    /// @dev Performs a Solidity function call using a low level `delegatecall` and ignoring the return data.\n    function delegatecallNoReturn(address target, bytes memory data) internal returns (bool success) {\n        assembly (\"memory-safe\") {\n            success := delegatecall(gas(), target, add(data, 0x20), mload(data), 0x00, 0x00)\n        }\n    }\n\n    /// @dev Performs a Solidity function call using a low level `delegatecall` and returns the first 64 bytes of the result\n    /// in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n    ///\n    /// WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n    /// and this function doesn't zero it out.\n    function delegatecallReturn64Bytes(\n        address target,\n        bytes memory data\n    ) internal returns (bool success, bytes32 result1, bytes32 result2) {\n        assembly (\"memory-safe\") {\n            success := delegatecall(gas(), target, add(data, 0x20), mload(data), 0x00, 0x40)\n            result1 := mload(0x00)\n            result2 := mload(0x20)\n        }\n    }\n\n    /// @dev Returns the size of the return data buffer.\n    function returnDataSize() internal pure returns (uint256 size) {\n        assembly (\"memory-safe\") {\n            size := returndatasize()\n        }\n    }\n\n    /// @dev Returns a buffer containing the return data from the last call.\n    function returnData() internal pure returns (bytes memory result) {\n        assembly (\"memory-safe\") {\n            result := mload(0x40)\n            mstore(result, returndatasize())\n            returndatacopy(add(result, 0x20), 0x00, returndatasize())\n            mstore(0x40, add(result, add(0x20, returndatasize())))\n        }\n    }\n\n    /// @dev Revert with the return data from the last call.\n    function bubbleRevert() internal pure {\n        assembly (\"memory-safe\") {\n            let fmp := mload(0x40)\n            returndatacopy(fmp, 0x00, returndatasize())\n            revert(fmp, returndatasize())\n        }\n    }\n\n    function bubbleRevert(bytes memory returndata) internal pure {\n        assembly (\"memory-safe\") {\n            revert(add(returndata, 0x20), mload(returndata))\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/math/Math.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.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 Return the 512-bit addition of two uint256.\n     *\n     * The result is stored in two 256 variables such that sum = high * 2²⁵⁶ + low.\n     */\n    function add512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) {\n        assembly (\"memory-safe\") {\n            low := add(a, b)\n            high := lt(low, a)\n        }\n    }\n\n    /**\n     * @dev Return the 512-bit multiplication of two uint256.\n     *\n     * The result is stored in two 256 variables such that product = high * 2²⁵⁶ + low.\n     */\n    function mul512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) {\n        // 512-bit multiply [high low] = 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 = high * 2²⁵⁶ + low.\n        assembly (\"memory-safe\") {\n            let mm := mulmod(a, b, not(0))\n            low := mul(a, b)\n            high := sub(sub(mm, low), lt(mm, low))\n        }\n    }\n\n    /**\n     * @dev Returns the addition of two unsigned integers, with a 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            success = c >= a;\n            result = c * SafeCast.toUint(success);\n        }\n    }\n\n    /**\n     * @dev Returns the subtraction of two unsigned integers, with a success flag (no overflow).\n     */\n    function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            uint256 c = a - b;\n            success = c <= a;\n            result = c * SafeCast.toUint(success);\n        }\n    }\n\n    /**\n     * @dev Returns the multiplication of two unsigned integers, with a success flag (no overflow).\n     */\n    function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            uint256 c = a * b;\n            assembly (\"memory-safe\") {\n                // Only true when the multiplication doesn't overflow\n                // (c / a == b) || (a == 0)\n                success := or(eq(div(c, a), b), iszero(a))\n            }\n            // equivalent to: success ? c : 0\n            result = c * SafeCast.toUint(success);\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            success = b > 0;\n            assembly (\"memory-safe\") {\n                // The `DIV` opcode returns zero when the denominator is 0.\n                result := div(a, b)\n            }\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            success = b > 0;\n            assembly (\"memory-safe\") {\n                // The `MOD` opcode returns zero when the denominator is 0.\n                result := mod(a, b)\n            }\n        }\n    }\n\n    /**\n     * @dev Unsigned saturating addition, bounds to `2²⁵⁶ - 1` instead of overflowing.\n     */\n    function saturatingAdd(uint256 a, uint256 b) internal pure returns (uint256) {\n        (bool success, uint256 result) = tryAdd(a, b);\n        return ternary(success, result, type(uint256).max);\n    }\n\n    /**\n     * @dev Unsigned saturating subtraction, bounds to zero instead of overflowing.\n     */\n    function saturatingSub(uint256 a, uint256 b) internal pure returns (uint256) {\n        (, uint256 result) = trySub(a, b);\n        return result;\n    }\n\n    /**\n     * @dev Unsigned saturating multiplication, bounds to `2²⁵⁶ - 1` instead of overflowing.\n     */\n    function saturatingMul(uint256 a, uint256 b) internal pure returns (uint256) {\n        (bool success, uint256 result) = tryMul(a, b);\n        return ternary(success, result, type(uint256).max);\n    }\n\n    /**\n     * @dev Branchless ternary evaluation for `condition ? a : b`. 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. `condition ? a : b`) 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            (uint256 high, uint256 low) = mul512(x, y);\n\n            // Handle non-overflow cases, 256 by 256 division.\n            if (high == 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 low / denominator;\n            }\n\n            // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.\n            if (denominator <= high) {\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 [high low].\n            uint256 remainder;\n            assembly (\"memory-safe\") {\n                // Compute remainder using mulmod.\n                remainder := mulmod(x, y, denominator)\n\n                // Subtract 256 bit number from 512 bit number.\n                high := sub(high, gt(remainder, low))\n                low := sub(low, 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 (\"memory-safe\") {\n                // Divide denominator by twos.\n                denominator := div(denominator, twos)\n\n                // Divide [high low] by twos.\n                low := div(low, 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 high into low.\n            low |= high * 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 high\n            // is no longer required.\n            result = low * 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 Calculates floor(x * y >> n) with full precision. Throws if result overflows a uint256.\n     */\n    function mulShr(uint256 x, uint256 y, uint8 n) internal pure returns (uint256 result) {\n        unchecked {\n            (uint256 high, uint256 low) = mul512(x, y);\n            if (high >= 1 << n) {\n                Panic.panic(Panic.UNDER_OVERFLOW);\n            }\n            return (high << (256 - n)) | (low >> n);\n        }\n    }\n\n    /**\n     * @dev Calculates x * y >> n with full precision, following the selected rounding direction.\n     */\n    function mulShr(uint256 x, uint256 y, uint8 n, Rounding rounding) internal pure returns (uint256) {\n        return mulShr(x, y, n) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, 1 << n) > 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 x) internal pure returns (uint256 r) {\n        // If value has upper 128 bits set, log2 result is at least 128\n        r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7;\n        // If upper 64 bits of 128-bit half set, add 64 to result\n        r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6;\n        // If upper 32 bits of 64-bit half set, add 32 to result\n        r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5;\n        // If upper 16 bits of 32-bit half set, add 16 to result\n        r |= SafeCast.toUint((x >> r) > 0xffff) << 4;\n        // If upper 8 bits of 16-bit half set, add 8 to result\n        r |= SafeCast.toUint((x >> r) > 0xff) << 3;\n        // If upper 4 bits of 8-bit half set, add 4 to result\n        r |= SafeCast.toUint((x >> r) > 0xf) << 2;\n\n        // Shifts value right by the current result and use it as an index into this lookup table:\n        //\n        // | x (4 bits) |  index  | table[index] = MSB position |\n        // |------------|---------|-----------------------------|\n        // |    0000    |    0    |        table[0] = 0         |\n        // |    0001    |    1    |        table[1] = 0         |\n        // |    0010    |    2    |        table[2] = 1         |\n        // |    0011    |    3    |        table[3] = 1         |\n        // |    0100    |    4    |        table[4] = 2         |\n        // |    0101    |    5    |        table[5] = 2         |\n        // |    0110    |    6    |        table[6] = 2         |\n        // |    0111    |    7    |        table[7] = 2         |\n        // |    1000    |    8    |        table[8] = 3         |\n        // |    1001    |    9    |        table[9] = 3         |\n        // |    1010    |   10    |        table[10] = 3        |\n        // |    1011    |   11    |        table[11] = 3        |\n        // |    1100    |   12    |        table[12] = 3        |\n        // |    1101    |   13    |        table[13] = 3        |\n        // |    1110    |   14    |        table[14] = 3        |\n        // |    1111    |   15    |        table[15] = 3        |\n        //\n        // The lookup table is represented as a 32-byte value with the MSB positions for 0-15 in the last 16 bytes.\n        assembly (\"memory-safe\") {\n            r := or(r, byte(shr(r, x), 0x0000010102020202030303030303030300000000000000000000000000000000))\n        }\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 x) internal pure returns (uint256 r) {\n        // If value has upper 128 bits set, log2 result is at least 128\n        r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7;\n        // If upper 64 bits of 128-bit half set, add 64 to result\n        r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6;\n        // If upper 32 bits of 64-bit half set, add 32 to result\n        r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5;\n        // If upper 16 bits of 32-bit half set, add 16 to result\n        r |= SafeCast.toUint((x >> r) > 0xffff) << 4;\n        // Add 1 if upper 8 bits of 16-bit half set, and divide accumulated result by 8\n        return (r >> 3) | SafeCast.toUint((x >> r) > 0xff);\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    /**\n     * @dev Counts the number of leading zero bits in a uint256.\n     */\n    function clz(uint256 x) internal pure returns (uint256) {\n        return ternary(x == 0, 256, 255 - log2(x));\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/Memory.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/Memory.sol)\n\npragma solidity ^0.8.24;\n\nimport {Panic} from \"./Panic.sol\";\nimport {Math} from \"./math/Math.sol\";\n\n/**\n * @dev Utilities to manipulate memory.\n *\n * Memory is a contiguous and dynamic byte array in which Solidity stores non-primitive types.\n * This library provides functions to manipulate pointers to this dynamic array and work with slices of it.\n *\n * Slices provide a view into a portion of memory without copying data, enabling efficient substring operations.\n *\n * WARNING: When manipulating memory pointers or slices, make sure to follow the Solidity documentation\n * guidelines for https://docs.soliditylang.org/en/v0.8.20/assembly.html#memory-safety[Memory Safety].\n */\nlibrary Memory {\n    type Pointer is bytes32;\n\n    /// @dev Returns a `Pointer` to the current free `Pointer`.\n    function getFreeMemoryPointer() internal pure returns (Pointer ptr) {\n        assembly (\"memory-safe\") {\n            ptr := mload(0x40)\n        }\n    }\n\n    /**\n     * @dev Sets the free `Pointer` to a specific value.\n     *\n     * WARNING: Everything after the pointer may be overwritten.\n     **/\n    function setFreeMemoryPointer(Pointer ptr) internal pure {\n        assembly (\"memory-safe\") {\n            mstore(0x40, ptr)\n        }\n    }\n\n    /// @dev `Pointer` to `bytes32`. Expects a pointer to a properly ABI-encoded `bytes` object.\n    function asBytes32(Pointer ptr) internal pure returns (bytes32) {\n        return Pointer.unwrap(ptr);\n    }\n\n    /// @dev `bytes32` to `Pointer`. Expects a pointer to a properly ABI-encoded `bytes` object.\n    function asPointer(bytes32 value) internal pure returns (Pointer) {\n        return Pointer.wrap(value);\n    }\n\n    /// @dev Move a pointer forward by a given offset.\n    function forward(Pointer ptr, uint256 offset) internal pure returns (Pointer) {\n        return Pointer.wrap(bytes32(uint256(Pointer.unwrap(ptr)) + offset));\n    }\n\n    /// @dev Equality comparator for memory pointers.\n    function equal(Pointer ptr1, Pointer ptr2) internal pure returns (bool) {\n        return Pointer.unwrap(ptr1) == Pointer.unwrap(ptr2);\n    }\n\n    type Slice is bytes32;\n\n    /// @dev Get a slice representation of a bytes object in memory\n    function asSlice(bytes memory self) internal pure returns (Slice result) {\n        assembly (\"memory-safe\") {\n            result := or(shl(128, mload(self)), add(self, 0x20))\n        }\n    }\n\n    /// @dev Returns the length of a given slice (equiv to self.length for calldata slices)\n    function length(Slice self) internal pure returns (uint256 result) {\n        assembly (\"memory-safe\") {\n            result := shr(128, self)\n        }\n    }\n\n    /// @dev Offset a memory slice (equivalent to self[start:] for calldata slices)\n    function slice(Slice self, uint256 offset) internal pure returns (Slice) {\n        if (offset > length(self)) Panic.panic(Panic.ARRAY_OUT_OF_BOUNDS);\n        return _asSlice(length(self) - offset, forward(_pointer(self), offset));\n    }\n\n    /// @dev Offset and cut a Slice (equivalent to self[start:start+length] for calldata slices)\n    function slice(Slice self, uint256 offset, uint256 len) internal pure returns (Slice) {\n        if (offset + len > length(self)) Panic.panic(Panic.ARRAY_OUT_OF_BOUNDS);\n        return _asSlice(len, forward(_pointer(self), offset));\n    }\n\n    /**\n     * @dev Read a bytes32 buffer from a given Slice at a specific offset\n     *\n     * NOTE: If offset > length(slice) - 0x20, part of the return value will be out of bound of the slice. These bytes are zeroed.\n     */\n    function load(Slice self, uint256 offset) internal pure returns (bytes32 value) {\n        uint256 outOfBoundBytes = Math.saturatingSub(0x20 + offset, length(self));\n        if (outOfBoundBytes > 0x1f) Panic.panic(Panic.ARRAY_OUT_OF_BOUNDS);\n\n        assembly (\"memory-safe\") {\n            value := and(mload(add(and(self, shr(128, not(0))), offset)), shl(mul(8, outOfBoundBytes), not(0)))\n        }\n    }\n\n    /// @dev Extract the data corresponding to a Slice (allocate new memory)\n    function toBytes(Slice self) internal pure returns (bytes memory result) {\n        uint256 len = length(self);\n        Memory.Pointer ptr = _pointer(self);\n        assembly (\"memory-safe\") {\n            result := mload(0x40)\n            mstore(result, len)\n            mcopy(add(result, 0x20), ptr, len)\n            mstore(0x40, add(add(result, len), 0x20))\n        }\n    }\n\n    /**\n     * @dev Private helper: create a slice from raw values (length and pointer)\n     *\n     * NOTE: this function MUST NOT be called with `len` or `ptr` that exceed `2**128-1`. This should never be\n     * the case of slices produced by `asSlice(bytes)`, and function that reduce the scope of slices\n     * (`slice(Slice,uint256)` and `slice(Slice,uint256, uint256)`) should not cause this issue if the parent slice is\n     * correct.\n     */\n    function _asSlice(uint256 len, Memory.Pointer ptr) private pure returns (Slice result) {\n        assembly (\"memory-safe\") {\n            result := or(shl(128, len), ptr)\n        }\n    }\n\n    /// @dev Returns the memory location of a given slice (equiv to self.offset for calldata slices)\n    function _pointer(Slice self) private pure returns (Memory.Pointer result) {\n        assembly (\"memory-safe\") {\n            result := and(self, shr(128, not(0)))\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Multicall.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (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 {Context-_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 * {Context-_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) public 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/Packing.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (utils/Packing.sol)\n// This file was procedurally generated from scripts/generate/templates/Packing.js.\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Helper library packing and unpacking multiple values into bytesXX.\n *\n * Example usage:\n *\n * ```solidity\n * library MyPacker {\n *     type MyType is bytes32;\n *\n *     function _pack(address account, bytes4 selector, uint64 period) external pure returns (MyType) {\n *         bytes12 subpack = Packing.pack_4_8(selector, bytes8(period));\n *         bytes32 pack = Packing.pack_20_12(bytes20(account), subpack);\n *         return MyType.wrap(pack);\n *     }\n *\n *     function _unpack(MyType self) external pure returns (address, bytes4, uint64) {\n *         bytes32 pack = MyType.unwrap(self);\n *         return (\n *             address(Packing.extract_32_20(pack, 0)),\n *             Packing.extract_32_4(pack, 20),\n *             uint64(Packing.extract_32_8(pack, 24))\n *         );\n *     }\n * }\n * ```\n *\n * _Available since v5.1._\n */\n// solhint-disable func-name-mixedcase\nlibrary Packing {\n    error OutOfRangeAccess();\n\n    function pack_1_1(bytes1 left, bytes1 right) internal pure returns (bytes2 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(248, not(0)))\n            right := and(right, shl(248, not(0)))\n            result := or(left, shr(8, right))\n        }\n    }\n\n    function pack_2_2(bytes2 left, bytes2 right) internal pure returns (bytes4 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(240, not(0)))\n            right := and(right, shl(240, not(0)))\n            result := or(left, shr(16, right))\n        }\n    }\n\n    function pack_2_4(bytes2 left, bytes4 right) internal pure returns (bytes6 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(240, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(16, right))\n        }\n    }\n\n    function pack_2_6(bytes2 left, bytes6 right) internal pure returns (bytes8 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(240, not(0)))\n            right := and(right, shl(208, not(0)))\n            result := or(left, shr(16, right))\n        }\n    }\n\n    function pack_2_8(bytes2 left, bytes8 right) internal pure returns (bytes10 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(240, not(0)))\n            right := and(right, shl(192, not(0)))\n            result := or(left, shr(16, right))\n        }\n    }\n\n    function pack_2_10(bytes2 left, bytes10 right) internal pure returns (bytes12 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(240, not(0)))\n            right := and(right, shl(176, not(0)))\n            result := or(left, shr(16, right))\n        }\n    }\n\n    function pack_2_20(bytes2 left, bytes20 right) internal pure returns (bytes22 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(240, not(0)))\n            right := and(right, shl(96, not(0)))\n            result := or(left, shr(16, right))\n        }\n    }\n\n    function pack_2_22(bytes2 left, bytes22 right) internal pure returns (bytes24 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(240, not(0)))\n            right := and(right, shl(80, not(0)))\n            result := or(left, shr(16, right))\n        }\n    }\n\n    function pack_4_2(bytes4 left, bytes2 right) internal pure returns (bytes6 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(240, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_4_4(bytes4 left, bytes4 right) internal pure returns (bytes8 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_4_6(bytes4 left, bytes6 right) internal pure returns (bytes10 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(208, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_4_8(bytes4 left, bytes8 right) internal pure returns (bytes12 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(192, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_4_12(bytes4 left, bytes12 right) internal pure returns (bytes16 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(160, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_4_16(bytes4 left, bytes16 right) internal pure returns (bytes20 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(128, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_4_20(bytes4 left, bytes20 right) internal pure returns (bytes24 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(96, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_4_24(bytes4 left, bytes24 right) internal pure returns (bytes28 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(64, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_4_28(bytes4 left, bytes28 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(224, not(0)))\n            right := and(right, shl(32, not(0)))\n            result := or(left, shr(32, right))\n        }\n    }\n\n    function pack_6_2(bytes6 left, bytes2 right) internal pure returns (bytes8 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(208, not(0)))\n            right := and(right, shl(240, not(0)))\n            result := or(left, shr(48, right))\n        }\n    }\n\n    function pack_6_4(bytes6 left, bytes4 right) internal pure returns (bytes10 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(208, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(48, right))\n        }\n    }\n\n    function pack_6_6(bytes6 left, bytes6 right) internal pure returns (bytes12 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(208, not(0)))\n            right := and(right, shl(208, not(0)))\n            result := or(left, shr(48, right))\n        }\n    }\n\n    function pack_6_10(bytes6 left, bytes10 right) internal pure returns (bytes16 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(208, not(0)))\n            right := and(right, shl(176, not(0)))\n            result := or(left, shr(48, right))\n        }\n    }\n\n    function pack_6_16(bytes6 left, bytes16 right) internal pure returns (bytes22 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(208, not(0)))\n            right := and(right, shl(128, not(0)))\n            result := or(left, shr(48, right))\n        }\n    }\n\n    function pack_6_22(bytes6 left, bytes22 right) internal pure returns (bytes28 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(208, not(0)))\n            right := and(right, shl(80, not(0)))\n            result := or(left, shr(48, right))\n        }\n    }\n\n    function pack_8_2(bytes8 left, bytes2 right) internal pure returns (bytes10 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(192, not(0)))\n            right := and(right, shl(240, not(0)))\n            result := or(left, shr(64, right))\n        }\n    }\n\n    function pack_8_4(bytes8 left, bytes4 right) internal pure returns (bytes12 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(192, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(64, right))\n        }\n    }\n\n    function pack_8_8(bytes8 left, bytes8 right) internal pure returns (bytes16 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(192, not(0)))\n            right := and(right, shl(192, not(0)))\n            result := or(left, shr(64, right))\n        }\n    }\n\n    function pack_8_12(bytes8 left, bytes12 right) internal pure returns (bytes20 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(192, not(0)))\n            right := and(right, shl(160, not(0)))\n            result := or(left, shr(64, right))\n        }\n    }\n\n    function pack_8_16(bytes8 left, bytes16 right) internal pure returns (bytes24 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(192, not(0)))\n            right := and(right, shl(128, not(0)))\n            result := or(left, shr(64, right))\n        }\n    }\n\n    function pack_8_20(bytes8 left, bytes20 right) internal pure returns (bytes28 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(192, not(0)))\n            right := and(right, shl(96, not(0)))\n            result := or(left, shr(64, right))\n        }\n    }\n\n    function pack_8_24(bytes8 left, bytes24 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(192, not(0)))\n            right := and(right, shl(64, not(0)))\n            result := or(left, shr(64, right))\n        }\n    }\n\n    function pack_10_2(bytes10 left, bytes2 right) internal pure returns (bytes12 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(176, not(0)))\n            right := and(right, shl(240, not(0)))\n            result := or(left, shr(80, right))\n        }\n    }\n\n    function pack_10_6(bytes10 left, bytes6 right) internal pure returns (bytes16 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(176, not(0)))\n            right := and(right, shl(208, not(0)))\n            result := or(left, shr(80, right))\n        }\n    }\n\n    function pack_10_10(bytes10 left, bytes10 right) internal pure returns (bytes20 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(176, not(0)))\n            right := and(right, shl(176, not(0)))\n            result := or(left, shr(80, right))\n        }\n    }\n\n    function pack_10_12(bytes10 left, bytes12 right) internal pure returns (bytes22 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(176, not(0)))\n            right := and(right, shl(160, not(0)))\n            result := or(left, shr(80, right))\n        }\n    }\n\n    function pack_10_22(bytes10 left, bytes22 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(176, not(0)))\n            right := and(right, shl(80, not(0)))\n            result := or(left, shr(80, right))\n        }\n    }\n\n    function pack_12_4(bytes12 left, bytes4 right) internal pure returns (bytes16 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(160, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(96, right))\n        }\n    }\n\n    function pack_12_8(bytes12 left, bytes8 right) internal pure returns (bytes20 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(160, not(0)))\n            right := and(right, shl(192, not(0)))\n            result := or(left, shr(96, right))\n        }\n    }\n\n    function pack_12_10(bytes12 left, bytes10 right) internal pure returns (bytes22 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(160, not(0)))\n            right := and(right, shl(176, not(0)))\n            result := or(left, shr(96, right))\n        }\n    }\n\n    function pack_12_12(bytes12 left, bytes12 right) internal pure returns (bytes24 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(160, not(0)))\n            right := and(right, shl(160, not(0)))\n            result := or(left, shr(96, right))\n        }\n    }\n\n    function pack_12_16(bytes12 left, bytes16 right) internal pure returns (bytes28 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(160, not(0)))\n            right := and(right, shl(128, not(0)))\n            result := or(left, shr(96, right))\n        }\n    }\n\n    function pack_12_20(bytes12 left, bytes20 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(160, not(0)))\n            right := and(right, shl(96, not(0)))\n            result := or(left, shr(96, right))\n        }\n    }\n\n    function pack_16_4(bytes16 left, bytes4 right) internal pure returns (bytes20 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(128, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(128, right))\n        }\n    }\n\n    function pack_16_6(bytes16 left, bytes6 right) internal pure returns (bytes22 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(128, not(0)))\n            right := and(right, shl(208, not(0)))\n            result := or(left, shr(128, right))\n        }\n    }\n\n    function pack_16_8(bytes16 left, bytes8 right) internal pure returns (bytes24 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(128, not(0)))\n            right := and(right, shl(192, not(0)))\n            result := or(left, shr(128, right))\n        }\n    }\n\n    function pack_16_12(bytes16 left, bytes12 right) internal pure returns (bytes28 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(128, not(0)))\n            right := and(right, shl(160, not(0)))\n            result := or(left, shr(128, right))\n        }\n    }\n\n    function pack_16_16(bytes16 left, bytes16 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(128, not(0)))\n            right := and(right, shl(128, not(0)))\n            result := or(left, shr(128, right))\n        }\n    }\n\n    function pack_20_2(bytes20 left, bytes2 right) internal pure returns (bytes22 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(96, not(0)))\n            right := and(right, shl(240, not(0)))\n            result := or(left, shr(160, right))\n        }\n    }\n\n    function pack_20_4(bytes20 left, bytes4 right) internal pure returns (bytes24 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(96, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(160, right))\n        }\n    }\n\n    function pack_20_8(bytes20 left, bytes8 right) internal pure returns (bytes28 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(96, not(0)))\n            right := and(right, shl(192, not(0)))\n            result := or(left, shr(160, right))\n        }\n    }\n\n    function pack_20_12(bytes20 left, bytes12 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(96, not(0)))\n            right := and(right, shl(160, not(0)))\n            result := or(left, shr(160, right))\n        }\n    }\n\n    function pack_22_2(bytes22 left, bytes2 right) internal pure returns (bytes24 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(80, not(0)))\n            right := and(right, shl(240, not(0)))\n            result := or(left, shr(176, right))\n        }\n    }\n\n    function pack_22_6(bytes22 left, bytes6 right) internal pure returns (bytes28 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(80, not(0)))\n            right := and(right, shl(208, not(0)))\n            result := or(left, shr(176, right))\n        }\n    }\n\n    function pack_22_10(bytes22 left, bytes10 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(80, not(0)))\n            right := and(right, shl(176, not(0)))\n            result := or(left, shr(176, right))\n        }\n    }\n\n    function pack_24_4(bytes24 left, bytes4 right) internal pure returns (bytes28 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(64, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(192, right))\n        }\n    }\n\n    function pack_24_8(bytes24 left, bytes8 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(64, not(0)))\n            right := and(right, shl(192, not(0)))\n            result := or(left, shr(192, right))\n        }\n    }\n\n    function pack_28_4(bytes28 left, bytes4 right) internal pure returns (bytes32 result) {\n        assembly (\"memory-safe\") {\n            left := and(left, shl(32, not(0)))\n            right := and(right, shl(224, not(0)))\n            result := or(left, shr(224, right))\n        }\n    }\n\n    function extract_2_1(bytes2 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 1) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_2_1(bytes2 self, bytes1 value, uint8 offset) internal pure returns (bytes2 result) {\n        bytes1 oldValue = extract_2_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_4_1(bytes4 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 3) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_4_1(bytes4 self, bytes1 value, uint8 offset) internal pure returns (bytes4 result) {\n        bytes1 oldValue = extract_4_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_4_2(bytes4 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 2) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_4_2(bytes4 self, bytes2 value, uint8 offset) internal pure returns (bytes4 result) {\n        bytes2 oldValue = extract_4_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_6_1(bytes6 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 5) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_6_1(bytes6 self, bytes1 value, uint8 offset) internal pure returns (bytes6 result) {\n        bytes1 oldValue = extract_6_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_6_2(bytes6 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_6_2(bytes6 self, bytes2 value, uint8 offset) internal pure returns (bytes6 result) {\n        bytes2 oldValue = extract_6_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_6_4(bytes6 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 2) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_6_4(bytes6 self, bytes4 value, uint8 offset) internal pure returns (bytes6 result) {\n        bytes4 oldValue = extract_6_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_8_1(bytes8 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 7) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_8_1(bytes8 self, bytes1 value, uint8 offset) internal pure returns (bytes8 result) {\n        bytes1 oldValue = extract_8_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_8_2(bytes8 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 6) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_8_2(bytes8 self, bytes2 value, uint8 offset) internal pure returns (bytes8 result) {\n        bytes2 oldValue = extract_8_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_8_4(bytes8 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_8_4(bytes8 self, bytes4 value, uint8 offset) internal pure returns (bytes8 result) {\n        bytes4 oldValue = extract_8_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_8_6(bytes8 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 2) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_8_6(bytes8 self, bytes6 value, uint8 offset) internal pure returns (bytes8 result) {\n        bytes6 oldValue = extract_8_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_10_1(bytes10 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 9) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_10_1(bytes10 self, bytes1 value, uint8 offset) internal pure returns (bytes10 result) {\n        bytes1 oldValue = extract_10_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_10_2(bytes10 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 8) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_10_2(bytes10 self, bytes2 value, uint8 offset) internal pure returns (bytes10 result) {\n        bytes2 oldValue = extract_10_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_10_4(bytes10 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 6) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_10_4(bytes10 self, bytes4 value, uint8 offset) internal pure returns (bytes10 result) {\n        bytes4 oldValue = extract_10_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_10_6(bytes10 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_10_6(bytes10 self, bytes6 value, uint8 offset) internal pure returns (bytes10 result) {\n        bytes6 oldValue = extract_10_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_10_8(bytes10 self, uint8 offset) internal pure returns (bytes8 result) {\n        if (offset > 2) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(192, not(0)))\n        }\n    }\n\n    function replace_10_8(bytes10 self, bytes8 value, uint8 offset) internal pure returns (bytes10 result) {\n        bytes8 oldValue = extract_10_8(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(192, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_12_1(bytes12 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 11) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_12_1(bytes12 self, bytes1 value, uint8 offset) internal pure returns (bytes12 result) {\n        bytes1 oldValue = extract_12_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_12_2(bytes12 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 10) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_12_2(bytes12 self, bytes2 value, uint8 offset) internal pure returns (bytes12 result) {\n        bytes2 oldValue = extract_12_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_12_4(bytes12 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 8) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_12_4(bytes12 self, bytes4 value, uint8 offset) internal pure returns (bytes12 result) {\n        bytes4 oldValue = extract_12_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_12_6(bytes12 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 6) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_12_6(bytes12 self, bytes6 value, uint8 offset) internal pure returns (bytes12 result) {\n        bytes6 oldValue = extract_12_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_12_8(bytes12 self, uint8 offset) internal pure returns (bytes8 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(192, not(0)))\n        }\n    }\n\n    function replace_12_8(bytes12 self, bytes8 value, uint8 offset) internal pure returns (bytes12 result) {\n        bytes8 oldValue = extract_12_8(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(192, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_12_10(bytes12 self, uint8 offset) internal pure returns (bytes10 result) {\n        if (offset > 2) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(176, not(0)))\n        }\n    }\n\n    function replace_12_10(bytes12 self, bytes10 value, uint8 offset) internal pure returns (bytes12 result) {\n        bytes10 oldValue = extract_12_10(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(176, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_16_1(bytes16 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 15) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_16_1(bytes16 self, bytes1 value, uint8 offset) internal pure returns (bytes16 result) {\n        bytes1 oldValue = extract_16_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_16_2(bytes16 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 14) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_16_2(bytes16 self, bytes2 value, uint8 offset) internal pure returns (bytes16 result) {\n        bytes2 oldValue = extract_16_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_16_4(bytes16 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 12) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_16_4(bytes16 self, bytes4 value, uint8 offset) internal pure returns (bytes16 result) {\n        bytes4 oldValue = extract_16_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_16_6(bytes16 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 10) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_16_6(bytes16 self, bytes6 value, uint8 offset) internal pure returns (bytes16 result) {\n        bytes6 oldValue = extract_16_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_16_8(bytes16 self, uint8 offset) internal pure returns (bytes8 result) {\n        if (offset > 8) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(192, not(0)))\n        }\n    }\n\n    function replace_16_8(bytes16 self, bytes8 value, uint8 offset) internal pure returns (bytes16 result) {\n        bytes8 oldValue = extract_16_8(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(192, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_16_10(bytes16 self, uint8 offset) internal pure returns (bytes10 result) {\n        if (offset > 6) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(176, not(0)))\n        }\n    }\n\n    function replace_16_10(bytes16 self, bytes10 value, uint8 offset) internal pure returns (bytes16 result) {\n        bytes10 oldValue = extract_16_10(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(176, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_16_12(bytes16 self, uint8 offset) internal pure returns (bytes12 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(160, not(0)))\n        }\n    }\n\n    function replace_16_12(bytes16 self, bytes12 value, uint8 offset) internal pure returns (bytes16 result) {\n        bytes12 oldValue = extract_16_12(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(160, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_20_1(bytes20 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 19) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_20_1(bytes20 self, bytes1 value, uint8 offset) internal pure returns (bytes20 result) {\n        bytes1 oldValue = extract_20_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_20_2(bytes20 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 18) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_20_2(bytes20 self, bytes2 value, uint8 offset) internal pure returns (bytes20 result) {\n        bytes2 oldValue = extract_20_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_20_4(bytes20 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 16) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_20_4(bytes20 self, bytes4 value, uint8 offset) internal pure returns (bytes20 result) {\n        bytes4 oldValue = extract_20_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_20_6(bytes20 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 14) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_20_6(bytes20 self, bytes6 value, uint8 offset) internal pure returns (bytes20 result) {\n        bytes6 oldValue = extract_20_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_20_8(bytes20 self, uint8 offset) internal pure returns (bytes8 result) {\n        if (offset > 12) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(192, not(0)))\n        }\n    }\n\n    function replace_20_8(bytes20 self, bytes8 value, uint8 offset) internal pure returns (bytes20 result) {\n        bytes8 oldValue = extract_20_8(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(192, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_20_10(bytes20 self, uint8 offset) internal pure returns (bytes10 result) {\n        if (offset > 10) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(176, not(0)))\n        }\n    }\n\n    function replace_20_10(bytes20 self, bytes10 value, uint8 offset) internal pure returns (bytes20 result) {\n        bytes10 oldValue = extract_20_10(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(176, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_20_12(bytes20 self, uint8 offset) internal pure returns (bytes12 result) {\n        if (offset > 8) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(160, not(0)))\n        }\n    }\n\n    function replace_20_12(bytes20 self, bytes12 value, uint8 offset) internal pure returns (bytes20 result) {\n        bytes12 oldValue = extract_20_12(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(160, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_20_16(bytes20 self, uint8 offset) internal pure returns (bytes16 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(128, not(0)))\n        }\n    }\n\n    function replace_20_16(bytes20 self, bytes16 value, uint8 offset) internal pure returns (bytes20 result) {\n        bytes16 oldValue = extract_20_16(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(128, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_1(bytes22 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 21) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_22_1(bytes22 self, bytes1 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes1 oldValue = extract_22_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_2(bytes22 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 20) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_22_2(bytes22 self, bytes2 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes2 oldValue = extract_22_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_4(bytes22 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 18) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_22_4(bytes22 self, bytes4 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes4 oldValue = extract_22_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_6(bytes22 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 16) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_22_6(bytes22 self, bytes6 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes6 oldValue = extract_22_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_8(bytes22 self, uint8 offset) internal pure returns (bytes8 result) {\n        if (offset > 14) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(192, not(0)))\n        }\n    }\n\n    function replace_22_8(bytes22 self, bytes8 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes8 oldValue = extract_22_8(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(192, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_10(bytes22 self, uint8 offset) internal pure returns (bytes10 result) {\n        if (offset > 12) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(176, not(0)))\n        }\n    }\n\n    function replace_22_10(bytes22 self, bytes10 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes10 oldValue = extract_22_10(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(176, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_12(bytes22 self, uint8 offset) internal pure returns (bytes12 result) {\n        if (offset > 10) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(160, not(0)))\n        }\n    }\n\n    function replace_22_12(bytes22 self, bytes12 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes12 oldValue = extract_22_12(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(160, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_16(bytes22 self, uint8 offset) internal pure returns (bytes16 result) {\n        if (offset > 6) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(128, not(0)))\n        }\n    }\n\n    function replace_22_16(bytes22 self, bytes16 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes16 oldValue = extract_22_16(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(128, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_22_20(bytes22 self, uint8 offset) internal pure returns (bytes20 result) {\n        if (offset > 2) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(96, not(0)))\n        }\n    }\n\n    function replace_22_20(bytes22 self, bytes20 value, uint8 offset) internal pure returns (bytes22 result) {\n        bytes20 oldValue = extract_22_20(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(96, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_1(bytes24 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 23) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_24_1(bytes24 self, bytes1 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes1 oldValue = extract_24_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_2(bytes24 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 22) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_24_2(bytes24 self, bytes2 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes2 oldValue = extract_24_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_4(bytes24 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 20) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_24_4(bytes24 self, bytes4 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes4 oldValue = extract_24_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_6(bytes24 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 18) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_24_6(bytes24 self, bytes6 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes6 oldValue = extract_24_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_8(bytes24 self, uint8 offset) internal pure returns (bytes8 result) {\n        if (offset > 16) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(192, not(0)))\n        }\n    }\n\n    function replace_24_8(bytes24 self, bytes8 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes8 oldValue = extract_24_8(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(192, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_10(bytes24 self, uint8 offset) internal pure returns (bytes10 result) {\n        if (offset > 14) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(176, not(0)))\n        }\n    }\n\n    function replace_24_10(bytes24 self, bytes10 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes10 oldValue = extract_24_10(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(176, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_12(bytes24 self, uint8 offset) internal pure returns (bytes12 result) {\n        if (offset > 12) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(160, not(0)))\n        }\n    }\n\n    function replace_24_12(bytes24 self, bytes12 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes12 oldValue = extract_24_12(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(160, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_16(bytes24 self, uint8 offset) internal pure returns (bytes16 result) {\n        if (offset > 8) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(128, not(0)))\n        }\n    }\n\n    function replace_24_16(bytes24 self, bytes16 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes16 oldValue = extract_24_16(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(128, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_20(bytes24 self, uint8 offset) internal pure returns (bytes20 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(96, not(0)))\n        }\n    }\n\n    function replace_24_20(bytes24 self, bytes20 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes20 oldValue = extract_24_20(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(96, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_24_22(bytes24 self, uint8 offset) internal pure returns (bytes22 result) {\n        if (offset > 2) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(80, not(0)))\n        }\n    }\n\n    function replace_24_22(bytes24 self, bytes22 value, uint8 offset) internal pure returns (bytes24 result) {\n        bytes22 oldValue = extract_24_22(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(80, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_1(bytes28 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 27) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_28_1(bytes28 self, bytes1 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes1 oldValue = extract_28_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_2(bytes28 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 26) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_28_2(bytes28 self, bytes2 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes2 oldValue = extract_28_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_4(bytes28 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 24) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_28_4(bytes28 self, bytes4 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes4 oldValue = extract_28_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_6(bytes28 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 22) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_28_6(bytes28 self, bytes6 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes6 oldValue = extract_28_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_8(bytes28 self, uint8 offset) internal pure returns (bytes8 result) {\n        if (offset > 20) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(192, not(0)))\n        }\n    }\n\n    function replace_28_8(bytes28 self, bytes8 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes8 oldValue = extract_28_8(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(192, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_10(bytes28 self, uint8 offset) internal pure returns (bytes10 result) {\n        if (offset > 18) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(176, not(0)))\n        }\n    }\n\n    function replace_28_10(bytes28 self, bytes10 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes10 oldValue = extract_28_10(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(176, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_12(bytes28 self, uint8 offset) internal pure returns (bytes12 result) {\n        if (offset > 16) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(160, not(0)))\n        }\n    }\n\n    function replace_28_12(bytes28 self, bytes12 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes12 oldValue = extract_28_12(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(160, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_16(bytes28 self, uint8 offset) internal pure returns (bytes16 result) {\n        if (offset > 12) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(128, not(0)))\n        }\n    }\n\n    function replace_28_16(bytes28 self, bytes16 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes16 oldValue = extract_28_16(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(128, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_20(bytes28 self, uint8 offset) internal pure returns (bytes20 result) {\n        if (offset > 8) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(96, not(0)))\n        }\n    }\n\n    function replace_28_20(bytes28 self, bytes20 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes20 oldValue = extract_28_20(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(96, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_22(bytes28 self, uint8 offset) internal pure returns (bytes22 result) {\n        if (offset > 6) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(80, not(0)))\n        }\n    }\n\n    function replace_28_22(bytes28 self, bytes22 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes22 oldValue = extract_28_22(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(80, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_28_24(bytes28 self, uint8 offset) internal pure returns (bytes24 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(64, not(0)))\n        }\n    }\n\n    function replace_28_24(bytes28 self, bytes24 value, uint8 offset) internal pure returns (bytes28 result) {\n        bytes24 oldValue = extract_28_24(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(64, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_1(bytes32 self, uint8 offset) internal pure returns (bytes1 result) {\n        if (offset > 31) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(248, not(0)))\n        }\n    }\n\n    function replace_32_1(bytes32 self, bytes1 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes1 oldValue = extract_32_1(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(248, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_2(bytes32 self, uint8 offset) internal pure returns (bytes2 result) {\n        if (offset > 30) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(240, not(0)))\n        }\n    }\n\n    function replace_32_2(bytes32 self, bytes2 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes2 oldValue = extract_32_2(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(240, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_4(bytes32 self, uint8 offset) internal pure returns (bytes4 result) {\n        if (offset > 28) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(224, not(0)))\n        }\n    }\n\n    function replace_32_4(bytes32 self, bytes4 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes4 oldValue = extract_32_4(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(224, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_6(bytes32 self, uint8 offset) internal pure returns (bytes6 result) {\n        if (offset > 26) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(208, not(0)))\n        }\n    }\n\n    function replace_32_6(bytes32 self, bytes6 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes6 oldValue = extract_32_6(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(208, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_8(bytes32 self, uint8 offset) internal pure returns (bytes8 result) {\n        if (offset > 24) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(192, not(0)))\n        }\n    }\n\n    function replace_32_8(bytes32 self, bytes8 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes8 oldValue = extract_32_8(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(192, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_10(bytes32 self, uint8 offset) internal pure returns (bytes10 result) {\n        if (offset > 22) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(176, not(0)))\n        }\n    }\n\n    function replace_32_10(bytes32 self, bytes10 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes10 oldValue = extract_32_10(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(176, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_12(bytes32 self, uint8 offset) internal pure returns (bytes12 result) {\n        if (offset > 20) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(160, not(0)))\n        }\n    }\n\n    function replace_32_12(bytes32 self, bytes12 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes12 oldValue = extract_32_12(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(160, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_16(bytes32 self, uint8 offset) internal pure returns (bytes16 result) {\n        if (offset > 16) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(128, not(0)))\n        }\n    }\n\n    function replace_32_16(bytes32 self, bytes16 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes16 oldValue = extract_32_16(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(128, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_20(bytes32 self, uint8 offset) internal pure returns (bytes20 result) {\n        if (offset > 12) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(96, not(0)))\n        }\n    }\n\n    function replace_32_20(bytes32 self, bytes20 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes20 oldValue = extract_32_20(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(96, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_22(bytes32 self, uint8 offset) internal pure returns (bytes22 result) {\n        if (offset > 10) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(80, not(0)))\n        }\n    }\n\n    function replace_32_22(bytes32 self, bytes22 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes22 oldValue = extract_32_22(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(80, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_24(bytes32 self, uint8 offset) internal pure returns (bytes24 result) {\n        if (offset > 8) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(64, not(0)))\n        }\n    }\n\n    function replace_32_24(bytes32 self, bytes24 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes24 oldValue = extract_32_24(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(64, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\n    }\n\n    function extract_32_28(bytes32 self, uint8 offset) internal pure returns (bytes28 result) {\n        if (offset > 4) revert OutOfRangeAccess();\n        assembly (\"memory-safe\") {\n            result := and(shl(mul(8, offset), self), shl(32, not(0)))\n        }\n    }\n\n    function replace_32_28(bytes32 self, bytes28 value, uint8 offset) internal pure returns (bytes32 result) {\n        bytes28 oldValue = extract_32_28(self, offset);\n        assembly (\"memory-safe\") {\n            value := and(value, shl(32, not(0)))\n            result := xor(self, shr(mul(8, offset), xor(oldValue, value)))\n        }\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/ReentrancyGuard.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/ReentrancyGuard.sol)\n\npragma solidity ^0.8.20;\n\nimport {StorageSlot} from \"./StorageSlot.sol\";\n\n/**\n * @dev Contract module that helps prevent reentrant calls to a function.\n *\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n * available, which can be applied to functions to make sure there are no nested\n * (reentrant) calls to them.\n *\n * Note that because there is a single `nonReentrant` guard, functions marked as\n * `nonReentrant` may not call one another. This can be worked around by making\n * those functions `private`, and then adding `external` `nonReentrant` entry\n * points to them.\n *\n * TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,\n * consider using {ReentrancyGuardTransient} instead.\n *\n * TIP: If you would like to learn more about reentrancy and alternative ways\n * to protect against it, check out our blog post\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n *\n * IMPORTANT: Deprecated. This storage-based reentrancy guard will be removed and replaced\n * by the {ReentrancyGuardTransient} variant in v6.0.\n *\n * @custom:stateless\n */\nabstract contract ReentrancyGuard {\n    using StorageSlot for bytes32;\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.ReentrancyGuard\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant REENTRANCY_GUARD_STORAGE =\n        0x9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00;\n\n    // Booleans are more expensive than uint256 or any type that takes up a full\n    // word because each write operation emits an extra SLOAD to first read the\n    // slot's contents, replace the bits taken up by the boolean, and then write\n    // back. This is the compiler's defense against contract upgrades and\n    // pointer aliasing, and it cannot be disabled.\n\n    // The values being non-zero value makes deployment a bit more expensive,\n    // but in exchange the refund on every call to nonReentrant will be lower in\n    // amount. Since refunds are capped to a percentage of the total\n    // transaction's gas, it is best to keep them low in cases like this one, to\n    // increase the likelihood of the full refund coming into effect.\n    uint256 private constant NOT_ENTERED = 1;\n    uint256 private constant ENTERED = 2;\n\n    /**\n     * @dev Unauthorized reentrant call.\n     */\n    error ReentrancyGuardReentrantCall();\n\n    constructor() {\n        _reentrancyGuardStorageSlot().getUint256Slot().value = NOT_ENTERED;\n    }\n\n    /**\n     * @dev Prevents a contract from calling itself, directly or indirectly.\n     * Calling a `nonReentrant` function from another `nonReentrant`\n     * function is not supported. It is possible to prevent this from happening\n     * by making the `nonReentrant` function external, and making it call a\n     * `private` function that does the actual work.\n     */\n    modifier nonReentrant() {\n        _nonReentrantBefore();\n        _;\n        _nonReentrantAfter();\n    }\n\n    /**\n     * @dev A `view` only version of {nonReentrant}. Use to block view functions\n     * from being called, preventing reading from inconsistent contract state.\n     *\n     * CAUTION: This is a \"view\" modifier and does not change the reentrancy\n     * status. Use it only on view functions. For payable or non-payable functions,\n     * use the standard {nonReentrant} modifier instead.\n     */\n    modifier nonReentrantView() {\n        _nonReentrantBeforeView();\n        _;\n    }\n\n    function _nonReentrantBeforeView() private view {\n        if (_reentrancyGuardEntered()) {\n            revert ReentrancyGuardReentrantCall();\n        }\n    }\n\n    function _nonReentrantBefore() private {\n        // On the first call to nonReentrant, _status will be NOT_ENTERED\n        _nonReentrantBeforeView();\n\n        // Any calls to nonReentrant after this point will fail\n        _reentrancyGuardStorageSlot().getUint256Slot().value = ENTERED;\n    }\n\n    function _nonReentrantAfter() private {\n        // By storing the original value once again, a refund is triggered (see\n        // https://eips.ethereum.org/EIPS/eip-2200)\n        _reentrancyGuardStorageSlot().getUint256Slot().value = NOT_ENTERED;\n    }\n\n    /**\n     * @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n     * `nonReentrant` function in the call stack.\n     */\n    function _reentrancyGuardEntered() internal view returns (bool) {\n        return _reentrancyGuardStorageSlot().getUint256Slot().value == ENTERED;\n    }\n\n    function _reentrancyGuardStorageSlot() internal pure virtual returns (bytes32) {\n        return REENTRANCY_GUARD_STORAGE;\n    }\n}\n"},"@openzeppelin/contracts/utils/StorageSlot.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)\n// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Library for reading and writing primitive types to specific storage slots.\n *\n * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n * This library helps with reading and writing to such slots without the need for inline assembly.\n *\n * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n *\n * Example usage to set ERC-1967 implementation slot:\n * ```solidity\n * contract ERC1967 {\n *     // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.\n *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n *\n *     function _getImplementation() internal view returns (address) {\n *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n *     }\n *\n *     function _setImplementation(address newImplementation) internal {\n *         require(newImplementation.code.length > 0);\n *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n *     }\n * }\n * ```\n *\n * TIP: Consider using this library along with {SlotDerivation}.\n */\nlibrary StorageSlot {\n    struct AddressSlot {\n        address value;\n    }\n\n    struct BooleanSlot {\n        bool value;\n    }\n\n    struct Bytes32Slot {\n        bytes32 value;\n    }\n\n    struct Uint256Slot {\n        uint256 value;\n    }\n\n    struct Int256Slot {\n        int256 value;\n    }\n\n    struct StringSlot {\n        string value;\n    }\n\n    struct BytesSlot {\n        bytes value;\n    }\n\n    /**\n     * @dev Returns an `AddressSlot` with member `value` located at `slot`.\n     */\n    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns a `BooleanSlot` with member `value` located at `slot`.\n     */\n    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns a `Bytes32Slot` with member `value` located at `slot`.\n     */\n    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns a `Uint256Slot` with member `value` located at `slot`.\n     */\n    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns a `Int256Slot` with member `value` located at `slot`.\n     */\n    function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns a `StringSlot` with member `value` located at `slot`.\n     */\n    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.\n     */\n    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := store.slot\n        }\n    }\n\n    /**\n     * @dev Returns a `BytesSlot` with member `value` located at `slot`.\n     */\n    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.\n     */\n    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := store.slot\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Strings.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/Strings.sol)\n\npragma solidity ^0.8.24;\n\nimport {Math} from \"./math/Math.sol\";\nimport {SafeCast} from \"./math/SafeCast.sol\";\nimport {SignedMath} from \"./math/SignedMath.sol\";\nimport {Bytes} from \"./Bytes.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    uint256 private constant SPECIAL_CHARS_LOOKUP =\n        (1 << 0x08) | // backspace\n            (1 << 0x09) | // tab\n            (1 << 0x0a) | // newline\n            (1 << 0x0c) | // form feed\n            (1 << 0x0d) | // carriage return\n            (1 << 0x22) | // double quote\n            (1 << 0x5c); // backslash\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(add(buffer, 0x20), 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 Converts a `bytes` buffer to its ASCII `string` hexadecimal representation.\n     */\n    function toHexString(bytes memory input) internal pure returns (string memory) {\n        unchecked {\n            bytes memory buffer = new bytes(2 * input.length + 2);\n            buffer[0] = \"0\";\n            buffer[1] = \"x\";\n            for (uint256 i = 0; i < input.length; ++i) {\n                uint8 v = uint8(input[i]);\n                buffer[2 * i + 2] = HEX_DIGITS[v >> 4];\n                buffer[2 * i + 3] = HEX_DIGITS[v & 0xf];\n            }\n            return string(buffer);\n        }\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.equal(bytes(a), 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-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 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-string-uint256-uint256} 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-string-uint256-uint256} 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-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 `(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-string-uint256-uint256} 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 guarantees 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-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 `(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-string} 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-string-uint256-uint256} 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 Escape special characters in JSON strings. This can be useful to prevent JSON injection in NFT metadata.\n     *\n     * WARNING: This function should only be used in double quoted JSON strings. Single quotes are not escaped.\n     *\n     * NOTE: This function escapes all unicode characters, and not just the ones in ranges defined in section 2.5 of\n     * RFC-4627 (U+0000 to U+001F, U+0022 and U+005C). ECMAScript's `JSON.parse` does recover escaped unicode\n     * characters that are not in this range, but other tooling may provide different results.\n     */\n    function escapeJSON(string memory input) internal pure returns (string memory) {\n        bytes memory buffer = bytes(input);\n        bytes memory output = new bytes(2 * buffer.length); // worst case scenario\n        uint256 outputLength = 0;\n\n        for (uint256 i = 0; i < buffer.length; ++i) {\n            bytes1 char = bytes1(_unsafeReadBytesOffset(buffer, i));\n            if (((SPECIAL_CHARS_LOOKUP & (1 << uint8(char))) != 0)) {\n                output[outputLength++] = \"\\\\\";\n                if (char == 0x08) output[outputLength++] = \"b\";\n                else if (char == 0x09) output[outputLength++] = \"t\";\n                else if (char == 0x0a) output[outputLength++] = \"n\";\n                else if (char == 0x0c) output[outputLength++] = \"f\";\n                else if (char == 0x0d) output[outputLength++] = \"r\";\n                else if (char == 0x5c) output[outputLength++] = \"\\\\\";\n                else if (char == 0x22) {\n                    // solhint-disable-next-line quotes\n                    output[outputLength++] = '\"';\n                }\n            } else {\n                output[outputLength++] = char;\n            }\n        }\n        // write the actual length and deallocate unused memory\n        assembly (\"memory-safe\") {\n            mstore(output, outputLength)\n            mstore(0x40, add(output, shl(5, shr(5, add(outputLength, 63)))))\n        }\n\n        return string(output);\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(add(buffer, 0x20), offset))\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/types/Time.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.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 transition 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-exposed/CashFlowLender.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\n\npragma solidity >=0.6.0;\n\nimport \"../contracts/CashFlowLender.sol\";\nimport \"@openzeppelin/contracts/utils/introspection/ERC165.sol\";\nimport \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\nimport \"@ensuro/core/contracts/interfaces/IPolicyHolder.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\";\nimport \"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC4626.sol\";\nimport \"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\";\nimport \"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\";\nimport \"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\";\nimport \"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol\";\nimport \"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\";\nimport \"@openzeppelin/contracts/proxy/utils/Initializable.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC20Metadata.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC20.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC721.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC721Receiver.sol\";\nimport \"@openzeppelin/contracts/utils/Packing.sol\";\nimport \"@openzeppelin/contracts/utils/Address.sol\";\nimport \"@openzeppelin/contracts/utils/math/Math.sol\";\nimport \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\";\nimport \"../contracts/dependencies/IPolicyPool.sol\";\nimport \"../contracts/dependencies/IRiskModule.sol\";\nimport \"@ensuro/core/contracts/Policy.sol\";\nimport \"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol\";\nimport \"@ensuro/access-managed-proxy/contracts/AMPUtils.sol\";\nimport \"@openzeppelin/contracts/utils/LowLevelCall.sol\";\nimport \"@openzeppelin/contracts/utils/Memory.sol\";\nimport \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/IERC721.sol\";\nimport \"@openzeppelin/contracts/utils/Errors.sol\";\nimport \"@openzeppelin/contracts/utils/Panic.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC1363.sol\";\nimport \"@openzeppelin/contracts/access/manager/IAccessManager.sol\";\nimport \"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol\";\nimport \"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol\";\nimport \"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC1967.sol\";\nimport \"@openzeppelin/contracts/utils/StorageSlot.sol\";\nimport \"@openzeppelin/contracts/interfaces/IERC165.sol\";\nimport \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\";\nimport \"@openzeppelin/contracts/proxy/Proxy.sol\";\n\ncontract $CashFlowLender is CashFlowLender {\n    bytes32 public constant __hh_exposed_bytecode_marker = \"hardhat-exposed\";\n\n    mapping(uint256 => TargetConfig) internal $v_TargetConfig;\n\n    event return$_deinvest(uint256 deinvested);\n\n    event return$_changeDebt(int256 currentDebt_);\n\n    event return$_ensureLiquidBalance(uint256 balanceBefore);\n\n    constructor(address trustedForwarder_, IPolicyPool policyPool_) CashFlowLender(trustedForwarder_, policyPool_) payable {\n    }\n\n    function $JAN_1ST_2025() external pure returns (uint256) {\n        return JAN_1ST_2025;\n    }\n\n    function $SECONDS_PER_DAY() external pure returns (uint256) {\n        return SECONDS_PER_DAY;\n    }\n\n    function $_policyPool() external view returns (IPolicyPool) {\n        return _policyPool;\n    }\n\n    function $CashFlowLenderStorageLocation() external pure returns (bytes32) {\n        return CashFlowLenderStorageLocation;\n    }\n\n    function $onlyPolicyPool() external payable onlyPolicyPool() {}\n\n    function $forwardNewPolicyWrapper(address target) external payable forwardNewPolicyWrapper(target) {}\n\n    function $forwardResolvePolicyWrapper(address target) external payable forwardResolvePolicyWrapper(target) {}\n\n    function $onlyProxy() external payable onlyProxy() {}\n\n    function $notDelegated() external payable notDelegated() {}\n\n    function $initializer() external payable initializer() {}\n\n    function $reinitializer(uint64 version) external payable reinitializer(version) {}\n\n    function $onlyInitializing() external payable onlyInitializing() {}\n\n    function $__CashFlowLender_init(string calldata name_,string calldata symbol_,IERC4626 yieldVault_) external payable {\n        super.__CashFlowLender_init(name_,symbol_,yieldVault_);\n    }\n\n    function $__CashFlowLender_init_unchained(IERC4626 yieldVault_) external payable {\n        super.__CashFlowLender_init_unchained(yieldVault_);\n    }\n\n    function $_setYieldVault(IERC4626 yieldVault_) external payable {\n        super._setYieldVault(yieldVault_);\n    }\n\n    function $_getTargetConfig(address target) external view returns (TargetConfig memory targetConfig) {\n        (targetConfig) = super._getTargetConfig(target);\n    }\n\n    function $_authorizeUpgrade(address newImpl) external view {\n        super._authorizeUpgrade(newImpl);\n    }\n\n    function $_contextSuffixLength() external view returns (uint256 ret0) {\n        (ret0) = super._contextSuffixLength();\n    }\n\n    function $_msgSender() external view returns (address ret0) {\n        (ret0) = super._msgSender();\n    }\n\n    function $_msgData() external view returns (bytes memory ret0) {\n        (ret0) = super._msgData();\n    }\n\n    function $_balance() external view returns (uint256 ret0) {\n        (ret0) = super._balance();\n    }\n\n    function $_getMonth(uint256 dayInYear,bool isLeap) external pure returns (uint256 ret0) {\n        (ret0) = super._getMonth(dayInYear,isLeap);\n    }\n\n    function $_computeCalendarMonth(uint256 timestamp) external pure returns (uint32 slotIndex) {\n        (slotIndex) = super._computeCalendarMonth(timestamp);\n    }\n\n    function $_makeSlotIndex(uint32 slotSize,uint256 timestamp) external pure returns (uint32 slotIndex) {\n        (slotIndex) = super._makeSlotIndex(slotSize,timestamp);\n    }\n\n    function $_makeTargetSlot(address target,uint32 slotSize,uint32 slotIndex) external pure returns (TargetSlot slot) {\n        (slot) = super._makeTargetSlot(target,slotSize,slotIndex);\n    }\n\n    function $_deinvest(uint256 amount) external payable returns (uint256 deinvested) {\n        (deinvested) = super._deinvest(amount);\n        emit return$_deinvest(deinvested);\n    }\n\n    function $_changeDebt(address target,uint32 slotSize,uint32 slotIndex,int256 amount) external payable returns (int256 currentDebt_) {\n        (currentDebt_) = super._changeDebt(target,slotSize,slotIndex,amount);\n        emit return$_changeDebt(currentDebt_);\n    }\n\n    function $_ensureLiquidBalance(uint256 targetConfig) external payable returns (uint256 balanceBefore) {\n        (balanceBefore) = super._ensureLiquidBalance($v_TargetConfig[targetConfig]);\n        emit return$_ensureLiquidBalance(balanceBefore);\n    }\n\n    function $_increaseDebtAfterNewPolicy(address target,uint256 targetConfig,uint256 balanceBefore) external payable {\n        super._increaseDebtAfterNewPolicy(target,$v_TargetConfig[targetConfig],balanceBefore);\n    }\n\n    function $_checkCanForward(address caller,address target,bytes4 selector) external view {\n        super._checkCanForward(caller,target,selector);\n    }\n\n    function $_withdraw(address caller,address receiver,address owner,uint256 assets,uint256 shares) external payable {\n        super._withdraw(caller,receiver,owner,assets,shares);\n    }\n\n    function $__ERC4626_init(IERC20 asset_) external payable {\n        super.__ERC4626_init(asset_);\n    }\n\n    function $__ERC4626_init_unchained(IERC20 asset_) external payable {\n        super.__ERC4626_init_unchained(asset_);\n    }\n\n    function $_convertToShares(uint256 assets,Math.Rounding rounding) external view returns (uint256 ret0) {\n        (ret0) = super._convertToShares(assets,rounding);\n    }\n\n    function $_convertToAssets(uint256 shares,Math.Rounding rounding) external view returns (uint256 ret0) {\n        (ret0) = super._convertToAssets(shares,rounding);\n    }\n\n    function $_deposit(address caller,address receiver,uint256 assets,uint256 shares) external payable {\n        super._deposit(caller,receiver,assets,shares);\n    }\n\n    function $_decimalsOffset() external view returns (uint8 ret0) {\n        (ret0) = super._decimalsOffset();\n    }\n\n    function $__ERC20_init(string calldata name_,string calldata symbol_) external payable {\n        super.__ERC20_init(name_,symbol_);\n    }\n\n    function $__ERC20_init_unchained(string calldata name_,string calldata symbol_) external payable {\n        super.__ERC20_init_unchained(name_,symbol_);\n    }\n\n    function $_transfer(address from,address to,uint256 value) external payable {\n        super._transfer(from,to,value);\n    }\n\n    function $_update(address from,address to,uint256 value) external payable {\n        super._update(from,to,value);\n    }\n\n    function $_mint(address account,uint256 value) external payable {\n        super._mint(account,value);\n    }\n\n    function $_burn(address account,uint256 value) external payable {\n        super._burn(account,value);\n    }\n\n    function $_approve(address owner,address spender,uint256 value) external payable {\n        super._approve(owner,spender,value);\n    }\n\n    function $_approve(address owner,address spender,uint256 value,bool emitEvent) external payable {\n        super._approve(owner,spender,value,emitEvent);\n    }\n\n    function $_spendAllowance(address owner,address spender,uint256 value) external payable {\n        super._spendAllowance(owner,spender,value);\n    }\n\n    function $_checkProxy() external view {\n        super._checkProxy();\n    }\n\n    function $_checkNotDelegated() external view {\n        super._checkNotDelegated();\n    }\n\n    function $__Context_init() external payable {\n        super.__Context_init();\n    }\n\n    function $__Context_init_unchained() external payable {\n        super.__Context_init_unchained();\n    }\n\n    function $_checkInitializing() external view {\n        super._checkInitializing();\n    }\n\n    function $_disableInitializers() external payable {\n        super._disableInitializers();\n    }\n\n    function $_getInitializedVersion() external view returns (uint64 ret0) {\n        (ret0) = super._getInitializedVersion();\n    }\n\n    function $_isInitializing() external view returns (bool ret0) {\n        (ret0) = super._isInitializing();\n    }\n\n    function $_initializableStorageSlot() external pure returns (bytes32 ret0) {\n        (ret0) = super._initializableStorageSlot();\n    }\n\n    receive() external payable {}\n}\n"},"contracts/CashFlowLender.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.16;\n\nimport {ERC4626Upgradeable} from \"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol\";\nimport {ERC2771ContextUpgradeable} from \"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol\";\nimport {ContextUpgradeable} from \"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\";\nimport {IERC20Metadata} from \"@openzeppelin/contracts/interfaces/IERC20Metadata.sol\";\nimport {IERC20} from \"@openzeppelin/contracts/interfaces/IERC20.sol\";\nimport {IERC721} from \"@openzeppelin/contracts/interfaces/IERC721.sol\";\nimport {IERC721Receiver} from \"@openzeppelin/contracts/interfaces/IERC721Receiver.sol\";\nimport {IERC4626} from \"@openzeppelin/contracts/interfaces/IERC4626.sol\";\nimport {Packing} from \"@openzeppelin/contracts/utils/Packing.sol\";\nimport {Address} from \"@openzeppelin/contracts/utils/Address.sol\";\nimport {IERC721Receiver} from \"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\";\nimport {Math} from \"@openzeppelin/contracts/utils/math/Math.sol\";\nimport {SafeCast} from \"@openzeppelin/contracts/utils/math/SafeCast.sol\";\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {UUPSUpgradeable} from \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\";\nimport {ERC165} from \"@openzeppelin/contracts/utils/introspection/ERC165.sol\";\nimport {IPolicyPool} from \"./dependencies/IPolicyPool.sol\";\nimport {IRiskModule} from \"./dependencies/IRiskModule.sol\";\nimport {IPolicyHolder} from \"@ensuro/core/contracts/interfaces/IPolicyHolder.sol\";\nimport {Policy} from \"@ensuro/core/contracts/Policy.sol\";\nimport {AccessManagedProxy} from \"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol\";\nimport {AMPUtils} from \"@ensuro/access-managed-proxy/contracts/AMPUtils.sol\";\n\n/**\n * @title CashFlow Lender Module that tracks ownership\n * @dev Implements the ERC-4626 standard tracking how much liquidity was provided by each LP.\n *      The assets managed by the vault are a mix of liquid USDC + the $._totalDebt tracked by the CFL.\n *\n *      The debt is tracked as a global number, but also for each target and period (month for example). If the debt\n *      is negative, it means Ensuro owes to the customer.\n *\n *      The funds can also be sent to a $._yieldVault to generate yields on the idle funds.\n *\n *      The contract forwards the calls to the targets (Ensuro risk modules), but it has two variants for doing that\n *      a. forwardNewPolicy (and the batch variant): this method tracks the balance reduction caused by paying the\n *         premiums, and in base of that number increases the debt.\n *      b. forwardResolvePolicy (and the batch variant): this method just forwards the call (after doing access\n *         validations). The debt will be reduced when the policies are resolved and the PolicyPool calls\n *         `onPayoutReceived(...)`\n *\n *      The contract is a UUPSUpgradeable contract but MUST NOT be used with a plain ERC1967 proxy, but instead with\n *      an `AccessManagedProxy` that executes the access control. The contract DOESN'T IMPLEMENT ACCESS CONTROL\n *      validations on the critical methods. It's assumed it will be deployed behind an AccessManagedProxy with\n *      the proper access control setup.\n *\n * @custom:security-contact security@ensuro.co\n * @author Ensuro\n */\ncontract CashFlowLender is ERC2771ContextUpgradeable, UUPSUpgradeable, ERC4626Upgradeable, IPolicyHolder, ERC165 {\n  using SafeERC20 for IERC20Metadata;\n  using SafeCast for uint256;\n  using SafeCast for int256;\n  using Address for address;\n\n  bytes4 public constant OWN_POLICY_SELECTOR = 0xffffffff;\n\n  /**\n   * @dev Slot size used to indicate the slots use calendar months.\n   *      Only years from 2025 to 2099 are supported\n   */\n  uint32 public constant SLOTSIZE_CALENDAR_MONTH = type(uint32).max;\n\n  uint256 internal constant JAN_1ST_2025 = 1735689600;\n  uint256 internal constant SECONDS_PER_DAY = 86400;\n\n  /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n  IPolicyPool internal immutable _policyPool;\n\n  /**\n   * @dev The target slot is the (address target, uint32 slotSize, uint32 slotIndex) packed in a bytes32\n   *      The slotIndex is defined as block.timestamp / slotSize for non calendar month slots or as year*100 + month\n   *      for calendar month slots.\n   *      For example, the slot for Jan 2026 is 202601\n   */\n  type TargetSlot is bytes32; // (target_address, slotSize, block.timestamp / slotSize) packed as bytes32\n\n  /**\n   * @dev This status defines what kind of operations are enabled for a given target\n   */\n  enum TargetStatus {\n    inactive, // Nothing accepted\n    active, // Everything accepted\n    deprecated, // Only resolutions accepted\n    suspended // Nothing accepted\n  }\n\n  struct TargetConfig {\n    uint32 slotSize;\n    TargetStatus status;\n    uint96 debtLimit; // Max debt in a given period\n    uint96 minLiquidity; // Minimum cash required before a batch of new policies\n  }\n\n  /// @custom:storage-location erc7201:ensuro.storage.CashFlowLender\n  struct CashFlowLenderStorage {\n    IERC4626 _yieldVault;\n    int96 _totalDebt;\n    mapping(address => TargetConfig) _targets;\n    mapping(TargetSlot => int256) _debtByPeriod;\n  }\n\n  // keccak256(abi.encode(uint256(keccak256(\"ensuro.storage.CashFlowLender\")) - 1)) & ~bytes32(uint256(0xff))\n  // solhint-disable-next-line const-name-snakecase\n  bytes32 internal constant CashFlowLenderStorageLocation =\n    0x0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af00;\n\n  function _getCashFlowLenderStorage() internal pure returns (CashFlowLenderStorage storage $) {\n    // solhint-disable-next-line no-inline-assembly\n    assembly {\n      $.slot := CashFlowLenderStorageLocation\n    }\n  }\n\n  event YieldVaultChanged(IERC4626 oldVault, IERC4626 newVault);\n  event DebtChanged(\n    address indexed target,\n    uint32 slotSize,\n    uint32 slotIndex,\n    int256 value,\n    int256 debtAfterChange,\n    int256 totalDebtAfterChange\n  );\n  event CashOutPayout(\n    address indexed target,\n    uint32 slotSize,\n    uint32 slotIndex,\n    uint256 amount,\n    int256 debtAfterChange,\n    address destination\n  );\n  event RepayDebt(\n    address indexed target,\n    uint32 slotSize,\n    uint32 slotIndex,\n    uint256 amount,\n    int256 debtAfterChange,\n    address payer\n  );\n  event TargetAdded(address indexed target, TargetConfig config);\n  event TargetLimitsChanged(\n    address indexed target,\n    uint256 oldDebtLimit,\n    uint256 newDebtLimit,\n    uint256 oldMinLiquidity,\n    uint256 newMinLiquidity\n  );\n  event TargetStatusChanged(address indexed target, TargetStatus oldStatus, TargetStatus newStatus);\n  event TargetSlotSizeChanged(address indexed target, uint32 oldSlotSize, uint32 newSlotSize);\n\n  error InvalidPolicyPool();\n  error OnlyPolicyPool(address sender);\n  error TargetNotActive(address target, TargetStatus status);\n  error CannotDeactivateTarget();\n  error TargetAlreadyExists();\n  error InvalidSlotSize();\n  error DebtLimitExceeded(int256 currentDebt, uint96 debtLimit);\n  error UnauthorizedForward(address caller, address target, bytes4 requiredSelector);\n  error BalanceDecreasedOnResolve(uint256 balanceReduction);\n  error YieldVaultIsRequired();\n  error NotEnoughCash();\n  error TargetNotFound(address target);\n  error CashOutExceedsLimit(uint256 amount, int256 debtAfter);\n  error RepaymentExceedsLimit(uint256 amount, int256 debtAfter);\n  error CannotDeinvestYieldVault();\n\n  modifier onlyPolicyPool() {\n    // I intentionally use msg.sender instead of _msgSender() because I know the PolicyPool won't call\n    // via the forwarded.\n    require(msg.sender == address(_policyPool), OnlyPolicyPool(msg.sender));\n    _;\n  }\n\n  modifier forwardNewPolicyWrapper(address target) {\n    TargetConfig storage targetConfig = _getTargetConfig(target);\n    require(targetConfig.status == TargetStatus.active, TargetNotActive(target, targetConfig.status));\n\n    // Measure the balance change\n    uint256 balanceBefore = _ensureLiquidBalance(targetConfig);\n    _;\n    _increaseDebtAfterNewPolicy(target, targetConfig, balanceBefore);\n  }\n\n  modifier forwardResolvePolicyWrapper(address target) {\n    TargetConfig storage targetConfig = _getTargetConfig(target);\n    require(\n      targetConfig.status == TargetStatus.active || targetConfig.status == TargetStatus.deprecated,\n      TargetNotActive(target, targetConfig.status)\n    );\n\n    // Measure the balance change to check it doesn't goes down\n    uint256 balanceBefore = _balance();\n    _;\n    uint256 balanceAfter = _balance();\n\n    if (balanceAfter < balanceBefore) {\n      revert BalanceDecreasedOnResolve(balanceBefore - balanceAfter);\n    }\n  }\n\n  /// @custom:oz-upgrades-unsafe-allow constructor\n  constructor(address trustedForwarder_, IPolicyPool policyPool_) ERC2771ContextUpgradeable(trustedForwarder_) {\n    _policyPool = policyPool_;\n    _disableInitializers();\n  }\n\n  /**\n   * @dev Initializes the CashFlowLender\n   *\n   * @param name_ Name of the accounting token (ERC20) for the LPs\n   * @param symbol_ Symbol of the accounting token (ERC20) for the LPs\n   * @param yieldVault_ An ERC-4626 vault where funds can be deployed to generate extra yields for the CFL LPs.\n   */\n  function initialize(string memory name_, string memory symbol_, IERC4626 yieldVault_) public virtual initializer {\n    __CashFlowLender_init(name_, symbol_, yieldVault_);\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function __CashFlowLender_init(\n    string memory name_,\n    string memory symbol_,\n    IERC4626 yieldVault_\n  ) internal onlyInitializing {\n    address asset_ = address(_policyPool.currency());\n    __ERC4626_init(IERC20(asset_));\n    __ERC20_init(name_, symbol_);\n    __CashFlowLender_init_unchained(yieldVault_);\n  }\n\n  // solhint-disable-next-line func-name-mixedcase\n  function __CashFlowLender_init_unchained(IERC4626 yieldVault_) internal onlyInitializing {\n    // Infinite approval to the PolicyPool to pay the premiums\n    _policyPool.currency().approve(address(_policyPool), type(uint256).max);\n    _setYieldVault(yieldVault_);\n  }\n\n  function _setYieldVault(IERC4626 yieldVault_) internal {\n    require(address(yieldVault_) != address(0), YieldVaultIsRequired());\n    // I explicitly avoid checking yieldVault_.asset() == asset().\n    // This is to support migration of the asset (from USDC bridged to USDC native) that is on the roadmap\n    // Only temporarily, during a migration we might have that difference\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    IERC4626 oldVault = $._yieldVault;\n    $._yieldVault = yieldVault_;\n    if (address(oldVault) != address(0)) IERC20Metadata(asset()).approve(address(oldVault), 0);\n    IERC20Metadata(asset()).approve(address(yieldVault_), type(uint256).max);\n    emit YieldVaultChanged(oldVault, yieldVault_);\n  }\n\n  /**\n   * @dev Changes the Yield Vault, deinvesting all the funds before doing it.\n   *\n   * @param yieldVault_ An ERC-4626 vault where funds can be deployed to generate extra yields for the CFL LPs.\n   * @param force If true, it continues the operation even if some of the funds aren't withdrawable.\n   *\n   * Emits a {YieldVaultChanged} event\n   */\n  function setYieldVault(IERC4626 yieldVault_, bool force) external {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    uint256 yieldAssets = $._yieldVault.convertToAssets($._yieldVault.balanceOf(address(this)));\n    require(_deinvest(yieldAssets) == yieldAssets || force, CannotDeinvestYieldVault());\n    _setYieldVault(yieldVault_);\n  }\n\n  function yieldVault() external view returns (IERC4626) {\n    return _getCashFlowLenderStorage()._yieldVault;\n  }\n\n  function policyPool() external view returns (IPolicyPool) {\n    return _policyPool;\n  }\n\n  function _getTargetConfig(address target) internal view returns (TargetConfig storage targetConfig) {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    targetConfig = $._targets[target];\n    require(targetConfig.status != TargetStatus.inactive, TargetNotFound(target));\n  }\n\n  /**\n   * @dev Adds a new target that can be used later to forward policies and track the debt.\n   *\n   * @param target Address of the target contract. It should be an Ensuro's RiskModule\n   * @param slotSize Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\n   * @param debtLimit Limit of the debt in a given period for the target.\n   * @param minLiquidity Minimum liquidity tried to achieve before forwardNewPolicy. If cash (see `_balance()`) is\n   *                     lower than this amount, it will try to deinvest the funds to leave _balance() = minLiquidity\n   *\n   * Emits a {TargetAdded} event\n   */\n  function addTarget(address target, uint32 slotSize, uint256 debtLimit, uint256 minLiquidity) external {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    TargetConfig storage targetConfig = $._targets[target];\n    require(targetConfig.status == TargetStatus.inactive, TargetAlreadyExists());\n    require(slotSize != 0, InvalidSlotSize());\n    $._targets[target] = TargetConfig({\n      status: TargetStatus.active,\n      slotSize: slotSize,\n      debtLimit: debtLimit.toUint96(),\n      minLiquidity: minLiquidity.toUint96()\n    });\n    emit TargetAdded(target, targetConfig);\n  }\n\n  /**\n   * @dev Changes debtLimit and minLiquidity for a given target.\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param debtLimit New limit of the debt in a given period for the target.\n   * @param minLiquidity Minimum liquidity tried to achieve before forwardNewPolicy. If cash (see `_balance()`) is\n   *                     lower than this amount, it will try to deinvest the funds to leave _balance() = minLiquidity\n   *\n   * Emits a {TargetLimitsChanged} event\n   */\n  function setTargetLimits(address target, uint256 debtLimit, uint256 minLiquidity) external {\n    TargetConfig storage targetConfig = _getTargetConfig(target);\n    emit TargetLimitsChanged(target, targetConfig.debtLimit, debtLimit, targetConfig.minLiquidity, minLiquidity);\n    targetConfig.debtLimit = debtLimit.toUint96();\n    targetConfig.minLiquidity = minLiquidity.toUint96();\n  }\n\n  /**\n   * @dev Changes status of a given target. See {TargetStatus}.\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param newStatus The new status of the contract\n   *\n   * Emits a {TargetStatusChanged} event\n   */\n  function setTargetStatus(address target, TargetStatus newStatus) external {\n    // Check the newStatus != inactive. If you want to disable a target, move it to suspended\n    require(newStatus != TargetStatus.inactive, CannotDeactivateTarget());\n    TargetConfig storage targetConfig = _getTargetConfig(target);\n    emit TargetStatusChanged(target, targetConfig.status, newStatus);\n    targetConfig.status = newStatus;\n  }\n\n  function getTargetStatus(address target) external view returns (TargetStatus) {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    return $._targets[target].status;\n  }\n\n  /**\n   * @dev Changes the slotSize of a given target.\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param newSlotSize New duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\n   *\n   * Emits a {TargetStatusChanged} event\n   */\n  function setTargetSlotSize(address target, uint32 newSlotSize) external {\n    require(newSlotSize != 0, InvalidSlotSize());\n    TargetConfig storage targetConfig = _getTargetConfig(target);\n    emit TargetSlotSizeChanged(target, targetConfig.slotSize, newSlotSize);\n    targetConfig.slotSize = newSlotSize;\n  }\n\n  /// @inheritdoc ERC165\n  function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n    return\n      interfaceId == type(IERC721Receiver).interfaceId ||\n      interfaceId == type(IPolicyHolder).interfaceId ||\n      interfaceId == type(IERC20).interfaceId ||\n      interfaceId == type(IERC20Metadata).interfaceId ||\n      interfaceId == type(IERC4626).interfaceId ||\n      super.supportsInterface(interfaceId);\n  }\n\n  // solhint-disable-next-line no-empty-blocks\n  function _authorizeUpgrade(address newImpl) internal view override {}\n\n  /// @inheritdoc IERC721Receiver\n  function onERC721Received(\n    address,\n    address,\n    uint256,\n    bytes calldata\n  ) external view override onlyPolicyPool returns (bytes4) {\n    return IERC721Receiver.onERC721Received.selector;\n  }\n\n  /// @inheritdoc IPolicyHolder\n  function onPolicyExpired(address, address, uint256) external view override onlyPolicyPool returns (bytes4) {\n    return IPolicyHolder.onPolicyExpired.selector;\n  }\n\n  /// @inheritdoc IPolicyHolder\n  function onPayoutReceived(\n    address operator,\n    address,\n    uint256,\n    uint256 amount\n  ) external override onlyPolicyPool returns (bytes4) {\n    // In the PolicyPool the `operator` == _msgSender() for the payout call is the Risk Module, so, it's the same\n    // target we called on newPolicy.\n    TargetConfig storage targetConfig = _getTargetConfig(operator);\n    require(\n      targetConfig.status == TargetStatus.active || targetConfig.status == TargetStatus.deprecated,\n      TargetNotActive(operator, targetConfig.status)\n    );\n    _changeDebt(\n      operator,\n      targetConfig.slotSize,\n      _makeSlotIndex(targetConfig.slotSize, block.timestamp),\n      -amount.toInt256()\n    );\n    return IPolicyHolder.onPayoutReceived.selector;\n  }\n\n  /// @inheritdoc IPolicyHolder\n  function onPolicyReplaced(address, address, uint256, uint256) external view override onlyPolicyPool returns (bytes4) {\n    return IPolicyHolder.onPolicyReplaced.selector;\n  }\n\n  /// @inheritdoc IPolicyHolder\n  function onPolicyCancelled(\n    address operator,\n    address,\n    uint256,\n    uint256 purePremiumRefund,\n    uint256 jrCocRefund,\n    uint256 srCocRefund\n  ) external override onlyPolicyPool returns (bytes4) {\n    // In the PolicyPool the `operator` == _msgSender() for the cancel call is the Risk Module, so, it's the same\n    // target we called on newPolicy.\n    TargetConfig storage targetConfig = _getTargetConfig(operator);\n    require(\n      targetConfig.status == TargetStatus.active || targetConfig.status == TargetStatus.deprecated,\n      TargetNotActive(operator, targetConfig.status)\n    );\n    uint256 totalRefund = purePremiumRefund + jrCocRefund + srCocRefund;\n    _changeDebt(\n      operator,\n      targetConfig.slotSize,\n      _makeSlotIndex(targetConfig.slotSize, block.timestamp),\n      -totalRefund.toInt256()\n    );\n    return IPolicyHolder.onPolicyCancelled.selector;\n  }\n\n  // Fix Context base contract duplicates\n\n  /// @inheritdoc ERC2771ContextUpgradeable\n  function _contextSuffixLength()\n    internal\n    view\n    override(ContextUpgradeable, ERC2771ContextUpgradeable)\n    returns (uint256)\n  {\n    return ERC2771ContextUpgradeable._contextSuffixLength();\n  }\n\n  /// @inheritdoc ERC2771ContextUpgradeable\n  function _msgSender() internal view override(ContextUpgradeable, ERC2771ContextUpgradeable) returns (address) {\n    return ERC2771ContextUpgradeable._msgSender();\n  }\n\n  /// @inheritdoc ERC2771ContextUpgradeable\n  function _msgData() internal view override(ContextUpgradeable, ERC2771ContextUpgradeable) returns (bytes calldata) {\n    return ERC2771ContextUpgradeable._msgData();\n  }\n\n  function _balance() internal view returns (uint256) {\n    return IERC20Metadata(asset()).balanceOf(address(this));\n  }\n\n  function _getMonth(uint256 dayInYear, bool isLeap) internal pure returns (uint256) {\n    // Method implemented as a table instead of a loop for gas savings.\n    // Saves around 300 gas per call.\n    if (dayInYear < 31) return 1;\n    if (isLeap) {\n      if (dayInYear < 60) return 2;\n      dayInYear--;\n    } else {\n      if (dayInYear < 59) return 2;\n    }\n    return\n      (dayInYear < 90)\n        ? 3\n        : (dayInYear < 120)\n          ? 4\n          : (dayInYear < 151)\n            ? 5\n            : (dayInYear < 181)\n              ? 6\n              : (dayInYear < 212)\n                ? 7\n                : (dayInYear < 243)\n                  ? 8\n                  : (dayInYear < 273)\n                    ? 9\n                    : (dayInYear < 304)\n                      ? 10\n                      : (dayInYear < 334)\n                        ? 11\n                        : 12;\n  }\n\n  function _computeCalendarMonth(uint256 timestamp) internal pure returns (uint32 slotIndex) {\n    bool isLeap;\n    slotIndex = 2025;\n    uint256 daysRemaining = (timestamp - JAN_1ST_2025) / SECONDS_PER_DAY;\n\n    // Iterate through years to find the correct year\n    while (daysRemaining >= (isLeap ? 366 : 365)) {\n      daysRemaining -= isLeap ? 366 : 365;\n      ++slotIndex;\n      isLeap = slotIndex % 4 == 0 && (slotIndex % 100 != 0 || slotIndex % 400 == 0);\n    }\n    return uint32(slotIndex * 100 + _getMonth(daysRemaining, isLeap));\n  }\n\n  function _makeSlotIndex(uint32 slotSize, uint256 timestamp) internal pure returns (uint32 slotIndex) {\n    return (slotSize == SLOTSIZE_CALENDAR_MONTH) ? _computeCalendarMonth(timestamp) : uint32(timestamp / slotSize);\n  }\n\n  function _makeTargetSlot(address target, uint32 slotSize, uint32 slotIndex) internal pure returns (TargetSlot slot) {\n    return TargetSlot.wrap(Packing.pack_20_8(bytes20(target), Packing.pack_4_4(bytes4(slotSize), bytes4(slotIndex))));\n  }\n\n  function _deinvest(uint256 amount) internal returns (uint256 deinvested) {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    deinvested = Math.min(amount, $._yieldVault.maxWithdraw(address(this)));\n    $._yieldVault.withdraw(deinvested, address(this), address(this));\n  }\n\n  function _changeDebt(\n    address target,\n    uint32 slotSize,\n    uint32 slotIndex,\n    int256 amount\n  ) internal returns (int256 currentDebt_) {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    TargetSlot slot = _makeTargetSlot(target, slotSize, slotIndex);\n    currentDebt_ = $._debtByPeriod[slot] += amount;\n    $._totalDebt += int96(amount);\n    emit DebtChanged(target, slotSize, slotIndex, int256(amount), currentDebt_, $._totalDebt);\n  }\n\n  /**\n   * @dev Computes a fake selector used to enable or disable in the AccessManager linked to the contract to enable\n   *      a given call (selector) to a given target\n   *\n   * @param target Address of the target contract.\n   * @param selector The 4-bytes method selector of the method to be called in the target\n   */\n  function makeFakeSelector(address target, bytes4 selector) public pure returns (bytes4) {\n    return AMPUtils.makeSelector(abi.encodePacked(target, selector));\n  }\n\n  function _ensureLiquidBalance(TargetConfig storage targetConfig) internal returns (uint256 balanceBefore) {\n    // Measure the balance change\n    balanceBefore = _balance();\n\n    if (balanceBefore < uint256(targetConfig.minLiquidity)) {\n      _deinvest(uint256(targetConfig.minLiquidity) - balanceBefore);\n      balanceBefore = _balance();\n    }\n  }\n\n  function _increaseDebtAfterNewPolicy(\n    address target,\n    TargetConfig storage targetConfig,\n    uint256 balanceBefore\n  ) internal {\n    uint256 balanceAfter = _balance();\n\n    if (balanceAfter < balanceBefore) {\n      // Should always increase the debt, but just in case...\n      int256 currDebt = _changeDebt(\n        target,\n        targetConfig.slotSize,\n        _makeSlotIndex(targetConfig.slotSize, block.timestamp),\n        (balanceBefore - balanceAfter).toInt256()\n      );\n      require(currDebt <= int256(uint256(targetConfig.debtLimit)), DebtLimitExceeded(currDebt, targetConfig.debtLimit));\n    }\n  }\n\n  function _checkCanForward(address caller, address target, bytes4 selector) internal view {\n    bytes4 fakeSelector = makeFakeSelector(target, selector);\n    (bool immediate, ) = AccessManagedProxy(payable(address(this))).ACCESS_MANAGER().canCall(\n      caller,\n      address(this),\n      fakeSelector\n    );\n    require(immediate, UnauthorizedForward(caller, target, fakeSelector));\n  }\n\n  function forwardNewPolicyV3(\n    address target,\n    bytes calldata inputData,\n    address onBehalfOf\n  ) external forwardNewPolicyWrapper(target) returns (Policy.PolicyData memory policy) {\n    _checkCanForward(_msgSender(), target, bytes4(IRiskModule.newPolicy.selector));\n    if (onBehalfOf != address(this)) _checkCanForward(_msgSender(), target, OWN_POLICY_SELECTOR);\n    return IRiskModule(target).newPolicy(inputData, onBehalfOf);\n  }\n\n  function forwardNewPoliciesV3(\n    address target,\n    bytes[] calldata inputData,\n    address onBehalfOf\n  ) external forwardNewPolicyWrapper(target) {\n    _checkCanForward(_msgSender(), target, bytes4(IRiskModule.newPolicy.selector));\n    if (onBehalfOf != address(this)) _checkCanForward(_msgSender(), target, OWN_POLICY_SELECTOR);\n    IRiskModule(target).newPolicies(inputData, onBehalfOf);\n  }\n\n  /**\n   * @dev Forwards a call to the target contract, previously checking the target is active and tracking the increased\n   *      debt (in the current time slot).\n   *\n   *      When the `_balance()` is lower than `targetConfig.minLiquidity` it deinvests, but it doesn't fail if can't\n   *      deinvest all the required funds. If the required premiums are higher than the available balance, then it\n   *      will fail anyway.\n   *\n   *      If after the operation the debt is higher than targetConfig.debtLimit, it reverts.\n   *\n   *      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\n   *\n   *      Requires the return value of the called function returns the policyId and checks if the resulting policy\n   *      (a PolicyPool NFT), is owned by the CFL.\n   *      If it's not, it requires the _msgSender() has permission to call address(this) on\n   *      `makeFakeSelector(target, OWN_POLICY_SELECTOR)`\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param data The call to execute on the target contract\n   */\n  function forwardNewPolicy(\n    address target,\n    bytes calldata data\n  ) external forwardNewPolicyWrapper(target) returns (bytes memory result) {\n    _checkCanForward(_msgSender(), target, bytes4(data[0:4]));\n    result = target.functionCall(data);\n    uint256 policyId = abi.decode(result, (uint256));\n    if (IERC721(address(_policyPool)).ownerOf(policyId) != address(this)) {\n      // Check the caller is allowed to create policies not owned by the CFL\n      _checkCanForward(_msgSender(), target, OWN_POLICY_SELECTOR);\n    }\n  }\n\n  /**\n   * @dev Forwards a call to the target contract, previously checking the target is active and tracking the increased\n   *      debt (in the current time slot). Batch version (multiple calls at once).\n   *\n   *      When the `_balance()` is lower than `targetConfig.minLiquidity` it deinvests, but it doesn't fail if can't\n   *      deinvest all the required funds. If the required premiums are higher than the available balance, then it\n   *      will fail anyway.\n   *\n   *      If after the operation the debt is higher than targetConfig.debtLimit, it reverts.\n   *\n   *      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\n   *\n   *      Requires the return value of the called function returns the policyId and checks if the resulting policy\n   *      (a PolicyPool NFT), is owned by the CFL.\n   *      If it's not, it requires the _msgSender() has permission to call address(this) on\n   *      `makeFakeSelector(target, OWN_POLICY_SELECTOR)`\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param data[] The calls to execute on the target contract\n   */\n  function forwardNewPolicyBatch(\n    address target,\n    bytes[] calldata data\n  ) external forwardNewPolicyWrapper(target) returns (bytes[] memory result) {\n    bytes4 lastSelector;\n    bool ownOK = false;\n    result = new bytes[](data.length);\n    for (uint256 i; i < data.length; ++i) {\n      bytes4 selector = bytes4(data[i][0:4]);\n      if (i == 0 || selector != lastSelector) {\n        // After the first one, only re-checks if the selector changed\n        _checkCanForward(_msgSender(), target, selector);\n        lastSelector = selector;\n      }\n      result[i] = target.functionCall(data[i]);\n      if (!ownOK) {\n        uint256 policyId = abi.decode(result[i], (uint256));\n        if (IERC721(address(_policyPool)).ownerOf(policyId) != address(this)) {\n          // Check the caller is allowed to create policies not owned by the CFL\n          _checkCanForward(_msgSender(), target, OWN_POLICY_SELECTOR);\n          ownOK = true;\n        }\n      }\n    }\n  }\n\n  /**\n   * @dev Forwards a call to the target contract, previously checking the target is active (or deprecated). It doesn't\n   *      track the debt change explicitly, but this should change when policies are resolved and onPayoutReceived\n   *      is called.\n   *\n   *      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param data The calls to execute on the target contract\n   */\n  function forwardResolvePolicy(\n    address target,\n    bytes calldata data\n  ) external forwardResolvePolicyWrapper(target) returns (bytes memory result) {\n    _checkCanForward(_msgSender(), target, bytes4(data[0:4]));\n    result = target.functionCall(data);\n  }\n\n  /**\n   * @dev Forwards a call to the target contract, previously checking the target is active (or deprecated). It doesn't\n   *      track the debt change explicitly, but this should change when policies are resolved and onPayoutReceived\n   *      is called. Batch version (multiple calls at once).\n   *\n   *      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param data[] The calls to execute on the target contract\n   */\n  function forwardResolvePolicyBatch(\n    address target,\n    bytes[] calldata data\n  ) external forwardResolvePolicyWrapper(target) returns (bytes[] memory result) {\n    bytes4 lastSelector;\n    result = new bytes[](data.length);\n    for (uint256 i; i < data.length; ++i) {\n      bytes4 selector = bytes4(data[i][0:4]);\n      if (i == 0 || selector != lastSelector) {\n        // After the first one, only re-checks if the selector changed\n        _checkCanForward(_msgSender(), target, selector);\n        lastSelector = selector;\n      }\n      result[i] = target.functionCall(data[i]);\n    }\n  }\n\n  function currentDebt() external view returns (int256) {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    return int256($._totalDebt);\n  }\n\n  function getDebtForPeriod(address target, uint32 slotSize, uint32 slotIndex) external view returns (int256) {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    return $._debtByPeriod[_makeTargetSlot(target, slotSize, slotIndex)];\n  }\n\n  /// @inheritdoc ERC4626Upgradeable\n  function totalAssets() public view override returns (uint256 assets) {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    assets = _balance();\n    assets += $._yieldVault.convertToAssets($._yieldVault.balanceOf(address(this)));\n    if ($._totalDebt < 0) {\n      assets -= uint256(-int256($._totalDebt));\n    } else {\n      assets += uint256(int256($._totalDebt));\n    }\n  }\n\n  function cashWithdrawable() public view returns (uint256) {\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    return _balance() + $._yieldVault.maxWithdraw(address(this));\n  }\n\n  /// @inheritdoc ERC4626Upgradeable\n  function maxRedeem(address owner) public view virtual override returns (uint256) {\n    return Math.min(super.maxRedeem(owner), convertToShares(cashWithdrawable()));\n  }\n\n  /// @inheritdoc ERC4626Upgradeable\n  function maxWithdraw(address owner) public view virtual override returns (uint256) {\n    return Math.min(super.maxWithdraw(owner), cashWithdrawable());\n  }\n\n  function _withdraw(\n    address caller,\n    address receiver,\n    address owner,\n    uint256 assets,\n    uint256 shares\n  ) internal virtual override {\n    uint256 balance = _balance();\n    if (balance < assets) {\n      // If not enough money liquid in the contract, deinvests from the vault\n      CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n      require((assets - balance) <= $._yieldVault.maxWithdraw(address(this)), NotEnoughCash());\n      $._yieldVault.withdraw(assets - balance, address(this), address(this));\n    }\n    super._withdraw(caller, receiver, owner, assets, shares);\n  }\n\n  /**\n   * @dev Deinvest from the vault a given amount.\n   *\n   *      Requires $._yieldVault.maxWithdraw() <= amount\n   *\n   * @param amount Amount to withdraw from the `$._yieldVault`. If equal type(uint256).max, deinvests maxWithdraw()\n   */\n  function withdrawFromYieldVault(uint256 amount) external {\n    if (amount == type(uint256).max) {\n      CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n      amount = $._yieldVault.maxWithdraw(address(this));\n    }\n    require(_deinvest(amount) == amount, NotEnoughCash());\n  }\n\n  /**\n   * @dev Moves money that's liquid in the contract to the yield vault, to generate yields\n   *\n   *      Requires _balance() >= amount\n   *\n   * @param amount Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\n   */\n  function depositIntoYieldVault(uint256 amount) external {\n    if (amount == type(uint256).max) {\n      amount = _balance();\n    } else {\n      require(amount <= _balance(), NotEnoughCash());\n    }\n    CashFlowLenderStorage storage $ = _getCashFlowLenderStorage();\n    $._yieldVault.deposit(amount, address(this));\n  }\n\n  /**\n   * @dev Extracts money from the CFL that's owed to the customer, adjusting the debt (from negative to less negative)\n   *      in a given slot\n   *\n   *      Requires the debt of the slot <= -amount\n   *      Requires the CFL has enough funds (liquid + invested in the $._yieldVault)\n   *\n   *      emits {CashOutPayout}\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param slotSize Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\n   * @param slotIndex Current slot time selected\n   * @param amount Amount to cash out\n   * @param destination Address that will receive the funds\n   */\n  function cashOutPayouts(\n    address target,\n    uint32 slotSize,\n    uint32 slotIndex,\n    uint256 amount,\n    address destination\n  ) external {\n    _getTargetConfig(target);\n    // Modify the debt\n    int256 debtAfter = _changeDebt(target, slotSize, slotIndex, amount.toInt256());\n    require(debtAfter <= 0, CashOutExceedsLimit(amount, debtAfter));\n\n    // Transfer the asset (deinvest if needed)\n    uint256 balance = _balance();\n    if (balance < amount) {\n      require(_deinvest(amount - balance) == (amount - balance), NotEnoughCash());\n    }\n    IERC20Metadata(asset()).safeTransfer(destination, amount);\n    emit CashOutPayout(target, slotSize, slotIndex, amount, debtAfter, destination);\n  }\n\n  /**\n   * @dev Repays debt to the CFL that's owed by the customer, adjusting the debt (from positive to less positive)\n   *      in a given slot\n   *\n   *      Requires the debt of the slot >= amount\n   *\n   *      emits {RepayDebt}\n   *\n   * @param target Address of the target contract. It must be one previously added with {addTarget}.\n   * @param slotSize Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\n   * @param slotIndex Current slot time selected\n   * @param amount Amount to pay\n   */\n  function repayDebt(address target, uint32 slotSize, uint32 slotIndex, uint256 amount) external {\n    _getTargetConfig(target);\n\n    // Modify the debt\n    int256 debtAfter = _changeDebt(target, slotSize, slotIndex, -amount.toInt256());\n    require(debtAfter >= 0, RepaymentExceedsLimit(amount, debtAfter));\n\n    IERC20Metadata(asset()).safeTransferFrom(_msgSender(), address(this), amount);\n    emit RepayDebt(target, slotSize, slotIndex, amount, debtAfter, _msgSender());\n  }\n}\n"},"contracts/dependencies/IPolicyPool.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {IERC20Metadata} from \"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\";\n\n/**\n * @dev Minimalistic version of the IPolicyPool interface, just the methods needed for this project\n */\ninterface IPolicyPool {\n  /**\n   * @dev Reference to the main currency (ERC20) used in the protocol\n   * @return The address of the currency (e.g. USDC) token used in the protocol\n   */\n  function currency() external view returns (IERC20Metadata);\n}\n"},"contracts/dependencies/IRiskModule.sol":{"content":"// SPDX-License-Identifier: Apache-2.0\npragma solidity ^0.8.0;\n\nimport {Policy} from \"@ensuro/core/contracts/Policy.sol\";\n\n/**\n * @dev Minimalistic version of the IRiskModule interface, just the methods needed for this project\n */\ninterface IRiskModule {\n  /**\n   * @dev Creates a new policy. The premium will paid by msg.sender\n   *\n   * @param inputData Input data that will be decoded by the _underwriter to construct the parameters for the\n   *                  new policy.\n   * @param onBehalfOf The address that will be the owner of the created policy\n   */\n  function newPolicy(bytes calldata inputData, address onBehalfOf) external returns (Policy.PolicyData memory policy);\n\n  /**\n   * @dev Creates several policies, the premium is paid by msg.sender\n   *\n   * @param inputData Input data that will be decoded by the _underwriter to construct the parameters for the\n   *                  new policy.\n   * @param onBehalfOf The address that will be the owner of the created policy (same for all the policies)\n   */\n  function newPolicies(bytes[] calldata inputData, address onBehalfOf) external;\n}\n"},"contracts/hardhat-dependency-compiler/@account-abstraction/contracts/core/EntryPoint.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@account-abstraction/contracts/core/EntryPoint.sol';\n"},"contracts/hardhat-dependency-compiler/@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol';\n"},"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/EToken.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/core/contracts/EToken.sol';\n"},"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/interfaces/IPolicyHolder.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/core/contracts/interfaces/IPolicyHolder.sol';\n"},"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/PolicyPool.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/core/contracts/PolicyPool.sol';\n"},"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/PremiumsAccount.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/core/contracts/PremiumsAccount.sol';\n"},"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/RiskModule.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/core/contracts/RiskModule.sol';\n"},"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/underwriters/FullSignedUW.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/core/contracts/underwriters/FullSignedUW.sol';\n"},"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/underwriters/FullTrustedUW.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/core/contracts/underwriters/FullTrustedUW.sol';\n"},"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestCurrency.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/utils/contracts/TestCurrency.sol';\n"},"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestERC4626.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@ensuro/utils/contracts/TestERC4626.sol';\n"},"contracts/hardhat-dependency-compiler/@openzeppelin/contracts/access/manager/AccessManager.sol":{"content":"// SPDX-License-Identifier: UNLICENSED\npragma solidity >0.0.0;\nimport '@openzeppelin/contracts/access/manager/AccessManager.sol';\n"}},"settings":{"optimizer":{"enabled":true,"runs":200},"evmVersion":"prague","outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata","storageLayout"],"":["ast"]}}}},"output":{"errors":[{"component":"general","errorCode":"3628","formattedMessage":"Warning: This contract has a payable fallback function, but no receive ether function. Consider adding a receive ether function.\n  --> @ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol:25:1:\n   |\n25 | abstract contract AccessManagedProxyBase is ERC1967Proxy, IAccessManagedProxy {\n   | ^ (Relevant source part starts here and spans across multiple lines).\nNote: The payable fallback function is defined here.\n  --> @openzeppelin/contracts/proxy/Proxy.sol:66:5:\n   |\n66 |     fallback() external payable virtual {\n   |     ^ (Relevant source part starts here and spans across multiple lines).\n\n","message":"This contract has a payable fallback function, but no receive ether function. Consider adding a receive ether function.","secondarySourceLocations":[{"end":2694,"file":"@openzeppelin/contracts/proxy/Proxy.sol","message":"The payable fallback function is defined here.","start":2630}],"severity":"warning","sourceLocation":{"end":3653,"file":"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol","start":1098},"type":"Warning"},{"component":"general","errorCode":"3628","formattedMessage":"Warning: This contract has a payable fallback function, but no receive ether function. Consider adding a receive ether function.\n  --> @ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol:29:1:\n   |\n29 | contract AccessManagedProxy is AccessManagedProxyBase {\n   | ^ (Relevant source part starts here and spans across multiple lines).\nNote: The payable fallback function is defined here.\n  --> @openzeppelin/contracts/proxy/Proxy.sol:66:5:\n   |\n66 |     fallback() external payable virtual {\n   |     ^ (Relevant source part starts here and spans across multiple lines).\n\n","message":"This contract has a payable fallback function, but no receive ether function. Consider adding a receive ether function.","secondarySourceLocations":[{"end":2694,"file":"@openzeppelin/contracts/proxy/Proxy.sol","message":"The payable fallback function is defined here.","start":2630}],"severity":"warning","sourceLocation":{"end":3544,"file":"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol","start":1448},"type":"Warning"},{"component":"general","errorCode":"5574","formattedMessage":"Warning: Contract code size is 26879 bytes and exceeds 24576 bytes (a limit introduced in Spurious Dragon). This contract may not be deployable on Mainnet. Consider enabling the optimizer (with a low \"runs\" value!), turning off revert strings, or using libraries.\n  --> contracts-exposed/CashFlowLender.sol:53:1:\n   |\n53 | contract $CashFlowLender is CashFlowLender {\n   | ^ (Relevant source part starts here and spans across multiple lines).\n\n","message":"Contract code size is 26879 bytes and exceeds 24576 bytes (a limit introduced in Spurious Dragon). This contract may not be deployable on Mainnet. Consider enabling the optimizer (with a low \"runs\" value!), turning off revert strings, or using libraries.","severity":"warning","sourceLocation":{"end":10842,"file":"contracts-exposed/CashFlowLender.sol","start":2995},"type":"Warning"}],"sources":{"@account-abstraction/contracts/core/BaseAccount.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/BaseAccount.sol","exportedSymbols":{"BaseAccount":[138],"IAccount":[3335],"IAggregator":[3382],"IEntryPoint":[3566],"INonceManager":[3585],"IStakeManager":[3726],"PackedUserOperation":[3748],"UserOperationLib":[3318],"calldataKeccak":[2397],"min":[2415]},"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":3336,"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":3567,"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":3319,"src":"222:32:0","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":6,"name":"IAccount","nameLocations":["522:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":3335,"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,3335],"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":3318,"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":3748,"src":"564:19:0"},"referencedDeclaration":3748,"src":"564:19:0","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_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_$3566_$","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_$3566","typeString":"contract IEntryPoint"}},"id":19,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"859:8:0","memberName":"getNonce","nodeType":"MemberAccess","referencedDeclaration":3578,"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_$3566","typeString":"contract IEntryPoint"},"typeName":{"id":32,"nodeType":"UserDefinedTypeName","pathNode":{"id":31,"name":"IEntryPoint","nameLocations":["1091:11:0"],"nodeType":"IdentifierPath","referencedDeclaration":3566,"src":"1091:11:0"},"referencedDeclaration":3566,"src":"1091:11:0","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"visibility":"internal"}],"src":"1090:13:0"},"scope":138,"src":"1040:64:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[3334],"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_$3748_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_$3748_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_$3748_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_$3748_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":3733,"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_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":38,"nodeType":"UserDefinedTypeName","pathNode":{"id":37,"name":"PackedUserOperation","nameLocations":["1172:19:0"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"1172:19:0"},"referencedDeclaration":3748,"src":"1172:19:0","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_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_$3566_$","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_$3566","typeString":"contract IEntryPoint"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEntryPoint_$3566","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_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":89,"nodeType":"UserDefinedTypeName","pathNode":{"id":88,"name":"PackedUserOperation","nameLocations":["2942:19:0"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"2942:19:0"},"referencedDeclaration":3748,"src":"2942:19:0","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_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/EntryPoint.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/EntryPoint.sol","exportedSymbols":{"ERC165":[33323],"EntryPoint":[2236],"Exec":[3839],"IAccount":[3335],"IAccountExecute":[3348],"IAggregator":[3382],"IERC165":[33545],"IEntryPoint":[3566],"INonceManager":[3585],"IPaymaster":[3622],"IStakeManager":[3726],"NonceManager":[2506],"PackedUserOperation":[3748],"ReentrancyGuard":[31110],"SIG_VALIDATION_FAILED":[2241],"SIG_VALIDATION_SUCCESS":[2244],"SenderCreator":[2553],"StakeManager":[2961],"StorageSlot":[31234],"UserOperationLib":[3318],"ValidationData":[2252],"_packValidationData":[2349,2387],"_parseValidationData":[2312],"calldataKeccak":[2397],"min":[2415]},"id":2237,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":140,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"36:24:1"},{"absolutePath":"@account-abstraction/contracts/interfaces/IAccount.sol","file":"../interfaces/IAccount.sol","id":141,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":3336,"src":"147:36:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IAccountExecute.sol","file":"../interfaces/IAccountExecute.sol","id":142,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":3349,"src":"184:43:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IPaymaster.sol","file":"../interfaces/IPaymaster.sol","id":143,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":3623,"src":"228:38:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","file":"../interfaces/IEntryPoint.sol","id":144,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":3567,"src":"267:39:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/utils/Exec.sol","file":"../utils/Exec.sol","id":145,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":3840,"src":"308:27:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/StakeManager.sol","file":"./StakeManager.sol","id":146,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":2962,"src":"336:28:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/SenderCreator.sol","file":"./SenderCreator.sol","id":147,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":2554,"src":"365:29:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/Helpers.sol","file":"./Helpers.sol","id":148,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":2416,"src":"395:23:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/NonceManager.sol","file":"./NonceManager.sol","id":149,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":2507,"src":"419:28:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/UserOperationLib.sol","file":"./UserOperationLib.sol","id":150,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":3319,"src":"448:32:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"@openzeppelin/contracts/utils/introspection/ERC165.sol","id":151,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":33324,"src":"482:64:1","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/ReentrancyGuard.sol","file":"@openzeppelin/contracts/utils/ReentrancyGuard.sol","id":152,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2237,"sourceUnit":31111,"src":"547:59:1","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":154,"name":"IEntryPoint","nameLocations":["812:11:1"],"nodeType":"IdentifierPath","referencedDeclaration":3566,"src":"812:11:1"},"id":155,"nodeType":"InheritanceSpecifier","src":"812:11:1"},{"baseName":{"id":156,"name":"StakeManager","nameLocations":["825:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":2961,"src":"825:12:1"},"id":157,"nodeType":"InheritanceSpecifier","src":"825:12:1"},{"baseName":{"id":158,"name":"NonceManager","nameLocations":["839:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":2506,"src":"839:12:1"},"id":159,"nodeType":"InheritanceSpecifier","src":"839:12:1"},{"baseName":{"id":160,"name":"ReentrancyGuard","nameLocations":["853:15:1"],"nodeType":"IdentifierPath","referencedDeclaration":31110,"src":"853:15:1"},"id":161,"nodeType":"InheritanceSpecifier","src":"853:15:1"},{"baseName":{"id":162,"name":"ERC165","nameLocations":["870:6:1"],"nodeType":"IdentifierPath","referencedDeclaration":33323,"src":"870:6:1"},"id":163,"nodeType":"InheritanceSpecifier","src":"870:6:1"}],"canonicalName":"EntryPoint","contractDependencies":[2553],"contractKind":"contract","documentation":{"id":153,"nodeType":"StructuredDocumentation","src":"732:57:1","text":"@custom:security-contact https://bounty.ethereum.org"},"fullyImplemented":true,"id":2236,"linearizedBaseContracts":[2236,33323,33545,31110,2506,2961,3566,3585,3726],"name":"EntryPoint","nameLocation":"798:10:1","nodeType":"ContractDefinition","nodes":[{"global":false,"id":167,"libraryName":{"id":164,"name":"UserOperationLib","nameLocations":["890:16:1"],"nodeType":"IdentifierPath","referencedDeclaration":3318,"src":"890:16:1"},"nodeType":"UsingForDirective","src":"884:47:1","typeName":{"id":166,"nodeType":"UserDefinedTypeName","pathNode":{"id":165,"name":"PackedUserOperation","nameLocations":["911:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"911:19:1"},"referencedDeclaration":3748,"src":"911:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}}},{"constant":false,"id":174,"mutability":"immutable","name":"_senderCreator","nameLocation":"969:14:1","nodeType":"VariableDeclaration","scope":2236,"src":"937:68:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"},"typeName":{"id":169,"nodeType":"UserDefinedTypeName","pathNode":{"id":168,"name":"SenderCreator","nameLocations":["937:13:1"],"nodeType":"IdentifierPath","referencedDeclaration":2553,"src":"937:13:1"},"referencedDeclaration":2553,"src":"937:13:1","typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"}},"value":{"arguments":[],"expression":{"argumentTypes":[],"id":172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"NewExpression","src":"986:17:1","typeDescriptions":{"typeIdentifier":"t_function_creation_nonpayable$__$returns$_t_contract$_SenderCreator_$2553_$","typeString":"function () returns (contract SenderCreator)"},"typeName":{"id":171,"nodeType":"UserDefinedTypeName","pathNode":{"id":170,"name":"SenderCreator","nameLocations":["990:13:1"],"nodeType":"IdentifierPath","referencedDeclaration":2553,"src":"990:13:1"},"referencedDeclaration":2553,"src":"990:13:1","typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"}}},"id":173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"986:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"}},"visibility":"private"},{"body":{"id":182,"nodeType":"Block","src":"1083:38:1","statements":[{"expression":{"id":180,"name":"_senderCreator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":174,"src":"1100:14:1","typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"}},"functionReturnParameters":179,"id":181,"nodeType":"Return","src":"1093:21:1"}]},"id":183,"implemented":true,"kind":"function","modifiers":[],"name":"senderCreator","nameLocation":"1021:13:1","nodeType":"FunctionDefinition","parameters":{"id":175,"nodeType":"ParameterList","parameters":[],"src":"1034:2:1"},"returnParameters":{"id":179,"nodeType":"ParameterList","parameters":[{"constant":false,"id":178,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":183,"src":"1068:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"},"typeName":{"id":177,"nodeType":"UserDefinedTypeName","pathNode":{"id":176,"name":"SenderCreator","nameLocations":["1068:13:1"],"nodeType":"IdentifierPath","referencedDeclaration":2553,"src":"1068:13:1"},"referencedDeclaration":2553,"src":"1068:13:1","typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"}},"visibility":"internal"}],"src":"1067:15:1"},"scope":2236,"src":"1012:109:1","stateMutability":"view","virtual":true,"visibility":"internal"},{"constant":true,"id":186,"mutability":"constant","name":"INNER_GAS_OVERHEAD","nameLocation":"1276:18:1","nodeType":"VariableDeclaration","scope":2236,"src":"1251:51:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":184,"name":"uint256","nodeType":"ElementaryTypeName","src":"1251:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3130303030","id":185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1297:5:1","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"visibility":"private"},{"constant":true,"id":189,"mutability":"constant","name":"INNER_OUT_OF_GAS","nameLocation":"1384:16:1","nodeType":"VariableDeclaration","scope":2236,"src":"1359:57:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":187,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1359:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"deaddead","id":188,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"1403:13:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_f151d40b3e75f8fa1cd1fce06fa6cde57ba88f05b41b14197de40325455f967a","typeString":"literal_string hex\"deaddead\""},"value":"ޭޭ"},"visibility":"private"},{"constant":true,"id":192,"mutability":"constant","name":"INNER_REVERT_LOW_PREFUND","nameLocation":"1447:24:1","nodeType":"VariableDeclaration","scope":2236,"src":"1422:65:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":190,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1422:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"deadaa51","id":191,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"1474:13:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_ed8ccd9fc90032df4d1bccb83a9813d336d4ade2a67701f45bfb9a27a28c3a33","typeString":"literal_string hex\"deadaa51\""}},"visibility":"private"},{"constant":true,"id":195,"mutability":"constant","name":"REVERT_REASON_MAX_LEN","nameLocation":"1519:21:1","nodeType":"VariableDeclaration","scope":2236,"src":"1494:53:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":193,"name":"uint256","nodeType":"ElementaryTypeName","src":"1494:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"32303438","id":194,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1543:4:1","typeDescriptions":{"typeIdentifier":"t_rational_2048_by_1","typeString":"int_const 2048"},"value":"2048"},"visibility":"private"},{"constant":true,"id":198,"mutability":"constant","name":"PENALTY_PERCENT","nameLocation":"1578:15:1","nodeType":"VariableDeclaration","scope":2236,"src":"1553:45:1","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":196,"name":"uint256","nodeType":"ElementaryTypeName","src":"1553:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3130","id":197,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1596:2:1","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"visibility":"private"},{"baseFunctions":[33322],"body":{"id":251,"nodeType":"Block","src":"1724:493:1","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":249,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":237,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":230,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":223,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":207,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":201,"src":"1860:11:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":221,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":216,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":209,"name":"IEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3566,"src":"1881:11:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IEntryPoint_$3566_$","typeString":"type(contract IEntryPoint)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IEntryPoint_$3566_$","typeString":"type(contract IEntryPoint)"}],"id":208,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1876:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":210,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1876:17:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IEntryPoint_$3566","typeString":"type(contract IEntryPoint)"}},"id":211,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1894:11:1","memberName":"interfaceId","nodeType":"MemberAccess","src":"1876:29:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"expression":{"arguments":[{"id":213,"name":"IStakeManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3726,"src":"1913:13:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IStakeManager_$3726_$","typeString":"type(contract IStakeManager)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IStakeManager_$3726_$","typeString":"type(contract IStakeManager)"}],"id":212,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1908:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1908:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IStakeManager_$3726","typeString":"type(contract IStakeManager)"}},"id":215,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1928:11:1","memberName":"interfaceId","nodeType":"MemberAccess","src":"1908:31:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1876:63:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"expression":{"arguments":[{"id":218,"name":"INonceManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3585,"src":"1947:13:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_INonceManager_$3585_$","typeString":"type(contract INonceManager)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_INonceManager_$3585_$","typeString":"type(contract INonceManager)"}],"id":217,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1942:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":219,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1942:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_INonceManager_$3585","typeString":"type(contract INonceManager)"}},"id":220,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1962:11:1","memberName":"interfaceId","nodeType":"MemberAccess","src":"1942:31:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1876:97:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":222,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1875:99:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1860:114:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":224,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":201,"src":"1990:11:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":226,"name":"IEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3566,"src":"2010:11:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IEntryPoint_$3566_$","typeString":"type(contract IEntryPoint)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IEntryPoint_$3566_$","typeString":"type(contract IEntryPoint)"}],"id":225,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2005:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2005:17:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IEntryPoint_$3566","typeString":"type(contract IEntryPoint)"}},"id":228,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2023:11:1","memberName":"interfaceId","nodeType":"MemberAccess","src":"2005:29:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1990:44:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1860:174:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":231,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":201,"src":"2050:11:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":233,"name":"IStakeManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3726,"src":"2070:13:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IStakeManager_$3726_$","typeString":"type(contract IStakeManager)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IStakeManager_$3726_$","typeString":"type(contract IStakeManager)"}],"id":232,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2065:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":234,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2065:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IStakeManager_$3726","typeString":"type(contract IStakeManager)"}},"id":235,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2085:11:1","memberName":"interfaceId","nodeType":"MemberAccess","src":"2065:31:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2050:46:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1860:236:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":238,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":201,"src":"2112:11:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":240,"name":"INonceManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3585,"src":"2132:13:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_INonceManager_$3585_$","typeString":"type(contract INonceManager)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_INonceManager_$3585_$","typeString":"type(contract INonceManager)"}],"id":239,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2127:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":241,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2127:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_INonceManager_$3585","typeString":"type(contract INonceManager)"}},"id":242,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2147:11:1","memberName":"interfaceId","nodeType":"MemberAccess","src":"2127:31:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2112:46:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1860:298:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":247,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":201,"src":"2198:11:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":245,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2174:5:1","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_EntryPoint_$2236_$","typeString":"type(contract super EntryPoint)"}},"id":246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2180:17:1","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":33322,"src":"2174:23:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":248,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2174:36:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1860:350:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":206,"id":250,"nodeType":"Return","src":"1853:357:1"}]},"documentation":{"id":199,"nodeType":"StructuredDocumentation","src":"1605:23:1","text":"@inheritdoc IERC165"},"functionSelector":"01ffc9a7","id":252,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"1642:17:1","nodeType":"FunctionDefinition","overrides":{"id":203,"nodeType":"OverrideSpecifier","overrides":[],"src":"1700:8:1"},"parameters":{"id":202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":201,"mutability":"mutable","name":"interfaceId","nameLocation":"1667:11:1","nodeType":"VariableDeclaration","scope":252,"src":"1660:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":200,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1660:6:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1659:20:1"},"returnParameters":{"id":206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":205,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":252,"src":"1718:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":204,"name":"bool","nodeType":"ElementaryTypeName","src":"1718:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1717:6:1"},"scope":2236,"src":"1633:584:1","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":284,"nodeType":"Block","src":"2521:204:1","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":261,"name":"beneficiary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":255,"src":"2539:11:1","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":264,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2562:1:1","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":263,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2554:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":262,"name":"address","nodeType":"ElementaryTypeName","src":"2554:7:1","typeDescriptions":{}}},"id":265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2554:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2539:25:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4141393020696e76616c69642062656e6566696369617279","id":267,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2566:26:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_920f437a2d912d818562bb2b3dd9587067a8482ed696134ce94fa5e8d2567814","typeString":"literal_string \"AA90 invalid beneficiary\""},"value":"AA90 invalid beneficiary"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_920f437a2d912d818562bb2b3dd9587067a8482ed696134ce94fa5e8d2567814","typeString":"literal_string \"AA90 invalid beneficiary\""}],"id":260,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2531:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":268,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2531:62:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":269,"nodeType":"ExpressionStatement","src":"2531:62:1"},{"assignments":[271,null],"declarations":[{"constant":false,"id":271,"mutability":"mutable","name":"success","nameLocation":"2609:7:1","nodeType":"VariableDeclaration","scope":284,"src":"2604:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":270,"name":"bool","nodeType":"ElementaryTypeName","src":"2604:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":278,"initialValue":{"arguments":[{"hexValue":"","id":276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2654:2:1","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":272,"name":"beneficiary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":255,"src":"2622:11:1","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2634:4:1","memberName":"call","nodeType":"MemberAccess","src":"2622:16:1","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":275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":274,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":257,"src":"2646:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"2622:31:1","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":277,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2622:35:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"2603:54:1"},{"expression":{"arguments":[{"id":280,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":271,"src":"2675:7:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"41413931206661696c65642073656e6420746f2062656e6566696369617279","id":281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2684:33:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_321532189629d29421359a6160b174523b9558104989fb537a4f9d684a0aa1ea","typeString":"literal_string \"AA91 failed send to beneficiary\""},"value":"AA91 failed send to beneficiary"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_321532189629d29421359a6160b174523b9558104989fb537a4f9d684a0aa1ea","typeString":"literal_string \"AA91 failed send to beneficiary\""}],"id":279,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2667:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":282,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2667:51:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":283,"nodeType":"ExpressionStatement","src":"2667:51:1"}]},"documentation":{"id":253,"nodeType":"StructuredDocumentation","src":"2223:218:1","text":" Compensate the caller's beneficiary address with the collected fees of all UserOperations.\n @param beneficiary - The address to receive the fees.\n @param amount      - Amount to transfer."},"id":285,"implemented":true,"kind":"function","modifiers":[],"name":"_compensate","nameLocation":"2455:11:1","nodeType":"FunctionDefinition","parameters":{"id":258,"nodeType":"ParameterList","parameters":[{"constant":false,"id":255,"mutability":"mutable","name":"beneficiary","nameLocation":"2483:11:1","nodeType":"VariableDeclaration","scope":285,"src":"2467:27:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":254,"name":"address","nodeType":"ElementaryTypeName","src":"2467:15:1","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":257,"mutability":"mutable","name":"amount","nameLocation":"2504:6:1","nodeType":"VariableDeclaration","scope":285,"src":"2496:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":256,"name":"uint256","nodeType":"ElementaryTypeName","src":"2496:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2466:45:1"},"returnParameters":{"id":259,"nodeType":"ParameterList","parameters":[],"src":"2521:0:1"},"scope":2236,"src":"2446:279:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":466,"nodeType":"Block","src":"3215:2894:1","statements":[{"assignments":[300],"declarations":[{"constant":false,"id":300,"mutability":"mutable","name":"preGas","nameLocation":"3233:6:1","nodeType":"VariableDeclaration","scope":466,"src":"3225:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":299,"name":"uint256","nodeType":"ElementaryTypeName","src":"3225:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":303,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":301,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"3242:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":302,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3242:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3225:26:1"},{"assignments":[305],"declarations":[{"constant":false,"id":305,"mutability":"mutable","name":"context","nameLocation":"3274:7:1","nodeType":"VariableDeclaration","scope":466,"src":"3261:20:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":304,"name":"bytes","nodeType":"ElementaryTypeName","src":"3261:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":310,"initialValue":{"arguments":[{"expression":{"id":307,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"3309:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":308,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3316:13:1","memberName":"contextOffset","nodeType":"MemberAccess","referencedDeclaration":944,"src":"3309:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":306,"name":"getMemoryBytesFromOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2212,"src":"3284:24:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"}},"id":309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3284:46:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3261:69:1"},{"assignments":[312],"declarations":[{"constant":false,"id":312,"mutability":"mutable","name":"success","nameLocation":"3345:7:1","nodeType":"VariableDeclaration","scope":466,"src":"3340:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":311,"name":"bool","nodeType":"ElementaryTypeName","src":"3340:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":313,"nodeType":"VariableDeclarationStatement","src":"3340:12:1"},{"id":375,"nodeType":"Block","src":"3362:1117:1","statements":[{"assignments":[315],"declarations":[{"constant":false,"id":315,"mutability":"mutable","name":"saveFreePtr","nameLocation":"3384:11:1","nodeType":"VariableDeclaration","scope":375,"src":"3376:19:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":314,"name":"uint256","nodeType":"ElementaryTypeName","src":"3376:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":316,"nodeType":"VariableDeclarationStatement","src":"3376:19:1"},{"AST":{"nativeSrc":"3434:58:1","nodeType":"YulBlock","src":"3434:58:1","statements":[{"nativeSrc":"3452:26:1","nodeType":"YulAssignment","src":"3452:26:1","value":{"arguments":[{"kind":"number","nativeSrc":"3473:4:1","nodeType":"YulLiteral","src":"3473:4:1","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"3467:5:1","nodeType":"YulIdentifier","src":"3467:5:1"},"nativeSrc":"3467:11:1","nodeType":"YulFunctionCall","src":"3467:11:1"},"variableNames":[{"name":"saveFreePtr","nativeSrc":"3452:11:1","nodeType":"YulIdentifier","src":"3452:11:1"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":315,"isOffset":false,"isSlot":false,"src":"3452:11:1","valueSize":1}],"flags":["memory-safe"],"id":317,"nodeType":"InlineAssembly","src":"3409:83:1"},{"assignments":[319],"declarations":[{"constant":false,"id":319,"mutability":"mutable","name":"callData","nameLocation":"3520:8:1","nodeType":"VariableDeclaration","scope":375,"src":"3505:23:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":318,"name":"bytes","nodeType":"ElementaryTypeName","src":"3505:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":322,"initialValue":{"expression":{"id":320,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":291,"src":"3531:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3538:8:1","memberName":"callData","nodeType":"MemberAccess","referencedDeclaration":3737,"src":"3531:15:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"nodeType":"VariableDeclarationStatement","src":"3505:41:1"},{"assignments":[324],"declarations":[{"constant":false,"id":324,"mutability":"mutable","name":"innerCall","nameLocation":"3573:9:1","nodeType":"VariableDeclaration","scope":375,"src":"3560:22:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":323,"name":"bytes","nodeType":"ElementaryTypeName","src":"3560:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":325,"nodeType":"VariableDeclarationStatement","src":"3560:22:1"},{"assignments":[327],"declarations":[{"constant":false,"id":327,"mutability":"mutable","name":"methodSig","nameLocation":"3603:9:1","nodeType":"VariableDeclaration","scope":375,"src":"3596:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":326,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3596:6:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":328,"nodeType":"VariableDeclarationStatement","src":"3596:16:1"},{"AST":{"nativeSrc":"3635:171:1","nodeType":"YulBlock","src":"3635:171:1","statements":[{"nativeSrc":"3653:26:1","nodeType":"YulVariableDeclaration","src":"3653:26:1","value":{"name":"callData.length","nativeSrc":"3664:15:1","nodeType":"YulIdentifier","src":"3664:15:1"},"variables":[{"name":"len","nativeSrc":"3657:3:1","nodeType":"YulTypedName","src":"3657:3:1","type":""}]},{"body":{"nativeSrc":"3710:82:1","nodeType":"YulBlock","src":"3710:82:1","statements":[{"nativeSrc":"3732:42:1","nodeType":"YulAssignment","src":"3732:42:1","value":{"arguments":[{"name":"callData.offset","nativeSrc":"3758:15:1","nodeType":"YulIdentifier","src":"3758:15:1"}],"functionName":{"name":"calldataload","nativeSrc":"3745:12:1","nodeType":"YulIdentifier","src":"3745:12:1"},"nativeSrc":"3745:29:1","nodeType":"YulFunctionCall","src":"3745:29:1"},"variableNames":[{"name":"methodSig","nativeSrc":"3732:9:1","nodeType":"YulIdentifier","src":"3732:9:1"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"3702:3:1","nodeType":"YulIdentifier","src":"3702:3:1"},{"kind":"number","nativeSrc":"3707:1:1","nodeType":"YulLiteral","src":"3707:1:1","type":"","value":"3"}],"functionName":{"name":"gt","nativeSrc":"3699:2:1","nodeType":"YulIdentifier","src":"3699:2:1"},"nativeSrc":"3699:10:1","nodeType":"YulFunctionCall","src":"3699:10:1"},"nativeSrc":"3696:96:1","nodeType":"YulIf","src":"3696:96:1"}]},"evmVersion":"prague","externalReferences":[{"declaration":319,"isOffset":false,"isSlot":false,"src":"3664:15:1","suffix":"length","valueSize":1},{"declaration":319,"isOffset":true,"isSlot":false,"src":"3758:15:1","suffix":"offset","valueSize":1},{"declaration":327,"isOffset":false,"isSlot":false,"src":"3732:9:1","valueSize":1}],"id":329,"nodeType":"InlineAssembly","src":"3626:180:1"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":330,"name":"methodSig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":327,"src":"3823:9:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":331,"name":"IAccountExecute","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3348,"src":"3836:15:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccountExecute_$3348_$","typeString":"type(contract IAccountExecute)"}},"id":332,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3852:13:1","memberName":"executeUserOp","nodeType":"MemberAccess","referencedDeclaration":3347,"src":"3836:29:1","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_bytes32_$returns$__$","typeString":"function IAccountExecute.executeUserOp(struct PackedUserOperation calldata,bytes32)"}},"id":333,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3866:8:1","memberName":"selector","nodeType":"MemberAccess","src":"3836:38:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"3823:51:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":372,"nodeType":"Block","src":"4128:108:1","statements":[{"expression":{"id":370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":360,"name":"innerCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":324,"src":"4146:9:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":363,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4173:4:1","typeDescriptions":{"typeIdentifier":"t_contract$_EntryPoint_$2236","typeString":"contract EntryPoint"}},"id":364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4178:13:1","memberName":"innerHandleOp","nodeType":"MemberAccess","referencedDeclaration":1082,"src":"4173:18:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_bytes_memory_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (bytes memory,struct EntryPoint.UserOpInfo memory,bytes memory) external returns (uint256)"}},{"components":[{"id":365,"name":"callData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":319,"src":"4194:8:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":366,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"4204:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"id":367,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":305,"src":"4212:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":368,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4193:27:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_calldata_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$","typeString":"tuple(bytes calldata,struct EntryPoint.UserOpInfo memory,bytes memory)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_external_nonpayable$_t_bytes_memory_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (bytes memory,struct EntryPoint.UserOpInfo memory,bytes memory) external returns (uint256)"},{"typeIdentifier":"t_tuple$_t_bytes_calldata_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$","typeString":"tuple(bytes calldata,struct EntryPoint.UserOpInfo memory,bytes memory)"}],"expression":{"id":361,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4158:3:1","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":362,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4162:10:1","memberName":"encodeCall","nodeType":"MemberAccess","src":"4158:14:1","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4158:63:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"4146:75:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":371,"nodeType":"ExpressionStatement","src":"4146:75:1"}]},"id":373,"nodeType":"IfStatement","src":"3819:417:1","trueBody":{"id":359,"nodeType":"Block","src":"3876:234:1","statements":[{"assignments":[336],"declarations":[{"constant":false,"id":336,"mutability":"mutable","name":"executeUserOp","nameLocation":"3907:13:1","nodeType":"VariableDeclaration","scope":359,"src":"3894:26:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":335,"name":"bytes","nodeType":"ElementaryTypeName","src":"3894:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":346,"initialValue":{"arguments":[{"expression":{"id":339,"name":"IAccountExecute","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3348,"src":"3938:15:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccountExecute_$3348_$","typeString":"type(contract IAccountExecute)"}},"id":340,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3954:13:1","memberName":"executeUserOp","nodeType":"MemberAccess","referencedDeclaration":3347,"src":"3938:29:1","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_bytes32_$returns$__$","typeString":"function IAccountExecute.executeUserOp(struct PackedUserOperation calldata,bytes32)"}},{"components":[{"id":341,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":291,"src":"3970:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"expression":{"id":342,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"3978:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":343,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3985:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"3978:17:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":344,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3969:27:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_bytes32_$","typeString":"tuple(struct PackedUserOperation calldata,bytes32)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_declaration_nonpayable$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_bytes32_$returns$__$","typeString":"function IAccountExecute.executeUserOp(struct PackedUserOperation calldata,bytes32)"},{"typeIdentifier":"t_tuple$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_bytes32_$","typeString":"tuple(struct PackedUserOperation calldata,bytes32)"}],"expression":{"id":337,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3923:3:1","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":338,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3927:10:1","memberName":"encodeCall","nodeType":"MemberAccess","src":"3923:14:1","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":345,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3923:74:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3894:103:1"},{"expression":{"id":357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":347,"name":"innerCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":324,"src":"4015:9:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":350,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4042:4:1","typeDescriptions":{"typeIdentifier":"t_contract$_EntryPoint_$2236","typeString":"contract EntryPoint"}},"id":351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4047:13:1","memberName":"innerHandleOp","nodeType":"MemberAccess","referencedDeclaration":1082,"src":"4042:18:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_bytes_memory_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (bytes memory,struct EntryPoint.UserOpInfo memory,bytes memory) external returns (uint256)"}},{"components":[{"id":352,"name":"executeUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":336,"src":"4063:13:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":353,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"4078:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"id":354,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":305,"src":"4086:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":355,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4062:32:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$","typeString":"tuple(bytes memory,struct EntryPoint.UserOpInfo memory,bytes memory)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_external_nonpayable$_t_bytes_memory_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (bytes memory,struct EntryPoint.UserOpInfo memory,bytes memory) external returns (uint256)"},{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$","typeString":"tuple(bytes memory,struct EntryPoint.UserOpInfo memory,bytes memory)"}],"expression":{"id":348,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4027:3:1","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":349,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4031:10:1","memberName":"encodeCall","nodeType":"MemberAccess","src":"4027:14:1","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":356,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4027:68:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"4015:80:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":358,"nodeType":"ExpressionStatement","src":"4015:80:1"}]}},{"AST":{"nativeSrc":"4274:195:1","nodeType":"YulBlock","src":"4274:195:1","statements":[{"nativeSrc":"4292:83:1","nodeType":"YulAssignment","src":"4292:83:1","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"4308:3:1","nodeType":"YulIdentifier","src":"4308:3:1"},"nativeSrc":"4308:5:1","nodeType":"YulFunctionCall","src":"4308:5:1"},{"arguments":[],"functionName":{"name":"address","nativeSrc":"4315:7:1","nodeType":"YulIdentifier","src":"4315:7:1"},"nativeSrc":"4315:9:1","nodeType":"YulFunctionCall","src":"4315:9:1"},{"kind":"number","nativeSrc":"4326:1:1","nodeType":"YulLiteral","src":"4326:1:1","type":"","value":"0"},{"arguments":[{"name":"innerCall","nativeSrc":"4333:9:1","nodeType":"YulIdentifier","src":"4333:9:1"},{"kind":"number","nativeSrc":"4344:4:1","nodeType":"YulLiteral","src":"4344:4:1","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4329:3:1","nodeType":"YulIdentifier","src":"4329:3:1"},"nativeSrc":"4329:20:1","nodeType":"YulFunctionCall","src":"4329:20:1"},{"arguments":[{"name":"innerCall","nativeSrc":"4357:9:1","nodeType":"YulIdentifier","src":"4357:9:1"}],"functionName":{"name":"mload","nativeSrc":"4351:5:1","nodeType":"YulIdentifier","src":"4351:5:1"},"nativeSrc":"4351:16:1","nodeType":"YulFunctionCall","src":"4351:16:1"},{"kind":"number","nativeSrc":"4369:1:1","nodeType":"YulLiteral","src":"4369:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"4372:2:1","nodeType":"YulLiteral","src":"4372:2:1","type":"","value":"32"}],"functionName":{"name":"call","nativeSrc":"4303:4:1","nodeType":"YulIdentifier","src":"4303:4:1"},"nativeSrc":"4303:72:1","nodeType":"YulFunctionCall","src":"4303:72:1"},"variableNames":[{"name":"success","nativeSrc":"4292:7:1","nodeType":"YulIdentifier","src":"4292:7:1"}]},{"nativeSrc":"4392:21:1","nodeType":"YulAssignment","src":"4392:21:1","value":{"arguments":[{"kind":"number","nativeSrc":"4411:1:1","nodeType":"YulLiteral","src":"4411:1:1","type":"","value":"0"}],"functionName":{"name":"mload","nativeSrc":"4405:5:1","nodeType":"YulIdentifier","src":"4405:5:1"},"nativeSrc":"4405:8:1","nodeType":"YulFunctionCall","src":"4405:8:1"},"variableNames":[{"name":"collected","nativeSrc":"4392:9:1","nodeType":"YulIdentifier","src":"4392:9:1"}]},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4437:4:1","nodeType":"YulLiteral","src":"4437:4:1","type":"","value":"0x40"},{"name":"saveFreePtr","nativeSrc":"4443:11:1","nodeType":"YulIdentifier","src":"4443:11:1"}],"functionName":{"name":"mstore","nativeSrc":"4430:6:1","nodeType":"YulIdentifier","src":"4430:6:1"},"nativeSrc":"4430:25:1","nodeType":"YulFunctionCall","src":"4430:25:1"},"nativeSrc":"4430:25:1","nodeType":"YulExpressionStatement","src":"4430:25:1"}]},"evmVersion":"prague","externalReferences":[{"declaration":297,"isOffset":false,"isSlot":false,"src":"4392:9:1","valueSize":1},{"declaration":324,"isOffset":false,"isSlot":false,"src":"4333:9:1","valueSize":1},{"declaration":324,"isOffset":false,"isSlot":false,"src":"4357:9:1","valueSize":1},{"declaration":315,"isOffset":false,"isSlot":false,"src":"4443:11:1","valueSize":1},{"declaration":312,"isOffset":false,"isSlot":false,"src":"4292:7:1","valueSize":1}],"flags":["memory-safe"],"id":374,"nodeType":"InlineAssembly","src":"4249:220:1"}]},{"condition":{"id":377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4492:8:1","subExpression":{"id":376,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":312,"src":"4493:7:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":465,"nodeType":"IfStatement","src":"4488:1615:1","trueBody":{"id":464,"nodeType":"Block","src":"4502:1601:1","statements":[{"assignments":[379],"declarations":[{"constant":false,"id":379,"mutability":"mutable","name":"innerRevertCode","nameLocation":"4524:15:1","nodeType":"VariableDeclaration","scope":464,"src":"4516:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":378,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4516:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":380,"nodeType":"VariableDeclarationStatement","src":"4516:23:1"},{"AST":{"nativeSrc":"4578:202:1","nodeType":"YulBlock","src":"4578:202:1","statements":[{"nativeSrc":"4596:27:1","nodeType":"YulVariableDeclaration","src":"4596:27:1","value":{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"4607:14:1","nodeType":"YulIdentifier","src":"4607:14:1"},"nativeSrc":"4607:16:1","nodeType":"YulFunctionCall","src":"4607:16:1"},"variables":[{"name":"len","nativeSrc":"4600:3:1","nodeType":"YulTypedName","src":"4600:3:1","type":""}]},{"body":{"nativeSrc":"4654:112:1","nodeType":"YulBlock","src":"4654:112:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4691:1:1","nodeType":"YulLiteral","src":"4691:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"4694:1:1","nodeType":"YulLiteral","src":"4694:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"4697:2:1","nodeType":"YulLiteral","src":"4697:2:1","type":"","value":"32"}],"functionName":{"name":"returndatacopy","nativeSrc":"4676:14:1","nodeType":"YulIdentifier","src":"4676:14:1"},"nativeSrc":"4676:24:1","nodeType":"YulFunctionCall","src":"4676:24:1"},"nativeSrc":"4676:24:1","nodeType":"YulExpressionStatement","src":"4676:24:1"},{"nativeSrc":"4721:27:1","nodeType":"YulAssignment","src":"4721:27:1","value":{"arguments":[{"kind":"number","nativeSrc":"4746:1:1","nodeType":"YulLiteral","src":"4746:1:1","type":"","value":"0"}],"functionName":{"name":"mload","nativeSrc":"4740:5:1","nodeType":"YulIdentifier","src":"4740:5:1"},"nativeSrc":"4740:8:1","nodeType":"YulFunctionCall","src":"4740:8:1"},"variableNames":[{"name":"innerRevertCode","nativeSrc":"4721:15:1","nodeType":"YulIdentifier","src":"4721:15:1"}]}]},"condition":{"arguments":[{"kind":"number","nativeSrc":"4646:2:1","nodeType":"YulLiteral","src":"4646:2:1","type":"","value":"32"},{"name":"len","nativeSrc":"4649:3:1","nodeType":"YulIdentifier","src":"4649:3:1"}],"functionName":{"name":"eq","nativeSrc":"4643:2:1","nodeType":"YulIdentifier","src":"4643:2:1"},"nativeSrc":"4643:10:1","nodeType":"YulFunctionCall","src":"4643:10:1"},"nativeSrc":"4640:126:1","nodeType":"YulIf","src":"4640:126:1"}]},"evmVersion":"prague","externalReferences":[{"declaration":379,"isOffset":false,"isSlot":false,"src":"4721:15:1","valueSize":1}],"flags":["memory-safe"],"id":381,"nodeType":"InlineAssembly","src":"4553:227:1"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":382,"name":"innerRevertCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":379,"src":"4797:15:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":383,"name":"INNER_OUT_OF_GAS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":189,"src":"4816:16:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4797:35:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":391,"name":"innerRevertCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":379,"src":"5093:15:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":392,"name":"INNER_REVERT_LOW_PREFUND","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":192,"src":"5112:24:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"5093:43:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":461,"nodeType":"Block","src":"5549:544:1","statements":[{"eventCall":{"arguments":[{"expression":{"id":426,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5612:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":427,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5619:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"5612:17:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"expression":{"id":428,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5651:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":429,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5658:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"5651:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":430,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5666:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"5651:21:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"expression":{"id":431,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5694:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":432,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5701:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"5694:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":433,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5709:5:1","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":918,"src":"5694:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":436,"name":"REVERT_REASON_MAX_LEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":195,"src":"5755:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":434,"name":"Exec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3839,"src":"5736:4:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Exec_$3839_$","typeString":"type(library Exec)"}},"id":435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5741:13:1","memberName":"getReturnData","nodeType":"MemberAccess","referencedDeclaration":3801,"src":"5736:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"}},"id":437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5736:41:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":425,"name":"PostOpRevertReason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3441,"src":"5572:18:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes32,address,uint256,bytes memory)"}},"id":438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5572:223:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":439,"nodeType":"EmitStatement","src":"5567:228:1"},{"assignments":[441],"declarations":[{"constant":false,"id":441,"mutability":"mutable","name":"actualGas","nameLocation":"5822:9:1","nodeType":"VariableDeclaration","scope":461,"src":"5814:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":440,"name":"uint256","nodeType":"ElementaryTypeName","src":"5814:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":449,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":442,"name":"preGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":300,"src":"5834:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":443,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"5843:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":444,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5843:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5834:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":446,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5855:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":447,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5862:8:1","memberName":"preOpGas","nodeType":"MemberAccess","referencedDeclaration":946,"src":"5855:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5834:36:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5814:56:1"},{"expression":{"id":459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":450,"name":"collected","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":297,"src":"5888:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"expression":{"id":452,"name":"IPaymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"5936:10:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPaymaster_$3622_$","typeString":"type(contract IPaymaster)"}},"id":453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5947:10:1","memberName":"PostOpMode","nodeType":"MemberAccess","referencedDeclaration":3593,"src":"5936:21:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_PostOpMode_$3593_$","typeString":"type(enum IPaymaster.PostOpMode)"}},"id":454,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5958:14:1","memberName":"postOpReverted","nodeType":"MemberAccess","referencedDeclaration":3592,"src":"5936:36:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},{"id":455,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5994:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"id":456,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":305,"src":"6022:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":457,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":441,"src":"6051:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":451,"name":"_postExecution","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2156,"src":"5900:14:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_enum$_PostOpMode_$3593_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_uint256_$","typeString":"function (enum IPaymaster.PostOpMode,struct EntryPoint.UserOpInfo memory,bytes memory,uint256) returns (uint256)"}},"id":458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5900:178:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5888:190:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":460,"nodeType":"ExpressionStatement","src":"5888:190:1"}]},"id":462,"nodeType":"IfStatement","src":"5089:1004:1","trueBody":{"id":424,"nodeType":"Block","src":"5138:405:1","statements":[{"assignments":[395],"declarations":[{"constant":false,"id":395,"mutability":"mutable","name":"actualGas","nameLocation":"5257:9:1","nodeType":"VariableDeclaration","scope":424,"src":"5249:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":394,"name":"uint256","nodeType":"ElementaryTypeName","src":"5249:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":403,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":396,"name":"preGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":300,"src":"5269:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":397,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"5278:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5278:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5269:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":400,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5290:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":401,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5297:8:1","memberName":"preOpGas","nodeType":"MemberAccess","referencedDeclaration":946,"src":"5290:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5269:36:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5249:56:1"},{"assignments":[405],"declarations":[{"constant":false,"id":405,"mutability":"mutable","name":"actualGasCost","nameLocation":"5331:13:1","nodeType":"VariableDeclaration","scope":424,"src":"5323:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":404,"name":"uint256","nodeType":"ElementaryTypeName","src":"5323:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":408,"initialValue":{"expression":{"id":406,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5347:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":407,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5354:7:1","memberName":"prefund","nodeType":"MemberAccess","referencedDeclaration":942,"src":"5347:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5323:38:1"},{"expression":{"arguments":[{"id":410,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5397:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}],"id":409,"name":"emitPrefundTooLow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":515,"src":"5379:17:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_UserOpInfo_$947_memory_ptr_$returns$__$","typeString":"function (struct EntryPoint.UserOpInfo memory)"}},"id":411,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5379:25:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":412,"nodeType":"ExpressionStatement","src":"5379:25:1"},{"expression":{"arguments":[{"id":414,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"5445:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"hexValue":"66616c7365","id":415,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5453:5:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"id":416,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":405,"src":"5460:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":417,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":395,"src":"5475:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":413,"name":"emitUserOperationEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":497,"src":"5422:22:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bool_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (struct EntryPoint.UserOpInfo memory,bool,uint256,uint256)"}},"id":418,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5422:63:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":419,"nodeType":"ExpressionStatement","src":"5422:63:1"},{"expression":{"id":422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":420,"name":"collected","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":297,"src":"5503:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":421,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":405,"src":"5515:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5503:25:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":423,"nodeType":"ExpressionStatement","src":"5503:25:1"}]}},"id":463,"nodeType":"IfStatement","src":"4793:1300:1","trueBody":{"id":390,"nodeType":"Block","src":"4834:249:1","statements":[{"errorCall":{"arguments":[{"id":386,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":288,"src":"5041:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413935206f7574206f6620676173","id":387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5050:17:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_eb8aae105b33b8e3029845f6a1359760a9480648cd982f4e1c37f01a5ceaf980","typeString":"literal_string \"AA95 out of gas\""},"value":"AA95 out of gas"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_eb8aae105b33b8e3029845f6a1359760a9480648cd982f4e1c37f01a5ceaf980","typeString":"literal_string \"AA95 out of gas\""}],"id":385,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"5032:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":388,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5032:36:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":389,"nodeType":"RevertStatement","src":"5025:43:1"}]}}]}}]},"documentation":{"id":286,"nodeType":"StructuredDocumentation","src":"2731:296:1","text":" Execute a user operation.\n @param opIndex    - Index into the opInfo array.\n @param userOp     - The userOp to execute.\n @param opInfo     - The opInfo filled by validatePrepayment for this userOp.\n @return collected - The total amount this userOp paid."},"id":467,"implemented":true,"kind":"function","modifiers":[],"name":"_executeUserOp","nameLocation":"3041:14:1","nodeType":"FunctionDefinition","parameters":{"id":295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":288,"mutability":"mutable","name":"opIndex","nameLocation":"3073:7:1","nodeType":"VariableDeclaration","scope":467,"src":"3065:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":287,"name":"uint256","nodeType":"ElementaryTypeName","src":"3065:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":291,"mutability":"mutable","name":"userOp","nameLocation":"3119:6:1","nodeType":"VariableDeclaration","scope":467,"src":"3090:35:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":290,"nodeType":"UserDefinedTypeName","pathNode":{"id":289,"name":"PackedUserOperation","nameLocations":["3090:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"3090:19:1"},"referencedDeclaration":3748,"src":"3090:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":294,"mutability":"mutable","name":"opInfo","nameLocation":"3153:6:1","nodeType":"VariableDeclaration","scope":467,"src":"3135:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":293,"nodeType":"UserDefinedTypeName","pathNode":{"id":292,"name":"UserOpInfo","nameLocations":["3135:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"3135:10:1"},"referencedDeclaration":947,"src":"3135:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"}],"src":"3055:110:1"},"returnParameters":{"id":298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":297,"mutability":"mutable","name":"collected","nameLocation":"3204:9:1","nodeType":"VariableDeclaration","scope":467,"src":"3196:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":296,"name":"uint256","nodeType":"ElementaryTypeName","src":"3196:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3195:19:1"},"scope":2236,"src":"3032:3077:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":496,"nodeType":"Block","src":"6246:259:1","statements":[{"eventCall":{"arguments":[{"expression":{"id":480,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":470,"src":"6293:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":481,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6300:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"6293:17:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"expression":{"id":482,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":470,"src":"6324:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":483,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6331:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"6324:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":484,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6339:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"6324:21:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"expression":{"id":485,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":470,"src":"6359:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":486,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6366:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"6359:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":487,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6374:9:1","memberName":"paymaster","nodeType":"MemberAccess","referencedDeclaration":930,"src":"6359:24:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"expression":{"id":488,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":470,"src":"6397:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":489,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6404:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"6397:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":490,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6412:5:1","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":918,"src":"6397:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":491,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":472,"src":"6431:7:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":492,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":474,"src":"6452:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":493,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":476,"src":"6479:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":479,"name":"UserOperationEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3408,"src":"6261:18:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$_t_uint256_$_t_bool_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (bytes32,address,address,uint256,bool,uint256,uint256)"}},"id":494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6261:237:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":495,"nodeType":"EmitStatement","src":"6256:242:1"}]},"id":497,"implemented":true,"kind":"function","modifiers":[],"name":"emitUserOperationEvent","nameLocation":"6124:22:1","nodeType":"FunctionDefinition","parameters":{"id":477,"nodeType":"ParameterList","parameters":[{"constant":false,"id":470,"mutability":"mutable","name":"opInfo","nameLocation":"6165:6:1","nodeType":"VariableDeclaration","scope":497,"src":"6147:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":469,"nodeType":"UserDefinedTypeName","pathNode":{"id":468,"name":"UserOpInfo","nameLocations":["6147:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"6147:10:1"},"referencedDeclaration":947,"src":"6147:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"},{"constant":false,"id":472,"mutability":"mutable","name":"success","nameLocation":"6178:7:1","nodeType":"VariableDeclaration","scope":497,"src":"6173:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":471,"name":"bool","nodeType":"ElementaryTypeName","src":"6173:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":474,"mutability":"mutable","name":"actualGasCost","nameLocation":"6195:13:1","nodeType":"VariableDeclaration","scope":497,"src":"6187:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":473,"name":"uint256","nodeType":"ElementaryTypeName","src":"6187:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":476,"mutability":"mutable","name":"actualGas","nameLocation":"6218:9:1","nodeType":"VariableDeclaration","scope":497,"src":"6210:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":475,"name":"uint256","nodeType":"ElementaryTypeName","src":"6210:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6146:82:1"},"returnParameters":{"id":478,"nodeType":"ParameterList","parameters":[],"src":"6246:0:1"},"scope":2236,"src":"6115:390:1","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":514,"nodeType":"Block","src":"6581:158:1","statements":[{"eventCall":{"arguments":[{"expression":{"id":504,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":500,"src":"6636:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":505,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6643:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"6636:17:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"expression":{"id":506,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":500,"src":"6667:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":507,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6674:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"6667:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":508,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6682:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"6667:21:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"expression":{"id":509,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":500,"src":"6702:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":510,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6709:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"6702:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":511,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6717:5:1","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":918,"src":"6702:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":503,"name":"UserOperationPrefundTooLow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3450,"src":"6596:26:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_uint256_$returns$__$","typeString":"function (bytes32,address,uint256)"}},"id":512,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6596:136:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":513,"nodeType":"EmitStatement","src":"6591:141:1"}]},"id":515,"implemented":true,"kind":"function","modifiers":[],"name":"emitPrefundTooLow","nameLocation":"6520:17:1","nodeType":"FunctionDefinition","parameters":{"id":501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":500,"mutability":"mutable","name":"opInfo","nameLocation":"6556:6:1","nodeType":"VariableDeclaration","scope":515,"src":"6538:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":499,"nodeType":"UserDefinedTypeName","pathNode":{"id":498,"name":"UserOpInfo","nameLocations":["6538:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"6538:10:1"},"referencedDeclaration":947,"src":"6538:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"}],"src":"6537:26:1"},"returnParameters":{"id":502,"nodeType":"ParameterList","parameters":[],"src":"6581:0:1"},"scope":2236,"src":"6511:228:1","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[3507],"body":{"id":622,"nodeType":"Block","src":"6903:889:1","statements":[{"assignments":[528],"declarations":[{"constant":false,"id":528,"mutability":"mutable","name":"opslen","nameLocation":"6921:6:1","nodeType":"VariableDeclaration","scope":622,"src":"6913:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":527,"name":"uint256","nodeType":"ElementaryTypeName","src":"6913:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":531,"initialValue":{"expression":{"id":529,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":520,"src":"6930:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"id":530,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6934:6:1","memberName":"length","nodeType":"MemberAccess","src":"6930:10:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6913:27:1"},{"assignments":[536],"declarations":[{"constant":false,"id":536,"mutability":"mutable","name":"opInfos","nameLocation":"6970:7:1","nodeType":"VariableDeclaration","scope":622,"src":"6950:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr","typeString":"struct EntryPoint.UserOpInfo[]"},"typeName":{"baseType":{"id":534,"nodeType":"UserDefinedTypeName","pathNode":{"id":533,"name":"UserOpInfo","nameLocations":["6950:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"6950:10:1"},"referencedDeclaration":947,"src":"6950:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"id":535,"nodeType":"ArrayTypeName","src":"6950:12:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_storage_$dyn_storage_ptr","typeString":"struct EntryPoint.UserOpInfo[]"}},"visibility":"internal"}],"id":543,"initialValue":{"arguments":[{"id":541,"name":"opslen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":528,"src":"6997:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":540,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"6980:16:1","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct EntryPoint.UserOpInfo memory[] memory)"},"typeName":{"baseType":{"id":538,"nodeType":"UserDefinedTypeName","pathNode":{"id":537,"name":"UserOpInfo","nameLocations":["6984:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"6984:10:1"},"referencedDeclaration":947,"src":"6984:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"id":539,"nodeType":"ArrayTypeName","src":"6984:12:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_storage_$dyn_storage_ptr","typeString":"struct EntryPoint.UserOpInfo[]"}}},"id":542,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6980:24:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"6950:54:1"},{"id":621,"nodeType":"UncheckedBlock","src":"7015:771:1","statements":[{"body":{"id":583,"nodeType":"Block","src":"7076:444:1","statements":[{"assignments":[556],"declarations":[{"constant":false,"id":556,"mutability":"mutable","name":"opInfo","nameLocation":"7112:6:1","nodeType":"VariableDeclaration","scope":583,"src":"7094:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":555,"nodeType":"UserDefinedTypeName","pathNode":{"id":554,"name":"UserOpInfo","nameLocations":["7094:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"7094:10:1"},"referencedDeclaration":947,"src":"7094:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"}],"id":560,"initialValue":{"baseExpression":{"id":557,"name":"opInfos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":536,"src":"7121:7:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory[] memory"}},"id":559,"indexExpression":{"id":558,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"7129:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7121:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"nodeType":"VariableDeclarationStatement","src":"7094:37:1"},{"assignments":[562,564],"declarations":[{"constant":false,"id":562,"mutability":"mutable","name":"validationData","nameLocation":"7179:14:1","nodeType":"VariableDeclaration","scope":583,"src":"7171:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":561,"name":"uint256","nodeType":"ElementaryTypeName","src":"7171:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":564,"mutability":"mutable","name":"pmValidationData","nameLocation":"7223:16:1","nodeType":"VariableDeclaration","scope":583,"src":"7215:24:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":563,"name":"uint256","nodeType":"ElementaryTypeName","src":"7215:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":572,"initialValue":{"arguments":[{"id":566,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"7280:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":567,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":520,"src":"7283:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"id":569,"indexExpression":{"id":568,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"7287:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7283:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"id":570,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":556,"src":"7291:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}],"id":565,"name":"_validatePrepayment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1934,"src":"7260:19:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$returns$_t_uint256_$_t_uint256_$","typeString":"function (uint256,struct PackedUserOperation calldata,struct EntryPoint.UserOpInfo memory) returns (uint256,uint256)"}},"id":571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7260:38:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"7149:149:1"},{"expression":{"arguments":[{"id":574,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"7380:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":575,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":562,"src":"7403:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":576,"name":"pmValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":564,"src":"7439:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"hexValue":"30","id":579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7485:1:1","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":578,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7477:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":577,"name":"address","nodeType":"ElementaryTypeName","src":"7477:7:1","typeDescriptions":{}}},"id":580,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7477:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":573,"name":"_validateAccountAndPaymasterValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1712,"src":"7316:42:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$_t_address_$returns$__$","typeString":"function (uint256,uint256,uint256,address) view"}},"id":581,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7316:189:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":582,"nodeType":"ExpressionStatement","src":"7316:189:1"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":550,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":548,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"7059:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":549,"name":"opslen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":528,"src":"7063:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7059:10:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":584,"initializationExpression":{"assignments":[545],"declarations":[{"constant":false,"id":545,"mutability":"mutable","name":"i","nameLocation":"7052:1:1","nodeType":"VariableDeclaration","scope":584,"src":"7044:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":544,"name":"uint256","nodeType":"ElementaryTypeName","src":"7044:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":547,"initialValue":{"hexValue":"30","id":546,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7056:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"7044:13:1"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"7071:3:1","subExpression":{"id":551,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":545,"src":"7071:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":553,"nodeType":"ExpressionStatement","src":"7071:3:1"},"nodeType":"ForStatement","src":"7039:481:1"},{"assignments":[586],"declarations":[{"constant":false,"id":586,"mutability":"mutable","name":"collected","nameLocation":"7542:9:1","nodeType":"VariableDeclaration","scope":621,"src":"7534:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":585,"name":"uint256","nodeType":"ElementaryTypeName","src":"7534:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":588,"initialValue":{"hexValue":"30","id":587,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7554:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"7534:21:1"},{"eventCall":{"arguments":[],"expression":{"argumentTypes":[],"id":589,"name":"BeforeExecution","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3453,"src":"7574:15:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$__$returns$__$","typeString":"function ()"}},"id":590,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7574:17:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":591,"nodeType":"EmitStatement","src":"7569:22:1"},{"body":{"id":614,"nodeType":"Block","src":"7643:83:1","statements":[{"expression":{"id":612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":602,"name":"collected","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":586,"src":"7661:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"id":604,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":593,"src":"7689:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":605,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":520,"src":"7692:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"id":607,"indexExpression":{"id":606,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":593,"src":"7696:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7692:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"baseExpression":{"id":608,"name":"opInfos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":536,"src":"7700:7:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory[] memory"}},"id":610,"indexExpression":{"id":609,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":593,"src":"7708:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7700:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}],"id":603,"name":"_executeUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":467,"src":"7674:14:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,struct PackedUserOperation calldata,struct EntryPoint.UserOpInfo memory) returns (uint256)"}},"id":611,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7674:37:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7661:50:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":613,"nodeType":"ExpressionStatement","src":"7661:50:1"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":596,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":593,"src":"7626:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":597,"name":"opslen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":528,"src":"7630:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7626:10:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":615,"initializationExpression":{"assignments":[593],"declarations":[{"constant":false,"id":593,"mutability":"mutable","name":"i","nameLocation":"7619:1:1","nodeType":"VariableDeclaration","scope":615,"src":"7611:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":592,"name":"uint256","nodeType":"ElementaryTypeName","src":"7611:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":595,"initialValue":{"hexValue":"30","id":594,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7623:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"7611:13:1"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"7638:3:1","subExpression":{"id":599,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":593,"src":"7638:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":601,"nodeType":"ExpressionStatement","src":"7638:3:1"},"nodeType":"ForStatement","src":"7606:120:1"},{"expression":{"arguments":[{"id":617,"name":"beneficiary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":522,"src":"7752:11:1","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},{"id":618,"name":"collected","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":586,"src":"7765:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":616,"name":"_compensate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":285,"src":"7740:11:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_payable_$_t_uint256_$returns$__$","typeString":"function (address payable,uint256)"}},"id":619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7740:35:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":620,"nodeType":"ExpressionStatement","src":"7740:35:1"}]}]},"documentation":{"id":516,"nodeType":"StructuredDocumentation","src":"6745:27:1","text":"@inheritdoc IEntryPoint"},"functionSelector":"765e827f","id":623,"implemented":true,"kind":"function","modifiers":[{"id":525,"kind":"modifierInvocation","modifierName":{"id":524,"name":"nonReentrant","nameLocations":["6890:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":31040,"src":"6890:12:1"},"nodeType":"ModifierInvocation","src":"6890:12:1"}],"name":"handleOps","nameLocation":"6786:9:1","nodeType":"FunctionDefinition","parameters":{"id":523,"nodeType":"ParameterList","parameters":[{"constant":false,"id":520,"mutability":"mutable","name":"ops","nameLocation":"6836:3:1","nodeType":"VariableDeclaration","scope":623,"src":"6805:34:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":518,"nodeType":"UserDefinedTypeName","pathNode":{"id":517,"name":"PackedUserOperation","nameLocations":["6805:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"6805:19:1"},"referencedDeclaration":3748,"src":"6805:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"id":519,"nodeType":"ArrayTypeName","src":"6805:21:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"},{"constant":false,"id":522,"mutability":"mutable","name":"beneficiary","nameLocation":"6865:11:1","nodeType":"VariableDeclaration","scope":623,"src":"6849:27:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":521,"name":"address","nodeType":"ElementaryTypeName","src":"6849:15:1","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"}],"src":"6795:87:1"},"returnParameters":{"id":526,"nodeType":"ParameterList","parameters":[],"src":"6903:0:1"},"scope":2236,"src":"6777:1015:1","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[3517],"body":{"id":912,"nodeType":"Block","src":"7980:2460:1","statements":[{"assignments":[636],"declarations":[{"constant":false,"id":636,"mutability":"mutable","name":"opasLen","nameLocation":"7999:7:1","nodeType":"VariableDeclaration","scope":912,"src":"7991:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":635,"name":"uint256","nodeType":"ElementaryTypeName","src":"7991:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":639,"initialValue":{"expression":{"id":637,"name":"opsPerAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"8009:16:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata[] calldata"}},"id":638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8026:6:1","memberName":"length","nodeType":"MemberAccess","src":"8009:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7991:41:1"},{"assignments":[641],"declarations":[{"constant":false,"id":641,"mutability":"mutable","name":"totalOps","nameLocation":"8050:8:1","nodeType":"VariableDeclaration","scope":912,"src":"8042:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":640,"name":"uint256","nodeType":"ElementaryTypeName","src":"8042:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":643,"initialValue":{"hexValue":"30","id":642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8061:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"8042:20:1"},{"body":{"id":722,"nodeType":"Block","src":"8110:729:1","statements":[{"assignments":[656],"declarations":[{"constant":false,"id":656,"mutability":"mutable","name":"opa","nameLocation":"8154:3:1","nodeType":"VariableDeclaration","scope":722,"src":"8124:33:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"},"typeName":{"id":655,"nodeType":"UserDefinedTypeName","pathNode":{"id":654,"name":"UserOpsPerAggregator","nameLocations":["8124:20:1"],"nodeType":"IdentifierPath","referencedDeclaration":3497,"src":"8124:20:1"},"referencedDeclaration":3497,"src":"8124:20:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_storage_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"}},"visibility":"internal"}],"id":660,"initialValue":{"baseExpression":{"id":657,"name":"opsPerAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"8160:16:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata[] calldata"}},"id":659,"indexExpression":{"id":658,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":645,"src":"8177:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8160:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"nodeType":"VariableDeclarationStatement","src":"8124:55:1"},{"assignments":[665],"declarations":[{"constant":false,"id":665,"mutability":"mutable","name":"ops","nameLocation":"8224:3:1","nodeType":"VariableDeclaration","scope":722,"src":"8193:34:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":663,"nodeType":"UserDefinedTypeName","pathNode":{"id":662,"name":"PackedUserOperation","nameLocations":["8193:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"8193:19:1"},"referencedDeclaration":3748,"src":"8193:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"id":664,"nodeType":"ArrayTypeName","src":"8193:21:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"}],"id":668,"initialValue":{"expression":{"id":666,"name":"opa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":656,"src":"8230:3:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"id":667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8234:7:1","memberName":"userOps","nodeType":"MemberAccess","referencedDeclaration":3491,"src":"8230:11:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"nodeType":"VariableDeclarationStatement","src":"8193:48:1"},{"assignments":[671],"declarations":[{"constant":false,"id":671,"mutability":"mutable","name":"aggregator","nameLocation":"8267:10:1","nodeType":"VariableDeclaration","scope":722,"src":"8255:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"},"typeName":{"id":670,"nodeType":"UserDefinedTypeName","pathNode":{"id":669,"name":"IAggregator","nameLocations":["8255:11:1"],"nodeType":"IdentifierPath","referencedDeclaration":3382,"src":"8255:11:1"},"referencedDeclaration":3382,"src":"8255:11:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}},"visibility":"internal"}],"id":674,"initialValue":{"expression":{"id":672,"name":"opa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":656,"src":"8280:3:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"id":673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8284:10:1","memberName":"aggregator","nodeType":"MemberAccess","referencedDeclaration":3494,"src":"8280:14:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}},"nodeType":"VariableDeclarationStatement","src":"8255:39:1"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":684,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":678,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":671,"src":"8406:10:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}],"id":677,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8398:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":676,"name":"address","nodeType":"ElementaryTypeName","src":"8398:7:1","typeDescriptions":{}}},"id":679,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8398:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"31","id":682,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8429:1:1","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":681,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8421:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":680,"name":"address","nodeType":"ElementaryTypeName","src":"8421:7:1","typeDescriptions":{}}},"id":683,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8421:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8398:33:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4141393620696e76616c69642061676772656761746f72","id":685,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8449:25:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_c7b85d163e4e98261caeed8e321f4ec192af622f53fd084234a04b236b40e883","typeString":"literal_string \"AA96 invalid aggregator\""},"value":"AA96 invalid aggregator"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c7b85d163e4e98261caeed8e321f4ec192af622f53fd084234a04b236b40e883","typeString":"literal_string \"AA96 invalid aggregator\""}],"id":675,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"8373:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":686,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8373:115:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":687,"nodeType":"ExpressionStatement","src":"8373:115:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":690,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":671,"src":"8515:10:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}],"id":689,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8507:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":688,"name":"address","nodeType":"ElementaryTypeName","src":"8507:7:1","typeDescriptions":{}}},"id":691,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8507:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8538:1:1","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":693,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8530:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":692,"name":"address","nodeType":"ElementaryTypeName","src":"8530:7:1","typeDescriptions":{}}},"id":695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8530:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8507:33:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":716,"nodeType":"IfStatement","src":"8503:289:1","trueBody":{"id":715,"nodeType":"Block","src":"8542:250:1","statements":[{"clauses":[{"block":{"id":703,"nodeType":"Block","src":"8675:2:1","statements":[]},"errorName":"","id":704,"nodeType":"TryCatchClause","src":"8675:2:1"},{"block":{"id":712,"nodeType":"Block","src":"8684:94:1","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":708,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":671,"src":"8747:10:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}],"id":707,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8739:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":706,"name":"address","nodeType":"ElementaryTypeName","src":"8739:7:1","typeDescriptions":{}}},"id":709,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8739:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":705,"name":"SignatureValidationFailed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3483,"src":"8713:25:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":710,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8713:46:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":711,"nodeType":"RevertStatement","src":"8706:53:1"}]},"errorName":"","id":713,"nodeType":"TryCatchClause","src":"8678:100:1"}],"externalCall":{"arguments":[{"id":699,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":665,"src":"8655:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},{"expression":{"id":700,"name":"opa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":656,"src":"8660:3:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"id":701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8664:9:1","memberName":"signature","nodeType":"MemberAccess","referencedDeclaration":3496,"src":"8660:13:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":697,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":671,"src":"8625:10:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}},"id":698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8636:18:1","memberName":"validateSignatures","nodeType":"MemberAccess","referencedDeclaration":3362,"src":"8625:29:1","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_array$_t_struct$_PackedUserOperation_$3748_memory_ptr_$dyn_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (struct PackedUserOperation memory[] memory,bytes memory) view external"}},"id":702,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8625:49:1","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":714,"nodeType":"TryStatement","src":"8621:157:1"}]}},{"expression":{"id":720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":717,"name":"totalOps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":641,"src":"8806:8:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"expression":{"id":718,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":665,"src":"8818:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"id":719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8822:6:1","memberName":"length","nodeType":"MemberAccess","src":"8818:10:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8806:22:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":721,"nodeType":"ExpressionStatement","src":"8806:22:1"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":650,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":648,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":645,"src":"8092:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":649,"name":"opasLen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":636,"src":"8096:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8092:11:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":723,"initializationExpression":{"assignments":[645],"declarations":[{"constant":false,"id":645,"mutability":"mutable","name":"i","nameLocation":"8085:1:1","nodeType":"VariableDeclaration","scope":723,"src":"8077:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":644,"name":"uint256","nodeType":"ElementaryTypeName","src":"8077:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":647,"initialValue":{"hexValue":"30","id":646,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8089:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"8077:13:1"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"8105:3:1","subExpression":{"id":651,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":645,"src":"8105:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":653,"nodeType":"ExpressionStatement","src":"8105:3:1"},"nodeType":"ForStatement","src":"8072:767:1"},{"assignments":[728],"declarations":[{"constant":false,"id":728,"mutability":"mutable","name":"opInfos","nameLocation":"8869:7:1","nodeType":"VariableDeclaration","scope":912,"src":"8849:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr","typeString":"struct EntryPoint.UserOpInfo[]"},"typeName":{"baseType":{"id":726,"nodeType":"UserDefinedTypeName","pathNode":{"id":725,"name":"UserOpInfo","nameLocations":["8849:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"8849:10:1"},"referencedDeclaration":947,"src":"8849:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"id":727,"nodeType":"ArrayTypeName","src":"8849:12:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_storage_$dyn_storage_ptr","typeString":"struct EntryPoint.UserOpInfo[]"}},"visibility":"internal"}],"id":735,"initialValue":{"arguments":[{"id":733,"name":"totalOps","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":641,"src":"8896:8:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":732,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"8879:16:1","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct EntryPoint.UserOpInfo memory[] memory)"},"typeName":{"baseType":{"id":730,"nodeType":"UserDefinedTypeName","pathNode":{"id":729,"name":"UserOpInfo","nameLocations":["8883:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"8883:10:1"},"referencedDeclaration":947,"src":"8883:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"id":731,"nodeType":"ArrayTypeName","src":"8883:12:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_storage_$dyn_storage_ptr","typeString":"struct EntryPoint.UserOpInfo[]"}}},"id":734,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8879:26:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"8849:56:1"},{"assignments":[737],"declarations":[{"constant":false,"id":737,"mutability":"mutable","name":"opIndex","nameLocation":"8924:7:1","nodeType":"VariableDeclaration","scope":912,"src":"8916:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":736,"name":"uint256","nodeType":"ElementaryTypeName","src":"8916:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":739,"initialValue":{"hexValue":"30","id":738,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8934:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"8916:19:1"},{"body":{"id":820,"nodeType":"Block","src":"8983:793:1","statements":[{"assignments":[752],"declarations":[{"constant":false,"id":752,"mutability":"mutable","name":"opa","nameLocation":"9027:3:1","nodeType":"VariableDeclaration","scope":820,"src":"8997:33:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"},"typeName":{"id":751,"nodeType":"UserDefinedTypeName","pathNode":{"id":750,"name":"UserOpsPerAggregator","nameLocations":["8997:20:1"],"nodeType":"IdentifierPath","referencedDeclaration":3497,"src":"8997:20:1"},"referencedDeclaration":3497,"src":"8997:20:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_storage_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"}},"visibility":"internal"}],"id":756,"initialValue":{"baseExpression":{"id":753,"name":"opsPerAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"9033:16:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata[] calldata"}},"id":755,"indexExpression":{"id":754,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":741,"src":"9050:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9033:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"nodeType":"VariableDeclarationStatement","src":"8997:55:1"},{"assignments":[761],"declarations":[{"constant":false,"id":761,"mutability":"mutable","name":"ops","nameLocation":"9097:3:1","nodeType":"VariableDeclaration","scope":820,"src":"9066:34:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":759,"nodeType":"UserDefinedTypeName","pathNode":{"id":758,"name":"PackedUserOperation","nameLocations":["9066:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"9066:19:1"},"referencedDeclaration":3748,"src":"9066:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"id":760,"nodeType":"ArrayTypeName","src":"9066:21:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"}],"id":764,"initialValue":{"expression":{"id":762,"name":"opa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":752,"src":"9103:3:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"id":763,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9107:7:1","memberName":"userOps","nodeType":"MemberAccess","referencedDeclaration":3491,"src":"9103:11:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"nodeType":"VariableDeclarationStatement","src":"9066:48:1"},{"assignments":[767],"declarations":[{"constant":false,"id":767,"mutability":"mutable","name":"aggregator","nameLocation":"9140:10:1","nodeType":"VariableDeclaration","scope":820,"src":"9128:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"},"typeName":{"id":766,"nodeType":"UserDefinedTypeName","pathNode":{"id":765,"name":"IAggregator","nameLocations":["9128:11:1"],"nodeType":"IdentifierPath","referencedDeclaration":3382,"src":"9128:11:1"},"referencedDeclaration":3382,"src":"9128:11:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}},"visibility":"internal"}],"id":770,"initialValue":{"expression":{"id":768,"name":"opa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":752,"src":"9153:3:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"id":769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9157:10:1","memberName":"aggregator","nodeType":"MemberAccess","referencedDeclaration":3494,"src":"9153:14:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}},"nodeType":"VariableDeclarationStatement","src":"9128:39:1"},{"assignments":[772],"declarations":[{"constant":false,"id":772,"mutability":"mutable","name":"opslen","nameLocation":"9190:6:1","nodeType":"VariableDeclaration","scope":820,"src":"9182:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":771,"name":"uint256","nodeType":"ElementaryTypeName","src":"9182:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":775,"initialValue":{"expression":{"id":773,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":761,"src":"9199:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"id":774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9203:6:1","memberName":"length","nodeType":"MemberAccess","src":"9199:10:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9182:27:1"},{"body":{"id":818,"nodeType":"Block","src":"9260:506:1","statements":[{"assignments":[788],"declarations":[{"constant":false,"id":788,"mutability":"mutable","name":"opInfo","nameLocation":"9296:6:1","nodeType":"VariableDeclaration","scope":818,"src":"9278:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":787,"nodeType":"UserDefinedTypeName","pathNode":{"id":786,"name":"UserOpInfo","nameLocations":["9278:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"9278:10:1"},"referencedDeclaration":947,"src":"9278:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"}],"id":792,"initialValue":{"baseExpression":{"id":789,"name":"opInfos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":728,"src":"9305:7:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory[] memory"}},"id":791,"indexExpression":{"id":790,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"9313:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9305:16:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"nodeType":"VariableDeclarationStatement","src":"9278:43:1"},{"assignments":[794,796],"declarations":[{"constant":false,"id":794,"mutability":"mutable","name":"validationData","nameLocation":"9369:14:1","nodeType":"VariableDeclaration","scope":818,"src":"9361:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":793,"name":"uint256","nodeType":"ElementaryTypeName","src":"9361:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":796,"mutability":"mutable","name":"paymasterValidationData","nameLocation":"9413:23:1","nodeType":"VariableDeclaration","scope":818,"src":"9405:31:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":795,"name":"uint256","nodeType":"ElementaryTypeName","src":"9405:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":804,"initialValue":{"arguments":[{"id":798,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"9477:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":799,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":761,"src":"9486:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"id":801,"indexExpression":{"id":800,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":777,"src":"9490:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9486:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"id":802,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":788,"src":"9494:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}],"id":797,"name":"_validatePrepayment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1934,"src":"9457:19:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$returns$_t_uint256_$_t_uint256_$","typeString":"function (uint256,struct PackedUserOperation calldata,struct EntryPoint.UserOpInfo memory) returns (uint256,uint256)"}},"id":803,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9457:44:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"9339:162:1"},{"expression":{"arguments":[{"id":806,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":777,"src":"9583:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":807,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":794,"src":"9606:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":808,"name":"paymasterValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":796,"src":"9642:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":811,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":767,"src":"9695:10:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}],"id":810,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9687:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":809,"name":"address","nodeType":"ElementaryTypeName","src":"9687:7:1","typeDescriptions":{}}},"id":812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9687:19:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":805,"name":"_validateAccountAndPaymasterValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1712,"src":"9519:42:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$_t_address_$returns$__$","typeString":"function (uint256,uint256,uint256,address) view"}},"id":813,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9519:205:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":814,"nodeType":"ExpressionStatement","src":"9519:205:1"},{"expression":{"id":816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"9742:9:1","subExpression":{"id":815,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"9742:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":817,"nodeType":"ExpressionStatement","src":"9742:9:1"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":780,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":777,"src":"9243:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":781,"name":"opslen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":772,"src":"9247:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9243:10:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":819,"initializationExpression":{"assignments":[777],"declarations":[{"constant":false,"id":777,"mutability":"mutable","name":"i","nameLocation":"9236:1:1","nodeType":"VariableDeclaration","scope":819,"src":"9228:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":776,"name":"uint256","nodeType":"ElementaryTypeName","src":"9228:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":779,"initialValue":{"hexValue":"30","id":778,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9240:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"9228:13:1"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":784,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"9255:3:1","subExpression":{"id":783,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":777,"src":"9255:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":785,"nodeType":"ExpressionStatement","src":"9255:3:1"},"nodeType":"ForStatement","src":"9223:543:1"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":744,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":741,"src":"8965:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":745,"name":"opasLen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":636,"src":"8969:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8965:11:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":821,"initializationExpression":{"assignments":[741],"declarations":[{"constant":false,"id":741,"mutability":"mutable","name":"a","nameLocation":"8958:1:1","nodeType":"VariableDeclaration","scope":821,"src":"8950:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":740,"name":"uint256","nodeType":"ElementaryTypeName","src":"8950:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":743,"initialValue":{"hexValue":"30","id":742,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8962:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"8950:13:1"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"8978:3:1","subExpression":{"id":747,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":741,"src":"8978:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":749,"nodeType":"ExpressionStatement","src":"8978:3:1"},"nodeType":"ForStatement","src":"8945:831:1"},{"eventCall":{"arguments":[],"expression":{"argumentTypes":[],"id":822,"name":"BeforeExecution","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3453,"src":"9791:15:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$__$returns$__$","typeString":"function ()"}},"id":823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9791:17:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":824,"nodeType":"EmitStatement","src":"9786:22:1"},{"assignments":[826],"declarations":[{"constant":false,"id":826,"mutability":"mutable","name":"collected","nameLocation":"9827:9:1","nodeType":"VariableDeclaration","scope":912,"src":"9819:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":825,"name":"uint256","nodeType":"ElementaryTypeName","src":"9819:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":828,"initialValue":{"hexValue":"30","id":827,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9839:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"9819:21:1"},{"expression":{"id":831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":829,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"9850:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":830,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9860:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9850:11:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":832,"nodeType":"ExpressionStatement","src":"9850:11:1"},{"body":{"id":898,"nodeType":"Block","src":"9909:426:1","statements":[{"assignments":[845],"declarations":[{"constant":false,"id":845,"mutability":"mutable","name":"opa","nameLocation":"9953:3:1","nodeType":"VariableDeclaration","scope":898,"src":"9923:33:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"},"typeName":{"id":844,"nodeType":"UserDefinedTypeName","pathNode":{"id":843,"name":"UserOpsPerAggregator","nameLocations":["9923:20:1"],"nodeType":"IdentifierPath","referencedDeclaration":3497,"src":"9923:20:1"},"referencedDeclaration":3497,"src":"9923:20:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_storage_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"}},"visibility":"internal"}],"id":849,"initialValue":{"baseExpression":{"id":846,"name":"opsPerAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"9959:16:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata[] calldata"}},"id":848,"indexExpression":{"id":847,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":834,"src":"9976:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9959:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"nodeType":"VariableDeclarationStatement","src":"9923:55:1"},{"eventCall":{"arguments":[{"arguments":[{"expression":{"id":853,"name":"opa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":845,"src":"10032:3:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"id":854,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10036:10:1","memberName":"aggregator","nodeType":"MemberAccess","referencedDeclaration":3494,"src":"10032:14:1","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}],"id":852,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10024:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":851,"name":"address","nodeType":"ElementaryTypeName","src":"10024:7:1","typeDescriptions":{}}},"id":855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10024:23:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":850,"name":"SignatureAggregatorChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3458,"src":"9997:26:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":856,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9997:51:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":857,"nodeType":"EmitStatement","src":"9992:56:1"},{"assignments":[862],"declarations":[{"constant":false,"id":862,"mutability":"mutable","name":"ops","nameLocation":"10093:3:1","nodeType":"VariableDeclaration","scope":898,"src":"10062:34:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":860,"nodeType":"UserDefinedTypeName","pathNode":{"id":859,"name":"PackedUserOperation","nameLocations":["10062:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"10062:19:1"},"referencedDeclaration":3748,"src":"10062:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"id":861,"nodeType":"ArrayTypeName","src":"10062:21:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"}],"id":865,"initialValue":{"expression":{"id":863,"name":"opa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":845,"src":"10099:3:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator calldata"}},"id":864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10103:7:1","memberName":"userOps","nodeType":"MemberAccess","referencedDeclaration":3491,"src":"10099:11:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"nodeType":"VariableDeclarationStatement","src":"10062:48:1"},{"assignments":[867],"declarations":[{"constant":false,"id":867,"mutability":"mutable","name":"opslen","nameLocation":"10132:6:1","nodeType":"VariableDeclaration","scope":898,"src":"10124:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":866,"name":"uint256","nodeType":"ElementaryTypeName","src":"10124:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":870,"initialValue":{"expression":{"id":868,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":862,"src":"10141:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"id":869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10145:6:1","memberName":"length","nodeType":"MemberAccess","src":"10141:10:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10124:27:1"},{"body":{"id":896,"nodeType":"Block","src":"10203:122:1","statements":[{"expression":{"id":891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":881,"name":"collected","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":826,"src":"10221:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"id":883,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"10249:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":884,"name":"ops","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":862,"src":"10258:3:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation calldata[] calldata"}},"id":886,"indexExpression":{"id":885,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":872,"src":"10262:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10258:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"baseExpression":{"id":887,"name":"opInfos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":728,"src":"10266:7:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpInfo_$947_memory_ptr_$dyn_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory[] memory"}},"id":889,"indexExpression":{"id":888,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"10274:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10266:16:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}],"id":882,"name":"_executeUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":467,"src":"10234:14:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,struct PackedUserOperation calldata,struct EntryPoint.UserOpInfo memory) returns (uint256)"}},"id":890,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10234:49:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10221:62:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":892,"nodeType":"ExpressionStatement","src":"10221:62:1"},{"expression":{"id":894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"10301:9:1","subExpression":{"id":893,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"10301:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":895,"nodeType":"ExpressionStatement","src":"10301:9:1"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":877,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":875,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":872,"src":"10186:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":876,"name":"opslen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":867,"src":"10190:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10186:10:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":897,"initializationExpression":{"assignments":[872],"declarations":[{"constant":false,"id":872,"mutability":"mutable","name":"i","nameLocation":"10179:1:1","nodeType":"VariableDeclaration","scope":897,"src":"10171:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":871,"name":"uint256","nodeType":"ElementaryTypeName","src":"10171:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":874,"initialValue":{"hexValue":"30","id":873,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10183:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10171:13:1"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"10198:3:1","subExpression":{"id":878,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":872,"src":"10198:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":880,"nodeType":"ExpressionStatement","src":"10198:3:1"},"nodeType":"ForStatement","src":"10166:159:1"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":839,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":837,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":834,"src":"9891:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":838,"name":"opasLen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":636,"src":"9895:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9891:11:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":899,"initializationExpression":{"assignments":[834],"declarations":[{"constant":false,"id":834,"mutability":"mutable","name":"a","nameLocation":"9884:1:1","nodeType":"VariableDeclaration","scope":899,"src":"9876:9:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":833,"name":"uint256","nodeType":"ElementaryTypeName","src":"9876:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":836,"initialValue":{"hexValue":"30","id":835,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9888:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"9876:13:1"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":841,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"9904:3:1","subExpression":{"id":840,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":834,"src":"9904:1:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":842,"nodeType":"ExpressionStatement","src":"9904:3:1"},"nodeType":"ForStatement","src":"9871:464:1"},{"eventCall":{"arguments":[{"arguments":[{"hexValue":"30","id":903,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10384:1:1","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":902,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10376:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":901,"name":"address","nodeType":"ElementaryTypeName","src":"10376:7:1","typeDescriptions":{}}},"id":904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10376:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":900,"name":"SignatureAggregatorChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3458,"src":"10349:26:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":905,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10349:38:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":906,"nodeType":"EmitStatement","src":"10344:43:1"},{"expression":{"arguments":[{"id":908,"name":"beneficiary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":630,"src":"10410:11:1","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},{"id":909,"name":"collected","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":826,"src":"10423:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":907,"name":"_compensate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":285,"src":"10398:11:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_payable_$_t_uint256_$returns$__$","typeString":"function (address payable,uint256)"}},"id":910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10398:35:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":911,"nodeType":"ExpressionStatement","src":"10398:35:1"}]},"documentation":{"id":624,"nodeType":"StructuredDocumentation","src":"7798:27:1","text":"@inheritdoc IEntryPoint"},"functionSelector":"dbed18e0","id":913,"implemented":true,"kind":"function","modifiers":[{"id":633,"kind":"modifierInvocation","modifierName":{"id":632,"name":"nonReentrant","nameLocations":["7967:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":31040,"src":"7967:12:1"},"nodeType":"ModifierInvocation","src":"7967:12:1"}],"name":"handleAggregatedOps","nameLocation":"7839:19:1","nodeType":"FunctionDefinition","parameters":{"id":631,"nodeType":"ParameterList","parameters":[{"constant":false,"id":628,"mutability":"mutable","name":"opsPerAggregator","nameLocation":"7900:16:1","nodeType":"VariableDeclaration","scope":913,"src":"7868:48:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator[]"},"typeName":{"baseType":{"id":626,"nodeType":"UserDefinedTypeName","pathNode":{"id":625,"name":"UserOpsPerAggregator","nameLocations":["7868:20:1"],"nodeType":"IdentifierPath","referencedDeclaration":3497,"src":"7868:20:1"},"referencedDeclaration":3497,"src":"7868:20:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_storage_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"}},"id":627,"nodeType":"ArrayTypeName","src":"7868:22:1","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$3497_storage_$dyn_storage_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator[]"}},"visibility":"internal"},{"constant":false,"id":630,"mutability":"mutable","name":"beneficiary","nameLocation":"7942:11:1","nodeType":"VariableDeclaration","scope":913,"src":"7926:27:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":629,"name":"address","nodeType":"ElementaryTypeName","src":"7926:15:1","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"}],"src":"7858:101:1"},"returnParameters":{"id":634,"nodeType":"ParameterList","parameters":[],"src":"7980:0:1"},"scope":2236,"src":"7830:2610:1","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"canonicalName":"EntryPoint.MemoryUserOp","documentation":{"id":914,"nodeType":"StructuredDocumentation","src":"10446:157:1","text":" A memory copy of UserOp static fields only.\n Excluding: callData, initCode and signature. Replacing paymasterAndData with paymaster."},"id":935,"members":[{"constant":false,"id":916,"mutability":"mutable","name":"sender","nameLocation":"10646:6:1","nodeType":"VariableDeclaration","scope":935,"src":"10638:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":915,"name":"address","nodeType":"ElementaryTypeName","src":"10638:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":918,"mutability":"mutable","name":"nonce","nameLocation":"10670:5:1","nodeType":"VariableDeclaration","scope":935,"src":"10662:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":917,"name":"uint256","nodeType":"ElementaryTypeName","src":"10662:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":920,"mutability":"mutable","name":"verificationGasLimit","nameLocation":"10693:20:1","nodeType":"VariableDeclaration","scope":935,"src":"10685:28:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":919,"name":"uint256","nodeType":"ElementaryTypeName","src":"10685:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":922,"mutability":"mutable","name":"callGasLimit","nameLocation":"10731:12:1","nodeType":"VariableDeclaration","scope":935,"src":"10723:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":921,"name":"uint256","nodeType":"ElementaryTypeName","src":"10723:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":924,"mutability":"mutable","name":"paymasterVerificationGasLimit","nameLocation":"10761:29:1","nodeType":"VariableDeclaration","scope":935,"src":"10753:37:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":923,"name":"uint256","nodeType":"ElementaryTypeName","src":"10753:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":926,"mutability":"mutable","name":"paymasterPostOpGasLimit","nameLocation":"10808:23:1","nodeType":"VariableDeclaration","scope":935,"src":"10800:31:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":925,"name":"uint256","nodeType":"ElementaryTypeName","src":"10800:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":928,"mutability":"mutable","name":"preVerificationGas","nameLocation":"10849:18:1","nodeType":"VariableDeclaration","scope":935,"src":"10841:26:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":927,"name":"uint256","nodeType":"ElementaryTypeName","src":"10841:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":930,"mutability":"mutable","name":"paymaster","nameLocation":"10885:9:1","nodeType":"VariableDeclaration","scope":935,"src":"10877:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":929,"name":"address","nodeType":"ElementaryTypeName","src":"10877:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":932,"mutability":"mutable","name":"maxFeePerGas","nameLocation":"10912:12:1","nodeType":"VariableDeclaration","scope":935,"src":"10904:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":931,"name":"uint256","nodeType":"ElementaryTypeName","src":"10904:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":934,"mutability":"mutable","name":"maxPriorityFeePerGas","nameLocation":"10942:20:1","nodeType":"VariableDeclaration","scope":935,"src":"10934:28:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":933,"name":"uint256","nodeType":"ElementaryTypeName","src":"10934:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"MemoryUserOp","nameLocation":"10615:12:1","nodeType":"StructDefinition","scope":2236,"src":"10608:361:1","visibility":"public"},{"canonicalName":"EntryPoint.UserOpInfo","id":947,"members":[{"constant":false,"id":938,"mutability":"mutable","name":"mUserOp","nameLocation":"11016:7:1","nodeType":"VariableDeclaration","scope":947,"src":"11003:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":937,"nodeType":"UserDefinedTypeName","pathNode":{"id":936,"name":"MemoryUserOp","nameLocations":["11003:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"11003:12:1"},"referencedDeclaration":935,"src":"11003:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"},{"constant":false,"id":940,"mutability":"mutable","name":"userOpHash","nameLocation":"11041:10:1","nodeType":"VariableDeclaration","scope":947,"src":"11033:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":939,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11033:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":942,"mutability":"mutable","name":"prefund","nameLocation":"11069:7:1","nodeType":"VariableDeclaration","scope":947,"src":"11061:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":941,"name":"uint256","nodeType":"ElementaryTypeName","src":"11061:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":944,"mutability":"mutable","name":"contextOffset","nameLocation":"11094:13:1","nodeType":"VariableDeclaration","scope":947,"src":"11086:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":943,"name":"uint256","nodeType":"ElementaryTypeName","src":"11086:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":946,"mutability":"mutable","name":"preOpGas","nameLocation":"11125:8:1","nodeType":"VariableDeclaration","scope":947,"src":"11117:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":945,"name":"uint256","nodeType":"ElementaryTypeName","src":"11117:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"UserOpInfo","nameLocation":"10982:10:1","nodeType":"StructDefinition","scope":2236,"src":"10975:165:1","visibility":"public"},{"body":{"id":1081,"nodeType":"Block","src":"11705:1515:1","statements":[{"assignments":[961],"declarations":[{"constant":false,"id":961,"mutability":"mutable","name":"preGas","nameLocation":"11723:6:1","nodeType":"VariableDeclaration","scope":1081,"src":"11715:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":960,"name":"uint256","nodeType":"ElementaryTypeName","src":"11715:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":964,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":962,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"11732:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":963,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11732:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11715:26:1"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":966,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"11759:3:1","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11763:6:1","memberName":"sender","nodeType":"MemberAccess","src":"11759:10:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":970,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"11781:4:1","typeDescriptions":{"typeIdentifier":"t_contract$_EntryPoint_$2236","typeString":"contract EntryPoint"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EntryPoint_$2236","typeString":"contract EntryPoint"}],"id":969,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11773:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":968,"name":"address","nodeType":"ElementaryTypeName","src":"11773:7:1","typeDescriptions":{}}},"id":971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11773:13:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11759:27:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4141393220696e7465726e616c2063616c6c206f6e6c79","id":973,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11788:25:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_bf4e5bbea2250480ca8cf3cc338d236d16fd3805a9bc8205224406394a71fe66","typeString":"literal_string \"AA92 internal call only\""},"value":"AA92 internal call only"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_bf4e5bbea2250480ca8cf3cc338d236d16fd3805a9bc8205224406394a71fe66","typeString":"literal_string \"AA92 internal call only\""}],"id":965,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"11751:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":974,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11751:63:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":975,"nodeType":"ExpressionStatement","src":"11751:63:1"},{"assignments":[978],"declarations":[{"constant":false,"id":978,"mutability":"mutable","name":"mUserOp","nameLocation":"11844:7:1","nodeType":"VariableDeclaration","scope":1081,"src":"11824:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":977,"nodeType":"UserDefinedTypeName","pathNode":{"id":976,"name":"MemoryUserOp","nameLocations":["11824:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"11824:12:1"},"referencedDeclaration":935,"src":"11824:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"}],"id":981,"initialValue":{"expression":{"id":979,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":953,"src":"11854:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":980,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11861:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"11854:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"nodeType":"VariableDeclarationStatement","src":"11824:44:1"},{"assignments":[983],"declarations":[{"constant":false,"id":983,"mutability":"mutable","name":"callGasLimit","nameLocation":"11887:12:1","nodeType":"VariableDeclaration","scope":1081,"src":"11879:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":982,"name":"uint256","nodeType":"ElementaryTypeName","src":"11879:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":986,"initialValue":{"expression":{"id":984,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"11902:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":985,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11910:12:1","memberName":"callGasLimit","nodeType":"MemberAccess","referencedDeclaration":922,"src":"11902:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11879:43:1"},{"id":1003,"nodeType":"UncheckedBlock","src":"11932:446:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":987,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"12058:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":988,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12058:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3633","id":989,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12070:2:1","typeDescriptions":{"typeIdentifier":"t_rational_63_by_1","typeString":"int_const 63"},"value":"63"},"src":"12058:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3634","id":991,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12075:2:1","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"12058:19:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":993,"name":"callGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":983,"src":"12096:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":994,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"12127:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":995,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12135:23:1","memberName":"paymasterPostOpGasLimit","nodeType":"MemberAccess","referencedDeclaration":926,"src":"12127:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12096:62:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":997,"name":"INNER_GAS_OVERHEAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":186,"src":"12177:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12096:99:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12058:137:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1002,"nodeType":"IfStatement","src":"12037:331:1","trueBody":{"id":1001,"nodeType":"Block","src":"12210:158:1","statements":[{"AST":{"nativeSrc":"12253:101:1","nodeType":"YulBlock","src":"12253:101:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12282:1:1","nodeType":"YulLiteral","src":"12282:1:1","type":"","value":"0"},{"name":"INNER_OUT_OF_GAS","nativeSrc":"12285:16:1","nodeType":"YulIdentifier","src":"12285:16:1"}],"functionName":{"name":"mstore","nativeSrc":"12275:6:1","nodeType":"YulIdentifier","src":"12275:6:1"},"nativeSrc":"12275:27:1","nodeType":"YulFunctionCall","src":"12275:27:1"},"nativeSrc":"12275:27:1","nodeType":"YulExpressionStatement","src":"12275:27:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12330:1:1","nodeType":"YulLiteral","src":"12330:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"12333:2:1","nodeType":"YulLiteral","src":"12333:2:1","type":"","value":"32"}],"functionName":{"name":"revert","nativeSrc":"12323:6:1","nodeType":"YulIdentifier","src":"12323:6:1"},"nativeSrc":"12323:13:1","nodeType":"YulFunctionCall","src":"12323:13:1"},"nativeSrc":"12323:13:1","nodeType":"YulExpressionStatement","src":"12323:13:1"}]},"evmVersion":"prague","externalReferences":[{"declaration":189,"isOffset":false,"isSlot":false,"src":"12285:16:1","valueSize":1}],"flags":["memory-safe"],"id":1000,"nodeType":"InlineAssembly","src":"12228:126:1"}]}}]},{"assignments":[1008],"declarations":[{"constant":false,"id":1008,"mutability":"mutable","name":"mode","nameLocation":"12410:4:1","nodeType":"VariableDeclaration","scope":1081,"src":"12388:26:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},"typeName":{"id":1007,"nodeType":"UserDefinedTypeName","pathNode":{"id":1006,"name":"IPaymaster.PostOpMode","nameLocations":["12388:10:1","12399:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":3593,"src":"12388:21:1"},"referencedDeclaration":3593,"src":"12388:21:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"visibility":"internal"}],"id":1012,"initialValue":{"expression":{"expression":{"id":1009,"name":"IPaymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"12417:10:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPaymaster_$3622_$","typeString":"type(contract IPaymaster)"}},"id":1010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12428:10:1","memberName":"PostOpMode","nodeType":"MemberAccess","referencedDeclaration":3593,"src":"12417:21:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_PostOpMode_$3593_$","typeString":"type(enum IPaymaster.PostOpMode)"}},"id":1011,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12439:11:1","memberName":"opSucceeded","nodeType":"MemberAccess","referencedDeclaration":3590,"src":"12417:33:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"nodeType":"VariableDeclarationStatement","src":"12388:62:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1013,"name":"callData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":950,"src":"12464:8:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1014,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12473:6:1","memberName":"length","nodeType":"MemberAccess","src":"12464:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12482:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12464:19:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1062,"nodeType":"IfStatement","src":"12460:584:1","trueBody":{"id":1061,"nodeType":"Block","src":"12485:559:1","statements":[{"assignments":[1018],"declarations":[{"constant":false,"id":1018,"mutability":"mutable","name":"success","nameLocation":"12504:7:1","nodeType":"VariableDeclaration","scope":1061,"src":"12499:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1017,"name":"bool","nodeType":"ElementaryTypeName","src":"12499:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":1027,"initialValue":{"arguments":[{"expression":{"id":1021,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"12524:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1022,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12532:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"12524:14:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":1023,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12540:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":1024,"name":"callData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":950,"src":"12543:8:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":1025,"name":"callGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":983,"src":"12553:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1019,"name":"Exec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3839,"src":"12514:4:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Exec_$3839_$","typeString":"type(library Exec)"}},"id":1020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12519:4:1","memberName":"call","nodeType":"MemberAccess","referencedDeclaration":3766,"src":"12514:9:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory,uint256) returns (bool)"}},"id":1026,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12514:52:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"12499:67:1"},{"condition":{"id":1029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"12584:8:1","subExpression":{"id":1028,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1018,"src":"12585:7:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1060,"nodeType":"IfStatement","src":"12580:454:1","trueBody":{"id":1059,"nodeType":"Block","src":"12594:440:1","statements":[{"assignments":[1031],"declarations":[{"constant":false,"id":1031,"mutability":"mutable","name":"result","nameLocation":"12625:6:1","nodeType":"VariableDeclaration","scope":1059,"src":"12612:19:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1030,"name":"bytes","nodeType":"ElementaryTypeName","src":"12612:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1036,"initialValue":{"arguments":[{"id":1034,"name":"REVERT_REASON_MAX_LEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":195,"src":"12653:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1032,"name":"Exec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3839,"src":"12634:4:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Exec_$3839_$","typeString":"type(library Exec)"}},"id":1033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12639:13:1","memberName":"getReturnData","nodeType":"MemberAccess","referencedDeclaration":3801,"src":"12634:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"}},"id":1035,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12634:41:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"12612:63:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1037,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1031,"src":"12697:6:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12704:6:1","memberName":"length","nodeType":"MemberAccess","src":"12697:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12713:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12697:17:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1052,"nodeType":"IfStatement","src":"12693:270:1","trueBody":{"id":1051,"nodeType":"Block","src":"12716:247:1","statements":[{"eventCall":{"arguments":[{"expression":{"id":1042,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":953,"src":"12794:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1043,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12801:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"12794:17:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":1044,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"12837:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1045,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12845:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"12837:14:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":1046,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"12877:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1047,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12885:5:1","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":918,"src":"12877:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1048,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1031,"src":"12916:6:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1041,"name":"UserOperationRevertReason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3430,"src":"12743:25:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes32,address,uint256,bytes memory)"}},"id":1049,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12743:201:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1050,"nodeType":"EmitStatement","src":"12738:206:1"}]}},{"expression":{"id":1057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1053,"name":"mode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1008,"src":"12980:4:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"expression":{"id":1054,"name":"IPaymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"12987:10:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPaymaster_$3622_$","typeString":"type(contract IPaymaster)"}},"id":1055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12998:10:1","memberName":"PostOpMode","nodeType":"MemberAccess","referencedDeclaration":3593,"src":"12987:21:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_PostOpMode_$3593_$","typeString":"type(enum IPaymaster.PostOpMode)"}},"id":1056,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13009:10:1","memberName":"opReverted","nodeType":"MemberAccess","referencedDeclaration":3591,"src":"12987:32:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"src":"12980:39:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"id":1058,"nodeType":"ExpressionStatement","src":"12980:39:1"}]}}]}},{"id":1080,"nodeType":"UncheckedBlock","src":"13054:160:1","statements":[{"assignments":[1064],"declarations":[{"constant":false,"id":1064,"mutability":"mutable","name":"actualGas","nameLocation":"13086:9:1","nodeType":"VariableDeclaration","scope":1080,"src":"13078:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1063,"name":"uint256","nodeType":"ElementaryTypeName","src":"13078:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1072,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1065,"name":"preGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":961,"src":"13098:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1066,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"13107:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1067,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13107:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13098:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":1069,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":953,"src":"13119:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1070,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13126:8:1","memberName":"preOpGas","nodeType":"MemberAccess","referencedDeclaration":946,"src":"13119:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13098:36:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13078:56:1"},{"expression":{"arguments":[{"id":1074,"name":"mode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1008,"src":"13170:4:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},{"id":1075,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":953,"src":"13176:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"id":1076,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":955,"src":"13184:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":1077,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1064,"src":"13193:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1073,"name":"_postExecution","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2156,"src":"13155:14:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_enum$_PostOpMode_$3593_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_uint256_$","typeString":"function (enum IPaymaster.PostOpMode,struct EntryPoint.UserOpInfo memory,bytes memory,uint256) returns (uint256)"}},"id":1078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13155:48:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":959,"id":1079,"nodeType":"Return","src":"13148:55:1"}]}]},"documentation":{"id":948,"nodeType":"StructuredDocumentation","src":"11146:387:1","text":" Inner function to handle a UserOperation.\n Must be declared \"external\" to open a call context, but it can only be called by handleOps.\n @param callData - The callData to execute.\n @param opInfo   - The UserOpInfo struct.\n @param context  - The context bytes.\n @return actualGasCost - the actual cost in eth this UserOperation paid for gas"},"functionSelector":"0042dc53","id":1082,"implemented":true,"kind":"function","modifiers":[],"name":"innerHandleOp","nameLocation":"11547:13:1","nodeType":"FunctionDefinition","parameters":{"id":956,"nodeType":"ParameterList","parameters":[{"constant":false,"id":950,"mutability":"mutable","name":"callData","nameLocation":"11583:8:1","nodeType":"VariableDeclaration","scope":1082,"src":"11570:21:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":949,"name":"bytes","nodeType":"ElementaryTypeName","src":"11570:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":953,"mutability":"mutable","name":"opInfo","nameLocation":"11619:6:1","nodeType":"VariableDeclaration","scope":1082,"src":"11601:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":952,"nodeType":"UserDefinedTypeName","pathNode":{"id":951,"name":"UserOpInfo","nameLocations":["11601:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"11601:10:1"},"referencedDeclaration":947,"src":"11601:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"},{"constant":false,"id":955,"mutability":"mutable","name":"context","nameLocation":"11650:7:1","nodeType":"VariableDeclaration","scope":1082,"src":"11635:22:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":954,"name":"bytes","nodeType":"ElementaryTypeName","src":"11635:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"11560:103:1"},"returnParameters":{"id":959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":958,"mutability":"mutable","name":"actualGasCost","nameLocation":"11690:13:1","nodeType":"VariableDeclaration","scope":1082,"src":"11682:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":957,"name":"uint256","nodeType":"ElementaryTypeName","src":"11682:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11681:23:1"},"scope":2236,"src":"11538:1682:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[3526],"body":{"id":1106,"nodeType":"Block","src":"13362:102:1","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1094,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1086,"src":"13412:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13419:4:1","memberName":"hash","nodeType":"MemberAccess","referencedDeclaration":3317,"src":"13412:11:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$returns$_t_bytes32_$attached_to$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$","typeString":"function (struct PackedUserOperation calldata) pure returns (bytes32)"}},"id":1096,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13412:13:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"id":1099,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"13435:4:1","typeDescriptions":{"typeIdentifier":"t_contract$_EntryPoint_$2236","typeString":"contract EntryPoint"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EntryPoint_$2236","typeString":"contract EntryPoint"}],"id":1098,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13427:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1097,"name":"address","nodeType":"ElementaryTypeName","src":"13427:7:1","typeDescriptions":{}}},"id":1100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13427:13:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":1101,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"13442:5:1","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1102,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13448:7:1","memberName":"chainid","nodeType":"MemberAccess","src":"13442:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1092,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"13401:3:1","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1093,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13405:6:1","memberName":"encode","nodeType":"MemberAccess","src":"13401:10:1","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1103,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13401:55:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1091,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"13391:9:1","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13391:66:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":1090,"id":1105,"nodeType":"Return","src":"13372:85:1"}]},"documentation":{"id":1083,"nodeType":"StructuredDocumentation","src":"13226:27:1","text":"@inheritdoc IEntryPoint"},"functionSelector":"22cdde4c","id":1107,"implemented":true,"kind":"function","modifiers":[],"name":"getUserOpHash","nameLocation":"13267:13:1","nodeType":"FunctionDefinition","parameters":{"id":1087,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1086,"mutability":"mutable","name":"userOp","nameLocation":"13319:6:1","nodeType":"VariableDeclaration","scope":1107,"src":"13290:35:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":1085,"nodeType":"UserDefinedTypeName","pathNode":{"id":1084,"name":"PackedUserOperation","nameLocations":["13290:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"13290:19:1"},"referencedDeclaration":3748,"src":"13290:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"13280:51:1"},"returnParameters":{"id":1090,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1089,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1107,"src":"13353:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1088,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13353:7:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13352:9:1"},"scope":2236,"src":"13258:206:1","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":1220,"nodeType":"Block","src":"13785:998:1","statements":[{"expression":{"id":1122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1117,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"13795:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1119,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13803:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"13795:14:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1120,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1111,"src":"13812:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13819:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":3731,"src":"13812:13:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"13795:30:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1123,"nodeType":"ExpressionStatement","src":"13795:30:1"},{"expression":{"id":1129,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1124,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"13835:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1126,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13843:5:1","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":918,"src":"13835:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1127,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1111,"src":"13851:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13858:5:1","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":3733,"src":"13851:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13835:28:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1130,"nodeType":"ExpressionStatement","src":"13835:28:1"},{"expression":{"id":1142,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"id":1131,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"13874:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1133,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13882:20:1","memberName":"verificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":920,"src":"13874:28:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1134,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"13904:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1135,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13912:12:1","memberName":"callGasLimit","nodeType":"MemberAccess","referencedDeclaration":922,"src":"13904:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1136,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"13873:52:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":1139,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1111,"src":"13957:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13964:16:1","memberName":"accountGasLimits","nodeType":"MemberAccess","referencedDeclaration":3739,"src":"13957:23:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":1137,"name":"UserOperationLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3318,"src":"13928:16:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_UserOperationLib_$3318_$","typeString":"type(library UserOperationLib)"}},"id":1138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13945:11:1","memberName":"unpackUints","nodeType":"MemberAccess","referencedDeclaration":3129,"src":"13928:28:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256,uint256)"}},"id":1141,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13928:53:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"src":"13873:108:1","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1143,"nodeType":"ExpressionStatement","src":"13873:108:1"},{"expression":{"id":1149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1144,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"13991:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1146,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13999:18:1","memberName":"preVerificationGas","nodeType":"MemberAccess","referencedDeclaration":928,"src":"13991:26:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1147,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1111,"src":"14020:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14027:18:1","memberName":"preVerificationGas","nodeType":"MemberAccess","referencedDeclaration":3741,"src":"14020:25:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13991:54:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1150,"nodeType":"ExpressionStatement","src":"13991:54:1"},{"expression":{"id":1162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"id":1151,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"14056:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1153,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14064:20:1","memberName":"maxPriorityFeePerGas","nodeType":"MemberAccess","referencedDeclaration":934,"src":"14056:28:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1154,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"14086:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1155,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14094:12:1","memberName":"maxFeePerGas","nodeType":"MemberAccess","referencedDeclaration":932,"src":"14086:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1156,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"14055:52:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":1159,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1111,"src":"14139:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14146:7:1","memberName":"gasFees","nodeType":"MemberAccess","referencedDeclaration":3743,"src":"14139:14:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":1157,"name":"UserOperationLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3318,"src":"14110:16:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_UserOperationLib_$3318_$","typeString":"type(library UserOperationLib)"}},"id":1158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14127:11:1","memberName":"unpackUints","nodeType":"MemberAccess","referencedDeclaration":3129,"src":"14110:28:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256,uint256)"}},"id":1161,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14110:44:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"src":"14055:99:1","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1163,"nodeType":"ExpressionStatement","src":"14055:99:1"},{"assignments":[1165],"declarations":[{"constant":false,"id":1165,"mutability":"mutable","name":"paymasterAndData","nameLocation":"14179:16:1","nodeType":"VariableDeclaration","scope":1220,"src":"14164:31:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1164,"name":"bytes","nodeType":"ElementaryTypeName","src":"14164:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1168,"initialValue":{"expression":{"id":1166,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1111,"src":"14198:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14205:16:1","memberName":"paymasterAndData","nodeType":"MemberAccess","referencedDeclaration":3745,"src":"14198:23:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"nodeType":"VariableDeclarationStatement","src":"14164:57:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1169,"name":"paymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1165,"src":"14235:16:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":1170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14252:6:1","memberName":"length","nodeType":"MemberAccess","src":"14235:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1171,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14261:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14235:27:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1218,"nodeType":"Block","src":"14618:159:1","statements":[{"expression":{"id":1204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1197,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"14632:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1199,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14640:9:1","memberName":"paymaster","nodeType":"MemberAccess","referencedDeclaration":930,"src":"14632:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"30","id":1202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14660:1:1","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":1201,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14652:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1200,"name":"address","nodeType":"ElementaryTypeName","src":"14652:7:1","typeDescriptions":{}}},"id":1203,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14652:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"14632:30:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1205,"nodeType":"ExpressionStatement","src":"14632:30:1"},{"expression":{"id":1210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1206,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"14676:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1208,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14684:29:1","memberName":"paymasterVerificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":924,"src":"14676:37:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1209,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14716:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14676:41:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1211,"nodeType":"ExpressionStatement","src":"14676:41:1"},{"expression":{"id":1216,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1212,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"14731:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1214,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14739:23:1","memberName":"paymasterPostOpGasLimit","nodeType":"MemberAccess","referencedDeclaration":926,"src":"14731:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":1215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14765:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14731:35:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1217,"nodeType":"ExpressionStatement","src":"14731:35:1"}]},"id":1219,"nodeType":"IfStatement","src":"14231:546:1","trueBody":{"id":1196,"nodeType":"Block","src":"14264:348:1","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1178,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1174,"name":"paymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1165,"src":"14303:16:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":1175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14320:6:1","memberName":"length","nodeType":"MemberAccess","src":"14303:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":1176,"name":"UserOperationLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3318,"src":"14330:16:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_UserOperationLib_$3318_$","typeString":"type(library UserOperationLib)"}},"id":1177,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14347:21:1","memberName":"PAYMASTER_DATA_OFFSET","nodeType":"MemberAccess","referencedDeclaration":2977,"src":"14330:38:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14303:65:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4141393320696e76616c6964207061796d6173746572416e6444617461","id":1179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14386:31:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_bed5bf2586bcf71963468f5a6e4def651dfab48dcb520989dbad3d1cd3cd8bdd","typeString":"literal_string \"AA93 invalid paymasterAndData\""},"value":"AA93 invalid paymasterAndData"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_bed5bf2586bcf71963468f5a6e4def651dfab48dcb520989dbad3d1cd3cd8bdd","typeString":"literal_string \"AA93 invalid paymasterAndData\""}],"id":1173,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"14278:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14278:153:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1181,"nodeType":"ExpressionStatement","src":"14278:153:1"},{"expression":{"id":1194,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"id":1182,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"14446:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1184,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14454:9:1","memberName":"paymaster","nodeType":"MemberAccess","referencedDeclaration":930,"src":"14446:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":1185,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"14465:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1186,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14473:29:1","memberName":"paymasterVerificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":924,"src":"14465:37:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1187,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1114,"src":"14504:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1188,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14512:23:1","memberName":"paymasterPostOpGasLimit","nodeType":"MemberAccess","referencedDeclaration":926,"src":"14504:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1189,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"14445:91:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_uint256_$_t_uint256_$","typeString":"tuple(address,uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1192,"name":"paymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1165,"src":"14584:16:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":1190,"name":"UserOperationLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3318,"src":"14539:16:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_UserOperationLib_$3318_$","typeString":"type(library UserOperationLib)"}},"id":1191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14556:27:1","memberName":"unpackPaymasterStaticFields","nodeType":"MemberAccess","referencedDeclaration":3301,"src":"14539:44:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_address_$_t_uint256_$_t_uint256_$","typeString":"function (bytes calldata) pure returns (address,uint256,uint256)"}},"id":1193,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14539:62:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_uint256_$_t_uint256_$","typeString":"tuple(address,uint256,uint256)"}},"src":"14445:156:1","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1195,"nodeType":"ExpressionStatement","src":"14445:156:1"}]}}]},"documentation":{"id":1108,"nodeType":"StructuredDocumentation","src":"13470:179:1","text":" Copy general fields from userOp into the memory opInfo structure.\n @param userOp  - The user operation.\n @param mUserOp - The memory user operation."},"id":1221,"implemented":true,"kind":"function","modifiers":[],"name":"_copyUserOpToMemory","nameLocation":"13663:19:1","nodeType":"FunctionDefinition","parameters":{"id":1115,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1111,"mutability":"mutable","name":"userOp","nameLocation":"13721:6:1","nodeType":"VariableDeclaration","scope":1221,"src":"13692:35:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":1110,"nodeType":"UserDefinedTypeName","pathNode":{"id":1109,"name":"PackedUserOperation","nameLocations":["13692:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"13692:19:1"},"referencedDeclaration":3748,"src":"13692:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":1114,"mutability":"mutable","name":"mUserOp","nameLocation":"13757:7:1","nodeType":"VariableDeclaration","scope":1221,"src":"13737:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":1113,"nodeType":"UserDefinedTypeName","pathNode":{"id":1112,"name":"MemoryUserOp","nameLocations":["13737:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"13737:12:1"},"referencedDeclaration":935,"src":"13737:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"}],"src":"13682:88:1"},"returnParameters":{"id":1116,"nodeType":"ParameterList","parameters":[],"src":"13785:0:1"},"scope":2236,"src":"13654:1129:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1255,"nodeType":"Block","src":"15046:358:1","statements":[{"id":1254,"nodeType":"UncheckedBlock","src":"15056:342:1","statements":[{"assignments":[1231],"declarations":[{"constant":false,"id":1231,"mutability":"mutable","name":"requiredGas","nameLocation":"15088:11:1","nodeType":"VariableDeclaration","scope":1254,"src":"15080:19:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1230,"name":"uint256","nodeType":"ElementaryTypeName","src":"15080:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1246,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1232,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"15102:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1233,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15110:20:1","memberName":"verificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":920,"src":"15102:28:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":1234,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"15149:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1235,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15157:12:1","memberName":"callGasLimit","nodeType":"MemberAccess","referencedDeclaration":922,"src":"15149:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15102:67:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":1237,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"15188:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1238,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15196:29:1","memberName":"paymasterVerificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":924,"src":"15188:37:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15102:123:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":1240,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"15244:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1241,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15252:23:1","memberName":"paymasterPostOpGasLimit","nodeType":"MemberAccess","referencedDeclaration":926,"src":"15244:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15102:173:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":1243,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"15294:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1244,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15302:18:1","memberName":"preVerificationGas","nodeType":"MemberAccess","referencedDeclaration":928,"src":"15294:26:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15102:218:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15080:240:1"},{"expression":{"id":1252,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1247,"name":"requiredPrefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1228,"src":"15335:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1248,"name":"requiredGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1231,"src":"15353:11:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":1249,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"15367:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1250,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15375:12:1","memberName":"maxFeePerGas","nodeType":"MemberAccess","referencedDeclaration":932,"src":"15367:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15353:34:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15335:52:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1253,"nodeType":"ExpressionStatement","src":"15335:52:1"}]}]},"documentation":{"id":1222,"nodeType":"StructuredDocumentation","src":"14789:132:1","text":" Get the required prefunded gas fee amount for an operation.\n @param mUserOp - The user operation in memory."},"id":1256,"implemented":true,"kind":"function","modifiers":[],"name":"_getRequiredPrefund","nameLocation":"14935:19:1","nodeType":"FunctionDefinition","parameters":{"id":1226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1225,"mutability":"mutable","name":"mUserOp","nameLocation":"14984:7:1","nodeType":"VariableDeclaration","scope":1256,"src":"14964:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":1224,"nodeType":"UserDefinedTypeName","pathNode":{"id":1223,"name":"MemoryUserOp","nameLocations":["14964:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"14964:12:1"},"referencedDeclaration":935,"src":"14964:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"}],"src":"14954:43:1"},"returnParameters":{"id":1229,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1228,"mutability":"mutable","name":"requiredPrefund","nameLocation":"15029:15:1","nodeType":"VariableDeclaration","scope":1256,"src":"15021:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1227,"name":"uint256","nodeType":"ElementaryTypeName","src":"15021:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15020:25:1"},"scope":2236,"src":"14926:478:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1357,"nodeType":"Block","src":"15796:948:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1267,"name":"initCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1264,"src":"15810:8:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":1268,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15819:6:1","memberName":"length","nodeType":"MemberAccess","src":"15810:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1269,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15829:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"15810:20:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1356,"nodeType":"IfStatement","src":"15806:932:1","trueBody":{"id":1355,"nodeType":"Block","src":"15832:906:1","statements":[{"assignments":[1272],"declarations":[{"constant":false,"id":1272,"mutability":"mutable","name":"sender","nameLocation":"15854:6:1","nodeType":"VariableDeclaration","scope":1355,"src":"15846:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1271,"name":"address","nodeType":"ElementaryTypeName","src":"15846:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1276,"initialValue":{"expression":{"expression":{"id":1273,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1262,"src":"15863:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1274,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15870:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"15863:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1275,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15878:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"15863:21:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"15846:38:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":1277,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1272,"src":"15902:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15909:4:1","memberName":"code","nodeType":"MemberAccess","src":"15902:11:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15914:6:1","memberName":"length","nodeType":"MemberAccess","src":"15902:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1280,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15924:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"15902:23:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1287,"nodeType":"IfStatement","src":"15898:104:1","trueBody":{"errorCall":{"arguments":[{"id":1283,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1259,"src":"15959:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"414131302073656e64657220616c726561647920636f6e7374727563746564","id":1284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15968:33:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_267485e0b239ff7726cfbcfb111a14e388e8253ef89a57c2a12abc410bbc1a79","typeString":"literal_string \"AA10 sender already constructed\""},"value":"AA10 sender already constructed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_267485e0b239ff7726cfbcfb111a14e388e8253ef89a57c2a12abc410bbc1a79","typeString":"literal_string \"AA10 sender already constructed\""}],"id":1282,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"15950:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15950:52:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1286,"nodeType":"RevertStatement","src":"15943:59:1"}},{"assignments":[1289],"declarations":[{"constant":false,"id":1289,"mutability":"mutable","name":"sender1","nameLocation":"16024:7:1","nodeType":"VariableDeclaration","scope":1355,"src":"16016:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1288,"name":"address","nodeType":"ElementaryTypeName","src":"16016:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1299,"initialValue":{"arguments":[{"id":1297,"name":"initCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1264,"src":"16135:8:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1290,"name":"senderCreator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":183,"src":"16034:13:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_SenderCreator_$2553_$","typeString":"function () view returns (contract SenderCreator)"}},"id":1291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16034:15:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"}},"id":1292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16050:12:1","memberName":"createSender","nodeType":"MemberAccess","referencedDeclaration":2552,"src":"16034:28:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes memory) external returns (address)"}},"id":1296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["gas"],"nodeType":"FunctionCallOptions","options":[{"expression":{"expression":{"id":1293,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1262,"src":"16085:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1294,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16092:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"16085:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1295,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16100:20:1","memberName":"verificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":920,"src":"16085:35:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"16034:100:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_bytes_memory_ptr_$returns$_t_address_$gas","typeString":"function (bytes memory) external returns (address)"}},"id":1298,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16034:110:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"16016:128:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1300,"name":"sender1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1289,"src":"16162:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1303,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16181:1:1","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":1302,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16173:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1301,"name":"address","nodeType":"ElementaryTypeName","src":"16173:7:1","typeDescriptions":{}}},"id":1304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16173:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16162:21:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1311,"nodeType":"IfStatement","src":"16158:98:1","trueBody":{"errorCall":{"arguments":[{"id":1307,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1259,"src":"16217:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"4141313320696e6974436f6465206661696c6564206f72204f4f47","id":1308,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16226:29:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_a46d515f685002bbb631614d07729b129ca01335d4ee63cf10853491e47dee73","typeString":"literal_string \"AA13 initCode failed or OOG\""},"value":"AA13 initCode failed or OOG"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_a46d515f685002bbb631614d07729b129ca01335d4ee63cf10853491e47dee73","typeString":"literal_string \"AA13 initCode failed or OOG\""}],"id":1306,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"16208:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16208:48:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1310,"nodeType":"RevertStatement","src":"16201:55:1"}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1312,"name":"sender1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1289,"src":"16274:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":1313,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1272,"src":"16285:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16274:17:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1320,"nodeType":"IfStatement","src":"16270:99:1","trueBody":{"errorCall":{"arguments":[{"id":1316,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1259,"src":"16325:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"4141313420696e6974436f6465206d7573742072657475726e2073656e646572","id":1317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16334:34:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_cf8e5f91822a9ca4de44f9559ff5db3083e7cb35e25710632c57dc900da04602","typeString":"literal_string \"AA14 initCode must return sender\""},"value":"AA14 initCode must return sender"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_cf8e5f91822a9ca4de44f9559ff5db3083e7cb35e25710632c57dc900da04602","typeString":"literal_string \"AA14 initCode must return sender\""}],"id":1315,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"16316:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1318,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16316:53:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1319,"nodeType":"RevertStatement","src":"16309:60:1"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":1321,"name":"sender1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1289,"src":"16387:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16395:4:1","memberName":"code","nodeType":"MemberAccess","src":"16387:12:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16400:6:1","memberName":"length","nodeType":"MemberAccess","src":"16387:19:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1324,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16410:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"16387:24:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1331,"nodeType":"IfStatement","src":"16383:106:1","trueBody":{"errorCall":{"arguments":[{"id":1327,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1259,"src":"16445:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"4141313520696e6974436f6465206d757374206372656174652073656e646572","id":1328,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16454:34:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_bb1e067ee25aabe05bbdddb7ea9a4490fa96ed7d10c6207acd0a3c723a9b7ed6","typeString":"literal_string \"AA15 initCode must create sender\""},"value":"AA15 initCode must create sender"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_bb1e067ee25aabe05bbdddb7ea9a4490fa96ed7d10c6207acd0a3c723a9b7ed6","typeString":"literal_string \"AA15 initCode must create sender\""}],"id":1326,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"16436:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16436:53:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1330,"nodeType":"RevertStatement","src":"16429:60:1"}},{"assignments":[1333],"declarations":[{"constant":false,"id":1333,"mutability":"mutable","name":"factory","nameLocation":"16511:7:1","nodeType":"VariableDeclaration","scope":1355,"src":"16503:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1332,"name":"address","nodeType":"ElementaryTypeName","src":"16503:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1344,"initialValue":{"arguments":[{"arguments":[{"baseExpression":{"id":1338,"name":"initCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1264,"src":"16537:8:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"3230","id":1340,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16548:2:1","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"id":1341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"16537:14:1","startExpression":{"hexValue":"30","id":1339,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16546:1:1","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":1337,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16529:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":1336,"name":"bytes20","nodeType":"ElementaryTypeName","src":"16529:7:1","typeDescriptions":{}}},"id":1342,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16529:23:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"}],"id":1335,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16521:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1334,"name":"address","nodeType":"ElementaryTypeName","src":"16521:7:1","typeDescriptions":{}}},"id":1343,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16521:32:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"16503:50:1"},{"eventCall":{"arguments":[{"expression":{"id":1346,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1262,"src":"16605:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1347,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16612:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"16605:17:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1348,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1272,"src":"16640:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1349,"name":"factory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1333,"src":"16664:7:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"expression":{"id":1350,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1262,"src":"16689:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1351,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16696:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"16689:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1352,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16704:9:1","memberName":"paymaster","nodeType":"MemberAccess","referencedDeclaration":930,"src":"16689:24:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1345,"name":"AccountDeployed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3419,"src":"16572:15:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$_t_address_$returns$__$","typeString":"function (bytes32,address,address,address)"}},"id":1353,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16572:155:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1354,"nodeType":"EmitStatement","src":"16567:160:1"}]}}]},"documentation":{"id":1257,"nodeType":"StructuredDocumentation","src":"15410:243:1","text":" Create sender smart contract account if init code is provided.\n @param opIndex  - The operation index.\n @param opInfo   - The operation info.\n @param initCode - The init code for the smart contract account."},"id":1358,"implemented":true,"kind":"function","modifiers":[],"name":"_createSenderIfNeeded","nameLocation":"15667:21:1","nodeType":"FunctionDefinition","parameters":{"id":1265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1259,"mutability":"mutable","name":"opIndex","nameLocation":"15706:7:1","nodeType":"VariableDeclaration","scope":1358,"src":"15698:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1258,"name":"uint256","nodeType":"ElementaryTypeName","src":"15698:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1262,"mutability":"mutable","name":"opInfo","nameLocation":"15741:6:1","nodeType":"VariableDeclaration","scope":1358,"src":"15723:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":1261,"nodeType":"UserDefinedTypeName","pathNode":{"id":1260,"name":"UserOpInfo","nameLocations":["15723:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"15723:10:1"},"referencedDeclaration":947,"src":"15723:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"},{"constant":false,"id":1264,"mutability":"mutable","name":"initCode","nameLocation":"15772:8:1","nodeType":"VariableDeclaration","scope":1358,"src":"15757:23:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1263,"name":"bytes","nodeType":"ElementaryTypeName","src":"15757:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15688:98:1"},"returnParameters":{"id":1266,"nodeType":"ParameterList","parameters":[],"src":"15796:0:1"},"scope":2236,"src":"15658:1086:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[3551],"body":{"id":1376,"nodeType":"Block","src":"16840:116:1","statements":[{"assignments":[1365],"declarations":[{"constant":false,"id":1365,"mutability":"mutable","name":"sender","nameLocation":"16858:6:1","nodeType":"VariableDeclaration","scope":1376,"src":"16850:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1364,"name":"address","nodeType":"ElementaryTypeName","src":"16850:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1371,"initialValue":{"arguments":[{"id":1369,"name":"initCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1361,"src":"16896:8:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1366,"name":"senderCreator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":183,"src":"16867:13:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_SenderCreator_$2553_$","typeString":"function () view returns (contract SenderCreator)"}},"id":1367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16867:15:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_SenderCreator_$2553","typeString":"contract SenderCreator"}},"id":1368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16883:12:1","memberName":"createSender","nodeType":"MemberAccess","referencedDeclaration":2552,"src":"16867:28:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes memory) external returns (address)"}},"id":1370,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16867:38:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"16850:55:1"},{"errorCall":{"arguments":[{"id":1373,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1365,"src":"16942:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1372,"name":"SenderAddressResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3487,"src":"16922:19:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":1374,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16922:27:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1375,"nodeType":"RevertStatement","src":"16915:34:1"}]},"documentation":{"id":1359,"nodeType":"StructuredDocumentation","src":"16750:27:1","text":"@inheritdoc IEntryPoint"},"functionSelector":"9b249f69","id":1377,"implemented":true,"kind":"function","modifiers":[],"name":"getSenderAddress","nameLocation":"16791:16:1","nodeType":"FunctionDefinition","parameters":{"id":1362,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1361,"mutability":"mutable","name":"initCode","nameLocation":"16823:8:1","nodeType":"VariableDeclaration","scope":1377,"src":"16808:23:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1360,"name":"bytes","nodeType":"ElementaryTypeName","src":"16808:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16807:25:1"},"returnParameters":{"id":1363,"nodeType":"ParameterList","parameters":[],"src":"16840:0:1"},"scope":2236,"src":"16782:174:1","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":1518,"nodeType":"Block","src":"17678:1337:1","statements":[{"id":1517,"nodeType":"UncheckedBlock","src":"17688:1321:1","statements":[{"assignments":[1397],"declarations":[{"constant":false,"id":1397,"mutability":"mutable","name":"mUserOp","nameLocation":"17732:7:1","nodeType":"VariableDeclaration","scope":1517,"src":"17712:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":1396,"nodeType":"UserDefinedTypeName","pathNode":{"id":1395,"name":"MemoryUserOp","nameLocations":["17712:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"17712:12:1"},"referencedDeclaration":935,"src":"17712:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"}],"id":1400,"initialValue":{"expression":{"id":1398,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1386,"src":"17742:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1399,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17749:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"17742:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"nodeType":"VariableDeclarationStatement","src":"17712:44:1"},{"assignments":[1402],"declarations":[{"constant":false,"id":1402,"mutability":"mutable","name":"sender","nameLocation":"17778:6:1","nodeType":"VariableDeclaration","scope":1517,"src":"17770:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1401,"name":"address","nodeType":"ElementaryTypeName","src":"17770:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1405,"initialValue":{"expression":{"id":1403,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1397,"src":"17787:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1404,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17795:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"17787:14:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"17770:31:1"},{"expression":{"arguments":[{"id":1407,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1380,"src":"17837:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1408,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1386,"src":"17846:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"expression":{"id":1409,"name":"op","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1383,"src":"17854:2:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17857:8:1","memberName":"initCode","nodeType":"MemberAccess","referencedDeclaration":3735,"src":"17854:11:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":1406,"name":"_createSenderIfNeeded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1358,"src":"17815:21:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bytes_calldata_ptr_$returns$__$","typeString":"function (uint256,struct EntryPoint.UserOpInfo memory,bytes calldata)"}},"id":1411,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17815:51:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1412,"nodeType":"ExpressionStatement","src":"17815:51:1"},{"assignments":[1414],"declarations":[{"constant":false,"id":1414,"mutability":"mutable","name":"paymaster","nameLocation":"17888:9:1","nodeType":"VariableDeclaration","scope":1517,"src":"17880:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1413,"name":"address","nodeType":"ElementaryTypeName","src":"17880:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1417,"initialValue":{"expression":{"id":1415,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1397,"src":"17900:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1416,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17908:9:1","memberName":"paymaster","nodeType":"MemberAccess","referencedDeclaration":930,"src":"17900:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"17880:37:1"},{"assignments":[1419],"declarations":[{"constant":false,"id":1419,"mutability":"mutable","name":"missingAccountFunds","nameLocation":"17939:19:1","nodeType":"VariableDeclaration","scope":1517,"src":"17931:27:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1418,"name":"uint256","nodeType":"ElementaryTypeName","src":"17931:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1421,"initialValue":{"hexValue":"30","id":1420,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17961:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17931:31:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1422,"name":"paymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1414,"src":"17980:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1425,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18001:1:1","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":1424,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17993:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1423,"name":"address","nodeType":"ElementaryTypeName","src":"17993:7:1","typeDescriptions":{}}},"id":1426,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17993:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"17980:23:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1446,"nodeType":"IfStatement","src":"17976:222:1","trueBody":{"id":1445,"nodeType":"Block","src":"18005:193:1","statements":[{"assignments":[1429],"declarations":[{"constant":false,"id":1429,"mutability":"mutable","name":"bal","nameLocation":"18031:3:1","nodeType":"VariableDeclaration","scope":1445,"src":"18023:11:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1428,"name":"uint256","nodeType":"ElementaryTypeName","src":"18023:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1433,"initialValue":{"arguments":[{"id":1431,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1402,"src":"18047:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1430,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2624,"src":"18037:9:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1432,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18037:17:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18023:31:1"},{"expression":{"id":1443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1434,"name":"missingAccountFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1419,"src":"18072:19:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1435,"name":"bal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1429,"src":"18094:3:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":1436,"name":"requiredPrefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1388,"src":"18100:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18094:21:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1439,"name":"requiredPrefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1388,"src":"18162:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1440,"name":"bal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1429,"src":"18180:3:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18162:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"18094:89:1","trueExpression":{"hexValue":"30","id":1438,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18138:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18072:111:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1444,"nodeType":"ExpressionStatement","src":"18072:111:1"}]}},{"clauses":[{"block":{"id":1465,"nodeType":"Block","src":"18418:65:1","statements":[{"expression":{"id":1463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1461,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1393,"src":"18436:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1462,"name":"_validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1459,"src":"18453:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18436:32:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1464,"nodeType":"ExpressionStatement","src":"18436:32:1"}]},"errorName":"","id":1466,"nodeType":"TryCatchClause","parameters":{"id":1460,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1459,"mutability":"mutable","name":"_validationData","nameLocation":"18401:15:1","nodeType":"VariableDeclaration","scope":1466,"src":"18393:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1458,"name":"uint256","nodeType":"ElementaryTypeName","src":"18393:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18392:25:1"},"src":"18384:99:1"},{"block":{"id":1476,"nodeType":"Block","src":"18490:127:1","statements":[{"errorCall":{"arguments":[{"id":1468,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1380,"src":"18534:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413233207265766572746564","id":1469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18543:15:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_f272bf03d6e7cfb67a72dd0c4aee94925483c9b766e02beaec86cf4f0a3b9477","typeString":"literal_string \"AA23 reverted\""},"value":"AA23 reverted"},{"arguments":[{"id":1472,"name":"REVERT_REASON_MAX_LEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":195,"src":"18579:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1470,"name":"Exec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3839,"src":"18560:4:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Exec_$3839_$","typeString":"type(library Exec)"}},"id":1471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18565:13:1","memberName":"getReturnData","nodeType":"MemberAccess","referencedDeclaration":3801,"src":"18560:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"}},"id":1473,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18560:41:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_f272bf03d6e7cfb67a72dd0c4aee94925483c9b766e02beaec86cf4f0a3b9477","typeString":"literal_string \"AA23 reverted\""},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1467,"name":"FailedOpWithRevert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3474,"src":"18515:18:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory,bytes memory) pure returns (error)"}},"id":1474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18515:87:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1475,"nodeType":"RevertStatement","src":"18508:94:1"}]},"errorName":"","id":1477,"nodeType":"TryCatchClause","src":"18484:133:1"}],"externalCall":{"arguments":[{"id":1453,"name":"op","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1383,"src":"18328:2:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"expression":{"id":1454,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1386,"src":"18332:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1455,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18339:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"18332:17:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1456,"name":"missingAccountFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1419,"src":"18351:19:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":1448,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1402,"src":"18240:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1447,"name":"IAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3335,"src":"18231:8:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccount_$3335_$","typeString":"type(contract IAccount)"}},"id":1449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18231:16:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccount_$3335","typeString":"contract IAccount"}},"id":1450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18248:14:1","memberName":"validateUserOp","nodeType":"MemberAccess","referencedDeclaration":3334,"src":"18231:31:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PackedUserOperation_$3748_memory_ptr_$_t_bytes32_$_t_uint256_$returns$_t_uint256_$","typeString":"function (struct PackedUserOperation memory,bytes32,uint256) external returns (uint256)"}},"id":1452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["gas"],"nodeType":"FunctionCallOptions","options":[{"id":1451,"name":"verificationGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1390,"src":"18289:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"18231:96:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PackedUserOperation_$3748_memory_ptr_$_t_bytes32_$_t_uint256_$returns$_t_uint256_$gas","typeString":"function (struct PackedUserOperation memory,bytes32,uint256) external returns (uint256)"}},"id":1457,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18231:140:1","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1478,"nodeType":"TryStatement","src":"18211:406:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1479,"name":"paymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1414,"src":"18634:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1482,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18655:1:1","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":1481,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18647:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1480,"name":"address","nodeType":"ElementaryTypeName","src":"18647:7:1","typeDescriptions":{}}},"id":1483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18647:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"18634:23:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1516,"nodeType":"IfStatement","src":"18630:369:1","trueBody":{"id":1515,"nodeType":"Block","src":"18659:340:1","statements":[{"assignments":[1487],"declarations":[{"constant":false,"id":1487,"mutability":"mutable","name":"senderInfo","nameLocation":"18697:10:1","nodeType":"VariableDeclaration","scope":1515,"src":"18677:30:1","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":1486,"nodeType":"UserDefinedTypeName","pathNode":{"id":1485,"name":"DepositInfo","nameLocations":["18677:11:1"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"18677:11:1"},"referencedDeclaration":3673,"src":"18677:11:1","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"id":1491,"initialValue":{"baseExpression":{"id":1488,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"18710:8:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":1490,"indexExpression":{"id":1489,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1402,"src":"18719:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18710:16:1","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"VariableDeclarationStatement","src":"18677:49:1"},{"assignments":[1493],"declarations":[{"constant":false,"id":1493,"mutability":"mutable","name":"deposit","nameLocation":"18752:7:1","nodeType":"VariableDeclaration","scope":1515,"src":"18744:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1492,"name":"uint256","nodeType":"ElementaryTypeName","src":"18744:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1496,"initialValue":{"expression":{"id":1494,"name":"senderInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1487,"src":"18762:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":1495,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18773:7:1","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"18762:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18744:36:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1497,"name":"requiredPrefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1388,"src":"18802:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":1498,"name":"deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1493,"src":"18820:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18802:25:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1506,"nodeType":"IfStatement","src":"18798:123:1","trueBody":{"id":1505,"nodeType":"Block","src":"18829:92:1","statements":[{"errorCall":{"arguments":[{"id":1501,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1380,"src":"18867:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413231206469646e2774207061792070726566756e64","id":1502,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18876:25:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_af9d5dc558e78f4dcea94657e51b2cc454e4ce4aecf26fcc28fc02e10982eb3d","typeString":"literal_string \"AA21 didn't pay prefund\""},"value":"AA21 didn't pay prefund"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_af9d5dc558e78f4dcea94657e51b2cc454e4ce4aecf26fcc28fc02e10982eb3d","typeString":"literal_string \"AA21 didn't pay prefund\""}],"id":1500,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"18858:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1503,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18858:44:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1504,"nodeType":"RevertStatement","src":"18851:51:1"}]}},{"expression":{"id":1513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1507,"name":"senderInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1487,"src":"18938:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":1509,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"18949:7:1","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"18938:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1510,"name":"deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1493,"src":"18959:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1511,"name":"requiredPrefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1388,"src":"18969:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18959:25:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18938:46:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1514,"nodeType":"ExpressionStatement","src":"18938:46:1"}]}}]}]},"documentation":{"id":1378,"nodeType":"StructuredDocumentation","src":"16962:414:1","text":" Call account.validateUserOp.\n Revert (with FailedOp) in case validateUserOp reverts, or account didn't send required prefund.\n Decrement account's deposit if needed.\n @param opIndex         - The operation index.\n @param op              - The user operation.\n @param opInfo          - The operation info.\n @param requiredPrefund - The required prefund amount."},"id":1519,"implemented":true,"kind":"function","modifiers":[],"name":"_validateAccountPrepayment","nameLocation":"17390:26:1","nodeType":"FunctionDefinition","parameters":{"id":1391,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1380,"mutability":"mutable","name":"opIndex","nameLocation":"17434:7:1","nodeType":"VariableDeclaration","scope":1519,"src":"17426:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1379,"name":"uint256","nodeType":"ElementaryTypeName","src":"17426:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1383,"mutability":"mutable","name":"op","nameLocation":"17480:2:1","nodeType":"VariableDeclaration","scope":1519,"src":"17451:31:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":1382,"nodeType":"UserDefinedTypeName","pathNode":{"id":1381,"name":"PackedUserOperation","nameLocations":["17451:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"17451:19:1"},"referencedDeclaration":3748,"src":"17451:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":1386,"mutability":"mutable","name":"opInfo","nameLocation":"17510:6:1","nodeType":"VariableDeclaration","scope":1519,"src":"17492:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":1385,"nodeType":"UserDefinedTypeName","pathNode":{"id":1384,"name":"UserOpInfo","nameLocations":["17492:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"17492:10:1"},"referencedDeclaration":947,"src":"17492:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"},{"constant":false,"id":1388,"mutability":"mutable","name":"requiredPrefund","nameLocation":"17534:15:1","nodeType":"VariableDeclaration","scope":1519,"src":"17526:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1387,"name":"uint256","nodeType":"ElementaryTypeName","src":"17526:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1390,"mutability":"mutable","name":"verificationGasLimit","nameLocation":"17567:20:1","nodeType":"VariableDeclaration","scope":1519,"src":"17559:28:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1389,"name":"uint256","nodeType":"ElementaryTypeName","src":"17559:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17416:177:1"},"returnParameters":{"id":1394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1393,"mutability":"mutable","name":"validationData","nameLocation":"17649:14:1","nodeType":"VariableDeclaration","scope":1519,"src":"17641:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1392,"name":"uint256","nodeType":"ElementaryTypeName","src":"17641:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17627:46:1"},"scope":2236,"src":"17381:1634:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1640,"nodeType":"Block","src":"19821:1282:1","statements":[{"id":1639,"nodeType":"UncheckedBlock","src":"19831:1266:1","statements":[{"assignments":[1538],"declarations":[{"constant":false,"id":1538,"mutability":"mutable","name":"preGas","nameLocation":"19863:6:1","nodeType":"VariableDeclaration","scope":1639,"src":"19855:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1537,"name":"uint256","nodeType":"ElementaryTypeName","src":"19855:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1541,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1539,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"19872:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19872:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19855:26:1"},{"assignments":[1544],"declarations":[{"constant":false,"id":1544,"mutability":"mutable","name":"mUserOp","nameLocation":"19915:7:1","nodeType":"VariableDeclaration","scope":1639,"src":"19895:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":1543,"nodeType":"UserDefinedTypeName","pathNode":{"id":1542,"name":"MemoryUserOp","nameLocations":["19895:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"19895:12:1"},"referencedDeclaration":935,"src":"19895:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"}],"id":1547,"initialValue":{"expression":{"id":1545,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1528,"src":"19925:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1546,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19932:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"19925:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"nodeType":"VariableDeclarationStatement","src":"19895:44:1"},{"assignments":[1549],"declarations":[{"constant":false,"id":1549,"mutability":"mutable","name":"paymaster","nameLocation":"19961:9:1","nodeType":"VariableDeclaration","scope":1639,"src":"19953:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1548,"name":"address","nodeType":"ElementaryTypeName","src":"19953:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1552,"initialValue":{"expression":{"id":1550,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1544,"src":"19973:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1551,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19981:9:1","memberName":"paymaster","nodeType":"MemberAccess","referencedDeclaration":930,"src":"19973:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"19953:37:1"},{"assignments":[1555],"declarations":[{"constant":false,"id":1555,"mutability":"mutable","name":"paymasterInfo","nameLocation":"20024:13:1","nodeType":"VariableDeclaration","scope":1639,"src":"20004:33:1","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":1554,"nodeType":"UserDefinedTypeName","pathNode":{"id":1553,"name":"DepositInfo","nameLocations":["20004:11:1"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"20004:11:1"},"referencedDeclaration":3673,"src":"20004:11:1","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"id":1559,"initialValue":{"baseExpression":{"id":1556,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"20040:8:1","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":1558,"indexExpression":{"id":1557,"name":"paymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1549,"src":"20049:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20040:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"VariableDeclarationStatement","src":"20004:55:1"},{"assignments":[1561],"declarations":[{"constant":false,"id":1561,"mutability":"mutable","name":"deposit","nameLocation":"20081:7:1","nodeType":"VariableDeclaration","scope":1639,"src":"20073:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1560,"name":"uint256","nodeType":"ElementaryTypeName","src":"20073:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1564,"initialValue":{"expression":{"id":1562,"name":"paymasterInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1555,"src":"20091:13:1","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":1563,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20105:7:1","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"20091:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"20073:39:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1565,"name":"deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"20130:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1566,"name":"requiredPreFund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1530,"src":"20140:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20130:25:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1574,"nodeType":"IfStatement","src":"20126:122:1","trueBody":{"id":1573,"nodeType":"Block","src":"20157:91:1","statements":[{"errorCall":{"arguments":[{"id":1569,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1522,"src":"20191:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413331207061796d6173746572206465706f73697420746f6f206c6f77","id":1570,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"20200:32:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_423a165b7dbbda2ae3873c5d3fae3c0ad56dda63b0eb4d372683317213e4df0f","typeString":"literal_string \"AA31 paymaster deposit too low\""},"value":"AA31 paymaster deposit too low"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_423a165b7dbbda2ae3873c5d3fae3c0ad56dda63b0eb4d372683317213e4df0f","typeString":"literal_string \"AA31 paymaster deposit too low\""}],"id":1568,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"20182:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20182:51:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1572,"nodeType":"RevertStatement","src":"20175:58:1"}]}},{"expression":{"id":1581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1575,"name":"paymasterInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1555,"src":"20261:13:1","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":1577,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"20275:7:1","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"20261:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1580,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1578,"name":"deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1561,"src":"20285:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1579,"name":"requiredPreFund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1530,"src":"20295:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20285:25:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20261:49:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1582,"nodeType":"ExpressionStatement","src":"20261:49:1"},{"assignments":[1584],"declarations":[{"constant":false,"id":1584,"mutability":"mutable","name":"pmVerificationGasLimit","nameLocation":"20332:22:1","nodeType":"VariableDeclaration","scope":1639,"src":"20324:30:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1583,"name":"uint256","nodeType":"ElementaryTypeName","src":"20324:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1587,"initialValue":{"expression":{"id":1585,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1544,"src":"20357:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1586,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20365:29:1","memberName":"paymasterVerificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":924,"src":"20357:37:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"20324:70:1"},{"clauses":[{"block":{"id":1612,"nodeType":"Block","src":"20690:101:1","statements":[{"expression":{"id":1606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1604,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1533,"src":"20708:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1605,"name":"_context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1600,"src":"20718:8:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"20708:18:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1607,"nodeType":"ExpressionStatement","src":"20708:18:1"},{"expression":{"id":1610,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1608,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1535,"src":"20744:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1609,"name":"_validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1602,"src":"20761:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20744:32:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1611,"nodeType":"ExpressionStatement","src":"20744:32:1"}]},"errorName":"","id":1613,"nodeType":"TryCatchClause","parameters":{"id":1603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1600,"mutability":"mutable","name":"_context","nameLocation":"20655:8:1","nodeType":"VariableDeclaration","scope":1613,"src":"20642:21:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1599,"name":"bytes","nodeType":"ElementaryTypeName","src":"20642:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1602,"mutability":"mutable","name":"_validationData","nameLocation":"20673:15:1","nodeType":"VariableDeclaration","scope":1613,"src":"20665:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1601,"name":"uint256","nodeType":"ElementaryTypeName","src":"20665:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20641:48:1"},"src":"20633:158:1"},{"block":{"id":1623,"nodeType":"Block","src":"20798:127:1","statements":[{"errorCall":{"arguments":[{"id":1615,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1522,"src":"20842:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413333207265766572746564","id":1616,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"20851:15:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_06edc37a8d32c7fe78db72f91122302e62b14234c1d15f3c0564559dca4729f7","typeString":"literal_string \"AA33 reverted\""},"value":"AA33 reverted"},{"arguments":[{"id":1619,"name":"REVERT_REASON_MAX_LEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":195,"src":"20887:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1617,"name":"Exec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3839,"src":"20868:4:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Exec_$3839_$","typeString":"type(library Exec)"}},"id":1618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20873:13:1","memberName":"getReturnData","nodeType":"MemberAccess","referencedDeclaration":3801,"src":"20868:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"}},"id":1620,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20868:41:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_06edc37a8d32c7fe78db72f91122302e62b14234c1d15f3c0564559dca4729f7","typeString":"literal_string \"AA33 reverted\""},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1614,"name":"FailedOpWithRevert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3474,"src":"20823:18:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory,bytes memory) pure returns (error)"}},"id":1621,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20823:87:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1622,"nodeType":"RevertStatement","src":"20816:94:1"}]},"errorName":"","id":1624,"nodeType":"TryCatchClause","src":"20792:133:1"}],"externalCall":{"arguments":[{"id":1594,"name":"op","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1525,"src":"20524:2:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"expression":{"id":1595,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1528,"src":"20548:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1596,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20555:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"20548:17:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1597,"name":"requiredPreFund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1530,"src":"20587:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":1589,"name":"paymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1549,"src":"20439:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1588,"name":"IPaymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"20428:10:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPaymaster_$3622_$","typeString":"type(contract IPaymaster)"}},"id":1590,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20428:21:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPaymaster_$3622","typeString":"contract IPaymaster"}},"id":1591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20450:23:1","memberName":"validatePaymasterUserOp","nodeType":"MemberAccess","referencedDeclaration":3608,"src":"20428:45:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PackedUserOperation_$3748_memory_ptr_$_t_bytes32_$_t_uint256_$returns$_t_bytes_memory_ptr_$_t_uint256_$","typeString":"function (struct PackedUserOperation memory,bytes32,uint256) external returns (bytes memory,uint256)"}},"id":1593,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["gas"],"nodeType":"FunctionCallOptions","options":[{"id":1592,"name":"pmVerificationGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1584,"src":"20479:22:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"20428:74:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PackedUserOperation_$3748_memory_ptr_$_t_bytes32_$_t_uint256_$returns$_t_bytes_memory_ptr_$_t_uint256_$gas","typeString":"function (struct PackedUserOperation memory,bytes32,uint256) external returns (bytes memory,uint256)"}},"id":1598,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20428:192:1","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_uint256_$","typeString":"tuple(bytes memory,uint256)"}},"id":1625,"nodeType":"TryStatement","src":"20408:517:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1626,"name":"preGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1538,"src":"20942:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1627,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"20951:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1628,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20951:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20942:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":1630,"name":"pmVerificationGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1584,"src":"20963:22:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20942:43:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1638,"nodeType":"IfStatement","src":"20938:149:1","trueBody":{"id":1637,"nodeType":"Block","src":"20987:100:1","statements":[{"errorCall":{"arguments":[{"id":1633,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1522,"src":"21021:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413336206f766572207061796d6173746572566572696669636174696f6e4761734c696d6974","id":1634,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21030:41:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_d96a863c677d3d708cee8a222cbb00abbe452a22e3e4b00ad0cea4459b39c336","typeString":"literal_string \"AA36 over paymasterVerificationGasLimit\""},"value":"AA36 over paymasterVerificationGasLimit"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_d96a863c677d3d708cee8a222cbb00abbe452a22e3e4b00ad0cea4459b39c336","typeString":"literal_string \"AA36 over paymasterVerificationGasLimit\""}],"id":1632,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"21012:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1635,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21012:60:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1636,"nodeType":"RevertStatement","src":"21005:67:1"}]}}]}]},"documentation":{"id":1520,"nodeType":"StructuredDocumentation","src":"19021:554:1","text":" In case the request has a paymaster:\n  - Validate paymaster has enough deposit.\n  - Call paymaster.validatePaymasterUserOp.\n  - Revert with proper FailedOp in case paymaster reverts.\n  - Decrement paymaster's deposit.\n @param opIndex                            - The operation index.\n @param op                                 - The user operation.\n @param opInfo                             - The operation info.\n @param requiredPreFund                    - The required prefund amount."},"id":1641,"implemented":true,"kind":"function","modifiers":[],"name":"_validatePaymasterPrepayment","nameLocation":"19589:28:1","nodeType":"FunctionDefinition","parameters":{"id":1531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1522,"mutability":"mutable","name":"opIndex","nameLocation":"19635:7:1","nodeType":"VariableDeclaration","scope":1641,"src":"19627:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1521,"name":"uint256","nodeType":"ElementaryTypeName","src":"19627:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1525,"mutability":"mutable","name":"op","nameLocation":"19681:2:1","nodeType":"VariableDeclaration","scope":1641,"src":"19652:31:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":1524,"nodeType":"UserDefinedTypeName","pathNode":{"id":1523,"name":"PackedUserOperation","nameLocations":["19652:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"19652:19:1"},"referencedDeclaration":3748,"src":"19652:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":1528,"mutability":"mutable","name":"opInfo","nameLocation":"19711:6:1","nodeType":"VariableDeclaration","scope":1641,"src":"19693:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":1527,"nodeType":"UserDefinedTypeName","pathNode":{"id":1526,"name":"UserOpInfo","nameLocations":["19693:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"19693:10:1"},"referencedDeclaration":947,"src":"19693:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"},{"constant":false,"id":1530,"mutability":"mutable","name":"requiredPreFund","nameLocation":"19735:15:1","nodeType":"VariableDeclaration","scope":1641,"src":"19727:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1529,"name":"uint256","nodeType":"ElementaryTypeName","src":"19727:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19617:139:1"},"returnParameters":{"id":1536,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1533,"mutability":"mutable","name":"context","nameLocation":"19788:7:1","nodeType":"VariableDeclaration","scope":1641,"src":"19775:20:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1532,"name":"bytes","nodeType":"ElementaryTypeName","src":"19775:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1535,"mutability":"mutable","name":"validationData","nameLocation":"19805:14:1","nodeType":"VariableDeclaration","scope":1641,"src":"19797:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1534,"name":"uint256","nodeType":"ElementaryTypeName","src":"19797:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19774:46:1"},"scope":2236,"src":"19580:1523:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1711,"nodeType":"Block","src":"21682:939:1","statements":[{"assignments":[1654,1656],"declarations":[{"constant":false,"id":1654,"mutability":"mutable","name":"aggregator","nameLocation":"21701:10:1","nodeType":"VariableDeclaration","scope":1711,"src":"21693:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1653,"name":"address","nodeType":"ElementaryTypeName","src":"21693:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1656,"mutability":"mutable","name":"outOfTimeRange","nameLocation":"21718:14:1","nodeType":"VariableDeclaration","scope":1711,"src":"21713:19:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1655,"name":"bool","nodeType":"ElementaryTypeName","src":"21713:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":1660,"initialValue":{"arguments":[{"id":1658,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"21768:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1657,"name":"_getValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1761,"src":"21736:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$_t_bool_$","typeString":"function (uint256) view returns (address,bool)"}},"id":1659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21736:56:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_bool_$","typeString":"tuple(address,bool)"}},"nodeType":"VariableDeclarationStatement","src":"21692:100:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1663,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1661,"name":"expectedAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1650,"src":"21806:18:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":1662,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1654,"src":"21828:10:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21806:32:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1670,"nodeType":"IfStatement","src":"21802:111:1","trueBody":{"id":1669,"nodeType":"Block","src":"21840:73:1","statements":[{"errorCall":{"arguments":[{"id":1665,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1644,"src":"21870:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413234207369676e6174757265206572726f72","id":1666,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21879:22:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_230fad9992163f7c7bca82563472469d2ae8f1696105d00fd8b1abf9e366de4e","typeString":"literal_string \"AA24 signature error\""},"value":"AA24 signature error"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_230fad9992163f7c7bca82563472469d2ae8f1696105d00fd8b1abf9e366de4e","typeString":"literal_string \"AA24 signature error\""}],"id":1664,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"21861:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1667,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21861:41:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1668,"nodeType":"RevertStatement","src":"21854:48:1"}]}},{"condition":{"id":1671,"name":"outOfTimeRange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1656,"src":"21926:14:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1678,"nodeType":"IfStatement","src":"21922:96:1","trueBody":{"id":1677,"nodeType":"Block","src":"21942:76:1","statements":[{"errorCall":{"arguments":[{"id":1673,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1644,"src":"21972:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"414132322065787069726564206f72206e6f7420647565","id":1674,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"21981:25:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_4f6af422606d6fab6224761f4f503b9674de8994d20a0052616d3524b670e766","typeString":"literal_string \"AA22 expired or not due\""},"value":"AA22 expired or not due"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_4f6af422606d6fab6224761f4f503b9674de8994d20a0052616d3524b670e766","typeString":"literal_string \"AA22 expired or not due\""}],"id":1672,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"21963:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1675,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21963:44:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1676,"nodeType":"RevertStatement","src":"21956:51:1"}]}},{"assignments":[1680],"declarations":[{"constant":false,"id":1680,"mutability":"mutable","name":"pmAggregator","nameLocation":"22265:12:1","nodeType":"VariableDeclaration","scope":1711,"src":"22257:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1679,"name":"address","nodeType":"ElementaryTypeName","src":"22257:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1681,"nodeType":"VariableDeclarationStatement","src":"22257:20:1"},{"expression":{"id":1688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":1682,"name":"pmAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1680,"src":"22288:12:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1683,"name":"outOfTimeRange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1656,"src":"22302:14:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":1684,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"22287:30:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_bool_$","typeString":"tuple(address,bool)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1686,"name":"paymasterValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1648,"src":"22352:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1685,"name":"_getValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1761,"src":"22320:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$_t_bool_$","typeString":"function (uint256) view returns (address,bool)"}},"id":1687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22320:65:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_bool_$","typeString":"tuple(address,bool)"}},"src":"22287:98:1","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1689,"nodeType":"ExpressionStatement","src":"22287:98:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1690,"name":"pmAggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1680,"src":"22399:12:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1693,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22423:1:1","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":1692,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22415:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1691,"name":"address","nodeType":"ElementaryTypeName","src":"22415:7:1","typeDescriptions":{}}},"id":1694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22415:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"22399:26:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1702,"nodeType":"IfStatement","src":"22395:105:1","trueBody":{"id":1701,"nodeType":"Block","src":"22427:73:1","statements":[{"errorCall":{"arguments":[{"id":1697,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1644,"src":"22457:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413334207369676e6174757265206572726f72","id":1698,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22466:22:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_b49ba4e4826dc300b471d06b2a8612d53c4c2eb033cbfd2061c54c636bb00871","typeString":"literal_string \"AA34 signature error\""},"value":"AA34 signature error"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_b49ba4e4826dc300b471d06b2a8612d53c4c2eb033cbfd2061c54c636bb00871","typeString":"literal_string \"AA34 signature error\""}],"id":1696,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"22448:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1699,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22448:41:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1700,"nodeType":"RevertStatement","src":"22441:48:1"}]}},{"condition":{"id":1703,"name":"outOfTimeRange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1656,"src":"22513:14:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1710,"nodeType":"IfStatement","src":"22509:106:1","trueBody":{"id":1709,"nodeType":"Block","src":"22529:86:1","statements":[{"errorCall":{"arguments":[{"id":1705,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1644,"src":"22559:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413332207061796d61737465722065787069726564206f72206e6f7420647565","id":1706,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22568:35:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_15a824f4c22cc564e6215a3b0d10da3af06bea6cdb58dc3760d85748fcd6036b","typeString":"literal_string \"AA32 paymaster expired or not due\""},"value":"AA32 paymaster expired or not due"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_15a824f4c22cc564e6215a3b0d10da3af06bea6cdb58dc3760d85748fcd6036b","typeString":"literal_string \"AA32 paymaster expired or not due\""}],"id":1704,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"22550:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1707,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22550:54:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1708,"nodeType":"RevertStatement","src":"22543:61:1"}]}}]},"documentation":{"id":1642,"nodeType":"StructuredDocumentation","src":"21109:362:1","text":" Revert if either account validationData or paymaster validationData is expired.\n @param opIndex                 - The operation index.\n @param validationData          - The account validationData.\n @param paymasterValidationData - The paymaster validationData.\n @param expectedAggregator      - The expected aggregator."},"id":1712,"implemented":true,"kind":"function","modifiers":[],"name":"_validateAccountAndPaymasterValidationData","nameLocation":"21485:42:1","nodeType":"FunctionDefinition","parameters":{"id":1651,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1644,"mutability":"mutable","name":"opIndex","nameLocation":"21545:7:1","nodeType":"VariableDeclaration","scope":1712,"src":"21537:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1643,"name":"uint256","nodeType":"ElementaryTypeName","src":"21537:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1646,"mutability":"mutable","name":"validationData","nameLocation":"21570:14:1","nodeType":"VariableDeclaration","scope":1712,"src":"21562:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1645,"name":"uint256","nodeType":"ElementaryTypeName","src":"21562:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1648,"mutability":"mutable","name":"paymasterValidationData","nameLocation":"21602:23:1","nodeType":"VariableDeclaration","scope":1712,"src":"21594:31:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1647,"name":"uint256","nodeType":"ElementaryTypeName","src":"21594:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1650,"mutability":"mutable","name":"expectedAggregator","nameLocation":"21643:18:1","nodeType":"VariableDeclaration","scope":1712,"src":"21635:26:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1649,"name":"address","nodeType":"ElementaryTypeName","src":"21635:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"21527:140:1"},"returnParameters":{"id":1652,"nodeType":"ParameterList","parameters":[],"src":"21682:0:1"},"scope":2236,"src":"21476:1145:1","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":1760,"nodeType":"Block","src":"23081:356:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1722,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1715,"src":"23095:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1723,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23113:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23095:19:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1733,"nodeType":"IfStatement","src":"23091:76:1","trueBody":{"id":1732,"nodeType":"Block","src":"23116:51:1","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":1727,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23146:1:1","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":1726,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23138:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1725,"name":"address","nodeType":"ElementaryTypeName","src":"23138:7:1","typeDescriptions":{}}},"id":1728,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23138:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"66616c7365","id":1729,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"23150:5:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"id":1730,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"23137:19:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_bool_$","typeString":"tuple(address,bool)"}},"functionReturnParameters":1721,"id":1731,"nodeType":"Return","src":"23130:26:1"}]}},{"assignments":[1736],"declarations":[{"constant":false,"id":1736,"mutability":"mutable","name":"data","nameLocation":"23198:4:1","nodeType":"VariableDeclaration","scope":1760,"src":"23176:26:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData"},"typeName":{"id":1735,"nodeType":"UserDefinedTypeName","pathNode":{"id":1734,"name":"ValidationData","nameLocations":["23176:14:1"],"nodeType":"IdentifierPath","referencedDeclaration":2252,"src":"23176:14:1"},"referencedDeclaration":2252,"src":"23176:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_storage_ptr","typeString":"struct ValidationData"}},"visibility":"internal"}],"id":1740,"initialValue":{"arguments":[{"id":1738,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1715,"src":"23226:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1737,"name":"_parseValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2312,"src":"23205:20:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_struct$_ValidationData_$2252_memory_ptr_$","typeString":"function (uint256) pure returns (struct ValidationData memory)"}},"id":1739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23205:36:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData memory"}},"nodeType":"VariableDeclarationStatement","src":"23176:65:1"},{"expression":{"id":1753,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1741,"name":"outOfTimeRange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1720,"src":"23305:14:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1742,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"23322:5:1","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1743,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23328:9:1","memberName":"timestamp","nodeType":"MemberAccess","src":"23322:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":1744,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1736,"src":"23340:4:1","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData memory"}},"id":1745,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23345:10:1","memberName":"validUntil","nodeType":"MemberAccess","referencedDeclaration":2251,"src":"23340:15:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"23322:33:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1751,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1747,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"23359:5:1","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23365:9:1","memberName":"timestamp","nodeType":"MemberAccess","src":"23359:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1749,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1736,"src":"23377:4:1","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData memory"}},"id":1750,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23382:10:1","memberName":"validAfter","nodeType":"MemberAccess","referencedDeclaration":2249,"src":"23377:15:1","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"23359:33:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"23322:70:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"23305:87:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1754,"nodeType":"ExpressionStatement","src":"23305:87:1"},{"expression":{"id":1758,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1755,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1718,"src":"23402:10:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1756,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1736,"src":"23415:4:1","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData memory"}},"id":1757,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23420:10:1","memberName":"aggregator","nodeType":"MemberAccess","referencedDeclaration":2247,"src":"23415:15:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"23402:28:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1759,"nodeType":"ExpressionStatement","src":"23402:28:1"}]},"documentation":{"id":1713,"nodeType":"StructuredDocumentation","src":"22627:319:1","text":" Parse validationData into its components.\n @param validationData - The packed validation data (sigFailed, validAfter, validUntil).\n @return aggregator the aggregator of the validationData\n @return outOfTimeRange true if current time is outside the time range of this validationData."},"id":1761,"implemented":true,"kind":"function","modifiers":[],"name":"_getValidationData","nameLocation":"22960:18:1","nodeType":"FunctionDefinition","parameters":{"id":1716,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1715,"mutability":"mutable","name":"validationData","nameLocation":"22996:14:1","nodeType":"VariableDeclaration","scope":1761,"src":"22988:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1714,"name":"uint256","nodeType":"ElementaryTypeName","src":"22988:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"22978:38:1"},"returnParameters":{"id":1721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1718,"mutability":"mutable","name":"aggregator","nameLocation":"23048:10:1","nodeType":"VariableDeclaration","scope":1761,"src":"23040:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1717,"name":"address","nodeType":"ElementaryTypeName","src":"23040:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1720,"mutability":"mutable","name":"outOfTimeRange","nameLocation":"23065:14:1","nodeType":"VariableDeclaration","scope":1761,"src":"23060:19:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1719,"name":"bool","nodeType":"ElementaryTypeName","src":"23060:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"23039:41:1"},"scope":2236,"src":"22951:486:1","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":1933,"nodeType":"Block","src":"24042:1916:1","statements":[{"assignments":[1778],"declarations":[{"constant":false,"id":1778,"mutability":"mutable","name":"preGas","nameLocation":"24060:6:1","nodeType":"VariableDeclaration","scope":1933,"src":"24052:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1777,"name":"uint256","nodeType":"ElementaryTypeName","src":"24052:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1781,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1779,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"24069:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1780,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24069:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"24052:26:1"},{"assignments":[1784],"declarations":[{"constant":false,"id":1784,"mutability":"mutable","name":"mUserOp","nameLocation":"24108:7:1","nodeType":"VariableDeclaration","scope":1933,"src":"24088:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":1783,"nodeType":"UserDefinedTypeName","pathNode":{"id":1782,"name":"MemoryUserOp","nameLocations":["24088:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"24088:12:1"},"referencedDeclaration":935,"src":"24088:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"}],"id":1787,"initialValue":{"expression":{"id":1785,"name":"outOpInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"24118:9:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1786,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24128:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"24118:17:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"nodeType":"VariableDeclarationStatement","src":"24088:47:1"},{"expression":{"arguments":[{"id":1789,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1767,"src":"24165:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"id":1790,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24173:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}],"id":1788,"name":"_copyUserOpToMemory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1221,"src":"24145:19:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_struct$_MemoryUserOp_$935_memory_ptr_$returns$__$","typeString":"function (struct PackedUserOperation calldata,struct EntryPoint.MemoryUserOp memory) pure"}},"id":1791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24145:36:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1792,"nodeType":"ExpressionStatement","src":"24145:36:1"},{"expression":{"id":1799,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1793,"name":"outOpInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"24191:9:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1795,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"24201:10:1","memberName":"userOpHash","nodeType":"MemberAccess","referencedDeclaration":940,"src":"24191:20:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1797,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1767,"src":"24228:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}],"id":1796,"name":"getUserOpHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1107,"src":"24214:13:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (struct PackedUserOperation calldata) view returns (bytes32)"}},"id":1798,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24214:21:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"24191:44:1","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":1800,"nodeType":"ExpressionStatement","src":"24191:44:1"},{"assignments":[1802],"declarations":[{"constant":false,"id":1802,"mutability":"mutable","name":"verificationGasLimit","nameLocation":"24407:20:1","nodeType":"VariableDeclaration","scope":1933,"src":"24399:28:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1801,"name":"uint256","nodeType":"ElementaryTypeName","src":"24399:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1805,"initialValue":{"expression":{"id":1803,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24430:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1804,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24438:20:1","memberName":"verificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":920,"src":"24430:28:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"24399:59:1"},{"assignments":[1807],"declarations":[{"constant":false,"id":1807,"mutability":"mutable","name":"maxGasValues","nameLocation":"24476:12:1","nodeType":"VariableDeclaration","scope":1933,"src":"24468:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1806,"name":"uint256","nodeType":"ElementaryTypeName","src":"24468:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1827,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1823,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1814,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1808,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24491:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1809,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24499:18:1","memberName":"preVerificationGas","nodeType":"MemberAccess","referencedDeclaration":928,"src":"24491:26:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"id":1810,"name":"verificationGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1802,"src":"24532:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24491:61:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"expression":{"id":1812,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24567:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1813,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24575:12:1","memberName":"callGasLimit","nodeType":"MemberAccess","referencedDeclaration":922,"src":"24567:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24491:96:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"expression":{"id":1815,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24602:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1816,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24610:29:1","memberName":"paymasterVerificationGasLimit","nodeType":"MemberAccess","referencedDeclaration":924,"src":"24602:37:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24491:148:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"expression":{"id":1818,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24654:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1819,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24662:23:1","memberName":"paymasterPostOpGasLimit","nodeType":"MemberAccess","referencedDeclaration":926,"src":"24654:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24491:194:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"expression":{"id":1821,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24700:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1822,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24708:12:1","memberName":"maxFeePerGas","nodeType":"MemberAccess","referencedDeclaration":932,"src":"24700:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24491:229:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"expression":{"id":1824,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24735:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1825,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24743:20:1","memberName":"maxPriorityFeePerGas","nodeType":"MemberAccess","referencedDeclaration":934,"src":"24735:28:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24491:272:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"24468:295:1"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1835,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1829,"name":"maxGasValues","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1807,"src":"24781:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":1832,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24802:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":1831,"name":"uint120","nodeType":"ElementaryTypeName","src":"24802:7:1","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"}],"id":1830,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"24797:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":1833,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24797:13:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint120","typeString":"type(uint120)"}},"id":1834,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"24811:3:1","memberName":"max","nodeType":"MemberAccess","src":"24797:17:1","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"src":"24781:33:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"41413934206761732076616c756573206f766572666c6f77","id":1836,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"24816:26:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_2454d602dd1245dd701375973b2bac347a9e27dc7542cb5ffbdc114cb2232f69","typeString":"literal_string \"AA94 gas values overflow\""},"value":"AA94 gas values overflow"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2454d602dd1245dd701375973b2bac347a9e27dc7542cb5ffbdc114cb2232f69","typeString":"literal_string \"AA94 gas values overflow\""}],"id":1828,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"24773:7:1","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1837,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24773:70:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1838,"nodeType":"ExpressionStatement","src":"24773:70:1"},{"assignments":[1840],"declarations":[{"constant":false,"id":1840,"mutability":"mutable","name":"requiredPreFund","nameLocation":"24862:15:1","nodeType":"VariableDeclaration","scope":1933,"src":"24854:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1839,"name":"uint256","nodeType":"ElementaryTypeName","src":"24854:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1844,"initialValue":{"arguments":[{"id":1842,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"24900:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}],"id":1841,"name":"_getRequiredPrefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1256,"src":"24880:19:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_MemoryUserOp_$935_memory_ptr_$returns$_t_uint256_$","typeString":"function (struct EntryPoint.MemoryUserOp memory) pure returns (uint256)"}},"id":1843,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24880:28:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"24854:54:1"},{"expression":{"id":1853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1845,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1773,"src":"24918:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1847,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1764,"src":"24975:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1848,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1767,"src":"24996:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"id":1849,"name":"outOpInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"25016:9:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"id":1850,"name":"requiredPreFund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1840,"src":"25039:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1851,"name":"verificationGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1802,"src":"25068:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1846,"name":"_validateAccountPrepayment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1519,"src":"24935:26:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,struct PackedUserOperation calldata,struct EntryPoint.UserOpInfo memory,uint256,uint256) returns (uint256)"}},"id":1852,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24935:163:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24918:180:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1854,"nodeType":"ExpressionStatement","src":"24918:180:1"},{"condition":{"id":1861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"25113:55:1","subExpression":{"arguments":[{"expression":{"id":1856,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"25138:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1857,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25146:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"25138:14:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":1858,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"25154:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1859,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25162:5:1","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":918,"src":"25154:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1855,"name":"_validateAndUpdateNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2505,"src":"25114:23:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) returns (bool)"}},"id":1860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25114:54:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1868,"nodeType":"IfStatement","src":"25109:140:1","trueBody":{"id":1867,"nodeType":"Block","src":"25170:79:1","statements":[{"errorCall":{"arguments":[{"id":1863,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1764,"src":"25200:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"4141323520696e76616c6964206163636f756e74206e6f6e6365","id":1864,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"25209:28:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_1a6d2773a48550bbfcfd396dd79645bef61ab18efc53f13933af43bfa63cc5b5","typeString":"literal_string \"AA25 invalid account nonce\""},"value":"AA25 invalid account nonce"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_1a6d2773a48550bbfcfd396dd79645bef61ab18efc53f13933af43bfa63cc5b5","typeString":"literal_string \"AA25 invalid account nonce\""}],"id":1862,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"25191:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1865,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25191:47:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1866,"nodeType":"RevertStatement","src":"25184:54:1"}]}},{"id":1882,"nodeType":"UncheckedBlock","src":"25259:172:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1869,"name":"preGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1778,"src":"25287:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1870,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"25296:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1871,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25296:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25287:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":1873,"name":"verificationGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1802,"src":"25308:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25287:41:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1881,"nodeType":"IfStatement","src":"25283:138:1","trueBody":{"id":1880,"nodeType":"Block","src":"25330:91:1","statements":[{"errorCall":{"arguments":[{"id":1876,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1764,"src":"25364:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"41413236206f76657220766572696669636174696f6e4761734c696d6974","id":1877,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"25373:32:1","typeDescriptions":{"typeIdentifier":"t_stringliteral_0959e90f1dbec1bb0766cfc7e4a6f91da34d207dfa787b59651acf3926686974","typeString":"literal_string \"AA26 over verificationGasLimit\""},"value":"AA26 over verificationGasLimit"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_0959e90f1dbec1bb0766cfc7e4a6f91da34d207dfa787b59651acf3926686974","typeString":"literal_string \"AA26 over verificationGasLimit\""}],"id":1875,"name":"FailedOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3465,"src":"25355:8:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (uint256,string memory) pure returns (error)"}},"id":1878,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25355:51:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1879,"nodeType":"RevertStatement","src":"25348:58:1"}]}}]},{"assignments":[1884],"declarations":[{"constant":false,"id":1884,"mutability":"mutable","name":"context","nameLocation":"25454:7:1","nodeType":"VariableDeclaration","scope":1933,"src":"25441:20:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1883,"name":"bytes","nodeType":"ElementaryTypeName","src":"25441:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1885,"nodeType":"VariableDeclarationStatement","src":"25441:20:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1892,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1886,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1784,"src":"25475:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1887,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25483:9:1","memberName":"paymaster","nodeType":"MemberAccess","referencedDeclaration":930,"src":"25475:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1890,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25504:1:1","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":1889,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25496:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1888,"name":"address","nodeType":"ElementaryTypeName","src":"25496:7:1","typeDescriptions":{}}},"id":1891,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25496:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"25475:31:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1905,"nodeType":"IfStatement","src":"25471:250:1","trueBody":{"id":1904,"nodeType":"Block","src":"25508:213:1","statements":[{"expression":{"id":1902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":1893,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1884,"src":"25523:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":1894,"name":"paymasterValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1775,"src":"25532:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1895,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"25522:34:1","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_uint256_$","typeString":"tuple(bytes memory,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1897,"name":"opIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1764,"src":"25605:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1898,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1767,"src":"25630:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},{"id":1899,"name":"outOpInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"25654:9:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"id":1900,"name":"requiredPreFund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1840,"src":"25681:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"},{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1896,"name":"_validatePaymasterPrepayment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1641,"src":"25559:28:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$_t_uint256_$","typeString":"function (uint256,struct PackedUserOperation calldata,struct EntryPoint.UserOpInfo memory,uint256) returns (bytes memory,uint256)"}},"id":1901,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25559:151:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_uint256_$","typeString":"tuple(bytes memory,uint256)"}},"src":"25522:188:1","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1903,"nodeType":"ExpressionStatement","src":"25522:188:1"}]}},{"id":1932,"nodeType":"UncheckedBlock","src":"25730:222:1","statements":[{"expression":{"id":1910,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1906,"name":"outOpInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"25754:9:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1908,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"25764:7:1","memberName":"prefund","nodeType":"MemberAccess","referencedDeclaration":942,"src":"25754:17:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1909,"name":"requiredPreFund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1840,"src":"25774:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25754:35:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1911,"nodeType":"ExpressionStatement","src":"25754:35:1"},{"expression":{"id":1918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1912,"name":"outOpInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"25803:9:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1914,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"25813:13:1","memberName":"contextOffset","nodeType":"MemberAccess","referencedDeclaration":944,"src":"25803:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1916,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1884,"src":"25852:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1915,"name":"getOffsetOfMemoryBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2202,"src":"25829:22:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_uint256_$","typeString":"function (bytes memory) pure returns (uint256)"}},"id":1917,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25829:31:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25803:57:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1919,"nodeType":"ExpressionStatement","src":"25803:57:1"},{"expression":{"id":1930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1920,"name":"outOpInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"25874:9:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1922,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"25884:8:1","memberName":"preOpGas","nodeType":"MemberAccess","referencedDeclaration":946,"src":"25874:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1929,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1926,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1923,"name":"preGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1778,"src":"25895:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":1924,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"25904:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25904:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25895:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":1927,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1767,"src":"25916:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":1928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25923:18:1","memberName":"preVerificationGas","nodeType":"MemberAccess","referencedDeclaration":3741,"src":"25916:25:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25895:46:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25874:67:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1931,"nodeType":"ExpressionStatement","src":"25874:67:1"}]}]},"documentation":{"id":1762,"nodeType":"StructuredDocumentation","src":"23443:357:1","text":" Validate account and paymaster (if defined) and\n also make sure total validation doesn't exceed verificationGasLimit.\n This method is called off-chain (simulateValidation()) and on-chain (from handleOps)\n @param opIndex - The index of this userOp into the \"opInfos\" array.\n @param userOp  - The userOp to validate."},"id":1934,"implemented":true,"kind":"function","modifiers":[],"name":"_validatePrepayment","nameLocation":"23814:19:1","nodeType":"FunctionDefinition","parameters":{"id":1771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1764,"mutability":"mutable","name":"opIndex","nameLocation":"23851:7:1","nodeType":"VariableDeclaration","scope":1934,"src":"23843:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1763,"name":"uint256","nodeType":"ElementaryTypeName","src":"23843:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1767,"mutability":"mutable","name":"userOp","nameLocation":"23897:6:1","nodeType":"VariableDeclaration","scope":1934,"src":"23868:35:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":1766,"nodeType":"UserDefinedTypeName","pathNode":{"id":1765,"name":"PackedUserOperation","nameLocations":["23868:19:1"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"23868:19:1"},"referencedDeclaration":3748,"src":"23868:19:1","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":1770,"mutability":"mutable","name":"outOpInfo","nameLocation":"23931:9:1","nodeType":"VariableDeclaration","scope":1934,"src":"23913:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":1769,"nodeType":"UserDefinedTypeName","pathNode":{"id":1768,"name":"UserOpInfo","nameLocations":["23913:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"23913:10:1"},"referencedDeclaration":947,"src":"23913:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"}],"src":"23833:113:1"},"returnParameters":{"id":1776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1773,"mutability":"mutable","name":"validationData","nameLocation":"23989:14:1","nodeType":"VariableDeclaration","scope":1934,"src":"23981:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1772,"name":"uint256","nodeType":"ElementaryTypeName","src":"23981:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1775,"mutability":"mutable","name":"paymasterValidationData","nameLocation":"24013:23:1","nodeType":"VariableDeclaration","scope":1934,"src":"24005:31:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1774,"name":"uint256","nodeType":"ElementaryTypeName","src":"24005:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23980:57:1"},"scope":2236,"src":"23805:2153:1","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2155,"nodeType":"Block","src":"26772:2760:1","statements":[{"assignments":[1951],"declarations":[{"constant":false,"id":1951,"mutability":"mutable","name":"preGas","nameLocation":"26790:6:1","nodeType":"VariableDeclaration","scope":2155,"src":"26782:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1950,"name":"uint256","nodeType":"ElementaryTypeName","src":"26782:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1954,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":1952,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"26799:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26799:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"26782:26:1"},{"id":2154,"nodeType":"UncheckedBlock","src":"26818:2695:1","statements":[{"assignments":[1956],"declarations":[{"constant":false,"id":1956,"mutability":"mutable","name":"refundAddress","nameLocation":"26850:13:1","nodeType":"VariableDeclaration","scope":2154,"src":"26842:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1955,"name":"address","nodeType":"ElementaryTypeName","src":"26842:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1957,"nodeType":"VariableDeclarationStatement","src":"26842:21:1"},{"assignments":[1960],"declarations":[{"constant":false,"id":1960,"mutability":"mutable","name":"mUserOp","nameLocation":"26897:7:1","nodeType":"VariableDeclaration","scope":2154,"src":"26877:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":1959,"nodeType":"UserDefinedTypeName","pathNode":{"id":1958,"name":"MemoryUserOp","nameLocations":["26877:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"26877:12:1"},"referencedDeclaration":935,"src":"26877:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"}],"id":1963,"initialValue":{"expression":{"id":1961,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1941,"src":"26907:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":1962,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26914:7:1","memberName":"mUserOp","nodeType":"MemberAccess","referencedDeclaration":938,"src":"26907:14:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"nodeType":"VariableDeclarationStatement","src":"26877:44:1"},{"assignments":[1965],"declarations":[{"constant":false,"id":1965,"mutability":"mutable","name":"gasPrice","nameLocation":"26943:8:1","nodeType":"VariableDeclaration","scope":2154,"src":"26935:16:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1964,"name":"uint256","nodeType":"ElementaryTypeName","src":"26935:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1969,"initialValue":{"arguments":[{"id":1967,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"26972:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}],"id":1966,"name":"getUserOpGasPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2192,"src":"26954:17:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_MemoryUserOp_$935_memory_ptr_$returns$_t_uint256_$","typeString":"function (struct EntryPoint.MemoryUserOp memory) view returns (uint256)"}},"id":1968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26954:26:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"26935:45:1"},{"assignments":[1971],"declarations":[{"constant":false,"id":1971,"mutability":"mutable","name":"paymaster","nameLocation":"27003:9:1","nodeType":"VariableDeclaration","scope":2154,"src":"26995:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1970,"name":"address","nodeType":"ElementaryTypeName","src":"26995:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1974,"initialValue":{"expression":{"id":1972,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"27015:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1973,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27023:9:1","memberName":"paymaster","nodeType":"MemberAccess","referencedDeclaration":930,"src":"27015:17:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"26995:37:1"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1975,"name":"paymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1971,"src":"27050:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1978,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27071:1:1","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":1977,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27063:7:1","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1976,"name":"address","nodeType":"ElementaryTypeName","src":"27063:7:1","typeDescriptions":{}}},"id":1979,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27063:10:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27050:23:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2038,"nodeType":"Block","src":"27144:741:1","statements":[{"expression":{"id":1989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1987,"name":"refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1956,"src":"27162:13:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1988,"name":"paymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1971,"src":"27178:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27162:25:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1990,"nodeType":"ExpressionStatement","src":"27162:25:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1994,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1991,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1943,"src":"27209:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27217:6:1","memberName":"length","nodeType":"MemberAccess","src":"27209:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1993,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27226:1:1","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"27209:18:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2037,"nodeType":"IfStatement","src":"27205:666:1","trueBody":{"id":2036,"nodeType":"Block","src":"27229:642:1","statements":[{"expression":{"id":1999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1995,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"27251:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1996,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1945,"src":"27267:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":1997,"name":"gasPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"27279:8:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27267:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27251:36:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2000,"nodeType":"ExpressionStatement","src":"27251:36:1"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},"id":2005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2001,"name":"mode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1938,"src":"27313:4:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"expression":{"id":2002,"name":"IPaymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"27321:10:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPaymaster_$3622_$","typeString":"type(contract IPaymaster)"}},"id":2003,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27332:10:1","memberName":"PostOpMode","nodeType":"MemberAccess","referencedDeclaration":3593,"src":"27321:21:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_PostOpMode_$3593_$","typeString":"type(enum IPaymaster.PostOpMode)"}},"id":2004,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"27343:14:1","memberName":"postOpReverted","nodeType":"MemberAccess","referencedDeclaration":3592,"src":"27321:36:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"src":"27313:44:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2035,"nodeType":"IfStatement","src":"27309:544:1","trueBody":{"id":2034,"nodeType":"Block","src":"27359:494:1","statements":[{"clauses":[{"block":{"id":2018,"nodeType":"Block","src":"27643:2:1","statements":[]},"errorName":"","id":2019,"nodeType":"TryCatchClause","src":"27643:2:1"},{"block":{"id":2031,"nodeType":"Block","src":"27652:179:1","statements":[{"assignments":[2021],"declarations":[{"constant":false,"id":2021,"mutability":"mutable","name":"reason","nameLocation":"27695:6:1","nodeType":"VariableDeclaration","scope":2031,"src":"27682:19:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2020,"name":"bytes","nodeType":"ElementaryTypeName","src":"27682:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2026,"initialValue":{"arguments":[{"id":2024,"name":"REVERT_REASON_MAX_LEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":195,"src":"27723:21:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2022,"name":"Exec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3839,"src":"27704:4:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Exec_$3839_$","typeString":"type(library Exec)"}},"id":2023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27709:13:1","memberName":"getReturnData","nodeType":"MemberAccess","referencedDeclaration":3801,"src":"27704:18:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"}},"id":2025,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27704:41:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"27682:63:1"},{"errorCall":{"arguments":[{"id":2028,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2021,"src":"27797:6:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2027,"name":"PostOpReverted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3478,"src":"27782:14:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes_memory_ptr_$returns$_t_error_$","typeString":"function (bytes memory) pure returns (error)"}},"id":2029,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27782:22:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2030,"nodeType":"RevertStatement","src":"27775:29:1"}]},"errorName":"","id":2032,"nodeType":"TryCatchClause","src":"27646:185:1"}],"externalCall":{"arguments":[{"id":2013,"name":"mode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1938,"src":"27510:4:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},{"id":2014,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1943,"src":"27516:7:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":2015,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"27525:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2016,"name":"gasPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"27540:8:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":2007,"name":"paymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1971,"src":"27400:9:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2006,"name":"IPaymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"27389:10:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPaymaster_$3622_$","typeString":"type(contract IPaymaster)"}},"id":2008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27389:21:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPaymaster_$3622","typeString":"contract IPaymaster"}},"id":2009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27411:6:1","memberName":"postOp","nodeType":"MemberAccess","referencedDeclaration":3621,"src":"27389:28:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_enum$_PostOpMode_$3593_$_t_bytes_memory_ptr_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (enum IPaymaster.PostOpMode,bytes memory,uint256,uint256) external"}},"id":2012,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["gas"],"nodeType":"FunctionCallOptions","options":[{"expression":{"id":2010,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"27452:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":2011,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27460:23:1","memberName":"paymasterPostOpGasLimit","nodeType":"MemberAccess","referencedDeclaration":926,"src":"27452:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"27389:120:1","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_enum$_PostOpMode_$3593_$_t_bytes_memory_ptr_$_t_uint256_$_t_uint256_$returns$__$gas","typeString":"function (enum IPaymaster.PostOpMode,bytes memory,uint256,uint256) external"}},"id":2017,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27389:160:1","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2033,"nodeType":"TryStatement","src":"27385:446:1"}]}}]}}]},"id":2039,"nodeType":"IfStatement","src":"27046:839:1","trueBody":{"id":1986,"nodeType":"Block","src":"27075:63:1","statements":[{"expression":{"id":1984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1981,"name":"refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1956,"src":"27093:13:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1982,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"27109:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":1983,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27117:6:1","memberName":"sender","nodeType":"MemberAccess","referencedDeclaration":916,"src":"27109:14:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27093:30:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1985,"nodeType":"ExpressionStatement","src":"27093:30:1"}]}},{"expression":{"id":2045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2040,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1945,"src":"27898:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2041,"name":"preGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1951,"src":"27911:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":2042,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"27920:7:1","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":2043,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27920:9:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27911:18:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27898:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2046,"nodeType":"ExpressionStatement","src":"27898:31:1"},{"id":2086,"nodeType":"Block","src":"28006:594:1","statements":[{"assignments":[2048],"declarations":[{"constant":false,"id":2048,"mutability":"mutable","name":"executionGasLimit","nameLocation":"28032:17:1","nodeType":"VariableDeclaration","scope":2086,"src":"28024:25:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2047,"name":"uint256","nodeType":"ElementaryTypeName","src":"28024:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2054,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2049,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"28052:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":2050,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28060:12:1","memberName":"callGasLimit","nodeType":"MemberAccess","referencedDeclaration":922,"src":"28052:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":2051,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"28075:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":2052,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28083:23:1","memberName":"paymasterPostOpGasLimit","nodeType":"MemberAccess","referencedDeclaration":926,"src":"28075:31:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28052:54:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28024:82:1"},{"assignments":[2056],"declarations":[{"constant":false,"id":2056,"mutability":"mutable","name":"executionGasUsed","nameLocation":"28132:16:1","nodeType":"VariableDeclaration","scope":2086,"src":"28124:24:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2055,"name":"uint256","nodeType":"ElementaryTypeName","src":"28124:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2061,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2057,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1945,"src":"28151:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":2058,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1941,"src":"28163:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":2059,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28170:8:1","memberName":"preOpGas","nodeType":"MemberAccess","referencedDeclaration":946,"src":"28163:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28151:27:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28124:54:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2062,"name":"executionGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2048,"src":"28316:17:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":2063,"name":"executionGasUsed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2056,"src":"28336:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28316:36:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2085,"nodeType":"IfStatement","src":"28312:274:1","trueBody":{"id":2084,"nodeType":"Block","src":"28354:232:1","statements":[{"assignments":[2066],"declarations":[{"constant":false,"id":2066,"mutability":"mutable","name":"unusedGas","nameLocation":"28384:9:1","nodeType":"VariableDeclaration","scope":2084,"src":"28376:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2065,"name":"uint256","nodeType":"ElementaryTypeName","src":"28376:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2070,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2067,"name":"executionGasLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2048,"src":"28396:17:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2068,"name":"executionGasUsed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2056,"src":"28416:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28396:36:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28376:56:1"},{"assignments":[2072],"declarations":[{"constant":false,"id":2072,"mutability":"mutable","name":"unusedGasPenalty","nameLocation":"28462:16:1","nodeType":"VariableDeclaration","scope":2084,"src":"28454:24:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2071,"name":"uint256","nodeType":"ElementaryTypeName","src":"28454:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2079,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2078,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2073,"name":"unusedGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2066,"src":"28482:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":2074,"name":"PENALTY_PERCENT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":198,"src":"28494:15:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28482:27:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2076,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"28481:29:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"313030","id":2077,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28513:3:1","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"28481:35:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28454:62:1"},{"expression":{"id":2082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2080,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1945,"src":"28538:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":2081,"name":"unusedGasPenalty","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2072,"src":"28551:16:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28538:29:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2083,"nodeType":"ExpressionStatement","src":"28538:29:1"}]}}]},{"expression":{"id":2091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2087,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"28614:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2090,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2088,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1945,"src":"28630:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":2089,"name":"gasPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1965,"src":"28642:8:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28630:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28614:36:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2092,"nodeType":"ExpressionStatement","src":"28614:36:1"},{"assignments":[2094],"declarations":[{"constant":false,"id":2094,"mutability":"mutable","name":"prefund","nameLocation":"28672:7:1","nodeType":"VariableDeclaration","scope":2154,"src":"28664:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2093,"name":"uint256","nodeType":"ElementaryTypeName","src":"28664:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2097,"initialValue":{"expression":{"id":2095,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1941,"src":"28682:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},"id":2096,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28689:7:1","memberName":"prefund","nodeType":"MemberAccess","referencedDeclaration":942,"src":"28682:14:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28664:32:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2100,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2098,"name":"prefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2094,"src":"28714:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2099,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"28724:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28714:23:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2152,"nodeType":"Block","src":"29215:288:1","statements":[{"assignments":[2127],"declarations":[{"constant":false,"id":2127,"mutability":"mutable","name":"refund","nameLocation":"29241:6:1","nodeType":"VariableDeclaration","scope":2152,"src":"29233:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2126,"name":"uint256","nodeType":"ElementaryTypeName","src":"29233:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2131,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2130,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2128,"name":"prefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2094,"src":"29250:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2129,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"29260:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29250:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"29233:40:1"},{"expression":{"arguments":[{"id":2133,"name":"refundAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1956,"src":"29309:13:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2134,"name":"refund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2127,"src":"29324:6:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2132,"name":"_incrementDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2666,"src":"29291:17:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,uint256) returns (uint256)"}},"id":2135,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29291:40:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2136,"nodeType":"ExpressionStatement","src":"29291:40:1"},{"assignments":[2138],"declarations":[{"constant":false,"id":2138,"mutability":"mutable","name":"success","nameLocation":"29354:7:1","nodeType":"VariableDeclaration","scope":2152,"src":"29349:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2137,"name":"bool","nodeType":"ElementaryTypeName","src":"29349:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":2144,"initialValue":{"commonType":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},"id":2143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2139,"name":"mode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1938,"src":"29364:4:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":2140,"name":"IPaymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"29372:10:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPaymaster_$3622_$","typeString":"type(contract IPaymaster)"}},"id":2141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29383:10:1","memberName":"PostOpMode","nodeType":"MemberAccess","referencedDeclaration":3593,"src":"29372:21:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_PostOpMode_$3593_$","typeString":"type(enum IPaymaster.PostOpMode)"}},"id":2142,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"29394:11:1","memberName":"opSucceeded","nodeType":"MemberAccess","referencedDeclaration":3590,"src":"29372:33:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"src":"29364:41:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"29349:56:1"},{"expression":{"arguments":[{"id":2146,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1941,"src":"29446:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"id":2147,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2138,"src":"29454:7:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":2148,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"29463:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2149,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1945,"src":"29478:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2145,"name":"emitUserOperationEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":497,"src":"29423:22:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bool_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (struct EntryPoint.UserOpInfo memory,bool,uint256,uint256)"}},"id":2150,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29423:65:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2151,"nodeType":"ExpressionStatement","src":"29423:65:1"}]},"id":2153,"nodeType":"IfStatement","src":"28710:793:1","trueBody":{"id":2125,"nodeType":"Block","src":"28739:470:1","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},"id":2105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2101,"name":"mode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1938,"src":"28761:4:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":2102,"name":"IPaymaster","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3622,"src":"28769:10:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPaymaster_$3622_$","typeString":"type(contract IPaymaster)"}},"id":2103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28780:10:1","memberName":"PostOpMode","nodeType":"MemberAccess","referencedDeclaration":3593,"src":"28769:21:1","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_PostOpMode_$3593_$","typeString":"type(enum IPaymaster.PostOpMode)"}},"id":2104,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"28791:14:1","memberName":"postOpReverted","nodeType":"MemberAccess","referencedDeclaration":3592,"src":"28769:36:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"src":"28761:44:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2123,"nodeType":"Block","src":"29009:186:1","statements":[{"AST":{"nativeSrc":"29056:121:1","nodeType":"YulBlock","src":"29056:121:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"29089:1:1","nodeType":"YulLiteral","src":"29089:1:1","type":"","value":"0"},{"name":"INNER_REVERT_LOW_PREFUND","nativeSrc":"29092:24:1","nodeType":"YulIdentifier","src":"29092:24:1"}],"functionName":{"name":"mstore","nativeSrc":"29082:6:1","nodeType":"YulIdentifier","src":"29082:6:1"},"nativeSrc":"29082:35:1","nodeType":"YulFunctionCall","src":"29082:35:1"},"nativeSrc":"29082:35:1","nodeType":"YulExpressionStatement","src":"29082:35:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"29149:1:1","nodeType":"YulLiteral","src":"29149:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"29152:2:1","nodeType":"YulLiteral","src":"29152:2:1","type":"","value":"32"}],"functionName":{"name":"revert","nativeSrc":"29142:6:1","nodeType":"YulIdentifier","src":"29142:6:1"},"nativeSrc":"29142:13:1","nodeType":"YulFunctionCall","src":"29142:13:1"},"nativeSrc":"29142:13:1","nodeType":"YulExpressionStatement","src":"29142:13:1"}]},"evmVersion":"prague","externalReferences":[{"declaration":192,"isOffset":false,"isSlot":false,"src":"29092:24:1","valueSize":1}],"flags":["memory-safe"],"id":2122,"nodeType":"InlineAssembly","src":"29031:146:1"}]},"id":2124,"nodeType":"IfStatement","src":"28757:438:1","trueBody":{"id":2121,"nodeType":"Block","src":"28807:196:1","statements":[{"expression":{"id":2108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2106,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"28829:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2107,"name":"prefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2094,"src":"28845:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28829:23:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2109,"nodeType":"ExpressionStatement","src":"28829:23:1"},{"expression":{"arguments":[{"id":2111,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1941,"src":"28892:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}],"id":2110,"name":"emitPrefundTooLow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":515,"src":"28874:17:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_UserOpInfo_$947_memory_ptr_$returns$__$","typeString":"function (struct EntryPoint.UserOpInfo memory)"}},"id":2112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28874:25:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2113,"nodeType":"ExpressionStatement","src":"28874:25:1"},{"expression":{"arguments":[{"id":2115,"name":"opInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1941,"src":"28944:6:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"}},{"hexValue":"66616c7365","id":2116,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"28952:5:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"id":2117,"name":"actualGasCost","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1948,"src":"28959:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2118,"name":"actualGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1945,"src":"28974:9:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo memory"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2114,"name":"emitUserOperationEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":497,"src":"28921:22:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_UserOpInfo_$947_memory_ptr_$_t_bool_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (struct EntryPoint.UserOpInfo memory,bool,uint256,uint256)"}},"id":2119,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28921:63:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2120,"nodeType":"ExpressionStatement","src":"28921:63:1"}]}}]}}]}]},"documentation":{"id":1935,"nodeType":"StructuredDocumentation","src":"25964:606:1","text":" Process post-operation, called just after the callData is executed.\n If a paymaster is defined and its validation returned a non-empty context, its postOp is called.\n The excess amount is refunded to the account (or paymaster - if it was used in the request).\n @param mode      - Whether is called from innerHandleOp, or outside (postOpReverted).\n @param opInfo    - UserOp fields and info collected during validation.\n @param context   - The context returned in validatePaymasterUserOp.\n @param actualGas - The gas used so far by this user operation."},"id":2156,"implemented":true,"kind":"function","modifiers":[],"name":"_postExecution","nameLocation":"26584:14:1","nodeType":"FunctionDefinition","parameters":{"id":1946,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1938,"mutability":"mutable","name":"mode","nameLocation":"26630:4:1","nodeType":"VariableDeclaration","scope":2156,"src":"26608:26:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},"typeName":{"id":1937,"nodeType":"UserDefinedTypeName","pathNode":{"id":1936,"name":"IPaymaster.PostOpMode","nameLocations":["26608:10:1","26619:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":3593,"src":"26608:21:1"},"referencedDeclaration":3593,"src":"26608:21:1","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"visibility":"internal"},{"constant":false,"id":1941,"mutability":"mutable","name":"opInfo","nameLocation":"26662:6:1","nodeType":"VariableDeclaration","scope":2156,"src":"26644:24:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_memory_ptr","typeString":"struct EntryPoint.UserOpInfo"},"typeName":{"id":1940,"nodeType":"UserDefinedTypeName","pathNode":{"id":1939,"name":"UserOpInfo","nameLocations":["26644:10:1"],"nodeType":"IdentifierPath","referencedDeclaration":947,"src":"26644:10:1"},"referencedDeclaration":947,"src":"26644:10:1","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpInfo_$947_storage_ptr","typeString":"struct EntryPoint.UserOpInfo"}},"visibility":"internal"},{"constant":false,"id":1943,"mutability":"mutable","name":"context","nameLocation":"26691:7:1","nodeType":"VariableDeclaration","scope":2156,"src":"26678:20:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1942,"name":"bytes","nodeType":"ElementaryTypeName","src":"26678:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1945,"mutability":"mutable","name":"actualGas","nameLocation":"26716:9:1","nodeType":"VariableDeclaration","scope":2156,"src":"26708:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1944,"name":"uint256","nodeType":"ElementaryTypeName","src":"26708:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26598:133:1"},"returnParameters":{"id":1949,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1948,"mutability":"mutable","name":"actualGasCost","nameLocation":"26757:13:1","nodeType":"VariableDeclaration","scope":2156,"src":"26749:21:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1947,"name":"uint256","nodeType":"ElementaryTypeName","src":"26749:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26748:23:1"},"scope":2236,"src":"26575:2957:1","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":2191,"nodeType":"Block","src":"29865:429:1","statements":[{"id":2190,"nodeType":"UncheckedBlock","src":"29875:413:1","statements":[{"assignments":[2166],"declarations":[{"constant":false,"id":2166,"mutability":"mutable","name":"maxFeePerGas","nameLocation":"29907:12:1","nodeType":"VariableDeclaration","scope":2190,"src":"29899:20:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2165,"name":"uint256","nodeType":"ElementaryTypeName","src":"29899:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2169,"initialValue":{"expression":{"id":2167,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2160,"src":"29922:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":2168,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29930:12:1","memberName":"maxFeePerGas","nodeType":"MemberAccess","referencedDeclaration":932,"src":"29922:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"29899:43:1"},{"assignments":[2171],"declarations":[{"constant":false,"id":2171,"mutability":"mutable","name":"maxPriorityFeePerGas","nameLocation":"29964:20:1","nodeType":"VariableDeclaration","scope":2190,"src":"29956:28:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2170,"name":"uint256","nodeType":"ElementaryTypeName","src":"29956:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2174,"initialValue":{"expression":{"id":2172,"name":"mUserOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2160,"src":"29987:7:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp memory"}},"id":2173,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29995:20:1","memberName":"maxPriorityFeePerGas","nodeType":"MemberAccess","referencedDeclaration":934,"src":"29987:28:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"29956:59:1"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2175,"name":"maxFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2166,"src":"30033:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2176,"name":"maxPriorityFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2171,"src":"30049:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30033:36:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2181,"nodeType":"IfStatement","src":"30029:173:1","trueBody":{"id":2180,"nodeType":"Block","src":"30071:131:1","statements":[{"expression":{"id":2178,"name":"maxFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2166,"src":"30175:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2164,"id":2179,"nodeType":"Return","src":"30168:19:1"}]}},{"expression":{"arguments":[{"id":2183,"name":"maxFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2166,"src":"30226:12:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2184,"name":"maxPriorityFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2171,"src":"30240:20:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":2185,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"30263:5:1","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30269:7:1","memberName":"basefee","nodeType":"MemberAccess","src":"30263:13:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30240:36:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2182,"name":"min","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2415,"src":"30222:3:1","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":2188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30222:55:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2164,"id":2189,"nodeType":"Return","src":"30215:62:1"}]}]},"documentation":{"id":2157,"nodeType":"StructuredDocumentation","src":"29538:220:1","text":" The gas price this UserOp agrees to pay.\n Relayer/block builder might submit the TX with higher priorityFee, but the user should not.\n @param mUserOp - The userOp to get the gas price from."},"id":2192,"implemented":true,"kind":"function","modifiers":[],"name":"getUserOpGasPrice","nameLocation":"29772:17:1","nodeType":"FunctionDefinition","parameters":{"id":2161,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2160,"mutability":"mutable","name":"mUserOp","nameLocation":"29819:7:1","nodeType":"VariableDeclaration","scope":2192,"src":"29799:27:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_memory_ptr","typeString":"struct EntryPoint.MemoryUserOp"},"typeName":{"id":2159,"nodeType":"UserDefinedTypeName","pathNode":{"id":2158,"name":"MemoryUserOp","nameLocations":["29799:12:1"],"nodeType":"IdentifierPath","referencedDeclaration":935,"src":"29799:12:1"},"referencedDeclaration":935,"src":"29799:12:1","typeDescriptions":{"typeIdentifier":"t_struct$_MemoryUserOp_$935_storage_ptr","typeString":"struct EntryPoint.MemoryUserOp"}},"visibility":"internal"}],"src":"29789:43:1"},"returnParameters":{"id":2164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2163,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2192,"src":"29856:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2162,"name":"uint256","nodeType":"ElementaryTypeName","src":"29856:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"29855:9:1"},"scope":2236,"src":"29763:531:1","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":2201,"nodeType":"Block","src":"30521:63:1","statements":[{"AST":{"nativeSrc":"30540:38:1","nodeType":"YulBlock","src":"30540:38:1","statements":[{"nativeSrc":"30554:14:1","nodeType":"YulAssignment","src":"30554:14:1","value":{"name":"data","nativeSrc":"30564:4:1","nodeType":"YulIdentifier","src":"30564:4:1"},"variableNames":[{"name":"offset","nativeSrc":"30554:6:1","nodeType":"YulIdentifier","src":"30554:6:1"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":2195,"isOffset":false,"isSlot":false,"src":"30564:4:1","valueSize":1},{"declaration":2198,"isOffset":false,"isSlot":false,"src":"30554:6:1","valueSize":1}],"id":2200,"nodeType":"InlineAssembly","src":"30531:47:1"}]},"documentation":{"id":2193,"nodeType":"StructuredDocumentation","src":"30300:112:1","text":" The offset of the given bytes in memory.\n @param data - The bytes to get the offset of."},"id":2202,"implemented":true,"kind":"function","modifiers":[],"name":"getOffsetOfMemoryBytes","nameLocation":"30426:22:1","nodeType":"FunctionDefinition","parameters":{"id":2196,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2195,"mutability":"mutable","name":"data","nameLocation":"30471:4:1","nodeType":"VariableDeclaration","scope":2202,"src":"30458:17:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2194,"name":"bytes","nodeType":"ElementaryTypeName","src":"30458:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"30448:33:1"},"returnParameters":{"id":2199,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2198,"mutability":"mutable","name":"offset","nameLocation":"30513:6:1","nodeType":"VariableDeclaration","scope":2202,"src":"30505:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2197,"name":"uint256","nodeType":"ElementaryTypeName","src":"30505:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30504:16:1"},"scope":2236,"src":"30417:167:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2211,"nodeType":"Block","src":"30817:79:1","statements":[{"AST":{"nativeSrc":"30852:38:1","nodeType":"YulBlock","src":"30852:38:1","statements":[{"nativeSrc":"30866:14:1","nodeType":"YulAssignment","src":"30866:14:1","value":{"name":"offset","nativeSrc":"30874:6:1","nodeType":"YulIdentifier","src":"30874:6:1"},"variableNames":[{"name":"data","nativeSrc":"30866:4:1","nodeType":"YulIdentifier","src":"30866:4:1"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":2208,"isOffset":false,"isSlot":false,"src":"30866:4:1","valueSize":1},{"declaration":2205,"isOffset":false,"isSlot":false,"src":"30874:6:1","valueSize":1}],"flags":["memory-safe"],"id":2210,"nodeType":"InlineAssembly","src":"30827:63:1"}]},"documentation":{"id":2203,"nodeType":"StructuredDocumentation","src":"30590:116:1","text":" The bytes in memory at the given offset.\n @param offset - The offset to get the bytes from."},"id":2212,"implemented":true,"kind":"function","modifiers":[],"name":"getMemoryBytesFromOffset","nameLocation":"30720:24:1","nodeType":"FunctionDefinition","parameters":{"id":2206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2205,"mutability":"mutable","name":"offset","nameLocation":"30762:6:1","nodeType":"VariableDeclaration","scope":2212,"src":"30754:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2204,"name":"uint256","nodeType":"ElementaryTypeName","src":"30754:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30744:30:1"},"returnParameters":{"id":2209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2208,"mutability":"mutable","name":"data","nameLocation":"30811:4:1","nodeType":"VariableDeclaration","scope":2212,"src":"30798:17:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2207,"name":"bytes","nodeType":"ElementaryTypeName","src":"30798:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"30797:19:1"},"scope":2236,"src":"30711:185:1","stateMutability":"pure","virtual":false,"visibility":"internal"},{"baseFunctions":[3565],"body":{"id":2234,"nodeType":"Block","src":"31007:125:1","statements":[{"assignments":[2221,2223],"declarations":[{"constant":false,"id":2221,"mutability":"mutable","name":"success","nameLocation":"31023:7:1","nodeType":"VariableDeclaration","scope":2234,"src":"31018:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2220,"name":"bool","nodeType":"ElementaryTypeName","src":"31018:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2223,"mutability":"mutable","name":"ret","nameLocation":"31045:3:1","nodeType":"VariableDeclaration","scope":2234,"src":"31032:16:1","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2222,"name":"bytes","nodeType":"ElementaryTypeName","src":"31032:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2228,"initialValue":{"arguments":[{"id":2226,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2217,"src":"31072:4:1","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":2224,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2215,"src":"31052:6:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31059:12:1","memberName":"delegatecall","nodeType":"MemberAccess","src":"31052:19:1","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":2227,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31052:25:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"31017:60:1"},{"errorCall":{"arguments":[{"id":2230,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2221,"src":"31112:7:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":2231,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2223,"src":"31121:3:1","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2229,"name":"DelegateAndRevert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3557,"src":"31094:17:1","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bool_$_t_bytes_memory_ptr_$returns$_t_error_$","typeString":"function (bool,bytes memory) pure returns (error)"}},"id":2232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31094:31:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2233,"nodeType":"RevertStatement","src":"31087:38:1"}]},"documentation":{"id":2213,"nodeType":"StructuredDocumentation","src":"30902:27:1","text":"@inheritdoc IEntryPoint"},"functionSelector":"850aaf62","id":2235,"implemented":true,"kind":"function","modifiers":[],"name":"delegateAndRevert","nameLocation":"30943:17:1","nodeType":"FunctionDefinition","parameters":{"id":2218,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2215,"mutability":"mutable","name":"target","nameLocation":"30969:6:1","nodeType":"VariableDeclaration","scope":2235,"src":"30961:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2214,"name":"address","nodeType":"ElementaryTypeName","src":"30961:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2217,"mutability":"mutable","name":"data","nameLocation":"30992:4:1","nodeType":"VariableDeclaration","scope":2235,"src":"30977:19:1","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":2216,"name":"bytes","nodeType":"ElementaryTypeName","src":"30977:5:1","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"30960:37:1"},"returnParameters":{"id":2219,"nodeType":"ParameterList","parameters":[],"src":"31007:0:1"},"scope":2236,"src":"30934:198:1","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":2237,"src":"789:30345:1","usedErrors":[3465,3474,3478,3483,3487,3557,31017],"usedEvents":[3408,3419,3430,3441,3450,3453,3458,3631,3639,3647,3653,3661]}],"src":"36:31099:1"},"id":1},"@account-abstraction/contracts/core/Helpers.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/Helpers.sol","exportedSymbols":{"SIG_VALIDATION_FAILED":[2241],"SIG_VALIDATION_SUCCESS":[2244],"ValidationData":[2252],"_packValidationData":[2349,2387],"_parseValidationData":[2312],"calldataKeccak":[2397],"min":[2415]},"id":2416,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":2238,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"36:24:2"},{"constant":true,"id":2241,"mutability":"constant","name":"SIG_VALIDATION_FAILED","nameLocation":"281:21:2","nodeType":"VariableDeclaration","scope":2416,"src":"264:42:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2239,"name":"uint256","nodeType":"ElementaryTypeName","src":"264:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31","id":2240,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"305:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"visibility":"internal"},{"constant":true,"id":2244,"mutability":"constant","name":"SIG_VALIDATION_SUCCESS","nameLocation":"440:22:2","nodeType":"VariableDeclaration","scope":2416,"src":"423:43:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2242,"name":"uint256","nodeType":"ElementaryTypeName","src":"423:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":2243,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"465:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"canonicalName":"ValidationData","documentation":{"id":2245,"nodeType":"StructuredDocumentation","src":"470:640:2","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":2252,"members":[{"constant":false,"id":2247,"mutability":"mutable","name":"aggregator","nameLocation":"1147:10:2","nodeType":"VariableDeclaration","scope":2252,"src":"1139:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2246,"name":"address","nodeType":"ElementaryTypeName","src":"1139:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2249,"mutability":"mutable","name":"validAfter","nameLocation":"1170:10:2","nodeType":"VariableDeclaration","scope":2252,"src":"1163:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2248,"name":"uint48","nodeType":"ElementaryTypeName","src":"1163:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":2251,"mutability":"mutable","name":"validUntil","nameLocation":"1193:10:2","nodeType":"VariableDeclaration","scope":2252,"src":"1186:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2250,"name":"uint48","nodeType":"ElementaryTypeName","src":"1186:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"name":"ValidationData","nameLocation":"1118:14:2","nodeType":"StructDefinition","scope":2416,"src":"1111:95:2","visibility":"public"},{"body":{"id":2311,"nodeType":"Block","src":"1472:314:2","statements":[{"assignments":[2262],"declarations":[{"constant":false,"id":2262,"mutability":"mutable","name":"aggregator","nameLocation":"1486:10:2","nodeType":"VariableDeclaration","scope":2311,"src":"1478:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2261,"name":"address","nodeType":"ElementaryTypeName","src":"1478:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2270,"initialValue":{"arguments":[{"arguments":[{"id":2267,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2255,"src":"1515:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2266,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1507:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":2265,"name":"uint160","nodeType":"ElementaryTypeName","src":"1507:7:2","typeDescriptions":{}}},"id":2268,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1507:23:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":2264,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1499:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2263,"name":"address","nodeType":"ElementaryTypeName","src":"1499:7:2","typeDescriptions":{}}},"id":2269,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1499:32:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"1478:53:2"},{"assignments":[2272],"declarations":[{"constant":false,"id":2272,"mutability":"mutable","name":"validUntil","nameLocation":"1544:10:2","nodeType":"VariableDeclaration","scope":2311,"src":"1537:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2271,"name":"uint48","nodeType":"ElementaryTypeName","src":"1537:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":2279,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2275,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2255,"src":"1564:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"313630","id":2276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1582:3:2","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"src":"1564:21:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2274,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1557:6:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":2273,"name":"uint48","nodeType":"ElementaryTypeName","src":"1557:6:2","typeDescriptions":{}}},"id":2278,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1557:29:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"1537:49:2"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":2282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2280,"name":"validUntil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2272,"src":"1596:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1610:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1596:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2292,"nodeType":"IfStatement","src":"1592:67:2","trueBody":{"id":2291,"nodeType":"Block","src":"1613:46:2","statements":[{"expression":{"id":2289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2283,"name":"validUntil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2272,"src":"1623:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"arguments":[{"id":2286,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1641:6:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":2285,"name":"uint48","nodeType":"ElementaryTypeName","src":"1641:6:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"}],"id":2284,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1636:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":2287,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1636:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint48","typeString":"type(uint48)"}},"id":2288,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1649:3:2","memberName":"max","nodeType":"MemberAccess","src":"1636:16:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"1623:29:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":2290,"nodeType":"ExpressionStatement","src":"1623:29:2"}]}},{"assignments":[2294],"declarations":[{"constant":false,"id":2294,"mutability":"mutable","name":"validAfter","nameLocation":"1671:10:2","nodeType":"VariableDeclaration","scope":2311,"src":"1664:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2293,"name":"uint48","nodeType":"ElementaryTypeName","src":"1664:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":2304,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2297,"name":"validationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2255,"src":"1691:14:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"id":2300,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3438","id":2298,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1710:2:2","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"313630","id":2299,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1715:3:2","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"src":"1710:8:2","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}}],"id":2301,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1709:10:2","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}},"src":"1691:28:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2296,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1684:6:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":2295,"name":"uint48","nodeType":"ElementaryTypeName","src":"1684:6:2","typeDescriptions":{}}},"id":2303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1684:36:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"1664:56:2"},{"expression":{"arguments":[{"id":2306,"name":"aggregator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2262,"src":"1748:10:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2307,"name":"validAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2294,"src":"1760:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":2308,"name":"validUntil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2272,"src":"1772:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":2305,"name":"ValidationData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2252,"src":"1733:14:2","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_ValidationData_$2252_storage_ptr_$","typeString":"type(struct ValidationData storage pointer)"}},"id":2309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1733:50:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData memory"}},"functionReturnParameters":2260,"id":2310,"nodeType":"Return","src":"1726:57:2"}]},"documentation":{"id":2253,"nodeType":"StructuredDocumentation","src":"1208:161:2","text":" Extract sigFailed, validAfter, validUntil.\n Also convert zero validUntil to type(uint48).max.\n @param validationData - The packed validation data."},"id":2312,"implemented":true,"kind":"freeFunction","modifiers":[],"name":"_parseValidationData","nameLocation":"1379:20:2","nodeType":"FunctionDefinition","parameters":{"id":2256,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2255,"mutability":"mutable","name":"validationData","nameLocation":"1413:14:2","nodeType":"VariableDeclaration","scope":2312,"src":"1405:22:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2254,"name":"uint256","nodeType":"ElementaryTypeName","src":"1405:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1399:30:2"},"returnParameters":{"id":2260,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2259,"mutability":"mutable","name":"data","nameLocation":"1466:4:2","nodeType":"VariableDeclaration","scope":2312,"src":"1444:26:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData"},"typeName":{"id":2258,"nodeType":"UserDefinedTypeName","pathNode":{"id":2257,"name":"ValidationData","nameLocations":["1444:14:2"],"nodeType":"IdentifierPath","referencedDeclaration":2252,"src":"1444:14:2"},"referencedDeclaration":2252,"src":"1444:14:2","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_storage_ptr","typeString":"struct ValidationData"}},"visibility":"internal"}],"src":"1443:28:2"},"scope":2416,"src":"1370:416:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2348,"nodeType":"Block","src":"1982:143:2","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2346,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":2323,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2316,"src":"2011:4:2","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData memory"}},"id":2324,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2016:10:2","memberName":"aggregator","nodeType":"MemberAccess","referencedDeclaration":2247,"src":"2011:15:2","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2322,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2003:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":2321,"name":"uint160","nodeType":"ElementaryTypeName","src":"2003:7:2","typeDescriptions":{}}},"id":2325,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2003:24:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":2328,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2316,"src":"2047:4:2","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData memory"}},"id":2329,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2052:10:2","memberName":"validUntil","nodeType":"MemberAccess","referencedDeclaration":2251,"src":"2047:15:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":2327,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2039:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2326,"name":"uint256","nodeType":"ElementaryTypeName","src":"2039:7:2","typeDescriptions":{}}},"id":2330,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2039:24:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313630","id":2331,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2067:3:2","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"src":"2039:31:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2333,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2038:33:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2003:68:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":2337,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2316,"src":"2091:4:2","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData memory"}},"id":2338,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2096:10:2","memberName":"validAfter","nodeType":"MemberAccess","referencedDeclaration":2249,"src":"2091:15:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":2336,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2083:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2335,"name":"uint256","nodeType":"ElementaryTypeName","src":"2083:7:2","typeDescriptions":{}}},"id":2339,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2083:24:2","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":2342,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"313630","id":2340,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2112:3:2","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3438","id":2341,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2118:2:2","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"2112:8:2","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}}],"id":2343,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2111:10:2","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}},"src":"2083:38:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2345,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2082:40:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2003:119:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2320,"id":2347,"nodeType":"Return","src":"1988:134:2"}]},"documentation":{"id":2313,"nodeType":"StructuredDocumentation","src":"1788:107:2","text":" Helper to pack the return value for validateUserOp.\n @param data - The ValidationData to pack."},"id":2349,"implemented":true,"kind":"freeFunction","modifiers":[],"name":"_packValidationData","nameLocation":"1905:19:2","nodeType":"FunctionDefinition","parameters":{"id":2317,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2316,"mutability":"mutable","name":"data","nameLocation":"1952:4:2","nodeType":"VariableDeclaration","scope":2349,"src":"1930:26:2","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_memory_ptr","typeString":"struct ValidationData"},"typeName":{"id":2315,"nodeType":"UserDefinedTypeName","pathNode":{"id":2314,"name":"ValidationData","nameLocations":["1930:14:2"],"nodeType":"IdentifierPath","referencedDeclaration":2252,"src":"1930:14:2"},"referencedDeclaration":2252,"src":"1930:14:2","typeDescriptions":{"typeIdentifier":"t_struct$_ValidationData_$2252_storage_ptr","typeString":"struct ValidationData"}},"visibility":"internal"}],"src":"1924:34:2"},"returnParameters":{"id":2320,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2319,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2349,"src":"1973:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2318,"name":"uint256","nodeType":"ElementaryTypeName","src":"1973:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1972:9:2"},"scope":2416,"src":"1896:229:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2386,"nodeType":"Block","src":"2568:128:2","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"condition":{"id":2361,"name":"sigFailed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2352,"src":"2590:9:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":2363,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2606:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":2364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2590:17:2","trueExpression":{"hexValue":"31","id":2362,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2602:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":2365,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2589:19:2","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2368,"name":"validUntil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2354,"src":"2628:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":2367,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2620:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2366,"name":"uint256","nodeType":"ElementaryTypeName","src":"2620:7:2","typeDescriptions":{}}},"id":2369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2620:19:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313630","id":2370,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2643:3:2","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"src":"2620:26:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2372,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2619:28:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2589:58:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2376,"name":"validAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2356,"src":"2667:10:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":2375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2659:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2374,"name":"uint256","nodeType":"ElementaryTypeName","src":"2659:7:2","typeDescriptions":{}}},"id":2377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2659:19:2","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":2380,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"313630","id":2378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2683:3:2","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3438","id":2379,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2689:2:2","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"2683:8:2","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}}],"id":2381,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"2682:10:2","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"}},"src":"2659:33:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2383,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2658:35:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2589:104:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2360,"id":2385,"nodeType":"Return","src":"2574:119:2"}]},"documentation":{"id":2350,"nodeType":"StructuredDocumentation","src":"2127:320:2","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":2387,"implemented":true,"kind":"freeFunction","modifiers":[],"name":"_packValidationData","nameLocation":"2457:19:2","nodeType":"FunctionDefinition","parameters":{"id":2357,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2352,"mutability":"mutable","name":"sigFailed","nameLocation":"2487:9:2","nodeType":"VariableDeclaration","scope":2387,"src":"2482:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2351,"name":"bool","nodeType":"ElementaryTypeName","src":"2482:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2354,"mutability":"mutable","name":"validUntil","nameLocation":"2509:10:2","nodeType":"VariableDeclaration","scope":2387,"src":"2502:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2353,"name":"uint48","nodeType":"ElementaryTypeName","src":"2502:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":2356,"mutability":"mutable","name":"validAfter","nameLocation":"2532:10:2","nodeType":"VariableDeclaration","scope":2387,"src":"2525:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2355,"name":"uint48","nodeType":"ElementaryTypeName","src":"2525:6:2","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2476:68:2"},"returnParameters":{"id":2360,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2359,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2387,"src":"2559:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2358,"name":"uint256","nodeType":"ElementaryTypeName","src":"2559:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2558:9:2"},"scope":2416,"src":"2448:248:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2396,"nodeType":"Block","src":"2951:209:2","statements":[{"AST":{"nativeSrc":"2986:168:2","nodeType":"YulBlock","src":"2986:168:2","statements":[{"nativeSrc":"3000:22:2","nodeType":"YulVariableDeclaration","src":"3000:22:2","value":{"arguments":[{"kind":"number","nativeSrc":"3017:4:2","nodeType":"YulLiteral","src":"3017:4:2","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"3011:5:2","nodeType":"YulIdentifier","src":"3011:5:2"},"nativeSrc":"3011:11:2","nodeType":"YulFunctionCall","src":"3011:11:2"},"variables":[{"name":"mem","nativeSrc":"3004:3:2","nodeType":"YulTypedName","src":"3004:3:2","type":""}]},{"nativeSrc":"3035:22:2","nodeType":"YulVariableDeclaration","src":"3035:22:2","value":{"name":"data.length","nativeSrc":"3046:11:2","nodeType":"YulIdentifier","src":"3046:11:2"},"variables":[{"name":"len","nativeSrc":"3039:3:2","nodeType":"YulTypedName","src":"3039:3:2","type":""}]},{"expression":{"arguments":[{"name":"mem","nativeSrc":"3083:3:2","nodeType":"YulIdentifier","src":"3083:3:2"},{"name":"data.offset","nativeSrc":"3088:11:2","nodeType":"YulIdentifier","src":"3088:11:2"},{"name":"len","nativeSrc":"3101:3:2","nodeType":"YulIdentifier","src":"3101:3:2"}],"functionName":{"name":"calldatacopy","nativeSrc":"3070:12:2","nodeType":"YulIdentifier","src":"3070:12:2"},"nativeSrc":"3070:35:2","nodeType":"YulFunctionCall","src":"3070:35:2"},"nativeSrc":"3070:35:2","nodeType":"YulExpressionStatement","src":"3070:35:2"},{"nativeSrc":"3118:26:2","nodeType":"YulAssignment","src":"3118:26:2","value":{"arguments":[{"name":"mem","nativeSrc":"3135:3:2","nodeType":"YulIdentifier","src":"3135:3:2"},{"name":"len","nativeSrc":"3140:3:2","nodeType":"YulIdentifier","src":"3140:3:2"}],"functionName":{"name":"keccak256","nativeSrc":"3125:9:2","nodeType":"YulIdentifier","src":"3125:9:2"},"nativeSrc":"3125:19:2","nodeType":"YulFunctionCall","src":"3125:19:2"},"variableNames":[{"name":"ret","nativeSrc":"3118:3:2","nodeType":"YulIdentifier","src":"3118:3:2"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":2390,"isOffset":false,"isSlot":false,"src":"3046:11:2","suffix":"length","valueSize":1},{"declaration":2390,"isOffset":true,"isSlot":false,"src":"3088:11:2","suffix":"offset","valueSize":1},{"declaration":2393,"isOffset":false,"isSlot":false,"src":"3118:3:2","valueSize":1}],"flags":["memory-safe"],"id":2395,"nodeType":"InlineAssembly","src":"2961:193:2"}]},"documentation":{"id":2388,"nodeType":"StructuredDocumentation","src":"2698:176:2","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":2397,"implemented":true,"kind":"freeFunction","modifiers":[],"name":"calldataKeccak","nameLocation":"2888:14:2","nodeType":"FunctionDefinition","parameters":{"id":2391,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2390,"mutability":"mutable","name":"data","nameLocation":"2918:4:2","nodeType":"VariableDeclaration","scope":2397,"src":"2903:19:2","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":2389,"name":"bytes","nodeType":"ElementaryTypeName","src":"2903:5:2","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2902:21:2"},"returnParameters":{"id":2394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2393,"mutability":"mutable","name":"ret","nameLocation":"2946:3:2","nodeType":"VariableDeclaration","scope":2397,"src":"2938:11:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2392,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2938:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2937:13:2"},"scope":2416,"src":"2879:281:2","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2414,"nodeType":"Block","src":"3321:37:2","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2407,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2400,"src":"3338:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2408,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2402,"src":"3342:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3338:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":2411,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2402,"src":"3350:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2412,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3338:13:2","trueExpression":{"id":2410,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2400,"src":"3346:1:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2406,"id":2413,"nodeType":"Return","src":"3331:20:2"}]},"documentation":{"id":2398,"nodeType":"StructuredDocumentation","src":"3163:95:2","text":" The minimum of two numbers.\n @param a - First number.\n @param b - Second number."},"id":2415,"implemented":true,"kind":"freeFunction","modifiers":[],"name":"min","nameLocation":"3272:3:2","nodeType":"FunctionDefinition","parameters":{"id":2403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2400,"mutability":"mutable","name":"a","nameLocation":"3284:1:2","nodeType":"VariableDeclaration","scope":2415,"src":"3276:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2399,"name":"uint256","nodeType":"ElementaryTypeName","src":"3276:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2402,"mutability":"mutable","name":"b","nameLocation":"3295:1:2","nodeType":"VariableDeclaration","scope":2415,"src":"3287:9:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2401,"name":"uint256","nodeType":"ElementaryTypeName","src":"3287:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3275:22:2"},"returnParameters":{"id":2406,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2405,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2415,"src":"3312:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2404,"name":"uint256","nodeType":"ElementaryTypeName","src":"3312:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3311:9:2"},"scope":2416,"src":"3263:95:2","stateMutability":"pure","virtual":false,"visibility":"internal"}],"src":"36:3323:2"},"id":2},"@account-abstraction/contracts/core/NonceManager.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/NonceManager.sol","exportedSymbols":{"INonceManager":[3585],"NonceManager":[2506]},"id":2507,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":2417,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"36:24:3"},{"absolutePath":"@account-abstraction/contracts/interfaces/INonceManager.sol","file":"../interfaces/INonceManager.sol","id":2418,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2507,"sourceUnit":3586,"src":"62:41:3","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":2420,"name":"INonceManager","nameLocations":["181:13:3"],"nodeType":"IdentifierPath","referencedDeclaration":3585,"src":"181:13:3"},"id":2421,"nodeType":"InheritanceSpecifier","src":"181:13:3"}],"canonicalName":"NonceManager","contractDependencies":[],"contractKind":"contract","documentation":{"id":2419,"nodeType":"StructuredDocumentation","src":"105:41:3","text":" nonce management functionality"},"fullyImplemented":true,"id":2506,"linearizedBaseContracts":[2506,3585],"name":"NonceManager","nameLocation":"165:12:3","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":2422,"nodeType":"StructuredDocumentation","src":"202:72:3","text":" The next valid sequence number for a given nonce key."},"functionSelector":"1b2e01b8","id":2428,"mutability":"mutable","name":"nonceSequenceNumber","nameLocation":"334:19:3","nodeType":"VariableDeclaration","scope":2506,"src":"279:74:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint192_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint192 => uint256))"},"typeName":{"id":2427,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2423,"name":"address","nodeType":"ElementaryTypeName","src":"287:7:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"279:47:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint192_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint192 => uint256))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2426,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2424,"name":"uint192","nodeType":"ElementaryTypeName","src":"306:7:3","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"nodeType":"Mapping","src":"298:27:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint192_$_t_uint256_$","typeString":"mapping(uint192 => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2425,"name":"uint256","nodeType":"ElementaryTypeName","src":"317:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"public"},{"baseFunctions":[3578],"body":{"id":2453,"nodeType":"Block","src":"490:79:3","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2451,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"baseExpression":{"id":2439,"name":"nonceSequenceNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2428,"src":"507:19:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint192_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint192 => uint256))"}},"id":2441,"indexExpression":{"id":2440,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2431,"src":"527:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"507:27:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint192_$_t_uint256_$","typeString":"mapping(uint192 => uint256)"}},"id":2443,"indexExpression":{"id":2442,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2433,"src":"535:3:3","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"507:32:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2446,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2433,"src":"551:3:3","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint192","typeString":"uint192"}],"id":2445,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"543:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2444,"name":"uint256","nodeType":"ElementaryTypeName","src":"543:7:3","typeDescriptions":{}}},"id":2447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"543:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":2448,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"559:2:3","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"543:18:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2450,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"542:20:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"507:55:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2438,"id":2452,"nodeType":"Return","src":"500:62:3"}]},"documentation":{"id":2429,"nodeType":"StructuredDocumentation","src":"360:29:3","text":"@inheritdoc INonceManager"},"functionSelector":"35567e1a","id":2454,"implemented":true,"kind":"function","modifiers":[],"name":"getNonce","nameLocation":"403:8:3","nodeType":"FunctionDefinition","overrides":{"id":2435,"nodeType":"OverrideSpecifier","overrides":[],"src":"457:8:3"},"parameters":{"id":2434,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2431,"mutability":"mutable","name":"sender","nameLocation":"420:6:3","nodeType":"VariableDeclaration","scope":2454,"src":"412:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2430,"name":"address","nodeType":"ElementaryTypeName","src":"412:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2433,"mutability":"mutable","name":"key","nameLocation":"436:3:3","nodeType":"VariableDeclaration","scope":2454,"src":"428:11:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":2432,"name":"uint192","nodeType":"ElementaryTypeName","src":"428:7:3","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"411:29:3"},"returnParameters":{"id":2438,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2437,"mutability":"mutable","name":"nonce","nameLocation":"483:5:3","nodeType":"VariableDeclaration","scope":2454,"src":"475:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2436,"name":"uint256","nodeType":"ElementaryTypeName","src":"475:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"474:15:3"},"scope":2506,"src":"394:175:3","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[3584],"body":{"id":2468,"nodeType":"Block","src":"883:55:3","statements":[{"expression":{"id":2466,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"893:38:3","subExpression":{"baseExpression":{"baseExpression":{"id":2460,"name":"nonceSequenceNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2428,"src":"893:19:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint192_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint192 => uint256))"}},"id":2464,"indexExpression":{"expression":{"id":2461,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"913:3:3","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"917:6:3","memberName":"sender","nodeType":"MemberAccess","src":"913:10:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"893:31:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint192_$_t_uint256_$","typeString":"mapping(uint192 => uint256)"}},"id":2465,"indexExpression":{"id":2463,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2456,"src":"925:3:3","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"893:36:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2467,"nodeType":"ExpressionStatement","src":"893:38:3"}]},"functionSelector":"0bd28e3b","id":2469,"implemented":true,"kind":"function","modifiers":[],"name":"incrementNonce","nameLocation":"839:14:3","nodeType":"FunctionDefinition","overrides":{"id":2458,"nodeType":"OverrideSpecifier","overrides":[],"src":"874:8:3"},"parameters":{"id":2457,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2456,"mutability":"mutable","name":"key","nameLocation":"862:3:3","nodeType":"VariableDeclaration","scope":2469,"src":"854:11:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":2455,"name":"uint192","nodeType":"ElementaryTypeName","src":"854:7:3","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"853:13:3"},"returnParameters":{"id":2459,"nodeType":"ParameterList","parameters":[],"src":"883:0:3"},"scope":2506,"src":"830:108:3","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":2504,"nodeType":"Block","src":"1275:146:3","statements":[{"assignments":[2480],"declarations":[{"constant":false,"id":2480,"mutability":"mutable","name":"key","nameLocation":"1294:3:3","nodeType":"VariableDeclaration","scope":2504,"src":"1286:11:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":2479,"name":"uint192","nodeType":"ElementaryTypeName","src":"1286:7:3","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"id":2487,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2483,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2474,"src":"1308:5:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":2484,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1317:2:3","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"1308:11:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2482,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1300:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":2481,"name":"uint192","nodeType":"ElementaryTypeName","src":"1300:7:3","typeDescriptions":{}}},"id":2486,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1300:20:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"nodeType":"VariableDeclarationStatement","src":"1286:34:3"},{"assignments":[2489],"declarations":[{"constant":false,"id":2489,"mutability":"mutable","name":"seq","nameLocation":"1337:3:3","nodeType":"VariableDeclaration","scope":2504,"src":"1330:10:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":2488,"name":"uint64","nodeType":"ElementaryTypeName","src":"1330:6:3","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":2494,"initialValue":{"arguments":[{"id":2492,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2474,"src":"1350:5:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2491,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1343:6:3","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":2490,"name":"uint64","nodeType":"ElementaryTypeName","src":"1343:6:3","typeDescriptions":{}}},"id":2493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1343:13:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"1330:26:3"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2502,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2500,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1373:34:3","subExpression":{"baseExpression":{"baseExpression":{"id":2495,"name":"nonceSequenceNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2428,"src":"1373:19:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint192_$_t_uint256_$_$","typeString":"mapping(address => mapping(uint192 => uint256))"}},"id":2497,"indexExpression":{"id":2496,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2472,"src":"1393:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1373:27:3","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint192_$_t_uint256_$","typeString":"mapping(uint192 => uint256)"}},"id":2499,"indexExpression":{"id":2498,"name":"key","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2480,"src":"1401:3:3","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1373:32:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2501,"name":"seq","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2489,"src":"1411:3:3","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"1373:41:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2478,"id":2503,"nodeType":"Return","src":"1366:48:3"}]},"documentation":{"id":2470,"nodeType":"StructuredDocumentation","src":"944:238:3","text":" validate nonce uniqueness for this account.\n called just after validateUserOp()\n @return true if the nonce was incremented successfully.\n         false if the current nonce doesn't match the given one."},"id":2505,"implemented":true,"kind":"function","modifiers":[],"name":"_validateAndUpdateNonce","nameLocation":"1196:23:3","nodeType":"FunctionDefinition","parameters":{"id":2475,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2472,"mutability":"mutable","name":"sender","nameLocation":"1228:6:3","nodeType":"VariableDeclaration","scope":2505,"src":"1220:14:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2471,"name":"address","nodeType":"ElementaryTypeName","src":"1220:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2474,"mutability":"mutable","name":"nonce","nameLocation":"1244:5:3","nodeType":"VariableDeclaration","scope":2505,"src":"1236:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2473,"name":"uint256","nodeType":"ElementaryTypeName","src":"1236:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1219:31:3"},"returnParameters":{"id":2478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2477,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2505,"src":"1269:4:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2476,"name":"bool","nodeType":"ElementaryTypeName","src":"1269:4:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1268:6:3"},"scope":2506,"src":"1187:234:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":2507,"src":"147:1277:3","usedErrors":[],"usedEvents":[]}],"src":"36:1389:3"},"id":3},"@account-abstraction/contracts/core/SenderCreator.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/SenderCreator.sol","exportedSymbols":{"SenderCreator":[2553]},"id":2554,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":2508,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"36:24:4"},{"abstract":false,"baseContracts":[],"canonicalName":"SenderCreator","contractDependencies":[],"contractKind":"contract","documentation":{"id":2509,"nodeType":"StructuredDocumentation","src":"62:142:4","text":" Helper contract for EntryPoint, to call userOp.initCode from a \"neutral\" address,\n which is explicitly not the entryPoint itself."},"fullyImplemented":true,"id":2553,"linearizedBaseContracts":[2553],"name":"SenderCreator","nameLocation":"214:13:4","nodeType":"ContractDefinition","nodes":[{"body":{"id":2551,"nodeType":"Block","src":"671:558:4","statements":[{"assignments":[2518],"declarations":[{"constant":false,"id":2518,"mutability":"mutable","name":"factory","nameLocation":"689:7:4","nodeType":"VariableDeclaration","scope":2551,"src":"681:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2517,"name":"address","nodeType":"ElementaryTypeName","src":"681:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2529,"initialValue":{"arguments":[{"arguments":[{"baseExpression":{"id":2523,"name":"initCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2512,"src":"715:8:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"3230","id":2525,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"726:2:4","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"id":2526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"715:14:4","startExpression":{"hexValue":"30","id":2524,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"724:1:4","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":2522,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"707:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":2521,"name":"bytes20","nodeType":"ElementaryTypeName","src":"707:7:4","typeDescriptions":{}}},"id":2527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"707:23:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"}],"id":2520,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"699:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2519,"name":"address","nodeType":"ElementaryTypeName","src":"699:7:4","typeDescriptions":{}}},"id":2528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"699:32:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"681:50:4"},{"assignments":[2531],"declarations":[{"constant":false,"id":2531,"mutability":"mutable","name":"initCallData","nameLocation":"754:12:4","nodeType":"VariableDeclaration","scope":2551,"src":"741:25:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2530,"name":"bytes","nodeType":"ElementaryTypeName","src":"741:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2535,"initialValue":{"baseExpression":{"id":2532,"name":"initCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2512,"src":"769:8:4","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":2534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"769:13:4","startExpression":{"hexValue":"3230","id":2533,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"778:2:4","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},"nodeType":"VariableDeclarationStatement","src":"741:41:4"},{"assignments":[2537],"declarations":[{"constant":false,"id":2537,"mutability":"mutable","name":"success","nameLocation":"797:7:4","nodeType":"VariableDeclaration","scope":2551,"src":"792:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2536,"name":"bool","nodeType":"ElementaryTypeName","src":"792:4:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":2538,"nodeType":"VariableDeclarationStatement","src":"792:12:4"},{"AST":{"nativeSrc":"888:268:4","nodeType":"YulBlock","src":"888:268:4","statements":[{"nativeSrc":"902:213:4","nodeType":"YulAssignment","src":"902:213:4","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"935:3:4","nodeType":"YulIdentifier","src":"935:3:4"},"nativeSrc":"935:5:4","nodeType":"YulFunctionCall","src":"935:5:4"},{"name":"factory","nativeSrc":"958:7:4","nodeType":"YulIdentifier","src":"958:7:4"},{"kind":"number","nativeSrc":"983:1:4","nodeType":"YulLiteral","src":"983:1:4","type":"","value":"0"},{"arguments":[{"name":"initCallData","nativeSrc":"1006:12:4","nodeType":"YulIdentifier","src":"1006:12:4"},{"kind":"number","nativeSrc":"1020:4:4","nodeType":"YulLiteral","src":"1020:4:4","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1002:3:4","nodeType":"YulIdentifier","src":"1002:3:4"},"nativeSrc":"1002:23:4","nodeType":"YulFunctionCall","src":"1002:23:4"},{"arguments":[{"name":"initCallData","nativeSrc":"1049:12:4","nodeType":"YulIdentifier","src":"1049:12:4"}],"functionName":{"name":"mload","nativeSrc":"1043:5:4","nodeType":"YulIdentifier","src":"1043:5:4"},"nativeSrc":"1043:19:4","nodeType":"YulFunctionCall","src":"1043:19:4"},{"kind":"number","nativeSrc":"1080:1:4","nodeType":"YulLiteral","src":"1080:1:4","type":"","value":"0"},{"kind":"number","nativeSrc":"1099:2:4","nodeType":"YulLiteral","src":"1099:2:4","type":"","value":"32"}],"functionName":{"name":"call","nativeSrc":"913:4:4","nodeType":"YulIdentifier","src":"913:4:4"},"nativeSrc":"913:202:4","nodeType":"YulFunctionCall","src":"913:202:4"},"variableNames":[{"name":"success","nativeSrc":"902:7:4","nodeType":"YulIdentifier","src":"902:7:4"}]},{"nativeSrc":"1128:18:4","nodeType":"YulAssignment","src":"1128:18:4","value":{"arguments":[{"kind":"number","nativeSrc":"1144:1:4","nodeType":"YulLiteral","src":"1144:1:4","type":"","value":"0"}],"functionName":{"name":"mload","nativeSrc":"1138:5:4","nodeType":"YulIdentifier","src":"1138:5:4"},"nativeSrc":"1138:8:4","nodeType":"YulFunctionCall","src":"1138:8:4"},"variableNames":[{"name":"sender","nativeSrc":"1128:6:4","nodeType":"YulIdentifier","src":"1128:6:4"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":2518,"isOffset":false,"isSlot":false,"src":"958:7:4","valueSize":1},{"declaration":2531,"isOffset":false,"isSlot":false,"src":"1006:12:4","valueSize":1},{"declaration":2531,"isOffset":false,"isSlot":false,"src":"1049:12:4","valueSize":1},{"declaration":2515,"isOffset":false,"isSlot":false,"src":"1128:6:4","valueSize":1},{"declaration":2537,"isOffset":false,"isSlot":false,"src":"902:7:4","valueSize":1}],"flags":["memory-safe"],"id":2539,"nodeType":"InlineAssembly","src":"863:293:4"},{"condition":{"id":2541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1169:8:4","subExpression":{"id":2540,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2537,"src":"1170:7:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2550,"nodeType":"IfStatement","src":"1165:58:4","trueBody":{"id":2549,"nodeType":"Block","src":"1179:44:4","statements":[{"expression":{"id":2547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2542,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2515,"src":"1193:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"30","id":2545,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1210:1:4","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":2544,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1202:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2543,"name":"address","nodeType":"ElementaryTypeName","src":"1202:7:4","typeDescriptions":{}}},"id":2546,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1202:10:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1193:19:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2548,"nodeType":"ExpressionStatement","src":"1193:19:4"}]}}]},"documentation":{"id":2510,"nodeType":"StructuredDocumentation","src":"234:337:4","text":" Call the \"initCode\" factory to create and return the sender account address.\n @param initCode - The initCode value from a UserOp. contains 20 bytes of factory address,\n                   followed by calldata.\n @return sender  - The returned address of the created account, or zero address on failure."},"functionSelector":"570e1a36","id":2552,"implemented":true,"kind":"function","modifiers":[],"name":"createSender","nameLocation":"585:12:4","nodeType":"FunctionDefinition","parameters":{"id":2513,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2512,"mutability":"mutable","name":"initCode","nameLocation":"622:8:4","nodeType":"VariableDeclaration","scope":2552,"src":"607:23:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":2511,"name":"bytes","nodeType":"ElementaryTypeName","src":"607:5:4","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"597:39:4"},"returnParameters":{"id":2516,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2515,"mutability":"mutable","name":"sender","nameLocation":"663:6:4","nodeType":"VariableDeclaration","scope":2552,"src":"655:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2514,"name":"address","nodeType":"ElementaryTypeName","src":"655:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"654:16:4"},"scope":2553,"src":"576:653:4","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":2554,"src":"205:1026:4","usedErrors":[],"usedEvents":[]}],"src":"36:1196:4"},"id":4},"@account-abstraction/contracts/core/StakeManager.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/StakeManager.sol","exportedSymbols":{"IStakeManager":[3726],"StakeManager":[2961]},"id":2962,"license":"GPL-3.0-only","nodeType":"SourceUnit","nodes":[{"id":2555,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"41:24:5"},{"absolutePath":"@account-abstraction/contracts/interfaces/IStakeManager.sol","file":"../interfaces/IStakeManager.sol","id":2556,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":2962,"sourceUnit":3727,"src":"67:41:5","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":2558,"name":"IStakeManager","nameLocations":["435:13:5"],"nodeType":"IdentifierPath","referencedDeclaration":3726,"src":"435:13:5"},"id":2559,"nodeType":"InheritanceSpecifier","src":"435:13:5"}],"canonicalName":"StakeManager","contractDependencies":[],"contractKind":"contract","documentation":{"id":2557,"nodeType":"StructuredDocumentation","src":"194:206:5","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 a paymaster."},"fullyImplemented":true,"id":2961,"linearizedBaseContracts":[2961,3726],"name":"StakeManager","nameLocation":"419:12:5","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":2560,"nodeType":"StructuredDocumentation","src":"455:47:5","text":"maps paymaster to their deposits and stakes"},"functionSelector":"fc7e286d","id":2565,"mutability":"mutable","name":"deposits","nameLocation":"546:8:5","nodeType":"VariableDeclaration","scope":2961,"src":"507:47:5","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo)"},"typeName":{"id":2564,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2561,"name":"address","nodeType":"ElementaryTypeName","src":"515:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"507:31:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2563,"nodeType":"UserDefinedTypeName","pathNode":{"id":2562,"name":"DepositInfo","nameLocations":["526:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"526:11:5"},"referencedDeclaration":3673,"src":"526:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}}},"visibility":"public"},{"baseFunctions":[3687],"body":{"id":2578,"nodeType":"Block","src":"696:41:5","statements":[{"expression":{"baseExpression":{"id":2574,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"713:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2576,"indexExpression":{"id":2575,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2568,"src":"722:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"713:17:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"functionReturnParameters":2573,"id":2577,"nodeType":"Return","src":"706:24:5"}]},"documentation":{"id":2566,"nodeType":"StructuredDocumentation","src":"561:29:5","text":"@inheritdoc IStakeManager"},"functionSelector":"5287ce12","id":2579,"implemented":true,"kind":"function","modifiers":[],"name":"getDepositInfo","nameLocation":"604:14:5","nodeType":"FunctionDefinition","parameters":{"id":2569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2568,"mutability":"mutable","name":"account","nameLocation":"636:7:5","nodeType":"VariableDeclaration","scope":2579,"src":"628:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2567,"name":"address","nodeType":"ElementaryTypeName","src":"628:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"618:31:5"},"returnParameters":{"id":2573,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2572,"mutability":"mutable","name":"info","nameLocation":"690:4:5","nodeType":"VariableDeclaration","scope":2579,"src":"671:23:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_memory_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":2571,"nodeType":"UserDefinedTypeName","pathNode":{"id":2570,"name":"DepositInfo","nameLocations":["671:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"671:11:5"},"referencedDeclaration":3673,"src":"671:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"src":"670:25:5"},"scope":2961,"src":"595:142:5","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2609,"nodeType":"Block","src":"953:165:5","statements":[{"assignments":[2590],"declarations":[{"constant":false,"id":2590,"mutability":"mutable","name":"depositInfo","nameLocation":"983:11:5","nodeType":"VariableDeclaration","scope":2609,"src":"963:31:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":2589,"nodeType":"UserDefinedTypeName","pathNode":{"id":2588,"name":"DepositInfo","nameLocations":["963:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"963:11:5"},"referencedDeclaration":3673,"src":"963:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"id":2594,"initialValue":{"baseExpression":{"id":2591,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"997:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2593,"indexExpression":{"id":2592,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2582,"src":"1006:4:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"997:14:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"VariableDeclarationStatement","src":"963:48:5"},{"expression":{"id":2600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2595,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2586,"src":"1021:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_StakeInfo_$3678_memory_ptr","typeString":"struct IStakeManager.StakeInfo memory"}},"id":2597,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1026:5:5","memberName":"stake","nodeType":"MemberAccess","referencedDeclaration":3675,"src":"1021:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":2598,"name":"depositInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2590,"src":"1034:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2599,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1046:5:5","memberName":"stake","nodeType":"MemberAccess","referencedDeclaration":3668,"src":"1034:17:5","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"1021:30:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2601,"nodeType":"ExpressionStatement","src":"1021:30:5"},{"expression":{"id":2607,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2602,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2586,"src":"1061:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_StakeInfo_$3678_memory_ptr","typeString":"struct IStakeManager.StakeInfo memory"}},"id":2604,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1066:15:5","memberName":"unstakeDelaySec","nodeType":"MemberAccess","referencedDeclaration":3677,"src":"1061:20:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":2605,"name":"depositInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2590,"src":"1084:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2606,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1096:15:5","memberName":"unstakeDelaySec","nodeType":"MemberAccess","referencedDeclaration":3670,"src":"1084:27:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"1061:50:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2608,"nodeType":"ExpressionStatement","src":"1061:50:5"}]},"documentation":{"id":2580,"nodeType":"StructuredDocumentation","src":"743:108:5","text":" Internal method to return just the stake info.\n @param addr - The account to query."},"id":2610,"implemented":true,"kind":"function","modifiers":[],"name":"_getStakeInfo","nameLocation":"865:13:5","nodeType":"FunctionDefinition","parameters":{"id":2583,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2582,"mutability":"mutable","name":"addr","nameLocation":"896:4:5","nodeType":"VariableDeclaration","scope":2610,"src":"888:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2581,"name":"address","nodeType":"ElementaryTypeName","src":"888:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"878:28:5"},"returnParameters":{"id":2587,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2586,"mutability":"mutable","name":"info","nameLocation":"947:4:5","nodeType":"VariableDeclaration","scope":2610,"src":"930:21:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakeInfo_$3678_memory_ptr","typeString":"struct IStakeManager.StakeInfo"},"typeName":{"id":2585,"nodeType":"UserDefinedTypeName","pathNode":{"id":2584,"name":"StakeInfo","nameLocations":["930:9:5"],"nodeType":"IdentifierPath","referencedDeclaration":3678,"src":"930:9:5"},"referencedDeclaration":3678,"src":"930:9:5","typeDescriptions":{"typeIdentifier":"t_struct$_StakeInfo_$3678_storage_ptr","typeString":"struct IStakeManager.StakeInfo"}},"visibility":"internal"}],"src":"929:23:5"},"scope":2961,"src":"856:262:5","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[3695],"body":{"id":2623,"nodeType":"Block","src":"1224:49:5","statements":[{"expression":{"expression":{"baseExpression":{"id":2618,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"1241:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2620,"indexExpression":{"id":2619,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2613,"src":"1250:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1241:17:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"id":2621,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1259:7:5","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"1241:25:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2617,"id":2622,"nodeType":"Return","src":"1234:32:5"}]},"documentation":{"id":2611,"nodeType":"StructuredDocumentation","src":"1124:29:5","text":"@inheritdoc IStakeManager"},"functionSelector":"70a08231","id":2624,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"1167:9:5","nodeType":"FunctionDefinition","parameters":{"id":2614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2613,"mutability":"mutable","name":"account","nameLocation":"1185:7:5","nodeType":"VariableDeclaration","scope":2624,"src":"1177:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2612,"name":"address","nodeType":"ElementaryTypeName","src":"1177:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1176:17:5"},"returnParameters":{"id":2617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2616,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2624,"src":"1215:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2615,"name":"uint256","nodeType":"ElementaryTypeName","src":"1215:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1214:9:5"},"scope":2961,"src":"1158:115:5","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":2632,"nodeType":"Block","src":"1306:38:5","statements":[{"expression":{"arguments":[{"expression":{"id":2628,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1326:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1330:6:5","memberName":"sender","nodeType":"MemberAccess","src":"1326:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2627,"name":"depositTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2686,"src":"1316:9:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":2630,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1316:21:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2631,"nodeType":"ExpressionStatement","src":"1316:21:5"}]},"id":2633,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":2625,"nodeType":"ParameterList","parameters":[],"src":"1286:2:5"},"returnParameters":{"id":2626,"nodeType":"ParameterList","parameters":[],"src":"1306:0:5"},"scope":2961,"src":"1279:65:5","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":2665,"nodeType":"Block","src":"1646:172:5","statements":[{"assignments":[2645],"declarations":[{"constant":false,"id":2645,"mutability":"mutable","name":"info","nameLocation":"1676:4:5","nodeType":"VariableDeclaration","scope":2665,"src":"1656:24:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":2644,"nodeType":"UserDefinedTypeName","pathNode":{"id":2643,"name":"DepositInfo","nameLocations":["1656:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"1656:11:5"},"referencedDeclaration":3673,"src":"1656:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"id":2649,"initialValue":{"baseExpression":{"id":2646,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"1683:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2648,"indexExpression":{"id":2647,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2636,"src":"1692:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1683:17:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"VariableDeclarationStatement","src":"1656:44:5"},{"assignments":[2651],"declarations":[{"constant":false,"id":2651,"mutability":"mutable","name":"newAmount","nameLocation":"1718:9:5","nodeType":"VariableDeclaration","scope":2665,"src":"1710:17:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2650,"name":"uint256","nodeType":"ElementaryTypeName","src":"1710:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2656,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2652,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2645,"src":"1730:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2653,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1735:7:5","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"1730:12:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":2654,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2638,"src":"1745:6:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1730:21:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1710:41:5"},{"expression":{"id":2661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2657,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2645,"src":"1761:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2659,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1766:7:5","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"1761:12:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2660,"name":"newAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2651,"src":"1776:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1761:24:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2662,"nodeType":"ExpressionStatement","src":"1761:24:5"},{"expression":{"id":2663,"name":"newAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2651,"src":"1802:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2642,"id":2664,"nodeType":"Return","src":"1795:16:5"}]},"documentation":{"id":2634,"nodeType":"StructuredDocumentation","src":"1350:204:5","text":" Increments an account's deposit.\n @param account - The account to increment.\n @param amount  - The amount to increment by.\n @return the updated deposit of this account"},"id":2666,"implemented":true,"kind":"function","modifiers":[],"name":"_incrementDeposit","nameLocation":"1568:17:5","nodeType":"FunctionDefinition","parameters":{"id":2639,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2636,"mutability":"mutable","name":"account","nameLocation":"1594:7:5","nodeType":"VariableDeclaration","scope":2666,"src":"1586:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2635,"name":"address","nodeType":"ElementaryTypeName","src":"1586:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2638,"mutability":"mutable","name":"amount","nameLocation":"1611:6:5","nodeType":"VariableDeclaration","scope":2666,"src":"1603:14:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2637,"name":"uint256","nodeType":"ElementaryTypeName","src":"1603:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1585:33:5"},"returnParameters":{"id":2642,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2641,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2666,"src":"1637:7:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2640,"name":"uint256","nodeType":"ElementaryTypeName","src":"1637:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1636:9:5"},"scope":2961,"src":"1559:259:5","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[3701],"body":{"id":2685,"nodeType":"Block","src":"1994:120:5","statements":[{"assignments":[2673],"declarations":[{"constant":false,"id":2673,"mutability":"mutable","name":"newDeposit","nameLocation":"2012:10:5","nodeType":"VariableDeclaration","scope":2685,"src":"2004:18:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2672,"name":"uint256","nodeType":"ElementaryTypeName","src":"2004:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2679,"initialValue":{"arguments":[{"id":2675,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2669,"src":"2043:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":2676,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2052:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2677,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2056:5:5","memberName":"value","nodeType":"MemberAccess","src":"2052:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2674,"name":"_incrementDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2666,"src":"2025:17:5","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,uint256) returns (uint256)"}},"id":2678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2025:37:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2004:58:5"},{"eventCall":{"arguments":[{"id":2681,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2669,"src":"2087:7:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2682,"name":"newDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2673,"src":"2096:10:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2680,"name":"Deposited","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3631,"src":"2077:9:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2077:30:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2684,"nodeType":"EmitStatement","src":"2072:35:5"}]},"documentation":{"id":2667,"nodeType":"StructuredDocumentation","src":"1824:106:5","text":" Add to the deposit of the given account.\n @param account - The account to add to."},"functionSelector":"b760faf9","id":2686,"implemented":true,"kind":"function","modifiers":[],"name":"depositTo","nameLocation":"1944:9:5","nodeType":"FunctionDefinition","parameters":{"id":2670,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2669,"mutability":"mutable","name":"account","nameLocation":"1962:7:5","nodeType":"VariableDeclaration","scope":2686,"src":"1954:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2668,"name":"address","nodeType":"ElementaryTypeName","src":"1954:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1953:17:5"},"returnParameters":{"id":2671,"nodeType":"ParameterList","parameters":[],"src":"1994:0:5"},"scope":2961,"src":"1935:179:5","stateMutability":"payable","virtual":true,"visibility":"public"},{"baseFunctions":[3707],"body":{"id":2765,"nodeType":"Block","src":"2382:649:5","statements":[{"assignments":[2694],"declarations":[{"constant":false,"id":2694,"mutability":"mutable","name":"info","nameLocation":"2412:4:5","nodeType":"VariableDeclaration","scope":2765,"src":"2392:24:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":2693,"nodeType":"UserDefinedTypeName","pathNode":{"id":2692,"name":"DepositInfo","nameLocations":["2392:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"2392:11:5"},"referencedDeclaration":3673,"src":"2392:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"id":2699,"initialValue":{"baseExpression":{"id":2695,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"2419:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2698,"indexExpression":{"expression":{"id":2696,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2428:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2432:6:5","memberName":"sender","nodeType":"MemberAccess","src":"2428:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2419:20:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"VariableDeclarationStatement","src":"2392:47:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":2703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2701,"name":"unstakeDelaySec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2689,"src":"2457:15:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2702,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2475:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2457:19:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6d757374207370656369667920756e7374616b652064656c6179","id":2704,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2478:28:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_b778ed14a7f7833f15cec15447ba73902b7f27cdd540d47113a5b9c3947e6b2b","typeString":"literal_string \"must specify unstake delay\""},"value":"must specify unstake delay"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b778ed14a7f7833f15cec15447ba73902b7f27cdd540d47113a5b9c3947e6b2b","typeString":"literal_string \"must specify unstake delay\""}],"id":2700,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2449:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2705,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2449:58:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2706,"nodeType":"ExpressionStatement","src":"2449:58:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":2711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2708,"name":"unstakeDelaySec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2689,"src":"2538:15:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":2709,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2694,"src":"2557:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2710,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2562:15:5","memberName":"unstakeDelaySec","nodeType":"MemberAccess","referencedDeclaration":3670,"src":"2557:20:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"2538:39:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"63616e6e6f7420646563726561736520756e7374616b652074696d65","id":2712,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2591:30:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_be41a8e875b0d08b577c32bcab0ac88c472e62be6c60e218189d78d10808d9e7","typeString":"literal_string \"cannot decrease unstake time\""},"value":"cannot decrease unstake time"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_be41a8e875b0d08b577c32bcab0ac88c472e62be6c60e218189d78d10808d9e7","typeString":"literal_string \"cannot decrease unstake time\""}],"id":2707,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2517:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2713,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2517:114:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2714,"nodeType":"ExpressionStatement","src":"2517:114:5"},{"assignments":[2716],"declarations":[{"constant":false,"id":2716,"mutability":"mutable","name":"stake","nameLocation":"2649:5:5","nodeType":"VariableDeclaration","scope":2765,"src":"2641:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2715,"name":"uint256","nodeType":"ElementaryTypeName","src":"2641:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2722,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2717,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2694,"src":"2657:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2718,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2662:5:5","memberName":"stake","nodeType":"MemberAccess","referencedDeclaration":3668,"src":"2657:10:5","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":2719,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2670:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2674:5:5","memberName":"value","nodeType":"MemberAccess","src":"2670:9:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2657:22:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2641:38:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2724,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2716,"src":"2697:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2725,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2705:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2697:9:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6e6f207374616b6520737065636966696564","id":2727,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2708:20:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_163fbe38f6e79bbafe8ef1c6ecbcd609e161120dfcf32c1dc0ae2ace28e56cf8","typeString":"literal_string \"no stake specified\""},"value":"no stake specified"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_163fbe38f6e79bbafe8ef1c6ecbcd609e161120dfcf32c1dc0ae2ace28e56cf8","typeString":"literal_string \"no stake specified\""}],"id":2723,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2689:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2728,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2689:40:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2729,"nodeType":"ExpressionStatement","src":"2689:40:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2731,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2716,"src":"2747:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":2734,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2761:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":2733,"name":"uint112","nodeType":"ElementaryTypeName","src":"2761:7:5","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"}],"id":2732,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2756:4:5","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":2735,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2756:13:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint112","typeString":"type(uint112)"}},"id":2736,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2770:3:5","memberName":"max","nodeType":"MemberAccess","src":"2756:17:5","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"2747:26:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"7374616b65206f766572666c6f77","id":2738,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2775:16:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_6a64644aeeb545618f93fda0e8ccacb2c407cdffe2b26245fdfa446117fd12f8","typeString":"literal_string \"stake overflow\""},"value":"stake overflow"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_6a64644aeeb545618f93fda0e8ccacb2c407cdffe2b26245fdfa446117fd12f8","typeString":"literal_string \"stake overflow\""}],"id":2730,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2739:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2739:53:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2740,"nodeType":"ExpressionStatement","src":"2739:53:5"},{"expression":{"id":2756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2741,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"2802:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2744,"indexExpression":{"expression":{"id":2742,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2811:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2743,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2815:6:5","memberName":"sender","nodeType":"MemberAccess","src":"2811:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2802:20:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":2746,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2694,"src":"2850:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2747,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2855:7:5","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"2850:12:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":2748,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2876:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"arguments":[{"id":2751,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2716,"src":"2902:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2750,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2894:7:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":2749,"name":"uint112","nodeType":"ElementaryTypeName","src":"2894:7:5","typeDescriptions":{}}},"id":2752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2894:14:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},{"id":2753,"name":"unstakeDelaySec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2689,"src":"2922:15:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":2754,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2951:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint112","typeString":"uint112"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":2745,"name":"DepositInfo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3673,"src":"2825:11:5","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_DepositInfo_$3673_storage_ptr_$","typeString":"type(struct IStakeManager.DepositInfo storage pointer)"}},"id":2755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2825:137:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_memory_ptr","typeString":"struct IStakeManager.DepositInfo memory"}},"src":"2802:160:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"id":2757,"nodeType":"ExpressionStatement","src":"2802:160:5"},{"eventCall":{"arguments":[{"expression":{"id":2759,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2989:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2993:6:5","memberName":"sender","nodeType":"MemberAccess","src":"2989:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2761,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2716,"src":"3001:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2762,"name":"unstakeDelaySec","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2689,"src":"3008:15:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":2758,"name":"StakeLocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3647,"src":"2977:11:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":2763,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2977:47:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2764,"nodeType":"EmitStatement","src":"2972:52:5"}]},"documentation":{"id":2687,"nodeType":"StructuredDocumentation","src":"2120:200:5","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":2766,"implemented":true,"kind":"function","modifiers":[],"name":"addStake","nameLocation":"2334:8:5","nodeType":"FunctionDefinition","parameters":{"id":2690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2689,"mutability":"mutable","name":"unstakeDelaySec","nameLocation":"2350:15:5","nodeType":"VariableDeclaration","scope":2766,"src":"2343:22:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":2688,"name":"uint32","nodeType":"ElementaryTypeName","src":"2343:6:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2342:24:5"},"returnParameters":{"id":2691,"nodeType":"ParameterList","parameters":[],"src":"2382:0:5"},"scope":2961,"src":"2325:706:5","stateMutability":"payable","virtual":false,"visibility":"public"},{"baseFunctions":[3711],"body":{"id":2821,"nodeType":"Block","src":"3202:376:5","statements":[{"assignments":[2772],"declarations":[{"constant":false,"id":2772,"mutability":"mutable","name":"info","nameLocation":"3232:4:5","nodeType":"VariableDeclaration","scope":2821,"src":"3212:24:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":2771,"nodeType":"UserDefinedTypeName","pathNode":{"id":2770,"name":"DepositInfo","nameLocations":["3212:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"3212:11:5"},"referencedDeclaration":3673,"src":"3212:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"id":2777,"initialValue":{"baseExpression":{"id":2773,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"3239:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2776,"indexExpression":{"expression":{"id":2774,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3248:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3252:6:5","memberName":"sender","nodeType":"MemberAccess","src":"3248:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3239:20:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"VariableDeclarationStatement","src":"3212:47:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":2782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2779,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2772,"src":"3277:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2780,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3282:15:5","memberName":"unstakeDelaySec","nodeType":"MemberAccess","referencedDeclaration":3670,"src":"3277:20:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":2781,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3301:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3277:25:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6e6f74207374616b6564","id":2783,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3304:12:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_8d1fe892c4e34e50852d9473d3c9854eedeef3b324fbe99dc34a39c1c505db12","typeString":"literal_string \"not staked\""},"value":"not staked"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8d1fe892c4e34e50852d9473d3c9854eedeef3b324fbe99dc34a39c1c505db12","typeString":"literal_string \"not staked\""}],"id":2778,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3269:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2784,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3269:48:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2785,"nodeType":"ExpressionStatement","src":"3269:48:5"},{"expression":{"arguments":[{"expression":{"id":2787,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2772,"src":"3335:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2788,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3340:6:5","memberName":"staked","nodeType":"MemberAccess","referencedDeclaration":3666,"src":"3335:11:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"616c726561647920756e7374616b696e67","id":2789,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3348:19:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_eabab2b938baa7d6708bc792cd1d2d9d9bd3627968a46b23824d4b6af2b0f7a8","typeString":"literal_string \"already unstaking\""},"value":"already unstaking"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_eabab2b938baa7d6708bc792cd1d2d9d9bd3627968a46b23824d4b6af2b0f7a8","typeString":"literal_string \"already unstaking\""}],"id":2786,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3327:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2790,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3327:41:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2791,"nodeType":"ExpressionStatement","src":"3327:41:5"},{"assignments":[2793],"declarations":[{"constant":false,"id":2793,"mutability":"mutable","name":"withdrawTime","nameLocation":"3385:12:5","nodeType":"VariableDeclaration","scope":2821,"src":"3378:19:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":2792,"name":"uint48","nodeType":"ElementaryTypeName","src":"3378:6:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":2802,"initialValue":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":2801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":2796,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"3407:5:5","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3413:9:5","memberName":"timestamp","nodeType":"MemberAccess","src":"3407:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2795,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3400:6:5","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":2794,"name":"uint48","nodeType":"ElementaryTypeName","src":"3400:6:5","typeDescriptions":{}}},"id":2798,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3400:23:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":2799,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2772,"src":"3426:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2800,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3431:15:5","memberName":"unstakeDelaySec","nodeType":"MemberAccess","referencedDeclaration":3670,"src":"3426:20:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"3400:46:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"3378:68:5"},{"expression":{"id":2807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2803,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2772,"src":"3456:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2805,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3461:12:5","memberName":"withdrawTime","nodeType":"MemberAccess","referencedDeclaration":3672,"src":"3456:17:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2806,"name":"withdrawTime","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2793,"src":"3476:12:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"3456:32:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":2808,"nodeType":"ExpressionStatement","src":"3456:32:5"},{"expression":{"id":2813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2809,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2772,"src":"3498:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2811,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3503:6:5","memberName":"staked","nodeType":"MemberAccess","referencedDeclaration":3666,"src":"3498:11:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":2812,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3512:5:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"3498:19:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2814,"nodeType":"ExpressionStatement","src":"3498:19:5"},{"eventCall":{"arguments":[{"expression":{"id":2816,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3546:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3550:6:5","memberName":"sender","nodeType":"MemberAccess","src":"3546:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2818,"name":"withdrawTime","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2793,"src":"3558:12:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":2815,"name":"StakeUnlocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3653,"src":"3532:13:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2819,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3532:39:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2820,"nodeType":"EmitStatement","src":"3527:44:5"}]},"documentation":{"id":2767,"nodeType":"StructuredDocumentation","src":"3037:128:5","text":" Attempt to unlock the stake.\n The value can be withdrawn (using withdrawStake) after the unstake delay."},"functionSelector":"bb9fe6bf","id":2822,"implemented":true,"kind":"function","modifiers":[],"name":"unlockStake","nameLocation":"3179:11:5","nodeType":"FunctionDefinition","parameters":{"id":2768,"nodeType":"ParameterList","parameters":[],"src":"3190:2:5"},"returnParameters":{"id":2769,"nodeType":"ParameterList","parameters":[],"src":"3202:0:5"},"scope":2961,"src":"3170:408:5","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[3717],"body":{"id":2904,"nodeType":"Block","src":"3851:619:5","statements":[{"assignments":[2830],"declarations":[{"constant":false,"id":2830,"mutability":"mutable","name":"info","nameLocation":"3881:4:5","nodeType":"VariableDeclaration","scope":2904,"src":"3861:24:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":2829,"nodeType":"UserDefinedTypeName","pathNode":{"id":2828,"name":"DepositInfo","nameLocations":["3861:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"3861:11:5"},"referencedDeclaration":3673,"src":"3861:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"id":2835,"initialValue":{"baseExpression":{"id":2831,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"3888:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2834,"indexExpression":{"expression":{"id":2832,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3897:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3901:6:5","memberName":"sender","nodeType":"MemberAccess","src":"3897:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3888:20:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"VariableDeclarationStatement","src":"3861:47:5"},{"assignments":[2837],"declarations":[{"constant":false,"id":2837,"mutability":"mutable","name":"stake","nameLocation":"3926:5:5","nodeType":"VariableDeclaration","scope":2904,"src":"3918:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2836,"name":"uint256","nodeType":"ElementaryTypeName","src":"3918:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2840,"initialValue":{"expression":{"id":2838,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2830,"src":"3934:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2839,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3939:5:5","memberName":"stake","nodeType":"MemberAccess","referencedDeclaration":3668,"src":"3934:10:5","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"VariableDeclarationStatement","src":"3918:26:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2842,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2837,"src":"3962:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2843,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3970:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3962:9:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4e6f207374616b6520746f207769746864726177","id":2845,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3973:22:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_2157ff27c581d0c09d0fefae4820572f0bccc198ee5e28633f039d06e0011705","typeString":"literal_string \"No stake to withdraw\""},"value":"No stake to withdraw"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2157ff27c581d0c09d0fefae4820572f0bccc198ee5e28633f039d06e0011705","typeString":"literal_string \"No stake to withdraw\""}],"id":2841,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3954:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2846,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3954:42:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2847,"nodeType":"ExpressionStatement","src":"3954:42:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":2852,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2849,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2830,"src":"4014:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2850,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4019:12:5","memberName":"withdrawTime","nodeType":"MemberAccess","referencedDeclaration":3672,"src":"4014:17:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2851,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4034:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4014:21:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6d7573742063616c6c20756e6c6f636b5374616b652829206669727374","id":2853,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4037:31:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_9973ef36bc8342d488dae231c130b6ed95bb2a62fca313f7c859e3c78149cec5","typeString":"literal_string \"must call unlockStake() first\""},"value":"must call unlockStake() first"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9973ef36bc8342d488dae231c130b6ed95bb2a62fca313f7c859e3c78149cec5","typeString":"literal_string \"must call unlockStake() first\""}],"id":2848,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4006:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2854,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4006:63:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2855,"nodeType":"ExpressionStatement","src":"4006:63:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2857,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2830,"src":"4100:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2858,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4105:12:5","memberName":"withdrawTime","nodeType":"MemberAccess","referencedDeclaration":3672,"src":"4100:17:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":2859,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"4121:5:5","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4127:9:5","memberName":"timestamp","nodeType":"MemberAccess","src":"4121:15:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4100:36:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5374616b65207769746864726177616c206973206e6f7420647565","id":2862,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4150:29:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_5cd6155e73f61bccbf344f4197f14538012904bd24fa05bb30427c7f1fe55d45","typeString":"literal_string \"Stake withdrawal is not due\""},"value":"Stake withdrawal is not due"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5cd6155e73f61bccbf344f4197f14538012904bd24fa05bb30427c7f1fe55d45","typeString":"literal_string \"Stake withdrawal is not due\""}],"id":2856,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4079:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4079:110:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2864,"nodeType":"ExpressionStatement","src":"4079:110:5"},{"expression":{"id":2869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2865,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2830,"src":"4199:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2867,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4204:15:5","memberName":"unstakeDelaySec","nodeType":"MemberAccess","referencedDeclaration":3670,"src":"4199:20:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":2868,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4222:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4199:24:5","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":2870,"nodeType":"ExpressionStatement","src":"4199:24:5"},{"expression":{"id":2875,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2871,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2830,"src":"4233:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2873,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4238:12:5","memberName":"withdrawTime","nodeType":"MemberAccess","referencedDeclaration":3672,"src":"4233:17:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":2874,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4253:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4233:21:5","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":2876,"nodeType":"ExpressionStatement","src":"4233:21:5"},{"expression":{"id":2881,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2877,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2830,"src":"4264:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2879,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4269:5:5","memberName":"stake","nodeType":"MemberAccess","referencedDeclaration":3668,"src":"4264:10:5","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":2880,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4277:1:5","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4264:14:5","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"id":2882,"nodeType":"ExpressionStatement","src":"4264:14:5"},{"eventCall":{"arguments":[{"expression":{"id":2884,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4308:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4312:6:5","memberName":"sender","nodeType":"MemberAccess","src":"4308:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2886,"name":"withdrawAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2825,"src":"4320:15:5","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},{"id":2887,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2837,"src":"4337:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address_payable","typeString":"address payable"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2883,"name":"StakeWithdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3661,"src":"4293:14:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2888,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4293:50:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2889,"nodeType":"EmitStatement","src":"4288:55:5"},{"assignments":[2891,null],"declarations":[{"constant":false,"id":2891,"mutability":"mutable","name":"success","nameLocation":"4359:7:5","nodeType":"VariableDeclaration","scope":2904,"src":"4354:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2890,"name":"bool","nodeType":"ElementaryTypeName","src":"4354:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":2898,"initialValue":{"arguments":[{"hexValue":"","id":2896,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4406:2:5","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":2892,"name":"withdrawAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2825,"src":"4371:15:5","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":2893,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4387:4:5","memberName":"call","nodeType":"MemberAccess","src":"4371:20:5","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":2895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":2894,"name":"stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2837,"src":"4399:5:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"4371:34:5","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":2897,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4371:38:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"4353:56:5"},{"expression":{"arguments":[{"id":2900,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2891,"src":"4427:7:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6661696c656420746f207769746864726177207374616b65","id":2901,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4436:26:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_1dfdcaaacbfb01ed2a280d66b545f88db6fa18ccf502cb079b76e190a3a0227b","typeString":"literal_string \"failed to withdraw stake\""},"value":"failed to withdraw stake"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1dfdcaaacbfb01ed2a280d66b545f88db6fa18ccf502cb079b76e190a3a0227b","typeString":"literal_string \"failed to withdraw stake\""}],"id":2899,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4419:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2902,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4419:44:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2903,"nodeType":"ExpressionStatement","src":"4419:44:5"}]},"documentation":{"id":2823,"nodeType":"StructuredDocumentation","src":"3584:197:5","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":2905,"implemented":true,"kind":"function","modifiers":[],"name":"withdrawStake","nameLocation":"3795:13:5","nodeType":"FunctionDefinition","parameters":{"id":2826,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2825,"mutability":"mutable","name":"withdrawAddress","nameLocation":"3825:15:5","nodeType":"VariableDeclaration","scope":2905,"src":"3809:31:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":2824,"name":"address","nodeType":"ElementaryTypeName","src":"3809:15:5","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"}],"src":"3808:33:5"},"returnParameters":{"id":2827,"nodeType":"ParameterList","parameters":[],"src":"3851:0:5"},"scope":2961,"src":"3786:684:5","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[3725],"body":{"id":2959,"nodeType":"Block","src":"4759:388:5","statements":[{"assignments":[2915],"declarations":[{"constant":false,"id":2915,"mutability":"mutable","name":"info","nameLocation":"4789:4:5","nodeType":"VariableDeclaration","scope":2959,"src":"4769:24:5","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":2914,"nodeType":"UserDefinedTypeName","pathNode":{"id":2913,"name":"DepositInfo","nameLocations":["4769:11:5"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"4769:11:5"},"referencedDeclaration":3673,"src":"4769:11:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"id":2920,"initialValue":{"baseExpression":{"id":2916,"name":"deposits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2565,"src":"4796:8:5","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_DepositInfo_$3673_storage_$","typeString":"mapping(address => struct IStakeManager.DepositInfo storage ref)"}},"id":2919,"indexExpression":{"expression":{"id":2917,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4805:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4809:6:5","memberName":"sender","nodeType":"MemberAccess","src":"4805:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4796:20:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage","typeString":"struct IStakeManager.DepositInfo storage ref"}},"nodeType":"VariableDeclarationStatement","src":"4769:47:5"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2922,"name":"withdrawAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2910,"src":"4834:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":2923,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2915,"src":"4852:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2924,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4857:7:5","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"4852:12:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4834:30:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"576974686472617720616d6f756e7420746f6f206c61726765","id":2926,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4866:27:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_0c1f958f466ebe53086ccef34937001c8a0d9f200320ab480bde36d46a3c6178","typeString":"literal_string \"Withdraw amount too large\""},"value":"Withdraw amount too large"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0c1f958f466ebe53086ccef34937001c8a0d9f200320ab480bde36d46a3c6178","typeString":"literal_string \"Withdraw amount too large\""}],"id":2921,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4826:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2927,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4826:68:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2928,"nodeType":"ExpressionStatement","src":"4826:68:5"},{"expression":{"id":2936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2929,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2915,"src":"4904:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2931,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4909:7:5","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"4904:12:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2932,"name":"info","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2915,"src":"4919:4:5","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo storage pointer"}},"id":2933,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4924:7:5","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":3664,"src":"4919:12:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2934,"name":"withdrawAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2910,"src":"4934:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4919:29:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4904:44:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2937,"nodeType":"ExpressionStatement","src":"4904:44:5"},{"eventCall":{"arguments":[{"expression":{"id":2939,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"4973:3:5","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":2940,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4977:6:5","memberName":"sender","nodeType":"MemberAccess","src":"4973:10:5","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2941,"name":"withdrawAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2908,"src":"4985:15:5","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},{"id":2942,"name":"withdrawAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2910,"src":"5002:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address_payable","typeString":"address payable"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2938,"name":"Withdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3639,"src":"4963:9:5","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4963:54:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2944,"nodeType":"EmitStatement","src":"4958:59:5"},{"assignments":[2946,null],"declarations":[{"constant":false,"id":2946,"mutability":"mutable","name":"success","nameLocation":"5033:7:5","nodeType":"VariableDeclaration","scope":2959,"src":"5028:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2945,"name":"bool","nodeType":"ElementaryTypeName","src":"5028:4:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":2953,"initialValue":{"arguments":[{"hexValue":"","id":2951,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5089:2:5","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":2947,"name":"withdrawAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2908,"src":"5045:15:5","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":2948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5061:4:5","memberName":"call","nodeType":"MemberAccess","src":"5045:20:5","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":2950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":2949,"name":"withdrawAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2910,"src":"5073:14:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"5045:43:5","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":2952,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5045:47:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"5027:65:5"},{"expression":{"arguments":[{"id":2955,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2946,"src":"5110:7:5","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6661696c656420746f207769746864726177","id":2956,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5119:20:5","typeDescriptions":{"typeIdentifier":"t_stringliteral_a34ed1abbfa8a2aea109afd35a4e04f6c52ffb62d3a545e3e3e4f2d894ca1e41","typeString":"literal_string \"failed to withdraw\""},"value":"failed to withdraw"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a34ed1abbfa8a2aea109afd35a4e04f6c52ffb62d3a545e3e3e4f2d894ca1e41","typeString":"literal_string \"failed to withdraw\""}],"id":2954,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"5102:7:5","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2957,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5102:38:5","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2958,"nodeType":"ExpressionStatement","src":"5102:38:5"}]},"documentation":{"id":2906,"nodeType":"StructuredDocumentation","src":"4476:170:5","text":" Withdraw from the deposit.\n @param withdrawAddress - The address to send withdrawn value.\n @param withdrawAmount  - The amount to withdraw."},"functionSelector":"205c2878","id":2960,"implemented":true,"kind":"function","modifiers":[],"name":"withdrawTo","nameLocation":"4660:10:5","nodeType":"FunctionDefinition","parameters":{"id":2911,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2908,"mutability":"mutable","name":"withdrawAddress","nameLocation":"4696:15:5","nodeType":"VariableDeclaration","scope":2960,"src":"4680:31:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":2907,"name":"address","nodeType":"ElementaryTypeName","src":"4680:15:5","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":2910,"mutability":"mutable","name":"withdrawAmount","nameLocation":"4729:14:5","nodeType":"VariableDeclaration","scope":2960,"src":"4721:22:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2909,"name":"uint256","nodeType":"ElementaryTypeName","src":"4721:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4670:79:5"},"returnParameters":{"id":2912,"nodeType":"ParameterList","parameters":[],"src":"4759:0:5"},"scope":2961,"src":"4651:496:5","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":2962,"src":"401:4748:5","usedErrors":[],"usedEvents":[3631,3639,3647,3653,3661]}],"src":"41:5109:5"},"id":5},"@account-abstraction/contracts/core/UserOperationLib.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/core/UserOperationLib.sol","exportedSymbols":{"PackedUserOperation":[3748],"UserOperationLib":[3318],"calldataKeccak":[2397],"min":[2415]},"id":3319,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":2963,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"36:24:6"},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"../interfaces/PackedUserOperation.sol","id":2964,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3319,"sourceUnit":3749,"src":"104:47:6","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/Helpers.sol","file":"./Helpers.sol","id":2967,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3319,"sourceUnit":2416,"src":"152:50:6","symbolAliases":[{"foreign":{"id":2965,"name":"calldataKeccak","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2397,"src":"160:14:6","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":2966,"name":"min","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2415,"src":"176:3:6","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"UserOperationLib","contractDependencies":[],"contractKind":"library","documentation":{"id":2968,"nodeType":"StructuredDocumentation","src":"204:77:6","text":" Utility functions helpful when working with UserOperation structs."},"fullyImplemented":true,"id":3318,"linearizedBaseContracts":[3318],"name":"UserOperationLib","nameLocation":"290:16:6","nodeType":"ContractDefinition","nodes":[{"constant":true,"functionSelector":"b29a8ff4","id":2971,"mutability":"constant","name":"PAYMASTER_VALIDATION_GAS_OFFSET","nameLocation":"338:31:6","nodeType":"VariableDeclaration","scope":3318,"src":"314:60:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2969,"name":"uint256","nodeType":"ElementaryTypeName","src":"314:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3230","id":2970,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"372:2:6","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"visibility":"public"},{"constant":true,"functionSelector":"25093e1b","id":2974,"mutability":"constant","name":"PAYMASTER_POSTOP_GAS_OFFSET","nameLocation":"404:27:6","nodeType":"VariableDeclaration","scope":3318,"src":"380:56:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2972,"name":"uint256","nodeType":"ElementaryTypeName","src":"380:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3336","id":2973,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"434:2:6","typeDescriptions":{"typeIdentifier":"t_rational_36_by_1","typeString":"int_const 36"},"value":"36"},"visibility":"public"},{"constant":true,"functionSelector":"ede31502","id":2977,"mutability":"constant","name":"PAYMASTER_DATA_OFFSET","nameLocation":"466:21:6","nodeType":"VariableDeclaration","scope":3318,"src":"442:50:6","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2975,"name":"uint256","nodeType":"ElementaryTypeName","src":"442:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3532","id":2976,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"490:2:6","typeDescriptions":{"typeIdentifier":"t_rational_52_by_1","typeString":"int_const 52"},"value":"52"},"visibility":"public"},{"body":{"id":2998,"nodeType":"Block","src":"708:221:6","statements":[{"assignments":[2987],"declarations":[{"constant":false,"id":2987,"mutability":"mutable","name":"data","nameLocation":"726:4:6","nodeType":"VariableDeclaration","scope":2998,"src":"718:12:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2986,"name":"address","nodeType":"ElementaryTypeName","src":"718:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":2988,"nodeType":"VariableDeclarationStatement","src":"718:12:6"},{"AST":{"nativeSrc":"832:52:6","nodeType":"YulBlock","src":"832:52:6","statements":[{"nativeSrc":"846:28:6","nodeType":"YulAssignment","src":"846:28:6","value":{"arguments":[{"name":"userOp","nativeSrc":"867:6:6","nodeType":"YulIdentifier","src":"867:6:6"}],"functionName":{"name":"calldataload","nativeSrc":"854:12:6","nodeType":"YulIdentifier","src":"854:12:6"},"nativeSrc":"854:20:6","nodeType":"YulFunctionCall","src":"854:20:6"},"variableNames":[{"name":"data","nativeSrc":"846:4:6","nodeType":"YulIdentifier","src":"846:4:6"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":2987,"isOffset":false,"isSlot":false,"src":"846:4:6","valueSize":1},{"declaration":2981,"isOffset":false,"isSlot":false,"src":"867:6:6","valueSize":1}],"id":2989,"nodeType":"InlineAssembly","src":"823:61:6"},{"expression":{"arguments":[{"arguments":[{"id":2994,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2987,"src":"916:4:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2993,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"908:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":2992,"name":"uint160","nodeType":"ElementaryTypeName","src":"908:7:6","typeDescriptions":{}}},"id":2995,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"908:13:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":2991,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"900:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2990,"name":"address","nodeType":"ElementaryTypeName","src":"900:7:6","typeDescriptions":{}}},"id":2996,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"900:22:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":2985,"id":2997,"nodeType":"Return","src":"893:29:6"}]},"documentation":{"id":2978,"nodeType":"StructuredDocumentation","src":"498:103:6","text":" Get sender from user operation data.\n @param userOp - The user operation data."},"id":2999,"implemented":true,"kind":"function","modifiers":[],"name":"getSender","nameLocation":"615:9:6","nodeType":"FunctionDefinition","parameters":{"id":2982,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2981,"mutability":"mutable","name":"userOp","nameLocation":"663:6:6","nodeType":"VariableDeclaration","scope":2999,"src":"634:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":2980,"nodeType":"UserDefinedTypeName","pathNode":{"id":2979,"name":"PackedUserOperation","nameLocations":["634:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"634:19:6"},"referencedDeclaration":3748,"src":"634:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"624:51:6"},"returnParameters":{"id":2985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2984,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2999,"src":"699:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2983,"name":"address","nodeType":"ElementaryTypeName","src":"699:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"698:9:6"},"scope":3318,"src":"606:323:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3033,"nodeType":"Block","src":"1235:395:6","statements":[{"id":3032,"nodeType":"UncheckedBlock","src":"1245:379:6","statements":[{"assignments":[3009,3011],"declarations":[{"constant":false,"id":3009,"mutability":"mutable","name":"maxPriorityFeePerGas","nameLocation":"1278:20:6","nodeType":"VariableDeclaration","scope":3032,"src":"1270:28:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3008,"name":"uint256","nodeType":"ElementaryTypeName","src":"1270:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3011,"mutability":"mutable","name":"maxFeePerGas","nameLocation":"1308:12:6","nodeType":"VariableDeclaration","scope":3032,"src":"1300:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3010,"name":"uint256","nodeType":"ElementaryTypeName","src":"1300:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3016,"initialValue":{"arguments":[{"expression":{"id":3013,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3003,"src":"1336:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3014,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1343:7:6","memberName":"gasFees","nodeType":"MemberAccess","referencedDeclaration":3743,"src":"1336:14:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3012,"name":"unpackUints","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3129,"src":"1324:11:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256,uint256)"}},"id":3015,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1324:27:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"1269:82:6"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3019,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3017,"name":"maxFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3011,"src":"1369:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3018,"name":"maxPriorityFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3009,"src":"1385:20:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1369:36:6","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3023,"nodeType":"IfStatement","src":"1365:173:6","trueBody":{"id":3022,"nodeType":"Block","src":"1407:131:6","statements":[{"expression":{"id":3020,"name":"maxFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3011,"src":"1511:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3007,"id":3021,"nodeType":"Return","src":"1504:19:6"}]}},{"expression":{"arguments":[{"id":3025,"name":"maxFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3011,"src":"1562:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3026,"name":"maxPriorityFeePerGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3009,"src":"1576:20:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":3027,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"1599:5:6","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3028,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1605:7:6","memberName":"basefee","nodeType":"MemberAccess","src":"1599:13:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1576:36:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3024,"name":"min","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2415,"src":"1558:3:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":3030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1558:55:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3007,"id":3031,"nodeType":"Return","src":"1551:62:6"}]}]},"documentation":{"id":3000,"nodeType":"StructuredDocumentation","src":"935:194:6","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":3034,"implemented":true,"kind":"function","modifiers":[],"name":"gasPrice","nameLocation":"1143:8:6","nodeType":"FunctionDefinition","parameters":{"id":3004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3003,"mutability":"mutable","name":"userOp","nameLocation":"1190:6:6","nodeType":"VariableDeclaration","scope":3034,"src":"1161:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3002,"nodeType":"UserDefinedTypeName","pathNode":{"id":3001,"name":"PackedUserOperation","nameLocations":["1161:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"1161:19:6"},"referencedDeclaration":3748,"src":"1161:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"1151:51:6"},"returnParameters":{"id":3007,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3006,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3034,"src":"1226:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3005,"name":"uint256","nodeType":"ElementaryTypeName","src":"1226:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1225:9:6"},"scope":3318,"src":"1134:496:6","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":3102,"nodeType":"Block","src":"1868:661:6","statements":[{"assignments":[3044],"declarations":[{"constant":false,"id":3044,"mutability":"mutable","name":"sender","nameLocation":"1886:6:6","nodeType":"VariableDeclaration","scope":3102,"src":"1878:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3043,"name":"address","nodeType":"ElementaryTypeName","src":"1878:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":3048,"initialValue":{"arguments":[{"id":3046,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3038,"src":"1905:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}],"id":3045,"name":"getSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2999,"src":"1895:9:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$returns$_t_address_$","typeString":"function (struct PackedUserOperation calldata) pure returns (address)"}},"id":3047,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1895:17:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"1878:34:6"},{"assignments":[3050],"declarations":[{"constant":false,"id":3050,"mutability":"mutable","name":"nonce","nameLocation":"1930:5:6","nodeType":"VariableDeclaration","scope":3102,"src":"1922:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3049,"name":"uint256","nodeType":"ElementaryTypeName","src":"1922:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3053,"initialValue":{"expression":{"id":3051,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3038,"src":"1938:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3052,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1945:5:6","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":3733,"src":"1938:12:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1922:28:6"},{"assignments":[3055],"declarations":[{"constant":false,"id":3055,"mutability":"mutable","name":"hashInitCode","nameLocation":"1968:12:6","nodeType":"VariableDeclaration","scope":3102,"src":"1960:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3054,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1960:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3060,"initialValue":{"arguments":[{"expression":{"id":3057,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3038,"src":"1998:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2005:8:6","memberName":"initCode","nodeType":"MemberAccess","referencedDeclaration":3735,"src":"1998:15:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":3056,"name":"calldataKeccak","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2397,"src":"1983:14:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (bytes calldata) pure returns (bytes32)"}},"id":3059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1983:31:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"1960:54:6"},{"assignments":[3062],"declarations":[{"constant":false,"id":3062,"mutability":"mutable","name":"hashCallData","nameLocation":"2032:12:6","nodeType":"VariableDeclaration","scope":3102,"src":"2024:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3061,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2024:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3067,"initialValue":{"arguments":[{"expression":{"id":3064,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3038,"src":"2062:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2069:8:6","memberName":"callData","nodeType":"MemberAccess","referencedDeclaration":3737,"src":"2062:15:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":3063,"name":"calldataKeccak","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2397,"src":"2047:14:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (bytes calldata) pure returns (bytes32)"}},"id":3066,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2047:31:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2024:54:6"},{"assignments":[3069],"declarations":[{"constant":false,"id":3069,"mutability":"mutable","name":"accountGasLimits","nameLocation":"2096:16:6","nodeType":"VariableDeclaration","scope":3102,"src":"2088:24:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3068,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2088:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3072,"initialValue":{"expression":{"id":3070,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3038,"src":"2115:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2122:16:6","memberName":"accountGasLimits","nodeType":"MemberAccess","referencedDeclaration":3739,"src":"2115:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2088:50:6"},{"assignments":[3074],"declarations":[{"constant":false,"id":3074,"mutability":"mutable","name":"preVerificationGas","nameLocation":"2156:18:6","nodeType":"VariableDeclaration","scope":3102,"src":"2148:26:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3073,"name":"uint256","nodeType":"ElementaryTypeName","src":"2148:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3077,"initialValue":{"expression":{"id":3075,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3038,"src":"2177:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2184:18:6","memberName":"preVerificationGas","nodeType":"MemberAccess","referencedDeclaration":3741,"src":"2177:25:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2148:54:6"},{"assignments":[3079],"declarations":[{"constant":false,"id":3079,"mutability":"mutable","name":"gasFees","nameLocation":"2220:7:6","nodeType":"VariableDeclaration","scope":3102,"src":"2212:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3078,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2212:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3082,"initialValue":{"expression":{"id":3080,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3038,"src":"2230:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2237:7:6","memberName":"gasFees","nodeType":"MemberAccess","referencedDeclaration":3743,"src":"2230:14:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2212:32:6"},{"assignments":[3084],"declarations":[{"constant":false,"id":3084,"mutability":"mutable","name":"hashPaymasterAndData","nameLocation":"2262:20:6","nodeType":"VariableDeclaration","scope":3102,"src":"2254:28:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3083,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2254:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3089,"initialValue":{"arguments":[{"expression":{"id":3086,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3038,"src":"2300:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2307:16:6","memberName":"paymasterAndData","nodeType":"MemberAccess","referencedDeclaration":3745,"src":"2300:23:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":3085,"name":"calldataKeccak","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2397,"src":"2285:14:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes32_$","typeString":"function (bytes calldata) pure returns (bytes32)"}},"id":3088,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2285:39:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2254:70:6"},{"expression":{"arguments":[{"id":3092,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3044,"src":"2366:6:6","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":3093,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3050,"src":"2374:5:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3094,"name":"hashInitCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3055,"src":"2393:12:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3095,"name":"hashCallData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3062,"src":"2407:12:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3096,"name":"accountGasLimits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3069,"src":"2433:16:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3097,"name":"preVerificationGas","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3074,"src":"2451:18:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3098,"name":"gasFees","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3079,"src":"2471:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3099,"name":"hashPaymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3084,"src":"2492:20:6","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":3090,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2342:3:6","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":3091,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2346:6:6","memberName":"encode","nodeType":"MemberAccess","src":"2342:10:6","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":3100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2342:180:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":3042,"id":3101,"nodeType":"Return","src":"2335:187:6"}]},"documentation":{"id":3035,"nodeType":"StructuredDocumentation","src":"1636:119:6","text":" Pack the user operation data into bytes for hashing.\n @param userOp - The user operation data."},"id":3103,"implemented":true,"kind":"function","modifiers":[],"name":"encode","nameLocation":"1769:6:6","nodeType":"FunctionDefinition","parameters":{"id":3039,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3038,"mutability":"mutable","name":"userOp","nameLocation":"1814:6:6","nodeType":"VariableDeclaration","scope":3103,"src":"1785:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3037,"nodeType":"UserDefinedTypeName","pathNode":{"id":3036,"name":"PackedUserOperation","nameLocations":["1785:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"1785:19:6"},"referencedDeclaration":3748,"src":"1785:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"1775:51:6"},"returnParameters":{"id":3042,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3041,"mutability":"mutable","name":"ret","nameLocation":"1863:3:6","nodeType":"VariableDeclaration","scope":3103,"src":"1850:16:6","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3040,"name":"bytes","nodeType":"ElementaryTypeName","src":"1850:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1849:18:6"},"scope":3318,"src":"1760:769:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3128,"nodeType":"Block","src":"2642:76:6","statements":[{"expression":{"components":[{"arguments":[{"arguments":[{"id":3116,"name":"packed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3105,"src":"2676:6:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3115,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2668:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes16_$","typeString":"type(bytes16)"},"typeName":{"id":3114,"name":"bytes16","nodeType":"ElementaryTypeName","src":"2668:7:6","typeDescriptions":{}}},"id":3117,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2668:15:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"}],"id":3113,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2660:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":3112,"name":"uint128","nodeType":"ElementaryTypeName","src":"2660:7:6","typeDescriptions":{}}},"id":3118,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2660:24:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[{"arguments":[{"id":3123,"name":"packed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3105,"src":"2702:6:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3122,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2694:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":3121,"name":"uint256","nodeType":"ElementaryTypeName","src":"2694:7:6","typeDescriptions":{}}},"id":3124,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2694:15:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3120,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2686:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":3119,"name":"uint128","nodeType":"ElementaryTypeName","src":"2686:7:6","typeDescriptions":{}}},"id":3125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2686:24:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"id":3126,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2659:52:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint128_$_t_uint128_$","typeString":"tuple(uint128,uint128)"}},"functionReturnParameters":3111,"id":3127,"nodeType":"Return","src":"2652:59:6"}]},"id":3129,"implemented":true,"kind":"function","modifiers":[],"name":"unpackUints","nameLocation":"2544:11:6","nodeType":"FunctionDefinition","parameters":{"id":3106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3105,"mutability":"mutable","name":"packed","nameLocation":"2573:6:6","nodeType":"VariableDeclaration","scope":3129,"src":"2565:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3104,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2565:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2555:30:6"},"returnParameters":{"id":3111,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3108,"mutability":"mutable","name":"high128","nameLocation":"2617:7:6","nodeType":"VariableDeclaration","scope":3129,"src":"2609:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3107,"name":"uint256","nodeType":"ElementaryTypeName","src":"2609:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3110,"mutability":"mutable","name":"low128","nameLocation":"2634:6:6","nodeType":"VariableDeclaration","scope":3129,"src":"2626:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3109,"name":"uint256","nodeType":"ElementaryTypeName","src":"2626:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2608:33:6"},"scope":3318,"src":"2535:183:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3143,"nodeType":"Block","src":"2851:46:6","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":3138,"name":"packed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3131,"src":"2876:6:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3137,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2868:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":3136,"name":"uint256","nodeType":"ElementaryTypeName","src":"2868:7:6","typeDescriptions":{}}},"id":3139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2868:15:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"313238","id":3140,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2887:3:6","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"2868:22:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3135,"id":3142,"nodeType":"Return","src":"2861:29:6"}]},"id":3144,"implemented":true,"kind":"function","modifiers":[],"name":"unpackHigh128","nameLocation":"2789:13:6","nodeType":"FunctionDefinition","parameters":{"id":3132,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3131,"mutability":"mutable","name":"packed","nameLocation":"2811:6:6","nodeType":"VariableDeclaration","scope":3144,"src":"2803:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3130,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2803:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2802:16:6"},"returnParameters":{"id":3135,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3134,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3144,"src":"2842:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3133,"name":"uint256","nodeType":"ElementaryTypeName","src":"2842:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2841:9:6"},"scope":3318,"src":"2780:117:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3159,"nodeType":"Block","src":"3029:48:6","statements":[{"expression":{"arguments":[{"arguments":[{"id":3155,"name":"packed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3146,"src":"3062:6:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3154,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3054:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":3153,"name":"uint256","nodeType":"ElementaryTypeName","src":"3054:7:6","typeDescriptions":{}}},"id":3156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3054:15:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3152,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3046:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":3151,"name":"uint128","nodeType":"ElementaryTypeName","src":"3046:7:6","typeDescriptions":{}}},"id":3157,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3046:24:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":3150,"id":3158,"nodeType":"Return","src":"3039:31:6"}]},"id":3160,"implemented":true,"kind":"function","modifiers":[],"name":"unpackLow128","nameLocation":"2968:12:6","nodeType":"FunctionDefinition","parameters":{"id":3147,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3146,"mutability":"mutable","name":"packed","nameLocation":"2989:6:6","nodeType":"VariableDeclaration","scope":3160,"src":"2981:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3145,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2981:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2980:16:6"},"returnParameters":{"id":3150,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3149,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3160,"src":"3020:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3148,"name":"uint256","nodeType":"ElementaryTypeName","src":"3020:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3019:9:6"},"scope":3318,"src":"2959:118:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3173,"nodeType":"Block","src":"3192:53:6","statements":[{"expression":{"arguments":[{"expression":{"id":3169,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3163,"src":"3223:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3230:7:6","memberName":"gasFees","nodeType":"MemberAccess","referencedDeclaration":3743,"src":"3223:14:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3168,"name":"unpackHigh128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3144,"src":"3209:13:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256)"}},"id":3171,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3209:29:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3167,"id":3172,"nodeType":"Return","src":"3202:36:6"}]},"id":3174,"implemented":true,"kind":"function","modifiers":[],"name":"unpackMaxPriorityFeePerGas","nameLocation":"3092:26:6","nodeType":"FunctionDefinition","parameters":{"id":3164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3163,"mutability":"mutable","name":"userOp","nameLocation":"3148:6:6","nodeType":"VariableDeclaration","scope":3174,"src":"3119:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3162,"nodeType":"UserDefinedTypeName","pathNode":{"id":3161,"name":"PackedUserOperation","nameLocations":["3119:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"3119:19:6"},"referencedDeclaration":3748,"src":"3119:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"3118:37:6"},"returnParameters":{"id":3167,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3166,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3174,"src":"3183:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3165,"name":"uint256","nodeType":"ElementaryTypeName","src":"3183:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3182:9:6"},"scope":3318,"src":"3083:162:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3187,"nodeType":"Block","src":"3352:52:6","statements":[{"expression":{"arguments":[{"expression":{"id":3183,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3177,"src":"3382:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3389:7:6","memberName":"gasFees","nodeType":"MemberAccess","referencedDeclaration":3743,"src":"3382:14:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3182,"name":"unpackLow128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3160,"src":"3369:12:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256)"}},"id":3185,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3369:28:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3181,"id":3186,"nodeType":"Return","src":"3362:35:6"}]},"id":3188,"implemented":true,"kind":"function","modifiers":[],"name":"unpackMaxFeePerGas","nameLocation":"3260:18:6","nodeType":"FunctionDefinition","parameters":{"id":3178,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3177,"mutability":"mutable","name":"userOp","nameLocation":"3308:6:6","nodeType":"VariableDeclaration","scope":3188,"src":"3279:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3176,"nodeType":"UserDefinedTypeName","pathNode":{"id":3175,"name":"PackedUserOperation","nameLocations":["3279:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"3279:19:6"},"referencedDeclaration":3748,"src":"3279:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"3278:37:6"},"returnParameters":{"id":3181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3180,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3188,"src":"3343:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3179,"name":"uint256","nodeType":"ElementaryTypeName","src":"3343:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3342:9:6"},"scope":3318,"src":"3251:153:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3201,"nodeType":"Block","src":"3519:62:6","statements":[{"expression":{"arguments":[{"expression":{"id":3197,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3191,"src":"3550:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3198,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3557:16:6","memberName":"accountGasLimits","nodeType":"MemberAccess","referencedDeclaration":3739,"src":"3550:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3196,"name":"unpackHigh128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3144,"src":"3536:13:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256)"}},"id":3199,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3536:38:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3195,"id":3200,"nodeType":"Return","src":"3529:45:6"}]},"id":3202,"implemented":true,"kind":"function","modifiers":[],"name":"unpackVerificationGasLimit","nameLocation":"3419:26:6","nodeType":"FunctionDefinition","parameters":{"id":3192,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3191,"mutability":"mutable","name":"userOp","nameLocation":"3475:6:6","nodeType":"VariableDeclaration","scope":3202,"src":"3446:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3190,"nodeType":"UserDefinedTypeName","pathNode":{"id":3189,"name":"PackedUserOperation","nameLocations":["3446:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"3446:19:6"},"referencedDeclaration":3748,"src":"3446:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"3445:37:6"},"returnParameters":{"id":3195,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3194,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3202,"src":"3510:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3193,"name":"uint256","nodeType":"ElementaryTypeName","src":"3510:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3509:9:6"},"scope":3318,"src":"3410:171:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3215,"nodeType":"Block","src":"3688:61:6","statements":[{"expression":{"arguments":[{"expression":{"id":3211,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3205,"src":"3718:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3725:16:6","memberName":"accountGasLimits","nodeType":"MemberAccess","referencedDeclaration":3739,"src":"3718:23:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3210,"name":"unpackLow128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3160,"src":"3705:12:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256)"}},"id":3213,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3705:37:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3209,"id":3214,"nodeType":"Return","src":"3698:44:6"}]},"id":3216,"implemented":true,"kind":"function","modifiers":[],"name":"unpackCallGasLimit","nameLocation":"3596:18:6","nodeType":"FunctionDefinition","parameters":{"id":3206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3205,"mutability":"mutable","name":"userOp","nameLocation":"3644:6:6","nodeType":"VariableDeclaration","scope":3216,"src":"3615:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3204,"nodeType":"UserDefinedTypeName","pathNode":{"id":3203,"name":"PackedUserOperation","nameLocations":["3615:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"3615:19:6"},"referencedDeclaration":3748,"src":"3615:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"3614:37:6"},"returnParameters":{"id":3209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3208,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3216,"src":"3679:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3207,"name":"uint256","nodeType":"ElementaryTypeName","src":"3679:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3678:9:6"},"scope":3318,"src":"3587:162:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3236,"nodeType":"Block","src":"3873:128:6","statements":[{"expression":{"arguments":[{"arguments":[{"baseExpression":{"expression":{"id":3228,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3219,"src":"3906:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3913:16:6","memberName":"paymasterAndData","nodeType":"MemberAccess","referencedDeclaration":3745,"src":"3906:23:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":3231,"name":"PAYMASTER_POSTOP_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2974,"src":"3964:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"3906:86:6","startExpression":{"id":3230,"name":"PAYMASTER_VALIDATION_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2971,"src":"3930:31:6","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":3227,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3898:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes16_$","typeString":"type(bytes16)"},"typeName":{"id":3226,"name":"bytes16","nodeType":"ElementaryTypeName","src":"3898:7:6","typeDescriptions":{}}},"id":3233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3898:95:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"}],"id":3225,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3890:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":3224,"name":"uint128","nodeType":"ElementaryTypeName","src":"3890:7:6","typeDescriptions":{}}},"id":3234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3890:104:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":3223,"id":3235,"nodeType":"Return","src":"3883:111:6"}]},"id":3237,"implemented":true,"kind":"function","modifiers":[],"name":"unpackPaymasterVerificationGasLimit","nameLocation":"3764:35:6","nodeType":"FunctionDefinition","parameters":{"id":3220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3219,"mutability":"mutable","name":"userOp","nameLocation":"3829:6:6","nodeType":"VariableDeclaration","scope":3237,"src":"3800:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3218,"nodeType":"UserDefinedTypeName","pathNode":{"id":3217,"name":"PackedUserOperation","nameLocations":["3800:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"3800:19:6"},"referencedDeclaration":3748,"src":"3800:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"3799:37:6"},"returnParameters":{"id":3223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3222,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3237,"src":"3864:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3221,"name":"uint256","nodeType":"ElementaryTypeName","src":"3864:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3863:9:6"},"scope":3318,"src":"3755:246:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3257,"nodeType":"Block","src":"4110:118:6","statements":[{"expression":{"arguments":[{"arguments":[{"baseExpression":{"expression":{"id":3249,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3240,"src":"4143:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":3250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4150:16:6","memberName":"paymasterAndData","nodeType":"MemberAccess","referencedDeclaration":3745,"src":"4143:23:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":3252,"name":"PAYMASTER_DATA_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2977,"src":"4197:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3253,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"4143:76:6","startExpression":{"id":3251,"name":"PAYMASTER_POSTOP_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2974,"src":"4167:27:6","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":3248,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4135:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes16_$","typeString":"type(bytes16)"},"typeName":{"id":3247,"name":"bytes16","nodeType":"ElementaryTypeName","src":"4135:7:6","typeDescriptions":{}}},"id":3254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4135:85:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"}],"id":3246,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4127:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":3245,"name":"uint128","nodeType":"ElementaryTypeName","src":"4127:7:6","typeDescriptions":{}}},"id":3255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4127:94:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":3244,"id":3256,"nodeType":"Return","src":"4120:101:6"}]},"id":3258,"implemented":true,"kind":"function","modifiers":[],"name":"unpackPostOpGasLimit","nameLocation":"4016:20:6","nodeType":"FunctionDefinition","parameters":{"id":3241,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3240,"mutability":"mutable","name":"userOp","nameLocation":"4066:6:6","nodeType":"VariableDeclaration","scope":3258,"src":"4037:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3239,"nodeType":"UserDefinedTypeName","pathNode":{"id":3238,"name":"PackedUserOperation","nameLocations":["4037:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"4037:19:6"},"referencedDeclaration":3748,"src":"4037:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"4036:37:6"},"returnParameters":{"id":3244,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3243,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3258,"src":"4101:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3242,"name":"uint256","nodeType":"ElementaryTypeName","src":"4101:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4100:9:6"},"scope":3318,"src":"4007:221:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3300,"nodeType":"Block","src":"4412:329:6","statements":[{"expression":{"components":[{"arguments":[{"arguments":[{"baseExpression":{"id":3273,"name":"paymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3260,"src":"4459:16:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":3274,"name":"PAYMASTER_VALIDATION_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2971,"src":"4478:31:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"4459:51:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"id":3272,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4451:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":3271,"name":"bytes20","nodeType":"ElementaryTypeName","src":"4451:7:6","typeDescriptions":{}}},"id":3276,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4451:60:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"}],"id":3270,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4443:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3269,"name":"address","nodeType":"ElementaryTypeName","src":"4443:7:6","typeDescriptions":{}}},"id":3277,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4443:69:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"arguments":[{"baseExpression":{"id":3282,"name":"paymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3260,"src":"4542:16:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":3284,"name":"PAYMASTER_POSTOP_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2974,"src":"4593:27:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"4542:79:6","startExpression":{"id":3283,"name":"PAYMASTER_VALIDATION_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2971,"src":"4559:31:6","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":3281,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4534:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes16_$","typeString":"type(bytes16)"},"typeName":{"id":3280,"name":"bytes16","nodeType":"ElementaryTypeName","src":"4534:7:6","typeDescriptions":{}}},"id":3286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4534:88:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"}],"id":3279,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4526:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":3278,"name":"uint128","nodeType":"ElementaryTypeName","src":"4526:7:6","typeDescriptions":{}}},"id":3287,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4526:97:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[{"arguments":[{"baseExpression":{"id":3292,"name":"paymasterAndData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3260,"src":"4653:16:6","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":3294,"name":"PAYMASTER_DATA_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2977,"src":"4700:21:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"4653:69:6","startExpression":{"id":3293,"name":"PAYMASTER_POSTOP_GAS_OFFSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2974,"src":"4670:27:6","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":3291,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4645:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes16_$","typeString":"type(bytes16)"},"typeName":{"id":3290,"name":"bytes16","nodeType":"ElementaryTypeName","src":"4645:7:6","typeDescriptions":{}}},"id":3296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4645:78:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"}],"id":3289,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4637:7:6","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":3288,"name":"uint128","nodeType":"ElementaryTypeName","src":"4637:7:6","typeDescriptions":{}}},"id":3297,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4637:87:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"id":3298,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4429:305:6","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_uint128_$_t_uint128_$","typeString":"tuple(address,uint128,uint128)"}},"functionReturnParameters":3268,"id":3299,"nodeType":"Return","src":"4422:312:6"}]},"id":3301,"implemented":true,"kind":"function","modifiers":[],"name":"unpackPaymasterStaticFields","nameLocation":"4243:27:6","nodeType":"FunctionDefinition","parameters":{"id":3261,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3260,"mutability":"mutable","name":"paymasterAndData","nameLocation":"4295:16:6","nodeType":"VariableDeclaration","scope":3301,"src":"4280:31:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3259,"name":"bytes","nodeType":"ElementaryTypeName","src":"4280:5:6","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4270:47:6"},"returnParameters":{"id":3268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3263,"mutability":"mutable","name":"paymaster","nameLocation":"4349:9:6","nodeType":"VariableDeclaration","scope":3301,"src":"4341:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3262,"name":"address","nodeType":"ElementaryTypeName","src":"4341:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3265,"mutability":"mutable","name":"validationGasLimit","nameLocation":"4368:18:6","nodeType":"VariableDeclaration","scope":3301,"src":"4360:26:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3264,"name":"uint256","nodeType":"ElementaryTypeName","src":"4360:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3267,"mutability":"mutable","name":"postOpGasLimit","nameLocation":"4396:14:6","nodeType":"VariableDeclaration","scope":3301,"src":"4388:22:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3266,"name":"uint256","nodeType":"ElementaryTypeName","src":"4388:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4340:71:6"},"scope":3318,"src":"4234:507:6","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3316,"nodeType":"Block","src":"4945:49:6","statements":[{"expression":{"arguments":[{"arguments":[{"id":3312,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3305,"src":"4979:6:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}],"id":3311,"name":"encode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3103,"src":"4972:6:6","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (struct PackedUserOperation calldata) pure returns (bytes memory)"}},"id":3313,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4972:14:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3310,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4962:9:6","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4962:25:6","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3309,"id":3315,"nodeType":"Return","src":"4955:32:6"}]},"documentation":{"id":3302,"nodeType":"StructuredDocumentation","src":"4747:96:6","text":" Hash the user operation data.\n @param userOp - The user operation data."},"id":3317,"implemented":true,"kind":"function","modifiers":[],"name":"hash","nameLocation":"4857:4:6","nodeType":"FunctionDefinition","parameters":{"id":3306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3305,"mutability":"mutable","name":"userOp","nameLocation":"4900:6:6","nodeType":"VariableDeclaration","scope":3317,"src":"4871:35:6","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3304,"nodeType":"UserDefinedTypeName","pathNode":{"id":3303,"name":"PackedUserOperation","nameLocations":["4871:19:6"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"4871:19:6"},"referencedDeclaration":3748,"src":"4871:19:6","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"4861:51:6"},"returnParameters":{"id":3309,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3308,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3317,"src":"4936:7:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3307,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4936:7:6","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4935:9:6"},"scope":3318,"src":"4848:146:6","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":3319,"src":"282:4714:6","usedErrors":[],"usedEvents":[]}],"src":"36:4961:6"},"id":6},"@account-abstraction/contracts/interfaces/IAccount.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/IAccount.sol","exportedSymbols":{"IAccount":[3335],"PackedUserOperation":[3748]},"id":3336,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":3320,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"36:24:7"},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"./PackedUserOperation.sol","id":3321,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3336,"sourceUnit":3749,"src":"62:35:7","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IAccount","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":3335,"linearizedBaseContracts":[3335],"name":"IAccount","nameLocation":"109:8:7","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":3322,"nodeType":"StructuredDocumentation","src":"124:2290:7","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":3334,"implemented":false,"kind":"function","modifiers":[],"name":"validateUserOp","nameLocation":"2428:14:7","nodeType":"FunctionDefinition","parameters":{"id":3330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3325,"mutability":"mutable","name":"userOp","nameLocation":"2481:6:7","nodeType":"VariableDeclaration","scope":3334,"src":"2452:35:7","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3324,"nodeType":"UserDefinedTypeName","pathNode":{"id":3323,"name":"PackedUserOperation","nameLocations":["2452:19:7"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"2452:19:7"},"referencedDeclaration":3748,"src":"2452:19:7","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":3327,"mutability":"mutable","name":"userOpHash","nameLocation":"2505:10:7","nodeType":"VariableDeclaration","scope":3334,"src":"2497:18:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3326,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2497:7:7","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3329,"mutability":"mutable","name":"missingAccountFunds","nameLocation":"2533:19:7","nodeType":"VariableDeclaration","scope":3334,"src":"2525:27:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3328,"name":"uint256","nodeType":"ElementaryTypeName","src":"2525:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2442:116:7"},"returnParameters":{"id":3333,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3332,"mutability":"mutable","name":"validationData","nameLocation":"2585:14:7","nodeType":"VariableDeclaration","scope":3334,"src":"2577:22:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3331,"name":"uint256","nodeType":"ElementaryTypeName","src":"2577:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2576:24:7"},"scope":3335,"src":"2419:182:7","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":3336,"src":"99:2504:7","usedErrors":[],"usedEvents":[]}],"src":"36:2568:7"},"id":7},"@account-abstraction/contracts/interfaces/IAccountExecute.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/IAccountExecute.sol","exportedSymbols":{"IAccountExecute":[3348],"PackedUserOperation":[3748]},"id":3349,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":3337,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"36:24:8"},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"./PackedUserOperation.sol","id":3338,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3349,"sourceUnit":3749,"src":"62:35:8","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IAccountExecute","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":3348,"linearizedBaseContracts":[3348],"name":"IAccountExecute","nameLocation":"109:15:8","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":3339,"nodeType":"StructuredDocumentation","src":"131:460:8","text":" Account may implement this execute method.\n passing this methodSig at the beginning of callData will cause the entryPoint to pass the full UserOp (and hash)\n to the account.\n The account should skip the methodSig, and use the callData (and optionally, other UserOp fields)\n @param userOp              - The operation that was just validated.\n @param userOpHash          - Hash of the user's request data."},"functionSelector":"8dd7712f","id":3347,"implemented":false,"kind":"function","modifiers":[],"name":"executeUserOp","nameLocation":"605:13:8","nodeType":"FunctionDefinition","parameters":{"id":3345,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3342,"mutability":"mutable","name":"userOp","nameLocation":"657:6:8","nodeType":"VariableDeclaration","scope":3347,"src":"628:35:8","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3341,"nodeType":"UserDefinedTypeName","pathNode":{"id":3340,"name":"PackedUserOperation","nameLocations":["628:19:8"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"628:19:8"},"referencedDeclaration":3748,"src":"628:19:8","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":3344,"mutability":"mutable","name":"userOpHash","nameLocation":"681:10:8","nodeType":"VariableDeclaration","scope":3347,"src":"673:18:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3343,"name":"bytes32","nodeType":"ElementaryTypeName","src":"673:7:8","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"618:79:8"},"returnParameters":{"id":3346,"nodeType":"ParameterList","parameters":[],"src":"706:0:8"},"scope":3348,"src":"596:111:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":3349,"src":"99:610:8","usedErrors":[],"usedEvents":[]}],"src":"36:674:8"},"id":8},"@account-abstraction/contracts/interfaces/IAggregator.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/IAggregator.sol","exportedSymbols":{"IAggregator":[3382],"PackedUserOperation":[3748]},"id":3383,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":3350,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"36:24:9"},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"./PackedUserOperation.sol","id":3351,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3383,"sourceUnit":3749,"src":"62:35:9","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IAggregator","contractDependencies":[],"contractKind":"interface","documentation":{"id":3352,"nodeType":"StructuredDocumentation","src":"99:43:9","text":" Aggregated Signatures validator."},"fullyImplemented":false,"id":3382,"linearizedBaseContracts":[3382],"name":"IAggregator","nameLocation":"153:11:9","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":3353,"nodeType":"StructuredDocumentation","src":"171:269:9","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":3362,"implemented":false,"kind":"function","modifiers":[],"name":"validateSignatures","nameLocation":"454:18:9","nodeType":"FunctionDefinition","parameters":{"id":3360,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3357,"mutability":"mutable","name":"userOps","nameLocation":"513:7:9","nodeType":"VariableDeclaration","scope":3362,"src":"482:38:9","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":3355,"nodeType":"UserDefinedTypeName","pathNode":{"id":3354,"name":"PackedUserOperation","nameLocations":["482:19:9"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"482:19:9"},"referencedDeclaration":3748,"src":"482:19:9","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"id":3356,"nodeType":"ArrayTypeName","src":"482:21:9","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"},{"constant":false,"id":3359,"mutability":"mutable","name":"signature","nameLocation":"545:9:9","nodeType":"VariableDeclaration","scope":3362,"src":"530:24:9","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3358,"name":"bytes","nodeType":"ElementaryTypeName","src":"530:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"472:88:9"},"returnParameters":{"id":3361,"nodeType":"ParameterList","parameters":[],"src":"574:0:9"},"scope":3382,"src":"445:130:9","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3363,"nodeType":"StructuredDocumentation","src":"581:610:9","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":3371,"implemented":false,"kind":"function","modifiers":[],"name":"validateUserOpSignature","nameLocation":"1205:23:9","nodeType":"FunctionDefinition","parameters":{"id":3367,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3366,"mutability":"mutable","name":"userOp","nameLocation":"1267:6:9","nodeType":"VariableDeclaration","scope":3371,"src":"1238:35:9","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3365,"nodeType":"UserDefinedTypeName","pathNode":{"id":3364,"name":"PackedUserOperation","nameLocations":["1238:19:9"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"1238:19:9"},"referencedDeclaration":3748,"src":"1238:19:9","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"1228:51:9"},"returnParameters":{"id":3370,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3369,"mutability":"mutable","name":"sigForUserOp","nameLocation":"1316:12:9","nodeType":"VariableDeclaration","scope":3371,"src":"1303:25:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3368,"name":"bytes","nodeType":"ElementaryTypeName","src":"1303:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1302:27:9"},"scope":3382,"src":"1196:134:9","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3372,"nodeType":"StructuredDocumentation","src":"1336:387:9","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":3381,"implemented":false,"kind":"function","modifiers":[],"name":"aggregateSignatures","nameLocation":"1737:19:9","nodeType":"FunctionDefinition","parameters":{"id":3377,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3376,"mutability":"mutable","name":"userOps","nameLocation":"1797:7:9","nodeType":"VariableDeclaration","scope":3381,"src":"1766:38:9","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":3374,"nodeType":"UserDefinedTypeName","pathNode":{"id":3373,"name":"PackedUserOperation","nameLocations":["1766:19:9"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"1766:19:9"},"referencedDeclaration":3748,"src":"1766:19:9","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"id":3375,"nodeType":"ArrayTypeName","src":"1766:21:9","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"}],"src":"1756:54:9"},"returnParameters":{"id":3380,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3379,"mutability":"mutable","name":"aggregatedSignature","nameLocation":"1847:19:9","nodeType":"VariableDeclaration","scope":3381,"src":"1834:32:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3378,"name":"bytes","nodeType":"ElementaryTypeName","src":"1834:5:9","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1833:34:9"},"scope":3382,"src":"1728:140:9","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":3383,"src":"143:1727:9","usedErrors":[],"usedEvents":[]}],"src":"36:1835:9"},"id":9},"@account-abstraction/contracts/interfaces/IEntryPoint.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","exportedSymbols":{"IAggregator":[3382],"IEntryPoint":[3566],"INonceManager":[3585],"IStakeManager":[3726],"PackedUserOperation":[3748]},"id":3567,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":3384,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"163:24:10"},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"./PackedUserOperation.sol","id":3385,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3567,"sourceUnit":3749,"src":"311:35:10","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IStakeManager.sol","file":"./IStakeManager.sol","id":3386,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3567,"sourceUnit":3727,"src":"347:29:10","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IAggregator.sol","file":"./IAggregator.sol","id":3387,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3567,"sourceUnit":3383,"src":"377:27:10","symbolAliases":[],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/INonceManager.sol","file":"./INonceManager.sol","id":3388,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3567,"sourceUnit":3586,"src":"405:29:10","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":3389,"name":"IStakeManager","nameLocations":["461:13:10"],"nodeType":"IdentifierPath","referencedDeclaration":3726,"src":"461:13:10"},"id":3390,"nodeType":"InheritanceSpecifier","src":"461:13:10"},{"baseName":{"id":3391,"name":"INonceManager","nameLocations":["476:13:10"],"nodeType":"IdentifierPath","referencedDeclaration":3585,"src":"476:13:10"},"id":3392,"nodeType":"InheritanceSpecifier","src":"476:13:10"}],"canonicalName":"IEntryPoint","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":3566,"linearizedBaseContracts":[3566,3585,3726],"name":"IEntryPoint","nameLocation":"446:11:10","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"eventSelector":"49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f","id":3408,"name":"UserOperationEvent","nameLocation":"1255:18:10","nodeType":"EventDefinition","parameters":{"id":3407,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3394,"indexed":true,"mutability":"mutable","name":"userOpHash","nameLocation":"1299:10:10","nodeType":"VariableDeclaration","scope":3408,"src":"1283:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3393,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1283:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3396,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1335:6:10","nodeType":"VariableDeclaration","scope":3408,"src":"1319:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3395,"name":"address","nodeType":"ElementaryTypeName","src":"1319:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3398,"indexed":true,"mutability":"mutable","name":"paymaster","nameLocation":"1367:9:10","nodeType":"VariableDeclaration","scope":3408,"src":"1351:25:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3397,"name":"address","nodeType":"ElementaryTypeName","src":"1351:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3400,"indexed":false,"mutability":"mutable","name":"nonce","nameLocation":"1394:5:10","nodeType":"VariableDeclaration","scope":3408,"src":"1386:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3399,"name":"uint256","nodeType":"ElementaryTypeName","src":"1386:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3402,"indexed":false,"mutability":"mutable","name":"success","nameLocation":"1414:7:10","nodeType":"VariableDeclaration","scope":3408,"src":"1409:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3401,"name":"bool","nodeType":"ElementaryTypeName","src":"1409:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3404,"indexed":false,"mutability":"mutable","name":"actualGasCost","nameLocation":"1439:13:10","nodeType":"VariableDeclaration","scope":3408,"src":"1431:21:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3403,"name":"uint256","nodeType":"ElementaryTypeName","src":"1431:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3406,"indexed":false,"mutability":"mutable","name":"actualGasUsed","nameLocation":"1470:13:10","nodeType":"VariableDeclaration","scope":3408,"src":"1462:21:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3405,"name":"uint256","nodeType":"ElementaryTypeName","src":"1462:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1273:216:10"},"src":"1249:241:10"},{"anonymous":false,"documentation":{"id":3409,"nodeType":"StructuredDocumentation","src":"1496:349:10","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":3419,"name":"AccountDeployed","nameLocation":"1856:15:10","nodeType":"EventDefinition","parameters":{"id":3418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3411,"indexed":true,"mutability":"mutable","name":"userOpHash","nameLocation":"1897:10:10","nodeType":"VariableDeclaration","scope":3419,"src":"1881:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3410,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1881:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3413,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1933:6:10","nodeType":"VariableDeclaration","scope":3419,"src":"1917:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3412,"name":"address","nodeType":"ElementaryTypeName","src":"1917:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3415,"indexed":false,"mutability":"mutable","name":"factory","nameLocation":"1957:7:10","nodeType":"VariableDeclaration","scope":3419,"src":"1949:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3414,"name":"address","nodeType":"ElementaryTypeName","src":"1949:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3417,"indexed":false,"mutability":"mutable","name":"paymaster","nameLocation":"1982:9:10","nodeType":"VariableDeclaration","scope":3419,"src":"1974:17:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3416,"name":"address","nodeType":"ElementaryTypeName","src":"1974:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1871:126:10"},"src":"1850:148:10"},{"anonymous":false,"documentation":{"id":3420,"nodeType":"StructuredDocumentation","src":"2004:361:10","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":3430,"name":"UserOperationRevertReason","nameLocation":"2376:25:10","nodeType":"EventDefinition","parameters":{"id":3429,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3422,"indexed":true,"mutability":"mutable","name":"userOpHash","nameLocation":"2427:10:10","nodeType":"VariableDeclaration","scope":3430,"src":"2411:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3421,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2411:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3424,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"2463:6:10","nodeType":"VariableDeclaration","scope":3430,"src":"2447:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3423,"name":"address","nodeType":"ElementaryTypeName","src":"2447:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3426,"indexed":false,"mutability":"mutable","name":"nonce","nameLocation":"2487:5:10","nodeType":"VariableDeclaration","scope":3430,"src":"2479:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3425,"name":"uint256","nodeType":"ElementaryTypeName","src":"2479:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3428,"indexed":false,"mutability":"mutable","name":"revertReason","nameLocation":"2508:12:10","nodeType":"VariableDeclaration","scope":3430,"src":"2502:18:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3427,"name":"bytes","nodeType":"ElementaryTypeName","src":"2502:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2401:125:10"},"src":"2370:157:10"},{"anonymous":false,"documentation":{"id":3431,"nodeType":"StructuredDocumentation","src":"2533:376:10","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":3441,"name":"PostOpRevertReason","nameLocation":"2920:18:10","nodeType":"EventDefinition","parameters":{"id":3440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3433,"indexed":true,"mutability":"mutable","name":"userOpHash","nameLocation":"2964:10:10","nodeType":"VariableDeclaration","scope":3441,"src":"2948:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3432,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2948:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3435,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"3000:6:10","nodeType":"VariableDeclaration","scope":3441,"src":"2984:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3434,"name":"address","nodeType":"ElementaryTypeName","src":"2984:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3437,"indexed":false,"mutability":"mutable","name":"nonce","nameLocation":"3024:5:10","nodeType":"VariableDeclaration","scope":3441,"src":"3016:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3436,"name":"uint256","nodeType":"ElementaryTypeName","src":"3016:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3439,"indexed":false,"mutability":"mutable","name":"revertReason","nameLocation":"3045:12:10","nodeType":"VariableDeclaration","scope":3441,"src":"3039:18:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3438,"name":"bytes","nodeType":"ElementaryTypeName","src":"3039:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2938:125:10"},"src":"2914:150:10"},{"anonymous":false,"documentation":{"id":3442,"nodeType":"StructuredDocumentation","src":"3070:284:10","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":3450,"name":"UserOperationPrefundTooLow","nameLocation":"3365:26:10","nodeType":"EventDefinition","parameters":{"id":3449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3444,"indexed":true,"mutability":"mutable","name":"userOpHash","nameLocation":"3417:10:10","nodeType":"VariableDeclaration","scope":3450,"src":"3401:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3443,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3401:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3446,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"3453:6:10","nodeType":"VariableDeclaration","scope":3450,"src":"3437:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3445,"name":"address","nodeType":"ElementaryTypeName","src":"3437:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3448,"indexed":false,"mutability":"mutable","name":"nonce","nameLocation":"3477:5:10","nodeType":"VariableDeclaration","scope":3450,"src":"3469:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3447,"name":"uint256","nodeType":"ElementaryTypeName","src":"3469:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3391:97:10"},"src":"3359:130:10"},{"anonymous":false,"documentation":{"id":3451,"nodeType":"StructuredDocumentation","src":"3495:158:10","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":3453,"name":"BeforeExecution","nameLocation":"3664:15:10","nodeType":"EventDefinition","parameters":{"id":3452,"nodeType":"ParameterList","parameters":[],"src":"3679:2:10"},"src":"3658:24:10"},{"anonymous":false,"documentation":{"id":3454,"nodeType":"StructuredDocumentation","src":"3688:187:10","text":" Signature aggregator used by the following UserOperationEvents within this bundle.\n @param aggregator - The aggregator used for the following UserOperationEvents."},"eventSelector":"575ff3acadd5ab348fe1855e217e0f3678f8d767d7494c9f9fefbee2e17cca4d","id":3458,"name":"SignatureAggregatorChanged","nameLocation":"3886:26:10","nodeType":"EventDefinition","parameters":{"id":3457,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3456,"indexed":true,"mutability":"mutable","name":"aggregator","nameLocation":"3929:10:10","nodeType":"VariableDeclaration","scope":3458,"src":"3913:26:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3455,"name":"address","nodeType":"ElementaryTypeName","src":"3913:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3912:28:10"},"src":"3880:61:10"},{"documentation":{"id":3459,"nodeType":"StructuredDocumentation","src":"3947:776:10","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":3465,"name":"FailedOp","nameLocation":"4734:8:10","nodeType":"ErrorDefinition","parameters":{"id":3464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3461,"mutability":"mutable","name":"opIndex","nameLocation":"4751:7:10","nodeType":"VariableDeclaration","scope":3465,"src":"4743:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3460,"name":"uint256","nodeType":"ElementaryTypeName","src":"4743:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3463,"mutability":"mutable","name":"reason","nameLocation":"4767:6:10","nodeType":"VariableDeclaration","scope":3465,"src":"4760:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3462,"name":"string","nodeType":"ElementaryTypeName","src":"4760:6:10","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4742:32:10"},"src":"4728:47:10"},{"documentation":{"id":3466,"nodeType":"StructuredDocumentation","src":"4781:405:10","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":3474,"name":"FailedOpWithRevert","nameLocation":"5197:18:10","nodeType":"ErrorDefinition","parameters":{"id":3473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3468,"mutability":"mutable","name":"opIndex","nameLocation":"5224:7:10","nodeType":"VariableDeclaration","scope":3474,"src":"5216:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3467,"name":"uint256","nodeType":"ElementaryTypeName","src":"5216:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3470,"mutability":"mutable","name":"reason","nameLocation":"5240:6:10","nodeType":"VariableDeclaration","scope":3474,"src":"5233:13:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3469,"name":"string","nodeType":"ElementaryTypeName","src":"5233:6:10","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3472,"mutability":"mutable","name":"inner","nameLocation":"5254:5:10","nodeType":"VariableDeclaration","scope":3474,"src":"5248:11:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3471,"name":"bytes","nodeType":"ElementaryTypeName","src":"5248:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5215:45:10"},"src":"5191:70:10"},{"errorSelector":"ad7954bc","id":3478,"name":"PostOpReverted","nameLocation":"5273:14:10","nodeType":"ErrorDefinition","parameters":{"id":3477,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3476,"mutability":"mutable","name":"returnData","nameLocation":"5294:10:10","nodeType":"VariableDeclaration","scope":3478,"src":"5288:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3475,"name":"bytes","nodeType":"ElementaryTypeName","src":"5288:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5287:18:10"},"src":"5267:39:10"},{"documentation":{"id":3479,"nodeType":"StructuredDocumentation","src":"5312:190:10","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":3483,"name":"SignatureValidationFailed","nameLocation":"5513:25:10","nodeType":"ErrorDefinition","parameters":{"id":3482,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3481,"mutability":"mutable","name":"aggregator","nameLocation":"5547:10:10","nodeType":"VariableDeclaration","scope":3483,"src":"5539:18:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3480,"name":"address","nodeType":"ElementaryTypeName","src":"5539:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5538:20:10"},"src":"5507:52:10"},{"errorSelector":"6ca7b806","id":3487,"name":"SenderAddressResult","nameLocation":"5612:19:10","nodeType":"ErrorDefinition","parameters":{"id":3486,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3485,"mutability":"mutable","name":"sender","nameLocation":"5640:6:10","nodeType":"VariableDeclaration","scope":3487,"src":"5632:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3484,"name":"address","nodeType":"ElementaryTypeName","src":"5632:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5631:16:10"},"src":"5606:42:10"},{"canonicalName":"IEntryPoint.UserOpsPerAggregator","id":3497,"members":[{"constant":false,"id":3491,"mutability":"mutable","name":"userOps","nameLocation":"5754:7:10","nodeType":"VariableDeclaration","scope":3497,"src":"5732:29:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":3489,"nodeType":"UserDefinedTypeName","pathNode":{"id":3488,"name":"PackedUserOperation","nameLocations":["5732:19:10"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"5732:19:10"},"referencedDeclaration":3748,"src":"5732:19:10","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"id":3490,"nodeType":"ArrayTypeName","src":"5732:21:10","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"},{"constant":false,"id":3494,"mutability":"mutable","name":"aggregator","nameLocation":"5813:10:10","nodeType":"VariableDeclaration","scope":3497,"src":"5801:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"},"typeName":{"id":3493,"nodeType":"UserDefinedTypeName","pathNode":{"id":3492,"name":"IAggregator","nameLocations":["5801:11:10"],"nodeType":"IdentifierPath","referencedDeclaration":3382,"src":"5801:11:10"},"referencedDeclaration":3382,"src":"5801:11:10","typeDescriptions":{"typeIdentifier":"t_contract$_IAggregator_$3382","typeString":"contract IAggregator"}},"visibility":"internal"},{"constant":false,"id":3496,"mutability":"mutable","name":"signature","nameLocation":"5871:9:10","nodeType":"VariableDeclaration","scope":3497,"src":"5865:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":3495,"name":"bytes","nodeType":"ElementaryTypeName","src":"5865:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"UserOpsPerAggregator","nameLocation":"5701:20:10","nodeType":"StructDefinition","scope":3566,"src":"5694:193:10","visibility":"public"},{"documentation":{"id":3498,"nodeType":"StructuredDocumentation","src":"5893:383:10","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":3507,"implemented":false,"kind":"function","modifiers":[],"name":"handleOps","nameLocation":"6290:9:10","nodeType":"FunctionDefinition","parameters":{"id":3505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3502,"mutability":"mutable","name":"ops","nameLocation":"6340:3:10","nodeType":"VariableDeclaration","scope":3507,"src":"6309:34:10","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","typeString":"struct PackedUserOperation[]"},"typeName":{"baseType":{"id":3500,"nodeType":"UserDefinedTypeName","pathNode":{"id":3499,"name":"PackedUserOperation","nameLocations":["6309:19:10"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"6309:19:10"},"referencedDeclaration":3748,"src":"6309:19:10","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"id":3501,"nodeType":"ArrayTypeName","src":"6309:21:10","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_PackedUserOperation_$3748_storage_$dyn_storage_ptr","typeString":"struct PackedUserOperation[]"}},"visibility":"internal"},{"constant":false,"id":3504,"mutability":"mutable","name":"beneficiary","nameLocation":"6369:11:10","nodeType":"VariableDeclaration","scope":3507,"src":"6353:27:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":3503,"name":"address","nodeType":"ElementaryTypeName","src":"6353:15:10","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"}],"src":"6299:87:10"},"returnParameters":{"id":3506,"nodeType":"ParameterList","parameters":[],"src":"6395:0:10"},"scope":3566,"src":"6281:115:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3508,"nodeType":"StructuredDocumentation","src":"6402:260:10","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":3517,"implemented":false,"kind":"function","modifiers":[],"name":"handleAggregatedOps","nameLocation":"6676:19:10","nodeType":"FunctionDefinition","parameters":{"id":3515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3512,"mutability":"mutable","name":"opsPerAggregator","nameLocation":"6737:16:10","nodeType":"VariableDeclaration","scope":3517,"src":"6705:48:10","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator[]"},"typeName":{"baseType":{"id":3510,"nodeType":"UserDefinedTypeName","pathNode":{"id":3509,"name":"UserOpsPerAggregator","nameLocations":["6705:20:10"],"nodeType":"IdentifierPath","referencedDeclaration":3497,"src":"6705:20:10"},"referencedDeclaration":3497,"src":"6705:20:10","typeDescriptions":{"typeIdentifier":"t_struct$_UserOpsPerAggregator_$3497_storage_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator"}},"id":3511,"nodeType":"ArrayTypeName","src":"6705:22:10","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserOpsPerAggregator_$3497_storage_$dyn_storage_ptr","typeString":"struct IEntryPoint.UserOpsPerAggregator[]"}},"visibility":"internal"},{"constant":false,"id":3514,"mutability":"mutable","name":"beneficiary","nameLocation":"6779:11:10","nodeType":"VariableDeclaration","scope":3517,"src":"6763:27:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":3513,"name":"address","nodeType":"ElementaryTypeName","src":"6763:15:10","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"}],"src":"6695:101:10"},"returnParameters":{"id":3516,"nodeType":"ParameterList","parameters":[],"src":"6805:0:10"},"scope":3566,"src":"6667:139:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3518,"nodeType":"StructuredDocumentation","src":"6812:322:10","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":3526,"implemented":false,"kind":"function","modifiers":[],"name":"getUserOpHash","nameLocation":"7148:13:10","nodeType":"FunctionDefinition","parameters":{"id":3522,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3521,"mutability":"mutable","name":"userOp","nameLocation":"7200:6:10","nodeType":"VariableDeclaration","scope":3526,"src":"7171:35:10","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3520,"nodeType":"UserDefinedTypeName","pathNode":{"id":3519,"name":"PackedUserOperation","nameLocations":["7171:19:10"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"7171:19:10"},"referencedDeclaration":3748,"src":"7171:19:10","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"}],"src":"7161:51:10"},"returnParameters":{"id":3525,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3524,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3526,"src":"7236:7:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3523,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7236:7:10","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7235:9:10"},"scope":3566,"src":"7139:106:10","stateMutability":"view","virtual":false,"visibility":"external"},{"canonicalName":"IEntryPoint.ReturnInfo","documentation":{"id":3527,"nodeType":"StructuredDocumentation","src":"7251:474:10","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":3538,"members":[{"constant":false,"id":3529,"mutability":"mutable","name":"preOpGas","nameLocation":"7766:8:10","nodeType":"VariableDeclaration","scope":3538,"src":"7758:16:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3528,"name":"uint256","nodeType":"ElementaryTypeName","src":"7758:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3531,"mutability":"mutable","name":"prefund","nameLocation":"7792:7:10","nodeType":"VariableDeclaration","scope":3538,"src":"7784:15:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3530,"name":"uint256","nodeType":"ElementaryTypeName","src":"7784:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3533,"mutability":"mutable","name":"accountValidationData","nameLocation":"7817:21:10","nodeType":"VariableDeclaration","scope":3538,"src":"7809:29:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3532,"name":"uint256","nodeType":"ElementaryTypeName","src":"7809:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3535,"mutability":"mutable","name":"paymasterValidationData","nameLocation":"7856:23:10","nodeType":"VariableDeclaration","scope":3538,"src":"7848:31:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3534,"name":"uint256","nodeType":"ElementaryTypeName","src":"7848:7:10","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3537,"mutability":"mutable","name":"paymasterContext","nameLocation":"7895:16:10","nodeType":"VariableDeclaration","scope":3538,"src":"7889:22:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":3536,"name":"bytes","nodeType":"ElementaryTypeName","src":"7889:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"ReturnInfo","nameLocation":"7737:10:10","nodeType":"StructDefinition","scope":3566,"src":"7730:188:10","visibility":"public"},{"canonicalName":"IEntryPoint.AggregatorStakeInfo","documentation":{"id":3539,"nodeType":"StructuredDocumentation","src":"7924:124:10","text":" Returned aggregated signature info:\n The aggregator returned by the account, and its current stake."},"id":3545,"members":[{"constant":false,"id":3541,"mutability":"mutable","name":"aggregator","nameLocation":"8098:10:10","nodeType":"VariableDeclaration","scope":3545,"src":"8090:18:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3540,"name":"address","nodeType":"ElementaryTypeName","src":"8090:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3544,"mutability":"mutable","name":"stakeInfo","nameLocation":"8128:9:10","nodeType":"VariableDeclaration","scope":3545,"src":"8118:19:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_StakeInfo_$3678_storage_ptr","typeString":"struct IStakeManager.StakeInfo"},"typeName":{"id":3543,"nodeType":"UserDefinedTypeName","pathNode":{"id":3542,"name":"StakeInfo","nameLocations":["8118:9:10"],"nodeType":"IdentifierPath","referencedDeclaration":3678,"src":"8118:9:10"},"referencedDeclaration":3678,"src":"8118:9:10","typeDescriptions":{"typeIdentifier":"t_struct$_StakeInfo_$3678_storage_ptr","typeString":"struct IStakeManager.StakeInfo"}},"visibility":"internal"}],"name":"AggregatorStakeInfo","nameLocation":"8060:19:10","nodeType":"StructDefinition","scope":3566,"src":"8053:91:10","visibility":"public"},{"documentation":{"id":3546,"nodeType":"StructuredDocumentation","src":"8150:338:10","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":3551,"implemented":false,"kind":"function","modifiers":[],"name":"getSenderAddress","nameLocation":"8502:16:10","nodeType":"FunctionDefinition","parameters":{"id":3549,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3548,"mutability":"mutable","name":"initCode","nameLocation":"8532:8:10","nodeType":"VariableDeclaration","scope":3551,"src":"8519:21:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3547,"name":"bytes","nodeType":"ElementaryTypeName","src":"8519:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8518:23:10"},"returnParameters":{"id":3550,"nodeType":"ParameterList","parameters":[],"src":"8550:0:10"},"scope":3566,"src":"8493:58:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"errorSelector":"99410554","id":3557,"name":"DelegateAndRevert","nameLocation":"8563:17:10","nodeType":"ErrorDefinition","parameters":{"id":3556,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3553,"mutability":"mutable","name":"success","nameLocation":"8586:7:10","nodeType":"VariableDeclaration","scope":3557,"src":"8581:12:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3552,"name":"bool","nodeType":"ElementaryTypeName","src":"8581:4:10","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3555,"mutability":"mutable","name":"ret","nameLocation":"8601:3:10","nodeType":"VariableDeclaration","scope":3557,"src":"8595:9:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3554,"name":"bytes","nodeType":"ElementaryTypeName","src":"8595:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8580:25:10"},"src":"8557:49:10"},{"documentation":{"id":3558,"nodeType":"StructuredDocumentation","src":"8612:492:10","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":3565,"implemented":false,"kind":"function","modifiers":[],"name":"delegateAndRevert","nameLocation":"9118:17:10","nodeType":"FunctionDefinition","parameters":{"id":3563,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3560,"mutability":"mutable","name":"target","nameLocation":"9144:6:10","nodeType":"VariableDeclaration","scope":3565,"src":"9136:14:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3559,"name":"address","nodeType":"ElementaryTypeName","src":"9136:7:10","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3562,"mutability":"mutable","name":"data","nameLocation":"9167:4:10","nodeType":"VariableDeclaration","scope":3565,"src":"9152:19:10","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3561,"name":"bytes","nodeType":"ElementaryTypeName","src":"9152:5:10","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9135:37:10"},"returnParameters":{"id":3564,"nodeType":"ParameterList","parameters":[],"src":"9181:0:10"},"scope":3566,"src":"9109:73:10","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":3567,"src":"436:8748:10","usedErrors":[3465,3474,3478,3483,3487,3557],"usedEvents":[3408,3419,3430,3441,3450,3453,3458,3631,3639,3647,3653,3661]}],"src":"163:9022:10"},"id":10},"@account-abstraction/contracts/interfaces/INonceManager.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/INonceManager.sol","exportedSymbols":{"INonceManager":[3585]},"id":3586,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":3568,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"36:24:11"},{"abstract":false,"baseContracts":[],"canonicalName":"INonceManager","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":3585,"linearizedBaseContracts":[3585],"name":"INonceManager","nameLocation":"72:13:11","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":3569,"nodeType":"StructuredDocumentation","src":"93:416:11","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":3578,"implemented":false,"kind":"function","modifiers":[],"name":"getNonce","nameLocation":"523:8:11","nodeType":"FunctionDefinition","parameters":{"id":3574,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3571,"mutability":"mutable","name":"sender","nameLocation":"540:6:11","nodeType":"VariableDeclaration","scope":3578,"src":"532:14:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3570,"name":"address","nodeType":"ElementaryTypeName","src":"532:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3573,"mutability":"mutable","name":"key","nameLocation":"556:3:11","nodeType":"VariableDeclaration","scope":3578,"src":"548:11:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":3572,"name":"uint192","nodeType":"ElementaryTypeName","src":"548:7:11","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"531:29:11"},"returnParameters":{"id":3577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3576,"mutability":"mutable","name":"nonce","nameLocation":"596:5:11","nodeType":"VariableDeclaration","scope":3578,"src":"588:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3575,"name":"uint256","nodeType":"ElementaryTypeName","src":"588:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"587:15:11"},"scope":3585,"src":"514:89:11","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3579,"nodeType":"StructuredDocumentation","src":"609:449:11","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":3584,"implemented":false,"kind":"function","modifiers":[],"name":"incrementNonce","nameLocation":"1072:14:11","nodeType":"FunctionDefinition","parameters":{"id":3582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3581,"mutability":"mutable","name":"key","nameLocation":"1095:3:11","nodeType":"VariableDeclaration","scope":3584,"src":"1087:11:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":3580,"name":"uint192","nodeType":"ElementaryTypeName","src":"1087:7:11","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"1086:13:11"},"returnParameters":{"id":3583,"nodeType":"ParameterList","parameters":[],"src":"1108:0:11"},"scope":3585,"src":"1063:46:11","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":3586,"src":"62:1049:11","usedErrors":[],"usedEvents":[]}],"src":"36:1076:11"},"id":11},"@account-abstraction/contracts/interfaces/IPaymaster.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/IPaymaster.sol","exportedSymbols":{"IPaymaster":[3622],"PackedUserOperation":[3748]},"id":3623,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":3587,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"36:24:12"},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"./PackedUserOperation.sol","id":3588,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3623,"sourceUnit":3749,"src":"62:35:12","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IPaymaster","contractDependencies":[],"contractKind":"interface","documentation":{"id":3589,"nodeType":"StructuredDocumentation","src":"99:216:12","text":" The interface exposed by a paymaster contract, who agrees to pay the gas for user's operations.\n A paymaster must hold a stake to cover the required entrypoint stake and also the gas for the transaction."},"fullyImplemented":false,"id":3622,"linearizedBaseContracts":[3622],"name":"IPaymaster","nameLocation":"326:10:12","nodeType":"ContractDefinition","nodes":[{"canonicalName":"IPaymaster.PostOpMode","id":3593,"members":[{"id":3590,"name":"opSucceeded","nameLocation":"399:11:12","nodeType":"EnumValue","src":"399:11:12"},{"id":3591,"name":"opReverted","nameLocation":"475:10:12","nodeType":"EnumValue","src":"475:10:12"},{"id":3592,"name":"postOpReverted","nameLocation":"617:14:12","nodeType":"EnumValue","src":"617:14:12"}],"name":"PostOpMode","nameLocation":"348:10:12","nodeType":"EnumDefinition","src":"343:294:12"},{"documentation":{"id":3594,"nodeType":"StructuredDocumentation","src":"643:1430:12","text":" Payment validation: check if paymaster agrees to pay.\n Must verify sender is the entryPoint.\n Revert to reject this request.\n Note that bundlers will reject this method if it changes the state, unless the paymaster is trusted (whitelisted).\n The paymaster pre-pays using its deposit, and receive back a refund after the postOp method returns.\n @param userOp          - The user operation.\n @param userOpHash      - Hash of the user's request data.\n @param maxCost         - The maximum cost of this transaction (based on maximum gas and gas price from userOp).\n @return context        - Value to send to a postOp. Zero length to signify postOp is not required.\n @return validationData - Signature and time-range of this operation, encoded the same as the return\n                          value of validateUserOperation.\n                          <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,\n                                                    other values are invalid for paymaster.\n                          <6-byte> validUntil - last timestamp this operation is valid. 0 for \"indefinite\"\n                          <6-byte> validAfter - first timestamp this operation is valid\n                          Note that the validation code cannot use block.timestamp (or block.number) directly."},"functionSelector":"52b7512c","id":3608,"implemented":false,"kind":"function","modifiers":[],"name":"validatePaymasterUserOp","nameLocation":"2087:23:12","nodeType":"FunctionDefinition","parameters":{"id":3602,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3597,"mutability":"mutable","name":"userOp","nameLocation":"2149:6:12","nodeType":"VariableDeclaration","scope":3608,"src":"2120:35:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":3596,"nodeType":"UserDefinedTypeName","pathNode":{"id":3595,"name":"PackedUserOperation","nameLocations":["2120:19:12"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"2120:19:12"},"referencedDeclaration":3748,"src":"2120:19:12","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":3599,"mutability":"mutable","name":"userOpHash","nameLocation":"2173:10:12","nodeType":"VariableDeclaration","scope":3608,"src":"2165:18:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3598,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2165:7:12","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3601,"mutability":"mutable","name":"maxCost","nameLocation":"2201:7:12","nodeType":"VariableDeclaration","scope":3608,"src":"2193:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3600,"name":"uint256","nodeType":"ElementaryTypeName","src":"2193:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2110:104:12"},"returnParameters":{"id":3607,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3604,"mutability":"mutable","name":"context","nameLocation":"2246:7:12","nodeType":"VariableDeclaration","scope":3608,"src":"2233:20:12","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3603,"name":"bytes","nodeType":"ElementaryTypeName","src":"2233:5:12","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3606,"mutability":"mutable","name":"validationData","nameLocation":"2263:14:12","nodeType":"VariableDeclaration","scope":3608,"src":"2255:22:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3605,"name":"uint256","nodeType":"ElementaryTypeName","src":"2255:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2232:46:12"},"scope":3622,"src":"2078:201:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3609,"nodeType":"StructuredDocumentation","src":"2285:849:12","text":" Post-operation handler.\n Must verify sender is the entryPoint.\n @param mode          - Enum with the following options:\n                        opSucceeded - User operation succeeded.\n                        opReverted  - User op reverted. The paymaster still has to pay for gas.\n                        postOpReverted - never passed in a call to postOp().\n @param context       - The context value returned by validatePaymasterUserOp\n @param actualGasCost - Actual gas used so far (without this postOp call).\n @param actualUserOpFeePerGas - the gas price this UserOp pays. This value is based on the UserOp's maxFeePerGas\n                        and maxPriorityFee (and basefee)\n                        It is not the same as tx.gasprice, which is what the bundler pays."},"functionSelector":"7c627b21","id":3621,"implemented":false,"kind":"function","modifiers":[],"name":"postOp","nameLocation":"3148:6:12","nodeType":"FunctionDefinition","parameters":{"id":3619,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3612,"mutability":"mutable","name":"mode","nameLocation":"3175:4:12","nodeType":"VariableDeclaration","scope":3621,"src":"3164:15:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"},"typeName":{"id":3611,"nodeType":"UserDefinedTypeName","pathNode":{"id":3610,"name":"PostOpMode","nameLocations":["3164:10:12"],"nodeType":"IdentifierPath","referencedDeclaration":3593,"src":"3164:10:12"},"referencedDeclaration":3593,"src":"3164:10:12","typeDescriptions":{"typeIdentifier":"t_enum$_PostOpMode_$3593","typeString":"enum IPaymaster.PostOpMode"}},"visibility":"internal"},{"constant":false,"id":3614,"mutability":"mutable","name":"context","nameLocation":"3204:7:12","nodeType":"VariableDeclaration","scope":3621,"src":"3189:22:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":3613,"name":"bytes","nodeType":"ElementaryTypeName","src":"3189:5:12","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3616,"mutability":"mutable","name":"actualGasCost","nameLocation":"3229:13:12","nodeType":"VariableDeclaration","scope":3621,"src":"3221:21:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3615,"name":"uint256","nodeType":"ElementaryTypeName","src":"3221:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3618,"mutability":"mutable","name":"actualUserOpFeePerGas","nameLocation":"3260:21:12","nodeType":"VariableDeclaration","scope":3621,"src":"3252:29:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3617,"name":"uint256","nodeType":"ElementaryTypeName","src":"3252:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3154:133:12"},"returnParameters":{"id":3620,"nodeType":"ParameterList","parameters":[],"src":"3296:0:12"},"scope":3622,"src":"3139:158:12","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":3623,"src":"316:2983:12","usedErrors":[],"usedEvents":[]}],"src":"36:3264:12"},"id":12},"@account-abstraction/contracts/interfaces/IStakeManager.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/IStakeManager.sol","exportedSymbols":{"IStakeManager":[3726]},"id":3727,"license":"GPL-3.0-only","nodeType":"SourceUnit","nodes":[{"id":3624,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"41:24:13"},{"abstract":false,"baseContracts":[],"canonicalName":"IStakeManager","contractDependencies":[],"contractKind":"interface","documentation":{"id":3625,"nodeType":"StructuredDocumentation","src":"67:212:13","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":3726,"linearizedBaseContracts":[3726],"name":"IStakeManager","nameLocation":"290:13:13","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"eventSelector":"2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c4","id":3631,"name":"Deposited","nameLocation":"316:9:13","nodeType":"EventDefinition","parameters":{"id":3630,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3627,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"342:7:13","nodeType":"VariableDeclaration","scope":3631,"src":"326:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3626,"name":"address","nodeType":"ElementaryTypeName","src":"326:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3629,"indexed":false,"mutability":"mutable","name":"totalDeposit","nameLocation":"359:12:13","nodeType":"VariableDeclaration","scope":3631,"src":"351:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3628,"name":"uint256","nodeType":"ElementaryTypeName","src":"351:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"325:47:13"},"src":"310:63:13"},{"anonymous":false,"eventSelector":"d1c19fbcd4551a5edfb66d43d2e337c04837afda3482b42bdf569a8fccdae5fb","id":3639,"name":"Withdrawn","nameLocation":"385:9:13","nodeType":"EventDefinition","parameters":{"id":3638,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3633,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"420:7:13","nodeType":"VariableDeclaration","scope":3639,"src":"404:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3632,"name":"address","nodeType":"ElementaryTypeName","src":"404:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3635,"indexed":false,"mutability":"mutable","name":"withdrawAddress","nameLocation":"445:15:13","nodeType":"VariableDeclaration","scope":3639,"src":"437:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3634,"name":"address","nodeType":"ElementaryTypeName","src":"437:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3637,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"478:6:13","nodeType":"VariableDeclaration","scope":3639,"src":"470:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3636,"name":"uint256","nodeType":"ElementaryTypeName","src":"470:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"394:96:13"},"src":"379:112:13"},{"anonymous":false,"eventSelector":"a5ae833d0bb1dcd632d98a8b70973e8516812898e19bf27b70071ebc8dc52c01","id":3647,"name":"StakeLocked","nameLocation":"560:11:13","nodeType":"EventDefinition","parameters":{"id":3646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3641,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"597:7:13","nodeType":"VariableDeclaration","scope":3647,"src":"581:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3640,"name":"address","nodeType":"ElementaryTypeName","src":"581:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3643,"indexed":false,"mutability":"mutable","name":"totalStaked","nameLocation":"622:11:13","nodeType":"VariableDeclaration","scope":3647,"src":"614:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3642,"name":"uint256","nodeType":"ElementaryTypeName","src":"614:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3645,"indexed":false,"mutability":"mutable","name":"unstakeDelaySec","nameLocation":"651:15:13","nodeType":"VariableDeclaration","scope":3647,"src":"643:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3644,"name":"uint256","nodeType":"ElementaryTypeName","src":"643:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"571:101:13"},"src":"554:119:13"},{"anonymous":false,"eventSelector":"fa9b3c14cc825c412c9ed81b3ba365a5b459439403f18829e572ed53a4180f0a","id":3653,"name":"StakeUnlocked","nameLocation":"742:13:13","nodeType":"EventDefinition","parameters":{"id":3652,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3649,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"772:7:13","nodeType":"VariableDeclaration","scope":3653,"src":"756:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3648,"name":"address","nodeType":"ElementaryTypeName","src":"756:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3651,"indexed":false,"mutability":"mutable","name":"withdrawTime","nameLocation":"789:12:13","nodeType":"VariableDeclaration","scope":3653,"src":"781:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3650,"name":"uint256","nodeType":"ElementaryTypeName","src":"781:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"755:47:13"},"src":"736:67:13"},{"anonymous":false,"eventSelector":"b7c918e0e249f999e965cafeb6c664271b3f4317d296461500e71da39f0cbda3","id":3661,"name":"StakeWithdrawn","nameLocation":"815:14:13","nodeType":"EventDefinition","parameters":{"id":3660,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3655,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"855:7:13","nodeType":"VariableDeclaration","scope":3661,"src":"839:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3654,"name":"address","nodeType":"ElementaryTypeName","src":"839:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3657,"indexed":false,"mutability":"mutable","name":"withdrawAddress","nameLocation":"880:15:13","nodeType":"VariableDeclaration","scope":3661,"src":"872:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3656,"name":"address","nodeType":"ElementaryTypeName","src":"872:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3659,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"913:6:13","nodeType":"VariableDeclaration","scope":3661,"src":"905:14:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3658,"name":"uint256","nodeType":"ElementaryTypeName","src":"905:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"829:96:13"},"src":"809:117:13"},{"canonicalName":"IStakeManager.DepositInfo","documentation":{"id":3662,"nodeType":"StructuredDocumentation","src":"932:697:13","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":3673,"members":[{"constant":false,"id":3664,"mutability":"mutable","name":"deposit","nameLocation":"1671:7:13","nodeType":"VariableDeclaration","scope":3673,"src":"1663:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3663,"name":"uint256","nodeType":"ElementaryTypeName","src":"1663:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3666,"mutability":"mutable","name":"staked","nameLocation":"1693:6:13","nodeType":"VariableDeclaration","scope":3673,"src":"1688:11:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3665,"name":"bool","nodeType":"ElementaryTypeName","src":"1688:4:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3668,"mutability":"mutable","name":"stake","nameLocation":"1717:5:13","nodeType":"VariableDeclaration","scope":3673,"src":"1709:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":3667,"name":"uint112","nodeType":"ElementaryTypeName","src":"1709:7:13","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"},{"constant":false,"id":3670,"mutability":"mutable","name":"unstakeDelaySec","nameLocation":"1739:15:13","nodeType":"VariableDeclaration","scope":3673,"src":"1732:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3669,"name":"uint32","nodeType":"ElementaryTypeName","src":"1732:6:13","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":3672,"mutability":"mutable","name":"withdrawTime","nameLocation":"1771:12:13","nodeType":"VariableDeclaration","scope":3673,"src":"1764:19:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":3671,"name":"uint48","nodeType":"ElementaryTypeName","src":"1764:6:13","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"name":"DepositInfo","nameLocation":"1641:11:13","nodeType":"StructDefinition","scope":3726,"src":"1634:156:13","visibility":"public"},{"canonicalName":"IStakeManager.StakeInfo","id":3678,"members":[{"constant":false,"id":3675,"mutability":"mutable","name":"stake","nameLocation":"1894:5:13","nodeType":"VariableDeclaration","scope":3678,"src":"1886:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3674,"name":"uint256","nodeType":"ElementaryTypeName","src":"1886:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3677,"mutability":"mutable","name":"unstakeDelaySec","nameLocation":"1917:15:13","nodeType":"VariableDeclaration","scope":3678,"src":"1909:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3676,"name":"uint256","nodeType":"ElementaryTypeName","src":"1909:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"StakeInfo","nameLocation":"1866:9:13","nodeType":"StructDefinition","scope":3726,"src":"1859:80:13","visibility":"public"},{"documentation":{"id":3679,"nodeType":"StructuredDocumentation","src":"1945:149:13","text":" Get deposit info.\n @param account - The account to query.\n @return info   - Full deposit information of given account."},"functionSelector":"5287ce12","id":3687,"implemented":false,"kind":"function","modifiers":[],"name":"getDepositInfo","nameLocation":"2108:14:13","nodeType":"FunctionDefinition","parameters":{"id":3682,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3681,"mutability":"mutable","name":"account","nameLocation":"2140:7:13","nodeType":"VariableDeclaration","scope":3687,"src":"2132:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3680,"name":"address","nodeType":"ElementaryTypeName","src":"2132:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2122:31:13"},"returnParameters":{"id":3686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3685,"mutability":"mutable","name":"info","nameLocation":"2196:4:13","nodeType":"VariableDeclaration","scope":3687,"src":"2177:23:13","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_memory_ptr","typeString":"struct IStakeManager.DepositInfo"},"typeName":{"id":3684,"nodeType":"UserDefinedTypeName","pathNode":{"id":3683,"name":"DepositInfo","nameLocations":["2177:11:13"],"nodeType":"IdentifierPath","referencedDeclaration":3673,"src":"2177:11:13"},"referencedDeclaration":3673,"src":"2177:11:13","typeDescriptions":{"typeIdentifier":"t_struct$_DepositInfo_$3673_storage_ptr","typeString":"struct IStakeManager.DepositInfo"}},"visibility":"internal"}],"src":"2176:25:13"},"scope":3726,"src":"2099:103:13","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3688,"nodeType":"StructuredDocumentation","src":"2208:155:13","text":" Get account balance.\n @param account - The account to query.\n @return        - The deposit (for gas payment) of the account."},"functionSelector":"70a08231","id":3695,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"2377:9:13","nodeType":"FunctionDefinition","parameters":{"id":3691,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3690,"mutability":"mutable","name":"account","nameLocation":"2395:7:13","nodeType":"VariableDeclaration","scope":3695,"src":"2387:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3689,"name":"address","nodeType":"ElementaryTypeName","src":"2387:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2386:17:13"},"returnParameters":{"id":3694,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3693,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3695,"src":"2427:7:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3692,"name":"uint256","nodeType":"ElementaryTypeName","src":"2427:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2426:9:13"},"scope":3726,"src":"2368:68:13","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":3696,"nodeType":"StructuredDocumentation","src":"2442:106:13","text":" Add to the deposit of the given account.\n @param account - The account to add to."},"functionSelector":"b760faf9","id":3701,"implemented":false,"kind":"function","modifiers":[],"name":"depositTo","nameLocation":"2562:9:13","nodeType":"FunctionDefinition","parameters":{"id":3699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3698,"mutability":"mutable","name":"account","nameLocation":"2580:7:13","nodeType":"VariableDeclaration","scope":3701,"src":"2572:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3697,"name":"address","nodeType":"ElementaryTypeName","src":"2572:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2571:17:13"},"returnParameters":{"id":3700,"nodeType":"ParameterList","parameters":[],"src":"2605:0:13"},"scope":3726,"src":"2553:53:13","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":3702,"nodeType":"StructuredDocumentation","src":"2612:203:13","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":3707,"implemented":false,"kind":"function","modifiers":[],"name":"addStake","nameLocation":"2829:8:13","nodeType":"FunctionDefinition","parameters":{"id":3705,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3704,"mutability":"mutable","name":"_unstakeDelaySec","nameLocation":"2845:16:13","nodeType":"VariableDeclaration","scope":3707,"src":"2838:23:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3703,"name":"uint32","nodeType":"ElementaryTypeName","src":"2838:6:13","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2837:25:13"},"returnParameters":{"id":3706,"nodeType":"ParameterList","parameters":[],"src":"2879:0:13"},"scope":3726,"src":"2820:60:13","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":3708,"nodeType":"StructuredDocumentation","src":"2886:128:13","text":" Attempt to unlock the stake.\n The value can be withdrawn (using withdrawStake) after the unstake delay."},"functionSelector":"bb9fe6bf","id":3711,"implemented":false,"kind":"function","modifiers":[],"name":"unlockStake","nameLocation":"3028:11:13","nodeType":"FunctionDefinition","parameters":{"id":3709,"nodeType":"ParameterList","parameters":[],"src":"3039:2:13"},"returnParameters":{"id":3710,"nodeType":"ParameterList","parameters":[],"src":"3050:0:13"},"scope":3726,"src":"3019:32:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3712,"nodeType":"StructuredDocumentation","src":"3057:197:13","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":3717,"implemented":false,"kind":"function","modifiers":[],"name":"withdrawStake","nameLocation":"3268:13:13","nodeType":"FunctionDefinition","parameters":{"id":3715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3714,"mutability":"mutable","name":"withdrawAddress","nameLocation":"3298:15:13","nodeType":"VariableDeclaration","scope":3717,"src":"3282:31:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":3713,"name":"address","nodeType":"ElementaryTypeName","src":"3282:15:13","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"}],"src":"3281:33:13"},"returnParameters":{"id":3716,"nodeType":"ParameterList","parameters":[],"src":"3323:0:13"},"scope":3726,"src":"3259:65:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":3718,"nodeType":"StructuredDocumentation","src":"3330:170:13","text":" Withdraw from the deposit.\n @param withdrawAddress - The address to send withdrawn value.\n @param withdrawAmount  - The amount to withdraw."},"functionSelector":"205c2878","id":3725,"implemented":false,"kind":"function","modifiers":[],"name":"withdrawTo","nameLocation":"3514:10:13","nodeType":"FunctionDefinition","parameters":{"id":3723,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3720,"mutability":"mutable","name":"withdrawAddress","nameLocation":"3550:15:13","nodeType":"VariableDeclaration","scope":3725,"src":"3534:31:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":3719,"name":"address","nodeType":"ElementaryTypeName","src":"3534:15:13","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":3722,"mutability":"mutable","name":"withdrawAmount","nameLocation":"3583:14:13","nodeType":"VariableDeclaration","scope":3725,"src":"3575:22:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3721,"name":"uint256","nodeType":"ElementaryTypeName","src":"3575:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3524:79:13"},"returnParameters":{"id":3724,"nodeType":"ParameterList","parameters":[],"src":"3612:0:13"},"scope":3726,"src":"3505:108:13","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":3727,"src":"280:3335:13","usedErrors":[],"usedEvents":[3631,3639,3647,3653,3661]}],"src":"41:3575:13"},"id":13},"@account-abstraction/contracts/interfaces/PackedUserOperation.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","exportedSymbols":{"PackedUserOperation":[3748]},"id":3749,"license":"GPL-3.0","nodeType":"SourceUnit","nodes":[{"id":3728,"literals":["solidity",">=","0.7",".5"],"nodeType":"PragmaDirective","src":"36:24:14"},{"canonicalName":"PackedUserOperation","documentation":{"id":3729,"nodeType":"StructuredDocumentation","src":"62:1164:14","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":3748,"members":[{"constant":false,"id":3731,"mutability":"mutable","name":"sender","nameLocation":"1268:6:14","nodeType":"VariableDeclaration","scope":3748,"src":"1260:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3730,"name":"address","nodeType":"ElementaryTypeName","src":"1260:7:14","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3733,"mutability":"mutable","name":"nonce","nameLocation":"1288:5:14","nodeType":"VariableDeclaration","scope":3748,"src":"1280:13:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3732,"name":"uint256","nodeType":"ElementaryTypeName","src":"1280:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3735,"mutability":"mutable","name":"initCode","nameLocation":"1305:8:14","nodeType":"VariableDeclaration","scope":3748,"src":"1299:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":3734,"name":"bytes","nodeType":"ElementaryTypeName","src":"1299:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3737,"mutability":"mutable","name":"callData","nameLocation":"1325:8:14","nodeType":"VariableDeclaration","scope":3748,"src":"1319:14:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":3736,"name":"bytes","nodeType":"ElementaryTypeName","src":"1319:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3739,"mutability":"mutable","name":"accountGasLimits","nameLocation":"1347:16:14","nodeType":"VariableDeclaration","scope":3748,"src":"1339:24:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3738,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1339:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3741,"mutability":"mutable","name":"preVerificationGas","nameLocation":"1377:18:14","nodeType":"VariableDeclaration","scope":3748,"src":"1369:26:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3740,"name":"uint256","nodeType":"ElementaryTypeName","src":"1369:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3743,"mutability":"mutable","name":"gasFees","nameLocation":"1409:7:14","nodeType":"VariableDeclaration","scope":3748,"src":"1401:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3742,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1401:7:14","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3745,"mutability":"mutable","name":"paymasterAndData","nameLocation":"1428:16:14","nodeType":"VariableDeclaration","scope":3748,"src":"1422:22:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":3744,"name":"bytes","nodeType":"ElementaryTypeName","src":"1422:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3747,"mutability":"mutable","name":"signature","nameLocation":"1456:9:14","nodeType":"VariableDeclaration","scope":3748,"src":"1450:15:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":3746,"name":"bytes","nodeType":"ElementaryTypeName","src":"1450:5:14","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"PackedUserOperation","nameLocation":"1234:19:14","nodeType":"StructDefinition","scope":3749,"src":"1227:241:14","visibility":"public"}],"src":"36:1433:14"},"id":14},"@account-abstraction/contracts/utils/Exec.sol":{"ast":{"absolutePath":"@account-abstraction/contracts/utils/Exec.sol","exportedSymbols":{"Exec":[3839]},"id":3840,"license":"LGPL-3.0-only","nodeType":"SourceUnit","nodes":[{"id":3750,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"42:24:15"},{"abstract":false,"baseContracts":[],"canonicalName":"Exec","contractDependencies":[],"contractKind":"library","documentation":{"id":3751,"nodeType":"StructuredDocumentation","src":"107:95:15","text":" Utility functions helpful when making different kinds of contract calls in Solidity."},"fullyImplemented":true,"id":3839,"linearizedBaseContracts":[3839],"name":"Exec","nameLocation":"211:4:15","nodeType":"ContractDefinition","nodes":[{"body":{"id":3765,"nodeType":"Block","src":"368:134:15","statements":[{"AST":{"nativeSrc":"403:93:15","nodeType":"YulBlock","src":"403:93:15","statements":[{"nativeSrc":"417:69:15","nodeType":"YulAssignment","src":"417:69:15","value":{"arguments":[{"name":"txGas","nativeSrc":"433:5:15","nodeType":"YulIdentifier","src":"433:5:15"},{"name":"to","nativeSrc":"440:2:15","nodeType":"YulIdentifier","src":"440:2:15"},{"name":"value","nativeSrc":"444:5:15","nodeType":"YulIdentifier","src":"444:5:15"},{"arguments":[{"name":"data","nativeSrc":"455:4:15","nodeType":"YulIdentifier","src":"455:4:15"},{"kind":"number","nativeSrc":"461:4:15","nodeType":"YulLiteral","src":"461:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"451:3:15","nodeType":"YulIdentifier","src":"451:3:15"},"nativeSrc":"451:15:15","nodeType":"YulFunctionCall","src":"451:15:15"},{"arguments":[{"name":"data","nativeSrc":"474:4:15","nodeType":"YulIdentifier","src":"474:4:15"}],"functionName":{"name":"mload","nativeSrc":"468:5:15","nodeType":"YulIdentifier","src":"468:5:15"},"nativeSrc":"468:11:15","nodeType":"YulFunctionCall","src":"468:11:15"},{"kind":"number","nativeSrc":"481:1:15","nodeType":"YulLiteral","src":"481:1:15","type":"","value":"0"},{"kind":"number","nativeSrc":"484:1:15","nodeType":"YulLiteral","src":"484:1:15","type":"","value":"0"}],"functionName":{"name":"call","nativeSrc":"428:4:15","nodeType":"YulIdentifier","src":"428:4:15"},"nativeSrc":"428:58:15","nodeType":"YulFunctionCall","src":"428:58:15"},"variableNames":[{"name":"success","nativeSrc":"417:7:15","nodeType":"YulIdentifier","src":"417:7:15"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":3757,"isOffset":false,"isSlot":false,"src":"455:4:15","valueSize":1},{"declaration":3757,"isOffset":false,"isSlot":false,"src":"474:4:15","valueSize":1},{"declaration":3762,"isOffset":false,"isSlot":false,"src":"417:7:15","valueSize":1},{"declaration":3753,"isOffset":false,"isSlot":false,"src":"440:2:15","valueSize":1},{"declaration":3759,"isOffset":false,"isSlot":false,"src":"433:5:15","valueSize":1},{"declaration":3755,"isOffset":false,"isSlot":false,"src":"444:5:15","valueSize":1}],"flags":["memory-safe"],"id":3764,"nodeType":"InlineAssembly","src":"378:118:15"}]},"id":3766,"implemented":true,"kind":"function","modifiers":[],"name":"call","nameLocation":"232:4:15","nodeType":"FunctionDefinition","parameters":{"id":3760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3753,"mutability":"mutable","name":"to","nameLocation":"254:2:15","nodeType":"VariableDeclaration","scope":3766,"src":"246:10:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3752,"name":"address","nodeType":"ElementaryTypeName","src":"246:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3755,"mutability":"mutable","name":"value","nameLocation":"274:5:15","nodeType":"VariableDeclaration","scope":3766,"src":"266:13:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3754,"name":"uint256","nodeType":"ElementaryTypeName","src":"266:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3757,"mutability":"mutable","name":"data","nameLocation":"302:4:15","nodeType":"VariableDeclaration","scope":3766,"src":"289:17:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3756,"name":"bytes","nodeType":"ElementaryTypeName","src":"289:5:15","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3759,"mutability":"mutable","name":"txGas","nameLocation":"324:5:15","nodeType":"VariableDeclaration","scope":3766,"src":"316:13:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3758,"name":"uint256","nodeType":"ElementaryTypeName","src":"316:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"236:99:15"},"returnParameters":{"id":3763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3762,"mutability":"mutable","name":"success","nameLocation":"359:7:15","nodeType":"VariableDeclaration","scope":3766,"src":"354:12:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3761,"name":"bool","nodeType":"ElementaryTypeName","src":"354:4:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"353:14:15"},"scope":3839,"src":"223:279:15","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3778,"nodeType":"Block","src":"641:133:15","statements":[{"AST":{"nativeSrc":"676:92:15","nodeType":"YulBlock","src":"676:92:15","statements":[{"nativeSrc":"690:68:15","nodeType":"YulAssignment","src":"690:68:15","value":{"arguments":[{"name":"txGas","nativeSrc":"712:5:15","nodeType":"YulIdentifier","src":"712:5:15"},{"name":"to","nativeSrc":"719:2:15","nodeType":"YulIdentifier","src":"719:2:15"},{"arguments":[{"name":"data","nativeSrc":"727:4:15","nodeType":"YulIdentifier","src":"727:4:15"},{"kind":"number","nativeSrc":"733:4:15","nodeType":"YulLiteral","src":"733:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"723:3:15","nodeType":"YulIdentifier","src":"723:3:15"},"nativeSrc":"723:15:15","nodeType":"YulFunctionCall","src":"723:15:15"},{"arguments":[{"name":"data","nativeSrc":"746:4:15","nodeType":"YulIdentifier","src":"746:4:15"}],"functionName":{"name":"mload","nativeSrc":"740:5:15","nodeType":"YulIdentifier","src":"740:5:15"},"nativeSrc":"740:11:15","nodeType":"YulFunctionCall","src":"740:11:15"},{"kind":"number","nativeSrc":"753:1:15","nodeType":"YulLiteral","src":"753:1:15","type":"","value":"0"},{"kind":"number","nativeSrc":"756:1:15","nodeType":"YulLiteral","src":"756:1:15","type":"","value":"0"}],"functionName":{"name":"staticcall","nativeSrc":"701:10:15","nodeType":"YulIdentifier","src":"701:10:15"},"nativeSrc":"701:57:15","nodeType":"YulFunctionCall","src":"701:57:15"},"variableNames":[{"name":"success","nativeSrc":"690:7:15","nodeType":"YulIdentifier","src":"690:7:15"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":3770,"isOffset":false,"isSlot":false,"src":"727:4:15","valueSize":1},{"declaration":3770,"isOffset":false,"isSlot":false,"src":"746:4:15","valueSize":1},{"declaration":3775,"isOffset":false,"isSlot":false,"src":"690:7:15","valueSize":1},{"declaration":3768,"isOffset":false,"isSlot":false,"src":"719:2:15","valueSize":1},{"declaration":3772,"isOffset":false,"isSlot":false,"src":"712:5:15","valueSize":1}],"flags":["memory-safe"],"id":3777,"nodeType":"InlineAssembly","src":"651:117:15"}]},"id":3779,"implemented":true,"kind":"function","modifiers":[],"name":"staticcall","nameLocation":"517:10:15","nodeType":"FunctionDefinition","parameters":{"id":3773,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3768,"mutability":"mutable","name":"to","nameLocation":"545:2:15","nodeType":"VariableDeclaration","scope":3779,"src":"537:10:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3767,"name":"address","nodeType":"ElementaryTypeName","src":"537:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3770,"mutability":"mutable","name":"data","nameLocation":"570:4:15","nodeType":"VariableDeclaration","scope":3779,"src":"557:17:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3769,"name":"bytes","nodeType":"ElementaryTypeName","src":"557:5:15","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3772,"mutability":"mutable","name":"txGas","nameLocation":"592:5:15","nodeType":"VariableDeclaration","scope":3779,"src":"584:13:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3771,"name":"uint256","nodeType":"ElementaryTypeName","src":"584:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"527:76:15"},"returnParameters":{"id":3776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3775,"mutability":"mutable","name":"success","nameLocation":"632:7:15","nodeType":"VariableDeclaration","scope":3779,"src":"627:12:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3774,"name":"bool","nodeType":"ElementaryTypeName","src":"627:4:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"626:14:15"},"scope":3839,"src":"508:266:15","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":3791,"nodeType":"Block","src":"910:135:15","statements":[{"AST":{"nativeSrc":"945:94:15","nodeType":"YulBlock","src":"945:94:15","statements":[{"nativeSrc":"959:70:15","nodeType":"YulAssignment","src":"959:70:15","value":{"arguments":[{"name":"txGas","nativeSrc":"983:5:15","nodeType":"YulIdentifier","src":"983:5:15"},{"name":"to","nativeSrc":"990:2:15","nodeType":"YulIdentifier","src":"990:2:15"},{"arguments":[{"name":"data","nativeSrc":"998:4:15","nodeType":"YulIdentifier","src":"998:4:15"},{"kind":"number","nativeSrc":"1004:4:15","nodeType":"YulLiteral","src":"1004:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"994:3:15","nodeType":"YulIdentifier","src":"994:3:15"},"nativeSrc":"994:15:15","nodeType":"YulFunctionCall","src":"994:15:15"},{"arguments":[{"name":"data","nativeSrc":"1017:4:15","nodeType":"YulIdentifier","src":"1017:4:15"}],"functionName":{"name":"mload","nativeSrc":"1011:5:15","nodeType":"YulIdentifier","src":"1011:5:15"},"nativeSrc":"1011:11:15","nodeType":"YulFunctionCall","src":"1011:11:15"},{"kind":"number","nativeSrc":"1024:1:15","nodeType":"YulLiteral","src":"1024:1:15","type":"","value":"0"},{"kind":"number","nativeSrc":"1027:1:15","nodeType":"YulLiteral","src":"1027:1:15","type":"","value":"0"}],"functionName":{"name":"delegatecall","nativeSrc":"970:12:15","nodeType":"YulIdentifier","src":"970:12:15"},"nativeSrc":"970:59:15","nodeType":"YulFunctionCall","src":"970:59:15"},"variableNames":[{"name":"success","nativeSrc":"959:7:15","nodeType":"YulIdentifier","src":"959:7:15"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":3783,"isOffset":false,"isSlot":false,"src":"1017:4:15","valueSize":1},{"declaration":3783,"isOffset":false,"isSlot":false,"src":"998:4:15","valueSize":1},{"declaration":3788,"isOffset":false,"isSlot":false,"src":"959:7:15","valueSize":1},{"declaration":3781,"isOffset":false,"isSlot":false,"src":"990:2:15","valueSize":1},{"declaration":3785,"isOffset":false,"isSlot":false,"src":"983:5:15","valueSize":1}],"flags":["memory-safe"],"id":3790,"nodeType":"InlineAssembly","src":"920:119:15"}]},"id":3792,"implemented":true,"kind":"function","modifiers":[],"name":"delegateCall","nameLocation":"789:12:15","nodeType":"FunctionDefinition","parameters":{"id":3786,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3781,"mutability":"mutable","name":"to","nameLocation":"819:2:15","nodeType":"VariableDeclaration","scope":3792,"src":"811:10:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3780,"name":"address","nodeType":"ElementaryTypeName","src":"811:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3783,"mutability":"mutable","name":"data","nameLocation":"844:4:15","nodeType":"VariableDeclaration","scope":3792,"src":"831:17:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3782,"name":"bytes","nodeType":"ElementaryTypeName","src":"831:5:15","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3785,"mutability":"mutable","name":"txGas","nameLocation":"866:5:15","nodeType":"VariableDeclaration","scope":3792,"src":"858:13:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3784,"name":"uint256","nodeType":"ElementaryTypeName","src":"858:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"801:76:15"},"returnParameters":{"id":3789,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3788,"mutability":"mutable","name":"success","nameLocation":"901:7:15","nodeType":"VariableDeclaration","scope":3792,"src":"896:12:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3787,"name":"bool","nodeType":"ElementaryTypeName","src":"896:4:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"895:14:15"},"scope":3839,"src":"780:265:15","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3800,"nodeType":"Block","src":"1194:365:15","statements":[{"AST":{"nativeSrc":"1229:324:15","nodeType":"YulBlock","src":"1229:324:15","statements":[{"nativeSrc":"1243:27:15","nodeType":"YulVariableDeclaration","src":"1243:27:15","value":{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"1254:14:15","nodeType":"YulIdentifier","src":"1254:14:15"},"nativeSrc":"1254:16:15","nodeType":"YulFunctionCall","src":"1254:16:15"},"variables":[{"name":"len","nativeSrc":"1247:3:15","nodeType":"YulTypedName","src":"1247:3:15","type":""}]},{"body":{"nativeSrc":"1302:45:15","nodeType":"YulBlock","src":"1302:45:15","statements":[{"nativeSrc":"1320:13:15","nodeType":"YulAssignment","src":"1320:13:15","value":{"name":"maxLen","nativeSrc":"1327:6:15","nodeType":"YulIdentifier","src":"1327:6:15"},"variableNames":[{"name":"len","nativeSrc":"1320:3:15","nodeType":"YulIdentifier","src":"1320:3:15"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"1289:3:15","nodeType":"YulIdentifier","src":"1289:3:15"},{"name":"maxLen","nativeSrc":"1294:6:15","nodeType":"YulIdentifier","src":"1294:6:15"}],"functionName":{"name":"gt","nativeSrc":"1286:2:15","nodeType":"YulIdentifier","src":"1286:2:15"},"nativeSrc":"1286:15:15","nodeType":"YulFunctionCall","src":"1286:15:15"},"nativeSrc":"1283:64:15","nodeType":"YulIf","src":"1283:64:15"},{"nativeSrc":"1360:22:15","nodeType":"YulVariableDeclaration","src":"1360:22:15","value":{"arguments":[{"kind":"number","nativeSrc":"1377:4:15","nodeType":"YulLiteral","src":"1377:4:15","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"1371:5:15","nodeType":"YulIdentifier","src":"1371:5:15"},"nativeSrc":"1371:11:15","nodeType":"YulFunctionCall","src":"1371:11:15"},"variables":[{"name":"ptr","nativeSrc":"1364:3:15","nodeType":"YulTypedName","src":"1364:3:15","type":""}]},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1402:4:15","nodeType":"YulLiteral","src":"1402:4:15","type":"","value":"0x40"},{"arguments":[{"name":"ptr","nativeSrc":"1412:3:15","nodeType":"YulIdentifier","src":"1412:3:15"},{"arguments":[{"name":"len","nativeSrc":"1421:3:15","nodeType":"YulIdentifier","src":"1421:3:15"},{"kind":"number","nativeSrc":"1426:4:15","nodeType":"YulLiteral","src":"1426:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1417:3:15","nodeType":"YulIdentifier","src":"1417:3:15"},"nativeSrc":"1417:14:15","nodeType":"YulFunctionCall","src":"1417:14:15"}],"functionName":{"name":"add","nativeSrc":"1408:3:15","nodeType":"YulIdentifier","src":"1408:3:15"},"nativeSrc":"1408:24:15","nodeType":"YulFunctionCall","src":"1408:24:15"}],"functionName":{"name":"mstore","nativeSrc":"1395:6:15","nodeType":"YulIdentifier","src":"1395:6:15"},"nativeSrc":"1395:38:15","nodeType":"YulFunctionCall","src":"1395:38:15"},"nativeSrc":"1395:38:15","nodeType":"YulExpressionStatement","src":"1395:38:15"},{"expression":{"arguments":[{"name":"ptr","nativeSrc":"1453:3:15","nodeType":"YulIdentifier","src":"1453:3:15"},{"name":"len","nativeSrc":"1458:3:15","nodeType":"YulIdentifier","src":"1458:3:15"}],"functionName":{"name":"mstore","nativeSrc":"1446:6:15","nodeType":"YulIdentifier","src":"1446:6:15"},"nativeSrc":"1446:16:15","nodeType":"YulFunctionCall","src":"1446:16:15"},"nativeSrc":"1446:16:15","nodeType":"YulExpressionStatement","src":"1446:16:15"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"1494:3:15","nodeType":"YulIdentifier","src":"1494:3:15"},{"kind":"number","nativeSrc":"1499:4:15","nodeType":"YulLiteral","src":"1499:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1490:3:15","nodeType":"YulIdentifier","src":"1490:3:15"},"nativeSrc":"1490:14:15","nodeType":"YulFunctionCall","src":"1490:14:15"},{"kind":"number","nativeSrc":"1506:1:15","nodeType":"YulLiteral","src":"1506:1:15","type":"","value":"0"},{"name":"len","nativeSrc":"1509:3:15","nodeType":"YulIdentifier","src":"1509:3:15"}],"functionName":{"name":"returndatacopy","nativeSrc":"1475:14:15","nodeType":"YulIdentifier","src":"1475:14:15"},"nativeSrc":"1475:38:15","nodeType":"YulFunctionCall","src":"1475:38:15"},"nativeSrc":"1475:38:15","nodeType":"YulExpressionStatement","src":"1475:38:15"},{"nativeSrc":"1526:17:15","nodeType":"YulAssignment","src":"1526:17:15","value":{"name":"ptr","nativeSrc":"1540:3:15","nodeType":"YulIdentifier","src":"1540:3:15"},"variableNames":[{"name":"returnData","nativeSrc":"1526:10:15","nodeType":"YulIdentifier","src":"1526:10:15"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":3794,"isOffset":false,"isSlot":false,"src":"1294:6:15","valueSize":1},{"declaration":3794,"isOffset":false,"isSlot":false,"src":"1327:6:15","valueSize":1},{"declaration":3797,"isOffset":false,"isSlot":false,"src":"1526:10:15","valueSize":1}],"flags":["memory-safe"],"id":3799,"nodeType":"InlineAssembly","src":"1204:349:15"}]},"id":3801,"implemented":true,"kind":"function","modifiers":[],"name":"getReturnData","nameLocation":"1116:13:15","nodeType":"FunctionDefinition","parameters":{"id":3795,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3794,"mutability":"mutable","name":"maxLen","nameLocation":"1138:6:15","nodeType":"VariableDeclaration","scope":3801,"src":"1130:14:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3793,"name":"uint256","nodeType":"ElementaryTypeName","src":"1130:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1129:16:15"},"returnParameters":{"id":3798,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3797,"mutability":"mutable","name":"returnData","nameLocation":"1182:10:15","nodeType":"VariableDeclaration","scope":3801,"src":"1169:23:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3796,"name":"bytes","nodeType":"ElementaryTypeName","src":"1169:5:15","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1168:25:15"},"scope":3839,"src":"1107:452:15","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3807,"nodeType":"Block","src":"1702:111:15","statements":[{"AST":{"nativeSrc":"1737:70:15","nodeType":"YulBlock","src":"1737:70:15","statements":[{"expression":{"arguments":[{"arguments":[{"name":"returnData","nativeSrc":"1762:10:15","nodeType":"YulIdentifier","src":"1762:10:15"},{"kind":"number","nativeSrc":"1774:2:15","nodeType":"YulLiteral","src":"1774:2:15","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1758:3:15","nodeType":"YulIdentifier","src":"1758:3:15"},"nativeSrc":"1758:19:15","nodeType":"YulFunctionCall","src":"1758:19:15"},{"arguments":[{"name":"returnData","nativeSrc":"1785:10:15","nodeType":"YulIdentifier","src":"1785:10:15"}],"functionName":{"name":"mload","nativeSrc":"1779:5:15","nodeType":"YulIdentifier","src":"1779:5:15"},"nativeSrc":"1779:17:15","nodeType":"YulFunctionCall","src":"1779:17:15"}],"functionName":{"name":"revert","nativeSrc":"1751:6:15","nodeType":"YulIdentifier","src":"1751:6:15"},"nativeSrc":"1751:46:15","nodeType":"YulFunctionCall","src":"1751:46:15"},"nativeSrc":"1751:46:15","nodeType":"YulExpressionStatement","src":"1751:46:15"}]},"evmVersion":"prague","externalReferences":[{"declaration":3803,"isOffset":false,"isSlot":false,"src":"1762:10:15","valueSize":1},{"declaration":3803,"isOffset":false,"isSlot":false,"src":"1785:10:15","valueSize":1}],"flags":["memory-safe"],"id":3806,"nodeType":"InlineAssembly","src":"1712:95:15"}]},"id":3808,"implemented":true,"kind":"function","modifiers":[],"name":"revertWithData","nameLocation":"1648:14:15","nodeType":"FunctionDefinition","parameters":{"id":3804,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3803,"mutability":"mutable","name":"returnData","nameLocation":"1676:10:15","nodeType":"VariableDeclaration","scope":3808,"src":"1663:23:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3802,"name":"bytes","nodeType":"ElementaryTypeName","src":"1663:5:15","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1662:25:15"},"returnParameters":{"id":3805,"nodeType":"ParameterList","parameters":[],"src":"1702:0:15"},"scope":3839,"src":"1639:174:15","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3837,"nodeType":"Block","src":"1898:142:15","statements":[{"assignments":[3818],"declarations":[{"constant":false,"id":3818,"mutability":"mutable","name":"success","nameLocation":"1913:7:15","nodeType":"VariableDeclaration","scope":3837,"src":"1908:12:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3817,"name":"bool","nodeType":"ElementaryTypeName","src":"1908:4:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":3826,"initialValue":{"arguments":[{"id":3820,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3810,"src":"1928:2:15","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":3821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1931:1:15","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":3822,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3812,"src":"1933:4:15","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"arguments":[],"expression":{"argumentTypes":[],"id":3823,"name":"gasleft","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-7,"src":"1938:7:15","typeDescriptions":{"typeIdentifier":"t_function_gasleft_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":3824,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1938:9:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3819,"name":"call","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3766,"src":"1923:4:15","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory,uint256) returns (bool)"}},"id":3825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1923:25:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"1908:40:15"},{"condition":{"id":3828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1962:8:15","subExpression":{"id":3827,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3818,"src":"1963:7:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3836,"nodeType":"IfStatement","src":"1958:76:15","trueBody":{"id":3835,"nodeType":"Block","src":"1972:62:15","statements":[{"expression":{"arguments":[{"arguments":[{"id":3831,"name":"maxLen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3814,"src":"2015:6:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3830,"name":"getReturnData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3801,"src":"2001:13:15","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"}},"id":3832,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2001:21:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3829,"name":"revertWithData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3808,"src":"1986:14:15","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":3833,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1986:37:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3834,"nodeType":"ExpressionStatement","src":"1986:37:15"}]}}]},"id":3838,"implemented":true,"kind":"function","modifiers":[],"name":"callAndRevert","nameLocation":"1828:13:15","nodeType":"FunctionDefinition","parameters":{"id":3815,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3810,"mutability":"mutable","name":"to","nameLocation":"1850:2:15","nodeType":"VariableDeclaration","scope":3838,"src":"1842:10:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3809,"name":"address","nodeType":"ElementaryTypeName","src":"1842:7:15","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3812,"mutability":"mutable","name":"data","nameLocation":"1867:4:15","nodeType":"VariableDeclaration","scope":3838,"src":"1854:17:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3811,"name":"bytes","nodeType":"ElementaryTypeName","src":"1854:5:15","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3814,"mutability":"mutable","name":"maxLen","nameLocation":"1881:6:15","nodeType":"VariableDeclaration","scope":3838,"src":"1873:14:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3813,"name":"uint256","nodeType":"ElementaryTypeName","src":"1873:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1841:47:15"},"returnParameters":{"id":3816,"nodeType":"ParameterList","parameters":[],"src":"1898:0:15"},"scope":3839,"src":"1819:221:15","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":3840,"src":"203:1839:15","usedErrors":[],"usedEvents":[]}],"src":"42:2001:15"},"id":15},"@ensuro/access-managed-proxy/contracts/AMPUtils.sol":{"ast":{"absolutePath":"@ensuro/access-managed-proxy/contracts/AMPUtils.sol","exportedSymbols":{"AMPUtils":[4080],"IAccessManagedProxy":[4328],"IAccessManager":[22178]},"id":4081,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":3841,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"39:23:16"},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","file":"@openzeppelin/contracts/access/manager/IAccessManager.sol","id":3843,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4081,"sourceUnit":22179,"src":"64:89:16","symbolAliases":[{"foreign":{"id":3842,"name":"IAccessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22178,"src":"72:14:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol","file":"./interfaces/IAccessManagedProxy.sol","id":3845,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4081,"sourceUnit":4329,"src":"154:73:16","symbolAliases":[{"foreign":{"id":3844,"name":"IAccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4328,"src":"162:19:16","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"AMPUtils","contractDependencies":[],"contractKind":"library","documentation":{"id":3846,"nodeType":"StructuredDocumentation","src":"229:164:16","text":" @title AMPUtils\n @dev Utility functions for doing custom access control rules, for contracts deployed\n      with AccessManagedProxy\n @author Ensuro"},"fullyImplemented":true,"id":4080,"linearizedBaseContracts":[4080],"name":"AMPUtils","nameLocation":"402:8:16","nodeType":"ContractDefinition","nodes":[{"errorSelector":"068ca9d8","id":3850,"name":"AccessManagedUnauthorized","nameLocation":"459:25:16","nodeType":"ErrorDefinition","parameters":{"id":3849,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3848,"mutability":"mutable","name":"caller","nameLocation":"493:6:16","nodeType":"VariableDeclaration","scope":3850,"src":"485:14:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3847,"name":"address","nodeType":"ElementaryTypeName","src":"485:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"484:16:16"},"src":"453:48:16"},{"canonicalName":"AMPUtils.AccessManagedProxyStorage","id":3861,"members":[{"constant":false,"id":3853,"mutability":"mutable","name":"accessManager","nameLocation":"559:13:16","nodeType":"VariableDeclaration","scope":3861,"src":"544:28:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"},"typeName":{"id":3852,"nodeType":"UserDefinedTypeName","pathNode":{"id":3851,"name":"IAccessManager","nameLocations":["544:14:16"],"nodeType":"IdentifierPath","referencedDeclaration":22178,"src":"544:14:16"},"referencedDeclaration":22178,"src":"544:14:16","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}},"visibility":"internal"},{"constant":false,"id":3856,"mutability":"mutable","name":"passThruMethods","nameLocation":"587:15:16","nodeType":"VariableDeclaration","scope":3861,"src":"578:24:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":3854,"name":"bytes4","nodeType":"ElementaryTypeName","src":"578:6:16","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":3855,"nodeType":"ArrayTypeName","src":"578:8:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"},{"constant":false,"id":3860,"mutability":"mutable","name":"skipAc","nameLocation":"666:6:16","nodeType":"VariableDeclaration","scope":3861,"src":"642:30:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_bool_$","typeString":"mapping(bytes4 => bool)"},"typeName":{"id":3859,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":3857,"name":"bytes4","nodeType":"ElementaryTypeName","src":"650:6:16","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"Mapping","src":"642:23:16","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_bool_$","typeString":"mapping(bytes4 => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":3858,"name":"bool","nodeType":"ElementaryTypeName","src":"660:4:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"}],"name":"AccessManagedProxyStorage","nameLocation":"512:25:16","nodeType":"StructDefinition","scope":4080,"src":"505:210:16","visibility":"public"},{"constant":true,"documentation":{"id":3862,"nodeType":"StructuredDocumentation","src":"719:232:16","text":" @notice Storage slot with the address of the current access mananger.\n @dev Computed as: `keccak256(\n    abi.encode(uint256(keccak256(\"ensuro.storage.AccessManagedProxy\")) - 1)\n ) & ~bytes32(uint256(0xff))"},"id":3865,"mutability":"constant","name":"AccessManagedProxyStorageLocation","nameLocation":"1032:33:16","nodeType":"VariableDeclaration","scope":4080,"src":"1006:132:16","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3863,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1006:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307837383763396437616339313064363432353262636561303561636435623761663664353936343465303435316138626235363734353837353535303439633030","id":3864,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1072:66:16","typeDescriptions":{"typeIdentifier":"t_rational_54497717750489122717228104159160360351638605248007149183892210957931124136960_by_1","typeString":"int_const 5449...(69 digits omitted)...6960"},"value":"0x787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c00"},"visibility":"internal"},{"body":{"id":3872,"nodeType":"Block","src":"1243:128:16","statements":[{"AST":{"nativeSrc":"1310:57:16","nodeType":"YulBlock","src":"1310:57:16","statements":[{"nativeSrc":"1318:43:16","nodeType":"YulAssignment","src":"1318:43:16","value":{"name":"AccessManagedProxyStorageLocation","nativeSrc":"1328:33:16","nodeType":"YulIdentifier","src":"1328:33:16"},"variableNames":[{"name":"$.slot","nativeSrc":"1318:6:16","nodeType":"YulIdentifier","src":"1318:6:16"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":3869,"isOffset":false,"isSlot":true,"src":"1318:6:16","suffix":"slot","valueSize":1},{"declaration":3865,"isOffset":false,"isSlot":false,"src":"1328:33:16","valueSize":1}],"id":3871,"nodeType":"InlineAssembly","src":"1301:66:16"}]},"id":3873,"implemented":true,"kind":"function","modifiers":[],"name":"getAccessManagedProxyStorage","nameLocation":"1152:28:16","nodeType":"FunctionDefinition","parameters":{"id":3866,"nodeType":"ParameterList","parameters":[],"src":"1180:2:16"},"returnParameters":{"id":3870,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3869,"mutability":"mutable","name":"$","nameLocation":"1240:1:16","nodeType":"VariableDeclaration","scope":3873,"src":"1206:35:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage"},"typeName":{"id":3868,"nodeType":"UserDefinedTypeName","pathNode":{"id":3867,"name":"AccessManagedProxyStorage","nameLocations":["1206:25:16"],"nodeType":"IdentifierPath","referencedDeclaration":3861,"src":"1206:25:16"},"referencedDeclaration":3861,"src":"1206:25:16","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage"}},"visibility":"internal"}],"src":"1205:37:16"},"scope":4080,"src":"1143:228:16","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3913,"nodeType":"Block","src":"1440:287:16","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3886,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"arguments":[{"id":3881,"name":"accessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3876,"src":"1458:13:16","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}],"id":3880,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1450:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3879,"name":"address","nodeType":"ElementaryTypeName","src":"1450:7:16","typeDescriptions":{}}},"id":3882,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1450:22:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1473:4:16","memberName":"code","nodeType":"MemberAccess","src":"1450:27:16","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3884,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1478:6:16","memberName":"length","nodeType":"MemberAccess","src":"1450:34:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":3885,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1488:1:16","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1450:39:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3897,"nodeType":"IfStatement","src":"1446:140:16","trueBody":{"id":3896,"nodeType":"Block","src":"1491:95:16","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":3892,"name":"accessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3876,"src":"1564:13:16","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}],"id":3891,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1556:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3890,"name":"address","nodeType":"ElementaryTypeName","src":"1556:7:16","typeDescriptions":{}}},"id":3893,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1556:22:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":3887,"name":"IAccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4328,"src":"1506:19:16","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManagedProxy_$4328_$","typeString":"type(contract IAccessManagedProxy)"}},"id":3889,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1526:29:16","memberName":"AccessManagedInvalidAuthority","nodeType":"MemberAccess","referencedDeclaration":4307,"src":"1506:49:16","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":3894,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1506:73:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":3895,"nodeType":"RevertStatement","src":"1499:80:16"}]}},{"expression":{"id":3902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":3898,"name":"getAccessManagedProxyStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3873,"src":"1591:28:16","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_AccessManagedProxyStorage_$3861_storage_ptr_$","typeString":"function () pure returns (struct AMPUtils.AccessManagedProxyStorage storage pointer)"}},"id":3899,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1591:30:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":3900,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1622:13:16","memberName":"accessManager","nodeType":"MemberAccess","referencedDeclaration":3853,"src":"1591:44:16","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3901,"name":"accessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3876,"src":"1638:13:16","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}},"src":"1591:60:16","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}},"id":3903,"nodeType":"ExpressionStatement","src":"1591:60:16"},{"eventCall":{"arguments":[{"arguments":[{"id":3909,"name":"accessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3876,"src":"1707:13:16","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}],"id":3908,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1699:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3907,"name":"address","nodeType":"ElementaryTypeName","src":"1699:7:16","typeDescriptions":{}}},"id":3910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1699:22:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":3904,"name":"IAccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4328,"src":"1662:19:16","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManagedProxy_$4328_$","typeString":"type(contract IAccessManagedProxy)"}},"id":3906,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1682:16:16","memberName":"AuthorityUpdated","nodeType":"MemberAccess","referencedDeclaration":4293,"src":"1662:36:16","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":3911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1662:60:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3912,"nodeType":"EmitStatement","src":"1657:65:16"}]},"id":3914,"implemented":true,"kind":"function","modifiers":[],"name":"setAccessManager","nameLocation":"1384:16:16","nodeType":"FunctionDefinition","parameters":{"id":3877,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3876,"mutability":"mutable","name":"accessManager","nameLocation":"1416:13:16","nodeType":"VariableDeclaration","scope":3914,"src":"1401:28:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"},"typeName":{"id":3875,"nodeType":"UserDefinedTypeName","pathNode":{"id":3874,"name":"IAccessManager","nameLocations":["1401:14:16"],"nodeType":"IdentifierPath","referencedDeclaration":22178,"src":"1401:14:16"},"referencedDeclaration":22178,"src":"1401:14:16","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}},"visibility":"internal"}],"src":"1400:30:16"},"returnParameters":{"id":3878,"nodeType":"ParameterList","parameters":[],"src":"1440:0:16"},"scope":4080,"src":"1375:352:16","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3976,"nodeType":"Block","src":"1801:373:16","statements":[{"assignments":[3922],"declarations":[{"constant":false,"id":3922,"mutability":"mutable","name":"$","nameLocation":"1841:1:16","nodeType":"VariableDeclaration","scope":3976,"src":"1807:35:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage"},"typeName":{"id":3921,"nodeType":"UserDefinedTypeName","pathNode":{"id":3920,"name":"AccessManagedProxyStorage","nameLocations":["1807:25:16"],"nodeType":"IdentifierPath","referencedDeclaration":3861,"src":"1807:25:16"},"referencedDeclaration":3861,"src":"1807:25:16","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage"}},"visibility":"internal"}],"id":3926,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":3923,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4080,"src":"1845:8:16","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AMPUtils_$4080_$","typeString":"type(library AMPUtils)"}},"id":3924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1854:28:16","memberName":"getAccessManagedProxyStorage","nodeType":"MemberAccess","referencedDeclaration":3873,"src":"1845:37:16","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_AccessManagedProxyStorage_$3861_storage_ptr_$","typeString":"function () pure returns (struct AMPUtils.AccessManagedProxyStorage storage pointer)"}},"id":3925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1845:39:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"1807:77:16"},{"expression":{"id":3936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":3927,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3922,"src":"1890:1:16","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":3929,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1892:15:16","memberName":"passThruMethods","nodeType":"MemberAccess","referencedDeclaration":3856,"src":"1890:17:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage","typeString":"bytes4[] storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":3933,"name":"passThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3917,"src":"1923:15:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":3934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1939:6:16","memberName":"length","nodeType":"MemberAccess","src":"1923:22:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3932,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1910:12:16","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_bytes4_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (bytes4[] memory)"},"typeName":{"baseType":{"id":3930,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1914:6:16","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":3931,"nodeType":"ArrayTypeName","src":"1914:8:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}}},"id":3935,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1910:36:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"src":"1890:56:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage","typeString":"bytes4[] storage ref"}},"id":3937,"nodeType":"ExpressionStatement","src":"1890:56:16"},{"body":{"id":3968,"nodeType":"Block","src":"2001:99:16","statements":[{"expression":{"id":3956,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":3948,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3922,"src":"2009:1:16","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":3951,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2011:15:16","memberName":"passThruMethods","nodeType":"MemberAccess","referencedDeclaration":3856,"src":"2009:17:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage","typeString":"bytes4[] storage ref"}},"id":3952,"indexExpression":{"id":3950,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3939,"src":"2027:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2009:20:16","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":3953,"name":"passThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3917,"src":"2032:15:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":3955,"indexExpression":{"id":3954,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3939,"src":"2048:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2032:18:16","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2009:41:16","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":3957,"nodeType":"ExpressionStatement","src":"2009:41:16"},{"expression":{"id":3966,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":3958,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3922,"src":"2058:1:16","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":3963,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2060:6:16","memberName":"skipAc","nodeType":"MemberAccess","referencedDeclaration":3860,"src":"2058:8:16","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_bool_$","typeString":"mapping(bytes4 => bool)"}},"id":3964,"indexExpression":{"baseExpression":{"id":3960,"name":"passThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3917,"src":"2067:15:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":3962,"indexExpression":{"id":3961,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3939,"src":"2083:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2067:18:16","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2058:28:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":3965,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2089:4:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"2058:35:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3967,"nodeType":"ExpressionStatement","src":"2058:35:16"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3941,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3939,"src":"1968:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":3942,"name":"passThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3917,"src":"1972:15:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":3943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1988:6:16","memberName":"length","nodeType":"MemberAccess","src":"1972:22:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1968:26:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3969,"initializationExpression":{"assignments":[3939],"declarations":[{"constant":false,"id":3939,"mutability":"mutable","name":"i","nameLocation":"1965:1:16","nodeType":"VariableDeclaration","scope":3969,"src":"1957:9:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3938,"name":"uint256","nodeType":"ElementaryTypeName","src":"1957:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3940,"nodeType":"VariableDeclarationStatement","src":"1957:9:16"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":3946,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"1996:3:16","subExpression":{"id":3945,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3939,"src":"1998:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3947,"nodeType":"ExpressionStatement","src":"1996:3:16"},"nodeType":"ForStatement","src":"1952:148:16"},{"eventCall":{"arguments":[{"id":3973,"name":"passThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3917,"src":"2153:15:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}],"expression":{"id":3970,"name":"IAccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4328,"src":"2110:19:16","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManagedProxy_$4328_$","typeString":"type(contract IAccessManagedProxy)"}},"id":3972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2130:22:16","memberName":"PassThruMethodsChanged","nodeType":"MemberAccess","referencedDeclaration":4299,"src":"2110:42:16","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_array$_t_bytes4_$dyn_memory_ptr_$returns$__$","typeString":"function (bytes4[] memory)"}},"id":3974,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2110:59:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3975,"nodeType":"EmitStatement","src":"2105:64:16"}]},"id":3977,"implemented":true,"kind":"function","modifiers":[],"name":"setPassThruMethods","nameLocation":"1740:18:16","nodeType":"FunctionDefinition","parameters":{"id":3918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3917,"mutability":"mutable","name":"passThruMethods","nameLocation":"1775:15:16","nodeType":"VariableDeclaration","scope":3977,"src":"1759:31:16","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":3915,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1759:6:16","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":3916,"nodeType":"ArrayTypeName","src":"1759:8:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"src":"1758:33:16"},"returnParameters":{"id":3919,"nodeType":"ParameterList","parameters":[],"src":"1801:0:16"},"scope":4080,"src":"1731:443:16","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":4024,"nodeType":"Block","src":"2255:303:16","statements":[{"assignments":[3985],"declarations":[{"constant":false,"id":3985,"mutability":"mutable","name":"$","nameLocation":"2295:1:16","nodeType":"VariableDeclaration","scope":4024,"src":"2261:35:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage"},"typeName":{"id":3984,"nodeType":"UserDefinedTypeName","pathNode":{"id":3983,"name":"AccessManagedProxyStorage","nameLocations":["2261:25:16"],"nodeType":"IdentifierPath","referencedDeclaration":3861,"src":"2261:25:16"},"referencedDeclaration":3861,"src":"2261:25:16","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage"}},"visibility":"internal"}],"id":3989,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":3986,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4080,"src":"2299:8:16","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AMPUtils_$4080_$","typeString":"type(library AMPUtils)"}},"id":3987,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2308:28:16","memberName":"getAccessManagedProxyStorage","nodeType":"MemberAccess","referencedDeclaration":3873,"src":"2299:37:16","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_AccessManagedProxyStorage_$3861_storage_ptr_$","typeString":"function () pure returns (struct AMPUtils.AccessManagedProxyStorage storage pointer)"}},"id":3988,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2299:39:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"2261:77:16"},{"assignments":[3994],"declarations":[{"constant":false,"id":3994,"mutability":"mutable","name":"oldPassThruMethods","nameLocation":"2360:18:16","nodeType":"VariableDeclaration","scope":4024,"src":"2344:34:16","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":3992,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2344:6:16","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":3993,"nodeType":"ArrayTypeName","src":"2344:8:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"id":3997,"initialValue":{"expression":{"id":3995,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3985,"src":"2381:1:16","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":3996,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2383:15:16","memberName":"passThruMethods","nodeType":"MemberAccess","referencedDeclaration":3856,"src":"2381:17:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage","typeString":"bytes4[] storage ref"}},"nodeType":"VariableDeclarationStatement","src":"2344:54:16"},{"body":{"id":4018,"nodeType":"Block","src":"2456:54:16","statements":[{"expression":{"id":4016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":4008,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3985,"src":"2464:1:16","typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":4013,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2466:6:16","memberName":"skipAc","nodeType":"MemberAccess","referencedDeclaration":3860,"src":"2464:8:16","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_bool_$","typeString":"mapping(bytes4 => bool)"}},"id":4014,"indexExpression":{"baseExpression":{"id":4010,"name":"oldPassThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3994,"src":"2473:18:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":4012,"indexExpression":{"id":4011,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3999,"src":"2492:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2473:21:16","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2464:31:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":4015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2498:5:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"2464:39:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4017,"nodeType":"ExpressionStatement","src":"2464:39:16"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4004,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4001,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3999,"src":"2420:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":4002,"name":"oldPassThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3994,"src":"2424:18:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":4003,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2443:6:16","memberName":"length","nodeType":"MemberAccess","src":"2424:25:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2420:29:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4019,"initializationExpression":{"assignments":[3999],"declarations":[{"constant":false,"id":3999,"mutability":"mutable","name":"i","nameLocation":"2417:1:16","nodeType":"VariableDeclaration","scope":4019,"src":"2409:9:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3998,"name":"uint256","nodeType":"ElementaryTypeName","src":"2409:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4000,"nodeType":"VariableDeclarationStatement","src":"2409:9:16"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":4006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"2451:3:16","subExpression":{"id":4005,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3999,"src":"2453:1:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4007,"nodeType":"ExpressionStatement","src":"2451:3:16"},"nodeType":"ForStatement","src":"2404:106:16"},{"expression":{"arguments":[{"id":4021,"name":"newPassThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3980,"src":"2534:18:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}],"id":4020,"name":"setPassThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3977,"src":"2515:18:16","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_bytes4_$dyn_memory_ptr_$returns$__$","typeString":"function (bytes4[] memory)"}},"id":4022,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2515:38:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4023,"nodeType":"ExpressionStatement","src":"2515:38:16"}]},"id":4025,"implemented":true,"kind":"function","modifiers":[],"name":"replacePassThruMethods","nameLocation":"2187:22:16","nodeType":"FunctionDefinition","parameters":{"id":3981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3980,"mutability":"mutable","name":"newPassThruMethods","nameLocation":"2226:18:16","nodeType":"VariableDeclaration","scope":4025,"src":"2210:34:16","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":3978,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2210:6:16","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":3979,"nodeType":"ArrayTypeName","src":"2210:8:16","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"src":"2209:36:16"},"returnParameters":{"id":3982,"nodeType":"ParameterList","parameters":[],"src":"2255:0:16"},"scope":4080,"src":"2178:380:16","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":4062,"nodeType":"Block","src":"2967:212:16","statements":[{"assignments":[4034,null],"declarations":[{"constant":false,"id":4034,"mutability":"mutable","name":"immediate","nameLocation":"2979:9:16","nodeType":"VariableDeclaration","scope":4062,"src":"2974:14:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4033,"name":"bool","nodeType":"ElementaryTypeName","src":"2974:4:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":4054,"initialValue":{"arguments":[{"id":4047,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4028,"src":"3070:4:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":4050,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3090:4:16","typeDescriptions":{"typeIdentifier":"t_contract$_AMPUtils_$4080","typeString":"library AMPUtils"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AMPUtils_$4080","typeString":"library AMPUtils"}],"id":4049,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3082:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4048,"name":"address","nodeType":"ElementaryTypeName","src":"3082:7:16","typeDescriptions":{}}},"id":4051,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3082:13:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4052,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4030,"src":"3103:8:16","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"arguments":[{"id":4040,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3030:4:16","typeDescriptions":{"typeIdentifier":"t_contract$_AMPUtils_$4080","typeString":"library AMPUtils"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AMPUtils_$4080","typeString":"library AMPUtils"}],"id":4039,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3022:7:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4038,"name":"address","nodeType":"ElementaryTypeName","src":"3022:7:16","typeDescriptions":{}}},"id":4041,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3022:13:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4037,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3014:8:16","typeDescriptions":{"typeIdentifier":"t_type$_t_address_payable_$","typeString":"type(address payable)"},"typeName":{"id":4036,"name":"address","nodeType":"ElementaryTypeName","src":"3014:8:16","stateMutability":"payable","typeDescriptions":{}}},"id":4042,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3014:22:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"}],"id":4035,"name":"IAccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4328,"src":"2994:19:16","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManagedProxy_$4328_$","typeString":"type(contract IAccessManagedProxy)"}},"id":4043,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2994:43:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManagedProxy_$4328","typeString":"contract IAccessManagedProxy"}},"id":4044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3038:14:16","memberName":"ACCESS_MANAGER","nodeType":"MemberAccess","referencedDeclaration":4320,"src":"2994:58:16","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IAccessManager_$22178_$","typeString":"function () view external returns (contract IAccessManager)"}},"id":4045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2994:60:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}},"id":4046,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3055:7:16","memberName":"canCall","nodeType":"MemberAccess","referencedDeclaration":21922,"src":"2994:68:16","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$_t_bytes4_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes4) view external returns (bool,uint32)"}},"id":4053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2994:123:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"2973:144:16"},{"expression":{"arguments":[{"id":4056,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4034,"src":"3131:9:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":4058,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4028,"src":"3168:4:16","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4057,"name":"AccessManagedUnauthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3850,"src":"3142:25:16","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":4059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3142:31:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":4055,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3123:7:16","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":4060,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3123:51:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4061,"nodeType":"ExpressionStatement","src":"3123:51:16"}]},"documentation":{"id":4026,"nodeType":"StructuredDocumentation","src":"2562:335:16","text":" @dev Checks if the user can call a particular selector, assuming the calling contract was deployed as an AMP.\n @param user The user for which you want to check the access, typically msg.sender\n @param selector The selector of the method called (or a fake selector generated with makeSelector or another way)"},"id":4063,"implemented":true,"kind":"function","modifiers":[],"name":"checkCanCall","nameLocation":"2909:12:16","nodeType":"FunctionDefinition","parameters":{"id":4031,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4028,"mutability":"mutable","name":"user","nameLocation":"2930:4:16","nodeType":"VariableDeclaration","scope":4063,"src":"2922:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4027,"name":"address","nodeType":"ElementaryTypeName","src":"2922:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4030,"mutability":"mutable","name":"selector","nameLocation":"2943:8:16","nodeType":"VariableDeclaration","scope":4063,"src":"2936:15:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4029,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2936:6:16","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2921:31:16"},"returnParameters":{"id":4032,"nodeType":"ParameterList","parameters":[],"src":"2967:0:16"},"scope":4080,"src":"2900:279:16","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":4078,"nodeType":"Block","src":"3389:46:16","statements":[{"expression":{"arguments":[{"arguments":[{"id":4074,"name":"something","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4066,"src":"3419:9:16","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":4073,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"3409:9:16","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3409:20:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":4072,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3402:6:16","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":4071,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3402:6:16","typeDescriptions":{}}},"id":4076,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3402:28:16","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":4070,"id":4077,"nodeType":"Return","src":"3395:35:16"}]},"documentation":{"id":4064,"nodeType":"StructuredDocumentation","src":"3183:126:16","text":" @dev Standard way of creating \"fake selectors\" (not necessarily tied to a method call) for specific permissions"},"id":4079,"implemented":true,"kind":"function","modifiers":[],"name":"makeSelector","nameLocation":"3321:12:16","nodeType":"FunctionDefinition","parameters":{"id":4067,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4066,"mutability":"mutable","name":"something","nameLocation":"3347:9:16","nodeType":"VariableDeclaration","scope":4079,"src":"3334:22:16","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4065,"name":"bytes","nodeType":"ElementaryTypeName","src":"3334:5:16","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3333:24:16"},"returnParameters":{"id":4070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4069,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4079,"src":"3381:6:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4068,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3381:6:16","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3380:8:16"},"scope":4080,"src":"3312:123:16","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":4081,"src":"394:3043:16","usedErrors":[3850],"usedEvents":[]}],"src":"39:3399:16"},"id":16},"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol":{"ast":{"absolutePath":"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol","exportedSymbols":{"AMPUtils":[4080],"AccessManagedProxy":[4170],"AccessManagedProxyBase":[4283],"IAccessManagedProxy":[4328],"IAccessManager":[22178]},"id":4171,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":4082,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"39:23:17"},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","file":"@openzeppelin/contracts/access/manager/IAccessManager.sol","id":4084,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4171,"sourceUnit":22179,"src":"64:89:17","symbolAliases":[{"foreign":{"id":4083,"name":"IAccessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22178,"src":"72:14:17","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol","file":"./interfaces/IAccessManagedProxy.sol","id":4086,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4171,"sourceUnit":4329,"src":"154:73:17","symbolAliases":[{"foreign":{"id":4085,"name":"IAccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4328,"src":"162:19:17","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol","file":"./AccessManagedProxyBase.sol","id":4088,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4171,"sourceUnit":4284,"src":"228:68:17","symbolAliases":[{"foreign":{"id":4087,"name":"AccessManagedProxyBase","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4283,"src":"236:22:17","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/AMPUtils.sol","file":"./AMPUtils.sol","id":4090,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4171,"sourceUnit":4081,"src":"297:40:17","symbolAliases":[{"foreign":{"id":4089,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4080,"src":"305:8:17","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":4092,"name":"AccessManagedProxyBase","nameLocations":["1479:22:17"],"nodeType":"IdentifierPath","referencedDeclaration":4283,"src":"1479:22:17"},"id":4093,"nodeType":"InheritanceSpecifier","src":"1479:22:17"}],"canonicalName":"AccessManagedProxy","contractDependencies":[],"contractKind":"contract","documentation":{"id":4091,"nodeType":"StructuredDocumentation","src":"339:1108:17","text":" @title AccessManagedProxy\n @notice Proxy contract using IAccessManager to manage access control before delegating calls (mutable version)\n @dev It's a variant of ERC1967Proxy.\n      Currently the check is executed on any call received by the proxy contract (even calls to view methods, i.e.\n      staticcall). For gas efficiency, you can also have `passThruMethods`, and for those methods it will skip\n      the call to the AccessManager, calling directly to the implementation contract.\n      The accessManager and the passThruMethods are in the storage, but this contract doesn't include any method\n      to modify them. They should be modified by the implementation contract (check AMPUtils for functions that\n      encapsulate these operations).\n      Check https://forum.openzeppelin.com/t/accessmanagedproxy-is-a-good-idea/41917 for a discussion on the\n      advantages and disadvantages of using it. Also https://www.youtube.com/watch?v=DKdwJ9Ap9vM for a presentation\n      on this approach.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":4170,"linearizedBaseContracts":[4170,4283,4328,22826,23156],"name":"AccessManagedProxy","nameLocation":"1457:18:17","nodeType":"ContractDefinition","nodes":[{"body":{"id":4123,"nodeType":"Block","src":"2762:101:17","statements":[{"expression":{"arguments":[{"id":4114,"name":"accessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4101,"src":"2794:13:17","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}],"expression":{"id":4111,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4080,"src":"2768:8:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AMPUtils_$4080_$","typeString":"type(library AMPUtils)"}},"id":4113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2777:16:17","memberName":"setAccessManager","nodeType":"MemberAccess","referencedDeclaration":3914,"src":"2768:25:17","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IAccessManager_$22178_$returns$__$","typeString":"function (contract IAccessManager)"}},"id":4115,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2768:40:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4116,"nodeType":"ExpressionStatement","src":"2768:40:17"},{"expression":{"arguments":[{"id":4120,"name":"passThruMethods","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4104,"src":"2842:15:17","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}],"expression":{"id":4117,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4080,"src":"2814:8:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AMPUtils_$4080_$","typeString":"type(library AMPUtils)"}},"id":4119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2823:18:17","memberName":"setPassThruMethods","nodeType":"MemberAccess","referencedDeclaration":3977,"src":"2814:27:17","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_bytes4_$dyn_memory_ptr_$returns$__$","typeString":"function (bytes4[] memory)"}},"id":4121,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2814:44:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4122,"nodeType":"ExpressionStatement","src":"2814:44:17"}]},"documentation":{"id":4094,"nodeType":"StructuredDocumentation","src":"1632:934:17","text":" @notice Constructor of the proxy, defining the implementation and the access manager\n @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation` and\n      with `accessManager` as the ACCESS_MANAGER that will handle access control.\n @param implementation The initial implementation contract.\n @param _data If nonempty, it's used as data in a delegate call to `implementation`. This will typically be an\n              encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\n @param accessManager The access manager that will handle access control\n @param passThruMethods The selector of methods that will skip the access control validation, typically used for\n                        views and other methods for gas optimization.\n @custom:pre If `_data` is empty, `msg.value` must be zero."},"id":4124,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":4107,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4096,"src":"2739:14:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4108,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4098,"src":"2755:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":4109,"kind":"baseConstructorSpecifier","modifierName":{"id":4106,"name":"AccessManagedProxyBase","nameLocations":["2716:22:17"],"nodeType":"IdentifierPath","referencedDeclaration":4283,"src":"2716:22:17"},"nodeType":"ModifierInvocation","src":"2716:45:17"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4105,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4096,"mutability":"mutable","name":"implementation","nameLocation":"2594:14:17","nodeType":"VariableDeclaration","scope":4124,"src":"2586:22:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4095,"name":"address","nodeType":"ElementaryTypeName","src":"2586:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4098,"mutability":"mutable","name":"_data","nameLocation":"2627:5:17","nodeType":"VariableDeclaration","scope":4124,"src":"2614:18:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4097,"name":"bytes","nodeType":"ElementaryTypeName","src":"2614:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":4101,"mutability":"mutable","name":"accessManager","nameLocation":"2653:13:17","nodeType":"VariableDeclaration","scope":4124,"src":"2638:28:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"},"typeName":{"id":4100,"nodeType":"UserDefinedTypeName","pathNode":{"id":4099,"name":"IAccessManager","nameLocations":["2638:14:17"],"nodeType":"IdentifierPath","referencedDeclaration":22178,"src":"2638:14:17"},"referencedDeclaration":22178,"src":"2638:14:17","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}},"visibility":"internal"},{"constant":false,"id":4104,"mutability":"mutable","name":"passThruMethods","nameLocation":"2688:15:17","nodeType":"VariableDeclaration","scope":4124,"src":"2672:31:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":4102,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2672:6:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":4103,"nodeType":"ArrayTypeName","src":"2672:8:17","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"src":"2580:127:17"},"returnParameters":{"id":4110,"nodeType":"ParameterList","parameters":[],"src":"2762:0:17"},"scope":4170,"src":"2569:294:17","stateMutability":"payable","virtual":false,"visibility":"public"},{"baseFunctions":[4282],"body":{"id":4140,"nodeType":"Block","src":"2980:74:17","statements":[{"expression":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4133,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4080,"src":"2993:8:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AMPUtils_$4080_$","typeString":"type(library AMPUtils)"}},"id":4134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3002:28:17","memberName":"getAccessManagedProxyStorage","nodeType":"MemberAccess","referencedDeclaration":3873,"src":"2993:37:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_AccessManagedProxyStorage_$3861_storage_ptr_$","typeString":"function () pure returns (struct AMPUtils.AccessManagedProxyStorage storage pointer)"}},"id":4135,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2993:39:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":4136,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3033:6:17","memberName":"skipAc","nodeType":"MemberAccess","referencedDeclaration":3860,"src":"2993:46:17","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_bool_$","typeString":"mapping(bytes4 => bool)"}},"id":4138,"indexExpression":{"id":4137,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4127,"src":"3040:8:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2993:56:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":4132,"id":4139,"nodeType":"Return","src":"2986:63:17"}]},"documentation":{"id":4125,"nodeType":"StructuredDocumentation","src":"2867:38:17","text":"@inheritdoc AccessManagedProxyBase"},"id":4141,"implemented":true,"kind":"function","modifiers":[],"name":"_skipAC","nameLocation":"2917:7:17","nodeType":"FunctionDefinition","overrides":{"id":4129,"nodeType":"OverrideSpecifier","overrides":[],"src":"2956:8:17"},"parameters":{"id":4128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4127,"mutability":"mutable","name":"selector","nameLocation":"2932:8:17","nodeType":"VariableDeclaration","scope":4141,"src":"2925:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4126,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2925:6:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2924:17:17"},"returnParameters":{"id":4132,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4131,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4141,"src":"2974:4:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4130,"name":"bool","nodeType":"ElementaryTypeName","src":"2974:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2973:6:17"},"scope":4170,"src":"2908:146:17","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[4327],"body":{"id":4154,"nodeType":"Block","src":"3233:73:17","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4149,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4080,"src":"3246:8:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AMPUtils_$4080_$","typeString":"type(library AMPUtils)"}},"id":4150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3255:28:17","memberName":"getAccessManagedProxyStorage","nodeType":"MemberAccess","referencedDeclaration":3873,"src":"3246:37:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_AccessManagedProxyStorage_$3861_storage_ptr_$","typeString":"function () pure returns (struct AMPUtils.AccessManagedProxyStorage storage pointer)"}},"id":4151,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3246:39:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":4152,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3286:15:17","memberName":"passThruMethods","nodeType":"MemberAccess","referencedDeclaration":3856,"src":"3246:55:17","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage","typeString":"bytes4[] storage ref"}},"functionReturnParameters":4148,"id":4153,"nodeType":"Return","src":"3239:62:17"}]},"documentation":{"id":4142,"nodeType":"StructuredDocumentation","src":"3058:35:17","text":"@inheritdoc IAccessManagedProxy"},"functionSelector":"14416c03","id":4155,"implemented":true,"kind":"function","modifiers":[],"name":"PASS_THRU_METHODS","nameLocation":"3156:17:17","nodeType":"FunctionDefinition","overrides":{"id":4144,"nodeType":"OverrideSpecifier","overrides":[],"src":"3190:8:17"},"parameters":{"id":4143,"nodeType":"ParameterList","parameters":[],"src":"3173:2:17"},"returnParameters":{"id":4148,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4147,"mutability":"mutable","name":"methods","nameLocation":"3224:7:17","nodeType":"VariableDeclaration","scope":4155,"src":"3208:23:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":4145,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3208:6:17","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":4146,"nodeType":"ArrayTypeName","src":"3208:8:17","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"src":"3207:25:17"},"scope":4170,"src":"3147:159:17","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[4203],"body":{"id":4168,"nodeType":"Block","src":"3471:71:17","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4163,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4080,"src":"3484:8:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AMPUtils_$4080_$","typeString":"type(library AMPUtils)"}},"id":4164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3493:28:17","memberName":"getAccessManagedProxyStorage","nodeType":"MemberAccess","referencedDeclaration":3873,"src":"3484:37:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_AccessManagedProxyStorage_$3861_storage_ptr_$","typeString":"function () pure returns (struct AMPUtils.AccessManagedProxyStorage storage pointer)"}},"id":4165,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3484:39:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AccessManagedProxyStorage_$3861_storage_ptr","typeString":"struct AMPUtils.AccessManagedProxyStorage storage pointer"}},"id":4166,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3524:13:17","memberName":"accessManager","nodeType":"MemberAccess","referencedDeclaration":3853,"src":"3484:53:17","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}},"functionReturnParameters":4162,"id":4167,"nodeType":"Return","src":"3477:60:17"}]},"documentation":{"id":4156,"nodeType":"StructuredDocumentation","src":"3310:35:17","text":"@inheritdoc IAccessManagedProxy"},"functionSelector":"3a7b7a39","id":4169,"implemented":true,"kind":"function","modifiers":[],"name":"ACCESS_MANAGER","nameLocation":"3408:14:17","nodeType":"FunctionDefinition","overrides":{"id":4158,"nodeType":"OverrideSpecifier","overrides":[],"src":"3437:8:17"},"parameters":{"id":4157,"nodeType":"ParameterList","parameters":[],"src":"3422:2:17"},"returnParameters":{"id":4162,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4161,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4169,"src":"3455:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"},"typeName":{"id":4160,"nodeType":"UserDefinedTypeName","pathNode":{"id":4159,"name":"IAccessManager","nameLocations":["3455:14:17"],"nodeType":"IdentifierPath","referencedDeclaration":22178,"src":"3455:14:17"},"referencedDeclaration":22178,"src":"3455:14:17","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}},"visibility":"internal"}],"src":"3454:16:17"},"scope":4170,"src":"3399:143:17","stateMutability":"view","virtual":false,"visibility":"public"}],"scope":4171,"src":"1448:2096:17","usedErrors":[4303,4307,22846,22859,25668,26802],"usedEvents":[4293,4299,22272]}],"src":"39:3506:17"},"id":17},"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol":{"ast":{"absolutePath":"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol","exportedSymbols":{"AccessManagedProxyBase":[4283],"ERC1967Proxy":[22826],"IAccessManagedProxy":[4328],"IAccessManager":[22178]},"id":4284,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":4172,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"39:23:18"},{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","file":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","id":4174,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4284,"sourceUnit":22827,"src":"64:84:18","symbolAliases":[{"foreign":{"id":4173,"name":"ERC1967Proxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22826,"src":"72:12:18","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","file":"@openzeppelin/contracts/access/manager/IAccessManager.sol","id":4176,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4284,"sourceUnit":22179,"src":"149:89:18","symbolAliases":[{"foreign":{"id":4175,"name":"IAccessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22178,"src":"157:14:18","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol","file":"./interfaces/IAccessManagedProxy.sol","id":4178,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4284,"sourceUnit":4329,"src":"239:73:18","symbolAliases":[{"foreign":{"id":4177,"name":"IAccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4328,"src":"247:19:18","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4180,"name":"ERC1967Proxy","nameLocations":["1142:12:18"],"nodeType":"IdentifierPath","referencedDeclaration":22826,"src":"1142:12:18"},"id":4181,"nodeType":"InheritanceSpecifier","src":"1142:12:18"},{"baseName":{"id":4182,"name":"IAccessManagedProxy","nameLocations":["1156:19:18"],"nodeType":"IdentifierPath","referencedDeclaration":4328,"src":"1156:19:18"},"id":4183,"nodeType":"InheritanceSpecifier","src":"1156:19:18"}],"canonicalName":"AccessManagedProxyBase","contractDependencies":[],"contractKind":"contract","documentation":{"id":4179,"nodeType":"StructuredDocumentation","src":"314:783:18","text":" @title AccessManagedProxyBase\n @notice Proxy contract using IAccessManager to manage access control before delegating calls.\n @dev It's a variant of ERC1967Proxy.\n      Currently the check is executed on any call received by the proxy contract even calls to view methods\n      (staticcall). In the setup of the ACCESS_MANAGER permissions you would want to make all the views and pure\n      functions enabled for the PUBLIC_ROLE.\n      This base contract delegates on descendent contracts the storage of the ACCESS_MANAGER.\n      Check https://forum.openzeppelin.com/t/accessmanagedproxy-is-a-good-idea/41917 for a discussion on the\n      advantages and disadvantages of using it.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":false,"id":4283,"linearizedBaseContracts":[4283,4328,22826,23156],"name":"AccessManagedProxyBase","nameLocation":"1116:22:18","nodeType":"ContractDefinition","nodes":[{"body":{"id":4195,"nodeType":"Block","src":"1943:2:18","statements":[]},"documentation":{"id":4184,"nodeType":"StructuredDocumentation","src":"1180:660:18","text":" @notice Constructor of the proxy, defining the implementation and the access manager\n @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation` and\n      with `manager` as the ACCESS_MANAGER that will handle access control.\n @param implementation The initial implementation contract.\n @param _data If nonempty, it's used as data in a delegate call to `implementation`. This will typically be an\n              encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\n @custom:pre If `_data` is empty, `msg.value` must be zero."},"id":4196,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":4191,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4186,"src":"1920:14:18","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4192,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4188,"src":"1936:5:18","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":4193,"kind":"baseConstructorSpecifier","modifierName":{"id":4190,"name":"ERC1967Proxy","nameLocations":["1907:12:18"],"nodeType":"IdentifierPath","referencedDeclaration":22826,"src":"1907:12:18"},"nodeType":"ModifierInvocation","src":"1907:35:18"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4186,"mutability":"mutable","name":"implementation","nameLocation":"1863:14:18","nodeType":"VariableDeclaration","scope":4196,"src":"1855:22:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4185,"name":"address","nodeType":"ElementaryTypeName","src":"1855:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4188,"mutability":"mutable","name":"_data","nameLocation":"1892:5:18","nodeType":"VariableDeclaration","scope":4196,"src":"1879:18:18","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4187,"name":"bytes","nodeType":"ElementaryTypeName","src":"1879:5:18","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1854:44:18"},"returnParameters":{"id":4194,"nodeType":"ParameterList","parameters":[],"src":"1943:0:18"},"scope":4283,"src":"1843:102:18","stateMutability":"payable","virtual":false,"visibility":"internal"},{"baseFunctions":[4320],"documentation":{"id":4197,"nodeType":"StructuredDocumentation","src":"1949:35:18","text":"@inheritdoc IAccessManagedProxy"},"functionSelector":"3a7b7a39","id":4203,"implemented":false,"kind":"function","modifiers":[],"name":"ACCESS_MANAGER","nameLocation":"2047:14:18","nodeType":"FunctionDefinition","parameters":{"id":4198,"nodeType":"ParameterList","parameters":[],"src":"2061:2:18"},"returnParameters":{"id":4202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4201,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4203,"src":"2093:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"},"typeName":{"id":4200,"nodeType":"UserDefinedTypeName","pathNode":{"id":4199,"name":"IAccessManager","nameLocations":["2093:14:18"],"nodeType":"IdentifierPath","referencedDeclaration":22178,"src":"2093:14:18"},"referencedDeclaration":22178,"src":"2093:14:18","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}},"visibility":"internal"}],"src":"2092:16:18"},"scope":4283,"src":"2038:71:18","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[4313],"body":{"id":4215,"nodeType":"Block","src":"2212:43:18","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":4211,"name":"ACCESS_MANAGER","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4203,"src":"2233:14:18","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IAccessManager_$22178_$","typeString":"function () view returns (contract IAccessManager)"}},"id":4212,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2233:16:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}],"id":4210,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2225:7:18","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4209,"name":"address","nodeType":"ElementaryTypeName","src":"2225:7:18","typeDescriptions":{}}},"id":4213,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2225:25:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4208,"id":4214,"nodeType":"Return","src":"2218:32:18"}]},"documentation":{"id":4204,"nodeType":"StructuredDocumentation","src":"2113:35:18","text":"@inheritdoc IAccessManagedProxy"},"functionSelector":"bf7e214f","id":4216,"implemented":true,"kind":"function","modifiers":[],"name":"authority","nameLocation":"2160:9:18","nodeType":"FunctionDefinition","parameters":{"id":4205,"nodeType":"ParameterList","parameters":[],"src":"2169:2:18"},"returnParameters":{"id":4208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4207,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4216,"src":"2203:7:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4206,"name":"address","nodeType":"ElementaryTypeName","src":"2203:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2202:9:18"},"scope":4283,"src":"2151:104:18","stateMutability":"view","virtual":true,"visibility":"external"},{"baseFunctions":[23131],"body":{"id":4273,"nodeType":"Block","src":"2757:380:18","statements":[{"assignments":[4224],"declarations":[{"constant":false,"id":4224,"mutability":"mutable","name":"selector","nameLocation":"2770:8:18","nodeType":"VariableDeclaration","scope":4273,"src":"2763:15:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4223,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2763:6:18","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":4233,"initialValue":{"arguments":[{"baseExpression":{"expression":{"id":4227,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2788:3:18","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4228,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2792:4:18","memberName":"data","nodeType":"MemberAccess","src":"2788:8:18","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":4230,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2799:1:18","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":4231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"2788:13:18","startExpression":{"hexValue":"30","id":4229,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2797:1:18","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":4226,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2781:6:18","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":4225,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2781:6:18","typeDescriptions":{}}},"id":4232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2781:21:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"2763:39:18"},{"assignments":[4235],"declarations":[{"constant":false,"id":4235,"mutability":"mutable","name":"immediate","nameLocation":"2813:9:18","nodeType":"VariableDeclaration","scope":4273,"src":"2808:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4234,"name":"bool","nodeType":"ElementaryTypeName","src":"2808:4:18","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":4239,"initialValue":{"arguments":[{"id":4237,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4224,"src":"2833:8:18","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":4236,"name":"_skipAC","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4282,"src":"2825:7:18","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":4238,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2825:17:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"2808:34:18"},{"condition":{"id":4241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"2924:10:18","subExpression":{"id":4240,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4235,"src":"2925:9:18","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4266,"nodeType":"IfStatement","src":"2920:176:18","trueBody":{"id":4265,"nodeType":"Block","src":"2936:160:18","statements":[{"expression":{"id":4255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":4242,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4235,"src":"2945:9:18","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},null],"id":4243,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"2944:13:18","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$__$","typeString":"tuple(bool,)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":4247,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2985:3:18","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2989:6:18","memberName":"sender","nodeType":"MemberAccess","src":"2985:10:18","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":4251,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3005:4:18","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManagedProxyBase_$4283","typeString":"contract AccessManagedProxyBase"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManagedProxyBase_$4283","typeString":"contract AccessManagedProxyBase"}],"id":4250,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2997:7:18","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4249,"name":"address","nodeType":"ElementaryTypeName","src":"2997:7:18","typeDescriptions":{}}},"id":4252,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2997:13:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4253,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4224,"src":"3012:8:18","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4244,"name":"ACCESS_MANAGER","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4203,"src":"2960:14:18","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IAccessManager_$22178_$","typeString":"function () view returns (contract IAccessManager)"}},"id":4245,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2960:16:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}},"id":4246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2977:7:18","memberName":"canCall","nodeType":"MemberAccess","referencedDeclaration":21922,"src":"2960:24:18","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$_t_bytes4_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes4) view external returns (bool,uint32)"}},"id":4254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2960:61:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"src":"2944:77:18","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4256,"nodeType":"ExpressionStatement","src":"2944:77:18"},{"condition":{"id":4258,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3033:10:18","subExpression":{"id":4257,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4235,"src":"3034:9:18","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4264,"nodeType":"IfStatement","src":"3029:60:18","trueBody":{"errorCall":{"arguments":[{"expression":{"id":4260,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3078:3:18","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3082:6:18","memberName":"sender","nodeType":"MemberAccess","src":"3078:10:18","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4259,"name":"AccessManagedUnauthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4303,"src":"3052:25:18","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":4262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3052:37:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4263,"nodeType":"RevertStatement","src":"3045:44:18"}}]}},{"expression":{"arguments":[{"id":4270,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4219,"src":"3117:14:18","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":4267,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"3101:5:18","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_AccessManagedProxyBase_$4283_$","typeString":"type(contract super AccessManagedProxyBase)"}},"id":4269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3107:9:18","memberName":"_delegate","nodeType":"MemberAccess","referencedDeclaration":23131,"src":"3101:15:18","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":4271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3101:31:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4272,"nodeType":"ExpressionStatement","src":"3101:31:18"}]},"documentation":{"id":4217,"nodeType":"StructuredDocumentation","src":"2259:426:18","text":" @notice Intercepts the super._delegate call to implement access control\n @dev Checks with the ACCESS_MANAGER if msg.sender is authorized to call the current call's function,\n and if so, delegates the current call to `implementation`.\n @param implementation The implementation contract\n This function does not return to its internal call site, it will return directly to the external caller."},"id":4274,"implemented":true,"kind":"function","modifiers":[],"name":"_delegate","nameLocation":"2697:9:18","nodeType":"FunctionDefinition","overrides":{"id":4221,"nodeType":"OverrideSpecifier","overrides":[],"src":"2748:8:18"},"parameters":{"id":4220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4219,"mutability":"mutable","name":"implementation","nameLocation":"2715:14:18","nodeType":"VariableDeclaration","scope":4274,"src":"2707:22:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4218,"name":"address","nodeType":"ElementaryTypeName","src":"2707:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2706:24:18"},"returnParameters":{"id":4222,"nodeType":"ParameterList","parameters":[],"src":"2757:0:18"},"scope":4283,"src":"2688:449:18","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"documentation":{"id":4275,"nodeType":"StructuredDocumentation","src":"3141:436:18","text":" @notice Returns whether to skip the access control validation or not\n @dev Hook called before ACCESS_MANAGER.canCall to enable skipping the call to the access manager for performance\n      reasons (for example on views) or to remove access control for other specific cases\n @param selector The selector of the method called\n @return Whether the access control using ACCESS_MANAGER should be skipped or not"},"id":4282,"implemented":false,"kind":"function","modifiers":[],"name":"_skipAC","nameLocation":"3589:7:18","nodeType":"FunctionDefinition","parameters":{"id":4278,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4277,"mutability":"mutable","name":"selector","nameLocation":"3604:8:18","nodeType":"VariableDeclaration","scope":4282,"src":"3597:15:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4276,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3597:6:18","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3596:17:18"},"returnParameters":{"id":4281,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4280,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4282,"src":"3645:4:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4279,"name":"bool","nodeType":"ElementaryTypeName","src":"3645:4:18","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3644:6:18"},"scope":4283,"src":"3580:71:18","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":4284,"src":"1098:2555:18","usedErrors":[4303,4307,22846,22859,25668,26802],"usedEvents":[4293,4299,22272]}],"src":"39:3615:18"},"id":18},"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol":{"ast":{"absolutePath":"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol","exportedSymbols":{"IAccessManagedProxy":[4328],"IAccessManager":[22178]},"id":4329,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":4285,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:19"},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","file":"@openzeppelin/contracts/access/manager/IAccessManager.sol","id":4287,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4329,"sourceUnit":22179,"src":"65:89:19","symbolAliases":[{"foreign":{"id":4286,"name":"IAccessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22178,"src":"73:14:19","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IAccessManagedProxy","contractDependencies":[],"contractKind":"interface","documentation":{"id":4288,"nodeType":"StructuredDocumentation","src":"156:462:19","text":" @title IAccessManagedProxy - Interface of AccessManagedProxy contracts\n @notice This interface gives observability of the access control setup\n @dev The `ACCESS_MANAGER()` is the AccessManager contract that stores the access roles for most of the methods,\n except those listed in `PASS_THRU_METHODS()` that are forwarded directly to the proxy and don't have access control\n (at least not by the AccessManager contract).\n @author Ensuro"},"fullyImplemented":false,"id":4328,"linearizedBaseContracts":[4328],"name":"IAccessManagedProxy","nameLocation":"629:19:19","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":4289,"nodeType":"StructuredDocumentation","src":"653:189:19","text":" @notice The ACCESS_MANAGER that manages the access controls was updated\n @dev Authority that manages this contract was updated. Uses same interface as OZ's IAccessManaged"},"eventSelector":"2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad","id":4293,"name":"AuthorityUpdated","nameLocation":"901:16:19","nodeType":"EventDefinition","parameters":{"id":4292,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4291,"indexed":false,"mutability":"mutable","name":"authority","nameLocation":"926:9:19","nodeType":"VariableDeclaration","scope":4293,"src":"918:17:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4290,"name":"address","nodeType":"ElementaryTypeName","src":"918:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"917:19:19"},"src":"895:42:19"},{"anonymous":false,"documentation":{"id":4294,"nodeType":"StructuredDocumentation","src":"941:65:19","text":" @dev Emitted when the passThruMethods has changed."},"eventSelector":"3da94442c0a9daca8284d03a02aafdc638dfaae447d5d7879542573a9095b493","id":4299,"name":"PassThruMethodsChanged","nameLocation":"1015:22:19","nodeType":"EventDefinition","parameters":{"id":4298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4297,"indexed":false,"mutability":"mutable","name":"newPassThruMethods","nameLocation":"1047:18:19","nodeType":"VariableDeclaration","scope":4299,"src":"1038:27:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":4295,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1038:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":4296,"nodeType":"ArrayTypeName","src":"1038:8:19","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"src":"1037:29:19"},"src":"1009:58:19"},{"errorSelector":"068ca9d8","id":4303,"name":"AccessManagedUnauthorized","nameLocation":"1121:25:19","nodeType":"ErrorDefinition","parameters":{"id":4302,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4301,"mutability":"mutable","name":"caller","nameLocation":"1155:6:19","nodeType":"VariableDeclaration","scope":4303,"src":"1147:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4300,"name":"address","nodeType":"ElementaryTypeName","src":"1147:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1146:16:19"},"src":"1115:48:19"},{"errorSelector":"c2f31e5e","id":4307,"name":"AccessManagedInvalidAuthority","nameLocation":"1172:29:19","nodeType":"ErrorDefinition","parameters":{"id":4306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4305,"mutability":"mutable","name":"authority","nameLocation":"1210:9:19","nodeType":"VariableDeclaration","scope":4307,"src":"1202:17:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4304,"name":"address","nodeType":"ElementaryTypeName","src":"1202:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1201:19:19"},"src":"1166:55:19"},{"documentation":{"id":4308,"nodeType":"StructuredDocumentation","src":"1225:169:19","text":" @notice Returns the current authority.\n @dev Returns the current authority. Same as ACCESS_MANAGER(), added for compatibility with OZ's IAccessManaged"},"functionSelector":"bf7e214f","id":4313,"implemented":false,"kind":"function","modifiers":[],"name":"authority","nameLocation":"1406:9:19","nodeType":"FunctionDefinition","parameters":{"id":4309,"nodeType":"ParameterList","parameters":[],"src":"1415:2:19"},"returnParameters":{"id":4312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4311,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4313,"src":"1441:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4310,"name":"address","nodeType":"ElementaryTypeName","src":"1441:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1440:9:19"},"scope":4328,"src":"1397:53:19","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":4314,"nodeType":"StructuredDocumentation","src":"1454:111:19","text":" @notice AccessManager contract that handles the permissions to access the implementation methods"},"functionSelector":"3a7b7a39","id":4320,"implemented":false,"kind":"function","modifiers":[],"name":"ACCESS_MANAGER","nameLocation":"1628:14:19","nodeType":"FunctionDefinition","parameters":{"id":4315,"nodeType":"ParameterList","parameters":[],"src":"1642:2:19"},"returnParameters":{"id":4319,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4318,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4320,"src":"1668:14:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"},"typeName":{"id":4317,"nodeType":"UserDefinedTypeName","pathNode":{"id":4316,"name":"IAccessManager","nameLocations":["1668:14:19"],"nodeType":"IdentifierPath","referencedDeclaration":22178,"src":"1668:14:19"},"referencedDeclaration":22178,"src":"1668:14:19","typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}},"visibility":"internal"}],"src":"1667:16:19"},"scope":4328,"src":"1619:65:19","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":4321,"nodeType":"StructuredDocumentation","src":"1688:184:19","text":" @notice Gives observability to the methods that are skipped from access control\n @return methods The list of method selectors that skip ACCESS_MANAGER access control"},"functionSelector":"14416c03","id":4327,"implemented":false,"kind":"function","modifiers":[],"name":"PASS_THRU_METHODS","nameLocation":"1935:17:19","nodeType":"FunctionDefinition","parameters":{"id":4322,"nodeType":"ParameterList","parameters":[],"src":"1952:2:19"},"returnParameters":{"id":4326,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4325,"mutability":"mutable","name":"methods","nameLocation":"1994:7:19","nodeType":"VariableDeclaration","scope":4327,"src":"1978:23:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":4323,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1978:6:19","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":4324,"nodeType":"ArrayTypeName","src":"1978:8:19","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"src":"1977:25:19"},"scope":4328,"src":"1926:77:19","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":4329,"src":"619:1386:19","usedErrors":[4303,4307],"usedEvents":[4293,4299]}],"src":"39:1967:19"},"id":19},"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol":{"ast":{"absolutePath":"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol","exportedSymbols":{"AccessControl":[19727],"Address":[26046],"BaseAccount":[138],"ECDSA":[33173],"ERC2771Context":[22788],"ERC2771ForwarderAccount":[4776],"IEntryPoint":[3566],"MessageHashUtils":[33299],"PackedUserOperation":[3748],"SIG_VALIDATION_FAILED":[2241],"SIG_VALIDATION_SUCCESS":[2244]},"id":4777,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":4330,"literals":["solidity","^","0.8",".23"],"nodeType":"PragmaDirective","src":"39:24:20"},{"absolutePath":"@openzeppelin/contracts/access/AccessControl.sol","file":"@openzeppelin/contracts/access/AccessControl.sol","id":4332,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4777,"sourceUnit":19728,"src":"65:79:20","symbolAliases":[{"foreign":{"id":4331,"name":"AccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19727,"src":"73:13:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"@openzeppelin/contracts/utils/Address.sol","id":4334,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4777,"sourceUnit":26047,"src":"145:66:20","symbolAliases":[{"foreign":{"id":4333,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26046,"src":"153:7:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/metatx/ERC2771Context.sol","file":"@openzeppelin/contracts/metatx/ERC2771Context.sol","id":4336,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4777,"sourceUnit":22789,"src":"212:81:20","symbolAliases":[{"foreign":{"id":4335,"name":"ERC2771Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22788,"src":"220:14:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","file":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","id":4338,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4777,"sourceUnit":33300,"src":"294:97:20","symbolAliases":[{"foreign":{"id":4337,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33299,"src":"302:16:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/BaseAccount.sol","file":"@account-abstraction/contracts/core/BaseAccount.sol","id":4340,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4777,"sourceUnit":139,"src":"392:80:20","symbolAliases":[{"foreign":{"id":4339,"name":"BaseAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":138,"src":"400:11:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/core/Helpers.sol","file":"@account-abstraction/contracts/core/Helpers.sol","id":4343,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4777,"sourceUnit":2416,"src":"473:110:20","symbolAliases":[{"foreign":{"id":4341,"name":"SIG_VALIDATION_SUCCESS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2244,"src":"481:22:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":4342,"name":"SIG_VALIDATION_FAILED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2241,"src":"505:21:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","file":"@account-abstraction/contracts/interfaces/IEntryPoint.sol","id":4345,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4777,"sourceUnit":3567,"src":"584:86:20","symbolAliases":[{"foreign":{"id":4344,"name":"IEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3566,"src":"592:11:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","file":"@account-abstraction/contracts/interfaces/PackedUserOperation.sol","id":4347,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4777,"sourceUnit":3749,"src":"671:102:20","symbolAliases":[{"foreign":{"id":4346,"name":"PackedUserOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3748,"src":"679:19:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","id":4349,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4777,"sourceUnit":33174,"src":"774:75:20","symbolAliases":[{"foreign":{"id":4348,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33173,"src":"782:5:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":4351,"name":"AccessControl","nameLocations":["1194:13:20"],"nodeType":"IdentifierPath","referencedDeclaration":19727,"src":"1194:13:20"},"id":4352,"nodeType":"InheritanceSpecifier","src":"1194:13:20"},{"baseName":{"id":4353,"name":"BaseAccount","nameLocations":["1209:11:20"],"nodeType":"IdentifierPath","referencedDeclaration":138,"src":"1209:11:20"},"id":4354,"nodeType":"InheritanceSpecifier","src":"1209:11:20"}],"canonicalName":"ERC2771ForwarderAccount","contractDependencies":[],"contractKind":"contract","documentation":{"id":4350,"nodeType":"StructuredDocumentation","src":"851:306:20","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":4776,"linearizedBaseContracts":[4776,138,3335,19727,33323,33545,19810,26789],"name":"ERC2771ForwarderAccount","nameLocation":"1167:23:20","nodeType":"ContractDefinition","nodes":[{"constant":true,"functionSelector":"e02023a1","id":4359,"mutability":"constant","name":"WITHDRAW_ROLE","nameLocation":"1249:13:20","nodeType":"VariableDeclaration","scope":4776,"src":"1225:66:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4355,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1225:7:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"57495448445241575f524f4c45","id":4357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1275:15:20","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":4356,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1265:9:20","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4358,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1265:26:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"functionSelector":"07bd0265","id":4364,"mutability":"constant","name":"EXECUTOR_ROLE","nameLocation":"1319:13:20","nodeType":"VariableDeclaration","scope":4776,"src":"1295:66:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4360,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1295:7:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"4558454355544f525f524f4c45","id":4362,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1345:15:20","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":4361,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1335:9:20","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4363,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1335:26:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":false,"id":4367,"mutability":"immutable","name":"_entryPoint","nameLocation":"1396:11:20","nodeType":"VariableDeclaration","scope":4776,"src":"1366:41:20","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"},"typeName":{"id":4366,"nodeType":"UserDefinedTypeName","pathNode":{"id":4365,"name":"IEntryPoint","nameLocations":["1366:11:20"],"nodeType":"IdentifierPath","referencedDeclaration":3566,"src":"1366:11:20"},"referencedDeclaration":3566,"src":"1366:11:20","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"visibility":"private"},{"constant":false,"id":4369,"mutability":"mutable","name":"_userOpSigner","nameLocation":"1438:13:20","nodeType":"VariableDeclaration","scope":4776,"src":"1411:40:20","stateVariable":true,"storageLocation":"transient","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4368,"name":"address","nodeType":"ElementaryTypeName","src":"1411:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"errorSelector":"f1a1fdac","id":4373,"name":"RequiredEntryPointOrExecutor","nameLocation":"1462:28:20","nodeType":"ErrorDefinition","parameters":{"id":4372,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4371,"mutability":"mutable","name":"sender","nameLocation":"1499:6:20","nodeType":"VariableDeclaration","scope":4373,"src":"1491:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4370,"name":"address","nodeType":"ElementaryTypeName","src":"1491:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1490:16:20"},"src":"1456:51:20"},{"errorSelector":"6ca7ff7d","id":4375,"name":"UserOpSignerNotSet","nameLocation":"1516:18:20","nodeType":"ErrorDefinition","parameters":{"id":4374,"nodeType":"ParameterList","parameters":[],"src":"1534:2:20"},"src":"1510:27:20"},{"errorSelector":"6d4e1415","id":4379,"name":"CanCallOnlyIfTrustedForwarder","nameLocation":"1546:29:20","nodeType":"ErrorDefinition","parameters":{"id":4378,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4377,"mutability":"mutable","name":"target","nameLocation":"1584:6:20","nodeType":"VariableDeclaration","scope":4379,"src":"1576:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4376,"name":"address","nodeType":"ElementaryTypeName","src":"1576:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1575:16:20"},"src":"1540:52:20"},{"errorSelector":"2a00e5c6","id":4381,"name":"WrongArrayLength","nameLocation":"1601:16:20","nodeType":"ErrorDefinition","parameters":{"id":4380,"nodeType":"ParameterList","parameters":[],"src":"1617:2:20"},"src":"1595:25:20"},{"baseFunctions":[35],"body":{"id":4391,"nodeType":"Block","src":"1727:29:20","statements":[{"expression":{"id":4389,"name":"_entryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4367,"src":"1740:11:20","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"functionReturnParameters":4388,"id":4390,"nodeType":"Return","src":"1733:18:20"}]},"documentation":{"id":4382,"nodeType":"StructuredDocumentation","src":"1624:27:20","text":"@inheritdoc BaseAccount"},"functionSelector":"b0d691fe","id":4392,"implemented":true,"kind":"function","modifiers":[],"name":"entryPoint","nameLocation":"1663:10:20","nodeType":"FunctionDefinition","overrides":{"id":4384,"nodeType":"OverrideSpecifier","overrides":[],"src":"1696:8:20"},"parameters":{"id":4383,"nodeType":"ParameterList","parameters":[],"src":"1673:2:20"},"returnParameters":{"id":4388,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4387,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4392,"src":"1714:11:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"},"typeName":{"id":4386,"nodeType":"UserDefinedTypeName","pathNode":{"id":4385,"name":"IEntryPoint","nameLocations":["1714:11:20"],"nodeType":"IdentifierPath","referencedDeclaration":3566,"src":"1714:11:20"},"referencedDeclaration":3566,"src":"1714:11:20","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"visibility":"internal"}],"src":"1713:13:20"},"scope":4776,"src":"1654:102:20","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4395,"nodeType":"Block","src":"1834:2:20","statements":[]},"id":4396,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4393,"nodeType":"ParameterList","parameters":[],"src":"1814:2:20"},"returnParameters":{"id":4394,"nodeType":"ParameterList","parameters":[],"src":"1834:0:20"},"scope":4776,"src":"1807:29:20","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":4435,"nodeType":"Block","src":"1921:182:20","statements":[{"expression":{"id":4409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4407,"name":"_entryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4367,"src":"1927:11:20","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4408,"name":"anEntryPoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4399,"src":"1941:12:20","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"src":"1927:26:20","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"id":4410,"nodeType":"ExpressionStatement","src":"1927:26:20"},{"expression":{"arguments":[{"id":4412,"name":"DEFAULT_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19461,"src":"1970:18:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4413,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4401,"src":"1990:5:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":4411,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19688,"src":"1959:10:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":4414,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1959:37:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4415,"nodeType":"ExpressionStatement","src":"1959:37:20"},{"body":{"id":4433,"nodeType":"Block","src":"2045:54:20","statements":[{"expression":{"arguments":[{"id":4427,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4364,"src":"2064:13:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":4428,"name":"executors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4404,"src":"2079:9:20","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":4430,"indexExpression":{"id":4429,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4417,"src":"2089:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2079:12:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":4426,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19688,"src":"2053:10:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":4431,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2053:39:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4432,"nodeType":"ExpressionStatement","src":"2053:39:20"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4419,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4417,"src":"2018:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":4420,"name":"executors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4404,"src":"2022:9:20","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[] memory"}},"id":4421,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2032:6:20","memberName":"length","nodeType":"MemberAccess","src":"2022:16:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2018:20:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4434,"initializationExpression":{"assignments":[4417],"declarations":[{"constant":false,"id":4417,"mutability":"mutable","name":"i","nameLocation":"2015:1:20","nodeType":"VariableDeclaration","scope":4434,"src":"2007:9:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4416,"name":"uint256","nodeType":"ElementaryTypeName","src":"2007:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4418,"nodeType":"VariableDeclarationStatement","src":"2007:9:20"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":4424,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"2040:3:20","subExpression":{"id":4423,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4417,"src":"2040:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4425,"nodeType":"ExpressionStatement","src":"2040:3:20"},"nodeType":"ForStatement","src":"2002:97:20"}]},"id":4436,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4405,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4399,"mutability":"mutable","name":"anEntryPoint","nameLocation":"1864:12:20","nodeType":"VariableDeclaration","scope":4436,"src":"1852:24:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"},"typeName":{"id":4398,"nodeType":"UserDefinedTypeName","pathNode":{"id":4397,"name":"IEntryPoint","nameLocations":["1852:11:20"],"nodeType":"IdentifierPath","referencedDeclaration":3566,"src":"1852:11:20"},"referencedDeclaration":3566,"src":"1852:11:20","typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"visibility":"internal"},{"constant":false,"id":4401,"mutability":"mutable","name":"admin","nameLocation":"1886:5:20","nodeType":"VariableDeclaration","scope":4436,"src":"1878:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4400,"name":"address","nodeType":"ElementaryTypeName","src":"1878:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4404,"mutability":"mutable","name":"executors","nameLocation":"1910:9:20","nodeType":"VariableDeclaration","scope":4436,"src":"1893:26:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_memory_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":4402,"name":"address","nodeType":"ElementaryTypeName","src":"1893:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4403,"nodeType":"ArrayTypeName","src":"1893:9:20","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"}],"src":"1851:69:20"},"returnParameters":{"id":4406,"nodeType":"ParameterList","parameters":[],"src":"1921:0:20"},"scope":4776,"src":"1840:263:20","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":4490,"nodeType":"Block","src":"2263:705:20","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":4448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4441,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2273:3:20","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2277:6:20","memberName":"sender","nodeType":"MemberAccess","src":"2273:10:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":4445,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[4392],"referencedDeclaration":4392,"src":"2295:10:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$3566_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":4446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2295:12:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}],"id":4444,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2287:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4443,"name":"address","nodeType":"ElementaryTypeName","src":"2287:7:20","typeDescriptions":{}}},"id":4447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2287:21:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2273:35:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4474,"nodeType":"IfStatement","src":"2269:581:20","trueBody":{"id":4473,"nodeType":"Block","src":"2310:540:20","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":4455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4450,"name":"_userOpSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4369,"src":"2326:13:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":4453,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2351:1:20","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":4452,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2343:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4451,"name":"address","nodeType":"ElementaryTypeName","src":"2343:7:20","typeDescriptions":{}}},"id":4454,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2343:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2326:27:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":4456,"name":"UserOpSignerNotSet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4375,"src":"2355:18:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":4457,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2355:20:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":4449,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2318:7:20","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":4458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2318:58:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4459,"nodeType":"ExpressionStatement","src":"2318:58:20"},{"expression":{"id":4462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4460,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4439,"src":"2384:6:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4461,"name":"_userOpSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4369,"src":"2393:13:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2384:22:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4463,"nodeType":"ExpressionStatement","src":"2384:22:20"},{"expression":{"id":4469,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4464,"name":"_userOpSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4369,"src":"2796:13:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"30","id":4467,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2820:1:20","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":4466,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2812:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4465,"name":"address","nodeType":"ElementaryTypeName","src":"2812:7:20","typeDescriptions":{}}},"id":4468,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2812:10:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2796:26:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4470,"nodeType":"ExpressionStatement","src":"2796:26:20"},{"expression":{"id":4471,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4439,"src":"2837:6:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4440,"id":4472,"nodeType":"Return","src":"2830:13:20"}]}},{"expression":{"arguments":[{"arguments":[{"id":4477,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4364,"src":"2871:13:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":4478,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2886:3:20","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2890:6:20","memberName":"sender","nodeType":"MemberAccess","src":"2886:10:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":4476,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19512,"src":"2863:7:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":4480,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2863:34:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":4482,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2928:3:20","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4483,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2932:6:20","memberName":"sender","nodeType":"MemberAccess","src":"2928:10:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4481,"name":"RequiredEntryPointOrExecutor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4373,"src":"2899:28:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":4484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2899:40:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":4475,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2855:7:20","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":4485,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2855:85:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4486,"nodeType":"ExpressionStatement","src":"2855:85:20"},{"expression":{"expression":{"id":4487,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2953:3:20","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4488,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2957:6:20","memberName":"sender","nodeType":"MemberAccess","src":"2953:10:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":4440,"id":4489,"nodeType":"Return","src":"2946:17:20"}]},"id":4491,"implemented":true,"kind":"function","modifiers":[],"name":"_requireFromEntryPointOrExecutor","nameLocation":"2194:32:20","nodeType":"FunctionDefinition","parameters":{"id":4437,"nodeType":"ParameterList","parameters":[],"src":"2226:2:20"},"returnParameters":{"id":4440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4439,"mutability":"mutable","name":"sender","nameLocation":"2255:6:20","nodeType":"VariableDeclaration","scope":4491,"src":"2247:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4438,"name":"address","nodeType":"ElementaryTypeName","src":"2247:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2246:16:20"},"scope":4776,"src":"2185:783:20","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":4527,"nodeType":"Block","src":"3279:218:20","statements":[{"assignments":[4502],"declarations":[{"constant":false,"id":4502,"mutability":"mutable","name":"sender","nameLocation":"3293:6:20","nodeType":"VariableDeclaration","scope":4527,"src":"3285:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4501,"name":"address","nodeType":"ElementaryTypeName","src":"3285:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4505,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4503,"name":"_requireFromEntryPointOrExecutor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4491,"src":"3302:32:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$_t_address_$","typeString":"function () returns (address)"}},"id":4504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3302:34:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3285:51:20"},{"expression":{"arguments":[{"arguments":[{"id":4508,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4494,"src":"3369:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4507,"name":"_isTrustedByTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4723,"src":"3350:18:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":4509,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3350:24:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":4511,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4494,"src":"3406:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4510,"name":"CanCallOnlyIfTrustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4379,"src":"3376:29:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":4512,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3376:35:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":4506,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3342:7:20","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":4513,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3342:70:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4514,"nodeType":"ExpressionStatement","src":"3342:70:20"},{"expression":{"arguments":[{"id":4518,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4494,"src":"3448:4:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":4521,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4498,"src":"3471:4:20","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":4522,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4502,"src":"3477:6:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":4519,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3454:3:20","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":4520,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3458:12:20","memberName":"encodePacked","nodeType":"MemberAccess","src":"3454:16:20","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4523,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3454:30:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":4524,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4496,"src":"3486:5:20","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":4515,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26046,"src":"3418:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$26046_$","typeString":"type(library Address)"}},"id":4517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3426:21:20","memberName":"functionCallWithValue","nodeType":"MemberAccess","referencedDeclaration":25828,"src":"3418:29:20","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":4525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3418:74:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4526,"nodeType":"ExpressionStatement","src":"3418:74:20"}]},"documentation":{"id":4492,"nodeType":"StructuredDocumentation","src":"2972:228:20","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":4528,"implemented":true,"kind":"function","modifiers":[],"name":"execute","nameLocation":"3212:7:20","nodeType":"FunctionDefinition","parameters":{"id":4499,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4494,"mutability":"mutable","name":"dest","nameLocation":"3228:4:20","nodeType":"VariableDeclaration","scope":4528,"src":"3220:12:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4493,"name":"address","nodeType":"ElementaryTypeName","src":"3220:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4496,"mutability":"mutable","name":"value","nameLocation":"3242:5:20","nodeType":"VariableDeclaration","scope":4528,"src":"3234:13:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4495,"name":"uint256","nodeType":"ElementaryTypeName","src":"3234:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4498,"mutability":"mutable","name":"func","nameLocation":"3264:4:20","nodeType":"VariableDeclaration","scope":4528,"src":"3249:19:20","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":4497,"name":"bytes","nodeType":"ElementaryTypeName","src":"3249:5:20","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3219:50:20"},"returnParameters":{"id":4500,"nodeType":"ParameterList","parameters":[],"src":"3279:0:20"},"scope":4776,"src":"3203:294:20","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":4637,"nodeType":"Block","src":"3973:523:20","statements":[{"assignments":[4542],"declarations":[{"constant":false,"id":4542,"mutability":"mutable","name":"sender","nameLocation":"3987:6:20","nodeType":"VariableDeclaration","scope":4637,"src":"3979:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4541,"name":"address","nodeType":"ElementaryTypeName","src":"3979:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4545,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4543,"name":"_requireFromEntryPointOrExecutor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4491,"src":"3996:32:20","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$_t_address_$","typeString":"function () returns (address)"}},"id":4544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3996:34:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3979:51:20"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4562,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4550,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4546,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4532,"src":"4040:4:20","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4045:6:20","memberName":"length","nodeType":"MemberAccess","src":"4040:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":4548,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4538,"src":"4055:4:20","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":4549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4060:6:20","memberName":"length","nodeType":"MemberAccess","src":"4055:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4040:26:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4560,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4551,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4535,"src":"4071:5:20","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":4552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4077:6:20","memberName":"length","nodeType":"MemberAccess","src":"4071:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":4553,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4087:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4071:17:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4559,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4555,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4535,"src":"4092:5:20","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":4556,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4098:6:20","memberName":"length","nodeType":"MemberAccess","src":"4092:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":4557,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4538,"src":"4108:4:20","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":4558,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4113:6:20","memberName":"length","nodeType":"MemberAccess","src":"4108:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4092:27:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4071:48:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":4561,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4070:50:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4040:80:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4566,"nodeType":"IfStatement","src":"4036:111:20","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":4563,"name":"WrongArrayLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4381,"src":"4129:16:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":4564,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4129:18:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":4565,"nodeType":"RevertStatement","src":"4122:25:20"}},{"body":{"id":4635,"nodeType":"Block","src":"4195:297:20","statements":[{"expression":{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4579,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"4220:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4580,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4225:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4220:6:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4601,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":4595,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":4587,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4532,"src":"4260:4:20","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4591,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4588,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"4265:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":4589,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4269:1:20","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4265:5:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4260:11:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"baseExpression":{"id":4592,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4532,"src":"4275:4:20","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4594,"indexExpression":{"id":4593,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"4280:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4275:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4260:22:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"baseExpression":{"id":4597,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4532,"src":"4305:4:20","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4599,"indexExpression":{"id":4598,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"4310:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4305:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4596,"name":"_isTrustedByTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4723,"src":"4286:18:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":4600,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4286:27:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4260:53:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":4602,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4259:55:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4220:94:20","trueExpression":{"arguments":[{"baseExpression":{"id":4583,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4532,"src":"4248:4:20","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4585,"indexExpression":{"hexValue":"30","id":4584,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4253:1:20","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:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4582,"name":"_isTrustedByTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4723,"src":"4229:18:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":4586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4229:27:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"baseExpression":{"id":4605,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4532,"src":"4354:4:20","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4607,"indexExpression":{"id":4606,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"4359:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4354:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4604,"name":"CanCallOnlyIfTrustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4379,"src":"4324:29:20","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":4608,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4324:38:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":4578,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4203:7:20","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":4609,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4203:167:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4610,"nodeType":"ExpressionStatement","src":"4203:167:20"},{"expression":{"arguments":[{"baseExpression":{"id":4614,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4532,"src":"4408:4:20","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4616,"indexExpression":{"id":4615,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"4413:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4408:7:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"baseExpression":{"id":4619,"name":"func","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4538,"src":"4434:4:20","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":4621,"indexExpression":{"id":4620,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"4439:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4434:7:20","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":4622,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4542,"src":"4443:6:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":4617,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4417:3:20","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":4618,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4421:12:20","memberName":"encodePacked","nodeType":"MemberAccess","src":"4417:16:20","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4623,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4417:33:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4624,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4535,"src":"4452:5:20","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":4625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4458:6:20","memberName":"length","nodeType":"MemberAccess","src":"4452:12:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4626,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4468:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4452:17:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"baseExpression":{"id":4629,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4535,"src":"4476:5:20","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[] calldata"}},"id":4631,"indexExpression":{"id":4630,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"4482:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4476:8:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4452:32:20","trueExpression":{"hexValue":"30","id":4628,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4472:1:20","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":4611,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26046,"src":"4378:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$26046_$","typeString":"type(library Address)"}},"id":4613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4386:21:20","memberName":"functionCallWithValue","nodeType":"MemberAccess","referencedDeclaration":25828,"src":"4378:29:20","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":4633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4378:107:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4634,"nodeType":"ExpressionStatement","src":"4378:107:20"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4571,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"4173:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":4572,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4532,"src":"4177:4:20","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":4573,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4182:6:20","memberName":"length","nodeType":"MemberAccess","src":"4177:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4173:15:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4636,"initializationExpression":{"assignments":[4568],"declarations":[{"constant":false,"id":4568,"mutability":"mutable","name":"i","nameLocation":"4166:1:20","nodeType":"VariableDeclaration","scope":4636,"src":"4158:9:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4567,"name":"uint256","nodeType":"ElementaryTypeName","src":"4158:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4570,"initialValue":{"hexValue":"30","id":4569,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4170:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"4158:13:20"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":4576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"4190:3:20","subExpression":{"id":4575,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"4190:1:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4577,"nodeType":"ExpressionStatement","src":"4190:3:20"},"nodeType":"ForStatement","src":"4153:339:20"}]},"documentation":{"id":4529,"nodeType":"StructuredDocumentation","src":"3501:364:20","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":4638,"implemented":true,"kind":"function","modifiers":[],"name":"executeBatch","nameLocation":"3877:12:20","nodeType":"FunctionDefinition","parameters":{"id":4539,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4532,"mutability":"mutable","name":"dest","nameLocation":"3909:4:20","nodeType":"VariableDeclaration","scope":4638,"src":"3890:23:20","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":4530,"name":"address","nodeType":"ElementaryTypeName","src":"3890:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4531,"nodeType":"ArrayTypeName","src":"3890:9:20","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":4535,"mutability":"mutable","name":"value","nameLocation":"3934:5:20","nodeType":"VariableDeclaration","scope":4638,"src":"3915:24:20","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4533,"name":"uint256","nodeType":"ElementaryTypeName","src":"3915:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4534,"nodeType":"ArrayTypeName","src":"3915:9:20","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"},{"constant":false,"id":4538,"mutability":"mutable","name":"func","nameLocation":"3958:4:20","nodeType":"VariableDeclaration","scope":4638,"src":"3941:21:20","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":4536,"name":"bytes","nodeType":"ElementaryTypeName","src":"3941:5:20","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":4537,"nodeType":"ArrayTypeName","src":"3941:7:20","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"3889:74:20"},"returnParameters":{"id":4540,"nodeType":"ParameterList","parameters":[],"src":"3973:0:20"},"scope":4776,"src":"3868:628:20","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[97],"body":{"id":4680,"nodeType":"Block","src":"4703:371:20","statements":[{"assignments":[4651],"declarations":[{"constant":false,"id":4651,"mutability":"mutable","name":"hash","nameLocation":"4717:4:20","nodeType":"VariableDeclaration","scope":4680,"src":"4709:12:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4650,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4709:7:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4656,"initialValue":{"arguments":[{"id":4654,"name":"userOpHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4644,"src":"4764:10:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4652,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33299,"src":"4724:16:20","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_MessageHashUtils_$33299_$","typeString":"type(library MessageHashUtils)"}},"id":4653,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4741:22:20","memberName":"toEthSignedMessageHash","nodeType":"MemberAccess","referencedDeclaration":33228,"src":"4724:39:20","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) pure returns (bytes32)"}},"id":4655,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4724:51:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"4709:66:20"},{"assignments":[4658],"declarations":[{"constant":false,"id":4658,"mutability":"mutable","name":"recovered","nameLocation":"4789:9:20","nodeType":"VariableDeclaration","scope":4680,"src":"4781:17:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4657,"name":"address","nodeType":"ElementaryTypeName","src":"4781:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4665,"initialValue":{"arguments":[{"id":4661,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4651,"src":"4815:4:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":4662,"name":"userOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4642,"src":"4821:6:20","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation calldata"}},"id":4663,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4828:9:20","memberName":"signature","nodeType":"MemberAccess","referencedDeclaration":3747,"src":"4821:16:20","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":4659,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33173,"src":"4801:5:20","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$33173_$","typeString":"type(library ECDSA)"}},"id":4660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4807:7:20","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":32871,"src":"4801:13:20","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes32,bytes memory) pure returns (address)"}},"id":4664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4801:37:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4781:57:20"},{"condition":{"id":4670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4848:34:20","subExpression":{"arguments":[{"id":4667,"name":"EXECUTOR_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4364,"src":"4857:13:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4668,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4658,"src":"4872:9:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":4666,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19512,"src":"4849:7:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":4669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4849:33:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4673,"nodeType":"IfStatement","src":"4844:68:20","trueBody":{"expression":{"id":4671,"name":"SIG_VALIDATION_FAILED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2241,"src":"4891:21:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4649,"id":4672,"nodeType":"Return","src":"4884:28:20"}},{"expression":{"id":4676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4674,"name":"_userOpSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4369,"src":"5009:13:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4675,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4658,"src":"5025:9:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5009:25:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4677,"nodeType":"ExpressionStatement","src":"5009:25:20"},{"expression":{"id":4678,"name":"SIG_VALIDATION_SUCCESS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2244,"src":"5047:22:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4649,"id":4679,"nodeType":"Return","src":"5040:29:20"}]},"documentation":{"id":4639,"nodeType":"StructuredDocumentation","src":"4500:44:20","text":"implement template method of BaseAccount"},"id":4681,"implemented":true,"kind":"function","modifiers":[],"name":"_validateSignature","nameLocation":"4556:18:20","nodeType":"FunctionDefinition","overrides":{"id":4646,"nodeType":"OverrideSpecifier","overrides":[],"src":"4661:8:20"},"parameters":{"id":4645,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4642,"mutability":"mutable","name":"userOp","nameLocation":"4609:6:20","nodeType":"VariableDeclaration","scope":4681,"src":"4580:35:20","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_calldata_ptr","typeString":"struct PackedUserOperation"},"typeName":{"id":4641,"nodeType":"UserDefinedTypeName","pathNode":{"id":4640,"name":"PackedUserOperation","nameLocations":["4580:19:20"],"nodeType":"IdentifierPath","referencedDeclaration":3748,"src":"4580:19:20"},"referencedDeclaration":3748,"src":"4580:19:20","typeDescriptions":{"typeIdentifier":"t_struct$_PackedUserOperation_$3748_storage_ptr","typeString":"struct PackedUserOperation"}},"visibility":"internal"},{"constant":false,"id":4644,"mutability":"mutable","name":"userOpHash","nameLocation":"4629:10:20","nodeType":"VariableDeclaration","scope":4681,"src":"4621:18:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4643,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4621:7:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4574:69:20"},"returnParameters":{"id":4649,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4648,"mutability":"mutable","name":"validationData","nameLocation":"4687:14:20","nodeType":"VariableDeclaration","scope":4681,"src":"4679:22:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4647,"name":"uint256","nodeType":"ElementaryTypeName","src":"4679:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4678:24:20"},"scope":4776,"src":"4547:527:20","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":4722,"nodeType":"Block","src":"5413:980:20","statements":[{"assignments":[4690],"declarations":[{"constant":false,"id":4690,"mutability":"mutable","name":"encodedParams","nameLocation":"5432:13:20","nodeType":"VariableDeclaration","scope":4722,"src":"5419:26:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4689,"name":"bytes","nodeType":"ElementaryTypeName","src":"5419:5:20","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":4701,"initialValue":{"arguments":[{"expression":{"id":4693,"name":"ERC2771Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22788,"src":"5463:14:20","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC2771Context_$22788_$","typeString":"type(contract ERC2771Context)"}},"id":4694,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5478:18:20","memberName":"isTrustedForwarder","nodeType":"MemberAccess","referencedDeclaration":22687,"src":"5463:33:20","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$_t_address_$returns$_t_bool_$","typeString":"function ERC2771Context.isTrustedForwarder(address) view returns (bool)"}},{"components":[{"arguments":[{"id":4697,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5507:4:20","typeDescriptions":{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$4776","typeString":"contract ERC2771ForwarderAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$4776","typeString":"contract ERC2771ForwarderAccount"}],"id":4696,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5499:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4695,"name":"address","nodeType":"ElementaryTypeName","src":"5499:7:20","typeDescriptions":{}}},"id":4698,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5499:13:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":4699,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5498:15:20","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":4691,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"5448:3:20","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":4692,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5452:10:20","memberName":"encodeCall","nodeType":"MemberAccess","src":"5448:14:20","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4700,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5448:66:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"5419:95:20"},{"assignments":[4703],"declarations":[{"constant":false,"id":4703,"mutability":"mutable","name":"success","nameLocation":"5526:7:20","nodeType":"VariableDeclaration","scope":4722,"src":"5521:12:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4702,"name":"bool","nodeType":"ElementaryTypeName","src":"5521:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":4704,"nodeType":"VariableDeclarationStatement","src":"5521:12:20"},{"assignments":[4706],"declarations":[{"constant":false,"id":4706,"mutability":"mutable","name":"returnSize","nameLocation":"5547:10:20","nodeType":"VariableDeclaration","scope":4722,"src":"5539:18:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4705,"name":"uint256","nodeType":"ElementaryTypeName","src":"5539:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4707,"nodeType":"VariableDeclarationStatement","src":"5539:18:20"},{"assignments":[4709],"declarations":[{"constant":false,"id":4709,"mutability":"mutable","name":"returnValue","nameLocation":"5571:11:20","nodeType":"VariableDeclaration","scope":4722,"src":"5563:19:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4708,"name":"uint256","nodeType":"ElementaryTypeName","src":"5563:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4710,"nodeType":"VariableDeclarationStatement","src":"5563:19:20"},{"AST":{"nativeSrc":"5665:662:20","nodeType":"YulBlock","src":"5665:662:20","statements":[{"nativeSrc":"6161:93:20","nodeType":"YulAssignment","src":"6161:93:20","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"6183:3:20","nodeType":"YulIdentifier","src":"6183:3:20"},"nativeSrc":"6183:5:20","nodeType":"YulFunctionCall","src":"6183:5:20"},{"name":"target","nativeSrc":"6190:6:20","nodeType":"YulIdentifier","src":"6190:6:20"},{"arguments":[{"name":"encodedParams","nativeSrc":"6202:13:20","nodeType":"YulIdentifier","src":"6202:13:20"},{"kind":"number","nativeSrc":"6217:4:20","nodeType":"YulLiteral","src":"6217:4:20","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6198:3:20","nodeType":"YulIdentifier","src":"6198:3:20"},"nativeSrc":"6198:24:20","nodeType":"YulFunctionCall","src":"6198:24:20"},{"arguments":[{"name":"encodedParams","nativeSrc":"6230:13:20","nodeType":"YulIdentifier","src":"6230:13:20"}],"functionName":{"name":"mload","nativeSrc":"6224:5:20","nodeType":"YulIdentifier","src":"6224:5:20"},"nativeSrc":"6224:20:20","nodeType":"YulFunctionCall","src":"6224:20:20"},{"kind":"number","nativeSrc":"6246:1:20","nodeType":"YulLiteral","src":"6246:1:20","type":"","value":"0"},{"kind":"number","nativeSrc":"6249:4:20","nodeType":"YulLiteral","src":"6249:4:20","type":"","value":"0x20"}],"functionName":{"name":"staticcall","nativeSrc":"6172:10:20","nodeType":"YulIdentifier","src":"6172:10:20"},"nativeSrc":"6172:82:20","nodeType":"YulFunctionCall","src":"6172:82:20"},"variableNames":[{"name":"success","nativeSrc":"6161:7:20","nodeType":"YulIdentifier","src":"6161:7:20"}]},{"nativeSrc":"6261:30:20","nodeType":"YulAssignment","src":"6261:30:20","value":{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"6275:14:20","nodeType":"YulIdentifier","src":"6275:14:20"},"nativeSrc":"6275:16:20","nodeType":"YulFunctionCall","src":"6275:16:20"},"variableNames":[{"name":"returnSize","nativeSrc":"6261:10:20","nodeType":"YulIdentifier","src":"6261:10:20"}]},{"nativeSrc":"6298:23:20","nodeType":"YulAssignment","src":"6298:23:20","value":{"arguments":[{"kind":"number","nativeSrc":"6319:1:20","nodeType":"YulLiteral","src":"6319:1:20","type":"","value":"0"}],"functionName":{"name":"mload","nativeSrc":"6313:5:20","nodeType":"YulIdentifier","src":"6313:5:20"},"nativeSrc":"6313:8:20","nodeType":"YulFunctionCall","src":"6313:8:20"},"variableNames":[{"name":"returnValue","nativeSrc":"6298:11:20","nodeType":"YulIdentifier","src":"6298:11:20"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":4690,"isOffset":false,"isSlot":false,"src":"6202:13:20","valueSize":1},{"declaration":4690,"isOffset":false,"isSlot":false,"src":"6230:13:20","valueSize":1},{"declaration":4706,"isOffset":false,"isSlot":false,"src":"6261:10:20","valueSize":1},{"declaration":4709,"isOffset":false,"isSlot":false,"src":"6298:11:20","valueSize":1},{"declaration":4703,"isOffset":false,"isSlot":false,"src":"6161:7:20","valueSize":1},{"declaration":4684,"isOffset":false,"isSlot":false,"src":"6190:6:20","valueSize":1}],"flags":["memory-safe"],"id":4711,"nodeType":"InlineAssembly","src":"5640:687:20"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4712,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4703,"src":"6340:7:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4715,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4713,"name":"returnSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4706,"src":"6351:10:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30783230","id":4714,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6365:4:20","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"src":"6351:18:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6340:29:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4717,"name":"returnValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4709,"src":"6373:11:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4718,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6387:1:20","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6373:15:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6340:48:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":4688,"id":4721,"nodeType":"Return","src":"6333:55:20"}]},"documentation":{"id":4682,"nodeType":"StructuredDocumentation","src":"5078:260:20","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":4723,"implemented":true,"kind":"function","modifiers":[],"name":"_isTrustedByTarget","nameLocation":"5350:18:20","nodeType":"FunctionDefinition","parameters":{"id":4685,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4684,"mutability":"mutable","name":"target","nameLocation":"5377:6:20","nodeType":"VariableDeclaration","scope":4723,"src":"5369:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4683,"name":"address","nodeType":"ElementaryTypeName","src":"5369:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5368:16:20"},"returnParameters":{"id":4688,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4687,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4723,"src":"5407:4:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4686,"name":"bool","nodeType":"ElementaryTypeName","src":"5407:4:20","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5406:6:20"},"scope":4776,"src":"5341:1052:20","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":4738,"nodeType":"Block","src":"6514:55:20","statements":[{"expression":{"arguments":[{"arguments":[{"id":4734,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"6558:4:20","typeDescriptions":{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$4776","typeString":"contract ERC2771ForwarderAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$4776","typeString":"contract ERC2771ForwarderAccount"}],"id":4733,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6550:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4732,"name":"address","nodeType":"ElementaryTypeName","src":"6550:7:20","typeDescriptions":{}}},"id":4735,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6550:13:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":4729,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[4392],"referencedDeclaration":4392,"src":"6527:10:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$3566_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":4730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6527:12:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"id":4731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6540:9:20","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":3695,"src":"6527:22:20","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":4736,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6527:37:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4728,"id":4737,"nodeType":"Return","src":"6520:44:20"}]},"documentation":{"id":4724,"nodeType":"StructuredDocumentation","src":"6397:62:20","text":" check current account deposit in the entryPoint"},"functionSelector":"c399ec88","id":4739,"implemented":true,"kind":"function","modifiers":[],"name":"getDeposit","nameLocation":"6471:10:20","nodeType":"FunctionDefinition","parameters":{"id":4725,"nodeType":"ParameterList","parameters":[],"src":"6481:2:20"},"returnParameters":{"id":4728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4727,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4739,"src":"6505:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4726,"name":"uint256","nodeType":"ElementaryTypeName","src":"6505:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6504:9:20"},"scope":4776,"src":"6462:107:20","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":4755,"nodeType":"Block","src":"6681:66:20","statements":[{"expression":{"arguments":[{"arguments":[{"id":4751,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"6736:4:20","typeDescriptions":{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$4776","typeString":"contract ERC2771ForwarderAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC2771ForwarderAccount_$4776","typeString":"contract ERC2771ForwarderAccount"}],"id":4750,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6728:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4749,"name":"address","nodeType":"ElementaryTypeName","src":"6728:7:20","typeDescriptions":{}}},"id":4752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6728:13:20","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":4743,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[4392],"referencedDeclaration":4392,"src":"6687:10:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$3566_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":4744,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6687:12:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"id":4745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6700:9:20","memberName":"depositTo","nodeType":"MemberAccess","referencedDeclaration":3701,"src":"6687:22:20","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_address_$returns$__$","typeString":"function (address) payable external"}},"id":4748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"expression":{"id":4746,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6717:3:20","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":4747,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6721:5:20","memberName":"value","nodeType":"MemberAccess","src":"6717:9:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"6687:40:20","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_address_$returns$__$value","typeString":"function (address) payable external"}},"id":4753,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6687:55:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4754,"nodeType":"ExpressionStatement","src":"6687:55:20"}]},"documentation":{"id":4740,"nodeType":"StructuredDocumentation","src":"6573:68:20","text":" deposit more funds for this account in the entryPoint"},"functionSelector":"4a58db19","id":4756,"implemented":true,"kind":"function","modifiers":[],"name":"addDeposit","nameLocation":"6653:10:20","nodeType":"FunctionDefinition","parameters":{"id":4741,"nodeType":"ParameterList","parameters":[],"src":"6663:2:20"},"returnParameters":{"id":4742,"nodeType":"ParameterList","parameters":[],"src":"6681:0:20"},"scope":4776,"src":"6644:103:20","stateMutability":"payable","virtual":false,"visibility":"public"},{"body":{"id":4774,"nodeType":"Block","src":"6994:59:20","statements":[{"expression":{"arguments":[{"id":4770,"name":"withdrawAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4759,"src":"7024:15:20","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},{"id":4771,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4761,"src":"7041:6:20","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":4767,"name":"entryPoint","nodeType":"Identifier","overloadedDeclarations":[4392],"referencedDeclaration":4392,"src":"7000:10:20","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IEntryPoint_$3566_$","typeString":"function () view returns (contract IEntryPoint)"}},"id":4768,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7000:12:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEntryPoint_$3566","typeString":"contract IEntryPoint"}},"id":4769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7013:10:20","memberName":"withdrawTo","nodeType":"MemberAccess","referencedDeclaration":3725,"src":"7000:23:20","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_payable_$_t_uint256_$returns$__$","typeString":"function (address payable,uint256) external"}},"id":4772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7000:48:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4773,"nodeType":"ExpressionStatement","src":"7000:48:20"}]},"documentation":{"id":4757,"nodeType":"StructuredDocumentation","src":"6751:133:20","text":" withdraw value from the account's deposit\n @param withdrawAddress target to send to\n @param amount to withdraw"},"functionSelector":"4d44560d","id":4775,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":4764,"name":"WITHDRAW_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4359,"src":"6979:13:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":4765,"kind":"modifierInvocation","modifierName":{"id":4763,"name":"onlyRole","nameLocations":["6970:8:20"],"nodeType":"IdentifierPath","referencedDeclaration":19472,"src":"6970:8:20"},"nodeType":"ModifierInvocation","src":"6970:23:20"}],"name":"withdrawDepositTo","nameLocation":"6896:17:20","nodeType":"FunctionDefinition","parameters":{"id":4762,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4759,"mutability":"mutable","name":"withdrawAddress","nameLocation":"6930:15:20","nodeType":"VariableDeclaration","scope":4775,"src":"6914:31:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":4758,"name":"address","nodeType":"ElementaryTypeName","src":"6914:15:20","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":4761,"mutability":"mutable","name":"amount","nameLocation":"6955:6:20","nodeType":"VariableDeclaration","scope":4775,"src":"6947:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4760,"name":"uint256","nodeType":"ElementaryTypeName","src":"6947:7:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6913:49:20"},"returnParameters":{"id":4766,"nodeType":"ParameterList","parameters":[],"src":"6994:0:20"},"scope":4776,"src":"6887:166:20","stateMutability":"nonpayable","virtual":false,"visibility":"public"}],"scope":4777,"src":"1158:5897:20","usedErrors":[4373,4375,4379,4381,19737,19740,25668,26799,26802,32725,32730,32735],"usedEvents":[19749,19758,19767]}],"src":"39:7017:20"},"id":20},"@ensuro/core/contracts/ETKLib.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/ETKLib.sol","exportedSymbols":{"ETKLib":[5761],"Math":[35187],"SafeCast":[36952]},"id":5762,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":4778,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"40:24:21"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":4780,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5762,"sourceUnit":35188,"src":"66:65:21","symbolAliases":[{"foreign":{"id":4779,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"74:4:21","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":4782,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5762,"sourceUnit":36953,"src":"132:73:21","symbolAliases":[{"foreign":{"id":4781,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"140:8:21","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"ETKLib","contractDependencies":[],"contractKind":"library","documentation":{"id":4783,"nodeType":"StructuredDocumentation","src":"207:171:21","text":" @title ETKLib\n @notice Library with different datatypes and utils used by the eToken contract\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":5761,"linearizedBaseContracts":[5761],"name":"ETKLib","nameLocation":"387:6:21","nodeType":"ContractDefinition","nodes":[{"global":false,"id":4786,"libraryName":{"id":4784,"name":"SafeCast","nameLocations":["404:8:21"],"nodeType":"IdentifierPath","referencedDeclaration":36952,"src":"404:8:21"},"nodeType":"UsingForDirective","src":"398:27:21","typeName":{"id":4785,"name":"uint256","nodeType":"ElementaryTypeName","src":"417:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"global":false,"id":4790,"libraryName":{"id":4787,"name":"ETKLib","nameLocations":["434:6:21"],"nodeType":"IdentifierPath","referencedDeclaration":5761,"src":"434:6:21"},"nodeType":"UsingForDirective","src":"428:23:21","typeName":{"id":4789,"nodeType":"UserDefinedTypeName","pathNode":{"id":4788,"name":"Scale","nameLocations":["445:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"445:5:21"},"referencedDeclaration":4792,"src":"445:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}}},{"canonicalName":"ETKLib.Scale","id":4792,"name":"Scale","nameLocation":"460:5:21","nodeType":"UserDefinedValueTypeDefinition","src":"455:21:21","underlyingType":{"id":4791,"name":"uint96","nodeType":"ElementaryTypeName","src":"469:6:21","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}},{"constant":true,"id":4795,"mutability":"constant","name":"SECONDS_PER_YEAR","nameLocation":"505:16:21","nodeType":"VariableDeclaration","scope":5761,"src":"480:52:21","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4793,"name":"uint256","nodeType":"ElementaryTypeName","src":"480:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"333635","id":4794,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"524:8:21","subdenomination":"days","typeDescriptions":{"typeIdentifier":"t_rational_31536000_by_1","typeString":"int_const 31536000"},"value":"365"},"visibility":"private"},{"constant":true,"id":4798,"mutability":"constant","name":"MIN_SCALE","nameLocation":"561:9:21","nodeType":"VariableDeclaration","scope":5761,"src":"536:40:21","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4796,"name":"uint256","nodeType":"ElementaryTypeName","src":"536:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"316538","id":4797,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"573:3:21","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"value":"1e8"},"visibility":"private"},{"constant":true,"id":4805,"mutability":"constant","name":"SCALE_ONE","nameLocation":"635:9:21","nodeType":"VariableDeclaration","scope":5761,"src":"612:51:21","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":4800,"nodeType":"UserDefinedTypeName","pathNode":{"id":4799,"name":"Scale","nameLocations":["612:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"612:5:21"},"referencedDeclaration":4792,"src":"612:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"value":{"arguments":[{"hexValue":"31653138","id":4803,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"658:4:21","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"}],"expression":{"id":4801,"name":"Scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4792,"src":"647:5:21","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Scale_$4792_$","typeString":"type(ETKLib.Scale)"}},"id":4802,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"653:4:21","memberName":"wrap","nodeType":"MemberAccess","src":"647:10:21","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint96_$returns$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (uint96) pure returns (ETKLib.Scale)"}},"id":4804,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"647:16:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"private"},{"constant":true,"id":4808,"mutability":"constant","name":"WAD","nameLocation":"693:3:21","nodeType":"VariableDeclaration","scope":5761,"src":"667:36:21","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4806,"name":"uint256","nodeType":"ElementaryTypeName","src":"667:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31653138","id":4807,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"699:4:21","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"visibility":"internal"},{"constant":true,"id":4811,"mutability":"constant","name":"SWAD","nameLocation":"732:4:21","nodeType":"VariableDeclaration","scope":5761,"src":"707:36:21","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4809,"name":"int256","nodeType":"ElementaryTypeName","src":"707:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"value":{"hexValue":"31653138","id":4810,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"739:4:21","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"visibility":"internal"},{"canonicalName":"ETKLib.ScaledAmount","id":4819,"members":[{"constant":false,"id":4813,"mutability":"mutable","name":"amount","nameLocation":"832:6:21","nodeType":"VariableDeclaration","scope":4819,"src":"824:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":4812,"name":"uint128","nodeType":"ElementaryTypeName","src":"824:7:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":4816,"mutability":"mutable","name":"scale","nameLocation":"915:5:21","nodeType":"VariableDeclaration","scope":4819,"src":"909:11:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":4815,"nodeType":"UserDefinedTypeName","pathNode":{"id":4814,"name":"Scale","nameLocations":["909:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"909:5:21"},"referencedDeclaration":4792,"src":"909:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":4818,"mutability":"mutable","name":"lastUpdate","nameLocation":"1025:10:21","nodeType":"VariableDeclaration","scope":4819,"src":"1018:17:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":4817,"name":"uint32","nodeType":"ElementaryTypeName","src":"1018:6:21","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"name":"ScaledAmount","nameLocation":"805:12:21","nodeType":"StructDefinition","scope":5761,"src":"798:359:21","visibility":"public"},{"canonicalName":"ETKLib.Scr","id":4824,"members":[{"constant":false,"id":4821,"mutability":"mutable","name":"scr","nameLocation":"1186:3:21","nodeType":"VariableDeclaration","scope":4824,"src":"1178:11:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":4820,"name":"uint128","nodeType":"ElementaryTypeName","src":"1178:7:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":4823,"mutability":"mutable","name":"interestRate","nameLocation":"1284:12:21","nodeType":"VariableDeclaration","scope":4824,"src":"1276:20:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":4822,"name":"uint128","nodeType":"ElementaryTypeName","src":"1276:7:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"name":"Scr","nameLocation":"1168:3:21","nodeType":"StructDefinition","scope":5761,"src":"1161:207:21","visibility":"public"},{"errorSelector":"6c53fb2b","id":4828,"name":"ScaleTooSmall","nameLocation":"1378:13:21","nodeType":"ErrorDefinition","parameters":{"id":4827,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4826,"mutability":"mutable","name":"rejectedScale","nameLocation":"1400:13:21","nodeType":"VariableDeclaration","scope":4828,"src":"1392:21:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4825,"name":"uint256","nodeType":"ElementaryTypeName","src":"1392:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1391:23:21"},"src":"1372:43:21"},{"body":{"id":4848,"nodeType":"Block","src":"1678:53:21","statements":[{"id":4847,"nodeType":"UncheckedBlock","src":"1684:43:21","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4845,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4842,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4840,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4831,"src":"1710:1:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4841,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4833,"src":"1714:1:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1710:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4843,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1709:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":4844,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4835,"src":"1719:1:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1709:11:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4839,"id":4846,"nodeType":"Return","src":"1702:18:21"}]}]},"documentation":{"id":4829,"nodeType":"StructuredDocumentation","src":"1467:126:21","text":" @notice unchecked version of Math.mulDiv that returns the result of a * b / c.\n Assumes a * b < 2**256"},"id":4849,"implemented":true,"kind":"function","modifiers":[],"name":"_mulDiv","nameLocation":"1605:7:21","nodeType":"FunctionDefinition","parameters":{"id":4836,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4831,"mutability":"mutable","name":"a","nameLocation":"1621:1:21","nodeType":"VariableDeclaration","scope":4849,"src":"1613:9:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4830,"name":"uint256","nodeType":"ElementaryTypeName","src":"1613:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4833,"mutability":"mutable","name":"b","nameLocation":"1632:1:21","nodeType":"VariableDeclaration","scope":4849,"src":"1624:9:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4832,"name":"uint256","nodeType":"ElementaryTypeName","src":"1624:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4835,"mutability":"mutable","name":"c","nameLocation":"1643:1:21","nodeType":"VariableDeclaration","scope":4849,"src":"1635:9:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4834,"name":"uint256","nodeType":"ElementaryTypeName","src":"1635:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1612:33:21"},"returnParameters":{"id":4839,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4838,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4849,"src":"1669:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4837,"name":"uint256","nodeType":"ElementaryTypeName","src":"1669:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1668:9:21"},"scope":5761,"src":"1596:135:21","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4869,"nodeType":"Block","src":"1959:53:21","statements":[{"id":4868,"nodeType":"UncheckedBlock","src":"1965:43:21","statements":[{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4866,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4863,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4861,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4852,"src":"1991:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4862,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4854,"src":"1995:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1991:5:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":4864,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1990:7:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":4865,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4856,"src":"2000:1:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1990:11:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":4860,"id":4867,"nodeType":"Return","src":"1983:18:21"}]}]},"documentation":{"id":4850,"nodeType":"StructuredDocumentation","src":"1735:143:21","text":" @notice unchecked version of Math.mulDiv that returns the result of a * b / c. (signed version)\n Assumes a * b < 2**256"},"id":4870,"implemented":true,"kind":"function","modifiers":[],"name":"_mulDiv","nameLocation":"1890:7:21","nodeType":"FunctionDefinition","parameters":{"id":4857,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4852,"mutability":"mutable","name":"a","nameLocation":"1905:1:21","nodeType":"VariableDeclaration","scope":4870,"src":"1898:8:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4851,"name":"int256","nodeType":"ElementaryTypeName","src":"1898:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":4854,"mutability":"mutable","name":"b","nameLocation":"1915:1:21","nodeType":"VariableDeclaration","scope":4870,"src":"1908:8:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4853,"name":"int256","nodeType":"ElementaryTypeName","src":"1908:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":4856,"mutability":"mutable","name":"c","nameLocation":"1925:1:21","nodeType":"VariableDeclaration","scope":4870,"src":"1918:8:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4855,"name":"int256","nodeType":"ElementaryTypeName","src":"1918:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1897:30:21"},"returnParameters":{"id":4860,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4859,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4870,"src":"1951:6:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4858,"name":"int256","nodeType":"ElementaryTypeName","src":"1951:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1950:8:21"},"scope":5761,"src":"1881:131:21","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4901,"nodeType":"Block","src":"2277:92:21","statements":[{"id":4900,"nodeType":"UncheckedBlock","src":"2283:82:21","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4898,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4884,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4882,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4873,"src":"2309:1:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4883,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4875,"src":"2313:1:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2309:5:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4885,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2308:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":4886,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4877,"src":"2318:1:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2308:11:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":4891,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4873,"src":"2345:1:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4892,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4875,"src":"2348:1:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4893,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4877,"src":"2351:1:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4890,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"2338:6:21","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":4894,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2338:15:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4895,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2356:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2338:19:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":4888,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"2322:8:21","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":4889,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2331:6:21","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"2322:15:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":4897,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2322:36:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2308:50:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4881,"id":4899,"nodeType":"Return","src":"2301:57:21"}]}]},"documentation":{"id":4871,"nodeType":"StructuredDocumentation","src":"2016:172:21","text":" @notice unchecked version of Math.mulDiv that returns the result of a * b / c, rounding up when there is non-zero remainder.\n Assumes a * b < 2**256"},"id":4902,"implemented":true,"kind":"function","modifiers":[],"name":"_mulDivCeil","nameLocation":"2200:11:21","nodeType":"FunctionDefinition","parameters":{"id":4878,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4873,"mutability":"mutable","name":"a","nameLocation":"2220:1:21","nodeType":"VariableDeclaration","scope":4902,"src":"2212:9:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4872,"name":"uint256","nodeType":"ElementaryTypeName","src":"2212:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4875,"mutability":"mutable","name":"b","nameLocation":"2231:1:21","nodeType":"VariableDeclaration","scope":4902,"src":"2223:9:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4874,"name":"uint256","nodeType":"ElementaryTypeName","src":"2223:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4877,"mutability":"mutable","name":"c","nameLocation":"2242:1:21","nodeType":"VariableDeclaration","scope":4902,"src":"2234:9:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4876,"name":"uint256","nodeType":"ElementaryTypeName","src":"2234:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2211:33:21"},"returnParameters":{"id":4881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4880,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4902,"src":"2268:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4879,"name":"uint256","nodeType":"ElementaryTypeName","src":"2268:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2267:9:21"},"scope":5761,"src":"2191:178:21","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4921,"nodeType":"Block","src":"2846:63:21","statements":[{"expression":{"arguments":[{"id":4914,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4908,"src":"2867:12:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4915,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4906,"src":"2881:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":4916,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2887:9:21","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":5093,"src":"2881:15:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":4917,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2881:17:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4918,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"2900:3:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4913,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[4849,4870],"referencedDeclaration":4849,"src":"2859:7:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":4919,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2859:45:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4912,"id":4920,"nodeType":"Return","src":"2852:52:21"}]},"documentation":{"id":4903,"nodeType":"StructuredDocumentation","src":"2408:349:21","text":" @notice Converts a \"scaled amount\" (raw value, without applying earnings) to the current value after\n      after applying the scale.\n @param scaledAmount The `scaled amount` as the ones stored in `$._balances`\n @param scale        The scale to apply.\n @return The current amount, that results of `scaledAmount * scale`"},"id":4922,"implemented":true,"kind":"function","modifiers":[],"name":"toCurrent","nameLocation":"2769:9:21","nodeType":"FunctionDefinition","parameters":{"id":4909,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4906,"mutability":"mutable","name":"scale","nameLocation":"2785:5:21","nodeType":"VariableDeclaration","scope":4922,"src":"2779:11:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":4905,"nodeType":"UserDefinedTypeName","pathNode":{"id":4904,"name":"Scale","nameLocations":["2779:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"2779:5:21"},"referencedDeclaration":4792,"src":"2779:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":4908,"mutability":"mutable","name":"scaledAmount","nameLocation":"2800:12:21","nodeType":"VariableDeclaration","scope":4922,"src":"2792:20:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4907,"name":"uint256","nodeType":"ElementaryTypeName","src":"2792:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2778:35:21"},"returnParameters":{"id":4912,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4911,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4922,"src":"2837:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4910,"name":"uint256","nodeType":"ElementaryTypeName","src":"2837:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2836:9:21"},"scope":5761,"src":"2760:149:21","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4941,"nodeType":"Block","src":"3376:67:21","statements":[{"expression":{"arguments":[{"id":4934,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4928,"src":"3401:12:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4935,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4926,"src":"3415:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":4936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3421:9:21","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":5093,"src":"3415:15:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":4937,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3415:17:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4938,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"3434:3:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4933,"name":"_mulDivCeil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4902,"src":"3389:11:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":4939,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3389:49:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4932,"id":4940,"nodeType":"Return","src":"3382:56:21"}]},"documentation":{"id":4923,"nodeType":"StructuredDocumentation","src":"2913:370:21","text":" @notice Converts a \"scaled amount\" (raw value, without applying earnings) to the current value after\n      after applying the scale, rounding to the ceil\n @param scaledAmount The `scaled amount` as the ones stored in `$._balances`\n @param scale        The scale to apply.\n @return The current amount, that results of `scaledAmount * scale`"},"id":4942,"implemented":true,"kind":"function","modifiers":[],"name":"toCurrentCeil","nameLocation":"3295:13:21","nodeType":"FunctionDefinition","parameters":{"id":4929,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4926,"mutability":"mutable","name":"scale","nameLocation":"3315:5:21","nodeType":"VariableDeclaration","scope":4942,"src":"3309:11:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":4925,"nodeType":"UserDefinedTypeName","pathNode":{"id":4924,"name":"Scale","nameLocations":["3309:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"3309:5:21"},"referencedDeclaration":4792,"src":"3309:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":4928,"mutability":"mutable","name":"scaledAmount","nameLocation":"3330:12:21","nodeType":"VariableDeclaration","scope":4942,"src":"3322:20:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4927,"name":"uint256","nodeType":"ElementaryTypeName","src":"3322:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3308:35:21"},"returnParameters":{"id":4932,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4931,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4942,"src":"3367:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4930,"name":"uint256","nodeType":"ElementaryTypeName","src":"3367:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3366:9:21"},"scope":5761,"src":"3286:157:21","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4961,"nodeType":"Block","src":"3948:64:21","statements":[{"expression":{"arguments":[{"id":4954,"name":"currentAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4948,"src":"3969:13:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4955,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"3984:3:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4956,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4946,"src":"3989:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":4957,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3995:9:21","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":5093,"src":"3989:15:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":4958,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3989:17:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4953,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[4849,4870],"referencedDeclaration":4849,"src":"3961:7:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":4959,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3961:46:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4952,"id":4960,"nodeType":"Return","src":"3954:53:21"}]},"documentation":{"id":4943,"nodeType":"StructuredDocumentation","src":"3447:412:21","text":" @notice Converts a \"current amount\" (user-facing value, after applying earnings/scale) into a scaled amount (raw value).\n @dev Un-applies the scale (in WAD): `scaled = currentAmount * WAD / scale`.\n @param scale The scale (WAD) to un-apply.\n @param currentAmount The current amount as obtained from balanceOf() or totalSupply().\n @return scaledAmount The scaled amount (raw value)."},"id":4962,"implemented":true,"kind":"function","modifiers":[],"name":"toScaled","nameLocation":"3871:8:21","nodeType":"FunctionDefinition","parameters":{"id":4949,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4946,"mutability":"mutable","name":"scale","nameLocation":"3886:5:21","nodeType":"VariableDeclaration","scope":4962,"src":"3880:11:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":4945,"nodeType":"UserDefinedTypeName","pathNode":{"id":4944,"name":"Scale","nameLocations":["3880:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"3880:5:21"},"referencedDeclaration":4792,"src":"3880:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":4948,"mutability":"mutable","name":"currentAmount","nameLocation":"3901:13:21","nodeType":"VariableDeclaration","scope":4962,"src":"3893:21:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4947,"name":"uint256","nodeType":"ElementaryTypeName","src":"3893:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3879:36:21"},"returnParameters":{"id":4952,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4951,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4962,"src":"3939:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4950,"name":"uint256","nodeType":"ElementaryTypeName","src":"3939:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3938:9:21"},"scope":5761,"src":"3862:150:21","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4981,"nodeType":"Block","src":"4465:68:21","statements":[{"expression":{"arguments":[{"id":4974,"name":"currentAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4968,"src":"4490:13:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4975,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"4505:3:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4976,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4966,"src":"4510:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":4977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4516:9:21","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":5093,"src":"4510:15:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":4978,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4510:17:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4973,"name":"_mulDivCeil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4902,"src":"4478:11:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":4979,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4478:50:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4972,"id":4980,"nodeType":"Return","src":"4471:57:21"}]},"documentation":{"id":4963,"nodeType":"StructuredDocumentation","src":"4016:356:21","text":" @notice Same as {toScaled}, but rounds up when there is a non-zero remainder.\n @dev `scaled = ceil(currentAmount * WAD / scale)`.\n @param scale The scale (WAD) to un-apply.\n @param currentAmount The current amount as obtained from balanceOf() or totalSupply().\n @return scaledAmount The scaled amount (raw value), rounded up."},"id":4982,"implemented":true,"kind":"function","modifiers":[],"name":"toScaledCeil","nameLocation":"4384:12:21","nodeType":"FunctionDefinition","parameters":{"id":4969,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4966,"mutability":"mutable","name":"scale","nameLocation":"4403:5:21","nodeType":"VariableDeclaration","scope":4982,"src":"4397:11:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":4965,"nodeType":"UserDefinedTypeName","pathNode":{"id":4964,"name":"Scale","nameLocations":["4397:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"4397:5:21"},"referencedDeclaration":4792,"src":"4397:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":4968,"mutability":"mutable","name":"currentAmount","nameLocation":"4418:13:21","nodeType":"VariableDeclaration","scope":4982,"src":"4410:21:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4967,"name":"uint256","nodeType":"ElementaryTypeName","src":"4410:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4396:36:21"},"returnParameters":{"id":4972,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4971,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4982,"src":"4456:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4970,"name":"uint256","nodeType":"ElementaryTypeName","src":"4456:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4455:9:21"},"scope":5761,"src":"4375:158:21","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5009,"nodeType":"Block","src":"4825:86:21","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":4997,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4986,"src":"4857:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":4998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4863:9:21","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":5093,"src":"4857:15:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":4999,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4857:17:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5000,"name":"factor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4988,"src":"4876:6:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":5001,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"4885:3:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4876:12:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5003,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"4890:3:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4996,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[4849,4870],"referencedDeclaration":4849,"src":"4849:7:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":5004,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4849:45:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4895:8:21","memberName":"toUint96","nodeType":"MemberAccess","referencedDeclaration":35774,"src":"4849:54:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint96)"}},"id":5006,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4849:56:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"}],"expression":{"id":4994,"name":"Scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4792,"src":"4838:5:21","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Scale_$4792_$","typeString":"type(ETKLib.Scale)"}},"id":4995,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4844:4:21","memberName":"wrap","nodeType":"MemberAccess","src":"4838:10:21","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint96_$returns$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (uint96) pure returns (ETKLib.Scale)"}},"id":5007,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4838:68:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"functionReturnParameters":4993,"id":5008,"nodeType":"Return","src":"4831:75:21"}]},"documentation":{"id":4983,"nodeType":"StructuredDocumentation","src":"4537:203:21","text":" @notice Returns a `newScale = scale * (1 + factor)`\n @param scale The base scale.\n @param factor The multiplicative increment, in WAD.\n @return newScale The updated scale."},"id":5010,"implemented":true,"kind":"function","modifiers":[],"name":"grow","nameLocation":"4752:4:21","nodeType":"FunctionDefinition","parameters":{"id":4989,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4986,"mutability":"mutable","name":"scale","nameLocation":"4763:5:21","nodeType":"VariableDeclaration","scope":5010,"src":"4757:11:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":4985,"nodeType":"UserDefinedTypeName","pathNode":{"id":4984,"name":"Scale","nameLocations":["4757:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"4757:5:21"},"referencedDeclaration":4792,"src":"4757:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":4988,"mutability":"mutable","name":"factor","nameLocation":"4778:6:21","nodeType":"VariableDeclaration","scope":5010,"src":"4770:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4987,"name":"uint256","nodeType":"ElementaryTypeName","src":"4770:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4756:29:21"},"returnParameters":{"id":4993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4992,"mutability":"mutable","name":"newScale","nameLocation":"4815:8:21","nodeType":"VariableDeclaration","scope":5010,"src":"4809:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":4991,"nodeType":"UserDefinedTypeName","pathNode":{"id":4990,"name":"Scale","nameLocations":["4809:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"4809:5:21"},"referencedDeclaration":4792,"src":"4809:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"src":"4808:16:21"},"scope":5761,"src":"4743:168:21","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5034,"nodeType":"Block","src":"5207:69:21","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5028,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5024,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5014,"src":"5232:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":5025,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5238:9:21","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":5093,"src":"5232:15:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":5026,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5232:17:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":5027,"name":"factor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5016,"src":"5252:6:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5232:26:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5029,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5231:28:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5030,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5260:8:21","memberName":"toUint96","nodeType":"MemberAccess","referencedDeclaration":35774,"src":"5231:37:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint96)"}},"id":5031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5231:39:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"}],"expression":{"id":5022,"name":"Scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4792,"src":"5220:5:21","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Scale_$4792_$","typeString":"type(ETKLib.Scale)"}},"id":5023,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5226:4:21","memberName":"wrap","nodeType":"MemberAccess","src":"5220:10:21","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint96_$returns$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (uint96) pure returns (ETKLib.Scale)"}},"id":5032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5220:51:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"functionReturnParameters":5021,"id":5033,"nodeType":"Return","src":"5213:58:21"}]},"documentation":{"id":5011,"nodeType":"StructuredDocumentation","src":"4915:208:21","text":" @notice Returns a `newScale = scale + factor`.\n @param scale The base scale.\n @param factor The additive increment (same units as `scale`).\n @return newScale The updated scale."},"id":5035,"implemented":true,"kind":"function","modifiers":[],"name":"add","nameLocation":"5135:3:21","nodeType":"FunctionDefinition","parameters":{"id":5017,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5014,"mutability":"mutable","name":"scale","nameLocation":"5145:5:21","nodeType":"VariableDeclaration","scope":5035,"src":"5139:11:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":5013,"nodeType":"UserDefinedTypeName","pathNode":{"id":5012,"name":"Scale","nameLocations":["5139:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"5139:5:21"},"referencedDeclaration":4792,"src":"5139:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":5016,"mutability":"mutable","name":"factor","nameLocation":"5160:6:21","nodeType":"VariableDeclaration","scope":5035,"src":"5152:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5015,"name":"uint256","nodeType":"ElementaryTypeName","src":"5152:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5138:29:21"},"returnParameters":{"id":5021,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5020,"mutability":"mutable","name":"newScale","nameLocation":"5197:8:21","nodeType":"VariableDeclaration","scope":5035,"src":"5191:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":5019,"nodeType":"UserDefinedTypeName","pathNode":{"id":5018,"name":"Scale","nameLocations":["5191:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"5191:5:21"},"referencedDeclaration":4792,"src":"5191:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"src":"5190:16:21"},"scope":5761,"src":"5126:150:21","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5077,"nodeType":"Block","src":"5682:190:21","statements":[{"assignments":[5048],"declarations":[{"constant":false,"id":5048,"mutability":"mutable","name":"newScaleInt","nameLocation":"5696:11:21","nodeType":"VariableDeclaration","scope":5077,"src":"5688:19:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5047,"name":"uint256","nodeType":"ElementaryTypeName","src":"5688:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5060,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":5058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5053,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5039,"src":"5725:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":5054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5731:9:21","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":5093,"src":"5725:15:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":5055,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5725:17:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5052,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5718:6:21","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":5051,"name":"int256","nodeType":"ElementaryTypeName","src":"5718:6:21","typeDescriptions":{}}},"id":5056,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5718:25:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":5057,"name":"factor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5041,"src":"5746:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"5718:34:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":5050,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5710:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5049,"name":"uint256","nodeType":"ElementaryTypeName","src":"5710:7:21","typeDescriptions":{}}},"id":5059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5710:43:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5688:65:21"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5062,"name":"newScaleInt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5048,"src":"5767:11:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":5063,"name":"MIN_SCALE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4798,"src":"5782:9:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5767:24:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":5066,"name":"newScaleInt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5048,"src":"5807:11:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5065,"name":"ScaleTooSmall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4828,"src":"5793:13:21","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":5067,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5793:26:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":5061,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"5759:7:21","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":5068,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5759:61:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5069,"nodeType":"ExpressionStatement","src":"5759:61:21"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5072,"name":"newScaleInt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5048,"src":"5844:11:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5856:8:21","memberName":"toUint96","nodeType":"MemberAccess","referencedDeclaration":35774,"src":"5844:20:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint96)"}},"id":5074,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5844:22:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"}],"expression":{"id":5070,"name":"Scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4792,"src":"5833:5:21","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Scale_$4792_$","typeString":"type(ETKLib.Scale)"}},"id":5071,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5839:4:21","memberName":"wrap","nodeType":"MemberAccess","src":"5833:10:21","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint96_$returns$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (uint96) pure returns (ETKLib.Scale)"}},"id":5075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5833:34:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"functionReturnParameters":5046,"id":5076,"nodeType":"Return","src":"5826:41:21"}]},"documentation":{"id":5036,"nodeType":"StructuredDocumentation","src":"5280:319:21","text":" @notice Returns a `newScale = scale + factor`, allowing it to increase or decrease.\n         Reverts if the resulting scale would be below `MIN_SCALE`.\n @param scale The base scale.\n @param factor The signed additive increment (same units as `scale`).\n @return newScale The updated scale."},"id":5078,"implemented":true,"kind":"function","modifiers":[],"name":"add","nameLocation":"5611:3:21","nodeType":"FunctionDefinition","parameters":{"id":5042,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5039,"mutability":"mutable","name":"scale","nameLocation":"5621:5:21","nodeType":"VariableDeclaration","scope":5078,"src":"5615:11:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":5038,"nodeType":"UserDefinedTypeName","pathNode":{"id":5037,"name":"Scale","nameLocations":["5615:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"5615:5:21"},"referencedDeclaration":4792,"src":"5615:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"},{"constant":false,"id":5041,"mutability":"mutable","name":"factor","nameLocation":"5635:6:21","nodeType":"VariableDeclaration","scope":5078,"src":"5628:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":5040,"name":"int256","nodeType":"ElementaryTypeName","src":"5628:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"5614:28:21"},"returnParameters":{"id":5046,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5045,"mutability":"mutable","name":"newScale","nameLocation":"5672:8:21","nodeType":"VariableDeclaration","scope":5078,"src":"5666:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":5044,"nodeType":"UserDefinedTypeName","pathNode":{"id":5043,"name":"Scale","nameLocations":["5666:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"5666:5:21"},"referencedDeclaration":4792,"src":"5666:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"src":"5665:16:21"},"scope":5761,"src":"5602:270:21","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5092,"nodeType":"Block","src":"5995:37:21","statements":[{"expression":{"arguments":[{"id":5089,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5082,"src":"6021:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}],"expression":{"id":5087,"name":"Scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4792,"src":"6008:5:21","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Scale_$4792_$","typeString":"type(ETKLib.Scale)"}},"id":5088,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6014:6:21","memberName":"unwrap","nodeType":"MemberAccess","src":"6008:12:21","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Scale_$4792_$returns$_t_uint96_$","typeString":"function (ETKLib.Scale) pure returns (uint96)"}},"id":5090,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6008:19:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"functionReturnParameters":5086,"id":5091,"nodeType":"Return","src":"6001:26:21"}]},"documentation":{"id":5079,"nodeType":"StructuredDocumentation","src":"5876:52:21","text":" @notice Unwraps {Scale} into uint256."},"id":5093,"implemented":true,"kind":"function","modifiers":[],"name":"toUint256","nameLocation":"5940:9:21","nodeType":"FunctionDefinition","parameters":{"id":5083,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5082,"mutability":"mutable","name":"scale","nameLocation":"5956:5:21","nodeType":"VariableDeclaration","scope":5093,"src":"5950:11:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":5081,"nodeType":"UserDefinedTypeName","pathNode":{"id":5080,"name":"Scale","nameLocations":["5950:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"5950:5:21"},"referencedDeclaration":4792,"src":"5950:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"src":"5949:13:21"},"returnParameters":{"id":5086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5085,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5093,"src":"5986:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5084,"name":"uint256","nodeType":"ElementaryTypeName","src":"5986:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5985:9:21"},"scope":5761,"src":"5931:101:21","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5140,"nodeType":"Block","src":"6321:257:21","statements":[{"assignments":[5106],"declarations":[{"constant":false,"id":5106,"mutability":"mutable","name":"now_","nameLocation":"6334:4:21","nodeType":"VariableDeclaration","scope":5140,"src":"6327:11:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5105,"name":"uint32","nodeType":"ElementaryTypeName","src":"6327:6:21","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":5112,"initialValue":{"arguments":[{"expression":{"id":5109,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"6348:5:21","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":5110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6354:9:21","memberName":"timestamp","nodeType":"MemberAccess","src":"6348:15:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5108,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6341:6:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":5107,"name":"uint32","nodeType":"ElementaryTypeName","src":"6341:6:21","typeDescriptions":{}}},"id":5111,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6341:23:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"6327:37:21"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":5116,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5113,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5097,"src":"6374:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5114,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6387:10:21","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":4818,"src":"6374:23:21","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":5115,"name":"now_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5106,"src":"6400:4:21","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"6374:30:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":5138,"nodeType":"Block","src":"6534:40:21","statements":[{"expression":{"expression":{"id":5135,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5097,"src":"6549:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5136,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6562:5:21","memberName":"scale","nodeType":"MemberAccess","referencedDeclaration":4816,"src":"6549:18:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"functionReturnParameters":5104,"id":5137,"nodeType":"Return","src":"6542:25:21"}]},"id":5139,"nodeType":"IfStatement","src":"6370:204:21","trueBody":{"id":5134,"nodeType":"Block","src":"6406:122:21","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5120,"name":"interestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5099,"src":"6446:12:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":5126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5123,"name":"now_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5106,"src":"6469:4:21","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":5124,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5097,"src":"6476:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5125,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6489:10:21","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":4818,"src":"6476:23:21","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"6469:30:21","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":5122,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6461:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5121,"name":"uint256","nodeType":"ElementaryTypeName","src":"6461:7:21","typeDescriptions":{}}},"id":5127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6461:39:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6446:54:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5129,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6445:56:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5130,"name":"SECONDS_PER_YEAR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4795,"src":"6504:16:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6445:75:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":5117,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5097,"src":"6421:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5118,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6434:5:21","memberName":"scale","nodeType":"MemberAccess","referencedDeclaration":4816,"src":"6421:18:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":5119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6440:4:21","memberName":"grow","nodeType":"MemberAccess","referencedDeclaration":5010,"src":"6421:23:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$_t_uint256_$returns$_t_userDefinedValueType$_Scale_$4792_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale,uint256) pure returns (ETKLib.Scale)"}},"id":5132,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6421:100:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"functionReturnParameters":5104,"id":5133,"nodeType":"Return","src":"6414:107:21"}]}}]},"documentation":{"id":5094,"nodeType":"StructuredDocumentation","src":"6078:131:21","text":" @notice Computes the scale of the scaledAmount projecting the last recorded value to the future asumming linear rate"},"id":5141,"implemented":true,"kind":"function","modifiers":[],"name":"projectScale","nameLocation":"6221:12:21","nodeType":"FunctionDefinition","parameters":{"id":5100,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5097,"mutability":"mutable","name":"scaledAmount","nameLocation":"6255:12:21","nodeType":"VariableDeclaration","scope":5141,"src":"6234:33:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5096,"nodeType":"UserDefinedTypeName","pathNode":{"id":5095,"name":"ScaledAmount","nameLocations":["6234:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"6234:12:21"},"referencedDeclaration":4819,"src":"6234:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":5099,"mutability":"mutable","name":"interestRate","nameLocation":"6277:12:21","nodeType":"VariableDeclaration","scope":5141,"src":"6269:20:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5098,"name":"uint256","nodeType":"ElementaryTypeName","src":"6269:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6233:57:21"},"returnParameters":{"id":5104,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5103,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5141,"src":"6314:5:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":5102,"nodeType":"UserDefinedTypeName","pathNode":{"id":5101,"name":"Scale","nameLocations":["6314:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"6314:5:21"},"referencedDeclaration":4792,"src":"6314:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"src":"6313:7:21"},"scope":5761,"src":"6212:366:21","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5185,"nodeType":"Block","src":"6824:215:21","statements":[{"assignments":[5155],"declarations":[{"constant":false,"id":5155,"mutability":"mutable","name":"scrEarnings","nameLocation":"6838:11:21","nodeType":"VariableDeclaration","scope":5185,"src":"6830:19:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5154,"name":"uint256","nodeType":"ElementaryTypeName","src":"6830:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5161,"initialValue":{"arguments":[{"id":5157,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5148,"src":"6861:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},{"expression":{"id":5158,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5145,"src":"6866:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5159,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6879:10:21","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":4818,"src":"6866:23:21","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":5156,"name":"earnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5714,"src":"6852:8:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$4824_storage_ptr_$_t_uint32_$returns$_t_uint256_$","typeString":"function (struct ETKLib.Scr storage pointer,uint32) view returns (uint256)"}},"id":5160,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6852:38:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6830:60:21"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5162,"name":"scrEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5155,"src":"6900:11:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5163,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6915:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6900:16:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5168,"nodeType":"IfStatement","src":"6896:47:21","trueBody":{"expression":{"expression":{"id":5165,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5145,"src":"6925:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5166,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6938:5:21","memberName":"scale","nodeType":"MemberAccess","referencedDeclaration":4816,"src":"6925:18:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"functionReturnParameters":5153,"id":5167,"nodeType":"Return","src":"6918:25:21"}},{"expression":{"id":5183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5169,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5152,"src":"6949:3:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":5174,"name":"scrEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5155,"src":"6986:11:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5175,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"6999:3:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"expression":{"id":5178,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5145,"src":"7012:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5179,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7025:6:21","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":4813,"src":"7012:19:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":5177,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7004:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5176,"name":"uint256","nodeType":"ElementaryTypeName","src":"7004:7:21","typeDescriptions":{}}},"id":5180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7004:28:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5173,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[4849,4870],"referencedDeclaration":4849,"src":"6978:7:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":5181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6978:55:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":5170,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5145,"src":"6955:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5171,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6968:5:21","memberName":"scale","nodeType":"MemberAccess","referencedDeclaration":4816,"src":"6955:18:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":5172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6974:3:21","memberName":"add","nodeType":"MemberAccess","referencedDeclaration":5035,"src":"6955:22:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$_t_uint256_$returns$_t_userDefinedValueType$_Scale_$4792_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale,uint256) pure returns (ETKLib.Scale)"}},"id":5182,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6955:79:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"src":"6949:85:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":5184,"nodeType":"ExpressionStatement","src":"6949:85:21"}]},"documentation":{"id":5142,"nodeType":"StructuredDocumentation","src":"6582:131:21","text":" @notice Computes the scale of the scaledAmount projecting the last recorded value to the future asumming linear rate"},"id":5186,"implemented":true,"kind":"function","modifiers":[],"name":"projectScale","nameLocation":"6725:12:21","nodeType":"FunctionDefinition","parameters":{"id":5149,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5145,"mutability":"mutable","name":"scaledAmount","nameLocation":"6759:12:21","nodeType":"VariableDeclaration","scope":5186,"src":"6738:33:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5144,"nodeType":"UserDefinedTypeName","pathNode":{"id":5143,"name":"ScaledAmount","nameLocations":["6738:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"6738:12:21"},"referencedDeclaration":4819,"src":"6738:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":5148,"mutability":"mutable","name":"scr","nameLocation":"6785:3:21","nodeType":"VariableDeclaration","scope":5186,"src":"6773:15:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":5147,"nodeType":"UserDefinedTypeName","pathNode":{"id":5146,"name":"Scr","nameLocations":["6773:3:21"],"nodeType":"IdentifierPath","referencedDeclaration":4824,"src":"6773:3:21"},"referencedDeclaration":4824,"src":"6773:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"}],"src":"6737:52:21"},"returnParameters":{"id":5153,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5152,"mutability":"mutable","name":"ret","nameLocation":"6819:3:21","nodeType":"VariableDeclaration","scope":5186,"src":"6813:9:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":5151,"nodeType":"UserDefinedTypeName","pathNode":{"id":5150,"name":"Scale","nameLocations":["6813:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"6813:5:21"},"referencedDeclaration":4792,"src":"6813:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"src":"6812:11:21"},"scope":5761,"src":"6716:323:21","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5214,"nodeType":"Block","src":"7101:125:21","statements":[{"expression":{"id":5196,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":5192,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5189,"src":"7107:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5194,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7120:5:21","memberName":"scale","nodeType":"MemberAccess","referencedDeclaration":4816,"src":"7107:18:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5195,"name":"SCALE_ONE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4805,"src":"7128:9:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"src":"7107:30:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":5197,"nodeType":"ExpressionStatement","src":"7107:30:21"},{"expression":{"id":5202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":5198,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5189,"src":"7143:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5200,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7156:6:21","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":4813,"src":"7143:19:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":5201,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7165:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7143:23:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":5203,"nodeType":"ExpressionStatement","src":"7143:23:21"},{"expression":{"id":5212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":5204,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5189,"src":"7172:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5206,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7185:10:21","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":4818,"src":"7172:23:21","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":5209,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"7205:5:21","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":5210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7211:9:21","memberName":"timestamp","nodeType":"MemberAccess","src":"7205:15:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5208,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7198:6:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":5207,"name":"uint32","nodeType":"ElementaryTypeName","src":"7198:6:21","typeDescriptions":{}}},"id":5211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7198:23:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"7172:49:21","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":5213,"nodeType":"ExpressionStatement","src":"7172:49:21"}]},"id":5215,"implemented":true,"kind":"function","modifiers":[],"name":"init","nameLocation":"7052:4:21","nodeType":"FunctionDefinition","parameters":{"id":5190,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5189,"mutability":"mutable","name":"scaledAmount","nameLocation":"7078:12:21","nodeType":"VariableDeclaration","scope":5215,"src":"7057:33:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5188,"nodeType":"UserDefinedTypeName","pathNode":{"id":5187,"name":"ScaledAmount","nameLocations":["7057:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"7057:12:21"},"referencedDeclaration":4819,"src":"7057:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"}],"src":"7056:35:21"},"returnParameters":{"id":5191,"nodeType":"ParameterList","parameters":[],"src":"7101:0:21"},"scope":5761,"src":"7043:183:21","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":5260,"nodeType":"Block","src":"7817:250:21","statements":[{"expression":{"id":5237,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5232,"name":"scaledAdd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5230,"src":"7823:9:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":5235,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5221,"src":"7850:6:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5233,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5224,"src":"7835:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":5234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7841:8:21","memberName":"toScaled","nodeType":"MemberAccess","referencedDeclaration":4962,"src":"7835:14:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$_t_uint256_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale,uint256) pure returns (uint256)"}},"id":5236,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7835:22:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7823:34:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5238,"nodeType":"ExpressionStatement","src":"7823:34:21"},{"expression":{"components":[{"arguments":[{"id":5240,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5224,"src":"7908:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":5243,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5219,"src":"7940:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5244,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7953:6:21","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":4813,"src":"7940:19:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":5242,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7932:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5241,"name":"uint256","nodeType":"ElementaryTypeName","src":"7932:7:21","typeDescriptions":{}}},"id":5245,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7932:28:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":5246,"name":"scaledAdd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5230,"src":"7963:9:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7932:40:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5248,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7931:42:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5249,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7974:9:21","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":35662,"src":"7931:52:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":5250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7931:54:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[{"expression":{"id":5253,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"8014:5:21","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":5254,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8020:9:21","memberName":"timestamp","nodeType":"MemberAccess","src":"8014:15:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5252,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8007:6:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":5251,"name":"uint32","nodeType":"ElementaryTypeName","src":"8007:6:21","typeDescriptions":{}}},"id":5255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8007:23:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":5239,"name":"ScaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4819,"src":"7878:12:21","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"type(struct ETKLib.ScaledAmount storage pointer)"}},"id":5256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["7901:5:21","7923:6:21","7995:10:21"],"names":["scale","amount","lastUpdate"],"nodeType":"FunctionCall","src":"7878:161:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_memory_ptr","typeString":"struct ETKLib.ScaledAmount memory"}},{"id":5257,"name":"scaledAdd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5230,"src":"8047:9:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5258,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7870:192:21","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"functionReturnParameters":5231,"id":5259,"nodeType":"Return","src":"7863:199:21"}]},"documentation":{"id":5216,"nodeType":"StructuredDocumentation","src":"7230:411:21","text":" @notice Internal helper to add `amount` (current units) to a {ScaledAmount} using a given `scale`.\n @return newScaledAmount Updated in-memory struct (caller is expected to store it).\n @return scaledAdd Amount converted to scaled units (rounded down).\n @custom:pre `uint256(scale) != 0`\n @custom:pre `uint256(scaledAmount.amount) + scale.toScaled(amount)` fits in uint128"},"id":5261,"implemented":true,"kind":"function","modifiers":[],"name":"_add","nameLocation":"7653:4:21","nodeType":"FunctionDefinition","parameters":{"id":5225,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5219,"mutability":"mutable","name":"scaledAmount","nameLocation":"7684:12:21","nodeType":"VariableDeclaration","scope":5261,"src":"7663:33:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5218,"nodeType":"UserDefinedTypeName","pathNode":{"id":5217,"name":"ScaledAmount","nameLocations":["7663:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"7663:12:21"},"referencedDeclaration":4819,"src":"7663:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":5221,"mutability":"mutable","name":"amount","nameLocation":"7710:6:21","nodeType":"VariableDeclaration","scope":5261,"src":"7702:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5220,"name":"uint256","nodeType":"ElementaryTypeName","src":"7702:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5224,"mutability":"mutable","name":"scale","nameLocation":"7728:5:21","nodeType":"VariableDeclaration","scope":5261,"src":"7722:11:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":5223,"nodeType":"UserDefinedTypeName","pathNode":{"id":5222,"name":"Scale","nameLocations":["7722:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"7722:5:21"},"referencedDeclaration":4792,"src":"7722:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"src":"7657:80:21"},"returnParameters":{"id":5231,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5228,"mutability":"mutable","name":"newScaledAmount","nameLocation":"7781:15:21","nodeType":"VariableDeclaration","scope":5261,"src":"7761:35:21","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_memory_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5227,"nodeType":"UserDefinedTypeName","pathNode":{"id":5226,"name":"ScaledAmount","nameLocations":["7761:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"7761:12:21"},"referencedDeclaration":4819,"src":"7761:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":5230,"mutability":"mutable","name":"scaledAdd","nameLocation":"7806:9:21","nodeType":"VariableDeclaration","scope":5261,"src":"7798:17:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5229,"name":"uint256","nodeType":"ElementaryTypeName","src":"7798:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7760:56:21"},"scope":5761,"src":"7644:423:21","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5343,"nodeType":"Block","src":"9086:710:21","statements":[{"expression":{"id":5283,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5278,"name":"scaledSub","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5276,"src":"9092:9:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":5281,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5267,"src":"9123:6:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5279,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5270,"src":"9104:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":5280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9110:12:21","memberName":"toScaledCeil","nodeType":"MemberAccess","referencedDeclaration":4982,"src":"9104:18:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$_t_uint256_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale,uint256) pure returns (uint256)"}},"id":5282,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9104:26:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9092:38:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5284,"nodeType":"ExpressionStatement","src":"9092:38:21"},{"assignments":[5286],"declarations":[{"constant":false,"id":5286,"mutability":"mutable","name":"oldAmount","nameLocation":"9144:9:21","nodeType":"VariableDeclaration","scope":5343,"src":"9136:17:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5285,"name":"uint256","nodeType":"ElementaryTypeName","src":"9136:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5292,"initialValue":{"arguments":[{"expression":{"id":5289,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5265,"src":"9164:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5290,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9177:6:21","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":4813,"src":"9164:19:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":5288,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9156:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5287,"name":"uint256","nodeType":"ElementaryTypeName","src":"9156:7:21","typeDescriptions":{}}},"id":5291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9156:28:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9136:48:21"},{"assignments":[5294,5296],"declarations":[{"constant":false,"id":5294,"mutability":"mutable","name":"success","nameLocation":"9196:7:21","nodeType":"VariableDeclaration","scope":5343,"src":"9191:12:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5293,"name":"bool","nodeType":"ElementaryTypeName","src":"9191:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5296,"mutability":"mutable","name":"newAmount","nameLocation":"9213:9:21","nodeType":"VariableDeclaration","scope":5343,"src":"9205:17:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5295,"name":"uint256","nodeType":"ElementaryTypeName","src":"9205:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5302,"initialValue":{"arguments":[{"id":5299,"name":"oldAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5286,"src":"9238:9:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5300,"name":"scaledSub","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5276,"src":"9249:9:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5297,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"9226:4:21","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":5298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9231:6:21","memberName":"trySub","nodeType":"MemberAccess","referencedDeclaration":33655,"src":"9226:11:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (bool,uint256)"}},"id":5301,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9226:33:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"9190:69:21"},{"condition":{"id":5304,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"9269:8:21","subExpression":{"id":5303,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5294,"src":"9270:7:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5319,"nodeType":"IfStatement","src":"9265:294:21","trueBody":{"id":5318,"nodeType":"Block","src":"9279:280:21","statements":[{"expression":{"id":5310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5305,"name":"scaledSub","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5276,"src":"9432:9:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":5308,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5267,"src":"9459:6:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5306,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5270,"src":"9444:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":5307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9450:8:21","memberName":"toScaled","nodeType":"MemberAccess","referencedDeclaration":4962,"src":"9444:14:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$_t_uint256_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale,uint256) pure returns (uint256)"}},"id":5309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9444:22:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9432:34:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5311,"nodeType":"ExpressionStatement","src":"9432:34:21"},{"expression":{"id":5316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5312,"name":"newAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5296,"src":"9474:9:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5313,"name":"oldAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5286,"src":"9486:9:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":5314,"name":"scaledSub","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5276,"src":"9498:9:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9486:21:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9474:33:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5317,"nodeType":"ExpressionStatement","src":"9474:33:21"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5320,"name":"newAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5296,"src":"9568:9:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5321,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9581:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9568:14:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5328,"nodeType":"IfStatement","src":"9564:88:21","trueBody":{"id":5327,"nodeType":"Block","src":"9584:68:21","statements":[{"expression":{"id":5325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5323,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5270,"src":"9628:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5324,"name":"SCALE_ONE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4805,"src":"9636:9:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"src":"9628:17:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":5326,"nodeType":"ExpressionStatement","src":"9628:17:21"}]}},{"expression":{"components":[{"arguments":[{"id":5330,"name":"scale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5270,"src":"9693:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5331,"name":"newAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5296,"src":"9708:9:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9718:9:21","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":35662,"src":"9708:19:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":5333,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9708:21:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[{"expression":{"id":5336,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"9750:5:21","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":5337,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9756:9:21","memberName":"timestamp","nodeType":"MemberAccess","src":"9750:15:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5335,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9743:6:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":5334,"name":"uint32","nodeType":"ElementaryTypeName","src":"9743:6:21","typeDescriptions":{}}},"id":5338,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9743:23:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":5329,"name":"ScaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4819,"src":"9672:12:21","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"type(struct ETKLib.ScaledAmount storage pointer)"}},"id":5339,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["9686:5:21","9700:6:21","9731:10:21"],"names":["scale","amount","lastUpdate"],"nodeType":"FunctionCall","src":"9672:96:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_memory_ptr","typeString":"struct ETKLib.ScaledAmount memory"}},{"id":5340,"name":"scaledSub","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5276,"src":"9776:9:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5341,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9664:127:21","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"functionReturnParameters":5277,"id":5342,"nodeType":"Return","src":"9657:134:21"}]},"documentation":{"id":5262,"nodeType":"StructuredDocumentation","src":"8071:839:21","text":" @notice Subtracts `amount` (current units) from a {ScaledAmount} using the provided `scale`.\n @dev It uses `toScaledCeil` (round up) to avoid leaving dust due to rounding. If the ceil conversion\n would underflow by 1 unit, it retries with `toScaled` (round down).\n @param scaledAmount The storage record to update.\n @param amount Amount expressed in current units.\n @param scale Scale (wad) to use to convert `amount` into scaled units.\n @return newScaledAmount Updated in-memory struct (caller is expected to store it).\n @return scaledSub The subtracted value expressed in scaled units (ceil, or floor in the retry path).\n @custom:pre `uint256(scale) != 0`\n @custom:pre `scale.toScaledCeil(amount) <= scaledAmount.amount` OR `scale.toScaled(amount) <= scaledAmount.amount`"},"id":5344,"implemented":true,"kind":"function","modifiers":[],"name":"_sub","nameLocation":"8922:4:21","nodeType":"FunctionDefinition","parameters":{"id":5271,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5265,"mutability":"mutable","name":"scaledAmount","nameLocation":"8953:12:21","nodeType":"VariableDeclaration","scope":5344,"src":"8932:33:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5264,"nodeType":"UserDefinedTypeName","pathNode":{"id":5263,"name":"ScaledAmount","nameLocations":["8932:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"8932:12:21"},"referencedDeclaration":4819,"src":"8932:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":5267,"mutability":"mutable","name":"amount","nameLocation":"8979:6:21","nodeType":"VariableDeclaration","scope":5344,"src":"8971:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5266,"name":"uint256","nodeType":"ElementaryTypeName","src":"8971:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5270,"mutability":"mutable","name":"scale","nameLocation":"8997:5:21","nodeType":"VariableDeclaration","scope":5344,"src":"8991:11:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":5269,"nodeType":"UserDefinedTypeName","pathNode":{"id":5268,"name":"Scale","nameLocations":["8991:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"8991:5:21"},"referencedDeclaration":4792,"src":"8991:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"src":"8926:80:21"},"returnParameters":{"id":5277,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5274,"mutability":"mutable","name":"newScaledAmount","nameLocation":"9050:15:21","nodeType":"VariableDeclaration","scope":5344,"src":"9030:35:21","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_memory_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5273,"nodeType":"UserDefinedTypeName","pathNode":{"id":5272,"name":"ScaledAmount","nameLocations":["9030:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"9030:12:21"},"referencedDeclaration":4819,"src":"9030:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":5276,"mutability":"mutable","name":"scaledSub","nameLocation":"9075:9:21","nodeType":"VariableDeclaration","scope":5344,"src":"9067:17:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5275,"name":"uint256","nodeType":"ElementaryTypeName","src":"9067:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9029:56:21"},"scope":5761,"src":"8913:883:21","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5369,"nodeType":"Block","src":"10096:86:21","statements":[{"expression":{"arguments":[{"id":5361,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5348,"src":"10114:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},{"id":5362,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5350,"src":"10128:6:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":5364,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5348,"src":"10149:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},{"id":5365,"name":"interestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5352,"src":"10163:12:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5363,"name":"projectScale","nodeType":"Identifier","overloadedDeclarations":[5141,5186],"referencedDeclaration":5141,"src":"10136:12:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_uint256_$returns$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256) view returns (ETKLib.Scale)"}},"id":5366,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10136:40:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}],"id":5360,"name":"_add","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5261,"src":"10109:4:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_uint256_$_t_userDefinedValueType$_Scale_$4792_$returns$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256,ETKLib.Scale) view returns (struct ETKLib.ScaledAmount memory,uint256)"}},"id":5367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10109:68:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"functionReturnParameters":5359,"id":5368,"nodeType":"Return","src":"10102:75:21"}]},"documentation":{"id":5345,"nodeType":"StructuredDocumentation","src":"9800:112:21","text":" @notice Adds `amount` (current units) projecting the scale forward using a linear `interestRate`."},"id":5370,"implemented":true,"kind":"function","modifiers":[],"name":"add","nameLocation":"9924:3:21","nodeType":"FunctionDefinition","parameters":{"id":5353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5348,"mutability":"mutable","name":"scaledAmount","nameLocation":"9954:12:21","nodeType":"VariableDeclaration","scope":5370,"src":"9933:33:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5347,"nodeType":"UserDefinedTypeName","pathNode":{"id":5346,"name":"ScaledAmount","nameLocations":["9933:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"9933:12:21"},"referencedDeclaration":4819,"src":"9933:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":5350,"mutability":"mutable","name":"amount","nameLocation":"9980:6:21","nodeType":"VariableDeclaration","scope":5370,"src":"9972:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5349,"name":"uint256","nodeType":"ElementaryTypeName","src":"9972:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5352,"mutability":"mutable","name":"interestRate","nameLocation":"10000:12:21","nodeType":"VariableDeclaration","scope":5370,"src":"9992:20:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5351,"name":"uint256","nodeType":"ElementaryTypeName","src":"9992:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9927:89:21"},"returnParameters":{"id":5359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5356,"mutability":"mutable","name":"newScaledAmount","nameLocation":"10060:15:21","nodeType":"VariableDeclaration","scope":5370,"src":"10040:35:21","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_memory_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5355,"nodeType":"UserDefinedTypeName","pathNode":{"id":5354,"name":"ScaledAmount","nameLocations":["10040:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"10040:12:21"},"referencedDeclaration":4819,"src":"10040:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":5358,"mutability":"mutable","name":"scaledAdd","nameLocation":"10085:9:21","nodeType":"VariableDeclaration","scope":5370,"src":"10077:17:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5357,"name":"uint256","nodeType":"ElementaryTypeName","src":"10077:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10039:56:21"},"scope":5761,"src":"9915:267:21","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5395,"nodeType":"Block","src":"10487:86:21","statements":[{"expression":{"arguments":[{"id":5387,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5374,"src":"10505:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},{"id":5388,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5376,"src":"10519:6:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":5390,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5374,"src":"10540:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},{"id":5391,"name":"interestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5378,"src":"10554:12:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5389,"name":"projectScale","nodeType":"Identifier","overloadedDeclarations":[5141,5186],"referencedDeclaration":5141,"src":"10527:12:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_uint256_$returns$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256) view returns (ETKLib.Scale)"}},"id":5392,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10527:40:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}],"id":5386,"name":"_sub","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5344,"src":"10500:4:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_uint256_$_t_userDefinedValueType$_Scale_$4792_$returns$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256,ETKLib.Scale) view returns (struct ETKLib.ScaledAmount memory,uint256)"}},"id":5393,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10500:68:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"functionReturnParameters":5385,"id":5394,"nodeType":"Return","src":"10493:75:21"}]},"documentation":{"id":5371,"nodeType":"StructuredDocumentation","src":"10186:117:21","text":" @notice Subtracts `amount` (current units) projecting the scale forward using a linear `interestRate`."},"id":5396,"implemented":true,"kind":"function","modifiers":[],"name":"sub","nameLocation":"10315:3:21","nodeType":"FunctionDefinition","parameters":{"id":5379,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5374,"mutability":"mutable","name":"scaledAmount","nameLocation":"10345:12:21","nodeType":"VariableDeclaration","scope":5396,"src":"10324:33:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5373,"nodeType":"UserDefinedTypeName","pathNode":{"id":5372,"name":"ScaledAmount","nameLocations":["10324:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"10324:12:21"},"referencedDeclaration":4819,"src":"10324:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":5376,"mutability":"mutable","name":"amount","nameLocation":"10371:6:21","nodeType":"VariableDeclaration","scope":5396,"src":"10363:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5375,"name":"uint256","nodeType":"ElementaryTypeName","src":"10363:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5378,"mutability":"mutable","name":"interestRate","nameLocation":"10391:12:21","nodeType":"VariableDeclaration","scope":5396,"src":"10383:20:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5377,"name":"uint256","nodeType":"ElementaryTypeName","src":"10383:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10318:89:21"},"returnParameters":{"id":5385,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5382,"mutability":"mutable","name":"newScaledAmount","nameLocation":"10451:15:21","nodeType":"VariableDeclaration","scope":5396,"src":"10431:35:21","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_memory_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5381,"nodeType":"UserDefinedTypeName","pathNode":{"id":5380,"name":"ScaledAmount","nameLocations":["10431:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"10431:12:21"},"referencedDeclaration":4819,"src":"10431:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":5384,"mutability":"mutable","name":"scaledSub","nameLocation":"10476:9:21","nodeType":"VariableDeclaration","scope":5396,"src":"10468:17:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5383,"name":"uint256","nodeType":"ElementaryTypeName","src":"10468:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10430:56:21"},"scope":5761,"src":"10306:267:21","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5422,"nodeType":"Block","src":"10857:77:21","statements":[{"expression":{"arguments":[{"id":5414,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5400,"src":"10875:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},{"id":5415,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5402,"src":"10889:6:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":5417,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5400,"src":"10910:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},{"id":5418,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5405,"src":"10924:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"},{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}],"id":5416,"name":"projectScale","nodeType":"Identifier","overloadedDeclarations":[5141,5186],"referencedDeclaration":5186,"src":"10897:12:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_struct$_Scr_$4824_storage_ptr_$returns$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,struct ETKLib.Scr storage pointer) view returns (ETKLib.Scale)"}},"id":5419,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10897:31:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}],"id":5413,"name":"_add","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5261,"src":"10870:4:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_uint256_$_t_userDefinedValueType$_Scale_$4792_$returns$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256,ETKLib.Scale) view returns (struct ETKLib.ScaledAmount memory,uint256)"}},"id":5420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10870:59:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"functionReturnParameters":5412,"id":5421,"nodeType":"Return","src":"10863:66:21"}]},"documentation":{"id":5397,"nodeType":"StructuredDocumentation","src":"10577:101:21","text":" @notice Adds `amount` (current units) projecting the scale forward using SCR earnings."},"id":5423,"implemented":true,"kind":"function","modifiers":[],"name":"add","nameLocation":"10690:3:21","nodeType":"FunctionDefinition","parameters":{"id":5406,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5400,"mutability":"mutable","name":"scaledAmount","nameLocation":"10720:12:21","nodeType":"VariableDeclaration","scope":5423,"src":"10699:33:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5399,"nodeType":"UserDefinedTypeName","pathNode":{"id":5398,"name":"ScaledAmount","nameLocations":["10699:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"10699:12:21"},"referencedDeclaration":4819,"src":"10699:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":5402,"mutability":"mutable","name":"amount","nameLocation":"10746:6:21","nodeType":"VariableDeclaration","scope":5423,"src":"10738:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5401,"name":"uint256","nodeType":"ElementaryTypeName","src":"10738:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5405,"mutability":"mutable","name":"scr","nameLocation":"10770:3:21","nodeType":"VariableDeclaration","scope":5423,"src":"10758:15:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":5404,"nodeType":"UserDefinedTypeName","pathNode":{"id":5403,"name":"Scr","nameLocations":["10758:3:21"],"nodeType":"IdentifierPath","referencedDeclaration":4824,"src":"10758:3:21"},"referencedDeclaration":4824,"src":"10758:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"}],"src":"10693:84:21"},"returnParameters":{"id":5412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5409,"mutability":"mutable","name":"newScaledAmount","nameLocation":"10821:15:21","nodeType":"VariableDeclaration","scope":5423,"src":"10801:35:21","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_memory_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5408,"nodeType":"UserDefinedTypeName","pathNode":{"id":5407,"name":"ScaledAmount","nameLocations":["10801:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"10801:12:21"},"referencedDeclaration":4819,"src":"10801:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":5411,"mutability":"mutable","name":"scaledAdd","nameLocation":"10846:9:21","nodeType":"VariableDeclaration","scope":5423,"src":"10838:17:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5410,"name":"uint256","nodeType":"ElementaryTypeName","src":"10838:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10800:56:21"},"scope":5761,"src":"10681:253:21","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5449,"nodeType":"Block","src":"11223:77:21","statements":[{"expression":{"arguments":[{"id":5441,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5427,"src":"11241:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},{"id":5442,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5429,"src":"11255:6:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":5444,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5427,"src":"11276:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},{"id":5445,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5432,"src":"11290:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"},{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}],"id":5443,"name":"projectScale","nodeType":"Identifier","overloadedDeclarations":[5141,5186],"referencedDeclaration":5186,"src":"11263:12:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_struct$_Scr_$4824_storage_ptr_$returns$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,struct ETKLib.Scr storage pointer) view returns (ETKLib.Scale)"}},"id":5446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11263:31:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}],"id":5440,"name":"_sub","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5344,"src":"11236:4:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_uint256_$_t_userDefinedValueType$_Scale_$4792_$returns$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256,ETKLib.Scale) view returns (struct ETKLib.ScaledAmount memory,uint256)"}},"id":5447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11236:59:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"functionReturnParameters":5439,"id":5448,"nodeType":"Return","src":"11229:66:21"}]},"documentation":{"id":5424,"nodeType":"StructuredDocumentation","src":"10938:106:21","text":" @notice Subtracts `amount` (current units) projecting the scale forward using SCR earnings."},"id":5450,"implemented":true,"kind":"function","modifiers":[],"name":"sub","nameLocation":"11056:3:21","nodeType":"FunctionDefinition","parameters":{"id":5433,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5427,"mutability":"mutable","name":"scaledAmount","nameLocation":"11086:12:21","nodeType":"VariableDeclaration","scope":5450,"src":"11065:33:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5426,"nodeType":"UserDefinedTypeName","pathNode":{"id":5425,"name":"ScaledAmount","nameLocations":["11065:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"11065:12:21"},"referencedDeclaration":4819,"src":"11065:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":5429,"mutability":"mutable","name":"amount","nameLocation":"11112:6:21","nodeType":"VariableDeclaration","scope":5450,"src":"11104:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5428,"name":"uint256","nodeType":"ElementaryTypeName","src":"11104:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5432,"mutability":"mutable","name":"scr","nameLocation":"11136:3:21","nodeType":"VariableDeclaration","scope":5450,"src":"11124:15:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":5431,"nodeType":"UserDefinedTypeName","pathNode":{"id":5430,"name":"Scr","nameLocations":["11124:3:21"],"nodeType":"IdentifierPath","referencedDeclaration":4824,"src":"11124:3:21"},"referencedDeclaration":4824,"src":"11124:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"}],"src":"11059:84:21"},"returnParameters":{"id":5439,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5436,"mutability":"mutable","name":"newScaledAmount","nameLocation":"11187:15:21","nodeType":"VariableDeclaration","scope":5450,"src":"11167:35:21","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_memory_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5435,"nodeType":"UserDefinedTypeName","pathNode":{"id":5434,"name":"ScaledAmount","nameLocations":["11167:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"11167:12:21"},"referencedDeclaration":4819,"src":"11167:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":5438,"mutability":"mutable","name":"scaledSub","nameLocation":"11212:9:21","nodeType":"VariableDeclaration","scope":5450,"src":"11204:17:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5437,"name":"uint256","nodeType":"ElementaryTypeName","src":"11204:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11166:56:21"},"scope":5761,"src":"11047:253:21","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5507,"nodeType":"Block","src":"11915:351:21","statements":[{"expression":{"id":5474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5465,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5456,"src":"11989:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"arguments":[{"id":5469,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5459,"src":"12015:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},{"expression":{"id":5470,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5454,"src":"12020:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5471,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12033:10:21","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":4818,"src":"12020:23:21","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":5468,"name":"earnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5714,"src":"12006:8:21","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$4824_storage_ptr_$_t_uint32_$returns$_t_uint256_$","typeString":"function (struct ETKLib.Scr storage pointer,uint32) view returns (uint256)"}},"id":5472,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12006:38:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5467,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11999:6:21","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":5466,"name":"int256","nodeType":"ElementaryTypeName","src":"11999:6:21","typeDescriptions":{}}},"id":5473,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11999:46:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11989:56:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":5475,"nodeType":"ExpressionStatement","src":"11989:56:21"},{"assignments":[5478],"declarations":[{"constant":false,"id":5478,"mutability":"mutable","name":"newScale","nameLocation":"12057:8:21","nodeType":"VariableDeclaration","scope":5507,"src":"12051:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},"typeName":{"id":5477,"nodeType":"UserDefinedTypeName","pathNode":{"id":5476,"name":"Scale","nameLocations":["12051:5:21"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"12051:5:21"},"referencedDeclaration":4792,"src":"12051:5:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"visibility":"internal"}],"id":5495,"initialValue":{"arguments":[{"arguments":[{"id":5483,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5456,"src":"12099:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":5484,"name":"SWAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4811,"src":"12107:4:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"arguments":[{"arguments":[{"expression":{"id":5489,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5454,"src":"12128:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5490,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12141:6:21","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":4813,"src":"12128:19:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":5488,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12120:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5487,"name":"uint256","nodeType":"ElementaryTypeName","src":"12120:7:21","typeDescriptions":{}}},"id":5491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12120:28:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5486,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12113:6:21","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":5485,"name":"int256","nodeType":"ElementaryTypeName","src":"12113:6:21","typeDescriptions":{}}},"id":5492,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12113:36:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":5482,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[4849,4870],"referencedDeclaration":4870,"src":"12091:7:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_int256_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (int256,int256,int256) pure returns (int256)"}},"id":5493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12091:59:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"expression":{"id":5479,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5454,"src":"12068:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5480,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12081:5:21","memberName":"scale","nodeType":"MemberAccess","referencedDeclaration":4816,"src":"12068:18:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":5481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12087:3:21","memberName":"add","nodeType":"MemberAccess","referencedDeclaration":5078,"src":"12068:22:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$_t_int256_$returns$_t_userDefinedValueType$_Scale_$4792_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale,int256) pure returns (ETKLib.Scale)"}},"id":5494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12068:83:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"nodeType":"VariableDeclarationStatement","src":"12051:100:21"},{"expression":{"arguments":[{"expression":{"id":5497,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5454,"src":"12186:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5498,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12199:6:21","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":4813,"src":"12186:19:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"id":5499,"name":"newScale","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5478,"src":"12214:8:21","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},{"arguments":[{"expression":{"id":5502,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"12243:5:21","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":5503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12249:9:21","memberName":"timestamp","nodeType":"MemberAccess","src":"12243:15:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5501,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12236:6:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":5500,"name":"uint32","nodeType":"ElementaryTypeName","src":"12236:6:21","typeDescriptions":{}}},"id":5504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12236:23:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":5496,"name":"ScaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4819,"src":"12164:12:21","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"type(struct ETKLib.ScaledAmount storage pointer)"}},"id":5505,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["12178:6:21","12207:5:21","12224:10:21"],"names":["amount","scale","lastUpdate"],"nodeType":"FunctionCall","src":"12164:97:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_memory_ptr","typeString":"struct ETKLib.ScaledAmount memory"}},"functionReturnParameters":5464,"id":5506,"nodeType":"Return","src":"12157:104:21"}]},"documentation":{"id":5451,"nodeType":"StructuredDocumentation","src":"11304:441:21","text":" @notice Applies a discrete signed change (in current units) to the scale, and also accounts for SCR earnings accrued\n since `scaledAmount.lastUpdate`.\n @param amount Signed discrete change in current units.\n @return newScaledAmount Updated in-memory struct with the same stored `amount`, but an adjusted `scale`.\n @custom:pre `scaledAmount.amount != 0` (required to compute proportional scale change)"},"id":5508,"implemented":true,"kind":"function","modifiers":[],"name":"discreteChange","nameLocation":"11757:14:21","nodeType":"FunctionDefinition","parameters":{"id":5460,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5454,"mutability":"mutable","name":"scaledAmount","nameLocation":"11798:12:21","nodeType":"VariableDeclaration","scope":5508,"src":"11777:33:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5453,"nodeType":"UserDefinedTypeName","pathNode":{"id":5452,"name":"ScaledAmount","nameLocations":["11777:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"11777:12:21"},"referencedDeclaration":4819,"src":"11777:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":5456,"mutability":"mutable","name":"amount","nameLocation":"11823:6:21","nodeType":"VariableDeclaration","scope":5508,"src":"11816:13:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":5455,"name":"int256","nodeType":"ElementaryTypeName","src":"11816:6:21","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":5459,"mutability":"mutable","name":"scr","nameLocation":"11847:3:21","nodeType":"VariableDeclaration","scope":5508,"src":"11835:15:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":5458,"nodeType":"UserDefinedTypeName","pathNode":{"id":5457,"name":"Scr","nameLocations":["11835:3:21"],"nodeType":"IdentifierPath","referencedDeclaration":4824,"src":"11835:3:21"},"referencedDeclaration":4824,"src":"11835:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"}],"src":"11771:83:21"},"returnParameters":{"id":5464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5463,"mutability":"mutable","name":"newScaledAmount","nameLocation":"11898:15:21","nodeType":"VariableDeclaration","scope":5508,"src":"11878:35:21","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_memory_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5462,"nodeType":"UserDefinedTypeName","pathNode":{"id":5461,"name":"ScaledAmount","nameLocations":["11878:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"11878:12:21"},"referencedDeclaration":4819,"src":"11878:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"}],"src":"11877:37:21"},"scope":5761,"src":"11748:518:21","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5527,"nodeType":"Block","src":"12478:75:21","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":5520,"name":"scaledAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5512,"src":"12511:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":5521,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12524:6:21","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":4813,"src":"12511:19:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":5519,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12503:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5518,"name":"uint256","nodeType":"ElementaryTypeName","src":"12503:7:21","typeDescriptions":{}}},"id":5522,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12503:28:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5523,"name":"MIN_SCALE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4798,"src":"12533:9:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5524,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"12544:3:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5517,"name":"_mulDivCeil","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4902,"src":"12491:11:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":5525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12491:57:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5516,"id":5526,"nodeType":"Return","src":"12484:64:21"}]},"documentation":{"id":5509,"nodeType":"StructuredDocumentation","src":"12270:120:21","text":" @notice Returns the minimum current value representable by `scaledAmount.amount` under the minimum scale."},"id":5528,"implemented":true,"kind":"function","modifiers":[],"name":"minValue","nameLocation":"12402:8:21","nodeType":"FunctionDefinition","parameters":{"id":5513,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5512,"mutability":"mutable","name":"scaledAmount","nameLocation":"12432:12:21","nodeType":"VariableDeclaration","scope":5528,"src":"12411:33:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5511,"nodeType":"UserDefinedTypeName","pathNode":{"id":5510,"name":"ScaledAmount","nameLocations":["12411:12:21"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"12411:12:21"},"referencedDeclaration":4819,"src":"12411:12:21","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"}],"src":"12410:35:21"},"returnParameters":{"id":5516,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5515,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5528,"src":"12469:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5514,"name":"uint256","nodeType":"ElementaryTypeName","src":"12469:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12468:9:21"},"scope":5761,"src":"12393:160:21","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5603,"nodeType":"Block","src":"13212:599:21","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":5545,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5542,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5532,"src":"13222:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":5543,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13226:3:21","memberName":"scr","nodeType":"MemberAccess","referencedDeclaration":4821,"src":"13222:7:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5544,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13233:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13222:12:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":5601,"nodeType":"Block","src":"13344:463:21","statements":[{"assignments":[5557],"declarations":[{"constant":false,"id":5557,"mutability":"mutable","name":"origScr","nameLocation":"13360:7:21","nodeType":"VariableDeclaration","scope":5601,"src":"13352:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5556,"name":"uint256","nodeType":"ElementaryTypeName","src":"13352:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5563,"initialValue":{"arguments":[{"expression":{"id":5560,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5532,"src":"13378:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":5561,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13382:3:21","memberName":"scr","nodeType":"MemberAccess","referencedDeclaration":4821,"src":"13378:7:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":5559,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13370:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5558,"name":"uint256","nodeType":"ElementaryTypeName","src":"13370:7:21","typeDescriptions":{}}},"id":5562,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13370:16:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13352:34:21"},{"assignments":[5565],"declarations":[{"constant":false,"id":5565,"mutability":"mutable","name":"newScr","nameLocation":"13402:6:21","nodeType":"VariableDeclaration","scope":5601,"src":"13394:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5564,"name":"uint256","nodeType":"ElementaryTypeName","src":"13394:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5569,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5568,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5566,"name":"origScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5557,"src":"13411:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":5567,"name":"scrAmount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5534,"src":"13421:10:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13411:20:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13394:37:21"},{"assignments":[5571],"declarations":[{"constant":false,"id":5571,"mutability":"mutable","name":"newInterestRate","nameLocation":"13544:15:21","nodeType":"VariableDeclaration","scope":5601,"src":"13536:23:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5570,"name":"uint256","nodeType":"ElementaryTypeName","src":"13536:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5591,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"expression":{"id":5576,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5532,"src":"13595:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":5577,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13599:12:21","memberName":"interestRate","nodeType":"MemberAccess","referencedDeclaration":4823,"src":"13595:16:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":5575,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13587:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5574,"name":"uint256","nodeType":"ElementaryTypeName","src":"13587:7:21","typeDescriptions":{}}},"id":5578,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13587:25:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5579,"name":"origScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5557,"src":"13614:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5580,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"13623:3:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5573,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[4849,4870],"referencedDeclaration":4849,"src":"13579:7:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":5581,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13579:48:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"id":5583,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5536,"src":"13638:18:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5584,"name":"scrAmount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5534,"src":"13658:10:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5585,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"13670:3:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5582,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[4849,4870],"referencedDeclaration":4849,"src":"13630:7:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":5586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13630:44:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13579:95:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5588,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"13684:3:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5589,"name":"newScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5565,"src":"13697:6:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5572,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[4849,4870],"referencedDeclaration":4849,"src":"13562:7:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":5590,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13562:149:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13536:175:21"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5593,"name":"newScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5565,"src":"13737:6:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13744:9:21","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":35662,"src":"13737:16:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":5595,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13737:18:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5596,"name":"newInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5571,"src":"13771:15:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13787:9:21","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":35662,"src":"13771:25:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":5598,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13771:27:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":5592,"name":"Scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4824,"src":"13727:3:21","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Scr_$4824_storage_ptr_$","typeString":"type(struct ETKLib.Scr storage pointer)"}},"id":5599,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["13732:3:21","13757:12:21"],"names":["scr","interestRate"],"nodeType":"FunctionCall","src":"13727:73:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_memory_ptr","typeString":"struct ETKLib.Scr memory"}},"functionReturnParameters":5541,"id":5600,"nodeType":"Return","src":"13720:80:21"}]},"id":5602,"nodeType":"IfStatement","src":"13218:589:21","trueBody":{"id":5555,"nodeType":"Block","src":"13236:102:21","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5547,"name":"scrAmount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5534,"src":"13261:10:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13272:9:21","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":35662,"src":"13261:20:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":5549,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13261:22:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5550,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5536,"src":"13299:18:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13318:9:21","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":35662,"src":"13299:28:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":5552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13299:30:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":5546,"name":"Scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4824,"src":"13251:3:21","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Scr_$4824_storage_ptr_$","typeString":"type(struct ETKLib.Scr storage pointer)"}},"id":5553,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["13256:3:21","13285:12:21"],"names":["scr","interestRate"],"nodeType":"FunctionCall","src":"13251:80:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_memory_ptr","typeString":"struct ETKLib.Scr memory"}},"functionReturnParameters":5541,"id":5554,"nodeType":"Return","src":"13244:87:21"}]}}]},"documentation":{"id":5529,"nodeType":"StructuredDocumentation","src":"12628:440:21","text":" @notice Adds SCR and updates the weighted-average `interestRate`.\n @param scrAmount_ Amount of SCR to add.\n @param policyInterestRate Annualized rate (wad) associated with `scrAmount_`.\n @return modifiedScr New in-memory SCR struct reflecting the addition.\n @custom:pre If `scr.scr != 0`, then `uint256(scr.scr) + scrAmount_` fits in uint256\n @custom:pre `policyInterestRate` is expressed in wad"},"id":5604,"implemented":true,"kind":"function","modifiers":[],"name":"add","nameLocation":"13080:3:21","nodeType":"FunctionDefinition","parameters":{"id":5537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5532,"mutability":"mutable","name":"scr","nameLocation":"13101:3:21","nodeType":"VariableDeclaration","scope":5604,"src":"13089:15:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":5531,"nodeType":"UserDefinedTypeName","pathNode":{"id":5530,"name":"Scr","nameLocations":["13089:3:21"],"nodeType":"IdentifierPath","referencedDeclaration":4824,"src":"13089:3:21"},"referencedDeclaration":4824,"src":"13089:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"},{"constant":false,"id":5534,"mutability":"mutable","name":"scrAmount_","nameLocation":"13118:10:21","nodeType":"VariableDeclaration","scope":5604,"src":"13110:18:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5533,"name":"uint256","nodeType":"ElementaryTypeName","src":"13110:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5536,"mutability":"mutable","name":"policyInterestRate","nameLocation":"13142:18:21","nodeType":"VariableDeclaration","scope":5604,"src":"13134:26:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5535,"name":"uint256","nodeType":"ElementaryTypeName","src":"13134:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13083:81:21"},"returnParameters":{"id":5541,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5540,"mutability":"mutable","name":"modifiedScr","nameLocation":"13199:11:21","nodeType":"VariableDeclaration","scope":5604,"src":"13188:22:21","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_memory_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":5539,"nodeType":"UserDefinedTypeName","pathNode":{"id":5538,"name":"Scr","nameLocations":["13188:3:21"],"nodeType":"IdentifierPath","referencedDeclaration":4824,"src":"13188:3:21"},"referencedDeclaration":4824,"src":"13188:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"}],"src":"13187:24:21"},"scope":5761,"src":"13071:740:21","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5675,"nodeType":"Block","src":"14304:558:21","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5621,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5618,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5608,"src":"14314:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":5619,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14318:3:21","memberName":"scr","nodeType":"MemberAccess","referencedDeclaration":4821,"src":"14314:7:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":5620,"name":"scrAmount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5610,"src":"14325:10:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14314:21:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":5673,"nodeType":"Block","src":"14395:463:21","statements":[{"assignments":[5629],"declarations":[{"constant":false,"id":5629,"mutability":"mutable","name":"origScr","nameLocation":"14411:7:21","nodeType":"VariableDeclaration","scope":5673,"src":"14403:15:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5628,"name":"uint256","nodeType":"ElementaryTypeName","src":"14403:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5635,"initialValue":{"arguments":[{"expression":{"id":5632,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5608,"src":"14429:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":5633,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14433:3:21","memberName":"scr","nodeType":"MemberAccess","referencedDeclaration":4821,"src":"14429:7:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":5631,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14421:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5630,"name":"uint256","nodeType":"ElementaryTypeName","src":"14421:7:21","typeDescriptions":{}}},"id":5634,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14421:16:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"14403:34:21"},{"assignments":[5637],"declarations":[{"constant":false,"id":5637,"mutability":"mutable","name":"newScr","nameLocation":"14453:6:21","nodeType":"VariableDeclaration","scope":5673,"src":"14445:14:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5636,"name":"uint256","nodeType":"ElementaryTypeName","src":"14445:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5641,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5638,"name":"origScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5629,"src":"14462:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":5639,"name":"scrAmount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5610,"src":"14472:10:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14462:20:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"14445:37:21"},{"assignments":[5643],"declarations":[{"constant":false,"id":5643,"mutability":"mutable","name":"newInterestRate","nameLocation":"14595:15:21","nodeType":"VariableDeclaration","scope":5673,"src":"14587:23:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5642,"name":"uint256","nodeType":"ElementaryTypeName","src":"14587:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5663,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"expression":{"id":5648,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5608,"src":"14646:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":5649,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14650:12:21","memberName":"interestRate","nodeType":"MemberAccess","referencedDeclaration":4823,"src":"14646:16:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":5647,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14638:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5646,"name":"uint256","nodeType":"ElementaryTypeName","src":"14638:7:21","typeDescriptions":{}}},"id":5650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14638:25:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5651,"name":"origScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5629,"src":"14665:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5652,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"14674:3:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5645,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[4849,4870],"referencedDeclaration":4849,"src":"14630:7:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":5653,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14630:48:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":5655,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5612,"src":"14689:18:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5656,"name":"scrAmount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5610,"src":"14709:10:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5657,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"14721:3:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5654,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[4849,4870],"referencedDeclaration":4849,"src":"14681:7:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":5658,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14681:44:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14630:95:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5660,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"14735:3:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5661,"name":"newScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5637,"src":"14748:6:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5644,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[4849,4870],"referencedDeclaration":4849,"src":"14613:7:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":5662,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14613:149:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"14587:175:21"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5665,"name":"newScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5637,"src":"14788:6:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14795:9:21","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":35662,"src":"14788:16:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":5667,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14788:18:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":5668,"name":"newInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5643,"src":"14822:15:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14838:9:21","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":35662,"src":"14822:25:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":5670,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14822:27:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":5664,"name":"Scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4824,"src":"14778:3:21","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Scr_$4824_storage_ptr_$","typeString":"type(struct ETKLib.Scr storage pointer)"}},"id":5671,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["14783:3:21","14808:12:21"],"names":["scr","interestRate"],"nodeType":"FunctionCall","src":"14778:73:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_memory_ptr","typeString":"struct ETKLib.Scr memory"}},"functionReturnParameters":5617,"id":5672,"nodeType":"Return","src":"14771:80:21"}]},"id":5674,"nodeType":"IfStatement","src":"14310:548:21","trueBody":{"id":5627,"nodeType":"Block","src":"14337:52:21","statements":[{"expression":{"arguments":[{"hexValue":"30","id":5623,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14362:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":5624,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14379:1:21","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"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":5622,"name":"Scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4824,"src":"14352:3:21","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Scr_$4824_storage_ptr_$","typeString":"type(struct ETKLib.Scr storage pointer)"}},"id":5625,"isConstant":false,"isLValue":false,"isPure":true,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["14357:3:21","14365:12:21"],"names":["scr","interestRate"],"nodeType":"FunctionCall","src":"14352:30:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_memory_ptr","typeString":"struct ETKLib.Scr memory"}},"functionReturnParameters":5617,"id":5626,"nodeType":"Return","src":"14345:37:21"}]}}]},"documentation":{"id":5605,"nodeType":"StructuredDocumentation","src":"13815:345:21","text":" @notice Subtracts SCR and updates the weighted-average `interestRate`.\n @param scrAmount_ Amount of SCR to remove.\n @param policyInterestRate Annualized rate (wad) associated with `scrAmount_`.\n @return modifiedScr New in-memory SCR struct reflecting the subtraction.\n @custom:pre `scrAmount_ <= scr.scr`"},"id":5676,"implemented":true,"kind":"function","modifiers":[],"name":"sub","nameLocation":"14172:3:21","nodeType":"FunctionDefinition","parameters":{"id":5613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5608,"mutability":"mutable","name":"scr","nameLocation":"14193:3:21","nodeType":"VariableDeclaration","scope":5676,"src":"14181:15:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":5607,"nodeType":"UserDefinedTypeName","pathNode":{"id":5606,"name":"Scr","nameLocations":["14181:3:21"],"nodeType":"IdentifierPath","referencedDeclaration":4824,"src":"14181:3:21"},"referencedDeclaration":4824,"src":"14181:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"},{"constant":false,"id":5610,"mutability":"mutable","name":"scrAmount_","nameLocation":"14210:10:21","nodeType":"VariableDeclaration","scope":5676,"src":"14202:18:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5609,"name":"uint256","nodeType":"ElementaryTypeName","src":"14202:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5612,"mutability":"mutable","name":"policyInterestRate","nameLocation":"14234:18:21","nodeType":"VariableDeclaration","scope":5676,"src":"14226:26:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5611,"name":"uint256","nodeType":"ElementaryTypeName","src":"14226:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14175:81:21"},"returnParameters":{"id":5617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5616,"mutability":"mutable","name":"modifiedScr","nameLocation":"14291:11:21","nodeType":"VariableDeclaration","scope":5676,"src":"14280:22:21","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_memory_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":5615,"nodeType":"UserDefinedTypeName","pathNode":{"id":5614,"name":"Scr","nameLocations":["14280:3:21"],"nodeType":"IdentifierPath","referencedDeclaration":4824,"src":"14280:3:21"},"referencedDeclaration":4824,"src":"14280:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"}],"src":"14279:24:21"},"scope":5761,"src":"14163:699:21","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5713,"nodeType":"Block","src":"15023:171:21","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":5690,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5680,"src":"15067:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":5691,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15071:3:21","memberName":"scr","nodeType":"MemberAccess","referencedDeclaration":4821,"src":"15067:7:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":5689,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15059:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5688,"name":"uint256","nodeType":"ElementaryTypeName","src":"15059:7:21","typeDescriptions":{}}},"id":5692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15059:16:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":5695,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5680,"src":"15094:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":5696,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15098:12:21","memberName":"interestRate","nodeType":"MemberAccess","referencedDeclaration":4823,"src":"15094:16:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":5694,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15086:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5693,"name":"uint256","nodeType":"ElementaryTypeName","src":"15086:7:21","typeDescriptions":{}}},"id":5697,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15086:25:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5698,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"15115:5:21","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":5699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15121:9:21","memberName":"timestamp","nodeType":"MemberAccess","src":"15115:15:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":5702,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5682,"src":"15141:5:21","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":5701,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15133:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5700,"name":"uint256","nodeType":"ElementaryTypeName","src":"15133:7:21","typeDescriptions":{}}},"id":5703,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15133:14:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15115:32:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5705,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15114:34:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15086:62:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5707,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15085:64:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5708,"name":"SECONDS_PER_YEAR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4795,"src":"15152:16:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15085:83:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5710,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4808,"src":"15178:3:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5687,"name":"_mulDiv","nodeType":"Identifier","overloadedDeclarations":[4849,4870],"referencedDeclaration":4849,"src":"15042:7:21","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":5711,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15042:147:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5686,"id":5712,"nodeType":"Return","src":"15029:160:21"}]},"documentation":{"id":5677,"nodeType":"StructuredDocumentation","src":"14866:73:21","text":" @notice Returns the earnings of the SCR since a given date"},"id":5714,"implemented":true,"kind":"function","modifiers":[],"name":"earnings","nameLocation":"14951:8:21","nodeType":"FunctionDefinition","parameters":{"id":5683,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5680,"mutability":"mutable","name":"scr","nameLocation":"14972:3:21","nodeType":"VariableDeclaration","scope":5714,"src":"14960:15:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":5679,"nodeType":"UserDefinedTypeName","pathNode":{"id":5678,"name":"Scr","nameLocations":["14960:3:21"],"nodeType":"IdentifierPath","referencedDeclaration":4824,"src":"14960:3:21"},"referencedDeclaration":4824,"src":"14960:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"},{"constant":false,"id":5682,"mutability":"mutable","name":"since","nameLocation":"14984:5:21","nodeType":"VariableDeclaration","scope":5714,"src":"14977:12:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":5681,"name":"uint32","nodeType":"ElementaryTypeName","src":"14977:6:21","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"14959:31:21"},"returnParameters":{"id":5686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5685,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5714,"src":"15014:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5684,"name":"uint256","nodeType":"ElementaryTypeName","src":"15014:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15013:9:21"},"scope":5761,"src":"14942:252:21","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5743,"nodeType":"Block","src":"15517:116:21","statements":[{"assignments":[5726],"declarations":[{"constant":false,"id":5726,"mutability":"mutable","name":"scr_","nameLocation":"15531:4:21","nodeType":"VariableDeclaration","scope":5743,"src":"15523:12:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5725,"name":"uint256","nodeType":"ElementaryTypeName","src":"15523:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5732,"initialValue":{"arguments":[{"expression":{"id":5729,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5718,"src":"15546:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":5730,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15550:3:21","memberName":"scr","nodeType":"MemberAccess","referencedDeclaration":4821,"src":"15546:7:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":5728,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15538:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5727,"name":"uint256","nodeType":"ElementaryTypeName","src":"15538:7:21","typeDescriptions":{}}},"id":5731,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15538:16:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15523:31:21"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5733,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5720,"src":"15564:11:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":5734,"name":"scr_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5726,"src":"15578:4:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15564:18:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"hexValue":"30","id":5740,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15627:1:21","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":5724,"id":5741,"nodeType":"Return","src":"15620:8:21"},"id":5742,"nodeType":"IfStatement","src":"15560:68:21","trueBody":{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5738,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5736,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5720,"src":"15591:11:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":5737,"name":"scr_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5726,"src":"15605:4:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15591:18:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5724,"id":5739,"nodeType":"Return","src":"15584:25:21"}}]},"documentation":{"id":5715,"nodeType":"StructuredDocumentation","src":"15198:222:21","text":" @notice Returns liquid funds available given `totalSupply`, excluding locked SCR.\n @param totalSupply Total supply expressed in current units.\n @return available `max(totalSupply - scr.scr, 0)`."},"id":5744,"implemented":true,"kind":"function","modifiers":[],"name":"fundsAvailable","nameLocation":"15432:14:21","nodeType":"FunctionDefinition","parameters":{"id":5721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5718,"mutability":"mutable","name":"scr","nameLocation":"15459:3:21","nodeType":"VariableDeclaration","scope":5744,"src":"15447:15:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":5717,"nodeType":"UserDefinedTypeName","pathNode":{"id":5716,"name":"Scr","nameLocations":["15447:3:21"],"nodeType":"IdentifierPath","referencedDeclaration":4824,"src":"15447:3:21"},"referencedDeclaration":4824,"src":"15447:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"},{"constant":false,"id":5720,"mutability":"mutable","name":"totalSupply","nameLocation":"15472:11:21","nodeType":"VariableDeclaration","scope":5744,"src":"15464:19:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5719,"name":"uint256","nodeType":"ElementaryTypeName","src":"15464:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15446:38:21"},"returnParameters":{"id":5724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5723,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5744,"src":"15508:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5722,"name":"uint256","nodeType":"ElementaryTypeName","src":"15508:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15507:9:21"},"scope":5761,"src":"15423:210:21","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5759,"nodeType":"Block","src":"15788:34:21","statements":[{"expression":{"arguments":[{"expression":{"id":5755,"name":"scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5748,"src":"15809:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr storage pointer"}},"id":5756,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15813:3:21","memberName":"scr","nodeType":"MemberAccess","referencedDeclaration":4821,"src":"15809:7:21","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":5754,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15801:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":5753,"name":"uint256","nodeType":"ElementaryTypeName","src":"15801:7:21","typeDescriptions":{}}},"id":5757,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15801:16:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5752,"id":5758,"nodeType":"Return","src":"15794:23:21"}]},"documentation":{"id":5745,"nodeType":"StructuredDocumentation","src":"15637:80:21","text":" @notice Returns the SCR amount (locked capital) in current units."},"id":5760,"implemented":true,"kind":"function","modifiers":[],"name":"scrAmount","nameLocation":"15729:9:21","nodeType":"FunctionDefinition","parameters":{"id":5749,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5748,"mutability":"mutable","name":"scr","nameLocation":"15751:3:21","nodeType":"VariableDeclaration","scope":5760,"src":"15739:15:21","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"},"typeName":{"id":5747,"nodeType":"UserDefinedTypeName","pathNode":{"id":5746,"name":"Scr","nameLocations":["15739:3:21"],"nodeType":"IdentifierPath","referencedDeclaration":4824,"src":"15739:3:21"},"referencedDeclaration":4824,"src":"15739:3:21","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"}],"src":"15738:17:21"},"returnParameters":{"id":5752,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5751,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5760,"src":"15779:7:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5750,"name":"uint256","nodeType":"ElementaryTypeName","src":"15779:7:21","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15778:9:21"},"scope":5761,"src":"15720:102:21","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":5762,"src":"379:15476:21","usedErrors":[4828],"usedEvents":[]}],"src":"40:15816:21"},"id":21},"@ensuro/core/contracts/EToken.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/EToken.sol","exportedSymbols":{"ERC20PermitUpgradeable":[16782],"ERC20Upgradeable":[16613],"ETKLib":[5761],"EToken":[7681],"ICooler":[14162],"IERC165":[33545],"IERC20":[24193],"IERC20Metadata":[24925],"IERC4626":[22463],"IEToken":[14336],"ILPWhitelist":[14383],"IPolicyPool":[14638],"IPolicyPoolComponent":[14655],"Math":[35187],"Reserve":[13500],"SafeCast":[36952],"SafeERC20":[25416]},"id":7682,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":5763,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:22"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"@openzeppelin/contracts/token/ERC20/IERC20.sol","id":5765,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7682,"sourceUnit":24194,"src":"65:70:22","symbolAliases":[{"foreign":{"id":5764,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"73:6:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":5767,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7682,"sourceUnit":33546,"src":"136:80:22","symbolAliases":[{"foreign":{"id":5766,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"144:7:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","file":"@openzeppelin/contracts/interfaces/IERC4626.sol","id":5769,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7682,"sourceUnit":22464,"src":"217:73:22","symbolAliases":[{"foreign":{"id":5768,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22463,"src":"225:8:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":5771,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7682,"sourceUnit":24926,"src":"291:97:22","symbolAliases":[{"foreign":{"id":5770,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"299:14:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol","file":"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol","id":5773,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7682,"sourceUnit":16614,"src":"389:102:22","symbolAliases":[{"foreign":{"id":5772,"name":"ERC20Upgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16613,"src":"397:16:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol","id":5775,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7682,"sourceUnit":16783,"src":"492:125:22","symbolAliases":[{"foreign":{"id":5774,"name":"ERC20PermitUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16782,"src":"500:22:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":5777,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7682,"sourceUnit":25417,"src":"618:82:22","symbolAliases":[{"foreign":{"id":5776,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25416,"src":"626:9:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":5779,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7682,"sourceUnit":36953,"src":"701:73:22","symbolAliases":[{"foreign":{"id":5778,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"709:8:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":5781,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7682,"sourceUnit":35188,"src":"775:65:22","symbolAliases":[{"foreign":{"id":5780,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"783:4:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyPool.sol","file":"./interfaces/IPolicyPool.sol","id":5783,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7682,"sourceUnit":14639,"src":"841:57:22","symbolAliases":[{"foreign":{"id":5782,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14638,"src":"849:11:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/ILPWhitelist.sol","file":"./interfaces/ILPWhitelist.sol","id":5785,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7682,"sourceUnit":14384,"src":"899:59:22","symbolAliases":[{"foreign":{"id":5784,"name":"ILPWhitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14383,"src":"907:12:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/ICooler.sol","file":"./interfaces/ICooler.sol","id":5787,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7682,"sourceUnit":14163,"src":"959:49:22","symbolAliases":[{"foreign":{"id":5786,"name":"ICooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14162,"src":"967:7:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IEToken.sol","file":"./interfaces/IEToken.sol","id":5789,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7682,"sourceUnit":14337,"src":"1009:49:22","symbolAliases":[{"foreign":{"id":5788,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14336,"src":"1017:7:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyPoolComponent.sol","file":"./interfaces/IPolicyPoolComponent.sol","id":5791,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7682,"sourceUnit":14656,"src":"1059:75:22","symbolAliases":[{"foreign":{"id":5790,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14655,"src":"1067:20:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/ETKLib.sol","file":"./ETKLib.sol","id":5793,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7682,"sourceUnit":5762,"src":"1135:36:22","symbolAliases":[{"foreign":{"id":5792,"name":"ETKLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5761,"src":"1143:6:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/Reserve.sol","file":"./Reserve.sol","id":5795,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7682,"sourceUnit":13501,"src":"1172:38:22","symbolAliases":[{"foreign":{"id":5794,"name":"Reserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13500,"src":"1180:7:22","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":5797,"name":"Reserve","nameLocations":["1902:7:22"],"nodeType":"IdentifierPath","referencedDeclaration":13500,"src":"1902:7:22"},"id":5798,"nodeType":"InheritanceSpecifier","src":"1902:7:22"},{"baseName":{"id":5799,"name":"ERC20PermitUpgradeable","nameLocations":["1911:22:22"],"nodeType":"IdentifierPath","referencedDeclaration":16782,"src":"1911:22:22"},"id":5800,"nodeType":"InheritanceSpecifier","src":"1911:22:22"},{"baseName":{"id":5801,"name":"IEToken","nameLocations":["1935:7:22"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"1935:7:22"},"id":5802,"nodeType":"InheritanceSpecifier","src":"1935:7:22"}],"canonicalName":"EToken","contractDependencies":[],"contractKind":"contract","documentation":{"id":5796,"nodeType":"StructuredDocumentation","src":"1212:670:22","text":" @title Ensuro ERC20 EToken - interest-bearing token\n @notice These are the liquidity pools where users provide funds to cover insurance products\n @dev Implementation of the interest/earnings bearing token for the Ensuro protocol.\n      `_tsScaled.scale` scales the balances stored in _balances. _tsScaled (totalSupply scaled) grows\n      continuoulsly at tokenInterestRate().\n      Every operation that changes the utilization rate (_scr.scr/totalSupply) or the _scr.interestRate, updates\n      first the _tsScaled.scale accumulating the interest accrued since _tsScaled.lastUpdate.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":7681,"linearizedBaseContracts":[7681,14336,16782,18886,19390,22488,24961,16613,22548,24925,24193,18672,13500,11094,14655,33545,23600,22506,23434],"name":"EToken","nameLocation":"1892:6:22","nodeType":"ContractDefinition","nodes":[{"global":false,"id":5805,"libraryName":{"id":5803,"name":"Math","nameLocations":["1953:4:22"],"nodeType":"IdentifierPath","referencedDeclaration":35187,"src":"1953:4:22"},"nodeType":"UsingForDirective","src":"1947:23:22","typeName":{"id":5804,"name":"uint256","nodeType":"ElementaryTypeName","src":"1962:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"global":false,"id":5809,"libraryName":{"id":5806,"name":"ETKLib","nameLocations":["1979:6:22"],"nodeType":"IdentifierPath","referencedDeclaration":5761,"src":"1979:6:22"},"nodeType":"UsingForDirective","src":"1973:37:22","typeName":{"id":5808,"nodeType":"UserDefinedTypeName","pathNode":{"id":5807,"name":"ETKLib.ScaledAmount","nameLocations":["1990:6:22","1997:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"1990:19:22"},"referencedDeclaration":4819,"src":"1990:19:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}}},{"global":false,"id":5813,"libraryName":{"id":5810,"name":"ETKLib","nameLocations":["2019:6:22"],"nodeType":"IdentifierPath","referencedDeclaration":5761,"src":"2019:6:22"},"nodeType":"UsingForDirective","src":"2013:28:22","typeName":{"id":5812,"nodeType":"UserDefinedTypeName","pathNode":{"id":5811,"name":"ETKLib.Scr","nameLocations":["2030:6:22","2037:3:22"],"nodeType":"IdentifierPath","referencedDeclaration":4824,"src":"2030:10:22"},"referencedDeclaration":4824,"src":"2030:10:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"}}},{"global":false,"id":5817,"libraryName":{"id":5814,"name":"ETKLib","nameLocations":["2050:6:22"],"nodeType":"IdentifierPath","referencedDeclaration":5761,"src":"2050:6:22"},"nodeType":"UsingForDirective","src":"2044:30:22","typeName":{"id":5816,"nodeType":"UserDefinedTypeName","pathNode":{"id":5815,"name":"ETKLib.Scale","nameLocations":["2061:6:22","2068:5:22"],"nodeType":"IdentifierPath","referencedDeclaration":4792,"src":"2061:12:22"},"referencedDeclaration":4792,"src":"2061:12:22","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}}},{"global":false,"id":5821,"libraryName":{"id":5818,"name":"SafeERC20","nameLocations":["2083:9:22"],"nodeType":"IdentifierPath","referencedDeclaration":25416,"src":"2083:9:22"},"nodeType":"UsingForDirective","src":"2077:35:22","typeName":{"id":5820,"nodeType":"UserDefinedTypeName","pathNode":{"id":5819,"name":"IERC20Metadata","nameLocations":["2097:14:22"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"2097:14:22"},"referencedDeclaration":24925,"src":"2097:14:22","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}}},{"global":false,"id":5824,"libraryName":{"id":5822,"name":"SafeCast","nameLocations":["2121:8:22"],"nodeType":"IdentifierPath","referencedDeclaration":36952,"src":"2121:8:22"},"nodeType":"UsingForDirective","src":"2115:27:22","typeName":{"id":5823,"name":"uint256","nodeType":"ElementaryTypeName","src":"2134:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":true,"id":5827,"mutability":"constant","name":"WAD","nameLocation":"2172:3:22","nodeType":"VariableDeclaration","scope":7681,"src":"2146:36:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5825,"name":"uint256","nodeType":"ElementaryTypeName","src":"2146:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31653138","id":5826,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2178:4:22","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"visibility":"internal"},{"constant":true,"id":5830,"mutability":"constant","name":"FOUR_DECIMAL_TO_WAD","nameLocation":"2212:19:22","nodeType":"VariableDeclaration","scope":7681,"src":"2186:52:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5828,"name":"uint256","nodeType":"ElementaryTypeName","src":"2186:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31653134","id":5829,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2234:4:22","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000_by_1","typeString":"int_const 100000000000000"},"value":"1e14"},"visibility":"internal"},{"constant":true,"id":5833,"mutability":"constant","name":"HUNDRED_PERCENT","nameLocation":"2267:15:22","nodeType":"VariableDeclaration","scope":7681,"src":"2242:46:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":5831,"name":"uint16","nodeType":"ElementaryTypeName","src":"2242:6:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"value":{"hexValue":"316534","id":5832,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2285:3:22","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"1e4"},"visibility":"internal"},{"constant":true,"id":5836,"mutability":"constant","name":"LIQ_REQ_MIN","nameLocation":"2318:11:22","nodeType":"VariableDeclaration","scope":7681,"src":"2292:46:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5834,"name":"uint256","nodeType":"ElementaryTypeName","src":"2292:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"302e38653138","id":5835,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2332:6:22","typeDescriptions":{"typeIdentifier":"t_rational_800000000000000000_by_1","typeString":"int_const 800000000000000000"},"value":"0.8e18"},"visibility":"internal"},{"constant":true,"id":5839,"mutability":"constant","name":"LIQ_REQ_MAX","nameLocation":"2375:11:22","nodeType":"VariableDeclaration","scope":7681,"src":"2349:46:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5837,"name":"uint256","nodeType":"ElementaryTypeName","src":"2349:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"312e33653138","id":5838,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2389:6:22","typeDescriptions":{"typeIdentifier":"t_rational_1300000000000000000_by_1","typeString":"int_const 1300000000000000000"},"value":"1.3e18"},"visibility":"internal"},{"constant":true,"id":5842,"mutability":"constant","name":"INT_LOAN_IR_MAX","nameLocation":"2433:15:22","nodeType":"VariableDeclaration","scope":7681,"src":"2407:50:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5840,"name":"uint256","nodeType":"ElementaryTypeName","src":"2407:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"302e35653138","id":5841,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2451:6:22","typeDescriptions":{"typeIdentifier":"t_rational_500000000000000000_by_1","typeString":"int_const 500000000000000000"},"value":"0.5e18"},"visibility":"internal"},{"constant":false,"id":5845,"mutability":"mutable","name":"_tsScaled","nameLocation":"2545:9:22","nodeType":"VariableDeclaration","scope":7681,"src":"2516:38:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":5844,"nodeType":"UserDefinedTypeName","pathNode":{"id":5843,"name":"ETKLib.ScaledAmount","nameLocations":["2516:6:22","2523:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"2516:19:22"},"referencedDeclaration":4819,"src":"2516:19:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"},{"constant":false,"id":5848,"mutability":"mutable","name":"_scr","nameLocation":"2602:4:22","nodeType":"VariableDeclaration","scope":7681,"src":"2582:24:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr"},"typeName":{"id":5847,"nodeType":"UserDefinedTypeName","pathNode":{"id":5846,"name":"ETKLib.Scr","nameLocations":["2582:6:22","2589:3:22"],"nodeType":"IdentifierPath","referencedDeclaration":4824,"src":"2582:10:22"},"referencedDeclaration":4824,"src":"2582:10:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage_ptr","typeString":"struct ETKLib.Scr"}},"visibility":"internal"},{"constant":false,"documentation":{"id":5849,"nodeType":"StructuredDocumentation","src":"2611:98:22","text":"@notice Mapping that keeps track of allowed borrowers (PremiumsAccount) and their current debt"},"id":5854,"mutability":"mutable","name":"_loans","nameLocation":"2761:6:22","nodeType":"VariableDeclaration","scope":7681,"src":"2712:55:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$4819_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount)"},"typeName":{"id":5853,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":5850,"name":"address","nodeType":"ElementaryTypeName","src":"2720:7:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2712:39:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$4819_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5852,"nodeType":"UserDefinedTypeName","pathNode":{"id":5851,"name":"ETKLib.ScaledAmount","nameLocations":["2731:6:22","2738:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"2731:19:22"},"referencedDeclaration":4819,"src":"2731:19:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}}},"visibility":"internal"},{"canonicalName":"EToken.PackedParams","documentation":{"id":5855,"nodeType":"StructuredDocumentation","src":"2772:157:22","text":" @notice Struct to store different parameters of the eToken\n @dev Packed so it fits in 256 bits. The parameters are stored with 4 decimals."},"id":5867,"members":[{"constant":false,"id":5858,"mutability":"mutable","name":"whitelist","nameLocation":"2971:9:22","nodeType":"VariableDeclaration","scope":5867,"src":"2958:22:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"},"typeName":{"id":5857,"nodeType":"UserDefinedTypeName","pathNode":{"id":5856,"name":"ILPWhitelist","nameLocations":["2958:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":14383,"src":"2958:12:22"},"referencedDeclaration":14383,"src":"2958:12:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}},"visibility":"internal"},{"constant":false,"id":5860,"mutability":"mutable","name":"liquidityRequirement","nameLocation":"3033:20:22","nodeType":"VariableDeclaration","scope":5867,"src":"3026:27:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":5859,"name":"uint16","nodeType":"ElementaryTypeName","src":"3026:6:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":5862,"mutability":"mutable","name":"minUtilizationRate","nameLocation":"3131:18:22","nodeType":"VariableDeclaration","scope":5867,"src":"3124:25:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":5861,"name":"uint16","nodeType":"ElementaryTypeName","src":"3124:6:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":5864,"mutability":"mutable","name":"maxUtilizationRate","nameLocation":"3250:18:22","nodeType":"VariableDeclaration","scope":5867,"src":"3243:25:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":5863,"name":"uint16","nodeType":"ElementaryTypeName","src":"3243:6:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":5866,"mutability":"mutable","name":"internalLoanInterestRate","nameLocation":"3368:24:22","nodeType":"VariableDeclaration","scope":5867,"src":"3361:31:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":5865,"name":"uint16","nodeType":"ElementaryTypeName","src":"3361:6:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"name":"PackedParams","nameLocation":"2939:12:22","nodeType":"StructDefinition","scope":7681,"src":"2932:550:22","visibility":"public"},{"constant":false,"documentation":{"id":5868,"nodeType":"StructuredDocumentation","src":"3486:29:22","text":"@notice eToken parameters"},"id":5871,"mutability":"mutable","name":"_params","nameLocation":"3540:7:22","nodeType":"VariableDeclaration","scope":7681,"src":"3518:29:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams"},"typeName":{"id":5870,"nodeType":"UserDefinedTypeName","pathNode":{"id":5869,"name":"PackedParams","nameLocations":["3518:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":5867,"src":"3518:12:22"},"referencedDeclaration":5867,"src":"3518:12:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage_ptr","typeString":"struct EToken.PackedParams"}},"visibility":"internal"},{"constant":false,"documentation":{"id":5872,"nodeType":"StructuredDocumentation","src":"3552:99:22","text":"@notice ERC-4626 vault where the funds of the eToken are invested to generate additional yields"},"id":5875,"mutability":"mutable","name":"_yieldVault","nameLocation":"3672:11:22","nodeType":"VariableDeclaration","scope":7681,"src":"3654:29:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":5874,"nodeType":"UserDefinedTypeName","pathNode":{"id":5873,"name":"IERC4626","nameLocations":["3654:8:22"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"3654:8:22"},"referencedDeclaration":22463,"src":"3654:8:22","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"documentation":{"id":5876,"nodeType":"StructuredDocumentation","src":"3688:108:22","text":"@notice When defined (not address(0)), it's a contract that will handle the coooldown period and process"},"id":5879,"mutability":"mutable","name":"_cooler","nameLocation":"3816:7:22","nodeType":"VariableDeclaration","scope":7681,"src":"3799:24:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"},"typeName":{"id":5878,"nodeType":"UserDefinedTypeName","pathNode":{"id":5877,"name":"ICooler","nameLocations":["3799:7:22"],"nodeType":"IdentifierPath","referencedDeclaration":14162,"src":"3799:7:22"},"referencedDeclaration":14162,"src":"3799:7:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}},"visibility":"internal"},{"documentation":{"id":5880,"nodeType":"StructuredDocumentation","src":"3828:106:22","text":"@notice Thrown when called by a non-borrower on borrower operations (internalLoan and lock/unlock scr)"},"errorSelector":"9cc7db46","id":5884,"name":"OnlyBorrower","nameLocation":"3943:12:22","nodeType":"ErrorDefinition","parameters":{"id":5883,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5882,"mutability":"mutable","name":"caller","nameLocation":"3964:6:22","nodeType":"VariableDeclaration","scope":5884,"src":"3956:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5881,"name":"address","nodeType":"ElementaryTypeName","src":"3956:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3955:16:22"},"src":"3937:35:22"},{"documentation":{"id":5885,"nodeType":"StructuredDocumentation","src":"3976:90:22","text":"@notice Thrown on setParam when the given value doesn't match the specific validations"},"errorSelector":"f8f01785","id":5890,"name":"InvalidParameter","nameLocation":"4075:16:22","nodeType":"ErrorDefinition","parameters":{"id":5889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5888,"mutability":"mutable","name":"parameter","nameLocation":"4102:9:22","nodeType":"VariableDeclaration","scope":5890,"src":"4092:19:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"},"typeName":{"id":5887,"nodeType":"UserDefinedTypeName","pathNode":{"id":5886,"name":"Parameter","nameLocations":["4092:9:22"],"nodeType":"IdentifierPath","referencedDeclaration":14171,"src":"4092:9:22"},"referencedDeclaration":14171,"src":"4092:9:22","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}},"visibility":"internal"}],"src":"4091:21:22"},"src":"4069:44:22"},{"documentation":{"id":5891,"nodeType":"StructuredDocumentation","src":"4117:63:22","text":"@notice Thrown when a transfer is rejected by the Whitelist"},"errorSelector":"4b9fe5a6","id":5899,"name":"TransferNotWhitelisted","nameLocation":"4189:22:22","nodeType":"ErrorDefinition","parameters":{"id":5898,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5893,"mutability":"mutable","name":"from_","nameLocation":"4220:5:22","nodeType":"VariableDeclaration","scope":5899,"src":"4212:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5892,"name":"address","nodeType":"ElementaryTypeName","src":"4212:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5895,"mutability":"mutable","name":"to_","nameLocation":"4235:3:22","nodeType":"VariableDeclaration","scope":5899,"src":"4227:11:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5894,"name":"address","nodeType":"ElementaryTypeName","src":"4227:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5897,"mutability":"mutable","name":"value","nameLocation":"4248:5:22","nodeType":"VariableDeclaration","scope":5899,"src":"4240:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5896,"name":"uint256","nodeType":"ElementaryTypeName","src":"4240:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4211:43:22"},"src":"4183:72:22"},{"documentation":{"id":5900,"nodeType":"StructuredDocumentation","src":"4259:62:22","text":"@notice Thrown when a deposit is rejected by the Whitelist"},"errorSelector":"dad93260","id":5906,"name":"DepositNotWhitelisted","nameLocation":"4330:21:22","nodeType":"ErrorDefinition","parameters":{"id":5905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5902,"mutability":"mutable","name":"account","nameLocation":"4360:7:22","nodeType":"VariableDeclaration","scope":5906,"src":"4352:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5901,"name":"address","nodeType":"ElementaryTypeName","src":"4352:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5904,"mutability":"mutable","name":"value","nameLocation":"4377:5:22","nodeType":"VariableDeclaration","scope":5906,"src":"4369:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5903,"name":"uint256","nodeType":"ElementaryTypeName","src":"4369:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4351:32:22"},"src":"4324:60:22"},{"documentation":{"id":5907,"nodeType":"StructuredDocumentation","src":"4388:65:22","text":"@notice Thrown when a withdrawal is rejected by the Whitelist"},"errorSelector":"d38a9339","id":5913,"name":"WithdrawalNotWhitelisted","nameLocation":"4462:24:22","nodeType":"ErrorDefinition","parameters":{"id":5912,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5909,"mutability":"mutable","name":"account","nameLocation":"4495:7:22","nodeType":"VariableDeclaration","scope":5913,"src":"4487:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5908,"name":"address","nodeType":"ElementaryTypeName","src":"4487:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5911,"mutability":"mutable","name":"value","nameLocation":"4512:5:22","nodeType":"VariableDeclaration","scope":5913,"src":"4504:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5910,"name":"uint256","nodeType":"ElementaryTypeName","src":"4504:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4486:32:22"},"src":"4456:63:22"},{"documentation":{"id":5914,"nodeType":"StructuredDocumentation","src":"4523:82:22","text":"@notice Thrown when trying to lock more funds than the ones that are available"},"errorSelector":"08f31df3","id":5920,"name":"NotEnoughScrFunds","nameLocation":"4614:17:22","nodeType":"ErrorDefinition","parameters":{"id":5919,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5916,"mutability":"mutable","name":"required","nameLocation":"4640:8:22","nodeType":"VariableDeclaration","scope":5920,"src":"4632:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5915,"name":"uint256","nodeType":"ElementaryTypeName","src":"4632:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5918,"mutability":"mutable","name":"available","nameLocation":"4658:9:22","nodeType":"VariableDeclaration","scope":5920,"src":"4650:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5917,"name":"uint256","nodeType":"ElementaryTypeName","src":"4650:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4631:37:22"},"src":"4608:61:22"},{"documentation":{"id":5921,"nodeType":"StructuredDocumentation","src":"4673:85:22","text":"@notice Thrown when a deposit leaves the utilizationRate under the minUtilization"},"errorSelector":"62464ab7","id":5927,"name":"UtilizationRateTooLow","nameLocation":"4767:21:22","nodeType":"ErrorDefinition","parameters":{"id":5926,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5923,"mutability":"mutable","name":"actualUtilization","nameLocation":"4797:17:22","nodeType":"VariableDeclaration","scope":5927,"src":"4789:25:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5922,"name":"uint256","nodeType":"ElementaryTypeName","src":"4789:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5925,"mutability":"mutable","name":"minUtilization","nameLocation":"4824:14:22","nodeType":"VariableDeclaration","scope":5927,"src":"4816:22:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5924,"name":"uint256","nodeType":"ElementaryTypeName","src":"4816:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4788:51:22"},"src":"4761:79:22"},{"documentation":{"id":5928,"nodeType":"StructuredDocumentation","src":"4844:77:22","text":"@notice Thrown when trying to repayLoan or query a loan of a non-borrower"},"errorSelector":"f55824e4","id":5932,"name":"InvalidBorrower","nameLocation":"4930:15:22","nodeType":"ErrorDefinition","parameters":{"id":5931,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5930,"mutability":"mutable","name":"borrower","nameLocation":"4954:8:22","nodeType":"VariableDeclaration","scope":5932,"src":"4946:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5929,"name":"address","nodeType":"ElementaryTypeName","src":"4946:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4945:18:22"},"src":"4924:40:22"},{"documentation":{"id":5933,"nodeType":"StructuredDocumentation","src":"4968:54:22","text":"@notice Thrown when trying to add a borrower twice"},"errorSelector":"147d1f36","id":5937,"name":"BorrowerAlreadyAdded","nameLocation":"5031:20:22","nodeType":"ErrorDefinition","parameters":{"id":5936,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5935,"mutability":"mutable","name":"borrower","nameLocation":"5060:8:22","nodeType":"VariableDeclaration","scope":5937,"src":"5052:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5934,"name":"address","nodeType":"ElementaryTypeName","src":"5052:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5051:18:22"},"src":"5025:45:22"},{"documentation":{"id":5938,"nodeType":"StructuredDocumentation","src":"5074:113:22","text":"@notice Thrown when trying to change the whitelist to a contract that doesn't belong to the same policyPool()"},"errorSelector":"7ef0808b","id":5943,"name":"InvalidWhitelist","nameLocation":"5196:16:22","nodeType":"ErrorDefinition","parameters":{"id":5942,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5941,"mutability":"mutable","name":"whitelist","nameLocation":"5226:9:22","nodeType":"VariableDeclaration","scope":5943,"src":"5213:22:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"},"typeName":{"id":5940,"nodeType":"UserDefinedTypeName","pathNode":{"id":5939,"name":"ILPWhitelist","nameLocations":["5213:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":14383,"src":"5213:12:22"},"referencedDeclaration":14383,"src":"5213:12:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}},"visibility":"internal"}],"src":"5212:24:22"},"src":"5190:47:22"},{"documentation":{"id":5944,"nodeType":"StructuredDocumentation","src":"5241:110:22","text":"@notice Thrown when trying to change the cooler to a contract that doesn't belong to the same policyPool()"},"errorSelector":"f4ae1987","id":5949,"name":"InvalidCooler","nameLocation":"5360:13:22","nodeType":"ErrorDefinition","parameters":{"id":5948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5947,"mutability":"mutable","name":"cooler","nameLocation":"5382:6:22","nodeType":"VariableDeclaration","scope":5949,"src":"5374:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"},"typeName":{"id":5946,"nodeType":"UserDefinedTypeName","pathNode":{"id":5945,"name":"ICooler","nameLocations":["5374:7:22"],"nodeType":"IdentifierPath","referencedDeclaration":14162,"src":"5374:7:22"},"referencedDeclaration":14162,"src":"5374:7:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}},"visibility":"internal"}],"src":"5373:16:22"},"src":"5354:36:22"},{"documentation":{"id":5950,"nodeType":"StructuredDocumentation","src":"5394:110:22","text":"@notice Thrown when trying to withdraw an amount that exceeds either the user funds or totalWithdrawable()"},"errorSelector":"087da9fd","id":5956,"name":"ExceedsMaxWithdraw","nameLocation":"5513:18:22","nodeType":"ErrorDefinition","parameters":{"id":5955,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5952,"mutability":"mutable","name":"requested","nameLocation":"5540:9:22","nodeType":"VariableDeclaration","scope":5956,"src":"5532:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5951,"name":"uint256","nodeType":"ElementaryTypeName","src":"5532:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5954,"mutability":"mutable","name":"maxWithdraw","nameLocation":"5559:11:22","nodeType":"VariableDeclaration","scope":5956,"src":"5551:19:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5953,"name":"uint256","nodeType":"ElementaryTypeName","src":"5551:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5531:40:22"},"src":"5507:65:22"},{"documentation":{"id":5957,"nodeType":"StructuredDocumentation","src":"5576:105:22","text":"@notice Thrown when trying to execute an instant withdraw when the eToken has non-zero cooldownPeriod"},"errorSelector":"2bc34ba3","id":5962,"name":"WithdrawalsRequireCooldown","nameLocation":"5690:26:22","nodeType":"ErrorDefinition","parameters":{"id":5961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5960,"mutability":"mutable","name":"cooler","nameLocation":"5725:6:22","nodeType":"VariableDeclaration","scope":5962,"src":"5717:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"},"typeName":{"id":5959,"nodeType":"UserDefinedTypeName","pathNode":{"id":5958,"name":"ICooler","nameLocations":["5717:7:22"],"nodeType":"IdentifierPath","referencedDeclaration":14162,"src":"5717:7:22"},"referencedDeclaration":14162,"src":"5717:7:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}},"visibility":"internal"}],"src":"5716:16:22"},"src":"5684:49:22"},{"anonymous":false,"documentation":{"id":5963,"nodeType":"StructuredDocumentation","src":"5737:410:22","text":" @notice Event emitted when a PremiumsAccount takes funds (loan) from the eToken\n @dev These funds are used to cover the losses and may be later repaid if the performance of the product improves\n and accumulates surplus.\n @param borrower The address of the borrower, a {PremiumsAccount}\n @param value The amount of the loan\n @param amountAsked The amount originally asked"},"eventSelector":"98697a4799dbd9db66c7168304c43cba77a27a50d2785625e09072e0d91fdd53","id":5971,"name":"InternalLoan","nameLocation":"6156:12:22","nodeType":"EventDefinition","parameters":{"id":5970,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5965,"indexed":true,"mutability":"mutable","name":"borrower","nameLocation":"6185:8:22","nodeType":"VariableDeclaration","scope":5971,"src":"6169:24:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5964,"name":"address","nodeType":"ElementaryTypeName","src":"6169:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5967,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"6203:5:22","nodeType":"VariableDeclaration","scope":5971,"src":"6195:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5966,"name":"uint256","nodeType":"ElementaryTypeName","src":"6195:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5969,"indexed":false,"mutability":"mutable","name":"amountAsked","nameLocation":"6218:11:22","nodeType":"VariableDeclaration","scope":5971,"src":"6210:19:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5968,"name":"uint256","nodeType":"ElementaryTypeName","src":"6210:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6168:62:22"},"src":"6150:81:22"},{"anonymous":false,"documentation":{"id":5972,"nodeType":"StructuredDocumentation","src":"6235:211:22","text":" @notice Event emitted when a PremiumsAccount repays a loan previously taken\n @param borrower The address of the borrower, a {PremiumsAccount}\n @param value The amount of the repayment"},"eventSelector":"a1aeb41f04a9a2aa1450e8edd0fa1a0a7971ff65c7bbb7b2ca0379b9327edbaf","id":5978,"name":"InternalLoanRepaid","nameLocation":"6455:18:22","nodeType":"EventDefinition","parameters":{"id":5977,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5974,"indexed":true,"mutability":"mutable","name":"borrower","nameLocation":"6490:8:22","nodeType":"VariableDeclaration","scope":5978,"src":"6474:24:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5973,"name":"address","nodeType":"ElementaryTypeName","src":"6474:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5976,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"6508:5:22","nodeType":"VariableDeclaration","scope":5978,"src":"6500:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5975,"name":"uint256","nodeType":"ElementaryTypeName","src":"6500:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6473:41:22"},"src":"6449:66:22"},{"anonymous":false,"documentation":{"id":5979,"nodeType":"StructuredDocumentation","src":"6519:72:22","text":"@notice Event emitted when a new borrower (PremiumsAccount) is added"},"eventSelector":"66c0f28249c4fc4db79872a4405be78a93f19c65ac9ef2f173867a149065bcf2","id":5983,"name":"InternalBorrowerAdded","nameLocation":"6600:21:22","nodeType":"EventDefinition","parameters":{"id":5982,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5981,"indexed":true,"mutability":"mutable","name":"borrower","nameLocation":"6638:8:22","nodeType":"VariableDeclaration","scope":5983,"src":"6622:24:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5980,"name":"address","nodeType":"ElementaryTypeName","src":"6622:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6621:26:22"},"src":"6594:54:22"},{"anonymous":false,"documentation":{"id":5984,"nodeType":"StructuredDocumentation","src":"6652:247:22","text":" @notice Event emitted when a borrower is removed (it can't lock funds or take loans anymore)\n @param borrower The address of the borrower, a {PremiumsAccount}\n @param defaultedDebt The unpaid amount left by the borrower"},"eventSelector":"e2ebfbed0df9004eae018a4ae91b24baa0cd1d83f495fab6dde3a1493f9dc6c6","id":5990,"name":"InternalBorrowerRemoved","nameLocation":"6908:23:22","nodeType":"EventDefinition","parameters":{"id":5989,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5986,"indexed":true,"mutability":"mutable","name":"borrower","nameLocation":"6948:8:22","nodeType":"VariableDeclaration","scope":5990,"src":"6932:24:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5985,"name":"address","nodeType":"ElementaryTypeName","src":"6932:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5988,"indexed":false,"mutability":"mutable","name":"defaultedDebt","nameLocation":"6966:13:22","nodeType":"VariableDeclaration","scope":5990,"src":"6958:21:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5987,"name":"uint256","nodeType":"ElementaryTypeName","src":"6958:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6931:49:22"},"src":"6902:79:22"},{"anonymous":false,"documentation":{"id":5991,"nodeType":"StructuredDocumentation","src":"6985:152:22","text":" @notice Event emitted when a parameter was changed\n @param param Type of parameter change\n @param newValue The new value set"},"eventSelector":"eeeae4504d4c033c7da36bf41d8ece7c21842071ca9f9b423f8e8e36483dcd96","id":5998,"name":"ParameterChanged","nameLocation":"7146:16:22","nodeType":"EventDefinition","parameters":{"id":5997,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5994,"indexed":false,"mutability":"mutable","name":"param","nameLocation":"7173:5:22","nodeType":"VariableDeclaration","scope":5998,"src":"7163:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"},"typeName":{"id":5993,"nodeType":"UserDefinedTypeName","pathNode":{"id":5992,"name":"Parameter","nameLocations":["7163:9:22"],"nodeType":"IdentifierPath","referencedDeclaration":14171,"src":"7163:9:22"},"referencedDeclaration":14171,"src":"7163:9:22","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}},"visibility":"internal"},{"constant":false,"id":5996,"indexed":false,"mutability":"mutable","name":"newValue","nameLocation":"7188:8:22","nodeType":"VariableDeclaration","scope":5998,"src":"7180:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5995,"name":"uint256","nodeType":"ElementaryTypeName","src":"7180:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7162:35:22"},"src":"7140:58:22"},{"anonymous":false,"documentation":{"id":5999,"nodeType":"StructuredDocumentation","src":"7202:120:22","text":" @notice Event emitted when the whitelist is changed\n @dev The event reports the old and new whitelist"},"eventSelector":"db0a396bdd47d29c2b55a6631f0b286785ea8ed9f585d34c8e32cdb022c3bc82","id":6007,"name":"WhitelistChanged","nameLocation":"7331:16:22","nodeType":"EventDefinition","parameters":{"id":6006,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6002,"indexed":false,"mutability":"mutable","name":"oldWhitelist","nameLocation":"7361:12:22","nodeType":"VariableDeclaration","scope":6007,"src":"7348:25:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"},"typeName":{"id":6001,"nodeType":"UserDefinedTypeName","pathNode":{"id":6000,"name":"ILPWhitelist","nameLocations":["7348:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":14383,"src":"7348:12:22"},"referencedDeclaration":14383,"src":"7348:12:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}},"visibility":"internal"},{"constant":false,"id":6005,"indexed":false,"mutability":"mutable","name":"newWhitelist","nameLocation":"7388:12:22","nodeType":"VariableDeclaration","scope":6007,"src":"7375:25:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"},"typeName":{"id":6004,"nodeType":"UserDefinedTypeName","pathNode":{"id":6003,"name":"ILPWhitelist","nameLocations":["7375:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":14383,"src":"7375:12:22"},"referencedDeclaration":14383,"src":"7375:12:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}},"visibility":"internal"}],"src":"7347:54:22"},"src":"7325:77:22"},{"anonymous":false,"documentation":{"id":6008,"nodeType":"StructuredDocumentation","src":"7406:114:22","text":" @notice Event emitted when the cooler is changed\n @dev The event reports the old and new cooler"},"eventSelector":"f9f12db81524e0e7d35f2779daf818e6824509f85b09470f5c1c4d29304a756b","id":6016,"name":"CoolerChanged","nameLocation":"7529:13:22","nodeType":"EventDefinition","parameters":{"id":6015,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6011,"indexed":false,"mutability":"mutable","name":"oldCooler","nameLocation":"7551:9:22","nodeType":"VariableDeclaration","scope":6016,"src":"7543:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"},"typeName":{"id":6010,"nodeType":"UserDefinedTypeName","pathNode":{"id":6009,"name":"ICooler","nameLocations":["7543:7:22"],"nodeType":"IdentifierPath","referencedDeclaration":14162,"src":"7543:7:22"},"referencedDeclaration":14162,"src":"7543:7:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}},"visibility":"internal"},{"constant":false,"id":6014,"indexed":false,"mutability":"mutable","name":"newCooler","nameLocation":"7570:9:22","nodeType":"VariableDeclaration","scope":6016,"src":"7562:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"},"typeName":{"id":6013,"nodeType":"UserDefinedTypeName","pathNode":{"id":6012,"name":"ICooler","nameLocations":["7562:7:22"],"nodeType":"IdentifierPath","referencedDeclaration":14162,"src":"7562:7:22"},"referencedDeclaration":14162,"src":"7562:7:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}},"visibility":"internal"}],"src":"7542:38:22"},"src":"7523:58:22"},{"anonymous":false,"documentation":{"id":6017,"nodeType":"StructuredDocumentation","src":"7585:352:22","text":" @notice Event emitted when tokens are burn, redistributing the value to the rest of LPs\n @dev This typically happens when a cooldown is executed and there were profits during the period\n @param owner The owner of the burned tokens (the cooler)\n @param distributedProfit The amount that is distributed between all the LPs"},"eventSelector":"a17978b5145b36c8c694b15cd193ab32fac45fbb1b2378e56ca71b11a5bc5722","id":6023,"name":"ETokensRedistributed","nameLocation":"7946:20:22","nodeType":"EventDefinition","parameters":{"id":6022,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6019,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"7983:5:22","nodeType":"VariableDeclaration","scope":6023,"src":"7967:21:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6018,"name":"address","nodeType":"ElementaryTypeName","src":"7967:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6021,"indexed":false,"mutability":"mutable","name":"distributedProfit","nameLocation":"7998:17:22","nodeType":"VariableDeclaration","scope":6023,"src":"7990:25:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6020,"name":"uint256","nodeType":"ElementaryTypeName","src":"7990:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7966:50:22"},"src":"7940:77:22"},{"anonymous":false,"documentation":{"id":6024,"nodeType":"StructuredDocumentation","src":"8021:401:22","text":" @notice Event emitted when part of a previously received CoC is refunded\n @dev This happends when a policy is cancelled with refund. It doesn't affect the totalSupply since it should\n be not yet accrued money.\n @param policyId The owner of the burned tokens (the cooler)\n @param receiver The user that received the refund\n @param amount The amount of the refund"},"eventSelector":"c8e60e828d888d5921f45ececd1bc138a29c2b6aacc8ab8a762f3f096492c561","id":6032,"name":"CoCRefunded","nameLocation":"8431:11:22","nodeType":"EventDefinition","parameters":{"id":6031,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6026,"indexed":true,"mutability":"mutable","name":"policyId","nameLocation":"8459:8:22","nodeType":"VariableDeclaration","scope":6032,"src":"8443:24:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6025,"name":"uint256","nodeType":"ElementaryTypeName","src":"8443:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6028,"indexed":true,"mutability":"mutable","name":"receiver","nameLocation":"8485:8:22","nodeType":"VariableDeclaration","scope":6032,"src":"8469:24:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6027,"name":"address","nodeType":"ElementaryTypeName","src":"8469:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6030,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"8503:6:22","nodeType":"VariableDeclaration","scope":6032,"src":"8495:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6029,"name":"uint256","nodeType":"ElementaryTypeName","src":"8495:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8442:68:22"},"src":"8425:86:22"},{"body":{"id":6050,"nodeType":"Block","src":"8646:91:22","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":6042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":6036,"name":"_loans","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5854,"src":"8660:6:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$4819_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount storage ref)"}},"id":6039,"indexExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":6037,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"8667:10:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":6038,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8667:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8660:20:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6040,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8681:10:22","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":4818,"src":"8660:31:22","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":6041,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8695:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8660:36:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":6044,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"8711:10:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":6045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8711:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6043,"name":"OnlyBorrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5884,"src":"8698:12:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":6046,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8698:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":6035,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"8652:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":6047,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8652:73:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6048,"nodeType":"ExpressionStatement","src":"8652:73:22"},{"id":6049,"nodeType":"PlaceholderStatement","src":"8731:1:22"}]},"documentation":{"id":6033,"nodeType":"StructuredDocumentation","src":"8515:104:22","text":"@notice Modifier used to validate the methods that can be called only by borrowers (PremiumsAccount)"},"id":6051,"name":"onlyBorrower","nameLocation":"8631:12:22","nodeType":"ModifierDefinition","parameters":{"id":6034,"nodeType":"ParameterList","parameters":[],"src":"8643:2:22"},"src":"8622:115:22","virtual":false,"visibility":"internal"},{"constant":true,"id":6054,"mutability":"constant","name":"ERC20StorageLocation","nameLocation":"8925:20:22","nodeType":"VariableDeclaration","scope":7681,"src":"8900:114:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6052,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8900:7:22","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307835326336333234376531663437646231396435636530343630303330633439376630363763613463656266373162613938656561646162653230626163653030","id":6053,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8948:66:22","typeDescriptions":{"typeIdentifier":"t_rational_37439836327923360225337895871394760624280537466773280374265222508165906222592_by_1","typeString":"int_const 3743...(69 digits omitted)...2592"},"value":"0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00"},"visibility":"private"},{"body":{"id":6061,"nodeType":"Block","src":"9103:115:22","statements":[{"AST":{"nativeSrc":"9170:44:22","nodeType":"YulBlock","src":"9170:44:22","statements":[{"nativeSrc":"9178:30:22","nodeType":"YulAssignment","src":"9178:30:22","value":{"name":"ERC20StorageLocation","nativeSrc":"9188:20:22","nodeType":"YulIdentifier","src":"9188:20:22"},"variableNames":[{"name":"$.slot","nativeSrc":"9178:6:22","nodeType":"YulIdentifier","src":"9178:6:22"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":6058,"isOffset":false,"isSlot":true,"src":"9178:6:22","suffix":"slot","valueSize":1},{"declaration":6054,"isOffset":false,"isSlot":false,"src":"9188:20:22","valueSize":1}],"id":6060,"nodeType":"InlineAssembly","src":"9161:53:22"}]},"id":6062,"implemented":true,"kind":"function","modifiers":[],"name":"_getERC20StorageFromEToken","nameLocation":"9028:26:22","nodeType":"FunctionDefinition","parameters":{"id":6055,"nodeType":"ParameterList","parameters":[],"src":"9054:2:22"},"returnParameters":{"id":6059,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6058,"mutability":"mutable","name":"$","nameLocation":"9100:1:22","nodeType":"VariableDeclaration","scope":6062,"src":"9079:22:22","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":6057,"nodeType":"UserDefinedTypeName","pathNode":{"id":6056,"name":"ERC20Storage","nameLocations":["9079:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":16037,"src":"9079:12:22"},"referencedDeclaration":16037,"src":"9079:12:22","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"src":"9078:24:22"},"scope":7681,"src":"9019:199:22","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":6072,"nodeType":"Block","src":"9378:2:22","statements":[]},"documentation":{"id":6063,"nodeType":"StructuredDocumentation","src":"9222:48:22","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":6073,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":6069,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6066,"src":"9365:11:22","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}}],"id":6070,"kind":"baseConstructorSpecifier","modifierName":{"id":6068,"name":"Reserve","nameLocations":["9357:7:22"],"nodeType":"IdentifierPath","referencedDeclaration":13500,"src":"9357:7:22"},"nodeType":"ModifierInvocation","src":"9357:20:22"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":6067,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6066,"mutability":"mutable","name":"policyPool_","nameLocation":"9344:11:22","nodeType":"VariableDeclaration","scope":6073,"src":"9332:23:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"},"typeName":{"id":6065,"nodeType":"UserDefinedTypeName","pathNode":{"id":6064,"name":"IPolicyPool","nameLocations":["9332:11:22"],"nodeType":"IdentifierPath","referencedDeclaration":14638,"src":"9332:11:22"},"referencedDeclaration":14638,"src":"9332:11:22","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"9331:25:22"},"returnParameters":{"id":6071,"nodeType":"ParameterList","parameters":[],"src":"9378:0:22"},"scope":7681,"src":"9320:60:22","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":6104,"nodeType":"Block","src":"9866:169:22","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":6087,"name":"__Reserve_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12929,"src":"9872:14:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":6088,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9872:16:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6089,"nodeType":"ExpressionStatement","src":"9872:16:22"},{"expression":{"arguments":[{"id":6091,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6076,"src":"9907:5:22","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":6092,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6078,"src":"9914:7:22","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"}],"id":6090,"name":"__ERC20_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16064,"src":"9894:12:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":6093,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9894:28:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6094,"nodeType":"ExpressionStatement","src":"9894:28:22"},{"expression":{"arguments":[{"id":6096,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6076,"src":"9947:5:22","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":6095,"name":"__ERC20Permit_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16669,"src":"9928:18:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory)"}},"id":6097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9928:25:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6098,"nodeType":"ExpressionStatement","src":"9928:25:22"},{"expression":{"arguments":[{"id":6100,"name":"maxUtilizationRate_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6080,"src":"9983:19:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6101,"name":"internalLoanInterestRate_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6082,"src":"10004:25:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6099,"name":"__EToken_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6147,"src":"9959:23:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":6102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9959:71:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6103,"nodeType":"ExpressionStatement","src":"9959:71:22"}]},"documentation":{"id":6074,"nodeType":"StructuredDocumentation","src":"9384:312:22","text":" @dev Initializes the eToken\n @param name_ Name of the eToken\n @param symbol_ Symbol of the eToken\n @param maxUtilizationRate_ Max utilization rate (scr / totalSupply), in WAD (1e18)\n @param internalLoanInterestRate_ Annualized interest rate charged on internal loans, in WAD (1e18)"},"functionSelector":"6fe0e395","id":6105,"implemented":true,"kind":"function","modifiers":[{"id":6085,"kind":"modifierInvocation","modifierName":{"id":6084,"name":"initializer","nameLocations":["9854:11:22"],"nodeType":"IdentifierPath","referencedDeclaration":23274,"src":"9854:11:22"},"nodeType":"ModifierInvocation","src":"9854:11:22"}],"name":"initialize","nameLocation":"9708:10:22","nodeType":"FunctionDefinition","parameters":{"id":6083,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6076,"mutability":"mutable","name":"name_","nameLocation":"9738:5:22","nodeType":"VariableDeclaration","scope":6105,"src":"9724:19:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6075,"name":"string","nodeType":"ElementaryTypeName","src":"9724:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":6078,"mutability":"mutable","name":"symbol_","nameLocation":"9763:7:22","nodeType":"VariableDeclaration","scope":6105,"src":"9749:21:22","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":6077,"name":"string","nodeType":"ElementaryTypeName","src":"9749:6:22","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":6080,"mutability":"mutable","name":"maxUtilizationRate_","nameLocation":"9784:19:22","nodeType":"VariableDeclaration","scope":6105,"src":"9776:27:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6079,"name":"uint256","nodeType":"ElementaryTypeName","src":"9776:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6082,"mutability":"mutable","name":"internalLoanInterestRate_","nameLocation":"9817:25:22","nodeType":"VariableDeclaration","scope":6105,"src":"9809:33:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6081,"name":"uint256","nodeType":"ElementaryTypeName","src":"9809:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9718:128:22"},"returnParameters":{"id":6086,"nodeType":"ParameterList","parameters":[],"src":"9866:0:22"},"scope":7681,"src":"9699:336:22","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":6146,"nodeType":"Block","src":"10225:546:22","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":6114,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"10231:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6116,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10241:4:22","memberName":"init","nodeType":"MemberAccess","referencedDeclaration":5215,"src":"10231:14:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_ScaledAmount_$4819_storage_ptr_$returns$__$attached_to$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer)"}},"id":6117,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10231:16:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6118,"nodeType":"ExpressionStatement","src":"10231:16:22"},{"expression":{"id":6132,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6119,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"10348:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"30","id":6121,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10399:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":6122,"name":"HUNDRED_PERCENT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5833,"src":"10462:15:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"hexValue":"30","id":6123,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10505:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":6124,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10540:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"arguments":[{"arguments":[{"hexValue":"30","id":6128,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10613: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":6127,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10605:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6126,"name":"address","nodeType":"ElementaryTypeName","src":"10605:7:22","typeDescriptions":{}}},"id":6129,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10605:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6125,"name":"ILPWhitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14383,"src":"10592:12:22","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ILPWhitelist_$14383_$","typeString":"type(contract ILPWhitelist)"}},"id":6130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10592:24:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint16","typeString":"uint16"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}],"id":6120,"name":"PackedParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5867,"src":"10358:12:22","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_PackedParams_$5867_storage_ptr_$","typeString":"type(struct EToken.PackedParams storage pointer)"}},"id":6131,"isConstant":false,"isLValue":false,"isPure":true,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["10379:18:22","10440:20:22","10485:18:22","10514:24:22","10581:9:22"],"names":["maxUtilizationRate","liquidityRequirement","minUtilizationRate","internalLoanInterestRate","whitelist"],"nodeType":"FunctionCall","src":"10358:265:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_memory_ptr","typeString":"struct EToken.PackedParams memory"}},"src":"10348:275:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":6133,"nodeType":"ExpressionStatement","src":"10348:275:22"},{"expression":{"arguments":[{"expression":{"id":6135,"name":"Parameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14171,"src":"10639:9:22","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Parameter_$14171_$","typeString":"type(enum IEToken.Parameter)"}},"id":6136,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10649:18:22","memberName":"maxUtilizationRate","nodeType":"MemberAccess","referencedDeclaration":14169,"src":"10639:28:22","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}},{"id":6137,"name":"maxUtilizationRate_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6107,"src":"10669:19:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6134,"name":"setParam","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7566,"src":"10630:8:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_enum$_Parameter_$14171_$_t_uint256_$returns$__$","typeString":"function (enum IEToken.Parameter,uint256)"}},"id":6138,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10630:59:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6139,"nodeType":"ExpressionStatement","src":"10630:59:22"},{"expression":{"arguments":[{"expression":{"id":6141,"name":"Parameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14171,"src":"10704:9:22","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Parameter_$14171_$","typeString":"type(enum IEToken.Parameter)"}},"id":6142,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10714:24:22","memberName":"internalLoanInterestRate","nodeType":"MemberAccess","referencedDeclaration":14170,"src":"10704:34:22","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}},{"id":6143,"name":"internalLoanInterestRate_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6109,"src":"10740:25:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6140,"name":"setParam","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7566,"src":"10695:8:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_enum$_Parameter_$14171_$_t_uint256_$returns$__$","typeString":"function (enum IEToken.Parameter,uint256)"}},"id":6144,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10695:71:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6145,"nodeType":"ExpressionStatement","src":"10695:71:22"}]},"id":6147,"implemented":true,"kind":"function","modifiers":[{"id":6112,"kind":"modifierInvocation","modifierName":{"id":6111,"name":"onlyInitializing","nameLocations":["10208:16:22"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"10208:16:22"},"nodeType":"ModifierInvocation","src":"10208:16:22"}],"name":"__EToken_init_unchained","nameLocation":"10099:23:22","nodeType":"FunctionDefinition","parameters":{"id":6110,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6107,"mutability":"mutable","name":"maxUtilizationRate_","nameLocation":"10136:19:22","nodeType":"VariableDeclaration","scope":6147,"src":"10128:27:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6106,"name":"uint256","nodeType":"ElementaryTypeName","src":"10128:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6109,"mutability":"mutable","name":"internalLoanInterestRate_","nameLocation":"10169:25:22","nodeType":"VariableDeclaration","scope":6147,"src":"10161:33:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6108,"name":"uint256","nodeType":"ElementaryTypeName","src":"10161:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10122:76:22"},"returnParameters":{"id":6113,"nodeType":"ParameterList","parameters":[],"src":"10225:0:22"},"scope":7681,"src":"10090:681:22","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[11067],"body":{"id":6182,"nodeType":"Block","src":"10892:216:22","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":6180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":6173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":6166,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":6158,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6150,"src":"10935:11:22","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":6156,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"10911:5:22","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_EToken_$7681_$","typeString":"type(contract super EToken)"}},"id":6157,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10917:17:22","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":11067,"src":"10911:23:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":6159,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10911:36:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":6165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6160,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6150,"src":"10957:11:22","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":6162,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"10977:6:22","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$24193_$","typeString":"type(contract IERC20)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC20_$24193_$","typeString":"type(contract IERC20)"}],"id":6161,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10972:4:22","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6163,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10972:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC20_$24193","typeString":"type(contract IERC20)"}},"id":6164,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10985:11:22","memberName":"interfaceId","nodeType":"MemberAccess","src":"10972:24:22","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"10957:39:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10911:85:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":6172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6167,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6150,"src":"11006:11:22","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":6169,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"11026:14:22","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$24925_$","typeString":"type(contract IERC20Metadata)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$24925_$","typeString":"type(contract IERC20Metadata)"}],"id":6168,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11021:4:22","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6170,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11021:20:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC20Metadata_$24925","typeString":"type(contract IERC20Metadata)"}},"id":6171,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11042:11:22","memberName":"interfaceId","nodeType":"MemberAccess","src":"11021:32:22","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"11006:47:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10911:142:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":6179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6174,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6150,"src":"11063:11:22","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":6176,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14336,"src":"11083:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IEToken_$14336_$","typeString":"type(contract IEToken)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IEToken_$14336_$","typeString":"type(contract IEToken)"}],"id":6175,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11078:4:22","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11078:13:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IEToken_$14336","typeString":"type(contract IEToken)"}},"id":6178,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11092:11:22","memberName":"interfaceId","nodeType":"MemberAccess","src":"11078:25:22","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"11063:40:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10911:192:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":6155,"id":6181,"nodeType":"Return","src":"10898:205:22"}]},"documentation":{"id":6148,"nodeType":"StructuredDocumentation","src":"10775:23:22","text":"@inheritdoc IERC165"},"functionSelector":"01ffc9a7","id":6183,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"10810:17:22","nodeType":"FunctionDefinition","overrides":{"id":6152,"nodeType":"OverrideSpecifier","overrides":[],"src":"10868:8:22"},"parameters":{"id":6151,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6150,"mutability":"mutable","name":"interfaceId","nameLocation":"10835:11:22","nodeType":"VariableDeclaration","scope":6183,"src":"10828:18:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":6149,"name":"bytes4","nodeType":"ElementaryTypeName","src":"10828:6:22","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"10827:20:22"},"returnParameters":{"id":6155,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6154,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6183,"src":"10886:4:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6153,"name":"bool","nodeType":"ElementaryTypeName","src":"10886:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10885:6:22"},"scope":7681,"src":"10801:307:22","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[16133],"body":{"id":6196,"nodeType":"Block","src":"11299:51:22","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":6190,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10959,"src":"11312:11:22","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"id":6191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11324:8:22","memberName":"currency","nodeType":"MemberAccess","referencedDeclaration":14510,"src":"11312:20:22","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IERC20Metadata_$24925_$","typeString":"function () view external returns (contract IERC20Metadata)"}},"id":6192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11312:22:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":6193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11335:8:22","memberName":"decimals","nodeType":"MemberAccess","referencedDeclaration":24924,"src":"11312:31:22","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint8_$","typeString":"function () view external returns (uint8)"}},"id":6194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11312:33:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":6189,"id":6195,"nodeType":"Return","src":"11305:40:22"}]},"documentation":{"id":6184,"nodeType":"StructuredDocumentation","src":"11201:30:22","text":"@inheritdoc IERC20Metadata"},"functionSelector":"313ce567","id":6197,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"11243:8:22","nodeType":"FunctionDefinition","overrides":{"id":6186,"nodeType":"OverrideSpecifier","overrides":[],"src":"11274:8:22"},"parameters":{"id":6185,"nodeType":"ParameterList","parameters":[],"src":"11251:2:22"},"returnParameters":{"id":6189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6188,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6197,"src":"11292:5:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":6187,"name":"uint8","nodeType":"ElementaryTypeName","src":"11292:5:22","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"11291:7:22"},"scope":7681,"src":"11234:116:22","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[16149],"body":{"id":6213,"nodeType":"Block","src":"11449:74:22","statements":[{"expression":{"arguments":[{"expression":{"id":6209,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"11501:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6210,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11511:6:22","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":4813,"src":"11501:16:22","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"expression":{"arguments":[{"id":6206,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"11485:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":6204,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"11462:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6205,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11472:12:22","memberName":"projectScale","nodeType":"MemberAccess","referencedDeclaration":5186,"src":"11462:22:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_struct$_Scr_$4824_storage_ptr_$returns$_t_userDefinedValueType$_Scale_$4792_$attached_to$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,struct ETKLib.Scr storage pointer) view returns (ETKLib.Scale)"}},"id":6207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11462:28:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":6208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11491:9:22","memberName":"toCurrent","nodeType":"MemberAccess","referencedDeclaration":4922,"src":"11462:38:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$_t_uint256_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale,uint256) pure returns (uint256)"}},"id":6211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11462:56:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6203,"id":6212,"nodeType":"Return","src":"11455:63:22"}]},"documentation":{"id":6198,"nodeType":"StructuredDocumentation","src":"11354:22:22","text":"@inheritdoc IERC20"},"functionSelector":"18160ddd","id":6214,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"11388:11:22","nodeType":"FunctionDefinition","overrides":{"id":6200,"nodeType":"OverrideSpecifier","overrides":[],"src":"11422:8:22"},"parameters":{"id":6199,"nodeType":"ParameterList","parameters":[],"src":"11399:2:22"},"returnParameters":{"id":6203,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6202,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6214,"src":"11440:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6201,"name":"uint256","nodeType":"ElementaryTypeName","src":"11440:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11439:9:22"},"scope":7681,"src":"11379:144:22","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[16169],"body":{"id":6234,"nodeType":"Block","src":"11635:82:22","statements":[{"expression":{"arguments":[{"arguments":[{"id":6230,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6217,"src":"11703:7:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":6228,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"11687:5:22","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_EToken_$7681_$","typeString":"type(contract super EToken)"}},"id":6229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11693:9:22","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":16169,"src":"11687:15:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6231,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11687:24:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":6225,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"11671:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":6223,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"11648:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6224,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11658:12:22","memberName":"projectScale","nodeType":"MemberAccess","referencedDeclaration":5186,"src":"11648:22:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_struct$_Scr_$4824_storage_ptr_$returns$_t_userDefinedValueType$_Scale_$4792_$attached_to$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,struct ETKLib.Scr storage pointer) view returns (ETKLib.Scale)"}},"id":6226,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11648:28:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":6227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11677:9:22","memberName":"toCurrent","nodeType":"MemberAccess","referencedDeclaration":4922,"src":"11648:38:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$_t_uint256_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale,uint256) pure returns (uint256)"}},"id":6232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11648:64:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6222,"id":6233,"nodeType":"Return","src":"11641:71:22"}]},"documentation":{"id":6215,"nodeType":"StructuredDocumentation","src":"11527:22:22","text":"@inheritdoc IERC20"},"functionSelector":"70a08231","id":6235,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"11561:9:22","nodeType":"FunctionDefinition","overrides":{"id":6219,"nodeType":"OverrideSpecifier","overrides":[],"src":"11608:8:22"},"parameters":{"id":6218,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6217,"mutability":"mutable","name":"account","nameLocation":"11579:7:22","nodeType":"VariableDeclaration","scope":6235,"src":"11571:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6216,"name":"address","nodeType":"ElementaryTypeName","src":"11571:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11570:17:22"},"returnParameters":{"id":6222,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6221,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6235,"src":"11626:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6220,"name":"uint256","nodeType":"ElementaryTypeName","src":"11626:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11625:9:22"},"scope":7681,"src":"11552:165:22","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[16412],"body":{"id":6395,"nodeType":"Block","src":"11840:1242:22","statements":[{"assignments":[6247],"declarations":[{"constant":false,"id":6247,"mutability":"mutable","name":"valueScaled","nameLocation":"11854:11:22","nodeType":"VariableDeclaration","scope":6395,"src":"11846:19:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6246,"name":"uint256","nodeType":"ElementaryTypeName","src":"11846:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6248,"nodeType":"VariableDeclarationStatement","src":"11846:19:22"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6254,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6249,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6238,"src":"11875:4:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6252,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11891: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":6251,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11883:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6250,"name":"address","nodeType":"ElementaryTypeName","src":"11883:7:22","typeDescriptions":{}}},"id":6253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11883:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11875:18:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6266,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6240,"src":"11987:2:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6269,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12001: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":6268,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11993:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6267,"name":"address","nodeType":"ElementaryTypeName","src":"11993:7:22","typeDescriptions":{}}},"id":6270,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11993:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11987:16:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":6320,"nodeType":"Block","src":"12093:277:22","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":6302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":6286,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"12144:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":6287,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12152:9:22","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":5858,"src":"12144:17:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}],"id":6285,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12136:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6284,"name":"address","nodeType":"ElementaryTypeName","src":"12136:7:22","typeDescriptions":{}}},"id":6288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12136:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12174: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":6290,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12166:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6289,"name":"address","nodeType":"ElementaryTypeName","src":"12166:7:22","typeDescriptions":{}}},"id":6292,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12166:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12136:40:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":6297,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"12214:4:22","typeDescriptions":{"typeIdentifier":"t_contract$_EToken_$7681","typeString":"contract EToken"}},{"id":6298,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6238,"src":"12220:4:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6299,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6240,"src":"12226:2:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6300,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6242,"src":"12230:5:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EToken_$7681","typeString":"contract EToken"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":6294,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"12180:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":6295,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12188:9:22","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":5858,"src":"12180:17:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}},"id":6296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12198:15:22","memberName":"acceptsTransfer","nodeType":"MemberAccess","referencedDeclaration":14369,"src":"12180:33:22","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_contract$_IEToken_$14336_$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (contract IEToken,address,address,uint256) view external returns (bool)"}},"id":6301,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12180:56:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12136:100:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":6304,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6238,"src":"12269:4:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6305,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6240,"src":"12275:2:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6306,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6242,"src":"12279:5:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6303,"name":"TransferNotWhitelisted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5899,"src":"12246:22:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$_t_uint256_$returns$_t_error_$","typeString":"function (address,address,uint256) pure returns (error)"}},"id":6307,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12246:39:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":6283,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"12119:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":6308,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12119:174:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6309,"nodeType":"ExpressionStatement","src":"12119:174:22"},{"expression":{"id":6318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6310,"name":"valueScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6247,"src":"12301:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6316,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6242,"src":"12357:5:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":6313,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"12338:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":6311,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"12315:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6312,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12325:12:22","memberName":"projectScale","nodeType":"MemberAccess","referencedDeclaration":5186,"src":"12315:22:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_struct$_Scr_$4824_storage_ptr_$returns$_t_userDefinedValueType$_Scale_$4792_$attached_to$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,struct ETKLib.Scr storage pointer) view returns (ETKLib.Scale)"}},"id":6314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12315:28:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":6315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12344:12:22","memberName":"toScaledCeil","nodeType":"MemberAccess","referencedDeclaration":4982,"src":"12315:41:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$_t_uint256_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale,uint256) pure returns (uint256)"}},"id":6317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12315:48:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12301:62:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6319,"nodeType":"ExpressionStatement","src":"12301:62:22"}]},"id":6321,"nodeType":"IfStatement","src":"11983:387:22","trueBody":{"id":6282,"nodeType":"Block","src":"12005:82:22","statements":[{"expression":{"id":6280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":6272,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"12028:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},{"id":6273,"name":"valueScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6247,"src":"12039:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":6274,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"12027:24:22","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$4819_storage_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount storage ref,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6277,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6242,"src":"12068:5:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6278,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"12075:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":6275,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"12054:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6276,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12064:3:22","memberName":"sub","nodeType":"MemberAccess","referencedDeclaration":5450,"src":"12054:13:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_uint256_$_t_struct$_Scr_$4824_storage_ptr_$returns$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$attached_to$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256,struct ETKLib.Scr storage pointer) view returns (struct ETKLib.ScaledAmount memory,uint256)"}},"id":6279,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12054:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"src":"12027:53:22","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6281,"nodeType":"ExpressionStatement","src":"12027:53:22"}]}},"id":6322,"nodeType":"IfStatement","src":"11871:499:22","trueBody":{"id":6265,"nodeType":"Block","src":"11895:82:22","statements":[{"expression":{"id":6263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":6255,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"11918:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},{"id":6256,"name":"valueScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6247,"src":"11929:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":6257,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"11917:24:22","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$4819_storage_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount storage ref,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6260,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6242,"src":"11958:5:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6261,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"11965:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":6258,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"11944:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6259,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11954:3:22","memberName":"add","nodeType":"MemberAccess","referencedDeclaration":5423,"src":"11944:13:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_uint256_$_t_struct$_Scr_$4824_storage_ptr_$returns$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$attached_to$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256,struct ETKLib.Scr storage pointer) view returns (struct ETKLib.ScaledAmount memory,uint256)"}},"id":6262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11944:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"src":"11917:53:22","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6264,"nodeType":"ExpressionStatement","src":"11917:53:22"}]}},{"assignments":[6325],"declarations":[{"constant":false,"id":6325,"mutability":"mutable","name":"$","nameLocation":"12397:1:22","nodeType":"VariableDeclaration","scope":6395,"src":"12376:22:22","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":6324,"nodeType":"UserDefinedTypeName","pathNode":{"id":6323,"name":"ERC20Storage","nameLocations":["12376:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":16037,"src":"12376:12:22"},"referencedDeclaration":16037,"src":"12376:12:22","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":6328,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6326,"name":"_getERC20StorageFromEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6062,"src":"12401:26:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$16037_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":6327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12401:28:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"12376:53:22"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6329,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6238,"src":"12439:4:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":6332,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12455: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":6331,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12447:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6330,"name":"address","nodeType":"ElementaryTypeName","src":"12447:7:22","typeDescriptions":{}}},"id":6333,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12447:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12439:18:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6371,"nodeType":"IfStatement","src":"12435:390:22","trueBody":{"id":6370,"nodeType":"Block","src":"12459:366:22","statements":[{"assignments":[6336],"declarations":[{"constant":false,"id":6336,"mutability":"mutable","name":"fromBalance","nameLocation":"12475:11:22","nodeType":"VariableDeclaration","scope":6370,"src":"12467:19:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6335,"name":"uint256","nodeType":"ElementaryTypeName","src":"12467:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6341,"initialValue":{"baseExpression":{"expression":{"id":6337,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6325,"src":"12489:1:22","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":6338,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12491:9:22","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":16024,"src":"12489:11:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":6340,"indexExpression":{"id":6339,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6238,"src":"12501:4:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12489:17:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12467:39:22"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6342,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6336,"src":"12518:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":6343,"name":"valueScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6247,"src":"12532:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12518:25:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6358,"nodeType":"IfStatement","src":"12514:147:22","trueBody":{"id":6357,"nodeType":"Block","src":"12545:116:22","statements":[{"errorCall":{"arguments":[{"id":6346,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6238,"src":"12587:4:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":6352,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6336,"src":"12632:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":6349,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"12616:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":6347,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"12593:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6348,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12603:12:22","memberName":"projectScale","nodeType":"MemberAccess","referencedDeclaration":5186,"src":"12593:22:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_struct$_Scr_$4824_storage_ptr_$returns$_t_userDefinedValueType$_Scale_$4792_$attached_to$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,struct ETKLib.Scr storage pointer) view returns (ETKLib.Scale)"}},"id":6350,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12593:28:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":6351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12622:9:22","memberName":"toCurrent","nodeType":"MemberAccess","referencedDeclaration":4922,"src":"12593:38:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$_t_uint256_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale,uint256) pure returns (uint256)"}},"id":6353,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12593:51:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6354,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6242,"src":"12646:5:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6345,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22518,"src":"12562:24:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":6355,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12562:90:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6356,"nodeType":"RevertStatement","src":"12555:97:22"}]}},{"id":6369,"nodeType":"UncheckedBlock","src":"12668:151:22","statements":[{"expression":{"id":6367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":6359,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6325,"src":"12765:1:22","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":6362,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12767:9:22","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":16024,"src":"12765:11:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":6363,"indexExpression":{"id":6361,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6238,"src":"12777:4:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"12765:17:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6364,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6336,"src":"12785:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6365,"name":"valueScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6247,"src":"12799:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12785:25:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12765:45:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6368,"nodeType":"ExpressionStatement","src":"12765:45:22"}]}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6372,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6240,"src":"12835:2:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":6375,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12849: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":6374,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12841:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6373,"name":"address","nodeType":"ElementaryTypeName","src":"12841:7:22","typeDescriptions":{}}},"id":6376,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12841:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12835:16:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6388,"nodeType":"IfStatement","src":"12831:210:22","trueBody":{"id":6387,"nodeType":"Block","src":"12853:188:22","statements":[{"id":6386,"nodeType":"UncheckedBlock","src":"12861:174:22","statements":[{"expression":{"id":6384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":6378,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6325,"src":"12996:1:22","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":6381,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12998:9:22","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":16024,"src":"12996:11:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":6382,"indexExpression":{"id":6380,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6240,"src":"13008:2:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"12996:15:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":6383,"name":"valueScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6247,"src":"13015:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12996:30:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6385,"nodeType":"ExpressionStatement","src":"12996:30:22"}]}]}},{"eventCall":{"arguments":[{"id":6390,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6238,"src":"13061:4:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6391,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6240,"src":"13067:2:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6392,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6242,"src":"13071:5:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6389,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24127,"src":"13052:8:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6393,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13052:25:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6394,"nodeType":"EmitStatement","src":"13047:30:22"}]},"documentation":{"id":6236,"nodeType":"StructuredDocumentation","src":"11721:32:22","text":"@inheritdoc ERC20Upgradeable"},"id":6396,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"11765:7:22","nodeType":"FunctionDefinition","overrides":{"id":6244,"nodeType":"OverrideSpecifier","overrides":[],"src":"11831:8:22"},"parameters":{"id":6243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6238,"mutability":"mutable","name":"from","nameLocation":"11781:4:22","nodeType":"VariableDeclaration","scope":6396,"src":"11773:12:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6237,"name":"address","nodeType":"ElementaryTypeName","src":"11773:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6240,"mutability":"mutable","name":"to","nameLocation":"11795:2:22","nodeType":"VariableDeclaration","scope":6396,"src":"11787:10:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6239,"name":"address","nodeType":"ElementaryTypeName","src":"11787:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6242,"mutability":"mutable","name":"value","nameLocation":"11807:5:22","nodeType":"VariableDeclaration","scope":6396,"src":"11799:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6241,"name":"uint256","nodeType":"ElementaryTypeName","src":"11799:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11772:41:22"},"returnParameters":{"id":6245,"nodeType":"ParameterList","parameters":[],"src":"11840:0:22"},"scope":7681,"src":"11756:1326:22","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":6409,"nodeType":"Block","src":"13546:39:22","statements":[{"expression":{"arguments":[{"id":6406,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6399,"src":"13575:4:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":6404,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"13559:5:22","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_EToken_$7681_$","typeString":"type(contract super EToken)"}},"id":6405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13565:9:22","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":16169,"src":"13559:15:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13559:21:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6403,"id":6408,"nodeType":"Return","src":"13552:28:22"}]},"documentation":{"id":6397,"nodeType":"StructuredDocumentation","src":"13209:263:22","text":" @dev Returns the scaled balance of the user. The scaled balance is the sum of all the\n updated stored balance divided by the EToken's scale index\n @param user The user whose balance is calculated\n @return The scaled balance of the user*"},"functionSelector":"1da24f3e","id":6410,"implemented":true,"kind":"function","modifiers":[],"name":"scaledBalanceOf","nameLocation":"13484:15:22","nodeType":"FunctionDefinition","parameters":{"id":6400,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6399,"mutability":"mutable","name":"user","nameLocation":"13508:4:22","nodeType":"VariableDeclaration","scope":6410,"src":"13500:12:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6398,"name":"address","nodeType":"ElementaryTypeName","src":"13500:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"13499:14:22"},"returnParameters":{"id":6403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6402,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6410,"src":"13537:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6401,"name":"uint256","nodeType":"ElementaryTypeName","src":"13537:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13536:9:22"},"scope":7681,"src":"13475:110:22","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":6431,"nodeType":"Block","src":"13919:68:22","statements":[{"expression":{"components":[{"arguments":[{"id":6422,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6413,"src":"13949:4:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":6420,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"13933:5:22","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_EToken_$7681_$","typeString":"type(contract super EToken)"}},"id":6421,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13939:9:22","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":16169,"src":"13933:15:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6423,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13933:21:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"expression":{"id":6426,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"13964:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6427,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13974:6:22","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":4813,"src":"13964:16:22","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":6425,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13956:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6424,"name":"uint256","nodeType":"ElementaryTypeName","src":"13956:7:22","typeDescriptions":{}}},"id":6428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13956:25:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":6429,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13932:50:22","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"functionReturnParameters":6419,"id":6430,"nodeType":"Return","src":"13925:57:22"}]},"documentation":{"id":6411,"nodeType":"StructuredDocumentation","src":"13589:233:22","text":" @dev Returns the scaled balance of the user and the scaled total supply.\n @param user The address of the user\n @return The scaled balance of the user\n @return The scaled balance and the scaled total supply*"},"functionSelector":"0afbcdc9","id":6432,"implemented":true,"kind":"function","modifiers":[],"name":"getScaledUserBalanceAndSupply","nameLocation":"13834:29:22","nodeType":"FunctionDefinition","parameters":{"id":6414,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6413,"mutability":"mutable","name":"user","nameLocation":"13872:4:22","nodeType":"VariableDeclaration","scope":6432,"src":"13864:12:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6412,"name":"address","nodeType":"ElementaryTypeName","src":"13864:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"13863:14:22"},"returnParameters":{"id":6419,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6416,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6432,"src":"13901:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6415,"name":"uint256","nodeType":"ElementaryTypeName","src":"13901:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6418,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6432,"src":"13910:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6417,"name":"uint256","nodeType":"ElementaryTypeName","src":"13910:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13900:18:22"},"scope":7681,"src":"13825:162:22","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":6444,"nodeType":"Block","src":"14271:43:22","statements":[{"expression":{"arguments":[{"expression":{"id":6440,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"14292:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6441,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14302:6:22","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":4813,"src":"14292:16:22","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":6439,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14284:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6438,"name":"uint256","nodeType":"ElementaryTypeName","src":"14284:7:22","typeDescriptions":{}}},"id":6442,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14284:25:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6437,"id":6443,"nodeType":"Return","src":"14277:32:22"}]},"documentation":{"id":6433,"nodeType":"StructuredDocumentation","src":"13991:216:22","text":" @notice Returns the total supply in scaled/raw units (without applying the current scale index). Equals the sum of {scaledBalanceOf} across all users.\n @return The total supply in scaled/raw units."},"functionSelector":"b1bf962d","id":6445,"implemented":true,"kind":"function","modifiers":[],"name":"scaledTotalSupply","nameLocation":"14219:17:22","nodeType":"FunctionDefinition","parameters":{"id":6434,"nodeType":"ParameterList","parameters":[],"src":"14236:2:22"},"returnParameters":{"id":6437,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6436,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6445,"src":"14262:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6435,"name":"uint256","nodeType":"ElementaryTypeName","src":"14262:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14261:9:22"},"scope":7681,"src":"14210:104:22","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[14323],"body":{"id":6468,"nodeType":"Block","src":"14481:116:22","statements":[{"condition":{"id":6454,"name":"updated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6448,"src":"14491:7:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":6462,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"14565:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6463,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14575:5:22","memberName":"scale","nodeType":"MemberAccess","referencedDeclaration":4816,"src":"14565:15:22","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":6464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14581:9:22","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":5093,"src":"14565:25:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":6465,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14565:27:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6453,"id":6466,"nodeType":"Return","src":"14558:34:22"},"id":6467,"nodeType":"IfStatement","src":"14487:105:22","trueBody":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":6457,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"14530:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":6455,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"14507:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6456,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14517:12:22","memberName":"projectScale","nodeType":"MemberAccess","referencedDeclaration":5186,"src":"14507:22:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_struct$_Scr_$4824_storage_ptr_$returns$_t_userDefinedValueType$_Scale_$4792_$attached_to$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,struct ETKLib.Scr storage pointer) view returns (ETKLib.Scale)"}},"id":6458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14507:28:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":6459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14536:9:22","memberName":"toUint256","nodeType":"MemberAccess","referencedDeclaration":5093,"src":"14507:38:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale) pure returns (uint256)"}},"id":6460,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14507:40:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6453,"id":6461,"nodeType":"Return","src":"14500:47:22"}}]},"documentation":{"id":6446,"nodeType":"StructuredDocumentation","src":"14377:23:22","text":"@inheritdoc IEToken"},"functionSelector":"79d989fb","id":6469,"implemented":true,"kind":"function","modifiers":[],"name":"getCurrentScale","nameLocation":"14412:15:22","nodeType":"FunctionDefinition","overrides":{"id":6450,"nodeType":"OverrideSpecifier","overrides":[],"src":"14454:8:22"},"parameters":{"id":6449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6448,"mutability":"mutable","name":"updated","nameLocation":"14433:7:22","nodeType":"VariableDeclaration","scope":6469,"src":"14428:12:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":6447,"name":"bool","nodeType":"ElementaryTypeName","src":"14428:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"14427:14:22"},"returnParameters":{"id":6453,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6452,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6469,"src":"14472:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6451,"name":"uint256","nodeType":"ElementaryTypeName","src":"14472:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14471:9:22"},"scope":7681,"src":"14403:194:22","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":6481,"nodeType":"Block","src":"14741:52:22","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":6477,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[6214],"referencedDeclaration":6214,"src":"14774:11:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14774:13:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6475,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"14754:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":6476,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14759:14:22","memberName":"fundsAvailable","nodeType":"MemberAccess","referencedDeclaration":5744,"src":"14754:19:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$4824_storage_ptr_$_t_uint256_$returns$_t_uint256_$attached_to$_t_struct$_Scr_$4824_storage_ptr_$","typeString":"function (struct ETKLib.Scr storage pointer,uint256) view returns (uint256)"}},"id":6479,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14754:34:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6474,"id":6480,"nodeType":"Return","src":"14747:41:22"}]},"documentation":{"id":6470,"nodeType":"StructuredDocumentation","src":"14601:81:22","text":" @dev Returns the amount of totalSupply that isn't utilized as SCR."},"functionSelector":"4fe0bd1e","id":6482,"implemented":true,"kind":"function","modifiers":[],"name":"fundsAvailable","nameLocation":"14694:14:22","nodeType":"FunctionDefinition","parameters":{"id":6471,"nodeType":"ParameterList","parameters":[],"src":"14708:2:22"},"returnParameters":{"id":6474,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6473,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6482,"src":"14732:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6472,"name":"uint256","nodeType":"ElementaryTypeName","src":"14732:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14731:9:22"},"scope":7681,"src":"14685:108:22","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":6551,"nodeType":"Block","src":"15062:406:22","statements":[{"assignments":[6489],"declarations":[{"constant":false,"id":6489,"mutability":"mutable","name":"ts","nameLocation":"15076:2:22","nodeType":"VariableDeclaration","scope":6551,"src":"15068:10:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6488,"name":"uint256","nodeType":"ElementaryTypeName","src":"15068:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6492,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6490,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[6214],"referencedDeclaration":6214,"src":"15081:11:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15081:13:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15068:26:22"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":6495,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5879,"src":"15112:7:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}],"id":6494,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15104:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6493,"name":"address","nodeType":"ElementaryTypeName","src":"15104:7:22","typeDescriptions":{}}},"id":6496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15104:16:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":6499,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15132: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":6498,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15124:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6497,"name":"address","nodeType":"ElementaryTypeName","src":"15124:7:22","typeDescriptions":{}}},"id":6500,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15124:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"15104:30:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":6544,"nodeType":"Block","src":"15372:56:22","statements":[{"expression":{"id":6542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6535,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6489,"src":"15380:2:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":6538,"name":"maxUtilizationRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6686,"src":"15395:18:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15395:20:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6540,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5827,"src":"15417:3:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6536,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6489,"src":"15385:2:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6537,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15388:6:22","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34072,"src":"15385:9:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":6541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15385:36:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15380:41:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6543,"nodeType":"ExpressionStatement","src":"15380:41:22"}]},"id":6545,"nodeType":"IfStatement","src":"15100:328:22","trueBody":{"id":6534,"nodeType":"Block","src":"15136:230:22","statements":[{"assignments":[6503],"declarations":[{"constant":false,"id":6503,"mutability":"mutable","name":"pendingWithdraw","nameLocation":"15152:15:22","nodeType":"VariableDeclaration","scope":6534,"src":"15144:23:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6502,"name":"uint256","nodeType":"ElementaryTypeName","src":"15144:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6508,"initialValue":{"arguments":[{"id":6506,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"15197:4:22","typeDescriptions":{"typeIdentifier":"t_contract$_EToken_$7681","typeString":"contract EToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EToken_$7681","typeString":"contract EToken"}],"expression":{"id":6504,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5879,"src":"15170:7:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}},"id":6505,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15178:18:22","memberName":"pendingWithdrawals","nodeType":"MemberAccess","referencedDeclaration":14148,"src":"15170:26:22","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_contract$_IEToken_$14336_$returns$_t_uint256_$","typeString":"function (contract IEToken) view external returns (uint256)"}},"id":6507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15170:32:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15144:58:22"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6509,"name":"pendingWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6503,"src":"15214:15:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":6510,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6489,"src":"15233:2:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15214:21:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":6532,"nodeType":"Block","src":"15268:92:22","statements":[{"expression":{"id":6530,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6517,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6489,"src":"15278:2:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6520,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6489,"src":"15292:2:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6521,"name":"pendingWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6503,"src":"15297:15:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15292:20:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":6525,"name":"maxUtilizationRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6686,"src":"15324:18:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15324:20:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6527,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5827,"src":"15346:3:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6523,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6489,"src":"15314:2:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15317:6:22","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34072,"src":"15314:9:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":6528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15314:36:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6518,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"15283:4:22","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":6519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15288:3:22","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":33872,"src":"15283:8:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":6529,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15283:68:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15278:73:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6531,"nodeType":"ExpressionStatement","src":"15278:73:22"}]},"id":6533,"nodeType":"IfStatement","src":"15210:150:22","trueBody":{"id":6516,"nodeType":"Block","src":"15237:25:22","statements":[{"expression":{"id":6514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6512,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6489,"src":"15247:2:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":6513,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15252:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"15247:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6515,"nodeType":"ExpressionStatement","src":"15247:6:22"}]}}]}},{"expression":{"arguments":[{"id":6548,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6489,"src":"15460:2:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6546,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"15440:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":6547,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15445:14:22","memberName":"fundsAvailable","nodeType":"MemberAccess","referencedDeclaration":5744,"src":"15440:19:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$4824_storage_ptr_$_t_uint256_$returns$_t_uint256_$attached_to$_t_struct$_Scr_$4824_storage_ptr_$","typeString":"function (struct ETKLib.Scr storage pointer,uint256) view returns (uint256)"}},"id":6549,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15440:23:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6487,"id":6550,"nodeType":"Return","src":"15433:30:22"}]},"documentation":{"id":6483,"nodeType":"StructuredDocumentation","src":"14797:200:22","text":" @dev Returns the funds that can be treated as available to lock as SCR, after applying the\n      max utilization cap and (if a Cooler is configured) subtracting pending withdrawals."},"functionSelector":"a08f2203","id":6552,"implemented":true,"kind":"function","modifiers":[],"name":"fundsAvailableToLock","nameLocation":"15009:20:22","nodeType":"FunctionDefinition","parameters":{"id":6484,"nodeType":"ParameterList","parameters":[],"src":"15029:2:22"},"returnParameters":{"id":6487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6486,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6552,"src":"15053:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6485,"name":"uint256","nodeType":"ElementaryTypeName","src":"15053:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15052:9:22"},"scope":7681,"src":"15000:468:22","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[13010],"body":{"id":6562,"nodeType":"Block","src":"15560:29:22","statements":[{"expression":{"id":6560,"name":"_yieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5875,"src":"15573:11:22","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"functionReturnParameters":6559,"id":6561,"nodeType":"Return","src":"15566:18:22"}]},"documentation":{"id":6553,"nodeType":"StructuredDocumentation","src":"15472:23:22","text":"@inheritdoc Reserve"},"functionSelector":"a7f8a5e2","id":6563,"implemented":true,"kind":"function","modifiers":[],"name":"yieldVault","nameLocation":"15507:10:22","nodeType":"FunctionDefinition","overrides":{"id":6555,"nodeType":"OverrideSpecifier","overrides":[],"src":"15532:8:22"},"parameters":{"id":6554,"nodeType":"ParameterList","parameters":[],"src":"15517:2:22"},"returnParameters":{"id":6559,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6558,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6563,"src":"15550:8:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":6557,"nodeType":"UserDefinedTypeName","pathNode":{"id":6556,"name":"IERC4626","nameLocations":["15550:8:22"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"15550:8:22"},"referencedDeclaration":22463,"src":"15550:8:22","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"15549:10:22"},"scope":7681,"src":"15498:91:22","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[13017],"body":{"id":6574,"nodeType":"Block","src":"15651:30:22","statements":[{"expression":{"id":6572,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6570,"name":"_yieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5875,"src":"15657:11:22","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6571,"name":"newYV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6566,"src":"15671:5:22","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"src":"15657:19:22","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":6573,"nodeType":"ExpressionStatement","src":"15657:19:22"}]},"id":6575,"implemented":true,"kind":"function","modifiers":[],"name":"_setYieldVault","nameLocation":"15602:14:22","nodeType":"FunctionDefinition","overrides":{"id":6568,"nodeType":"OverrideSpecifier","overrides":[],"src":"15642:8:22"},"parameters":{"id":6567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6566,"mutability":"mutable","name":"newYV","nameLocation":"15626:5:22","nodeType":"VariableDeclaration","scope":6575,"src":"15617:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":6565,"nodeType":"UserDefinedTypeName","pathNode":{"id":6564,"name":"IERC4626","nameLocations":["15617:8:22"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"15617:8:22"},"referencedDeclaration":22463,"src":"15617:8:22","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"15616:16:22"},"returnParameters":{"id":6569,"nodeType":"ParameterList","parameters":[],"src":"15651:0:22"},"scope":7681,"src":"15593:88:22","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6589,"nodeType":"Block","src":"15799:93:22","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":6584,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6577,"src":"15859:5:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"}],"id":6583,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15851:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6582,"name":"uint256","nodeType":"ElementaryTypeName","src":"15851:7:22","typeDescriptions":{}}},"id":6585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15851:14:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":6586,"name":"FOUR_DECIMAL_TO_WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5830,"src":"15868:19:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15851:36:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6581,"id":6588,"nodeType":"Return","src":"15844:43:22"}]},"id":6590,"implemented":true,"kind":"function","modifiers":[],"name":"_4toWad","nameLocation":"15745:7:22","nodeType":"FunctionDefinition","parameters":{"id":6578,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6577,"mutability":"mutable","name":"value","nameLocation":"15760:5:22","nodeType":"VariableDeclaration","scope":6590,"src":"15753:12:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":6576,"name":"uint16","nodeType":"ElementaryTypeName","src":"15753:6:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"15752:14:22"},"returnParameters":{"id":6581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6580,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6590,"src":"15790:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6579,"name":"uint256","nodeType":"ElementaryTypeName","src":"15790:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15789:9:22"},"scope":7681,"src":"15736:156:22","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6604,"nodeType":"Block","src":"15959:83:22","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6597,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6592,"src":"15998:5:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":6598,"name":"FOUR_DECIMAL_TO_WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5830,"src":"16006:19:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15998:27:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":6600,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15997:29:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6601,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16027:8:22","memberName":"toUint16","nodeType":"MemberAccess","referencedDeclaration":36054,"src":"15997:38:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint16_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint16)"}},"id":6602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15997:40:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"functionReturnParameters":6596,"id":6603,"nodeType":"Return","src":"15990:47:22"}]},"id":6605,"implemented":true,"kind":"function","modifiers":[],"name":"_wadTo4","nameLocation":"15905:7:22","nodeType":"FunctionDefinition","parameters":{"id":6593,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6592,"mutability":"mutable","name":"value","nameLocation":"15921:5:22","nodeType":"VariableDeclaration","scope":6605,"src":"15913:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6591,"name":"uint256","nodeType":"ElementaryTypeName","src":"15913:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15912:15:22"},"returnParameters":{"id":6596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6595,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6605,"src":"15951:6:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":6594,"name":"uint16","nodeType":"ElementaryTypeName","src":"15951:6:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"15950:8:22"},"scope":7681,"src":"15896:146:22","stateMutability":"pure","virtual":false,"visibility":"internal"},{"baseFunctions":[14197],"body":{"id":6616,"nodeType":"Block","src":"16134:34:22","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":6612,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"16147:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":6613,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16152:9:22","memberName":"scrAmount","nodeType":"MemberAccess","referencedDeclaration":5760,"src":"16147:14:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$4824_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_Scr_$4824_storage_ptr_$","typeString":"function (struct ETKLib.Scr storage pointer) view returns (uint256)"}},"id":6614,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16147:16:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6611,"id":6615,"nodeType":"Return","src":"16140:23:22"}]},"documentation":{"id":6606,"nodeType":"StructuredDocumentation","src":"16046:23:22","text":"@inheritdoc IEToken"},"functionSelector":"6c6f4542","id":6617,"implemented":true,"kind":"function","modifiers":[],"name":"scr","nameLocation":"16081:3:22","nodeType":"FunctionDefinition","overrides":{"id":6608,"nodeType":"OverrideSpecifier","overrides":[],"src":"16107:8:22"},"parameters":{"id":6607,"nodeType":"ParameterList","parameters":[],"src":"16084:2:22"},"returnParameters":{"id":6611,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6610,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6617,"src":"16125:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6609,"name":"uint256","nodeType":"ElementaryTypeName","src":"16125:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16124:9:22"},"scope":7681,"src":"16072:96:22","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[14315],"body":{"id":6630,"nodeType":"Block","src":"16264:44:22","statements":[{"expression":{"arguments":[{"expression":{"id":6626,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"16285:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":6627,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16290:12:22","memberName":"interestRate","nodeType":"MemberAccess","referencedDeclaration":4823,"src":"16285:17:22","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":6625,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16277:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6624,"name":"uint256","nodeType":"ElementaryTypeName","src":"16277:7:22","typeDescriptions":{}}},"id":6628,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16277:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6623,"id":6629,"nodeType":"Return","src":"16270:33:22"}]},"documentation":{"id":6618,"nodeType":"StructuredDocumentation","src":"16172:23:22","text":"@inheritdoc IEToken"},"functionSelector":"9d90724d","id":6631,"implemented":true,"kind":"function","modifiers":[],"name":"scrInterestRate","nameLocation":"16207:15:22","nodeType":"FunctionDefinition","overrides":{"id":6620,"nodeType":"OverrideSpecifier","overrides":[],"src":"16237:8:22"},"parameters":{"id":6619,"nodeType":"ParameterList","parameters":[],"src":"16222:2:22"},"returnParameters":{"id":6623,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6622,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6631,"src":"16255:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6621,"name":"uint256","nodeType":"ElementaryTypeName","src":"16255:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16254:9:22"},"scope":7681,"src":"16198:110:22","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[14309],"body":{"id":6661,"nodeType":"Block","src":"16406:143:22","statements":[{"assignments":[6639],"declarations":[{"constant":false,"id":6639,"mutability":"mutable","name":"ts","nameLocation":"16420:2:22","nodeType":"VariableDeclaration","scope":6661,"src":"16412:10:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6638,"name":"uint256","nodeType":"ElementaryTypeName","src":"16412:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6642,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6640,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[6214],"referencedDeclaration":6214,"src":"16425:11:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16425:13:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16412:26:22"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6645,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6643,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6639,"src":"16448:2:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":6644,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16454:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"16448:7:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":6659,"nodeType":"Block","src":"16476:69:22","statements":[{"expression":{"arguments":[{"expression":{"id":6654,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"16525:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":6655,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16530:3:22","memberName":"scr","nodeType":"MemberAccess","referencedDeclaration":4821,"src":"16525:8:22","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"id":6656,"name":"ts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6639,"src":"16535:2:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"expression":{"id":6650,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"16499:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":6651,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16504:12:22","memberName":"interestRate","nodeType":"MemberAccess","referencedDeclaration":4823,"src":"16499:17:22","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":6649,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16491:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6648,"name":"uint256","nodeType":"ElementaryTypeName","src":"16491:7:22","typeDescriptions":{}}},"id":6652,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16491:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6653,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16518:6:22","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34072,"src":"16491:33:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":6657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16491:47:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6637,"id":6658,"nodeType":"Return","src":"16484:54:22"}]},"id":6660,"nodeType":"IfStatement","src":"16444:101:22","trueBody":{"expression":{"hexValue":"30","id":6646,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16464:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":6637,"id":6647,"nodeType":"Return","src":"16457:8:22"}}]},"documentation":{"id":6632,"nodeType":"StructuredDocumentation","src":"16312:23:22","text":"@inheritdoc IEToken"},"functionSelector":"159ec2df","id":6662,"implemented":true,"kind":"function","modifiers":[],"name":"tokenInterestRate","nameLocation":"16347:17:22","nodeType":"FunctionDefinition","overrides":{"id":6634,"nodeType":"OverrideSpecifier","overrides":[],"src":"16379:8:22"},"parameters":{"id":6633,"nodeType":"ParameterList","parameters":[],"src":"16364:2:22"},"returnParameters":{"id":6637,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6636,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6662,"src":"16397:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6635,"name":"uint256","nodeType":"ElementaryTypeName","src":"16397:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16396:9:22"},"scope":7681,"src":"16338:211:22","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":6673,"nodeType":"Block","src":"16732:55:22","statements":[{"expression":{"arguments":[{"expression":{"id":6669,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"16753:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":6670,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16761:20:22","memberName":"liquidityRequirement","nodeType":"MemberAccess","referencedDeclaration":5860,"src":"16753:28:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"}],"id":6668,"name":"_4toWad","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6590,"src":"16745:7:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint16_$returns$_t_uint256_$","typeString":"function (uint16) pure returns (uint256)"}},"id":6671,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16745:37:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6667,"id":6672,"nodeType":"Return","src":"16738:44:22"}]},"documentation":{"id":6663,"nodeType":"StructuredDocumentation","src":"16553:114:22","text":" @dev Returns the factor applied to SCR when computing the non-withdrawable. Typically 1.0 (in wad)."},"functionSelector":"ba4e8df5","id":6674,"implemented":true,"kind":"function","modifiers":[],"name":"liquidityRequirement","nameLocation":"16679:20:22","nodeType":"FunctionDefinition","parameters":{"id":6664,"nodeType":"ParameterList","parameters":[],"src":"16699:2:22"},"returnParameters":{"id":6667,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6666,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6674,"src":"16723:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6665,"name":"uint256","nodeType":"ElementaryTypeName","src":"16723:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16722:9:22"},"scope":7681,"src":"16670:117:22","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":6685,"nodeType":"Block","src":"17108:53:22","statements":[{"expression":{"arguments":[{"expression":{"id":6681,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"17129:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":6682,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17137:18:22","memberName":"maxUtilizationRate","nodeType":"MemberAccess","referencedDeclaration":5864,"src":"17129:26:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"}],"id":6680,"name":"_4toWad","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6590,"src":"17121:7:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint16_$returns$_t_uint256_$","typeString":"function (uint16) pure returns (uint256)"}},"id":6683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17121:35:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6679,"id":6684,"nodeType":"Return","src":"17114:42:22"}]},"documentation":{"id":6675,"nodeType":"StructuredDocumentation","src":"16791:254:22","text":" @dev Returns the maximum utilization rate (UR) that is acceptable when locking funds.\n      The UR can be higher than this value as a consequence of withdrawals or other operations,\n      but not as a consequence of a lockScr call."},"functionSelector":"dfcb48bd","id":6686,"implemented":true,"kind":"function","modifiers":[],"name":"maxUtilizationRate","nameLocation":"17057:18:22","nodeType":"FunctionDefinition","parameters":{"id":6676,"nodeType":"ParameterList","parameters":[],"src":"17075:2:22"},"returnParameters":{"id":6679,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6678,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6686,"src":"17099:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6677,"name":"uint256","nodeType":"ElementaryTypeName","src":"17099:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17098:9:22"},"scope":7681,"src":"17048:113:22","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":6697,"nodeType":"Block","src":"17477:53:22","statements":[{"expression":{"arguments":[{"expression":{"id":6693,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"17498:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":6694,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17506:18:22","memberName":"minUtilizationRate","nodeType":"MemberAccess","referencedDeclaration":5862,"src":"17498:26:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"}],"id":6692,"name":"_4toWad","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6590,"src":"17490:7:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint16_$returns$_t_uint256_$","typeString":"function (uint16) pure returns (uint256)"}},"id":6695,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17490:35:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6691,"id":6696,"nodeType":"Return","src":"17483:42:22"}]},"documentation":{"id":6687,"nodeType":"StructuredDocumentation","src":"17165:249:22","text":" @dev Returns the minimum utilization rate (UR) that is acceptable after deposits.\n      The UR can be lower than this value as a consequence of SCR unlocks or other operations,\n      but not as a consequence of a deposit call."},"functionSelector":"ee01a183","id":6698,"implemented":true,"kind":"function","modifiers":[],"name":"minUtilizationRate","nameLocation":"17426:18:22","nodeType":"FunctionDefinition","parameters":{"id":6688,"nodeType":"ParameterList","parameters":[],"src":"17444:2:22"},"returnParameters":{"id":6691,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6690,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6698,"src":"17468:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6689,"name":"uint256","nodeType":"ElementaryTypeName","src":"17468:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17467:9:22"},"scope":7681,"src":"17417:113:22","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":6714,"nodeType":"Block","src":"17709:66:22","statements":[{"expression":{"arguments":[{"id":6708,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5827,"src":"17746:3:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":6709,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"17751:4:22","typeDescriptions":{"typeIdentifier":"t_contract$_EToken_$7681","typeString":"contract EToken"}},"id":6710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17756:11:22","memberName":"totalSupply","nodeType":"MemberAccess","referencedDeclaration":6214,"src":"17751:16:22","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":6711,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17751:18:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":6704,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"17722:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":6705,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17727:9:22","memberName":"scrAmount","nodeType":"MemberAccess","referencedDeclaration":5760,"src":"17722:14:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$4824_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_Scr_$4824_storage_ptr_$","typeString":"function (struct ETKLib.Scr storage pointer) view returns (uint256)"}},"id":6706,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17722:16:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17739:6:22","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34072,"src":"17722:23:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":6712,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17722:48:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6703,"id":6713,"nodeType":"Return","src":"17715:55:22"}]},"documentation":{"id":6699,"nodeType":"StructuredDocumentation","src":"17534:115:22","text":" @dev Returns the percentage of the total supply that is used as SCR (solvency capital backing risks)"},"functionSelector":"6c321c8a","id":6715,"implemented":true,"kind":"function","modifiers":[],"name":"utilizationRate","nameLocation":"17661:15:22","nodeType":"FunctionDefinition","parameters":{"id":6700,"nodeType":"ParameterList","parameters":[],"src":"17676:2:22"},"returnParameters":{"id":6703,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6702,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6715,"src":"17700:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6701,"name":"uint256","nodeType":"ElementaryTypeName","src":"17700:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17699:9:22"},"scope":7681,"src":"17652:123:22","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[14207],"body":{"id":6760,"nodeType":"Block","src":"17892:342:22","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6727,"name":"scrAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6719,"src":"17902:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":6728,"name":"fundsAvailableToLock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6552,"src":"17914:20:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6729,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17914:22:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17902:34:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6737,"nodeType":"IfStatement","src":"17898:99:22","trueBody":{"errorCall":{"arguments":[{"id":6732,"name":"scrAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6719,"src":"17963:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":6733,"name":"fundsAvailableToLock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6552,"src":"17974:20:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6734,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17974:22:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6731,"name":"NotEnoughScrFunds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5920,"src":"17945:17:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":6735,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17945:52:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6736,"nodeType":"RevertStatement","src":"17938:59:22"}},{"expression":{"id":6744,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6738,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"18003:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"30","id":6741,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18040:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":6742,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"18043:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":6739,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"18015:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6740,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18025:14:22","memberName":"discreteChange","nodeType":"MemberAccess","referencedDeclaration":5508,"src":"18015:24:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_int256_$_t_struct$_Scr_$4824_storage_ptr_$returns$_t_struct$_ScaledAmount_$4819_memory_ptr_$attached_to$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,int256,struct ETKLib.Scr storage pointer) view returns (struct ETKLib.ScaledAmount memory)"}},"id":6743,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18015:33:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_memory_ptr","typeString":"struct ETKLib.ScaledAmount memory"}},"src":"18003:45:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6745,"nodeType":"ExpressionStatement","src":"18003:45:22"},{"expression":{"id":6752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6746,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"18122:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6749,"name":"scrAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6719,"src":"18138:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6750,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6721,"src":"18149:18:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6747,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"18129:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":6748,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18134:3:22","memberName":"add","nodeType":"MemberAccess","referencedDeclaration":5604,"src":"18129:8:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$4824_storage_ptr_$_t_uint256_$_t_uint256_$returns$_t_struct$_Scr_$4824_memory_ptr_$attached_to$_t_struct$_Scr_$4824_storage_ptr_$","typeString":"function (struct ETKLib.Scr storage pointer,uint256,uint256) view returns (struct ETKLib.Scr memory)"}},"id":6751,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18129:39:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_memory_ptr","typeString":"struct ETKLib.Scr memory"}},"src":"18122:46:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":6753,"nodeType":"ExpressionStatement","src":"18122:46:22"},{"eventCall":{"arguments":[{"id":6755,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6717,"src":"18189:8:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6756,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6721,"src":"18199:18:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6757,"name":"scrAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6719,"src":"18219:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6754,"name":"SCRLocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14180,"src":"18179:9:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256)"}},"id":6758,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18179:50:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6759,"nodeType":"EmitStatement","src":"18174:55:22"}]},"functionSelector":"4ffcda8c","id":6761,"implemented":true,"kind":"function","modifiers":[{"id":6725,"kind":"modifierInvocation","modifierName":{"id":6724,"name":"onlyBorrower","nameLocations":["17879:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":6051,"src":"17879:12:22"},"nodeType":"ModifierInvocation","src":"17879:12:22"}],"name":"lockScr","nameLocation":"17788:7:22","nodeType":"FunctionDefinition","overrides":{"id":6723,"nodeType":"OverrideSpecifier","overrides":[],"src":"17870:8:22"},"parameters":{"id":6722,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6717,"mutability":"mutable","name":"policyId","nameLocation":"17804:8:22","nodeType":"VariableDeclaration","scope":6761,"src":"17796:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6716,"name":"uint256","nodeType":"ElementaryTypeName","src":"17796:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6719,"mutability":"mutable","name":"scrAmount","nameLocation":"17822:9:22","nodeType":"VariableDeclaration","scope":6761,"src":"17814:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6718,"name":"uint256","nodeType":"ElementaryTypeName","src":"17814:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6721,"mutability":"mutable","name":"policyInterestRate","nameLocation":"17841:18:22","nodeType":"VariableDeclaration","scope":6761,"src":"17833:26:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6720,"name":"uint256","nodeType":"ElementaryTypeName","src":"17833:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17795:65:22"},"returnParameters":{"id":6726,"nodeType":"ParameterList","parameters":[],"src":"17892:0:22"},"scope":7681,"src":"17779:455:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":6795,"nodeType":"Block","src":"18351:385:22","statements":[{"expression":{"id":6778,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6772,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"18550:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6775,"name":"adjustment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6769,"src":"18587:10:22","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":6776,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"18599:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":6773,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"18562:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6774,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18572:14:22","memberName":"discreteChange","nodeType":"MemberAccess","referencedDeclaration":5508,"src":"18562:24:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_int256_$_t_struct$_Scr_$4824_storage_ptr_$returns$_t_struct$_ScaledAmount_$4819_memory_ptr_$attached_to$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,int256,struct ETKLib.Scr storage pointer) view returns (struct ETKLib.ScaledAmount memory)"}},"id":6777,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18562:42:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_memory_ptr","typeString":"struct ETKLib.ScaledAmount memory"}},"src":"18550:54:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6779,"nodeType":"ExpressionStatement","src":"18550:54:22"},{"expression":{"id":6786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6780,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"18610:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6783,"name":"scrAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6765,"src":"18626:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6784,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6767,"src":"18637:18:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6781,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"18617:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":6782,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18622:3:22","memberName":"sub","nodeType":"MemberAccess","referencedDeclaration":5676,"src":"18617:8:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$4824_storage_ptr_$_t_uint256_$_t_uint256_$returns$_t_struct$_Scr_$4824_memory_ptr_$attached_to$_t_struct$_Scr_$4824_storage_ptr_$","typeString":"function (struct ETKLib.Scr storage pointer,uint256,uint256) view returns (struct ETKLib.Scr memory)"}},"id":6785,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18617:39:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_memory_ptr","typeString":"struct ETKLib.Scr memory"}},"src":"18610:46:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":6787,"nodeType":"ExpressionStatement","src":"18610:46:22"},{"eventCall":{"arguments":[{"id":6789,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6763,"src":"18679:8:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6790,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6767,"src":"18689:18:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6791,"name":"scrAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6765,"src":"18709:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6792,"name":"adjustment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6769,"src":"18720:10:22","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6788,"name":"SCRUnlocked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14191,"src":"18667:11:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256)"}},"id":6793,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18667:64:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6794,"nodeType":"EmitStatement","src":"18662:69:22"}]},"id":6796,"implemented":true,"kind":"function","modifiers":[],"name":"_unlockScr","nameLocation":"18247:10:22","nodeType":"FunctionDefinition","parameters":{"id":6770,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6763,"mutability":"mutable","name":"policyId","nameLocation":"18266:8:22","nodeType":"VariableDeclaration","scope":6796,"src":"18258:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6762,"name":"uint256","nodeType":"ElementaryTypeName","src":"18258:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6765,"mutability":"mutable","name":"scrAmount","nameLocation":"18284:9:22","nodeType":"VariableDeclaration","scope":6796,"src":"18276:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6764,"name":"uint256","nodeType":"ElementaryTypeName","src":"18276:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6767,"mutability":"mutable","name":"policyInterestRate","nameLocation":"18303:18:22","nodeType":"VariableDeclaration","scope":6796,"src":"18295:26:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6766,"name":"uint256","nodeType":"ElementaryTypeName","src":"18295:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6769,"mutability":"mutable","name":"adjustment","nameLocation":"18330:10:22","nodeType":"VariableDeclaration","scope":6796,"src":"18323:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6768,"name":"int256","nodeType":"ElementaryTypeName","src":"18323:6:22","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18257:84:22"},"returnParameters":{"id":6771,"nodeType":"ParameterList","parameters":[],"src":"18351:0:22"},"scope":7681,"src":"18238:498:22","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[14219],"body":{"id":6817,"nodeType":"Block","src":"18894:74:22","statements":[{"expression":{"arguments":[{"id":6811,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6798,"src":"18911:8:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6812,"name":"scrAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6800,"src":"18921:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6813,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6802,"src":"18932:18:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6814,"name":"adjustment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6804,"src":"18952:10:22","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6810,"name":"_unlockScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6796,"src":"18900:10:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256)"}},"id":6815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18900:63:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6816,"nodeType":"ExpressionStatement","src":"18900:63:22"}]},"functionSelector":"a227dc41","id":6818,"implemented":true,"kind":"function","modifiers":[{"id":6808,"kind":"modifierInvocation","modifierName":{"id":6807,"name":"onlyBorrower","nameLocations":["18881:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":6051,"src":"18881:12:22"},"nodeType":"ModifierInvocation","src":"18881:12:22"}],"name":"unlockScr","nameLocation":"18749:9:22","nodeType":"FunctionDefinition","overrides":{"id":6806,"nodeType":"OverrideSpecifier","overrides":[],"src":"18872:8:22"},"parameters":{"id":6805,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6798,"mutability":"mutable","name":"policyId","nameLocation":"18772:8:22","nodeType":"VariableDeclaration","scope":6818,"src":"18764:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6797,"name":"uint256","nodeType":"ElementaryTypeName","src":"18764:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6800,"mutability":"mutable","name":"scrAmount","nameLocation":"18794:9:22","nodeType":"VariableDeclaration","scope":6818,"src":"18786:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6799,"name":"uint256","nodeType":"ElementaryTypeName","src":"18786:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6802,"mutability":"mutable","name":"policyInterestRate","nameLocation":"18817:18:22","nodeType":"VariableDeclaration","scope":6818,"src":"18809:26:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6801,"name":"uint256","nodeType":"ElementaryTypeName","src":"18809:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6804,"mutability":"mutable","name":"adjustment","nameLocation":"18848:10:22","nodeType":"VariableDeclaration","scope":6818,"src":"18841:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6803,"name":"int256","nodeType":"ElementaryTypeName","src":"18841:6:22","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18758:104:22"},"returnParameters":{"id":6809,"nodeType":"ParameterList","parameters":[],"src":"18894:0:22"},"scope":7681,"src":"18740:228:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14235],"body":{"id":6859,"nodeType":"Block","src":"19184:210:22","statements":[{"expression":{"arguments":[{"id":6837,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6820,"src":"19201:8:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6838,"name":"scrAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6822,"src":"19211:9:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6839,"name":"policyInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6824,"src":"19222:18:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6840,"name":"adjustment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6826,"src":"19242:10:22","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6836,"name":"_unlockScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6796,"src":"19190:10:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256)"}},"id":6841,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19190:63:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6842,"nodeType":"ExpressionStatement","src":"19190:63:22"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6845,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6843,"name":"refundAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6830,"src":"19263:12:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":6844,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19279:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"19263:17:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6858,"nodeType":"IfStatement","src":"19259:131:22","trueBody":{"id":6857,"nodeType":"Block","src":"19282:108:22","statements":[{"expression":{"arguments":[{"id":6847,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6828,"src":"19302:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6848,"name":"refundAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6830,"src":"19312:12:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6846,"name":"_transferTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13003,"src":"19290:11:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":6849,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19290:35:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6850,"nodeType":"ExpressionStatement","src":"19290:35:22"},{"eventCall":{"arguments":[{"id":6852,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6820,"src":"19350:8:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6853,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6828,"src":"19360:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6854,"name":"refundAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6830,"src":"19370:12:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6851,"name":"CoCRefunded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6032,"src":"19338:11:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_address_$_t_uint256_$returns$__$","typeString":"function (uint256,address,uint256)"}},"id":6855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19338:45:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6856,"nodeType":"EmitStatement","src":"19333:50:22"}]}}]},"functionSelector":"3ad2820b","id":6860,"implemented":true,"kind":"function","modifiers":[{"id":6834,"kind":"modifierInvocation","modifierName":{"id":6833,"name":"onlyBorrower","nameLocations":["19171:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":6051,"src":"19171:12:22"},"nodeType":"ModifierInvocation","src":"19171:12:22"}],"name":"unlockScrWithRefund","nameLocation":"18981:19:22","nodeType":"FunctionDefinition","overrides":{"id":6832,"nodeType":"OverrideSpecifier","overrides":[],"src":"19162:8:22"},"parameters":{"id":6831,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6820,"mutability":"mutable","name":"policyId","nameLocation":"19014:8:22","nodeType":"VariableDeclaration","scope":6860,"src":"19006:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6819,"name":"uint256","nodeType":"ElementaryTypeName","src":"19006:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6822,"mutability":"mutable","name":"scrAmount","nameLocation":"19036:9:22","nodeType":"VariableDeclaration","scope":6860,"src":"19028:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6821,"name":"uint256","nodeType":"ElementaryTypeName","src":"19028:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6824,"mutability":"mutable","name":"policyInterestRate","nameLocation":"19059:18:22","nodeType":"VariableDeclaration","scope":6860,"src":"19051:26:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6823,"name":"uint256","nodeType":"ElementaryTypeName","src":"19051:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6826,"mutability":"mutable","name":"adjustment","nameLocation":"19090:10:22","nodeType":"VariableDeclaration","scope":6860,"src":"19083:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6825,"name":"int256","nodeType":"ElementaryTypeName","src":"19083:6:22","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":6828,"mutability":"mutable","name":"receiver","nameLocation":"19114:8:22","nodeType":"VariableDeclaration","scope":6860,"src":"19106:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6827,"name":"address","nodeType":"ElementaryTypeName","src":"19106:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6830,"mutability":"mutable","name":"refundAmount","nameLocation":"19136:12:22","nodeType":"VariableDeclaration","scope":6860,"src":"19128:20:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6829,"name":"uint256","nodeType":"ElementaryTypeName","src":"19128:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19000:152:22"},"returnParameters":{"id":6835,"nodeType":"ParameterList","parameters":[],"src":"19184:0:22"},"scope":7681,"src":"18972:422:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[13037],"body":{"id":6876,"nodeType":"Block","src":"19457:72:22","statements":[{"expression":{"arguments":[{"id":6867,"name":"earnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6862,"src":"19479:8:22","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6866,"name":"_discreteChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6891,"src":"19463:15:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":6868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19463:25:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6869,"nodeType":"ExpressionStatement","src":"19463:25:22"},{"expression":{"arguments":[{"id":6873,"name":"earnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6862,"src":"19515:8:22","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":6870,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"19494:5:22","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_EToken_$7681_$","typeString":"type(contract super EToken)"}},"id":6872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19500:14:22","memberName":"_yieldEarnings","nodeType":"MemberAccess","referencedDeclaration":13037,"src":"19494:20:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":6874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19494:30:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6875,"nodeType":"ExpressionStatement","src":"19494:30:22"}]},"id":6877,"implemented":true,"kind":"function","modifiers":[],"name":"_yieldEarnings","nameLocation":"19407:14:22","nodeType":"FunctionDefinition","overrides":{"id":6864,"nodeType":"OverrideSpecifier","overrides":[],"src":"19448:8:22"},"parameters":{"id":6863,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6862,"mutability":"mutable","name":"earnings","nameLocation":"19429:8:22","nodeType":"VariableDeclaration","scope":6877,"src":"19422:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6861,"name":"int256","nodeType":"ElementaryTypeName","src":"19422:6:22","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19421:17:22"},"returnParameters":{"id":6865,"nodeType":"ParameterList","parameters":[],"src":"19457:0:22"},"scope":7681,"src":"19398:131:22","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6890,"nodeType":"Block","src":"19582:61:22","statements":[{"expression":{"id":6888,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6882,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"19588:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6885,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6879,"src":"19625:6:22","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":6886,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"19633:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}],"expression":{"id":6883,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"19600:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6884,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19610:14:22","memberName":"discreteChange","nodeType":"MemberAccess","referencedDeclaration":5508,"src":"19600:24:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_int256_$_t_struct$_Scr_$4824_storage_ptr_$returns$_t_struct$_ScaledAmount_$4819_memory_ptr_$attached_to$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,int256,struct ETKLib.Scr storage pointer) view returns (struct ETKLib.ScaledAmount memory)"}},"id":6887,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19600:38:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_memory_ptr","typeString":"struct ETKLib.ScaledAmount memory"}},"src":"19588:50:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":6889,"nodeType":"ExpressionStatement","src":"19588:50:22"}]},"id":6891,"implemented":true,"kind":"function","modifiers":[],"name":"_discreteChange","nameLocation":"19542:15:22","nodeType":"FunctionDefinition","parameters":{"id":6880,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6879,"mutability":"mutable","name":"amount","nameLocation":"19565:6:22","nodeType":"VariableDeclaration","scope":6891,"src":"19558:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6878,"name":"int256","nodeType":"ElementaryTypeName","src":"19558:6:22","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19557:15:22"},"returnParameters":{"id":6881,"nodeType":"ParameterList","parameters":[],"src":"19582:0:22"},"scope":7681,"src":"19533:110:22","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[14245],"body":{"id":6961,"nodeType":"Block","src":"19747:438:22","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":6936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6913,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":6906,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"19776:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":6907,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19784:9:22","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":5858,"src":"19776:17:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}],"id":6905,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19768:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6904,"name":"address","nodeType":"ElementaryTypeName","src":"19768:7:22","typeDescriptions":{}}},"id":6908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19768:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":6911,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19806: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":6910,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19798:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6909,"name":"address","nodeType":"ElementaryTypeName","src":"19798:7:22","typeDescriptions":{}}},"id":6912,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19798:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"19768:40:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":6934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":6917,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"19854:4:22","typeDescriptions":{"typeIdentifier":"t_contract$_EToken_$7681","typeString":"contract EToken"}},{"id":6918,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6895,"src":"19860:6:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6919,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6893,"src":"19868:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EToken_$7681","typeString":"contract EToken"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":6914,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"19821:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":6915,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19829:9:22","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":5858,"src":"19821:17:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}},"id":6916,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19839:14:22","memberName":"acceptsDeposit","nodeType":"MemberAccess","referencedDeclaration":14354,"src":"19821:32:22","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_contract$_IEToken_$14336_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (contract IEToken,address,uint256) view external returns (bool)"}},"id":6920,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19821:54:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":6932,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6921,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6895,"src":"19890:6:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":6922,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6897,"src":"19900:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"19890:18:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":6927,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"19946:4:22","typeDescriptions":{"typeIdentifier":"t_contract$_EToken_$7681","typeString":"contract EToken"}},{"id":6928,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6895,"src":"19952:6:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6929,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6897,"src":"19960:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6930,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6893,"src":"19970:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EToken_$7681","typeString":"contract EToken"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":6924,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"19912:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":6925,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19920:9:22","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":5858,"src":"19912:17:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}},"id":6926,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19930:15:22","memberName":"acceptsTransfer","nodeType":"MemberAccess","referencedDeclaration":14369,"src":"19912:33:22","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_contract$_IEToken_$14336_$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (contract IEToken,address,address,uint256) view external returns (bool)"}},"id":6931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19912:65:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"19890:87:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":6933,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"19889:89:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"19821:157:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":6935,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"19820:159:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"19768:211:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":6938,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6895,"src":"20009:6:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6939,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6893,"src":"20017:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6937,"name":"DepositNotWhitelisted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5906,"src":"19987:21:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256) pure returns (error)"}},"id":6940,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19987:37:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":6903,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"19753:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":6941,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19753:277:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6942,"nodeType":"ExpressionStatement","src":"19753:277:22"},{"expression":{"arguments":[{"id":6944,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6897,"src":"20042:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6945,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6893,"src":"20052:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6943,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16445,"src":"20036:5:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":6946,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20036:23:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6947,"nodeType":"ExpressionStatement","src":"20036:23:22"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6952,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":6948,"name":"utilizationRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6715,"src":"20069:15:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6949,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20069:17:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":6950,"name":"minUtilizationRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6698,"src":"20089:18:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6951,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20089:20:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20069:40:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6960,"nodeType":"IfStatement","src":"20065:115:22","trueBody":{"errorCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":6954,"name":"utilizationRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6715,"src":"20140:15:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6955,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20140:17:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":6956,"name":"minUtilizationRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6698,"src":"20159:18:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6957,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20159:20:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6953,"name":"UtilizationRateTooLow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5927,"src":"20118:21:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":6958,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20118:62:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6959,"nodeType":"RevertStatement","src":"20111:69:22"}}]},"functionSelector":"2e2d2984","id":6962,"implemented":true,"kind":"function","modifiers":[{"id":6901,"kind":"modifierInvocation","modifierName":{"id":6900,"name":"onlyPolicyPool","nameLocations":["19732:14:22"],"nodeType":"IdentifierPath","referencedDeclaration":10981,"src":"19732:14:22"},"nodeType":"ModifierInvocation","src":"19732:14:22"}],"name":"deposit","nameLocation":"19656:7:22","nodeType":"FunctionDefinition","overrides":{"id":6899,"nodeType":"OverrideSpecifier","overrides":[],"src":"19723:8:22"},"parameters":{"id":6898,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6893,"mutability":"mutable","name":"amount","nameLocation":"19672:6:22","nodeType":"VariableDeclaration","scope":6962,"src":"19664:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6892,"name":"uint256","nodeType":"ElementaryTypeName","src":"19664:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6895,"mutability":"mutable","name":"caller","nameLocation":"19688:6:22","nodeType":"VariableDeclaration","scope":6962,"src":"19680:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6894,"name":"address","nodeType":"ElementaryTypeName","src":"19680:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6897,"mutability":"mutable","name":"receiver","nameLocation":"19704:8:22","nodeType":"VariableDeclaration","scope":6962,"src":"19696:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6896,"name":"address","nodeType":"ElementaryTypeName","src":"19696:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"19663:50:22"},"returnParameters":{"id":6902,"nodeType":"ParameterList","parameters":[],"src":"19747:0:22"},"scope":7681,"src":"19647:538:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14265],"body":{"id":6995,"nodeType":"Block","src":"20291:203:22","statements":[{"assignments":[6970],"declarations":[{"constant":false,"id":6970,"mutability":"mutable","name":"locked","nameLocation":"20305:6:22","nodeType":"VariableDeclaration","scope":6995,"src":"20297:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6969,"name":"uint256","nodeType":"ElementaryTypeName","src":"20297:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6979,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":6975,"name":"liquidityRequirement","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6674,"src":"20338:20:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20338:22:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6977,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5827,"src":"20362:3:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":6971,"name":"_scr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"20314:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_Scr_$4824_storage","typeString":"struct ETKLib.Scr storage ref"}},"id":6972,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20319:9:22","memberName":"scrAmount","nodeType":"MemberAccess","referencedDeclaration":5760,"src":"20314:14:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Scr_$4824_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_Scr_$4824_storage_ptr_$","typeString":"function (struct ETKLib.Scr storage pointer) view returns (uint256)"}},"id":6973,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20314:16:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20331:6:22","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34072,"src":"20314:23:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":6978,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20314:52:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"20297:69:22"},{"assignments":[6981],"declarations":[{"constant":false,"id":6981,"mutability":"mutable","name":"totalSupply_","nameLocation":"20380:12:22","nodeType":"VariableDeclaration","scope":6995,"src":"20372:20:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6980,"name":"uint256","nodeType":"ElementaryTypeName","src":"20372:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6984,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6982,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[6214],"referencedDeclaration":6214,"src":"20395:11:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6983,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20395:13:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"20372:36:22"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6987,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6985,"name":"totalSupply_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6981,"src":"20418:12:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":6986,"name":"locked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6970,"src":"20434:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20418:22:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"hexValue":"30","id":6992,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20488:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":6968,"id":6993,"nodeType":"Return","src":"20481:8:22"},"id":6994,"nodeType":"IfStatement","src":"20414:75:22","trueBody":{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6988,"name":"totalSupply_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6981,"src":"20449:12:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6989,"name":"locked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6970,"src":"20464:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20449:21:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6968,"id":6991,"nodeType":"Return","src":"20442:28:22"}}]},"documentation":{"id":6963,"nodeType":"StructuredDocumentation","src":"20189:23:22","text":"@inheritdoc IEToken"},"functionSelector":"0600a865","id":6996,"implemented":true,"kind":"function","modifiers":[],"name":"totalWithdrawable","nameLocation":"20224:17:22","nodeType":"FunctionDefinition","overrides":{"id":6965,"nodeType":"OverrideSpecifier","overrides":[],"src":"20264:8:22"},"parameters":{"id":6964,"nodeType":"ParameterList","parameters":[],"src":"20241:2:22"},"returnParameters":{"id":6968,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6967,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6996,"src":"20282:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6966,"name":"uint256","nodeType":"ElementaryTypeName","src":"20282:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20281:9:22"},"scope":7681,"src":"20215:279:22","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[14259],"body":{"id":7145,"nodeType":"Block","src":"20652:1511:22","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":7014,"name":"yieldVault","nodeType":"Identifier","overloadedDeclarations":[6563],"referencedDeclaration":6563,"src":"21038:10:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC4626_$22463_$","typeString":"function () view returns (contract IERC4626)"}},"id":7015,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21038:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":7013,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21030:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7012,"name":"address","nodeType":"ElementaryTypeName","src":"21030:7:22","typeDescriptions":{}}},"id":7016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21030:21:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":7019,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21063: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":7018,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21055:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7017,"name":"address","nodeType":"ElementaryTypeName","src":"21055:7:22","typeDescriptions":{}}},"id":7020,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21055:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21030:35:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"documentation":" Here we don't check for maxUtilizationRate because that limit only affects locking more capital (`lockScr`), but\n doesn't affects the right of liquidity providers to withdraw their funds.\n The only limit for withdraws is the `totalWithdrawable()` function, that's affected by the relation between the\n scr and the totalSupply.","id":7026,"nodeType":"IfStatement","src":"21026:182:22","trueBody":{"id":7025,"nodeType":"Block","src":"21067:141:22","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":7022,"name":"recordEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13494,"src":"21185:14:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":7023,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21185:16:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7024,"nodeType":"ExpressionStatement","src":"21185:16:22"}]}},{"assignments":[7028],"declarations":[{"constant":false,"id":7028,"mutability":"mutable","name":"maxWithdraw","nameLocation":"21221:11:22","nodeType":"VariableDeclaration","scope":7145,"src":"21213:19:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7027,"name":"uint256","nodeType":"ElementaryTypeName","src":"21213:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7037,"initialValue":{"arguments":[{"arguments":[{"id":7032,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7002,"src":"21254:5:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7031,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[6235],"referencedDeclaration":6235,"src":"21244:9:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":7033,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21244:16:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":7034,"name":"totalWithdrawable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6996,"src":"21262:17:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":7035,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21262:19:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":7029,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"21235:4:22","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":7030,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21240:3:22","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":33872,"src":"21235:8:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":7036,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21235:47:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"21213:69:22"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7038,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6998,"src":"21292:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":7041,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21307:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":7040,"name":"uint256","nodeType":"ElementaryTypeName","src":"21307:7:22","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":7039,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"21302:4:22","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7042,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21302:13:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":7043,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21316:3:22","memberName":"max","nodeType":"MemberAccess","src":"21302:17:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21292:27:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7049,"nodeType":"IfStatement","src":"21288:53:22","trueBody":{"expression":{"id":7047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7045,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6998,"src":"21321:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7046,"name":"maxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7028,"src":"21330:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21321:20:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7048,"nodeType":"ExpressionStatement","src":"21321:20:22"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7052,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7050,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6998,"src":"21351:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":7051,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21361:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"21351:11:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7055,"nodeType":"IfStatement","src":"21347:25:22","trueBody":{"expression":{"hexValue":"30","id":7053,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21371:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":7011,"id":7054,"nodeType":"Return","src":"21364:8:22"}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7072,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7059,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5879,"src":"21401:7:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}],"id":7058,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21393:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7057,"name":"address","nodeType":"ElementaryTypeName","src":"21393:7:22","typeDescriptions":{}}},"id":7060,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21393:16:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7063,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21421: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":7062,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21413:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7061,"name":"address","nodeType":"ElementaryTypeName","src":"21413:7:22","typeDescriptions":{}}},"id":7064,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21413:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21393:30:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7068,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5879,"src":"21435:7:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}],"id":7067,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21427:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7066,"name":"address","nodeType":"ElementaryTypeName","src":"21427:7:22","typeDescriptions":{}}},"id":7069,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21427:16:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7070,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7000,"src":"21447:6:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21427:26:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"21393:60:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":7080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7075,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"21480:4:22","typeDescriptions":{"typeIdentifier":"t_contract$_EToken_$7681","typeString":"contract EToken"}},{"id":7076,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7002,"src":"21486:5:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7077,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6998,"src":"21493:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EToken_$7681","typeString":"contract EToken"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":7073,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5879,"src":"21457:7:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}},"id":7074,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21465:14:22","memberName":"cooldownPeriod","nodeType":"MemberAccess","referencedDeclaration":14161,"src":"21457:22:22","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_contract$_IEToken_$14336_$_t_address_$_t_uint256_$returns$_t_uint40_$","typeString":"function (contract IEToken,address,uint256) view external returns (uint40)"}},"id":7078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21457:43:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":7079,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21504:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"21457:48:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"21393:112:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":7083,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5879,"src":"21540:7:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}],"id":7082,"name":"WithdrawalsRequireCooldown","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5962,"src":"21513:26:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_ICooler_$14162_$returns$_t_error_$","typeString":"function (contract ICooler) pure returns (error)"}},"id":7084,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21513:35:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":7056,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"21378:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":7085,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21378:176:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7086,"nodeType":"ExpressionStatement","src":"21378:176:22"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7090,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7088,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6998,"src":"21568:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":7089,"name":"maxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7028,"src":"21578:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21568:21:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":7092,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6998,"src":"21610:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7093,"name":"maxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7028,"src":"21618:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7091,"name":"ExceedsMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5956,"src":"21591:18:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":7094,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21591:39:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":7087,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"21560:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":7095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21560:71:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7096,"nodeType":"ExpressionStatement","src":"21560:71:22"},{"documentation":" For the whitelist validation, I use the owner address. If the caller != owner, then I assume that if the\n owner gave spending approval to the caller, that's enough.","expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7107,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":7100,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"21854:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":7101,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21862:9:22","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":5858,"src":"21854:17:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}],"id":7099,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21846:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7098,"name":"address","nodeType":"ElementaryTypeName","src":"21846:7:22","typeDescriptions":{}}},"id":7102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21846:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7105,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21884: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":7104,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21876:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7103,"name":"address","nodeType":"ElementaryTypeName","src":"21876:7:22","typeDescriptions":{}}},"id":7106,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21876:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21846:40:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":7111,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"21926:4:22","typeDescriptions":{"typeIdentifier":"t_contract$_EToken_$7681","typeString":"contract EToken"}},{"id":7112,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7002,"src":"21932:5:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7113,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6998,"src":"21939:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EToken_$7681","typeString":"contract EToken"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":7108,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"21890:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":7109,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21898:9:22","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":5858,"src":"21890:17:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}},"id":7110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21908:17:22","memberName":"acceptsWithdrawal","nodeType":"MemberAccess","referencedDeclaration":14382,"src":"21890:35:22","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_contract$_IEToken_$14336_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (contract IEToken,address,uint256) view external returns (bool)"}},"id":7114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21890:56:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"21846:100:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":7117,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7002,"src":"21979:5:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7118,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6998,"src":"21986:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7116,"name":"WithdrawalNotWhitelisted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5913,"src":"21954:24:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256) pure returns (error)"}},"id":7119,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21954:39:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":7097,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"21831:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":7120,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21831:168:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7121,"nodeType":"ExpressionStatement","src":"21831:168:22"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7122,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7000,"src":"22009:6:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7123,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7002,"src":"22019:5:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"22009:15:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7132,"nodeType":"IfStatement","src":"22005:74:22","trueBody":{"id":7131,"nodeType":"Block","src":"22026:53:22","statements":[{"expression":{"arguments":[{"id":7126,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7002,"src":"22050:5:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7127,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7000,"src":"22057:6:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7128,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6998,"src":"22065:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7125,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16612,"src":"22034:15:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":7129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22034:38:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7130,"nodeType":"ExpressionStatement","src":"22034:38:22"}]}},{"expression":{"arguments":[{"id":7134,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7002,"src":"22090:5:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7135,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6998,"src":"22097:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7133,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16478,"src":"22084:5:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":7136,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22084:20:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7137,"nodeType":"ExpressionStatement","src":"22084:20:22"},{"expression":{"arguments":[{"id":7139,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7004,"src":"22122:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7140,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6998,"src":"22132:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7138,"name":"_transferTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13003,"src":"22110:11:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":7141,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22110:29:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7142,"nodeType":"ExpressionStatement","src":"22110:29:22"},{"expression":{"id":7143,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6998,"src":"22152:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7011,"id":7144,"nodeType":"Return","src":"22145:13:22"}]},"functionSelector":"23e103a8","id":7146,"implemented":true,"kind":"function","modifiers":[{"id":7008,"kind":"modifierInvocation","modifierName":{"id":7007,"name":"onlyPolicyPool","nameLocations":["20619:14:22"],"nodeType":"IdentifierPath","referencedDeclaration":10981,"src":"20619:14:22"},"nodeType":"ModifierInvocation","src":"20619:14:22"}],"name":"withdraw","nameLocation":"20507:8:22","nodeType":"FunctionDefinition","overrides":{"id":7006,"nodeType":"OverrideSpecifier","overrides":[],"src":"20610:8:22"},"parameters":{"id":7005,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6998,"mutability":"mutable","name":"amount","nameLocation":"20529:6:22","nodeType":"VariableDeclaration","scope":7146,"src":"20521:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6997,"name":"uint256","nodeType":"ElementaryTypeName","src":"20521:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7000,"mutability":"mutable","name":"caller","nameLocation":"20549:6:22","nodeType":"VariableDeclaration","scope":7146,"src":"20541:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6999,"name":"address","nodeType":"ElementaryTypeName","src":"20541:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7002,"mutability":"mutable","name":"owner","nameLocation":"20569:5:22","nodeType":"VariableDeclaration","scope":7146,"src":"20561:13:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7001,"name":"address","nodeType":"ElementaryTypeName","src":"20561:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7004,"mutability":"mutable","name":"receiver","nameLocation":"20588:8:22","nodeType":"VariableDeclaration","scope":7146,"src":"20580:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7003,"name":"address","nodeType":"ElementaryTypeName","src":"20580:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"20515:85:22"},"returnParameters":{"id":7011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7010,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7146,"src":"20643:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7009,"name":"uint256","nodeType":"ElementaryTypeName","src":"20643:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20642:9:22"},"scope":7681,"src":"20498:1665:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14329],"body":{"id":7170,"nodeType":"Block","src":"22223:131:22","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":7153,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"22235:10:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":7154,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22235:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7155,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7148,"src":"22249:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7152,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16478,"src":"22229:5:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":7156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22229:27:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7157,"nodeType":"ExpressionStatement","src":"22229:27:22"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":7159,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7148,"src":"22278:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22285:8:22","memberName":"toInt256","nodeType":"MemberAccess","referencedDeclaration":36941,"src":"22278:15:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_int256_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (int256)"}},"id":7161,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22278:17:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7158,"name":"_discreteChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6891,"src":"22262:15:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":7162,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22262:34:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7163,"nodeType":"ExpressionStatement","src":"22262:34:22"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":7165,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"22328:10:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":7166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22328:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7167,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7148,"src":"22342:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7164,"name":"ETokensRedistributed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6023,"src":"22307:20:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":7168,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22307:42:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7169,"nodeType":"EmitStatement","src":"22302:47:22"}]},"functionSelector":"a0ce552d","id":7171,"implemented":true,"kind":"function","modifiers":[],"name":"redistribute","nameLocation":"22176:12:22","nodeType":"FunctionDefinition","overrides":{"id":7150,"nodeType":"OverrideSpecifier","overrides":[],"src":"22214:8:22"},"parameters":{"id":7149,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7148,"mutability":"mutable","name":"amount","nameLocation":"22197:6:22","nodeType":"VariableDeclaration","scope":7171,"src":"22189:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7147,"name":"uint256","nodeType":"ElementaryTypeName","src":"22189:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"22188:16:22"},"returnParameters":{"id":7151,"nodeType":"ParameterList","parameters":[],"src":"22223:0:22"},"scope":7681,"src":"22167:187:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14271],"body":{"id":7219,"nodeType":"Block","src":"22430:252:22","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7180,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7173,"src":"22444:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":7183,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22464: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":7182,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22456:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7181,"name":"address","nodeType":"ElementaryTypeName","src":"22456:7:22","typeDescriptions":{}}},"id":7184,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22456:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"22444:22:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":7187,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7173,"src":"22484:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7186,"name":"InvalidBorrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5932,"src":"22468:15:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":7188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22468:25:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":7179,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"22436:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":7189,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22436:58:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7190,"nodeType":"ExpressionStatement","src":"22436:58:22"},{"assignments":[7195],"declarations":[{"constant":false,"id":7195,"mutability":"mutable","name":"loan","nameLocation":"22528:4:22","nodeType":"VariableDeclaration","scope":7219,"src":"22500:32:22","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":7194,"nodeType":"UserDefinedTypeName","pathNode":{"id":7193,"name":"ETKLib.ScaledAmount","nameLocations":["22500:6:22","22507:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"22500:19:22"},"referencedDeclaration":4819,"src":"22500:19:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"}],"id":7199,"initialValue":{"baseExpression":{"id":7196,"name":"_loans","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5854,"src":"22535:6:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$4819_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount storage ref)"}},"id":7198,"indexExpression":{"id":7197,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7173,"src":"22542:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22535:16:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"nodeType":"VariableDeclarationStatement","src":"22500:51:22"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":7204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7201,"name":"loan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7195,"src":"22565:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":7202,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22570:10:22","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":4818,"src":"22565:15:22","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":7203,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22584:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"22565:20:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":7206,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7173,"src":"22608:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7205,"name":"BorrowerAlreadyAdded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5937,"src":"22587:20:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":7207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22587:30:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":7200,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"22557:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":7208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22557:61:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7209,"nodeType":"ExpressionStatement","src":"22557:61:22"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":7210,"name":"loan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7195,"src":"22624:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":7212,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22629:4:22","memberName":"init","nodeType":"MemberAccess","referencedDeclaration":5215,"src":"22624:9:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_ScaledAmount_$4819_storage_ptr_$returns$__$attached_to$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer)"}},"id":7213,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22624:11:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7214,"nodeType":"ExpressionStatement","src":"22624:11:22"},{"eventCall":{"arguments":[{"id":7216,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7173,"src":"22668:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7215,"name":"InternalBorrowerAdded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5983,"src":"22646:21:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":7217,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22646:31:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7218,"nodeType":"EmitStatement","src":"22641:36:22"}]},"functionSelector":"e3a8e29c","id":7220,"implemented":true,"kind":"function","modifiers":[{"id":7177,"kind":"modifierInvocation","modifierName":{"id":7176,"name":"onlyPolicyPool","nameLocations":["22415:14:22"],"nodeType":"IdentifierPath","referencedDeclaration":10981,"src":"22415:14:22"},"nodeType":"ModifierInvocation","src":"22415:14:22"}],"name":"addBorrower","nameLocation":"22367:11:22","nodeType":"FunctionDefinition","overrides":{"id":7175,"nodeType":"OverrideSpecifier","overrides":[],"src":"22406:8:22"},"parameters":{"id":7174,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7173,"mutability":"mutable","name":"borrower","nameLocation":"22387:8:22","nodeType":"VariableDeclaration","scope":7220,"src":"22379:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7172,"name":"address","nodeType":"ElementaryTypeName","src":"22379:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"22378:18:22"},"returnParameters":{"id":7178,"nodeType":"ParameterList","parameters":[],"src":"22430:0:22"},"scope":7681,"src":"22358:324:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14277],"body":{"id":7256,"nodeType":"Block","src":"22761:204:22","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7229,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7222,"src":"22775:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":7232,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22795: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":7231,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22787:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7230,"name":"address","nodeType":"ElementaryTypeName","src":"22787:7:22","typeDescriptions":{}}},"id":7233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22787:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"22775:22:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":7236,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7222,"src":"22815:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7235,"name":"InvalidBorrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5932,"src":"22799:15:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":7237,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22799:25:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":7228,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"22767:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":7238,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22767:58:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7239,"nodeType":"ExpressionStatement","src":"22767:58:22"},{"assignments":[7241],"declarations":[{"constant":false,"id":7241,"mutability":"mutable","name":"defaultedDebt","nameLocation":"22839:13:22","nodeType":"VariableDeclaration","scope":7256,"src":"22831:21:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7240,"name":"uint256","nodeType":"ElementaryTypeName","src":"22831:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7245,"initialValue":{"arguments":[{"id":7243,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7222,"src":"22863:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7242,"name":"getLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7449,"src":"22855:7:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":7244,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22855:17:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"22831:41:22"},{"expression":{"id":7249,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"22878:23:22","subExpression":{"baseExpression":{"id":7246,"name":"_loans","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5854,"src":"22885:6:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$4819_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount storage ref)"}},"id":7248,"indexExpression":{"id":7247,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7222,"src":"22892:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"22885:16:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7250,"nodeType":"ExpressionStatement","src":"22878:23:22"},{"eventCall":{"arguments":[{"id":7252,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7222,"src":"22936:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7253,"name":"defaultedDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7241,"src":"22946:13:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7251,"name":"InternalBorrowerRemoved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5990,"src":"22912:23:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":7254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22912:48:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7255,"nodeType":"EmitStatement","src":"22907:53:22"}]},"functionSelector":"76c7fc55","id":7257,"implemented":true,"kind":"function","modifiers":[{"id":7226,"kind":"modifierInvocation","modifierName":{"id":7225,"name":"onlyPolicyPool","nameLocations":["22746:14:22"],"nodeType":"IdentifierPath","referencedDeclaration":10981,"src":"22746:14:22"},"nodeType":"ModifierInvocation","src":"22746:14:22"}],"name":"removeBorrower","nameLocation":"22695:14:22","nodeType":"FunctionDefinition","overrides":{"id":7224,"nodeType":"OverrideSpecifier","overrides":[],"src":"22737:8:22"},"parameters":{"id":7223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7222,"mutability":"mutable","name":"borrower","nameLocation":"22718:8:22","nodeType":"VariableDeclaration","scope":7257,"src":"22710:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7221,"name":"address","nodeType":"ElementaryTypeName","src":"22710:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"22709:18:22"},"returnParameters":{"id":7227,"nodeType":"ParameterList","parameters":[],"src":"22761:0:22"},"scope":7681,"src":"22686:279:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":7270,"nodeType":"Block","src":"23270:89:22","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7268,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":7263,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[6214],"referencedDeclaration":6214,"src":"23283:11:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":7264,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23283:13:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":7265,"name":"_tsScaled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"23299:9:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":7266,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23309:8:22","memberName":"minValue","nodeType":"MemberAccess","referencedDeclaration":5528,"src":"23299:18:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$returns$_t_uint256_$attached_to$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer) view returns (uint256)"}},"id":7267,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23299:20:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23283:36:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7262,"id":7269,"nodeType":"Return","src":"23276:43:22"}]},"documentation":{"id":7258,"nodeType":"StructuredDocumentation","src":"22969:235:22","text":" @dev Returns the maximum negative adjustment (discrete loss) the eToken can accept without breaking consistency.\n      The limit comes from limits in the internal scale that takes scaledTotalSupply() to totalSupply()"},"functionSelector":"16db000f","id":7271,"implemented":true,"kind":"function","modifiers":[],"name":"maxNegativeAdjustment","nameLocation":"23216:21:22","nodeType":"FunctionDefinition","parameters":{"id":7259,"nodeType":"ParameterList","parameters":[],"src":"23237:2:22"},"returnParameters":{"id":7262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7261,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7271,"src":"23261:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7260,"name":"uint256","nodeType":"ElementaryTypeName","src":"23261:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23260:9:22"},"scope":7681,"src":"23207:152:22","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[14287],"body":{"id":7342,"nodeType":"Block","src":"23468:393:22","statements":[{"assignments":[7284],"declarations":[{"constant":false,"id":7284,"mutability":"mutable","name":"amountAsked","nameLocation":"23482:11:22","nodeType":"VariableDeclaration","scope":7342,"src":"23474:19:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7283,"name":"uint256","nodeType":"ElementaryTypeName","src":"23474:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7286,"initialValue":{"id":7285,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7273,"src":"23496:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23474:28:22"},{"expression":{"id":7294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7287,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7273,"src":"23508:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7290,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7273,"src":"23526:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":7291,"name":"maxNegativeAdjustment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7271,"src":"23534:21:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":7292,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23534:23:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":7288,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"23517:4:22","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":7289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23522:3:22","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":33872,"src":"23517:8:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":7293,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23517:41:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23508:50:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7295,"nodeType":"ExpressionStatement","src":"23508:50:22"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7296,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7273,"src":"23568:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":7297,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23578:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23568:11:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7301,"nodeType":"IfStatement","src":"23564:35:22","trueBody":{"expression":{"id":7299,"name":"amountAsked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7284,"src":"23588:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7282,"id":7300,"nodeType":"Return","src":"23581:18:22"}},{"expression":{"id":7316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"baseExpression":{"id":7302,"name":"_loans","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5854,"src":"23606:6:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$4819_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount storage ref)"}},"id":7305,"indexExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":7303,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"23613:10:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":7304,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23613:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"23606:20:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},null],"id":7306,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"23605:24:22","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$4819_storage_$__$","typeString":"tuple(struct ETKLib.ScaledAmount storage ref,)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7312,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7273,"src":"23657:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":7313,"name":"internalLoanInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7461,"src":"23665:24:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":7314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23665:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"baseExpression":{"id":7307,"name":"_loans","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5854,"src":"23632:6:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$4819_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount storage ref)"}},"id":7310,"indexExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":7308,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"23639:10:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":7309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23639:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23632:20:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"id":7311,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23653:3:22","memberName":"add","nodeType":"MemberAccess","referencedDeclaration":5370,"src":"23632:24:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_uint256_$_t_uint256_$returns$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$attached_to$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256,uint256) view returns (struct ETKLib.ScaledAmount memory,uint256)"}},"id":7315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23632:60:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"src":"23605:87:22","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7317,"nodeType":"ExpressionStatement","src":"23605:87:22"},{"expression":{"arguments":[{"id":7323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"23714:15:22","subExpression":{"arguments":[{"id":7321,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7273,"src":"23722:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7320,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23715:6:22","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":7319,"name":"int256","nodeType":"ElementaryTypeName","src":"23715:6:22","typeDescriptions":{}}},"id":7322,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23715:14:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7318,"name":"_discreteChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6891,"src":"23698:15:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":7324,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23698:32:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7325,"nodeType":"ExpressionStatement","src":"23698:32:22"},{"expression":{"arguments":[{"id":7327,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7275,"src":"23748:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7328,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7273,"src":"23758:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7326,"name":"_transferTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13003,"src":"23736:11:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":7329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23736:29:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7330,"nodeType":"ExpressionStatement","src":"23736:29:22"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":7332,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"23789:10:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":7333,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23789:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7334,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7273,"src":"23803:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7335,"name":"amountAsked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7284,"src":"23811:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7331,"name":"InternalLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5971,"src":"23776:12:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256)"}},"id":7336,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23776:47:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7337,"nodeType":"EmitStatement","src":"23771:52:22"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7338,"name":"amountAsked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7284,"src":"23836:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":7339,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7273,"src":"23850:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23836:20:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7282,"id":7341,"nodeType":"Return","src":"23829:27:22"}]},"functionSelector":"c3df9dac","id":7343,"implemented":true,"kind":"function","modifiers":[{"id":7279,"kind":"modifierInvocation","modifierName":{"id":7278,"name":"onlyBorrower","nameLocations":["23437:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":6051,"src":"23437:12:22"},"nodeType":"ModifierInvocation","src":"23437:12:22"}],"name":"internalLoan","nameLocation":"23372:12:22","nodeType":"FunctionDefinition","overrides":{"id":7277,"nodeType":"OverrideSpecifier","overrides":[],"src":"23428:8:22"},"parameters":{"id":7276,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7273,"mutability":"mutable","name":"amount","nameLocation":"23393:6:22","nodeType":"VariableDeclaration","scope":7343,"src":"23385:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7272,"name":"uint256","nodeType":"ElementaryTypeName","src":"23385:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7275,"mutability":"mutable","name":"receiver","nameLocation":"23409:8:22","nodeType":"VariableDeclaration","scope":7343,"src":"23401:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7274,"name":"address","nodeType":"ElementaryTypeName","src":"23401:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"23384:34:22"},"returnParameters":{"id":7282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7281,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7343,"src":"23459:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7280,"name":"uint256","nodeType":"ElementaryTypeName","src":"23459:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23458:9:22"},"scope":7681,"src":"23363:498:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14295],"body":{"id":7406,"nodeType":"Block","src":"23938:466:22","statements":[{"assignments":[7355],"declarations":[{"constant":false,"id":7355,"mutability":"mutable","name":"loan","nameLocation":"24028:4:22","nodeType":"VariableDeclaration","scope":7406,"src":"24000:32:22","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":7354,"nodeType":"UserDefinedTypeName","pathNode":{"id":7353,"name":"ETKLib.ScaledAmount","nameLocations":["24000:6:22","24007:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"24000:19:22"},"referencedDeclaration":4819,"src":"24000:19:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"}],"id":7359,"initialValue":{"baseExpression":{"id":7356,"name":"_loans","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5854,"src":"24035:6:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$4819_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount storage ref)"}},"id":7358,"indexExpression":{"id":7357,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7347,"src":"24042:10:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"24035:18:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"nodeType":"VariableDeclarationStatement","src":"24000:53:22"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":7364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7361,"name":"loan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7355,"src":"24067:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":7362,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24072:10:22","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":4818,"src":"24067:15:22","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":7363,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24086:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24067:20:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":7366,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7347,"src":"24105:10:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7365,"name":"InvalidBorrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5932,"src":"24089:15:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":7367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24089:27:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":7360,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"24059:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":7368,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24059:58:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7369,"nodeType":"ExpressionStatement","src":"24059:58:22"},{"expression":{"id":7380,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"baseExpression":{"id":7370,"name":"_loans","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5854,"src":"24124:6:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$4819_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount storage ref)"}},"id":7372,"indexExpression":{"id":7371,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7347,"src":"24131:10:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"24124:18:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},null],"id":7373,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"24123:22:22","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$4819_storage_$__$","typeString":"tuple(struct ETKLib.ScaledAmount storage ref,)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7376,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7345,"src":"24157:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":7377,"name":"internalLoanInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7461,"src":"24165:24:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":7378,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24165:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":7374,"name":"loan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7355,"src":"24148:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":7375,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24153:3:22","memberName":"sub","nodeType":"MemberAccess","referencedDeclaration":5396,"src":"24148:8:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_uint256_$_t_uint256_$returns$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$attached_to$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256,uint256) view returns (struct ETKLib.ScaledAmount memory,uint256)"}},"id":7379,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24148:44:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_ScaledAmount_$4819_memory_ptr_$_t_uint256_$","typeString":"tuple(struct ETKLib.ScaledAmount memory,uint256)"}},"src":"24123:69:22","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7381,"nodeType":"ExpressionStatement","src":"24123:69:22"},{"expression":{"arguments":[{"arguments":[{"id":7385,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7345,"src":"24221:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7384,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24214:6:22","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":7383,"name":"int256","nodeType":"ElementaryTypeName","src":"24214:6:22","typeDescriptions":{}}},"id":7386,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24214:14:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7382,"name":"_discreteChange","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6891,"src":"24198:15:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":7387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24198:31:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7388,"nodeType":"ExpressionStatement","src":"24198:31:22"},{"eventCall":{"arguments":[{"id":7390,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7347,"src":"24259:10:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7391,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7345,"src":"24271:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7389,"name":"InternalLoanRepaid","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5978,"src":"24240:18:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":7392,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24240:38:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7393,"nodeType":"EmitStatement","src":"24235:43:22"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":7397,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"24363:10:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":7398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24363:12:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":7401,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"24385:4:22","typeDescriptions":{"typeIdentifier":"t_contract$_EToken_$7681","typeString":"contract EToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EToken_$7681","typeString":"contract EToken"}],"id":7400,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24377:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7399,"name":"address","nodeType":"ElementaryTypeName","src":"24377:7:22","typeDescriptions":{}}},"id":7402,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24377:13:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7403,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7345,"src":"24392:6:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":7394,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11088,"src":"24335:8:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$24925_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":7395,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24335:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":7396,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24346:16:22","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":25041,"src":"24335:27:22","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$24193_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":7404,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24335:64:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7405,"nodeType":"ExpressionStatement","src":"24335:64:22"}]},"functionSelector":"918344d3","id":7407,"implemented":true,"kind":"function","modifiers":[],"name":"repayLoan","nameLocation":"23874:9:22","nodeType":"FunctionDefinition","overrides":{"id":7349,"nodeType":"OverrideSpecifier","overrides":[],"src":"23929:8:22"},"parameters":{"id":7348,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7345,"mutability":"mutable","name":"amount","nameLocation":"23892:6:22","nodeType":"VariableDeclaration","scope":7407,"src":"23884:14:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7344,"name":"uint256","nodeType":"ElementaryTypeName","src":"23884:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7347,"mutability":"mutable","name":"onBehalfOf","nameLocation":"23908:10:22","nodeType":"VariableDeclaration","scope":7407,"src":"23900:18:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7346,"name":"address","nodeType":"ElementaryTypeName","src":"23900:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"23883:36:22"},"returnParameters":{"id":7350,"nodeType":"ParameterList","parameters":[],"src":"23938:0:22"},"scope":7681,"src":"23865:539:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14303],"body":{"id":7448,"nodeType":"Block","src":"24516:218:22","statements":[{"assignments":[7420],"declarations":[{"constant":false,"id":7420,"mutability":"mutable","name":"loan","nameLocation":"24550:4:22","nodeType":"VariableDeclaration","scope":7448,"src":"24522:32:22","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"},"typeName":{"id":7419,"nodeType":"UserDefinedTypeName","pathNode":{"id":7418,"name":"ETKLib.ScaledAmount","nameLocations":["24522:6:22","24529:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":4819,"src":"24522:19:22"},"referencedDeclaration":4819,"src":"24522:19:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount"}},"visibility":"internal"}],"id":7424,"initialValue":{"baseExpression":{"id":7421,"name":"_loans","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5854,"src":"24557:6:22","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_ScaledAmount_$4819_storage_$","typeString":"mapping(address => struct ETKLib.ScaledAmount storage ref)"}},"id":7423,"indexExpression":{"id":7422,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7410,"src":"24564:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"24557:16:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage","typeString":"struct ETKLib.ScaledAmount storage ref"}},"nodeType":"VariableDeclarationStatement","src":"24522:51:22"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":7429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7426,"name":"loan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7420,"src":"24587:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":7427,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24592:10:22","memberName":"lastUpdate","nodeType":"MemberAccess","referencedDeclaration":4818,"src":"24587:15:22","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":7428,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24606:1:22","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24587:20:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":7431,"name":"borrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7410,"src":"24625:8:22","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7430,"name":"InvalidBorrower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5932,"src":"24609:15:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":7432,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24609:25:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":7425,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"24579:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":7433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24579:56:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7434,"nodeType":"ExpressionStatement","src":"24579:56:22"},{"expression":{"arguments":[{"arguments":[{"expression":{"id":7443,"name":"loan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7420,"src":"24716:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":7444,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24721:6:22","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":4813,"src":"24716:11:22","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":7442,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24708:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":7441,"name":"uint256","nodeType":"ElementaryTypeName","src":"24708:7:22","typeDescriptions":{}}},"id":7445,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24708:20:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":7437,"name":"internalLoanInterestRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7461,"src":"24666:24:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":7438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24666:26:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":7435,"name":"loan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7420,"src":"24648:4:22","typeDescriptions":{"typeIdentifier":"t_struct$_ScaledAmount_$4819_storage_ptr","typeString":"struct ETKLib.ScaledAmount storage pointer"}},"id":7436,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24653:12:22","memberName":"projectScale","nodeType":"MemberAccess","referencedDeclaration":5141,"src":"24648:17:22","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_ScaledAmount_$4819_storage_ptr_$_t_uint256_$returns$_t_userDefinedValueType$_Scale_$4792_$attached_to$_t_struct$_ScaledAmount_$4819_storage_ptr_$","typeString":"function (struct ETKLib.ScaledAmount storage pointer,uint256) view returns (ETKLib.Scale)"}},"id":7439,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24648:45:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Scale_$4792","typeString":"ETKLib.Scale"}},"id":7440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24694:13:22","memberName":"toCurrentCeil","nodeType":"MemberAccess","referencedDeclaration":4942,"src":"24648:59:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Scale_$4792_$_t_uint256_$returns$_t_uint256_$attached_to$_t_userDefinedValueType$_Scale_$4792_$","typeString":"function (ETKLib.Scale,uint256) pure returns (uint256)"}},"id":7446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24648:81:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7415,"id":7447,"nodeType":"Return","src":"24641:88:22"}]},"documentation":{"id":7408,"nodeType":"StructuredDocumentation","src":"24408:23:22","text":"@inheritdoc IEToken"},"functionSelector":"33481fc9","id":7449,"implemented":true,"kind":"function","modifiers":[],"name":"getLoan","nameLocation":"24443:7:22","nodeType":"FunctionDefinition","overrides":{"id":7412,"nodeType":"OverrideSpecifier","overrides":[],"src":"24489:8:22"},"parameters":{"id":7411,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7410,"mutability":"mutable","name":"borrower","nameLocation":"24459:8:22","nodeType":"VariableDeclaration","scope":7449,"src":"24451:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7409,"name":"address","nodeType":"ElementaryTypeName","src":"24451:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"24450:18:22"},"returnParameters":{"id":7415,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7414,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7449,"src":"24507:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7413,"name":"uint256","nodeType":"ElementaryTypeName","src":"24507:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"24506:9:22"},"scope":7681,"src":"24434:300:22","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":7460,"nodeType":"Block","src":"24927:59:22","statements":[{"expression":{"arguments":[{"expression":{"id":7456,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"24948:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":7457,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24956:24:22","memberName":"internalLoanInterestRate","nodeType":"MemberAccess","referencedDeclaration":5866,"src":"24948:32:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"}],"id":7455,"name":"_4toWad","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6590,"src":"24940:7:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint16_$returns$_t_uint256_$","typeString":"function (uint16) pure returns (uint256)"}},"id":7458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24940:41:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7454,"id":7459,"nodeType":"Return","src":"24933:48:22"}]},"documentation":{"id":7450,"nodeType":"StructuredDocumentation","src":"24738:120:22","text":" @dev Returns the annualized interest rate charged to borrowers (see PremiumsAccount) when they take funds"},"functionSelector":"cda4bcc2","id":7461,"implemented":true,"kind":"function","modifiers":[],"name":"internalLoanInterestRate","nameLocation":"24870:24:22","nodeType":"FunctionDefinition","parameters":{"id":7451,"nodeType":"ParameterList","parameters":[],"src":"24894:2:22"},"returnParameters":{"id":7454,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7453,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7461,"src":"24918:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7452,"name":"uint256","nodeType":"ElementaryTypeName","src":"24918:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"24917:9:22"},"scope":7681,"src":"24861:125:22","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":7565,"nodeType":"Block","src":"25050:1885:22","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"},"id":7472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7469,"name":"param","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7464,"src":"25060:5:22","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":7470,"name":"Parameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14171,"src":"25069:9:22","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Parameter_$14171_$","typeString":"type(enum IEToken.Parameter)"}},"id":7471,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25079:20:22","memberName":"liquidityRequirement","nodeType":"MemberAccess","referencedDeclaration":14167,"src":"25069:30:22","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}},"src":"25060:39:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"},"id":7498,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7495,"name":"param","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7464,"src":"25266:5:22","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":7496,"name":"Parameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14171,"src":"25275:9:22","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Parameter_$14171_$","typeString":"type(enum IEToken.Parameter)"}},"id":7497,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25285:18:22","memberName":"minUtilizationRate","nodeType":"MemberAccess","referencedDeclaration":14168,"src":"25275:28:22","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}},"src":"25266:37:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"},"id":7520,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7517,"name":"param","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7464,"src":"25433:5:22","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":7518,"name":"Parameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14171,"src":"25442:9:22","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Parameter_$14171_$","typeString":"type(enum IEToken.Parameter)"}},"id":7519,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25452:18:22","memberName":"maxUtilizationRate","nodeType":"MemberAccess","referencedDeclaration":14169,"src":"25442:28:22","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}},"src":"25433:37:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7556,"nodeType":"Block","src":"26249:638:22","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7540,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7466,"src":"26767:8:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":7541,"name":"INT_LOAN_IR_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5842,"src":"26779:15:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26767:27:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":7544,"name":"param","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7464,"src":"26813:5:22","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}],"id":7543,"name":"InvalidParameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5890,"src":"26796:16:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_enum$_Parameter_$14171_$returns$_t_error_$","typeString":"function (enum IEToken.Parameter) pure returns (error)"}},"id":7545,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26796:23:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":7539,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"26759:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":7546,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26759:61:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7547,"nodeType":"ExpressionStatement","src":"26759:61:22"},{"expression":{"id":7554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7548,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"26828:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":7550,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"26836:24:22","memberName":"internalLoanInterestRate","nodeType":"MemberAccess","referencedDeclaration":5866,"src":"26828:32:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7552,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7466,"src":"26871:8:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7551,"name":"_wadTo4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6605,"src":"26863:7:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint16_$","typeString":"function (uint256) pure returns (uint16)"}},"id":7553,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26863:17:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"26828:52:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"id":7555,"nodeType":"ExpressionStatement","src":"26828:52:22"}]},"id":7557,"nodeType":"IfStatement","src":"25429:1458:22","trueBody":{"id":7538,"nodeType":"Block","src":"25472:771:22","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7522,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7466,"src":"25488:8:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":7523,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5827,"src":"25500:3:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25488:15:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":7526,"name":"param","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7464,"src":"25522:5:22","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}],"id":7525,"name":"InvalidParameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5890,"src":"25505:16:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_enum$_Parameter_$14171_$returns$_t_error_$","typeString":"function (enum IEToken.Parameter) pure returns (error)"}},"id":7527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25505:23:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":7521,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"25480:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":7528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25480:49:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7529,"nodeType":"ExpressionStatement","src":"25480:49:22"},{"expression":{"id":7536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7530,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"25537:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":7532,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"25545:18:22","memberName":"maxUtilizationRate","nodeType":"MemberAccess","referencedDeclaration":5864,"src":"25537:26:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7534,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7466,"src":"25574:8:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7533,"name":"_wadTo4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6605,"src":"25566:7:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint16_$","typeString":"function (uint256) pure returns (uint16)"}},"id":7535,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25566:17:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"25537:46:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"id":7537,"nodeType":"ExpressionStatement","src":"25537:46:22"}]}},"id":7558,"nodeType":"IfStatement","src":"25262:1625:22","trueBody":{"id":7516,"nodeType":"Block","src":"25305:118:22","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7502,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7500,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7466,"src":"25321:8:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":7501,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5827,"src":"25333:3:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25321:15:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":7504,"name":"param","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7464,"src":"25355:5:22","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}],"id":7503,"name":"InvalidParameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5890,"src":"25338:16:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_enum$_Parameter_$14171_$returns$_t_error_$","typeString":"function (enum IEToken.Parameter) pure returns (error)"}},"id":7505,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25338:23:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":7499,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"25313:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":7506,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25313:49:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7507,"nodeType":"ExpressionStatement","src":"25313:49:22"},{"expression":{"id":7514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7508,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"25370:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":7510,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"25378:18:22","memberName":"minUtilizationRate","nodeType":"MemberAccess","referencedDeclaration":5862,"src":"25370:26:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7512,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7466,"src":"25407:8:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7511,"name":"_wadTo4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6605,"src":"25399:7:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint16_$","typeString":"function (uint256) pure returns (uint16)"}},"id":7513,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25399:17:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"25370:46:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"id":7515,"nodeType":"ExpressionStatement","src":"25370:46:22"}]}},"id":7559,"nodeType":"IfStatement","src":"25056:1831:22","trueBody":{"id":7494,"nodeType":"Block","src":"25101:155:22","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7480,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7474,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7466,"src":"25117:8:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":7475,"name":"LIQ_REQ_MIN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5836,"src":"25129:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25117:23:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7477,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7466,"src":"25144:8:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":7478,"name":"LIQ_REQ_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5839,"src":"25156:11:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25144:23:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25117:50:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":7482,"name":"param","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7464,"src":"25186:5:22","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}],"id":7481,"name":"InvalidParameter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5890,"src":"25169:16:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_enum$_Parameter_$14171_$returns$_t_error_$","typeString":"function (enum IEToken.Parameter) pure returns (error)"}},"id":7483,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25169:23:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":7473,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"25109:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":7484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25109:84:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7485,"nodeType":"ExpressionStatement","src":"25109:84:22"},{"expression":{"id":7492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7486,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"25201:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":7488,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"25209:20:22","memberName":"liquidityRequirement","nodeType":"MemberAccess","referencedDeclaration":5860,"src":"25201:28:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7490,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7466,"src":"25240:8:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7489,"name":"_wadTo4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6605,"src":"25232:7:22","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint16_$","typeString":"function (uint256) pure returns (uint16)"}},"id":7491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25232:17:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"25201:48:22","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"id":7493,"nodeType":"ExpressionStatement","src":"25201:48:22"}]}},{"eventCall":{"arguments":[{"id":7561,"name":"param","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7464,"src":"26914:5:22","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}},{"id":7562,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7466,"src":"26921:8:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7560,"name":"ParameterChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5998,"src":"26897:16:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_enum$_Parameter_$14171_$_t_uint256_$returns$__$","typeString":"function (enum IEToken.Parameter,uint256)"}},"id":7563,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26897:33:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7564,"nodeType":"EmitStatement","src":"26892:38:22"}]},"functionSelector":"c1cca2b3","id":7566,"implemented":true,"kind":"function","modifiers":[],"name":"setParam","nameLocation":"24999:8:22","nodeType":"FunctionDefinition","parameters":{"id":7467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7464,"mutability":"mutable","name":"param","nameLocation":"25018:5:22","nodeType":"VariableDeclaration","scope":7566,"src":"25008:15:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"},"typeName":{"id":7463,"nodeType":"UserDefinedTypeName","pathNode":{"id":7462,"name":"Parameter","nameLocations":["25008:9:22"],"nodeType":"IdentifierPath","referencedDeclaration":14171,"src":"25008:9:22"},"referencedDeclaration":14171,"src":"25008:9:22","typeDescriptions":{"typeIdentifier":"t_enum$_Parameter_$14171","typeString":"enum IEToken.Parameter"}},"visibility":"internal"},{"constant":false,"id":7466,"mutability":"mutable","name":"newValue","nameLocation":"25033:8:22","nodeType":"VariableDeclaration","scope":7566,"src":"25025:16:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7465,"name":"uint256","nodeType":"ElementaryTypeName","src":"25025:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25007:35:22"},"returnParameters":{"id":7468,"nodeType":"ParameterList","parameters":[],"src":"25050:0:22"},"scope":7681,"src":"24990:1945:22","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":7610,"nodeType":"Block","src":"26997:278:22","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7575,"name":"lpWhitelist_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7569,"src":"27026:12:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}],"id":7574,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27018:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7573,"name":"address","nodeType":"ElementaryTypeName","src":"27018:7:22","typeDescriptions":{}}},"id":7576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27018:21:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27051: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":7578,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27043:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7577,"name":"address","nodeType":"ElementaryTypeName","src":"27043:7:22","typeDescriptions":{}}},"id":7580,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27043:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27018:35:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"},"id":7591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"id":7585,"name":"lpWhitelist_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7569,"src":"27086:12:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}],"id":7584,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27078:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7583,"name":"address","nodeType":"ElementaryTypeName","src":"27078:7:22","typeDescriptions":{}}},"id":7586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27078:21:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7582,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14655,"src":"27057:20:22","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$14655_$","typeString":"type(contract IPolicyPoolComponent)"}},"id":7587,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27057:43:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"id":7588,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27101:10:22","memberName":"policyPool","nodeType":"MemberAccess","referencedDeclaration":14654,"src":"27057:54:22","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPolicyPool_$14638_$","typeString":"function () view external returns (contract IPolicyPool)"}},"id":7589,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27057:56:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7590,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10959,"src":"27117:11:22","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"src":"27057:71:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"27018:110:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":7594,"name":"lpWhitelist_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7569,"src":"27153:12:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}],"id":7593,"name":"InvalidWhitelist","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5943,"src":"27136:16:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_ILPWhitelist_$14383_$returns$_t_error_$","typeString":"function (contract ILPWhitelist) pure returns (error)"}},"id":7595,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27136:30:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":7572,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"27003:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":7596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27003:169:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7597,"nodeType":"ExpressionStatement","src":"27003:169:22"},{"eventCall":{"arguments":[{"expression":{"id":7599,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"27200:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":7600,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27208:9:22","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":5858,"src":"27200:17:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}},{"id":7601,"name":"lpWhitelist_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7569,"src":"27219:12:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"},{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}],"id":7598,"name":"WhitelistChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6007,"src":"27183:16:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_ILPWhitelist_$14383_$_t_contract$_ILPWhitelist_$14383_$returns$__$","typeString":"function (contract ILPWhitelist,contract ILPWhitelist)"}},"id":7602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27183:49:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7603,"nodeType":"EmitStatement","src":"27178:54:22"},{"expression":{"id":7608,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7604,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"27238:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":7606,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"27246:9:22","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":5858,"src":"27238:17:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7607,"name":"lpWhitelist_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7569,"src":"27258:12:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}},"src":"27238:32:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}},"id":7609,"nodeType":"ExpressionStatement","src":"27238:32:22"}]},"functionSelector":"854cff2f","id":7611,"implemented":true,"kind":"function","modifiers":[],"name":"setWhitelist","nameLocation":"26948:12:22","nodeType":"FunctionDefinition","parameters":{"id":7570,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7569,"mutability":"mutable","name":"lpWhitelist_","nameLocation":"26974:12:22","nodeType":"VariableDeclaration","scope":7611,"src":"26961:25:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"},"typeName":{"id":7568,"nodeType":"UserDefinedTypeName","pathNode":{"id":7567,"name":"ILPWhitelist","nameLocations":["26961:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":14383,"src":"26961:12:22"},"referencedDeclaration":14383,"src":"26961:12:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}},"visibility":"internal"}],"src":"26960:27:22"},"returnParameters":{"id":7571,"nodeType":"ParameterList","parameters":[],"src":"26997:0:22"},"scope":7681,"src":"26939:336:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":7620,"nodeType":"Block","src":"27337:35:22","statements":[{"expression":{"expression":{"id":7617,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5871,"src":"27350:7:22","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$5867_storage","typeString":"struct EToken.PackedParams storage ref"}},"id":7618,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27358:9:22","memberName":"whitelist","nodeType":"MemberAccess","referencedDeclaration":5858,"src":"27350:17:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}},"functionReturnParameters":7616,"id":7619,"nodeType":"Return","src":"27343:24:22"}]},"functionSelector":"93e59dc1","id":7621,"implemented":true,"kind":"function","modifiers":[],"name":"whitelist","nameLocation":"27288:9:22","nodeType":"FunctionDefinition","parameters":{"id":7612,"nodeType":"ParameterList","parameters":[],"src":"27297:2:22"},"returnParameters":{"id":7616,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7615,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7621,"src":"27323:12:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"},"typeName":{"id":7614,"nodeType":"UserDefinedTypeName","pathNode":{"id":7613,"name":"ILPWhitelist","nameLocations":["27323:12:22"],"nodeType":"IdentifierPath","referencedDeclaration":14383,"src":"27323:12:22"},"referencedDeclaration":14383,"src":"27323:12:22","typeDescriptions":{"typeIdentifier":"t_contract$_ILPWhitelist_$14383","typeString":"contract ILPWhitelist"}},"visibility":"internal"}],"src":"27322:14:22"},"scope":7681,"src":"27279:93:22","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":7662,"nodeType":"Block","src":"27423:237:22","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7647,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7636,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7630,"name":"newCooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7624,"src":"27452:9:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}],"id":7629,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27444:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7628,"name":"address","nodeType":"ElementaryTypeName","src":"27444:7:22","typeDescriptions":{}}},"id":7631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27444:18:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7634,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27474: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":7633,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27466:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7632,"name":"address","nodeType":"ElementaryTypeName","src":"27466:7:22","typeDescriptions":{}}},"id":7635,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27466:10:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27444:32:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"},"id":7646,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"id":7640,"name":"newCooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7624,"src":"27509:9:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}],"id":7639,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27501:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7638,"name":"address","nodeType":"ElementaryTypeName","src":"27501:7:22","typeDescriptions":{}}},"id":7641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27501:18:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7637,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14655,"src":"27480:20:22","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$14655_$","typeString":"type(contract IPolicyPoolComponent)"}},"id":7642,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27480:40:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"id":7643,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27521:10:22","memberName":"policyPool","nodeType":"MemberAccess","referencedDeclaration":14654,"src":"27480:51:22","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPolicyPool_$14638_$","typeString":"function () view external returns (contract IPolicyPool)"}},"id":7644,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27480:53:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7645,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10959,"src":"27537:11:22","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"src":"27480:68:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"27444:104:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":7649,"name":"newCooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7624,"src":"27570:9:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}],"id":7648,"name":"InvalidCooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5949,"src":"27556:13:22","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_ICooler_$14162_$returns$_t_error_$","typeString":"function (contract ICooler) pure returns (error)"}},"id":7650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27556:24:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":7627,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"27429:7:22","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":7651,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27429:157:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7652,"nodeType":"ExpressionStatement","src":"27429:157:22"},{"eventCall":{"arguments":[{"id":7654,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5879,"src":"27611:7:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}},{"id":7655,"name":"newCooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7624,"src":"27620:9:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"},{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}],"id":7653,"name":"CoolerChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6016,"src":"27597:13:22","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_ICooler_$14162_$_t_contract$_ICooler_$14162_$returns$__$","typeString":"function (contract ICooler,contract ICooler)"}},"id":7656,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27597:33:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7657,"nodeType":"EmitStatement","src":"27592:38:22"},{"expression":{"id":7660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7658,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5879,"src":"27636:7:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7659,"name":"newCooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7624,"src":"27646:9:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}},"src":"27636:19:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}},"id":7661,"nodeType":"ExpressionStatement","src":"27636:19:22"}]},"functionSelector":"d17e6c93","id":7663,"implemented":true,"kind":"function","modifiers":[],"name":"setCooler","nameLocation":"27385:9:22","nodeType":"FunctionDefinition","parameters":{"id":7625,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7624,"mutability":"mutable","name":"newCooler","nameLocation":"27403:9:22","nodeType":"VariableDeclaration","scope":7663,"src":"27395:17:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"},"typeName":{"id":7623,"nodeType":"UserDefinedTypeName","pathNode":{"id":7622,"name":"ICooler","nameLocations":["27395:7:22"],"nodeType":"IdentifierPath","referencedDeclaration":14162,"src":"27395:7:22"},"referencedDeclaration":14162,"src":"27395:7:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}},"visibility":"internal"}],"src":"27394:19:22"},"returnParameters":{"id":7626,"nodeType":"ParameterList","parameters":[],"src":"27423:0:22"},"scope":7681,"src":"27376:284:22","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14335],"body":{"id":7674,"nodeType":"Block","src":"27723:34:22","statements":[{"expression":{"arguments":[{"id":7671,"name":"_cooler","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5879,"src":"27744:7:22","typeDescriptions":{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ICooler_$14162","typeString":"contract ICooler"}],"id":7670,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27736:7:22","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7669,"name":"address","nodeType":"ElementaryTypeName","src":"27736:7:22","typeDescriptions":{}}},"id":7672,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27736:16:22","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":7668,"id":7673,"nodeType":"Return","src":"27729:23:22"}]},"functionSelector":"cf6a9a94","id":7675,"implemented":true,"kind":"function","modifiers":[],"name":"cooler","nameLocation":"27673:6:22","nodeType":"FunctionDefinition","overrides":{"id":7665,"nodeType":"OverrideSpecifier","overrides":[],"src":"27696:8:22"},"parameters":{"id":7664,"nodeType":"ParameterList","parameters":[],"src":"27679:2:22"},"returnParameters":{"id":7668,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7667,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7675,"src":"27714:7:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7666,"name":"address","nodeType":"ElementaryTypeName","src":"27714:7:22","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"27713:9:22"},"scope":7681,"src":"27664:93:22","stateMutability":"view","virtual":false,"visibility":"external"},{"constant":false,"documentation":{"id":7676,"nodeType":"StructuredDocumentation","src":"27761:246:22","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":7680,"mutability":"mutable","name":"__gap","nameLocation":"28030:5:22","nodeType":"VariableDeclaration","scope":7681,"src":"28010:25:22","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$44_storage","typeString":"uint256[44]"},"typeName":{"baseType":{"id":7677,"name":"uint256","nodeType":"ElementaryTypeName","src":"28010:7:22","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7679,"length":{"hexValue":"3434","id":7678,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28018:2:22","typeDescriptions":{"typeIdentifier":"t_rational_44_by_1","typeString":"int_const 44"},"value":"44"},"nodeType":"ArrayTypeName","src":"28010:11:22","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$44_storage_ptr","typeString":"uint256[44]"}},"visibility":"private"}],"scope":7682,"src":"1883:26155:22","usedErrors":[4828,5884,5890,5899,5906,5913,5920,5927,5932,5937,5943,5949,5956,5962,10961,10963,10965,12872,12879,12884,16648,16655,18789,22518,22523,22528,22537,22542,22547,22846,22859,23183,23186,23457,23462,24973,25668,26802,32725,32730,32735,35197,35214],"usedEvents":[5971,5978,5983,5990,5998,6007,6016,6023,6032,12895,12903,12908,14180,14191,22272,22468,23191,24127,24136]}],"src":"39:28000:22"},"id":22},"@ensuro/core/contracts/Policy.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/Policy.sol","exportedSymbols":{"Math":[35187],"Policy":[8314]},"id":8315,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":7683,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:23"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":7685,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8315,"sourceUnit":35188,"src":"64:65:23","symbolAliases":[{"foreign":{"id":7684,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"72:4:23","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Policy","contractDependencies":[],"contractKind":"library","documentation":{"id":7686,"nodeType":"StructuredDocumentation","src":"131:433:23","text":" @title Policy library\n @notice Library for PolicyData struct. This struct represents an active policy, the premium and solvency breakdown\n @dev Tracks how the premium is distributed, the probability of payout, duration and how the capital is locked.\n It is never stored on-chain, but instead we store a hash and we receive the policy on each operation\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":8314,"linearizedBaseContracts":[8314],"name":"Policy","nameLocation":"573:6:23","nodeType":"ContractDefinition","nodes":[{"global":false,"id":7689,"libraryName":{"id":7687,"name":"Math","nameLocations":["590:4:23"],"nodeType":"IdentifierPath","referencedDeclaration":35187,"src":"590:4:23"},"nodeType":"UsingForDirective","src":"584:23:23","typeName":{"id":7688,"name":"uint256","nodeType":"ElementaryTypeName","src":"599:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":true,"id":7692,"mutability":"constant","name":"WAD","nameLocation":"637:3:23","nodeType":"VariableDeclaration","scope":8314,"src":"611:36:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7690,"name":"uint256","nodeType":"ElementaryTypeName","src":"611:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31653138","id":7691,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"643:4:23","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"visibility":"internal"},{"constant":true,"id":7695,"mutability":"constant","name":"SECONDS_PER_YEAR","nameLocation":"677:16:23","nodeType":"VariableDeclaration","scope":8314,"src":"651:53:23","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7693,"name":"uint256","nodeType":"ElementaryTypeName","src":"651:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"333635","id":7694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"696:8:23","subdenomination":"days","typeDescriptions":{"typeIdentifier":"t_rational_31536000_by_1","typeString":"int_const 31536000"},"value":"365"},"visibility":"internal"},{"canonicalName":"Policy.Params","documentation":{"id":7696,"nodeType":"StructuredDocumentation","src":"709:152:23","text":" @notice Struct of the parameters of the risk module that are used to calculate the different Policy fields (see\n {Policy-PolicyData}."},"id":7718,"members":[{"constant":false,"id":7699,"mutability":"mutable","name":"moc","nameLocation":"1041:3:23","nodeType":"VariableDeclaration","scope":7718,"src":"1033:11:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7698,"name":"uint256","nodeType":"ElementaryTypeName","src":"1033:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7702,"mutability":"mutable","name":"jrCollRatio","nameLocation":"1234:11:23","nodeType":"VariableDeclaration","scope":7718,"src":"1226:19:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7701,"name":"uint256","nodeType":"ElementaryTypeName","src":"1226:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7705,"mutability":"mutable","name":"collRatio","nameLocation":"1537:9:23","nodeType":"VariableDeclaration","scope":7718,"src":"1529:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7704,"name":"uint256","nodeType":"ElementaryTypeName","src":"1529:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7708,"mutability":"mutable","name":"ensuroPpFee","nameLocation":"1758:11:23","nodeType":"VariableDeclaration","scope":7718,"src":"1750:19:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7707,"name":"uint256","nodeType":"ElementaryTypeName","src":"1750:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7711,"mutability":"mutable","name":"ensuroCocFee","nameLocation":"1985:12:23","nodeType":"VariableDeclaration","scope":7718,"src":"1977:20:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7710,"name":"uint256","nodeType":"ElementaryTypeName","src":"1977:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7714,"mutability":"mutable","name":"jrRoc","nameLocation":"2163:5:23","nodeType":"VariableDeclaration","scope":7718,"src":"2155:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7713,"name":"uint256","nodeType":"ElementaryTypeName","src":"2155:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7717,"mutability":"mutable","name":"srRoc","nameLocation":"2334:5:23","nodeType":"VariableDeclaration","scope":7718,"src":"2326:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7716,"name":"uint256","nodeType":"ElementaryTypeName","src":"2326:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Params","nameLocation":"871:6:23","nodeType":"StructDefinition","scope":8314,"src":"864:1480:23","visibility":"public"},{"canonicalName":"Policy.PolicyData","documentation":{"id":7719,"nodeType":"StructuredDocumentation","src":"2348:324:23","text":" @notice Struct with all the info of a given policy\n @dev It includes the premium breakdown\n (`premium=purePremium + jrCoc + srCoc + ensuroCommission + partnerCommission`), the solvency breakdown\n (`solvency = purePremium + jrScr + srScr = payout * collRatio`), and the start and end of the policy."},"id":7744,"members":[{"constant":false,"id":7721,"mutability":"mutable","name":"id","nameLocation":"2707:2:23","nodeType":"VariableDeclaration","scope":7744,"src":"2699:10:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7720,"name":"uint256","nodeType":"ElementaryTypeName","src":"2699:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7723,"mutability":"mutable","name":"payout","nameLocation":"2723:6:23","nodeType":"VariableDeclaration","scope":7744,"src":"2715:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7722,"name":"uint256","nodeType":"ElementaryTypeName","src":"2715:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7725,"mutability":"mutable","name":"jrScr","nameLocation":"2743:5:23","nodeType":"VariableDeclaration","scope":7744,"src":"2735:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7724,"name":"uint256","nodeType":"ElementaryTypeName","src":"2735:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7727,"mutability":"mutable","name":"srScr","nameLocation":"2762:5:23","nodeType":"VariableDeclaration","scope":7744,"src":"2754:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7726,"name":"uint256","nodeType":"ElementaryTypeName","src":"2754:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7729,"mutability":"mutable","name":"lossProb","nameLocation":"2781:8:23","nodeType":"VariableDeclaration","scope":7744,"src":"2773:16:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7728,"name":"uint256","nodeType":"ElementaryTypeName","src":"2773:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7731,"mutability":"mutable","name":"purePremium","nameLocation":"2841:11:23","nodeType":"VariableDeclaration","scope":7744,"src":"2833:19:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7730,"name":"uint256","nodeType":"ElementaryTypeName","src":"2833:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7733,"mutability":"mutable","name":"ensuroCommission","nameLocation":"2969:16:23","nodeType":"VariableDeclaration","scope":7744,"src":"2961:24:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7732,"name":"uint256","nodeType":"ElementaryTypeName","src":"2961:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7735,"mutability":"mutable","name":"partnerCommission","nameLocation":"3044:17:23","nodeType":"VariableDeclaration","scope":7744,"src":"3036:25:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7734,"name":"uint256","nodeType":"ElementaryTypeName","src":"3036:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7737,"mutability":"mutable","name":"jrCoc","nameLocation":"3120:5:23","nodeType":"VariableDeclaration","scope":7744,"src":"3112:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7736,"name":"uint256","nodeType":"ElementaryTypeName","src":"3112:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7739,"mutability":"mutable","name":"srCoc","nameLocation":"3216:5:23","nodeType":"VariableDeclaration","scope":7744,"src":"3208:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7738,"name":"uint256","nodeType":"ElementaryTypeName","src":"3208:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7741,"mutability":"mutable","name":"start","nameLocation":"3311:5:23","nodeType":"VariableDeclaration","scope":7744,"src":"3304:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":7740,"name":"uint40","nodeType":"ElementaryTypeName","src":"3304:6:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":7743,"mutability":"mutable","name":"expiration","nameLocation":"3329:10:23","nodeType":"VariableDeclaration","scope":7744,"src":"3322:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":7742,"name":"uint40","nodeType":"ElementaryTypeName","src":"3322:6:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"name":"PolicyData","nameLocation":"2682:10:23","nodeType":"StructDefinition","scope":8314,"src":"2675:669:23","visibility":"public"},{"canonicalName":"Policy.PremiumComposition","documentation":{"id":7745,"nodeType":"StructuredDocumentation","src":"3348:219:23","text":" @notice Struct that contains the breakdown of premium and policy solvency\n @dev Used for internal calculations.\n `totalPremium = purePremium + jrCoc + srCoc + ensuroCommission + partnerCommission`"},"id":7762,"members":[{"constant":false,"id":7747,"mutability":"mutable","name":"purePremium","nameLocation":"3610:11:23","nodeType":"VariableDeclaration","scope":7762,"src":"3602:19:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7746,"name":"uint256","nodeType":"ElementaryTypeName","src":"3602:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7749,"mutability":"mutable","name":"jrScr","nameLocation":"3635:5:23","nodeType":"VariableDeclaration","scope":7762,"src":"3627:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7748,"name":"uint256","nodeType":"ElementaryTypeName","src":"3627:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7751,"mutability":"mutable","name":"srScr","nameLocation":"3654:5:23","nodeType":"VariableDeclaration","scope":7762,"src":"3646:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7750,"name":"uint256","nodeType":"ElementaryTypeName","src":"3646:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7753,"mutability":"mutable","name":"jrCoc","nameLocation":"3673:5:23","nodeType":"VariableDeclaration","scope":7762,"src":"3665:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7752,"name":"uint256","nodeType":"ElementaryTypeName","src":"3665:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7755,"mutability":"mutable","name":"srCoc","nameLocation":"3692:5:23","nodeType":"VariableDeclaration","scope":7762,"src":"3684:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7754,"name":"uint256","nodeType":"ElementaryTypeName","src":"3684:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7757,"mutability":"mutable","name":"ensuroCommission","nameLocation":"3711:16:23","nodeType":"VariableDeclaration","scope":7762,"src":"3703:24:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7756,"name":"uint256","nodeType":"ElementaryTypeName","src":"3703:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7759,"mutability":"mutable","name":"partnerCommission","nameLocation":"3741:17:23","nodeType":"VariableDeclaration","scope":7762,"src":"3733:25:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7758,"name":"uint256","nodeType":"ElementaryTypeName","src":"3733:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7761,"mutability":"mutable","name":"totalPremium","nameLocation":"3772:12:23","nodeType":"VariableDeclaration","scope":7762,"src":"3764:20:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7760,"name":"uint256","nodeType":"ElementaryTypeName","src":"3764:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"PremiumComposition","nameLocation":"3577:18:23","nodeType":"StructDefinition","scope":8314,"src":"3570:219:23","visibility":"public"},{"documentation":{"id":7763,"nodeType":"StructuredDocumentation","src":"3793:248:23","text":" @notice Raised when the received premium is less than the minimum\n @dev The minPremium is the one that results of computing the CoCs, purePremium and ensuroCommission for the given\n parameters, assuming partnerCommission = 0."},"errorSelector":"fc096627","id":7769,"name":"PremiumLessThanMinimum","nameLocation":"4050:22:23","nodeType":"ErrorDefinition","parameters":{"id":7768,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7765,"mutability":"mutable","name":"premium","nameLocation":"4081:7:23","nodeType":"VariableDeclaration","scope":7769,"src":"4073:15:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7764,"name":"uint256","nodeType":"ElementaryTypeName","src":"4073:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7767,"mutability":"mutable","name":"minPremium","nameLocation":"4098:10:23","nodeType":"VariableDeclaration","scope":7769,"src":"4090:18:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7766,"name":"uint256","nodeType":"ElementaryTypeName","src":"4090:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4072:37:23"},"src":"4044:66:23"},{"documentation":{"id":7770,"nodeType":"StructuredDocumentation","src":"4114:95:23","text":"@notice Raised when the premium exceeds the payoutreceived premium is less than the minimum"},"errorSelector":"632611b2","id":7776,"name":"PremiumExceedsPayout","nameLocation":"4218:20:23","nodeType":"ErrorDefinition","parameters":{"id":7775,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7772,"mutability":"mutable","name":"premium","nameLocation":"4247:7:23","nodeType":"VariableDeclaration","scope":7776,"src":"4239:15:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7771,"name":"uint256","nodeType":"ElementaryTypeName","src":"4239:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7774,"mutability":"mutable","name":"payout","nameLocation":"4264:6:23","nodeType":"VariableDeclaration","scope":7776,"src":"4256:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7773,"name":"uint256","nodeType":"ElementaryTypeName","src":"4256:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4238:33:23"},"src":"4212:60:23"},{"documentation":{"id":7777,"nodeType":"StructuredDocumentation","src":"4276:55:23","text":"@notice Raised when the computed hash is bytes32(0)"},"errorSelector":"6ee9f647","id":7782,"name":"ZeroHash","nameLocation":"4340:8:23","nodeType":"ErrorDefinition","parameters":{"id":7781,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7780,"mutability":"mutable","name":"policy","nameLocation":"4360:6:23","nodeType":"VariableDeclaration","scope":7782,"src":"4349:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":7779,"nodeType":"UserDefinedTypeName","pathNode":{"id":7778,"name":"PolicyData","nameLocations":["4349:10:23"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"4349:10:23"},"referencedDeclaration":7744,"src":"4349:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"4348:19:23"},"src":"4334:34:23"},{"body":{"id":7963,"nodeType":"Block","src":"5347:1111:23","statements":[{"expression":{"id":7813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7800,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5353:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7802,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5364:11:23","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7747,"src":"5353:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":7809,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7786,"src":"5414:8:23","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}},"id":7810,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5423:3:23","memberName":"moc","nodeType":"MemberAccess","referencedDeclaration":7699,"src":"5414:12:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7811,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7692,"src":"5428:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":7805,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7790,"src":"5392:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7806,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7692,"src":"5402:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":7803,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7788,"src":"5378:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5385:6:23","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34072,"src":"5378:13:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":7807,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5378:28:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5407:6:23","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34072,"src":"5378:35:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":7812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5378:54:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5353:79:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7814,"nodeType":"ExpressionStatement","src":"5353:79:23"},{"expression":{"id":7824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7815,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5438:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7817,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5449:5:23","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7749,"src":"5438:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":7820,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7786,"src":"5471:8:23","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}},"id":7821,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5480:11:23","memberName":"jrCollRatio","nodeType":"MemberAccess","referencedDeclaration":7702,"src":"5471:20:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7822,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7692,"src":"5493:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":7818,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7788,"src":"5457:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7819,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5464:6:23","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34072,"src":"5457:13:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":7823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5457:40:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5438:59:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7825,"nodeType":"ExpressionStatement","src":"5438:59:23"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7830,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7826,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5507:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7827,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5518:5:23","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7749,"src":"5507:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":7828,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5526:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7829,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5537:11:23","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7747,"src":"5526:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5507:41:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7845,"nodeType":"Block","src":"5613:35:23","statements":[{"expression":{"id":7843,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7839,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5621:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7841,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5632:5:23","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7749,"src":"5621:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":7842,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5640:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5621:20:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7844,"nodeType":"ExpressionStatement","src":"5621:20:23"}]},"id":7846,"nodeType":"IfStatement","src":"5503:145:23","trueBody":{"id":7838,"nodeType":"Block","src":"5550:57:23","statements":[{"expression":{"id":7836,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7831,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5558:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7833,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5569:5:23","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7749,"src":"5558:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"expression":{"id":7834,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5578:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7835,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5589:11:23","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7747,"src":"5578:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5558:42:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7837,"nodeType":"ExpressionStatement","src":"5558:42:23"}]}},{"expression":{"id":7856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7847,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5654:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7849,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5665:5:23","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7751,"src":"5654:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":7852,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7786,"src":"5687:8:23","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}},"id":7853,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5696:9:23","memberName":"collRatio","nodeType":"MemberAccess","referencedDeclaration":7705,"src":"5687:18:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7854,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7692,"src":"5707:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":7850,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7788,"src":"5673:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5680:6:23","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34072,"src":"5673:13:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":7855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5673:38:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5654:57:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7857,"nodeType":"ExpressionStatement","src":"5654:57:23"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7866,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7858,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5721:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7859,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5732:5:23","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7751,"src":"5721:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7860,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5741:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7861,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5752:11:23","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7747,"src":"5741:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":7862,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5766:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7863,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5777:5:23","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7749,"src":"5766:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5741:41:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":7865,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5740:43:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5721:62:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7884,"nodeType":"Block","src":"5867:35:23","statements":[{"expression":{"id":7882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7878,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5875:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7880,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5886:5:23","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7751,"src":"5875:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":7881,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5894:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5875:20:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7883,"nodeType":"ExpressionStatement","src":"5875:20:23"}]},"id":7885,"nodeType":"IfStatement","src":"5717:185:23","trueBody":{"id":7877,"nodeType":"Block","src":"5785:76:23","statements":[{"expression":{"id":7875,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7867,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5793:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7869,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5804:5:23","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7751,"src":"5793:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7870,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5813:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7871,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5824:11:23","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7747,"src":"5813:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":7872,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5838:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7873,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5849:5:23","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7749,"src":"5838:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5813:41:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5793:61:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7876,"nodeType":"ExpressionStatement","src":"5793:61:23"}]}},{"expression":{"id":7903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7886,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5930:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7888,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5941:5:23","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7753,"src":"5930:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7898,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7892,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7786,"src":"5973:8:23","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}},"id":7893,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5982:5:23","memberName":"jrRoc","nodeType":"MemberAccess","referencedDeclaration":7714,"src":"5973:14:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":7896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7894,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7792,"src":"5991:10:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":7895,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7794,"src":"6004:5:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"5991:18:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"id":7897,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5990:20:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"5973:37:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7901,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"id":7899,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7692,"src":"6012:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":7900,"name":"SECONDS_PER_YEAR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7695,"src":"6018:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6012:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":7889,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"5949:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7890,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5960:5:23","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7749,"src":"5949:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5966:6:23","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34072,"src":"5949:23:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":7902,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5949:86:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5930:105:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7904,"nodeType":"ExpressionStatement","src":"5930:105:23"},{"expression":{"id":7922,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7905,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"6041:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7907,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6052:5:23","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7755,"src":"6041:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7911,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7786,"src":"6084:8:23","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}},"id":7912,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6093:5:23","memberName":"srRoc","nodeType":"MemberAccess","referencedDeclaration":7717,"src":"6084:14:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":7915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7913,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7792,"src":"6102:10:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":7914,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7794,"src":"6115:5:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"6102:18:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"id":7916,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6101:20:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"6084:37:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7920,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"id":7918,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7692,"src":"6123:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":7919,"name":"SECONDS_PER_YEAR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7695,"src":"6129:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6123:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":7908,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"6060:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7909,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6071:5:23","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7751,"src":"6060:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7910,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6077:6:23","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34072,"src":"6060:23:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":7921,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6060:86:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6041:105:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7923,"nodeType":"ExpressionStatement","src":"6041:105:23"},{"assignments":[7925],"declarations":[{"constant":false,"id":7925,"mutability":"mutable","name":"totalCoc","nameLocation":"6160:8:23","nodeType":"VariableDeclaration","scope":7963,"src":"6152:16:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7924,"name":"uint256","nodeType":"ElementaryTypeName","src":"6152:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7931,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7926,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"6171:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7927,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6182:5:23","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7753,"src":"6171:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":7928,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"6190:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7929,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6201:5:23","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7755,"src":"6190:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6171:35:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6152:54:23"},{"expression":{"id":7949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7932,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"6213:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7934,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6224:16:23","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":7757,"src":"6213:27:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":7938,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7786,"src":"6279:8:23","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}},"id":7939,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6288:11:23","memberName":"ensuroPpFee","nodeType":"MemberAccess","referencedDeclaration":7708,"src":"6279:20:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7940,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7692,"src":"6301:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":7935,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"6249:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7936,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6260:11:23","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7747,"src":"6249:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6272:6:23","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34072,"src":"6249:29:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":7941,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6249:56:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"expression":{"id":7944,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7786,"src":"6330:8:23","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}},"id":7945,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6339:12:23","memberName":"ensuroCocFee","nodeType":"MemberAccess","referencedDeclaration":7711,"src":"6330:21:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7946,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7692,"src":"6353:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":7942,"name":"totalCoc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7925,"src":"6314:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6323:6:23","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34072,"src":"6314:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":7947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6314:43:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6249:108:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6213:144:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7950,"nodeType":"ExpressionStatement","src":"6213:144:23"},{"expression":{"id":7961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7951,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"6364:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7953,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6375:12:23","memberName":"totalPremium","nodeType":"MemberAccess","referencedDeclaration":7761,"src":"6364:23:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7960,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7954,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"6390:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7955,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6401:11:23","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7747,"src":"6390:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":7956,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7798,"src":"6415:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":7957,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6426:16:23","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":7757,"src":"6415:27:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6390:52:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":7959,"name":"totalCoc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7925,"src":"6445:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6390:63:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6364:89:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7962,"nodeType":"ExpressionStatement","src":"6364:89:23"}]},"documentation":{"id":7783,"nodeType":"StructuredDocumentation","src":"4372:769:23","text":" @notice Computes the minimum premium\n @dev The minPremium is the one that results of computing the CoCs, purePremium and ensuroCommission for the given\n parameters, assuming partnerCommission = 0.\n @param rmParams Struct with the business and quantitative parameters that define the risk (see {Params}).\n @param payout Maximum payout (exposure) of the policy\n @param lossProb Probability of paying the maximum payout (purePremium = rmParams.moc * lossProb * payout)\n @param expiration Timestamp when the policy expires (can't be claimed anymore)\n @param start Timestamp when the policy starts (block.timestamp for new policies)\n @return minPremium PremiumComposition struct with the computed premium and its breakdown"},"id":7964,"implemented":true,"kind":"function","modifiers":[],"name":"getMinimumPremium","nameLocation":"5153:17:23","nodeType":"FunctionDefinition","parameters":{"id":7795,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7786,"mutability":"mutable","name":"rmParams","nameLocation":"5190:8:23","nodeType":"VariableDeclaration","scope":7964,"src":"5176:22:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":7785,"nodeType":"UserDefinedTypeName","pathNode":{"id":7784,"name":"Params","nameLocations":["5176:6:23"],"nodeType":"IdentifierPath","referencedDeclaration":7718,"src":"5176:6:23"},"referencedDeclaration":7718,"src":"5176:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"},{"constant":false,"id":7788,"mutability":"mutable","name":"payout","nameLocation":"5212:6:23","nodeType":"VariableDeclaration","scope":7964,"src":"5204:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7787,"name":"uint256","nodeType":"ElementaryTypeName","src":"5204:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7790,"mutability":"mutable","name":"lossProb","nameLocation":"5232:8:23","nodeType":"VariableDeclaration","scope":7964,"src":"5224:16:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7789,"name":"uint256","nodeType":"ElementaryTypeName","src":"5224:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7792,"mutability":"mutable","name":"expiration","nameLocation":"5253:10:23","nodeType":"VariableDeclaration","scope":7964,"src":"5246:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":7791,"name":"uint40","nodeType":"ElementaryTypeName","src":"5246:6:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":7794,"mutability":"mutable","name":"start","nameLocation":"5276:5:23","nodeType":"VariableDeclaration","scope":7964,"src":"5269:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":7793,"name":"uint40","nodeType":"ElementaryTypeName","src":"5269:6:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"5170:115:23"},"returnParameters":{"id":7799,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7798,"mutability":"mutable","name":"minPremium","nameLocation":"5335:10:23","nodeType":"VariableDeclaration","scope":7964,"src":"5309:36:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition"},"typeName":{"id":7797,"nodeType":"UserDefinedTypeName","pathNode":{"id":7796,"name":"PremiumComposition","nameLocations":["5309:18:23"],"nodeType":"IdentifierPath","referencedDeclaration":7762,"src":"5309:18:23"},"referencedDeclaration":7762,"src":"5309:18:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_storage_ptr","typeString":"struct Policy.PremiumComposition"}},"visibility":"internal"}],"src":"5308:38:23"},"scope":8314,"src":"5144:1314:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8098,"nodeType":"Block","src":"7554:789:23","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7987,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7985,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7970,"src":"7568:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":7986,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7972,"src":"7578:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7568:16:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":7989,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7970,"src":"7607:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7990,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7972,"src":"7616:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7988,"name":"PremiumExceedsPayout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7776,"src":"7586:20:23","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":7991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7586:37:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":7984,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"7560:7:23","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":7992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7560:64:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7993,"nodeType":"ExpressionStatement","src":"7560:64:23"},{"assignments":[7996],"declarations":[{"constant":false,"id":7996,"mutability":"mutable","name":"policy","nameLocation":"7648:6:23","nodeType":"VariableDeclaration","scope":8098,"src":"7630:24:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":7995,"nodeType":"UserDefinedTypeName","pathNode":{"id":7994,"name":"PolicyData","nameLocations":["7630:10:23"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"7630:10:23"},"referencedDeclaration":7744,"src":"7630:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"id":7997,"nodeType":"VariableDeclarationStatement","src":"7630:24:23"},{"expression":{"id":8002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":7998,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7996,"src":"7661:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8000,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7668:6:23","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":7723,"src":"7661:13:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8001,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7972,"src":"7677:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7661:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8003,"nodeType":"ExpressionStatement","src":"7661:22:23"},{"expression":{"id":8008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":8004,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7996,"src":"7689:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8006,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7696:8:23","memberName":"lossProb","nodeType":"MemberAccess","referencedDeclaration":7729,"src":"7689:15:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8007,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7974,"src":"7707:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7689:26:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8009,"nodeType":"ExpressionStatement","src":"7689:26:23"},{"expression":{"id":8014,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":8010,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7996,"src":"7721:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8012,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7728:5:23","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":7741,"src":"7721:12:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8013,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7978,"src":"7736:5:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"7721:20:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"id":8015,"nodeType":"ExpressionStatement","src":"7721:20:23"},{"expression":{"id":8020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":8016,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7996,"src":"7747:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8018,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7754:10:23","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":7743,"src":"7747:17:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8019,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7976,"src":"7767:10:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"7747:30:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"id":8021,"nodeType":"ExpressionStatement","src":"7747:30:23"},{"assignments":[8024],"declarations":[{"constant":false,"id":8024,"mutability":"mutable","name":"minPremium","nameLocation":"7810:10:23","nodeType":"VariableDeclaration","scope":8098,"src":"7784:36:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition"},"typeName":{"id":8023,"nodeType":"UserDefinedTypeName","pathNode":{"id":8022,"name":"PremiumComposition","nameLocations":["7784:18:23"],"nodeType":"IdentifierPath","referencedDeclaration":7762,"src":"7784:18:23"},"referencedDeclaration":7762,"src":"7784:18:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_storage_ptr","typeString":"struct Policy.PremiumComposition"}},"visibility":"internal"}],"id":8032,"initialValue":{"arguments":[{"id":8026,"name":"rmParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7968,"src":"7841:8:23","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}},{"id":8027,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7972,"src":"7851:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8028,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7974,"src":"7859:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8029,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7976,"src":"7869:10:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":8030,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7978,"src":"7881:5:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"}],"id":8025,"name":"getMinimumPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7964,"src":"7823:17:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Params_$7718_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint40_$returns$_t_struct$_PremiumComposition_$7762_memory_ptr_$","typeString":"function (struct Policy.Params memory,uint256,uint256,uint40,uint40) pure returns (struct Policy.PremiumComposition memory)"}},"id":8031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7823:64:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"nodeType":"VariableDeclarationStatement","src":"7784:103:23"},{"expression":{"id":8038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":8033,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7996,"src":"7894:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8035,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7901:11:23","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7731,"src":"7894:18:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":8036,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8024,"src":"7915:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":8037,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7926:11:23","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7747,"src":"7915:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7894:43:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8039,"nodeType":"ExpressionStatement","src":"7894:43:23"},{"expression":{"id":8045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":8040,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7996,"src":"7943:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8042,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7950:5:23","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7725,"src":"7943:12:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":8043,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8024,"src":"7958:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":8044,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7969:5:23","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7749,"src":"7958:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7943:31:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8046,"nodeType":"ExpressionStatement","src":"7943:31:23"},{"expression":{"id":8052,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":8047,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7996,"src":"7980:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8049,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7987:5:23","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7727,"src":"7980:12:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":8050,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8024,"src":"7995:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":8051,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8006:5:23","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7751,"src":"7995:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7980:31:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8053,"nodeType":"ExpressionStatement","src":"7980:31:23"},{"expression":{"id":8059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":8054,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7996,"src":"8017:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8056,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8024:5:23","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7737,"src":"8017:12:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":8057,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8024,"src":"8032:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":8058,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8043:5:23","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7753,"src":"8032:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8017:31:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8060,"nodeType":"ExpressionStatement","src":"8017:31:23"},{"expression":{"id":8066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":8061,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7996,"src":"8054:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8063,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8061:5:23","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7739,"src":"8054:12:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":8064,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8024,"src":"8069:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":8065,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8080:5:23","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7755,"src":"8069:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8054:31:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8067,"nodeType":"ExpressionStatement","src":"8054:31:23"},{"expression":{"id":8073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":8068,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7996,"src":"8091:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8070,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8098:16:23","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":7733,"src":"8091:23:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":8071,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8024,"src":"8117:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":8072,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8128:16:23","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":7757,"src":"8117:27:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8091:53:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8074,"nodeType":"ExpressionStatement","src":"8091:53:23"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8079,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8076,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8024,"src":"8159:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":8077,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8170:12:23","memberName":"totalPremium","nodeType":"MemberAccess","referencedDeclaration":7761,"src":"8159:23:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":8078,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7970,"src":"8186:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8159:34:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":8081,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7970,"src":"8218:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":8082,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8024,"src":"8227:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":8083,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8238:12:23","memberName":"totalPremium","nodeType":"MemberAccess","referencedDeclaration":7761,"src":"8227:23:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8080,"name":"PremiumLessThanMinimum","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7769,"src":"8195:22:23","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":8084,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8195:56:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":8075,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"8151:7:23","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":8085,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8151:101:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8086,"nodeType":"ExpressionStatement","src":"8151:101:23"},{"expression":{"id":8094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":8087,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7996,"src":"8259:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8089,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8266:17:23","memberName":"partnerCommission","nodeType":"MemberAccess","referencedDeclaration":7735,"src":"8259:24:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8090,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7970,"src":"8286:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":8091,"name":"minPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8024,"src":"8296:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":8092,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8307:12:23","memberName":"totalPremium","nodeType":"MemberAccess","referencedDeclaration":7761,"src":"8296:23:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8286:33:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8259:60:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8095,"nodeType":"ExpressionStatement","src":"8259:60:23"},{"expression":{"id":8096,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7996,"src":"8332:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"functionReturnParameters":7983,"id":8097,"nodeType":"Return","src":"8325:13:23"}]},"documentation":{"id":7965,"nodeType":"StructuredDocumentation","src":"6462:881:23","text":" @notice Initializes a policy struct\n @dev Computes the minimum premium and the remaining (premium - minPremium) is assigned as partnerCommissiona\n @custom:throws PremiumLessThanMinimum when `premium` parameter is less than the computed minPremium\n @param rmParams Struct with the business and quantitative parameters that define the risk (see {Params}).\n @param premium The premium that will be paid for the policy\n @param payout Maximum payout (exposure) of the policy\n @param lossProb Probability of paying the maximum payout (purePremium = rmParams.moc * lossProb * payout)\n @param expiration Timestamp when the policy expires (can't be claimed anymore)\n @param start Timestamp when the policy starts (block.timestamp for new policies)\n @return newPolicy PolicyData struct with the fields initialized (all except .id)"},"id":8099,"implemented":true,"kind":"function","modifiers":[],"name":"initialize","nameLocation":"7355:10:23","nodeType":"FunctionDefinition","parameters":{"id":7979,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7968,"mutability":"mutable","name":"rmParams","nameLocation":"7385:8:23","nodeType":"VariableDeclaration","scope":8099,"src":"7371:22:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":7967,"nodeType":"UserDefinedTypeName","pathNode":{"id":7966,"name":"Params","nameLocations":["7371:6:23"],"nodeType":"IdentifierPath","referencedDeclaration":7718,"src":"7371:6:23"},"referencedDeclaration":7718,"src":"7371:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"},{"constant":false,"id":7970,"mutability":"mutable","name":"premium","nameLocation":"7407:7:23","nodeType":"VariableDeclaration","scope":8099,"src":"7399:15:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7969,"name":"uint256","nodeType":"ElementaryTypeName","src":"7399:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7972,"mutability":"mutable","name":"payout","nameLocation":"7428:6:23","nodeType":"VariableDeclaration","scope":8099,"src":"7420:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7971,"name":"uint256","nodeType":"ElementaryTypeName","src":"7420:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7974,"mutability":"mutable","name":"lossProb","nameLocation":"7448:8:23","nodeType":"VariableDeclaration","scope":8099,"src":"7440:16:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7973,"name":"uint256","nodeType":"ElementaryTypeName","src":"7440:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7976,"mutability":"mutable","name":"expiration","nameLocation":"7469:10:23","nodeType":"VariableDeclaration","scope":8099,"src":"7462:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":7975,"name":"uint40","nodeType":"ElementaryTypeName","src":"7462:6:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":7978,"mutability":"mutable","name":"start","nameLocation":"7492:5:23","nodeType":"VariableDeclaration","scope":8099,"src":"7485:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":7977,"name":"uint40","nodeType":"ElementaryTypeName","src":"7485:6:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"7365:136:23"},"returnParameters":{"id":7983,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7982,"mutability":"mutable","name":"newPolicy","nameLocation":"7543:9:23","nodeType":"VariableDeclaration","scope":8099,"src":"7525:27:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":7981,"nodeType":"UserDefinedTypeName","pathNode":{"id":7980,"name":"PolicyData","nameLocations":["7525:10:23"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"7525:10:23"},"referencedDeclaration":7744,"src":"7525:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"7524:29:23"},"scope":8314,"src":"7346:997:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8123,"nodeType":"Block","src":"8806:96:23","statements":[{"expression":{"arguments":[{"id":8114,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7692,"src":"8860:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8115,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8103,"src":"8865:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8116,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8872:5:23","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7725,"src":"8865:12:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":8118,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8103,"src":"8889:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":8117,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8215,"src":"8880:8:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint40_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint40)"}},"id":8119,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8880:16:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"8865:31:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8111,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8108,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8103,"src":"8820:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8109,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8827:5:23","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7737,"src":"8820:12:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":8110,"name":"SECONDS_PER_YEAR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7695,"src":"8835:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8820:31:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":8112,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8819:33:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8853:6:23","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34072,"src":"8819:40:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":8121,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8819:78:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8107,"id":8122,"nodeType":"Return","src":"8812:85:23"}]},"documentation":{"id":8100,"nodeType":"StructuredDocumentation","src":"8347:374:23","text":" @notice Computes the annualized interest rate paid to Junior LPs, for a given policy\n @dev Computed as `(jrCoc / jrScr) * (SECONDS_PER_YEAR / duration)`. The result should be almost the same as\n the initial rmParams.jrRoc sent to `initialize`.\n @param policy Struct with all the info of the policy\n @return Annualized interest rate in WAD"},"id":8124,"implemented":true,"kind":"function","modifiers":[],"name":"jrInterestRate","nameLocation":"8733:14:23","nodeType":"FunctionDefinition","parameters":{"id":8104,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8103,"mutability":"mutable","name":"policy","nameLocation":"8766:6:23","nodeType":"VariableDeclaration","scope":8124,"src":"8748:24:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":8102,"nodeType":"UserDefinedTypeName","pathNode":{"id":8101,"name":"PolicyData","nameLocations":["8748:10:23"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"8748:10:23"},"referencedDeclaration":7744,"src":"8748:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"8747:26:23"},"returnParameters":{"id":8107,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8106,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8124,"src":"8797:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8105,"name":"uint256","nodeType":"ElementaryTypeName","src":"8797:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8796:9:23"},"scope":8314,"src":"8724:178:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8148,"nodeType":"Block","src":"9284:86:23","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8133,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8128,"src":"9298:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8134,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9305:5:23","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7737,"src":"9298:12:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8135,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"9314:5:23","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8136,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9320:9:23","memberName":"timestamp","nodeType":"MemberAccess","src":"9314:15:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":8137,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8128,"src":"9332:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8138,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9339:5:23","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":7741,"src":"9332:12:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"9314:30:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":8140,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9313:32:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9298:47:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":8142,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9297:49:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"arguments":[{"id":8144,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8128,"src":"9358:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":8143,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8215,"src":"9349:8:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint40_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint40)"}},"id":8145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9349:16:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"9297:68:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8132,"id":8147,"nodeType":"Return","src":"9290:75:23"}]},"documentation":{"id":8125,"nodeType":"StructuredDocumentation","src":"8906:290:23","text":" @notice Computed the interest accrued by junior LPs\n @dev The value is directly proportional to the elapsed time since policy.start with respect to the duration\n @param policy Struct with all the info of the policy\n @return Amount of the JrCoc accrued so far"},"id":8149,"implemented":true,"kind":"function","modifiers":[],"name":"jrAccruedInterest","nameLocation":"9208:17:23","nodeType":"FunctionDefinition","parameters":{"id":8129,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8128,"mutability":"mutable","name":"policy","nameLocation":"9244:6:23","nodeType":"VariableDeclaration","scope":8149,"src":"9226:24:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":8127,"nodeType":"UserDefinedTypeName","pathNode":{"id":8126,"name":"PolicyData","nameLocations":["9226:10:23"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"9226:10:23"},"referencedDeclaration":7744,"src":"9226:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"9225:26:23"},"returnParameters":{"id":8132,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8131,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8149,"src":"9275:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8130,"name":"uint256","nodeType":"ElementaryTypeName","src":"9275:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9274:9:23"},"scope":8314,"src":"9199:171:23","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":8173,"nodeType":"Block","src":"9833:96:23","statements":[{"expression":{"arguments":[{"id":8164,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7692,"src":"9887:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8165,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8153,"src":"9892:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8166,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9899:5:23","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7727,"src":"9892:12:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":8168,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8153,"src":"9916:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":8167,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8215,"src":"9907:8:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint40_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint40)"}},"id":8169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9907:16:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"9892:31:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8158,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8153,"src":"9847:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8159,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9854:5:23","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7739,"src":"9847:12:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":8160,"name":"SECONDS_PER_YEAR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7695,"src":"9862:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9847:31:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":8162,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9846:33:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9880:6:23","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34072,"src":"9846:40:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":8171,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9846:78:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8157,"id":8172,"nodeType":"Return","src":"9839:85:23"}]},"documentation":{"id":8150,"nodeType":"StructuredDocumentation","src":"9374:374:23","text":" @notice Computes the annualized interest rate paid to Senior LPs, for a given policy\n @dev Computed as `(srCoc / srScr) * (SECONDS_PER_YEAR / duration)`. The result should be almost the same as\n the initial rmParams.srRoc sent to `initialize`.\n @param policy Struct with all the info of the policy\n @return Annualized interest rate in WAD"},"id":8174,"implemented":true,"kind":"function","modifiers":[],"name":"srInterestRate","nameLocation":"9760:14:23","nodeType":"FunctionDefinition","parameters":{"id":8154,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8153,"mutability":"mutable","name":"policy","nameLocation":"9793:6:23","nodeType":"VariableDeclaration","scope":8174,"src":"9775:24:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":8152,"nodeType":"UserDefinedTypeName","pathNode":{"id":8151,"name":"PolicyData","nameLocations":["9775:10:23"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"9775:10:23"},"referencedDeclaration":7744,"src":"9775:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"9774:26:23"},"returnParameters":{"id":8157,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8156,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8174,"src":"9824:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8155,"name":"uint256","nodeType":"ElementaryTypeName","src":"9824:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9823:9:23"},"scope":8314,"src":"9751:178:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8198,"nodeType":"Block","src":"10311:86:23","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8196,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8183,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8178,"src":"10325:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8184,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10332:5:23","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7739,"src":"10325:12:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8189,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8185,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"10341:5:23","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10347:9:23","memberName":"timestamp","nodeType":"MemberAccess","src":"10341:15:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":8187,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8178,"src":"10359:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8188,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10366:5:23","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":7741,"src":"10359:12:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"10341:30:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":8190,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10340:32:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10325:47:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":8192,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10324:49:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"arguments":[{"id":8194,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8178,"src":"10385:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":8193,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8215,"src":"10376:8:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint40_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint40)"}},"id":8195,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10376:16:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"10324:68:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8182,"id":8197,"nodeType":"Return","src":"10317:75:23"}]},"documentation":{"id":8175,"nodeType":"StructuredDocumentation","src":"9933:290:23","text":" @notice Computed the interest accrued by senior LPs\n @dev The value is directly proportional to the elapsed time since policy.start with respect to the duration\n @param policy Struct with all the info of the policy\n @return Amount of the SrCoc accrued so far"},"id":8199,"implemented":true,"kind":"function","modifiers":[],"name":"srAccruedInterest","nameLocation":"10235:17:23","nodeType":"FunctionDefinition","parameters":{"id":8179,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8178,"mutability":"mutable","name":"policy","nameLocation":"10271:6:23","nodeType":"VariableDeclaration","scope":8199,"src":"10253:24:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":8177,"nodeType":"UserDefinedTypeName","pathNode":{"id":8176,"name":"PolicyData","nameLocations":["10253:10:23"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"10253:10:23"},"referencedDeclaration":7744,"src":"10253:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"10252:26:23"},"returnParameters":{"id":8182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8181,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8199,"src":"10302:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8180,"name":"uint256","nodeType":"ElementaryTypeName","src":"10302:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10301:9:23"},"scope":8314,"src":"10226:171:23","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":8214,"nodeType":"Block","src":"10536:50:23","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":8212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8208,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8203,"src":"10549:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8209,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10556:10:23","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":7743,"src":"10549:17:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":8210,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8203,"src":"10569:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":8211,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10576:5:23","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":7741,"src":"10569:12:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"10549:32:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"functionReturnParameters":8207,"id":8213,"nodeType":"Return","src":"10542:39:23"}]},"documentation":{"id":8200,"nodeType":"StructuredDocumentation","src":"10401:57:23","text":"@notice Returns the duration in seconds of the policy"},"id":8215,"implemented":true,"kind":"function","modifiers":[],"name":"duration","nameLocation":"10470:8:23","nodeType":"FunctionDefinition","parameters":{"id":8204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8203,"mutability":"mutable","name":"policy","nameLocation":"10497:6:23","nodeType":"VariableDeclaration","scope":8215,"src":"10479:24:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":8202,"nodeType":"UserDefinedTypeName","pathNode":{"id":8201,"name":"PolicyData","nameLocations":["10479:10:23"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"10479:10:23"},"referencedDeclaration":7744,"src":"10479:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"10478:26:23"},"returnParameters":{"id":8207,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8206,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8215,"src":"10528:6:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":8205,"name":"uint40","nodeType":"ElementaryTypeName","src":"10528:6:23","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"10527:8:23"},"scope":8314,"src":"10461:125:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8247,"nodeType":"Block","src":"10731:124:23","statements":[{"expression":{"id":8231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8224,"name":"retHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8222,"src":"10737:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":8228,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8219,"src":"10768:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"expression":{"id":8226,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"10757:3:23","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":8227,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10761:6:23","memberName":"encode","nodeType":"MemberAccess","src":"10757:10:23","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":8229,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10757:18:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8225,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"10747:9:23","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10747:29:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"10737:39:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":8232,"nodeType":"ExpressionStatement","src":"10737:39:23"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":8239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8234,"name":"retHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8222,"src":"10790:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":8237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10809:1:23","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":8236,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10801:7:23","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":8235,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10801:7:23","typeDescriptions":{}}},"id":8238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10801:10:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"10790:21:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":8241,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8219,"src":"10822:6:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":8240,"name":"ZeroHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7782,"src":"10813:8:23","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_error_$","typeString":"function (struct Policy.PolicyData memory) pure returns (error)"}},"id":8242,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10813:16:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":8233,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"10782:7:23","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":8243,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10782:48:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8244,"nodeType":"ExpressionStatement","src":"10782:48:23"},{"expression":{"id":8245,"name":"retHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8222,"src":"10843:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":8223,"id":8246,"nodeType":"Return","src":"10836:14:23"}]},"documentation":{"id":8216,"nodeType":"StructuredDocumentation","src":"10590:58:23","text":"@notice Returns a hash of all the fields of the policy"},"id":8248,"implemented":true,"kind":"function","modifiers":[],"name":"hash","nameLocation":"10660:4:23","nodeType":"FunctionDefinition","parameters":{"id":8220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8219,"mutability":"mutable","name":"policy","nameLocation":"10683:6:23","nodeType":"VariableDeclaration","scope":8248,"src":"10665:24:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":8218,"nodeType":"UserDefinedTypeName","pathNode":{"id":8217,"name":"PolicyData","nameLocations":["10665:10:23"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"10665:10:23"},"referencedDeclaration":7744,"src":"10665:10:23","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"10664:26:23"},"returnParameters":{"id":8223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8222,"mutability":"mutable","name":"retHash","nameLocation":"10722:7:23","nodeType":"VariableDeclaration","scope":8248,"src":"10714:15:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8221,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10714:7:23","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"10713:17:23"},"scope":8314,"src":"10651:204:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8266,"nodeType":"Block","src":"11016:50:23","statements":[{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8260,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8251,"src":"11045:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3936","id":8261,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11057:2:23","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"11045:14:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8259,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11037:7:23","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":8258,"name":"uint160","nodeType":"ElementaryTypeName","src":"11037:7:23","typeDescriptions":{}}},"id":8263,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11037:23:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":8257,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11029:7:23","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8256,"name":"address","nodeType":"ElementaryTypeName","src":"11029:7:23","typeDescriptions":{}}},"id":8264,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11029:32:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8255,"id":8265,"nodeType":"Return","src":"11022:39:23"}]},"documentation":{"id":8249,"nodeType":"StructuredDocumentation","src":"10859:77:23","text":"@notice Extracts the risk module address from a policyId (first 20 bytes)"},"id":8267,"implemented":true,"kind":"function","modifiers":[],"name":"extractRiskModule","nameLocation":"10948:17:23","nodeType":"FunctionDefinition","parameters":{"id":8252,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8251,"mutability":"mutable","name":"policyId","nameLocation":"10974:8:23","nodeType":"VariableDeclaration","scope":8267,"src":"10966:16:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8250,"name":"uint256","nodeType":"ElementaryTypeName","src":"10966:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10965:18:23"},"returnParameters":{"id":8255,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8254,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8267,"src":"11007:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8253,"name":"address","nodeType":"ElementaryTypeName","src":"11007:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11006:9:23"},"scope":8314,"src":"10939:127:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8285,"nodeType":"Block","src":"11215:46:23","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8277,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8270,"src":"11235:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_79228162514264337593543950336_by_1","typeString":"int_const 79228162514264337593543950336"},"id":8280,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":8278,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11247:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3936","id":8279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11252:2:23","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"11247:7:23","typeDescriptions":{"typeIdentifier":"t_rational_79228162514264337593543950336_by_1","typeString":"int_const 79228162514264337593543950336"}}],"id":8281,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"11246:9:23","typeDescriptions":{"typeIdentifier":"t_rational_79228162514264337593543950336_by_1","typeString":"int_const 79228162514264337593543950336"}},"src":"11235:20:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8276,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11228:6:23","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":8275,"name":"uint96","nodeType":"ElementaryTypeName","src":"11228:6:23","typeDescriptions":{}}},"id":8283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11228:28:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"functionReturnParameters":8274,"id":8284,"nodeType":"Return","src":"11221:35:23"}]},"documentation":{"id":8268,"nodeType":"StructuredDocumentation","src":"11070:66:23","text":"@notice Extracts the internalId from a policyId (last 96 bits)"},"id":8286,"implemented":true,"kind":"function","modifiers":[],"name":"extractInternalId","nameLocation":"11148:17:23","nodeType":"FunctionDefinition","parameters":{"id":8271,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8270,"mutability":"mutable","name":"policyId","nameLocation":"11174:8:23","nodeType":"VariableDeclaration","scope":8286,"src":"11166:16:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8269,"name":"uint256","nodeType":"ElementaryTypeName","src":"11166:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11165:18:23"},"returnParameters":{"id":8274,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8273,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8286,"src":"11207:6:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":8272,"name":"uint96","nodeType":"ElementaryTypeName","src":"11207:6:23","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"11206:8:23"},"scope":8314,"src":"11139:122:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":8312,"nodeType":"Block","src":"11692:68:23","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"arguments":[{"id":8302,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8289,"src":"11730:2:23","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8301,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11722:7:23","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8300,"name":"address","nodeType":"ElementaryTypeName","src":"11722:7:23","typeDescriptions":{}}},"id":8303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11722:11:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8299,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11714:7:23","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":8298,"name":"uint160","nodeType":"ElementaryTypeName","src":"11714:7:23","typeDescriptions":{}}},"id":8304,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11714:20:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":8297,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11706:7:23","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":8296,"name":"uint256","nodeType":"ElementaryTypeName","src":"11706:7:23","typeDescriptions":{}}},"id":8305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11706:29:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3936","id":8306,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11739:2:23","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"11706:35:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":8308,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11705:37:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":8309,"name":"internalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8291,"src":"11745:10:23","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"11705:50:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8295,"id":8311,"nodeType":"Return","src":"11698:57:23"}]},"documentation":{"id":8287,"nodeType":"StructuredDocumentation","src":"11265:339:23","text":" @notice Generates a policyId, combining the riskModule (first 20 bytes) with the internalId (last 12 bytes)\n @param rm The risk module\n @param internalId An identifier for the policy that is unique within a given risk module\n @return The policy id, that will be used as the tokenId for the minted policy NFT"},"id":8313,"implemented":true,"kind":"function","modifiers":[],"name":"makePolicyId","nameLocation":"11616:12:23","nodeType":"FunctionDefinition","parameters":{"id":8292,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8289,"mutability":"mutable","name":"rm","nameLocation":"11637:2:23","nodeType":"VariableDeclaration","scope":8313,"src":"11629:10:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8288,"name":"address","nodeType":"ElementaryTypeName","src":"11629:7:23","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8291,"mutability":"mutable","name":"internalId","nameLocation":"11648:10:23","nodeType":"VariableDeclaration","scope":8313,"src":"11641:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":8290,"name":"uint96","nodeType":"ElementaryTypeName","src":"11641:6:23","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"11628:31:23"},"returnParameters":{"id":8295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8294,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8313,"src":"11683:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8293,"name":"uint256","nodeType":"ElementaryTypeName","src":"11683:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11682:9:23"},"scope":8314,"src":"11607:153:23","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":8315,"src":"565:11197:23","usedErrors":[7769,7776,7782],"usedEvents":[]}],"src":"39:11724:23"},"id":23},"@ensuro/core/contracts/PolicyPool.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/PolicyPool.sol","exportedSymbols":{"ERC165Checker":[33533],"ERC721Upgradeable":[18626],"IERC165":[33545],"IERC20Metadata":[24925],"IERC20Permit":[24961],"IEToken":[14336],"IPolicyHolder":[14449],"IPolicyPool":[14638],"IPolicyPoolComponent":[14655],"IPremiumsAccount":[14743],"IRiskModule":[14762],"MulticallUpgradeable":[18775],"PausableUpgradeable":[19046],"Policy":[8314],"PolicyPool":[10934],"SafeCast":[36952],"SafeERC20":[25416],"UUPSUpgradeable":[23600]},"id":10935,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":8316,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:24"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":8318,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":33546,"src":"65:80:24","symbolAliases":[{"foreign":{"id":8317,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"73:7:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol","file":"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol","id":8320,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":33534,"src":"146:92:24","symbolAliases":[{"foreign":{"id":8319,"name":"ERC165Checker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33533,"src":"154:13:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol","file":"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol","id":8322,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":18627,"src":"239:105:24","symbolAliases":[{"foreign":{"id":8321,"name":"ERC721Upgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18626,"src":"247:17:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","id":8324,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":24962,"src":"345:93:24","symbolAliases":[{"foreign":{"id":8323,"name":"IERC20Permit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24961,"src":"353:12:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":8326,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":24926,"src":"439:97:24","symbolAliases":[{"foreign":{"id":8325,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"447:14:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol","id":8328,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":19047,"src":"537:102:24","symbolAliases":[{"foreign":{"id":8327,"name":"PausableUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19046,"src":"545:19:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol","id":8330,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":18776,"src":"640:104:24","symbolAliases":[{"foreign":{"id":8329,"name":"MulticallUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18775,"src":"648:20:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":8332,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":25417,"src":"745:82:24","symbolAliases":[{"foreign":{"id":8331,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25416,"src":"753:9:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":8334,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":36953,"src":"828:73:24","symbolAliases":[{"foreign":{"id":8333,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"836:8:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol","file":"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol","id":8336,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":23601,"src":"902:88:24","symbolAliases":[{"foreign":{"id":8335,"name":"UUPSUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23600,"src":"910:15:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IEToken.sol","file":"./interfaces/IEToken.sol","id":8338,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":14337,"src":"992:49:24","symbolAliases":[{"foreign":{"id":8337,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14336,"src":"1000:7:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyHolder.sol","file":"./interfaces/IPolicyHolder.sol","id":8340,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":14450,"src":"1042:61:24","symbolAliases":[{"foreign":{"id":8339,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"1050:13:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyPool.sol","file":"./interfaces/IPolicyPool.sol","id":8342,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":14639,"src":"1104:57:24","symbolAliases":[{"foreign":{"id":8341,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14638,"src":"1112:11:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyPoolComponent.sol","file":"./interfaces/IPolicyPoolComponent.sol","id":8344,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":14656,"src":"1162:75:24","symbolAliases":[{"foreign":{"id":8343,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14655,"src":"1170:20:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol","file":"./interfaces/IPremiumsAccount.sol","id":8346,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":14744,"src":"1238:67:24","symbolAliases":[{"foreign":{"id":8345,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14743,"src":"1246:16:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IRiskModule.sol","file":"./interfaces/IRiskModule.sol","id":8348,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":14763,"src":"1306:57:24","symbolAliases":[{"foreign":{"id":8347,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14762,"src":"1314:11:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/Policy.sol","file":"./Policy.sol","id":8350,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10935,"sourceUnit":8315,"src":"1364:36:24","symbolAliases":[{"foreign":{"id":8349,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"1372:6:24","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":8352,"name":"IPolicyPool","nameLocations":["2451:11:24"],"nodeType":"IdentifierPath","referencedDeclaration":14638,"src":"2451:11:24"},"id":8353,"nodeType":"InheritanceSpecifier","src":"2451:11:24"},{"baseName":{"id":8354,"name":"PausableUpgradeable","nameLocations":["2464:19:24"],"nodeType":"IdentifierPath","referencedDeclaration":19046,"src":"2464:19:24"},"id":8355,"nodeType":"InheritanceSpecifier","src":"2464:19:24"},{"baseName":{"id":8356,"name":"UUPSUpgradeable","nameLocations":["2485:15:24"],"nodeType":"IdentifierPath","referencedDeclaration":23600,"src":"2485:15:24"},"id":8357,"nodeType":"InheritanceSpecifier","src":"2485:15:24"},{"baseName":{"id":8358,"name":"ERC721Upgradeable","nameLocations":["2502:17:24"],"nodeType":"IdentifierPath","referencedDeclaration":18626,"src":"2502:17:24"},"id":8359,"nodeType":"InheritanceSpecifier","src":"2502:17:24"},{"baseName":{"id":8360,"name":"MulticallUpgradeable","nameLocations":["2521:20:24"],"nodeType":"IdentifierPath","referencedDeclaration":18775,"src":"2521:20:24"},"id":8361,"nodeType":"InheritanceSpecifier","src":"2521:20:24"}],"canonicalName":"PolicyPool","contractDependencies":[],"contractKind":"contract","documentation":{"id":8351,"nodeType":"StructuredDocumentation","src":"1402:1025:24","text":" @title Ensuro PolicyPool contract\n @notice This is the main contract of the protocol.\n @dev There's a single instance of PolicyPool contract for a given deployment of the protocol.\n It stores the registry of components (eTokens, PremiumsAccounts, and RiskModules). It also tracks the active\n exposure and exposure limit per risk module.\n This is also the contract that receives and sends the underlying asset (currency, typically USDC).\n The currency spending approvals should be done to this protocol for deposits or premium payments.\n This contract implements the ERC721 standard, because it mints and NFT for each policy created. The\n property of the NFT represents the one that will receive the payout.\n The active policies are tracked in _policies as hashes, but for gas optimization we just store the hash\n of the policy struct, and the struct needs to be stored off-chain and provided on every subsequent call.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":10934,"linearizedBaseContracts":[10934,18775,18626,22596,25579,25533,19430,33545,23600,22506,19046,18672,23434,14638],"name":"PolicyPool","nameLocation":"2437:10:24","nodeType":"ContractDefinition","nodes":[{"global":false,"id":8365,"libraryName":{"id":8362,"name":"Policy","nameLocations":["2552:6:24"],"nodeType":"IdentifierPath","referencedDeclaration":8314,"src":"2552:6:24"},"nodeType":"UsingForDirective","src":"2546:35:24","typeName":{"id":8364,"nodeType":"UserDefinedTypeName","pathNode":{"id":8363,"name":"Policy.PolicyData","nameLocations":["2563:6:24","2570:10:24"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"2563:17:24"},"referencedDeclaration":7744,"src":"2563:17:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}}},{"global":false,"id":8369,"libraryName":{"id":8366,"name":"SafeERC20","nameLocations":["2590:9:24"],"nodeType":"IdentifierPath","referencedDeclaration":25416,"src":"2590:9:24"},"nodeType":"UsingForDirective","src":"2584:35:24","typeName":{"id":8368,"nodeType":"UserDefinedTypeName","pathNode":{"id":8367,"name":"IERC20Metadata","nameLocations":["2604:14:24"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"2604:14:24"},"referencedDeclaration":24925,"src":"2604:14:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}}},{"global":false,"id":8372,"libraryName":{"id":8370,"name":"SafeCast","nameLocations":["2628:8:24"],"nodeType":"IdentifierPath","referencedDeclaration":36952,"src":"2628:8:24"},"nodeType":"UsingForDirective","src":"2622:27:24","typeName":{"id":8371,"name":"uint256","nodeType":"ElementaryTypeName","src":"2641:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":true,"id":8375,"mutability":"constant","name":"HOLDER_GAS_LIMIT","nameLocation":"2679:16:24","nodeType":"VariableDeclaration","scope":10934,"src":"2653:51:24","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8373,"name":"uint256","nodeType":"ElementaryTypeName","src":"2653:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"313530303030","id":8374,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2698:6:24","typeDescriptions":{"typeIdentifier":"t_rational_150000_by_1","typeString":"int_const 150000"},"value":"150000"},"visibility":"internal"},{"constant":false,"documentation":{"id":8376,"nodeType":"StructuredDocumentation","src":"2826:61:24","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":8379,"mutability":"immutable","name":"_currency","nameLocation":"2924:9:24","nodeType":"VariableDeclaration","scope":10934,"src":"2890:43:24","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"},"typeName":{"id":8378,"nodeType":"UserDefinedTypeName","pathNode":{"id":8377,"name":"IERC20Metadata","nameLocations":["2890:14:24"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"2890:14:24"},"referencedDeclaration":24925,"src":"2890:14:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"visibility":"internal"},{"constant":false,"documentation":{"id":8380,"nodeType":"StructuredDocumentation","src":"2938:84:24","text":" @notice Address of Ensuro's treasury that receives the protocol fees."},"id":8382,"mutability":"mutable","name":"_treasury","nameLocation":"3042:9:24","nodeType":"VariableDeclaration","scope":10934,"src":"3025:26:24","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8381,"name":"address","nodeType":"ElementaryTypeName","src":"3025:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"canonicalName":"PolicyPool.ComponentStatus","documentation":{"id":8383,"nodeType":"StructuredDocumentation","src":"3086:113:24","text":" @notice Different statuses that a component ({PremiumsAccount}, {EToken} or {RiskModule} can have."},"id":8392,"members":[{"documentation":{"id":8384,"nodeType":"StructuredDocumentation","src":"3229:107:24","text":" @notice inactive status = 0 means the component doesn't exists - All operations rejected"},"id":8385,"name":"inactive","nameLocation":"3341:8:24","nodeType":"EnumValue","src":"3341:8:24"},{"documentation":{"id":8386,"nodeType":"StructuredDocumentation","src":"3355:311:24","text":" @notice active means the component is fully functional, all the component operations are allowed.\n         deposit / withdraw for eTokens\n         newPolicy / resolvePolicy for riskModules\n         policyCreated / policyExpired / policyResolvedWithPayout for premiumsAccount"},"id":8387,"name":"active","nameLocation":"3671:6:24","nodeType":"EnumValue","src":"3671:6:24"},{"documentation":{"id":8388,"nodeType":"StructuredDocumentation","src":"3683:299:24","text":" @notice deprecated means the component is in process of being deactivated. Only some operations are allowed:\n         withdraw for eTokens\n         resolvePolicy / expirePolicy for riskModules\n         policyExpired / policyResolvedWithPayout for premiumsAccount"},"id":8389,"name":"deprecated","nameLocation":"3987:10:24","nodeType":"EnumValue","src":"3987:10:24"},{"documentation":{"id":8390,"nodeType":"StructuredDocumentation","src":"4003:159:24","text":" @notice suspended means the component is temporarily deactivated. All the operations are rejected. Only GUARDIAN\n         can suspend."},"id":8391,"name":"suspended","nameLocation":"4167:9:24","nodeType":"EnumValue","src":"4167:9:24"}],"name":"ComponentStatus","nameLocation":"3207:15:24","nodeType":"EnumDefinition","src":"3202:978:24"},{"canonicalName":"PolicyPool.ComponentKind","documentation":{"id":8393,"nodeType":"StructuredDocumentation","src":"4184:202:24","text":" @notice Enum of the different kind of top level components that can be plugged into the pool. Each one corresponds\n with the {EToken}, {RiskModule} and {PremiumsAccount} respectively."},"id":8398,"members":[{"id":8394,"name":"unknown","nameLocation":"4414:7:24","nodeType":"EnumValue","src":"4414:7:24"},{"id":8395,"name":"eToken","nameLocation":"4427:6:24","nodeType":"EnumValue","src":"4427:6:24"},{"id":8396,"name":"riskModule","nameLocation":"4439:10:24","nodeType":"EnumValue","src":"4439:10:24"},{"id":8397,"name":"premiumsAccount","nameLocation":"4455:15:24","nodeType":"EnumValue","src":"4455:15:24"}],"name":"ComponentKind","nameLocation":"4394:13:24","nodeType":"EnumDefinition","src":"4389:85:24"},{"canonicalName":"PolicyPool.Component","documentation":{"id":8399,"nodeType":"StructuredDocumentation","src":"4478:253:24","text":" @notice Struct to keep the state and type of the components installed\n @dev The `kind` never changes. The `status` initially is `active` and can be changes with\n {PolicyPool-changeComponentStatus} and {PolicyPool-removeComponent}."},"id":8406,"members":[{"constant":false,"id":8402,"mutability":"mutable","name":"status","nameLocation":"4773:6:24","nodeType":"VariableDeclaration","scope":8406,"src":"4757:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"},"typeName":{"id":8401,"nodeType":"UserDefinedTypeName","pathNode":{"id":8400,"name":"ComponentStatus","nameLocations":["4757:15:24"],"nodeType":"IdentifierPath","referencedDeclaration":8392,"src":"4757:15:24"},"referencedDeclaration":8392,"src":"4757:15:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"visibility":"internal"},{"constant":false,"id":8405,"mutability":"mutable","name":"kind","nameLocation":"4799:4:24","nodeType":"VariableDeclaration","scope":8406,"src":"4785:18:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},"typeName":{"id":8404,"nodeType":"UserDefinedTypeName","pathNode":{"id":8403,"name":"ComponentKind","nameLocations":["4785:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":8398,"src":"4785:13:24"},"referencedDeclaration":8398,"src":"4785:13:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"visibility":"internal"}],"name":"Component","nameLocation":"4741:9:24","nodeType":"StructDefinition","scope":10934,"src":"4734:74:24","visibility":"public"},{"constant":false,"documentation":{"id":8407,"nodeType":"StructuredDocumentation","src":"4812:121:24","text":" @notice Mapping of installed components (see {EToken}, {RiskModule}, {PremiumsAccount}) in the PolicyPool."},"id":8413,"mutability":"mutable","name":"_components","nameLocation":"4988:11:24","nodeType":"VariableDeclaration","scope":10934,"src":"4936:63:24","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IPolicyPoolComponent_$14655_$_t_struct$_Component_$8406_storage_$","typeString":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component)"},"typeName":{"id":8412,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":8409,"nodeType":"UserDefinedTypeName","pathNode":{"id":8408,"name":"IPolicyPoolComponent","nameLocations":["4944:20:24"],"nodeType":"IdentifierPath","referencedDeclaration":14655,"src":"4944:20:24"},"referencedDeclaration":14655,"src":"4944:20:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"nodeType":"Mapping","src":"4936:42:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IPolicyPoolComponent_$14655_$_t_struct$_Component_$8406_storage_$","typeString":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":8411,"nodeType":"UserDefinedTypeName","pathNode":{"id":8410,"name":"Component","nameLocations":["4968:9:24"],"nodeType":"IdentifierPath","referencedDeclaration":8406,"src":"4968:9:24"},"referencedDeclaration":8406,"src":"4968:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component"}}},"visibility":"internal"},{"constant":false,"documentation":{"id":8414,"nodeType":"StructuredDocumentation","src":"5004:240:24","text":" @notice Mapping that stores the active policies (the policyId is the key).\n @dev It just saves the hash of the policies, the full {Policy-PolicyData} struct has to be sent for each\n operation (hash is used to verify)."},"id":8418,"mutability":"mutable","name":"_policies","nameLocation":"5284:9:24","nodeType":"VariableDeclaration","scope":10934,"src":"5247:46:24","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"},"typeName":{"id":8417,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":8415,"name":"uint256","nodeType":"ElementaryTypeName","src":"5255:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"5247:27:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":8416,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5266:7:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},"visibility":"internal"},{"canonicalName":"PolicyPool.Exposure","id":8423,"members":[{"constant":false,"id":8420,"mutability":"mutable","name":"active","nameLocation":"5328:6:24","nodeType":"VariableDeclaration","scope":8423,"src":"5320:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":8419,"name":"uint128","nodeType":"ElementaryTypeName","src":"5320:7:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":8422,"mutability":"mutable","name":"limit","nameLocation":"5348:5:24","nodeType":"VariableDeclaration","scope":8423,"src":"5340:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":8421,"name":"uint128","nodeType":"ElementaryTypeName","src":"5340:7:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"name":"Exposure","nameLocation":"5305:8:24","nodeType":"StructDefinition","scope":10934,"src":"5298:60:24","visibility":"public"},{"constant":false,"documentation":{"id":8424,"nodeType":"StructuredDocumentation","src":"5362:59:24","text":" @notice Base URI for the minted policy NFTs."},"id":8426,"mutability":"mutable","name":"_nftBaseURI","nameLocation":"5440:11:24","nodeType":"VariableDeclaration","scope":10934,"src":"5424:27:24","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":8425,"name":"string","nodeType":"ElementaryTypeName","src":"5424:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"documentation":{"id":8427,"nodeType":"StructuredDocumentation","src":"5456:84:24","text":" @notice Mapping of current exposures and limits for each risk module."},"id":8433,"mutability":"mutable","name":"_exposureByRm","nameLocation":"5585:13:24","nodeType":"VariableDeclaration","scope":10934,"src":"5543:55:24","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IRiskModule_$14762_$_t_struct$_Exposure_$8423_storage_$","typeString":"mapping(contract IRiskModule => struct PolicyPool.Exposure)"},"typeName":{"id":8432,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":8429,"nodeType":"UserDefinedTypeName","pathNode":{"id":8428,"name":"IRiskModule","nameLocations":["5551:11:24"],"nodeType":"IdentifierPath","referencedDeclaration":14762,"src":"5551:11:24"},"referencedDeclaration":14762,"src":"5551:11:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"nodeType":"Mapping","src":"5543:32:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IRiskModule_$14762_$_t_struct$_Exposure_$8423_storage_$","typeString":"mapping(contract IRiskModule => struct PolicyPool.Exposure)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":8431,"nodeType":"UserDefinedTypeName","pathNode":{"id":8430,"name":"Exposure","nameLocations":["5566:8:24"],"nodeType":"IdentifierPath","referencedDeclaration":8423,"src":"5566:8:24"},"referencedDeclaration":8423,"src":"5566:8:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure"}}},"visibility":"internal"},{"documentation":{"id":8434,"nodeType":"StructuredDocumentation","src":"5603:78:24","text":" @notice Constructor error when address(0) is sent as `access()`"},"errorSelector":"a9f283c9","id":8436,"name":"NoZeroAccess","nameLocation":"5690:12:24","nodeType":"ErrorDefinition","parameters":{"id":8435,"nodeType":"ParameterList","parameters":[],"src":"5702:2:24"},"src":"5684:21:24"},{"documentation":{"id":8437,"nodeType":"StructuredDocumentation","src":"5709:80:24","text":" @notice Constructor error when address(0) is sent as `currency()`"},"errorSelector":"559a03cd","id":8439,"name":"NoZeroCurrency","nameLocation":"5798:14:24","nodeType":"ErrorDefinition","parameters":{"id":8438,"nodeType":"ParameterList","parameters":[],"src":"5812:2:24"},"src":"5792:23:24"},{"documentation":{"id":8440,"nodeType":"StructuredDocumentation","src":"5819:97:24","text":" @notice Constructor error (or setTreasury) when address(0) is sent as `treasury()`"},"errorSelector":"0f45dd16","id":8442,"name":"NoZeroTreasury","nameLocation":"5925:14:24","nodeType":"ErrorDefinition","parameters":{"id":8441,"nodeType":"ParameterList","parameters":[],"src":"5939:2:24"},"src":"5919:23:24"},{"documentation":{"id":8443,"nodeType":"StructuredDocumentation","src":"5946:82:24","text":" @notice Initialization error when empty name for the ERC721 is sent"},"errorSelector":"000beefb","id":8445,"name":"NoEmptyName","nameLocation":"6037:11:24","nodeType":"ErrorDefinition","parameters":{"id":8444,"nodeType":"ParameterList","parameters":[],"src":"6048:2:24"},"src":"6031:20:24"},{"documentation":{"id":8446,"nodeType":"StructuredDocumentation","src":"6055:84:24","text":" @notice Initialization error when empty symbol for the ERC721 is sent"},"errorSelector":"43b47bcb","id":8448,"name":"NoEmptySymbol","nameLocation":"6148:13:24","nodeType":"ErrorDefinition","parameters":{"id":8447,"nodeType":"ParameterList","parameters":[],"src":"6161:2:24"},"src":"6142:22:24"},{"documentation":{"id":8449,"nodeType":"StructuredDocumentation","src":"6168:71:24","text":"@notice Thrown when trying to change the currency during an upgrade"},"errorSelector":"49483686","id":8451,"name":"UpgradeCannotChangeCurrency","nameLocation":"6248:27:24","nodeType":"ErrorDefinition","parameters":{"id":8450,"nodeType":"ParameterList","parameters":[],"src":"6275:2:24"},"src":"6242:36:24"},{"documentation":{"id":8452,"nodeType":"StructuredDocumentation","src":"6282:100:24","text":" @notice Error when trying to add a component that was already added to the PolicyPool"},"errorSelector":"cf9a96f3","id":8454,"name":"ComponentAlreadyInThePool","nameLocation":"6391:25:24","nodeType":"ErrorDefinition","parameters":{"id":8453,"nodeType":"ParameterList","parameters":[],"src":"6416:2:24"},"src":"6385:34:24"},{"documentation":{"id":8455,"nodeType":"StructuredDocumentation","src":"6423:116:24","text":" @notice Error when trying to add a component that isn't linked to this pool (`.policyPool() != this`)"},"errorSelector":"1fbdc486","id":8457,"name":"ComponentNotLinkedToThisPool","nameLocation":"6548:28:24","nodeType":"ErrorDefinition","parameters":{"id":8456,"nodeType":"ParameterList","parameters":[],"src":"6576:2:24"},"src":"6542:37:24"},{"documentation":{"id":8458,"nodeType":"StructuredDocumentation","src":"6583:306:24","text":" @notice Raised when a component is not of the right kind\n @dev It might happen if a component declared as ComponentKind.eToken doesn't support the IEToken interface (or\n similar) or when in a given operation we expect a component to be a risk module and the stored kind is different."},"errorSelector":"502c9a5f","id":8466,"name":"ComponentNotTheRightKind","nameLocation":"6898:24:24","nodeType":"ErrorDefinition","parameters":{"id":8465,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8461,"mutability":"mutable","name":"component","nameLocation":"6944:9:24","nodeType":"VariableDeclaration","scope":8466,"src":"6923:30:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"},"typeName":{"id":8460,"nodeType":"UserDefinedTypeName","pathNode":{"id":8459,"name":"IPolicyPoolComponent","nameLocations":["6923:20:24"],"nodeType":"IdentifierPath","referencedDeclaration":14655,"src":"6923:20:24"},"referencedDeclaration":14655,"src":"6923:20:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"visibility":"internal"},{"constant":false,"id":8464,"mutability":"mutable","name":"expectedKind","nameLocation":"6969:12:24","nodeType":"VariableDeclaration","scope":8466,"src":"6955:26:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},"typeName":{"id":8463,"nodeType":"UserDefinedTypeName","pathNode":{"id":8462,"name":"ComponentKind","nameLocations":["6955:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":8398,"src":"6955:13:24"},"referencedDeclaration":8398,"src":"6955:13:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"visibility":"internal"}],"src":"6922:60:24"},"src":"6892:91:24"},{"documentation":{"id":8467,"nodeType":"StructuredDocumentation","src":"6987:120:24","text":" @notice Error when a component is not deprecated for the operation (see `removeComponent`), when it must."},"errorSelector":"b9256472","id":8469,"name":"ComponentNotDeprecated","nameLocation":"7116:22:24","nodeType":"ErrorDefinition","parameters":{"id":8468,"nodeType":"ParameterList","parameters":[],"src":"7138:2:24"},"src":"7110:31:24"},{"documentation":{"id":8470,"nodeType":"StructuredDocumentation","src":"7145:313:24","text":" @notice Error when trying to remove a component that is still in use.\n @dev The \"in use\" definition can change from one component to the other. For eToken in use means\n `totalSupply() != 0`. For PremiumsAccount means `purePremiums() != 0`. For RiskModule means\n `activeExposure() != 0`."},"errorSelector":"1d0ec0ab","id":8477,"name":"ComponentInUseCannotRemove","nameLocation":"7467:26:24","nodeType":"ErrorDefinition","parameters":{"id":8476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8473,"mutability":"mutable","name":"kind","nameLocation":"7508:4:24","nodeType":"VariableDeclaration","scope":8477,"src":"7494:18:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},"typeName":{"id":8472,"nodeType":"UserDefinedTypeName","pathNode":{"id":8471,"name":"ComponentKind","nameLocations":["7494:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":8398,"src":"7494:13:24"},"referencedDeclaration":8398,"src":"7494:13:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"visibility":"internal"},{"constant":false,"id":8475,"mutability":"mutable","name":"amount","nameLocation":"7522:6:24","nodeType":"VariableDeclaration","scope":8477,"src":"7514:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8474,"name":"uint256","nodeType":"ElementaryTypeName","src":"7514:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7493:36:24"},"src":"7461:69:24"},{"documentation":{"id":8478,"nodeType":"StructuredDocumentation","src":"7534:94:24","text":" @notice Error when a component is not found in the pool (status = 0 = inactive)"},"errorSelector":"7d918563","id":8480,"name":"ComponentNotFound","nameLocation":"7637:17:24","nodeType":"ErrorDefinition","parameters":{"id":8479,"nodeType":"ParameterList","parameters":[],"src":"7654:2:24"},"src":"7631:26:24"},{"documentation":{"id":8481,"nodeType":"StructuredDocumentation","src":"7661:106:24","text":" @notice Error when a component is not found in the pool or is not active (status != active)"},"errorSelector":"0422f25f","id":8483,"name":"ComponentNotFoundOrNotActive","nameLocation":"7776:28:24","nodeType":"ErrorDefinition","parameters":{"id":8482,"nodeType":"ParameterList","parameters":[],"src":"7804:2:24"},"src":"7770:37:24"},{"documentation":{"id":8484,"nodeType":"StructuredDocumentation","src":"7811:132:24","text":"@notice Thrown when attempting to set a component status to `inactive` via changeComponentStatus, use removeComponent() instead."},"errorSelector":"32b409a1","id":8486,"name":"InvalidComponentStatus","nameLocation":"7952:22:24","nodeType":"ErrorDefinition","parameters":{"id":8485,"nodeType":"ParameterList","parameters":[],"src":"7974:2:24"},"src":"7946:31:24"},{"documentation":{"id":8487,"nodeType":"StructuredDocumentation","src":"7981:242:24","text":" @notice Error when a component is not active or deprecated. Happens on some operations like eToken withdrawals or\n policy resolutions that accept the component might be active or deprecated and isn't on any of those states."},"errorSelector":"d08ef1ff","id":8489,"name":"ComponentMustBeActiveOrDeprecated","nameLocation":"8232:33:24","nodeType":"ErrorDefinition","parameters":{"id":8488,"nodeType":"ParameterList","parameters":[],"src":"8265:2:24"},"src":"8226:42:24"},{"documentation":{"id":8490,"nodeType":"StructuredDocumentation","src":"8272:140:24","text":" @notice Error when a method intented to be called by riskModule (and by policy's risk module) is called by\n someone else."},"errorSelector":"4ace04f9","id":8492,"name":"OnlyRiskModuleAllowed","nameLocation":"8421:21:24","nodeType":"ErrorDefinition","parameters":{"id":8491,"nodeType":"ParameterList","parameters":[],"src":"8442:2:24"},"src":"8415:30:24"},{"documentation":{"id":8493,"nodeType":"StructuredDocumentation","src":"8449:158:24","text":" @notice Raised when IPolicyHolder doesn't return the expected selector answer when notified of policy payout,\n replacement or cancellation."},"errorSelector":"81784a51","id":8497,"name":"InvalidNotificationResponse","nameLocation":"8616:27:24","nodeType":"ErrorDefinition","parameters":{"id":8496,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8495,"mutability":"mutable","name":"response","nameLocation":"8651:8:24","nodeType":"VariableDeclaration","scope":8497,"src":"8644:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":8494,"name":"bytes4","nodeType":"ElementaryTypeName","src":"8644:6:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"8643:17:24"},"src":"8610:51:24"},{"documentation":{"id":8498,"nodeType":"StructuredDocumentation","src":"8665:84:24","text":"@notice Thrown when attempting to create a policy with an ID that already exists"},"errorSelector":"15e46fbb","id":8502,"name":"PolicyAlreadyExists","nameLocation":"8758:19:24","nodeType":"ErrorDefinition","parameters":{"id":8501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8500,"mutability":"mutable","name":"policyId","nameLocation":"8786:8:24","nodeType":"VariableDeclaration","scope":8502,"src":"8778:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8499,"name":"uint256","nodeType":"ElementaryTypeName","src":"8778:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8777:18:24"},"src":"8752:44:24"},{"documentation":{"id":8503,"nodeType":"StructuredDocumentation","src":"8800:117:24","text":"@notice Thrown when attempting to process an action (other than expiration) on a policy after its expiration date"},"errorSelector":"0844aa5e","id":8507,"name":"PolicyAlreadyExpired","nameLocation":"8926:20:24","nodeType":"ErrorDefinition","parameters":{"id":8506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8505,"mutability":"mutable","name":"policyId","nameLocation":"8955:8:24","nodeType":"VariableDeclaration","scope":8507,"src":"8947:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8504,"name":"uint256","nodeType":"ElementaryTypeName","src":"8947:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8946:18:24"},"src":"8920:45:24"},{"documentation":{"id":8508,"nodeType":"StructuredDocumentation","src":"8969:112:24","text":"@notice Thrown when attempting to execute an action on a policy that does not exist (or was already expired)"},"errorSelector":"43bebf4a","id":8512,"name":"PolicyNotFound","nameLocation":"9090:14:24","nodeType":"ErrorDefinition","parameters":{"id":8511,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8510,"mutability":"mutable","name":"policyId","nameLocation":"9113:8:24","nodeType":"VariableDeclaration","scope":8512,"src":"9105:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8509,"name":"uint256","nodeType":"ElementaryTypeName","src":"9105:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9104:18:24"},"src":"9084:39:24"},{"documentation":{"id":8513,"nodeType":"StructuredDocumentation","src":"9127:315:24","text":" @notice Thrown when attempting to expire a policy, but the policy is still active (policy.expiration >\n block.timestamp)\n @param policyId The ID of the policy that is not yet expired\n @param expiration The timestamp when the policy expires\n @param now The current block timestamp"},"errorSelector":"6257fbae","id":8521,"name":"PolicyNotExpired","nameLocation":"9451:16:24","nodeType":"ErrorDefinition","parameters":{"id":8520,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8515,"mutability":"mutable","name":"policyId","nameLocation":"9476:8:24","nodeType":"VariableDeclaration","scope":8521,"src":"9468:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8514,"name":"uint256","nodeType":"ElementaryTypeName","src":"9468:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8517,"mutability":"mutable","name":"expiration","nameLocation":"9493:10:24","nodeType":"VariableDeclaration","scope":8521,"src":"9486:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":8516,"name":"uint40","nodeType":"ElementaryTypeName","src":"9486:6:24","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":8519,"mutability":"mutable","name":"now","nameLocation":"9513:3:24","nodeType":"VariableDeclaration","scope":8521,"src":"9505:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8518,"name":"uint256","nodeType":"ElementaryTypeName","src":"9505:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9467:50:24"},"src":"9445:73:24"},{"documentation":{"id":8522,"nodeType":"StructuredDocumentation","src":"9522:392:24","text":" @notice Thrown when attempting to replace a policy with an invalid replacement\n @dev This could occur if the policies have a different start, or if any of the premium components of the\n      newPolicy are lower than the same component of the original policy.\n @param oldPolicy The original policy data\n @param newPolicy The proposed replacement policy data"},"errorSelector":"7fd52140","id":8530,"name":"InvalidPolicyReplacement","nameLocation":"9923:24:24","nodeType":"ErrorDefinition","parameters":{"id":8529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8525,"mutability":"mutable","name":"oldPolicy","nameLocation":"9966:9:24","nodeType":"VariableDeclaration","scope":8530,"src":"9948:27:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":8524,"nodeType":"UserDefinedTypeName","pathNode":{"id":8523,"name":"Policy.PolicyData","nameLocations":["9948:6:24","9955:10:24"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"9948:17:24"},"referencedDeclaration":7744,"src":"9948:17:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":8528,"mutability":"mutable","name":"newPolicy","nameLocation":"9995:9:24","nodeType":"VariableDeclaration","scope":8530,"src":"9977:27:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":8527,"nodeType":"UserDefinedTypeName","pathNode":{"id":8526,"name":"Policy.PolicyData","nameLocations":["9977:6:24","9984:10:24"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"9977:17:24"},"referencedDeclaration":7744,"src":"9977:17:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"9947:58:24"},"src":"9917:89:24"},{"documentation":{"id":8531,"nodeType":"StructuredDocumentation","src":"10010:441:24","text":" @notice Thrown when attempting to cancel a policy with invalid refunds\n @dev The refunds amounts can never exceed the original premium components.\n @param policyToCancel The data of the policy being cancelled\n @param purePremiumRefund The amount to refund from pure premium charged\n @param jrCocRefund The amount to refund from jrCoc charged\n @param srCocRefund The amount to refund from srCoc charged"},"errorSelector":"a02db783","id":8542,"name":"InvalidPolicyCancellation","nameLocation":"10460:25:24","nodeType":"ErrorDefinition","parameters":{"id":8541,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8534,"mutability":"mutable","name":"policyToCancel","nameLocation":"10509:14:24","nodeType":"VariableDeclaration","scope":8542,"src":"10491:32:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":8533,"nodeType":"UserDefinedTypeName","pathNode":{"id":8532,"name":"Policy.PolicyData","nameLocations":["10491:6:24","10498:10:24"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"10491:17:24"},"referencedDeclaration":7744,"src":"10491:17:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":8536,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"10537:17:24","nodeType":"VariableDeclaration","scope":8542,"src":"10529:25:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8535,"name":"uint256","nodeType":"ElementaryTypeName","src":"10529:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8538,"mutability":"mutable","name":"jrCocRefund","nameLocation":"10568:11:24","nodeType":"VariableDeclaration","scope":8542,"src":"10560:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8537,"name":"uint256","nodeType":"ElementaryTypeName","src":"10560:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8540,"mutability":"mutable","name":"srCocRefund","nameLocation":"10593:11:24","nodeType":"VariableDeclaration","scope":8542,"src":"10585:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8539,"name":"uint256","nodeType":"ElementaryTypeName","src":"10585:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10485:123:24"},"src":"10454:155:24"},{"documentation":{"id":8543,"nodeType":"StructuredDocumentation","src":"10613:84:24","text":"@notice Thrown when a requested payout exceeds the policy's maximum payout limit"},"errorSelector":"17d3b4f9","id":8549,"name":"PayoutExceedsLimit","nameLocation":"10706:18:24","nodeType":"ErrorDefinition","parameters":{"id":8548,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8545,"mutability":"mutable","name":"payout","nameLocation":"10733:6:24","nodeType":"VariableDeclaration","scope":8549,"src":"10725:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8544,"name":"uint256","nodeType":"ElementaryTypeName","src":"10725:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8547,"mutability":"mutable","name":"policyPayout","nameLocation":"10749:12:24","nodeType":"VariableDeclaration","scope":8549,"src":"10741:20:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8546,"name":"uint256","nodeType":"ElementaryTypeName","src":"10741:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10724:38:24"},"src":"10700:63:24"},{"documentation":{"id":8550,"nodeType":"StructuredDocumentation","src":"10767:96:24","text":"@notice Thrown when an action would cause the active exposure to exceed the configured limit"},"errorSelector":"67036898","id":8556,"name":"ExposureLimitExceeded","nameLocation":"10872:21:24","nodeType":"ErrorDefinition","parameters":{"id":8555,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8552,"mutability":"mutable","name":"activeExposure","nameLocation":"10902:14:24","nodeType":"VariableDeclaration","scope":8556,"src":"10894:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":8551,"name":"uint128","nodeType":"ElementaryTypeName","src":"10894:7:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":8554,"mutability":"mutable","name":"exposureLimit","nameLocation":"10926:13:24","nodeType":"VariableDeclaration","scope":8556,"src":"10918:21:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":8553,"name":"uint128","nodeType":"ElementaryTypeName","src":"10918:7:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"10893:47:24"},"src":"10866:75:24"},{"documentation":{"id":8557,"nodeType":"StructuredDocumentation","src":"10945:111:24","text":"@notice Thrown when an invalid receiver address (address(0)) is provided as received of deposit or withdraw"},"errorSelector":"9cfea583","id":8561,"name":"InvalidReceiver","nameLocation":"11065:15:24","nodeType":"ErrorDefinition","parameters":{"id":8560,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8559,"mutability":"mutable","name":"receiver","nameLocation":"11089:8:24","nodeType":"VariableDeclaration","scope":8561,"src":"11081:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8558,"name":"address","nodeType":"ElementaryTypeName","src":"11081:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11080:18:24"},"src":"11059:40:24"},{"anonymous":false,"documentation":{"id":8562,"nodeType":"StructuredDocumentation","src":"11103:239:24","text":" @notice Event emitted when the treasury (who receives ensuroCommission) changes\n @param oldTreasury The address of the treasury before the change\n @param newTreasury  The address of the treasury after the change"},"eventSelector":"8c3aa5f43a388513435861bf27dfad7829cd248696fed367c62d441f62954496","id":8568,"name":"TreasuryChanged","nameLocation":"11351:15:24","nodeType":"EventDefinition","parameters":{"id":8567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8564,"indexed":false,"mutability":"mutable","name":"oldTreasury","nameLocation":"11375:11:24","nodeType":"VariableDeclaration","scope":8568,"src":"11367:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8563,"name":"address","nodeType":"ElementaryTypeName","src":"11367:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8566,"indexed":false,"mutability":"mutable","name":"newTreasury","nameLocation":"11396:11:24","nodeType":"VariableDeclaration","scope":8568,"src":"11388:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8565,"name":"address","nodeType":"ElementaryTypeName","src":"11388:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11366:42:24"},"src":"11345:64:24"},{"anonymous":false,"documentation":{"id":8569,"nodeType":"StructuredDocumentation","src":"11413:189:24","text":" @notice Event emitted when the baseURI (for policy NFTs) changes\n @param oldBaseURI The baseURI before the change\n @param newBaseURI The baseURI after the change"},"eventSelector":"c41b7cb64e5be01af4afc2641afc861432136270f4206b7773f229b658b96699","id":8575,"name":"BaseURIChanged","nameLocation":"11611:14:24","nodeType":"EventDefinition","parameters":{"id":8574,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8571,"indexed":false,"mutability":"mutable","name":"oldBaseURI","nameLocation":"11633:10:24","nodeType":"VariableDeclaration","scope":8575,"src":"11626:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8570,"name":"string","nodeType":"ElementaryTypeName","src":"11626:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8573,"indexed":false,"mutability":"mutable","name":"newBaseURI","nameLocation":"11652:10:24","nodeType":"VariableDeclaration","scope":8575,"src":"11645:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8572,"name":"string","nodeType":"ElementaryTypeName","src":"11645:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"11625:38:24"},"src":"11605:59:24"},{"anonymous":false,"documentation":{"id":8576,"nodeType":"StructuredDocumentation","src":"11668:390:24","text":" @notice Event emitted when a new component added/removed to the pool or the status changes.\n @param component The address of the component, it can be an {EToken}, {RiskModule} or {PremiumsAccount}\n @param kind Value indicating the kind of component. See {ComponentKind}\n @param newStatus The status of the component after the operation. See {ComponentStatus}"},"eventSelector":"fe4c6998a06520b63340a48710b374432cb395da90e4e5360e1ec7aeefebecef","id":8587,"name":"ComponentStatusChanged","nameLocation":"12067:22:24","nodeType":"EventDefinition","parameters":{"id":8586,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8579,"indexed":true,"mutability":"mutable","name":"component","nameLocation":"12119:9:24","nodeType":"VariableDeclaration","scope":8587,"src":"12090:38:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"},"typeName":{"id":8578,"nodeType":"UserDefinedTypeName","pathNode":{"id":8577,"name":"IPolicyPoolComponent","nameLocations":["12090:20:24"],"nodeType":"IdentifierPath","referencedDeclaration":14655,"src":"12090:20:24"},"referencedDeclaration":14655,"src":"12090:20:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"visibility":"internal"},{"constant":false,"id":8582,"indexed":false,"mutability":"mutable","name":"kind","nameLocation":"12144:4:24","nodeType":"VariableDeclaration","scope":8587,"src":"12130:18:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},"typeName":{"id":8581,"nodeType":"UserDefinedTypeName","pathNode":{"id":8580,"name":"ComponentKind","nameLocations":["12130:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":8398,"src":"12130:13:24"},"referencedDeclaration":8398,"src":"12130:13:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"visibility":"internal"},{"constant":false,"id":8585,"indexed":false,"mutability":"mutable","name":"newStatus","nameLocation":"12166:9:24","nodeType":"VariableDeclaration","scope":8587,"src":"12150:25:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"},"typeName":{"id":8584,"nodeType":"UserDefinedTypeName","pathNode":{"id":8583,"name":"ComponentStatus","nameLocations":["12150:15:24"],"nodeType":"IdentifierPath","referencedDeclaration":8392,"src":"12150:15:24"},"referencedDeclaration":8392,"src":"12150:15:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"visibility":"internal"}],"src":"12089:87:24"},"src":"12061:116:24"},{"anonymous":false,"documentation":{"id":8588,"nodeType":"StructuredDocumentation","src":"12181:256:24","text":" @notice Event emitted when a IPolicyHolder reverts on the expiration notification. The operation doesn't reverts\n @param policyId The id of the policy being expired\n @param holder The address of the contract that owns the policy"},"eventSelector":"6ce8016f81523f240956bca9a698e643d09e84e7d0e931470b1016baf1027bd0","id":8595,"name":"ExpirationNotificationFailed","nameLocation":"12446:28:24","nodeType":"EventDefinition","parameters":{"id":8594,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8590,"indexed":true,"mutability":"mutable","name":"policyId","nameLocation":"12491:8:24","nodeType":"VariableDeclaration","scope":8595,"src":"12475:24:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8589,"name":"uint256","nodeType":"ElementaryTypeName","src":"12475:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8593,"indexed":false,"mutability":"mutable","name":"holder","nameLocation":"12515:6:24","nodeType":"VariableDeclaration","scope":8595,"src":"12501:20:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyHolder_$14449","typeString":"contract IPolicyHolder"},"typeName":{"id":8592,"nodeType":"UserDefinedTypeName","pathNode":{"id":8591,"name":"IPolicyHolder","nameLocations":["12501:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":14449,"src":"12501:13:24"},"referencedDeclaration":14449,"src":"12501:13:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyHolder_$14449","typeString":"contract IPolicyHolder"}},"visibility":"internal"}],"src":"12474:48:24"},"src":"12440:83:24"},{"anonymous":false,"documentation":{"id":8596,"nodeType":"StructuredDocumentation","src":"12527:274:24","text":" @notice Event emitted when the exposure limit for a given risk module is changed\n @param riskModule The risk module whose limit will be changed\n @param oldLimit Exposure limit before the change\n @param newLimit Exposure limit after the change"},"eventSelector":"7e1092696182a6d6922c9583db468951527f21f67f9f2f4911ed3f7bbf02b330","id":8605,"name":"ExposureLimitChanged","nameLocation":"12810:20:24","nodeType":"EventDefinition","parameters":{"id":8604,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8599,"indexed":true,"mutability":"mutable","name":"riskModule","nameLocation":"12851:10:24","nodeType":"VariableDeclaration","scope":8605,"src":"12831:30:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},"typeName":{"id":8598,"nodeType":"UserDefinedTypeName","pathNode":{"id":8597,"name":"IRiskModule","nameLocations":["12831:11:24"],"nodeType":"IdentifierPath","referencedDeclaration":14762,"src":"12831:11:24"},"referencedDeclaration":14762,"src":"12831:11:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"visibility":"internal"},{"constant":false,"id":8601,"indexed":false,"mutability":"mutable","name":"oldLimit","nameLocation":"12871:8:24","nodeType":"VariableDeclaration","scope":8605,"src":"12863:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":8600,"name":"uint128","nodeType":"ElementaryTypeName","src":"12863:7:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":8603,"indexed":false,"mutability":"mutable","name":"newLimit","nameLocation":"12889:8:24","nodeType":"VariableDeclaration","scope":8605,"src":"12881:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":8602,"name":"uint128","nodeType":"ElementaryTypeName","src":"12881:7:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"12830:68:24"},"src":"12804:95:24"},{"anonymous":false,"documentation":{"id":8606,"nodeType":"StructuredDocumentation","src":"12903:388:24","text":" @notice Event emitted for every deposit into an eToken\n @param eToken The eToken receiving the funds\n @param sender The sender of the funds (the user calling `deposit` or `depositWithPermit`)\n @param owner The user that will receive the minted eTokens\n @param amount Amount in `currency()` paid for the eTokens (equal to the amount of eTokens received)"},"eventSelector":"7cfff908a4b583f36430b25d75964c458d8ede8a99bd61be750e97ee1b2f3a96","id":8617,"name":"Deposit","nameLocation":"13300:7:24","nodeType":"EventDefinition","parameters":{"id":8616,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8609,"indexed":true,"mutability":"mutable","name":"eToken","nameLocation":"13324:6:24","nodeType":"VariableDeclaration","scope":8617,"src":"13308:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":8608,"nodeType":"UserDefinedTypeName","pathNode":{"id":8607,"name":"IEToken","nameLocations":["13308:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"13308:7:24"},"referencedDeclaration":14336,"src":"13308:7:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":8611,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"13348:6:24","nodeType":"VariableDeclaration","scope":8617,"src":"13332:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8610,"name":"address","nodeType":"ElementaryTypeName","src":"13332:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8613,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"13372:5:24","nodeType":"VariableDeclaration","scope":8617,"src":"13356:21:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8612,"name":"address","nodeType":"ElementaryTypeName","src":"13356:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8615,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"13387:6:24","nodeType":"VariableDeclaration","scope":8617,"src":"13379:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8614,"name":"uint256","nodeType":"ElementaryTypeName","src":"13379:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13307:87:24"},"src":"13294:101:24"},{"anonymous":false,"documentation":{"id":8618,"nodeType":"StructuredDocumentation","src":"13399:459:24","text":" @notice Event emitted for every withdrawal from an eToken\n @param eToken The eToken where the withdrawal will be done\n @param sender The user calling the withdraw method. Must be the owner or have spending approval from it.\n @param receiver The user that receives the resulting funds (`currency()`)\n @param owner The owner of the burned eTokens\n @param amount Amount in `currency()` that will be received by `receiver`."},"eventSelector":"e826ecb5c03d4897f8ab426ee94064e06179dff39cd9fdd0776904cd935c95d8","id":8631,"name":"Withdraw","nameLocation":"13867:8:24","nodeType":"EventDefinition","parameters":{"id":8630,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8621,"indexed":true,"mutability":"mutable","name":"eToken","nameLocation":"13897:6:24","nodeType":"VariableDeclaration","scope":8631,"src":"13881:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":8620,"nodeType":"UserDefinedTypeName","pathNode":{"id":8619,"name":"IEToken","nameLocations":["13881:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"13881:7:24"},"referencedDeclaration":14336,"src":"13881:7:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":8623,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"13925:6:24","nodeType":"VariableDeclaration","scope":8631,"src":"13909:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8622,"name":"address","nodeType":"ElementaryTypeName","src":"13909:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8625,"indexed":true,"mutability":"mutable","name":"receiver","nameLocation":"13953:8:24","nodeType":"VariableDeclaration","scope":8631,"src":"13937:24:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8624,"name":"address","nodeType":"ElementaryTypeName","src":"13937:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8627,"indexed":false,"mutability":"mutable","name":"owner","nameLocation":"13975:5:24","nodeType":"VariableDeclaration","scope":8631,"src":"13967:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8626,"name":"address","nodeType":"ElementaryTypeName","src":"13967:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8629,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"13994:6:24","nodeType":"VariableDeclaration","scope":8631,"src":"13986:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8628,"name":"uint256","nodeType":"ElementaryTypeName","src":"13986:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13875:129:24"},"src":"13861:144:24"},{"body":{"id":8658,"nodeType":"Block","src":"14294:127:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8646,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8640,"name":"currency_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8635,"src":"14312:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}],"id":8639,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14304:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8638,"name":"address","nodeType":"ElementaryTypeName","src":"14304:7:24","typeDescriptions":{}}},"id":8641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14304:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":8644,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14334: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":8643,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14326:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8642,"name":"address","nodeType":"ElementaryTypeName","src":"14326:7:24","typeDescriptions":{}}},"id":8645,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14326:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"14304:32:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8650,"nodeType":"IfStatement","src":"14300:61:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8647,"name":"NoZeroCurrency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8439,"src":"14345:14:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":8648,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14345:16:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8649,"nodeType":"RevertStatement","src":"14338:23:24"}},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8651,"name":"_disableInitializers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23388,"src":"14367:20:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":8652,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14367:22:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8653,"nodeType":"ExpressionStatement","src":"14367:22:24"},{"expression":{"id":8656,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8654,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8379,"src":"14395:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8655,"name":"currency_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8635,"src":"14407:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"src":"14395:21:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":8657,"nodeType":"ExpressionStatement","src":"14395:21:24"}]},"documentation":{"id":8632,"nodeType":"StructuredDocumentation","src":"14205:48:24","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":8659,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":8636,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8635,"mutability":"mutable","name":"currency_","nameLocation":"14283:9:24","nodeType":"VariableDeclaration","scope":8659,"src":"14268:24:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"},"typeName":{"id":8634,"nodeType":"UserDefinedTypeName","pathNode":{"id":8633,"name":"IERC20Metadata","nameLocations":["14268:14:24"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"14268:14:24"},"referencedDeclaration":24925,"src":"14268:14:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"14267:26:24"},"returnParameters":{"id":8637,"nodeType":"ParameterList","parameters":[],"src":"14294:0:24"},"scope":10934,"src":"14256:165:24","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":8705,"nodeType":"Block","src":"14767:223:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8677,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":8673,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8662,"src":"14783:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8672,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14777:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8671,"name":"bytes","nodeType":"ElementaryTypeName","src":"14777:5:24","typeDescriptions":{}}},"id":8674,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14777:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14790:6:24","memberName":"length","nodeType":"MemberAccess","src":"14777:19:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":8676,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14800:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14777:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8681,"nodeType":"IfStatement","src":"14773:50:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8678,"name":"NoEmptyName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8445,"src":"14810:11:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":8679,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14810:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8680,"nodeType":"RevertStatement","src":"14803:20:24"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":8684,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8664,"src":"14839:7:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8683,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14833:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8682,"name":"bytes","nodeType":"ElementaryTypeName","src":"14833:5:24","typeDescriptions":{}}},"id":8685,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14833:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":8686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14848:6:24","memberName":"length","nodeType":"MemberAccess","src":"14833:21:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":8687,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14858:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14833:26:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8692,"nodeType":"IfStatement","src":"14829:54:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8689,"name":"NoEmptySymbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8448,"src":"14868:13:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":8690,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14868:15:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8691,"nodeType":"RevertStatement","src":"14861:22:24"}},{"expression":{"arguments":[{"id":8694,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8662,"src":"14903:5:24","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8695,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8664,"src":"14910:7:24","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"}],"id":8693,"name":"__ERC721_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17633,"src":"14889:13:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":8696,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14889:29:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8697,"nodeType":"ExpressionStatement","src":"14889:29:24"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8698,"name":"__Pausable_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18950,"src":"14924:15:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":8699,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14924:17:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8700,"nodeType":"ExpressionStatement","src":"14924:17:24"},{"expression":{"arguments":[{"id":8702,"name":"treasury_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8666,"src":"14975:9:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8701,"name":"__PolicyPool_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8740,"src":"14947:27:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":8703,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14947:38:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8704,"nodeType":"ExpressionStatement","src":"14947:38:24"}]},"documentation":{"id":8660,"nodeType":"StructuredDocumentation","src":"14425:237:24","text":" @dev Initializes a Policy Pool\n @param name_ The name of the ERC721 token.\n @param symbol_ The symbol of the ERC721 token.\n @param treasury_ The address of the treasury that will receive the protocol fees."},"functionSelector":"077f224a","id":8706,"implemented":true,"kind":"function","modifiers":[{"id":8669,"kind":"modifierInvocation","modifierName":{"id":8668,"name":"initializer","nameLocations":["14755:11:24"],"nodeType":"IdentifierPath","referencedDeclaration":23274,"src":"14755:11:24"},"nodeType":"ModifierInvocation","src":"14755:11:24"}],"name":"initialize","nameLocation":"14674:10:24","nodeType":"FunctionDefinition","parameters":{"id":8667,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8662,"mutability":"mutable","name":"name_","nameLocation":"14699:5:24","nodeType":"VariableDeclaration","scope":8706,"src":"14685:19:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8661,"name":"string","nodeType":"ElementaryTypeName","src":"14685:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8664,"mutability":"mutable","name":"symbol_","nameLocation":"14720:7:24","nodeType":"VariableDeclaration","scope":8706,"src":"14706:21:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8663,"name":"string","nodeType":"ElementaryTypeName","src":"14706:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8666,"mutability":"mutable","name":"treasury_","nameLocation":"14737:9:24","nodeType":"VariableDeclaration","scope":8706,"src":"14729:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8665,"name":"address","nodeType":"ElementaryTypeName","src":"14729:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14684:63:24"},"returnParameters":{"id":8670,"nodeType":"ParameterList","parameters":[],"src":"14767:0:24"},"scope":10934,"src":"14665:325:24","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[17692],"body":{"id":8727,"nodeType":"Block","src":"15111:102:24","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8717,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8709,"src":"15148:11:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":8715,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"15124:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_PolicyPool_$10934_$","typeString":"type(contract super PolicyPool)"}},"id":8716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15130:17:24","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":17692,"src":"15124:23:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":8718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15124:36:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":8724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8719,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8709,"src":"15164:11:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":8721,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14638,"src":"15184:11:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPool_$14638_$","typeString":"type(contract IPolicyPool)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyPool_$14638_$","typeString":"type(contract IPolicyPool)"}],"id":8720,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15179:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":8722,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15179:17:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyPool_$14638","typeString":"type(contract IPolicyPool)"}},"id":8723,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15197:11:24","memberName":"interfaceId","nodeType":"MemberAccess","src":"15179:29:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"15164:44:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15124:84:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":8714,"id":8726,"nodeType":"Return","src":"15117:91:24"}]},"documentation":{"id":8707,"nodeType":"StructuredDocumentation","src":"14994:23:24","text":"@inheritdoc IERC165"},"functionSelector":"01ffc9a7","id":8728,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"15029:17:24","nodeType":"FunctionDefinition","overrides":{"id":8711,"nodeType":"OverrideSpecifier","overrides":[],"src":"15087:8:24"},"parameters":{"id":8710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8709,"mutability":"mutable","name":"interfaceId","nameLocation":"15054:11:24","nodeType":"VariableDeclaration","scope":8728,"src":"15047:18:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":8708,"name":"bytes4","nodeType":"ElementaryTypeName","src":"15047:6:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"15046:20:24"},"returnParameters":{"id":8714,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8713,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8728,"src":"15105:4:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8712,"name":"bool","nodeType":"ElementaryTypeName","src":"15105:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"15104:6:24"},"scope":10934,"src":"15020:193:24","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":8739,"nodeType":"Block","src":"15350:34:24","statements":[{"expression":{"arguments":[{"id":8736,"name":"treasury_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8730,"src":"15369:9:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8735,"name":"_setTreasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8815,"src":"15356:12:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":8737,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15356:23:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8738,"nodeType":"ExpressionStatement","src":"15356:23:24"}]},"id":8740,"implemented":true,"kind":"function","modifiers":[{"id":8733,"kind":"modifierInvocation","modifierName":{"id":8732,"name":"onlyInitializing","nameLocations":["15333:16:24"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"15333:16:24"},"nodeType":"ModifierInvocation","src":"15333:16:24"}],"name":"__PolicyPool_init_unchained","nameLocation":"15277:27:24","nodeType":"FunctionDefinition","parameters":{"id":8731,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8730,"mutability":"mutable","name":"treasury_","nameLocation":"15313:9:24","nodeType":"VariableDeclaration","scope":8740,"src":"15305:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8729,"name":"address","nodeType":"ElementaryTypeName","src":"15305:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15304:19:24"},"returnParameters":{"id":8734,"nodeType":"ParameterList","parameters":[],"src":"15350:0:24"},"scope":10934,"src":"15268:116:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[23554],"body":{"id":8762,"nodeType":"Block","src":"15455:132:24","statements":[{"assignments":[8748],"declarations":[{"constant":false,"id":8748,"mutability":"mutable","name":"newPool","nameLocation":"15473:7:24","nodeType":"VariableDeclaration","scope":8762,"src":"15461:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"},"typeName":{"id":8747,"nodeType":"UserDefinedTypeName","pathNode":{"id":8746,"name":"IPolicyPool","nameLocations":["15461:11:24"],"nodeType":"IdentifierPath","referencedDeclaration":14638,"src":"15461:11:24"},"referencedDeclaration":14638,"src":"15461:11:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"id":8752,"initialValue":{"arguments":[{"id":8750,"name":"newImpl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8742,"src":"15495:7:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8749,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14638,"src":"15483:11:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPool_$14638_$","typeString":"type(contract IPolicyPool)"}},"id":8751,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15483:20:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"nodeType":"VariableDeclarationStatement","src":"15461:42:24"},{"condition":{"commonType":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"},"id":8757,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8753,"name":"newPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8748,"src":"15513:7:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"id":8754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15521:8:24","memberName":"currency","nodeType":"MemberAccess","referencedDeclaration":14510,"src":"15513:16:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IERC20Metadata_$24925_$","typeString":"function () view external returns (contract IERC20Metadata)"}},"id":8755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15513:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8756,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8379,"src":"15535:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"src":"15513:31:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8761,"nodeType":"IfStatement","src":"15509:73:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8758,"name":"UpgradeCannotChangeCurrency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8451,"src":"15553:27:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":8759,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15553:29:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8760,"nodeType":"RevertStatement","src":"15546:36:24"}}]},"id":8763,"implemented":true,"kind":"function","modifiers":[],"name":"_authorizeUpgrade","nameLocation":"15397:17:24","nodeType":"FunctionDefinition","overrides":{"id":8744,"nodeType":"OverrideSpecifier","overrides":[],"src":"15446:8:24"},"parameters":{"id":8743,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8742,"mutability":"mutable","name":"newImpl","nameLocation":"15423:7:24","nodeType":"VariableDeclaration","scope":8763,"src":"15415:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8741,"name":"address","nodeType":"ElementaryTypeName","src":"15415:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15414:17:24"},"returnParameters":{"id":8745,"nodeType":"ParameterList","parameters":[],"src":"15455:0:24"},"scope":10934,"src":"15388:199:24","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":8770,"nodeType":"Block","src":"15824:19:24","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8767,"name":"_pause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19021,"src":"15830:6:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":8768,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15830:8:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8769,"nodeType":"ExpressionStatement","src":"15830:8:24"}]},"documentation":{"id":8764,"nodeType":"StructuredDocumentation","src":"15591:206:24","text":" @notice Pauses the contract.\n @dev When the contract is paused, several operations are rejected: deposits, withdrawals, new\n policies, policy resolution and expiration, nft transfers."},"functionSelector":"8456cb59","id":8771,"implemented":true,"kind":"function","modifiers":[],"name":"pause","nameLocation":"15809:5:24","nodeType":"FunctionDefinition","parameters":{"id":8765,"nodeType":"ParameterList","parameters":[],"src":"15814:2:24"},"returnParameters":{"id":8766,"nodeType":"ParameterList","parameters":[],"src":"15824:0:24"},"scope":10934,"src":"15800:43:24","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":8778,"nodeType":"Block","src":"16004:21:24","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8775,"name":"_unpause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19045,"src":"16010:8:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":8776,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16010:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8777,"nodeType":"ExpressionStatement","src":"16010:10:24"}]},"documentation":{"id":8772,"nodeType":"StructuredDocumentation","src":"15847:128:24","text":" @notice Unpauses the contract.\n @dev All the operations disabled when the contract was paused are re-enabled."},"functionSelector":"3f4ba83a","id":8779,"implemented":true,"kind":"function","modifiers":[],"name":"unpause","nameLocation":"15987:7:24","nodeType":"FunctionDefinition","parameters":{"id":8773,"nodeType":"ParameterList","parameters":[],"src":"15994:2:24"},"returnParameters":{"id":8774,"nodeType":"ParameterList","parameters":[],"src":"16004:0:24"},"scope":10934,"src":"15978:47:24","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[14510],"body":{"id":8789,"nodeType":"Block","src":"16135:27:24","statements":[{"expression":{"id":8787,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8379,"src":"16148:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"functionReturnParameters":8786,"id":8788,"nodeType":"Return","src":"16141:16:24"}]},"documentation":{"id":8780,"nodeType":"StructuredDocumentation","src":"16029:27:24","text":"@inheritdoc IPolicyPool"},"functionSelector":"e5a6b10f","id":8790,"implemented":true,"kind":"function","modifiers":[],"name":"currency","nameLocation":"16068:8:24","nodeType":"FunctionDefinition","overrides":{"id":8782,"nodeType":"OverrideSpecifier","overrides":[],"src":"16101:8:24"},"parameters":{"id":8781,"nodeType":"ParameterList","parameters":[],"src":"16076:2:24"},"returnParameters":{"id":8786,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8785,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8790,"src":"16119:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"},"typeName":{"id":8784,"nodeType":"UserDefinedTypeName","pathNode":{"id":8783,"name":"IERC20Metadata","nameLocations":["16119:14:24"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"16119:14:24"},"referencedDeclaration":24925,"src":"16119:14:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"16118:16:24"},"scope":10934,"src":"16059:103:24","stateMutability":"view","virtual":true,"visibility":"external"},{"body":{"id":8814,"nodeType":"Block","src":"16216:138:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8795,"name":"treasury_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8792,"src":"16226:9:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":8798,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16247: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":8797,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16239:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8796,"name":"address","nodeType":"ElementaryTypeName","src":"16239:7:24","typeDescriptions":{}}},"id":8799,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16239:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16226:23:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8804,"nodeType":"IfStatement","src":"16222:52:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8801,"name":"NoZeroTreasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8442,"src":"16258:14:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":8802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16258:16:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8803,"nodeType":"RevertStatement","src":"16251:23:24"}},{"eventCall":{"arguments":[{"id":8806,"name":"_treasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8382,"src":"16301:9:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8807,"name":"treasury_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8792,"src":"16312:9:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":8805,"name":"TreasuryChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8568,"src":"16285:15:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":8808,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16285:37:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8809,"nodeType":"EmitStatement","src":"16280:42:24"},{"expression":{"id":8812,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8810,"name":"_treasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8382,"src":"16328:9:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8811,"name":"treasury_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8792,"src":"16340:9:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16328:21:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":8813,"nodeType":"ExpressionStatement","src":"16328:21:24"}]},"id":8815,"implemented":true,"kind":"function","modifiers":[],"name":"_setTreasury","nameLocation":"16175:12:24","nodeType":"FunctionDefinition","parameters":{"id":8793,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8792,"mutability":"mutable","name":"treasury_","nameLocation":"16196:9:24","nodeType":"VariableDeclaration","scope":8815,"src":"16188:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8791,"name":"address","nodeType":"ElementaryTypeName","src":"16188:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"16187:19:24"},"returnParameters":{"id":8794,"nodeType":"ParameterList","parameters":[],"src":"16216:0:24"},"scope":10934,"src":"16166:188:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":8825,"nodeType":"Block","src":"16589:34:24","statements":[{"expression":{"arguments":[{"id":8822,"name":"treasury_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8818,"src":"16608:9:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8821,"name":"_setTreasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8815,"src":"16595:12:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":8823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16595:23:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8824,"nodeType":"ExpressionStatement","src":"16595:23:24"}]},"documentation":{"id":8816,"nodeType":"StructuredDocumentation","src":"16358:179:24","text":" @notice Changes the address of the treasury, the one that receives the protocol fees.\n @custom:emits TreasuryChanged with the previous and current treasury"},"functionSelector":"f0f44260","id":8826,"implemented":true,"kind":"function","modifiers":[],"name":"setTreasury","nameLocation":"16549:11:24","nodeType":"FunctionDefinition","parameters":{"id":8819,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8818,"mutability":"mutable","name":"treasury_","nameLocation":"16569:9:24","nodeType":"VariableDeclaration","scope":8826,"src":"16561:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8817,"name":"address","nodeType":"ElementaryTypeName","src":"16561:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"16560:19:24"},"returnParameters":{"id":8820,"nodeType":"ParameterList","parameters":[],"src":"16589:0:24"},"scope":10934,"src":"16540:83:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14516],"body":{"id":8835,"nodeType":"Block","src":"16718:27:24","statements":[{"expression":{"id":8833,"name":"_treasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8382,"src":"16731:9:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8832,"id":8834,"nodeType":"Return","src":"16724:16:24"}]},"documentation":{"id":8827,"nodeType":"StructuredDocumentation","src":"16627:27:24","text":"@inheritdoc IPolicyPool"},"functionSelector":"61d027b3","id":8836,"implemented":true,"kind":"function","modifiers":[],"name":"treasury","nameLocation":"16666:8:24","nodeType":"FunctionDefinition","overrides":{"id":8829,"nodeType":"OverrideSpecifier","overrides":[],"src":"16691:8:24"},"parameters":{"id":8828,"nodeType":"ParameterList","parameters":[],"src":"16674:2:24"},"returnParameters":{"id":8832,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8831,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8836,"src":"16709:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8830,"name":"address","nodeType":"ElementaryTypeName","src":"16709:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"16708:9:24"},"scope":10934,"src":"16657:88:24","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":9010,"nodeType":"Block","src":"17454:1104:24","statements":[{"assignments":[8848],"declarations":[{"constant":false,"id":8848,"mutability":"mutable","name":"comp","nameLocation":"17478:4:24","nodeType":"VariableDeclaration","scope":9010,"src":"17460:22:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component"},"typeName":{"id":8847,"nodeType":"UserDefinedTypeName","pathNode":{"id":8846,"name":"Component","nameLocations":["17460:9:24"],"nodeType":"IdentifierPath","referencedDeclaration":8406,"src":"17460:9:24"},"referencedDeclaration":8406,"src":"17460:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component"}},"visibility":"internal"}],"id":8852,"initialValue":{"baseExpression":{"id":8849,"name":"_components","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8413,"src":"17485:11:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IPolicyPoolComponent_$14655_$_t_struct$_Component_$8406_storage_$","typeString":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component storage ref)"}},"id":8851,"indexExpression":{"id":8850,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8840,"src":"17497:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17485:22:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage","typeString":"struct PolicyPool.Component storage ref"}},"nodeType":"VariableDeclarationStatement","src":"17460:47:24"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"},"id":8857,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8853,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8848,"src":"17517:4:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":8854,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17522:6:24","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":8402,"src":"17517:11:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":8855,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8392,"src":"17532:15:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$8392_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":8856,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17548:8:24","memberName":"inactive","nodeType":"MemberAccess","referencedDeclaration":8385,"src":"17532:24:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"src":"17517:39:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8861,"nodeType":"IfStatement","src":"17513:79:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8858,"name":"ComponentAlreadyInThePool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8454,"src":"17565:25:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":8859,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17565:27:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8860,"nodeType":"RevertStatement","src":"17558:34:24"}},{"condition":{"commonType":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"},"id":8866,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8862,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8840,"src":"17602:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"id":8863,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17612:10:24","memberName":"policyPool","nodeType":"MemberAccess","referencedDeclaration":14654,"src":"17602:20:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPolicyPool_$14638_$","typeString":"function () view external returns (contract IPolicyPool)"}},"id":8864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17602:22:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8865,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"17628:4:24","typeDescriptions":{"typeIdentifier":"t_contract$_PolicyPool_$10934","typeString":"contract PolicyPool"}},"src":"17602:30:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8870,"nodeType":"IfStatement","src":"17598:73:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8867,"name":"ComponentNotLinkedToThisPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8457,"src":"17641:28:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":8868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17641:30:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8869,"nodeType":"RevertStatement","src":"17634:37:24"}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8899,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},"id":8874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8871,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8843,"src":"17690:4:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":8872,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8398,"src":"17698:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$8398_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":8873,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17712:6:24","memberName":"eToken","nodeType":"MemberAccess","referencedDeclaration":8395,"src":"17698:20:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"src":"17690:28:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":8882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"17722:55:24","subExpression":{"arguments":[{"expression":{"arguments":[{"id":8878,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14336,"src":"17756:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IEToken_$14336_$","typeString":"type(contract IEToken)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IEToken_$14336_$","typeString":"type(contract IEToken)"}],"id":8877,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17751:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":8879,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17751:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IEToken_$14336","typeString":"type(contract IEToken)"}},"id":8880,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17765:11:24","memberName":"interfaceId","nodeType":"MemberAccess","src":"17751:25:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":8875,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8840,"src":"17723:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"id":8876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17733:17:24","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":33544,"src":"17723:27:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view external returns (bool)"}},"id":8881,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17723:54:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17690:87:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":8884,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17689:89:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8897,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},"id":8888,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8885,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8843,"src":"17789:4:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":8886,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8398,"src":"17797:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$8398_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":8887,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17811:15:24","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":8397,"src":"17797:29:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"src":"17789:37:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":8896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"17830:64:24","subExpression":{"arguments":[{"expression":{"arguments":[{"id":8892,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14743,"src":"17864:16:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPremiumsAccount_$14743_$","typeString":"type(contract IPremiumsAccount)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPremiumsAccount_$14743_$","typeString":"type(contract IPremiumsAccount)"}],"id":8891,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17859:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":8893,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17859:22:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPremiumsAccount_$14743","typeString":"type(contract IPremiumsAccount)"}},"id":8894,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17882:11:24","memberName":"interfaceId","nodeType":"MemberAccess","src":"17859:34:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":8889,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8840,"src":"17831:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"id":8890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17841:17:24","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":33544,"src":"17831:27:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view external returns (bool)"}},"id":8895,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17831:63:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17789:105:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":8898,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17788:107:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17689:206:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8912,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},"id":8903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8900,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8843,"src":"17906:4:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":8901,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8398,"src":"17914:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$8398_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":8902,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17928:10:24","memberName":"riskModule","nodeType":"MemberAccess","referencedDeclaration":8396,"src":"17914:24:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"src":"17906:32:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":8911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"17942:59:24","subExpression":{"arguments":[{"expression":{"arguments":[{"id":8907,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14762,"src":"17976:11:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$14762_$","typeString":"type(contract IRiskModule)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$14762_$","typeString":"type(contract IRiskModule)"}],"id":8906,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17971:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":8908,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17971:17:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IRiskModule_$14762","typeString":"type(contract IRiskModule)"}},"id":8909,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17989:11:24","memberName":"interfaceId","nodeType":"MemberAccess","src":"17971:29:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":8904,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8840,"src":"17943:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"id":8905,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17953:17:24","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":33544,"src":"17943:27:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view external returns (bool)"}},"id":8910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17943:58:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17906:95:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":8913,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17905:97:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17689:313:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8920,"nodeType":"IfStatement","src":"17678:379:24","trueBody":{"errorCall":{"arguments":[{"id":8916,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8840,"src":"18041:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},{"id":8917,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8843,"src":"18052:4:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}],"id":8915,"name":"ComponentNotTheRightKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8466,"src":"18016:24:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_IPolicyPoolComponent_$14655_$_t_enum$_ComponentKind_$8398_$returns$_t_error_$","typeString":"function (contract IPolicyPoolComponent,enum PolicyPool.ComponentKind) pure returns (error)"}},"id":8918,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18016:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8919,"nodeType":"RevertStatement","src":"18009:48:24"}},{"expression":{"id":8926,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":8921,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8848,"src":"18064:4:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":8923,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"18069:6:24","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":8402,"src":"18064:11:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":8924,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8392,"src":"18078:15:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$8392_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":8925,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18094:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":8387,"src":"18078:22:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"src":"18064:36:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"id":8927,"nodeType":"ExpressionStatement","src":"18064:36:24"},{"expression":{"id":8932,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":8928,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8848,"src":"18106:4:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":8930,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"18111:4:24","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":8405,"src":"18106:9:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8931,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8843,"src":"18118:4:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"src":"18106:16:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"id":8933,"nodeType":"ExpressionStatement","src":"18106:16:24"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},"id":8937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8934,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8843,"src":"18132:4:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":8935,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8398,"src":"18140:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$8398_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":8936,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18154:15:24","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":8397,"src":"18140:29:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"src":"18132:37:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9002,"nodeType":"IfStatement","src":"18128:352:24","trueBody":{"id":9001,"nodeType":"Block","src":"18171:309:24","statements":[{"assignments":[8940],"declarations":[{"constant":false,"id":8940,"mutability":"mutable","name":"pa","nameLocation":"18196:2:24","nodeType":"VariableDeclaration","scope":9001,"src":"18179:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"},"typeName":{"id":8939,"nodeType":"UserDefinedTypeName","pathNode":{"id":8938,"name":"IPremiumsAccount","nameLocations":["18179:16:24"],"nodeType":"IdentifierPath","referencedDeclaration":14743,"src":"18179:16:24"},"referencedDeclaration":14743,"src":"18179:16:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"id":8947,"initialValue":{"arguments":[{"arguments":[{"id":8944,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8840,"src":"18226:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}],"id":8943,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18218:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8942,"name":"address","nodeType":"ElementaryTypeName","src":"18218:7:24","typeDescriptions":{}}},"id":8945,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18218:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8941,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14743,"src":"18201:16:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPremiumsAccount_$14743_$","typeString":"type(contract IPremiumsAccount)"}},"id":8946,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18201:36:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"nodeType":"VariableDeclarationStatement","src":"18179:58:24"},{"assignments":[8950],"declarations":[{"constant":false,"id":8950,"mutability":"mutable","name":"etk","nameLocation":"18253:3:24","nodeType":"VariableDeclaration","scope":9001,"src":"18245:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":8949,"nodeType":"UserDefinedTypeName","pathNode":{"id":8948,"name":"IEToken","nameLocations":["18245:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"18245:7:24"},"referencedDeclaration":14336,"src":"18245:7:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"}],"id":8954,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8951,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8940,"src":"18259:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"id":8952,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18262:9:24","memberName":"juniorEtk","nodeType":"MemberAccess","referencedDeclaration":14726,"src":"18259:12:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IEToken_$14336_$","typeString":"function () view external returns (contract IEToken)"}},"id":8953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18259:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"nodeType":"VariableDeclarationStatement","src":"18245:28:24"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8963,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8957,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8950,"src":"18293:3:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":8956,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18285:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8955,"name":"address","nodeType":"ElementaryTypeName","src":"18285:7:24","typeDescriptions":{}}},"id":8958,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18285:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":8961,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18309: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":8960,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18301:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8959,"name":"address","nodeType":"ElementaryTypeName","src":"18301:7:24","typeDescriptions":{}}},"id":8962,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18301:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"18285:26:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8974,"nodeType":"IfStatement","src":"18281:79:24","trueBody":{"id":8973,"nodeType":"Block","src":"18313:47:24","statements":[{"expression":{"arguments":[{"arguments":[{"id":8969,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8940,"src":"18347:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}],"id":8968,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18339:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8967,"name":"address","nodeType":"ElementaryTypeName","src":"18339:7:24","typeDescriptions":{}}},"id":8970,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18339:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":8964,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8950,"src":"18323:3:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":8966,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18327:11:24","memberName":"addBorrower","nodeType":"MemberAccess","referencedDeclaration":14271,"src":"18323:15:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$returns$__$","typeString":"function (address) external"}},"id":8971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18323:28:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8972,"nodeType":"ExpressionStatement","src":"18323:28:24"}]}},{"expression":{"id":8979,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8975,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8950,"src":"18367:3:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8976,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8940,"src":"18373:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"id":8977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18376:9:24","memberName":"seniorEtk","nodeType":"MemberAccess","referencedDeclaration":14719,"src":"18373:12:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IEToken_$14336_$","typeString":"function () view external returns (contract IEToken)"}},"id":8978,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18373:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"src":"18367:20:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":8980,"nodeType":"ExpressionStatement","src":"18367:20:24"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8983,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8950,"src":"18407:3:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":8982,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18399:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8981,"name":"address","nodeType":"ElementaryTypeName","src":"18399:7:24","typeDescriptions":{}}},"id":8984,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18399:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":8987,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18423: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":8986,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18415:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8985,"name":"address","nodeType":"ElementaryTypeName","src":"18415:7:24","typeDescriptions":{}}},"id":8988,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18415:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"18399:26:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9000,"nodeType":"IfStatement","src":"18395:79:24","trueBody":{"id":8999,"nodeType":"Block","src":"18427:47:24","statements":[{"expression":{"arguments":[{"arguments":[{"id":8995,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8940,"src":"18461:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}],"id":8994,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18453:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8993,"name":"address","nodeType":"ElementaryTypeName","src":"18453:7:24","typeDescriptions":{}}},"id":8996,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18453:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":8990,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8950,"src":"18437:3:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":8992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18441:11:24","memberName":"addBorrower","nodeType":"MemberAccess","referencedDeclaration":14271,"src":"18437:15:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$returns$__$","typeString":"function (address) external"}},"id":8997,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18437:28:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8998,"nodeType":"ExpressionStatement","src":"18437:28:24"}]}}]}},{"eventCall":{"arguments":[{"id":9004,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8840,"src":"18513:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},{"id":9005,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8843,"src":"18524:4:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},{"expression":{"id":9006,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8392,"src":"18530:15:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$8392_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":9007,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18546:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":8387,"src":"18530:22:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}],"id":9003,"name":"ComponentStatusChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8587,"src":"18490:22:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IPolicyPoolComponent_$14655_$_t_enum$_ComponentKind_$8398_$_t_enum$_ComponentStatus_$8392_$returns$__$","typeString":"function (contract IPolicyPoolComponent,enum PolicyPool.ComponentKind,enum PolicyPool.ComponentStatus)"}},"id":9008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18490:63:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9009,"nodeType":"EmitStatement","src":"18485:68:24"}]},"documentation":{"id":8837,"nodeType":"StructuredDocumentation","src":"16749:619:24","text":" @notice Adds a new component (either an {EToken}, {RiskModule} or {PremiumsAccount}) to the protocol.\n @dev The component status will be `active`.\n @custom:emits ComponentStatusChanged with status active.\n @custom:throws ComponentNotTheRightKind When there's a mismatch between the specified kind and supported interface\n @param component The address of component contract. Must be an {EToken}, {RiskModule} or {PremiumsAccount} linked\n to this specific {PolicyPool} and matching the `kind` specified in the next paramter.\n @param kind The type of component to be added."},"functionSelector":"6b8734e7","id":9011,"implemented":true,"kind":"function","modifiers":[],"name":"addComponent","nameLocation":"17380:12:24","nodeType":"FunctionDefinition","parameters":{"id":8844,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8840,"mutability":"mutable","name":"component","nameLocation":"17414:9:24","nodeType":"VariableDeclaration","scope":9011,"src":"17393:30:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"},"typeName":{"id":8839,"nodeType":"UserDefinedTypeName","pathNode":{"id":8838,"name":"IPolicyPoolComponent","nameLocations":["17393:20:24"],"nodeType":"IdentifierPath","referencedDeclaration":14655,"src":"17393:20:24"},"referencedDeclaration":14655,"src":"17393:20:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"visibility":"internal"},{"constant":false,"id":8843,"mutability":"mutable","name":"kind","nameLocation":"17439:4:24","nodeType":"VariableDeclaration","scope":9011,"src":"17425:18:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},"typeName":{"id":8842,"nodeType":"UserDefinedTypeName","pathNode":{"id":8841,"name":"ComponentKind","nameLocations":["17425:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":8398,"src":"17425:13:24"},"referencedDeclaration":8398,"src":"17425:13:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"visibility":"internal"}],"src":"17392:52:24"},"returnParameters":{"id":8845,"nodeType":"ParameterList","parameters":[],"src":"17454:0:24"},"scope":10934,"src":"17371:1187:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":9189,"nodeType":"Block","src":"18944:1187:24","statements":[{"assignments":[9020],"declarations":[{"constant":false,"id":9020,"mutability":"mutable","name":"comp","nameLocation":"18968:4:24","nodeType":"VariableDeclaration","scope":9189,"src":"18950:22:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component"},"typeName":{"id":9019,"nodeType":"UserDefinedTypeName","pathNode":{"id":9018,"name":"Component","nameLocations":["18950:9:24"],"nodeType":"IdentifierPath","referencedDeclaration":8406,"src":"18950:9:24"},"referencedDeclaration":8406,"src":"18950:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component"}},"visibility":"internal"}],"id":9024,"initialValue":{"baseExpression":{"id":9021,"name":"_components","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8413,"src":"18975:11:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IPolicyPoolComponent_$14655_$_t_struct$_Component_$8406_storage_$","typeString":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component storage ref)"}},"id":9023,"indexExpression":{"id":9022,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9015,"src":"18987:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18975:22:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage","typeString":"struct PolicyPool.Component storage ref"}},"nodeType":"VariableDeclarationStatement","src":"18950:47:24"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"},"id":9029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9025,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9020,"src":"19007:4:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":9026,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19012:6:24","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":8402,"src":"19007:11:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":9027,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8392,"src":"19022:15:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$8392_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":9028,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19038:10:24","memberName":"deprecated","nodeType":"MemberAccess","referencedDeclaration":8389,"src":"19022:26:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"src":"19007:41:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9033,"nodeType":"IfStatement","src":"19003:78:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":9030,"name":"ComponentNotDeprecated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8469,"src":"19057:22:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19057:24:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9032,"nodeType":"RevertStatement","src":"19050:31:24"}},{"condition":{"commonType":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},"id":9038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9034,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9020,"src":"19091:4:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":9035,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19096:4:24","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":8405,"src":"19091:9:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":9036,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8398,"src":"19104:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$8398_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":9037,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19118:6:24","memberName":"eToken","nodeType":"MemberAccess","referencedDeclaration":8395,"src":"19104:20:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"src":"19091:33:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},"id":9068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9064,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9020,"src":"19312:4:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":9065,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19317:4:24","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":8405,"src":"19312:9:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":9066,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8398,"src":"19325:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$8398_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":9067,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19339:10:24","memberName":"riskModule","nodeType":"MemberAccess","referencedDeclaration":8396,"src":"19325:24:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"src":"19312:37:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":9173,"nodeType":"Block","src":"19543:468:24","statements":[{"assignments":[9098],"declarations":[{"constant":false,"id":9098,"mutability":"mutable","name":"pa","nameLocation":"19622:2:24","nodeType":"VariableDeclaration","scope":9173,"src":"19605:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"},"typeName":{"id":9097,"nodeType":"UserDefinedTypeName","pathNode":{"id":9096,"name":"IPremiumsAccount","nameLocations":["19605:16:24"],"nodeType":"IdentifierPath","referencedDeclaration":14743,"src":"19605:16:24"},"referencedDeclaration":14743,"src":"19605:16:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"id":9105,"initialValue":{"arguments":[{"arguments":[{"id":9102,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9015,"src":"19652:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}],"id":9101,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19644:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9100,"name":"address","nodeType":"ElementaryTypeName","src":"19644:7:24","typeDescriptions":{}}},"id":9103,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19644:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9099,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14743,"src":"19627:16:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPremiumsAccount_$14743_$","typeString":"type(contract IPremiumsAccount)"}},"id":9104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19627:36:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"nodeType":"VariableDeclarationStatement","src":"19605:58:24"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9106,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9098,"src":"19675:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"id":9107,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19678:12:24","memberName":"purePremiums","nodeType":"MemberAccess","referencedDeclaration":14742,"src":"19675:15:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":9108,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19675:17:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":9109,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19696:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"19675:22:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9119,"nodeType":"IfStatement","src":"19671:91:24","trueBody":{"errorCall":{"arguments":[{"expression":{"id":9112,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9020,"src":"19733:4:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":9113,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19738:4:24","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":8405,"src":"19733:9:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9114,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9098,"src":"19744:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"id":9115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19747:12:24","memberName":"purePremiums","nodeType":"MemberAccess","referencedDeclaration":14742,"src":"19744:15:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":9116,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19744:17:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9111,"name":"ComponentInUseCannotRemove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8477,"src":"19706:26:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_enum$_ComponentKind_$8398_$_t_uint256_$returns$_t_error_$","typeString":"function (enum PolicyPool.ComponentKind,uint256) pure returns (error)"}},"id":9117,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19706:56:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9118,"nodeType":"RevertStatement","src":"19699:63:24"}},{"assignments":[9122],"declarations":[{"constant":false,"id":9122,"mutability":"mutable","name":"etk","nameLocation":"19778:3:24","nodeType":"VariableDeclaration","scope":9173,"src":"19770:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":9121,"nodeType":"UserDefinedTypeName","pathNode":{"id":9120,"name":"IEToken","nameLocations":["19770:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"19770:7:24"},"referencedDeclaration":14336,"src":"19770:7:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"}],"id":9126,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9123,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9098,"src":"19784:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"id":9124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19787:9:24","memberName":"juniorEtk","nodeType":"MemberAccess","referencedDeclaration":14726,"src":"19784:12:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IEToken_$14336_$","typeString":"function () view external returns (contract IEToken)"}},"id":9125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19784:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"nodeType":"VariableDeclarationStatement","src":"19770:28:24"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9129,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9122,"src":"19818:3:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":9128,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19810:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9127,"name":"address","nodeType":"ElementaryTypeName","src":"19810:7:24","typeDescriptions":{}}},"id":9130,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19810:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":9133,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19834: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":9132,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19826:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9131,"name":"address","nodeType":"ElementaryTypeName","src":"19826:7:24","typeDescriptions":{}}},"id":9134,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19826:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"19810:26:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9146,"nodeType":"IfStatement","src":"19806:82:24","trueBody":{"id":9145,"nodeType":"Block","src":"19838:50:24","statements":[{"expression":{"arguments":[{"arguments":[{"id":9141,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9098,"src":"19875:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}],"id":9140,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19867:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9139,"name":"address","nodeType":"ElementaryTypeName","src":"19867:7:24","typeDescriptions":{}}},"id":9142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19867:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":9136,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9122,"src":"19848:3:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":9138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19852:14:24","memberName":"removeBorrower","nodeType":"MemberAccess","referencedDeclaration":14277,"src":"19848:18:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$returns$__$","typeString":"function (address) external"}},"id":9143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19848:31:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9144,"nodeType":"ExpressionStatement","src":"19848:31:24"}]}},{"expression":{"id":9151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9147,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9122,"src":"19895:3:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9148,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9098,"src":"19901:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"id":9149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19904:9:24","memberName":"seniorEtk","nodeType":"MemberAccess","referencedDeclaration":14719,"src":"19901:12:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IEToken_$14336_$","typeString":"function () view external returns (contract IEToken)"}},"id":9150,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19901:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"src":"19895:20:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":9152,"nodeType":"ExpressionStatement","src":"19895:20:24"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9155,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9122,"src":"19935:3:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":9154,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19927:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9153,"name":"address","nodeType":"ElementaryTypeName","src":"19927:7:24","typeDescriptions":{}}},"id":9156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19927:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":9159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19951: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":9158,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19943:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9157,"name":"address","nodeType":"ElementaryTypeName","src":"19943:7:24","typeDescriptions":{}}},"id":9160,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19943:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"19927:26:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9172,"nodeType":"IfStatement","src":"19923:82:24","trueBody":{"id":9171,"nodeType":"Block","src":"19955:50:24","statements":[{"expression":{"arguments":[{"arguments":[{"id":9167,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9098,"src":"19992:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}],"id":9166,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19984:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9165,"name":"address","nodeType":"ElementaryTypeName","src":"19984:7:24","typeDescriptions":{}}},"id":9168,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19984:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":9162,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9122,"src":"19965:3:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":9164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19969:14:24","memberName":"removeBorrower","nodeType":"MemberAccess","referencedDeclaration":14277,"src":"19965:18:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$returns$__$","typeString":"function (address) external"}},"id":9169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19965:31:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9170,"nodeType":"ExpressionStatement","src":"19965:31:24"}]}}]},"id":9174,"nodeType":"IfStatement","src":"19308:703:24","trueBody":{"id":9095,"nodeType":"Block","src":"19351:186:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":9079,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":9069,"name":"_exposureByRm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8433,"src":"19363:13:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IRiskModule_$14762_$_t_struct$_Exposure_$8423_storage_$","typeString":"mapping(contract IRiskModule => struct PolicyPool.Exposure storage ref)"}},"id":9076,"indexExpression":{"arguments":[{"arguments":[{"id":9073,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9015,"src":"19397:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}],"id":9072,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19389:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9071,"name":"address","nodeType":"ElementaryTypeName","src":"19389:7:24","typeDescriptions":{}}},"id":9074,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19389:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9070,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14762,"src":"19377:11:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$14762_$","typeString":"type(contract IRiskModule)"}},"id":9075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19377:31:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19363:46:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage","typeString":"struct PolicyPool.Exposure storage ref"}},"id":9077,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19410:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":8420,"src":"19363:53:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":9078,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19420:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"19363:58:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9094,"nodeType":"IfStatement","src":"19359:171:24","trueBody":{"errorCall":{"arguments":[{"expression":{"id":9081,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9020,"src":"19465:4:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":9082,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19470:4:24","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":8405,"src":"19465:9:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},{"expression":{"baseExpression":{"id":9083,"name":"_exposureByRm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8433,"src":"19476:13:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IRiskModule_$14762_$_t_struct$_Exposure_$8423_storage_$","typeString":"mapping(contract IRiskModule => struct PolicyPool.Exposure storage ref)"}},"id":9090,"indexExpression":{"arguments":[{"arguments":[{"id":9087,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9015,"src":"19510:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}],"id":9086,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19502:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9085,"name":"address","nodeType":"ElementaryTypeName","src":"19502:7:24","typeDescriptions":{}}},"id":9088,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19502:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9084,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14762,"src":"19490:11:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$14762_$","typeString":"type(contract IRiskModule)"}},"id":9089,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19490:31:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19476:46:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage","typeString":"struct PolicyPool.Exposure storage ref"}},"id":9091,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19523:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":8420,"src":"19476:53:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":9080,"name":"ComponentInUseCannotRemove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8477,"src":"19438:26:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_enum$_ComponentKind_$8398_$_t_uint256_$returns$_t_error_$","typeString":"function (enum PolicyPool.ComponentKind,uint256) pure returns (error)"}},"id":9092,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19438:92:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9093,"nodeType":"RevertStatement","src":"19431:99:24"}}]}},"id":9175,"nodeType":"IfStatement","src":"19087:924:24","trueBody":{"id":9063,"nodeType":"Block","src":"19126:176:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9048,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"id":9042,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9015,"src":"19161:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}],"id":9041,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19153:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9040,"name":"address","nodeType":"ElementaryTypeName","src":"19153:7:24","typeDescriptions":{}}},"id":9043,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19153:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9039,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"19138:14:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$24925_$","typeString":"type(contract IERC20Metadata)"}},"id":9044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19138:34:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":9045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19173:11:24","memberName":"totalSupply","nodeType":"MemberAccess","referencedDeclaration":24142,"src":"19138:46:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":9046,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19138:48:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":9047,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19190:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"19138:53:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9062,"nodeType":"IfStatement","src":"19134:161:24","trueBody":{"errorCall":{"arguments":[{"expression":{"id":9050,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9020,"src":"19235:4:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":9051,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19240:4:24","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":8405,"src":"19235:9:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"id":9055,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9015,"src":"19269:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}],"id":9054,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19261:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9053,"name":"address","nodeType":"ElementaryTypeName","src":"19261:7:24","typeDescriptions":{}}},"id":9056,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19261:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9052,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"19246:14:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$24925_$","typeString":"type(contract IERC20Metadata)"}},"id":9057,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19246:34:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":9058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19281:11:24","memberName":"totalSupply","nodeType":"MemberAccess","referencedDeclaration":24142,"src":"19246:46:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":9059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19246:48:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9049,"name":"ComponentInUseCannotRemove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8477,"src":"19208:26:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_enum$_ComponentKind_$8398_$_t_uint256_$returns$_t_error_$","typeString":"function (enum PolicyPool.ComponentKind,uint256) pure returns (error)"}},"id":9060,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19208:87:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9061,"nodeType":"RevertStatement","src":"19201:94:24"}}]}},{"eventCall":{"arguments":[{"id":9177,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9015,"src":"20044:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},{"expression":{"id":9178,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9020,"src":"20055:4:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":9179,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20060:4:24","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":8405,"src":"20055:9:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},{"expression":{"id":9180,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8392,"src":"20066:15:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$8392_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":9181,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"20082:8:24","memberName":"inactive","nodeType":"MemberAccess","referencedDeclaration":8385,"src":"20066:24:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}],"id":9176,"name":"ComponentStatusChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8587,"src":"20021:22:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IPolicyPoolComponent_$14655_$_t_enum$_ComponentKind_$8398_$_t_enum$_ComponentStatus_$8392_$returns$__$","typeString":"function (contract IPolicyPoolComponent,enum PolicyPool.ComponentKind,enum PolicyPool.ComponentStatus)"}},"id":9182,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20021:70:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9183,"nodeType":"EmitStatement","src":"20016:75:24"},{"expression":{"id":9187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"20097:29:24","subExpression":{"baseExpression":{"id":9184,"name":"_components","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8413,"src":"20104:11:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IPolicyPoolComponent_$14655_$_t_struct$_Component_$8406_storage_$","typeString":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component storage ref)"}},"id":9186,"indexExpression":{"id":9185,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9015,"src":"20116:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"20104:22:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage","typeString":"struct PolicyPool.Component storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9188,"nodeType":"ExpressionStatement","src":"20097:29:24"}]},"documentation":{"id":9012,"nodeType":"StructuredDocumentation","src":"18562:313:24","text":" @notice Removes a component from the protocol\n @dev The component needs to be in `deprecated` status before doing this operation.\n @custom:emits ComponentStatusChanged with status inactive.\n @param component The address of component contract. Must be a component added before."},"functionSelector":"6f86c897","id":9190,"implemented":true,"kind":"function","modifiers":[],"name":"removeComponent","nameLocation":"18887:15:24","nodeType":"FunctionDefinition","parameters":{"id":9016,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9015,"mutability":"mutable","name":"component","nameLocation":"18924:9:24","nodeType":"VariableDeclaration","scope":9190,"src":"18903:30:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"},"typeName":{"id":9014,"nodeType":"UserDefinedTypeName","pathNode":{"id":9013,"name":"IPolicyPoolComponent","nameLocations":["18903:20:24"],"nodeType":"IdentifierPath","referencedDeclaration":14655,"src":"18903:20:24"},"referencedDeclaration":14655,"src":"18903:20:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"visibility":"internal"}],"src":"18902:32:24"},"returnParameters":{"id":9017,"nodeType":"ParameterList","parameters":[],"src":"18944:0:24"},"scope":10934,"src":"18878:1253:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":9239,"nodeType":"Block","src":"20649:306:24","statements":[{"assignments":[9202],"declarations":[{"constant":false,"id":9202,"mutability":"mutable","name":"comp","nameLocation":"20673:4:24","nodeType":"VariableDeclaration","scope":9239,"src":"20655:22:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component"},"typeName":{"id":9201,"nodeType":"UserDefinedTypeName","pathNode":{"id":9200,"name":"Component","nameLocations":["20655:9:24"],"nodeType":"IdentifierPath","referencedDeclaration":8406,"src":"20655:9:24"},"referencedDeclaration":8406,"src":"20655:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component"}},"visibility":"internal"}],"id":9206,"initialValue":{"baseExpression":{"id":9203,"name":"_components","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8413,"src":"20680:11:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IPolicyPoolComponent_$14655_$_t_struct$_Component_$8406_storage_$","typeString":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component storage ref)"}},"id":9205,"indexExpression":{"id":9204,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"20692:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20680:22:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage","typeString":"struct PolicyPool.Component storage ref"}},"nodeType":"VariableDeclarationStatement","src":"20655:47:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"},"id":9212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9208,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9202,"src":"20716:4:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":9209,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20721:6:24","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":8402,"src":"20716:11:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":9210,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8392,"src":"20731:15:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$8392_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":9211,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"20747:8:24","memberName":"inactive","nodeType":"MemberAccess","referencedDeclaration":8385,"src":"20731:24:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"src":"20716:39:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":9213,"name":"ComponentNotFound","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8480,"src":"20757:17:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9214,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20757:19:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":9207,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"20708:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":9215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20708:69:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9216,"nodeType":"ExpressionStatement","src":"20708:69:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"},"id":9221,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9218,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9197,"src":"20791:9:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":9219,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8392,"src":"20804:15:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$8392_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":9220,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"20820:8:24","memberName":"inactive","nodeType":"MemberAccess","referencedDeclaration":8385,"src":"20804:24:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"src":"20791:37:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":9222,"name":"InvalidComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8486,"src":"20830:22:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9223,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20830:24:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":9217,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"20783:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":9224,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20783:72:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9225,"nodeType":"ExpressionStatement","src":"20783:72:24"},{"expression":{"id":9230,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":9226,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9202,"src":"20861:4:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":9228,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"20866:6:24","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":8402,"src":"20861:11:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":9229,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9197,"src":"20875:9:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"src":"20861:23:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"id":9231,"nodeType":"ExpressionStatement","src":"20861:23:24"},{"eventCall":{"arguments":[{"id":9233,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9194,"src":"20918:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},{"expression":{"id":9234,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9202,"src":"20929:4:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":9235,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20934:4:24","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":8405,"src":"20929:9:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},{"id":9236,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9197,"src":"20940:9:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}],"id":9232,"name":"ComponentStatusChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8587,"src":"20895:22:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IPolicyPoolComponent_$14655_$_t_enum$_ComponentKind_$8398_$_t_enum$_ComponentStatus_$8392_$returns$__$","typeString":"function (contract IPolicyPoolComponent,enum PolicyPool.ComponentKind,enum PolicyPool.ComponentStatus)"}},"id":9237,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20895:55:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9238,"nodeType":"EmitStatement","src":"20890:60:24"}]},"documentation":{"id":9191,"nodeType":"StructuredDocumentation","src":"20135:412:24","text":" @notice Changes the status of a component.\n @custom:emits ComponentStatusChanged with the new status.\n @custom:throws InvalidComponentStatus() when newStatus is inactive (use removeComponent() instead)\n @param component The address of component contract. Must be a component added before.\n @param newStatus The new status, must be either `active`, `deprecated` or `suspended`."},"functionSelector":"5fcbf445","id":9240,"implemented":true,"kind":"function","modifiers":[],"name":"changeComponentStatus","nameLocation":"20559:21:24","nodeType":"FunctionDefinition","parameters":{"id":9198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9194,"mutability":"mutable","name":"component","nameLocation":"20602:9:24","nodeType":"VariableDeclaration","scope":9240,"src":"20581:30:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"},"typeName":{"id":9193,"nodeType":"UserDefinedTypeName","pathNode":{"id":9192,"name":"IPolicyPoolComponent","nameLocations":["20581:20:24"],"nodeType":"IdentifierPath","referencedDeclaration":14655,"src":"20581:20:24"},"referencedDeclaration":14655,"src":"20581:20:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"visibility":"internal"},{"constant":false,"id":9197,"mutability":"mutable","name":"newStatus","nameLocation":"20629:9:24","nodeType":"VariableDeclaration","scope":9240,"src":"20613:25:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"},"typeName":{"id":9196,"nodeType":"UserDefinedTypeName","pathNode":{"id":9195,"name":"ComponentStatus","nameLocations":["20613:15:24"],"nodeType":"IdentifierPath","referencedDeclaration":8392,"src":"20613:15:24"},"referencedDeclaration":8392,"src":"20613:15:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"visibility":"internal"}],"src":"20580:59:24"},"returnParameters":{"id":9199,"nodeType":"ParameterList","parameters":[],"src":"20649:0:24"},"scope":10934,"src":"20550:405:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":9255,"nodeType":"Block","src":"21239:47:24","statements":[{"expression":{"expression":{"baseExpression":{"id":9250,"name":"_components","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8413,"src":"21252:11:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IPolicyPoolComponent_$14655_$_t_struct$_Component_$8406_storage_$","typeString":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component storage ref)"}},"id":9252,"indexExpression":{"id":9251,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9244,"src":"21264:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21252:22:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage","typeString":"struct PolicyPool.Component storage ref"}},"id":9253,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21275:6:24","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":8402,"src":"21252:29:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"functionReturnParameters":9249,"id":9254,"nodeType":"Return","src":"21245:36:24"}]},"documentation":{"id":9241,"nodeType":"StructuredDocumentation","src":"20959:177:24","text":" @notice Returns the status of a component.\n @param component The address of the component\n @return The status of the component. See {ComponentStatus}"},"functionSelector":"33d6157a","id":9256,"implemented":true,"kind":"function","modifiers":[],"name":"getComponentStatus","nameLocation":"21148:18:24","nodeType":"FunctionDefinition","parameters":{"id":9245,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9244,"mutability":"mutable","name":"component","nameLocation":"21188:9:24","nodeType":"VariableDeclaration","scope":9256,"src":"21167:30:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"},"typeName":{"id":9243,"nodeType":"UserDefinedTypeName","pathNode":{"id":9242,"name":"IPolicyPoolComponent","nameLocations":["21167:20:24"],"nodeType":"IdentifierPath","referencedDeclaration":14655,"src":"21167:20:24"},"referencedDeclaration":14655,"src":"21167:20:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"visibility":"internal"}],"src":"21166:32:24"},"returnParameters":{"id":9249,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9248,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9256,"src":"21222:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"},"typeName":{"id":9247,"nodeType":"UserDefinedTypeName","pathNode":{"id":9246,"name":"ComponentStatus","nameLocations":["21222:15:24"],"nodeType":"IdentifierPath","referencedDeclaration":8392,"src":"21222:15:24"},"referencedDeclaration":8392,"src":"21222:15:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"visibility":"internal"}],"src":"21221:17:24"},"scope":10934,"src":"21139:147:24","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":9291,"nodeType":"Block","src":"21395:203:24","statements":[{"assignments":[9269],"declarations":[{"constant":false,"id":9269,"mutability":"mutable","name":"comp","nameLocation":"21419:4:24","nodeType":"VariableDeclaration","scope":9291,"src":"21401:22:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component"},"typeName":{"id":9268,"nodeType":"UserDefinedTypeName","pathNode":{"id":9267,"name":"Component","nameLocations":["21401:9:24"],"nodeType":"IdentifierPath","referencedDeclaration":8406,"src":"21401:9:24"},"referencedDeclaration":8406,"src":"21401:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component"}},"visibility":"internal"}],"id":9275,"initialValue":{"baseExpression":{"id":9270,"name":"_components","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8413,"src":"21426:11:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IPolicyPoolComponent_$14655_$_t_struct$_Component_$8406_storage_$","typeString":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component storage ref)"}},"id":9274,"indexExpression":{"arguments":[{"id":9272,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9258,"src":"21459:9:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9271,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14655,"src":"21438:20:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$14655_$","typeString":"type(contract IPolicyPoolComponent)"}},"id":9273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21438:31:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21426:44:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage","typeString":"struct PolicyPool.Component storage ref"}},"nodeType":"VariableDeclarationStatement","src":"21401:69:24"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},"id":9279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9276,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9269,"src":"21480:4:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":9277,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21485:4:24","memberName":"kind","nodeType":"MemberAccess","referencedDeclaration":8405,"src":"21480:9:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":9278,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9261,"src":"21493:4:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"src":"21480:17:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9287,"nodeType":"IfStatement","src":"21476:93:24","trueBody":{"errorCall":{"arguments":[{"arguments":[{"id":9282,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9258,"src":"21552:9:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9281,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14655,"src":"21531:20:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$14655_$","typeString":"type(contract IPolicyPoolComponent)"}},"id":9283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21531:31:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},{"id":9284,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9261,"src":"21564:4:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}],"id":9280,"name":"ComponentNotTheRightKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8466,"src":"21506:24:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_IPolicyPoolComponent_$14655_$_t_enum$_ComponentKind_$8398_$returns$_t_error_$","typeString":"function (contract IPolicyPoolComponent,enum PolicyPool.ComponentKind) pure returns (error)"}},"id":9285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21506:63:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9286,"nodeType":"RevertStatement","src":"21499:70:24"}},{"expression":{"expression":{"id":9288,"name":"comp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9269,"src":"21582:4:24","typeDescriptions":{"typeIdentifier":"t_struct$_Component_$8406_storage_ptr","typeString":"struct PolicyPool.Component storage pointer"}},"id":9289,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21587:6:24","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":8402,"src":"21582:11:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"functionReturnParameters":9266,"id":9290,"nodeType":"Return","src":"21575:18:24"}]},"id":9292,"implemented":true,"kind":"function","modifiers":[],"name":"_componentStatus","nameLocation":"21299:16:24","nodeType":"FunctionDefinition","parameters":{"id":9262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9258,"mutability":"mutable","name":"component","nameLocation":"21324:9:24","nodeType":"VariableDeclaration","scope":9292,"src":"21316:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9257,"name":"address","nodeType":"ElementaryTypeName","src":"21316:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9261,"mutability":"mutable","name":"kind","nameLocation":"21349:4:24","nodeType":"VariableDeclaration","scope":9292,"src":"21335:18:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},"typeName":{"id":9260,"nodeType":"UserDefinedTypeName","pathNode":{"id":9259,"name":"ComponentKind","nameLocations":["21335:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":8398,"src":"21335:13:24"},"referencedDeclaration":8398,"src":"21335:13:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"visibility":"internal"}],"src":"21315:39:24"},"returnParameters":{"id":9266,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9265,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9292,"src":"21378:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"},"typeName":{"id":9264,"nodeType":"UserDefinedTypeName","pathNode":{"id":9263,"name":"ComponentStatus","nameLocations":["21378:15:24"],"nodeType":"IdentifierPath","referencedDeclaration":8392,"src":"21378:15:24"},"referencedDeclaration":8392,"src":"21378:15:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"visibility":"internal"}],"src":"21377:17:24"},"scope":10934,"src":"21290:308:24","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9311,"nodeType":"Block","src":"21683:113:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"},"id":9306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9301,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9294,"src":"21710:9:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9302,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9297,"src":"21721:4:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}],"id":9300,"name":"_componentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9292,"src":"21693:16:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$8398_$returns$_t_enum$_ComponentStatus_$8392_$","typeString":"function (address,enum PolicyPool.ComponentKind) view returns (enum PolicyPool.ComponentStatus)"}},"id":9303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21693:33:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":9304,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8392,"src":"21730:15:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$8392_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":9305,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21746:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":8387,"src":"21730:22:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"src":"21693:59:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9310,"nodeType":"IfStatement","src":"21689:102:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":9307,"name":"ComponentNotFoundOrNotActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8483,"src":"21761:28:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9308,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21761:30:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9309,"nodeType":"RevertStatement","src":"21754:37:24"}}]},"id":9312,"implemented":true,"kind":"function","modifiers":[],"name":"_requireCompActive","nameLocation":"21611:18:24","nodeType":"FunctionDefinition","parameters":{"id":9298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9294,"mutability":"mutable","name":"component","nameLocation":"21638:9:24","nodeType":"VariableDeclaration","scope":9312,"src":"21630:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9293,"name":"address","nodeType":"ElementaryTypeName","src":"21630:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9297,"mutability":"mutable","name":"kind","nameLocation":"21663:4:24","nodeType":"VariableDeclaration","scope":9312,"src":"21649:18:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},"typeName":{"id":9296,"nodeType":"UserDefinedTypeName","pathNode":{"id":9295,"name":"ComponentKind","nameLocations":["21649:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":8398,"src":"21649:13:24"},"referencedDeclaration":8398,"src":"21649:13:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"visibility":"internal"}],"src":"21629:39:24"},"returnParameters":{"id":9299,"nodeType":"ParameterList","parameters":[],"src":"21683:0:24"},"scope":10934,"src":"21602:194:24","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9341,"nodeType":"Block","src":"21893:201:24","statements":[{"assignments":[9322],"declarations":[{"constant":false,"id":9322,"mutability":"mutable","name":"status","nameLocation":"21915:6:24","nodeType":"VariableDeclaration","scope":9341,"src":"21899:22:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"},"typeName":{"id":9321,"nodeType":"UserDefinedTypeName","pathNode":{"id":9320,"name":"ComponentStatus","nameLocations":["21899:15:24"],"nodeType":"IdentifierPath","referencedDeclaration":8392,"src":"21899:15:24"},"referencedDeclaration":8392,"src":"21899:15:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"visibility":"internal"}],"id":9327,"initialValue":{"arguments":[{"id":9324,"name":"component","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9314,"src":"21941:9:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9325,"name":"kind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9317,"src":"21952:4:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}],"id":9323,"name":"_componentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9292,"src":"21924:16:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$8398_$returns$_t_enum$_ComponentStatus_$8392_$","typeString":"function (address,enum PolicyPool.ComponentKind) view returns (enum PolicyPool.ComponentStatus)"}},"id":9326,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21924:33:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"VariableDeclarationStatement","src":"21899:58:24"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"},"id":9331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9328,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9322,"src":"21967:6:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":9329,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8392,"src":"21977:15:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$8392_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":9330,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21993:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":8387,"src":"21977:22:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"src":"21967:32:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"},"id":9335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9332,"name":"status","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9322,"src":"22003:6:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":9333,"name":"ComponentStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8392,"src":"22013:15:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentStatus_$8392_$","typeString":"type(enum PolicyPool.ComponentStatus)"}},"id":9334,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22029:10:24","memberName":"deprecated","nodeType":"MemberAccess","referencedDeclaration":8389,"src":"22013:26:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentStatus_$8392","typeString":"enum PolicyPool.ComponentStatus"}},"src":"22003:36:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"21967:72:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9340,"nodeType":"IfStatement","src":"21963:126:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":9337,"name":"ComponentMustBeActiveOrDeprecated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8489,"src":"22054:33:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9338,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22054:35:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9339,"nodeType":"RevertStatement","src":"22047:42:24"}}]},"id":9342,"implemented":true,"kind":"function","modifiers":[],"name":"_requireCompActiveOrDeprecated","nameLocation":"21809:30:24","nodeType":"FunctionDefinition","parameters":{"id":9318,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9314,"mutability":"mutable","name":"component","nameLocation":"21848:9:24","nodeType":"VariableDeclaration","scope":9342,"src":"21840:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9313,"name":"address","nodeType":"ElementaryTypeName","src":"21840:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9317,"mutability":"mutable","name":"kind","nameLocation":"21873:4:24","nodeType":"VariableDeclaration","scope":9342,"src":"21859:18:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"},"typeName":{"id":9316,"nodeType":"UserDefinedTypeName","pathNode":{"id":9315,"name":"ComponentKind","nameLocations":["21859:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":8398,"src":"21859:13:24"},"referencedDeclaration":8398,"src":"21859:13:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}},"visibility":"internal"}],"src":"21839:39:24"},"returnParameters":{"id":9319,"nodeType":"ParameterList","parameters":[],"src":"21893:0:24"},"scope":10934,"src":"21800:294:24","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":9402,"nodeType":"Block","src":"22175:313:24","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9353,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9349,"src":"22189:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":9356,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22209: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":9355,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22201:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9354,"name":"address","nodeType":"ElementaryTypeName","src":"22201:7:24","typeDescriptions":{}}},"id":9357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22201:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"22189:22:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":9360,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9349,"src":"22229:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9359,"name":"InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8561,"src":"22213:15:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":9361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22213:25:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":9352,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"22181:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":9362,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22181:58:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9363,"nodeType":"ExpressionStatement","src":"22181:58:24"},{"expression":{"arguments":[{"arguments":[{"id":9367,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9345,"src":"22272:6:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":9366,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22264:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9365,"name":"address","nodeType":"ElementaryTypeName","src":"22264:7:24","typeDescriptions":{}}},"id":9368,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22264:15:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9369,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8398,"src":"22281:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$8398_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":9370,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22295:6:24","memberName":"eToken","nodeType":"MemberAccess","referencedDeclaration":8395,"src":"22281:20:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}],"id":9364,"name":"_requireCompActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9312,"src":"22245:18:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$8398_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":9371,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22245:57:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9372,"nodeType":"ExpressionStatement","src":"22245:57:24"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":9376,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"22335:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":9377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22335:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":9380,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9345,"src":"22357:6:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":9379,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22349:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9378,"name":"address","nodeType":"ElementaryTypeName","src":"22349:7:24","typeDescriptions":{}}},"id":9381,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22349:15:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9382,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9347,"src":"22366:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9373,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8379,"src":"22308:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":9375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22318:16:24","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":25041,"src":"22308:26:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$24193_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":9383,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22308:65:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9384,"nodeType":"ExpressionStatement","src":"22308:65:24"},{"expression":{"arguments":[{"id":9388,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9347,"src":"22394:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":9389,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"22402:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":9390,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22402:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9391,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9349,"src":"22416:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":9385,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9345,"src":"22379:6:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":9387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22386:7:24","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":14245,"src":"22379:14:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$_t_address_$returns$__$","typeString":"function (uint256,address,address) external"}},"id":9392,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22379:46:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9393,"nodeType":"ExpressionStatement","src":"22379:46:24"},{"eventCall":{"arguments":[{"id":9395,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9345,"src":"22444:6:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},{"arguments":[],"expression":{"argumentTypes":[],"id":9396,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"22452:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":9397,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22452:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9398,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9349,"src":"22466:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9399,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9347,"src":"22476:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9394,"name":"Deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8617,"src":"22436:7:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IEToken_$14336_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IEToken,address,address,uint256)"}},"id":9400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22436:47:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9401,"nodeType":"EmitStatement","src":"22431:52:24"}]},"id":9403,"implemented":true,"kind":"function","modifiers":[],"name":"_deposit","nameLocation":"22107:8:24","nodeType":"FunctionDefinition","parameters":{"id":9350,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9345,"mutability":"mutable","name":"eToken","nameLocation":"22124:6:24","nodeType":"VariableDeclaration","scope":9403,"src":"22116:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":9344,"nodeType":"UserDefinedTypeName","pathNode":{"id":9343,"name":"IEToken","nameLocations":["22116:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"22116:7:24"},"referencedDeclaration":14336,"src":"22116:7:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":9347,"mutability":"mutable","name":"amount","nameLocation":"22140:6:24","nodeType":"VariableDeclaration","scope":9403,"src":"22132:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9346,"name":"uint256","nodeType":"ElementaryTypeName","src":"22132:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9349,"mutability":"mutable","name":"receiver","nameLocation":"22156:8:24","nodeType":"VariableDeclaration","scope":9403,"src":"22148:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9348,"name":"address","nodeType":"ElementaryTypeName","src":"22148:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"22115:50:24"},"returnParameters":{"id":9351,"nodeType":"ParameterList","parameters":[],"src":"22175:0:24"},"scope":10934,"src":"22098:390:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[14603],"body":{"id":9423,"nodeType":"Block","src":"22621:45:24","statements":[{"expression":{"arguments":[{"id":9418,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9407,"src":"22636:6:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},{"id":9419,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9409,"src":"22644:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9420,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9411,"src":"22652:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":9417,"name":"_deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9403,"src":"22627:8:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IEToken_$14336_$_t_uint256_$_t_address_$returns$__$","typeString":"function (contract IEToken,uint256,address)"}},"id":9421,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22627:34:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9422,"nodeType":"ExpressionStatement","src":"22627:34:24"}]},"documentation":{"id":9404,"nodeType":"StructuredDocumentation","src":"22492:27:24","text":"@inheritdoc IPolicyPool"},"functionSelector":"f45346dc","id":9424,"implemented":true,"kind":"function","modifiers":[{"id":9415,"kind":"modifierInvocation","modifierName":{"id":9414,"name":"whenNotPaused","nameLocations":["22607:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":18936,"src":"22607:13:24"},"nodeType":"ModifierInvocation","src":"22607:13:24"}],"name":"deposit","nameLocation":"22531:7:24","nodeType":"FunctionDefinition","overrides":{"id":9413,"nodeType":"OverrideSpecifier","overrides":[],"src":"22598:8:24"},"parameters":{"id":9412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9407,"mutability":"mutable","name":"eToken","nameLocation":"22547:6:24","nodeType":"VariableDeclaration","scope":9424,"src":"22539:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":9406,"nodeType":"UserDefinedTypeName","pathNode":{"id":9405,"name":"IEToken","nameLocations":["22539:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"22539:7:24"},"referencedDeclaration":14336,"src":"22539:7:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":9409,"mutability":"mutable","name":"amount","nameLocation":"22563:6:24","nodeType":"VariableDeclaration","scope":9424,"src":"22555:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9408,"name":"uint256","nodeType":"ElementaryTypeName","src":"22555:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9411,"mutability":"mutable","name":"receiver","nameLocation":"22579:8:24","nodeType":"VariableDeclaration","scope":9424,"src":"22571:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9410,"name":"address","nodeType":"ElementaryTypeName","src":"22571:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"22538:50:24"},"returnParameters":{"id":9416,"nodeType":"ParameterList","parameters":[],"src":"22621:0:24"},"scope":10934,"src":"22522:144:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14622],"body":{"id":9476,"nodeType":"Block","src":"22890:427:24","statements":[{"clauses":[{"block":{"id":9465,"nodeType":"Block","src":"23045:2:24","statements":[]},"errorName":"","id":9466,"nodeType":"TryCatchClause","src":"23045:2:24"},{"block":{"id":9467,"nodeType":"Block","src":"23054:2:24","statements":[]},"errorName":"","id":9468,"nodeType":"TryCatchClause","src":"23048:8:24"}],"externalCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":9453,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"22989:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":9454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22989:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":9457,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"23011:4:24","typeDescriptions":{"typeIdentifier":"t_contract$_PolicyPool_$10934","typeString":"contract PolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PolicyPool_$10934","typeString":"contract PolicyPool"}],"id":9456,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23003:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9455,"name":"address","nodeType":"ElementaryTypeName","src":"23003:7:24","typeDescriptions":{}}},"id":9458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23003:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9459,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9430,"src":"23018:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9460,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9434,"src":"23026:8:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9461,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9436,"src":"23036:1:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":9462,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9438,"src":"23039:1:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9463,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9440,"src":"23042:1:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"arguments":[{"arguments":[{"id":9449,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8379,"src":"22970:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}],"id":9448,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22962:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9447,"name":"address","nodeType":"ElementaryTypeName","src":"22962:7:24","typeDescriptions":{}}},"id":9450,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22962:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9446,"name":"IERC20Permit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24961,"src":"22949:12:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Permit_$24961_$","typeString":"type(contract IERC20Permit)"}},"id":9451,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22949:32:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Permit_$24961","typeString":"contract IERC20Permit"}},"id":9452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22982:6:24","memberName":"permit","nodeType":"MemberAccess","referencedDeclaration":24946,"src":"22949:39:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (address,address,uint256,uint256,uint8,bytes32,bytes32) external"}},"id":9464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22949:95:24","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9469,"nodeType":"TryStatement","src":"22945:111:24"},{"expression":{"arguments":[{"id":9471,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9428,"src":"23287:6:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},{"id":9472,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9430,"src":"23295:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9473,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9432,"src":"23303:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":9470,"name":"_deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9403,"src":"23278:8:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IEToken_$14336_$_t_uint256_$_t_address_$returns$__$","typeString":"function (contract IEToken,uint256,address)"}},"id":9474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23278:34:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9475,"nodeType":"ExpressionStatement","src":"23278:34:24"}]},"documentation":{"id":9425,"nodeType":"StructuredDocumentation","src":"22670:27:24","text":"@inheritdoc IPolicyPool"},"functionSelector":"de27010a","id":9477,"implemented":true,"kind":"function","modifiers":[{"id":9444,"kind":"modifierInvocation","modifierName":{"id":9443,"name":"whenNotPaused","nameLocations":["22876:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":18936,"src":"22876:13:24"},"nodeType":"ModifierInvocation","src":"22876:13:24"}],"name":"depositWithPermit","nameLocation":"22709:17:24","nodeType":"FunctionDefinition","overrides":{"id":9442,"nodeType":"OverrideSpecifier","overrides":[],"src":"22867:8:24"},"parameters":{"id":9441,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9428,"mutability":"mutable","name":"eToken","nameLocation":"22740:6:24","nodeType":"VariableDeclaration","scope":9477,"src":"22732:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":9427,"nodeType":"UserDefinedTypeName","pathNode":{"id":9426,"name":"IEToken","nameLocations":["22732:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"22732:7:24"},"referencedDeclaration":14336,"src":"22732:7:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":9430,"mutability":"mutable","name":"amount","nameLocation":"22760:6:24","nodeType":"VariableDeclaration","scope":9477,"src":"22752:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9429,"name":"uint256","nodeType":"ElementaryTypeName","src":"22752:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9432,"mutability":"mutable","name":"receiver","nameLocation":"22780:8:24","nodeType":"VariableDeclaration","scope":9477,"src":"22772:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9431,"name":"address","nodeType":"ElementaryTypeName","src":"22772:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9434,"mutability":"mutable","name":"deadline","nameLocation":"22802:8:24","nodeType":"VariableDeclaration","scope":9477,"src":"22794:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9433,"name":"uint256","nodeType":"ElementaryTypeName","src":"22794:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9436,"mutability":"mutable","name":"v","nameLocation":"22822:1:24","nodeType":"VariableDeclaration","scope":9477,"src":"22816:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":9435,"name":"uint8","nodeType":"ElementaryTypeName","src":"22816:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":9438,"mutability":"mutable","name":"r","nameLocation":"22837:1:24","nodeType":"VariableDeclaration","scope":9477,"src":"22829:9:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9437,"name":"bytes32","nodeType":"ElementaryTypeName","src":"22829:7:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":9440,"mutability":"mutable","name":"s","nameLocation":"22852:1:24","nodeType":"VariableDeclaration","scope":9477,"src":"22844:9:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9439,"name":"bytes32","nodeType":"ElementaryTypeName","src":"22844:7:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"22726:131:24"},"returnParameters":{"id":9445,"nodeType":"ParameterList","parameters":[],"src":"22890:0:24"},"scope":10934,"src":"22700:617:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14637],"body":{"id":9536,"nodeType":"Block","src":"23520:297:24","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9496,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9485,"src":"23534:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":9499,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23554: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":9498,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23546:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9497,"name":"address","nodeType":"ElementaryTypeName","src":"23546:7:24","typeDescriptions":{}}},"id":9500,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23546:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"23534:22:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":9503,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9485,"src":"23574:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9502,"name":"InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8561,"src":"23558:15:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":9504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23558:25:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":9495,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"23526:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":9505,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23526:58:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9506,"nodeType":"ExpressionStatement","src":"23526:58:24"},{"expression":{"arguments":[{"arguments":[{"id":9510,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9481,"src":"23629:6:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":9509,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23621:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9508,"name":"address","nodeType":"ElementaryTypeName","src":"23621:7:24","typeDescriptions":{}}},"id":9511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23621:15:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9512,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8398,"src":"23638:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$8398_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":9513,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"23652:6:24","memberName":"eToken","nodeType":"MemberAccess","referencedDeclaration":8395,"src":"23638:20:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}],"id":9507,"name":"_requireCompActiveOrDeprecated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9342,"src":"23590:30:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$8398_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":9514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23590:69:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9515,"nodeType":"ExpressionStatement","src":"23590:69:24"},{"expression":{"id":9525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9516,"name":"amountWithdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9493,"src":"23665:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":9519,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9483,"src":"23699:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":9520,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"23707:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":9521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23707:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9522,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9487,"src":"23721:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9523,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9485,"src":"23728:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":9517,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9481,"src":"23683:6:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":9518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23690:8:24","memberName":"withdraw","nodeType":"MemberAccess","referencedDeclaration":14259,"src":"23683:15:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address,address,address) external returns (uint256)"}},"id":9524,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23683:54:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23665:72:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9526,"nodeType":"ExpressionStatement","src":"23665:72:24"},{"eventCall":{"arguments":[{"id":9528,"name":"eToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9481,"src":"23757:6:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},{"arguments":[],"expression":{"argumentTypes":[],"id":9529,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"23765:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":9530,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23765:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9531,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9485,"src":"23779:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9532,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9487,"src":"23789:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9533,"name":"amountWithdrawn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9493,"src":"23796:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9527,"name":"Withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8631,"src":"23748:8:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IEToken_$14336_$_t_address_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IEToken,address,address,address,uint256)"}},"id":9534,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23748:64:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9535,"nodeType":"EmitStatement","src":"23743:69:24"}]},"documentation":{"id":9478,"nodeType":"StructuredDocumentation","src":"23321:27:24","text":"@inheritdoc IPolicyPool"},"functionSelector":"dfcd412e","id":9537,"implemented":true,"kind":"function","modifiers":[{"id":9491,"kind":"modifierInvocation","modifierName":{"id":9490,"name":"whenNotPaused","nameLocations":["23472:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":18936,"src":"23472:13:24"},"nodeType":"ModifierInvocation","src":"23472:13:24"}],"name":"withdraw","nameLocation":"23360:8:24","nodeType":"FunctionDefinition","overrides":{"id":9489,"nodeType":"OverrideSpecifier","overrides":[],"src":"23463:8:24"},"parameters":{"id":9488,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9481,"mutability":"mutable","name":"eToken","nameLocation":"23382:6:24","nodeType":"VariableDeclaration","scope":9537,"src":"23374:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":9480,"nodeType":"UserDefinedTypeName","pathNode":{"id":9479,"name":"IEToken","nameLocations":["23374:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"23374:7:24"},"referencedDeclaration":14336,"src":"23374:7:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":9483,"mutability":"mutable","name":"amount","nameLocation":"23402:6:24","nodeType":"VariableDeclaration","scope":9537,"src":"23394:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9482,"name":"uint256","nodeType":"ElementaryTypeName","src":"23394:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9485,"mutability":"mutable","name":"receiver","nameLocation":"23422:8:24","nodeType":"VariableDeclaration","scope":9537,"src":"23414:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9484,"name":"address","nodeType":"ElementaryTypeName","src":"23414:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9487,"mutability":"mutable","name":"owner","nameLocation":"23444:5:24","nodeType":"VariableDeclaration","scope":9537,"src":"23436:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9486,"name":"address","nodeType":"ElementaryTypeName","src":"23436:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"23368:85:24"},"returnParameters":{"id":9494,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9493,"mutability":"mutable","name":"amountWithdrawn","nameLocation":"23503:15:24","nodeType":"VariableDeclaration","scope":9537,"src":"23495:23:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9492,"name":"uint256","nodeType":"ElementaryTypeName","src":"23495:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23494:25:24"},"scope":10934,"src":"23351:466:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14531],"body":{"id":9751,"nodeType":"Block","src":"24029:1550:24","statements":[{"assignments":[9557],"declarations":[{"constant":false,"id":9557,"mutability":"mutable","name":"rm","nameLocation":"24061:2:24","nodeType":"VariableDeclaration","scope":9751,"src":"24049:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},"typeName":{"id":9556,"nodeType":"UserDefinedTypeName","pathNode":{"id":9555,"name":"IRiskModule","nameLocations":["24049:11:24"],"nodeType":"IdentifierPath","referencedDeclaration":14762,"src":"24049:11:24"},"referencedDeclaration":14762,"src":"24049:11:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"visibility":"internal"}],"id":9562,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":9559,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"24078:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":9560,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24078:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9558,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14762,"src":"24066:11:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$14762_$","typeString":"type(contract IRiskModule)"}},"id":9561,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24066:25:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"nodeType":"VariableDeclarationStatement","src":"24049:42:24"},{"expression":{"arguments":[{"arguments":[{"id":9566,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9557,"src":"24124:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}],"id":9565,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24116:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9564,"name":"address","nodeType":"ElementaryTypeName","src":"24116:7:24","typeDescriptions":{}}},"id":9567,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24116:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9568,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8398,"src":"24129:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$8398_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":9569,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"24143:10:24","memberName":"riskModule","nodeType":"MemberAccess","referencedDeclaration":8396,"src":"24129:24:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}],"id":9563,"name":"_requireCompActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9312,"src":"24097:18:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$8398_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":9570,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24097:57:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9571,"nodeType":"ExpressionStatement","src":"24097:57:24"},{"assignments":[9574],"declarations":[{"constant":false,"id":9574,"mutability":"mutable","name":"pa","nameLocation":"24177:2:24","nodeType":"VariableDeclaration","scope":9751,"src":"24160:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"},"typeName":{"id":9573,"nodeType":"UserDefinedTypeName","pathNode":{"id":9572,"name":"IPremiumsAccount","nameLocations":["24160:16:24"],"nodeType":"IdentifierPath","referencedDeclaration":14743,"src":"24160:16:24"},"referencedDeclaration":14743,"src":"24160:16:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"id":9578,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9575,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9557,"src":"24182:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"id":9576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24185:15:24","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":14761,"src":"24182:18:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPremiumsAccount_$14743_$","typeString":"function () view external returns (contract IPremiumsAccount)"}},"id":9577,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24182:20:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"nodeType":"VariableDeclarationStatement","src":"24160:42:24"},{"expression":{"arguments":[{"arguments":[{"id":9582,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9574,"src":"24235:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}],"id":9581,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24227:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9580,"name":"address","nodeType":"ElementaryTypeName","src":"24227:7:24","typeDescriptions":{}}},"id":9583,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24227:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9584,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8398,"src":"24240:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$8398_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":9585,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"24254:15:24","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":8397,"src":"24240:29:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}],"id":9579,"name":"_requireCompActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9312,"src":"24208:18:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$8398_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":9586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24208:62:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9587,"nodeType":"ExpressionStatement","src":"24208:62:24"},{"expression":{"id":9599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":9588,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"24292:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9590,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"24299:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"24292:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":9595,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9557,"src":"24332:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}],"id":9594,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24324:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9593,"name":"address","nodeType":"ElementaryTypeName","src":"24324:7:24","typeDescriptions":{}}},"id":9596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24324:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9597,"name":"internalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9547,"src":"24337:10:24","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint96","typeString":"uint96"}],"expression":{"id":9591,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"24304:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":9592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24311:12:24","memberName":"makePolicyId","nodeType":"MemberAccess","referencedDeclaration":8313,"src":"24304:19:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_uint96_$returns$_t_uint256_$","typeString":"function (address,uint96) pure returns (uint256)"}},"id":9598,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24304:44:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24292:56:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9600,"nodeType":"ExpressionStatement","src":"24292:56:24"},{"expression":{"id":9609,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":9601,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"24354:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9603,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"24361:5:24","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":7741,"src":"24354:12:24","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":9606,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"24376:5:24","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":9607,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24382:9:24","memberName":"timestamp","nodeType":"MemberAccess","src":"24376:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9605,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24369:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":9604,"name":"uint40","nodeType":"ElementaryTypeName","src":"24369:6:24","typeDescriptions":{}}},"id":9608,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24369:23:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"24354:38:24","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"id":9610,"nodeType":"ExpressionStatement","src":"24354:38:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":9620,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":9612,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8418,"src":"24406:9:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":9615,"indexExpression":{"expression":{"id":9613,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"24416:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9614,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24423:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"24416:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"24406:20:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":9618,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24438: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":9617,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24430:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9616,"name":"bytes32","nodeType":"ElementaryTypeName","src":"24430:7:24","typeDescriptions":{}}},"id":9619,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24430:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"24406:34:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":9622,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"24462:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9623,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24469:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"24462:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9621,"name":"PolicyAlreadyExists","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8502,"src":"24442:19:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":9624,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24442:30:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":9611,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"24398:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":9625,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24398:75:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9626,"nodeType":"ExpressionStatement","src":"24398:75:24"},{"expression":{"id":9634,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":9627,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8418,"src":"24479:9:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":9630,"indexExpression":{"expression":{"id":9628,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"24489:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9629,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24496:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"24489:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"24479:20:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9631,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"24502:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9632,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24509:4:24","memberName":"hash","nodeType":"MemberAccess","referencedDeclaration":8248,"src":"24502:11:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_bytes32_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (bytes32)"}},"id":9633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24502:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"24479:36:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":9635,"nodeType":"ExpressionStatement","src":"24479:36:24"},{"expression":{"arguments":[{"id":9637,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9545,"src":"24531:12:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9638,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"24545:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9639,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24552:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"24545:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"","id":9640,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"24556:2:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":9636,"name":"_safeMint","nodeType":"Identifier","overloadedDeclarations":[18288,18318],"referencedDeclaration":18318,"src":"24521:9:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,uint256,bytes memory)"}},"id":9641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24521:38:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9642,"nodeType":"ExpressionStatement","src":"24521:38:24"},{"expression":{"arguments":[{"id":9644,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9557,"src":"24581:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},{"hexValue":"74727565","id":9645,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"24585:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"id":9646,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"24591:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9647,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24598:6:24","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":7723,"src":"24591:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9643,"name":"_changeExposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10586,"src":"24565:15:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IRiskModule_$14762_$_t_bool_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,bool,uint256)"}},"id":9648,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24565:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9649,"nodeType":"ExpressionStatement","src":"24565:40:24"},{"expression":{"arguments":[{"id":9653,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"24649:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"expression":{"id":9650,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9574,"src":"24632:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"id":9652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24635:13:24","memberName":"policyCreated","nodeType":"MemberAccess","referencedDeclaration":14669,"src":"24632:16:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PolicyData_$7744_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory) external"}},"id":9654,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24632:24:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9655,"nodeType":"ExpressionStatement","src":"24632:24:24"},{"expression":{"arguments":[{"id":9659,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9543,"src":"24720:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":9662,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9574,"src":"24735:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}],"id":9661,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24727:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9660,"name":"address","nodeType":"ElementaryTypeName","src":"24727:7:24","typeDescriptions":{}}},"id":9663,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24727:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9664,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"24740:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9665,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24747:11:24","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7731,"src":"24740:18:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9656,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8379,"src":"24693:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":9658,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24703:16:24","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":25041,"src":"24693:26:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$24193_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":9666,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24693:66:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9667,"nodeType":"ExpressionStatement","src":"24693:66:24"},{"assignments":[9670,9673],"declarations":[{"constant":false,"id":9670,"mutability":"mutable","name":"jrEtk","nameLocation":"24774:5:24","nodeType":"VariableDeclaration","scope":9751,"src":"24766:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":9669,"nodeType":"UserDefinedTypeName","pathNode":{"id":9668,"name":"IEToken","nameLocations":["24766:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"24766:7:24"},"referencedDeclaration":14336,"src":"24766:7:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":9673,"mutability":"mutable","name":"srEtk","nameLocation":"24789:5:24","nodeType":"VariableDeclaration","scope":9751,"src":"24781:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":9672,"nodeType":"UserDefinedTypeName","pathNode":{"id":9671,"name":"IEToken","nameLocations":["24781:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"24781:7:24"},"referencedDeclaration":14336,"src":"24781:7:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"}],"id":9677,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9674,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9574,"src":"24798:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"id":9675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24801:4:24","memberName":"etks","nodeType":"MemberAccess","referencedDeclaration":14736,"src":"24798:7:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IEToken_$14336_$_t_contract$_IEToken_$14336_$","typeString":"function () view external returns (contract IEToken,contract IEToken)"}},"id":9676,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24798:9:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_contract$_IEToken_$14336_$_t_contract$_IEToken_$14336_$","typeString":"tuple(contract IEToken,contract IEToken)"}},"nodeType":"VariableDeclarationStatement","src":"24765:42:24"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9678,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"24817:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9679,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24824:5:24","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7739,"src":"24817:12:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9680,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24832:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24817:16:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9694,"nodeType":"IfStatement","src":"24813:85:24","trueBody":{"expression":{"arguments":[{"id":9685,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9543,"src":"24862:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":9688,"name":"srEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9673,"src":"24877:5:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":9687,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24869:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9686,"name":"address","nodeType":"ElementaryTypeName","src":"24869:7:24","typeDescriptions":{}}},"id":9689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24869:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9690,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"24885:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9691,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24892:5:24","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7739,"src":"24885:12:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9682,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8379,"src":"24835:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":9684,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24845:16:24","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":25041,"src":"24835:26:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$24193_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":9692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24835:63:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9693,"nodeType":"ExpressionStatement","src":"24835:63:24"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9695,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"24908:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9696,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24915:5:24","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7737,"src":"24908:12:24","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":"24923:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24908:16:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9711,"nodeType":"IfStatement","src":"24904:85:24","trueBody":{"expression":{"arguments":[{"id":9702,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9543,"src":"24953:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":9705,"name":"jrEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9670,"src":"24968:5:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":9704,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24960:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9703,"name":"address","nodeType":"ElementaryTypeName","src":"24960:7:24","typeDescriptions":{}}},"id":9706,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24960:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9707,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"24976:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9708,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24983:5:24","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7737,"src":"24976:12:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9699,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8379,"src":"24926:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":9701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24936:16:24","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":25041,"src":"24926:26:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$24193_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":9709,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24926:63:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9710,"nodeType":"ExpressionStatement","src":"24926:63:24"}},{"expression":{"arguments":[{"id":9715,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9543,"src":"25022:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9716,"name":"_treasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8382,"src":"25029:9:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9717,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"25040:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9718,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25047:16:24","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":7733,"src":"25040:23:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9712,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8379,"src":"24995:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":9714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25005:16:24","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":25041,"src":"24995:26:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$24193_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":9719,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24995:69:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9720,"nodeType":"ExpressionStatement","src":"24995:69:24"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9721,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"25074:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9722,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25081:17:24","memberName":"partnerCommission","nodeType":"MemberAccess","referencedDeclaration":7735,"src":"25074:24:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":9723,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25101:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"25074:28:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9729,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9725,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9543,"src":"25106:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9726,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9557,"src":"25115:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"id":9727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25118:6:24","memberName":"wallet","nodeType":"MemberAccess","referencedDeclaration":14754,"src":"25115:9:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":9728,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25115:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"25106:20:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25074:52:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9742,"nodeType":"IfStatement","src":"25070:136:24","trueBody":{"expression":{"arguments":[{"id":9734,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9543,"src":"25161:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9735,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9557,"src":"25168:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"id":9736,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25171:6:24","memberName":"wallet","nodeType":"MemberAccess","referencedDeclaration":14754,"src":"25168:9:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":9737,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25168:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9738,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"25181:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9739,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25188:17:24","memberName":"partnerCommission","nodeType":"MemberAccess","referencedDeclaration":7735,"src":"25181:24:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9731,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8379,"src":"25134:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":9733,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25144:16:24","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":25041,"src":"25134:26:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$24193_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":9740,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25134:72:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9741,"nodeType":"ExpressionStatement","src":"25134:72:24"}},{"documentation":" This code does up to 5 ERC20 transfers. This can be avoided to reduce the gas cost, by implementing delayed\n transfers. This might be considered in the future, but to avoid increasing the complexity and since so far we\n operate on low gas-cost blockchains, we keep it as it is.","eventCall":{"arguments":[{"id":9744,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9557,"src":"25541:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},{"id":9745,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"25545:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":9743,"name":"NewPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14469,"src":"25531:9:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$14762_$_t_struct$_PolicyData_$7744_memory_ptr_$returns$__$","typeString":"function (contract IRiskModule,struct Policy.PolicyData memory)"}},"id":9746,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25531:21:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9747,"nodeType":"EmitStatement","src":"25526:26:24"},{"expression":{"expression":{"id":9748,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"25565:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9749,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25572:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"25565:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9554,"id":9750,"nodeType":"Return","src":"25558:16:24"}]},"documentation":{"id":9538,"nodeType":"StructuredDocumentation","src":"23821:27:24","text":"@inheritdoc IPolicyPool"},"functionSelector":"0d100acb","id":9752,"implemented":true,"kind":"function","modifiers":[{"id":9551,"kind":"modifierInvocation","modifierName":{"id":9550,"name":"whenNotPaused","nameLocations":["23997:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":18936,"src":"23997:13:24"},"nodeType":"ModifierInvocation","src":"23997:13:24"}],"name":"newPolicy","nameLocation":"23860:9:24","nodeType":"FunctionDefinition","overrides":{"id":9549,"nodeType":"OverrideSpecifier","overrides":[],"src":"23988:8:24"},"parameters":{"id":9548,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9541,"mutability":"mutable","name":"policy","nameLocation":"23900:6:24","nodeType":"VariableDeclaration","scope":9752,"src":"23875:31:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":9540,"nodeType":"UserDefinedTypeName","pathNode":{"id":9539,"name":"Policy.PolicyData","nameLocations":["23875:6:24","23882:10:24"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"23875:17:24"},"referencedDeclaration":7744,"src":"23875:17:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":9543,"mutability":"mutable","name":"payer","nameLocation":"23920:5:24","nodeType":"VariableDeclaration","scope":9752,"src":"23912:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9542,"name":"address","nodeType":"ElementaryTypeName","src":"23912:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9545,"mutability":"mutable","name":"policyHolder","nameLocation":"23939:12:24","nodeType":"VariableDeclaration","scope":9752,"src":"23931:20:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9544,"name":"address","nodeType":"ElementaryTypeName","src":"23931:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9547,"mutability":"mutable","name":"internalId","nameLocation":"23964:10:24","nodeType":"VariableDeclaration","scope":9752,"src":"23957:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":9546,"name":"uint96","nodeType":"ElementaryTypeName","src":"23957:6:24","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"23869:109:24"},"returnParameters":{"id":9554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9553,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9752,"src":"24020:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9552,"name":"uint256","nodeType":"ElementaryTypeName","src":"24020:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"24019:9:24"},"scope":10934,"src":"23851:1728:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14547],"body":{"id":10076,"nodeType":"Block","src":"25865:2711:24","statements":[{"expression":{"arguments":[{"id":9772,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"25901:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}],"id":9771,"name":"_validatePolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10288,"src":"25885:15:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$7744_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory) view"}},"id":9773,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25885:26:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9774,"nodeType":"ExpressionStatement","src":"25885:26:24"},{"assignments":[9777],"declarations":[{"constant":false,"id":9777,"mutability":"mutable","name":"rm","nameLocation":"25929:2:24","nodeType":"VariableDeclaration","scope":10076,"src":"25917:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},"typeName":{"id":9776,"nodeType":"UserDefinedTypeName","pathNode":{"id":9775,"name":"IRiskModule","nameLocations":["25917:11:24"],"nodeType":"IdentifierPath","referencedDeclaration":14762,"src":"25917:11:24"},"referencedDeclaration":14762,"src":"25917:11:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"visibility":"internal"}],"id":9782,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":9779,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"25946:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":9780,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25946:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":9778,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14762,"src":"25934:11:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$14762_$","typeString":"type(contract IRiskModule)"}},"id":9781,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25934:25:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"nodeType":"VariableDeclarationStatement","src":"25917:42:24"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9792,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":9785,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"25994:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":9786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26004:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"25994:12:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":9783,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"25969:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":9784,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25976:17:24","memberName":"extractRiskModule","nodeType":"MemberAccess","referencedDeclaration":8267,"src":"25969:24:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) pure returns (address)"}},"id":9787,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25969:38:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":9790,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9777,"src":"26019:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}],"id":9789,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26011:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9788,"name":"address","nodeType":"ElementaryTypeName","src":"26011:7:24","typeDescriptions":{}}},"id":9791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26011:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"25969:53:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9796,"nodeType":"IfStatement","src":"25965:89:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":9793,"name":"OnlyRiskModuleAllowed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8492,"src":"26031:21:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9794,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26031:23:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9795,"nodeType":"RevertStatement","src":"26024:30:24"}},{"expression":{"arguments":[{"arguments":[{"id":9800,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9777,"src":"26087:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}],"id":9799,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26079:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9798,"name":"address","nodeType":"ElementaryTypeName","src":"26079:7:24","typeDescriptions":{}}},"id":9801,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26079:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9802,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8398,"src":"26092:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$8398_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":9803,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26106:10:24","memberName":"riskModule","nodeType":"MemberAccess","referencedDeclaration":8396,"src":"26092:24:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}],"id":9797,"name":"_requireCompActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9312,"src":"26060:18:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$8398_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":9804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26060:57:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9805,"nodeType":"ExpressionStatement","src":"26060:57:24"},{"assignments":[9808],"declarations":[{"constant":false,"id":9808,"mutability":"mutable","name":"pa","nameLocation":"26140:2:24","nodeType":"VariableDeclaration","scope":10076,"src":"26123:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"},"typeName":{"id":9807,"nodeType":"UserDefinedTypeName","pathNode":{"id":9806,"name":"IPremiumsAccount","nameLocations":["26123:16:24"],"nodeType":"IdentifierPath","referencedDeclaration":14743,"src":"26123:16:24"},"referencedDeclaration":14743,"src":"26123:16:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"id":9812,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9809,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9777,"src":"26145:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"id":9810,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26148:15:24","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":14761,"src":"26145:18:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPremiumsAccount_$14743_$","typeString":"function () view external returns (contract IPremiumsAccount)"}},"id":9811,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26145:20:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"nodeType":"VariableDeclarationStatement","src":"26123:42:24"},{"expression":{"arguments":[{"arguments":[{"id":9816,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9808,"src":"26198:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}],"id":9815,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26190:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9814,"name":"address","nodeType":"ElementaryTypeName","src":"26190:7:24","typeDescriptions":{}}},"id":9817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26190:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9818,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8398,"src":"26203:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$8398_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":9819,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26217:15:24","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":8397,"src":"26203:29:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}],"id":9813,"name":"_requireCompActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9312,"src":"26171:18:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$8398_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":9820,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26171:62:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9821,"nodeType":"ExpressionStatement","src":"26171:62:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9839,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":9830,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9823,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"26254:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":9824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26264:10:24","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":7743,"src":"26254:20:24","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"expression":{"id":9827,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"26284:5:24","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":9828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26290:9:24","memberName":"timestamp","nodeType":"MemberAccess","src":"26284:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9826,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26277:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":9825,"name":"uint40","nodeType":"ElementaryTypeName","src":"26277:6:24","typeDescriptions":{}}},"id":9829,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26277:23:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"26254:46:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":9838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9831,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"26304:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9832,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26315:10:24","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":7743,"src":"26304:21:24","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"arguments":[{"expression":{"id":9835,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"26336:5:24","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":9836,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26342:9:24","memberName":"timestamp","nodeType":"MemberAccess","src":"26336:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9834,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26329:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":9833,"name":"uint40","nodeType":"ElementaryTypeName","src":"26329:6:24","typeDescriptions":{}}},"id":9837,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26329:23:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"26304:48:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26254:98:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":9841,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"26381:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":9842,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26391:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"26381:12:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9840,"name":"PolicyAlreadyExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8507,"src":"26360:20:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":9843,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26360:34:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":9822,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"26239:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":9844,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26239:161:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9845,"nodeType":"ExpressionStatement","src":"26239:161:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9881,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9875,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9863,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9857,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":9851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9847,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"26421:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":9848,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26431:5:24","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":7741,"src":"26421:15:24","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":9849,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"26440:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9850,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26451:5:24","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":7741,"src":"26440:16:24","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"26421:35:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9852,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"26468:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":9853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26478:11:24","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7731,"src":"26468:21:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":9854,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"26493:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9855,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26504:11:24","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7731,"src":"26493:22:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26468:47:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26421:94:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9858,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"26527:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":9859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26537:16:24","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":7733,"src":"26527:26:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":9860,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"26557:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9861,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26568:16:24","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":7733,"src":"26557:27:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26527:57:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26421:163:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9868,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9864,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"26596:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":9865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26606:5:24","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7737,"src":"26596:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":9866,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"26615:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9867,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26626:5:24","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7737,"src":"26615:16:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26596:35:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26421:210:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9870,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"26643:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":9871,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26653:5:24","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7739,"src":"26643:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":9872,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"26662:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9873,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26673:5:24","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7739,"src":"26662:16:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26643:35:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26421:257:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9880,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9876,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"26690:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":9877,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26700:17:24","memberName":"partnerCommission","nodeType":"MemberAccess","referencedDeclaration":7735,"src":"26690:27:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":9878,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"26721:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9879,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26732:17:24","memberName":"partnerCommission","nodeType":"MemberAccess","referencedDeclaration":7735,"src":"26721:28:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26690:59:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26421:328:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":9883,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"26782:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":9884,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"26793:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":9882,"name":"InvalidPolicyReplacement","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8530,"src":"26757:24:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_struct$_PolicyData_$7744_memory_ptr_$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_error_$","typeString":"function (struct Policy.PolicyData memory,struct Policy.PolicyData memory) pure returns (error)"}},"id":9885,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26757:47:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":9846,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"26406:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":9886,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26406:404:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9887,"nodeType":"ExpressionStatement","src":"26406:404:24"},{"expression":{"id":9899,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":9888,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"26900:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9890,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"26911:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"26900:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":9895,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9777,"src":"26944:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}],"id":9894,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26936:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9893,"name":"address","nodeType":"ElementaryTypeName","src":"26936:7:24","typeDescriptions":{}}},"id":9896,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26936:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9897,"name":"internalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9763,"src":"26949:10:24","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint96","typeString":"uint96"}],"expression":{"id":9891,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"26916:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":9892,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26923:12:24","memberName":"makePolicyId","nodeType":"MemberAccess","referencedDeclaration":8313,"src":"26916:19:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_uint96_$returns$_t_uint256_$","typeString":"function (address,uint96) pure returns (uint256)"}},"id":9898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26916:44:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26900:60:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9900,"nodeType":"ExpressionStatement","src":"26900:60:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":9910,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":9902,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8418,"src":"26974:9:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":9905,"indexExpression":{"expression":{"id":9903,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"26984:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9904,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26995:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"26984:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"26974:24:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":9908,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27010: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":9907,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27002:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9906,"name":"bytes32","nodeType":"ElementaryTypeName","src":"27002:7:24","typeDescriptions":{}}},"id":9909,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27002:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"26974:38:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":9912,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"27034:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9913,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27045:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"27034:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9911,"name":"PolicyAlreadyExists","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8502,"src":"27014:19:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":9914,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27014:34:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":9901,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"26966:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":9915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26966:83:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9916,"nodeType":"ExpressionStatement","src":"26966:83:24"},{"expression":{"id":9924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":9917,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8418,"src":"27055:9:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":9920,"indexExpression":{"expression":{"id":9918,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"27065:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9919,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27076:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"27065:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"27055:24:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9921,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"27082:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9922,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27093:4:24","memberName":"hash","nodeType":"MemberAccess","referencedDeclaration":8248,"src":"27082:15:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_bytes32_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (bytes32)"}},"id":9923,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27082:17:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"27055:44:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":9925,"nodeType":"ExpressionStatement","src":"27055:44:24"},{"assignments":[9927],"declarations":[{"constant":false,"id":9927,"mutability":"mutable","name":"policyHolder","nameLocation":"27113:12:24","nodeType":"VariableDeclaration","scope":10076,"src":"27105:20:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9926,"name":"address","nodeType":"ElementaryTypeName","src":"27105:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":9932,"initialValue":{"arguments":[{"expression":{"id":9929,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"27136:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":9930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27146:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"27136:12:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9928,"name":"ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17740,"src":"27128:7:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":9931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27128:21:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"27105:44:24"},{"expression":{"arguments":[{"id":9934,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9927,"src":"27165:12:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9935,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"27179:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9936,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27190:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"27179:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"","id":9937,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"27194:2:24","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":9933,"name":"_safeMint","nodeType":"Identifier","overloadedDeclarations":[18288,18318],"referencedDeclaration":18318,"src":"27155:9:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,uint256,bytes memory)"}},"id":9938,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27155:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9939,"nodeType":"ExpressionStatement","src":"27155:42:24"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9940,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"27207:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9941,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27218:6:24","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":7723,"src":"27207:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":9942,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"27227:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":9943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27237:6:24","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":7723,"src":"27227:16:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27207:36:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"arguments":[{"id":9956,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9777,"src":"27335:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},{"hexValue":"66616c7365","id":9957,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"27339:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9962,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9958,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"27346:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":9959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27356:6:24","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":7723,"src":"27346:16:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":9960,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"27365:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9961,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27376:6:24","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":7723,"src":"27365:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27346:36:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9955,"name":"_changeExposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10586,"src":"27319:15:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IRiskModule_$14762_$_t_bool_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,bool,uint256)"}},"id":9963,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27319:64:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9964,"nodeType":"ExpressionStatement","src":"27319:64:24"},"id":9965,"nodeType":"IfStatement","src":"27203:180:24","trueBody":{"expression":{"arguments":[{"id":9946,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9777,"src":"27261:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},{"hexValue":"74727565","id":9947,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"27265:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9952,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9948,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"27271:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9949,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27282:6:24","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":7723,"src":"27271:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":9950,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"27291:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":9951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27301:6:24","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":7723,"src":"27291:16:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27271:36:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9945,"name":"_changeExposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10586,"src":"27245:15:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IRiskModule_$14762_$_t_bool_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,bool,uint256)"}},"id":9953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27245:63:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9954,"nodeType":"ExpressionStatement","src":"27245:63:24"}},{"expression":{"id":9970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"27389:30:24","subExpression":{"baseExpression":{"id":9966,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8418,"src":"27396:9:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":9969,"indexExpression":{"expression":{"id":9967,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"27406:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":9968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27416:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"27406:12:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"27396:23:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9971,"nodeType":"ExpressionStatement","src":"27389:30:24"},{"expression":{"arguments":[{"id":9975,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"27464:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":9976,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"27475:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"expression":{"id":9972,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9808,"src":"27446:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"id":9974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27449:14:24","memberName":"policyReplaced","nodeType":"MemberAccess","referencedDeclaration":14679,"src":"27446:17:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PolicyData_$7744_memory_ptr_$_t_struct$_PolicyData_$7744_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory,struct Policy.PolicyData memory) external"}},"id":9977,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27446:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9978,"nodeType":"ExpressionStatement","src":"27446:40:24"},{"expression":{"arguments":[{"id":9980,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9761,"src":"27542:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":9983,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9808,"src":"27557:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}],"id":9982,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27549:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9981,"name":"address","nodeType":"ElementaryTypeName","src":"27549:7:24","typeDescriptions":{}}},"id":9984,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27549:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":9985,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"27562:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":9986,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27573:11:24","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7731,"src":"27562:22:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":9987,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"27586:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":9988,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27596:11:24","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7731,"src":"27586:21:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9979,"name":"_transferIfNonZero","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10261,"src":"27523:18:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":9989,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27523:85:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9990,"nodeType":"ExpressionStatement","src":"27523:85:24"},{"assignments":[9993,9996],"declarations":[{"constant":false,"id":9993,"mutability":"mutable","name":"jrEtk","nameLocation":"27623:5:24","nodeType":"VariableDeclaration","scope":10076,"src":"27615:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":9992,"nodeType":"UserDefinedTypeName","pathNode":{"id":9991,"name":"IEToken","nameLocations":["27615:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"27615:7:24"},"referencedDeclaration":14336,"src":"27615:7:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":9996,"mutability":"mutable","name":"srEtk","nameLocation":"27638:5:24","nodeType":"VariableDeclaration","scope":10076,"src":"27630:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":9995,"nodeType":"UserDefinedTypeName","pathNode":{"id":9994,"name":"IEToken","nameLocations":["27630:7:24"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"27630:7:24"},"referencedDeclaration":14336,"src":"27630:7:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"}],"id":10000,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9997,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9808,"src":"27647:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"id":9998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27650:4:24","memberName":"etks","nodeType":"MemberAccess","referencedDeclaration":14736,"src":"27647:7:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IEToken_$14336_$_t_contract$_IEToken_$14336_$","typeString":"function () view external returns (contract IEToken,contract IEToken)"}},"id":9999,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27647:9:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_contract$_IEToken_$14336_$_t_contract$_IEToken_$14336_$","typeString":"tuple(contract IEToken,contract IEToken)"}},"nodeType":"VariableDeclarationStatement","src":"27614:42:24"},{"expression":{"arguments":[{"id":10002,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9761,"src":"27681:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":10005,"name":"srEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9996,"src":"27696:5:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":10004,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27688:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10003,"name":"address","nodeType":"ElementaryTypeName","src":"27688:7:24","typeDescriptions":{}}},"id":10006,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27688:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":10007,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"27704:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10008,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27715:5:24","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7739,"src":"27704:16:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":10009,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"27722:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27732:5:24","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7739,"src":"27722:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10001,"name":"_transferIfNonZero","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10261,"src":"27662:18:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":10011,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27662:76:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10012,"nodeType":"ExpressionStatement","src":"27662:76:24"},{"expression":{"arguments":[{"id":10014,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9761,"src":"27763:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":10017,"name":"jrEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9993,"src":"27778:5:24","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":10016,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27770:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10015,"name":"address","nodeType":"ElementaryTypeName","src":"27770:7:24","typeDescriptions":{}}},"id":10018,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27770:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":10019,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"27786:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10020,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27797:5:24","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7737,"src":"27786:16:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":10021,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"27804:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10022,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27814:5:24","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7737,"src":"27804:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10013,"name":"_transferIfNonZero","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10261,"src":"27744:18:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":10023,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27744:76:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10024,"nodeType":"ExpressionStatement","src":"27744:76:24"},{"expression":{"arguments":[{"id":10026,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9761,"src":"27845:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10027,"name":"_treasury","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8382,"src":"27852:9:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":10028,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"27863:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10029,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27874:16:24","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":7733,"src":"27863:27:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":10030,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"27892:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27902:16:24","memberName":"ensuroCommission","nodeType":"MemberAccess","referencedDeclaration":7733,"src":"27892:26:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10025,"name":"_transferIfNonZero","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10261,"src":"27826:18:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":10032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27826:93:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10033,"nodeType":"ExpressionStatement","src":"27826:93:24"},{"assignments":[10035],"declarations":[{"constant":false,"id":10035,"mutability":"mutable","name":"rmWallet","nameLocation":"27933:8:24","nodeType":"VariableDeclaration","scope":10076,"src":"27925:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10034,"name":"address","nodeType":"ElementaryTypeName","src":"27925:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":10039,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":10036,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9777,"src":"27944:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"id":10037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27947:6:24","memberName":"wallet","nodeType":"MemberAccess","referencedDeclaration":14754,"src":"27944:9:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":10038,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27944:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"27925:30:24"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10040,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9761,"src":"27965:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":10041,"name":"rmWallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10035,"src":"27974:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27965:17:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10052,"nodeType":"IfStatement","src":"27961:123:24","trueBody":{"expression":{"arguments":[{"id":10044,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9761,"src":"28009:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10045,"name":"rmWallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10035,"src":"28016:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":10046,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"28026:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10047,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28037:17:24","memberName":"partnerCommission","nodeType":"MemberAccess","referencedDeclaration":7735,"src":"28026:28:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":10048,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"28056:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28066:17:24","memberName":"partnerCommission","nodeType":"MemberAccess","referencedDeclaration":7735,"src":"28056:27:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10043,"name":"_transferIfNonZero","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10261,"src":"27990:18:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":10050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27990:94:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10051,"nodeType":"ExpressionStatement","src":"27990:94:24"}},{"documentation":" This code does up to 5 ERC20 transfers. This can be avoided to reduce the gas cost, by implementing delayed\n transfers. This might be considered in the future, but to avoid increasing the complexity and since so far we\n operate on low gas-cost blockchains, we keep it as it is.","eventCall":{"arguments":[{"id":10054,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9777,"src":"28419:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},{"id":10055,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"28423:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":10053,"name":"NewPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14469,"src":"28409:9:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$14762_$_t_struct$_PolicyData_$7744_memory_ptr_$returns$__$","typeString":"function (contract IRiskModule,struct Policy.PolicyData memory)"}},"id":10056,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28409:25:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10057,"nodeType":"EmitStatement","src":"28404:30:24"},{"eventCall":{"arguments":[{"id":10059,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9777,"src":"28460:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},{"expression":{"id":10060,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"28464:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28474:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"28464:12:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":10062,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"28478:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10063,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28489:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"28478:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10058,"name":"PolicyReplaced","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14479,"src":"28445:14:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$14762_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,uint256,uint256)"}},"id":10064,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28445:47:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10065,"nodeType":"EmitStatement","src":"28440:52:24"},{"expression":{"arguments":[{"expression":{"id":10067,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9756,"src":"28517:9:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28527:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"28517:12:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":10069,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"28531:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10070,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28542:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"28531:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10066,"name":"_notifyReplacement","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"28498:18:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":10071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28498:47:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10072,"nodeType":"ExpressionStatement","src":"28498:47:24"},{"expression":{"expression":{"id":10073,"name":"newPolicy_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9759,"src":"28558:10:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10074,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28569:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"28558:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9770,"id":10075,"nodeType":"Return","src":"28551:20:24"}]},"documentation":{"id":9753,"nodeType":"StructuredDocumentation","src":"25583:27:24","text":"@inheritdoc IPolicyPool"},"functionSelector":"663d8337","id":10077,"implemented":true,"kind":"function","modifiers":[{"id":9767,"kind":"modifierInvocation","modifierName":{"id":9766,"name":"whenNotPaused","nameLocations":["25833:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":18936,"src":"25833:13:24"},"nodeType":"ModifierInvocation","src":"25833:13:24"}],"name":"replacePolicy","nameLocation":"25672:13:24","nodeType":"FunctionDefinition","overrides":{"id":9765,"nodeType":"OverrideSpecifier","overrides":[],"src":"25824:8:24"},"parameters":{"id":9764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9756,"mutability":"mutable","name":"oldPolicy","nameLocation":"25718:9:24","nodeType":"VariableDeclaration","scope":10077,"src":"25691:36:24","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":9755,"nodeType":"UserDefinedTypeName","pathNode":{"id":9754,"name":"Policy.PolicyData","nameLocations":["25691:6:24","25698:10:24"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"25691:17:24"},"referencedDeclaration":7744,"src":"25691:17:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":9759,"mutability":"mutable","name":"newPolicy_","nameLocation":"25758:10:24","nodeType":"VariableDeclaration","scope":10077,"src":"25733:35:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":9758,"nodeType":"UserDefinedTypeName","pathNode":{"id":9757,"name":"Policy.PolicyData","nameLocations":["25733:6:24","25740:10:24"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"25733:17:24"},"referencedDeclaration":7744,"src":"25733:17:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":9761,"mutability":"mutable","name":"payer","nameLocation":"25782:5:24","nodeType":"VariableDeclaration","scope":10077,"src":"25774:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9760,"name":"address","nodeType":"ElementaryTypeName","src":"25774:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9763,"mutability":"mutable","name":"internalId","nameLocation":"25800:10:24","nodeType":"VariableDeclaration","scope":10077,"src":"25793:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":9762,"name":"uint96","nodeType":"ElementaryTypeName","src":"25793:6:24","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"25685:129:24"},"returnParameters":{"id":9770,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9769,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10077,"src":"25856:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9768,"name":"uint256","nodeType":"ElementaryTypeName","src":"25856:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25855:9:24"},"scope":10934,"src":"25663:2913:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14560],"body":{"id":10229,"nodeType":"Block","src":"28796:1247:24","statements":[{"expression":{"arguments":[{"id":10094,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10081,"src":"28832:14:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}],"id":10093,"name":"_validatePolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10288,"src":"28816:15:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$7744_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory) view"}},"id":10095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28816:31:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10096,"nodeType":"ExpressionStatement","src":"28816:31:24"},{"assignments":[10099],"declarations":[{"constant":false,"id":10099,"mutability":"mutable","name":"rm","nameLocation":"28865:2:24","nodeType":"VariableDeclaration","scope":10229,"src":"28853:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},"typeName":{"id":10098,"nodeType":"UserDefinedTypeName","pathNode":{"id":10097,"name":"IRiskModule","nameLocations":["28853:11:24"],"nodeType":"IdentifierPath","referencedDeclaration":14762,"src":"28853:11:24"},"referencedDeclaration":14762,"src":"28853:11:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"visibility":"internal"}],"id":10104,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":10101,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"28882:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":10102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28882:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10100,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14762,"src":"28870:11:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$14762_$","typeString":"type(contract IRiskModule)"}},"id":10103,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28870:25:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"nodeType":"VariableDeclarationStatement","src":"28853:42:24"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":10107,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10081,"src":"28930:14:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28945:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"28930:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10105,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"28905:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":10106,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28912:17:24","memberName":"extractRiskModule","nodeType":"MemberAccess","referencedDeclaration":8267,"src":"28905:24:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) pure returns (address)"}},"id":10109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28905:43:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":10112,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10099,"src":"28960:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}],"id":10111,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28952:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10110,"name":"address","nodeType":"ElementaryTypeName","src":"28952:7:24","typeDescriptions":{}}},"id":10113,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28952:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"28905:58:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10118,"nodeType":"IfStatement","src":"28901:94:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":10115,"name":"OnlyRiskModuleAllowed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8492,"src":"28972:21:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":10116,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28972:23:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10117,"nodeType":"RevertStatement","src":"28965:30:24"}},{"expression":{"arguments":[{"arguments":[{"id":10122,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10099,"src":"29040:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}],"id":10121,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29032:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10120,"name":"address","nodeType":"ElementaryTypeName","src":"29032:7:24","typeDescriptions":{}}},"id":10123,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29032:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":10124,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8398,"src":"29045:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$8398_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":10125,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"29059:10:24","memberName":"riskModule","nodeType":"MemberAccess","referencedDeclaration":8396,"src":"29045:24:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}],"id":10119,"name":"_requireCompActiveOrDeprecated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9342,"src":"29001:30:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$8398_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":10126,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29001:69:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10127,"nodeType":"ExpressionStatement","src":"29001:69:24"},{"assignments":[10130],"declarations":[{"constant":false,"id":10130,"mutability":"mutable","name":"pa","nameLocation":"29093:2:24","nodeType":"VariableDeclaration","scope":10229,"src":"29076:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"},"typeName":{"id":10129,"nodeType":"UserDefinedTypeName","pathNode":{"id":10128,"name":"IPremiumsAccount","nameLocations":["29076:16:24"],"nodeType":"IdentifierPath","referencedDeclaration":14743,"src":"29076:16:24"},"referencedDeclaration":14743,"src":"29076:16:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"id":10134,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":10131,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10099,"src":"29098:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"id":10132,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29101:15:24","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":14761,"src":"29098:18:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPremiumsAccount_$14743_$","typeString":"function () view external returns (contract IPremiumsAccount)"}},"id":10133,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29098:20:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"nodeType":"VariableDeclarationStatement","src":"29076:42:24"},{"expression":{"arguments":[{"arguments":[{"id":10138,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10130,"src":"29163:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}],"id":10137,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29155:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10136,"name":"address","nodeType":"ElementaryTypeName","src":"29155:7:24","typeDescriptions":{}}},"id":10139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29155:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":10140,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8398,"src":"29168:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$8398_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":10141,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"29182:15:24","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":8397,"src":"29168:29:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}],"id":10135,"name":"_requireCompActiveOrDeprecated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9342,"src":"29124:30:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$8398_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":10142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29124:74:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10143,"nodeType":"ExpressionStatement","src":"29124:74:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":10152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":10145,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10081,"src":"29212:14:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29227:10:24","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":7743,"src":"29212:25:24","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"expression":{"id":10149,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"29247:5:24","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":10150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29253:9:24","memberName":"timestamp","nodeType":"MemberAccess","src":"29247:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10148,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29240:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":10147,"name":"uint40","nodeType":"ElementaryTypeName","src":"29240:6:24","typeDescriptions":{}}},"id":10151,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29240:23:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"29212:51:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":10154,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10081,"src":"29286:14:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29301:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"29286:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10153,"name":"PolicyAlreadyExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8507,"src":"29265:20:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":10156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29265:39:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":10144,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"29204:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":10157,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29204:101:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10158,"nodeType":"ExpressionStatement","src":"29204:101:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10168,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10160,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10083,"src":"29326:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":10161,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10081,"src":"29347:14:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29362:11:24","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7731,"src":"29347:26:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29326:47:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10164,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10085,"src":"29385:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":10165,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10081,"src":"29400:14:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10166,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29415:5:24","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7737,"src":"29400:20:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29385:35:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"29326:94:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10169,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10087,"src":"29432:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":10170,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10081,"src":"29447:14:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29462:5:24","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7739,"src":"29447:20:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29432:35:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"29326:141:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":10175,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10081,"src":"29501:14:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":10176,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10083,"src":"29517:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10177,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10085,"src":"29536:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10178,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10087,"src":"29549:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10174,"name":"InvalidPolicyCancellation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8542,"src":"29475:25:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (struct Policy.PolicyData memory,uint256,uint256,uint256) pure returns (error)"}},"id":10179,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29475:86:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":10159,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"29311:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":10180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29311:256:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10181,"nodeType":"ExpressionStatement","src":"29311:256:24"},{"assignments":[10183],"declarations":[{"constant":false,"id":10183,"mutability":"mutable","name":"policyHolder","nameLocation":"29597:12:24","nodeType":"VariableDeclaration","scope":10229,"src":"29589:20:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10182,"name":"address","nodeType":"ElementaryTypeName","src":"29589:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":10188,"initialValue":{"arguments":[{"expression":{"id":10185,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10081,"src":"29620:14:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29635:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"29620:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10184,"name":"ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17740,"src":"29612:7:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":10187,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29612:26:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"29589:49:24"},{"expression":{"arguments":[{"id":10190,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10099,"src":"29660:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},{"hexValue":"66616c7365","id":10191,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"29664:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"expression":{"id":10192,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10081,"src":"29671:14:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29686:6:24","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":7723,"src":"29671:21:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10189,"name":"_changeExposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10586,"src":"29644:15:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IRiskModule_$14762_$_t_bool_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,bool,uint256)"}},"id":10194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29644:49:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10195,"nodeType":"ExpressionStatement","src":"29644:49:24"},{"expression":{"id":10200,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"29699:35:24","subExpression":{"baseExpression":{"id":10196,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8418,"src":"29706:9:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":10199,"indexExpression":{"expression":{"id":10197,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10081,"src":"29716:14:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10198,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29731:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"29716:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"29706:28:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10201,"nodeType":"ExpressionStatement","src":"29699:35:24"},{"expression":{"arguments":[{"id":10205,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10081,"src":"29780:14:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":10206,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10083,"src":"29796:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10207,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10085,"src":"29815:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10208,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10087,"src":"29828:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10209,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10183,"src":"29841:12:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":10202,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10130,"src":"29761:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"id":10204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29764:15:24","memberName":"policyCancelled","nodeType":"MemberAccess","referencedDeclaration":14694,"src":"29761:18:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_address_$returns$__$","typeString":"function (struct Policy.PolicyData memory,uint256,uint256,uint256,address) external"}},"id":10210,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29761:93:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10211,"nodeType":"ExpressionStatement","src":"29761:93:24"},{"eventCall":{"arguments":[{"id":10213,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10099,"src":"29882:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},{"expression":{"id":10214,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10081,"src":"29886:14:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29901:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"29886:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10216,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10083,"src":"29905:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10217,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10085,"src":"29924:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10218,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10087,"src":"29937:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10212,"name":"PolicyCancelled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14493,"src":"29866:15:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$14762_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,uint256,uint256,uint256,uint256)"}},"id":10219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29866:83:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10220,"nodeType":"EmitStatement","src":"29861:88:24"},{"expression":{"arguments":[{"expression":{"id":10222,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10081,"src":"29975:14:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10223,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29990:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"29975:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10224,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10083,"src":"29994:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10225,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10085,"src":"30013:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10226,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10087,"src":"30026:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10221,"name":"_notifyCancellation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10880,"src":"29955:19:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256,uint256)"}},"id":10227,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29955:83:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10228,"nodeType":"ExpressionStatement","src":"29955:83:24"}]},"documentation":{"id":10078,"nodeType":"StructuredDocumentation","src":"28580:27:24","text":"@inheritdoc IPolicyPool"},"functionSelector":"6f520b73","id":10230,"implemented":true,"kind":"function","modifiers":[{"id":10091,"kind":"modifierInvocation","modifierName":{"id":10090,"name":"whenNotPaused","nameLocations":["28782:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":18936,"src":"28782:13:24"},"nodeType":"ModifierInvocation","src":"28782:13:24"}],"name":"cancelPolicy","nameLocation":"28619:12:24","nodeType":"FunctionDefinition","overrides":{"id":10089,"nodeType":"OverrideSpecifier","overrides":[],"src":"28773:8:24"},"parameters":{"id":10088,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10081,"mutability":"mutable","name":"policyToCancel","nameLocation":"28664:14:24","nodeType":"VariableDeclaration","scope":10230,"src":"28637:41:24","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":10080,"nodeType":"UserDefinedTypeName","pathNode":{"id":10079,"name":"Policy.PolicyData","nameLocations":["28637:6:24","28644:10:24"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"28637:17:24"},"referencedDeclaration":7744,"src":"28637:17:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":10083,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"28692:17:24","nodeType":"VariableDeclaration","scope":10230,"src":"28684:25:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10082,"name":"uint256","nodeType":"ElementaryTypeName","src":"28684:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10085,"mutability":"mutable","name":"jrCocRefund","nameLocation":"28723:11:24","nodeType":"VariableDeclaration","scope":10230,"src":"28715:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10084,"name":"uint256","nodeType":"ElementaryTypeName","src":"28715:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10087,"mutability":"mutable","name":"srCocRefund","nameLocation":"28748:11:24","nodeType":"VariableDeclaration","scope":10230,"src":"28740:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10086,"name":"uint256","nodeType":"ElementaryTypeName","src":"28740:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"28631:132:24"},"returnParameters":{"id":10092,"nodeType":"ParameterList","parameters":[],"src":"28796:0:24"},"scope":10934,"src":"28610:1433:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":10260,"nodeType":"Block","src":"30143:116:24","statements":[{"assignments":[10242],"declarations":[{"constant":false,"id":10242,"mutability":"mutable","name":"aux","nameLocation":"30157:3:24","nodeType":"VariableDeclaration","scope":10260,"src":"30149:11:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10241,"name":"uint256","nodeType":"ElementaryTypeName","src":"30149:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":10246,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10243,"name":"new_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10236,"src":"30163:4:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":10244,"name":"old_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10238,"src":"30170:4:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30163:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"30149:25:24"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10249,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10247,"name":"aux","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10242,"src":"30184:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":10248,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30191:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"30184:8:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10259,"nodeType":"IfStatement","src":"30180:75:24","trueBody":{"id":10258,"nodeType":"Block","src":"30194:61:24","statements":[{"expression":{"arguments":[{"id":10253,"name":"payer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10232,"src":"30229:5:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10254,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10234,"src":"30236:6:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10255,"name":"aux","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10242,"src":"30244:3:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10250,"name":"_currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8379,"src":"30202:9:24","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":10252,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30212:16:24","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":25041,"src":"30202:26:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$24193_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":10256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30202:46:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10257,"nodeType":"ExpressionStatement","src":"30202:46:24"}]}}]},"id":10261,"implemented":true,"kind":"function","modifiers":[],"name":"_transferIfNonZero","nameLocation":"30056:18:24","nodeType":"FunctionDefinition","parameters":{"id":10239,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10232,"mutability":"mutable","name":"payer","nameLocation":"30083:5:24","nodeType":"VariableDeclaration","scope":10261,"src":"30075:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10231,"name":"address","nodeType":"ElementaryTypeName","src":"30075:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10234,"mutability":"mutable","name":"target","nameLocation":"30098:6:24","nodeType":"VariableDeclaration","scope":10261,"src":"30090:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10233,"name":"address","nodeType":"ElementaryTypeName","src":"30090:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10236,"mutability":"mutable","name":"new_","nameLocation":"30114:4:24","nodeType":"VariableDeclaration","scope":10261,"src":"30106:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10235,"name":"uint256","nodeType":"ElementaryTypeName","src":"30106:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10238,"mutability":"mutable","name":"old_","nameLocation":"30128:4:24","nodeType":"VariableDeclaration","scope":10261,"src":"30120:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10237,"name":"uint256","nodeType":"ElementaryTypeName","src":"30120:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30074:59:24"},"returnParameters":{"id":10240,"nodeType":"ParameterList","parameters":[],"src":"30143:0:24"},"scope":10934,"src":"30047:212:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10287,"nodeType":"Block","src":"30335:102:24","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":10268,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10264,"src":"30349:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10269,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30356:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"30349:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":10270,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30362:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"30349:14:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":10272,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10264,"src":"30367:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10273,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30374:4:24","memberName":"hash","nodeType":"MemberAccess","referencedDeclaration":8248,"src":"30367:11:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_bytes32_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (bytes32)"}},"id":10274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30367:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"baseExpression":{"id":10275,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8418,"src":"30384:9:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":10278,"indexExpression":{"expression":{"id":10276,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10264,"src":"30394:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10277,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30401:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"30394:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30384:20:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"30367:37:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"30349:55:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":10282,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10264,"src":"30421:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10283,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30428:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"30421:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10281,"name":"PolicyNotFound","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8512,"src":"30406:14:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":10284,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30406:25:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":10267,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"30341:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":10285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30341:91:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10286,"nodeType":"ExpressionStatement","src":"30341:91:24"}]},"id":10288,"implemented":true,"kind":"function","modifiers":[],"name":"_validatePolicy","nameLocation":"30272:15:24","nodeType":"FunctionDefinition","parameters":{"id":10265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10264,"mutability":"mutable","name":"policy","nameLocation":"30313:6:24","nodeType":"VariableDeclaration","scope":10288,"src":"30288:31:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":10263,"nodeType":"UserDefinedTypeName","pathNode":{"id":10262,"name":"Policy.PolicyData","nameLocations":["30288:6:24","30295:10:24"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"30288:17:24"},"referencedDeclaration":7744,"src":"30288:17:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"30287:33:24"},"returnParameters":{"id":10266,"nodeType":"ParameterList","parameters":[],"src":"30335:0:24"},"scope":10934,"src":"30263:174:24","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[14576],"body":{"id":10319,"nodeType":"Block","src":"30560:166:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":10298,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10292,"src":"30570:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30577:10:24","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":7743,"src":"30570:17:24","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":10300,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"30590:5:24","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":10301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30596:9:24","memberName":"timestamp","nodeType":"MemberAccess","src":"30590:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30570:35:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10312,"nodeType":"IfStatement","src":"30566:111:24","trueBody":{"errorCall":{"arguments":[{"expression":{"id":10304,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10292,"src":"30631:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30638:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"30631:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":10306,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10292,"src":"30642:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":10307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30649:10:24","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":7743,"src":"30642:17:24","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"expression":{"id":10308,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"30661:5:24","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":10309,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30667:9:24","memberName":"timestamp","nodeType":"MemberAccess","src":"30661:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10303,"name":"PolicyNotExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8521,"src":"30614:16:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint40_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint40,uint256) pure returns (error)"}},"id":10310,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30614:63:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10311,"nodeType":"RevertStatement","src":"30607:70:24"}},{"expression":{"arguments":[{"id":10314,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10292,"src":"30705:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"hexValue":"30","id":10315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30713:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"74727565","id":10316,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"30716:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":10313,"name":"_resolvePolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10534,"src":"30690:14:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (struct Policy.PolicyData memory,uint256,bool)"}},"id":10317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30690:31:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"functionReturnParameters":10297,"id":10318,"nodeType":"Return","src":"30683:38:24"}]},"documentation":{"id":10289,"nodeType":"StructuredDocumentation","src":"30441:27:24","text":"@inheritdoc IPolicyPool"},"functionSelector":"f720bbbf","id":10320,"implemented":true,"kind":"function","modifiers":[{"id":10296,"kind":"modifierInvocation","modifierName":{"id":10295,"name":"whenNotPaused","nameLocations":["30546:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":18936,"src":"30546:13:24"},"nodeType":"ModifierInvocation","src":"30546:13:24"}],"name":"expirePolicy","nameLocation":"30480:12:24","nodeType":"FunctionDefinition","overrides":{"id":10294,"nodeType":"OverrideSpecifier","overrides":[],"src":"30537:8:24"},"parameters":{"id":10293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10292,"mutability":"mutable","name":"policy","nameLocation":"30520:6:24","nodeType":"VariableDeclaration","scope":10320,"src":"30493:33:24","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":10291,"nodeType":"UserDefinedTypeName","pathNode":{"id":10290,"name":"Policy.PolicyData","nameLocations":["30493:6:24","30500:10:24"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"30493:17:24"},"referencedDeclaration":7744,"src":"30493:17:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"30492:35:24"},"returnParameters":{"id":10297,"nodeType":"ParameterList","parameters":[],"src":"30560:0:24"},"scope":10934,"src":"30471:255:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14569],"body":{"id":10338,"nodeType":"Block","src":"30866:55:24","statements":[{"expression":{"arguments":[{"id":10333,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10324,"src":"30894:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":10334,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10326,"src":"30902:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":10335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"30910:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":10332,"name":"_resolvePolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10534,"src":"30879:14:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (struct Policy.PolicyData memory,uint256,bool)"}},"id":10336,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30879:37:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"functionReturnParameters":10331,"id":10337,"nodeType":"Return","src":"30872:44:24"}]},"documentation":{"id":10321,"nodeType":"StructuredDocumentation","src":"30730:27:24","text":"@inheritdoc IPolicyPool"},"functionSelector":"bd644c56","id":10339,"implemented":true,"kind":"function","modifiers":[{"id":10330,"kind":"modifierInvocation","modifierName":{"id":10329,"name":"whenNotPaused","nameLocations":["30852:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":18936,"src":"30852:13:24"},"nodeType":"ModifierInvocation","src":"30852:13:24"}],"name":"resolvePolicy","nameLocation":"30769:13:24","nodeType":"FunctionDefinition","overrides":{"id":10328,"nodeType":"OverrideSpecifier","overrides":[],"src":"30843:8:24"},"parameters":{"id":10327,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10324,"mutability":"mutable","name":"policy","nameLocation":"30810:6:24","nodeType":"VariableDeclaration","scope":10339,"src":"30783:33:24","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":10323,"nodeType":"UserDefinedTypeName","pathNode":{"id":10322,"name":"Policy.PolicyData","nameLocations":["30783:6:24","30790:10:24"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"30783:17:24"},"referencedDeclaration":7744,"src":"30783:17:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":10326,"mutability":"mutable","name":"payout","nameLocation":"30826:6:24","nodeType":"VariableDeclaration","scope":10339,"src":"30818:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10325,"name":"uint256","nodeType":"ElementaryTypeName","src":"30818:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30782:51:24"},"returnParameters":{"id":10331,"nodeType":"ParameterList","parameters":[],"src":"30866:0:24"},"scope":10934,"src":"30760:161:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14584],"body":{"id":10357,"nodeType":"Block","src":"31029:51:24","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":10355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":10348,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8418,"src":"31042:9:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":10350,"indexExpression":{"id":10349,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10342,"src":"31052:8:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"31042:19:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":10353,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31073: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":10352,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31065:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":10351,"name":"bytes32","nodeType":"ElementaryTypeName","src":"31065:7:24","typeDescriptions":{}}},"id":10354,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31065:10:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"31042:33:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":10347,"id":10356,"nodeType":"Return","src":"31035:40:24"}]},"documentation":{"id":10340,"nodeType":"StructuredDocumentation","src":"30925:27:24","text":"@inheritdoc IPolicyPool"},"functionSelector":"82afd23b","id":10358,"implemented":true,"kind":"function","modifiers":[],"name":"isActive","nameLocation":"30964:8:24","nodeType":"FunctionDefinition","overrides":{"id":10344,"nodeType":"OverrideSpecifier","overrides":[],"src":"31005:8:24"},"parameters":{"id":10343,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10342,"mutability":"mutable","name":"policyId","nameLocation":"30981:8:24","nodeType":"VariableDeclaration","scope":10358,"src":"30973:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10341,"name":"uint256","nodeType":"ElementaryTypeName","src":"30973:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30972:18:24"},"returnParameters":{"id":10347,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10346,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10358,"src":"31023:4:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10345,"name":"bool","nodeType":"ElementaryTypeName","src":"31023:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"31022:6:24"},"scope":10934,"src":"30955:125:24","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[14592],"body":{"id":10371,"nodeType":"Block","src":"31196:37:24","statements":[{"expression":{"baseExpression":{"id":10367,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8418,"src":"31209:9:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":10369,"indexExpression":{"id":10368,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10361,"src":"31219:8:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"31209:19:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":10366,"id":10370,"nodeType":"Return","src":"31202:26:24"}]},"documentation":{"id":10359,"nodeType":"StructuredDocumentation","src":"31084:27:24","text":"@inheritdoc IPolicyPool"},"functionSelector":"792da09e","id":10372,"implemented":true,"kind":"function","modifiers":[],"name":"getPolicyHash","nameLocation":"31123:13:24","nodeType":"FunctionDefinition","overrides":{"id":10363,"nodeType":"OverrideSpecifier","overrides":[],"src":"31169:8:24"},"parameters":{"id":10362,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10361,"mutability":"mutable","name":"policyId","nameLocation":"31145:8:24","nodeType":"VariableDeclaration","scope":10372,"src":"31137:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10360,"name":"uint256","nodeType":"ElementaryTypeName","src":"31137:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31136:18:24"},"returnParameters":{"id":10366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10365,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10372,"src":"31187:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10364,"name":"bytes32","nodeType":"ElementaryTypeName","src":"31187:7:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"31186:9:24"},"scope":10934,"src":"31114:119:24","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":10533,"nodeType":"Block","src":"31762:1088:24","statements":[{"expression":{"arguments":[{"id":10384,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10376,"src":"31798:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"id":10383,"name":"_validatePolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10288,"src":"31782:15:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$7744_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory) view"}},"id":10385,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31782:23:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10386,"nodeType":"ExpressionStatement","src":"31782:23:24"},{"assignments":[10389],"declarations":[{"constant":false,"id":10389,"mutability":"mutable","name":"rm","nameLocation":"31823:2:24","nodeType":"VariableDeclaration","scope":10533,"src":"31811:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},"typeName":{"id":10388,"nodeType":"UserDefinedTypeName","pathNode":{"id":10387,"name":"IRiskModule","nameLocations":["31811:11:24"],"nodeType":"IdentifierPath","referencedDeclaration":14762,"src":"31811:11:24"},"referencedDeclaration":14762,"src":"31811:11:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"visibility":"internal"}],"id":10397,"initialValue":{"arguments":[{"arguments":[{"expression":{"id":10393,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10376,"src":"31865:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10394,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31872:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"31865:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10391,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"31840:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":10392,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31847:17:24","memberName":"extractRiskModule","nodeType":"MemberAccess","referencedDeclaration":8267,"src":"31840:24:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) pure returns (address)"}},"id":10395,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31840:35:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10390,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14762,"src":"31828:11:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$14762_$","typeString":"type(contract IRiskModule)"}},"id":10396,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31828:48:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"nodeType":"VariableDeclarationStatement","src":"31811:65:24"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"31886:8:24","subExpression":{"id":10398,"name":"expired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10380,"src":"31887:7:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10402,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10389,"src":"31906:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}],"id":10401,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31898:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10400,"name":"address","nodeType":"ElementaryTypeName","src":"31898:7:24","typeDescriptions":{}}},"id":10403,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31898:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":10404,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"31913:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":10405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31913:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"31898:27:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"31886:39:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10411,"nodeType":"IfStatement","src":"31882:75:24","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":10408,"name":"OnlyRiskModuleAllowed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8492,"src":"31934:21:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":10409,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31934:23:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10410,"nodeType":"RevertStatement","src":"31927:30:24"}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":10421,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10413,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10378,"src":"31971:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":10414,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31981:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"31971:11:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":10416,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10376,"src":"31986:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10417,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31993:10:24","memberName":"expiration","nodeType":"MemberAccess","referencedDeclaration":7743,"src":"31986:17:24","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"id":10418,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"32006:5:24","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":10419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32012:9:24","memberName":"timestamp","nodeType":"MemberAccess","src":"32006:15:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31986:35:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"31971:50:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":10423,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10376,"src":"32044:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10424,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32051:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"32044:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10422,"name":"PolicyAlreadyExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8507,"src":"32023:20:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":10425,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32023:31:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":10412,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"31963:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":10426,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31963:92:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10427,"nodeType":"ExpressionStatement","src":"31963:92:24"},{"expression":{"arguments":[{"arguments":[{"id":10431,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10389,"src":"32100:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}],"id":10430,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32092:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10429,"name":"address","nodeType":"ElementaryTypeName","src":"32092:7:24","typeDescriptions":{}}},"id":10432,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32092:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":10433,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8398,"src":"32105:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$8398_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":10434,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"32119:10:24","memberName":"riskModule","nodeType":"MemberAccess","referencedDeclaration":8396,"src":"32105:24:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}],"id":10428,"name":"_requireCompActiveOrDeprecated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9342,"src":"32061:30:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$8398_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":10435,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32061:69:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10436,"nodeType":"ExpressionStatement","src":"32061:69:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10438,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10378,"src":"32145:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":10439,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10376,"src":"32155:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10440,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32162:6:24","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":7723,"src":"32155:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32145:23:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":10443,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10378,"src":"32189:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":10444,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10376,"src":"32197:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10445,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32204:6:24","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":7723,"src":"32197:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10442,"name":"PayoutExceedsLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8549,"src":"32170:18:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":10446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32170:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":10437,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"32137:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":10447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32137:75:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10448,"nodeType":"ExpressionStatement","src":"32137:75:24"},{"assignments":[10450],"declarations":[{"constant":false,"id":10450,"mutability":"mutable","name":"customerWon","nameLocation":"32224:11:24","nodeType":"VariableDeclaration","scope":10533,"src":"32219:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10449,"name":"bool","nodeType":"ElementaryTypeName","src":"32219:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":10454,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10451,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10378,"src":"32238:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":10452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32247:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"32238:10:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"32219:29:24"},{"assignments":[10457],"declarations":[{"constant":false,"id":10457,"mutability":"mutable","name":"pa","nameLocation":"32272:2:24","nodeType":"VariableDeclaration","scope":10533,"src":"32255:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"},"typeName":{"id":10456,"nodeType":"UserDefinedTypeName","pathNode":{"id":10455,"name":"IPremiumsAccount","nameLocations":["32255:16:24"],"nodeType":"IdentifierPath","referencedDeclaration":14743,"src":"32255:16:24"},"referencedDeclaration":14743,"src":"32255:16:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"id":10461,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":10458,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10389,"src":"32277:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"id":10459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32280:15:24","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":14761,"src":"32277:18:24","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPremiumsAccount_$14743_$","typeString":"function () view external returns (contract IPremiumsAccount)"}},"id":10460,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32277:20:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"nodeType":"VariableDeclarationStatement","src":"32255:42:24"},{"expression":{"arguments":[{"arguments":[{"id":10465,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10457,"src":"32342:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}],"id":10464,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32334:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10463,"name":"address","nodeType":"ElementaryTypeName","src":"32334:7:24","typeDescriptions":{}}},"id":10466,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32334:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":10467,"name":"ComponentKind","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8398,"src":"32347:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ComponentKind_$8398_$","typeString":"type(enum PolicyPool.ComponentKind)"}},"id":10468,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"32361:15:24","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":8397,"src":"32347:29:24","typeDescriptions":{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_ComponentKind_$8398","typeString":"enum PolicyPool.ComponentKind"}],"id":10462,"name":"_requireCompActiveOrDeprecated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9342,"src":"32303:30:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_enum$_ComponentKind_$8398_$returns$__$","typeString":"function (address,enum PolicyPool.ComponentKind) view"}},"id":10469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32303:74:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10470,"nodeType":"ExpressionStatement","src":"32303:74:24"},{"expression":{"id":10475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"32398:27:24","subExpression":{"baseExpression":{"id":10471,"name":"_policies","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8418,"src":"32405:9:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_bytes32_$","typeString":"mapping(uint256 => bytes32)"}},"id":10474,"indexExpression":{"expression":{"id":10472,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10376,"src":"32415:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10473,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32422:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"32415:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"32405:20:24","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10476,"nodeType":"ExpressionStatement","src":"32398:27:24"},{"condition":{"id":10477,"name":"customerWon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10450,"src":"32455:11:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":10500,"nodeType":"Block","src":"32593:39:24","statements":[{"expression":{"arguments":[{"id":10497,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10376,"src":"32618:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}],"expression":{"id":10494,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10457,"src":"32601:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"id":10496,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32604:13:24","memberName":"policyExpired","nodeType":"MemberAccess","referencedDeclaration":14712,"src":"32601:16:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PolicyData_$7744_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory) external"}},"id":10498,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32601:24:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10499,"nodeType":"ExpressionStatement","src":"32601:24:24"}]},"id":10501,"nodeType":"IfStatement","src":"32451:181:24","trueBody":{"id":10493,"nodeType":"Block","src":"32468:119:24","statements":[{"assignments":[10479],"declarations":[{"constant":false,"id":10479,"mutability":"mutable","name":"policyOwner","nameLocation":"32484:11:24","nodeType":"VariableDeclaration","scope":10493,"src":"32476:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10478,"name":"address","nodeType":"ElementaryTypeName","src":"32476:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":10484,"initialValue":{"arguments":[{"expression":{"id":10481,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10376,"src":"32506:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10482,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32513:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"32506:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10480,"name":"ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17740,"src":"32498:7:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":10483,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32498:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"32476:40:24"},{"expression":{"arguments":[{"id":10488,"name":"policyOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10479,"src":"32552:11:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10489,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10376,"src":"32565:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},{"id":10490,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10378,"src":"32573:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":10485,"name":"pa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10457,"src":"32524:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"id":10487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32527:24:24","memberName":"policyResolvedWithPayout","nodeType":"MemberAccess","referencedDeclaration":14705,"src":"32524:27:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$returns$__$","typeString":"function (address,struct Policy.PolicyData memory,uint256) external"}},"id":10491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32524:56:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10492,"nodeType":"ExpressionStatement","src":"32524:56:24"}]}},{"expression":{"arguments":[{"id":10503,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10389,"src":"32654:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},{"hexValue":"66616c7365","id":10504,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"32658:5:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"expression":{"id":10505,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10376,"src":"32665:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10506,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32672:6:24","memberName":"payout","nodeType":"MemberAccess","referencedDeclaration":7723,"src":"32665:13:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10502,"name":"_changeExposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10586,"src":"32638:15:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IRiskModule_$14762_$_t_bool_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,bool,uint256)"}},"id":10507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32638:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10508,"nodeType":"ExpressionStatement","src":"32638:41:24"},{"eventCall":{"arguments":[{"id":10510,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10389,"src":"32706:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},{"expression":{"id":10511,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10376,"src":"32710:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10512,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32717:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"32710:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10513,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10378,"src":"32721:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10509,"name":"PolicyResolved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14503,"src":"32691:14:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$14762_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (contract IRiskModule,uint256,uint256)"}},"id":10514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32691:37:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10515,"nodeType":"EmitStatement","src":"32686:42:24"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10516,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10378,"src":"32738:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":10517,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32747:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"32738:10:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":10531,"nodeType":"Block","src":"32803:43:24","statements":[{"expression":{"arguments":[{"expression":{"id":10527,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10376,"src":"32829:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10528,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32836:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"32829:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10526,"name":"_notifyExpiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10770,"src":"32811:17:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":10529,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32811:28:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10530,"nodeType":"ExpressionStatement","src":"32811:28:24"}]},"id":10532,"nodeType":"IfStatement","src":"32734:112:24","trueBody":{"id":10525,"nodeType":"Block","src":"32750:47:24","statements":[{"expression":{"arguments":[{"expression":{"id":10520,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10376,"src":"32772:6:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":10521,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32779:2:24","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"32772:9:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10522,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10378,"src":"32783:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10519,"name":"_notifyPayout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10715,"src":"32758:13:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256)"}},"id":10523,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32758:32:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10524,"nodeType":"ExpressionStatement","src":"32758:32:24"}]}}]},"documentation":{"id":10373,"nodeType":"StructuredDocumentation","src":"31237:426:24","text":" @notice Internal function that handles the different alternative resolutions for a policy.\n @dev Alternatives: with or without payout and expiration.\n @custom:emits PolicyResolved with the payout amount\n @param policy A policy created with {Policy-initialize}\n @param payout The amount to paid to the policyholder\n @param expired True for expiration resolution (`payout` must be 0)"},"id":10534,"implemented":true,"kind":"function","modifiers":[],"name":"_resolvePolicy","nameLocation":"31675:14:24","nodeType":"FunctionDefinition","parameters":{"id":10381,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10376,"mutability":"mutable","name":"policy","nameLocation":"31715:6:24","nodeType":"VariableDeclaration","scope":10534,"src":"31690:31:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":10375,"nodeType":"UserDefinedTypeName","pathNode":{"id":10374,"name":"Policy.PolicyData","nameLocations":["31690:6:24","31697:10:24"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"31690:17:24"},"referencedDeclaration":7744,"src":"31690:17:24","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":10378,"mutability":"mutable","name":"payout","nameLocation":"31731:6:24","nodeType":"VariableDeclaration","scope":10534,"src":"31723:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10377,"name":"uint256","nodeType":"ElementaryTypeName","src":"31723:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10380,"mutability":"mutable","name":"expired","nameLocation":"31744:7:24","nodeType":"VariableDeclaration","scope":10534,"src":"31739:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10379,"name":"bool","nodeType":"ElementaryTypeName","src":"31739:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"31689:63:24"},"returnParameters":{"id":10382,"nodeType":"ParameterList","parameters":[],"src":"31762:0:24"},"scope":10934,"src":"31666:1184:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10585,"nodeType":"Block","src":"32935:291:24","statements":[{"assignments":[10546],"declarations":[{"constant":false,"id":10546,"mutability":"mutable","name":"exposure","nameLocation":"32958:8:24","nodeType":"VariableDeclaration","scope":10585,"src":"32941:25:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure"},"typeName":{"id":10545,"nodeType":"UserDefinedTypeName","pathNode":{"id":10544,"name":"Exposure","nameLocations":["32941:8:24"],"nodeType":"IdentifierPath","referencedDeclaration":8423,"src":"32941:8:24"},"referencedDeclaration":8423,"src":"32941:8:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure"}},"visibility":"internal"}],"id":10550,"initialValue":{"baseExpression":{"id":10547,"name":"_exposureByRm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8433,"src":"32969:13:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IRiskModule_$14762_$_t_struct$_Exposure_$8423_storage_$","typeString":"mapping(contract IRiskModule => struct PolicyPool.Exposure storage ref)"}},"id":10549,"indexExpression":{"id":10548,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10537,"src":"32983:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"32969:17:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage","typeString":"struct PolicyPool.Exposure storage ref"}},"nodeType":"VariableDeclarationStatement","src":"32941:45:24"},{"condition":{"id":10551,"name":"increase","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10539,"src":"32996:8:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":10583,"nodeType":"Block","src":"33170:52:24","statements":[{"expression":{"id":10581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":10575,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10546,"src":"33178:8:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":10577,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"33187:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":8420,"src":"33178:15:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":10578,"name":"change","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10541,"src":"33197:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33204:9:24","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":35662,"src":"33197:16:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":10580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33197:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"33178:37:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":10582,"nodeType":"ExpressionStatement","src":"33178:37:24"}]},"id":10584,"nodeType":"IfStatement","src":"32992:230:24","trueBody":{"id":10574,"nodeType":"Block","src":"33006:158:24","statements":[{"expression":{"id":10558,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":10552,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10546,"src":"33014:8:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":10554,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"33023:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":8420,"src":"33014:15:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":10555,"name":"change","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10541,"src":"33033:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10556,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33040:9:24","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":35662,"src":"33033:16:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":10557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33033:18:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"33014:37:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":10559,"nodeType":"ExpressionStatement","src":"33014:37:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":10565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":10561,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10546,"src":"33067:8:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":10562,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"33076:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":8420,"src":"33067:15:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":10563,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10546,"src":"33086:8:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":10564,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"33095:5:24","memberName":"limit","nodeType":"MemberAccess","referencedDeclaration":8422,"src":"33086:14:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"33067:33:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":10567,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10546,"src":"33124:8:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":10568,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"33133:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":8420,"src":"33124:15:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"expression":{"id":10569,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10546,"src":"33141:8:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":10570,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"33150:5:24","memberName":"limit","nodeType":"MemberAccess","referencedDeclaration":8422,"src":"33141:14:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":10566,"name":"ExposureLimitExceeded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8556,"src":"33102:21:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint128_$_t_uint128_$returns$_t_error_$","typeString":"function (uint128,uint128) pure returns (error)"}},"id":10571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33102:54:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":10560,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"33059:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":10572,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33059:98:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10573,"nodeType":"ExpressionStatement","src":"33059:98:24"}]}}]},"id":10586,"implemented":true,"kind":"function","modifiers":[],"name":"_changeExposure","nameLocation":"32863:15:24","nodeType":"FunctionDefinition","parameters":{"id":10542,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10537,"mutability":"mutable","name":"rm","nameLocation":"32891:2:24","nodeType":"VariableDeclaration","scope":10586,"src":"32879:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},"typeName":{"id":10536,"nodeType":"UserDefinedTypeName","pathNode":{"id":10535,"name":"IRiskModule","nameLocations":["32879:11:24"],"nodeType":"IdentifierPath","referencedDeclaration":14762,"src":"32879:11:24"},"referencedDeclaration":14762,"src":"32879:11:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"visibility":"internal"},{"constant":false,"id":10539,"mutability":"mutable","name":"increase","nameLocation":"32900:8:24","nodeType":"VariableDeclaration","scope":10586,"src":"32895:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10538,"name":"bool","nodeType":"ElementaryTypeName","src":"32895:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":10541,"mutability":"mutable","name":"change","nameLocation":"32918:6:24","nodeType":"VariableDeclaration","scope":10586,"src":"32910:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10540,"name":"uint256","nodeType":"ElementaryTypeName","src":"32910:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"32878:47:24"},"returnParameters":{"id":10543,"nodeType":"ParameterList","parameters":[],"src":"32935:0:24"},"scope":10934,"src":"32854:372:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10633,"nodeType":"Block","src":"33947:300:24","statements":[{"assignments":[10597],"declarations":[{"constant":false,"id":10597,"mutability":"mutable","name":"exposure","nameLocation":"33970:8:24","nodeType":"VariableDeclaration","scope":10633,"src":"33953:25:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure"},"typeName":{"id":10596,"nodeType":"UserDefinedTypeName","pathNode":{"id":10595,"name":"Exposure","nameLocations":["33953:8:24"],"nodeType":"IdentifierPath","referencedDeclaration":8423,"src":"33953:8:24"},"referencedDeclaration":8423,"src":"33953:8:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure"}},"visibility":"internal"}],"id":10601,"initialValue":{"baseExpression":{"id":10598,"name":"_exposureByRm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8433,"src":"33981:13:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IRiskModule_$14762_$_t_struct$_Exposure_$8423_storage_$","typeString":"mapping(contract IRiskModule => struct PolicyPool.Exposure storage ref)"}},"id":10600,"indexExpression":{"id":10599,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10590,"src":"33995:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"33981:17:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage","typeString":"struct PolicyPool.Exposure storage ref"}},"nodeType":"VariableDeclarationStatement","src":"33953:45:24"},{"assignments":[10603],"declarations":[{"constant":false,"id":10603,"mutability":"mutable","name":"newLimit128","nameLocation":"34012:11:24","nodeType":"VariableDeclaration","scope":10633,"src":"34004:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":10602,"name":"uint128","nodeType":"ElementaryTypeName","src":"34004:7:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":10607,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":10604,"name":"newLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10592,"src":"34026:8:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"34035:9:24","memberName":"toUint128","nodeType":"MemberAccess","referencedDeclaration":35662,"src":"34026:18:24","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint128_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint128)"}},"id":10606,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34026:20:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"34004:42:24"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":10612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":10609,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10597,"src":"34060:8:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":10610,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34069:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":8420,"src":"34060:15:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":10611,"name":"newLimit128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10603,"src":"34079:11:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"34060:30:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":10614,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10597,"src":"34114:8:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":10615,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34123:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":8420,"src":"34114:15:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"id":10616,"name":"newLimit128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10603,"src":"34131:11:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":10613,"name":"ExposureLimitExceeded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8556,"src":"34092:21:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint128_$_t_uint128_$returns$_t_error_$","typeString":"function (uint128,uint128) pure returns (error)"}},"id":10617,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34092:51:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":10608,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"34052:7:24","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":10618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34052:92:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10619,"nodeType":"ExpressionStatement","src":"34052:92:24"},{"eventCall":{"arguments":[{"id":10621,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10590,"src":"34176:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},{"expression":{"id":10622,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10597,"src":"34180:8:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":10623,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34189:5:24","memberName":"limit","nodeType":"MemberAccess","referencedDeclaration":8422,"src":"34180:14:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"id":10624,"name":"newLimit128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10603,"src":"34196:11:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":10620,"name":"ExposureLimitChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8605,"src":"34155:20:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IRiskModule_$14762_$_t_uint128_$_t_uint128_$returns$__$","typeString":"function (contract IRiskModule,uint128,uint128)"}},"id":10625,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34155:53:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10626,"nodeType":"EmitStatement","src":"34150:58:24"},{"expression":{"id":10631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":10627,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10597,"src":"34214:8:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":10629,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"34223:5:24","memberName":"limit","nodeType":"MemberAccess","referencedDeclaration":8422,"src":"34214:14:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":10630,"name":"newLimit128","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10603,"src":"34231:11:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"34214:28:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":10632,"nodeType":"ExpressionStatement","src":"34214:28:24"}]},"documentation":{"id":10587,"nodeType":"StructuredDocumentation","src":"33230:645:24","text":" @notice  Changes the maximum cumulative loss limit (exposure limit) for a given risk module\n @dev     This function allows updating the exposure limit for a risk module.\n          The new limit must be greater than or equal to the current active exposure.\n @param   rm  The risk module interface for which to update the exposure limit\n @param   newLimit  The new exposure limit to set (will be converted to uint128)\n @custom:throws ExposureLimitExceeded if the new limit is less than the current active exposure\n @custom:emits  ExposureLimitChanged with parameters: (risk module, old limit, new limit)"},"functionSelector":"9760905e","id":10634,"implemented":true,"kind":"function","modifiers":[],"name":"setExposureLimit","nameLocation":"33887:16:24","nodeType":"FunctionDefinition","parameters":{"id":10593,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10590,"mutability":"mutable","name":"rm","nameLocation":"33916:2:24","nodeType":"VariableDeclaration","scope":10634,"src":"33904:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},"typeName":{"id":10589,"nodeType":"UserDefinedTypeName","pathNode":{"id":10588,"name":"IRiskModule","nameLocations":["33904:11:24"],"nodeType":"IdentifierPath","referencedDeclaration":14762,"src":"33904:11:24"},"referencedDeclaration":14762,"src":"33904:11:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"visibility":"internal"},{"constant":false,"id":10592,"mutability":"mutable","name":"newLimit","nameLocation":"33928:8:24","nodeType":"VariableDeclaration","scope":10634,"src":"33920:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10591,"name":"uint256","nodeType":"ElementaryTypeName","src":"33920:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"33903:34:24"},"returnParameters":{"id":10594,"nodeType":"ParameterList","parameters":[],"src":"33947:0:24"},"scope":10934,"src":"33878:369:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":10662,"nodeType":"Block","src":"34818:114:24","statements":[{"assignments":[10647],"declarations":[{"constant":false,"id":10647,"mutability":"mutable","name":"exposure","nameLocation":"34841:8:24","nodeType":"VariableDeclaration","scope":10662,"src":"34824:25:24","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure"},"typeName":{"id":10646,"nodeType":"UserDefinedTypeName","pathNode":{"id":10645,"name":"Exposure","nameLocations":["34824:8:24"],"nodeType":"IdentifierPath","referencedDeclaration":8423,"src":"34824:8:24"},"referencedDeclaration":8423,"src":"34824:8:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure"}},"visibility":"internal"}],"id":10651,"initialValue":{"baseExpression":{"id":10648,"name":"_exposureByRm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8433,"src":"34852:13:24","typeDescriptions":{"typeIdentifier":"t_mapping$_t_contract$_IRiskModule_$14762_$_t_struct$_Exposure_$8423_storage_$","typeString":"mapping(contract IRiskModule => struct PolicyPool.Exposure storage ref)"}},"id":10650,"indexExpression":{"id":10649,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10638,"src":"34866:2:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"34852:17:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage","typeString":"struct PolicyPool.Exposure storage ref"}},"nodeType":"VariableDeclarationStatement","src":"34824:45:24"},{"expression":{"id":10655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10652,"name":"active","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10641,"src":"34875:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":10653,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10647,"src":"34884:8:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":10654,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34893:6:24","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":8420,"src":"34884:15:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"34875:24:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10656,"nodeType":"ExpressionStatement","src":"34875:24:24"},{"expression":{"id":10660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10657,"name":"limit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10643,"src":"34905:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":10658,"name":"exposure","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10647,"src":"34913:8:24","typeDescriptions":{"typeIdentifier":"t_struct$_Exposure_$8423_storage_ptr","typeString":"struct PolicyPool.Exposure storage pointer"}},"id":10659,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34922:5:24","memberName":"limit","nodeType":"MemberAccess","referencedDeclaration":8422,"src":"34913:14:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"34905:22:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10661,"nodeType":"ExpressionStatement","src":"34905:22:24"}]},"documentation":{"id":10635,"nodeType":"StructuredDocumentation","src":"34251:473:24","text":" @notice  Retrieves the current exposure data for a specific risk module\n @dev     Returns both the active exposure (current cumulative losses)\n and the configured exposure limit for the given risk module.\n @param   rm  The risk module interface to query exposure data for\n @return  active  The current active exposure (cumulative losses) for the risk module\n @return  limit   The configured maximum exposure limit for the risk module"},"functionSelector":"9e2d8922","id":10663,"implemented":true,"kind":"function","modifiers":[],"name":"getExposure","nameLocation":"34736:11:24","nodeType":"FunctionDefinition","parameters":{"id":10639,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10638,"mutability":"mutable","name":"rm","nameLocation":"34760:2:24","nodeType":"VariableDeclaration","scope":10663,"src":"34748:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},"typeName":{"id":10637,"nodeType":"UserDefinedTypeName","pathNode":{"id":10636,"name":"IRiskModule","nameLocations":["34748:11:24"],"nodeType":"IdentifierPath","referencedDeclaration":14762,"src":"34748:11:24"},"referencedDeclaration":14762,"src":"34748:11:24","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"visibility":"internal"}],"src":"34747:16:24"},"returnParameters":{"id":10644,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10641,"mutability":"mutable","name":"active","nameLocation":"34795:6:24","nodeType":"VariableDeclaration","scope":10663,"src":"34787:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10640,"name":"uint256","nodeType":"ElementaryTypeName","src":"34787:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10643,"mutability":"mutable","name":"limit","nameLocation":"34811:5:24","nodeType":"VariableDeclaration","scope":10663,"src":"34803:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10642,"name":"uint256","nodeType":"ElementaryTypeName","src":"34803:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34786:31:24"},"scope":10934,"src":"34727:205:24","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":10714,"nodeType":"Block","src":"35270:353:24","statements":[{"assignments":[10672],"declarations":[{"constant":false,"id":10672,"mutability":"mutable","name":"customer","nameLocation":"35284:8:24","nodeType":"VariableDeclaration","scope":10714,"src":"35276:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10671,"name":"address","nodeType":"ElementaryTypeName","src":"35276:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":10676,"initialValue":{"arguments":[{"id":10674,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10666,"src":"35303:8:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10673,"name":"ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17740,"src":"35295:7:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":10675,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35295:17:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"35276:36:24"},{"condition":{"id":10685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"35322:75:24","subExpression":{"arguments":[{"id":10679,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10672,"src":"35355:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":10681,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"35370:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}],"id":10680,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"35365:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10682,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35365:19:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyHolder_$14449","typeString":"type(contract IPolicyHolder)"}},"id":10683,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"35385:11:24","memberName":"interfaceId","nodeType":"MemberAccess","src":"35365:31:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":10677,"name":"ERC165Checker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33533,"src":"35323:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC165Checker_$33533_$","typeString":"type(library ERC165Checker)"}},"id":10678,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35337:17:24","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":33386,"src":"35323:31:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":10684,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35323:74:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10687,"nodeType":"IfStatement","src":"35318:88:24","trueBody":{"functionReturnParameters":10670,"id":10686,"nodeType":"Return","src":"35399:7:24"}},{"assignments":[10689],"declarations":[{"constant":false,"id":10689,"mutability":"mutable","name":"retval","nameLocation":"35419:6:24","nodeType":"VariableDeclaration","scope":10714,"src":"35412:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":10688,"name":"bytes4","nodeType":"ElementaryTypeName","src":"35412:6:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":10703,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":10694,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"35469:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":10695,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35469:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":10698,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"35491:4:24","typeDescriptions":{"typeIdentifier":"t_contract$_PolicyPool_$10934","typeString":"contract PolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PolicyPool_$10934","typeString":"contract PolicyPool"}],"id":10697,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"35483:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10696,"name":"address","nodeType":"ElementaryTypeName","src":"35483:7:24","typeDescriptions":{}}},"id":10699,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35483:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10700,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10666,"src":"35498:8:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10701,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10668,"src":"35508:6:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":10691,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10672,"src":"35442:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10690,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"35428:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}},"id":10692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35428:23:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyHolder_$14449","typeString":"contract IPolicyHolder"}},"id":10693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35452:16:24","memberName":"onPayoutReceived","nodeType":"MemberAccess","referencedDeclaration":14416,"src":"35428:40:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,uint256) external returns (bytes4)"}},"id":10702,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35428:87:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"35412:103:24"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":10708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10704,"name":"retval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10689,"src":"35525:6:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"expression":{"id":10705,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"35535:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}},"id":10706,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"35549:16:24","memberName":"onPayoutReceived","nodeType":"MemberAccess","referencedDeclaration":14416,"src":"35535:30:24","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolder.onPayoutReceived(address,address,uint256,uint256) returns (bytes4)"}},"id":10707,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"35566:8:24","memberName":"selector","nodeType":"MemberAccess","src":"35535:39:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"35525:49:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10713,"nodeType":"IfStatement","src":"35521:97:24","trueBody":{"errorCall":{"arguments":[{"id":10710,"name":"retval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10689,"src":"35611:6:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":10709,"name":"InvalidNotificationResponse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8497,"src":"35583:27:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes4_$returns$_t_error_$","typeString":"function (bytes4) pure returns (error)"}},"id":10711,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35583:35:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10712,"nodeType":"RevertStatement","src":"35576:42:24"}}]},"documentation":{"id":10664,"nodeType":"StructuredDocumentation","src":"34936:265:24","text":" @notice Notifies the payout with a callback\n @dev Only if the policyholder implements the IPolicyHolder interface.\n Reverts if the policyholder contract explicitly reverts or it doesn't return the\n IPolicyHolder.onPayoutReceived selector."},"id":10715,"implemented":true,"kind":"function","modifiers":[],"name":"_notifyPayout","nameLocation":"35213:13:24","nodeType":"FunctionDefinition","parameters":{"id":10669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10666,"mutability":"mutable","name":"policyId","nameLocation":"35235:8:24","nodeType":"VariableDeclaration","scope":10715,"src":"35227:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10665,"name":"uint256","nodeType":"ElementaryTypeName","src":"35227:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10668,"mutability":"mutable","name":"payout","nameLocation":"35253:6:24","nodeType":"VariableDeclaration","scope":10715,"src":"35245:14:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10667,"name":"uint256","nodeType":"ElementaryTypeName","src":"35245:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"35226:34:24"},"returnParameters":{"id":10670,"nodeType":"ParameterList","parameters":[],"src":"35270:0:24"},"scope":10934,"src":"35204:419:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10769,"nodeType":"Block","src":"35896:406:24","statements":[{"assignments":[10722],"declarations":[{"constant":false,"id":10722,"mutability":"mutable","name":"customer","nameLocation":"35910:8:24","nodeType":"VariableDeclaration","scope":10769,"src":"35902:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10721,"name":"address","nodeType":"ElementaryTypeName","src":"35902:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":10726,"initialValue":{"arguments":[{"id":10724,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10718,"src":"35929:8:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10723,"name":"ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17740,"src":"35921:7:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":10725,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35921:17:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"35902:36:24"},{"condition":{"id":10735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"35948:75:24","subExpression":{"arguments":[{"id":10729,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10722,"src":"35981:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":10731,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"35996:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}],"id":10730,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"35991:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10732,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35991:19:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyHolder_$14449","typeString":"type(contract IPolicyHolder)"}},"id":10733,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"36011:11:24","memberName":"interfaceId","nodeType":"MemberAccess","src":"35991:31:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":10727,"name":"ERC165Checker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33533,"src":"35949:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC165Checker_$33533_$","typeString":"type(library ERC165Checker)"}},"id":10728,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35963:17:24","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":33386,"src":"35949:31:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":10734,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35949:74:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10737,"nodeType":"IfStatement","src":"35944:88:24","trueBody":{"functionReturnParameters":10720,"id":10736,"nodeType":"Return","src":"36025:7:24"}},{"clauses":[{"block":{"id":10756,"nodeType":"Block","src":"36173:21:24","statements":[{"functionReturnParameters":10720,"id":10755,"nodeType":"Return","src":"36181:7:24"}]},"errorName":"","id":10757,"nodeType":"TryCatchClause","parameters":{"id":10754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10753,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10757,"src":"36160:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":10752,"name":"bytes4","nodeType":"ElementaryTypeName","src":"36160:6:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"36152:20:24"},"src":"36144:50:24"},{"block":{"id":10766,"nodeType":"Block","src":"36201:97:24","statements":[{"eventCall":{"arguments":[{"id":10759,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10718,"src":"36243:8:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":10761,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10722,"src":"36267:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10760,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"36253:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}},"id":10762,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36253:23:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyHolder_$14449","typeString":"contract IPolicyHolder"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_contract$_IPolicyHolder_$14449","typeString":"contract IPolicyHolder"}],"id":10758,"name":"ExpirationNotificationFailed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8595,"src":"36214:28:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_contract$_IPolicyHolder_$14449_$returns$__$","typeString":"function (uint256,contract IPolicyHolder)"}},"id":10763,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36214:63:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10764,"nodeType":"EmitStatement","src":"36209:68:24"},{"functionReturnParameters":10720,"id":10765,"nodeType":"Return","src":"36285:7:24"}]},"errorName":"","id":10767,"nodeType":"TryCatchClause","src":"36195:103:24"}],"externalCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":10744,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"36105:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":10745,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36105:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":10748,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"36127:4:24","typeDescriptions":{"typeIdentifier":"t_contract$_PolicyPool_$10934","typeString":"contract PolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PolicyPool_$10934","typeString":"contract PolicyPool"}],"id":10747,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"36119:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10746,"name":"address","nodeType":"ElementaryTypeName","src":"36119:7:24","typeDescriptions":{}}},"id":10749,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36119:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10750,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10718,"src":"36134:8:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":10739,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10722,"src":"36056:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10738,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"36042:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}},"id":10740,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36042:23:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyHolder_$14449","typeString":"contract IPolicyHolder"}},"id":10741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"36066:15:24","memberName":"onPolicyExpired","nodeType":"MemberAccess","referencedDeclaration":14402,"src":"36042:39:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bytes4_$","typeString":"function (address,address,uint256) external returns (bytes4)"}},"id":10743,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["gas"],"nodeType":"FunctionCallOptions","options":[{"id":10742,"name":"HOLDER_GAS_LIMIT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8375,"src":"36087:16:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"36042:62:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bytes4_$gas","typeString":"function (address,address,uint256) external returns (bytes4)"}},"id":10751,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36042:101:24","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":10768,"nodeType":"TryStatement","src":"36038:260:24"}]},"documentation":{"id":10716,"nodeType":"StructuredDocumentation","src":"35627:212:24","text":" @notice Notifies the expiration with a callback\n @dev Only if the policyholder implements the IPolicyHolder interface. Never reverts. The onPolicyExpired has\n a gas limit = HOLDER_GAS_LIMIT"},"id":10770,"implemented":true,"kind":"function","modifiers":[],"name":"_notifyExpiration","nameLocation":"35851:17:24","nodeType":"FunctionDefinition","parameters":{"id":10719,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10718,"mutability":"mutable","name":"policyId","nameLocation":"35877:8:24","nodeType":"VariableDeclaration","scope":10770,"src":"35869:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10717,"name":"uint256","nodeType":"ElementaryTypeName","src":"35869:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"35868:18:24"},"returnParameters":{"id":10720,"nodeType":"ParameterList","parameters":[],"src":"35896:0:24"},"scope":10934,"src":"35842:460:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10821,"nodeType":"Block","src":"36658:429:24","statements":[{"assignments":[10779],"declarations":[{"constant":false,"id":10779,"mutability":"mutable","name":"customer","nameLocation":"36672:8:24","nodeType":"VariableDeclaration","scope":10821,"src":"36664:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10778,"name":"address","nodeType":"ElementaryTypeName","src":"36664:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":10783,"initialValue":{"arguments":[{"id":10781,"name":"oldPolicyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10773,"src":"36691:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10780,"name":"ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17740,"src":"36683:7:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":10782,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36683:20:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"36664:39:24"},{"condition":{"id":10792,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"36713:75:24","subExpression":{"arguments":[{"id":10786,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10779,"src":"36746:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":10788,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"36761:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}],"id":10787,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"36756:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10789,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36756:19:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyHolder_$14449","typeString":"type(contract IPolicyHolder)"}},"id":10790,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"36776:11:24","memberName":"interfaceId","nodeType":"MemberAccess","src":"36756:31:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":10784,"name":"ERC165Checker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33533,"src":"36714:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC165Checker_$33533_$","typeString":"type(library ERC165Checker)"}},"id":10785,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"36728:17:24","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":33386,"src":"36714:31:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":10791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36714:74:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10794,"nodeType":"IfStatement","src":"36709:88:24","trueBody":{"functionReturnParameters":10777,"id":10793,"nodeType":"Return","src":"36790:7:24"}},{"assignments":[10796],"declarations":[{"constant":false,"id":10796,"mutability":"mutable","name":"retval","nameLocation":"36810:6:24","nodeType":"VariableDeclaration","scope":10821,"src":"36803:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":10795,"name":"bytes4","nodeType":"ElementaryTypeName","src":"36803:6:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":10810,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":10801,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"36860:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":10802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36860:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":10805,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"36882:4:24","typeDescriptions":{"typeIdentifier":"t_contract$_PolicyPool_$10934","typeString":"contract PolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PolicyPool_$10934","typeString":"contract PolicyPool"}],"id":10804,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"36874:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10803,"name":"address","nodeType":"ElementaryTypeName","src":"36874:7:24","typeDescriptions":{}}},"id":10806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36874:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10807,"name":"oldPolicyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10773,"src":"36889:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10808,"name":"newPolicyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10775,"src":"36902:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":10798,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10779,"src":"36833:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10797,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"36819:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}},"id":10799,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36819:23:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyHolder_$14449","typeString":"contract IPolicyHolder"}},"id":10800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"36843:16:24","memberName":"onPolicyReplaced","nodeType":"MemberAccess","referencedDeclaration":14430,"src":"36819:40:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,uint256) external returns (bytes4)"}},"id":10809,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36819:95:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"36803:111:24"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":10815,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10811,"name":"retval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10796,"src":"36989:6:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"expression":{"id":10812,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"36999:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}},"id":10813,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37013:16:24","memberName":"onPolicyReplaced","nodeType":"MemberAccess","referencedDeclaration":14430,"src":"36999:30:24","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolder.onPolicyReplaced(address,address,uint256,uint256) returns (bytes4)"}},"id":10814,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37030:8:24","memberName":"selector","nodeType":"MemberAccess","src":"36999:39:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"36989:49:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10820,"nodeType":"IfStatement","src":"36985:97:24","trueBody":{"errorCall":{"arguments":[{"id":10817,"name":"retval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10796,"src":"37075:6:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":10816,"name":"InvalidNotificationResponse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8497,"src":"37047:27:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes4_$returns$_t_error_$","typeString":"function (bytes4) pure returns (error)"}},"id":10818,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37047:35:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10819,"nodeType":"RevertStatement","src":"37040:42:24"}}]},"documentation":{"id":10771,"nodeType":"StructuredDocumentation","src":"36306:270:24","text":" @notice Notifies the replacement with a callback\n @dev Only if the policyholder implements the IPolicyHolder interface.\n Reverts if the policyholder contract explicitly reverts or it doesn't return the\n IPolicyHolder.onPolicyReplaced selector."},"id":10822,"implemented":true,"kind":"function","modifiers":[],"name":"_notifyReplacement","nameLocation":"36588:18:24","nodeType":"FunctionDefinition","parameters":{"id":10776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10773,"mutability":"mutable","name":"oldPolicyId","nameLocation":"36615:11:24","nodeType":"VariableDeclaration","scope":10822,"src":"36607:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10772,"name":"uint256","nodeType":"ElementaryTypeName","src":"36607:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10775,"mutability":"mutable","name":"newPolicyId","nameLocation":"36636:11:24","nodeType":"VariableDeclaration","scope":10822,"src":"36628:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10774,"name":"uint256","nodeType":"ElementaryTypeName","src":"36628:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"36606:42:24"},"returnParameters":{"id":10777,"nodeType":"ParameterList","parameters":[],"src":"36658:0:24"},"scope":10934,"src":"36579:508:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":10879,"nodeType":"Block","src":"37520:518:24","statements":[{"assignments":[10835],"declarations":[{"constant":false,"id":10835,"mutability":"mutable","name":"customer","nameLocation":"37534:8:24","nodeType":"VariableDeclaration","scope":10879,"src":"37526:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10834,"name":"address","nodeType":"ElementaryTypeName","src":"37526:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":10839,"initialValue":{"arguments":[{"id":10837,"name":"cancelledPolicyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10825,"src":"37553:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":10836,"name":"ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17740,"src":"37545:7:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":10838,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37545:26:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"37526:45:24"},{"condition":{"id":10848,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"37581:75:24","subExpression":{"arguments":[{"id":10842,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10835,"src":"37614:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":10844,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"37629:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}],"id":10843,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"37624:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":10845,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37624:19:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyHolder_$14449","typeString":"type(contract IPolicyHolder)"}},"id":10846,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37644:11:24","memberName":"interfaceId","nodeType":"MemberAccess","src":"37624:31:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":10840,"name":"ERC165Checker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33533,"src":"37582:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC165Checker_$33533_$","typeString":"type(library ERC165Checker)"}},"id":10841,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"37596:17:24","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":33386,"src":"37582:31:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":10847,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37582:74:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10850,"nodeType":"IfStatement","src":"37577:88:24","trueBody":{"functionReturnParameters":10833,"id":10849,"nodeType":"Return","src":"37658:7:24"}},{"assignments":[10852],"declarations":[{"constant":false,"id":10852,"mutability":"mutable","name":"retval","nameLocation":"37678:6:24","nodeType":"VariableDeclaration","scope":10879,"src":"37671:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":10851,"name":"bytes4","nodeType":"ElementaryTypeName","src":"37671:6:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":10868,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":10857,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"37736:10:24","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":10858,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37736:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":10861,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"37764:4:24","typeDescriptions":{"typeIdentifier":"t_contract$_PolicyPool_$10934","typeString":"contract PolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PolicyPool_$10934","typeString":"contract PolicyPool"}],"id":10860,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"37756:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10859,"name":"address","nodeType":"ElementaryTypeName","src":"37756:7:24","typeDescriptions":{}}},"id":10862,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37756:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10863,"name":"cancelledPolicyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10825,"src":"37777:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10864,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10827,"src":"37802:17:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10865,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10829,"src":"37827:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10866,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10831,"src":"37846:11:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":10854,"name":"customer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10835,"src":"37701:8:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":10853,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"37687:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}},"id":10855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37687:23:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyHolder_$14449","typeString":"contract IPolicyHolder"}},"id":10856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"37711:17:24","memberName":"onPolicyCancelled","nodeType":"MemberAccess","referencedDeclaration":14448,"src":"37687:41:24","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,uint256,uint256,uint256) external returns (bytes4)"}},"id":10867,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37687:176:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"37671:192:24"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":10873,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10869,"name":"retval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10852,"src":"37939:6:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"expression":{"id":10870,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"37949:13:24","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}},"id":10871,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37963:17:24","memberName":"onPolicyCancelled","nodeType":"MemberAccess","referencedDeclaration":14448,"src":"37949:31:24","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolder.onPolicyCancelled(address,address,uint256,uint256,uint256,uint256) returns (bytes4)"}},"id":10872,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37981:8:24","memberName":"selector","nodeType":"MemberAccess","src":"37949:40:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"37939:50:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10878,"nodeType":"IfStatement","src":"37935:98:24","trueBody":{"errorCall":{"arguments":[{"id":10875,"name":"retval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10852,"src":"38026:6:24","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":10874,"name":"InvalidNotificationResponse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8497,"src":"37998:27:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes4_$returns$_t_error_$","typeString":"function (bytes4) pure returns (error)"}},"id":10876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37998:35:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10877,"nodeType":"RevertStatement","src":"37991:42:24"}}]},"documentation":{"id":10823,"nodeType":"StructuredDocumentation","src":"37091:272:24","text":" @notice Notifies the cancellation with a callback\n @dev Only if the policyholder implements the IPolicyHolder interface.\n Reverts if the policyholder contract explicitly reverts or it doesn't return the\n IPolicyHolder.onPolicyCancelled selector."},"id":10880,"implemented":true,"kind":"function","modifiers":[],"name":"_notifyCancellation","nameLocation":"37375:19:24","nodeType":"FunctionDefinition","parameters":{"id":10832,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10825,"mutability":"mutable","name":"cancelledPolicyId","nameLocation":"37408:17:24","nodeType":"VariableDeclaration","scope":10880,"src":"37400:25:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10824,"name":"uint256","nodeType":"ElementaryTypeName","src":"37400:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10827,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"37439:17:24","nodeType":"VariableDeclaration","scope":10880,"src":"37431:25:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10826,"name":"uint256","nodeType":"ElementaryTypeName","src":"37431:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10829,"mutability":"mutable","name":"jrCocRefund","nameLocation":"37470:11:24","nodeType":"VariableDeclaration","scope":10880,"src":"37462:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10828,"name":"uint256","nodeType":"ElementaryTypeName","src":"37462:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10831,"mutability":"mutable","name":"srCocRefund","nameLocation":"37495:11:24","nodeType":"VariableDeclaration","scope":10880,"src":"37487:19:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10830,"name":"uint256","nodeType":"ElementaryTypeName","src":"37487:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"37394:116:24"},"returnParameters":{"id":10833,"nodeType":"ParameterList","parameters":[],"src":"37520:0:24"},"scope":10934,"src":"37366:672:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[17817],"body":{"id":10889,"nodeType":"Block","src":"38351:29:24","statements":[{"expression":{"id":10887,"name":"_nftBaseURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8426,"src":"38364:11:24","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":10886,"id":10888,"nodeType":"Return","src":"38357:18:24"}]},"documentation":{"id":10881,"nodeType":"StructuredDocumentation","src":"38042:231:24","text":" @notice Base URI for computing {tokenURI}.\n @dev If set, the resulting URI for each token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n by default, can be modified calling {setBaseURI}."},"id":10890,"implemented":true,"kind":"function","modifiers":[],"name":"_baseURI","nameLocation":"38285:8:24","nodeType":"FunctionDefinition","overrides":{"id":10883,"nodeType":"OverrideSpecifier","overrides":[],"src":"38318:8:24"},"parameters":{"id":10882,"nodeType":"ParameterList","parameters":[],"src":"38293:2:24"},"returnParameters":{"id":10886,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10885,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10890,"src":"38336:13:24","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10884,"name":"string","nodeType":"ElementaryTypeName","src":"38336:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"38335:15:24"},"scope":10934,"src":"38276:104:24","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":10905,"nodeType":"Block","src":"38578:87:24","statements":[{"eventCall":{"arguments":[{"id":10897,"name":"_nftBaseURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8426,"src":"38604:11:24","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},{"id":10898,"name":"nftBaseURI_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10893,"src":"38617:11:24","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":10896,"name":"BaseURIChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8575,"src":"38589:14:24","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":10899,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38589:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10900,"nodeType":"EmitStatement","src":"38584:45:24"},{"expression":{"id":10903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10901,"name":"_nftBaseURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8426,"src":"38635:11:24","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":10902,"name":"nftBaseURI_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10893,"src":"38649:11:24","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},"src":"38635:25:24","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":10904,"nodeType":"ExpressionStatement","src":"38635:25:24"}]},"documentation":{"id":10891,"nodeType":"StructuredDocumentation","src":"38384:133:24","text":" @notice Changes the baseURI of the minted policy NFTs\n @custom:emits BaseURIChanged With the new and old URIs"},"functionSelector":"55f804b3","id":10906,"implemented":true,"kind":"function","modifiers":[],"name":"setBaseURI","nameLocation":"38529:10:24","nodeType":"FunctionDefinition","parameters":{"id":10894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10893,"mutability":"mutable","name":"nftBaseURI_","nameLocation":"38556:11:24","nodeType":"VariableDeclaration","scope":10906,"src":"38540:27:24","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":10892,"name":"string","nodeType":"ElementaryTypeName","src":"38540:6:24","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"38539:29:24"},"returnParameters":{"id":10895,"nodeType":"ParameterList","parameters":[],"src":"38578:0:24"},"scope":10934,"src":"38520:145:24","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[18223],"body":{"id":10927,"nodeType":"Block","src":"38779:50:24","statements":[{"expression":{"arguments":[{"id":10922,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10908,"src":"38806:2:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":10923,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10910,"src":"38810:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":10924,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10912,"src":"38819:4:24","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":10920,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"38792:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_PolicyPool_$10934_$","typeString":"type(contract super PolicyPool)"}},"id":10921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"38798:7:24","memberName":"_update","nodeType":"MemberAccess","referencedDeclaration":18223,"src":"38792:13:24","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_address_$returns$_t_address_$","typeString":"function (address,uint256,address) returns (address)"}},"id":10925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38792:32:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":10919,"id":10926,"nodeType":"Return","src":"38785:39:24"}]},"id":10928,"implemented":true,"kind":"function","modifiers":[{"id":10916,"kind":"modifierInvocation","modifierName":{"id":10915,"name":"whenNotPaused","nameLocations":["38747:13:24"],"nodeType":"IdentifierPath","referencedDeclaration":18936,"src":"38747:13:24"},"nodeType":"ModifierInvocation","src":"38747:13:24"}],"name":"_update","nameLocation":"38678:7:24","nodeType":"FunctionDefinition","overrides":{"id":10914,"nodeType":"OverrideSpecifier","overrides":[],"src":"38738:8:24"},"parameters":{"id":10913,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10908,"mutability":"mutable","name":"to","nameLocation":"38694:2:24","nodeType":"VariableDeclaration","scope":10928,"src":"38686:10:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10907,"name":"address","nodeType":"ElementaryTypeName","src":"38686:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10910,"mutability":"mutable","name":"tokenId","nameLocation":"38706:7:24","nodeType":"VariableDeclaration","scope":10928,"src":"38698:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10909,"name":"uint256","nodeType":"ElementaryTypeName","src":"38698:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10912,"mutability":"mutable","name":"auth","nameLocation":"38723:4:24","nodeType":"VariableDeclaration","scope":10928,"src":"38715:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10911,"name":"address","nodeType":"ElementaryTypeName","src":"38715:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"38685:43:24"},"returnParameters":{"id":10919,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10918,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10928,"src":"38770:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10917,"name":"address","nodeType":"ElementaryTypeName","src":"38770:7:24","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"38769:9:24"},"scope":10934,"src":"38669:160:24","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"constant":false,"documentation":{"id":10929,"nodeType":"StructuredDocumentation","src":"38833:246:24","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":10933,"mutability":"mutable","name":"__gap","nameLocation":"39102:5:24","nodeType":"VariableDeclaration","scope":10934,"src":"39082:25:24","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$45_storage","typeString":"uint256[45]"},"typeName":{"baseType":{"id":10930,"name":"uint256","nodeType":"ElementaryTypeName","src":"39082:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10932,"length":{"hexValue":"3435","id":10931,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39090:2:24","typeDescriptions":{"typeIdentifier":"t_rational_45_by_1","typeString":"int_const 45"},"value":"45"},"nodeType":"ArrayTypeName","src":"39082:11:24","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$45_storage_ptr","typeString":"uint256[45]"}},"visibility":"private"}],"scope":10935,"src":"2428:36682:24","usedErrors":[7782,8436,8439,8442,8445,8448,8451,8454,8457,8466,8469,8477,8480,8483,8486,8489,8492,8497,8502,8507,8512,8521,8530,8542,8549,8556,8561,18925,18928,22554,22559,22568,22573,22578,22585,22590,22595,22846,22859,23183,23186,23457,23462,24973,25668,26802,35197],"usedEvents":[8568,8575,8587,8595,8605,8617,8631,14469,14479,14493,14503,18917,18922,22272,23191,25432,25441,25450]}],"src":"39:39072:24"},"id":24},"@ensuro/core/contracts/PolicyPoolComponent.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/PolicyPoolComponent.sol","exportedSymbols":{"IERC165":[33545],"IERC20Metadata":[24925],"IPolicyPool":[14638],"IPolicyPoolComponent":[14655],"Initializable":[23434],"PolicyPoolComponent":[11094],"UUPSUpgradeable":[23600]},"id":11095,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":10936,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:25"},{"absolutePath":"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol","file":"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol","id":10938,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11095,"sourceUnit":23601,"src":"65:88:25","symbolAliases":[{"foreign":{"id":10937,"name":"UUPSUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23600,"src":"73:15:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":10940,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11095,"sourceUnit":23435,"src":"154:84:25","symbolAliases":[{"foreign":{"id":10939,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23434,"src":"162:13:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":10942,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11095,"sourceUnit":24926,"src":"239:97:25","symbolAliases":[{"foreign":{"id":10941,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"247:14:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":10944,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11095,"sourceUnit":33546,"src":"337:80:25","symbolAliases":[{"foreign":{"id":10943,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"345:7:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyPool.sol","file":"./interfaces/IPolicyPool.sol","id":10946,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11095,"sourceUnit":14639,"src":"418:57:25","symbolAliases":[{"foreign":{"id":10945,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14638,"src":"426:11:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyPoolComponent.sol","file":"./interfaces/IPolicyPoolComponent.sol","id":10948,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":11095,"sourceUnit":14656,"src":"476:75:25","symbolAliases":[{"foreign":{"id":10947,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14655,"src":"484:20:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":10950,"name":"Initializable","nameLocations":["1069:13:25"],"nodeType":"IdentifierPath","referencedDeclaration":23434,"src":"1069:13:25"},"id":10951,"nodeType":"InheritanceSpecifier","src":"1069:13:25"},{"baseName":{"id":10952,"name":"UUPSUpgradeable","nameLocations":["1084:15:25"],"nodeType":"IdentifierPath","referencedDeclaration":23600,"src":"1084:15:25"},"id":10953,"nodeType":"InheritanceSpecifier","src":"1084:15:25"},{"baseName":{"id":10954,"name":"IPolicyPoolComponent","nameLocations":["1101:20:25"],"nodeType":"IdentifierPath","referencedDeclaration":14655,"src":"1101:20:25"},"id":10955,"nodeType":"InheritanceSpecifier","src":"1101:20:25"}],"canonicalName":"PolicyPoolComponent","contractDependencies":[],"contractKind":"contract","documentation":{"id":10949,"nodeType":"StructuredDocumentation","src":"553:474:25","text":" @title Base class for PolicyPool components\n @dev This is the base class of all the components of the protocol that are linked to the PolicyPool and created\n      after it.\n      Holds the reference to _policyPool as immutable, also provides access to common admin roles:\n      This contract also keeps track of the tweaks to avoid two tweaks of the same type are done in a short period.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":11094,"linearizedBaseContracts":[11094,14655,33545,23600,22506,23434],"name":"PolicyPoolComponent","nameLocation":"1046:19:25","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":10956,"nodeType":"StructuredDocumentation","src":"1126:61:25","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":10959,"mutability":"immutable","name":"_policyPool","nameLocation":"1221:11:25","nodeType":"VariableDeclaration","scope":11094,"src":"1190:42:25","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"},"typeName":{"id":10958,"nodeType":"UserDefinedTypeName","pathNode":{"id":10957,"name":"IPolicyPool","nameLocations":["1190:11:25"],"nodeType":"IdentifierPath","referencedDeclaration":14638,"src":"1190:11:25"},"referencedDeclaration":14638,"src":"1190:11:25","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"visibility":"internal"},{"errorSelector":"6b23cf01","id":10961,"name":"NoZeroPolicyPool","nameLocation":"1243:16:25","nodeType":"ErrorDefinition","parameters":{"id":10960,"nodeType":"ParameterList","parameters":[],"src":"1259:2:25"},"src":"1237:25:25"},{"errorSelector":"d2b3d33f","id":10963,"name":"UpgradeCannotChangePolicyPool","nameLocation":"1271:29:25","nodeType":"ErrorDefinition","parameters":{"id":10962,"nodeType":"ParameterList","parameters":[],"src":"1300:2:25"},"src":"1265:38:25"},{"errorSelector":"799e780f","id":10965,"name":"OnlyPolicyPool","nameLocation":"1312:14:25","nodeType":"ErrorDefinition","parameters":{"id":10964,"nodeType":"ParameterList","parameters":[],"src":"1326:2:25"},"src":"1306:23:25"},{"body":{"id":10980,"nodeType":"Block","src":"1359:79:25","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":10968,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1373:3:25","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":10969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1377:6:25","memberName":"sender","nodeType":"MemberAccess","src":"1373:10:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":10972,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10959,"src":"1395:11:25","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}],"id":10971,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1387:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10970,"name":"address","nodeType":"ElementaryTypeName","src":"1387:7:25","typeDescriptions":{}}},"id":10973,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1387:20:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1373:34:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":10975,"name":"OnlyPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10965,"src":"1409:14:25","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":10976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1409:16:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":10967,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"1365:7:25","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":10977,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1365:61:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":10978,"nodeType":"ExpressionStatement","src":"1365:61:25"},{"id":10979,"nodeType":"PlaceholderStatement","src":"1432:1:25"}]},"id":10981,"name":"onlyPolicyPool","nameLocation":"1342:14:25","nodeType":"ModifierDefinition","parameters":{"id":10966,"nodeType":"ParameterList","parameters":[],"src":"1356:2:25"},"src":"1333:105:25","virtual":false,"visibility":"internal"},{"body":{"id":11008,"nodeType":"Block","src":"1530:135:25","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":10996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":10990,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10985,"src":"1548:11:25","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}],"id":10989,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1540:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10988,"name":"address","nodeType":"ElementaryTypeName","src":"1540:7:25","typeDescriptions":{}}},"id":10991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1540:20:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":10994,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1572: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":10993,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1564:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":10992,"name":"address","nodeType":"ElementaryTypeName","src":"1564:7:25","typeDescriptions":{}}},"id":10995,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1564:10:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1540:34:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11000,"nodeType":"IfStatement","src":"1536:65:25","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":10997,"name":"NoZeroPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10961,"src":"1583:16:25","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":10998,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1583:18:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":10999,"nodeType":"RevertStatement","src":"1576:25:25"}},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":11001,"name":"_disableInitializers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23388,"src":"1607:20:25","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":11002,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1607:22:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11003,"nodeType":"ExpressionStatement","src":"1607:22:25"},{"expression":{"id":11006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11004,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10959,"src":"1635:11:25","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":11005,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10985,"src":"1649:11:25","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"src":"1635:25:25","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"id":11007,"nodeType":"ExpressionStatement","src":"1635:25:25"}]},"documentation":{"id":10982,"nodeType":"StructuredDocumentation","src":"1442:48:25","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":11009,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":10986,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10985,"mutability":"mutable","name":"policyPool_","nameLocation":"1517:11:25","nodeType":"VariableDeclaration","scope":11009,"src":"1505:23:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"},"typeName":{"id":10984,"nodeType":"UserDefinedTypeName","pathNode":{"id":10983,"name":"IPolicyPool","nameLocations":["1505:11:25"],"nodeType":"IdentifierPath","referencedDeclaration":14638,"src":"1505:11:25"},"referencedDeclaration":14638,"src":"1505:11:25","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"1504:25:25"},"returnParameters":{"id":10987,"nodeType":"ParameterList","parameters":[],"src":"1530:0:25"},"scope":11094,"src":"1493:172:25","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":11014,"nodeType":"Block","src":"1801:2:25","statements":[]},"id":11015,"implemented":true,"kind":"function","modifiers":[{"id":11012,"kind":"modifierInvocation","modifierName":{"id":11011,"name":"onlyInitializing","nameLocations":["1784:16:25"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"1784:16:25"},"nodeType":"ModifierInvocation","src":"1784:16:25"}],"name":"__PolicyPoolComponent_init","nameLocation":"1746:26:25","nodeType":"FunctionDefinition","parameters":{"id":11010,"nodeType":"ParameterList","parameters":[],"src":"1772:2:25"},"returnParameters":{"id":11013,"nodeType":"ParameterList","parameters":[],"src":"1801:0:25"},"scope":11094,"src":"1737:66:25","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[23554],"body":{"id":11025,"nodeType":"Block","src":"1874:39:25","statements":[{"expression":{"arguments":[{"id":11022,"name":"newImpl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11017,"src":"1900:7:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":11021,"name":"_upgradeValidations","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11043,"src":"1880:19:25","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$__$","typeString":"function (address) view"}},"id":11023,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1880:28:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11024,"nodeType":"ExpressionStatement","src":"1880:28:25"}]},"id":11026,"implemented":true,"kind":"function","modifiers":[],"name":"_authorizeUpgrade","nameLocation":"1816:17:25","nodeType":"FunctionDefinition","overrides":{"id":11019,"nodeType":"OverrideSpecifier","overrides":[],"src":"1865:8:25"},"parameters":{"id":11018,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11017,"mutability":"mutable","name":"newImpl","nameLocation":"1842:7:25","nodeType":"VariableDeclaration","scope":11026,"src":"1834:15:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11016,"name":"address","nodeType":"ElementaryTypeName","src":"1834:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1833:17:25"},"returnParameters":{"id":11020,"nodeType":"ParameterList","parameters":[],"src":"1874:0:25"},"scope":11094,"src":"1807:106:25","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":11042,"nodeType":"Block","src":"1985:112:25","statements":[{"condition":{"commonType":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"},"id":11037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":11032,"name":"newImpl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11028,"src":"2016:7:25","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":11031,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14655,"src":"1995:20:25","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$14655_$","typeString":"type(contract IPolicyPoolComponent)"}},"id":11033,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1995:29:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPoolComponent_$14655","typeString":"contract IPolicyPoolComponent"}},"id":11034,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2025:10:25","memberName":"policyPool","nodeType":"MemberAccess","referencedDeclaration":14654,"src":"1995:40:25","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPolicyPool_$14638_$","typeString":"function () view external returns (contract IPolicyPool)"}},"id":11035,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1995:42:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":11036,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10959,"src":"2041:11:25","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"src":"1995:57:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11041,"nodeType":"IfStatement","src":"1991:101:25","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":11038,"name":"UpgradeCannotChangePolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10963,"src":"2061:29:25","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":11039,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2061:31:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11040,"nodeType":"RevertStatement","src":"2054:38:25"}}]},"id":11043,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeValidations","nameLocation":"1926:19:25","nodeType":"FunctionDefinition","parameters":{"id":11029,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11028,"mutability":"mutable","name":"newImpl","nameLocation":"1954:7:25","nodeType":"VariableDeclaration","scope":11043,"src":"1946:15:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11027,"name":"address","nodeType":"ElementaryTypeName","src":"1946:7:25","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1945:17:25"},"returnParameters":{"id":11030,"nodeType":"ParameterList","parameters":[],"src":"1985:0:25"},"scope":11094,"src":"1917:180:25","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[33544],"body":{"id":11066,"nodeType":"Block","src":"2247:115:25","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":11057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11052,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11046,"src":"2260:11:25","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":11054,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"2280:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$33545_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$33545_$","typeString":"type(contract IERC165)"}],"id":11053,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2275:4:25","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11055,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2275:13:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$33545","typeString":"type(contract IERC165)"}},"id":11056,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2289:11:25","memberName":"interfaceId","nodeType":"MemberAccess","src":"2275:25:25","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2260:40:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":11063,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11058,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11046,"src":"2304:11:25","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":11060,"name":"IPolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14655,"src":"2324:20:25","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$14655_$","typeString":"type(contract IPolicyPoolComponent)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyPoolComponent_$14655_$","typeString":"type(contract IPolicyPoolComponent)"}],"id":11059,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2319:4:25","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11061,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2319:26:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyPoolComponent_$14655","typeString":"type(contract IPolicyPoolComponent)"}},"id":11062,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2346:11:25","memberName":"interfaceId","nodeType":"MemberAccess","src":"2319:38:25","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2304:53:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2260:97:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":11051,"id":11065,"nodeType":"Return","src":"2253:104:25"}]},"documentation":{"id":11044,"nodeType":"StructuredDocumentation","src":"2101:52:25","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":11067,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"2165:17:25","nodeType":"FunctionDefinition","overrides":{"id":11048,"nodeType":"OverrideSpecifier","overrides":[],"src":"2223:8:25"},"parameters":{"id":11047,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11046,"mutability":"mutable","name":"interfaceId","nameLocation":"2190:11:25","nodeType":"VariableDeclaration","scope":11067,"src":"2183:18:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":11045,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2183:6:25","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2182:20:25"},"returnParameters":{"id":11051,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11050,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11067,"src":"2241:4:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11049,"name":"bool","nodeType":"ElementaryTypeName","src":"2241:4:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2240:6:25"},"scope":11094,"src":"2156:206:25","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[14654],"body":{"id":11076,"nodeType":"Block","src":"2431:29:25","statements":[{"expression":{"id":11074,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10959,"src":"2444:11:25","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"functionReturnParameters":11073,"id":11075,"nodeType":"Return","src":"2437:18:25"}]},"functionSelector":"4d15eb03","id":11077,"implemented":true,"kind":"function","modifiers":[],"name":"policyPool","nameLocation":"2375:10:25","nodeType":"FunctionDefinition","overrides":{"id":11069,"nodeType":"OverrideSpecifier","overrides":[],"src":"2400:8:25"},"parameters":{"id":11068,"nodeType":"ParameterList","parameters":[],"src":"2385:2:25"},"returnParameters":{"id":11073,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11072,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11077,"src":"2418:11:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"},"typeName":{"id":11071,"nodeType":"UserDefinedTypeName","pathNode":{"id":11070,"name":"IPolicyPool","nameLocations":["2418:11:25"],"nodeType":"IdentifierPath","referencedDeclaration":14638,"src":"2418:11:25"},"referencedDeclaration":14638,"src":"2418:11:25","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"2417:13:25"},"scope":11094,"src":"2366:94:25","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":11087,"nodeType":"Block","src":"2521:40:25","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":11083,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10959,"src":"2534:11:25","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"id":11084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2546:8:25","memberName":"currency","nodeType":"MemberAccess","referencedDeclaration":14510,"src":"2534:20:25","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IERC20Metadata_$24925_$","typeString":"function () view external returns (contract IERC20Metadata)"}},"id":11085,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2534:22:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"functionReturnParameters":11082,"id":11086,"nodeType":"Return","src":"2527:29:25"}]},"functionSelector":"e5a6b10f","id":11088,"implemented":true,"kind":"function","modifiers":[],"name":"currency","nameLocation":"2473:8:25","nodeType":"FunctionDefinition","parameters":{"id":11078,"nodeType":"ParameterList","parameters":[],"src":"2481:2:25"},"returnParameters":{"id":11082,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11081,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11088,"src":"2505:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"},"typeName":{"id":11080,"nodeType":"UserDefinedTypeName","pathNode":{"id":11079,"name":"IERC20Metadata","nameLocations":["2505:14:25"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"2505:14:25"},"referencedDeclaration":24925,"src":"2505:14:25","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"2504:16:25"},"scope":11094,"src":"2464:97:25","stateMutability":"view","virtual":false,"visibility":"public"},{"constant":false,"documentation":{"id":11089,"nodeType":"StructuredDocumentation","src":"2565:246:25","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":11093,"mutability":"mutable","name":"__gap","nameLocation":"2834:5:25","nodeType":"VariableDeclaration","scope":11094,"src":"2814:25:25","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage","typeString":"uint256[50]"},"typeName":{"baseType":{"id":11090,"name":"uint256","nodeType":"ElementaryTypeName","src":"2814:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11092,"length":{"hexValue":"3530","id":11091,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2822:2:25","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"50"},"nodeType":"ArrayTypeName","src":"2814:11:25","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage_ptr","typeString":"uint256[50]"}},"visibility":"private"}],"scope":11095,"src":"1028:1814:25","usedErrors":[10961,10963,10965,22846,22859,23183,23186,23457,23462,25668,26802],"usedEvents":[22272,23191]}],"src":"39:2804:25"},"id":25},"@ensuro/core/contracts/PremiumsAccount.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/PremiumsAccount.sol","exportedSymbols":{"IERC20Metadata":[24925],"IERC4626":[22463],"IEToken":[14336],"IPolicyPool":[14638],"IPremiumsAccount":[14743],"Math":[35187],"Policy":[8314],"PremiumsAccount":[12847],"Reserve":[13500],"SafeCast":[36952],"SafeERC20":[25416]},"id":12848,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":11096,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:26"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":11098,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12848,"sourceUnit":35188,"src":"65:65:26","symbolAliases":[{"foreign":{"id":11097,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"73:4:26","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":11100,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12848,"sourceUnit":24926,"src":"131:97:26","symbolAliases":[{"foreign":{"id":11099,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"139:14:26","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","file":"@openzeppelin/contracts/interfaces/IERC4626.sol","id":11102,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12848,"sourceUnit":22464,"src":"229:73:26","symbolAliases":[{"foreign":{"id":11101,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22463,"src":"237:8:26","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":11104,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12848,"sourceUnit":25417,"src":"303:82:26","symbolAliases":[{"foreign":{"id":11103,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25416,"src":"311:9:26","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":11106,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12848,"sourceUnit":36953,"src":"386:73:26","symbolAliases":[{"foreign":{"id":11105,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"394:8:26","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyPool.sol","file":"./interfaces/IPolicyPool.sol","id":11108,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12848,"sourceUnit":14639,"src":"460:57:26","symbolAliases":[{"foreign":{"id":11107,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14638,"src":"468:11:26","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IEToken.sol","file":"./interfaces/IEToken.sol","id":11110,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12848,"sourceUnit":14337,"src":"518:49:26","symbolAliases":[{"foreign":{"id":11109,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14336,"src":"526:7:26","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/Reserve.sol","file":"./Reserve.sol","id":11112,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12848,"sourceUnit":13501,"src":"568:38:26","symbolAliases":[{"foreign":{"id":11111,"name":"Reserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13500,"src":"576:7:26","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol","file":"./interfaces/IPremiumsAccount.sol","id":11114,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12848,"sourceUnit":14744,"src":"607:67:26","symbolAliases":[{"foreign":{"id":11113,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14743,"src":"615:16:26","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/Policy.sol","file":"./Policy.sol","id":11116,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":12848,"sourceUnit":8315,"src":"675:36:26","symbolAliases":[{"foreign":{"id":11115,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"683:6:26","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":11118,"name":"IPremiumsAccount","nameLocations":["1349:16:26"],"nodeType":"IdentifierPath","referencedDeclaration":14743,"src":"1349:16:26"},"id":11119,"nodeType":"InheritanceSpecifier","src":"1349:16:26"},{"baseName":{"id":11120,"name":"Reserve","nameLocations":["1367:7:26"],"nodeType":"IdentifierPath","referencedDeclaration":13500,"src":"1367:7:26"},"id":11121,"nodeType":"InheritanceSpecifier","src":"1367:7:26"}],"canonicalName":"PremiumsAccount","contractDependencies":[],"contractKind":"contract","documentation":{"id":11117,"nodeType":"StructuredDocumentation","src":"713:607:26","text":" @title Ensuro Premiums Account\n @notice This contract holds the pure premiums of a set of risk modules.\n @dev Pure premiums is the part of the premium that is expected to cover the losses. The contract keeps track of the pure premiums of the active policies\n (_activePurePremiums) and the surplus or deficit generated by the finalized policies (pure premiums collected -\n losses).\n Collaborates with a junior {EToken} and a senior {EToken} that act as lenders when the premiums aren't enough to\n cover the losses.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":12847,"linearizedBaseContracts":[12847,13500,11094,14655,33545,23600,22506,23434,14743],"name":"PremiumsAccount","nameLocation":"1330:15:26","nodeType":"ContractDefinition","nodes":[{"global":false,"id":11125,"libraryName":{"id":11122,"name":"Policy","nameLocations":["1385:6:26"],"nodeType":"IdentifierPath","referencedDeclaration":8314,"src":"1385:6:26"},"nodeType":"UsingForDirective","src":"1379:35:26","typeName":{"id":11124,"nodeType":"UserDefinedTypeName","pathNode":{"id":11123,"name":"Policy.PolicyData","nameLocations":["1396:6:26","1403:10:26"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"1396:17:26"},"referencedDeclaration":7744,"src":"1396:17:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}}},{"global":false,"id":11128,"libraryName":{"id":11126,"name":"Math","nameLocations":["1423:4:26"],"nodeType":"IdentifierPath","referencedDeclaration":35187,"src":"1423:4:26"},"nodeType":"UsingForDirective","src":"1417:23:26","typeName":{"id":11127,"name":"uint256","nodeType":"ElementaryTypeName","src":"1432:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"global":false,"id":11132,"libraryName":{"id":11129,"name":"SafeERC20","nameLocations":["1449:9:26"],"nodeType":"IdentifierPath","referencedDeclaration":25416,"src":"1449:9:26"},"nodeType":"UsingForDirective","src":"1443:35:26","typeName":{"id":11131,"nodeType":"UserDefinedTypeName","pathNode":{"id":11130,"name":"IERC20Metadata","nameLocations":["1463:14:26"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"1463:14:26"},"referencedDeclaration":24925,"src":"1463:14:26","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}}},{"global":false,"id":11135,"libraryName":{"id":11133,"name":"SafeCast","nameLocations":["1487:8:26"],"nodeType":"IdentifierPath","referencedDeclaration":36952,"src":"1487:8:26"},"nodeType":"UsingForDirective","src":"1481:27:26","typeName":{"id":11134,"name":"uint256","nodeType":"ElementaryTypeName","src":"1500:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":true,"id":11138,"mutability":"constant","name":"WAD","nameLocation":"1538:3:26","nodeType":"VariableDeclaration","scope":12847,"src":"1512:36:26","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11136,"name":"uint256","nodeType":"ElementaryTypeName","src":"1512:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31653138","id":11137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1544:4:26","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"visibility":"internal"},{"constant":true,"id":11141,"mutability":"constant","name":"FOUR_DECIMAL_TO_WAD","nameLocation":"1578:19:26","nodeType":"VariableDeclaration","scope":12847,"src":"1552:52:26","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11139,"name":"uint256","nodeType":"ElementaryTypeName","src":"1552:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31653134","id":11140,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1600:4:26","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000_by_1","typeString":"int_const 100000000000000"},"value":"1e14"},"visibility":"internal"},{"constant":true,"id":11144,"mutability":"constant","name":"HUNDRED_PERCENT","nameLocation":"1633:15:26","nodeType":"VariableDeclaration","scope":12847,"src":"1608:46:26","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":11142,"name":"uint16","nodeType":"ElementaryTypeName","src":"1608:6:26","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"value":{"hexValue":"316534","id":11143,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1651:3:26","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"1e4"},"visibility":"internal"},{"constant":false,"documentation":{"id":11145,"nodeType":"StructuredDocumentation","src":"1824:61:26","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":11148,"mutability":"immutable","name":"_juniorEtk","nameLocation":"1915:10:26","nodeType":"VariableDeclaration","scope":12847,"src":"1888:37:26","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":11147,"nodeType":"UserDefinedTypeName","pathNode":{"id":11146,"name":"IEToken","nameLocations":["1888:7:26"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"1888:7:26"},"referencedDeclaration":14336,"src":"1888:7:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"documentation":{"id":11149,"nodeType":"StructuredDocumentation","src":"2141:61:26","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":11152,"mutability":"immutable","name":"_seniorEtk","nameLocation":"2232:10:26","nodeType":"VariableDeclaration","scope":12847,"src":"2205:37:26","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":11151,"nodeType":"UserDefinedTypeName","pathNode":{"id":11150,"name":"IEToken","nameLocations":["2205:7:26"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"2205:7:26"},"referencedDeclaration":14336,"src":"2205:7:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"documentation":{"id":11153,"nodeType":"StructuredDocumentation","src":"2247:171:26","text":" @dev The active pure premiums field keeps track of the pure premiums collected by the active policies of risk\n modules linked with this PremiumsAccount."},"id":11155,"mutability":"mutable","name":"_activePurePremiums","nameLocation":"2438:19:26","nodeType":"VariableDeclaration","scope":12847,"src":"2421:36:26","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11154,"name":"uint256","nodeType":"ElementaryTypeName","src":"2421:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"documentation":{"id":11156,"nodeType":"StructuredDocumentation","src":"2514:313:26","text":" @dev The surplus field keeps track of the surplus or deficit (when negative) of the actual payouts made by the\n PremiumsAccount versus the collected pure premiums. On the negative side, it has a limit defined by `_maxDeficit()`,\n after that limit, internal loans are taken from the eTokens."},"id":11158,"mutability":"mutable","name":"_surplus","nameLocation":"2846:8:26","nodeType":"VariableDeclaration","scope":12847,"src":"2830:24:26","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11157,"name":"int256","nodeType":"ElementaryTypeName","src":"2830:6:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"canonicalName":"PremiumsAccount.PackedParams","documentation":{"id":11159,"nodeType":"StructuredDocumentation","src":"2859:630:26","text":" @notice This struct has the parameters that can be modified by governance\n @member deficitRatio A value between [0, 1] that defines the percentage of active pure premiums that can be used\n                      to cover losses.\n @member yieldVault   This is the implementation contract that manages the PremiumsAccount's funds. See\n                      {yieldVault()}\n @member jrLoanLimit  This is the maximum amount that can be borrowed from the Junior eToken (without decimals)\n @member srLoanLimit  This is the maximum amount that can be borrowed from the Senior eToken (without decimals)"},"id":11169,"members":[{"constant":false,"id":11162,"mutability":"mutable","name":"yieldVault","nameLocation":"3527:10:26","nodeType":"VariableDeclaration","scope":11169,"src":"3518:19:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":11161,"nodeType":"UserDefinedTypeName","pathNode":{"id":11160,"name":"IERC4626","nameLocations":["3518:8:26"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"3518:8:26"},"referencedDeclaration":22463,"src":"3518:8:26","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":11164,"mutability":"mutable","name":"jrLoanLimit","nameLocation":"3550:11:26","nodeType":"VariableDeclaration","scope":11169,"src":"3543:18:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11163,"name":"uint32","nodeType":"ElementaryTypeName","src":"3543:6:26","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":11166,"mutability":"mutable","name":"srLoanLimit","nameLocation":"3574:11:26","nodeType":"VariableDeclaration","scope":11169,"src":"3567:18:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11165,"name":"uint32","nodeType":"ElementaryTypeName","src":"3567:6:26","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":11168,"mutability":"mutable","name":"deficitRatio","nameLocation":"3598:12:26","nodeType":"VariableDeclaration","scope":11169,"src":"3591:19:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":11167,"name":"uint16","nodeType":"ElementaryTypeName","src":"3591:6:26","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"name":"PackedParams","nameLocation":"3499:12:26","nodeType":"StructDefinition","scope":12847,"src":"3492:123:26","visibility":"public"},{"constant":false,"id":11172,"mutability":"mutable","name":"_params","nameLocation":"3641:7:26","nodeType":"VariableDeclaration","scope":12847,"src":"3619:29:26","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage","typeString":"struct PremiumsAccount.PackedParams"},"typeName":{"id":11171,"nodeType":"UserDefinedTypeName","pathNode":{"id":11170,"name":"PackedParams","nameLocations":["3619:12:26"],"nodeType":"IdentifierPath","referencedDeclaration":11169,"src":"3619:12:26"},"referencedDeclaration":11169,"src":"3619:12:26","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage_ptr","typeString":"struct PremiumsAccount.PackedParams"}},"visibility":"internal"},{"documentation":{"id":11173,"nodeType":"StructuredDocumentation","src":"3653:361:26","text":" @notice Thrown when yield-vault losses would push the account below its maximum allowed deficit.\n @dev `excess` is the remaining unpaid amount returned by `_payFromPremiums(losses)` after clamping to `_maxDeficit()`.\n @param losses The total losses being applied\n @param excess The unpaid portion that exceeds the max-deficit capacity"},"errorSelector":"1f846496","id":11179,"name":"LossesCannotExceedMaxDeficit","nameLocation":"4023:28:26","nodeType":"ErrorDefinition","parameters":{"id":11178,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11175,"mutability":"mutable","name":"losses","nameLocation":"4060:6:26","nodeType":"VariableDeclaration","scope":11179,"src":"4052:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11174,"name":"uint256","nodeType":"ElementaryTypeName","src":"4052:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11177,"mutability":"mutable","name":"excess","nameLocation":"4076:6:26","nodeType":"VariableDeclaration","scope":11179,"src":"4068:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11176,"name":"uint256","nodeType":"ElementaryTypeName","src":"4068:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4051:32:26"},"src":"4017:67:26"},{"documentation":{"id":11180,"nodeType":"StructuredDocumentation","src":"4087:344:26","text":" @notice Thrown during upgrade validation if the configured eToken addresses change unexpectedly.\n @dev Upgrades must keep the same junior/senior eToken wiring (unless the current eToken is zero-address).\n @param oldEToken The currently configured eToken\n @param newEToken The eToken reported by the new implementation"},"errorSelector":"4ebfaa24","id":11188,"name":"InvalidUpgradeETokenChanged","nameLocation":"4440:27:26","nodeType":"ErrorDefinition","parameters":{"id":11187,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11183,"mutability":"mutable","name":"oldEToken","nameLocation":"4476:9:26","nodeType":"VariableDeclaration","scope":11188,"src":"4468:17:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":11182,"nodeType":"UserDefinedTypeName","pathNode":{"id":11181,"name":"IEToken","nameLocations":["4468:7:26"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"4468:7:26"},"referencedDeclaration":14336,"src":"4468:7:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":11186,"mutability":"mutable","name":"newEToken","nameLocation":"4495:9:26","nodeType":"VariableDeclaration","scope":11188,"src":"4487:17:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":11185,"nodeType":"UserDefinedTypeName","pathNode":{"id":11184,"name":"IEToken","nameLocations":["4487:7:26"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"4487:7:26"},"referencedDeclaration":14336,"src":"4487:7:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"4467:38:26"},"src":"4434:72:26"},{"documentation":{"id":11189,"nodeType":"StructuredDocumentation","src":"4509:171:26","text":" @notice Thrown when a new deficit ratio is invalid (out of range or not representable with 4 decimals).\n @param newDeficitRatio The proposed ratio (wad)"},"errorSelector":"46c20ab7","id":11193,"name":"InvalidDeficitRatio","nameLocation":"4689:19:26","nodeType":"ErrorDefinition","parameters":{"id":11192,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11191,"mutability":"mutable","name":"newDeficitRatio","nameLocation":"4717:15:26","nodeType":"VariableDeclaration","scope":11193,"src":"4709:23:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11190,"name":"uint256","nodeType":"ElementaryTypeName","src":"4709:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4708:25:26"},"src":"4683:51:26"},{"documentation":{"id":11194,"nodeType":"StructuredDocumentation","src":"4737:321:26","text":" @notice Thrown when attempting to set a deficit ratio without adjustment while the current deficit exceeds the new\n maximum allowed deficit.\n @param currentDeficit Current deficit (positive value, i.e., `-surplus`)\n @param newMaxDeficit New maximum deficit (positive value, i.e., `-maxDeficit`)"},"errorSelector":"287223f9","id":11200,"name":"DeficitExceedsMaxDeficit","nameLocation":"5067:24:26","nodeType":"ErrorDefinition","parameters":{"id":11199,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11196,"mutability":"mutable","name":"currentDeficit","nameLocation":"5099:14:26","nodeType":"VariableDeclaration","scope":11200,"src":"5092:21:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11195,"name":"int256","nodeType":"ElementaryTypeName","src":"5092:6:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":11198,"mutability":"mutable","name":"newMaxDeficit","nameLocation":"5122:13:26","nodeType":"VariableDeclaration","scope":11200,"src":"5115:20:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11197,"name":"int256","nodeType":"ElementaryTypeName","src":"5115:6:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"5091:45:26"},"src":"5061:76:26"},{"documentation":{"id":11201,"nodeType":"StructuredDocumentation","src":"5140:198:26","text":" @notice Thrown when the required funds cannot be fully borrowed from the configured eTokens within their limits.\n @param amountLeft The remaining amount that could not be borrowed"},"errorSelector":"093f6643","id":11205,"name":"CannotBeBorrowed","nameLocation":"5347:16:26","nodeType":"ErrorDefinition","parameters":{"id":11204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11203,"mutability":"mutable","name":"amountLeft","nameLocation":"5372:10:26","nodeType":"VariableDeclaration","scope":11205,"src":"5364:18:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11202,"name":"uint256","nodeType":"ElementaryTypeName","src":"5364:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5363:20:26"},"src":"5341:43:26"},{"documentation":{"id":11206,"nodeType":"StructuredDocumentation","src":"5387:156:26","text":" @notice Thrown when a loan limit cannot be represented with 0 decimals when packing/unpacking.\n @param loanLimit The provided limit value"},"errorSelector":"4a8fd66f","id":11210,"name":"InvalidLoanLimit","nameLocation":"5552:16:26","nodeType":"ErrorDefinition","parameters":{"id":11209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11208,"mutability":"mutable","name":"loanLimit","nameLocation":"5577:9:26","nodeType":"VariableDeclaration","scope":11210,"src":"5569:17:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11207,"name":"uint256","nodeType":"ElementaryTypeName","src":"5569:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5568:19:26"},"src":"5546:42:26"},{"documentation":{"id":11211,"nodeType":"StructuredDocumentation","src":"5591:127:26","text":" @notice Thrown when the destination address is invalid.\n @param destination The provided destination address"},"errorSelector":"8eaba6f9","id":11215,"name":"InvalidDestination","nameLocation":"5727:18:26","nodeType":"ErrorDefinition","parameters":{"id":11214,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11213,"mutability":"mutable","name":"destination","nameLocation":"5754:11:26","nodeType":"VariableDeclaration","scope":11215,"src":"5746:19:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11212,"name":"address","nodeType":"ElementaryTypeName","src":"5746:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5745:21:26"},"src":"5721:46:26"},{"documentation":{"id":11216,"nodeType":"StructuredDocumentation","src":"5770:243:26","text":" @notice Thrown when attempting to withdraw more than the current surplus (when `amount != type(uint256).max`).\n @param amountRequired The requested amount to withdraw\n @param surplus The current surplus (can be negative)"},"errorSelector":"4836a44e","id":11222,"name":"WithdrawExceedsSurplus","nameLocation":"6022:22:26","nodeType":"ErrorDefinition","parameters":{"id":11221,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11218,"mutability":"mutable","name":"amountRequired","nameLocation":"6053:14:26","nodeType":"VariableDeclaration","scope":11222,"src":"6045:22:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11217,"name":"uint256","nodeType":"ElementaryTypeName","src":"6045:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11220,"mutability":"mutable","name":"surplus","nameLocation":"6076:7:26","nodeType":"VariableDeclaration","scope":11222,"src":"6069:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11219,"name":"int256","nodeType":"ElementaryTypeName","src":"6069:6:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"6044:40:26"},"src":"6016:69:26"},{"anonymous":false,"documentation":{"id":11223,"nodeType":"StructuredDocumentation","src":"6089:381:26","text":" @notice Emitted when \"won premiums\" move in or out of the PremiumsAccount.\n @dev Emitted by `receiveGrant` when funds are received without liability, and by `withdrawWonPremiums` when\n surplus is withdrawn (typically to the treasury).\n @param moneyIn Indicates if money came in or out (false).\n @param value The amount of money received or given"},"eventSelector":"d60d524f1cae273480bb0a4ddfb992b6ac0b61c8e12ffbe2e4e31463f9e90199","id":11229,"name":"WonPremiumsInOut","nameLocation":"6479:16:26","nodeType":"EventDefinition","parameters":{"id":11228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11225,"indexed":false,"mutability":"mutable","name":"moneyIn","nameLocation":"6501:7:26","nodeType":"VariableDeclaration","scope":11229,"src":"6496:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11224,"name":"bool","nodeType":"ElementaryTypeName","src":"6496:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":11227,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"6518:5:26","nodeType":"VariableDeclaration","scope":11229,"src":"6510:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11226,"name":"uint256","nodeType":"ElementaryTypeName","src":"6510:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6495:29:26"},"src":"6473:52:26"},{"anonymous":false,"documentation":{"id":11230,"nodeType":"StructuredDocumentation","src":"6529:257:26","text":" @notice Emitted when the deficitRatio is changed\n @param oldRatio Ratio before the change\n @param newRatio Ratio after the change\n @param adjustment Adjustement (etk loan) made to adjust the contract, so deficit <= maxDeficit"},"eventSelector":"5b2441044bd7b1320018e9cf93f7a9a26d14db096298500121b8370aff51133d","id":11238,"name":"DeficitRatioChanged","nameLocation":"6795:19:26","nodeType":"EventDefinition","parameters":{"id":11237,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11232,"indexed":false,"mutability":"mutable","name":"oldRatio","nameLocation":"6823:8:26","nodeType":"VariableDeclaration","scope":11238,"src":"6815:16:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11231,"name":"uint256","nodeType":"ElementaryTypeName","src":"6815:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11234,"indexed":false,"mutability":"mutable","name":"newRatio","nameLocation":"6841:8:26","nodeType":"VariableDeclaration","scope":11238,"src":"6833:16:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11233,"name":"uint256","nodeType":"ElementaryTypeName","src":"6833:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11236,"indexed":false,"mutability":"mutable","name":"adjustment","nameLocation":"6859:10:26","nodeType":"VariableDeclaration","scope":11238,"src":"6851:18:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11235,"name":"uint256","nodeType":"ElementaryTypeName","src":"6851:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6814:56:26"},"src":"6789:82:26"},{"anonymous":false,"documentation":{"id":11239,"nodeType":"StructuredDocumentation","src":"6875:256:26","text":" @notice Emitted when the loan limits are changed\n @param oldLimit Limit before the change\n @param newLimit Limit after the change\n @param isSenior If true, the limit changed is the senior limit, otherwise is the junior limit"},"eventSelector":"1366686786a1d0cde83e2e2241a477fcf29662506a51f052f72e47b15729bf0b","id":11247,"name":"LoanLimitChanged","nameLocation":"7140:16:26","nodeType":"EventDefinition","parameters":{"id":11246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11241,"indexed":false,"mutability":"mutable","name":"oldLimit","nameLocation":"7165:8:26","nodeType":"VariableDeclaration","scope":11247,"src":"7157:16:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11240,"name":"uint256","nodeType":"ElementaryTypeName","src":"7157:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11243,"indexed":false,"mutability":"mutable","name":"newLimit","nameLocation":"7183:8:26","nodeType":"VariableDeclaration","scope":11247,"src":"7175:16:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11242,"name":"uint256","nodeType":"ElementaryTypeName","src":"7175:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11245,"indexed":false,"mutability":"mutable","name":"isSenior","nameLocation":"7198:8:26","nodeType":"VariableDeclaration","scope":11247,"src":"7193:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11244,"name":"bool","nodeType":"ElementaryTypeName","src":"7193:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7156:51:26"},"src":"7134:74:26"},{"body":{"id":11271,"nodeType":"Block","src":"7646:63:26","statements":[{"expression":{"id":11265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11263,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"7652:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":11264,"name":"juniorEtk_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11254,"src":"7665:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"src":"7652:23:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":11266,"nodeType":"ExpressionStatement","src":"7652:23:26"},{"expression":{"id":11269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11267,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11152,"src":"7681:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":11268,"name":"seniorEtk_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11257,"src":"7694:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"src":"7681:23:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":11270,"nodeType":"ExpressionStatement","src":"7681:23:26"}]},"documentation":{"id":11248,"nodeType":"StructuredDocumentation","src":"7497:48:26","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":11272,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":11260,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11251,"src":"7633:11:26","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}}],"id":11261,"kind":"baseConstructorSpecifier","modifierName":{"id":11259,"name":"Reserve","nameLocations":["7625:7:26"],"nodeType":"IdentifierPath","referencedDeclaration":13500,"src":"7625:7:26"},"nodeType":"ModifierInvocation","src":"7625:20:26"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":11258,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11251,"mutability":"mutable","name":"policyPool_","nameLocation":"7572:11:26","nodeType":"VariableDeclaration","scope":11272,"src":"7560:23:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"},"typeName":{"id":11250,"nodeType":"UserDefinedTypeName","pathNode":{"id":11249,"name":"IPolicyPool","nameLocations":["7560:11:26"],"nodeType":"IdentifierPath","referencedDeclaration":14638,"src":"7560:11:26"},"referencedDeclaration":14638,"src":"7560:11:26","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"visibility":"internal"},{"constant":false,"id":11254,"mutability":"mutable","name":"juniorEtk_","nameLocation":"7593:10:26","nodeType":"VariableDeclaration","scope":11272,"src":"7585:18:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":11253,"nodeType":"UserDefinedTypeName","pathNode":{"id":11252,"name":"IEToken","nameLocations":["7585:7:26"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"7585:7:26"},"referencedDeclaration":14336,"src":"7585:7:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":11257,"mutability":"mutable","name":"seniorEtk_","nameLocation":"7613:10:26","nodeType":"VariableDeclaration","scope":11272,"src":"7605:18:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":11256,"nodeType":"UserDefinedTypeName","pathNode":{"id":11255,"name":"IEToken","nameLocations":["7605:7:26"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"7605:7:26"},"referencedDeclaration":14336,"src":"7605:7:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"7559:65:26"},"returnParameters":{"id":11262,"nodeType":"ParameterList","parameters":[],"src":"7646:0:26"},"scope":12847,"src":"7548:161:26","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":11281,"nodeType":"Block","src":"7808:35:26","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":11278,"name":"__PremiumsAccount_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11295,"src":"7814:22:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":11279,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7814:24:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11280,"nodeType":"ExpressionStatement","src":"7814:24:26"}]},"documentation":{"id":11273,"nodeType":"StructuredDocumentation","src":"7713:51:26","text":" @dev Initializes the PremiumsAccount"},"functionSelector":"8129fc1c","id":11282,"implemented":true,"kind":"function","modifiers":[{"id":11276,"kind":"modifierInvocation","modifierName":{"id":11275,"name":"initializer","nameLocations":["7796:11:26"],"nodeType":"IdentifierPath","referencedDeclaration":23274,"src":"7796:11:26"},"nodeType":"ModifierInvocation","src":"7796:11:26"}],"name":"initialize","nameLocation":"7776:10:26","nodeType":"FunctionDefinition","parameters":{"id":11274,"nodeType":"ParameterList","parameters":[],"src":"7786:2:26"},"returnParameters":{"id":11277,"nodeType":"ParameterList","parameters":[],"src":"7808:0:26"},"scope":12847,"src":"7767:76:26","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":11294,"nodeType":"Block","src":"8041:67:26","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":11288,"name":"__Reserve_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12929,"src":"8047:14:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":11289,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8047:16:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11290,"nodeType":"ExpressionStatement","src":"8047:16:26"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":11291,"name":"__PremiumsAccount_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11315,"src":"8069:32:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":11292,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8069:34:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11293,"nodeType":"ExpressionStatement","src":"8069:34:26"}]},"documentation":{"id":11283,"nodeType":"StructuredDocumentation","src":"7847:80:26","text":" @dev Initializes the PremiumsAccount (to be called by subclasses)"},"id":11295,"implemented":true,"kind":"function","modifiers":[{"id":11286,"kind":"modifierInvocation","modifierName":{"id":11285,"name":"onlyInitializing","nameLocations":["8024:16:26"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"8024:16:26"},"nodeType":"ModifierInvocation","src":"8024:16:26"}],"name":"__PremiumsAccount_init","nameLocation":"7990:22:26","nodeType":"FunctionDefinition","parameters":{"id":11284,"nodeType":"ParameterList","parameters":[],"src":"8012:2:26"},"returnParameters":{"id":11287,"nodeType":"ParameterList","parameters":[],"src":"8041:0:26"},"scope":12847,"src":"7981:127:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":11314,"nodeType":"Block","src":"8233:205:26","statements":[{"expression":{"id":11312,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11300,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11172,"src":"8282:7:26","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11302,"name":"HUNDRED_PERCENT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11144,"src":"8327:15:26","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"arguments":[{"arguments":[{"hexValue":"30","id":11306,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8379:1:26","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":11305,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8371:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11304,"name":"address","nodeType":"ElementaryTypeName","src":"8371:7:26","typeDescriptions":{}}},"id":11307,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8371:10:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":11303,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22463,"src":"8362:8:26","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC4626_$22463_$","typeString":"type(contract IERC4626)"}},"id":11308,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8362:20:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},{"hexValue":"30","id":11309,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8403:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":11310,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8425:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"},{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":11301,"name":"PackedParams","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11169,"src":"8292:12:26","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_PackedParams_$11169_storage_ptr_$","typeString":"type(struct PremiumsAccount.PackedParams storage pointer)"}},"id":11311,"isConstant":false,"isLValue":false,"isPure":true,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["8313:12:26","8350:10:26","8390:11:26","8412:11:26"],"names":["deficitRatio","yieldVault","jrLoanLimit","srLoanLimit"],"nodeType":"FunctionCall","src":"8292:141:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_memory_ptr","typeString":"struct PremiumsAccount.PackedParams memory"}},"src":"8282:151:26","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":11313,"nodeType":"ExpressionStatement","src":"8282:151:26"}]},"id":11315,"implemented":true,"kind":"function","modifiers":[{"id":11298,"kind":"modifierInvocation","modifierName":{"id":11297,"name":"onlyInitializing","nameLocations":["8216:16:26"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"8216:16:26"},"nodeType":"ModifierInvocation","src":"8216:16:26"}],"name":"__PremiumsAccount_init_unchained","nameLocation":"8172:32:26","nodeType":"FunctionDefinition","parameters":{"id":11296,"nodeType":"ParameterList","parameters":[],"src":"8204:2:26"},"returnParameters":{"id":11299,"nodeType":"ParameterList","parameters":[],"src":"8233:0:26"},"scope":12847,"src":"8163:275:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[11043],"body":{"id":11384,"nodeType":"Block","src":"8519:390:26","statements":[{"expression":{"arguments":[{"id":11324,"name":"newImpl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11317,"src":"8551:7:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":11321,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8525:5:26","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_PremiumsAccount_$12847_$","typeString":"type(contract super PremiumsAccount)"}},"id":11323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8531:19:26","memberName":"_upgradeValidations","nodeType":"MemberAccess","referencedDeclaration":11043,"src":"8525:25:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$__$","typeString":"function (address) view"}},"id":11325,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8525:34:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11326,"nodeType":"ExpressionStatement","src":"8525:34:26"},{"assignments":[11329],"declarations":[{"constant":false,"id":11329,"mutability":"mutable","name":"newPA","nameLocation":"8582:5:26","nodeType":"VariableDeclaration","scope":11384,"src":"8565:22:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"},"typeName":{"id":11328,"nodeType":"UserDefinedTypeName","pathNode":{"id":11327,"name":"IPremiumsAccount","nameLocations":["8565:16:26"],"nodeType":"IdentifierPath","referencedDeclaration":14743,"src":"8565:16:26"},"referencedDeclaration":14743,"src":"8565:16:26","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"id":11333,"initialValue":{"arguments":[{"id":11331,"name":"newImpl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11317,"src":"8607:7:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":11330,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14743,"src":"8590:16:26","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPremiumsAccount_$14743_$","typeString":"type(contract IPremiumsAccount)"}},"id":11332,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8590:25:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"nodeType":"VariableDeclarationStatement","src":"8565:50:26"},{"assignments":[11336,11339],"declarations":[{"constant":false,"id":11336,"mutability":"mutable","name":"newJr","nameLocation":"8630:5:26","nodeType":"VariableDeclaration","scope":11384,"src":"8622:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":11335,"nodeType":"UserDefinedTypeName","pathNode":{"id":11334,"name":"IEToken","nameLocations":["8622:7:26"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"8622:7:26"},"referencedDeclaration":14336,"src":"8622:7:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":11339,"mutability":"mutable","name":"newSr","nameLocation":"8645:5:26","nodeType":"VariableDeclaration","scope":11384,"src":"8637:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":11338,"nodeType":"UserDefinedTypeName","pathNode":{"id":11337,"name":"IEToken","nameLocations":["8637:7:26"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"8637:7:26"},"referencedDeclaration":14336,"src":"8637:7:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"}],"id":11343,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":11340,"name":"newPA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11329,"src":"8654:5:26","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"id":11341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8660:4:26","memberName":"etks","nodeType":"MemberAccess","referencedDeclaration":14736,"src":"8654:10:26","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IEToken_$14336_$_t_contract$_IEToken_$14336_$","typeString":"function () view external returns (contract IEToken,contract IEToken)"}},"id":11342,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8654:12:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_contract$_IEToken_$14336_$_t_contract$_IEToken_$14336_$","typeString":"tuple(contract IEToken,contract IEToken)"}},"nodeType":"VariableDeclarationStatement","src":"8621:45:26"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"id":11347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11345,"name":"newJr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11336,"src":"8680:5:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":11346,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"8689:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"src":"8680:19:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":11356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11350,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"8711:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":11349,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8703:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11348,"name":"address","nodeType":"ElementaryTypeName","src":"8703:7:26","typeDescriptions":{}}},"id":11351,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8703:19:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":11354,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8734:1:26","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":11353,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8726:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11352,"name":"address","nodeType":"ElementaryTypeName","src":"8726:7:26","typeDescriptions":{}}},"id":11355,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8726:10:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8703:33:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"8680:56:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":11359,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"8766:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},{"id":11360,"name":"newJr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11336,"src":"8778:5:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":11358,"name":"InvalidUpgradeETokenChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11188,"src":"8738:27:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_IEToken_$14336_$_t_contract$_IEToken_$14336_$returns$_t_error_$","typeString":"function (contract IEToken,contract IEToken) pure returns (error)"}},"id":11361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8738:46:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":11344,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"8672:7:26","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":11362,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8672:113:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11363,"nodeType":"ExpressionStatement","src":"8672:113:26"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"id":11367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11365,"name":"newSr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11339,"src":"8799:5:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":11366,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11152,"src":"8808:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"src":"8799:19:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":11376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11370,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11152,"src":"8830:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":11369,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8822:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11368,"name":"address","nodeType":"ElementaryTypeName","src":"8822:7:26","typeDescriptions":{}}},"id":11371,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8822:19:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":11374,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8853:1:26","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":11373,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8845:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11372,"name":"address","nodeType":"ElementaryTypeName","src":"8845:7:26","typeDescriptions":{}}},"id":11375,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8845:10:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8822:33:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"8799:56:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":11379,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11152,"src":"8885:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},{"id":11380,"name":"newSr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11339,"src":"8897:5:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":11378,"name":"InvalidUpgradeETokenChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11188,"src":"8857:27:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_IEToken_$14336_$_t_contract$_IEToken_$14336_$returns$_t_error_$","typeString":"function (contract IEToken,contract IEToken) pure returns (error)"}},"id":11381,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8857:46:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":11364,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"8791:7:26","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":11382,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8791:113:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11383,"nodeType":"ExpressionStatement","src":"8791:113:26"}]},"id":11385,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeValidations","nameLocation":"8451:19:26","nodeType":"FunctionDefinition","overrides":{"id":11319,"nodeType":"OverrideSpecifier","overrides":[],"src":"8510:8:26"},"parameters":{"id":11318,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11317,"mutability":"mutable","name":"newImpl","nameLocation":"8479:7:26","nodeType":"VariableDeclaration","scope":11385,"src":"8471:15:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11316,"name":"address","nodeType":"ElementaryTypeName","src":"8471:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8470:17:26"},"returnParameters":{"id":11320,"nodeType":"ParameterList","parameters":[],"src":"8519:0:26"},"scope":12847,"src":"8442:467:26","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[11067],"body":{"id":11406,"nodeType":"Block","src":"9059:107:26","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11396,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11388,"src":"9096:11:26","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":11394,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9072:5:26","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_PremiumsAccount_$12847_$","typeString":"type(contract super PremiumsAccount)"}},"id":11395,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9078:17:26","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":11067,"src":"9072:23:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":11397,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9072:36:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":11403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11398,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11388,"src":"9112:11:26","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":11400,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14743,"src":"9132:16:26","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPremiumsAccount_$14743_$","typeString":"type(contract IPremiumsAccount)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPremiumsAccount_$14743_$","typeString":"type(contract IPremiumsAccount)"}],"id":11399,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9127:4:26","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11401,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9127:22:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPremiumsAccount_$14743","typeString":"type(contract IPremiumsAccount)"}},"id":11402,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9150:11:26","memberName":"interfaceId","nodeType":"MemberAccess","src":"9127:34:26","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"9112:49:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9072:89:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":11393,"id":11405,"nodeType":"Return","src":"9065:96:26"}]},"documentation":{"id":11386,"nodeType":"StructuredDocumentation","src":"8913:52:26","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":11407,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"8977:17:26","nodeType":"FunctionDefinition","overrides":{"id":11390,"nodeType":"OverrideSpecifier","overrides":[],"src":"9035:8:26"},"parameters":{"id":11389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11388,"mutability":"mutable","name":"interfaceId","nameLocation":"9002:11:26","nodeType":"VariableDeclaration","scope":11407,"src":"8995:18:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":11387,"name":"bytes4","nodeType":"ElementaryTypeName","src":"8995:6:26","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"8994:20:26"},"returnParameters":{"id":11393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11392,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11407,"src":"9053:4:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11391,"name":"bool","nodeType":"ElementaryTypeName","src":"9053:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9052:6:26"},"scope":12847,"src":"8968:198:26","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[13010],"body":{"id":11418,"nodeType":"Block","src":"9258:36:26","statements":[{"expression":{"expression":{"id":11415,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11172,"src":"9271:7:26","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":11416,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9279:10:26","memberName":"yieldVault","nodeType":"MemberAccess","referencedDeclaration":11162,"src":"9271:18:26","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"functionReturnParameters":11414,"id":11417,"nodeType":"Return","src":"9264:25:26"}]},"documentation":{"id":11408,"nodeType":"StructuredDocumentation","src":"9170:23:26","text":"@inheritdoc Reserve"},"functionSelector":"a7f8a5e2","id":11419,"implemented":true,"kind":"function","modifiers":[],"name":"yieldVault","nameLocation":"9205:10:26","nodeType":"FunctionDefinition","overrides":{"id":11410,"nodeType":"OverrideSpecifier","overrides":[],"src":"9230:8:26"},"parameters":{"id":11409,"nodeType":"ParameterList","parameters":[],"src":"9215:2:26"},"returnParameters":{"id":11414,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11413,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11419,"src":"9248:8:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":11412,"nodeType":"UserDefinedTypeName","pathNode":{"id":11411,"name":"IERC4626","nameLocations":["9248:8:26"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"9248:8:26"},"referencedDeclaration":22463,"src":"9248:8:26","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"9247:10:26"},"scope":12847,"src":"9196:98:26","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[13017],"body":{"id":11433,"nodeType":"Block","src":"9382:37:26","statements":[{"expression":{"id":11431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":11427,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11172,"src":"9388:7:26","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":11429,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"9396:10:26","memberName":"yieldVault","nodeType":"MemberAccess","referencedDeclaration":11162,"src":"9388:18:26","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":11430,"name":"newYV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11423,"src":"9409:5:26","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"src":"9388:26:26","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":11432,"nodeType":"ExpressionStatement","src":"9388:26:26"}]},"documentation":{"id":11420,"nodeType":"StructuredDocumentation","src":"9298:23:26","text":"@inheritdoc Reserve"},"id":11434,"implemented":true,"kind":"function","modifiers":[],"name":"_setYieldVault","nameLocation":"9333:14:26","nodeType":"FunctionDefinition","overrides":{"id":11425,"nodeType":"OverrideSpecifier","overrides":[],"src":"9373:8:26"},"parameters":{"id":11424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11423,"mutability":"mutable","name":"newYV","nameLocation":"9357:5:26","nodeType":"VariableDeclaration","scope":11434,"src":"9348:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":11422,"nodeType":"UserDefinedTypeName","pathNode":{"id":11421,"name":"IERC4626","nameLocations":["9348:8:26"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"9348:8:26"},"referencedDeclaration":22463,"src":"9348:8:26","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"9347:16:26"},"returnParameters":{"id":11426,"nodeType":"ParameterList","parameters":[],"src":"9382:0:26"},"scope":12847,"src":"9324:95:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[13037],"body":{"id":11481,"nodeType":"Block","src":"9917:310:26","statements":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11441,"name":"earningsOrLosses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11437,"src":"9927:16:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":11442,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9947:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9927:21:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":11473,"nodeType":"Block","src":"10018:161:26","statements":[{"assignments":[11453],"declarations":[{"constant":false,"id":11453,"mutability":"mutable","name":"excess","nameLocation":"10034:6:26","nodeType":"VariableDeclaration","scope":11473,"src":"10026:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11452,"name":"uint256","nodeType":"ElementaryTypeName","src":"10026:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11458,"initialValue":{"arguments":[{"id":11456,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"10060:17:26","subExpression":{"id":11455,"name":"earningsOrLosses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11437,"src":"10061:16:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11454,"name":"_payFromPremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12065,"src":"10043:16:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$_t_uint256_$","typeString":"function (int256) returns (uint256)"}},"id":11457,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10043:35:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10026:52:26"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11460,"name":"excess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11453,"src":"10094:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":11461,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10104:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10094:11:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"arguments":[{"id":11467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"10144:17:26","subExpression":{"id":11466,"name":"earningsOrLosses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11437,"src":"10145:16:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11465,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10136:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11464,"name":"uint256","nodeType":"ElementaryTypeName","src":"10136:7:26","typeDescriptions":{}}},"id":11468,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10136:26:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11469,"name":"excess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11453,"src":"10164:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11463,"name":"LossesCannotExceedMaxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11179,"src":"10107:28:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":11470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10107:64:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":11459,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"10086:7:26","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":11471,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10086:86:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11472,"nodeType":"ExpressionStatement","src":"10086:86:26"}]},"id":11474,"nodeType":"IfStatement","src":"9923:256:26","trueBody":{"id":11451,"nodeType":"Block","src":"9950:62:26","statements":[{"expression":{"arguments":[{"arguments":[{"id":11447,"name":"earningsOrLosses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11437,"src":"9987:16:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11446,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9979:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11445,"name":"uint256","nodeType":"ElementaryTypeName","src":"9979:7:26","typeDescriptions":{}}},"id":11448,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9979:25:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11444,"name":"_storePurePremiumWon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12079,"src":"9958:20:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":11449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9958:47:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11450,"nodeType":"ExpressionStatement","src":"9958:47:26"}]}},{"expression":{"arguments":[{"id":11478,"name":"earningsOrLosses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11437,"src":"10205:16:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":11475,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"10184:5:26","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_PremiumsAccount_$12847_$","typeString":"type(contract super PremiumsAccount)"}},"id":11477,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10190:14:26","memberName":"_yieldEarnings","nodeType":"MemberAccess","referencedDeclaration":13037,"src":"10184:20:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":11479,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10184:38:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11480,"nodeType":"ExpressionStatement","src":"10184:38:26"}]},"documentation":{"id":11435,"nodeType":"StructuredDocumentation","src":"9423:424:26","text":" @dev This is called by the {Reserve} base class to record the earnings generated by the asset management.\n @param earningsOrLosses Indicates the amount earned since last time earnings where recorded.\n - If positive, accumulates the amount in the surplus.\n - If negative (losses) substracts it from surplus. It never can exceed _maxDeficit and doesn't takes\n   loans to cover asset losses."},"id":11482,"implemented":true,"kind":"function","modifiers":[],"name":"_yieldEarnings","nameLocation":"9859:14:26","nodeType":"FunctionDefinition","overrides":{"id":11439,"nodeType":"OverrideSpecifier","overrides":[],"src":"9908:8:26"},"parameters":{"id":11438,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11437,"mutability":"mutable","name":"earningsOrLosses","nameLocation":"9881:16:26","nodeType":"VariableDeclaration","scope":11482,"src":"9874:23:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11436,"name":"int256","nodeType":"ElementaryTypeName","src":"9874:6:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9873:25:26"},"returnParameters":{"id":11440,"nodeType":"ParameterList","parameters":[],"src":"9917:0:26"},"scope":12847,"src":"9850:377:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[14742],"body":{"id":11498,"nodeType":"Block","src":"10296:65:26","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11492,"name":"_activePurePremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11155,"src":"10324:19:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11491,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10317:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":11490,"name":"int256","nodeType":"ElementaryTypeName","src":"10317:6:26","typeDescriptions":{}}},"id":11493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10317:27:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":11494,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"10347:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"10317:38:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11489,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10309:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11488,"name":"uint256","nodeType":"ElementaryTypeName","src":"10309:7:26","typeDescriptions":{}}},"id":11496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10309:47:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11487,"id":11497,"nodeType":"Return","src":"10302:54:26"}]},"functionSelector":"26ccbd22","id":11499,"implemented":true,"kind":"function","modifiers":[],"name":"purePremiums","nameLocation":"10240:12:26","nodeType":"FunctionDefinition","overrides":{"id":11484,"nodeType":"OverrideSpecifier","overrides":[],"src":"10269:8:26"},"parameters":{"id":11483,"nodeType":"ParameterList","parameters":[],"src":"10252:2:26"},"returnParameters":{"id":11487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11486,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11499,"src":"10287:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11485,"name":"uint256","nodeType":"ElementaryTypeName","src":"10287:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10286:9:26"},"scope":12847,"src":"10231:130:26","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":11507,"nodeType":"Block","src":"10591:37:26","statements":[{"expression":{"id":11505,"name":"_activePurePremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11155,"src":"10604:19:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11504,"id":11506,"nodeType":"Return","src":"10597:26:26"}]},"documentation":{"id":11500,"nodeType":"StructuredDocumentation","src":"10365:161:26","text":" @dev Returns the total amount of pure premiums that were collected by the active policies of the risk modules\n linked to this PremiumsAccount."},"functionSelector":"1a548a27","id":11508,"implemented":true,"kind":"function","modifiers":[],"name":"activePurePremiums","nameLocation":"10538:18:26","nodeType":"FunctionDefinition","parameters":{"id":11501,"nodeType":"ParameterList","parameters":[],"src":"10556:2:26"},"returnParameters":{"id":11504,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11503,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11508,"src":"10582:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11502,"name":"uint256","nodeType":"ElementaryTypeName","src":"10582:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10581:9:26"},"scope":12847,"src":"10529:99:26","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":11524,"nodeType":"Block","src":"10841:55:26","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11516,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11514,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"10854:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":11515,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10866:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10854:13:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":11521,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10890:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":11522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"10854:37:26","trueExpression":{"arguments":[{"id":11519,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"10878:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11518,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10870:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11517,"name":"uint256","nodeType":"ElementaryTypeName","src":"10870:7:26","typeDescriptions":{}}},"id":11520,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10870:17:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11513,"id":11523,"nodeType":"Return","src":"10847:44:26"}]},"documentation":{"id":11509,"nodeType":"StructuredDocumentation","src":"10632:147:26","text":" @dev Returns the surplus between pure premiums collected and payouts of finalized policies. Returns 0 if no surplus\n or deficit."},"functionSelector":"536c9a43","id":11525,"implemented":true,"kind":"function","modifiers":[],"name":"wonPurePremiums","nameLocation":"10791:15:26","nodeType":"FunctionDefinition","parameters":{"id":11510,"nodeType":"ParameterList","parameters":[],"src":"10806:2:26"},"returnParameters":{"id":11513,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11512,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11525,"src":"10832:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11511,"name":"uint256","nodeType":"ElementaryTypeName","src":"10832:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10831:9:26"},"scope":12847,"src":"10782:114:26","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":11542,"nodeType":"Block","src":"11158:56:26","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11533,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11531,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"11171:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":11532,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11183:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11171:13:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":11538,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"11199:9:26","subExpression":{"id":11537,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"11200:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11536,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11191:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11535,"name":"uint256","nodeType":"ElementaryTypeName","src":"11191:7:26","typeDescriptions":{}}},"id":11539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11191:18:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"11171:38:26","trueExpression":{"hexValue":"30","id":11534,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11187:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11530,"id":11541,"nodeType":"Return","src":"11164:45:26"}]},"documentation":{"id":11526,"nodeType":"StructuredDocumentation","src":"10900:195:26","text":" @dev Returns the amount of active pure premiums that was used to cover payouts of finalized policies (in excess of\n collected pure premiums). This is limited by `_maxDeficit()`"},"functionSelector":"e823584a","id":11543,"implemented":true,"kind":"function","modifiers":[],"name":"borrowedActivePP","nameLocation":"11107:16:26","nodeType":"FunctionDefinition","parameters":{"id":11527,"nodeType":"ParameterList","parameters":[],"src":"11123:2:26"},"returnParameters":{"id":11530,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11529,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11543,"src":"11149:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11528,"name":"uint256","nodeType":"ElementaryTypeName","src":"11149:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11148:9:26"},"scope":12847,"src":"11098:116:26","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":11551,"nodeType":"Block","src":"11553:26:26","statements":[{"expression":{"id":11549,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"11566:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":11548,"id":11550,"nodeType":"Return","src":"11559:15:26"}]},"documentation":{"id":11544,"nodeType":"StructuredDocumentation","src":"11218:282:26","text":" @dev Returns the surplus between pure premiums collected and payouts of finalized policies. Losses where more than\n premiums collected, returns a negative number that indicates the amount of the active pure premiums that was used\n to cover finalized premiums."},"functionSelector":"13888565","id":11552,"implemented":true,"kind":"function","modifiers":[],"name":"surplus","nameLocation":"11512:7:26","nodeType":"FunctionDefinition","parameters":{"id":11545,"nodeType":"ParameterList","parameters":[],"src":"11519:2:26"},"returnParameters":{"id":11548,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11547,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11552,"src":"11545:6:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11546,"name":"int256","nodeType":"ElementaryTypeName","src":"11545:6:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"11544:8:26"},"scope":12847,"src":"11503:76:26","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":11568,"nodeType":"Block","src":"11738:180:26","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11560,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"11874:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":11562,"name":"deficitRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11678,"src":"11897:12:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":11563,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11897:14:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11561,"name":"_maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11623,"src":"11885:11:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_int256_$","typeString":"function (uint256) view returns (int256)"}},"id":11564,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11885:27:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11874:38:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11559,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11866:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11558,"name":"uint256","nodeType":"ElementaryTypeName","src":"11866:7:26","typeDescriptions":{}}},"id":11566,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11866:47:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11557,"id":11567,"nodeType":"Return","src":"11859:54:26"}]},"documentation":{"id":11553,"nodeType":"StructuredDocumentation","src":"11583:96:26","text":" @dev Returns the amount of funds available to cover losses or repay eToken loans."},"functionSelector":"4fe0bd1e","id":11569,"implemented":true,"kind":"function","modifiers":[],"name":"fundsAvailable","nameLocation":"11691:14:26","nodeType":"FunctionDefinition","parameters":{"id":11554,"nodeType":"ParameterList","parameters":[],"src":"11705:2:26"},"returnParameters":{"id":11557,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11556,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11569,"src":"11729:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11555,"name":"uint256","nodeType":"ElementaryTypeName","src":"11729:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11728:9:26"},"scope":12847,"src":"11682:236:26","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[14719],"body":{"id":11578,"nodeType":"Block","src":"11984:28:26","statements":[{"expression":{"id":11576,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11152,"src":"11997:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"functionReturnParameters":11575,"id":11577,"nodeType":"Return","src":"11990:17:26"}]},"functionSelector":"7b83037b","id":11579,"implemented":true,"kind":"function","modifiers":[],"name":"seniorEtk","nameLocation":"11931:9:26","nodeType":"FunctionDefinition","overrides":{"id":11571,"nodeType":"OverrideSpecifier","overrides":[],"src":"11957:8:26"},"parameters":{"id":11570,"nodeType":"ParameterList","parameters":[],"src":"11940:2:26"},"returnParameters":{"id":11575,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11574,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11579,"src":"11975:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":11573,"nodeType":"UserDefinedTypeName","pathNode":{"id":11572,"name":"IEToken","nameLocations":["11975:7:26"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"11975:7:26"},"referencedDeclaration":14336,"src":"11975:7:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"11974:9:26"},"scope":12847,"src":"11922:90:26","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[14726],"body":{"id":11588,"nodeType":"Block","src":"12078:28:26","statements":[{"expression":{"id":11586,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"12091:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"functionReturnParameters":11585,"id":11587,"nodeType":"Return","src":"12084:17:26"}]},"functionSelector":"536ebbfc","id":11589,"implemented":true,"kind":"function","modifiers":[],"name":"juniorEtk","nameLocation":"12025:9:26","nodeType":"FunctionDefinition","overrides":{"id":11581,"nodeType":"OverrideSpecifier","overrides":[],"src":"12051:8:26"},"parameters":{"id":11580,"nodeType":"ParameterList","parameters":[],"src":"12034:2:26"},"returnParameters":{"id":11585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11584,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11589,"src":"12069:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":11583,"nodeType":"UserDefinedTypeName","pathNode":{"id":11582,"name":"IEToken","nameLocations":["12069:7:26"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"12069:7:26"},"referencedDeclaration":14336,"src":"12069:7:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"12068:9:26"},"scope":12847,"src":"12016:90:26","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[14736],"body":{"id":11603,"nodeType":"Block","src":"12176:42:26","statements":[{"expression":{"components":[{"id":11599,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"12190:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},{"id":11600,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11152,"src":"12202:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"id":11601,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12189:24:26","typeDescriptions":{"typeIdentifier":"t_tuple$_t_contract$_IEToken_$14336_$_t_contract$_IEToken_$14336_$","typeString":"tuple(contract IEToken,contract IEToken)"}},"functionReturnParameters":11598,"id":11602,"nodeType":"Return","src":"12182:31:26"}]},"functionSelector":"5e445859","id":11604,"implemented":true,"kind":"function","modifiers":[],"name":"etks","nameLocation":"12119:4:26","nodeType":"FunctionDefinition","overrides":{"id":11591,"nodeType":"OverrideSpecifier","overrides":[],"src":"12140:8:26"},"parameters":{"id":11590,"nodeType":"ParameterList","parameters":[],"src":"12123:2:26"},"returnParameters":{"id":11598,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11594,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11604,"src":"12158:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":11593,"nodeType":"UserDefinedTypeName","pathNode":{"id":11592,"name":"IEToken","nameLocations":["12158:7:26"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"12158:7:26"},"referencedDeclaration":14336,"src":"12158:7:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":11597,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11604,"src":"12167:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":11596,"nodeType":"UserDefinedTypeName","pathNode":{"id":11595,"name":"IEToken","nameLocations":["12167:7:26"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"12167:7:26"},"referencedDeclaration":14336,"src":"12167:7:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"12157:18:26"},"scope":12847,"src":"12110:108:26","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":11622,"nodeType":"Block","src":"13179:65:26","statements":[{"expression":{"id":11620,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"13192:47:26","subExpression":{"arguments":[{"arguments":[{"id":11616,"name":"ratio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11607,"src":"13227:5:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11617,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11138,"src":"13234:3:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":11614,"name":"_activePurePremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11155,"src":"13200:19:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11615,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13220:6:26","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34072,"src":"13200:26:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":11618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13200:38:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11613,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13193:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":11612,"name":"int256","nodeType":"ElementaryTypeName","src":"13193:6:26","typeDescriptions":{}}},"id":11619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13193:46:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":11611,"id":11621,"nodeType":"Return","src":"13185:54:26"}]},"documentation":{"id":11605,"nodeType":"StructuredDocumentation","src":"12222:887:26","text":" @dev Returns the maximum deficit that's supported by the PremiumsAccount. If more money is needed, it must take\n loans from the eTokens. The value is calculated as a fraction of the active pure premiums. The fraction is\n regulated by the `deficitRatio` parameter that indicates the percentage of the active pure premiums that can be\n used to cover payouts of finalized policies. In many cases is fine to use the active pure premiums to cover the\n losses because in most cases the policies with payout are triggered long time before the policies without payout.\n But this also can be dangerous because it can be postponing the losses that should impact on liquidity providers.\n @param ratio The ratio used in the calculation of the deficit. It's the deficitRatio parameter (whether the current\n one or the new one when it's being modified)."},"id":11623,"implemented":true,"kind":"function","modifiers":[],"name":"_maxDeficit","nameLocation":"13121:11:26","nodeType":"FunctionDefinition","parameters":{"id":11608,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11607,"mutability":"mutable","name":"ratio","nameLocation":"13141:5:26","nodeType":"VariableDeclaration","scope":11623,"src":"13133:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11606,"name":"uint256","nodeType":"ElementaryTypeName","src":"13133:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13132:15:26"},"returnParameters":{"id":11611,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11610,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11623,"src":"13171:6:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11609,"name":"int256","nodeType":"ElementaryTypeName","src":"13171:6:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"13170:8:26"},"scope":12847,"src":"13112:132:26","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":11642,"nodeType":"Block","src":"13313:99:26","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11632,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11625,"src":"13371:5:26","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":11631,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13363:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11630,"name":"uint256","nodeType":"ElementaryTypeName","src":"13363:7:26","typeDescriptions":{}}},"id":11633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13363:14:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11634,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13380:2:26","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":11635,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11088,"src":"13386:8:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$24925_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":11636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13386:10:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":11637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13397:8:26","memberName":"decimals","nodeType":"MemberAccess","referencedDeclaration":24924,"src":"13386:19:26","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint8_$","typeString":"function () view external returns (uint8)"}},"id":11638,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13386:21:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"13380:27:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13363:44:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11629,"id":11641,"nodeType":"Return","src":"13356:51:26"}]},"id":11643,"implemented":true,"kind":"function","modifiers":[],"name":"_toAmount","nameLocation":"13257:9:26","nodeType":"FunctionDefinition","parameters":{"id":11626,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11625,"mutability":"mutable","name":"value","nameLocation":"13274:5:26","nodeType":"VariableDeclaration","scope":11643,"src":"13267:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11624,"name":"uint32","nodeType":"ElementaryTypeName","src":"13267:6:26","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"13266:14:26"},"returnParameters":{"id":11629,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11628,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11643,"src":"13304:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11627,"name":"uint256","nodeType":"ElementaryTypeName","src":"13304:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13303:9:26"},"scope":12847,"src":"13248:164:26","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":11662,"nodeType":"Block","src":"13488:111:26","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11650,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11645,"src":"13546:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11656,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":11651,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13555:2:26","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":11652,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11088,"src":"13561:8:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$24925_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":11653,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13561:10:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":11654,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13572:8:26","memberName":"decimals","nodeType":"MemberAccess","referencedDeclaration":24924,"src":"13561:19:26","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint8_$","typeString":"function () view external returns (uint8)"}},"id":11655,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13561:21:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"13555:27:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13546:36:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11658,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13545:38:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13584:8:26","memberName":"toUint32","nodeType":"MemberAccess","referencedDeclaration":35998,"src":"13545:47:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint32_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint32)"}},"id":11660,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13545:49:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":11649,"id":11661,"nodeType":"Return","src":"13538:56:26"}]},"id":11663,"implemented":true,"kind":"function","modifiers":[],"name":"_toZeroDecimals","nameLocation":"13425:15:26","nodeType":"FunctionDefinition","parameters":{"id":11646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11645,"mutability":"mutable","name":"amount","nameLocation":"13449:6:26","nodeType":"VariableDeclaration","scope":11663,"src":"13441:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11644,"name":"uint256","nodeType":"ElementaryTypeName","src":"13441:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13440:16:26"},"returnParameters":{"id":11649,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11648,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11663,"src":"13480:6:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11647,"name":"uint32","nodeType":"ElementaryTypeName","src":"13480:6:26","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"13479:8:26"},"scope":12847,"src":"13416:183:26","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":11677,"nodeType":"Block","src":"13786:89:26","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":11671,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11172,"src":"13807:7:26","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":11672,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13815:12:26","memberName":"deficitRatio","nodeType":"MemberAccess","referencedDeclaration":11168,"src":"13807:20:26","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"}],"id":11670,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13799:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11669,"name":"uint256","nodeType":"ElementaryTypeName","src":"13799:7:26","typeDescriptions":{}}},"id":11673,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13799:29:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":11674,"name":"FOUR_DECIMAL_TO_WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11141,"src":"13831:19:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13799:51:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11668,"id":11676,"nodeType":"Return","src":"13792:58:26"}]},"documentation":{"id":11664,"nodeType":"StructuredDocumentation","src":"13603:126:26","text":" @dev Returns the percentage of the active pure premiums that can be used to cover losses of finalized policies."},"functionSelector":"4863c8b0","id":11678,"implemented":true,"kind":"function","modifiers":[],"name":"deficitRatio","nameLocation":"13741:12:26","nodeType":"FunctionDefinition","parameters":{"id":11665,"nodeType":"ParameterList","parameters":[],"src":"13753:2:26"},"returnParameters":{"id":11668,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11667,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11678,"src":"13777:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11666,"name":"uint256","nodeType":"ElementaryTypeName","src":"13777:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13776:9:26"},"scope":12847,"src":"13732:143:26","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":11699,"nodeType":"Block","src":"14038:95:26","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11684,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11172,"src":"14051:7:26","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":11685,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14059:11:26","memberName":"jrLoanLimit","nodeType":"MemberAccess","referencedDeclaration":11164,"src":"14051:19:26","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":11686,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14074:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14051:24:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"expression":{"id":11694,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11172,"src":"14108:7:26","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":11695,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14116:11:26","memberName":"jrLoanLimit","nodeType":"MemberAccess","referencedDeclaration":11164,"src":"14108:19:26","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":11693,"name":"_toAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11643,"src":"14098:9:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint32_$returns$_t_uint256_$","typeString":"function (uint32) view returns (uint256)"}},"id":11696,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14098:30:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"14051:77:26","trueExpression":{"expression":{"arguments":[{"id":11690,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14083:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11689,"name":"uint256","nodeType":"ElementaryTypeName","src":"14083:7:26","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":11688,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14078:4:26","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11691,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14078:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":11692,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14092:3:26","memberName":"max","nodeType":"MemberAccess","src":"14078:17:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11683,"id":11698,"nodeType":"Return","src":"14044:84:26"}]},"documentation":{"id":11679,"nodeType":"StructuredDocumentation","src":"13879:103:26","text":" @dev Returns the limit on the Junior eToken loans (infinite if _params.jrLoanLimit == 0)"},"functionSelector":"2d8f892a","id":11700,"implemented":true,"kind":"function","modifiers":[],"name":"jrLoanLimit","nameLocation":"13994:11:26","nodeType":"FunctionDefinition","parameters":{"id":11680,"nodeType":"ParameterList","parameters":[],"src":"14005:2:26"},"returnParameters":{"id":11683,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11682,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11700,"src":"14029:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11681,"name":"uint256","nodeType":"ElementaryTypeName","src":"14029:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14028:9:26"},"scope":12847,"src":"13985:148:26","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":11721,"nodeType":"Block","src":"14296:95:26","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11706,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11172,"src":"14309:7:26","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":11707,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14317:11:26","memberName":"srLoanLimit","nodeType":"MemberAccess","referencedDeclaration":11166,"src":"14309:19:26","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":11708,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14332:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14309:24:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"expression":{"id":11716,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11172,"src":"14366:7:26","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":11717,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14374:11:26","memberName":"srLoanLimit","nodeType":"MemberAccess","referencedDeclaration":11166,"src":"14366:19:26","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":11715,"name":"_toAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11643,"src":"14356:9:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint32_$returns$_t_uint256_$","typeString":"function (uint32) view returns (uint256)"}},"id":11718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14356:30:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"14309:77:26","trueExpression":{"expression":{"arguments":[{"id":11712,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14341:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11711,"name":"uint256","nodeType":"ElementaryTypeName","src":"14341:7:26","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":11710,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14336:4:26","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11713,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14336:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":11714,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14350:3:26","memberName":"max","nodeType":"MemberAccess","src":"14336:17:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":11705,"id":11720,"nodeType":"Return","src":"14302:84:26"}]},"documentation":{"id":11701,"nodeType":"StructuredDocumentation","src":"14137:103:26","text":" @dev Returns the limit on the Senior eToken loans (infinite if _params.srLoanLimit == 0)"},"functionSelector":"7bb62319","id":11722,"implemented":true,"kind":"function","modifiers":[],"name":"srLoanLimit","nameLocation":"14252:11:26","nodeType":"FunctionDefinition","parameters":{"id":11702,"nodeType":"ParameterList","parameters":[],"src":"14263:2:26"},"returnParameters":{"id":11705,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11704,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11722,"src":"14287:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11703,"name":"uint256","nodeType":"ElementaryTypeName","src":"14287:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14286:9:26"},"scope":12847,"src":"14243:148:26","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":11831,"nodeType":"Block","src":"15378:748:26","statements":[{"assignments":[11731],"declarations":[{"constant":false,"id":11731,"mutability":"mutable","name":"truncatedRatio","nameLocation":"15391:14:26","nodeType":"VariableDeclaration","scope":11831,"src":"15384:21:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":11730,"name":"uint16","nodeType":"ElementaryTypeName","src":"15384:6:26","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"id":11738,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11734,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11732,"name":"newRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11725,"src":"15409:8:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":11733,"name":"FOUR_DECIMAL_TO_WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11141,"src":"15420:19:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15409:30:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11735,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15408:32:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11736,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15441:8:26","memberName":"toUint16","nodeType":"MemberAccess","referencedDeclaration":36054,"src":"15408:41:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint16_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint16)"}},"id":11737,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15408:43:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"VariableDeclarationStatement","src":"15384:67:26"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11751,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11742,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11740,"name":"newRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11725,"src":"15472:8:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":11741,"name":"WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11138,"src":"15484:3:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15472:15:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11750,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11745,"name":"truncatedRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11731,"src":"15499:14:26","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"}],"id":11744,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15491:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11743,"name":"uint256","nodeType":"ElementaryTypeName","src":"15491:7:26","typeDescriptions":{}}},"id":11746,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15491:23:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":11747,"name":"FOUR_DECIMAL_TO_WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11141,"src":"15517:19:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15491:45:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":11749,"name":"newRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11725,"src":"15540:8:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15491:57:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15472:76:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":11753,"name":"newRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11725,"src":"15576:8:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11752,"name":"InvalidDeficitRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11193,"src":"15556:19:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":11754,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15556:29:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":11739,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"15457:7:26","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":11755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15457:134:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11756,"nodeType":"ExpressionStatement","src":"15457:134:26"},{"assignments":[11758],"declarations":[{"constant":false,"id":11758,"mutability":"mutable","name":"maxDeficit","nameLocation":"15605:10:26","nodeType":"VariableDeclaration","scope":11831,"src":"15598:17:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":11757,"name":"int256","nodeType":"ElementaryTypeName","src":"15598:6:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":11762,"initialValue":{"arguments":[{"id":11760,"name":"newRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11725,"src":"15630:8:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11759,"name":"_maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11623,"src":"15618:11:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_int256_$","typeString":"function (uint256) view returns (int256)"}},"id":11761,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15618:21:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"15598:41:26"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11768,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11764,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"15649:11:26","subExpression":{"id":11763,"name":"adjustment","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11727,"src":"15650:10:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11765,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"15664:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":11766,"name":"maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11758,"src":"15675:10:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"15664:21:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15649:36:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11776,"nodeType":"IfStatement","src":"15645:97:26","trueBody":{"errorCall":{"arguments":[{"id":11771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"15719:9:26","subExpression":{"id":11770,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"15720:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":11773,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"15730:11:26","subExpression":{"id":11772,"name":"maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11758,"src":"15731:10:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11769,"name":"DeficitExceedsMaxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11200,"src":"15694:24:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_int256_$_t_int256_$returns$_t_error_$","typeString":"function (int256,int256) pure returns (error)"}},"id":11774,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15694:48:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":11775,"nodeType":"RevertStatement","src":"15687:55:26"}},{"assignments":[11778],"declarations":[{"constant":false,"id":11778,"mutability":"mutable","name":"borrow","nameLocation":"15757:6:26","nodeType":"VariableDeclaration","scope":11831,"src":"15749:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11777,"name":"uint256","nodeType":"ElementaryTypeName","src":"15749:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11779,"nodeType":"VariableDeclarationStatement","src":"15749:14:26"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11780,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"15773:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":11781,"name":"maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11758,"src":"15784:10:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"15773:21:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11815,"nodeType":"IfStatement","src":"15769:218:26","trueBody":{"id":11814,"nodeType":"Block","src":"15796:191:26","statements":[{"expression":{"id":11791,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11783,"name":"borrow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11778,"src":"15831:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":11789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"15848:9:26","subExpression":{"id":11786,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"15849:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":11788,"name":"maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11758,"src":"15860:10:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"15848:22:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":11785,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15840:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11784,"name":"uint256","nodeType":"ElementaryTypeName","src":"15840:7:26","typeDescriptions":{}}},"id":11790,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15840:31:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15831:40:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11792,"nodeType":"ExpressionStatement","src":"15831:40:26"},{"expression":{"id":11795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11793,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"15879:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":11794,"name":"maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11758,"src":"15890:10:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"15879:21:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":11796,"nodeType":"ExpressionStatement","src":"15879:21:26"},{"expression":{"arguments":[{"id":11798,"name":"borrow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11778,"src":"15923:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":11801,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"15939:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_PremiumsAccount_$12847","typeString":"contract PremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PremiumsAccount_$12847","typeString":"contract PremiumsAccount"}],"id":11800,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15931:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11799,"name":"address","nodeType":"ElementaryTypeName","src":"15931:7:26","typeDescriptions":{}}},"id":11802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15931:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":11811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11805,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"15954:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":11804,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15946:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11803,"name":"address","nodeType":"ElementaryTypeName","src":"15946:7:26","typeDescriptions":{}}},"id":11806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15946:19:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":11809,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15977:1:26","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":11808,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15969:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11807,"name":"address","nodeType":"ElementaryTypeName","src":"15969:7:26","typeDescriptions":{}}},"id":11810,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15969:10:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"15946:33:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":11797,"name":"_borrowFromEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12020,"src":"15908:14:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_bool_$returns$__$","typeString":"function (uint256,address,bool)"}},"id":11812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15908:72:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11813,"nodeType":"ExpressionStatement","src":"15908:72:26"}]}},{"eventCall":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11817,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11172,"src":"16017:7:26","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":11818,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16025:12:26","memberName":"deficitRatio","nodeType":"MemberAccess","referencedDeclaration":11168,"src":"16017:20:26","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":11819,"name":"FOUR_DECIMAL_TO_WAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11141,"src":"16040:19:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16017:42:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11821,"name":"newRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11725,"src":"16061:8:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11822,"name":"borrow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11778,"src":"16071:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11816,"name":"DeficitRatioChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11238,"src":"15997:19:26","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256)"}},"id":11823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15997:81:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11824,"nodeType":"EmitStatement","src":"15992:86:26"},{"expression":{"id":11829,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":11825,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11172,"src":"16084:7:26","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":11827,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16092:12:26","memberName":"deficitRatio","nodeType":"MemberAccess","referencedDeclaration":11168,"src":"16084:20:26","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":11828,"name":"truncatedRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11731,"src":"16107:14:26","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"16084:37:26","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"id":11830,"nodeType":"ExpressionStatement","src":"16084:37:26"}]},"documentation":{"id":11723,"nodeType":"StructuredDocumentation","src":"14395:911:26","text":" @notice Changes the `deficitRatio` parameter.\n @param newRatio New deficit ratio (wad). Must be `<= WAD` and exactly representable with 4 decimals\n                 (multiple of `FOUR_DECIMAL_TO_WAD`).\n @param adjustment If true, allows borrowing from eTokens to satisfy the new max-deficit bound when needed.\n @custom:pre `newRatio <= WAD`\n @custom:pre `newRatio` must be exactly representable with 4 decimals:\n             `uint256(uint16(newRatio / FOUR_DECIMAL_TO_WAD)) * FOUR_DECIMAL_TO_WAD == newRatio`\n @custom:pre If `adjustment == false`, then `_surplus >= _maxDeficit(newRatio)`\n @custom:throws {InvalidDeficitRatio} if `newRatio` is out of range or not representable with 4 decimals\n @custom:throws {DeficitExceedsMaxDeficit} if `adjustment == false` and `_surplus < _maxDeficit(newRatio)`\n @custom:emits {DeficitRatioChanged}"},"functionSelector":"50093f04","id":11832,"implemented":true,"kind":"function","modifiers":[],"name":"setDeficitRatio","nameLocation":"15318:15:26","nodeType":"FunctionDefinition","parameters":{"id":11728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11725,"mutability":"mutable","name":"newRatio","nameLocation":"15342:8:26","nodeType":"VariableDeclaration","scope":11832,"src":"15334:16:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11724,"name":"uint256","nodeType":"ElementaryTypeName","src":"15334:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11727,"mutability":"mutable","name":"adjustment","nameLocation":"15357:10:26","nodeType":"VariableDeclaration","scope":11832,"src":"15352:15:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11726,"name":"bool","nodeType":"ElementaryTypeName","src":"15352:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"15333:35:26"},"returnParameters":{"id":11729,"nodeType":"ParameterList","parameters":[],"src":"15378:0:26"},"scope":12847,"src":"15309:817:26","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":11912,"nodeType":"Block","src":"17086:524:26","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11846,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11840,"name":"newLimitJr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11835,"src":"17096:10:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":11843,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17115:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11842,"name":"uint256","nodeType":"ElementaryTypeName","src":"17115:7:26","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":11841,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17110:4:26","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11844,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17110:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":11845,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17124:3:26","memberName":"max","nodeType":"MemberAccess","src":"17110:17:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17096:31:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11875,"nodeType":"IfStatement","src":"17092:255:26","trueBody":{"id":11874,"nodeType":"Block","src":"17129:218:26","statements":[{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":11848,"name":"jrLoanLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11700,"src":"17159:11:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":11849,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17159:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11850,"name":"newLimitJr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11835,"src":"17174:10:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":11851,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17186:5:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":11847,"name":"LoanLimitChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11247,"src":"17142:16:26","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (uint256,uint256,bool)"}},"id":11852,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17142:50:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11853,"nodeType":"EmitStatement","src":"17137:55:26"},{"expression":{"id":11860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":11854,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11172,"src":"17200:7:26","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":11856,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"17208:11:26","memberName":"jrLoanLimit","nodeType":"MemberAccess","referencedDeclaration":11164,"src":"17200:19:26","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11858,"name":"newLimitJr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11835,"src":"17238:10:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11857,"name":"_toZeroDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11663,"src":"17222:15:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint256) view returns (uint32)"}},"id":11859,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17222:27:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"17200:49:26","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11861,"nodeType":"ExpressionStatement","src":"17200:49:26"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11868,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":11864,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11172,"src":"17275:7:26","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":11865,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17283:11:26","memberName":"jrLoanLimit","nodeType":"MemberAccess","referencedDeclaration":11164,"src":"17275:19:26","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":11863,"name":"_toAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11643,"src":"17265:9:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint32_$returns$_t_uint256_$","typeString":"function (uint32) view returns (uint256)"}},"id":11866,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17265:30:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":11867,"name":"newLimitJr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11835,"src":"17299:10:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17265:44:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":11870,"name":"newLimitJr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11835,"src":"17328:10:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11869,"name":"InvalidLoanLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11210,"src":"17311:16:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":11871,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17311:28:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":11862,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"17257:7:26","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":11872,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17257:83:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11873,"nodeType":"ExpressionStatement","src":"17257:83:26"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11876,"name":"newLimitSr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11837,"src":"17356:10:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":11879,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17375:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":11878,"name":"uint256","nodeType":"ElementaryTypeName","src":"17375:7:26","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":11877,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17370:4:26","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":11880,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17370:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":11881,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17384:3:26","memberName":"max","nodeType":"MemberAccess","src":"17370:17:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17356:31:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11911,"nodeType":"IfStatement","src":"17352:254:26","trueBody":{"id":11910,"nodeType":"Block","src":"17389:217:26","statements":[{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":11884,"name":"srLoanLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11722,"src":"17419:11:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":11885,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17419:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11886,"name":"newLimitSr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11837,"src":"17434:10:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":11887,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17446:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":11883,"name":"LoanLimitChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11247,"src":"17402:16:26","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (uint256,uint256,bool)"}},"id":11888,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17402:49:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11889,"nodeType":"EmitStatement","src":"17397:54:26"},{"expression":{"id":11896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":11890,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11172,"src":"17459:7:26","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":11892,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"17467:11:26","memberName":"srLoanLimit","nodeType":"MemberAccess","referencedDeclaration":11166,"src":"17459:19:26","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11894,"name":"newLimitSr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11837,"src":"17497:10:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11893,"name":"_toZeroDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11663,"src":"17481:15:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint256) view returns (uint32)"}},"id":11895,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17481:27:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"17459:49:26","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11897,"nodeType":"ExpressionStatement","src":"17459:49:26"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11904,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":11900,"name":"_params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11172,"src":"17534:7:26","typeDescriptions":{"typeIdentifier":"t_struct$_PackedParams_$11169_storage","typeString":"struct PremiumsAccount.PackedParams storage ref"}},"id":11901,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17542:11:26","memberName":"srLoanLimit","nodeType":"MemberAccess","referencedDeclaration":11166,"src":"17534:19:26","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":11899,"name":"_toAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11643,"src":"17524:9:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint32_$returns$_t_uint256_$","typeString":"function (uint32) view returns (uint256)"}},"id":11902,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17524:30:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":11903,"name":"newLimitSr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11837,"src":"17558:10:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17524:44:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":11906,"name":"newLimitSr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11837,"src":"17587:10:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11905,"name":"InvalidLoanLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11210,"src":"17570:16:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":11907,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17570:28:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":11898,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"17516:7:26","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":11908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17516:83:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11909,"nodeType":"ExpressionStatement","src":"17516:83:26"}]}}]},"documentation":{"id":11833,"nodeType":"StructuredDocumentation","src":"16130:881:26","text":" @notice Changes the `jrLoanLimit` or `srLoanLimit` parameter.\n @param newLimitJr The new limit to be set for the loans taken from the Junior eToken.\n                   If newLimitJr == MAX_UINT, it's ignored. If == 0, means the loans are unbounded.\n @param newLimitSr The new limit to be set for the loans taken from the Senior eToken.\n                   If newLimitSr == MAX_UINT, it's ignored. If == 0, means the loans are unbounded.\n @custom:pre For each limit `newLimit` that is updated (`newLimit != type(uint256).max`), it must be representable with 0 decimals:\n             `_toAmount(_toZeroDecimals(newLimit)) == newLimit`\n @custom:throws {InvalidLoanLimit} if any provided limit cannot be packed/unpacked without losing precision\n @custom:emits {LoanLimitChanged} once per updated limit (up to two emits)"},"functionSelector":"97a146c0","id":11913,"implemented":true,"kind":"function","modifiers":[],"name":"setLoanLimits","nameLocation":"17023:13:26","nodeType":"FunctionDefinition","parameters":{"id":11838,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11835,"mutability":"mutable","name":"newLimitJr","nameLocation":"17045:10:26","nodeType":"VariableDeclaration","scope":11913,"src":"17037:18:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11834,"name":"uint256","nodeType":"ElementaryTypeName","src":"17037:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11837,"mutability":"mutable","name":"newLimitSr","nameLocation":"17065:10:26","nodeType":"VariableDeclaration","scope":11913,"src":"17057:18:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11836,"name":"uint256","nodeType":"ElementaryTypeName","src":"17057:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17036:40:26"},"returnParameters":{"id":11839,"nodeType":"ParameterList","parameters":[],"src":"17086:0:26"},"scope":12847,"src":"17014:596:26","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":12019,"nodeType":"Block","src":"18148:813:26","statements":[{"assignments":[11924],"declarations":[{"constant":false,"id":11924,"mutability":"mutable","name":"left","nameLocation":"18162:4:26","nodeType":"VariableDeclaration","scope":12019,"src":"18154:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11923,"name":"uint256","nodeType":"ElementaryTypeName","src":"18154:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11926,"initialValue":{"id":11925,"name":"borrow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11916,"src":"18169:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18154:21:26"},{"condition":{"id":11927,"name":"jrEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11920,"src":"18185:5:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11982,"nodeType":"IfStatement","src":"18181:401:26","trueBody":{"id":11981,"nodeType":"Block","src":"18192:390:26","statements":[{"assignments":[11929],"declarations":[{"constant":false,"id":11929,"mutability":"mutable","name":"jrLoan","nameLocation":"18208:6:26","nodeType":"VariableDeclaration","scope":11981,"src":"18200:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11928,"name":"uint256","nodeType":"ElementaryTypeName","src":"18200:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11937,"initialValue":{"arguments":[{"arguments":[{"id":11934,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"18244:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_PremiumsAccount_$12847","typeString":"contract PremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PremiumsAccount_$12847","typeString":"contract PremiumsAccount"}],"id":11933,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18236:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11932,"name":"address","nodeType":"ElementaryTypeName","src":"18236:7:26","typeDescriptions":{}}},"id":11935,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18236:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":11930,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"18217:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":11931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18228:7:26","memberName":"getLoan","nodeType":"MemberAccess","referencedDeclaration":14303,"src":"18217:18:26","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":11936,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18217:33:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18200:50:26"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11940,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11938,"name":"jrLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11929,"src":"18262:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":11939,"name":"borrow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11916,"src":"18271:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18262:15:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":11941,"name":"jrLoanLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11700,"src":"18281:11:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":11942,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18281:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18262:32:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11956,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11953,"name":"jrLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11929,"src":"18373:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":11954,"name":"jrLoanLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11700,"src":"18382:11:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":11955,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18382:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18373:22:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11979,"nodeType":"IfStatement","src":"18369:207:26","trueBody":{"id":11978,"nodeType":"Block","src":"18397:179:26","statements":[{"assignments":[11958],"declarations":[{"constant":false,"id":11958,"mutability":"mutable","name":"loanExcess","nameLocation":"18439:10:26","nodeType":"VariableDeclaration","scope":11978,"src":"18431:18:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11957,"name":"uint256","nodeType":"ElementaryTypeName","src":"18431:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11965,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11959,"name":"jrLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11929,"src":"18452:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":11960,"name":"borrow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11916,"src":"18461:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18452:15:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":11962,"name":"jrLoanLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11700,"src":"18470:11:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":11963,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18470:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18452:31:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18431:52:26"},{"expression":{"id":11976,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11966,"name":"left","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11924,"src":"18493:4:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11967,"name":"loanExcess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11958,"src":"18500:10:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11970,"name":"borrow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11916,"src":"18537:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":11971,"name":"loanExcess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11958,"src":"18546:10:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18537:19:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11973,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11918,"src":"18558:8:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":11968,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"18513:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":11969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18524:12:26","memberName":"internalLoan","nodeType":"MemberAccess","referencedDeclaration":14287,"src":"18513:23:26","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address) external returns (uint256)"}},"id":11974,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18513:54:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18500:67:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18493:74:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11977,"nodeType":"ExpressionStatement","src":"18493:74:26"}]}},"id":11980,"nodeType":"IfStatement","src":"18258:318:26","trueBody":{"id":11952,"nodeType":"Block","src":"18296:67:26","statements":[{"expression":{"id":11950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11944,"name":"left","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11924,"src":"18306:4:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11947,"name":"borrow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11916,"src":"18337:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11948,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11918,"src":"18345:8:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":11945,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"18313:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":11946,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18324:12:26","memberName":"internalLoan","nodeType":"MemberAccess","referencedDeclaration":14287,"src":"18313:23:26","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address) external returns (uint256)"}},"id":11949,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18313:41:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18306:48:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11951,"nodeType":"ExpressionStatement","src":"18306:48:26"}]}}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11985,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11983,"name":"left","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11924,"src":"18591:4:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":11984,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18599:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18591:9:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12018,"nodeType":"IfStatement","src":"18587:370:26","trueBody":{"id":12017,"nodeType":"Block","src":"18602:355:26","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11997,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11994,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":11990,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"18738:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_PremiumsAccount_$12847","typeString":"contract PremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PremiumsAccount_$12847","typeString":"contract PremiumsAccount"}],"id":11989,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18730:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":11988,"name":"address","nodeType":"ElementaryTypeName","src":"18730:7:26","typeDescriptions":{}}},"id":11991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18730:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":11986,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11152,"src":"18711:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":11987,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18722:7:26","memberName":"getLoan","nodeType":"MemberAccess","referencedDeclaration":14303,"src":"18711:18:26","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":11992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18711:33:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":11993,"name":"left","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11924,"src":"18747:4:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18711:40:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":11995,"name":"srLoanLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11722,"src":"18755:11:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":11996,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18755:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18711:57:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12007,"nodeType":"IfStatement","src":"18707:128:26","trueBody":{"id":12006,"nodeType":"Block","src":"18770:65:26","statements":[{"expression":{"id":12004,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11998,"name":"left","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11924,"src":"18780:4:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12001,"name":"left","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11924,"src":"18811:4:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12002,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11918,"src":"18817:8:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":11999,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11152,"src":"18787:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":12000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18798:12:26","memberName":"internalLoan","nodeType":"MemberAccess","referencedDeclaration":14287,"src":"18787:23:26","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address) external returns (uint256)"}},"id":12003,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18787:39:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18780:46:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12005,"nodeType":"ExpressionStatement","src":"18780:46:26"}]}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12011,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12009,"name":"left","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11924,"src":"18916:4:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12010,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18924:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18916:9:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":12013,"name":"left","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11924,"src":"18944:4:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12012,"name":"CannotBeBorrowed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11205,"src":"18927:16:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":12014,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18927:22:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":12008,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"18908:7:26","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":12015,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18908:42:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12016,"nodeType":"ExpressionStatement","src":"18908:42:26"}]}}]},"documentation":{"id":11914,"nodeType":"StructuredDocumentation","src":"17614:452:26","text":" @dev Internal function called when money in the PremiumsAccount is not enough and we need to borrow from the\n eTokens.\n @param borrow The amount to borrow.\n @param receiver The address that will receive the money of the loan. Usually is the policy holder if this is called\n                 in the context of a policy payout.\n @param jrEtk If true it indicates that the loan is asked first from the junior eToken."},"id":12020,"implemented":true,"kind":"function","modifiers":[],"name":"_borrowFromEtk","nameLocation":"18078:14:26","nodeType":"FunctionDefinition","parameters":{"id":11921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11916,"mutability":"mutable","name":"borrow","nameLocation":"18101:6:26","nodeType":"VariableDeclaration","scope":12020,"src":"18093:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11915,"name":"uint256","nodeType":"ElementaryTypeName","src":"18093:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11918,"mutability":"mutable","name":"receiver","nameLocation":"18117:8:26","nodeType":"VariableDeclaration","scope":12020,"src":"18109:16:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11917,"name":"address","nodeType":"ElementaryTypeName","src":"18109:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11920,"mutability":"mutable","name":"jrEtk","nameLocation":"18132:5:26","nodeType":"VariableDeclaration","scope":12020,"src":"18127:10:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11919,"name":"bool","nodeType":"ElementaryTypeName","src":"18127:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"18092:46:26"},"returnParameters":{"id":11922,"nodeType":"ParameterList","parameters":[],"src":"18148:0:26"},"scope":12847,"src":"18069:892:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12064,"nodeType":"Block","src":"19366:260:26","statements":[{"assignments":[12029],"declarations":[{"constant":false,"id":12029,"mutability":"mutable","name":"newSurplus","nameLocation":"19379:10:26","nodeType":"VariableDeclaration","scope":12064,"src":"19372:17:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12028,"name":"int256","nodeType":"ElementaryTypeName","src":"19372:6:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":12033,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12032,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12030,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"19392:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12031,"name":"toPay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12023,"src":"19403:5:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19392:16:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"19372:36:26"},{"assignments":[12035],"declarations":[{"constant":false,"id":12035,"mutability":"mutable","name":"maxDeficit","nameLocation":"19421:10:26","nodeType":"VariableDeclaration","scope":12064,"src":"19414:17:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12034,"name":"int256","nodeType":"ElementaryTypeName","src":"19414:6:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":12040,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":12037,"name":"deficitRatio","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11678,"src":"19446:12:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":12038,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19446:14:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12036,"name":"_maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11623,"src":"19434:11:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_int256_$","typeString":"function (uint256) view returns (int256)"}},"id":12039,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19434:27:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"19414:47:26"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12041,"name":"newSurplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12029,"src":"19471:10:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":12042,"name":"maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12035,"src":"19485:10:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19471:24:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12051,"nodeType":"IfStatement","src":"19467:82:26","trueBody":{"id":12050,"nodeType":"Block","src":"19497:52:26","statements":[{"expression":{"id":12046,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12044,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"19505:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":12045,"name":"newSurplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12029,"src":"19516:10:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19505:21:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":12047,"nodeType":"ExpressionStatement","src":"19505:21:26"},{"expression":{"hexValue":"30","id":12048,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19541:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":12027,"id":12049,"nodeType":"Return","src":"19534:8:26"}]}},{"expression":{"id":12054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12052,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"19554:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":12053,"name":"maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12035,"src":"19565:10:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19554:21:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":12055,"nodeType":"ExpressionStatement","src":"19554:21:26"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"19596:11:26","subExpression":{"id":12058,"name":"newSurplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12029,"src":"19597:10:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":12060,"name":"maxDeficit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12035,"src":"19610:10:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19596:24:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12057,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19588:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":12056,"name":"uint256","nodeType":"ElementaryTypeName","src":"19588:7:26","typeDescriptions":{}}},"id":12062,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19588:33:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12027,"id":12063,"nodeType":"Return","src":"19581:40:26"}]},"documentation":{"id":12021,"nodeType":"StructuredDocumentation","src":"18965:331:26","text":" @dev Updates the `_surplus` field with the payment made. Since the _surplus can never exceed `_maxDeficit()`,\n returns the remaining amount in case something can't be paid from the PremiumsAccount.\n @param toPay The amount to pay.\n @return The amount that couldn't be paid from the premiums account."},"id":12065,"implemented":true,"kind":"function","modifiers":[],"name":"_payFromPremiums","nameLocation":"19308:16:26","nodeType":"FunctionDefinition","parameters":{"id":12024,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12023,"mutability":"mutable","name":"toPay","nameLocation":"19332:5:26","nodeType":"VariableDeclaration","scope":12065,"src":"19325:12:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12022,"name":"int256","nodeType":"ElementaryTypeName","src":"19325:6:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19324:14:26"},"returnParameters":{"id":12027,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12026,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12065,"src":"19357:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12025,"name":"uint256","nodeType":"ElementaryTypeName","src":"19357:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19356:9:26"},"scope":12847,"src":"19299:327:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12078,"nodeType":"Block","src":"19908:45:26","statements":[{"expression":{"id":12076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12071,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"19914:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"id":12074,"name":"purePremiumWon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12068,"src":"19933:14:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12073,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19926:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12072,"name":"int256","nodeType":"ElementaryTypeName","src":"19926:6:26","typeDescriptions":{}}},"id":12075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19926:22:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19914:34:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":12077,"nodeType":"ExpressionStatement","src":"19914:34:26"}]},"documentation":{"id":12066,"nodeType":"StructuredDocumentation","src":"19630:212:26","text":" @dev Stores an earned pure premium. Adds to the surplus, increasing the surplus if it was positive or reducing the\n deficit if it was negative.\n @param purePremiumWon The amount earned"},"id":12079,"implemented":true,"kind":"function","modifiers":[],"name":"_storePurePremiumWon","nameLocation":"19854:20:26","nodeType":"FunctionDefinition","parameters":{"id":12069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12068,"mutability":"mutable","name":"purePremiumWon","nameLocation":"19883:14:26","nodeType":"VariableDeclaration","scope":12079,"src":"19875:22:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12067,"name":"uint256","nodeType":"ElementaryTypeName","src":"19875:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19874:24:26"},"returnParameters":{"id":12070,"nodeType":"ParameterList","parameters":[],"src":"19908:0:26"},"scope":12847,"src":"19845:108:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12106,"nodeType":"Block","src":"20427:148:26","statements":[{"expression":{"arguments":[{"id":12086,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12082,"src":"20454:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12085,"name":"_storePurePremiumWon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12079,"src":"20433:20:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":12087,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20433:28:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12088,"nodeType":"ExpressionStatement","src":"20433:28:26"},{"expression":{"arguments":[{"expression":{"id":12092,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"20495:3:26","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":12093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20499:6:26","memberName":"sender","nodeType":"MemberAccess","src":"20495:10:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":12096,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"20515:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_PremiumsAccount_$12847","typeString":"contract PremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PremiumsAccount_$12847","typeString":"contract PremiumsAccount"}],"id":12095,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"20507:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12094,"name":"address","nodeType":"ElementaryTypeName","src":"20507:7:26","typeDescriptions":{}}},"id":12097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20507:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12098,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12082,"src":"20522:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":12089,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11088,"src":"20467:8:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$24925_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":12090,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20467:10:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":12091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20478:16:26","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":25041,"src":"20467:27:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$24193_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":12099,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20467:62:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12100,"nodeType":"ExpressionStatement","src":"20467:62:26"},{"eventCall":{"arguments":[{"hexValue":"74727565","id":12102,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"20557:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":12103,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12082,"src":"20563:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12101,"name":"WonPremiumsInOut","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11229,"src":"20540:16:26","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bool_$_t_uint256_$returns$__$","typeString":"function (bool,uint256)"}},"id":12104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20540:30:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12105,"nodeType":"EmitStatement","src":"20535:35:26"}]},"documentation":{"id":12080,"nodeType":"StructuredDocumentation","src":"19957:420:26","text":" @notice Endpoint to receive \"free money\" and inject that money into the premium pool.\n @dev Can be used for example if the PolicyPool subscribes an excess loss policy with other company.\n @param amount The amount to be transferred.\n @custom:pre `msg.sender` approved `currency()` to this contract for at least `amount`\n @custom:emits {WonPremiumsInOut} with `moneyIn = true`"},"functionSelector":"81ced71f","id":12107,"implemented":true,"kind":"function","modifiers":[],"name":"receiveGrant","nameLocation":"20389:12:26","nodeType":"FunctionDefinition","parameters":{"id":12083,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12082,"mutability":"mutable","name":"amount","nameLocation":"20410:6:26","nodeType":"VariableDeclaration","scope":12107,"src":"20402:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12081,"name":"uint256","nodeType":"ElementaryTypeName","src":"20402:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20401:16:26"},"returnParameters":{"id":12084,"nodeType":"ParameterList","parameters":[],"src":"20427:0:26"},"scope":12847,"src":"20380:195:26","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":12198,"nodeType":"Block","src":"21714:484:26","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":12123,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12118,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12112,"src":"21728:11:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":12121,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21751:1:26","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":12120,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21743:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12119,"name":"address","nodeType":"ElementaryTypeName","src":"21743:7:26","typeDescriptions":{}}},"id":12122,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21743:10:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21728:25:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":12125,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12112,"src":"21774:11:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":12124,"name":"InvalidDestination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11215,"src":"21755:18:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":12126,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21755:31:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":12117,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"21720:7:26","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":12127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21720:67:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12128,"nodeType":"ExpressionStatement","src":"21720:67:26"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":12138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":12131,"name":"yieldVault","nodeType":"Identifier","overloadedDeclarations":[11419],"referencedDeclaration":11419,"src":"21805:10:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC4626_$22463_$","typeString":"function () view returns (contract IERC4626)"}},"id":12132,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21805:12:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":12130,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21797:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12129,"name":"address","nodeType":"ElementaryTypeName","src":"21797:7:26","typeDescriptions":{}}},"id":12133,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21797:21:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":12136,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21830:1:26","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":12135,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21822:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12134,"name":"address","nodeType":"ElementaryTypeName","src":"21822:7:26","typeDescriptions":{}}},"id":12137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21822:10:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21797:35:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12142,"nodeType":"IfStatement","src":"21793:57:26","trueBody":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":12139,"name":"recordEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13494,"src":"21834:14:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":12140,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21834:16:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12141,"nodeType":"ExpressionStatement","src":"21834:16:26"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12143,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12110,"src":"21860:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":12146,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21875:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":12145,"name":"uint256","nodeType":"ElementaryTypeName","src":"21875:7:26","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":12144,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"21870:4:26","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":12147,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21870:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":12148,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21884:3:26","memberName":"max","nodeType":"MemberAccess","src":"21870:17:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21860:27:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":12177,"nodeType":"Block","src":"21971:92:26","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":12167,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12110,"src":"21994:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12166,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21987:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12165,"name":"int256","nodeType":"ElementaryTypeName","src":"21987:6:26","typeDescriptions":{}}},"id":12168,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21987:14:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":12169,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"22005:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21987:26:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":12172,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12110,"src":"22038:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12173,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"22046:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12171,"name":"WithdrawExceedsSurplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11222,"src":"22015:22:26","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_int256_$returns$_t_error_$","typeString":"function (uint256,int256) pure returns (error)"}},"id":12174,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22015:40:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":12164,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"21979:7:26","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":12175,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21979:77:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12176,"nodeType":"ExpressionStatement","src":"21979:77:26"}]},"id":12178,"nodeType":"IfStatement","src":"21856:207:26","trueBody":{"id":12163,"nodeType":"Block","src":"21889:76:26","statements":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12150,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"21901:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"30","id":12151,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21913:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"21901:13:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12155,"nodeType":"IfStatement","src":"21897:27:26","trueBody":{"expression":{"hexValue":"30","id":12153,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21923:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":12116,"id":12154,"nodeType":"Return","src":"21916:8:26"}},{"expression":{"id":12161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12156,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12110,"src":"21932:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12159,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"21949:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12158,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21941:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":12157,"name":"uint256","nodeType":"ElementaryTypeName","src":"21941:7:26","typeDescriptions":{}}},"id":12160,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21941:17:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21932:26:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12162,"nodeType":"ExpressionStatement","src":"21932:26:26"}]}},{"expression":{"id":12184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12179,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"22068:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"arguments":[{"id":12182,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12110,"src":"22087:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12181,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22080:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12180,"name":"int256","nodeType":"ElementaryTypeName","src":"22080:6:26","typeDescriptions":{}}},"id":12183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22080:14:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22068:26:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":12185,"nodeType":"ExpressionStatement","src":"22068:26:26"},{"expression":{"arguments":[{"id":12187,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12112,"src":"22112:11:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12188,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12110,"src":"22125:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12186,"name":"_transferTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13003,"src":"22100:11:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":12189,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22100:32:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12190,"nodeType":"ExpressionStatement","src":"22100:32:26"},{"eventCall":{"arguments":[{"hexValue":"66616c7365","id":12192,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"22160:5:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"id":12193,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12110,"src":"22167:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12191,"name":"WonPremiumsInOut","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11229,"src":"22143:16:26","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bool_$_t_uint256_$returns$__$","typeString":"function (bool,uint256)"}},"id":12194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22143:31:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12195,"nodeType":"EmitStatement","src":"22138:36:26"},{"expression":{"id":12196,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12110,"src":"22187:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12116,"id":12197,"nodeType":"Return","src":"22180:13:26"}]},"documentation":{"id":12108,"nodeType":"StructuredDocumentation","src":"20579:1039:26","text":" @notice Withdraws excess premiums (surplus) to the destination.\n @dev This might be needed in some cases for example if we are deprecating the protocol or the excess premiums\n are needed to compensate something. Or to extract profits accrued either by Ensuro or the partners.\n @param amount The amount to withdraw. If amount == type(uint256).max it withdraws as much as possible and doesn't\n               fails. If amount != type(uint256).max it tries to withdraw that amount or it fails\n @param destination The address that will receive the transferred funds.\n @return Returns the actual amount withdrawn.\n @custom:pre `destination != address(0)`\n @custom:pre If `amount != type(uint256).max`, then `int256(amount) <= _surplus`\n @custom:throws {InvalidDestination} if `destination == address(0)`\n @custom:throws {WithdrawExceedsSurplus} if `amount != type(uint256).max` and `int256(amount) > _surplus`\n @custom:emits {WonPremiumsInOut} with `moneyIn = false`"},"functionSelector":"a0ce58b8","id":12199,"implemented":true,"kind":"function","modifiers":[],"name":"withdrawWonPremiums","nameLocation":"21630:19:26","nodeType":"FunctionDefinition","parameters":{"id":12113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12110,"mutability":"mutable","name":"amount","nameLocation":"21658:6:26","nodeType":"VariableDeclaration","scope":12199,"src":"21650:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12109,"name":"uint256","nodeType":"ElementaryTypeName","src":"21650:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12112,"mutability":"mutable","name":"destination","nameLocation":"21674:11:26","nodeType":"VariableDeclaration","scope":12199,"src":"21666:19:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12111,"name":"address","nodeType":"ElementaryTypeName","src":"21666:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"21649:37:26"},"returnParameters":{"id":12116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12115,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12199,"src":"21705:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12114,"name":"uint256","nodeType":"ElementaryTypeName","src":"21705:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21704:9:26"},"scope":12847,"src":"21621:577:26","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14669],"body":{"id":12248,"nodeType":"Block","src":"22328:244:26","statements":[{"expression":{"id":12212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12209,"name":"_activePurePremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11155,"src":"22334:19:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"expression":{"id":12210,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12203,"src":"22357:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22364:11:26","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7731,"src":"22357:18:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22334:41:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12213,"nodeType":"ExpressionStatement","src":"22334:41:26"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12217,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12214,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12203,"src":"22385:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22392:5:26","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7725,"src":"22385:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":12216,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22400:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"22385:16:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12230,"nodeType":"IfStatement","src":"22381:90:26","trueBody":{"expression":{"arguments":[{"expression":{"id":12221,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12203,"src":"22422:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12222,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22429:2:26","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"22422:9:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":12223,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12203,"src":"22433:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22440:5:26","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7725,"src":"22433:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12225,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12203,"src":"22447:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12226,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22454:14:26","memberName":"jrInterestRate","nodeType":"MemberAccess","referencedDeclaration":8124,"src":"22447:21:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":12227,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22447:23:26","tryCall":false,"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":12218,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"22403:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":12220,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22414:7:26","memberName":"lockScr","nodeType":"MemberAccess","referencedDeclaration":14207,"src":"22403:18:26","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) external"}},"id":12228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22403:68:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12229,"nodeType":"ExpressionStatement","src":"22403:68:26"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12231,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12203,"src":"22481:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22488:5:26","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7727,"src":"22481:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":12233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22496:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"22481:16:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12247,"nodeType":"IfStatement","src":"22477:90:26","trueBody":{"expression":{"arguments":[{"expression":{"id":12238,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12203,"src":"22518:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22525:2:26","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"22518:9:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":12240,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12203,"src":"22529:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22536:5:26","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7727,"src":"22529:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12242,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12203,"src":"22543:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22550:14:26","memberName":"srInterestRate","nodeType":"MemberAccess","referencedDeclaration":8174,"src":"22543:21:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":12244,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22543:23:26","tryCall":false,"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":12235,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11152,"src":"22499:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":12237,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22510:7:26","memberName":"lockScr","nodeType":"MemberAccess","referencedDeclaration":14207,"src":"22499:18:26","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) external"}},"id":12245,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22499:68:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12246,"nodeType":"ExpressionStatement","src":"22499:68:26"}}]},"documentation":{"id":12200,"nodeType":"StructuredDocumentation","src":"22202:32:26","text":"@inheritdoc IPremiumsAccount"},"functionSelector":"f79ac183","id":12249,"implemented":true,"kind":"function","modifiers":[{"id":12207,"kind":"modifierInvocation","modifierName":{"id":12206,"name":"onlyPolicyPool","nameLocations":["22313:14:26"],"nodeType":"IdentifierPath","referencedDeclaration":10981,"src":"22313:14:26"},"nodeType":"ModifierInvocation","src":"22313:14:26"}],"name":"policyCreated","nameLocation":"22246:13:26","nodeType":"FunctionDefinition","overrides":{"id":12205,"nodeType":"OverrideSpecifier","overrides":[],"src":"22304:8:26"},"parameters":{"id":12204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12203,"mutability":"mutable","name":"policy","nameLocation":"22287:6:26","nodeType":"VariableDeclaration","scope":12249,"src":"22260:33:26","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":12202,"nodeType":"UserDefinedTypeName","pathNode":{"id":12201,"name":"Policy.PolicyData","nameLocations":["22260:6:26","22267:10:26"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"22260:17:26"},"referencedDeclaration":7744,"src":"22260:17:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"22259:35:26"},"returnParameters":{"id":12208,"nodeType":"ParameterList","parameters":[],"src":"22328:0:26"},"scope":12847,"src":"22237:335:26","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14679],"body":{"id":12364,"nodeType":"Block","src":"22756:1546:26","statements":[{"documentation":" Assumptions:\n 1. newPolicy.purePremium >= oldPolicy.purePremium (validated by PolicyPool)\n 2. jrCoc != 0 ==> jrScr != 0 ^ srCoc != 0 ==> srScr != 0 (guaranteed by Policy.sol)\n 3. newPolicy.jrCoc >= oldPolicy.jrCoc (validated by PolicyPool)\n 4. newPolicy.srCoc >= oldPolicy.srCoc (validated by PolicyPool)\n 5. Then sr/jrInterestRate() never fails","expression":{"id":12268,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12262,"name":"_activePurePremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11155,"src":"23161:19:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12263,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12256,"src":"23184:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23194:11:26","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7731,"src":"23184:21:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":12265,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"23208:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23218:11:26","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7731,"src":"23208:21:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23184:45:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23161:68:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12269,"nodeType":"ExpressionStatement","src":"23161:68:26"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12270,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"23619:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23629:5:26","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7725,"src":"23619:15:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":12272,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23638:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23619:20:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"documentation":" Applies an adjustment based on the difference between the accrued interest with the old policy and the new\n policy.\n The CoC is disbursed linearly from policy start (the same for old and new policy) and policy.expiration (might\n be different).\n The adjustment corrects the gap between the two straight lines at the replacement time","id":12299,"nodeType":"IfStatement","src":"23615:230:26","trueBody":{"expression":{"arguments":[{"expression":{"id":12277,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"23677:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23687:2:26","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"23677:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":12279,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"23699:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23709:5:26","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7725,"src":"23699:15:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12281,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"23724:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23734:14:26","memberName":"jrInterestRate","nodeType":"MemberAccess","referencedDeclaration":8124,"src":"23724:24:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":12283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23724:26:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12286,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12256,"src":"23767:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12287,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23777:17:26","memberName":"jrAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":8149,"src":"23767:27:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":12288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23767:29:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12285,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23760:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12284,"name":"int256","nodeType":"ElementaryTypeName","src":"23760:6:26","typeDescriptions":{}}},"id":12289,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23760:37:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12292,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"23807:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23817:17:26","memberName":"jrAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":8149,"src":"23807:27:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":12294,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23807:29:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12291,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23800:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12290,"name":"int256","nodeType":"ElementaryTypeName","src":"23800:6:26","typeDescriptions":{}}},"id":12295,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23800:37:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23760:77:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":12274,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"23647:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":12276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23658:9:26","memberName":"unlockScr","nodeType":"MemberAccess","referencedDeclaration":14219,"src":"23647:20:26","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256) external"}},"id":12297,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23647:198:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12298,"nodeType":"ExpressionStatement","src":"23647:198:26"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12300,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12256,"src":"23855:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23865:5:26","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7725,"src":"23855:15:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":12302,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23873:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23855:19:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12316,"nodeType":"IfStatement","src":"23851:102:26","trueBody":{"expression":{"arguments":[{"expression":{"id":12307,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12256,"src":"23895:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12308,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23905:2:26","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"23895:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":12309,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12256,"src":"23909:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23919:5:26","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7725,"src":"23909:15:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12311,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12256,"src":"23926:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12312,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23936:14:26","memberName":"jrInterestRate","nodeType":"MemberAccess","referencedDeclaration":8124,"src":"23926:24:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":12313,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23926:26:26","tryCall":false,"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":12304,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"23876:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":12306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23887:7:26","memberName":"lockScr","nodeType":"MemberAccess","referencedDeclaration":14207,"src":"23876:18:26","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) external"}},"id":12314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23876:77:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12315,"nodeType":"ExpressionStatement","src":"23876:77:26"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12317,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"23963:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23973:5:26","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7727,"src":"23963:15:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":12319,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23982:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23963:20:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12346,"nodeType":"IfStatement","src":"23959:230:26","trueBody":{"expression":{"arguments":[{"expression":{"id":12324,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"24021:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24031:2:26","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"24021:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":12326,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"24043:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24053:5:26","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7727,"src":"24043:15:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12328,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"24068:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24078:14:26","memberName":"srInterestRate","nodeType":"MemberAccess","referencedDeclaration":8174,"src":"24068:24:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":12330,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24068:26:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12333,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12256,"src":"24111:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24121:17:26","memberName":"srAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":8199,"src":"24111:27:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":12335,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24111:29:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12332,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24104:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12331,"name":"int256","nodeType":"ElementaryTypeName","src":"24104:6:26","typeDescriptions":{}}},"id":12336,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24104:37:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12339,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"24151:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24161:17:26","memberName":"srAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":8199,"src":"24151:27:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":12341,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24151:29:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12338,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24144:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12337,"name":"int256","nodeType":"ElementaryTypeName","src":"24144:6:26","typeDescriptions":{}}},"id":12342,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24144:37:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24104:77:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":12321,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11152,"src":"23991:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":12323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24002:9:26","memberName":"unlockScr","nodeType":"MemberAccess","referencedDeclaration":14219,"src":"23991:20:26","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256) external"}},"id":12344,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23991:198:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12345,"nodeType":"ExpressionStatement","src":"23991:198:26"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12347,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12256,"src":"24199:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24209:5:26","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7727,"src":"24199:15:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":12349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24217:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24199:19:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12363,"nodeType":"IfStatement","src":"24195:102:26","trueBody":{"expression":{"arguments":[{"expression":{"id":12354,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12256,"src":"24239:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24249:2:26","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"24239:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":12356,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12256,"src":"24253:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24263:5:26","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7727,"src":"24253:15:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12358,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12256,"src":"24270:9:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24280:14:26","memberName":"srInterestRate","nodeType":"MemberAccess","referencedDeclaration":8174,"src":"24270:24:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":12360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24270:26:26","tryCall":false,"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":12351,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11152,"src":"24220:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":12353,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24231:7:26","memberName":"lockScr","nodeType":"MemberAccess","referencedDeclaration":14207,"src":"24220:18:26","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) external"}},"id":12361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24220:77:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12362,"nodeType":"ExpressionStatement","src":"24220:77:26"}}]},"documentation":{"id":12250,"nodeType":"StructuredDocumentation","src":"22576:32:26","text":"@inheritdoc IPremiumsAccount"},"functionSelector":"d5c6c166","id":12365,"implemented":true,"kind":"function","modifiers":[{"id":12260,"kind":"modifierInvocation","modifierName":{"id":12259,"name":"onlyPolicyPool","nameLocations":["22741:14:26"],"nodeType":"IdentifierPath","referencedDeclaration":10981,"src":"22741:14:26"},"nodeType":"ModifierInvocation","src":"22741:14:26"}],"name":"policyReplaced","nameLocation":"22620:14:26","nodeType":"FunctionDefinition","overrides":{"id":12258,"nodeType":"OverrideSpecifier","overrides":[],"src":"22732:8:26"},"parameters":{"id":12257,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12253,"mutability":"mutable","name":"oldPolicy","nameLocation":"22667:9:26","nodeType":"VariableDeclaration","scope":12365,"src":"22640:36:26","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":12252,"nodeType":"UserDefinedTypeName","pathNode":{"id":12251,"name":"Policy.PolicyData","nameLocations":["22640:6:26","22647:10:26"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"22640:17:26"},"referencedDeclaration":7744,"src":"22640:17:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":12256,"mutability":"mutable","name":"newPolicy","nameLocation":"22709:9:26","nodeType":"VariableDeclaration","scope":12365,"src":"22682:36:26","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":12255,"nodeType":"UserDefinedTypeName","pathNode":{"id":12254,"name":"Policy.PolicyData","nameLocations":["22682:6:26","22689:10:26"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"22682:17:26"},"referencedDeclaration":7744,"src":"22682:17:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"22634:88:26"},"returnParameters":{"id":12261,"nodeType":"ParameterList","parameters":[],"src":"22756:0:26"},"scope":12847,"src":"22611:1691:26","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14694],"body":{"id":12439,"nodeType":"Block","src":"24549:490:26","statements":[{"expression":{"id":12386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12383,"name":"_activePurePremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11155,"src":"24555:19:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"expression":{"id":12384,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12369,"src":"24578:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24585:11:26","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7731,"src":"24578:18:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24555:41:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12387,"nodeType":"ExpressionStatement","src":"24555:41:26"},{"assignments":[12389],"declarations":[{"constant":false,"id":12389,"mutability":"mutable","name":"borrowFromScr","nameLocation":"24610:13:26","nodeType":"VariableDeclaration","scope":12439,"src":"24602:21:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12388,"name":"uint256","nodeType":"ElementaryTypeName","src":"24602:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12402,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":12393,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12371,"src":"24650:17:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12392,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24643:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12391,"name":"int256","nodeType":"ElementaryTypeName","src":"24643:6:26","typeDescriptions":{}}},"id":12394,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24643:25:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"expression":{"id":12397,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12369,"src":"24678:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24685:11:26","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7731,"src":"24678:18:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12396,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24671:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12395,"name":"int256","nodeType":"ElementaryTypeName","src":"24671:6:26","typeDescriptions":{}}},"id":12399,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24671:26:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24643:54:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12390,"name":"_payFromPremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12065,"src":"24626:16:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$_t_uint256_$","typeString":"function (int256) returns (uint256)"}},"id":12401,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24626:72:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"24602:96:26"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12403,"name":"borrowFromScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12389,"src":"24708:13:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":12404,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24725:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24708:18:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":12430,"nodeType":"Block","src":"24886:83:26","statements":[{"expression":{"arguments":[{"id":12424,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12369,"src":"24915:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":12425,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12373,"src":"24923:11:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12426,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12375,"src":"24936:11:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12427,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12377,"src":"24949:12:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":12423,"name":"_unlockScrWithRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12655,"src":"24894:20:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_uint256_$_t_address_$returns$__$","typeString":"function (struct Policy.PolicyData memory,uint256,uint256,address)"}},"id":12428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24894:68:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12429,"nodeType":"ExpressionStatement","src":"24894:68:26"}]},"id":12431,"nodeType":"IfStatement","src":"24704:265:26","trueBody":{"id":12422,"nodeType":"Block","src":"24728:152:26","statements":[{"expression":{"arguments":[{"id":12407,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12369,"src":"24757:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":12408,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12373,"src":"24765:11:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12409,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12375,"src":"24778:11:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12410,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12377,"src":"24791:12:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":12406,"name":"_unlockScrWithRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12655,"src":"24736:20:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_uint256_$_t_address_$returns$__$","typeString":"function (struct Policy.PolicyData memory,uint256,uint256,address)"}},"id":12411,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24736:68:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12412,"nodeType":"ExpressionStatement","src":"24736:68:26"},{"expression":{"arguments":[{"id":12414,"name":"borrowFromScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12389,"src":"24827:13:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12415,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12377,"src":"24842:12:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12416,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12369,"src":"24856:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24863:5:26","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7725,"src":"24856:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":12418,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24871:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24856:16:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":12413,"name":"_borrowFromEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12020,"src":"24812:14:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_bool_$returns$__$","typeString":"function (uint256,address,bool)"}},"id":12420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24812:61:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12421,"nodeType":"ExpressionStatement","src":"24812:61:26"}]}},{"expression":{"arguments":[{"id":12433,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12377,"src":"24986:12:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12436,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12434,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12371,"src":"25000:17:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12435,"name":"borrowFromScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12389,"src":"25020:13:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25000:33:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12432,"name":"_transferTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13003,"src":"24974:11:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":12437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24974:60:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12438,"nodeType":"ExpressionStatement","src":"24974:60:26"}]},"documentation":{"id":12366,"nodeType":"StructuredDocumentation","src":"24306:32:26","text":"@inheritdoc IPremiumsAccount"},"functionSelector":"ee1f9a6a","id":12440,"implemented":true,"kind":"function","modifiers":[{"id":12381,"kind":"modifierInvocation","modifierName":{"id":12380,"name":"onlyPolicyPool","nameLocations":["24534:14:26"],"nodeType":"IdentifierPath","referencedDeclaration":10981,"src":"24534:14:26"},"nodeType":"ModifierInvocation","src":"24534:14:26"}],"name":"policyCancelled","nameLocation":"24350:15:26","nodeType":"FunctionDefinition","overrides":{"id":12379,"nodeType":"OverrideSpecifier","overrides":[],"src":"24525:8:26"},"parameters":{"id":12378,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12369,"mutability":"mutable","name":"policy","nameLocation":"24398:6:26","nodeType":"VariableDeclaration","scope":12440,"src":"24371:33:26","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":12368,"nodeType":"UserDefinedTypeName","pathNode":{"id":12367,"name":"Policy.PolicyData","nameLocations":["24371:6:26","24378:10:26"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"24371:17:26"},"referencedDeclaration":7744,"src":"24371:17:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":12371,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"24418:17:26","nodeType":"VariableDeclaration","scope":12440,"src":"24410:25:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12370,"name":"uint256","nodeType":"ElementaryTypeName","src":"24410:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12373,"mutability":"mutable","name":"jrCocRefund","nameLocation":"24449:11:26","nodeType":"VariableDeclaration","scope":12440,"src":"24441:19:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12372,"name":"uint256","nodeType":"ElementaryTypeName","src":"24441:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12375,"mutability":"mutable","name":"srCocRefund","nameLocation":"24474:11:26","nodeType":"VariableDeclaration","scope":12440,"src":"24466:19:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12374,"name":"uint256","nodeType":"ElementaryTypeName","src":"24466:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12377,"mutability":"mutable","name":"policyHolder","nameLocation":"24499:12:26","nodeType":"VariableDeclaration","scope":12440,"src":"24491:20:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12376,"name":"address","nodeType":"ElementaryTypeName","src":"24491:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"24365:150:26"},"returnParameters":{"id":12382,"nodeType":"ParameterList","parameters":[],"src":"24549:0:26"},"scope":12847,"src":"24341:698:26","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14705],"body":{"id":12504,"nodeType":"Block","src":"25234:368:26","statements":[{"expression":{"id":12457,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12454,"name":"_activePurePremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11155,"src":"25240:19:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"expression":{"id":12455,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12446,"src":"25263:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12456,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25270:11:26","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7731,"src":"25263:18:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25240:41:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12458,"nodeType":"ExpressionStatement","src":"25240:41:26"},{"assignments":[12460],"declarations":[{"constant":false,"id":12460,"mutability":"mutable","name":"borrowFromScr","nameLocation":"25295:13:26","nodeType":"VariableDeclaration","scope":12504,"src":"25287:21:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12459,"name":"uint256","nodeType":"ElementaryTypeName","src":"25287:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12473,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":12464,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12448,"src":"25335:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12463,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25328:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12462,"name":"int256","nodeType":"ElementaryTypeName","src":"25328:6:26","typeDescriptions":{}}},"id":12465,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25328:14:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"expression":{"id":12468,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12446,"src":"25352:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12469,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25359:11:26","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7731,"src":"25352:18:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12467,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25345:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12466,"name":"int256","nodeType":"ElementaryTypeName","src":"25345:6:26","typeDescriptions":{}}},"id":12470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25345:26:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"25328:43:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":12461,"name":"_payFromPremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12065,"src":"25311:16:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$_t_uint256_$","typeString":"function (int256) returns (uint256)"}},"id":12472,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25311:61:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"25287:85:26"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12474,"name":"borrowFromScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12460,"src":"25382:13:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":12475,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25399:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"25382:18:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":12495,"nodeType":"Block","src":"25510:33:26","statements":[{"expression":{"arguments":[{"id":12492,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12446,"src":"25529:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}],"id":12491,"name":"_unlockScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12573,"src":"25518:10:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PolicyData_$7744_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory)"}},"id":12493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25518:18:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12494,"nodeType":"ExpressionStatement","src":"25518:18:26"}]},"id":12496,"nodeType":"IfStatement","src":"25378:165:26","trueBody":{"id":12490,"nodeType":"Block","src":"25402:102:26","statements":[{"expression":{"arguments":[{"id":12478,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12446,"src":"25421:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}],"id":12477,"name":"_unlockScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12573,"src":"25410:10:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PolicyData_$7744_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory)"}},"id":12479,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25410:18:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12480,"nodeType":"ExpressionStatement","src":"25410:18:26"},{"expression":{"arguments":[{"id":12482,"name":"borrowFromScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12460,"src":"25451:13:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12483,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12443,"src":"25466:12:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12484,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12446,"src":"25480:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25487:5:26","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7725,"src":"25480:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":12486,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25495:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"25480:16:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":12481,"name":"_borrowFromEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12020,"src":"25436:14:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_address_$_t_bool_$returns$__$","typeString":"function (uint256,address,bool)"}},"id":12488,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25436:61:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12489,"nodeType":"ExpressionStatement","src":"25436:61:26"}]}},{"expression":{"arguments":[{"id":12498,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12443,"src":"25560:12:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12499,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12448,"src":"25574:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12500,"name":"borrowFromScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12460,"src":"25583:13:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25574:22:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12497,"name":"_transferTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13003,"src":"25548:11:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":12502,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25548:49:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12503,"nodeType":"ExpressionStatement","src":"25548:49:26"}]},"documentation":{"id":12441,"nodeType":"StructuredDocumentation","src":"25043:32:26","text":"@inheritdoc IPremiumsAccount"},"functionSelector":"1dda2899","id":12505,"implemented":true,"kind":"function","modifiers":[{"id":12452,"kind":"modifierInvocation","modifierName":{"id":12451,"name":"onlyPolicyPool","nameLocations":["25219:14:26"],"nodeType":"IdentifierPath","referencedDeclaration":10981,"src":"25219:14:26"},"nodeType":"ModifierInvocation","src":"25219:14:26"}],"name":"policyResolvedWithPayout","nameLocation":"25087:24:26","nodeType":"FunctionDefinition","overrides":{"id":12450,"nodeType":"OverrideSpecifier","overrides":[],"src":"25210:8:26"},"parameters":{"id":12449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12443,"mutability":"mutable","name":"policyHolder","nameLocation":"25125:12:26","nodeType":"VariableDeclaration","scope":12505,"src":"25117:20:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12442,"name":"address","nodeType":"ElementaryTypeName","src":"25117:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12446,"mutability":"mutable","name":"policy","nameLocation":"25170:6:26","nodeType":"VariableDeclaration","scope":12505,"src":"25143:33:26","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":12445,"nodeType":"UserDefinedTypeName","pathNode":{"id":12444,"name":"Policy.PolicyData","nameLocations":["25143:6:26","25150:10:26"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"25143:17:26"},"referencedDeclaration":7744,"src":"25143:17:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":12448,"mutability":"mutable","name":"payout","nameLocation":"25190:6:26","nodeType":"VariableDeclaration","scope":12505,"src":"25182:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12447,"name":"uint256","nodeType":"ElementaryTypeName","src":"25182:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25111:89:26"},"returnParameters":{"id":12453,"nodeType":"ParameterList","parameters":[],"src":"25234:0:26"},"scope":12847,"src":"25078:524:26","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":12572,"nodeType":"Block","src":"25829:427:26","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12512,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12509,"src":"25839:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12513,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25846:5:26","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7725,"src":"25839:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":12514,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25854:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"25839:16:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12541,"nodeType":"IfStatement","src":"25835:206:26","trueBody":{"id":12540,"nodeType":"Block","src":"25857:184:26","statements":[{"expression":{"arguments":[{"expression":{"id":12519,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12509,"src":"25895:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12520,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25902:2:26","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"25895:9:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":12521,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12509,"src":"25914:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12522,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25921:5:26","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7725,"src":"25914:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12523,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12509,"src":"25936:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12524,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25943:14:26","memberName":"jrInterestRate","nodeType":"MemberAccess","referencedDeclaration":8124,"src":"25936:21:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":12525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25936:23:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12537,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":12528,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12509,"src":"25976:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12529,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25983:5:26","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7737,"src":"25976:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12527,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25969:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12526,"name":"int256","nodeType":"ElementaryTypeName","src":"25969:6:26","typeDescriptions":{}}},"id":12530,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25969:20:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12533,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12509,"src":"25999:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12534,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26006:17:26","memberName":"jrAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":8149,"src":"25999:24:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":12535,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25999:26:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12532,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25992:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12531,"name":"int256","nodeType":"ElementaryTypeName","src":"25992:6:26","typeDescriptions":{}}},"id":12536,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25992:34:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"25969:57:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":12516,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"25865:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":12518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25876:9:26","memberName":"unlockScr","nodeType":"MemberAccess","referencedDeclaration":14219,"src":"25865:20:26","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256) external"}},"id":12538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25865:169:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12539,"nodeType":"ExpressionStatement","src":"25865:169:26"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12545,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12542,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12509,"src":"26050:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12543,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26057:5:26","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7727,"src":"26050:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":12544,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26065:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"26050:16:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12571,"nodeType":"IfStatement","src":"26046:206:26","trueBody":{"id":12570,"nodeType":"Block","src":"26068:184:26","statements":[{"expression":{"arguments":[{"expression":{"id":12549,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12509,"src":"26106:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12550,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26113:2:26","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"26106:9:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":12551,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12509,"src":"26125:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12552,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26132:5:26","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7727,"src":"26125:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12553,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12509,"src":"26147:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12554,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26154:14:26","memberName":"srInterestRate","nodeType":"MemberAccess","referencedDeclaration":8174,"src":"26147:21:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":12555,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26147:23:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":12558,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12509,"src":"26187:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12559,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26194:5:26","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7739,"src":"26187:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12557,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26180:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12556,"name":"int256","nodeType":"ElementaryTypeName","src":"26180:6:26","typeDescriptions":{}}},"id":12560,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26180:20:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12563,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12509,"src":"26210:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12564,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26217:17:26","memberName":"srAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":8199,"src":"26210:24:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":12565,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26210:26:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12562,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26203:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12561,"name":"int256","nodeType":"ElementaryTypeName","src":"26203:6:26","typeDescriptions":{}}},"id":12566,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26203:34:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26180:57:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":12546,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11152,"src":"26076:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":12548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26087:9:26","memberName":"unlockScr","nodeType":"MemberAccess","referencedDeclaration":14219,"src":"26076:20:26","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256) external"}},"id":12568,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26076:169:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12569,"nodeType":"ExpressionStatement","src":"26076:169:26"}]}}]},"documentation":{"id":12506,"nodeType":"StructuredDocumentation","src":"25606:158:26","text":" @dev Internal function that calls the eTokens to unlock the solvency capital when the policy expires\n @param policy The policy expired"},"id":12573,"implemented":true,"kind":"function","modifiers":[],"name":"_unlockScr","nameLocation":"25776:10:26","nodeType":"FunctionDefinition","parameters":{"id":12510,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12509,"mutability":"mutable","name":"policy","nameLocation":"25812:6:26","nodeType":"VariableDeclaration","scope":12573,"src":"25787:31:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":12508,"nodeType":"UserDefinedTypeName","pathNode":{"id":12507,"name":"Policy.PolicyData","nameLocations":["25787:6:26","25794:10:26"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"25787:17:26"},"referencedDeclaration":7744,"src":"25787:17:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"25786:33:26"},"returnParameters":{"id":12511,"nodeType":"ParameterList","parameters":[],"src":"25829:0:26"},"scope":12847,"src":"25767:489:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12654,"nodeType":"Block","src":"26629:561:26","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12589,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12586,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12577,"src":"26639:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12587,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26646:5:26","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7725,"src":"26639:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":12588,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26654:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"26639:16:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12619,"nodeType":"IfStatement","src":"26635:273:26","trueBody":{"id":12618,"nodeType":"Block","src":"26657:251:26","statements":[{"expression":{"arguments":[{"expression":{"id":12593,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12577,"src":"26705:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12594,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26712:2:26","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"26705:9:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":12595,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12577,"src":"26724:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12596,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26731:5:26","memberName":"jrScr","nodeType":"MemberAccess","referencedDeclaration":7725,"src":"26724:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12597,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12577,"src":"26746:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12598,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26753:14:26","memberName":"jrInterestRate","nodeType":"MemberAccess","referencedDeclaration":8124,"src":"26746:21:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":12599,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26746:23:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12602,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12577,"src":"26786:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12603,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26793:5:26","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7737,"src":"26786:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12604,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12579,"src":"26801:11:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26786:26:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12601,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26779:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12600,"name":"int256","nodeType":"ElementaryTypeName","src":"26779:6:26","typeDescriptions":{}}},"id":12606,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26779:34:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12609,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12577,"src":"26823:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12610,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26830:17:26","memberName":"jrAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":8149,"src":"26823:24:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":12611,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26823:26:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12608,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26816:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12607,"name":"int256","nodeType":"ElementaryTypeName","src":"26816:6:26","typeDescriptions":{}}},"id":12612,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26816:34:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26779:71:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":12614,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12583,"src":"26860:12:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12615,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12579,"src":"26882:11:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":12590,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"26665:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":12592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26676:19:26","memberName":"unlockScrWithRefund","nodeType":"MemberAccess","referencedDeclaration":14235,"src":"26665:30:26","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$_t_address_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256,address,uint256) external"}},"id":12616,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26665:236:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12617,"nodeType":"ExpressionStatement","src":"26665:236:26"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12620,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12577,"src":"26917:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12621,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26924:5:26","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7727,"src":"26917:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":12622,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26932:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"26917:16:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12653,"nodeType":"IfStatement","src":"26913:273:26","trueBody":{"id":12652,"nodeType":"Block","src":"26935:251:26","statements":[{"expression":{"arguments":[{"expression":{"id":12627,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12577,"src":"26983:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12628,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"26990:2:26","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"26983:9:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":12629,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12577,"src":"27002:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12630,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27009:5:26","memberName":"srScr","nodeType":"MemberAccess","referencedDeclaration":7727,"src":"27002:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12631,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12577,"src":"27024:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12632,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27031:14:26","memberName":"srInterestRate","nodeType":"MemberAccess","referencedDeclaration":8174,"src":"27024:21:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) pure returns (uint256)"}},"id":12633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27024:23:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":12647,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":12636,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12577,"src":"27064:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12637,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27071:5:26","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7739,"src":"27064:12:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12638,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12581,"src":"27079:11:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27064:26:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12635,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27057:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12634,"name":"int256","nodeType":"ElementaryTypeName","src":"27057:6:26","typeDescriptions":{}}},"id":12640,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27057:34:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":12643,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12577,"src":"27101:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":12644,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27108:17:26","memberName":"srAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":8199,"src":"27101:24:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":12645,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27101:26:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12642,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27094:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12641,"name":"int256","nodeType":"ElementaryTypeName","src":"27094:6:26","typeDescriptions":{}}},"id":12646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27094:34:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27057:71:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":12648,"name":"policyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12583,"src":"27138:12:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12649,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12581,"src":"27160:11:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":12624,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11152,"src":"26943:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":12626,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26954:19:26","memberName":"unlockScrWithRefund","nodeType":"MemberAccess","referencedDeclaration":14235,"src":"26943:30:26","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_uint256_$_t_uint256_$_t_int256_$_t_address_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256,int256,address,uint256) external"}},"id":12650,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26943:236:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12651,"nodeType":"ExpressionStatement","src":"26943:236:26"}]}}]},"documentation":{"id":12574,"nodeType":"StructuredDocumentation","src":"26260:210:26","text":" @dev Internal function that calls the eTokens to unlock the solvency capital when the policy is cancelled, doing\n      refund of the jr and sr Coc\n @param policy The policy cancelled"},"id":12655,"implemented":true,"kind":"function","modifiers":[],"name":"_unlockScrWithRefund","nameLocation":"26482:20:26","nodeType":"FunctionDefinition","parameters":{"id":12584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12577,"mutability":"mutable","name":"policy","nameLocation":"26533:6:26","nodeType":"VariableDeclaration","scope":12655,"src":"26508:31:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":12576,"nodeType":"UserDefinedTypeName","pathNode":{"id":12575,"name":"Policy.PolicyData","nameLocations":["26508:6:26","26515:10:26"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"26508:17:26"},"referencedDeclaration":7744,"src":"26508:17:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":12579,"mutability":"mutable","name":"jrCocRefund","nameLocation":"26553:11:26","nodeType":"VariableDeclaration","scope":12655,"src":"26545:19:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12578,"name":"uint256","nodeType":"ElementaryTypeName","src":"26545:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12581,"mutability":"mutable","name":"srCocRefund","nameLocation":"26578:11:26","nodeType":"VariableDeclaration","scope":12655,"src":"26570:19:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12580,"name":"uint256","nodeType":"ElementaryTypeName","src":"26570:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12583,"mutability":"mutable","name":"policyHolder","nameLocation":"26603:12:26","nodeType":"VariableDeclaration","scope":12655,"src":"26595:20:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12582,"name":"address","nodeType":"ElementaryTypeName","src":"26595:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"26502:117:26"},"returnParameters":{"id":12585,"nodeType":"ParameterList","parameters":[],"src":"26629:0:26"},"scope":12847,"src":"26473:717:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12724,"nodeType":"Block","src":"27399:340:26","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":12670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":12663,"name":"yieldVault","nodeType":"Identifier","overloadedDeclarations":[11419],"referencedDeclaration":11419,"src":"27417:10:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC4626_$22463_$","typeString":"function () view returns (contract IERC4626)"}},"id":12664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27417:12:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":12662,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27409:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12661,"name":"address","nodeType":"ElementaryTypeName","src":"27409:7:26","typeDescriptions":{}}},"id":12665,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27409:21:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":12668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27442:1:26","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":12667,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27434:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12666,"name":"address","nodeType":"ElementaryTypeName","src":"27434:7:26","typeDescriptions":{}}},"id":12669,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27434:10:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27409:35:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12674,"nodeType":"IfStatement","src":"27405:57:26","trueBody":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":12671,"name":"recordEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13494,"src":"27446:14:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":12672,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27446:16:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12673,"nodeType":"ExpressionStatement","src":"27446:16:26"}},{"expression":{"id":12678,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12675,"name":"available","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12659,"src":"27468:9:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":12676,"name":"fundsAvailable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11569,"src":"27480:14:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":12677,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27480:16:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27468:28:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12679,"nodeType":"ExpressionStatement","src":"27468:28:26"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12692,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12680,"name":"available","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12659,"src":"27506:9:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":12681,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27519:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"27506:14:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":12691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":12685,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11152,"src":"27532:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":12684,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27524:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12683,"name":"address","nodeType":"ElementaryTypeName","src":"27524:7:26","typeDescriptions":{}}},"id":12686,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27524:19:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":12689,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27555:1:26","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":12688,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27547:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12687,"name":"address","nodeType":"ElementaryTypeName","src":"27547:7:26","typeDescriptions":{}}},"id":12690,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27547:10:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27524:33:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"27506:51:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12700,"nodeType":"IfStatement","src":"27502:102:26","trueBody":{"expression":{"id":12698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12693,"name":"available","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12659,"src":"27559:9:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12695,"name":"available","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12659,"src":"27582:9:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12696,"name":"_seniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11152,"src":"27593:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":12694,"name":"_repayLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12816,"src":"27571:10:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_contract$_IEToken_$14336_$returns$_t_uint256_$","typeString":"function (uint256,contract IEToken) returns (uint256)"}},"id":12697,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27571:33:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27559:45:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12699,"nodeType":"ExpressionStatement","src":"27559:45:26"}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12713,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12701,"name":"available","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12659,"src":"27614:9:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":12702,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27627:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"27614:14:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":12712,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":12706,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"27640:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":12705,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27632:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12704,"name":"address","nodeType":"ElementaryTypeName","src":"27632:7:26","typeDescriptions":{}}},"id":12707,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27632:19:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":12710,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27663:1:26","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":12709,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27655:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12708,"name":"address","nodeType":"ElementaryTypeName","src":"27655:7:26","typeDescriptions":{}}},"id":12711,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27655:10:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27632:33:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"27614:51:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12721,"nodeType":"IfStatement","src":"27610:102:26","trueBody":{"expression":{"id":12719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12714,"name":"available","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12659,"src":"27667:9:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12716,"name":"available","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12659,"src":"27690:9:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12717,"name":"_juniorEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11148,"src":"27701:10:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":12715,"name":"_repayLoan","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12816,"src":"27679:10:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$_t_contract$_IEToken_$14336_$returns$_t_uint256_$","typeString":"function (uint256,contract IEToken) returns (uint256)"}},"id":12718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27679:33:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27667:45:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12720,"nodeType":"ExpressionStatement","src":"27667:45:26"}},{"expression":{"id":12722,"name":"available","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12659,"src":"27725:9:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12660,"id":12723,"nodeType":"Return","src":"27718:16:26"}]},"documentation":{"id":12656,"nodeType":"StructuredDocumentation","src":"27194:143:26","text":" @notice Function that repays the loan(s) if fundsAvailable\n @return available The funds still available after repayment"},"functionSelector":"f39a4bc5","id":12725,"implemented":true,"kind":"function","modifiers":[],"name":"repayLoans","nameLocation":"27349:10:26","nodeType":"FunctionDefinition","parameters":{"id":12657,"nodeType":"ParameterList","parameters":[],"src":"27359:2:26"},"returnParameters":{"id":12660,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12659,"mutability":"mutable","name":"available","nameLocation":"27388:9:26","nodeType":"VariableDeclaration","scope":12725,"src":"27380:17:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12658,"name":"uint256","nodeType":"ElementaryTypeName","src":"27380:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"27379:19:26"},"scope":12847,"src":"27340:399:26","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":12815,"nodeType":"Block","src":"28159:740:26","statements":[{"assignments":[12737],"declarations":[{"constant":false,"id":12737,"mutability":"mutable","name":"borrowedFromEtk","nameLocation":"28173:15:26","nodeType":"VariableDeclaration","scope":12815,"src":"28165:23:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12736,"name":"uint256","nodeType":"ElementaryTypeName","src":"28165:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12745,"initialValue":{"arguments":[{"arguments":[{"id":12742,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28211:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_PremiumsAccount_$12847","typeString":"contract PremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PremiumsAccount_$12847","typeString":"contract PremiumsAccount"}],"id":12741,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28203:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12740,"name":"address","nodeType":"ElementaryTypeName","src":"28203:7:26","typeDescriptions":{}}},"id":12743,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28203:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":12738,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12731,"src":"28191:3:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":12739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28195:7:26","memberName":"getLoan","nodeType":"MemberAccess","referencedDeclaration":14303,"src":"28191:11:26","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":12744,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28191:26:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28165:52:26"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12746,"name":"borrowedFromEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12737,"src":"28227:15:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12747,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28246:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"28227:20:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12751,"nodeType":"IfStatement","src":"28223:48:26","trueBody":{"expression":{"id":12749,"name":"fundsAvailable_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12728,"src":"28256:15:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12735,"id":12750,"nodeType":"Return","src":"28249:22:26"}},{"assignments":[12753],"declarations":[{"constant":false,"id":12753,"mutability":"mutable","name":"repayAmount","nameLocation":"28285:11:26","nodeType":"VariableDeclaration","scope":12815,"src":"28277:19:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12752,"name":"uint256","nodeType":"ElementaryTypeName","src":"28277:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12759,"initialValue":{"arguments":[{"id":12756,"name":"fundsAvailable_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12728,"src":"28308:15:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12757,"name":"borrowedFromEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12737,"src":"28325:15:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":12754,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"28299:4:26","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":12755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28304:3:26","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":33872,"src":"28299:8:26","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":12758,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28299:42:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28277:64:26"},{"expression":{"id":12765,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12760,"name":"_surplus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11158,"src":"28347:8:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"arguments":[{"id":12763,"name":"repayAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12753,"src":"28366:11:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12762,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28359:6:26","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":12761,"name":"int256","nodeType":"ElementaryTypeName","src":"28359:6:26","typeDescriptions":{}}},"id":12764,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28359:19:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28347:31:26","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":12766,"nodeType":"ExpressionStatement","src":"28347:31:26"},{"expression":{"arguments":[{"arguments":[{"id":12770,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28464:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_PremiumsAccount_$12847","typeString":"contract PremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PremiumsAccount_$12847","typeString":"contract PremiumsAccount"}],"id":12769,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28456:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12768,"name":"address","nodeType":"ElementaryTypeName","src":"28456:7:26","typeDescriptions":{}}},"id":12771,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28456:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12772,"name":"repayAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12753,"src":"28471:11:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12767,"name":"_transferTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13003,"src":"28444:11:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":12773,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28444:39:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12774,"nodeType":"ExpressionStatement","src":"28444:39:26"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":12780,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28567:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_PremiumsAccount_$12847","typeString":"contract PremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PremiumsAccount_$12847","typeString":"contract PremiumsAccount"}],"id":12779,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28559:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12778,"name":"address","nodeType":"ElementaryTypeName","src":"28559:7:26","typeDescriptions":{}}},"id":12781,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28559:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":12784,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12731,"src":"28582:3:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":12783,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28574:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12782,"name":"address","nodeType":"ElementaryTypeName","src":"28574:7:26","typeDescriptions":{}}},"id":12785,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28574:12:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":12775,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11088,"src":"28538:8:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$24925_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":12776,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28538:10:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":12777,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28549:9:26","memberName":"allowance","nodeType":"MemberAccess","referencedDeclaration":24170,"src":"28538:20:26","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view external returns (uint256)"}},"id":12786,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28538:49:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":12787,"name":"repayAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12753,"src":"28590:11:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28538:63:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12800,"nodeType":"IfStatement","src":"28534:272:26","trueBody":{"id":12799,"nodeType":"Block","src":"28603:203:26","statements":[{"expression":{"arguments":[{"arguments":[{"id":12794,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12731,"src":"28777:3:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}],"id":12793,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28769:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12792,"name":"address","nodeType":"ElementaryTypeName","src":"28769:7:26","typeDescriptions":{}}},"id":12795,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28769:12:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12796,"name":"borrowedFromEtk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12737,"src":"28783:15:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":12789,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11088,"src":"28750:8:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$24925_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":12790,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28750:10:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":12791,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28761:7:26","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":24180,"src":"28750:18:26","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":12797,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28750:49:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12798,"nodeType":"ExpressionStatement","src":"28750:49:26"}]}},{"expression":{"arguments":[{"id":12804,"name":"repayAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12753,"src":"28825:11:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":12807,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28846:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_PremiumsAccount_$12847","typeString":"contract PremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_PremiumsAccount_$12847","typeString":"contract PremiumsAccount"}],"id":12806,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28838:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12805,"name":"address","nodeType":"ElementaryTypeName","src":"28838:7:26","typeDescriptions":{}}},"id":12808,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28838:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":12801,"name":"etk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12731,"src":"28811:3:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"id":12803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28815:9:26","memberName":"repayLoan","nodeType":"MemberAccess","referencedDeclaration":14295,"src":"28811:13:26","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$returns$__$","typeString":"function (uint256,address) external"}},"id":12809,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28811:41:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12810,"nodeType":"ExpressionStatement","src":"28811:41:26"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12811,"name":"fundsAvailable_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12728,"src":"28865:15:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12812,"name":"repayAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12753,"src":"28883:11:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28865:29:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12735,"id":12814,"nodeType":"Return","src":"28858:36:26"}]},"documentation":{"id":12726,"nodeType":"StructuredDocumentation","src":"27743:328:26","text":" @dev Internal function that repays a loan taken (if any outstanding) from the an eToken\n @param fundsAvailable_ The amount of funds available for the repayment\n @param etk The eToken with the potential debt\n @return The excess amount of the purePremiumWon that wasn't used for the loan repayment."},"id":12816,"implemented":true,"kind":"function","modifiers":[],"name":"_repayLoan","nameLocation":"28083:10:26","nodeType":"FunctionDefinition","parameters":{"id":12732,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12728,"mutability":"mutable","name":"fundsAvailable_","nameLocation":"28102:15:26","nodeType":"VariableDeclaration","scope":12816,"src":"28094:23:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12727,"name":"uint256","nodeType":"ElementaryTypeName","src":"28094:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12731,"mutability":"mutable","name":"etk","nameLocation":"28127:3:26","nodeType":"VariableDeclaration","scope":12816,"src":"28119:11:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":12730,"nodeType":"UserDefinedTypeName","pathNode":{"id":12729,"name":"IEToken","nameLocations":["28119:7:26"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"28119:7:26"},"referencedDeclaration":14336,"src":"28119:7:26","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"28093:38:26"},"returnParameters":{"id":12735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12734,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12816,"src":"28150:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12733,"name":"uint256","nodeType":"ElementaryTypeName","src":"28150:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"28149:9:26"},"scope":12847,"src":"28074:825:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[14712],"body":{"id":12840,"nodeType":"Block","src":"29029:122:26","statements":[{"expression":{"id":12829,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12826,"name":"_activePurePremiums","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11155,"src":"29035:19:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"expression":{"id":12827,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12820,"src":"29058:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29065:11:26","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7731,"src":"29058:18:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29035:41:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12830,"nodeType":"ExpressionStatement","src":"29035:41:26"},{"expression":{"arguments":[{"expression":{"id":12832,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12820,"src":"29103:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},"id":12833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29110:11:26","memberName":"purePremium","nodeType":"MemberAccess","referencedDeclaration":7731,"src":"29103:18:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12831,"name":"_storePurePremiumWon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12079,"src":"29082:20:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":12834,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29082:40:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12835,"nodeType":"ExpressionStatement","src":"29082:40:26"},{"expression":{"arguments":[{"id":12837,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12820,"src":"29139:6:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}],"id":12836,"name":"_unlockScr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12573,"src":"29128:10:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_PolicyData_$7744_memory_ptr_$returns$__$","typeString":"function (struct Policy.PolicyData memory)"}},"id":12838,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29128:18:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12839,"nodeType":"ExpressionStatement","src":"29128:18:26"}]},"documentation":{"id":12817,"nodeType":"StructuredDocumentation","src":"28903:32:26","text":"@inheritdoc IPremiumsAccount"},"functionSelector":"76185ff1","id":12841,"implemented":true,"kind":"function","modifiers":[{"id":12824,"kind":"modifierInvocation","modifierName":{"id":12823,"name":"onlyPolicyPool","nameLocations":["29014:14:26"],"nodeType":"IdentifierPath","referencedDeclaration":10981,"src":"29014:14:26"},"nodeType":"ModifierInvocation","src":"29014:14:26"}],"name":"policyExpired","nameLocation":"28947:13:26","nodeType":"FunctionDefinition","overrides":{"id":12822,"nodeType":"OverrideSpecifier","overrides":[],"src":"29005:8:26"},"parameters":{"id":12821,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12820,"mutability":"mutable","name":"policy","nameLocation":"28988:6:26","nodeType":"VariableDeclaration","scope":12841,"src":"28961:33:26","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":12819,"nodeType":"UserDefinedTypeName","pathNode":{"id":12818,"name":"Policy.PolicyData","nameLocations":["28961:6:26","28968:10:26"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"28961:17:26"},"referencedDeclaration":7744,"src":"28961:17:26","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"28960:35:26"},"returnParameters":{"id":12825,"nodeType":"ParameterList","parameters":[],"src":"29029:0:26"},"scope":12847,"src":"28938:213:26","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"constant":false,"documentation":{"id":12842,"nodeType":"StructuredDocumentation","src":"29155:246:26","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":12846,"mutability":"mutable","name":"__gap","nameLocation":"29424:5:26","nodeType":"VariableDeclaration","scope":12847,"src":"29404:25:26","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$47_storage","typeString":"uint256[47]"},"typeName":{"baseType":{"id":12843,"name":"uint256","nodeType":"ElementaryTypeName","src":"29404:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12845,"length":{"hexValue":"3437","id":12844,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29412:2:26","typeDescriptions":{"typeIdentifier":"t_rational_47_by_1","typeString":"int_const 47"},"value":"47"},"nodeType":"ArrayTypeName","src":"29404:11:26","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$47_storage_ptr","typeString":"uint256[47]"}},"visibility":"private"}],"scope":12848,"src":"1321:28111:26","usedErrors":[10961,10963,10965,11179,11188,11193,11200,11205,11210,11215,11222,12872,12879,12884,22846,22859,23183,23186,23457,23462,24973,25668,26802,35197],"usedEvents":[11229,11238,11247,12895,12903,12908,22272,23191]}],"src":"39:29394:26"},"id":26},"@ensuro/core/contracts/Reserve.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/Reserve.sol","exportedSymbols":{"IERC20Metadata":[24925],"IERC4626":[22463],"IPolicyPool":[14638],"PolicyPoolComponent":[11094],"Reserve":[13500],"SafeERC20":[25416]},"id":13501,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":12849,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:27"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":12851,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":13501,"sourceUnit":25417,"src":"65:82:27","symbolAliases":[{"foreign":{"id":12850,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25416,"src":"73:9:27","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":12853,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":13501,"sourceUnit":24926,"src":"148:97:27","symbolAliases":[{"foreign":{"id":12852,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"156:14:27","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","file":"@openzeppelin/contracts/interfaces/IERC4626.sol","id":12855,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":13501,"sourceUnit":22464,"src":"246:73:27","symbolAliases":[{"foreign":{"id":12854,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22463,"src":"254:8:27","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyPool.sol","file":"./interfaces/IPolicyPool.sol","id":12857,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":13501,"sourceUnit":14639,"src":"320:57:27","symbolAliases":[{"foreign":{"id":12856,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14638,"src":"328:11:27","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/PolicyPoolComponent.sol","file":"./PolicyPoolComponent.sol","id":12859,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":13501,"sourceUnit":11095,"src":"378:62:27","symbolAliases":[{"foreign":{"id":12858,"name":"PolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11094,"src":"386:19:27","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":12861,"name":"PolicyPoolComponent","nameLocations":["1005:19:27"],"nodeType":"IdentifierPath","referencedDeclaration":11094,"src":"1005:19:27"},"id":12862,"nodeType":"InheritanceSpecifier","src":"1005:19:27"}],"canonicalName":"Reserve","contractDependencies":[],"contractKind":"contract","documentation":{"id":12860,"nodeType":"StructuredDocumentation","src":"442:533:27","text":" @title Base contract for Ensuro cash reserves\n @notice Implements the methods related with management of the reserves and payments. {EToken} and\n {PremiumsAccount} inherit from this contract.\n @dev These contracts have an asset manager {IAssetManager} that's a strategy contract that runs in the same context\n (called with delegatecall) that apply some strategy to reinvest the assets managed by the contract to generate\n additional returns.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":false,"id":13500,"linearizedBaseContracts":[13500,11094,14655,33545,23600,22506,23434],"name":"Reserve","nameLocation":"994:7:27","nodeType":"ContractDefinition","nodes":[{"global":false,"id":12866,"libraryName":{"id":12863,"name":"SafeERC20","nameLocations":["1035:9:27"],"nodeType":"IdentifierPath","referencedDeclaration":25416,"src":"1035:9:27"},"nodeType":"UsingForDirective","src":"1029:35:27","typeName":{"id":12865,"nodeType":"UserDefinedTypeName","pathNode":{"id":12864,"name":"IERC20Metadata","nameLocations":["1049:14:27"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"1049:14:27"},"referencedDeclaration":24925,"src":"1049:14:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}}},{"constant":false,"documentation":{"id":12867,"nodeType":"StructuredDocumentation","src":"1068:111:27","text":" @dev Tracks the amount of assets invested in the yieldVault, up to the last time it was recorded"},"id":12869,"mutability":"mutable","name":"_invested","nameLocation":"1199:9:27","nodeType":"VariableDeclaration","scope":13500,"src":"1182:26:27","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12868,"name":"uint256","nodeType":"ElementaryTypeName","src":"1182:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"documentation":{"id":12870,"nodeType":"StructuredDocumentation","src":"1213:88:27","text":"@notice Thrown when the yield vault is unset or invalid for the configured currency."},"errorSelector":"89592691","id":12872,"name":"InvalidYieldVault","nameLocation":"1310:17:27","nodeType":"ErrorDefinition","parameters":{"id":12871,"nodeType":"ParameterList","parameters":[],"src":"1327:2:27"},"src":"1304:26:27"},{"documentation":{"id":12873,"nodeType":"StructuredDocumentation","src":"1333:218:27","text":" @notice Thrown when trying to invest more cash than currently liquid in the reserve.\n @param required The requested amount of liquid funds\n @param available The currently available liquid balance"},"errorSelector":"a62613f6","id":12879,"name":"NotEnoughCash","nameLocation":"1560:13:27","nodeType":"ErrorDefinition","parameters":{"id":12878,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12875,"mutability":"mutable","name":"required","nameLocation":"1582:8:27","nodeType":"VariableDeclaration","scope":12879,"src":"1574:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12874,"name":"uint256","nodeType":"ElementaryTypeName","src":"1574:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12877,"mutability":"mutable","name":"available","nameLocation":"1600:9:27","nodeType":"VariableDeclaration","scope":12879,"src":"1592:17:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12876,"name":"uint256","nodeType":"ElementaryTypeName","src":"1592:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1573:37:27"},"src":"1554:57:27"},{"documentation":{"id":12880,"nodeType":"StructuredDocumentation","src":"1614:159:27","text":" @notice Thrown when attempting to transfer to the zero address.\n @param receiver The receiver that was provided (cannot be the zero address)"},"errorSelector":"c84fe4e6","id":12884,"name":"ReserveInvalidReceiver","nameLocation":"1782:22:27","nodeType":"ErrorDefinition","parameters":{"id":12883,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12882,"mutability":"mutable","name":"receiver","nameLocation":"1813:8:27","nodeType":"VariableDeclaration","scope":12884,"src":"1805:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12881,"name":"address","nodeType":"ElementaryTypeName","src":"1805:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1804:18:27"},"src":"1776:47:27"},{"anonymous":false,"documentation":{"id":12885,"nodeType":"StructuredDocumentation","src":"1827:415:27","text":" @notice Emitted when the yield vault is changed.\n @dev When replacing an existing vault, the reserve attempts to redeem the full position (unless `force` is used).\n @param oldVault The previous yield vault (can be `address(0)`)\n @param newVault The new yield vault (can be `address(0)`)\n @param forced True if the switch ignored a partial/failed deinvestment and proceeded anyway"},"eventSelector":"243f9479bbdaf9f3395e726975293ee3724f3819f4322a018c98afb9de70a1e0","id":12895,"name":"YieldVaultChanged","nameLocation":"2251:17:27","nodeType":"EventDefinition","parameters":{"id":12894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12888,"indexed":true,"mutability":"mutable","name":"oldVault","nameLocation":"2286:8:27","nodeType":"VariableDeclaration","scope":12895,"src":"2269:25:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":12887,"nodeType":"UserDefinedTypeName","pathNode":{"id":12886,"name":"IERC4626","nameLocations":["2269:8:27"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"2269:8:27"},"referencedDeclaration":22463,"src":"2269:8:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":12891,"indexed":true,"mutability":"mutable","name":"newVault","nameLocation":"2313:8:27","nodeType":"VariableDeclaration","scope":12895,"src":"2296:25:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":12890,"nodeType":"UserDefinedTypeName","pathNode":{"id":12889,"name":"IERC4626","nameLocations":["2296:8:27"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"2296:8:27"},"referencedDeclaration":22463,"src":"2296:8:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":12893,"indexed":false,"mutability":"mutable","name":"forced","nameLocation":"2328:6:27","nodeType":"VariableDeclaration","scope":12895,"src":"2323:11:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12892,"name":"bool","nodeType":"ElementaryTypeName","src":"2323:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2268:67:27"},"src":"2245:91:27"},{"anonymous":false,"documentation":{"id":12896,"nodeType":"StructuredDocumentation","src":"2340:201:27","text":" @notice Emitted when a forced deinvestment ignored a redeem failure.\n @param oldVault The vault that failed to redeem\n @param shares The number of shares attempted to redeem"},"eventSelector":"25bce30047860a48c9d8830dbf31873be5434f4d28f14a5808a4ea8e35d08296","id":12903,"name":"ErrorIgnoredDeinvestingVault","nameLocation":"2550:28:27","nodeType":"EventDefinition","parameters":{"id":12902,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12899,"indexed":true,"mutability":"mutable","name":"oldVault","nameLocation":"2596:8:27","nodeType":"VariableDeclaration","scope":12903,"src":"2579:25:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":12898,"nodeType":"UserDefinedTypeName","pathNode":{"id":12897,"name":"IERC4626","nameLocations":["2579:8:27"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"2579:8:27"},"referencedDeclaration":22463,"src":"2579:8:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":12901,"indexed":false,"mutability":"mutable","name":"shares","nameLocation":"2614:6:27","nodeType":"VariableDeclaration","scope":12903,"src":"2606:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12900,"name":"uint256","nodeType":"ElementaryTypeName","src":"2606:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2578:43:27"},"src":"2544:78:27"},{"anonymous":false,"documentation":{"id":12904,"nodeType":"StructuredDocumentation","src":"2626:244:27","text":" @notice Event emitted when investment yields are accounted in the reserve\n @param earnings The amount of earnings generated since last record. It's positive in the case of earnings or\n negative when there are losses."},"eventSelector":"731c439c5bae15be1344eec709967e046b4f7d3f7e37abeffc5247f448fa18bf","id":12908,"name":"EarningsRecorded","nameLocation":"2879:16:27","nodeType":"EventDefinition","parameters":{"id":12907,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12906,"indexed":false,"mutability":"mutable","name":"earnings","nameLocation":"2903:8:27","nodeType":"VariableDeclaration","scope":12908,"src":"2896:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":12905,"name":"int256","nodeType":"ElementaryTypeName","src":"2896:6:27","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"2895:17:27"},"src":"2873:40:27"},{"body":{"id":12918,"nodeType":"Block","src":"3161:2:27","statements":[]},"documentation":{"id":12909,"nodeType":"StructuredDocumentation","src":"3040:48:27","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":12919,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":12915,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12912,"src":"3148:11:27","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}}],"id":12916,"kind":"baseConstructorSpecifier","modifierName":{"id":12914,"name":"PolicyPoolComponent","nameLocations":["3128:19:27"],"nodeType":"IdentifierPath","referencedDeclaration":11094,"src":"3128:19:27"},"nodeType":"ModifierInvocation","src":"3128:32:27"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":12913,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12912,"mutability":"mutable","name":"policyPool_","nameLocation":"3115:11:27","nodeType":"VariableDeclaration","scope":12919,"src":"3103:23:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"},"typeName":{"id":12911,"nodeType":"UserDefinedTypeName","pathNode":{"id":12910,"name":"IPolicyPool","nameLocations":["3103:11:27"],"nodeType":"IdentifierPath","referencedDeclaration":14638,"src":"3103:11:27"},"referencedDeclaration":14638,"src":"3103:11:27","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"3102:25:27"},"returnParameters":{"id":12917,"nodeType":"ParameterList","parameters":[],"src":"3161:0:27"},"scope":13500,"src":"3091:72:27","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":12928,"nodeType":"Block","src":"3345:39:27","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":12925,"name":"__PolicyPoolComponent_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11015,"src":"3351:26:27","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":12926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3351:28:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12927,"nodeType":"ExpressionStatement","src":"3351:28:27"}]},"documentation":{"id":12920,"nodeType":"StructuredDocumentation","src":"3167:72:27","text":" @dev Initializes the Reserve (to be called by subclasses)"},"id":12929,"implemented":true,"kind":"function","modifiers":[{"id":12923,"kind":"modifierInvocation","modifierName":{"id":12922,"name":"onlyInitializing","nameLocations":["3328:16:27"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"3328:16:27"},"nodeType":"ModifierInvocation","src":"3328:16:27"}],"name":"__Reserve_init","nameLocation":"3302:14:27","nodeType":"FunctionDefinition","parameters":{"id":12921,"nodeType":"ParameterList","parameters":[],"src":"3316:2:27"},"returnParameters":{"id":12924,"nodeType":"ParameterList","parameters":[],"src":"3345:0:27"},"scope":13500,"src":"3293:91:27","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":13002,"nodeType":"Block","src":"4101:443:27","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":12943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12938,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12932,"src":"4115:11:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":12941,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4138:1:27","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":12940,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4130:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12939,"name":"address","nodeType":"ElementaryTypeName","src":"4130:7:27","typeDescriptions":{}}},"id":12942,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4130:10:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4115:25:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":12945,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12932,"src":"4165:11:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":12944,"name":"ReserveInvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12884,"src":"4142:22:27","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":12946,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4142:35:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":12937,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4107:7:27","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":12947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4107:71:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12948,"nodeType":"ExpressionStatement","src":"4107:71:27"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12949,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12934,"src":"4188:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12950,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4198:1:27","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4188:11:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12953,"nodeType":"IfStatement","src":"4184:24:27","trueBody":{"functionReturnParameters":12936,"id":12952,"nodeType":"Return","src":"4201:7:27"}},{"assignments":[12955],"declarations":[{"constant":false,"id":12955,"mutability":"mutable","name":"balance","nameLocation":"4221:7:27","nodeType":"VariableDeclaration","scope":13002,"src":"4213:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12954,"name":"uint256","nodeType":"ElementaryTypeName","src":"4213:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12958,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":12956,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13308,"src":"4231:8:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":12957,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4231:10:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"4213:28:27"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12959,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12955,"src":"4251:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":12960,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12934,"src":"4261:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4251:16:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12987,"nodeType":"IfStatement","src":"4247:209:27","trueBody":{"id":12986,"nodeType":"Block","src":"4269:187:27","statements":[{"assignments":[12964],"declarations":[{"constant":false,"id":12964,"mutability":"mutable","name":"yv","nameLocation":"4286:2:27","nodeType":"VariableDeclaration","scope":12986,"src":"4277:11:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":12963,"nodeType":"UserDefinedTypeName","pathNode":{"id":12962,"name":"IERC4626","nameLocations":["4277:8:27"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"4277:8:27"},"referencedDeclaration":22463,"src":"4277:8:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"id":12967,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":12965,"name":"yieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13010,"src":"4291:10:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC4626_$22463_$","typeString":"function () view returns (contract IERC4626)"}},"id":12966,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4291:12:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"nodeType":"VariableDeclarationStatement","src":"4277:26:27"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":12976,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":12970,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12964,"src":"4323:2:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":12969,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4315:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12968,"name":"address","nodeType":"ElementaryTypeName","src":"4315:7:27","typeDescriptions":{}}},"id":12971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4315:11:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":12974,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4338:1:27","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":12973,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4330:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12972,"name":"address","nodeType":"ElementaryTypeName","src":"4330:7:27","typeDescriptions":{}}},"id":12975,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4330:10:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4315:25:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12985,"nodeType":"IfStatement","src":"4311:81:27","trueBody":{"id":12984,"nodeType":"Block","src":"4342:50:27","statements":[{"expression":{"arguments":[{"id":12978,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12964,"src":"4362:2:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12981,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12979,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12934,"src":"4366:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12980,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12955,"src":"4375:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4366:16:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12977,"name":"_deinvest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13215,"src":"4352:9:27","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$22463_$_t_uint256_$returns$__$","typeString":"function (contract IERC4626,uint256)"}},"id":12982,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4352:31:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12983,"nodeType":"ExpressionStatement","src":"4352:31:27"}]}}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":12993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12988,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12932,"src":"4465:11:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":12991,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4488:4:27","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}],"id":12990,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4480:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":12989,"name":"address","nodeType":"ElementaryTypeName","src":"4480:7:27","typeDescriptions":{}}},"id":12992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4480:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4465:28:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13001,"nodeType":"IfStatement","src":"4461:78:27","trueBody":{"expression":{"arguments":[{"id":12997,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12932,"src":"4519:11:27","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":12998,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12934,"src":"4532:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":12994,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11088,"src":"4495:8:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$24925_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":12995,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4495:10:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":12996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4506:12:27","memberName":"safeTransfer","nodeType":"MemberAccess","referencedDeclaration":25010,"src":"4495:23:27","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$24193_$","typeString":"function (contract IERC20,address,uint256)"}},"id":12999,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4495:44:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13000,"nodeType":"ExpressionStatement","src":"4495:44:27"}}]},"documentation":{"id":12930,"nodeType":"StructuredDocumentation","src":"3388:643:27","text":" @dev Internal function that transfers money to a destination. It might need to call `_deinvest` to deinvest\n      some money to have enough liquidity for the payment.\n @param destination The destination of the transfer. If destination == address(this) it doesn't transfer, just\n                    makes sure the amount is available.\n @param amount The amount to be transferred.\n @custom:pre `destination` must not be `address(0)`\n @custom:pre If a yield vault is configured, it must be compatible with {currency()}\n @custom:throws ReserveInvalidReceiver if `destination == address(0)`"},"id":13003,"implemented":true,"kind":"function","modifiers":[],"name":"_transferTo","nameLocation":"4043:11:27","nodeType":"FunctionDefinition","parameters":{"id":12935,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12932,"mutability":"mutable","name":"destination","nameLocation":"4063:11:27","nodeType":"VariableDeclaration","scope":13003,"src":"4055:19:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12931,"name":"address","nodeType":"ElementaryTypeName","src":"4055:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":12934,"mutability":"mutable","name":"amount","nameLocation":"4084:6:27","nodeType":"VariableDeclaration","scope":13003,"src":"4076:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12933,"name":"uint256","nodeType":"ElementaryTypeName","src":"4076:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4054:37:27"},"returnParameters":{"id":12936,"nodeType":"ParameterList","parameters":[],"src":"4101:0:27"},"scope":13500,"src":"4034:510:27","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"documentation":{"id":13004,"nodeType":"StructuredDocumentation","src":"4548:195:27","text":" @notice Returns the address of the yield vault, where the part of the funds are invested to generate additional\n      yields. Can be `address(0)` if no yieldVault has been set."},"functionSelector":"a7f8a5e2","id":13010,"implemented":false,"kind":"function","modifiers":[],"name":"yieldVault","nameLocation":"4755:10:27","nodeType":"FunctionDefinition","parameters":{"id":13005,"nodeType":"ParameterList","parameters":[],"src":"4765:2:27"},"returnParameters":{"id":13009,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13008,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13010,"src":"4797:8:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":13007,"nodeType":"UserDefinedTypeName","pathNode":{"id":13006,"name":"IERC4626","nameLocations":["4797:8:27"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"4797:8:27"},"referencedDeclaration":22463,"src":"4797:8:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"4796:10:27"},"scope":13500,"src":"4746:61:27","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":13011,"nodeType":"StructuredDocumentation","src":"4811:384:27","text":" @dev Internal function that needs to be implemented by child contracts because they might store the yield vault\n address in a different way. This function just stores the value, doesn't do any validation (validations are done\n on `setYieldVault`.\n @param newYieldVault The address of the new Yield vault. The yield vault is an ERC-4626 compatible vault"},"id":13017,"implemented":false,"kind":"function","modifiers":[],"name":"_setYieldVault","nameLocation":"5207:14:27","nodeType":"FunctionDefinition","parameters":{"id":13015,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13014,"mutability":"mutable","name":"newYieldVault","nameLocation":"5231:13:27","nodeType":"VariableDeclaration","scope":13017,"src":"5222:22:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":13013,"nodeType":"UserDefinedTypeName","pathNode":{"id":13012,"name":"IERC4626","nameLocations":["5222:8:27"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"5222:8:27"},"referencedDeclaration":22463,"src":"5222:8:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"5221:24:27"},"returnParameters":{"id":13016,"nodeType":"ParameterList","parameters":[],"src":"5262:0:27"},"scope":13500,"src":"5198:65:27","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":13025,"nodeType":"Block","src":"5454:27:27","statements":[{"expression":{"id":13023,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12869,"src":"5467:9:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13022,"id":13024,"nodeType":"Return","src":"5460:16:27"}]},"documentation":{"id":13018,"nodeType":"StructuredDocumentation","src":"5267:130:27","text":" @notice Returns the amount of funds that were invested in the yieldVault, up to the last recorded earnings / losses"},"functionSelector":"7d919a97","id":13026,"implemented":true,"kind":"function","modifiers":[],"name":"investedInYV","nameLocation":"5409:12:27","nodeType":"FunctionDefinition","parameters":{"id":13019,"nodeType":"ParameterList","parameters":[],"src":"5421:2:27"},"returnParameters":{"id":13022,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13021,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13026,"src":"5445:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13020,"name":"uint256","nodeType":"ElementaryTypeName","src":"5445:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5444:9:27"},"scope":13500,"src":"5400:81:27","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":13036,"nodeType":"Block","src":"5887:42:27","statements":[{"eventCall":{"arguments":[{"id":13033,"name":"earnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13029,"src":"5915:8:27","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13032,"name":"EarningsRecorded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12908,"src":"5898:16:27","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":13034,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5898:26:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13035,"nodeType":"EmitStatement","src":"5893:31:27"}]},"documentation":{"id":13027,"nodeType":"StructuredDocumentation","src":"5485:341:27","text":" @dev Internal function that needs to be implemented by child contracts to record the earnings (or losses if\n negative) generated by the yield vault\n @param earnings The amount of earnings (or losses if negative) generated since last time the earnings were\n recorded.\n @custom:emits {EarningsRecorded}"},"id":13037,"implemented":true,"kind":"function","modifiers":[],"name":"_yieldEarnings","nameLocation":"5838:14:27","nodeType":"FunctionDefinition","parameters":{"id":13030,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13029,"mutability":"mutable","name":"earnings","nameLocation":"5860:8:27","nodeType":"VariableDeclaration","scope":13037,"src":"5853:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13028,"name":"int256","nodeType":"ElementaryTypeName","src":"5853:6:27","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"5852:17:27"},"returnParameters":{"id":13031,"nodeType":"ParameterList","parameters":[],"src":"5887:0:27"},"scope":13500,"src":"5829:100:27","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":13167,"nodeType":"Block","src":"6894:922:27","statements":[{"assignments":[13047],"declarations":[{"constant":false,"id":13047,"mutability":"mutable","name":"forced","nameLocation":"6905:6:27","nodeType":"VariableDeclaration","scope":13167,"src":"6900:11:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13046,"name":"bool","nodeType":"ElementaryTypeName","src":"6900:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":13048,"nodeType":"VariableDeclarationStatement","src":"6900:11:27"},{"assignments":[13051],"declarations":[{"constant":false,"id":13051,"mutability":"mutable","name":"asset","nameLocation":"6932:5:27","nodeType":"VariableDeclaration","scope":13167,"src":"6917:20:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"},"typeName":{"id":13050,"nodeType":"UserDefinedTypeName","pathNode":{"id":13049,"name":"IERC20Metadata","nameLocations":["6917:14:27"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"6917:14:27"},"referencedDeclaration":24925,"src":"6917:14:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"id":13054,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":13052,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11088,"src":"6940:8:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$24925_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":13053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6940:10:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"nodeType":"VariableDeclarationStatement","src":"6917:33:27"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":13073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":13064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13058,"name":"newYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13041,"src":"6972:13:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":13057,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6964:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13056,"name":"address","nodeType":"ElementaryTypeName","src":"6964:7:27","typeDescriptions":{}}},"id":13059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6964:22:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":13062,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6998:1:27","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":13061,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6990:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13060,"name":"address","nodeType":"ElementaryTypeName","src":"6990:7:27","typeDescriptions":{}}},"id":13063,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6990:10:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6964:36:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":13072,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":13065,"name":"newYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13041,"src":"7004:13:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":13066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7018:5:27","memberName":"asset","nodeType":"MemberAccess","referencedDeclaration":22332,"src":"7004:19:27","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":13067,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7004:21:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":13070,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13051,"src":"7037:5:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}],"id":13069,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7029:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13068,"name":"address","nodeType":"ElementaryTypeName","src":"7029:7:27","typeDescriptions":{}}},"id":13071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7029:14:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7004:39:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6964:79:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":13074,"name":"InvalidYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12872,"src":"7045:17:27","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7045:19:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":13055,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"6956:7:27","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":13076,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6956:109:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13077,"nodeType":"ExpressionStatement","src":"6956:109:27"},{"assignments":[13080],"declarations":[{"constant":false,"id":13080,"mutability":"mutable","name":"oldYV","nameLocation":"7080:5:27","nodeType":"VariableDeclaration","scope":13167,"src":"7071:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":13079,"nodeType":"UserDefinedTypeName","pathNode":{"id":13078,"name":"IERC4626","nameLocations":["7071:8:27"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"7071:8:27"},"referencedDeclaration":22463,"src":"7071:8:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"id":13083,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":13081,"name":"yieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13010,"src":"7088:10:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC4626_$22463_$","typeString":"function () view returns (contract IERC4626)"}},"id":13082,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7088:12:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"nodeType":"VariableDeclarationStatement","src":"7071:29:27"},{"assignments":[13085],"declarations":[{"constant":false,"id":13085,"mutability":"mutable","name":"deinvested","nameLocation":"7114:10:27","nodeType":"VariableDeclaration","scope":13167,"src":"7106:18:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13084,"name":"uint256","nodeType":"ElementaryTypeName","src":"7106:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13086,"nodeType":"VariableDeclarationStatement","src":"7106:18:27"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":13095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13089,"name":"oldYV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13080,"src":"7143:5:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":13088,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7135:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13087,"name":"address","nodeType":"ElementaryTypeName","src":"7135:7:27","typeDescriptions":{}}},"id":13090,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7135:14:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":13093,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7161:1:27","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":13092,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7153:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13091,"name":"address","nodeType":"ElementaryTypeName","src":"7153:7:27","typeDescriptions":{}}},"id":13094,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7153:10:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7135:28:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13140,"nodeType":"IfStatement","src":"7131:459:27","trueBody":{"id":13139,"nodeType":"Block","src":"7165:425:27","statements":[{"assignments":[13097],"declarations":[{"constant":false,"id":13097,"mutability":"mutable","name":"yvShares","nameLocation":"7181:8:27","nodeType":"VariableDeclaration","scope":13139,"src":"7173:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13096,"name":"uint256","nodeType":"ElementaryTypeName","src":"7173:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13105,"initialValue":{"arguments":[{"arguments":[{"id":13102,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7216:4:27","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}],"id":13101,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7208:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13100,"name":"address","nodeType":"ElementaryTypeName","src":"7208:7:27","typeDescriptions":{}}},"id":13103,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7208:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":13098,"name":"oldYV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13080,"src":"7192:5:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":13099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7198:9:27","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":24150,"src":"7192:15:27","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":13104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7192:30:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7173:49:27"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13106,"name":"yvShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13097,"src":"7234:8:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":13107,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7246:1:27","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7234:13:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13138,"nodeType":"IfStatement","src":"7230:354:27","trueBody":{"id":13137,"nodeType":"Block","src":"7249:335:27","statements":[{"condition":{"id":13109,"name":"force","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13043,"src":"7263:5:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13135,"nodeType":"Block","src":"7431:145:27","statements":[{"expression":{"id":13133,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13120,"name":"deinvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13085,"src":"7500:10:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":13123,"name":"yvShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13097,"src":"7526:8:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":13126,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7544:4:27","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}],"id":13125,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7536:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13124,"name":"address","nodeType":"ElementaryTypeName","src":"7536:7:27","typeDescriptions":{}}},"id":13127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7536:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":13130,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7559:4:27","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}],"id":13129,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7551:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13128,"name":"address","nodeType":"ElementaryTypeName","src":"7551:7:27","typeDescriptions":{}}},"id":13131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7551:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":13121,"name":"oldYV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13080,"src":"7513:5:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":13122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7519:6:27","memberName":"redeem","nodeType":"MemberAccess","referencedDeclaration":22462,"src":"7513:12:27","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address,address) external returns (uint256)"}},"id":13132,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7513:52:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7500:65:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13134,"nodeType":"ExpressionStatement","src":"7500:65:27"}]},"id":13136,"nodeType":"IfStatement","src":"7259:317:27","trueBody":{"id":13119,"nodeType":"Block","src":"7270:155:27","statements":[{"expression":{"id":13117,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":13110,"name":"deinvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13085,"src":"7359:10:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13111,"name":"forced","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13047,"src":"7371:6:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":13112,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"7358:20:27","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_bool_$","typeString":"tuple(uint256,bool)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":13114,"name":"oldYV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13080,"src":"7398:5:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},{"id":13115,"name":"yvShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13097,"src":"7405:8:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13113,"name":"_safeDeInvestAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13290,"src":"7381:16:27","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$22463_$_t_uint256_$returns$_t_uint256_$_t_bool_$","typeString":"function (contract IERC4626,uint256) returns (uint256,bool)"}},"id":13116,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7381:33:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_bool_$","typeString":"tuple(uint256,bool)"}},"src":"7358:56:27","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13118,"nodeType":"ExpressionStatement","src":"7358:56:27"}]}}]}}]}},{"expression":{"arguments":[{"id":13142,"name":"newYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13041,"src":"7610:13:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":13141,"name":"_setYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13017,"src":"7595:14:27","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$22463_$returns$__$","typeString":"function (contract IERC4626)"}},"id":13143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7595:29:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13144,"nodeType":"ExpressionStatement","src":"7595:29:27"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13154,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13148,"name":"deinvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13085,"src":"7702:10:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13147,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7695:6:27","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":13146,"name":"int256","nodeType":"ElementaryTypeName","src":"7695:6:27","typeDescriptions":{}}},"id":13149,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7695:18:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":13152,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12869,"src":"7723:9:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13151,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7716:6:27","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":13150,"name":"int256","nodeType":"ElementaryTypeName","src":"7716:6:27","typeDescriptions":{}}},"id":13153,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7716:17:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"7695:38:27","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13145,"name":"_yieldEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13037,"src":"7680:14:27","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":13155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7680:54:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13156,"nodeType":"ExpressionStatement","src":"7680:54:27"},{"expression":{"id":13159,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13157,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12869,"src":"7740:9:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":13158,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7752:1:27","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7740:13:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13160,"nodeType":"ExpressionStatement","src":"7740:13:27"},{"eventCall":{"arguments":[{"id":13162,"name":"oldYV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13080,"src":"7782:5:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},{"id":13163,"name":"newYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13041,"src":"7789:13:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},{"id":13164,"name":"forced","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13047,"src":"7804:6:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":13161,"name":"YieldVaultChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12895,"src":"7764:17:27","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IERC4626_$22463_$_t_contract$_IERC4626_$22463_$_t_bool_$returns$__$","typeString":"function (contract IERC4626,contract IERC4626,bool)"}},"id":13165,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7764:47:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13166,"nodeType":"EmitStatement","src":"7759:52:27"}]},"documentation":{"id":13038,"nodeType":"StructuredDocumentation","src":"5933:890:27","text":" @notice Sets the new yield vault for this reserve. If the reserve had previously a yield vault, it will deinvest all\n the funds, making all of the liquid in the reserve balance.\n @param newYieldVault The address of the new yield vault to assign to the reserve. If is `address(0)` it means\n                      the reserve will not have a yield vault. If not `address(0)` it MUST be an IERC4626\n                      where `newYieldVault.asset()` equals `.currency()`\n @param force When a previous yield vault exists, before setting the new one, the funds are deinvested. When\n              `force` is true, an error in the deinvestment of the assets (or some assets not withdrawable)\n              will be ignored. When `force` is false, it will revert if `oldVault.balanceOf(address(this)) != 0`.\n @custom:emits {YieldVaultChanged}"},"functionSelector":"194448e5","id":13168,"implemented":true,"kind":"function","modifiers":[],"name":"setYieldVault","nameLocation":"6835:13:27","nodeType":"FunctionDefinition","parameters":{"id":13044,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13041,"mutability":"mutable","name":"newYieldVault","nameLocation":"6858:13:27","nodeType":"VariableDeclaration","scope":13168,"src":"6849:22:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":13040,"nodeType":"UserDefinedTypeName","pathNode":{"id":13039,"name":"IERC4626","nameLocations":["6849:8:27"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"6849:8:27"},"referencedDeclaration":22463,"src":"6849:8:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":13043,"mutability":"mutable","name":"force","nameLocation":"6878:5:27","nodeType":"VariableDeclaration","scope":13168,"src":"6873:10:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13042,"name":"bool","nodeType":"ElementaryTypeName","src":"6873:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6848:36:27"},"returnParameters":{"id":13045,"nodeType":"ParameterList","parameters":[],"src":"6894:0:27"},"scope":13500,"src":"6826:990:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":13214,"nodeType":"Block","src":"8591:320:27","statements":[{"expression":{"arguments":[{"id":13180,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13174,"src":"8618:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":13183,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"8634:4:27","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}],"id":13182,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8626:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13181,"name":"address","nodeType":"ElementaryTypeName","src":"8626:7:27","typeDescriptions":{}}},"id":13184,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8626:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":13187,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"8649:4:27","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}],"id":13186,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8641:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13185,"name":"address","nodeType":"ElementaryTypeName","src":"8641:7:27","typeDescriptions":{}}},"id":13188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8641:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":13177,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13172,"src":"8597:11:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":13179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8609:8:27","memberName":"withdraw","nodeType":"MemberAccess","referencedDeclaration":22434,"src":"8597:20:27","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address,address) external returns (uint256)"}},"id":13189,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8597:58:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13190,"nodeType":"ExpressionStatement","src":"8597:58:27"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13191,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13174,"src":"8665:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":13192,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12869,"src":"8674:9:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8665:18:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13212,"nodeType":"Block","src":"8873:34:27","statements":[{"expression":{"id":13210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13208,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12869,"src":"8881:9:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":13209,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13174,"src":"8894:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8881:19:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13211,"nodeType":"ExpressionStatement","src":"8881:19:27"}]},"id":13213,"nodeType":"IfStatement","src":"8661:246:27","trueBody":{"id":13207,"nodeType":"Block","src":"8685:182:27","statements":[{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13197,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13174,"src":"8819:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":13198,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12869,"src":"8828:9:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8819:18:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13196,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8812:6:27","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":13195,"name":"int256","nodeType":"ElementaryTypeName","src":"8812:6:27","typeDescriptions":{}}},"id":13200,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8812:26:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13194,"name":"_yieldEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13037,"src":"8797:14:27","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":13201,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8797:42:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13202,"nodeType":"ExpressionStatement","src":"8797:42:27"},{"expression":{"id":13205,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13203,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12869,"src":"8847:9:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":13204,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8859:1:27","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8847:13:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13206,"nodeType":"ExpressionStatement","src":"8847:13:27"}]}}]},"documentation":{"id":13169,"nodeType":"StructuredDocumentation","src":"7820:702:27","text":" @dev Internal helper to deinvest `amount` assets from `yieldVault_`.\n It calls `withdraw(amount, address(this), address(this))` on the vault and updates `_invested`,\n also recording earnings if more than the tracked `_invested` is recovered.\n Although the protocol usually operates with safe investments where significant losses are not expected,\n there could be losses anyway. Calls to deinvest should be preceded by a call to `recordEarnings()`\n in situations where accurate earnings/losses tracking is required (like LP withdrawals).\n @param yieldVault_ Yield vault to deinvest from\n @param amount Amount of assets to withdraw from the vault"},"id":13215,"implemented":true,"kind":"function","modifiers":[],"name":"_deinvest","nameLocation":"8534:9:27","nodeType":"FunctionDefinition","parameters":{"id":13175,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13172,"mutability":"mutable","name":"yieldVault_","nameLocation":"8553:11:27","nodeType":"VariableDeclaration","scope":13215,"src":"8544:20:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":13171,"nodeType":"UserDefinedTypeName","pathNode":{"id":13170,"name":"IERC4626","nameLocations":["8544:8:27"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"8544:8:27"},"referencedDeclaration":22463,"src":"8544:8:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":13174,"mutability":"mutable","name":"amount","nameLocation":"8574:6:27","nodeType":"VariableDeclaration","scope":13215,"src":"8566:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13173,"name":"uint256","nodeType":"ElementaryTypeName","src":"8566:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8543:38:27"},"returnParameters":{"id":13176,"nodeType":"ParameterList","parameters":[],"src":"8591:0:27"},"scope":13500,"src":"8525:386:27","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":13289,"nodeType":"Block","src":"9495:482:27","statements":[{"clauses":[{"block":{"id":13251,"nodeType":"Block","src":"9567:159:27","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13240,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13238,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13236,"src":"9579:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":13239,"name":"sharesToRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13221,"src":"9588:14:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9579:23:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13250,"nodeType":"IfStatement","src":"9575:94:27","trueBody":{"id":13249,"nodeType":"Block","src":"9604:65:27","statements":[{"expression":{"id":13243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13241,"name":"forced","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13226,"src":"9614:6:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":13242,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9623:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"9614:13:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13244,"nodeType":"ExpressionStatement","src":"9614:13:27"},{"expression":{"id":13247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13245,"name":"sharesToRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13221,"src":"9637:14:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13246,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13236,"src":"9654:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9637:23:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13248,"nodeType":"ExpressionStatement","src":"9637:23:27"}]}}]},"errorName":"","id":13252,"nodeType":"TryCatchClause","parameters":{"id":13237,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13236,"mutability":"mutable","name":"result","nameLocation":"9559:6:27","nodeType":"VariableDeclaration","scope":13252,"src":"9551:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13235,"name":"uint256","nodeType":"ElementaryTypeName","src":"9551:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9550:16:27"},"src":"9542:184:27"},{"block":{"id":13253,"nodeType":"Block","src":"9733:2:27","statements":[]},"errorName":"","id":13254,"nodeType":"TryCatchClause","src":"9727:8:27"}],"externalCall":{"arguments":[{"arguments":[{"id":13232,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"9535:4:27","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}],"id":13231,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9527:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13230,"name":"address","nodeType":"ElementaryTypeName","src":"9527:7:27","typeDescriptions":{}}},"id":13233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9527:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":13228,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13219,"src":"9505:11:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":13229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9517:9:27","memberName":"maxRedeem","nodeType":"MemberAccess","referencedDeclaration":22442,"src":"9505:21:27","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":13234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9505:36:27","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13255,"nodeType":"TryStatement","src":"9501:234:27"},{"clauses":[{"block":{"id":13275,"nodeType":"Block","src":"9834:34:27","statements":[{"expression":{"id":13273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13271,"name":"deinvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13224,"src":"9842:10:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13272,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13269,"src":"9855:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9842:19:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13274,"nodeType":"ExpressionStatement","src":"9842:19:27"}]},"errorName":"","id":13276,"nodeType":"TryCatchClause","parameters":{"id":13270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13269,"mutability":"mutable","name":"result","nameLocation":"9826:6:27","nodeType":"VariableDeclaration","scope":13276,"src":"9818:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13268,"name":"uint256","nodeType":"ElementaryTypeName","src":"9818:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9817:16:27"},"src":"9809:59:27"},{"block":{"id":13286,"nodeType":"Block","src":"9875:98:27","statements":[{"eventCall":{"arguments":[{"id":13278,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13219,"src":"9917:11:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},{"id":13279,"name":"sharesToRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13221,"src":"9930:14:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13277,"name":"ErrorIgnoredDeinvestingVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12903,"src":"9888:28:27","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IERC4626_$22463_$_t_uint256_$returns$__$","typeString":"function (contract IERC4626,uint256)"}},"id":13280,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9888:57:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13281,"nodeType":"EmitStatement","src":"9883:62:27"},{"expression":{"id":13284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13282,"name":"forced","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13226,"src":"9953:6:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":13283,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9962:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"9953:13:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13285,"nodeType":"ExpressionStatement","src":"9953:13:27"}]},"errorName":"","id":13287,"nodeType":"TryCatchClause","src":"9869:104:27"}],"externalCall":{"arguments":[{"id":13258,"name":"sharesToRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13221,"src":"9763:14:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":13261,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"9787:4:27","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}],"id":13260,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9779:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13259,"name":"address","nodeType":"ElementaryTypeName","src":"9779:7:27","typeDescriptions":{}}},"id":13262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9779:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":13265,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"9802:4:27","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}],"id":13264,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9794:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13263,"name":"address","nodeType":"ElementaryTypeName","src":"9794:7:27","typeDescriptions":{}}},"id":13266,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9794:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":13256,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13219,"src":"9744:11:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":13257,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9756:6:27","memberName":"redeem","nodeType":"MemberAccess","referencedDeclaration":22462,"src":"9744:18:27","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address,address) external returns (uint256)"}},"id":13267,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9744:64:27","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13288,"nodeType":"TryStatement","src":"9740:233:27"}]},"documentation":{"id":13216,"nodeType":"StructuredDocumentation","src":"8915:442:27","text":" @dev Deinvests all the funds or as much as possible, without failing.\n @param yieldVault_ Yield vault to deinvest from\n @param sharesToRedeem Initial amount of shares to redeem\n @return deinvested The amount that was withdrawn from the vault\n @return forced If true, it indicates that something failed and it wasn't able to withdraw all the funds\n @custom:emits {ErrorIgnoredDeinvestingVault}"},"id":13290,"implemented":true,"kind":"function","modifiers":[],"name":"_safeDeInvestAll","nameLocation":"9369:16:27","nodeType":"FunctionDefinition","parameters":{"id":13222,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13219,"mutability":"mutable","name":"yieldVault_","nameLocation":"9400:11:27","nodeType":"VariableDeclaration","scope":13290,"src":"9391:20:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":13218,"nodeType":"UserDefinedTypeName","pathNode":{"id":13217,"name":"IERC4626","nameLocations":["9391:8:27"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"9391:8:27"},"referencedDeclaration":22463,"src":"9391:8:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":13221,"mutability":"mutable","name":"sharesToRedeem","nameLocation":"9425:14:27","nodeType":"VariableDeclaration","scope":13290,"src":"9417:22:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13220,"name":"uint256","nodeType":"ElementaryTypeName","src":"9417:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9385:58:27"},"returnParameters":{"id":13227,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13224,"mutability":"mutable","name":"deinvested","nameLocation":"9470:10:27","nodeType":"VariableDeclaration","scope":13290,"src":"9462:18:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13223,"name":"uint256","nodeType":"ElementaryTypeName","src":"9462:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13226,"mutability":"mutable","name":"forced","nameLocation":"9487:6:27","nodeType":"VariableDeclaration","scope":13290,"src":"9482:11:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13225,"name":"bool","nodeType":"ElementaryTypeName","src":"9482:4:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9461:33:27"},"scope":13500,"src":"9360:617:27","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":13307,"nodeType":"Block","src":"10129:69:27","statements":[{"expression":{"arguments":[{"arguments":[{"id":13303,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"10187:4:27","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}],"id":13302,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10179:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13301,"name":"address","nodeType":"ElementaryTypeName","src":"10179:7:27","typeDescriptions":{}}},"id":13304,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10179:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":13297,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11088,"src":"10157:8:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$24925_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":13298,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10157:10:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}],"id":13296,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"10142:14:27","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$24925_$","typeString":"type(contract IERC20Metadata)"}},"id":13299,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10142:26:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":13300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10169:9:27","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":24150,"src":"10142:36:27","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":13305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10142:51:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13295,"id":13306,"nodeType":"Return","src":"10135:58:27"}]},"documentation":{"id":13291,"nodeType":"StructuredDocumentation","src":"9981:93:27","text":" @dev Returns the liquid balance of `currency()` held directly by this reserve."},"id":13308,"implemented":true,"kind":"function","modifiers":[],"name":"_balance","nameLocation":"10086:8:27","nodeType":"FunctionDefinition","parameters":{"id":13292,"nodeType":"ParameterList","parameters":[],"src":"10094:2:27"},"returnParameters":{"id":13295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13294,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13308,"src":"10120:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13293,"name":"uint256","nodeType":"ElementaryTypeName","src":"10120:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10119:9:27"},"scope":13500,"src":"10077:121:27","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13350,"nodeType":"Block","src":"10803:182:27","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":13316,"name":"recordEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13494,"src":"10809:14:27","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":13317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10809:16:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13318,"nodeType":"ExpressionStatement","src":"10809:16:27"},{"assignments":[13321],"declarations":[{"constant":false,"id":13321,"mutability":"mutable","name":"yv","nameLocation":"10840:2:27","nodeType":"VariableDeclaration","scope":13350,"src":"10831:11:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":13320,"nodeType":"UserDefinedTypeName","pathNode":{"id":13319,"name":"IERC4626","nameLocations":["10831:8:27"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"10831:8:27"},"referencedDeclaration":22463,"src":"10831:8:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"id":13324,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":13322,"name":"yieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13010,"src":"10845:10:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC4626_$22463_$","typeString":"function () view returns (contract IERC4626)"}},"id":13323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10845:12:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"nodeType":"VariableDeclarationStatement","src":"10831:26:27"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13325,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13311,"src":"10867:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":13328,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10882:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":13327,"name":"uint256","nodeType":"ElementaryTypeName","src":"10882:7:27","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":13326,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10877:4:27","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":13329,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10877:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":13330,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10891:3:27","memberName":"max","nodeType":"MemberAccess","src":"10877:17:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10867:27:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13342,"nodeType":"IfStatement","src":"10863:71:27","trueBody":{"expression":{"id":13340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13332,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13311,"src":"10896:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":13337,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"10928:4:27","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}],"id":13336,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10920:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13335,"name":"address","nodeType":"ElementaryTypeName","src":"10920:7:27","typeDescriptions":{}}},"id":13338,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10920:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":13333,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13321,"src":"10905:2:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":13334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10908:11:27","memberName":"maxWithdraw","nodeType":"MemberAccess","referencedDeclaration":22414,"src":"10905:14:27","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":13339,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10905:29:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10896:38:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13341,"nodeType":"ExpressionStatement","src":"10896:38:27"}},{"expression":{"arguments":[{"id":13344,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13321,"src":"10950:2:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},{"id":13345,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13311,"src":"10954:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13343,"name":"_deinvest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13215,"src":"10940:9:27","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$22463_$_t_uint256_$returns$__$","typeString":"function (contract IERC4626,uint256)"}},"id":13346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10940:21:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13347,"nodeType":"ExpressionStatement","src":"10940:21:27"},{"expression":{"id":13348,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13311,"src":"10974:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13315,"id":13349,"nodeType":"Return","src":"10967:13:27"}]},"documentation":{"id":13309,"nodeType":"StructuredDocumentation","src":"10202:512:27","text":" @notice Deinvest from the vault a given amount.\n @param amount Amount to withdraw from the `yieldVault()`. If equal type(uint256).max, deinvests maxWithdraw()\n @return deinvested The amount that was deinvested and added as liquid funds to the reserve\n @custom:pre yieldVault() != address(0)\n @custom:pre yieldVault().maxWithdraw(address(this)) >= amount\n             (this condition is not checked here; exceeding it is expected to revert in the vault during _deinvest())."},"functionSelector":"d336078c","id":13351,"implemented":true,"kind":"function","modifiers":[],"name":"withdrawFromYieldVault","nameLocation":"10726:22:27","nodeType":"FunctionDefinition","parameters":{"id":13312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13311,"mutability":"mutable","name":"amount","nameLocation":"10757:6:27","nodeType":"VariableDeclaration","scope":13351,"src":"10749:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13310,"name":"uint256","nodeType":"ElementaryTypeName","src":"10749:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10748:16:27"},"returnParameters":{"id":13315,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13314,"mutability":"mutable","name":"deinvested","nameLocation":"10791:10:27","nodeType":"VariableDeclaration","scope":13351,"src":"10783:18:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13313,"name":"uint256","nodeType":"ElementaryTypeName","src":"10783:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10782:20:27"},"scope":13500,"src":"10717:268:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":13430,"nodeType":"Block","src":"11302:389:27","statements":[{"assignments":[13359],"declarations":[{"constant":false,"id":13359,"mutability":"mutable","name":"yv","nameLocation":"11317:2:27","nodeType":"VariableDeclaration","scope":13430,"src":"11308:11:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":13358,"nodeType":"UserDefinedTypeName","pathNode":{"id":13357,"name":"IERC4626","nameLocations":["11308:8:27"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"11308:8:27"},"referencedDeclaration":22463,"src":"11308:8:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"id":13362,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":13360,"name":"yieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13010,"src":"11322:10:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC4626_$22463_$","typeString":"function () view returns (contract IERC4626)"}},"id":13361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11322:12:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"nodeType":"VariableDeclarationStatement","src":"11308:26:27"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":13372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13366,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13359,"src":"11356:2:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":13365,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11348:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13364,"name":"address","nodeType":"ElementaryTypeName","src":"11348:7:27","typeDescriptions":{}}},"id":13367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11348:11:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":13370,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11371:1:27","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":13369,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11363:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13368,"name":"address","nodeType":"ElementaryTypeName","src":"11363:7:27","typeDescriptions":{}}},"id":13371,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11363:10:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11348:25:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":13373,"name":"InvalidYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12872,"src":"11375:17:27","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13374,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11375:19:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":13363,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"11340:7:27","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":13375,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11340:55:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13376,"nodeType":"ExpressionStatement","src":"11340:55:27"},{"assignments":[13378],"declarations":[{"constant":false,"id":13378,"mutability":"mutable","name":"balance","nameLocation":"11409:7:27","nodeType":"VariableDeclaration","scope":13430,"src":"11401:15:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13377,"name":"uint256","nodeType":"ElementaryTypeName","src":"11401:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13381,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":13379,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13308,"src":"11419:8:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":13380,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11419:10:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11401:28:27"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13382,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13354,"src":"11439:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":13385,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11454:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":13384,"name":"uint256","nodeType":"ElementaryTypeName","src":"11454:7:27","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":13383,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11449:4:27","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":13386,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11449:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":13387,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11463:3:27","memberName":"max","nodeType":"MemberAccess","src":"11449:17:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11439:27:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13404,"nodeType":"Block","src":"11505:73:27","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13397,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13395,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13354,"src":"11521:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":13396,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13378,"src":"11531:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11521:17:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":13399,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13354,"src":"11554:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13400,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13378,"src":"11562:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13398,"name":"NotEnoughCash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12879,"src":"11540:13:27","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":13401,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11540:30:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":13394,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"11513:7:27","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":13402,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11513:58:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13403,"nodeType":"ExpressionStatement","src":"11513:58:27"}]},"id":13405,"nodeType":"IfStatement","src":"11435:143:27","trueBody":{"id":13393,"nodeType":"Block","src":"11468:31:27","statements":[{"expression":{"id":13391,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13389,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13354,"src":"11476:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13390,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13378,"src":"11485:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11476:16:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13392,"nodeType":"ExpressionStatement","src":"11476:16:27"}]}},{"expression":{"id":13408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13406,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12869,"src":"11583:9:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":13407,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13354,"src":"11596:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11583:19:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13409,"nodeType":"ExpressionStatement","src":"11583:19:27"},{"expression":{"arguments":[{"arguments":[{"id":13415,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13359,"src":"11635:2:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":13414,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11627:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13413,"name":"address","nodeType":"ElementaryTypeName","src":"11627:7:27","typeDescriptions":{}}},"id":13416,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11627:11:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":13417,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13354,"src":"11640:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":13410,"name":"currency","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11088,"src":"11608:8:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC20Metadata_$24925_$","typeString":"function () view returns (contract IERC20Metadata)"}},"id":13411,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11608:10:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":13412,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11619:7:27","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":24180,"src":"11608:18:27","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":13418,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11608:39:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13419,"nodeType":"ExpressionStatement","src":"11608:39:27"},{"expression":{"arguments":[{"id":13423,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13354,"src":"11664:6:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":13426,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"11680:4:27","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}],"id":13425,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11672:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13424,"name":"address","nodeType":"ElementaryTypeName","src":"11672:7:27","typeDescriptions":{}}},"id":13427,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11672:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":13420,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13359,"src":"11653:2:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":13422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11656:7:27","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":22380,"src":"11653:10:27","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address) external returns (uint256)"}},"id":13428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11653:33:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13429,"nodeType":"ExpressionStatement","src":"11653:33:27"}]},"documentation":{"id":13352,"nodeType":"StructuredDocumentation","src":"10989:254:27","text":" @notice Moves money that's liquid in the contract to the yield vault, to generate yields\n @param amount Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\n @custom:pre _balance() >= amount"},"functionSelector":"ac860f74","id":13431,"implemented":true,"kind":"function","modifiers":[],"name":"depositIntoYieldVault","nameLocation":"11255:21:27","nodeType":"FunctionDefinition","parameters":{"id":13355,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13354,"mutability":"mutable","name":"amount","nameLocation":"11285:6:27","nodeType":"VariableDeclaration","scope":13431,"src":"11277:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13353,"name":"uint256","nodeType":"ElementaryTypeName","src":"11277:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11276:16:27"},"returnParameters":{"id":13356,"nodeType":"ParameterList","parameters":[],"src":"11302:0:27"},"scope":13500,"src":"11246:445:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":13493,"nodeType":"Block","src":"11960:333:27","statements":[{"assignments":[13437],"declarations":[{"constant":false,"id":13437,"mutability":"mutable","name":"yv","nameLocation":"11975:2:27","nodeType":"VariableDeclaration","scope":13493,"src":"11966:11:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":13436,"nodeType":"UserDefinedTypeName","pathNode":{"id":13435,"name":"IERC4626","nameLocations":["11966:8:27"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"11966:8:27"},"referencedDeclaration":22463,"src":"11966:8:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"id":13440,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":13438,"name":"yieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13010,"src":"11980:10:27","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_contract$_IERC4626_$22463_$","typeString":"function () view returns (contract IERC4626)"}},"id":13439,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11980:12:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"nodeType":"VariableDeclarationStatement","src":"11966:26:27"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":13450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13444,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13437,"src":"12014:2:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":13443,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12006:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13442,"name":"address","nodeType":"ElementaryTypeName","src":"12006:7:27","typeDescriptions":{}}},"id":13445,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12006:11:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":13448,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12029:1:27","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":13447,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12021:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13446,"name":"address","nodeType":"ElementaryTypeName","src":"12021:7:27","typeDescriptions":{}}},"id":13449,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12021:10:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12006:25:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":13451,"name":"InvalidYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12872,"src":"12033:17:27","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13452,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12033:19:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":13441,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"11998:7:27","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":13453,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11998:55:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13454,"nodeType":"ExpressionStatement","src":"11998:55:27"},{"assignments":[13456],"declarations":[{"constant":false,"id":13456,"mutability":"mutable","name":"assetsInvested","nameLocation":"12067:14:27","nodeType":"VariableDeclaration","scope":13493,"src":"12059:22:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13455,"name":"uint256","nodeType":"ElementaryTypeName","src":"12059:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13467,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":13463,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"12124:4:27","typeDescriptions":{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Reserve_$13500","typeString":"contract Reserve"}],"id":13462,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12116:7:27","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13461,"name":"address","nodeType":"ElementaryTypeName","src":"12116:7:27","typeDescriptions":{}}},"id":13464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12116:13:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":13459,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13437,"src":"12103:2:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":13460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12106:9:27","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":24150,"src":"12103:12:27","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":13465,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12103:27:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13457,"name":"yv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13437,"src":"12084:2:27","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":13458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12087:15:27","memberName":"convertToAssets","nodeType":"MemberAccess","referencedDeclaration":22354,"src":"12084:18:27","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view external returns (uint256)"}},"id":13466,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12084:47:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12059:72:27"},{"assignments":[13469],"declarations":[{"constant":false,"id":13469,"mutability":"mutable","name":"earned","nameLocation":"12144:6:27","nodeType":"VariableDeclaration","scope":13493,"src":"12137:13:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":13468,"name":"int256","nodeType":"ElementaryTypeName","src":"12137:6:27","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":13479,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13472,"name":"assetsInvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13456,"src":"12160:14:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13471,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12153:6:27","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":13470,"name":"int256","nodeType":"ElementaryTypeName","src":"12153:6:27","typeDescriptions":{}}},"id":13473,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12153:22:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":13476,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12869,"src":"12185:9:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13475,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12178:6:27","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":13474,"name":"int256","nodeType":"ElementaryTypeName","src":"12178:6:27","typeDescriptions":{}}},"id":13477,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12178:17:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"12153:42:27","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"12137:58:27"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":13482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13480,"name":"earned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13469,"src":"12205:6:27","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":13481,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12215:1:27","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12205:11:27","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13492,"nodeType":"IfStatement","src":"12201:88:27","trueBody":{"id":13491,"nodeType":"Block","src":"12218:71:27","statements":[{"expression":{"id":13485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13483,"name":"_invested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12869,"src":"12226:9:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13484,"name":"assetsInvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13456,"src":"12238:14:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12226:26:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13486,"nodeType":"ExpressionStatement","src":"12226:26:27"},{"expression":{"arguments":[{"id":13488,"name":"earned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13469,"src":"12275:6:27","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":13487,"name":"_yieldEarnings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13037,"src":"12260:14:27","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":13489,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12260:22:27","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13490,"nodeType":"ExpressionStatement","src":"12260:22:27"}]}}]},"documentation":{"id":13432,"nodeType":"StructuredDocumentation","src":"11695:229:27","text":" @dev Computes the value of the assets invested in the yieldVault() and then calls `_yieldEarnings` to\n      reflect the earnings/losses in the way defined for each reserve.\n @custom:emits {EarningsRecorded}"},"functionSelector":"4eb978a4","id":13494,"implemented":true,"kind":"function","modifiers":[],"name":"recordEarnings","nameLocation":"11936:14:27","nodeType":"FunctionDefinition","parameters":{"id":13433,"nodeType":"ParameterList","parameters":[],"src":"11950:2:27"},"returnParameters":{"id":13434,"nodeType":"ParameterList","parameters":[],"src":"11960:0:27"},"scope":13500,"src":"11927:366:27","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"constant":false,"documentation":{"id":13495,"nodeType":"StructuredDocumentation","src":"12297:246:27","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":13499,"mutability":"mutable","name":"__gap","nameLocation":"12566:5:27","nodeType":"VariableDeclaration","scope":13500,"src":"12546:25:27","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage","typeString":"uint256[49]"},"typeName":{"baseType":{"id":13496,"name":"uint256","nodeType":"ElementaryTypeName","src":"12546:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13498,"length":{"hexValue":"3439","id":13497,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12554:2:27","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"49"},"nodeType":"ArrayTypeName","src":"12546:11:27","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$49_storage_ptr","typeString":"uint256[49]"}},"visibility":"private"}],"scope":13501,"src":"976:11598:27","usedErrors":[10961,10963,10965,12872,12879,12884,22846,22859,23183,23186,23457,23462,25668,26802],"usedEvents":[12895,12903,12908,22272,23191]}],"src":"39:12536:27"},"id":27},"@ensuro/core/contracts/RiskModule.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/RiskModule.sol","exportedSymbols":{"IPolicyPool":[14638],"IPremiumsAccount":[14743],"IRiskModule":[14762],"IUnderwriter":[14830],"Policy":[8314],"PolicyPoolComponent":[11094],"RiskModule":[14134],"SafeCast":[36952]},"id":14135,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":13502,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:28"},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":13504,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14135,"sourceUnit":36953,"src":"65:73:28","symbolAliases":[{"foreign":{"id":13503,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"73:8:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyPool.sol","file":"./interfaces/IPolicyPool.sol","id":13506,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14135,"sourceUnit":14639,"src":"139:57:28","symbolAliases":[{"foreign":{"id":13505,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14638,"src":"147:11:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/PolicyPoolComponent.sol","file":"./PolicyPoolComponent.sol","id":13508,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14135,"sourceUnit":11095,"src":"197:62:28","symbolAliases":[{"foreign":{"id":13507,"name":"PolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11094,"src":"205:19:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IRiskModule.sol","file":"./interfaces/IRiskModule.sol","id":13510,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14135,"sourceUnit":14763,"src":"260:57:28","symbolAliases":[{"foreign":{"id":13509,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14762,"src":"268:11:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IUnderwriter.sol","file":"./interfaces/IUnderwriter.sol","id":13512,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14135,"sourceUnit":14831,"src":"318:59:28","symbolAliases":[{"foreign":{"id":13511,"name":"IUnderwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14830,"src":"326:12:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol","file":"./interfaces/IPremiumsAccount.sol","id":13514,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14135,"sourceUnit":14744,"src":"378:67:28","symbolAliases":[{"foreign":{"id":13513,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14743,"src":"386:16:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/Policy.sol","file":"./Policy.sol","id":13516,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14135,"sourceUnit":8315,"src":"446:36:28","symbolAliases":[{"foreign":{"id":13515,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"454:6:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":13518,"name":"IRiskModule","nameLocations":["731:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":14762,"src":"731:11:28"},"id":13519,"nodeType":"InheritanceSpecifier","src":"731:11:28"},{"baseName":{"id":13520,"name":"PolicyPoolComponent","nameLocations":["744:19:28"],"nodeType":"IdentifierPath","referencedDeclaration":11094,"src":"744:19:28"},"id":13521,"nodeType":"InheritanceSpecifier","src":"744:19:28"}],"canonicalName":"RiskModule","contractDependencies":[],"contractKind":"contract","documentation":{"id":13517,"nodeType":"StructuredDocumentation","src":"484:223:28","text":" @title Ensuro Risk Module contract\n @dev Risk Module that keeps the configuration and is responsible for injecting policies and policy resolution\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":14134,"linearizedBaseContracts":[14134,11094,14655,33545,23600,22506,23434,14762],"name":"RiskModule","nameLocation":"717:10:28","nodeType":"ContractDefinition","nodes":[{"global":false,"id":13525,"libraryName":{"id":13522,"name":"Policy","nameLocations":["774:6:28"],"nodeType":"IdentifierPath","referencedDeclaration":8314,"src":"774:6:28"},"nodeType":"UsingForDirective","src":"768:35:28","typeName":{"id":13524,"nodeType":"UserDefinedTypeName","pathNode":{"id":13523,"name":"Policy.PolicyData","nameLocations":["785:6:28","792:10:28"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"785:17:28"},"referencedDeclaration":7744,"src":"785:17:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}}},{"global":false,"id":13528,"libraryName":{"id":13526,"name":"SafeCast","nameLocations":["812:8:28"],"nodeType":"IdentifierPath","referencedDeclaration":36952,"src":"812:8:28"},"nodeType":"UsingForDirective","src":"806:27:28","typeName":{"id":13527,"name":"uint256","nodeType":"ElementaryTypeName","src":"825:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":false,"documentation":{"id":13529,"nodeType":"StructuredDocumentation","src":"837:61:28","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":13532,"mutability":"immutable","name":"_premiumsAccount","nameLocation":"937:16:28","nodeType":"VariableDeclaration","scope":14134,"src":"901:52:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"},"typeName":{"id":13531,"nodeType":"UserDefinedTypeName","pathNode":{"id":13530,"name":"IPremiumsAccount","nameLocations":["901:16:28"],"nodeType":"IdentifierPath","referencedDeclaration":14743,"src":"901:16:28"},"referencedDeclaration":14743,"src":"901:16:28","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"visibility":"internal"},{"constant":false,"id":13535,"mutability":"mutable","name":"_underwriter","nameLocation":"980:12:28","nodeType":"VariableDeclaration","scope":14134,"src":"958:34:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"},"typeName":{"id":13534,"nodeType":"UserDefinedTypeName","pathNode":{"id":13533,"name":"IUnderwriter","nameLocations":["958:12:28"],"nodeType":"IdentifierPath","referencedDeclaration":14830,"src":"958:12:28"},"referencedDeclaration":14830,"src":"958:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},"visibility":"internal"},{"constant":false,"id":13537,"mutability":"mutable","name":"_wallet","nameLocation":"1014:7:28","nodeType":"VariableDeclaration","scope":14134,"src":"997:24:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13536,"name":"address","nodeType":"ElementaryTypeName","src":"997:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"anonymous":false,"eventSelector":"e3d815eb4e0fdd9b02285235cb46b09f34bee9bd0eb8d8dc3a1fe84694079bc2","id":13543,"name":"PartnerWalletChanged","nameLocation":"1070:20:28","nodeType":"EventDefinition","parameters":{"id":13542,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13539,"indexed":false,"mutability":"mutable","name":"oldWallet","nameLocation":"1099:9:28","nodeType":"VariableDeclaration","scope":13543,"src":"1091:17:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13538,"name":"address","nodeType":"ElementaryTypeName","src":"1091:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13541,"indexed":false,"mutability":"mutable","name":"newWallet","nameLocation":"1118:9:28","nodeType":"VariableDeclaration","scope":13543,"src":"1110:17:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13540,"name":"address","nodeType":"ElementaryTypeName","src":"1110:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1090:38:28"},"src":"1064:65:28"},{"anonymous":false,"eventSelector":"ae536502f25a82de70abed467008489d54fa0cbf58cdc51718efe6d49406724f","id":13551,"name":"UnderwriterChanged","nameLocation":"1138:18:28","nodeType":"EventDefinition","parameters":{"id":13550,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13546,"indexed":false,"mutability":"mutable","name":"oldUW","nameLocation":"1170:5:28","nodeType":"VariableDeclaration","scope":13551,"src":"1157:18:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"},"typeName":{"id":13545,"nodeType":"UserDefinedTypeName","pathNode":{"id":13544,"name":"IUnderwriter","nameLocations":["1157:12:28"],"nodeType":"IdentifierPath","referencedDeclaration":14830,"src":"1157:12:28"},"referencedDeclaration":14830,"src":"1157:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},"visibility":"internal"},{"constant":false,"id":13549,"indexed":false,"mutability":"mutable","name":"newUW","nameLocation":"1190:5:28","nodeType":"VariableDeclaration","scope":13551,"src":"1177:18:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"},"typeName":{"id":13548,"nodeType":"UserDefinedTypeName","pathNode":{"id":13547,"name":"IUnderwriter","nameLocations":["1177:12:28"],"nodeType":"IdentifierPath","referencedDeclaration":14830,"src":"1177:12:28"},"referencedDeclaration":14830,"src":"1177:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},"visibility":"internal"}],"src":"1156:40:28"},"src":"1132:65:28"},{"errorSelector":"628d229a","id":13555,"name":"InvalidWallet","nameLocation":"1207:13:28","nodeType":"ErrorDefinition","parameters":{"id":13554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13553,"mutability":"mutable","name":"wallet","nameLocation":"1229:6:28","nodeType":"VariableDeclaration","scope":13555,"src":"1221:14:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13552,"name":"address","nodeType":"ElementaryTypeName","src":"1221:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1220:16:28"},"src":"1201:36:28"},{"errorSelector":"fe0c5f44","id":13560,"name":"InvalidUnderwriter","nameLocation":"1246:18:28","nodeType":"ErrorDefinition","parameters":{"id":13559,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13558,"mutability":"mutable","name":"uw","nameLocation":"1278:2:28","nodeType":"VariableDeclaration","scope":13560,"src":"1265:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"},"typeName":{"id":13557,"nodeType":"UserDefinedTypeName","pathNode":{"id":13556,"name":"IUnderwriter","nameLocations":["1265:12:28"],"nodeType":"IdentifierPath","referencedDeclaration":14830,"src":"1265:12:28"},"referencedDeclaration":14830,"src":"1265:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},"visibility":"internal"}],"src":"1264:17:28"},"src":"1240:42:28"},{"errorSelector":"fec343d5","id":13562,"name":"PremiumsAccountMustBePartOfThePool","nameLocation":"1291:34:28","nodeType":"ErrorDefinition","parameters":{"id":13561,"nodeType":"ParameterList","parameters":[],"src":"1325:2:28"},"src":"1285:43:28"},{"errorSelector":"143e1f84","id":13564,"name":"UpgradeCannotChangePremiumsAccount","nameLocation":"1337:34:28","nodeType":"ErrorDefinition","parameters":{"id":13563,"nodeType":"ParameterList","parameters":[],"src":"1371:2:28"},"src":"1331:43:28"},{"errorSelector":"a67fcb1d","id":13570,"name":"ExpirationMustBeInTheFuture","nameLocation":"1383:27:28","nodeType":"ErrorDefinition","parameters":{"id":13569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13566,"mutability":"mutable","name":"expiration","nameLocation":"1418:10:28","nodeType":"VariableDeclaration","scope":13570,"src":"1411:17:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":13565,"name":"uint40","nodeType":"ElementaryTypeName","src":"1411:6:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":13568,"mutability":"mutable","name":"now","nameLocation":"1437:3:28","nodeType":"VariableDeclaration","scope":13570,"src":"1430:10:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":13567,"name":"uint40","nodeType":"ElementaryTypeName","src":"1430:6:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"1410:31:28"},"src":"1377:65:28"},{"errorSelector":"58e92282","id":13574,"name":"InvalidCustomer","nameLocation":"1451:15:28","nodeType":"ErrorDefinition","parameters":{"id":13573,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13572,"mutability":"mutable","name":"customer","nameLocation":"1475:8:28","nodeType":"VariableDeclaration","scope":13574,"src":"1467:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13571,"name":"address","nodeType":"ElementaryTypeName","src":"1467:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1466:18:28"},"src":"1445:40:28"},{"body":{"id":13606,"nodeType":"Block","src":"1645:189:28","statements":[{"condition":{"commonType":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"},"id":13596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"id":13590,"name":"premiumsAccount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13581,"src":"1683:16:28","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}],"id":13589,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1675:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13588,"name":"address","nodeType":"ElementaryTypeName","src":"1675:7:28","typeDescriptions":{}}},"id":13591,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1675:25:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":13587,"name":"PolicyPoolComponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11094,"src":"1655:19:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_PolicyPoolComponent_$11094_$","typeString":"type(contract PolicyPoolComponent)"}},"id":13592,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1655:46:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_PolicyPoolComponent_$11094","typeString":"contract PolicyPoolComponent"}},"id":13593,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1702:10:28","memberName":"policyPool","nodeType":"MemberAccess","referencedDeclaration":11077,"src":"1655:57:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPolicyPool_$14638_$","typeString":"function () view external returns (contract IPolicyPool)"}},"id":13594,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1655:59:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":13595,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13578,"src":"1718:11:28","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"src":"1655:74:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13601,"nodeType":"IfStatement","src":"1651:138:28","trueBody":{"id":13600,"nodeType":"Block","src":"1731:58:28","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13597,"name":"PremiumsAccountMustBePartOfThePool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13562,"src":"1746:34:28","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13598,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1746:36:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13599,"nodeType":"RevertStatement","src":"1739:43:28"}]}},{"expression":{"id":13604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13602,"name":"_premiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13532,"src":"1794:16:28","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13603,"name":"premiumsAccount_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13581,"src":"1813:16:28","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"src":"1794:35:28","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"id":13605,"nodeType":"ExpressionStatement","src":"1794:35:28"}]},"documentation":{"id":13575,"nodeType":"StructuredDocumentation","src":"1489:48:28","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":13607,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":13584,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13578,"src":"1632:11:28","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}}],"id":13585,"kind":"baseConstructorSpecifier","modifierName":{"id":13583,"name":"PolicyPoolComponent","nameLocations":["1612:19:28"],"nodeType":"IdentifierPath","referencedDeclaration":11094,"src":"1612:19:28"},"nodeType":"ModifierInvocation","src":"1612:32:28"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":13582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13578,"mutability":"mutable","name":"policyPool_","nameLocation":"1564:11:28","nodeType":"VariableDeclaration","scope":13607,"src":"1552:23:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"},"typeName":{"id":13577,"nodeType":"UserDefinedTypeName","pathNode":{"id":13576,"name":"IPolicyPool","nameLocations":["1552:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":14638,"src":"1552:11:28"},"referencedDeclaration":14638,"src":"1552:11:28","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"visibility":"internal"},{"constant":false,"id":13581,"mutability":"mutable","name":"premiumsAccount_","nameLocation":"1594:16:28","nodeType":"VariableDeclaration","scope":13607,"src":"1577:33:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"},"typeName":{"id":13580,"nodeType":"UserDefinedTypeName","pathNode":{"id":13579,"name":"IPremiumsAccount","nameLocations":["1577:16:28"],"nodeType":"IdentifierPath","referencedDeclaration":14743,"src":"1577:16:28"},"referencedDeclaration":14743,"src":"1577:16:28","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"src":"1551:60:28"},"returnParameters":{"id":13586,"nodeType":"ParameterList","parameters":[],"src":"1645:0:28"},"scope":14134,"src":"1540:294:28","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":13623,"nodeType":"Block","src":"2131:51:28","statements":[{"expression":{"arguments":[{"id":13619,"name":"underwriter_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13611,"src":"2155:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},{"id":13620,"name":"wallet_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13613,"src":"2169:7:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"},{"typeIdentifier":"t_address","typeString":"address"}],"id":13618,"name":"__RiskModule_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13644,"src":"2137:17:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IUnderwriter_$14830_$_t_address_$returns$__$","typeString":"function (contract IUnderwriter,address)"}},"id":13621,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2137:40:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13622,"nodeType":"ExpressionStatement","src":"2137:40:28"}]},"documentation":{"id":13608,"nodeType":"StructuredDocumentation","src":"1838:207:28","text":" @dev Initializes the RiskModule\n @param underwriter_ Contract in charge of decoding and validating the input and pricing the policies\n @param wallet_ Address of the RiskModule provider"},"functionSelector":"485cc955","id":13624,"implemented":true,"kind":"function","modifiers":[{"id":13616,"kind":"modifierInvocation","modifierName":{"id":13615,"name":"initializer","nameLocations":["2119:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":23274,"src":"2119:11:28"},"nodeType":"ModifierInvocation","src":"2119:11:28"}],"name":"initialize","nameLocation":"2057:10:28","nodeType":"FunctionDefinition","parameters":{"id":13614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13611,"mutability":"mutable","name":"underwriter_","nameLocation":"2081:12:28","nodeType":"VariableDeclaration","scope":13624,"src":"2068:25:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"},"typeName":{"id":13610,"nodeType":"UserDefinedTypeName","pathNode":{"id":13609,"name":"IUnderwriter","nameLocations":["2068:12:28"],"nodeType":"IdentifierPath","referencedDeclaration":14830,"src":"2068:12:28"},"referencedDeclaration":14830,"src":"2068:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},"visibility":"internal"},{"constant":false,"id":13613,"mutability":"mutable","name":"wallet_","nameLocation":"2103:7:28","nodeType":"VariableDeclaration","scope":13624,"src":"2095:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13612,"name":"address","nodeType":"ElementaryTypeName","src":"2095:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2067:44:28"},"returnParameters":{"id":13617,"nodeType":"ParameterList","parameters":[],"src":"2131:0:28"},"scope":14134,"src":"2048:134:28","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":13643,"nodeType":"Block","src":"2544:95:28","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":13635,"name":"__PolicyPoolComponent_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11015,"src":"2550:26:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":13636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2550:28:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13637,"nodeType":"ExpressionStatement","src":"2550:28:28"},{"expression":{"arguments":[{"id":13639,"name":"underwriter_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13628,"src":"2612:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},{"id":13640,"name":"wallet_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13630,"src":"2626:7:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"},{"typeIdentifier":"t_address","typeString":"address"}],"id":13638,"name":"__RiskModule_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13663,"src":"2584:27:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IUnderwriter_$14830_$_t_address_$returns$__$","typeString":"function (contract IUnderwriter,address)"}},"id":13641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2584:50:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13642,"nodeType":"ExpressionStatement","src":"2584:50:28"}]},"documentation":{"id":13625,"nodeType":"StructuredDocumentation","src":"2186:207:28","text":" @dev Initializes the RiskModule\n @param underwriter_ Contract in charge of decoding and validating the input and pricing the policies\n @param wallet_ Address of the RiskModule provider"},"id":13644,"implemented":true,"kind":"function","modifiers":[{"id":13633,"kind":"modifierInvocation","modifierName":{"id":13632,"name":"onlyInitializing","nameLocations":["2527:16:28"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"2527:16:28"},"nodeType":"ModifierInvocation","src":"2527:16:28"}],"name":"__RiskModule_init","nameLocation":"2456:17:28","nodeType":"FunctionDefinition","parameters":{"id":13631,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13628,"mutability":"mutable","name":"underwriter_","nameLocation":"2487:12:28","nodeType":"VariableDeclaration","scope":13644,"src":"2474:25:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"},"typeName":{"id":13627,"nodeType":"UserDefinedTypeName","pathNode":{"id":13626,"name":"IUnderwriter","nameLocations":["2474:12:28"],"nodeType":"IdentifierPath","referencedDeclaration":14830,"src":"2474:12:28"},"referencedDeclaration":14830,"src":"2474:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},"visibility":"internal"},{"constant":false,"id":13630,"mutability":"mutable","name":"wallet_","nameLocation":"2509:7:28","nodeType":"VariableDeclaration","scope":13644,"src":"2501:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13629,"name":"address","nodeType":"ElementaryTypeName","src":"2501:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2473:44:28"},"returnParameters":{"id":13634,"nodeType":"ParameterList","parameters":[],"src":"2544:0:28"},"scope":14134,"src":"2447:192:28","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":13662,"nodeType":"Block","src":"2801:63:28","statements":[{"expression":{"arguments":[{"id":13655,"name":"wallet_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13649,"src":"2817:7:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":13654,"name":"setWallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13753,"src":"2807:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":13656,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2807:18:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13657,"nodeType":"ExpressionStatement","src":"2807:18:28"},{"expression":{"arguments":[{"id":13659,"name":"underwriter_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13647,"src":"2846:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}],"id":13658,"name":"setUnderwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13795,"src":"2831:14:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IUnderwriter_$14830_$returns$__$","typeString":"function (contract IUnderwriter)"}},"id":13660,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2831:28:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13661,"nodeType":"ExpressionStatement","src":"2831:28:28"}]},"id":13663,"implemented":true,"kind":"function","modifiers":[{"id":13652,"kind":"modifierInvocation","modifierName":{"id":13651,"name":"onlyInitializing","nameLocations":["2784:16:28"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"2784:16:28"},"nodeType":"ModifierInvocation","src":"2784:16:28"}],"name":"__RiskModule_init_unchained","nameLocation":"2703:27:28","nodeType":"FunctionDefinition","parameters":{"id":13650,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13647,"mutability":"mutable","name":"underwriter_","nameLocation":"2744:12:28","nodeType":"VariableDeclaration","scope":13663,"src":"2731:25:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"},"typeName":{"id":13646,"nodeType":"UserDefinedTypeName","pathNode":{"id":13645,"name":"IUnderwriter","nameLocations":["2731:12:28"],"nodeType":"IdentifierPath","referencedDeclaration":14830,"src":"2731:12:28"},"referencedDeclaration":14830,"src":"2731:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},"visibility":"internal"},{"constant":false,"id":13649,"mutability":"mutable","name":"wallet_","nameLocation":"2766:7:28","nodeType":"VariableDeclaration","scope":13663,"src":"2758:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13648,"name":"address","nodeType":"ElementaryTypeName","src":"2758:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2730:44:28"},"returnParameters":{"id":13653,"nodeType":"ParameterList","parameters":[],"src":"2801:0:28"},"scope":14134,"src":"2694:170:28","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[11043],"body":{"id":13692,"nodeType":"Block","src":"2945:203:28","statements":[{"expression":{"arguments":[{"id":13672,"name":"newImpl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13665,"src":"2977:7:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":13669,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2951:5:28","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_RiskModule_$14134_$","typeString":"type(contract super RiskModule)"}},"id":13671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2957:19:28","memberName":"_upgradeValidations","nodeType":"MemberAccess","referencedDeclaration":11043,"src":"2951:25:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$__$","typeString":"function (address) view"}},"id":13673,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2951:34:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13674,"nodeType":"ExpressionStatement","src":"2951:34:28"},{"assignments":[13677],"declarations":[{"constant":false,"id":13677,"mutability":"mutable","name":"newRM","nameLocation":"3003:5:28","nodeType":"VariableDeclaration","scope":13692,"src":"2991:17:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},"typeName":{"id":13676,"nodeType":"UserDefinedTypeName","pathNode":{"id":13675,"name":"IRiskModule","nameLocations":["2991:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":14762,"src":"2991:11:28"},"referencedDeclaration":14762,"src":"2991:11:28","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"visibility":"internal"}],"id":13681,"initialValue":{"arguments":[{"id":13679,"name":"newImpl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13665,"src":"3023:7:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":13678,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14762,"src":"3011:11:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$14762_$","typeString":"type(contract IRiskModule)"}},"id":13680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3011:20:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"nodeType":"VariableDeclarationStatement","src":"2991:40:28"},{"condition":{"commonType":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"},"id":13686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":13682,"name":"newRM","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13677,"src":"3041:5:28","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"id":13683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3047:15:28","memberName":"premiumsAccount","nodeType":"MemberAccess","referencedDeclaration":14761,"src":"3041:21:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IPremiumsAccount_$14743_$","typeString":"function () view external returns (contract IPremiumsAccount)"}},"id":13684,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3041:23:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":13685,"name":"_premiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13532,"src":"3068:16:28","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"src":"3041:43:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13691,"nodeType":"IfStatement","src":"3037:107:28","trueBody":{"id":13690,"nodeType":"Block","src":"3086:58:28","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":13687,"name":"UpgradeCannotChangePremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13564,"src":"3101:34:28","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":13688,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3101:36:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":13689,"nodeType":"RevertStatement","src":"3094:43:28"}]}}]},"id":13693,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeValidations","nameLocation":"2877:19:28","nodeType":"FunctionDefinition","overrides":{"id":13667,"nodeType":"OverrideSpecifier","overrides":[],"src":"2936:8:28"},"parameters":{"id":13666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13665,"mutability":"mutable","name":"newImpl","nameLocation":"2905:7:28","nodeType":"VariableDeclaration","scope":13693,"src":"2897:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13664,"name":"address","nodeType":"ElementaryTypeName","src":"2897:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2896:17:28"},"returnParameters":{"id":13668,"nodeType":"ParameterList","parameters":[],"src":"2945:0:28"},"scope":14134,"src":"2868:280:28","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[11067],"body":{"id":13714,"nodeType":"Block","src":"3298:102:28","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":13712,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13704,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13696,"src":"3335:11:28","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":13702,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"3311:5:28","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_RiskModule_$14134_$","typeString":"type(contract super RiskModule)"}},"id":13703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3317:17:28","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":11067,"src":"3311:23:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":13705,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3311:36:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":13711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13706,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13696,"src":"3351:11:28","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":13708,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14762,"src":"3371:11:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$14762_$","typeString":"type(contract IRiskModule)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$14762_$","typeString":"type(contract IRiskModule)"}],"id":13707,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3366:4:28","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":13709,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3366:17:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IRiskModule_$14762","typeString":"type(contract IRiskModule)"}},"id":13710,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3384:11:28","memberName":"interfaceId","nodeType":"MemberAccess","src":"3366:29:28","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"3351:44:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3311:84:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":13701,"id":13713,"nodeType":"Return","src":"3304:91:28"}]},"documentation":{"id":13694,"nodeType":"StructuredDocumentation","src":"3152:52:28","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":13715,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"3216:17:28","nodeType":"FunctionDefinition","overrides":{"id":13698,"nodeType":"OverrideSpecifier","overrides":[],"src":"3274:8:28"},"parameters":{"id":13697,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13696,"mutability":"mutable","name":"interfaceId","nameLocation":"3241:11:28","nodeType":"VariableDeclaration","scope":13715,"src":"3234:18:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13695,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3234:6:28","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3233:20:28"},"returnParameters":{"id":13701,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13700,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13715,"src":"3292:4:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13699,"name":"bool","nodeType":"ElementaryTypeName","src":"3292:4:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3291:6:28"},"scope":14134,"src":"3207:193:28","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[14754],"body":{"id":13724,"nodeType":"Block","src":"3491:25:28","statements":[{"expression":{"id":13722,"name":"_wallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13537,"src":"3504:7:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":13721,"id":13723,"nodeType":"Return","src":"3497:14:28"}]},"documentation":{"id":13716,"nodeType":"StructuredDocumentation","src":"3404:27:28","text":"@inheritdoc IRiskModule"},"functionSelector":"521eb273","id":13725,"implemented":true,"kind":"function","modifiers":[],"name":"wallet","nameLocation":"3443:6:28","nodeType":"FunctionDefinition","overrides":{"id":13718,"nodeType":"OverrideSpecifier","overrides":[],"src":"3464:8:28"},"parameters":{"id":13717,"nodeType":"ParameterList","parameters":[],"src":"3449:2:28"},"returnParameters":{"id":13721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13720,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13725,"src":"3482:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13719,"name":"address","nodeType":"ElementaryTypeName","src":"3482:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3481:9:28"},"scope":14134,"src":"3434:82:28","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":13752,"nodeType":"Block","src":"3850:145:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":13737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13732,"name":"newWallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13728,"src":"3864:9:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":13735,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3885:1:28","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":13734,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3877:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13733,"name":"address","nodeType":"ElementaryTypeName","src":"3877:7:28","typeDescriptions":{}}},"id":13736,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3877:10:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3864:23:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":13739,"name":"newWallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13728,"src":"3903:9:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":13738,"name":"InvalidWallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13555,"src":"3889:13:28","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":13740,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3889:24:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":13731,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3856:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":13741,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3856:58:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13742,"nodeType":"ExpressionStatement","src":"3856:58:28"},{"eventCall":{"arguments":[{"id":13744,"name":"_wallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13537,"src":"3946:7:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":13745,"name":"newWallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13728,"src":"3955:9:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":13743,"name":"PartnerWalletChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13543,"src":"3925:20:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":13746,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3925:40:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13747,"nodeType":"EmitStatement","src":"3920:45:28"},{"expression":{"id":13750,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13748,"name":"_wallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13537,"src":"3971:7:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13749,"name":"newWallet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13728,"src":"3981:9:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3971:19:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":13751,"nodeType":"ExpressionStatement","src":"3971:19:28"}]},"documentation":{"id":13726,"nodeType":"StructuredDocumentation","src":"3520:282:28","text":" @dev Changes the wallet that will receive the partner commission of the policies created by this risk module.\n Events:\n - {RiskModule-PartnerWalletChanged}\n @param newWallet The new wallet that will receive the partner commissions. It can't be address(0)."},"functionSelector":"deaa59df","id":13753,"implemented":true,"kind":"function","modifiers":[],"name":"setWallet","nameLocation":"3814:9:28","nodeType":"FunctionDefinition","parameters":{"id":13729,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13728,"mutability":"mutable","name":"newWallet","nameLocation":"3832:9:28","nodeType":"VariableDeclaration","scope":13753,"src":"3824:17:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13727,"name":"address","nodeType":"ElementaryTypeName","src":"3824:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3823:19:28"},"returnParameters":{"id":13730,"nodeType":"ParameterList","parameters":[],"src":"3850:0:28"},"scope":14134,"src":"3805:190:28","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":13762,"nodeType":"Block","src":"4201:30:28","statements":[{"expression":{"id":13760,"name":"_underwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13535,"src":"4214:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},"functionReturnParameters":13759,"id":13761,"nodeType":"Return","src":"4207:19:28"}]},"documentation":{"id":13754,"nodeType":"StructuredDocumentation","src":"3999:141:28","text":" @notice Returns the underwriter contract, responsible for pricing and validating new policies, replacements and cancellations."},"functionSelector":"f00db260","id":13763,"implemented":true,"kind":"function","modifiers":[],"name":"underwriter","nameLocation":"4152:11:28","nodeType":"FunctionDefinition","parameters":{"id":13755,"nodeType":"ParameterList","parameters":[],"src":"4163:2:28"},"returnParameters":{"id":13759,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13758,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13763,"src":"4187:12:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"},"typeName":{"id":13757,"nodeType":"UserDefinedTypeName","pathNode":{"id":13756,"name":"IUnderwriter","nameLocations":["4187:12:28"],"nodeType":"IdentifierPath","referencedDeclaration":14830,"src":"4187:12:28"},"referencedDeclaration":14830,"src":"4187:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},"visibility":"internal"}],"src":"4186:14:28"},"scope":14134,"src":"4143:88:28","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":13794,"nodeType":"Block","src":"4550:151:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":13779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13773,"name":"newUW","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13767,"src":"4572:5:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}],"id":13772,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4564:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13771,"name":"address","nodeType":"ElementaryTypeName","src":"4564:7:28","typeDescriptions":{}}},"id":13774,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4564:14:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":13777,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4590:1:28","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":13776,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4582:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13775,"name":"address","nodeType":"ElementaryTypeName","src":"4582:7:28","typeDescriptions":{}}},"id":13778,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4582:10:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4564:28:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":13781,"name":"newUW","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13767,"src":"4613:5:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}],"id":13780,"name":"InvalidUnderwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13560,"src":"4594:18:28","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_contract$_IUnderwriter_$14830_$returns$_t_error_$","typeString":"function (contract IUnderwriter) pure returns (error)"}},"id":13782,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4594:25:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":13770,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4556:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":13783,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4556:64:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13784,"nodeType":"ExpressionStatement","src":"4556:64:28"},{"eventCall":{"arguments":[{"id":13786,"name":"_underwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13535,"src":"4650:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},{"id":13787,"name":"newUW","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13767,"src":"4664:5:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"},{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}],"id":13785,"name":"UnderwriterChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13551,"src":"4631:18:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IUnderwriter_$14830_$_t_contract$_IUnderwriter_$14830_$returns$__$","typeString":"function (contract IUnderwriter,contract IUnderwriter)"}},"id":13788,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4631:39:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13789,"nodeType":"EmitStatement","src":"4626:44:28"},{"expression":{"id":13792,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13790,"name":"_underwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13535,"src":"4676:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":13791,"name":"newUW","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13767,"src":"4691:5:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},"src":"4676:20:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},"id":13793,"nodeType":"ExpressionStatement","src":"4676:20:28"}]},"documentation":{"id":13764,"nodeType":"StructuredDocumentation","src":"4235:261:28","text":" @dev Changes the underwriter contract, responsible for pricing and validating new policies, replacements and cancellations.\n Events:\n - {RiskModule-UnderwriterChanged}\n @param newUW The new underwriter contract. It can't be address(0)"},"functionSelector":"08bb5f7b","id":13795,"implemented":true,"kind":"function","modifiers":[],"name":"setUnderwriter","nameLocation":"4508:14:28","nodeType":"FunctionDefinition","parameters":{"id":13768,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13767,"mutability":"mutable","name":"newUW","nameLocation":"4536:5:28","nodeType":"VariableDeclaration","scope":13795,"src":"4523:18:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"},"typeName":{"id":13766,"nodeType":"UserDefinedTypeName","pathNode":{"id":13765,"name":"IUnderwriter","nameLocations":["4523:12:28"],"nodeType":"IdentifierPath","referencedDeclaration":14830,"src":"4523:12:28"},"referencedDeclaration":14830,"src":"4523:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},"visibility":"internal"}],"src":"4522:20:28"},"returnParameters":{"id":13769,"nodeType":"ParameterList","parameters":[],"src":"4550:0:28"},"scope":14134,"src":"4499:202:28","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[14761],"body":{"id":13805,"nodeType":"Block","src":"4812:34:28","statements":[{"expression":{"id":13803,"name":"_premiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13532,"src":"4825:16:28","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"functionReturnParameters":13802,"id":13804,"nodeType":"Return","src":"4818:23:28"}]},"documentation":{"id":13796,"nodeType":"StructuredDocumentation","src":"4705:27:28","text":"@inheritdoc IRiskModule"},"functionSelector":"73a952e8","id":13806,"implemented":true,"kind":"function","modifiers":[],"name":"premiumsAccount","nameLocation":"4744:15:28","nodeType":"FunctionDefinition","overrides":{"id":13798,"nodeType":"OverrideSpecifier","overrides":[],"src":"4776:8:28"},"parameters":{"id":13797,"nodeType":"ParameterList","parameters":[],"src":"4759:2:28"},"returnParameters":{"id":13802,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13801,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13806,"src":"4794:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"},"typeName":{"id":13800,"nodeType":"UserDefinedTypeName","pathNode":{"id":13799,"name":"IPremiumsAccount","nameLocations":["4794:16:28"],"nodeType":"IdentifierPath","referencedDeclaration":14743,"src":"4794:16:28"},"referencedDeclaration":14743,"src":"4794:16:28","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"src":"4793:18:28"},"scope":14134,"src":"4735:111:28","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":13832,"nodeType":"Block","src":"5022:95:28","statements":[{"expression":{"expression":{"arguments":[{"id":13824,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13817,"src":"5060:1:28","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}},{"id":13825,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13808,"src":"5063:6:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13826,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13810,"src":"5071:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13827,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13814,"src":"5081:10:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":13828,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13812,"src":"5093:5:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"}],"expression":{"id":13822,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"5035:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":13823,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5042:17:28","memberName":"getMinimumPremium","nodeType":"MemberAccess","referencedDeclaration":7964,"src":"5035:24:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Params_$7718_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint40_$returns$_t_struct$_PremiumComposition_$7762_memory_ptr_$","typeString":"function (struct Policy.Params memory,uint256,uint256,uint40,uint40) pure returns (struct Policy.PremiumComposition memory)"}},"id":13829,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5035:64:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PremiumComposition_$7762_memory_ptr","typeString":"struct Policy.PremiumComposition memory"}},"id":13830,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5100:12:28","memberName":"totalPremium","nodeType":"MemberAccess","referencedDeclaration":7761,"src":"5035:77:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13821,"id":13831,"nodeType":"Return","src":"5028:84:28"}]},"functionSelector":"23d09ac9","id":13833,"implemented":true,"kind":"function","modifiers":[],"name":"getMinimumPremium","nameLocation":"4859:17:28","nodeType":"FunctionDefinition","parameters":{"id":13818,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13808,"mutability":"mutable","name":"payout","nameLocation":"4890:6:28","nodeType":"VariableDeclaration","scope":13833,"src":"4882:14:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13807,"name":"uint256","nodeType":"ElementaryTypeName","src":"4882:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13810,"mutability":"mutable","name":"lossProb","nameLocation":"4910:8:28","nodeType":"VariableDeclaration","scope":13833,"src":"4902:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13809,"name":"uint256","nodeType":"ElementaryTypeName","src":"4902:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13812,"mutability":"mutable","name":"start","nameLocation":"4931:5:28","nodeType":"VariableDeclaration","scope":13833,"src":"4924:12:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":13811,"name":"uint40","nodeType":"ElementaryTypeName","src":"4924:6:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":13814,"mutability":"mutable","name":"expiration","nameLocation":"4949:10:28","nodeType":"VariableDeclaration","scope":13833,"src":"4942:17:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":13813,"name":"uint40","nodeType":"ElementaryTypeName","src":"4942:6:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":13817,"mutability":"mutable","name":"p","nameLocation":"4986:1:28","nodeType":"VariableDeclaration","scope":13833,"src":"4965:22:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":13816,"nodeType":"UserDefinedTypeName","pathNode":{"id":13815,"name":"Policy.Params","nameLocations":["4965:6:28","4972:6:28"],"nodeType":"IdentifierPath","referencedDeclaration":7718,"src":"4965:13:28"},"referencedDeclaration":7718,"src":"4965:13:28","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"src":"4876:115:28"},"returnParameters":{"id":13821,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13820,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13833,"src":"5013:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13819,"name":"uint256","nodeType":"ElementaryTypeName","src":"5013:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5012:9:28"},"scope":14134,"src":"4850:267:28","stateMutability":"pure","virtual":false,"visibility":"public"},{"body":{"id":13942,"nodeType":"Block","src":"5544:733:28","statements":[{"assignments":[13845,13847,13849,13851,13853,13856],"declarations":[{"constant":false,"id":13845,"mutability":"mutable","name":"payout","nameLocation":"5566:6:28","nodeType":"VariableDeclaration","scope":13942,"src":"5558:14:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13844,"name":"uint256","nodeType":"ElementaryTypeName","src":"5558:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13847,"mutability":"mutable","name":"premium","nameLocation":"5588:7:28","nodeType":"VariableDeclaration","scope":13942,"src":"5580:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13846,"name":"uint256","nodeType":"ElementaryTypeName","src":"5580:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13849,"mutability":"mutable","name":"lossProb","nameLocation":"5611:8:28","nodeType":"VariableDeclaration","scope":13942,"src":"5603:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13848,"name":"uint256","nodeType":"ElementaryTypeName","src":"5603:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13851,"mutability":"mutable","name":"expiration","nameLocation":"5634:10:28","nodeType":"VariableDeclaration","scope":13942,"src":"5627:17:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":13850,"name":"uint40","nodeType":"ElementaryTypeName","src":"5627:6:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":13853,"mutability":"mutable","name":"internalId","nameLocation":"5659:10:28","nodeType":"VariableDeclaration","scope":13942,"src":"5652:17:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":13852,"name":"uint96","nodeType":"ElementaryTypeName","src":"5652:6:28","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":13856,"mutability":"mutable","name":"params_","nameLocation":"5698:7:28","nodeType":"VariableDeclaration","scope":13942,"src":"5677:28:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":13855,"nodeType":"UserDefinedTypeName","pathNode":{"id":13854,"name":"Policy.Params","nameLocations":["5677:6:28","5684:6:28"],"nodeType":"IdentifierPath","referencedDeclaration":7718,"src":"5677:13:28"},"referencedDeclaration":7718,"src":"5677:13:28","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"id":13865,"initialValue":{"arguments":[{"arguments":[{"id":13861,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5750:4:28","typeDescriptions":{"typeIdentifier":"t_contract$_RiskModule_$14134","typeString":"contract RiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_RiskModule_$14134","typeString":"contract RiskModule"}],"id":13860,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5742:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13859,"name":"address","nodeType":"ElementaryTypeName","src":"5742:7:28","typeDescriptions":{}}},"id":13862,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5742:13:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":13863,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13836,"src":"5757:9:28","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":13857,"name":"_underwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13535,"src":"5714:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},"id":13858,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5727:14:28","memberName":"priceNewPolicy","nodeType":"MemberAccess","referencedDeclaration":14788,"src":"5714:27:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_bytes_memory_ptr_$returns$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint96_$_t_struct$_Params_$7718_memory_ptr_$","typeString":"function (address,bytes memory) view external returns (uint256,uint256,uint256,uint40,uint96,struct Policy.Params memory)"}},"id":13864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5714:53:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint96_$_t_struct$_Params_$7718_memory_ptr_$","typeString":"tuple(uint256,uint256,uint256,uint40,uint96,struct Policy.Params memory)"}},"nodeType":"VariableDeclarationStatement","src":"5550:217:28"},{"assignments":[13867],"declarations":[{"constant":false,"id":13867,"mutability":"mutable","name":"now_","nameLocation":"5781:4:28","nodeType":"VariableDeclaration","scope":13942,"src":"5774:11:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":13866,"name":"uint40","nodeType":"ElementaryTypeName","src":"5774:6:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"id":13873,"initialValue":{"arguments":[{"expression":{"id":13870,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5795:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":13871,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5801:9:28","memberName":"timestamp","nodeType":"MemberAccess","src":"5795:15:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13869,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5788:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":13868,"name":"uint40","nodeType":"ElementaryTypeName","src":"5788:6:28","typeDescriptions":{}}},"id":13872,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5788:23:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"VariableDeclarationStatement","src":"5774:37:28"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13880,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13874,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13847,"src":"5821:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":13877,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5837:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":13876,"name":"uint256","nodeType":"ElementaryTypeName","src":"5837:7:28","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":13875,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5832:4:28","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":13878,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5832:13:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":13879,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5846:3:28","memberName":"max","nodeType":"MemberAccess","src":"5832:17:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5821:28:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13892,"nodeType":"IfStatement","src":"5817:121:28","trueBody":{"id":13891,"nodeType":"Block","src":"5851:87:28","statements":[{"expression":{"id":13889,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13881,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13847,"src":"5859:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":13883,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13845,"src":"5887:6:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13884,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13849,"src":"5895:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13885,"name":"now_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13867,"src":"5905:4:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":13886,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13851,"src":"5911:10:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":13887,"name":"params_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13856,"src":"5923:7:28","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}],"id":13882,"name":"getMinimumPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13833,"src":"5869:17:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint40_$_t_struct$_Params_$7718_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint40,uint40,struct Policy.Params memory) pure returns (uint256)"}},"id":13888,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5869:62:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5859:72:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13890,"nodeType":"ExpressionStatement","src":"5859:72:28"}]}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":13896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13894,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13851,"src":"5951:10:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":13895,"name":"now_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13867,"src":"5964:4:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"5951:17:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":13898,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13851,"src":"5998:10:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":13899,"name":"now_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13867,"src":"6010:4:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"}],"id":13897,"name":"ExpirationMustBeInTheFuture","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13570,"src":"5970:27:28","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint40_$_t_uint40_$returns$_t_error_$","typeString":"function (uint40,uint40) pure returns (error)"}},"id":13900,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5970:45:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":13893,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"5943:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":13901,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5943:73:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13902,"nodeType":"ExpressionStatement","src":"5943:73:28"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":13909,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13904,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13838,"src":"6030:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":13907,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6052:1:28","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":13906,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6044:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13905,"name":"address","nodeType":"ElementaryTypeName","src":"6044:7:28","typeDescriptions":{}}},"id":13908,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6044:10:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6030:24:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":13911,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13838,"src":"6072:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":13910,"name":"InvalidCustomer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13574,"src":"6056:15:28","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":13912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6056:27:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":13903,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"6022:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":13913,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6022:62:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13914,"nodeType":"ExpressionStatement","src":"6022:62:28"},{"expression":{"id":13925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13915,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13842,"src":"6090:6:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":13918,"name":"params_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13856,"src":"6117:7:28","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}},{"id":13919,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13847,"src":"6126:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13920,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13845,"src":"6135:6:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13921,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13849,"src":"6143:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13922,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13851,"src":"6153:10:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":13923,"name":"now_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13867,"src":"6165:4:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"}],"expression":{"id":13916,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"6099:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":13917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6106:10:28","memberName":"initialize","nodeType":"MemberAccess","referencedDeclaration":8099,"src":"6099:17:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Params_$7718_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint40_$returns$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.Params memory,uint256,uint256,uint256,uint40,uint40) pure returns (struct Policy.PolicyData memory)"}},"id":13924,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6099:71:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"src":"6090:80:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":13926,"nodeType":"ExpressionStatement","src":"6090:80:28"},{"expression":{"id":13938,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":13927,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13842,"src":"6176:6:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":13929,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6183:2:28","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"6176:9:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":13932,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13842,"src":"6210:6:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},{"expression":{"id":13933,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6218:3:28","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":13934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6222:6:28","memberName":"sender","nodeType":"MemberAccess","src":"6218:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":13935,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13838,"src":"6230:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":13936,"name":"internalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13853,"src":"6242:10:28","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint96","typeString":"uint96"}],"expression":{"id":13930,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10959,"src":"6188:11:28","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"id":13931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6200:9:28","memberName":"newPolicy","nodeType":"MemberAccess","referencedDeclaration":14531,"src":"6188:21:28","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PolicyData_$7744_memory_ptr_$_t_address_$_t_address_$_t_uint96_$returns$_t_uint256_$","typeString":"function (struct Policy.PolicyData memory,address,address,uint96) external returns (uint256)"}},"id":13937,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6188:65:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6176:77:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13939,"nodeType":"ExpressionStatement","src":"6176:77:28"},{"expression":{"id":13940,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13842,"src":"6266:6:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"functionReturnParameters":13843,"id":13941,"nodeType":"Return","src":"6259:13:28"}]},"documentation":{"id":13834,"nodeType":"StructuredDocumentation","src":"5121:306:28","text":" @dev Creates a new policy. The premium will paid by msg.sender\n @param inputData Input data that will be decoded by the _underwriter to construct the parameters for the\n                  new policy.\n @param onBehalfOf The address that will be the owner of the created policy"},"functionSelector":"8dab1952","id":13943,"implemented":true,"kind":"function","modifiers":[],"name":"newPolicy","nameLocation":"5439:9:28","nodeType":"FunctionDefinition","parameters":{"id":13839,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13836,"mutability":"mutable","name":"inputData","nameLocation":"5464:9:28","nodeType":"VariableDeclaration","scope":13943,"src":"5449:24:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":13835,"name":"bytes","nodeType":"ElementaryTypeName","src":"5449:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":13838,"mutability":"mutable","name":"onBehalfOf","nameLocation":"5483:10:28","nodeType":"VariableDeclaration","scope":13943,"src":"5475:18:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13837,"name":"address","nodeType":"ElementaryTypeName","src":"5475:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5448:46:28"},"returnParameters":{"id":13843,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13842,"mutability":"mutable","name":"policy","nameLocation":"5536:6:28","nodeType":"VariableDeclaration","scope":13943,"src":"5511:31:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":13841,"nodeType":"UserDefinedTypeName","pathNode":{"id":13840,"name":"Policy.PolicyData","nameLocations":["5511:6:28","5518:10:28"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"5511:17:28"},"referencedDeclaration":7744,"src":"5511:17:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"5510:33:28"},"scope":14134,"src":"5430:847:28","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":13972,"nodeType":"Block","src":"6698:107:28","statements":[{"body":{"id":13970,"nodeType":"Block","src":"6751:50:28","statements":[{"expression":{"arguments":[{"baseExpression":{"id":13964,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13947,"src":"6769:9:28","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":13966,"indexExpression":{"id":13965,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13953,"src":"6779:1:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6769:12:28","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":13967,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13949,"src":"6783:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_address","typeString":"address"}],"id":13963,"name":"newPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13943,"src":"6759:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes_calldata_ptr_$_t_address_$returns$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (bytes calldata,address) returns (struct Policy.PolicyData memory)"}},"id":13968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6759:35:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":13969,"nodeType":"ExpressionStatement","src":"6759:35:28"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13956,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13953,"src":"6724:1:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":13957,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13947,"src":"6728:9:28","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":13958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6738:6:28","memberName":"length","nodeType":"MemberAccess","src":"6728:16:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6724:20:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13971,"initializationExpression":{"assignments":[13953],"declarations":[{"constant":false,"id":13953,"mutability":"mutable","name":"i","nameLocation":"6717:1:28","nodeType":"VariableDeclaration","scope":13971,"src":"6709:9:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13952,"name":"uint256","nodeType":"ElementaryTypeName","src":"6709:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13955,"initialValue":{"hexValue":"30","id":13954,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6721:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6709:13:28"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":13961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6746:3:28","subExpression":{"id":13960,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13953,"src":"6748:1:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13962,"nodeType":"ExpressionStatement","src":"6746:3:28"},"nodeType":"ForStatement","src":"6704:97:28"}]},"documentation":{"id":13944,"nodeType":"StructuredDocumentation","src":"6281:336:28","text":" @dev Creates several policies, the premium is paid by msg.sender\n @param inputData Input data that will be decoded by the _underwriter to construct the parameters for the\n                  new policy.\n @param onBehalfOf The address that will be the owner of the created policy (same for all the policies)"},"functionSelector":"1f0f3e18","id":13973,"implemented":true,"kind":"function","modifiers":[],"name":"newPolicies","nameLocation":"6629:11:28","nodeType":"FunctionDefinition","parameters":{"id":13950,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13947,"mutability":"mutable","name":"inputData","nameLocation":"6658:9:28","nodeType":"VariableDeclaration","scope":13973,"src":"6641:26:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":13945,"name":"bytes","nodeType":"ElementaryTypeName","src":"6641:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":13946,"nodeType":"ArrayTypeName","src":"6641:7:28","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":13949,"mutability":"mutable","name":"onBehalfOf","nameLocation":"6677:10:28","nodeType":"VariableDeclaration","scope":13973,"src":"6669:18:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13948,"name":"address","nodeType":"ElementaryTypeName","src":"6669:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6640:48:28"},"returnParameters":{"id":13951,"nodeType":"ParameterList","parameters":[],"src":"6698:0:28"},"scope":14134,"src":"6620:185:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":14074,"nodeType":"Block","src":"7160:739:28","statements":[{"assignments":[13986,13988,13990,13992,13994,13996,13999],"declarations":[{"constant":false,"id":13986,"mutability":"mutable","name":"oldPolicy","nameLocation":"7199:9:28","nodeType":"VariableDeclaration","scope":14074,"src":"7174:34:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":13985,"nodeType":"UserDefinedTypeName","pathNode":{"id":13984,"name":"Policy.PolicyData","nameLocations":["7174:6:28","7181:10:28"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"7174:17:28"},"referencedDeclaration":7744,"src":"7174:17:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":13988,"mutability":"mutable","name":"payout","nameLocation":"7224:6:28","nodeType":"VariableDeclaration","scope":14074,"src":"7216:14:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13987,"name":"uint256","nodeType":"ElementaryTypeName","src":"7216:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13990,"mutability":"mutable","name":"premium","nameLocation":"7246:7:28","nodeType":"VariableDeclaration","scope":14074,"src":"7238:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13989,"name":"uint256","nodeType":"ElementaryTypeName","src":"7238:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13992,"mutability":"mutable","name":"lossProb","nameLocation":"7269:8:28","nodeType":"VariableDeclaration","scope":14074,"src":"7261:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13991,"name":"uint256","nodeType":"ElementaryTypeName","src":"7261:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13994,"mutability":"mutable","name":"expiration","nameLocation":"7292:10:28","nodeType":"VariableDeclaration","scope":14074,"src":"7285:17:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":13993,"name":"uint40","nodeType":"ElementaryTypeName","src":"7285:6:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":13996,"mutability":"mutable","name":"internalId","nameLocation":"7317:10:28","nodeType":"VariableDeclaration","scope":14074,"src":"7310:17:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":13995,"name":"uint96","nodeType":"ElementaryTypeName","src":"7310:6:28","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":13999,"mutability":"mutable","name":"params_","nameLocation":"7356:7:28","nodeType":"VariableDeclaration","scope":14074,"src":"7335:28:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":13998,"nodeType":"UserDefinedTypeName","pathNode":{"id":13997,"name":"Policy.Params","nameLocations":["7335:6:28","7342:6:28"],"nodeType":"IdentifierPath","referencedDeclaration":7718,"src":"7335:13:28"},"referencedDeclaration":7718,"src":"7335:13:28","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"id":14008,"initialValue":{"arguments":[{"arguments":[{"id":14004,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7416:4:28","typeDescriptions":{"typeIdentifier":"t_contract$_RiskModule_$14134","typeString":"contract RiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_RiskModule_$14134","typeString":"contract RiskModule"}],"id":14003,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7408:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":14002,"name":"address","nodeType":"ElementaryTypeName","src":"7408:7:28","typeDescriptions":{}}},"id":14005,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7408:13:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":14006,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13976,"src":"7423:9:28","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":14000,"name":"_underwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13535,"src":"7372:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},"id":14001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7385:22:28","memberName":"pricePolicyReplacement","nodeType":"MemberAccess","referencedDeclaration":14812,"src":"7372:35:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_bytes_memory_ptr_$returns$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint96_$_t_struct$_Params_$7718_memory_ptr_$","typeString":"function (address,bytes memory) view external returns (struct Policy.PolicyData memory,uint256,uint256,uint256,uint40,uint96,struct Policy.Params memory)"}},"id":14007,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7372:61:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint96_$_t_struct$_Params_$7718_memory_ptr_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256,uint40,uint96,struct Policy.Params memory)"}},"nodeType":"VariableDeclarationStatement","src":"7166:267:28"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14015,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14009,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13990,"src":"7444:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":14012,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7460:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":14011,"name":"uint256","nodeType":"ElementaryTypeName","src":"7460:7:28","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":14010,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7455:4:28","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":14013,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7455:13:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":14014,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7469:3:28","memberName":"max","nodeType":"MemberAccess","src":"7455:17:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7444:28:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14028,"nodeType":"IfStatement","src":"7440:132:28","trueBody":{"id":14027,"nodeType":"Block","src":"7474:98:28","statements":[{"expression":{"id":14025,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14016,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13990,"src":"7482:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":14018,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13988,"src":"7510:6:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14019,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13992,"src":"7518:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":14020,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13986,"src":"7528:9:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":14021,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7538:5:28","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":7741,"src":"7528:15:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":14022,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13994,"src":"7545:10:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":14023,"name":"params_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13999,"src":"7557:7:28","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}],"id":14017,"name":"getMinimumPremium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13833,"src":"7492:17:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint40_$_t_struct$_Params_$7718_memory_ptr_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint40,uint40,struct Policy.Params memory) pure returns (uint256)"}},"id":14024,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7492:73:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7482:83:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14026,"nodeType":"ExpressionStatement","src":"7482:83:28"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":14035,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14029,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13994,"src":"7581:10:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"arguments":[{"expression":{"id":14032,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"7601:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":14033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7607:9:28","memberName":"timestamp","nodeType":"MemberAccess","src":"7601:15:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14031,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7594:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":14030,"name":"uint40","nodeType":"ElementaryTypeName","src":"7594:6:28","typeDescriptions":{}}},"id":14034,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7594:23:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"7581:36:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14045,"nodeType":"IfStatement","src":"7577:113:28","trueBody":{"errorCall":{"arguments":[{"id":14037,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13994,"src":"7654:10:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"arguments":[{"expression":{"id":14040,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"7673:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":14041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7679:9:28","memberName":"timestamp","nodeType":"MemberAccess","src":"7673:15:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14039,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7666:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":14038,"name":"uint40","nodeType":"ElementaryTypeName","src":"7666:6:28","typeDescriptions":{}}},"id":14042,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7666:23:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"}],"id":14036,"name":"ExpirationMustBeInTheFuture","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13570,"src":"7626:27:28","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint40_$_t_uint40_$returns$_t_error_$","typeString":"function (uint40,uint40) pure returns (error)"}},"id":14043,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7626:64:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14044,"nodeType":"RevertStatement","src":"7619:71:28"}},{"expression":{"id":14057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14046,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13980,"src":"7696:6:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":14049,"name":"params_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13999,"src":"7723:7:28","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}},{"id":14050,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13990,"src":"7732:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14051,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13988,"src":"7741:6:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14052,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13992,"src":"7749:8:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14053,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13994,"src":"7759:10:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"expression":{"id":14054,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13986,"src":"7771:9:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":14055,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7781:5:28","memberName":"start","nodeType":"MemberAccess","referencedDeclaration":7741,"src":"7771:15:28","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint40","typeString":"uint40"}],"expression":{"id":14047,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"7705:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":14048,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7712:10:28","memberName":"initialize","nodeType":"MemberAccess","referencedDeclaration":8099,"src":"7705:17:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Params_$7718_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint40_$returns$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.Params memory,uint256,uint256,uint256,uint40,uint40) pure returns (struct Policy.PolicyData memory)"}},"id":14056,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7705:82:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"src":"7696:91:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":14058,"nodeType":"ExpressionStatement","src":"7696:91:28"},{"expression":{"id":14070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14059,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13980,"src":"7794:6:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":14061,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7801:2:28","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"7794:9:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":14064,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13986,"src":"7832:9:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},{"id":14065,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13980,"src":"7843:6:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},{"expression":{"id":14066,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7851:3:28","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":14067,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7855:6:28","memberName":"sender","nodeType":"MemberAccess","src":"7851:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":14068,"name":"internalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13996,"src":"7863:10:28","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"},{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint96","typeString":"uint96"}],"expression":{"id":14062,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10959,"src":"7806:11:28","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"id":14063,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7818:13:28","memberName":"replacePolicy","nodeType":"MemberAccess","referencedDeclaration":14547,"src":"7806:25:28","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PolicyData_$7744_memory_ptr_$_t_struct$_PolicyData_$7744_memory_ptr_$_t_address_$_t_uint96_$returns$_t_uint256_$","typeString":"function (struct Policy.PolicyData memory,struct Policy.PolicyData memory,address,uint96) external returns (uint256)"}},"id":14069,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7806:68:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7794:80:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14071,"nodeType":"ExpressionStatement","src":"7794:80:28"},{"expression":{"id":14072,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13980,"src":"7888:6:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"functionReturnParameters":13981,"id":14073,"nodeType":"Return","src":"7881:13:28"}]},"documentation":{"id":13974,"nodeType":"StructuredDocumentation","src":"6809:240:28","text":" @dev Replaces a policy with a new one, with the same owner\n @param inputData Input data that will be decoded by the _underwriter to construct the oldPolicy and the\n                  parameters for the new policy."},"functionSelector":"68beecf9","id":14075,"implemented":true,"kind":"function","modifiers":[],"name":"replacePolicy","nameLocation":"7061:13:28","nodeType":"FunctionDefinition","parameters":{"id":13977,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13976,"mutability":"mutable","name":"inputData","nameLocation":"7090:9:28","nodeType":"VariableDeclaration","scope":14075,"src":"7075:24:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":13975,"name":"bytes","nodeType":"ElementaryTypeName","src":"7075:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7074:26:28"},"returnParameters":{"id":13981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13980,"mutability":"mutable","name":"policy","nameLocation":"7152:6:28","nodeType":"VariableDeclaration","scope":14075,"src":"7127:31:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":13979,"nodeType":"UserDefinedTypeName","pathNode":{"id":13978,"name":"Policy.PolicyData","nameLocations":["7127:6:28","7134:10:28"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"7127:17:28"},"referencedDeclaration":7744,"src":"7127:17:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"7126:33:28"},"scope":14134,"src":"7052:847:28","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"body":{"id":14110,"nodeType":"Block","src":"8245:308:28","statements":[{"assignments":[14085,14087,14089,14091],"declarations":[{"constant":false,"id":14085,"mutability":"mutable","name":"policyToCancel","nameLocation":"8284:14:28","nodeType":"VariableDeclaration","scope":14110,"src":"8259:39:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14084,"nodeType":"UserDefinedTypeName","pathNode":{"id":14083,"name":"Policy.PolicyData","nameLocations":["8259:6:28","8266:10:28"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"8259:17:28"},"referencedDeclaration":7744,"src":"8259:17:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":14087,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"8314:17:28","nodeType":"VariableDeclaration","scope":14110,"src":"8306:25:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14086,"name":"uint256","nodeType":"ElementaryTypeName","src":"8306:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14089,"mutability":"mutable","name":"jrCocRefund","nameLocation":"8347:11:28","nodeType":"VariableDeclaration","scope":14110,"src":"8339:19:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14088,"name":"uint256","nodeType":"ElementaryTypeName","src":"8339:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14091,"mutability":"mutable","name":"srCocRefund","nameLocation":"8374:11:28","nodeType":"VariableDeclaration","scope":14110,"src":"8366:19:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14090,"name":"uint256","nodeType":"ElementaryTypeName","src":"8366:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14100,"initialValue":{"arguments":[{"arguments":[{"id":14096,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"8439:4:28","typeDescriptions":{"typeIdentifier":"t_contract$_RiskModule_$14134","typeString":"contract RiskModule"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_RiskModule_$14134","typeString":"contract RiskModule"}],"id":14095,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8431:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":14094,"name":"address","nodeType":"ElementaryTypeName","src":"8431:7:28","typeDescriptions":{}}},"id":14097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8431:13:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":14098,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14078,"src":"8446:9:28","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":14092,"name":"_underwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13535,"src":"8394:12:28","typeDescriptions":{"typeIdentifier":"t_contract$_IUnderwriter_$14830","typeString":"contract IUnderwriter"}},"id":14093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8407:23:28","memberName":"pricePolicyCancellation","nodeType":"MemberAccess","referencedDeclaration":14829,"src":"8394:36:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_bytes_memory_ptr_$returns$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"function (address,bytes memory) view external returns (struct Policy.PolicyData memory,uint256,uint256,uint256)"}},"id":14099,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8394:62:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"8251:205:28"},{"expression":{"arguments":[{"id":14104,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14085,"src":"8488:14:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},{"id":14105,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14087,"src":"8504:17:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14106,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14089,"src":"8523:11:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":14107,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14091,"src":"8536:11:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14101,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10959,"src":"8463:11:28","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"id":14103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8475:12:28","memberName":"cancelPolicy","nodeType":"MemberAccess","referencedDeclaration":14560,"src":"8463:24:28","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (struct Policy.PolicyData memory,uint256,uint256,uint256) external"}},"id":14108,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8463:85:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14109,"nodeType":"ExpressionStatement","src":"8463:85:28"}]},"documentation":{"id":14076,"nodeType":"StructuredDocumentation","src":"7903:274:28","text":" @dev Cancels a policy, giving back all (or part) of the pure premium and the non-accrued CoC\n @param inputData Input data that will be decoded by the _underwriter to construct the oldPolicy and the\n                  parameters for the new policy."},"functionSelector":"73d0efd0","id":14111,"implemented":true,"kind":"function","modifiers":[],"name":"cancelPolicy","nameLocation":"8189:12:28","nodeType":"FunctionDefinition","parameters":{"id":14079,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14078,"mutability":"mutable","name":"inputData","nameLocation":"8217:9:28","nodeType":"VariableDeclaration","scope":14111,"src":"8202:24:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":14077,"name":"bytes","nodeType":"ElementaryTypeName","src":"8202:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8201:26:28"},"returnParameters":{"id":14080,"nodeType":"ParameterList","parameters":[],"src":"8245:0:28"},"scope":14134,"src":"8180:373:28","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"body":{"id":14127,"nodeType":"Block","src":"9019:52:28","statements":[{"expression":{"arguments":[{"id":14123,"name":"policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14115,"src":"9051:6:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"}},{"id":14124,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14117,"src":"9059:6:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":14120,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10959,"src":"9025:11:28","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"id":14122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9037:13:28","memberName":"resolvePolicy","nodeType":"MemberAccess","referencedDeclaration":14569,"src":"9025:25:28","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$returns$__$","typeString":"function (struct Policy.PolicyData memory,uint256) external"}},"id":14125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9025:41:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14126,"nodeType":"ExpressionStatement","src":"9025:41:28"}]},"documentation":{"id":14112,"nodeType":"StructuredDocumentation","src":"8557:376:28","text":" @dev Resolves a policy, if payout > 0, it pays to the policy holder.\n Requirements:\n - payout <= policy.payout\n - block.timestamp >= policy.expiration\n Emits:\n - {PolicyPool.PolicyResolved}\n @param policy The policy previously created (from {NewPolicy} event)\n @param payout The payout to transfer to the policy holder"},"functionSelector":"bd644c56","id":14128,"implemented":true,"kind":"function","modifiers":[],"name":"resolvePolicy","nameLocation":"8945:13:28","nodeType":"FunctionDefinition","parameters":{"id":14118,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14115,"mutability":"mutable","name":"policy","nameLocation":"8986:6:28","nodeType":"VariableDeclaration","scope":14128,"src":"8959:33:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14114,"nodeType":"UserDefinedTypeName","pathNode":{"id":14113,"name":"Policy.PolicyData","nameLocations":["8959:6:28","8966:10:28"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"8959:17:28"},"referencedDeclaration":7744,"src":"8959:17:28","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":14117,"mutability":"mutable","name":"payout","nameLocation":"9002:6:28","nodeType":"VariableDeclaration","scope":14128,"src":"8994:14:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14116,"name":"uint256","nodeType":"ElementaryTypeName","src":"8994:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8958:51:28"},"returnParameters":{"id":14119,"nodeType":"ParameterList","parameters":[],"src":"9019:0:28"},"scope":14134,"src":"8936:135:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"constant":false,"documentation":{"id":14129,"nodeType":"StructuredDocumentation","src":"9075:246:28","text":" @dev This empty reserved space is put in place to allow future versions to add new\n variables without shifting down storage in the inheritance chain.\n See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps"},"id":14133,"mutability":"mutable","name":"__gap","nameLocation":"9344:5:28","nodeType":"VariableDeclaration","scope":14134,"src":"9324:25:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$48_storage","typeString":"uint256[48]"},"typeName":{"baseType":{"id":14130,"name":"uint256","nodeType":"ElementaryTypeName","src":"9324:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14132,"length":{"hexValue":"3438","id":14131,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9332:2:28","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"nodeType":"ArrayTypeName","src":"9324:11:28","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$48_storage_ptr","typeString":"uint256[48]"}},"visibility":"private"}],"scope":14135,"src":"708:8644:28","usedErrors":[7769,7776,10961,10963,10965,13555,13560,13562,13564,13570,13574,22846,22859,23183,23186,23457,23462,25668,26802],"usedEvents":[13543,13551,22272,23191]}],"src":"39:9314:28"},"id":28},"@ensuro/core/contracts/interfaces/ICooler.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/interfaces/ICooler.sol","exportedSymbols":{"ICooler":[14162],"IEToken":[14336]},"id":14163,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":14136,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:29"},{"absolutePath":"@ensuro/core/contracts/interfaces/IEToken.sol","file":"./IEToken.sol","id":14138,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14163,"sourceUnit":14337,"src":"65:38:29","symbolAliases":[{"foreign":{"id":14137,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14336,"src":"73:7:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"ICooler","contractDependencies":[],"contractKind":"interface","documentation":{"id":14139,"nodeType":"StructuredDocumentation","src":"105:180:29","text":" @title ICooler - Interface of Cooler contracts, for eTokens that have cooldown\n @dev This contract will hold the tokens during the cooldown period\n @author Ensuro"},"fullyImplemented":false,"id":14162,"linearizedBaseContracts":[14162],"name":"ICooler","nameLocation":"296:7:29","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":14140,"nodeType":"StructuredDocumentation","src":"308:197:29","text":" @notice Returns the amount of pending (scheduled) withdrawals for a given eToken\n @param eToken The eToken (see {EToken})\n @return The amount in currency that is pending"},"functionSelector":"f3f43703","id":14148,"implemented":false,"kind":"function","modifiers":[],"name":"pendingWithdrawals","nameLocation":"517:18:29","nodeType":"FunctionDefinition","parameters":{"id":14144,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14143,"mutability":"mutable","name":"eToken","nameLocation":"544:6:29","nodeType":"VariableDeclaration","scope":14148,"src":"536:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":14142,"nodeType":"UserDefinedTypeName","pathNode":{"id":14141,"name":"IEToken","nameLocations":["536:7:29"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"536:7:29"},"referencedDeclaration":14336,"src":"536:7:29","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"535:16:29"},"returnParameters":{"id":14147,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14146,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14148,"src":"575:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14145,"name":"uint256","nodeType":"ElementaryTypeName","src":"575:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"574:9:29"},"scope":14162,"src":"508:76:29","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14149,"nodeType":"StructuredDocumentation","src":"588:315:29","text":" @notice Returns the cooldown period in seconds required for withdrawals in a given eToken\n @param eToken The eToken (see {EToken})\n @param owner  The owner of the tokens requested to withdraw\n @param amount The amount requested to withdraw\n @return The cooldown period in seconds"},"functionSelector":"5ce095ee","id":14161,"implemented":false,"kind":"function","modifiers":[],"name":"cooldownPeriod","nameLocation":"915:14:29","nodeType":"FunctionDefinition","parameters":{"id":14157,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14152,"mutability":"mutable","name":"eToken","nameLocation":"938:6:29","nodeType":"VariableDeclaration","scope":14161,"src":"930:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":14151,"nodeType":"UserDefinedTypeName","pathNode":{"id":14150,"name":"IEToken","nameLocations":["930:7:29"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"930:7:29"},"referencedDeclaration":14336,"src":"930:7:29","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":14154,"mutability":"mutable","name":"owner","nameLocation":"954:5:29","nodeType":"VariableDeclaration","scope":14161,"src":"946:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14153,"name":"address","nodeType":"ElementaryTypeName","src":"946:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14156,"mutability":"mutable","name":"amount","nameLocation":"969:6:29","nodeType":"VariableDeclaration","scope":14161,"src":"961:14:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14155,"name":"uint256","nodeType":"ElementaryTypeName","src":"961:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"929:47:29"},"returnParameters":{"id":14160,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14159,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14161,"src":"1000:6:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":14158,"name":"uint40","nodeType":"ElementaryTypeName","src":"1000:6:29","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"999:8:29"},"scope":14162,"src":"906:102:29","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":14163,"src":"286:724:29","usedErrors":[],"usedEvents":[]}],"src":"39:972:29"},"id":29},"@ensuro/core/contracts/interfaces/IEToken.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/interfaces/IEToken.sol","exportedSymbols":{"IEToken":[14336]},"id":14337,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":14164,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:30"},{"abstract":false,"baseContracts":[],"canonicalName":"IEToken","contractDependencies":[],"contractKind":"interface","documentation":{"id":14165,"nodeType":"StructuredDocumentation","src":"65:131:30","text":" @title IEToken interface\n @notice Interface for EToken smart contracts, these are the capital pools.\n @author Ensuro"},"fullyImplemented":false,"id":14336,"linearizedBaseContracts":[14336],"name":"IEToken","nameLocation":"207:7:30","nodeType":"ContractDefinition","nodes":[{"canonicalName":"IEToken.Parameter","documentation":{"id":14166,"nodeType":"StructuredDocumentation","src":"219:540:30","text":" @notice Enum of the configurable parameters in an EToken.\n @dev These are the supported parameter types:\n - liquidityRequirement: target solvency/liquidity constraint (typically 1, scales the SCR to lock more)\n - minUtilizationRate: lower bound for utilization rate after deposits (prevents excess idle liquidity)\n - maxUtilizationRate: upper bound for utilization rate after capital lock (prevents locking all the capital)\n - internalLoanInterestRate: annualized rate charged on internal loans (wad)"},"id":14171,"members":[{"id":14167,"name":"liquidityRequirement","nameLocation":"783:20:30","nodeType":"EnumValue","src":"783:20:30"},{"id":14168,"name":"minUtilizationRate","nameLocation":"809:18:30","nodeType":"EnumValue","src":"809:18:30"},{"id":14169,"name":"maxUtilizationRate","nameLocation":"833:18:30","nodeType":"EnumValue","src":"833:18:30"},{"id":14170,"name":"internalLoanInterestRate","nameLocation":"857:24:30","nodeType":"EnumValue","src":"857:24:30"}],"name":"Parameter","nameLocation":"767:9:30","nodeType":"EnumDefinition","src":"762:123:30"},{"anonymous":false,"documentation":{"id":14172,"nodeType":"StructuredDocumentation","src":"889:286:30","text":" @notice Event emitted when part of the funds of the eToken are locked as solvency capital.\n @param policyId The id of the policy that locks the capital\n @param interestRate The annualized interestRate paid for the capital (wad)\n @param value The amount locked"},"eventSelector":"266dc24a75ea4c7d7c74f89a78dc3a44307babf0b588230497189fc46d71693d","id":14180,"name":"SCRLocked","nameLocation":"1184:9:30","nodeType":"EventDefinition","parameters":{"id":14179,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14174,"indexed":true,"mutability":"mutable","name":"policyId","nameLocation":"1210:8:30","nodeType":"VariableDeclaration","scope":14180,"src":"1194:24:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14173,"name":"uint256","nodeType":"ElementaryTypeName","src":"1194:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14176,"indexed":false,"mutability":"mutable","name":"interestRate","nameLocation":"1228:12:30","nodeType":"VariableDeclaration","scope":14180,"src":"1220:20:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14175,"name":"uint256","nodeType":"ElementaryTypeName","src":"1220:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14178,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"1250:5:30","nodeType":"VariableDeclaration","scope":14180,"src":"1242:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14177,"name":"uint256","nodeType":"ElementaryTypeName","src":"1242:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1193:63:30"},"src":"1178:79:30"},{"anonymous":false,"documentation":{"id":14181,"nodeType":"StructuredDocumentation","src":"1261:561:30","text":" @notice Event emitted when the locked funds are unlocked and no longer used as solvency capital.\n @param policyId The id of the policy that unlocks the capital (should be the that locked before with SCRLocked)\n @param interestRate The annualized interestRate that was paid for the capital (wad)\n @param value The amount unlocked\n @param adjustment Discrete amount of adjustment done to the totalSupply to reflect when more or less\n                   than the received cost of capital has been accrued since the SCR was locked."},"eventSelector":"82e3211b2071ba731d809bc922f607d914d7cb7d76b03e72acbe7753613e21f3","id":14191,"name":"SCRUnlocked","nameLocation":"1831:11:30","nodeType":"EventDefinition","parameters":{"id":14190,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14183,"indexed":true,"mutability":"mutable","name":"policyId","nameLocation":"1859:8:30","nodeType":"VariableDeclaration","scope":14191,"src":"1843:24:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14182,"name":"uint256","nodeType":"ElementaryTypeName","src":"1843:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14185,"indexed":false,"mutability":"mutable","name":"interestRate","nameLocation":"1877:12:30","nodeType":"VariableDeclaration","scope":14191,"src":"1869:20:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14184,"name":"uint256","nodeType":"ElementaryTypeName","src":"1869:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14187,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"1899:5:30","nodeType":"VariableDeclaration","scope":14191,"src":"1891:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14186,"name":"uint256","nodeType":"ElementaryTypeName","src":"1891:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14189,"indexed":false,"mutability":"mutable","name":"adjustment","nameLocation":"1913:10:30","nodeType":"VariableDeclaration","scope":14191,"src":"1906:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":14188,"name":"int256","nodeType":"ElementaryTypeName","src":"1906:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1842:82:30"},"src":"1825:100:30"},{"documentation":{"id":14192,"nodeType":"StructuredDocumentation","src":"1929:107:30","text":" @notice Returns the amount of capital that's locked as solvency capital for active policies."},"functionSelector":"6c6f4542","id":14197,"implemented":false,"kind":"function","modifiers":[],"name":"scr","nameLocation":"2048:3:30","nodeType":"FunctionDefinition","parameters":{"id":14193,"nodeType":"ParameterList","parameters":[],"src":"2051:2:30"},"returnParameters":{"id":14196,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14195,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14197,"src":"2077:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14194,"name":"uint256","nodeType":"ElementaryTypeName","src":"2077:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2076:9:30"},"scope":14336,"src":"2039:47:30","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14198,"nodeType":"StructuredDocumentation","src":"2090:492:30","text":" @notice Locks part of the liquidity of the EToken as solvency capital.\n @param policyId The id of the policy that locks the capital\n @param scrAmount The amount to lock\n @param policyInterestRate The annualized interest rate (wad) to be paid for the `scrAmount`\n @custom:pre Must be called by a _borrower_ (PremiumsAccount) previously added with `addBorrower`.\n @custom:pre `scrAmount` <= `fundsAvailableToLock()`\n @custom:emits SCRLocked"},"functionSelector":"4ffcda8c","id":14207,"implemented":false,"kind":"function","modifiers":[],"name":"lockScr","nameLocation":"2594:7:30","nodeType":"FunctionDefinition","parameters":{"id":14205,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14200,"mutability":"mutable","name":"policyId","nameLocation":"2610:8:30","nodeType":"VariableDeclaration","scope":14207,"src":"2602:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14199,"name":"uint256","nodeType":"ElementaryTypeName","src":"2602:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14202,"mutability":"mutable","name":"scrAmount","nameLocation":"2628:9:30","nodeType":"VariableDeclaration","scope":14207,"src":"2620:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14201,"name":"uint256","nodeType":"ElementaryTypeName","src":"2620:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14204,"mutability":"mutable","name":"policyInterestRate","nameLocation":"2647:18:30","nodeType":"VariableDeclaration","scope":14207,"src":"2639:26:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14203,"name":"uint256","nodeType":"ElementaryTypeName","src":"2639:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2601:65:30"},"returnParameters":{"id":14206,"nodeType":"ParameterList","parameters":[],"src":"2675:0:30"},"scope":14336,"src":"2585:91:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14208,"nodeType":"StructuredDocumentation","src":"2680:847:30","text":" @notice Unlocks solvency capital previously locked with `lockScr`.\n @dev The capital no longer needed as solvency, enabling withdrawal.\n @param policyId The id of the policy that locked the scr originally\n @param scrAmount The amount to unlock\n @param policyInterestRate The annualized interest rate that was paid for the `scrAmount`, must be the same that\n                           was sent in `lockScr` call.\n @param adjustment Discrete amount of adjustment done to the totalSupply to reflect when more or less\n                   than the received cost of capital has been accrued since the SCR was locked.\n @custom:pre Must be called by a _borrower_ (PremiumsAccount) previously added with `addBorrower`.\n @custom:pre `scrAmount` must be <= {scr}\n @custom:emits SCRUnlocked"},"functionSelector":"a227dc41","id":14219,"implemented":false,"kind":"function","modifiers":[],"name":"unlockScr","nameLocation":"3539:9:30","nodeType":"FunctionDefinition","parameters":{"id":14217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14210,"mutability":"mutable","name":"policyId","nameLocation":"3557:8:30","nodeType":"VariableDeclaration","scope":14219,"src":"3549:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14209,"name":"uint256","nodeType":"ElementaryTypeName","src":"3549:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14212,"mutability":"mutable","name":"scrAmount","nameLocation":"3575:9:30","nodeType":"VariableDeclaration","scope":14219,"src":"3567:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14211,"name":"uint256","nodeType":"ElementaryTypeName","src":"3567:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14214,"mutability":"mutable","name":"policyInterestRate","nameLocation":"3594:18:30","nodeType":"VariableDeclaration","scope":14219,"src":"3586:26:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14213,"name":"uint256","nodeType":"ElementaryTypeName","src":"3586:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14216,"mutability":"mutable","name":"adjustment","nameLocation":"3621:10:30","nodeType":"VariableDeclaration","scope":14219,"src":"3614:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":14215,"name":"int256","nodeType":"ElementaryTypeName","src":"3614:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"3548:84:30"},"returnParameters":{"id":14218,"nodeType":"ParameterList","parameters":[],"src":"3641:0:30"},"scope":14336,"src":"3530:112:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14220,"nodeType":"StructuredDocumentation","src":"3646:899:30","text":" @notice Unlocks solvency capital previously locked with `lockScr`, doing a refund of the CoC previously received\n @dev The capital no longer needed as solvency . It refunds part of the Coc received that wasn't accrued (or if\n it was already accrued, it is adjusted). The refund doesn't affect the totalSupply. It just changes the reserves.\n @param policyId The id of the policy that locked the scr originally\n @param scrAmount The amount to unlock\n @param policyInterestRate The annualized interest rate that was paid for the `scrAmount`, must be the same that\n was sent in `lockScr` call.\n @param receiver The address of the receiver of the refund\n @param refundAmount The amount to refund\n @custom:pre Must be called by a _borrower_ previously added with `addBorrower`.\n @custom:emits SCRUnlocked\n @custom:emits CoCRefunded"},"functionSelector":"3ad2820b","id":14235,"implemented":false,"kind":"function","modifiers":[],"name":"unlockScrWithRefund","nameLocation":"4557:19:30","nodeType":"FunctionDefinition","parameters":{"id":14233,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14222,"mutability":"mutable","name":"policyId","nameLocation":"4590:8:30","nodeType":"VariableDeclaration","scope":14235,"src":"4582:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14221,"name":"uint256","nodeType":"ElementaryTypeName","src":"4582:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14224,"mutability":"mutable","name":"scrAmount","nameLocation":"4612:9:30","nodeType":"VariableDeclaration","scope":14235,"src":"4604:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14223,"name":"uint256","nodeType":"ElementaryTypeName","src":"4604:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14226,"mutability":"mutable","name":"policyInterestRate","nameLocation":"4635:18:30","nodeType":"VariableDeclaration","scope":14235,"src":"4627:26:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14225,"name":"uint256","nodeType":"ElementaryTypeName","src":"4627:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14228,"mutability":"mutable","name":"adjustment","nameLocation":"4666:10:30","nodeType":"VariableDeclaration","scope":14235,"src":"4659:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":14227,"name":"int256","nodeType":"ElementaryTypeName","src":"4659:6:30","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":14230,"mutability":"mutable","name":"receiver","nameLocation":"4690:8:30","nodeType":"VariableDeclaration","scope":14235,"src":"4682:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14229,"name":"address","nodeType":"ElementaryTypeName","src":"4682:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14232,"mutability":"mutable","name":"refundAmount","nameLocation":"4712:12:30","nodeType":"VariableDeclaration","scope":14235,"src":"4704:20:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14231,"name":"uint256","nodeType":"ElementaryTypeName","src":"4704:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4576:152:30"},"returnParameters":{"id":14234,"nodeType":"ParameterList","parameters":[],"src":"4737:0:30"},"scope":14336,"src":"4548:190:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14236,"nodeType":"StructuredDocumentation","src":"4742:861:30","text":" @notice Registers a deposit of liquidity in the pool.\n @dev Called from the PolicyPool, assumes the amount has already been transferred. `amount` of eToken are minted\n and given to the provider in exchange of the liquidity provided.\n @param amount The amount deposited.\n @param caller The user that initiates the deposit\n @param receiver The user that will receive the minted eTokens\n @custom:pre Must be called by `policyPool()`\n @custom:pre The amount was transferred\n @custom:pre `utilizationRate()` after the deposit is >= `minUtilizationRate()`\n @custom:pre If there is a whitelist, caller must be authorized to deposit. If caller != receiver, then transfer from caller\n             to received must be authorized\n @custom:emits Transfer with `from` = 0x0 and to = `provider` (mint)"},"functionSelector":"2e2d2984","id":14245,"implemented":false,"kind":"function","modifiers":[],"name":"deposit","nameLocation":"5615:7:30","nodeType":"FunctionDefinition","parameters":{"id":14243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14238,"mutability":"mutable","name":"amount","nameLocation":"5631:6:30","nodeType":"VariableDeclaration","scope":14245,"src":"5623:14:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14237,"name":"uint256","nodeType":"ElementaryTypeName","src":"5623:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14240,"mutability":"mutable","name":"caller","nameLocation":"5647:6:30","nodeType":"VariableDeclaration","scope":14245,"src":"5639:14:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14239,"name":"address","nodeType":"ElementaryTypeName","src":"5639:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14242,"mutability":"mutable","name":"receiver","nameLocation":"5663:8:30","nodeType":"VariableDeclaration","scope":14245,"src":"5655:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14241,"name":"address","nodeType":"ElementaryTypeName","src":"5655:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5622:50:30"},"returnParameters":{"id":14244,"nodeType":"ParameterList","parameters":[],"src":"5681:0:30"},"scope":14336,"src":"5606:76:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14246,"nodeType":"StructuredDocumentation","src":"5686:786:30","text":" @notice Withdraws an amount from an eToken.\n @dev `withdrawn` eTokens are be burned and the user receives the same amount in `currency()`.\n If `amount == type(uint256).max`, it withdraws up to `maxWithdraw` (i.e., as much as possible).\n Otherwise, it reverts if `amount > maxWithdraw`.\n @param amount The amount to withdraw. If `amount == type(uint256).max`, withdraws up to `maxWithdraw`.\n @param caller The user that initiates the withdrawal\n @param owner The owner of the eTokens (either caller==owner or caller has allowance)\n @param receiver The address that will receive the resulting `currency()`\n @custom:pre Must be called by `policyPool()`\n @custom:emits Transfer with `from` = `provider` and to = `0x0` (burn)"},"functionSelector":"23e103a8","id":14259,"implemented":false,"kind":"function","modifiers":[],"name":"withdraw","nameLocation":"6484:8:30","nodeType":"FunctionDefinition","parameters":{"id":14255,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14248,"mutability":"mutable","name":"amount","nameLocation":"6506:6:30","nodeType":"VariableDeclaration","scope":14259,"src":"6498:14:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14247,"name":"uint256","nodeType":"ElementaryTypeName","src":"6498:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14250,"mutability":"mutable","name":"caller","nameLocation":"6526:6:30","nodeType":"VariableDeclaration","scope":14259,"src":"6518:14:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14249,"name":"address","nodeType":"ElementaryTypeName","src":"6518:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14252,"mutability":"mutable","name":"owner","nameLocation":"6546:5:30","nodeType":"VariableDeclaration","scope":14259,"src":"6538:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14251,"name":"address","nodeType":"ElementaryTypeName","src":"6538:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14254,"mutability":"mutable","name":"receiver","nameLocation":"6565:8:30","nodeType":"VariableDeclaration","scope":14259,"src":"6557:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14253,"name":"address","nodeType":"ElementaryTypeName","src":"6557:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6492:85:30"},"returnParameters":{"id":14258,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14257,"mutability":"mutable","name":"withdrawn","nameLocation":"6604:9:30","nodeType":"VariableDeclaration","scope":14259,"src":"6596:17:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14256,"name":"uint256","nodeType":"ElementaryTypeName","src":"6596:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6595:19:30"},"scope":14336,"src":"6475:140:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14260,"nodeType":"StructuredDocumentation","src":"6619:69:30","text":" @notice Returns the total amount that can be withdrawn"},"functionSelector":"0600a865","id":14265,"implemented":false,"kind":"function","modifiers":[],"name":"totalWithdrawable","nameLocation":"6700:17:30","nodeType":"FunctionDefinition","parameters":{"id":14261,"nodeType":"ParameterList","parameters":[],"src":"6717:2:30"},"returnParameters":{"id":14264,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14263,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14265,"src":"6743:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14262,"name":"uint256","nodeType":"ElementaryTypeName","src":"6743:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6742:9:30"},"scope":14336,"src":"6691:61:30","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14266,"nodeType":"StructuredDocumentation","src":"6756:540:30","text":" @notice Adds an authorized _borrower_ to the eToken. This _borrower_ will be allowed to lock/unlock funds and to take\n loans.\n @dev Borrowers (typically PremiumsAccounts) can:\n - lock/unlock SCR via {lockScr}/{unlockScr}/{unlockScrWithRefund}\n - take internal loans via {internalLoan}\n @param borrower The address of the _borrower_, a PremiumsAccount that has this eToken as senior or junior eToken.\n @custom:pre Must be called by `policyPool()`\n @custom:emits InternalBorrowerAdded"},"functionSelector":"e3a8e29c","id":14271,"implemented":false,"kind":"function","modifiers":[],"name":"addBorrower","nameLocation":"7308:11:30","nodeType":"FunctionDefinition","parameters":{"id":14269,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14268,"mutability":"mutable","name":"borrower","nameLocation":"7328:8:30","nodeType":"VariableDeclaration","scope":14271,"src":"7320:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14267,"name":"address","nodeType":"ElementaryTypeName","src":"7320:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7319:18:30"},"returnParameters":{"id":14270,"nodeType":"ParameterList","parameters":[],"src":"7346:0:30"},"scope":14336,"src":"7299:48:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14272,"nodeType":"StructuredDocumentation","src":"7351:373:30","text":" @notice Removes an authorized _borrower_ to the eToken. The _borrower_ can't no longer lock funds or take loans.\n @param borrower The address of the _borrower_, a PremiumsAccount that has this eToken as senior or junior eToken.\n @custom:pre Must be called by `policyPool()`\n @custom:emits InternalBorrowerRemoved with the defaulted debt"},"functionSelector":"76c7fc55","id":14277,"implemented":false,"kind":"function","modifiers":[],"name":"removeBorrower","nameLocation":"7736:14:30","nodeType":"FunctionDefinition","parameters":{"id":14275,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14274,"mutability":"mutable","name":"borrower","nameLocation":"7759:8:30","nodeType":"VariableDeclaration","scope":14277,"src":"7751:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14273,"name":"address","nodeType":"ElementaryTypeName","src":"7751:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7750:18:30"},"returnParameters":{"id":14276,"nodeType":"ParameterList","parameters":[],"src":"7777:0:30"},"scope":14336,"src":"7727:51:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14278,"nodeType":"StructuredDocumentation","src":"7782:675:30","text":" @notice Lends `amount` to the borrower (msg.sender), transferring the money to `receiver`.\n @dev This reduces the `totalSupply()` of the eToken, and stores a debt that will be repaid (hopefully) with\n `repayLoan`.\n @param amount The amount required\n @param receiver The received of the funds lent. This is usually the policyholder if the loan is used for a payout.\n @return Returns the amount that wasn't able to fulfil. `amount - lent`\n @custom:pre Must be called by a _borrower_ previously added with `addBorrower`.\n @custom:emits {InternalLoan}\n @custom:emits {ERC20-Transfer} transferring `lent` to `receiver`"},"functionSelector":"c3df9dac","id":14287,"implemented":false,"kind":"function","modifiers":[],"name":"internalLoan","nameLocation":"8469:12:30","nodeType":"FunctionDefinition","parameters":{"id":14283,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14280,"mutability":"mutable","name":"amount","nameLocation":"8490:6:30","nodeType":"VariableDeclaration","scope":14287,"src":"8482:14:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14279,"name":"uint256","nodeType":"ElementaryTypeName","src":"8482:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14282,"mutability":"mutable","name":"receiver","nameLocation":"8506:8:30","nodeType":"VariableDeclaration","scope":14287,"src":"8498:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14281,"name":"address","nodeType":"ElementaryTypeName","src":"8498:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8481:34:30"},"returnParameters":{"id":14286,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14285,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14287,"src":"8534:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14284,"name":"uint256","nodeType":"ElementaryTypeName","src":"8534:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8533:9:30"},"scope":14336,"src":"8460:83:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14288,"nodeType":"StructuredDocumentation","src":"8547:584:30","text":" @notice Repays a loan taken with `internalLoan`.\n @param amount The amount to repaid, that will be transferred from `msg.sender` balance.\n @param onBehalfOf The address of the borrower that took the loan. Usually `onBehalfOf == msg.sender` but we keep it\n open because in some cases with might need someone else pays the debt.\n @custom:pre `msg.sender` approved the spending of `currency()` for at least `amount`\n @custom:emits {InternalLoanRepaid}\n @custom:emits {ERC20-Transfer} transferring `amount` from `msg.sender` to `this`"},"functionSelector":"918344d3","id":14295,"implemented":false,"kind":"function","modifiers":[],"name":"repayLoan","nameLocation":"9143:9:30","nodeType":"FunctionDefinition","parameters":{"id":14293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14290,"mutability":"mutable","name":"amount","nameLocation":"9161:6:30","nodeType":"VariableDeclaration","scope":14295,"src":"9153:14:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14289,"name":"uint256","nodeType":"ElementaryTypeName","src":"9153:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14292,"mutability":"mutable","name":"onBehalfOf","nameLocation":"9177:10:30","nodeType":"VariableDeclaration","scope":14295,"src":"9169:18:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14291,"name":"address","nodeType":"ElementaryTypeName","src":"9169:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9152:36:30"},"returnParameters":{"id":14294,"nodeType":"ParameterList","parameters":[],"src":"9197:0:30"},"scope":14336,"src":"9134:64:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14296,"nodeType":"StructuredDocumentation","src":"9202:89:30","text":" @notice Returns the updated debt (principal + interest) of the `borrower`."},"functionSelector":"33481fc9","id":14303,"implemented":false,"kind":"function","modifiers":[],"name":"getLoan","nameLocation":"9303:7:30","nodeType":"FunctionDefinition","parameters":{"id":14299,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14298,"mutability":"mutable","name":"borrower","nameLocation":"9319:8:30","nodeType":"VariableDeclaration","scope":14303,"src":"9311:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14297,"name":"address","nodeType":"ElementaryTypeName","src":"9311:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9310:18:30"},"returnParameters":{"id":14302,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14301,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14303,"src":"9352:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14300,"name":"uint256","nodeType":"ElementaryTypeName","src":"9352:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9351:9:30"},"scope":14336,"src":"9294:67:30","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14304,"nodeType":"StructuredDocumentation","src":"9365:86:30","text":" @notice The annualized interest rate at which the `totalSupply()` grows"},"functionSelector":"159ec2df","id":14309,"implemented":false,"kind":"function","modifiers":[],"name":"tokenInterestRate","nameLocation":"9463:17:30","nodeType":"FunctionDefinition","parameters":{"id":14305,"nodeType":"ParameterList","parameters":[],"src":"9480:2:30"},"returnParameters":{"id":14308,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14307,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14309,"src":"9506:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14306,"name":"uint256","nodeType":"ElementaryTypeName","src":"9506:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9505:9:30"},"scope":14336,"src":"9454:61:30","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14310,"nodeType":"StructuredDocumentation","src":"9519:106:30","text":" @notice The weighted average annualized interest rate paid by the currently locked `scr()`."},"functionSelector":"9d90724d","id":14315,"implemented":false,"kind":"function","modifiers":[],"name":"scrInterestRate","nameLocation":"9637:15:30","nodeType":"FunctionDefinition","parameters":{"id":14311,"nodeType":"ParameterList","parameters":[],"src":"9652:2:30"},"returnParameters":{"id":14314,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14313,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14315,"src":"9678:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14312,"name":"uint256","nodeType":"ElementaryTypeName","src":"9678:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9677:9:30"},"scope":14336,"src":"9628:59:30","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14316,"nodeType":"StructuredDocumentation","src":"9691:290:30","text":" @notice Returns the number that scales the shares to reflect the earnings or losses (rebasing token)\n @param updated When it's false, it returns the last scale stored. When it's true, it projects that scale applying\n                the accrued returns of the scr"},"functionSelector":"79d989fb","id":14323,"implemented":false,"kind":"function","modifiers":[],"name":"getCurrentScale","nameLocation":"9993:15:30","nodeType":"FunctionDefinition","parameters":{"id":14319,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14318,"mutability":"mutable","name":"updated","nameLocation":"10014:7:30","nodeType":"VariableDeclaration","scope":14323,"src":"10009:12:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14317,"name":"bool","nodeType":"ElementaryTypeName","src":"10009:4:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10008:14:30"},"returnParameters":{"id":14322,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14321,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14323,"src":"10046:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14320,"name":"uint256","nodeType":"ElementaryTypeName","src":"10046:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10045:9:30"},"scope":14336,"src":"9984:71:30","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14324,"nodeType":"StructuredDocumentation","src":"10059:156:30","text":" @notice Redistributes a given amount of eTokens of the caller between the remaining LPs\n @param amount The amount of eTokens to burn"},"functionSelector":"a0ce552d","id":14329,"implemented":false,"kind":"function","modifiers":[],"name":"redistribute","nameLocation":"10227:12:30","nodeType":"FunctionDefinition","parameters":{"id":14327,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14326,"mutability":"mutable","name":"amount","nameLocation":"10248:6:30","nodeType":"VariableDeclaration","scope":14329,"src":"10240:14:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14325,"name":"uint256","nodeType":"ElementaryTypeName","src":"10240:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10239:16:30"},"returnParameters":{"id":14328,"nodeType":"ParameterList","parameters":[],"src":"10264:0:30"},"scope":14336,"src":"10218:47:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14330,"nodeType":"StructuredDocumentation","src":"10269:74:30","text":" @notice Returns the cooler contract plugged into the eToken"},"functionSelector":"cf6a9a94","id":14335,"implemented":false,"kind":"function","modifiers":[],"name":"cooler","nameLocation":"10355:6:30","nodeType":"FunctionDefinition","parameters":{"id":14331,"nodeType":"ParameterList","parameters":[],"src":"10361:2:30"},"returnParameters":{"id":14334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14333,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14335,"src":"10387:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14332,"name":"address","nodeType":"ElementaryTypeName","src":"10387:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10386:9:30"},"scope":14336,"src":"10346:50:30","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":14337,"src":"197:10201:30","usedErrors":[],"usedEvents":[14180,14191]}],"src":"39:10360:30"},"id":30},"@ensuro/core/contracts/interfaces/ILPWhitelist.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/interfaces/ILPWhitelist.sol","exportedSymbols":{"IEToken":[14336],"ILPWhitelist":[14383]},"id":14384,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":14338,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:31"},{"absolutePath":"@ensuro/core/contracts/interfaces/IEToken.sol","file":"./IEToken.sol","id":14340,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14384,"sourceUnit":14337,"src":"65:38:31","symbolAliases":[{"foreign":{"id":14339,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14336,"src":"73:7:31","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"ILPWhitelist","contractDependencies":[],"contractKind":"interface","documentation":{"id":14341,"nodeType":"StructuredDocumentation","src":"105:113:31","text":" @title ILPWhitelist - Interface that handles the whitelisting of Liquidity Providers\n @author Ensuro"},"fullyImplemented":false,"id":14383,"linearizedBaseContracts":[14383],"name":"ILPWhitelist","nameLocation":"229:12:31","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":14342,"nodeType":"StructuredDocumentation","src":"246:388:31","text":" @dev Indicates whether or not a liquidity provider can do a deposit in an eToken.\n @param etoken The eToken (see {EToken}) where the provider wants to deposit money.\n @param provider The address of the liquidity provider (user) that wants to deposit\n @param amount The amount of the deposit\n @return true if `provider` deposit is accepted, false if not"},"functionSelector":"37ee20dd","id":14354,"implemented":false,"kind":"function","modifiers":[],"name":"acceptsDeposit","nameLocation":"646:14:31","nodeType":"FunctionDefinition","parameters":{"id":14350,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14345,"mutability":"mutable","name":"etoken","nameLocation":"669:6:31","nodeType":"VariableDeclaration","scope":14354,"src":"661:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":14344,"nodeType":"UserDefinedTypeName","pathNode":{"id":14343,"name":"IEToken","nameLocations":["661:7:31"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"661:7:31"},"referencedDeclaration":14336,"src":"661:7:31","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":14347,"mutability":"mutable","name":"provider","nameLocation":"685:8:31","nodeType":"VariableDeclaration","scope":14354,"src":"677:16:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14346,"name":"address","nodeType":"ElementaryTypeName","src":"677:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14349,"mutability":"mutable","name":"amount","nameLocation":"703:6:31","nodeType":"VariableDeclaration","scope":14354,"src":"695:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14348,"name":"uint256","nodeType":"ElementaryTypeName","src":"695:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"660:50:31"},"returnParameters":{"id":14353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14352,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14354,"src":"734:4:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14351,"name":"bool","nodeType":"ElementaryTypeName","src":"734:4:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"733:6:31"},"scope":14383,"src":"637:103:31","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14355,"nodeType":"StructuredDocumentation","src":"744:473:31","text":" @dev Indicates whether or not the eTokens can be transferred from `providerFrom` to `providerTo`\n @param etoken The eToken (see {EToken}) that the LPs have the intention to transfer.\n @param providerFrom The current owner of the tokens\n @param providerTo The destination of the tokens if the transfer is accepted\n @param amount The amount of tokens to be transferred\n @return true if the transfer operation is accepted, false if not."},"functionSelector":"5fcdca37","id":14369,"implemented":false,"kind":"function","modifiers":[],"name":"acceptsTransfer","nameLocation":"1229:15:31","nodeType":"FunctionDefinition","parameters":{"id":14365,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14358,"mutability":"mutable","name":"etoken","nameLocation":"1258:6:31","nodeType":"VariableDeclaration","scope":14369,"src":"1250:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":14357,"nodeType":"UserDefinedTypeName","pathNode":{"id":14356,"name":"IEToken","nameLocations":["1250:7:31"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"1250:7:31"},"referencedDeclaration":14336,"src":"1250:7:31","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":14360,"mutability":"mutable","name":"providerFrom","nameLocation":"1278:12:31","nodeType":"VariableDeclaration","scope":14369,"src":"1270:20:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14359,"name":"address","nodeType":"ElementaryTypeName","src":"1270:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14362,"mutability":"mutable","name":"providerTo","nameLocation":"1304:10:31","nodeType":"VariableDeclaration","scope":14369,"src":"1296:18:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14361,"name":"address","nodeType":"ElementaryTypeName","src":"1296:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14364,"mutability":"mutable","name":"amount","nameLocation":"1328:6:31","nodeType":"VariableDeclaration","scope":14369,"src":"1320:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14363,"name":"uint256","nodeType":"ElementaryTypeName","src":"1320:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1244:94:31"},"returnParameters":{"id":14368,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14367,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14369,"src":"1362:4:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14366,"name":"bool","nodeType":"ElementaryTypeName","src":"1362:4:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1361:6:31"},"scope":14383,"src":"1220:148:31","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14370,"nodeType":"StructuredDocumentation","src":"1372:395:31","text":" @dev Indicates whether or not a liquidity provider can withdraw an eToken.\n @param etoken The eToken (see {EToken}) where the provider wants to withdraw money.\n @param provider The address of the liquidity provider (user) that wants to withdraw\n @param amount The amount of the withdrawal\n @return true if `provider` withdraw request is accepted, false if not"},"functionSelector":"9051c763","id":14382,"implemented":false,"kind":"function","modifiers":[],"name":"acceptsWithdrawal","nameLocation":"1779:17:31","nodeType":"FunctionDefinition","parameters":{"id":14378,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14373,"mutability":"mutable","name":"etoken","nameLocation":"1805:6:31","nodeType":"VariableDeclaration","scope":14382,"src":"1797:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":14372,"nodeType":"UserDefinedTypeName","pathNode":{"id":14371,"name":"IEToken","nameLocations":["1797:7:31"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"1797:7:31"},"referencedDeclaration":14336,"src":"1797:7:31","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":14375,"mutability":"mutable","name":"provider","nameLocation":"1821:8:31","nodeType":"VariableDeclaration","scope":14382,"src":"1813:16:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14374,"name":"address","nodeType":"ElementaryTypeName","src":"1813:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14377,"mutability":"mutable","name":"amount","nameLocation":"1839:6:31","nodeType":"VariableDeclaration","scope":14382,"src":"1831:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14376,"name":"uint256","nodeType":"ElementaryTypeName","src":"1831:7:31","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1796:50:31"},"returnParameters":{"id":14381,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14380,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14382,"src":"1870:4:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14379,"name":"bool","nodeType":"ElementaryTypeName","src":"1870:4:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1869:6:31"},"scope":14383,"src":"1770:106:31","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":14384,"src":"219:1659:31","usedErrors":[],"usedEvents":[]}],"src":"39:1840:31"},"id":31},"@ensuro/core/contracts/interfaces/IPolicyHolder.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyHolder.sol","exportedSymbols":{"IERC721Receiver":[25551],"IPolicyHolder":[14449]},"id":14450,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":14385,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:32"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","id":14387,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14450,"sourceUnit":25552,"src":"65:89:32","symbolAliases":[{"foreign":{"id":14386,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25551,"src":"73:15:32","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":14389,"name":"IERC721Receiver","nameLocations":["329:15:32"],"nodeType":"IdentifierPath","referencedDeclaration":25551,"src":"329:15:32"},"id":14390,"nodeType":"InheritanceSpecifier","src":"329:15:32"}],"canonicalName":"IPolicyHolder","contractDependencies":[],"contractKind":"interface","documentation":{"id":14388,"nodeType":"StructuredDocumentation","src":"156:145:32","text":" @title Policy holder interface\n @dev Interface for any contract that wants to be a holder of Ensuro Policies and receive the payouts"},"fullyImplemented":false,"id":14449,"linearizedBaseContracts":[14449,25551],"name":"IPolicyHolder","nameLocation":"312:13:32","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":14391,"nodeType":"StructuredDocumentation","src":"349:512:32","text":" @dev Whenever an Policy is expired or resolved with payout = 0, this function is called\n It should return its Solidity selector to confirm the payout.\n If interface is not implemented by the recipient, it will be ignored and the payout will be successful.\n No mather what's the return value or even if this function reverts, this function will not revert the policy\n expiration.\n The selector can be obtained in Solidity with `IPolicyHolder.onPolicyExpired.selector`."},"functionSelector":"e8e617b7","id":14402,"implemented":false,"kind":"function","modifiers":[],"name":"onPolicyExpired","nameLocation":"873:15:32","nodeType":"FunctionDefinition","parameters":{"id":14398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14393,"mutability":"mutable","name":"operator","nameLocation":"897:8:32","nodeType":"VariableDeclaration","scope":14402,"src":"889:16:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14392,"name":"address","nodeType":"ElementaryTypeName","src":"889:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14395,"mutability":"mutable","name":"from","nameLocation":"915:4:32","nodeType":"VariableDeclaration","scope":14402,"src":"907:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14394,"name":"address","nodeType":"ElementaryTypeName","src":"907:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14397,"mutability":"mutable","name":"policyId","nameLocation":"929:8:32","nodeType":"VariableDeclaration","scope":14402,"src":"921:16:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14396,"name":"uint256","nodeType":"ElementaryTypeName","src":"921:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"888:50:32"},"returnParameters":{"id":14401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14400,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14402,"src":"957:6:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14399,"name":"bytes4","nodeType":"ElementaryTypeName","src":"957:6:32","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"956:8:32"},"scope":14449,"src":"864:101:32","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14403,"nodeType":"StructuredDocumentation","src":"969:469:32","text":" @dev Whenever an Policy is resolved with payout > 0, this function is called\n It must return its Solidity selector to confirm the payout.\n If interface is not implemented by the recipient, it will be ignored and the payout will be successful.\n If any other value is returned or it reverts, the policy resolution / payout will be reverted.\n The selector can be obtained in Solidity with `IPolicyHolder.onPayoutReceived.selector`."},"functionSelector":"d6281d3e","id":14416,"implemented":false,"kind":"function","modifiers":[],"name":"onPayoutReceived","nameLocation":"1450:16:32","nodeType":"FunctionDefinition","parameters":{"id":14412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14405,"mutability":"mutable","name":"operator","nameLocation":"1475:8:32","nodeType":"VariableDeclaration","scope":14416,"src":"1467:16:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14404,"name":"address","nodeType":"ElementaryTypeName","src":"1467:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14407,"mutability":"mutable","name":"from","nameLocation":"1493:4:32","nodeType":"VariableDeclaration","scope":14416,"src":"1485:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14406,"name":"address","nodeType":"ElementaryTypeName","src":"1485:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14409,"mutability":"mutable","name":"policyId","nameLocation":"1507:8:32","nodeType":"VariableDeclaration","scope":14416,"src":"1499:16:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14408,"name":"uint256","nodeType":"ElementaryTypeName","src":"1499:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14411,"mutability":"mutable","name":"amount","nameLocation":"1525:6:32","nodeType":"VariableDeclaration","scope":14416,"src":"1517:14:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14410,"name":"uint256","nodeType":"ElementaryTypeName","src":"1517:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1466:66:32"},"returnParameters":{"id":14415,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14414,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14416,"src":"1551:6:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14413,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1551:6:32","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1550:8:32"},"scope":14449,"src":"1441:118:32","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14417,"nodeType":"StructuredDocumentation","src":"1563:452:32","text":" @dev Whenever a policy is replaced, this function is called\n It must return its Solidity selector to confirm the operation.\n If interface is not implemented by the recipient, it will be ignored and the replacement will be successful.\n If any other value is returned or it reverts, the policy replacement will be reverted.\n The selector can be obtained in Solidity with `IPolicyHolder.onPolicyReplaced.selector`."},"functionSelector":"5ee0c7dd","id":14430,"implemented":false,"kind":"function","modifiers":[],"name":"onPolicyReplaced","nameLocation":"2027:16:32","nodeType":"FunctionDefinition","parameters":{"id":14426,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14419,"mutability":"mutable","name":"operator","nameLocation":"2057:8:32","nodeType":"VariableDeclaration","scope":14430,"src":"2049:16:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14418,"name":"address","nodeType":"ElementaryTypeName","src":"2049:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14421,"mutability":"mutable","name":"from","nameLocation":"2079:4:32","nodeType":"VariableDeclaration","scope":14430,"src":"2071:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14420,"name":"address","nodeType":"ElementaryTypeName","src":"2071:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14423,"mutability":"mutable","name":"oldPolicyId","nameLocation":"2097:11:32","nodeType":"VariableDeclaration","scope":14430,"src":"2089:19:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14422,"name":"uint256","nodeType":"ElementaryTypeName","src":"2089:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14425,"mutability":"mutable","name":"newPolicyId","nameLocation":"2122:11:32","nodeType":"VariableDeclaration","scope":14430,"src":"2114:19:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14424,"name":"uint256","nodeType":"ElementaryTypeName","src":"2114:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2043:94:32"},"returnParameters":{"id":14429,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14428,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14430,"src":"2156:6:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14427,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2156:6:32","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2155:8:32"},"scope":14449,"src":"2018:146:32","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14431,"nodeType":"StructuredDocumentation","src":"2168:456:32","text":" @dev Whenever a policy is cancelled, this function is called\n It must return its Solidity selector to confirm the operation.\n If interface is not implemented by the recipient, it will be ignored and the cancellation will be successful.\n If any other value is returned or it reverts, the policy cancellation will be reverted.\n The selector can be obtained in Solidity with `IPolicyHolder.onPolicyCancelled.selector`."},"functionSelector":"62eb345e","id":14448,"implemented":false,"kind":"function","modifiers":[],"name":"onPolicyCancelled","nameLocation":"2636:17:32","nodeType":"FunctionDefinition","parameters":{"id":14444,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14433,"mutability":"mutable","name":"operator","nameLocation":"2667:8:32","nodeType":"VariableDeclaration","scope":14448,"src":"2659:16:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14432,"name":"address","nodeType":"ElementaryTypeName","src":"2659:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14435,"mutability":"mutable","name":"from","nameLocation":"2689:4:32","nodeType":"VariableDeclaration","scope":14448,"src":"2681:12:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14434,"name":"address","nodeType":"ElementaryTypeName","src":"2681:7:32","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14437,"mutability":"mutable","name":"cancelledPolicyId","nameLocation":"2707:17:32","nodeType":"VariableDeclaration","scope":14448,"src":"2699:25:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14436,"name":"uint256","nodeType":"ElementaryTypeName","src":"2699:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14439,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"2738:17:32","nodeType":"VariableDeclaration","scope":14448,"src":"2730:25:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14438,"name":"uint256","nodeType":"ElementaryTypeName","src":"2730:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14441,"mutability":"mutable","name":"jrCocRefund","nameLocation":"2769:11:32","nodeType":"VariableDeclaration","scope":14448,"src":"2761:19:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14440,"name":"uint256","nodeType":"ElementaryTypeName","src":"2761:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14443,"mutability":"mutable","name":"srCocRefund","nameLocation":"2794:11:32","nodeType":"VariableDeclaration","scope":14448,"src":"2786:19:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14442,"name":"uint256","nodeType":"ElementaryTypeName","src":"2786:7:32","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2653:156:32"},"returnParameters":{"id":14447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14446,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14448,"src":"2828:6:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14445,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2828:6:32","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2827:8:32"},"scope":14449,"src":"2627:209:32","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":14450,"src":"302:2536:32","usedErrors":[],"usedEvents":[]}],"src":"39:2800:32"},"id":32},"@ensuro/core/contracts/interfaces/IPolicyPool.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyPool.sol","exportedSymbols":{"IERC20Metadata":[24925],"IEToken":[14336],"IPolicyPool":[14638],"IRiskModule":[14762],"Policy":[8314]},"id":14639,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":14451,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:33"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":14453,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14639,"sourceUnit":24926,"src":"65:97:33","symbolAliases":[{"foreign":{"id":14452,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"73:14:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/Policy.sol","file":"../Policy.sol","id":14455,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14639,"sourceUnit":8315,"src":"163:37:33","symbolAliases":[{"foreign":{"id":14454,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"171:6:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IEToken.sol","file":"./IEToken.sol","id":14457,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14639,"sourceUnit":14337,"src":"201:38:33","symbolAliases":[{"foreign":{"id":14456,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14336,"src":"209:7:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IRiskModule.sol","file":"./IRiskModule.sol","id":14459,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14639,"sourceUnit":14763,"src":"240:46:33","symbolAliases":[{"foreign":{"id":14458,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14762,"src":"248:11:33","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IPolicyPool","contractDependencies":[],"contractKind":"interface","documentation":{"id":14460,"nodeType":"StructuredDocumentation","src":"288:354:33","text":" @title Interface of PolicyPool contracts\n @notice There's a single instance of PolicyPool contract for a given deployment of the protocol\n @dev Some methods of this interface will be called by other components of the protocol (like RiskModule or\n      PremiumsAccount).\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":false,"id":14638,"linearizedBaseContracts":[14638],"name":"IPolicyPool","nameLocation":"653:11:33","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":14461,"nodeType":"StructuredDocumentation","src":"669:394:33","text":" @notice Event emitted every time a new policy is added to the pool\n @dev Contains all the data about the policy that is later required for doing operations with the policy like\n      resolution or expiration.\n @param riskModule The risk module that created the policy\n @param policy The {Policy-PolicyData} struct with all the immutable fields of the policy."},"eventSelector":"988ac1a1c4820f963124b6fa0394627ad4fa3de7583a76399b998c1d7e43af3f","id":14469,"name":"NewPolicy","nameLocation":"1072:9:33","nodeType":"EventDefinition","parameters":{"id":14468,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14464,"indexed":true,"mutability":"mutable","name":"riskModule","nameLocation":"1102:10:33","nodeType":"VariableDeclaration","scope":14469,"src":"1082:30:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},"typeName":{"id":14463,"nodeType":"UserDefinedTypeName","pathNode":{"id":14462,"name":"IRiskModule","nameLocations":["1082:11:33"],"nodeType":"IdentifierPath","referencedDeclaration":14762,"src":"1082:11:33"},"referencedDeclaration":14762,"src":"1082:11:33","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"visibility":"internal"},{"constant":false,"id":14467,"indexed":false,"mutability":"mutable","name":"policy","nameLocation":"1132:6:33","nodeType":"VariableDeclaration","scope":14469,"src":"1114:24:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14466,"nodeType":"UserDefinedTypeName","pathNode":{"id":14465,"name":"Policy.PolicyData","nameLocations":["1114:6:33","1121:10:33"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"1114:17:33"},"referencedDeclaration":7744,"src":"1114:17:33","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"1081:58:33"},"src":"1066:74:33"},{"anonymous":false,"documentation":{"id":14470,"nodeType":"StructuredDocumentation","src":"1144:376:33","text":" @notice Event emitted every time a new policy replaces an old Policy.\n @dev The event contains only the id of the replacement policy, the full data is available in the NewPolicy event.\n @param riskModule The risk module that created the policy\n @param oldPolicyId The id of the replaced policy.\n @param newPolicyId The id of the new policy."},"eventSelector":"4ff4ac703cb703b7ea535d47e65e64b4cabf11b3e2eb41f152dab17971953add","id":14479,"name":"PolicyReplaced","nameLocation":"1529:14:33","nodeType":"EventDefinition","parameters":{"id":14478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14473,"indexed":true,"mutability":"mutable","name":"riskModule","nameLocation":"1564:10:33","nodeType":"VariableDeclaration","scope":14479,"src":"1544:30:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},"typeName":{"id":14472,"nodeType":"UserDefinedTypeName","pathNode":{"id":14471,"name":"IRiskModule","nameLocations":["1544:11:33"],"nodeType":"IdentifierPath","referencedDeclaration":14762,"src":"1544:11:33"},"referencedDeclaration":14762,"src":"1544:11:33","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"visibility":"internal"},{"constant":false,"id":14475,"indexed":true,"mutability":"mutable","name":"oldPolicyId","nameLocation":"1592:11:33","nodeType":"VariableDeclaration","scope":14479,"src":"1576:27:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14474,"name":"uint256","nodeType":"ElementaryTypeName","src":"1576:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14477,"indexed":true,"mutability":"mutable","name":"newPolicyId","nameLocation":"1621:11:33","nodeType":"VariableDeclaration","scope":14479,"src":"1605:27:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14476,"name":"uint256","nodeType":"ElementaryTypeName","src":"1605:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1543:90:33"},"src":"1523:111:33"},{"anonymous":false,"documentation":{"id":14480,"nodeType":"StructuredDocumentation","src":"1638:521:33","text":" @notice Event emitted when a policy is cancelled, and part of the paid premium is refunded.\n @dev After this, the policy is no longer active. The refund amounts are transferred to the policy holder.\n @param riskModule The risk module that created the policy\n @param cancelledPolicyId The id of the cancelled policy.\n @param purePremiumRefund The amount of pure premium refunded\n @param jrCocRefund The amount of Jr CoC refunded\n @param srCocRefund The amount of Sr CoC refunded"},"eventSelector":"825c3ee6eecaa4b0dc3573e9732b65613d705cadfc4ba69cc76cb7d9227e5971","id":14493,"name":"PolicyCancelled","nameLocation":"2168:15:33","nodeType":"EventDefinition","parameters":{"id":14492,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14483,"indexed":true,"mutability":"mutable","name":"riskModule","nameLocation":"2209:10:33","nodeType":"VariableDeclaration","scope":14493,"src":"2189:30:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},"typeName":{"id":14482,"nodeType":"UserDefinedTypeName","pathNode":{"id":14481,"name":"IRiskModule","nameLocations":["2189:11:33"],"nodeType":"IdentifierPath","referencedDeclaration":14762,"src":"2189:11:33"},"referencedDeclaration":14762,"src":"2189:11:33","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"visibility":"internal"},{"constant":false,"id":14485,"indexed":true,"mutability":"mutable","name":"cancelledPolicyId","nameLocation":"2241:17:33","nodeType":"VariableDeclaration","scope":14493,"src":"2225:33:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14484,"name":"uint256","nodeType":"ElementaryTypeName","src":"2225:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14487,"indexed":false,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"2272:17:33","nodeType":"VariableDeclaration","scope":14493,"src":"2264:25:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14486,"name":"uint256","nodeType":"ElementaryTypeName","src":"2264:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14489,"indexed":false,"mutability":"mutable","name":"jrCocRefund","nameLocation":"2303:11:33","nodeType":"VariableDeclaration","scope":14493,"src":"2295:19:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14488,"name":"uint256","nodeType":"ElementaryTypeName","src":"2295:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14491,"indexed":false,"mutability":"mutable","name":"srCocRefund","nameLocation":"2328:11:33","nodeType":"VariableDeclaration","scope":14493,"src":"2320:19:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14490,"name":"uint256","nodeType":"ElementaryTypeName","src":"2320:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2183:160:33"},"src":"2162:182:33"},{"anonymous":false,"documentation":{"id":14494,"nodeType":"StructuredDocumentation","src":"2348:422:33","text":" @notice Event emitted every time a policy is removed from the pool\n @dev If the policy expired, the `payout` is 0, otherwise is the amount transferred to the policyholder.\n @param riskModule The risk module where that created the policy initially.\n @param policyId The unique id of the policy\n @param payout The payout that has been paid to the policy holder. 0 when the policy expired."},"eventSelector":"54f4a270ea08f88dc23b2520d6b063fecb24d956c4496f447926d736338f545e","id":14503,"name":"PolicyResolved","nameLocation":"2779:14:33","nodeType":"EventDefinition","parameters":{"id":14502,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14497,"indexed":true,"mutability":"mutable","name":"riskModule","nameLocation":"2814:10:33","nodeType":"VariableDeclaration","scope":14503,"src":"2794:30:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"},"typeName":{"id":14496,"nodeType":"UserDefinedTypeName","pathNode":{"id":14495,"name":"IRiskModule","nameLocations":["2794:11:33"],"nodeType":"IdentifierPath","referencedDeclaration":14762,"src":"2794:11:33"},"referencedDeclaration":14762,"src":"2794:11:33","typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$14762","typeString":"contract IRiskModule"}},"visibility":"internal"},{"constant":false,"id":14499,"indexed":true,"mutability":"mutable","name":"policyId","nameLocation":"2842:8:33","nodeType":"VariableDeclaration","scope":14503,"src":"2826:24:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14498,"name":"uint256","nodeType":"ElementaryTypeName","src":"2826:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14501,"indexed":false,"mutability":"mutable","name":"payout","nameLocation":"2860:6:33","nodeType":"VariableDeclaration","scope":14503,"src":"2852:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14500,"name":"uint256","nodeType":"ElementaryTypeName","src":"2852:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2793:74:33"},"src":"2773:95:33"},{"documentation":{"id":14504,"nodeType":"StructuredDocumentation","src":"2872:93:33","text":" @notice Reference to the main currency (ERC20, e.g. USDC) used in the protocol"},"functionSelector":"e5a6b10f","id":14510,"implemented":false,"kind":"function","modifiers":[],"name":"currency","nameLocation":"2977:8:33","nodeType":"FunctionDefinition","parameters":{"id":14505,"nodeType":"ParameterList","parameters":[],"src":"2985:2:33"},"returnParameters":{"id":14509,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14508,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14510,"src":"3011:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"},"typeName":{"id":14507,"nodeType":"UserDefinedTypeName","pathNode":{"id":14506,"name":"IERC20Metadata","nameLocations":["3011:14:33"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"3011:14:33"},"referencedDeclaration":24925,"src":"3011:14:33","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"3010:16:33"},"scope":14638,"src":"2968:59:33","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14511,"nodeType":"StructuredDocumentation","src":"3031:76:33","text":" @notice Address of the treasury, that receives protocol fees."},"functionSelector":"61d027b3","id":14516,"implemented":false,"kind":"function","modifiers":[],"name":"treasury","nameLocation":"3119:8:33","nodeType":"FunctionDefinition","parameters":{"id":14512,"nodeType":"ParameterList","parameters":[],"src":"3127:2:33"},"returnParameters":{"id":14515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14514,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14516,"src":"3153:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14513,"name":"address","nodeType":"ElementaryTypeName","src":"3153:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3152:9:33"},"scope":14638,"src":"3110:52:33","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14517,"nodeType":"StructuredDocumentation","src":"3166:1129:33","text":" @notice Creates a new Policy\n @dev It charges the premium and distributes it to the different parties (PremiumsAccount, ETokens, treasury)\n @custom:pre `msg.sender` must be an active RiskModule\n @custom:pre `rm.premiumsAccount()` must be an active PremiumsAccount\n @custom:pre `payer` approved the spending of `currency()` for at least `policy.premium`\n @custom:pre `internalId` must be unique within the risk module (`msg.sender`) and not used before\n @custom:emits NewPolicy with all the details about the policy\n @custom:emits ERC20-Transfer transfers from `payer` to the different receivers of the premium\n               (see Premium Split in the docs)\n @custom:throws PolicyAlreadyExists when reusing an internalId\n @param policy A policy created with {Policy-initialize}\n @param payer The address that will pay for the premium\n @param policyHolder The address of the policy holder\n @param internalId A unique id within the RiskModule, that will be used to compute the policy id\n @return The policy id, identifying the NFT and the policy"},"functionSelector":"0d100acb","id":14531,"implemented":false,"kind":"function","modifiers":[],"name":"newPolicy","nameLocation":"4307:9:33","nodeType":"FunctionDefinition","parameters":{"id":14527,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14520,"mutability":"mutable","name":"policy","nameLocation":"4347:6:33","nodeType":"VariableDeclaration","scope":14531,"src":"4322:31:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14519,"nodeType":"UserDefinedTypeName","pathNode":{"id":14518,"name":"Policy.PolicyData","nameLocations":["4322:6:33","4329:10:33"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"4322:17:33"},"referencedDeclaration":7744,"src":"4322:17:33","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":14522,"mutability":"mutable","name":"payer","nameLocation":"4367:5:33","nodeType":"VariableDeclaration","scope":14531,"src":"4359:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14521,"name":"address","nodeType":"ElementaryTypeName","src":"4359:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14524,"mutability":"mutable","name":"policyHolder","nameLocation":"4386:12:33","nodeType":"VariableDeclaration","scope":14531,"src":"4378:20:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14523,"name":"address","nodeType":"ElementaryTypeName","src":"4378:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14526,"mutability":"mutable","name":"internalId","nameLocation":"4411:10:33","nodeType":"VariableDeclaration","scope":14531,"src":"4404:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14525,"name":"uint96","nodeType":"ElementaryTypeName","src":"4404:6:33","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"4316:109:33"},"returnParameters":{"id":14530,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14529,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14531,"src":"4444:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14528,"name":"uint256","nodeType":"ElementaryTypeName","src":"4444:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4443:9:33"},"scope":14638,"src":"4298:155:33","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14532,"nodeType":"StructuredDocumentation","src":"4457:1256:33","text":" @notice Replaces a policy with another\n @dev After this call, the oldPolicy is no longer active and a new policy is created. Diferencial changes to\n      premiums and locked SCR.\n @param oldPolicy A policy created previously and not expired\n @param newPolicy_ A policy created with {Policy-initialize}\n @param payer The address that will pay for the premium difference\n @param internalId A unique id within the RiskModule, that will be used to compute the policy id\n @return The policy id, identifying the NFT and the policy\n @custom:pre `msg.sender` must be an active RiskModule\n @custom:pre `rm.premiumsAccount()` must be an active PremiumsAccount\n @custom:pre `payer` approved the spending of `currency()` for at least `newPolicy_.premium - oldPolicy.premium`\n @custom:pre `internalId` must be unique within `policy.riskModule` and not used before\n @custom:throws PolicyAlreadyExpired when trying to replace an expired policy\n @custom:throws InvalidPolicyReplacement when trying to reduce some of the premium componentsa\n @custom:emits PolicyReplaced with the ids of the new and replaced policy\n @custom:emits NewPolicy with all the details of the new policy"},"functionSelector":"663d8337","id":14547,"implemented":false,"kind":"function","modifiers":[],"name":"replacePolicy","nameLocation":"5725:13:33","nodeType":"FunctionDefinition","parameters":{"id":14543,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14535,"mutability":"mutable","name":"oldPolicy","nameLocation":"5769:9:33","nodeType":"VariableDeclaration","scope":14547,"src":"5744:34:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14534,"nodeType":"UserDefinedTypeName","pathNode":{"id":14533,"name":"Policy.PolicyData","nameLocations":["5744:6:33","5751:10:33"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"5744:17:33"},"referencedDeclaration":7744,"src":"5744:17:33","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":14538,"mutability":"mutable","name":"newPolicy_","nameLocation":"5809:10:33","nodeType":"VariableDeclaration","scope":14547,"src":"5784:35:33","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14537,"nodeType":"UserDefinedTypeName","pathNode":{"id":14536,"name":"Policy.PolicyData","nameLocations":["5784:6:33","5791:10:33"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"5784:17:33"},"referencedDeclaration":7744,"src":"5784:17:33","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":14540,"mutability":"mutable","name":"payer","nameLocation":"5833:5:33","nodeType":"VariableDeclaration","scope":14547,"src":"5825:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14539,"name":"address","nodeType":"ElementaryTypeName","src":"5825:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14542,"mutability":"mutable","name":"internalId","nameLocation":"5851:10:33","nodeType":"VariableDeclaration","scope":14547,"src":"5844:17:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14541,"name":"uint96","nodeType":"ElementaryTypeName","src":"5844:6:33","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"5738:127:33"},"returnParameters":{"id":14546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14545,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14547,"src":"5884:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14544,"name":"uint256","nodeType":"ElementaryTypeName","src":"5884:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5883:9:33"},"scope":14638,"src":"5716:177:33","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14548,"nodeType":"StructuredDocumentation","src":"5897:809:33","text":" @notice Cancels a policy, doing optional refunds of parts of the premium.\n @dev After this call the policy is not claimable and funds are unlocked\n @custom:pre `msg.sender` must be an active or deprecated RiskModule\n @custom:pre Policy not expired\n Events:\n @custom:emits PolicyCancelled with the refund amounts\n @custom:emits ERC20-Transfer transfers of the refunds amount to the policy holder\n @param policyToCancel A policy created previously and not expired, that will be cancelled\n @param purePremiumRefund The amount to refund from pure premiums (<= policyToCancel.purePremium)\n @param jrCocRefund The amount to refund from jrCoc (<= policyToCancel.jrCoc)\n @param srCocRefund The amount to refund from srCoc (<= policyToCancel.jrCoc)"},"functionSelector":"6f520b73","id":14560,"implemented":false,"kind":"function","modifiers":[],"name":"cancelPolicy","nameLocation":"6718:12:33","nodeType":"FunctionDefinition","parameters":{"id":14558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14551,"mutability":"mutable","name":"policyToCancel","nameLocation":"6763:14:33","nodeType":"VariableDeclaration","scope":14560,"src":"6736:41:33","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14550,"nodeType":"UserDefinedTypeName","pathNode":{"id":14549,"name":"Policy.PolicyData","nameLocations":["6736:6:33","6743:10:33"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"6736:17:33"},"referencedDeclaration":7744,"src":"6736:17:33","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":14553,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"6791:17:33","nodeType":"VariableDeclaration","scope":14560,"src":"6783:25:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14552,"name":"uint256","nodeType":"ElementaryTypeName","src":"6783:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14555,"mutability":"mutable","name":"jrCocRefund","nameLocation":"6822:11:33","nodeType":"VariableDeclaration","scope":14560,"src":"6814:19:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14554,"name":"uint256","nodeType":"ElementaryTypeName","src":"6814:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14557,"mutability":"mutable","name":"srCocRefund","nameLocation":"6847:11:33","nodeType":"VariableDeclaration","scope":14560,"src":"6839:19:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14556,"name":"uint256","nodeType":"ElementaryTypeName","src":"6839:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6730:132:33"},"returnParameters":{"id":14559,"nodeType":"ParameterList","parameters":[],"src":"6871:0:33"},"scope":14638,"src":"6709:163:33","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14561,"nodeType":"StructuredDocumentation","src":"6876:702:33","text":" @notice Resolves a policy with a payout, sending the payment to the owner of the policy NFT.\n @dev After this call the policy is no longer active and the funds have been unlocked.\n @custom:pre `msg.sender` must be an active or deprecated RiskModule\n @custom:pre `payout`: must be less than equal to `policy.payout`.\n @custom:pre `policy`: must be a Policy not resolved before and not expired (if payout > 0).\n @custom:emits PolicyResolved with the payout amount\n @custom:emits ERC20-Transfer to the policyholder with the payout\n @param policy A policy previously created with `newPolicy`\n @param payout The amount to pay to the policyholder"},"functionSelector":"bd644c56","id":14569,"implemented":false,"kind":"function","modifiers":[],"name":"resolvePolicy","nameLocation":"7590:13:33","nodeType":"FunctionDefinition","parameters":{"id":14567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14564,"mutability":"mutable","name":"policy","nameLocation":"7631:6:33","nodeType":"VariableDeclaration","scope":14569,"src":"7604:33:33","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14563,"nodeType":"UserDefinedTypeName","pathNode":{"id":14562,"name":"Policy.PolicyData","nameLocations":["7604:6:33","7611:10:33"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"7604:17:33"},"referencedDeclaration":7744,"src":"7604:17:33","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":14566,"mutability":"mutable","name":"payout","nameLocation":"7647:6:33","nodeType":"VariableDeclaration","scope":14569,"src":"7639:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14565,"name":"uint256","nodeType":"ElementaryTypeName","src":"7639:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7603:51:33"},"returnParameters":{"id":14568,"nodeType":"ParameterList","parameters":[],"src":"7663:0:33"},"scope":14638,"src":"7581:83:33","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14570,"nodeType":"StructuredDocumentation","src":"7668:457:33","text":" @notice Expires a policy, unlocked the solvency.\n @dev Resolves a policy with a payout 0, unlocking the solvency. Can be called by anyone, but only after\n      `Policy.expiration`.\n @custom:pre `policy`: must be a Policy not resolved before\n @custom:pre `policy.expiration` <= block.timestamp\n @custom:emits PolicyResolved with the payout == 0\n @param policy A policy previously created with `newPolicy`"},"functionSelector":"f720bbbf","id":14576,"implemented":false,"kind":"function","modifiers":[],"name":"expirePolicy","nameLocation":"8137:12:33","nodeType":"FunctionDefinition","parameters":{"id":14574,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14573,"mutability":"mutable","name":"policy","nameLocation":"8177:6:33","nodeType":"VariableDeclaration","scope":14576,"src":"8150:33:33","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14572,"nodeType":"UserDefinedTypeName","pathNode":{"id":14571,"name":"Policy.PolicyData","nameLocations":["8150:6:33","8157:10:33"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"8150:17:33"},"referencedDeclaration":7744,"src":"8150:17:33","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"8149:35:33"},"returnParameters":{"id":14575,"nodeType":"ParameterList","parameters":[],"src":"8193:0:33"},"scope":14638,"src":"8128:66:33","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14577,"nodeType":"StructuredDocumentation","src":"8198:415:33","text":" @notice Returns whether a policy is active\n @dev A policy is active when it's still in the PolicyPool, not yet resolved or expired.\n      Be aware that a policy might be active but the `block.timestamp` might be after the expiration date, so it\n      can't be triggered with a payout.\n @param policyId The id of the policy queried\n @return Whether the policy is active or not"},"functionSelector":"82afd23b","id":14584,"implemented":false,"kind":"function","modifiers":[],"name":"isActive","nameLocation":"8625:8:33","nodeType":"FunctionDefinition","parameters":{"id":14580,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14579,"mutability":"mutable","name":"policyId","nameLocation":"8642:8:33","nodeType":"VariableDeclaration","scope":14584,"src":"8634:16:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14578,"name":"uint256","nodeType":"ElementaryTypeName","src":"8634:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8633:18:33"},"returnParameters":{"id":14583,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14582,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14584,"src":"8675:4:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14581,"name":"bool","nodeType":"ElementaryTypeName","src":"8675:4:33","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8674:6:33"},"scope":14638,"src":"8616:65:33","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14585,"nodeType":"StructuredDocumentation","src":"8685:225:33","text":" @notice Returns the stored hash of the policy\n @dev Returns `bytes32(0)` if the policy isn't active.\n @param policyId The id of the policy queried\n @return Returns the hash of a given policy id"},"functionSelector":"792da09e","id":14592,"implemented":false,"kind":"function","modifiers":[],"name":"getPolicyHash","nameLocation":"8922:13:33","nodeType":"FunctionDefinition","parameters":{"id":14588,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14587,"mutability":"mutable","name":"policyId","nameLocation":"8944:8:33","nodeType":"VariableDeclaration","scope":14592,"src":"8936:16:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14586,"name":"uint256","nodeType":"ElementaryTypeName","src":"8936:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8935:18:33"},"returnParameters":{"id":14591,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14590,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14592,"src":"8977:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14589,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8977:7:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8976:9:33"},"scope":14638,"src":"8913:73:33","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14593,"nodeType":"StructuredDocumentation","src":"8990:736:33","text":" @notice Deposits liquidity into an eToken\n @dev Forwards the call to {EToken-deposit}, after transferring the funds.\n      The user will receive etokens for the same amount deposited.\n @custom:pre `msg.sender` approved the spending of `currency()` for at least `amount`\n @custom:pre `eToken` is an active eToken installed in the pool.\n @custom:emits EToken-Transfer from 0x0 to `receiver`, reflects the eTokens minted.\n @custom:emits ERC20-Transfer from `msg.sender` to address(eToken)\n @param eToken The address of the eToken to which the user wants to provide liquidity\n @param amount The amount to deposit\n @param receiver The user that will receive the minted tokens"},"functionSelector":"f45346dc","id":14603,"implemented":false,"kind":"function","modifiers":[],"name":"deposit","nameLocation":"9738:7:33","nodeType":"FunctionDefinition","parameters":{"id":14601,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14596,"mutability":"mutable","name":"eToken","nameLocation":"9754:6:33","nodeType":"VariableDeclaration","scope":14603,"src":"9746:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":14595,"nodeType":"UserDefinedTypeName","pathNode":{"id":14594,"name":"IEToken","nameLocations":["9746:7:33"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"9746:7:33"},"referencedDeclaration":14336,"src":"9746:7:33","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":14598,"mutability":"mutable","name":"amount","nameLocation":"9770:6:33","nodeType":"VariableDeclaration","scope":14603,"src":"9762:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14597,"name":"uint256","nodeType":"ElementaryTypeName","src":"9762:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14600,"mutability":"mutable","name":"receiver","nameLocation":"9786:8:33","nodeType":"VariableDeclaration","scope":14603,"src":"9778:16:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14599,"name":"address","nodeType":"ElementaryTypeName","src":"9778:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9745:50:33"},"returnParameters":{"id":14602,"nodeType":"ParameterList","parameters":[],"src":"9804:0:33"},"scope":14638,"src":"9729:76:33","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14604,"nodeType":"StructuredDocumentation","src":"9809:1060:33","text":" @notice Deposits liquidity into an eToken, EIP-2612 compatible version.\n @dev Forwards the call to {EToken-deposit}, after transferring the funds.\n      The user will receive etokens for the same amount deposited. EIP-2612 compatible version, allows sending a\n      signed permit in the same operation.\n @custom:pre `msg.sender` approved the spending of `currency()` for at least `amount`\n @custom:pre `eToken` is an active eToken installed in the pool.\n @custom:emits EToken-Transfer from 0x0 to `receiver`, reflects the eTokens minted.\n @custom:emits ERC20-Transfer from `msg.sender` to address(eToken)\n @param eToken The address of the eToken to which the user wants to provide liquidity\n @param receiver The user that will receive the minted tokens\n @param amount The amount to deposit\n @param deadline The deadline of the permit\n @param v Component of the secp256k1 signature\n @param r Component of the secp256k1 signature\n @param s Component of the secp256k1 signature"},"functionSelector":"de27010a","id":14622,"implemented":false,"kind":"function","modifiers":[],"name":"depositWithPermit","nameLocation":"10881:17:33","nodeType":"FunctionDefinition","parameters":{"id":14620,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14607,"mutability":"mutable","name":"eToken","nameLocation":"10912:6:33","nodeType":"VariableDeclaration","scope":14622,"src":"10904:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":14606,"nodeType":"UserDefinedTypeName","pathNode":{"id":14605,"name":"IEToken","nameLocations":["10904:7:33"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"10904:7:33"},"referencedDeclaration":14336,"src":"10904:7:33","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":14609,"mutability":"mutable","name":"amount","nameLocation":"10932:6:33","nodeType":"VariableDeclaration","scope":14622,"src":"10924:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14608,"name":"uint256","nodeType":"ElementaryTypeName","src":"10924:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14611,"mutability":"mutable","name":"receiver","nameLocation":"10952:8:33","nodeType":"VariableDeclaration","scope":14622,"src":"10944:16:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14610,"name":"address","nodeType":"ElementaryTypeName","src":"10944:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14613,"mutability":"mutable","name":"deadline","nameLocation":"10974:8:33","nodeType":"VariableDeclaration","scope":14622,"src":"10966:16:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14612,"name":"uint256","nodeType":"ElementaryTypeName","src":"10966:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14615,"mutability":"mutable","name":"v","nameLocation":"10994:1:33","nodeType":"VariableDeclaration","scope":14622,"src":"10988:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":14614,"name":"uint8","nodeType":"ElementaryTypeName","src":"10988:5:33","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":14617,"mutability":"mutable","name":"r","nameLocation":"11009:1:33","nodeType":"VariableDeclaration","scope":14622,"src":"11001:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14616,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11001:7:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":14619,"mutability":"mutable","name":"s","nameLocation":"11024:1:33","nodeType":"VariableDeclaration","scope":14622,"src":"11016:9:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14618,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11016:7:33","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"10898:131:33"},"returnParameters":{"id":14621,"nodeType":"ParameterList","parameters":[],"src":"11038:0:33"},"scope":14638,"src":"10872:167:33","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14623,"nodeType":"StructuredDocumentation","src":"11043:1027:33","text":" @notice Withdraws an amount from an eToken\n @dev Forwards the call to {EToken-withdraw}. `amount` of eTokens will be burned and the user will receive the\n      same amount in `currency()`.\n @custom:pre `eToken` is an active (or deprecated) eToken installed in the pool.\n @custom:emits EToken-Transfer from `owner` to `0x0`, reflects the eTokens burned.\n @custom:emits ERC20-Transfer from address(eToken) to `receiver`\n @param eToken The address of the eToken from where the user wants to withdraw liquidity\n @param amount The amount to withdraw. If equal to type(uint256).max, means full withdrawal.\n               If the balance is not enough or can't be withdrawn (locked as SCR), it withdraws\n               as much as it can, but doesn't fails.\n @param receiver The user that will receive the resulting `currency()`\n @param owner The user that owns the eTokens (must be msg.sender or have allowance)\n @return Returns the actual amount withdrawn."},"functionSelector":"dfcd412e","id":14637,"implemented":false,"kind":"function","modifiers":[],"name":"withdraw","nameLocation":"12082:8:33","nodeType":"FunctionDefinition","parameters":{"id":14633,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14626,"mutability":"mutable","name":"eToken","nameLocation":"12099:6:33","nodeType":"VariableDeclaration","scope":14637,"src":"12091:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":14625,"nodeType":"UserDefinedTypeName","pathNode":{"id":14624,"name":"IEToken","nameLocations":["12091:7:33"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"12091:7:33"},"referencedDeclaration":14336,"src":"12091:7:33","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":14628,"mutability":"mutable","name":"amount","nameLocation":"12115:6:33","nodeType":"VariableDeclaration","scope":14637,"src":"12107:14:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14627,"name":"uint256","nodeType":"ElementaryTypeName","src":"12107:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14630,"mutability":"mutable","name":"receiver","nameLocation":"12131:8:33","nodeType":"VariableDeclaration","scope":14637,"src":"12123:16:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14629,"name":"address","nodeType":"ElementaryTypeName","src":"12123:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14632,"mutability":"mutable","name":"owner","nameLocation":"12149:5:33","nodeType":"VariableDeclaration","scope":14637,"src":"12141:13:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14631,"name":"address","nodeType":"ElementaryTypeName","src":"12141:7:33","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"12090:65:33"},"returnParameters":{"id":14636,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14635,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14637,"src":"12174:7:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14634,"name":"uint256","nodeType":"ElementaryTypeName","src":"12174:7:33","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12173:9:33"},"scope":14638,"src":"12073:110:33","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":14639,"src":"643:11542:33","usedErrors":[],"usedEvents":[14469,14479,14493,14503]}],"src":"39:12147:33"},"id":33},"@ensuro/core/contracts/interfaces/IPolicyPoolComponent.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyPoolComponent.sol","exportedSymbols":{"IERC165":[33545],"IPolicyPool":[14638],"IPolicyPoolComponent":[14655]},"id":14656,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":14640,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:34"},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyPool.sol","file":"./IPolicyPool.sol","id":14642,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14656,"sourceUnit":14639,"src":"65:46:34","symbolAliases":[{"foreign":{"id":14641,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14638,"src":"73:11:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":14644,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14656,"sourceUnit":33546,"src":"112:80:34","symbolAliases":[{"foreign":{"id":14643,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"120:7:34","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":14646,"name":"IERC165","nameLocations":["398:7:34"],"nodeType":"IdentifierPath","referencedDeclaration":33545,"src":"398:7:34"},"id":14647,"nodeType":"InheritanceSpecifier","src":"398:7:34"}],"canonicalName":"IPolicyPoolComponent","contractDependencies":[],"contractKind":"interface","documentation":{"id":14645,"nodeType":"StructuredDocumentation","src":"194:169:34","text":" @title IPolicyPoolComponent interface\n @notice Interface for Contracts linked (owned) by a PolicyPool. Useful to avoid cyclic dependencies\n @author Ensuro"},"fullyImplemented":false,"id":14655,"linearizedBaseContracts":[14655,33545],"name":"IPolicyPoolComponent","nameLocation":"374:20:34","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":14648,"nodeType":"StructuredDocumentation","src":"410:109:34","text":" @notice Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs."},"functionSelector":"4d15eb03","id":14654,"implemented":false,"kind":"function","modifiers":[],"name":"policyPool","nameLocation":"531:10:34","nodeType":"FunctionDefinition","parameters":{"id":14649,"nodeType":"ParameterList","parameters":[],"src":"541:2:34"},"returnParameters":{"id":14653,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14652,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14654,"src":"567:11:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"},"typeName":{"id":14651,"nodeType":"UserDefinedTypeName","pathNode":{"id":14650,"name":"IPolicyPool","nameLocations":["567:11:34"],"nodeType":"IdentifierPath","referencedDeclaration":14638,"src":"567:11:34"},"referencedDeclaration":14638,"src":"567:11:34","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$14638","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"566:13:34"},"scope":14655,"src":"522:58:34","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":14656,"src":"364:218:34","usedErrors":[],"usedEvents":[]}],"src":"39:544:34"},"id":34},"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol","exportedSymbols":{"IEToken":[14336],"IPremiumsAccount":[14743],"Policy":[8314]},"id":14744,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":14657,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:35"},{"absolutePath":"@ensuro/core/contracts/interfaces/IEToken.sol","file":"./IEToken.sol","id":14659,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14744,"sourceUnit":14337,"src":"65:38:35","symbolAliases":[{"foreign":{"id":14658,"name":"IEToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14336,"src":"73:7:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/Policy.sol","file":"../Policy.sol","id":14661,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14744,"sourceUnit":8315,"src":"104:37:35","symbolAliases":[{"foreign":{"id":14660,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"112:6:35","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IPremiumsAccount","contractDependencies":[],"contractKind":"interface","documentation":{"id":14662,"nodeType":"StructuredDocumentation","src":"143:115:35","text":" @title IPremiumsAccount interface\n @notice Interface for Premiums Account contracts.\n @author Ensuro"},"fullyImplemented":false,"id":14743,"linearizedBaseContracts":[14743],"name":"IPremiumsAccount","nameLocation":"269:16:35","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":14663,"nodeType":"StructuredDocumentation","src":"290:322:35","text":" @notice Adds a policy to the PremiumsAccount. Stores the pure premiums and locks the aditional funds from junior and\n senior eTokens.\n @param policy The policy to add (created in this transaction)\n @custom:pre Must be called by `policyPool()`\n @custom:emits {EToken-SCRLocked}"},"functionSelector":"f79ac183","id":14669,"implemented":false,"kind":"function","modifiers":[],"name":"policyCreated","nameLocation":"624:13:35","nodeType":"FunctionDefinition","parameters":{"id":14667,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14666,"mutability":"mutable","name":"policy","nameLocation":"663:6:35","nodeType":"VariableDeclaration","scope":14669,"src":"638:31:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14665,"nodeType":"UserDefinedTypeName","pathNode":{"id":14664,"name":"Policy.PolicyData","nameLocations":["638:6:35","645:10:35"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"638:17:35"},"referencedDeclaration":7744,"src":"638:17:35","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"637:33:35"},"returnParameters":{"id":14668,"nodeType":"ParameterList","parameters":[],"src":"679:0:35"},"scope":14743,"src":"615:65:35","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14670,"nodeType":"StructuredDocumentation","src":"684:495:35","text":" @notice Replaces a policy with another in PremiumsAccount. Stores the pure premiums difference and\n re-locks the aditional funds from junior and senior eTokens.\n @param oldPolicy The policy to replace (created in a previous transaction)\n @param newPolicy The policy that will replace the old one (created in this transaction)\n @custom:pre Must be called by `policyPool()`\n @custom:emits {EToken-SCRUnlocked}\n @custom:emits {EToken-SCRLocked}"},"functionSelector":"d5c6c166","id":14679,"implemented":false,"kind":"function","modifiers":[],"name":"policyReplaced","nameLocation":"1191:14:35","nodeType":"FunctionDefinition","parameters":{"id":14677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14673,"mutability":"mutable","name":"oldPolicy","nameLocation":"1231:9:35","nodeType":"VariableDeclaration","scope":14679,"src":"1206:34:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14672,"nodeType":"UserDefinedTypeName","pathNode":{"id":14671,"name":"Policy.PolicyData","nameLocations":["1206:6:35","1213:10:35"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"1206:17:35"},"referencedDeclaration":7744,"src":"1206:17:35","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":14676,"mutability":"mutable","name":"newPolicy","nameLocation":"1267:9:35","nodeType":"VariableDeclaration","scope":14679,"src":"1242:34:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14675,"nodeType":"UserDefinedTypeName","pathNode":{"id":14674,"name":"Policy.PolicyData","nameLocations":["1242:6:35","1249:10:35"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"1242:17:35"},"referencedDeclaration":7744,"src":"1242:17:35","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"1205:72:35"},"returnParameters":{"id":14678,"nodeType":"ParameterList","parameters":[],"src":"1286:0:35"},"scope":14743,"src":"1182:105:35","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14680,"nodeType":"StructuredDocumentation","src":"1291:594:35","text":" @notice Reflects the cancellation of a policy, doing the required refunds.\n @param policyToCancel The policy that is being cancelled\n @param purePremiumRefund The pure premium amount that will be reimbursed to the policy holder\n @param jrCocRefund The jrCoc that will be reimbursed to the policy holder\n @param srCocRefund The srCoc that will be reimbursed to the policy holder\n @param policyHolder Owner of the policy that will receive the reimbursement\n @custom:pre Must be called by `policyPool()`\n @custom:emits {EToken-SCRUnlocked}"},"functionSelector":"ee1f9a6a","id":14694,"implemented":false,"kind":"function","modifiers":[],"name":"policyCancelled","nameLocation":"1897:15:35","nodeType":"FunctionDefinition","parameters":{"id":14692,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14683,"mutability":"mutable","name":"policyToCancel","nameLocation":"1945:14:35","nodeType":"VariableDeclaration","scope":14694,"src":"1918:41:35","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_calldata_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14682,"nodeType":"UserDefinedTypeName","pathNode":{"id":14681,"name":"Policy.PolicyData","nameLocations":["1918:6:35","1925:10:35"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"1918:17:35"},"referencedDeclaration":7744,"src":"1918:17:35","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":14685,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"1973:17:35","nodeType":"VariableDeclaration","scope":14694,"src":"1965:25:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14684,"name":"uint256","nodeType":"ElementaryTypeName","src":"1965:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14687,"mutability":"mutable","name":"jrCocRefund","nameLocation":"2004:11:35","nodeType":"VariableDeclaration","scope":14694,"src":"1996:19:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14686,"name":"uint256","nodeType":"ElementaryTypeName","src":"1996:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14689,"mutability":"mutable","name":"srCocRefund","nameLocation":"2029:11:35","nodeType":"VariableDeclaration","scope":14694,"src":"2021:19:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14688,"name":"uint256","nodeType":"ElementaryTypeName","src":"2021:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14691,"mutability":"mutable","name":"policyHolder","nameLocation":"2054:12:35","nodeType":"VariableDeclaration","scope":14694,"src":"2046:20:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14690,"name":"address","nodeType":"ElementaryTypeName","src":"2046:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1912:158:35"},"returnParameters":{"id":14693,"nodeType":"ParameterList","parameters":[],"src":"2079:0:35"},"scope":14743,"src":"1888:192:35","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14695,"nodeType":"StructuredDocumentation","src":"2084:569:35","text":" @notice The PremiumsAccount is notified that the policy was resolved and issues the payout to the policyHolder.\n @param policyHolder The one that will receive the payout\n @param policy The policy that was resolved\n @param payout The amount that has to be transferred to `policyHolder`\n @custom:pre Must be called by `policyPool()`\n @custom:emits {ERC20-Transfer}: `to == policyHolder`, `amount == payout`\n @custom:emits {EToken-InternalLoan}: optional, if a loan needs to be taken\n @custom:emits {EToken-SCRUnlocked}"},"functionSelector":"1dda2899","id":14705,"implemented":false,"kind":"function","modifiers":[],"name":"policyResolvedWithPayout","nameLocation":"2665:24:35","nodeType":"FunctionDefinition","parameters":{"id":14703,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14697,"mutability":"mutable","name":"policyHolder","nameLocation":"2698:12:35","nodeType":"VariableDeclaration","scope":14705,"src":"2690:20:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14696,"name":"address","nodeType":"ElementaryTypeName","src":"2690:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14700,"mutability":"mutable","name":"policy","nameLocation":"2737:6:35","nodeType":"VariableDeclaration","scope":14705,"src":"2712:31:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14699,"nodeType":"UserDefinedTypeName","pathNode":{"id":14698,"name":"Policy.PolicyData","nameLocations":["2712:6:35","2719:10:35"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"2712:17:35"},"referencedDeclaration":7744,"src":"2712:17:35","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":14702,"mutability":"mutable","name":"payout","nameLocation":"2753:6:35","nodeType":"VariableDeclaration","scope":14705,"src":"2745:14:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14701,"name":"uint256","nodeType":"ElementaryTypeName","src":"2745:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2689:71:35"},"returnParameters":{"id":14704,"nodeType":"ParameterList","parameters":[],"src":"2769:0:35"},"scope":14743,"src":"2656:114:35","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14706,"nodeType":"StructuredDocumentation","src":"2774:397:35","text":" @notice The PremiumsAccount is notified that the policy has expired, unlocks the SCR and earns the pure premium.\n @param policy The policy that has expired\n @custom:pre Must be called by `policyPool()`\n @custom:emits {ERC20-Transfer}: `to == policyHolder`, `amount == payout`\n @custom:emits {EToken-InternalLoanRepaid}: optional, if a loan was taken before"},"functionSelector":"76185ff1","id":14712,"implemented":false,"kind":"function","modifiers":[],"name":"policyExpired","nameLocation":"3183:13:35","nodeType":"FunctionDefinition","parameters":{"id":14710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14709,"mutability":"mutable","name":"policy","nameLocation":"3222:6:35","nodeType":"VariableDeclaration","scope":14712,"src":"3197:31:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14708,"nodeType":"UserDefinedTypeName","pathNode":{"id":14707,"name":"Policy.PolicyData","nameLocations":["3197:6:35","3204:10:35"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"3197:17:35"},"referencedDeclaration":7744,"src":"3197:17:35","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"3196:33:35"},"returnParameters":{"id":14711,"nodeType":"ParameterList","parameters":[],"src":"3238:0:35"},"scope":14743,"src":"3174:65:35","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":14713,"nodeType":"StructuredDocumentation","src":"3243:132:35","text":" @notice The senior eToken, the secondary source of solvency, used if the premiums account is exhausted and junior too"},"functionSelector":"7b83037b","id":14719,"implemented":false,"kind":"function","modifiers":[],"name":"seniorEtk","nameLocation":"3387:9:35","nodeType":"FunctionDefinition","parameters":{"id":14714,"nodeType":"ParameterList","parameters":[],"src":"3396:2:35"},"returnParameters":{"id":14718,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14717,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14719,"src":"3422:7:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":14716,"nodeType":"UserDefinedTypeName","pathNode":{"id":14715,"name":"IEToken","nameLocations":["3422:7:35"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"3422:7:35"},"referencedDeclaration":14336,"src":"3422:7:35","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"3421:9:35"},"scope":14743,"src":"3378:53:35","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14720,"nodeType":"StructuredDocumentation","src":"3435:116:35","text":" @notice The junior eToken, the primary source of solvency, used if the premiums account is exhausted."},"functionSelector":"536ebbfc","id":14726,"implemented":false,"kind":"function","modifiers":[],"name":"juniorEtk","nameLocation":"3563:9:35","nodeType":"FunctionDefinition","parameters":{"id":14721,"nodeType":"ParameterList","parameters":[],"src":"3572:2:35"},"returnParameters":{"id":14725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14724,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14726,"src":"3598:7:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":14723,"nodeType":"UserDefinedTypeName","pathNode":{"id":14722,"name":"IEToken","nameLocations":["3598:7:35"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"3598:7:35"},"referencedDeclaration":14336,"src":"3598:7:35","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"3597:9:35"},"scope":14743,"src":"3554:53:35","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14727,"nodeType":"StructuredDocumentation","src":"3611:95:35","text":" @notice Returns the juniorEtk and seniorEtk. See {juniorEtk()} and {seniorEtk()}"},"functionSelector":"5e445859","id":14736,"implemented":false,"kind":"function","modifiers":[],"name":"etks","nameLocation":"3718:4:35","nodeType":"FunctionDefinition","parameters":{"id":14728,"nodeType":"ParameterList","parameters":[],"src":"3722:2:35"},"returnParameters":{"id":14735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14731,"mutability":"mutable","name":"juniorEtk","nameLocation":"3756:9:35","nodeType":"VariableDeclaration","scope":14736,"src":"3748:17:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":14730,"nodeType":"UserDefinedTypeName","pathNode":{"id":14729,"name":"IEToken","nameLocations":["3748:7:35"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"3748:7:35"},"referencedDeclaration":14336,"src":"3748:7:35","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"},{"constant":false,"id":14734,"mutability":"mutable","name":"seniorEtk","nameLocation":"3775:9:35","nodeType":"VariableDeclaration","scope":14736,"src":"3767:17:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"},"typeName":{"id":14733,"nodeType":"UserDefinedTypeName","pathNode":{"id":14732,"name":"IEToken","nameLocations":["3767:7:35"],"nodeType":"IdentifierPath","referencedDeclaration":14336,"src":"3767:7:35"},"referencedDeclaration":14336,"src":"3767:7:35","typeDescriptions":{"typeIdentifier":"t_contract$_IEToken_$14336","typeString":"contract IEToken"}},"visibility":"internal"}],"src":"3747:38:35"},"scope":14743,"src":"3709:77:35","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14737,"nodeType":"StructuredDocumentation","src":"3790:80:35","text":" @notice The total amount of premiums hold by this PremiumsAccount"},"functionSelector":"26ccbd22","id":14742,"implemented":false,"kind":"function","modifiers":[],"name":"purePremiums","nameLocation":"3882:12:35","nodeType":"FunctionDefinition","parameters":{"id":14738,"nodeType":"ParameterList","parameters":[],"src":"3894:2:35"},"returnParameters":{"id":14741,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14740,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14742,"src":"3920:7:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14739,"name":"uint256","nodeType":"ElementaryTypeName","src":"3920:7:35","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3919:9:35"},"scope":14743,"src":"3873:56:35","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":14744,"src":"259:3672:35","usedErrors":[],"usedEvents":[]}],"src":"39:3893:35"},"id":35},"@ensuro/core/contracts/interfaces/IRiskModule.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/interfaces/IRiskModule.sol","exportedSymbols":{"IPremiumsAccount":[14743],"IRiskModule":[14762]},"id":14763,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":14745,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:36"},{"absolutePath":"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol","file":"./IPremiumsAccount.sol","id":14747,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14763,"sourceUnit":14744,"src":"65:56:36","symbolAliases":[{"foreign":{"id":14746,"name":"IPremiumsAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14743,"src":"73:16:36","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IRiskModule","contractDependencies":[],"contractKind":"interface","documentation":{"id":14748,"nodeType":"StructuredDocumentation","src":"123:162:36","text":" @title IRiskModule interface\n @notice Interface for RiskModule smart contracts. Gives access to RiskModule configuration parameters\n @author Ensuro"},"fullyImplemented":false,"id":14762,"linearizedBaseContracts":[14762],"name":"IRiskModule","nameLocation":"296:11:36","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":14749,"nodeType":"StructuredDocumentation","src":"312:93:36","text":" @notice Returns the address of the partner that receives the partnerCommission"},"functionSelector":"521eb273","id":14754,"implemented":false,"kind":"function","modifiers":[],"name":"wallet","nameLocation":"417:6:36","nodeType":"FunctionDefinition","parameters":{"id":14750,"nodeType":"ParameterList","parameters":[],"src":"423:2:36"},"returnParameters":{"id":14753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14752,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14754,"src":"449:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14751,"name":"address","nodeType":"ElementaryTypeName","src":"449:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"448:9:36"},"scope":14762,"src":"408:50:36","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14755,"nodeType":"StructuredDocumentation","src":"462:121:36","text":" @notice Returns the {PremiumsAccount} where the premiums of this risk module are collected. Never changes."},"functionSelector":"73a952e8","id":14761,"implemented":false,"kind":"function","modifiers":[],"name":"premiumsAccount","nameLocation":"595:15:36","nodeType":"FunctionDefinition","parameters":{"id":14756,"nodeType":"ParameterList","parameters":[],"src":"610:2:36"},"returnParameters":{"id":14760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14759,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14761,"src":"636:16:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"},"typeName":{"id":14758,"nodeType":"UserDefinedTypeName","pathNode":{"id":14757,"name":"IPremiumsAccount","nameLocations":["636:16:36"],"nodeType":"IdentifierPath","referencedDeclaration":14743,"src":"636:16:36"},"referencedDeclaration":14743,"src":"636:16:36","typeDescriptions":{"typeIdentifier":"t_contract$_IPremiumsAccount_$14743","typeString":"contract IPremiumsAccount"}},"visibility":"internal"}],"src":"635:18:36"},"scope":14762,"src":"586:68:36","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":14763,"src":"286:370:36","usedErrors":[],"usedEvents":[]}],"src":"39:618:36"},"id":36},"@ensuro/core/contracts/interfaces/IUnderwriter.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/interfaces/IUnderwriter.sol","exportedSymbols":{"IUnderwriter":[14830],"Policy":[8314]},"id":14831,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":14764,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:37"},{"absolutePath":"@ensuro/core/contracts/Policy.sol","file":"../Policy.sol","id":14766,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":14831,"sourceUnit":8315,"src":"64:37:37","symbolAliases":[{"foreign":{"id":14765,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"72:6:37","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IUnderwriter","contractDependencies":[],"contractKind":"interface","documentation":{"id":14767,"nodeType":"StructuredDocumentation","src":"103:222:37","text":" @title Underwriter interface\n @notice Interface for a contract that validates inputs and converts it into the fields required to create a policy\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":false,"id":14830,"linearizedBaseContracts":[14830],"name":"IUnderwriter","nameLocation":"336:12:37","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":14768,"nodeType":"StructuredDocumentation","src":"353:916:37","text":" @notice Prices a new policy request for RiskModule `rm`.\n @param rm        The RiskModule address requesting pricing (implementations may use it for access checks).\n @param inputData Opaque payload consumed by the Underwriter implementation.\n @return payout      The policy payout.\n @return premium     The total premium for the policy.\n @return lossProb    Loss probability used for pricing/risk calculations.\n @return expiration  Policy expiration timestamp (seconds since epoch).\n @return internalId  Unique id within `rm` used to derive the policy id.\n @return params      Additional policy parameters used by {Policy-initialize}.\n @custom:pre `inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.\n @custom:pre The caller must satisfy any access/authentication requirements imposed by the implementation."},"functionSelector":"ba097a2a","id":14788,"implemented":false,"kind":"function","modifiers":[],"name":"priceNewPolicy","nameLocation":"1281:14:37","nodeType":"FunctionDefinition","parameters":{"id":14773,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14770,"mutability":"mutable","name":"rm","nameLocation":"1309:2:37","nodeType":"VariableDeclaration","scope":14788,"src":"1301:10:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14769,"name":"address","nodeType":"ElementaryTypeName","src":"1301:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14772,"mutability":"mutable","name":"inputData","nameLocation":"1332:9:37","nodeType":"VariableDeclaration","scope":14788,"src":"1317:24:37","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":14771,"name":"bytes","nodeType":"ElementaryTypeName","src":"1317:5:37","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1295:50:37"},"returnParameters":{"id":14787,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14775,"mutability":"mutable","name":"payout","nameLocation":"1396:6:37","nodeType":"VariableDeclaration","scope":14788,"src":"1388:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14774,"name":"uint256","nodeType":"ElementaryTypeName","src":"1388:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14777,"mutability":"mutable","name":"premium","nameLocation":"1418:7:37","nodeType":"VariableDeclaration","scope":14788,"src":"1410:15:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14776,"name":"uint256","nodeType":"ElementaryTypeName","src":"1410:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14779,"mutability":"mutable","name":"lossProb","nameLocation":"1441:8:37","nodeType":"VariableDeclaration","scope":14788,"src":"1433:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14778,"name":"uint256","nodeType":"ElementaryTypeName","src":"1433:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14781,"mutability":"mutable","name":"expiration","nameLocation":"1464:10:37","nodeType":"VariableDeclaration","scope":14788,"src":"1457:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":14780,"name":"uint40","nodeType":"ElementaryTypeName","src":"1457:6:37","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":14783,"mutability":"mutable","name":"internalId","nameLocation":"1489:10:37","nodeType":"VariableDeclaration","scope":14788,"src":"1482:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14782,"name":"uint96","nodeType":"ElementaryTypeName","src":"1482:6:37","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":14786,"mutability":"mutable","name":"params","nameLocation":"1528:6:37","nodeType":"VariableDeclaration","scope":14788,"src":"1507:27:37","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":14785,"nodeType":"UserDefinedTypeName","pathNode":{"id":14784,"name":"Policy.Params","nameLocations":["1507:6:37","1514:6:37"],"nodeType":"IdentifierPath","referencedDeclaration":7718,"src":"1507:13:37"},"referencedDeclaration":7718,"src":"1507:13:37","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"src":"1380:160:37"},"scope":14830,"src":"1272:269:37","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14789,"nodeType":"StructuredDocumentation","src":"1545:999:37","text":" @notice Prices a policy replacement request for RiskModule `rm`.\n @param rm        The RiskModule address requesting pricing (implementations may use it for access checks).\n @param inputData Opaque payload consumed by the Underwriter implementation.\n @return oldPolicy   The policy being replaced (as {Policy-PolicyData}).\n @return payout      The replacement policy payout.\n @return premium     The replacement policy premium.\n @return lossProb    Loss probability used for pricing/risk calculations.\n @return expiration  Replacement policy expiration timestamp.\n @return internalId  Unique id within `rm` for the replacement policy.\n @return params      Additional policy parameters used by {Policy-initialize}.\n @custom:pre `inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.\n @custom:pre The caller must satisfy any access/authentication requirements imposed by the implementation."},"functionSelector":"9ba942d6","id":14812,"implemented":false,"kind":"function","modifiers":[],"name":"pricePolicyReplacement","nameLocation":"2556:22:37","nodeType":"FunctionDefinition","parameters":{"id":14794,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14791,"mutability":"mutable","name":"rm","nameLocation":"2592:2:37","nodeType":"VariableDeclaration","scope":14812,"src":"2584:10:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14790,"name":"address","nodeType":"ElementaryTypeName","src":"2584:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14793,"mutability":"mutable","name":"inputData","nameLocation":"2615:9:37","nodeType":"VariableDeclaration","scope":14812,"src":"2600:24:37","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":14792,"name":"bytes","nodeType":"ElementaryTypeName","src":"2600:5:37","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2578:50:37"},"returnParameters":{"id":14811,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14797,"mutability":"mutable","name":"oldPolicy","nameLocation":"2696:9:37","nodeType":"VariableDeclaration","scope":14812,"src":"2671:34:37","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14796,"nodeType":"UserDefinedTypeName","pathNode":{"id":14795,"name":"Policy.PolicyData","nameLocations":["2671:6:37","2678:10:37"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"2671:17:37"},"referencedDeclaration":7744,"src":"2671:17:37","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":14799,"mutability":"mutable","name":"payout","nameLocation":"2721:6:37","nodeType":"VariableDeclaration","scope":14812,"src":"2713:14:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14798,"name":"uint256","nodeType":"ElementaryTypeName","src":"2713:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14801,"mutability":"mutable","name":"premium","nameLocation":"2743:7:37","nodeType":"VariableDeclaration","scope":14812,"src":"2735:15:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14800,"name":"uint256","nodeType":"ElementaryTypeName","src":"2735:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14803,"mutability":"mutable","name":"lossProb","nameLocation":"2766:8:37","nodeType":"VariableDeclaration","scope":14812,"src":"2758:16:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14802,"name":"uint256","nodeType":"ElementaryTypeName","src":"2758:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14805,"mutability":"mutable","name":"expiration","nameLocation":"2789:10:37","nodeType":"VariableDeclaration","scope":14812,"src":"2782:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":14804,"name":"uint40","nodeType":"ElementaryTypeName","src":"2782:6:37","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":14807,"mutability":"mutable","name":"internalId","nameLocation":"2814:10:37","nodeType":"VariableDeclaration","scope":14812,"src":"2807:17:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":14806,"name":"uint96","nodeType":"ElementaryTypeName","src":"2807:6:37","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":14810,"mutability":"mutable","name":"params","nameLocation":"2853:6:37","nodeType":"VariableDeclaration","scope":14812,"src":"2832:27:37","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":14809,"nodeType":"UserDefinedTypeName","pathNode":{"id":14808,"name":"Policy.Params","nameLocations":["2832:6:37","2839:6:37"],"nodeType":"IdentifierPath","referencedDeclaration":7718,"src":"2832:13:37"},"referencedDeclaration":7718,"src":"2832:13:37","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"src":"2663:202:37"},"scope":14830,"src":"2547:319:37","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":14813,"nodeType":"StructuredDocumentation","src":"2870:855:37","text":" @notice Prices a policy cancellation request for RiskModule `rm`.\n @param rm        The RiskModule address requesting pricing (implementations may use it for access checks).\n @param inputData Opaque payload consumed by the Underwriter implementation.\n @return policyToCancel    The policy to cancel (as {Policy-PolicyData}).\n @return purePremiumRefund Amount to refund from pure premium.\n @return jrCocRefund       Amount to refund from junior CoC (or a sentinel value, if supported).\n @return srCocRefund       Amount to refund from senior CoC (or a sentinel value, if supported).\n @custom:pre `inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.\n @custom:pre The caller must satisfy any access/authentication requirements imposed by the implementation."},"functionSelector":"32f857fa","id":14829,"implemented":false,"kind":"function","modifiers":[],"name":"pricePolicyCancellation","nameLocation":"3737:23:37","nodeType":"FunctionDefinition","parameters":{"id":14818,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14815,"mutability":"mutable","name":"rm","nameLocation":"3774:2:37","nodeType":"VariableDeclaration","scope":14829,"src":"3766:10:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14814,"name":"address","nodeType":"ElementaryTypeName","src":"3766:7:37","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14817,"mutability":"mutable","name":"inputData","nameLocation":"3797:9:37","nodeType":"VariableDeclaration","scope":14829,"src":"3782:24:37","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":14816,"name":"bytes","nodeType":"ElementaryTypeName","src":"3782:5:37","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3760:50:37"},"returnParameters":{"id":14828,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14821,"mutability":"mutable","name":"policyToCancel","nameLocation":"3878:14:37","nodeType":"VariableDeclaration","scope":14829,"src":"3853:39:37","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":14820,"nodeType":"UserDefinedTypeName","pathNode":{"id":14819,"name":"Policy.PolicyData","nameLocations":["3853:6:37","3860:10:37"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"3853:17:37"},"referencedDeclaration":7744,"src":"3853:17:37","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":14823,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"3908:17:37","nodeType":"VariableDeclaration","scope":14829,"src":"3900:25:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14822,"name":"uint256","nodeType":"ElementaryTypeName","src":"3900:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14825,"mutability":"mutable","name":"jrCocRefund","nameLocation":"3941:11:37","nodeType":"VariableDeclaration","scope":14829,"src":"3933:19:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14824,"name":"uint256","nodeType":"ElementaryTypeName","src":"3933:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14827,"mutability":"mutable","name":"srCocRefund","nameLocation":"3968:11:37","nodeType":"VariableDeclaration","scope":14829,"src":"3960:19:37","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14826,"name":"uint256","nodeType":"ElementaryTypeName","src":"3960:7:37","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3845:140:37"},"scope":14830,"src":"3728:258:37","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":14831,"src":"326:3662:37","usedErrors":[],"usedEvents":[]}],"src":"39:3950:37"},"id":37},"@ensuro/core/contracts/underwriters/FullSignedUW.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/underwriters/FullSignedUW.sol","exportedSymbols":{"AccessManagedProxy":[4170],"ECDSA":[33173],"FullSignedUW":[15265],"IUnderwriter":[14830],"MessageHashUtils":[33299],"Policy":[8314]},"id":15266,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":14832,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:38"},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","id":14834,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15266,"sourceUnit":33174,"src":"64:75:38","symbolAliases":[{"foreign":{"id":14833,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33173,"src":"72:5:38","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","file":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","id":14836,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15266,"sourceUnit":33300,"src":"140:97:38","symbolAliases":[{"foreign":{"id":14835,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33299,"src":"148:16:38","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/Policy.sol","file":"../Policy.sol","id":14838,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15266,"sourceUnit":8315,"src":"238:37:38","symbolAliases":[{"foreign":{"id":14837,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"246:6:38","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IUnderwriter.sol","file":"../interfaces/IUnderwriter.sol","id":14840,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15266,"sourceUnit":14831,"src":"276:60:38","symbolAliases":[{"foreign":{"id":14839,"name":"IUnderwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14830,"src":"284:12:38","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol","file":"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol","id":14842,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15266,"sourceUnit":4171,"src":"337:97:38","symbolAliases":[{"foreign":{"id":14841,"name":"AccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4170,"src":"345:18:38","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":14844,"name":"IUnderwriter","nameLocations":["747:12:38"],"nodeType":"IdentifierPath","referencedDeclaration":14830,"src":"747:12:38"},"id":14845,"nodeType":"InheritanceSpecifier","src":"747:12:38"}],"canonicalName":"FullSignedUW","contractDependencies":[],"contractKind":"contract","documentation":{"id":14843,"nodeType":"StructuredDocumentation","src":"436:285:38","text":" @title FullSignedUW\n @notice Underwriter that just decodes what it receives and checks it was signed by an authorized account.\n      The signer needs to have the specific selectors granted in the target RM\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":15265,"linearizedBaseContracts":[15265,14830],"name":"FullSignedUW","nameLocation":"731:12:38","nodeType":"ContractDefinition","nodes":[{"global":false,"id":14849,"libraryName":{"id":14846,"name":"Policy","nameLocations":["770:6:38"],"nodeType":"IdentifierPath","referencedDeclaration":8314,"src":"770:6:38"},"nodeType":"UsingForDirective","src":"764:35:38","typeName":{"id":14848,"nodeType":"UserDefinedTypeName","pathNode":{"id":14847,"name":"Policy.PolicyData","nameLocations":["781:6:38","788:10:38"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"781:17:38"},"referencedDeclaration":7744,"src":"781:17:38","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}}},{"constant":true,"id":14857,"mutability":"constant","name":"FULL_PRICE_NEW_POLICY","nameLocation":"828:21:38","nodeType":"VariableDeclaration","scope":15265,"src":"803:91:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14850,"name":"bytes4","nodeType":"ElementaryTypeName","src":"803:6:38","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"arguments":[{"arguments":[{"hexValue":"46554c4c5f50524943455f4e45575f504f4c494359","id":14854,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"869:23:38","typeDescriptions":{"typeIdentifier":"t_stringliteral_4568705da1639073be69afeb2376d89cef780c68efd064ab4c2e8049be434a18","typeString":"literal_string \"FULL_PRICE_NEW_POLICY\""},"value":"FULL_PRICE_NEW_POLICY"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_4568705da1639073be69afeb2376d89cef780c68efd064ab4c2e8049be434a18","typeString":"literal_string \"FULL_PRICE_NEW_POLICY\""}],"id":14853,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"859:9:38","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":14855,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"859:34:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":14852,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"852:6:38","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":14851,"name":"bytes4","nodeType":"ElementaryTypeName","src":"852:6:38","typeDescriptions":{}}},"id":14856,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"852:42:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":true,"id":14865,"mutability":"constant","name":"FULL_PRICE_REPLACE_POLICY","nameLocation":"923:25:38","nodeType":"VariableDeclaration","scope":15265,"src":"898:99:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14858,"name":"bytes4","nodeType":"ElementaryTypeName","src":"898:6:38","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"arguments":[{"arguments":[{"hexValue":"46554c4c5f50524943455f5245504c4143455f504f4c494359","id":14862,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"968:27:38","typeDescriptions":{"typeIdentifier":"t_stringliteral_b8bf8abee956c23073a3f628100e45da0cf4d7ca1e953d176e06c48753d2863e","typeString":"literal_string \"FULL_PRICE_REPLACE_POLICY\""},"value":"FULL_PRICE_REPLACE_POLICY"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_b8bf8abee956c23073a3f628100e45da0cf4d7ca1e953d176e06c48753d2863e","typeString":"literal_string \"FULL_PRICE_REPLACE_POLICY\""}],"id":14861,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"958:9:38","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":14863,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"958:38:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":14860,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"951:6:38","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":14859,"name":"bytes4","nodeType":"ElementaryTypeName","src":"951:6:38","typeDescriptions":{}}},"id":14864,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"951:46:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":true,"id":14873,"mutability":"constant","name":"FULL_PRICE_CANCEL_POLICY","nameLocation":"1026:24:38","nodeType":"VariableDeclaration","scope":15265,"src":"1001:97:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14866,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1001:6:38","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"arguments":[{"arguments":[{"hexValue":"46554c4c5f50524943455f43414e43454c5f504f4c494359","id":14870,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1070:26:38","typeDescriptions":{"typeIdentifier":"t_stringliteral_e1cc1aa1166fa42e3a9bf6f2e810db30f295c27e6aeef2638722d3726d751570","typeString":"literal_string \"FULL_PRICE_CANCEL_POLICY\""},"value":"FULL_PRICE_CANCEL_POLICY"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_e1cc1aa1166fa42e3a9bf6f2e810db30f295c27e6aeef2638722d3726d751570","typeString":"literal_string \"FULL_PRICE_CANCEL_POLICY\""}],"id":14869,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1060:9:38","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":14871,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1060:37:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":14868,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1053:6:38","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":14867,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1053:6:38","typeDescriptions":{}}},"id":14872,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1053:45:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":true,"id":14882,"mutability":"constant","name":"NEW_POLICY_DATA_SIZE","nameLocation":"1127:20:38","nodeType":"VariableDeclaration","scope":15265,"src":"1102:63:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14874,"name":"uint256","nodeType":"ElementaryTypeName","src":"1102:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_rational_384_by_1","typeString":"int_const 384"},"id":14881,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"id":14877,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"35","id":14875,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1150:1:38","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3332","id":14876,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1154:2:38","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"1150:6:38","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"id":14880,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"37","id":14878,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1159:1:38","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3332","id":14879,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1163:2:38","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"1159:6:38","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"}},"src":"1150:15:38","typeDescriptions":{"typeIdentifier":"t_rational_384_by_1","typeString":"int_const 384"}},"visibility":"private"},{"constant":true,"id":14889,"mutability":"constant","name":"REPLACE_POLICY_DATA_SIZE","nameLocation":"1207:24:38","nodeType":"VariableDeclaration","scope":15265,"src":"1182:82:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14883,"name":"uint256","nodeType":"ElementaryTypeName","src":"1182:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14888,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"id":14884,"name":"NEW_POLICY_DATA_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14882,"src":"1234:20:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_rational_384_by_1","typeString":"int_const 384"},"id":14887,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3132","id":14885,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1257:2:38","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3332","id":14886,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1262:2:38","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"1257:7:38","typeDescriptions":{"typeIdentifier":"t_rational_384_by_1","typeString":"int_const 384"}},"src":"1234:30:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":true,"id":14898,"mutability":"constant","name":"CANCEL_POLICY_DATA_SIZE","nameLocation":"1306:23:38","nodeType":"VariableDeclaration","scope":15265,"src":"1281:80:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14890,"name":"uint256","nodeType":"ElementaryTypeName","src":"1281:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_rational_480_by_1","typeString":"int_const 480"},"id":14897,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_384_by_1","typeString":"int_const 384"},"id":14893,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3132","id":14891,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1332:2:38","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3332","id":14892,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1337:2:38","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"1332:7:38","typeDescriptions":{"typeIdentifier":"t_rational_384_by_1","typeString":"int_const 384"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"id":14896,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":14894,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1355:1:38","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3332","id":14895,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1359:2:38","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"1355:6:38","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"}},"src":"1332:29:38","typeDescriptions":{"typeIdentifier":"t_rational_480_by_1","typeString":"int_const 480"}},"visibility":"private"},{"constant":true,"id":14901,"mutability":"constant","name":"SIGNATURE_SIZE","nameLocation":"1390:14:38","nodeType":"VariableDeclaration","scope":15265,"src":"1365:44:38","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14899,"name":"uint256","nodeType":"ElementaryTypeName","src":"1365:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3635","id":14900,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1407:2:38","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"65"},"visibility":"private"},{"documentation":{"id":14902,"nodeType":"StructuredDocumentation","src":"1414:399:38","text":" @notice Thrown when the recovered signer is not authorized to perform the requested pricing operation on `rm`.\n @dev `selector` is the permission/role identifier checked through the RM's AccessManager (one of `FULL_PRICE_*`).\n @param signer   The address recovered from the appended ECDSA signature.\n @param selector The required permission/role id for the operation."},"errorSelector":"44b06897","id":14908,"name":"UnauthorizedSigner","nameLocation":"1822:18:38","nodeType":"ErrorDefinition","parameters":{"id":14907,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14904,"mutability":"mutable","name":"signer","nameLocation":"1849:6:38","nodeType":"VariableDeclaration","scope":14908,"src":"1841:14:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14903,"name":"address","nodeType":"ElementaryTypeName","src":"1841:7:38","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14906,"mutability":"mutable","name":"selector","nameLocation":"1864:8:38","nodeType":"VariableDeclaration","scope":14908,"src":"1857:15:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14905,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1857:6:38","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1840:33:38"},"src":"1816:58:38"},{"documentation":{"id":14909,"nodeType":"StructuredDocumentation","src":"1877:348:38","text":" @notice Thrown when `inputData` does not have the expected length: `payload || signature`.\n @dev The signature is expected to be exactly 65 bytes, so `inputData.length` must be `inputSize + 65`.\n @param actual   The actual length of `inputData` in bytes.\n @param expected The expected length of `inputData` in bytes."},"errorSelector":"58512282","id":14915,"name":"InvalidInputSize","nameLocation":"2234:16:38","nodeType":"ErrorDefinition","parameters":{"id":14914,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14911,"mutability":"mutable","name":"actual","nameLocation":"2259:6:38","nodeType":"VariableDeclaration","scope":14915,"src":"2251:14:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14910,"name":"uint256","nodeType":"ElementaryTypeName","src":"2251:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14913,"mutability":"mutable","name":"expected","nameLocation":"2275:8:38","nodeType":"VariableDeclaration","scope":14915,"src":"2267:16:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14912,"name":"uint256","nodeType":"ElementaryTypeName","src":"2267:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2250:34:38"},"src":"2228:57:38"},{"documentation":{"id":14916,"nodeType":"StructuredDocumentation","src":"2289:75:38","text":"@notice Thrown when the received signature doesn't match the calling rm"},"errorSelector":"9697bc12","id":14918,"name":"SignatureRmMismatch","nameLocation":"2373:19:38","nodeType":"ErrorDefinition","parameters":{"id":14917,"nodeType":"ParameterList","parameters":[],"src":"2392:2:38"},"src":"2367:28:38"},{"body":{"id":14994,"nodeType":"Block","src":"3450:602:38","statements":[{"assignments":[14931],"declarations":[{"constant":false,"id":14931,"mutability":"mutable","name":"inputLength","nameLocation":"3484:11:38","nodeType":"VariableDeclaration","scope":14994,"src":"3476:19:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14930,"name":"uint256","nodeType":"ElementaryTypeName","src":"3476:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":14934,"initialValue":{"expression":{"id":14932,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14923,"src":"3498:9:38","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":14933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3508:6:38","memberName":"length","nodeType":"MemberAccess","src":"3498:16:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3476:38:38"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14940,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14935,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14931,"src":"3524:11:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14938,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14936,"name":"inputSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14925,"src":"3540:9:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":14937,"name":"SIGNATURE_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14901,"src":"3552:14:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3540:26:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":14939,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3539:28:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3524:43:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14948,"nodeType":"IfStatement","src":"3520:113:38","trueBody":{"errorCall":{"arguments":[{"id":14942,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14931,"src":"3593:11:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14945,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14943,"name":"inputSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14925,"src":"3606:9:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":14944,"name":"SIGNATURE_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14901,"src":"3618:14:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3606:26:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14941,"name":"InvalidInputSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14915,"src":"3576:16:38","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":14946,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3576:57:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":14947,"nodeType":"RevertStatement","src":"3569:64:38"}},{"assignments":[14950],"declarations":[{"constant":false,"id":14950,"mutability":"mutable","name":"inputHash","nameLocation":"3670:9:38","nodeType":"VariableDeclaration","scope":14994,"src":"3662:17:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14949,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3662:7:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":14958,"initialValue":{"arguments":[{"baseExpression":{"id":14953,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14923,"src":"3722:9:38","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":14955,"name":"inputSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14925,"src":"3734:9:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14956,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"3722:22:38","startExpression":{"hexValue":"30","id":14954,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3732:1:38","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"}],"expression":{"id":14951,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33299,"src":"3682:16:38","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_MessageHashUtils_$33299_$","typeString":"type(library MessageHashUtils)"}},"id":14952,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3699:22:38","memberName":"toEthSignedMessageHash","nodeType":"MemberAccess","referencedDeclaration":33254,"src":"3682:39:38","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":14957,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3682:63:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"3662:83:38"},{"assignments":[14960],"declarations":[{"constant":false,"id":14960,"mutability":"mutable","name":"signer","nameLocation":"3759:6:38","nodeType":"VariableDeclaration","scope":14994,"src":"3751:14:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14959,"name":"address","nodeType":"ElementaryTypeName","src":"3751:7:38","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":14969,"initialValue":{"arguments":[{"id":14963,"name":"inputHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14950,"src":"3782:9:38","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":14964,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14923,"src":"3793:9:38","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":14966,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14931,"src":"3813:11:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":14967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"3793:32:38","startExpression":{"id":14965,"name":"inputSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14925,"src":"3803:9:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}],"expression":{"id":14961,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33173,"src":"3768:5:38","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$33173_$","typeString":"type(library ECDSA)"}},"id":14962,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3774:7:38","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":32871,"src":"3768:13:38","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes32,bytes memory) pure returns (address)"}},"id":14968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3768:58:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3751:75:38"},{"assignments":[14971,null],"declarations":[{"constant":false,"id":14971,"mutability":"mutable","name":"immediate","nameLocation":"3884:9:38","nodeType":"VariableDeclaration","scope":14994,"src":"3879:14:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14970,"name":"bool","nodeType":"ElementaryTypeName","src":"3879:4:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":14985,"initialValue":{"arguments":[{"id":14981,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14960,"src":"3956:6:38","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":14982,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14921,"src":"3964:2:38","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":14983,"name":"requiredRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14927,"src":"3968:12:38","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"id":14975,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14921,"src":"3926:2:38","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":14974,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3918:8:38","typeDescriptions":{"typeIdentifier":"t_type$_t_address_payable_$","typeString":"type(address payable)"},"typeName":{"id":14973,"name":"address","nodeType":"ElementaryTypeName","src":"3918:8:38","stateMutability":"payable","typeDescriptions":{}}},"id":14976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3918:11:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"}],"id":14972,"name":"AccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4170,"src":"3899:18:38","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AccessManagedProxy_$4170_$","typeString":"type(contract AccessManagedProxy)"}},"id":14977,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3899:31:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_AccessManagedProxy_$4170","typeString":"contract AccessManagedProxy"}},"id":14978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3931:14:38","memberName":"ACCESS_MANAGER","nodeType":"MemberAccess","referencedDeclaration":4169,"src":"3899:46:38","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IAccessManager_$22178_$","typeString":"function () view external returns (contract IAccessManager)"}},"id":14979,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3899:48:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}},"id":14980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3948:7:38","memberName":"canCall","nodeType":"MemberAccess","referencedDeclaration":21922,"src":"3899:56:38","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$_t_bytes4_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes4) view external returns (bool,uint32)"}},"id":14984,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3899:82:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"3878:103:38"},{"expression":{"arguments":[{"id":14987,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14971,"src":"3995:9:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":14989,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14960,"src":"4025:6:38","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":14990,"name":"requiredRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14927,"src":"4033:12:38","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":14988,"name":"UnauthorizedSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14908,"src":"4006:18:38","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_bytes4_$returns$_t_error_$","typeString":"function (address,bytes4) pure returns (error)"}},"id":14991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4006:40:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":14986,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3987:7:38","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":14992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3987:60:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14993,"nodeType":"ExpressionStatement","src":"3987:60:38"}]},"documentation":{"id":14919,"nodeType":"StructuredDocumentation","src":"2399:931:38","text":" @notice Validates the signature appended to `inputData` and checks the recovered signer is authorized in `rm`.\n @param rm           Target RiskModule (must be an {AccessManagedProxy}).\n @param inputData    Concatenated bytes: `payload || signature`.\n @param inputSize    Expected length of the payload portion (without signature).\n @param requiredRole Role/selector id required for this operation (one of the `FULL_PRICE_*` constants).\n @custom:pre `inputData` is exactly `inputSize + 65` bytes long.\n @custom:pre `rm` is an {AccessManagedProxy} instance whose `ACCESS_MANAGER()` supports `canCall(...)`.\n @custom:throws InvalidInputSize if `inputData.length != inputSize + 65`.\n @custom:throws (via {ECDSA-recover}) if the signature is malformed/invalid.\n @custom:throws UnauthorizedSigner if the recovered signer is not permitted to call `rm` with `requiredRole`."},"id":14995,"implemented":true,"kind":"function","modifiers":[],"name":"_checkSignature","nameLocation":"3342:15:38","nodeType":"FunctionDefinition","parameters":{"id":14928,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14921,"mutability":"mutable","name":"rm","nameLocation":"3366:2:38","nodeType":"VariableDeclaration","scope":14995,"src":"3358:10:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14920,"name":"address","nodeType":"ElementaryTypeName","src":"3358:7:38","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":14923,"mutability":"mutable","name":"inputData","nameLocation":"3385:9:38","nodeType":"VariableDeclaration","scope":14995,"src":"3370:24:38","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":14922,"name":"bytes","nodeType":"ElementaryTypeName","src":"3370:5:38","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":14925,"mutability":"mutable","name":"inputSize","nameLocation":"3404:9:38","nodeType":"VariableDeclaration","scope":14995,"src":"3396:17:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":14924,"name":"uint256","nodeType":"ElementaryTypeName","src":"3396:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":14927,"mutability":"mutable","name":"requiredRole","nameLocation":"3422:12:38","nodeType":"VariableDeclaration","scope":14995,"src":"3415:19:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14926,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3415:6:38","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3357:78:38"},"returnParameters":{"id":14929,"nodeType":"ParameterList","parameters":[],"src":"3450:0:38"},"scope":15265,"src":"3333:719:38","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[14788],"body":{"id":15074,"nodeType":"Block","src":"4371:429:38","statements":[{"expression":{"arguments":[{"id":15018,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14998,"src":"4393:2:38","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15019,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15000,"src":"4397:9:38","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":15020,"name":"NEW_POLICY_DATA_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14882,"src":"4408:20:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15021,"name":"FULL_PRICE_NEW_POLICY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14857,"src":"4430:21:38","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":15017,"name":"_checkSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14995,"src":"4377:15:38","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_calldata_ptr_$_t_uint256_$_t_bytes4_$returns$__$","typeString":"function (address,bytes calldata,uint256,bytes4) view"}},"id":15022,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4377:75:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15023,"nodeType":"ExpressionStatement","src":"4377:75:38"},{"assignments":[15025],"declarations":[{"constant":false,"id":15025,"mutability":"mutable","name":"policyId","nameLocation":"4466:8:38","nodeType":"VariableDeclaration","scope":15074,"src":"4458:16:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15024,"name":"uint256","nodeType":"ElementaryTypeName","src":"4458:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15026,"nodeType":"VariableDeclarationStatement","src":"4458:16:38"},{"expression":{"id":15054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":15027,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15004,"src":"4481:6:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15028,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15006,"src":"4489:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15029,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15008,"src":"4498:8:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15030,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15010,"src":"4508:10:38","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":15031,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15025,"src":"4520:8:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15032,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15015,"src":"4530:6:38","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}}],"id":15033,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"4480:57:38","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint256_$_t_struct$_Params_$7718_memory_ptr_$","typeString":"tuple(uint256,uint256,uint256,uint40,uint256,struct Policy.Params memory)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":15036,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15000,"src":"4558:9:38","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":15038,"name":"NEW_POLICY_DATA_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14882,"src":"4570:20:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"4558:33:38","startExpression":{"hexValue":"30","id":15037,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4568:1:38","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"id":15041,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4600:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15040,"name":"uint256","nodeType":"ElementaryTypeName","src":"4600:7:38","typeDescriptions":{}}},{"id":15043,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4609:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15042,"name":"uint256","nodeType":"ElementaryTypeName","src":"4609:7:38","typeDescriptions":{}}},{"id":15045,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4618:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15044,"name":"uint256","nodeType":"ElementaryTypeName","src":"4618:7:38","typeDescriptions":{}}},{"id":15047,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4627:6:38","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":15046,"name":"uint40","nodeType":"ElementaryTypeName","src":"4627:6:38","typeDescriptions":{}}},{"id":15049,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4635:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15048,"name":"uint256","nodeType":"ElementaryTypeName","src":"4635:7:38","typeDescriptions":{}}},{"expression":{"id":15050,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"4644:6:38","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":15051,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4651:6:38","memberName":"Params","nodeType":"MemberAccess","referencedDeclaration":7718,"src":"4644:13:38","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Params_$7718_storage_ptr_$","typeString":"type(struct Policy.Params storage pointer)"}}],"id":15052,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4599:59:38","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint40_$_$_t_type$_t_uint256_$_$_t_type$_t_struct$_Params_$7718_storage_ptr_$_$","typeString":"tuple(type(uint256),type(uint256),type(uint256),type(uint40),type(uint256),type(struct Policy.Params storage pointer))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_tuple$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint40_$_$_t_type$_t_uint256_$_$_t_type$_t_struct$_Params_$7718_storage_ptr_$_$","typeString":"tuple(type(uint256),type(uint256),type(uint256),type(uint40),type(uint256),type(struct Policy.Params storage pointer))"}],"expression":{"id":15034,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4540:3:38","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15035,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4544:6:38","memberName":"decode","nodeType":"MemberAccess","src":"4540:10:38","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":15053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4540:124:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint256_$_t_struct$_Params_$7718_memory_ptr_$","typeString":"tuple(uint256,uint256,uint256,uint40,uint256,struct Policy.Params memory)"}},"src":"4480:184:38","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15055,"nodeType":"ExpressionStatement","src":"4480:184:38"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":15062,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15059,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15025,"src":"4703:8:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15057,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"4678:6:38","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":15058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4685:17:38","memberName":"extractRiskModule","nodeType":"MemberAccess","referencedDeclaration":8267,"src":"4678:24:38","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) pure returns (address)"}},"id":15060,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4678:34:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":15061,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14998,"src":"4716:2:38","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4678:40:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":15063,"name":"SignatureRmMismatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14918,"src":"4720:19:38","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15064,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4720:21:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":15056,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4670:7:38","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":15065,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4670:72:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15066,"nodeType":"ExpressionStatement","src":"4670:72:38"},{"expression":{"id":15072,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15067,"name":"internalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15012,"src":"4748:10:38","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":15070,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15025,"src":"4786:8:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15068,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"4761:6:38","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":15069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4768:17:38","memberName":"extractInternalId","nodeType":"MemberAccess","referencedDeclaration":8286,"src":"4761:24:38","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$","typeString":"function (uint256) pure returns (uint96)"}},"id":15071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4761:34:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"4748:47:38","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":15073,"nodeType":"ExpressionStatement","src":"4748:47:38"}]},"documentation":{"id":14996,"nodeType":"StructuredDocumentation","src":"4056:28:38","text":"@inheritdoc IUnderwriter"},"functionSelector":"ba097a2a","id":15075,"implemented":true,"kind":"function","modifiers":[],"name":"priceNewPolicy","nameLocation":"4096:14:38","nodeType":"FunctionDefinition","overrides":{"id":15002,"nodeType":"OverrideSpecifier","overrides":[],"src":"4187:8:38"},"parameters":{"id":15001,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14998,"mutability":"mutable","name":"rm","nameLocation":"4124:2:38","nodeType":"VariableDeclaration","scope":15075,"src":"4116:10:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14997,"name":"address","nodeType":"ElementaryTypeName","src":"4116:7:38","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15000,"mutability":"mutable","name":"inputData","nameLocation":"4147:9:38","nodeType":"VariableDeclaration","scope":15075,"src":"4132:24:38","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":14999,"name":"bytes","nodeType":"ElementaryTypeName","src":"4132:5:38","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4110:50:38"},"returnParameters":{"id":15016,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15004,"mutability":"mutable","name":"payout","nameLocation":"4224:6:38","nodeType":"VariableDeclaration","scope":15075,"src":"4216:14:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15003,"name":"uint256","nodeType":"ElementaryTypeName","src":"4216:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15006,"mutability":"mutable","name":"premium","nameLocation":"4246:7:38","nodeType":"VariableDeclaration","scope":15075,"src":"4238:15:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15005,"name":"uint256","nodeType":"ElementaryTypeName","src":"4238:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15008,"mutability":"mutable","name":"lossProb","nameLocation":"4269:8:38","nodeType":"VariableDeclaration","scope":15075,"src":"4261:16:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15007,"name":"uint256","nodeType":"ElementaryTypeName","src":"4261:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15010,"mutability":"mutable","name":"expiration","nameLocation":"4292:10:38","nodeType":"VariableDeclaration","scope":15075,"src":"4285:17:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":15009,"name":"uint40","nodeType":"ElementaryTypeName","src":"4285:6:38","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":15012,"mutability":"mutable","name":"internalId","nameLocation":"4317:10:38","nodeType":"VariableDeclaration","scope":15075,"src":"4310:17:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":15011,"name":"uint96","nodeType":"ElementaryTypeName","src":"4310:6:38","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":15015,"mutability":"mutable","name":"params","nameLocation":"4356:6:38","nodeType":"VariableDeclaration","scope":15075,"src":"4335:27:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":15014,"nodeType":"UserDefinedTypeName","pathNode":{"id":15013,"name":"Policy.Params","nameLocations":["4335:6:38","4342:6:38"],"nodeType":"IdentifierPath","referencedDeclaration":7718,"src":"4335:13:38"},"referencedDeclaration":7718,"src":"4335:13:38","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"src":"4208:160:38"},"scope":15265,"src":"4087:713:38","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[14812],"body":{"id":15168,"nodeType":"Block","src":"5169:537:38","statements":[{"expression":{"arguments":[{"id":15101,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15078,"src":"5191:2:38","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15102,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15080,"src":"5195:9:38","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":15103,"name":"REPLACE_POLICY_DATA_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14889,"src":"5206:24:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15104,"name":"FULL_PRICE_REPLACE_POLICY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14865,"src":"5232:25:38","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":15100,"name":"_checkSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14995,"src":"5175:15:38","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_calldata_ptr_$_t_uint256_$_t_bytes4_$returns$__$","typeString":"function (address,bytes calldata,uint256,bytes4) view"}},"id":15105,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5175:83:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15106,"nodeType":"ExpressionStatement","src":"5175:83:38"},{"assignments":[15108],"declarations":[{"constant":false,"id":15108,"mutability":"mutable","name":"policyId","nameLocation":"5272:8:38","nodeType":"VariableDeclaration","scope":15168,"src":"5264:16:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15107,"name":"uint256","nodeType":"ElementaryTypeName","src":"5264:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15109,"nodeType":"VariableDeclarationStatement","src":"5264:16:38"},{"expression":{"id":15140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":15110,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15085,"src":"5287:9:38","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},{"id":15111,"name":"payout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15087,"src":"5298:6:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15112,"name":"premium","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15089,"src":"5306:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15113,"name":"lossProb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15091,"src":"5315:8:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15114,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15093,"src":"5325:10:38","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":15115,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15108,"src":"5337:8:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15116,"name":"params","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15098,"src":"5347:6:38","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params memory"}}],"id":15117,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"5286:68:38","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint256_$_t_struct$_Params_$7718_memory_ptr_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256,uint40,uint256,struct Policy.Params memory)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":15120,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15080,"src":"5375:9:38","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":15122,"name":"REPLACE_POLICY_DATA_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14889,"src":"5387:24:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15123,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"5375:37:38","startExpression":{"hexValue":"30","id":15121,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5385:1:38","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"expression":{"id":15124,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"5421:6:38","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":15125,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5428:10:38","memberName":"PolicyData","nodeType":"MemberAccess","referencedDeclaration":7744,"src":"5421:17:38","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_PolicyData_$7744_storage_ptr_$","typeString":"type(struct Policy.PolicyData storage pointer)"}},{"id":15127,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5440:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15126,"name":"uint256","nodeType":"ElementaryTypeName","src":"5440:7:38","typeDescriptions":{}}},{"id":15129,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5449:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15128,"name":"uint256","nodeType":"ElementaryTypeName","src":"5449:7:38","typeDescriptions":{}}},{"id":15131,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5458:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15130,"name":"uint256","nodeType":"ElementaryTypeName","src":"5458:7:38","typeDescriptions":{}}},{"id":15133,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5467:6:38","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":15132,"name":"uint40","nodeType":"ElementaryTypeName","src":"5467:6:38","typeDescriptions":{}}},{"id":15135,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5475:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15134,"name":"uint256","nodeType":"ElementaryTypeName","src":"5475:7:38","typeDescriptions":{}}},{"expression":{"id":15136,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"5484:6:38","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":15137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5491:6:38","memberName":"Params","nodeType":"MemberAccess","referencedDeclaration":7718,"src":"5484:13:38","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Params_$7718_storage_ptr_$","typeString":"type(struct Policy.Params storage pointer)"}}],"id":15138,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5420:78:38","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_struct$_PolicyData_$7744_storage_ptr_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint40_$_$_t_type$_t_uint256_$_$_t_type$_t_struct$_Params_$7718_storage_ptr_$_$","typeString":"tuple(type(struct Policy.PolicyData storage pointer),type(uint256),type(uint256),type(uint256),type(uint40),type(uint256),type(struct Policy.Params storage pointer))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_tuple$_t_type$_t_struct$_PolicyData_$7744_storage_ptr_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint40_$_$_t_type$_t_uint256_$_$_t_type$_t_struct$_Params_$7718_storage_ptr_$_$","typeString":"tuple(type(struct Policy.PolicyData storage pointer),type(uint256),type(uint256),type(uint256),type(uint40),type(uint256),type(struct Policy.Params storage pointer))"}],"expression":{"id":15118,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"5357:3:38","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15119,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5361:6:38","memberName":"decode","nodeType":"MemberAccess","src":"5357:10:38","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":15139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5357:147:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint256_$_t_struct$_Params_$7718_memory_ptr_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256,uint40,uint256,struct Policy.Params memory)"}},"src":"5286:218:38","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15141,"nodeType":"ExpressionStatement","src":"5286:218:38"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":15148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15145,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15108,"src":"5550:8:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15143,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"5525:6:38","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":15144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5532:17:38","memberName":"extractRiskModule","nodeType":"MemberAccess","referencedDeclaration":8267,"src":"5525:24:38","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) pure returns (address)"}},"id":15146,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5525:34:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":15147,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15078,"src":"5563:2:38","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5525:40:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":15155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":15151,"name":"oldPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15085,"src":"5594:9:38","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":15152,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5604:2:38","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"5594:12:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15149,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"5569:6:38","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":15150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5576:17:38","memberName":"extractRiskModule","nodeType":"MemberAccess","referencedDeclaration":8267,"src":"5569:24:38","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) pure returns (address)"}},"id":15153,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5569:38:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":15154,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15078,"src":"5611:2:38","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5569:44:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5525:88:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":15157,"name":"SignatureRmMismatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14918,"src":"5621:19:38","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15158,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5621:21:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":15142,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"5510:7:38","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":15159,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5510:138:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15160,"nodeType":"ExpressionStatement","src":"5510:138:38"},{"expression":{"id":15166,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15161,"name":"internalId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15095,"src":"5654:10:38","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":15164,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15108,"src":"5692:8:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15162,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"5667:6:38","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":15163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5674:17:38","memberName":"extractInternalId","nodeType":"MemberAccess","referencedDeclaration":8286,"src":"5667:24:38","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$","typeString":"function (uint256) pure returns (uint96)"}},"id":15165,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5667:34:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"5654:47:38","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":15167,"nodeType":"ExpressionStatement","src":"5654:47:38"}]},"documentation":{"id":15076,"nodeType":"StructuredDocumentation","src":"4804:28:38","text":"@inheritdoc IUnderwriter"},"functionSelector":"9ba942d6","id":15169,"implemented":true,"kind":"function","modifiers":[],"name":"pricePolicyReplacement","nameLocation":"4844:22:38","nodeType":"FunctionDefinition","overrides":{"id":15082,"nodeType":"OverrideSpecifier","overrides":[],"src":"4943:8:38"},"parameters":{"id":15081,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15078,"mutability":"mutable","name":"rm","nameLocation":"4880:2:38","nodeType":"VariableDeclaration","scope":15169,"src":"4872:10:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15077,"name":"address","nodeType":"ElementaryTypeName","src":"4872:7:38","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15080,"mutability":"mutable","name":"inputData","nameLocation":"4903:9:38","nodeType":"VariableDeclaration","scope":15169,"src":"4888:24:38","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":15079,"name":"bytes","nodeType":"ElementaryTypeName","src":"4888:5:38","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4866:50:38"},"returnParameters":{"id":15099,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15085,"mutability":"mutable","name":"oldPolicy","nameLocation":"4997:9:38","nodeType":"VariableDeclaration","scope":15169,"src":"4972:34:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":15084,"nodeType":"UserDefinedTypeName","pathNode":{"id":15083,"name":"Policy.PolicyData","nameLocations":["4972:6:38","4979:10:38"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"4972:17:38"},"referencedDeclaration":7744,"src":"4972:17:38","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":15087,"mutability":"mutable","name":"payout","nameLocation":"5022:6:38","nodeType":"VariableDeclaration","scope":15169,"src":"5014:14:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15086,"name":"uint256","nodeType":"ElementaryTypeName","src":"5014:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15089,"mutability":"mutable","name":"premium","nameLocation":"5044:7:38","nodeType":"VariableDeclaration","scope":15169,"src":"5036:15:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15088,"name":"uint256","nodeType":"ElementaryTypeName","src":"5036:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15091,"mutability":"mutable","name":"lossProb","nameLocation":"5067:8:38","nodeType":"VariableDeclaration","scope":15169,"src":"5059:16:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15090,"name":"uint256","nodeType":"ElementaryTypeName","src":"5059:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15093,"mutability":"mutable","name":"expiration","nameLocation":"5090:10:38","nodeType":"VariableDeclaration","scope":15169,"src":"5083:17:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":15092,"name":"uint40","nodeType":"ElementaryTypeName","src":"5083:6:38","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":15095,"mutability":"mutable","name":"internalId","nameLocation":"5115:10:38","nodeType":"VariableDeclaration","scope":15169,"src":"5108:17:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":15094,"name":"uint96","nodeType":"ElementaryTypeName","src":"5108:6:38","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":15098,"mutability":"mutable","name":"params","nameLocation":"5154:6:38","nodeType":"VariableDeclaration","scope":15169,"src":"5133:27:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":15097,"nodeType":"UserDefinedTypeName","pathNode":{"id":15096,"name":"Policy.Params","nameLocations":["5133:6:38","5140:6:38"],"nodeType":"IdentifierPath","referencedDeclaration":7718,"src":"5133:13:38"},"referencedDeclaration":7718,"src":"5133:13:38","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"src":"4964:202:38"},"scope":15265,"src":"4835:871:38","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[14829],"body":{"id":15263,"nodeType":"Block","src":"6014:593:38","statements":[{"expression":{"arguments":[{"id":15188,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15172,"src":"6036:2:38","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15189,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15174,"src":"6040:9:38","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":15190,"name":"CANCEL_POLICY_DATA_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14898,"src":"6051:23:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15191,"name":"FULL_PRICE_CANCEL_POLICY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14873,"src":"6076:24:38","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":15187,"name":"_checkSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14995,"src":"6020:15:38","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_calldata_ptr_$_t_uint256_$_t_bytes4_$returns$__$","typeString":"function (address,bytes calldata,uint256,bytes4) view"}},"id":15192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6020:81:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15193,"nodeType":"ExpressionStatement","src":"6020:81:38"},{"expression":{"id":15215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":15194,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15179,"src":"6108:14:38","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},{"id":15195,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15181,"src":"6124:17:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15196,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15183,"src":"6143:11:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15197,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15185,"src":"6156:11:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15198,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"6107:61:38","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":15201,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15174,"src":"6189:9:38","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"id":15203,"name":"CANCEL_POLICY_DATA_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14898,"src":"6201:23:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"6189:36:38","startExpression":{"hexValue":"30","id":15202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6199:1:38","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},{"components":[{"expression":{"id":15205,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"6234:6:38","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":15206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6241:10:38","memberName":"PolicyData","nodeType":"MemberAccess","referencedDeclaration":7744,"src":"6234:17:38","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_PolicyData_$7744_storage_ptr_$","typeString":"type(struct Policy.PolicyData storage pointer)"}},{"id":15208,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6253:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15207,"name":"uint256","nodeType":"ElementaryTypeName","src":"6253:7:38","typeDescriptions":{}}},{"id":15210,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6262:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15209,"name":"uint256","nodeType":"ElementaryTypeName","src":"6262:7:38","typeDescriptions":{}}},{"id":15212,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6271:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15211,"name":"uint256","nodeType":"ElementaryTypeName","src":"6271:7:38","typeDescriptions":{}}}],"id":15213,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6233:46:38","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_struct$_PolicyData_$7744_storage_ptr_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(struct Policy.PolicyData storage pointer),type(uint256),type(uint256),type(uint256))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"},{"typeIdentifier":"t_tuple$_t_type$_t_struct$_PolicyData_$7744_storage_ptr_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(struct Policy.PolicyData storage pointer),type(uint256),type(uint256),type(uint256))"}],"expression":{"id":15199,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"6171:3:38","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15200,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6175:6:38","memberName":"decode","nodeType":"MemberAccess","src":"6171:10:38","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":15214,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6171:114:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256)"}},"src":"6107:178:38","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15216,"nodeType":"ExpressionStatement","src":"6107:178:38"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":15224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":15220,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15179,"src":"6324:14:38","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":15221,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6339:2:38","memberName":"id","nodeType":"MemberAccess","referencedDeclaration":7721,"src":"6324:17:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15218,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"6299:6:38","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":15219,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6306:17:38","memberName":"extractRiskModule","nodeType":"MemberAccess","referencedDeclaration":8267,"src":"6299:24:38","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) pure returns (address)"}},"id":15222,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6299:43:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":15223,"name":"rm","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15172,"src":"6346:2:38","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6299:49:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":15225,"name":"SignatureRmMismatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14918,"src":"6350:19:38","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":15226,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6350:21:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":15217,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"6291:7:38","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":15227,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6291:81:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15228,"nodeType":"ExpressionStatement","src":"6291:81:38"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15229,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15183,"src":"6382:11:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":15232,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6402:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15231,"name":"uint256","nodeType":"ElementaryTypeName","src":"6402:7:38","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":15230,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6397:4:38","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":15233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6397:13:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":15234,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6411:3:38","memberName":"max","nodeType":"MemberAccess","src":"6397:17:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6382:32:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15245,"nodeType":"IfStatement","src":"6378:109:38","trueBody":{"expression":{"id":15243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15236,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15183,"src":"6416:11:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15237,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15179,"src":"6430:14:38","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":15238,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6445:5:38","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7737,"src":"6430:20:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15239,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15179,"src":"6453:14:38","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":15240,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6468:17:38","memberName":"jrAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":8149,"src":"6453:32:38","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":15241,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6453:34:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6430:57:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6416:71:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15244,"nodeType":"ExpressionStatement","src":"6416:71:38"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15252,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15246,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15185,"src":"6497:11:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":15249,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6517:7:38","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15248,"name":"uint256","nodeType":"ElementaryTypeName","src":"6517:7:38","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":15247,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6512:4:38","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":15250,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6512:13:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":15251,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6526:3:38","memberName":"max","nodeType":"MemberAccess","src":"6512:17:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6497:32:38","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15262,"nodeType":"IfStatement","src":"6493:109:38","trueBody":{"expression":{"id":15260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15253,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15185,"src":"6531:11:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15254,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15179,"src":"6545:14:38","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":15255,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6560:5:38","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7739,"src":"6545:20:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15256,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15179,"src":"6568:14:38","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":15257,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6583:17:38","memberName":"srAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":8199,"src":"6568:32:38","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":15258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6568:34:38","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6545:57:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6531:71:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15261,"nodeType":"ExpressionStatement","src":"6531:71:38"}}]},"documentation":{"id":15170,"nodeType":"StructuredDocumentation","src":"5710:28:38","text":"@inheritdoc IUnderwriter"},"functionSelector":"32f857fa","id":15264,"implemented":true,"kind":"function","modifiers":[],"name":"pricePolicyCancellation","nameLocation":"5750:23:38","nodeType":"FunctionDefinition","overrides":{"id":15176,"nodeType":"OverrideSpecifier","overrides":[],"src":"5850:8:38"},"parameters":{"id":15175,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15172,"mutability":"mutable","name":"rm","nameLocation":"5787:2:38","nodeType":"VariableDeclaration","scope":15264,"src":"5779:10:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15171,"name":"address","nodeType":"ElementaryTypeName","src":"5779:7:38","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15174,"mutability":"mutable","name":"inputData","nameLocation":"5810:9:38","nodeType":"VariableDeclaration","scope":15264,"src":"5795:24:38","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":15173,"name":"bytes","nodeType":"ElementaryTypeName","src":"5795:5:38","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5773:50:38"},"returnParameters":{"id":15186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15179,"mutability":"mutable","name":"policyToCancel","nameLocation":"5904:14:38","nodeType":"VariableDeclaration","scope":15264,"src":"5879:39:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":15178,"nodeType":"UserDefinedTypeName","pathNode":{"id":15177,"name":"Policy.PolicyData","nameLocations":["5879:6:38","5886:10:38"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"5879:17:38"},"referencedDeclaration":7744,"src":"5879:17:38","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":15181,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"5934:17:38","nodeType":"VariableDeclaration","scope":15264,"src":"5926:25:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15180,"name":"uint256","nodeType":"ElementaryTypeName","src":"5926:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15183,"mutability":"mutable","name":"jrCocRefund","nameLocation":"5967:11:38","nodeType":"VariableDeclaration","scope":15264,"src":"5959:19:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15182,"name":"uint256","nodeType":"ElementaryTypeName","src":"5959:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15185,"mutability":"mutable","name":"srCocRefund","nameLocation":"5994:11:38","nodeType":"VariableDeclaration","scope":15264,"src":"5986:19:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15184,"name":"uint256","nodeType":"ElementaryTypeName","src":"5986:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5871:140:38"},"scope":15265,"src":"5741:866:38","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":15266,"src":"722:5887:38","usedErrors":[14908,14915,14918,32725,32730,32735],"usedEvents":[]}],"src":"39:6571:38"},"id":38},"@ensuro/core/contracts/underwriters/FullTrustedUW.sol":{"ast":{"absolutePath":"@ensuro/core/contracts/underwriters/FullTrustedUW.sol","exportedSymbols":{"FullTrustedUW":[15439],"IUnderwriter":[14830],"Policy":[8314]},"id":15440,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":15267,"literals":["solidity","^","0.8",".28"],"nodeType":"PragmaDirective","src":"39:24:39"},{"absolutePath":"@ensuro/core/contracts/Policy.sol","file":"../Policy.sol","id":15269,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15440,"sourceUnit":8315,"src":"64:37:39","symbolAliases":[{"foreign":{"id":15268,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"72:6:39","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IUnderwriter.sol","file":"../interfaces/IUnderwriter.sol","id":15271,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15440,"sourceUnit":14831,"src":"102:60:39","symbolAliases":[{"foreign":{"id":15270,"name":"IUnderwriter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14830,"src":"110:12:39","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":15273,"name":"IUnderwriter","nameLocations":["408:12:39"],"nodeType":"IdentifierPath","referencedDeclaration":14830,"src":"408:12:39"},"id":15274,"nodeType":"InheritanceSpecifier","src":"408:12:39"}],"canonicalName":"FullTrustedUW","contractDependencies":[],"contractKind":"contract","documentation":{"id":15272,"nodeType":"StructuredDocumentation","src":"164:217:39","text":" @title FullTrustedUW\n @notice Underwriter that just decodes what it receives. The access validations should be done on risk module methods.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":15439,"linearizedBaseContracts":[15439,14830],"name":"FullTrustedUW","nameLocation":"391:13:39","nodeType":"ContractDefinition","nodes":[{"global":false,"id":15278,"libraryName":{"id":15275,"name":"Policy","nameLocations":["431:6:39"],"nodeType":"IdentifierPath","referencedDeclaration":8314,"src":"431:6:39"},"nodeType":"UsingForDirective","src":"425:35:39","typeName":{"id":15277,"nodeType":"UserDefinedTypeName","pathNode":{"id":15276,"name":"Policy.PolicyData","nameLocations":["442:6:39","449:10:39"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"442:17:39"},"referencedDeclaration":7744,"src":"442:17:39","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}}},{"baseFunctions":[14788],"body":{"id":15318,"nodeType":"Block","src":"785:99:39","statements":[{"expression":{"arguments":[{"id":15302,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15283,"src":"809:9:39","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"components":[{"id":15304,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"821:7:39","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15303,"name":"uint256","nodeType":"ElementaryTypeName","src":"821:7:39","typeDescriptions":{}}},{"id":15306,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"830:7:39","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15305,"name":"uint256","nodeType":"ElementaryTypeName","src":"830:7:39","typeDescriptions":{}}},{"id":15308,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"839:7:39","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15307,"name":"uint256","nodeType":"ElementaryTypeName","src":"839:7:39","typeDescriptions":{}}},{"id":15310,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"848:6:39","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":15309,"name":"uint40","nodeType":"ElementaryTypeName","src":"848:6:39","typeDescriptions":{}}},{"id":15312,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"856:6:39","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":15311,"name":"uint96","nodeType":"ElementaryTypeName","src":"856:6:39","typeDescriptions":{}}},{"expression":{"id":15313,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"864:6:39","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":15314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"871:6:39","memberName":"Params","nodeType":"MemberAccess","referencedDeclaration":7718,"src":"864:13:39","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Params_$7718_storage_ptr_$","typeString":"type(struct Policy.Params storage pointer)"}}],"id":15315,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"820:58:39","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint40_$_$_t_type$_t_uint96_$_$_t_type$_t_struct$_Params_$7718_storage_ptr_$_$","typeString":"tuple(type(uint256),type(uint256),type(uint256),type(uint40),type(uint96),type(struct Policy.Params storage pointer))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_tuple$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint40_$_$_t_type$_t_uint96_$_$_t_type$_t_struct$_Params_$7718_storage_ptr_$_$","typeString":"tuple(type(uint256),type(uint256),type(uint256),type(uint40),type(uint96),type(struct Policy.Params storage pointer))"}],"expression":{"id":15300,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"798:3:39","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15301,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"802:6:39","memberName":"decode","nodeType":"MemberAccess","src":"798:10:39","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":15316,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"798:81:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint96_$_t_struct$_Params_$7718_memory_ptr_$","typeString":"tuple(uint256,uint256,uint256,uint40,uint96,struct Policy.Params memory)"}},"functionReturnParameters":15299,"id":15317,"nodeType":"Return","src":"791:88:39"}]},"documentation":{"id":15279,"nodeType":"StructuredDocumentation","src":"464:28:39","text":"@inheritdoc IUnderwriter"},"functionSelector":"ba097a2a","id":15319,"implemented":true,"kind":"function","modifiers":[],"name":"priceNewPolicy","nameLocation":"504:14:39","nodeType":"FunctionDefinition","overrides":{"id":15285,"nodeType":"OverrideSpecifier","overrides":[],"src":"601:8:39"},"parameters":{"id":15284,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15281,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15319,"src":"524:7:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15280,"name":"address","nodeType":"ElementaryTypeName","src":"524:7:39","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15283,"mutability":"mutable","name":"inputData","nameLocation":"561:9:39","nodeType":"VariableDeclaration","scope":15319,"src":"546:24:39","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":15282,"name":"bytes","nodeType":"ElementaryTypeName","src":"546:5:39","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"518:56:39"},"returnParameters":{"id":15299,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15287,"mutability":"mutable","name":"payout","nameLocation":"638:6:39","nodeType":"VariableDeclaration","scope":15319,"src":"630:14:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15286,"name":"uint256","nodeType":"ElementaryTypeName","src":"630:7:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15289,"mutability":"mutable","name":"premium","nameLocation":"660:7:39","nodeType":"VariableDeclaration","scope":15319,"src":"652:15:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15288,"name":"uint256","nodeType":"ElementaryTypeName","src":"652:7:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15291,"mutability":"mutable","name":"lossProb","nameLocation":"683:8:39","nodeType":"VariableDeclaration","scope":15319,"src":"675:16:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15290,"name":"uint256","nodeType":"ElementaryTypeName","src":"675:7:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15293,"mutability":"mutable","name":"expiration","nameLocation":"706:10:39","nodeType":"VariableDeclaration","scope":15319,"src":"699:17:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":15292,"name":"uint40","nodeType":"ElementaryTypeName","src":"699:6:39","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":15295,"mutability":"mutable","name":"internalId","nameLocation":"731:10:39","nodeType":"VariableDeclaration","scope":15319,"src":"724:17:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":15294,"name":"uint96","nodeType":"ElementaryTypeName","src":"724:6:39","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":15298,"mutability":"mutable","name":"params","nameLocation":"770:6:39","nodeType":"VariableDeclaration","scope":15319,"src":"749:27:39","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":15297,"nodeType":"UserDefinedTypeName","pathNode":{"id":15296,"name":"Policy.Params","nameLocations":["749:6:39","756:6:39"],"nodeType":"IdentifierPath","referencedDeclaration":7718,"src":"749:13:39"},"referencedDeclaration":7718,"src":"749:13:39","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"src":"622:160:39"},"scope":15439,"src":"495:389:39","stateMutability":"pure","virtual":false,"visibility":"external"},{"baseFunctions":[14812],"body":{"id":15364,"nodeType":"Block","src":"1259:118:39","statements":[{"expression":{"arguments":[{"id":15346,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15324,"src":"1283:9:39","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"components":[{"expression":{"id":15347,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"1295:6:39","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":15348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1302:10:39","memberName":"PolicyData","nodeType":"MemberAccess","referencedDeclaration":7744,"src":"1295:17:39","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_PolicyData_$7744_storage_ptr_$","typeString":"type(struct Policy.PolicyData storage pointer)"}},{"id":15350,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1314:7:39","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15349,"name":"uint256","nodeType":"ElementaryTypeName","src":"1314:7:39","typeDescriptions":{}}},{"id":15352,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1323:7:39","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15351,"name":"uint256","nodeType":"ElementaryTypeName","src":"1323:7:39","typeDescriptions":{}}},{"id":15354,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1332:7:39","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15353,"name":"uint256","nodeType":"ElementaryTypeName","src":"1332:7:39","typeDescriptions":{}}},{"id":15356,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1341:6:39","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":15355,"name":"uint40","nodeType":"ElementaryTypeName","src":"1341:6:39","typeDescriptions":{}}},{"id":15358,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1349:6:39","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":15357,"name":"uint96","nodeType":"ElementaryTypeName","src":"1349:6:39","typeDescriptions":{}}},{"expression":{"id":15359,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"1357:6:39","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":15360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1364:6:39","memberName":"Params","nodeType":"MemberAccess","referencedDeclaration":7718,"src":"1357:13:39","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Params_$7718_storage_ptr_$","typeString":"type(struct Policy.Params storage pointer)"}}],"id":15361,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1294:77:39","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_struct$_PolicyData_$7744_storage_ptr_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint40_$_$_t_type$_t_uint96_$_$_t_type$_t_struct$_Params_$7718_storage_ptr_$_$","typeString":"tuple(type(struct Policy.PolicyData storage pointer),type(uint256),type(uint256),type(uint256),type(uint40),type(uint96),type(struct Policy.Params storage pointer))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_tuple$_t_type$_t_struct$_PolicyData_$7744_storage_ptr_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint40_$_$_t_type$_t_uint96_$_$_t_type$_t_struct$_Params_$7718_storage_ptr_$_$","typeString":"tuple(type(struct Policy.PolicyData storage pointer),type(uint256),type(uint256),type(uint256),type(uint40),type(uint96),type(struct Policy.Params storage pointer))"}],"expression":{"id":15344,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1272:3:39","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15345,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1276:6:39","memberName":"decode","nodeType":"MemberAccess","src":"1272:10:39","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":15362,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1272:100:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint40_$_t_uint96_$_t_struct$_Params_$7718_memory_ptr_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256,uint40,uint96,struct Policy.Params memory)"}},"functionReturnParameters":15343,"id":15363,"nodeType":"Return","src":"1265:107:39"}]},"documentation":{"id":15320,"nodeType":"StructuredDocumentation","src":"888:28:39","text":"@inheritdoc IUnderwriter"},"functionSelector":"9ba942d6","id":15365,"implemented":true,"kind":"function","modifiers":[],"name":"pricePolicyReplacement","nameLocation":"928:22:39","nodeType":"FunctionDefinition","overrides":{"id":15326,"nodeType":"OverrideSpecifier","overrides":[],"src":"1033:8:39"},"parameters":{"id":15325,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15322,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15365,"src":"956:7:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15321,"name":"address","nodeType":"ElementaryTypeName","src":"956:7:39","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15324,"mutability":"mutable","name":"inputData","nameLocation":"993:9:39","nodeType":"VariableDeclaration","scope":15365,"src":"978:24:39","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":15323,"name":"bytes","nodeType":"ElementaryTypeName","src":"978:5:39","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"950:56:39"},"returnParameters":{"id":15343,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15329,"mutability":"mutable","name":"oldPolicy","nameLocation":"1087:9:39","nodeType":"VariableDeclaration","scope":15365,"src":"1062:34:39","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":15328,"nodeType":"UserDefinedTypeName","pathNode":{"id":15327,"name":"Policy.PolicyData","nameLocations":["1062:6:39","1069:10:39"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"1062:17:39"},"referencedDeclaration":7744,"src":"1062:17:39","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":15331,"mutability":"mutable","name":"payout","nameLocation":"1112:6:39","nodeType":"VariableDeclaration","scope":15365,"src":"1104:14:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15330,"name":"uint256","nodeType":"ElementaryTypeName","src":"1104:7:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15333,"mutability":"mutable","name":"premium","nameLocation":"1134:7:39","nodeType":"VariableDeclaration","scope":15365,"src":"1126:15:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15332,"name":"uint256","nodeType":"ElementaryTypeName","src":"1126:7:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15335,"mutability":"mutable","name":"lossProb","nameLocation":"1157:8:39","nodeType":"VariableDeclaration","scope":15365,"src":"1149:16:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15334,"name":"uint256","nodeType":"ElementaryTypeName","src":"1149:7:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15337,"mutability":"mutable","name":"expiration","nameLocation":"1180:10:39","nodeType":"VariableDeclaration","scope":15365,"src":"1173:17:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":15336,"name":"uint40","nodeType":"ElementaryTypeName","src":"1173:6:39","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":15339,"mutability":"mutable","name":"internalId","nameLocation":"1205:10:39","nodeType":"VariableDeclaration","scope":15365,"src":"1198:17:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":15338,"name":"uint96","nodeType":"ElementaryTypeName","src":"1198:6:39","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":15342,"mutability":"mutable","name":"params","nameLocation":"1244:6:39","nodeType":"VariableDeclaration","scope":15365,"src":"1223:27:39","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_memory_ptr","typeString":"struct Policy.Params"},"typeName":{"id":15341,"nodeType":"UserDefinedTypeName","pathNode":{"id":15340,"name":"Policy.Params","nameLocations":["1223:6:39","1230:6:39"],"nodeType":"IdentifierPath","referencedDeclaration":7718,"src":"1223:13:39"},"referencedDeclaration":7718,"src":"1223:13:39","typeDescriptions":{"typeIdentifier":"t_struct$_Params_$7718_storage_ptr","typeString":"struct Policy.Params"}},"visibility":"internal"}],"src":"1054:202:39"},"scope":15439,"src":"919:458:39","stateMutability":"pure","virtual":false,"visibility":"external"},{"baseFunctions":[14829],"body":{"id":15437,"nodeType":"Block","src":"1691:392:39","statements":[{"expression":{"id":15401,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":15383,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15375,"src":"1698:14:39","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},{"id":15384,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15377,"src":"1714:17:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15385,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15379,"src":"1733:11:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15386,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15381,"src":"1746:11:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15387,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"1697:61:39","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":15390,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15370,"src":"1779:9:39","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"components":[{"expression":{"id":15391,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"1797:6:39","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Policy_$8314_$","typeString":"type(library Policy)"}},"id":15392,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1804:10:39","memberName":"PolicyData","nodeType":"MemberAccess","referencedDeclaration":7744,"src":"1797:17:39","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_PolicyData_$7744_storage_ptr_$","typeString":"type(struct Policy.PolicyData storage pointer)"}},{"id":15394,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1816:7:39","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15393,"name":"uint256","nodeType":"ElementaryTypeName","src":"1816:7:39","typeDescriptions":{}}},{"id":15396,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1825:7:39","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15395,"name":"uint256","nodeType":"ElementaryTypeName","src":"1825:7:39","typeDescriptions":{}}},{"id":15398,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1834:7:39","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15397,"name":"uint256","nodeType":"ElementaryTypeName","src":"1834:7:39","typeDescriptions":{}}}],"id":15399,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1796:46:39","typeDescriptions":{"typeIdentifier":"t_tuple$_t_type$_t_struct$_PolicyData_$7744_storage_ptr_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(struct Policy.PolicyData storage pointer),type(uint256),type(uint256),type(uint256))"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_tuple$_t_type$_t_struct$_PolicyData_$7744_storage_ptr_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$_t_type$_t_uint256_$_$","typeString":"tuple(type(struct Policy.PolicyData storage pointer),type(uint256),type(uint256),type(uint256))"}],"expression":{"id":15388,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1761:3:39","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15389,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1765:6:39","memberName":"decode","nodeType":"MemberAccess","src":"1761:10:39","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":15400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1761:87:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_PolicyData_$7744_memory_ptr_$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(struct Policy.PolicyData memory,uint256,uint256,uint256)"}},"src":"1697:151:39","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15402,"nodeType":"ExpressionStatement","src":"1697:151:39"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15403,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15379,"src":"1858:11:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":15406,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1878:7:39","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15405,"name":"uint256","nodeType":"ElementaryTypeName","src":"1878:7:39","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":15404,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1873:4:39","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":15407,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1873:13:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":15408,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1887:3:39","memberName":"max","nodeType":"MemberAccess","src":"1873:17:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1858:32:39","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15419,"nodeType":"IfStatement","src":"1854:109:39","trueBody":{"expression":{"id":15417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15410,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15379,"src":"1892:11:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15411,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15375,"src":"1906:14:39","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":15412,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1921:5:39","memberName":"jrCoc","nodeType":"MemberAccess","referencedDeclaration":7737,"src":"1906:20:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15413,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15375,"src":"1929:14:39","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":15414,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1944:17:39","memberName":"jrAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":8149,"src":"1929:32:39","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":15415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1929:34:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1906:57:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1892:71:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15418,"nodeType":"ExpressionStatement","src":"1892:71:39"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15420,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15381,"src":"1973:11:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":15423,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1993:7:39","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15422,"name":"uint256","nodeType":"ElementaryTypeName","src":"1993:7:39","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":15421,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1988:4:39","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":15424,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1988:13:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":15425,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2002:3:39","memberName":"max","nodeType":"MemberAccess","src":"1988:17:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1973:32:39","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15436,"nodeType":"IfStatement","src":"1969:109:39","trueBody":{"expression":{"id":15434,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15427,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15381,"src":"2007:11:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15428,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15375,"src":"2021:14:39","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":15429,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2036:5:39","memberName":"srCoc","nodeType":"MemberAccess","referencedDeclaration":7739,"src":"2021:20:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15430,"name":"policyToCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15375,"src":"2044:14:39","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"id":15431,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2059:17:39","memberName":"srAccruedInterest","nodeType":"MemberAccess","referencedDeclaration":8199,"src":"2044:32:39","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_PolicyData_$7744_memory_ptr_$returns$_t_uint256_$attached_to$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (struct Policy.PolicyData memory) view returns (uint256)"}},"id":15432,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2044:34:39","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2021:57:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2007:71:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15435,"nodeType":"ExpressionStatement","src":"2007:71:39"}}]},"documentation":{"id":15366,"nodeType":"StructuredDocumentation","src":"1381:28:39","text":"@inheritdoc IUnderwriter"},"functionSelector":"32f857fa","id":15438,"implemented":true,"kind":"function","modifiers":[],"name":"pricePolicyCancellation","nameLocation":"1421:23:39","nodeType":"FunctionDefinition","overrides":{"id":15372,"nodeType":"OverrideSpecifier","overrides":[],"src":"1527:8:39"},"parameters":{"id":15371,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15368,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15438,"src":"1450:7:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15367,"name":"address","nodeType":"ElementaryTypeName","src":"1450:7:39","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15370,"mutability":"mutable","name":"inputData","nameLocation":"1487:9:39","nodeType":"VariableDeclaration","scope":15438,"src":"1472:24:39","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":15369,"name":"bytes","nodeType":"ElementaryTypeName","src":"1472:5:39","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1444:56:39"},"returnParameters":{"id":15382,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15375,"mutability":"mutable","name":"policyToCancel","nameLocation":"1581:14:39","nodeType":"VariableDeclaration","scope":15438,"src":"1556:39:39","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":15374,"nodeType":"UserDefinedTypeName","pathNode":{"id":15373,"name":"Policy.PolicyData","nameLocations":["1556:6:39","1563:10:39"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"1556:17:39"},"referencedDeclaration":7744,"src":"1556:17:39","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"},{"constant":false,"id":15377,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"1611:17:39","nodeType":"VariableDeclaration","scope":15438,"src":"1603:25:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15376,"name":"uint256","nodeType":"ElementaryTypeName","src":"1603:7:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15379,"mutability":"mutable","name":"jrCocRefund","nameLocation":"1644:11:39","nodeType":"VariableDeclaration","scope":15438,"src":"1636:19:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15378,"name":"uint256","nodeType":"ElementaryTypeName","src":"1636:7:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15381,"mutability":"mutable","name":"srCocRefund","nameLocation":"1671:11:39","nodeType":"VariableDeclaration","scope":15438,"src":"1663:19:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15380,"name":"uint256","nodeType":"ElementaryTypeName","src":"1663:7:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1548:140:39"},"scope":15439,"src":"1412:671:39","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":15440,"src":"382:1703:39","usedErrors":[],"usedEvents":[]}],"src":"39:2047:39"},"id":39},"@ensuro/utils/contracts/TestCurrency.sol":{"ast":{"absolutePath":"@ensuro/utils/contracts/TestCurrency.sol","exportedSymbols":{"ERC20":[24115],"TestCurrency":[15509]},"id":15510,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":15441,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"38:23:40"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":15443,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15510,"sourceUnit":24116,"src":"63:68:40","symbolAliases":[{"foreign":{"id":15442,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24115,"src":"71:5:40","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":15444,"name":"ERC20","nameLocations":["158:5:40"],"nodeType":"IdentifierPath","referencedDeclaration":24115,"src":"158:5:40"},"id":15445,"nodeType":"InheritanceSpecifier","src":"158:5:40"}],"canonicalName":"TestCurrency","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":15509,"linearizedBaseContracts":[15509,24115,22548,24925,24193,26789],"name":"TestCurrency","nameLocation":"142:12:40","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":15447,"mutability":"immutable","name":"_decimals","nameLocation":"193:9:40","nodeType":"VariableDeclaration","scope":15509,"src":"168:34:40","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15446,"name":"uint8","nodeType":"ElementaryTypeName","src":"168:5:40","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"body":{"id":15472,"nodeType":"Block","src":"345:70:40","statements":[{"expression":{"id":15464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15462,"name":"_decimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15447,"src":"351:9:40","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":15463,"name":"decimals_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15455,"src":"363:9:40","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"351:21:40","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":15465,"nodeType":"ExpressionStatement","src":"351:21:40"},{"expression":{"arguments":[{"expression":{"id":15467,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"384:3:40","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"388:6:40","memberName":"sender","nodeType":"MemberAccess","src":"384:10:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15469,"name":"initialSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15453,"src":"396:13:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15466,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23955,"src":"378:5:40","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":15470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"378:32:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15471,"nodeType":"ExpressionStatement","src":"378:32:40"}]},"id":15473,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":15458,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15449,"src":"329:5:40","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":15459,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15451,"src":"336:7:40","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":15460,"kind":"baseConstructorSpecifier","modifierName":{"id":15457,"name":"ERC20","nameLocations":["323:5:40"],"nodeType":"IdentifierPath","referencedDeclaration":24115,"src":"323:5:40"},"nodeType":"ModifierInvocation","src":"323:21:40"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":15456,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15449,"mutability":"mutable","name":"name_","nameLocation":"238:5:40","nodeType":"VariableDeclaration","scope":15473,"src":"224:19:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15448,"name":"string","nodeType":"ElementaryTypeName","src":"224:6:40","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15451,"mutability":"mutable","name":"symbol_","nameLocation":"263:7:40","nodeType":"VariableDeclaration","scope":15473,"src":"249:21:40","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15450,"name":"string","nodeType":"ElementaryTypeName","src":"249:6:40","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15453,"mutability":"mutable","name":"initialSupply","nameLocation":"284:13:40","nodeType":"VariableDeclaration","scope":15473,"src":"276:21:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15452,"name":"uint256","nodeType":"ElementaryTypeName","src":"276:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15455,"mutability":"mutable","name":"decimals_","nameLocation":"309:9:40","nodeType":"VariableDeclaration","scope":15473,"src":"303:15:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15454,"name":"uint8","nodeType":"ElementaryTypeName","src":"303:5:40","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"218:104:40"},"returnParameters":{"id":15461,"nodeType":"ParameterList","parameters":[],"src":"345:0:40"},"scope":15509,"src":"207:208:40","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[23679],"body":{"id":15481,"nodeType":"Block","src":"484:27:40","statements":[{"expression":{"id":15479,"name":"_decimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15447,"src":"497:9:40","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":15478,"id":15480,"nodeType":"Return","src":"490:16:40"}]},"functionSelector":"313ce567","id":15482,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"428:8:40","nodeType":"FunctionDefinition","overrides":{"id":15475,"nodeType":"OverrideSpecifier","overrides":[],"src":"459:8:40"},"parameters":{"id":15474,"nodeType":"ParameterList","parameters":[],"src":"436:2:40"},"returnParameters":{"id":15478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15477,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15482,"src":"477:5:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15476,"name":"uint8","nodeType":"ElementaryTypeName","src":"477:5:40","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"476:7:40"},"scope":15509,"src":"419:92:40","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":15494,"nodeType":"Block","src":"579:42:40","statements":[{"expression":{"arguments":[{"id":15490,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15484,"src":"598:9:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15491,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15486,"src":"609:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15489,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23955,"src":"592:5:40","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":15492,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"592:24:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"functionReturnParameters":15488,"id":15493,"nodeType":"Return","src":"585:31:40"}]},"functionSelector":"40c10f19","id":15495,"implemented":true,"kind":"function","modifiers":[],"name":"mint","nameLocation":"524:4:40","nodeType":"FunctionDefinition","parameters":{"id":15487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15484,"mutability":"mutable","name":"recipient","nameLocation":"537:9:40","nodeType":"VariableDeclaration","scope":15495,"src":"529:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15483,"name":"address","nodeType":"ElementaryTypeName","src":"529:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15486,"mutability":"mutable","name":"amount","nameLocation":"556:6:40","nodeType":"VariableDeclaration","scope":15495,"src":"548:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15485,"name":"uint256","nodeType":"ElementaryTypeName","src":"548:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"528:35:40"},"returnParameters":{"id":15488,"nodeType":"ParameterList","parameters":[],"src":"579:0:40"},"scope":15509,"src":"515:106:40","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":15507,"nodeType":"Block","src":"689:42:40","statements":[{"expression":{"arguments":[{"id":15503,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15497,"src":"708:9:40","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15504,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15499,"src":"719:6:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15502,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23988,"src":"702:5:40","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":15505,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"702:24:40","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"functionReturnParameters":15501,"id":15506,"nodeType":"Return","src":"695:31:40"}]},"functionSelector":"9dc29fac","id":15508,"implemented":true,"kind":"function","modifiers":[],"name":"burn","nameLocation":"634:4:40","nodeType":"FunctionDefinition","parameters":{"id":15500,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15497,"mutability":"mutable","name":"recipient","nameLocation":"647:9:40","nodeType":"VariableDeclaration","scope":15508,"src":"639:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15496,"name":"address","nodeType":"ElementaryTypeName","src":"639:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15499,"mutability":"mutable","name":"amount","nameLocation":"666:6:40","nodeType":"VariableDeclaration","scope":15508,"src":"658:14:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15498,"name":"uint256","nodeType":"ElementaryTypeName","src":"658:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"638:35:40"},"returnParameters":{"id":15501,"nodeType":"ParameterList","parameters":[],"src":"689:0:40"},"scope":15509,"src":"625:106:40","stateMutability":"nonpayable","virtual":true,"visibility":"public"}],"scope":15510,"src":"133:600:40","usedErrors":[22518,22523,22528,22537,22542,22547],"usedEvents":[24127,24136]}],"src":"38:696:40"},"id":40},"@ensuro/utils/contracts/TestERC4626.sol":{"ast":{"absolutePath":"@ensuro/utils/contracts/TestERC4626.sol","exportedSymbols":{"ERC20":[24115],"ERC4626":[24899],"IERC20Metadata":[24925],"IMintable":[15532],"TestERC4626":[15843]},"id":15844,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":15511,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"38:23:41"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":15513,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15844,"sourceUnit":24116,"src":"63:68:41","symbolAliases":[{"foreign":{"id":15512,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24115,"src":"71:5:41","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol","id":15515,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15844,"sourceUnit":24900,"src":"132:83:41","symbolAliases":[{"foreign":{"id":15514,"name":"ERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24899,"src":"140:7:41","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":15517,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15844,"sourceUnit":24926,"src":"216:97:41","symbolAliases":[{"foreign":{"id":15516,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"224:14:41","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IMintable","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":15532,"linearizedBaseContracts":[15532],"name":"IMintable","nameLocation":"325:9:41","nodeType":"ContractDefinition","nodes":[{"functionSelector":"40c10f19","id":15524,"implemented":false,"kind":"function","modifiers":[],"name":"mint","nameLocation":"348:4:41","nodeType":"FunctionDefinition","parameters":{"id":15522,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15519,"mutability":"mutable","name":"recipient","nameLocation":"361:9:41","nodeType":"VariableDeclaration","scope":15524,"src":"353:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15518,"name":"address","nodeType":"ElementaryTypeName","src":"353:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15521,"mutability":"mutable","name":"amount","nameLocation":"380:6:41","nodeType":"VariableDeclaration","scope":15524,"src":"372:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15520,"name":"uint256","nodeType":"ElementaryTypeName","src":"372:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"352:35:41"},"returnParameters":{"id":15523,"nodeType":"ParameterList","parameters":[],"src":"396:0:41"},"scope":15532,"src":"339:58:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"9dc29fac","id":15531,"implemented":false,"kind":"function","modifiers":[],"name":"burn","nameLocation":"409:4:41","nodeType":"FunctionDefinition","parameters":{"id":15529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15526,"mutability":"mutable","name":"recipient","nameLocation":"422:9:41","nodeType":"VariableDeclaration","scope":15531,"src":"414:17:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15525,"name":"address","nodeType":"ElementaryTypeName","src":"414:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15528,"mutability":"mutable","name":"amount","nameLocation":"441:6:41","nodeType":"VariableDeclaration","scope":15531,"src":"433:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15527,"name":"uint256","nodeType":"ElementaryTypeName","src":"433:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"413:35:41"},"returnParameters":{"id":15530,"nodeType":"ParameterList","parameters":[],"src":"457:0:41"},"scope":15532,"src":"400:58:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":15844,"src":"315:145:41","usedErrors":[],"usedEvents":[]},{"abstract":false,"baseContracts":[{"baseName":{"id":15533,"name":"ERC4626","nameLocations":["486:7:41"],"nodeType":"IdentifierPath","referencedDeclaration":24899,"src":"486:7:41"},"id":15534,"nodeType":"InheritanceSpecifier","src":"486:7:41"}],"canonicalName":"TestERC4626","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":15843,"linearizedBaseContracts":[15843,24899,22463,24115,22548,24925,24193,26789],"name":"TestERC4626","nameLocation":"471:11:41","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":15536,"mutability":"mutable","name":"_broken","nameLocation":"512:7:41","nodeType":"VariableDeclaration","scope":15843,"src":"498:21:41","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15535,"name":"bool","nodeType":"ElementaryTypeName","src":"498:4:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"functionSelector":"39d88aff","id":15538,"mutability":"mutable","name":"overrideMaxDeposit","nameLocation":"539:18:41","nodeType":"VariableDeclaration","scope":15843,"src":"524:33:41","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15537,"name":"uint256","nodeType":"ElementaryTypeName","src":"524:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"034548cd","id":15540,"mutability":"mutable","name":"overrideMaxMint","nameLocation":"576:15:41","nodeType":"VariableDeclaration","scope":15843,"src":"561:30:41","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15539,"name":"uint256","nodeType":"ElementaryTypeName","src":"561:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"38359018","id":15542,"mutability":"mutable","name":"overrideMaxWithdraw","nameLocation":"610:19:41","nodeType":"VariableDeclaration","scope":15843,"src":"595:34:41","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15541,"name":"uint256","nodeType":"ElementaryTypeName","src":"595:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"cc7fcc60","id":15544,"mutability":"mutable","name":"overrideMaxRedeem","nameLocation":"648:17:41","nodeType":"VariableDeclaration","scope":15843,"src":"633:32:41","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15543,"name":"uint256","nodeType":"ElementaryTypeName","src":"633:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":true,"functionSelector":"f3c0b892","id":15553,"mutability":"constant","name":"OVERRIDE_UNSET","nameLocation":"694:14:41","nodeType":"VariableDeclaration","scope":15843,"src":"670:63:41","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15545,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15552,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":15548,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"716:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15547,"name":"uint256","nodeType":"ElementaryTypeName","src":"716:7:41","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":15546,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"711:4:41","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":15549,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"711:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":15550,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"725:3:41","memberName":"max","nodeType":"MemberAccess","src":"711:17:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3939","id":15551,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"731:2:41","typeDescriptions":{"typeIdentifier":"t_rational_99_by_1","typeString":"int_const 99"},"value":"99"},"src":"711:22:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"canonicalName":"TestERC4626.OverrideOption","id":15558,"members":[{"id":15554,"name":"deposit","nameLocation":"764:7:41","nodeType":"EnumValue","src":"764:7:41"},{"id":15555,"name":"mint","nameLocation":"777:4:41","nodeType":"EnumValue","src":"777:4:41"},{"id":15556,"name":"withdraw","nameLocation":"787:8:41","nodeType":"EnumValue","src":"787:8:41"},{"id":15557,"name":"redeem","nameLocation":"801:6:41","nodeType":"EnumValue","src":"801:6:41"}],"name":"OverrideOption","nameLocation":"743:14:41","nodeType":"EnumDefinition","src":"738:73:41"},{"errorSelector":"8185faa6","id":15562,"name":"VaultIsBroken","nameLocation":"821:13:41","nodeType":"ErrorDefinition","parameters":{"id":15561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15560,"mutability":"mutable","name":"selector","nameLocation":"842:8:41","nodeType":"VariableDeclaration","scope":15562,"src":"835:15:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":15559,"name":"bytes4","nodeType":"ElementaryTypeName","src":"835:6:41","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"834:17:41"},"src":"815:37:41"},{"body":{"id":15580,"nodeType":"Block","src":"876:73:41","statements":[{"expression":{"arguments":[{"id":15566,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"890:8:41","subExpression":{"id":15565,"name":"_broken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15536,"src":"891:7:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"arguments":[{"baseExpression":{"expression":{"id":15570,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"921:3:41","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15571,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"925:4:41","memberName":"data","nodeType":"MemberAccess","src":"921:8:41","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":15573,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"932:1:41","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":15574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"921:13:41","startExpression":{"hexValue":"30","id":15572,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"930:1:41","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":15569,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"914:6:41","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":15568,"name":"bytes4","nodeType":"ElementaryTypeName","src":"914:6:41","typeDescriptions":{}}},"id":15575,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"914:21:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":15567,"name":"VaultIsBroken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15562,"src":"900:13:41","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes4_$returns$_t_error_$","typeString":"function (bytes4) pure returns (error)"}},"id":15576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"900:36:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":15564,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"882:7:41","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":15577,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"882:55:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15578,"nodeType":"ExpressionStatement","src":"882:55:41"},{"id":15579,"nodeType":"PlaceholderStatement","src":"943:1:41"}]},"id":15581,"name":"isBroken","nameLocation":"865:8:41","nodeType":"ModifierDefinition","parameters":{"id":15563,"nodeType":"ParameterList","parameters":[],"src":"873:2:41"},"src":"856:93:41","virtual":false,"visibility":"internal"},{"body":{"id":15608,"nodeType":"Block","src":"1070:106:41","statements":[{"expression":{"id":15606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15598,"name":"overrideMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15544,"src":"1076:17:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":15605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15599,"name":"overrideMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15542,"src":"1096:19:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":15604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15600,"name":"overrideMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15540,"src":"1118:15:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":15603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15601,"name":"overrideMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15538,"src":"1136:18:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":15602,"name":"OVERRIDE_UNSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15553,"src":"1157:14:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1136:35:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1118:53:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1096:75:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1076:95:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15607,"nodeType":"ExpressionStatement","src":"1076:95:41"}]},"id":15609,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":15591,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15583,"src":"1038:5:41","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":15592,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15585,"src":"1045:7:41","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":15593,"kind":"baseConstructorSpecifier","modifierName":{"id":15590,"name":"ERC20","nameLocations":["1032:5:41"],"nodeType":"IdentifierPath","referencedDeclaration":24115,"src":"1032:5:41"},"nodeType":"ModifierInvocation","src":"1032:21:41"},{"arguments":[{"id":15595,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15588,"src":"1062:6:41","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}}],"id":15596,"kind":"baseConstructorSpecifier","modifierName":{"id":15594,"name":"ERC4626","nameLocations":["1054:7:41"],"nodeType":"IdentifierPath","referencedDeclaration":24899,"src":"1054:7:41"},"nodeType":"ModifierInvocation","src":"1054:15:41"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":15589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15583,"mutability":"mutable","name":"name_","nameLocation":"979:5:41","nodeType":"VariableDeclaration","scope":15609,"src":"965:19:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15582,"name":"string","nodeType":"ElementaryTypeName","src":"965:6:41","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15585,"mutability":"mutable","name":"symbol_","nameLocation":"1000:7:41","nodeType":"VariableDeclaration","scope":15609,"src":"986:21:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15584,"name":"string","nodeType":"ElementaryTypeName","src":"986:6:41","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":15588,"mutability":"mutable","name":"asset_","nameLocation":"1024:6:41","nodeType":"VariableDeclaration","scope":15609,"src":"1009:21:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"},"typeName":{"id":15587,"nodeType":"UserDefinedTypeName","pathNode":{"id":15586,"name":"IERC20Metadata","nameLocations":["1009:14:41"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"1009:14:41"},"referencedDeclaration":24925,"src":"1009:14:41","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"964:67:41"},"returnParameters":{"id":15597,"nodeType":"ParameterList","parameters":[],"src":"1070:0:41"},"scope":15843,"src":"953:223:41","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[24840],"body":{"id":15632,"nodeType":"Block","src":"1319:59:41","statements":[{"expression":{"arguments":[{"id":15626,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15611,"src":"1340:6:41","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15627,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15613,"src":"1348:8:41","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15628,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15615,"src":"1358:6:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15629,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15617,"src":"1366:6:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15623,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1325:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$15843_$","typeString":"type(contract super TestERC4626)"}},"id":15625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1331:8:41","memberName":"_deposit","nodeType":"MemberAccess","referencedDeclaration":24840,"src":"1325:14:41","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":15630,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1325:48:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15631,"nodeType":"ExpressionStatement","src":"1325:48:41"}]},"id":15633,"implemented":true,"kind":"function","modifiers":[{"id":15621,"kind":"modifierInvocation","modifierName":{"id":15620,"name":"isBroken","nameLocations":["1310:8:41"],"nodeType":"IdentifierPath","referencedDeclaration":15581,"src":"1310:8:41"},"nodeType":"ModifierInvocation","src":"1310:8:41"}],"name":"_deposit","nameLocation":"1189:8:41","nodeType":"FunctionDefinition","overrides":{"id":15619,"nodeType":"OverrideSpecifier","overrides":[],"src":"1301:8:41"},"parameters":{"id":15618,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15611,"mutability":"mutable","name":"caller","nameLocation":"1211:6:41","nodeType":"VariableDeclaration","scope":15633,"src":"1203:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15610,"name":"address","nodeType":"ElementaryTypeName","src":"1203:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15613,"mutability":"mutable","name":"receiver","nameLocation":"1231:8:41","nodeType":"VariableDeclaration","scope":15633,"src":"1223:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15612,"name":"address","nodeType":"ElementaryTypeName","src":"1223:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15615,"mutability":"mutable","name":"assets","nameLocation":"1253:6:41","nodeType":"VariableDeclaration","scope":15633,"src":"1245:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15614,"name":"uint256","nodeType":"ElementaryTypeName","src":"1245:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15617,"mutability":"mutable","name":"shares","nameLocation":"1273:6:41","nodeType":"VariableDeclaration","scope":15633,"src":"1265:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15616,"name":"uint256","nodeType":"ElementaryTypeName","src":"1265:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1197:86:41"},"returnParameters":{"id":15622,"nodeType":"ParameterList","parameters":[],"src":"1319:0:41"},"scope":15843,"src":"1180:198:41","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[24890],"body":{"id":15659,"nodeType":"Block","src":"1541:67:41","statements":[{"expression":{"arguments":[{"id":15652,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15635,"src":"1563:6:41","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15653,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15637,"src":"1571:8:41","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15654,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15639,"src":"1581:5:41","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":15655,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15641,"src":"1588:6:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":15656,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15643,"src":"1596:6:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15649,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1547:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$15843_$","typeString":"type(contract super TestERC4626)"}},"id":15651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1553:9:41","memberName":"_withdraw","nodeType":"MemberAccess","referencedDeclaration":24890,"src":"1547:15:41","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":15657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1547:56:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15658,"nodeType":"ExpressionStatement","src":"1547:56:41"}]},"id":15660,"implemented":true,"kind":"function","modifiers":[{"id":15647,"kind":"modifierInvocation","modifierName":{"id":15646,"name":"isBroken","nameLocations":["1532:8:41"],"nodeType":"IdentifierPath","referencedDeclaration":15581,"src":"1532:8:41"},"nodeType":"ModifierInvocation","src":"1532:8:41"}],"name":"_withdraw","nameLocation":"1391:9:41","nodeType":"FunctionDefinition","overrides":{"id":15645,"nodeType":"OverrideSpecifier","overrides":[],"src":"1523:8:41"},"parameters":{"id":15644,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15635,"mutability":"mutable","name":"caller","nameLocation":"1414:6:41","nodeType":"VariableDeclaration","scope":15660,"src":"1406:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15634,"name":"address","nodeType":"ElementaryTypeName","src":"1406:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15637,"mutability":"mutable","name":"receiver","nameLocation":"1434:8:41","nodeType":"VariableDeclaration","scope":15660,"src":"1426:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15636,"name":"address","nodeType":"ElementaryTypeName","src":"1426:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15639,"mutability":"mutable","name":"owner","nameLocation":"1456:5:41","nodeType":"VariableDeclaration","scope":15660,"src":"1448:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15638,"name":"address","nodeType":"ElementaryTypeName","src":"1448:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15641,"mutability":"mutable","name":"assets","nameLocation":"1475:6:41","nodeType":"VariableDeclaration","scope":15660,"src":"1467:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15640,"name":"uint256","nodeType":"ElementaryTypeName","src":"1467:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15643,"mutability":"mutable","name":"shares","nameLocation":"1495:6:41","nodeType":"VariableDeclaration","scope":15660,"src":"1487:14:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15642,"name":"uint256","nodeType":"ElementaryTypeName","src":"1487:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1400:105:41"},"returnParameters":{"id":15648,"nodeType":"ParameterList","parameters":[],"src":"1541:0:41"},"scope":15843,"src":"1382:226:41","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":15702,"nodeType":"Block","src":"1778:173:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":15667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15665,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15662,"src":"1788:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":15666,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1797:1:41","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1788:10:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":15700,"nodeType":"Block","src":"1876:71:41","statements":[{"expression":{"arguments":[{"arguments":[{"id":15691,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1916:4:41","typeDescriptions":{"typeIdentifier":"t_contract$_TestERC4626_$15843","typeString":"contract TestERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TestERC4626_$15843","typeString":"contract TestERC4626"}],"id":15690,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1908:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15689,"name":"address","nodeType":"ElementaryTypeName","src":"1908:7:41","typeDescriptions":{}}},"id":15692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1908:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":15696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"1931:7:41","subExpression":{"id":15695,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15662,"src":"1932:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":15694,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1923:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15693,"name":"uint256","nodeType":"ElementaryTypeName","src":"1923:7:41","typeDescriptions":{}}},"id":15697,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1923:16:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":15685,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24390,"src":"1894:5:41","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":15686,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1894:7:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":15684,"name":"IMintable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15532,"src":"1884:9:41","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IMintable_$15532_$","typeString":"type(contract IMintable)"}},"id":15687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1884:18:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IMintable_$15532","typeString":"contract IMintable"}},"id":15688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1903:4:41","memberName":"burn","nodeType":"MemberAccess","referencedDeclaration":15531,"src":"1884:23:41","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256) external"}},"id":15698,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1884:56:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15699,"nodeType":"ExpressionStatement","src":"1884:56:41"}]},"id":15701,"nodeType":"IfStatement","src":"1784:163:41","trueBody":{"id":15683,"nodeType":"Block","src":"1800:70:41","statements":[{"expression":{"arguments":[{"arguments":[{"id":15675,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1840:4:41","typeDescriptions":{"typeIdentifier":"t_contract$_TestERC4626_$15843","typeString":"contract TestERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_TestERC4626_$15843","typeString":"contract TestERC4626"}],"id":15674,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1832:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15673,"name":"address","nodeType":"ElementaryTypeName","src":"1832:7:41","typeDescriptions":{}}},"id":15676,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1832:13:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":15679,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15662,"src":"1855:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":15678,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1847:7:41","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15677,"name":"uint256","nodeType":"ElementaryTypeName","src":"1847:7:41","typeDescriptions":{}}},"id":15680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1847:15:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":15669,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24390,"src":"1818:5:41","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":15670,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1818:7:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":15668,"name":"IMintable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15532,"src":"1808:9:41","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IMintable_$15532_$","typeString":"type(contract IMintable)"}},"id":15671,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1808:18:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IMintable_$15532","typeString":"contract IMintable"}},"id":15672,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1827:4:41","memberName":"mint","nodeType":"MemberAccess","referencedDeclaration":15524,"src":"1808:23:41","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256) external"}},"id":15681,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1808:55:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15682,"nodeType":"ExpressionStatement","src":"1808:55:41"}]}}]},"functionSelector":"c7361ed2","id":15703,"implemented":true,"kind":"function","modifiers":[],"name":"discreteEarning","nameLocation":"1738:15:41","nodeType":"FunctionDefinition","parameters":{"id":15663,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15662,"mutability":"mutable","name":"assets","nameLocation":"1761:6:41","nodeType":"VariableDeclaration","scope":15703,"src":"1754:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":15661,"name":"int256","nodeType":"ElementaryTypeName","src":"1754:6:41","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1753:15:41"},"returnParameters":{"id":15664,"nodeType":"ParameterList","parameters":[],"src":"1778:0:41"},"scope":15843,"src":"1729:222:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":15712,"nodeType":"Block","src":"1997:28:41","statements":[{"expression":{"id":15710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15708,"name":"_broken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15536,"src":"2003:7:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":15709,"name":"broken_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15705,"src":"2013:7:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2003:17:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15711,"nodeType":"ExpressionStatement","src":"2003:17:41"}]},"functionSelector":"86de9e4f","id":15713,"implemented":true,"kind":"function","modifiers":[],"name":"setBroken","nameLocation":"1964:9:41","nodeType":"FunctionDefinition","parameters":{"id":15706,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15705,"mutability":"mutable","name":"broken_","nameLocation":"1979:7:41","nodeType":"VariableDeclaration","scope":15713,"src":"1974:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15704,"name":"bool","nodeType":"ElementaryTypeName","src":"1974:4:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1973:14:41"},"returnParameters":{"id":15707,"nodeType":"ParameterList","parameters":[],"src":"1997:0:41"},"scope":15843,"src":"1955:70:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":15720,"nodeType":"Block","src":"2076:25:41","statements":[{"expression":{"id":15718,"name":"_broken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15536,"src":"2089:7:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":15717,"id":15719,"nodeType":"Return","src":"2082:14:41"}]},"functionSelector":"7fb1ad62","id":15721,"implemented":true,"kind":"function","modifiers":[],"name":"broken","nameLocation":"2038:6:41","nodeType":"FunctionDefinition","parameters":{"id":15714,"nodeType":"ParameterList","parameters":[],"src":"2044:2:41"},"returnParameters":{"id":15717,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15716,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15721,"src":"2070:4:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15715,"name":"bool","nodeType":"ElementaryTypeName","src":"2070:4:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2069:6:41"},"scope":15843,"src":"2029:72:41","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[24455],"body":{"id":15739,"nodeType":"Block","src":"2179:101:41","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15729,"name":"overrideMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15538,"src":"2192:18:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":15730,"name":"OVERRIDE_UNSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15553,"src":"2214:14:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2192:36:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":15736,"name":"overrideMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15538,"src":"2257:18:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2192:83:41","trueExpression":{"arguments":[{"id":15734,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15723,"src":"2248:5:41","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":15732,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2231:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$15843_$","typeString":"type(contract super TestERC4626)"}},"id":15733,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2237:10:41","memberName":"maxDeposit","nodeType":"MemberAccess","referencedDeclaration":24455,"src":"2231:16:41","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":15735,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2231:23:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15728,"id":15738,"nodeType":"Return","src":"2185:90:41"}]},"functionSelector":"402d267d","id":15740,"implemented":true,"kind":"function","modifiers":[],"name":"maxDeposit","nameLocation":"2114:10:41","nodeType":"FunctionDefinition","overrides":{"id":15725,"nodeType":"OverrideSpecifier","overrides":[],"src":"2152:8:41"},"parameters":{"id":15724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15723,"mutability":"mutable","name":"owner","nameLocation":"2133:5:41","nodeType":"VariableDeclaration","scope":15740,"src":"2125:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15722,"name":"address","nodeType":"ElementaryTypeName","src":"2125:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2124:15:41"},"returnParameters":{"id":15728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15727,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15740,"src":"2170:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15726,"name":"uint256","nodeType":"ElementaryTypeName","src":"2170:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2169:9:41"},"scope":15843,"src":"2105:175:41","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[24470],"body":{"id":15758,"nodeType":"Block","src":"2355:92:41","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15750,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15748,"name":"overrideMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15540,"src":"2368:15:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":15749,"name":"OVERRIDE_UNSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15553,"src":"2387:14:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2368:33:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":15755,"name":"overrideMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15540,"src":"2427:15:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2368:74:41","trueExpression":{"arguments":[{"id":15753,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15742,"src":"2418:5:41","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":15751,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2404:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$15843_$","typeString":"type(contract super TestERC4626)"}},"id":15752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2410:7:41","memberName":"maxMint","nodeType":"MemberAccess","referencedDeclaration":24470,"src":"2404:13:41","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":15754,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2404:20:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15747,"id":15757,"nodeType":"Return","src":"2361:81:41"}]},"functionSelector":"c63d75b6","id":15759,"implemented":true,"kind":"function","modifiers":[],"name":"maxMint","nameLocation":"2293:7:41","nodeType":"FunctionDefinition","overrides":{"id":15744,"nodeType":"OverrideSpecifier","overrides":[],"src":"2328:8:41"},"parameters":{"id":15743,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15742,"mutability":"mutable","name":"owner","nameLocation":"2309:5:41","nodeType":"VariableDeclaration","scope":15759,"src":"2301:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15741,"name":"address","nodeType":"ElementaryTypeName","src":"2301:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2300:15:41"},"returnParameters":{"id":15747,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15746,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15759,"src":"2346:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15745,"name":"uint256","nodeType":"ElementaryTypeName","src":"2346:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2345:9:41"},"scope":15843,"src":"2284:163:41","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[24485],"body":{"id":15777,"nodeType":"Block","src":"2526:104:41","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15767,"name":"overrideMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15542,"src":"2539:19:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":15768,"name":"OVERRIDE_UNSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15553,"src":"2562:14:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2539:37:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":15774,"name":"overrideMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15542,"src":"2606:19:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2539:86:41","trueExpression":{"arguments":[{"id":15772,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15761,"src":"2597:5:41","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":15770,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2579:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$15843_$","typeString":"type(contract super TestERC4626)"}},"id":15771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2585:11:41","memberName":"maxWithdraw","nodeType":"MemberAccess","referencedDeclaration":24485,"src":"2579:17:41","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":15773,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2579:24:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15766,"id":15776,"nodeType":"Return","src":"2532:93:41"}]},"functionSelector":"ce96cb77","id":15778,"implemented":true,"kind":"function","modifiers":[],"name":"maxWithdraw","nameLocation":"2460:11:41","nodeType":"FunctionDefinition","overrides":{"id":15763,"nodeType":"OverrideSpecifier","overrides":[],"src":"2499:8:41"},"parameters":{"id":15762,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15761,"mutability":"mutable","name":"owner","nameLocation":"2480:5:41","nodeType":"VariableDeclaration","scope":15778,"src":"2472:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15760,"name":"address","nodeType":"ElementaryTypeName","src":"2472:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2471:15:41"},"returnParameters":{"id":15766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15765,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15778,"src":"2517:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15764,"name":"uint256","nodeType":"ElementaryTypeName","src":"2517:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2516:9:41"},"scope":15843,"src":"2451:179:41","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[24498],"body":{"id":15796,"nodeType":"Block","src":"2707:98:41","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15786,"name":"overrideMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15544,"src":"2720:17:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":15787,"name":"OVERRIDE_UNSET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15553,"src":"2741:14:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2720:35:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":15793,"name":"overrideMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15544,"src":"2783:17:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2720:80:41","trueExpression":{"arguments":[{"id":15791,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15780,"src":"2774:5:41","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":15789,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2758:5:41","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_TestERC4626_$15843_$","typeString":"type(contract super TestERC4626)"}},"id":15790,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2764:9:41","memberName":"maxRedeem","nodeType":"MemberAccess","referencedDeclaration":24498,"src":"2758:15:41","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":15792,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2758:22:41","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":15785,"id":15795,"nodeType":"Return","src":"2713:87:41"}]},"functionSelector":"d905777e","id":15797,"implemented":true,"kind":"function","modifiers":[],"name":"maxRedeem","nameLocation":"2643:9:41","nodeType":"FunctionDefinition","overrides":{"id":15782,"nodeType":"OverrideSpecifier","overrides":[],"src":"2680:8:41"},"parameters":{"id":15781,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15780,"mutability":"mutable","name":"owner","nameLocation":"2661:5:41","nodeType":"VariableDeclaration","scope":15797,"src":"2653:13:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15779,"name":"address","nodeType":"ElementaryTypeName","src":"2653:7:41","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2652:15:41"},"returnParameters":{"id":15785,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15784,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15797,"src":"2698:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15783,"name":"uint256","nodeType":"ElementaryTypeName","src":"2698:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2697:9:41"},"scope":15843,"src":"2634:171:41","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":15841,"nodeType":"Block","src":"2880:291:41","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_OverrideOption_$15558","typeString":"enum TestERC4626.OverrideOption"},"id":15808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15805,"name":"option","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15800,"src":"2890:6:41","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$15558","typeString":"enum TestERC4626.OverrideOption"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":15806,"name":"OverrideOption","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15558,"src":"2900:14:41","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OverrideOption_$15558_$","typeString":"type(enum TestERC4626.OverrideOption)"}},"id":15807,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2915:7:41","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":15554,"src":"2900:22:41","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$15558","typeString":"enum TestERC4626.OverrideOption"}},"src":"2890:32:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15813,"nodeType":"IfStatement","src":"2886:67:41","trueBody":{"expression":{"id":15811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15809,"name":"overrideMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15538,"src":"2924:18:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":15810,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15802,"src":"2945:8:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2924:29:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15812,"nodeType":"ExpressionStatement","src":"2924:29:41"}},{"condition":{"commonType":{"typeIdentifier":"t_enum$_OverrideOption_$15558","typeString":"enum TestERC4626.OverrideOption"},"id":15817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15814,"name":"option","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15800,"src":"2963:6:41","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$15558","typeString":"enum TestERC4626.OverrideOption"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":15815,"name":"OverrideOption","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15558,"src":"2973:14:41","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OverrideOption_$15558_$","typeString":"type(enum TestERC4626.OverrideOption)"}},"id":15816,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2988:4:41","memberName":"mint","nodeType":"MemberAccess","referencedDeclaration":15555,"src":"2973:19:41","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$15558","typeString":"enum TestERC4626.OverrideOption"}},"src":"2963:29:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15822,"nodeType":"IfStatement","src":"2959:61:41","trueBody":{"expression":{"id":15820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15818,"name":"overrideMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15540,"src":"2994:15:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":15819,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15802,"src":"3012:8:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2994:26:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15821,"nodeType":"ExpressionStatement","src":"2994:26:41"}},{"condition":{"commonType":{"typeIdentifier":"t_enum$_OverrideOption_$15558","typeString":"enum TestERC4626.OverrideOption"},"id":15826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15823,"name":"option","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15800,"src":"3030:6:41","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$15558","typeString":"enum TestERC4626.OverrideOption"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":15824,"name":"OverrideOption","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15558,"src":"3040:14:41","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OverrideOption_$15558_$","typeString":"type(enum TestERC4626.OverrideOption)"}},"id":15825,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3055:8:41","memberName":"withdraw","nodeType":"MemberAccess","referencedDeclaration":15556,"src":"3040:23:41","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$15558","typeString":"enum TestERC4626.OverrideOption"}},"src":"3030:33:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15831,"nodeType":"IfStatement","src":"3026:69:41","trueBody":{"expression":{"id":15829,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15827,"name":"overrideMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15542,"src":"3065:19:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":15828,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15802,"src":"3087:8:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3065:30:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15830,"nodeType":"ExpressionStatement","src":"3065:30:41"}},{"condition":{"commonType":{"typeIdentifier":"t_enum$_OverrideOption_$15558","typeString":"enum TestERC4626.OverrideOption"},"id":15835,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15832,"name":"option","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15800,"src":"3105:6:41","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$15558","typeString":"enum TestERC4626.OverrideOption"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":15833,"name":"OverrideOption","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15558,"src":"3115:14:41","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_OverrideOption_$15558_$","typeString":"type(enum TestERC4626.OverrideOption)"}},"id":15834,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3130:6:41","memberName":"redeem","nodeType":"MemberAccess","referencedDeclaration":15557,"src":"3115:21:41","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$15558","typeString":"enum TestERC4626.OverrideOption"}},"src":"3105:31:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15840,"nodeType":"IfStatement","src":"3101:65:41","trueBody":{"expression":{"id":15838,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15836,"name":"overrideMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15544,"src":"3138:17:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":15837,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15802,"src":"3158:8:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3138:28:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15839,"nodeType":"ExpressionStatement","src":"3138:28:41"}}]},"functionSelector":"d6dd0234","id":15842,"implemented":true,"kind":"function","modifiers":[],"name":"setOverride","nameLocation":"2818:11:41","nodeType":"FunctionDefinition","parameters":{"id":15803,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15800,"mutability":"mutable","name":"option","nameLocation":"2845:6:41","nodeType":"VariableDeclaration","scope":15842,"src":"2830:21:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$15558","typeString":"enum TestERC4626.OverrideOption"},"typeName":{"id":15799,"nodeType":"UserDefinedTypeName","pathNode":{"id":15798,"name":"OverrideOption","nameLocations":["2830:14:41"],"nodeType":"IdentifierPath","referencedDeclaration":15558,"src":"2830:14:41"},"referencedDeclaration":15558,"src":"2830:14:41","typeDescriptions":{"typeIdentifier":"t_enum$_OverrideOption_$15558","typeString":"enum TestERC4626.OverrideOption"}},"visibility":"internal"},{"constant":false,"id":15802,"mutability":"mutable","name":"newValue","nameLocation":"2861:8:41","nodeType":"VariableDeclaration","scope":15842,"src":"2853:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15801,"name":"uint256","nodeType":"ElementaryTypeName","src":"2853:7:41","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2829:41:41"},"returnParameters":{"id":15804,"nodeType":"ParameterList","parameters":[],"src":"2880:0:41"},"scope":15843,"src":"2809:362:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":15844,"src":"462:2711:41","usedErrors":[15562,22518,22523,22528,22537,22542,22547,24231,24240,24249,24258,24973],"usedEvents":[22314,22326,24127,24136]}],"src":"38:3136:41"},"id":41},"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[18672],"ERC2771ContextUpgradeable":[15992],"Initializable":[23434]},"id":15993,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":15845,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:42"},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"../utils/ContextUpgradeable.sol","id":15847,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15993,"sourceUnit":18673,"src":"135:67:42","symbolAliases":[{"foreign":{"id":15846,"name":"ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18672,"src":"143:18:42","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":15849,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15993,"sourceUnit":23435,"src":"203:84:42","symbolAliases":[{"foreign":{"id":15848,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23434,"src":"211:13:42","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":15851,"name":"Initializable","nameLocations":["1123:13:42"],"nodeType":"IdentifierPath","referencedDeclaration":23434,"src":"1123:13:42"},"id":15852,"nodeType":"InheritanceSpecifier","src":"1123:13:42"},{"baseName":{"id":15853,"name":"ContextUpgradeable","nameLocations":["1138:18:42"],"nodeType":"IdentifierPath","referencedDeclaration":18672,"src":"1138:18:42"},"id":15854,"nodeType":"InheritanceSpecifier","src":"1138:18:42"}],"canonicalName":"ERC2771ContextUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":15850,"nodeType":"StructuredDocumentation","src":"289:786:42","text":" @dev Context variant with ERC-2771 support.\n WARNING: Avoid using this pattern in contracts that rely on 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":15992,"linearizedBaseContracts":[15992,18672,23434],"name":"ERC2771ContextUpgradeable","nameLocation":"1094:25:42","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":15855,"nodeType":"StructuredDocumentation","src":"1163:61:42","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":15857,"mutability":"immutable","name":"_trustedForwarder","nameLocation":"1255:17:42","nodeType":"VariableDeclaration","scope":15992,"src":"1229:43:42","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15856,"name":"address","nodeType":"ElementaryTypeName","src":"1229:7:42","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"body":{"id":15867,"nodeType":"Block","src":"1634:54:42","statements":[{"expression":{"id":15865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15863,"name":"_trustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15857,"src":"1644:17:42","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":15864,"name":"trustedForwarder_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15860,"src":"1664:17:42","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1644:37:42","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":15866,"nodeType":"ExpressionStatement","src":"1644:37:42"}]},"documentation":{"id":15858,"nodeType":"StructuredDocumentation","src":"1542:48:42","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":15868,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":15861,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15860,"mutability":"mutable","name":"trustedForwarder_","nameLocation":"1615:17:42","nodeType":"VariableDeclaration","scope":15868,"src":"1607:25:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15859,"name":"address","nodeType":"ElementaryTypeName","src":"1607:7:42","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1606:27:42"},"returnParameters":{"id":15862,"nodeType":"ParameterList","parameters":[],"src":"1634:0:42"},"scope":15992,"src":"1595:93:42","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":15876,"nodeType":"Block","src":"1834:41:42","statements":[{"expression":{"id":15874,"name":"_trustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15857,"src":"1851:17:42","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":15873,"id":15875,"nodeType":"Return","src":"1844:24:42"}]},"documentation":{"id":15869,"nodeType":"StructuredDocumentation","src":"1694:69:42","text":" @dev Returns the address of the trusted forwarder."},"functionSelector":"7da0a877","id":15877,"implemented":true,"kind":"function","modifiers":[],"name":"trustedForwarder","nameLocation":"1777:16:42","nodeType":"FunctionDefinition","parameters":{"id":15870,"nodeType":"ParameterList","parameters":[],"src":"1793:2:42"},"returnParameters":{"id":15873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15872,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15877,"src":"1825:7:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15871,"name":"address","nodeType":"ElementaryTypeName","src":"1825:7:42","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1824:9:42"},"scope":15992,"src":"1768:107:42","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":15890,"nodeType":"Block","src":"2058:55:42","statements":[{"expression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":15888,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15885,"name":"forwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15880,"src":"2075:9:42","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":15886,"name":"trustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15877,"src":"2088:16:42","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":15887,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2088:18:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2075:31:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":15884,"id":15889,"nodeType":"Return","src":"2068:38:42"}]},"documentation":{"id":15878,"nodeType":"StructuredDocumentation","src":"1881:90:42","text":" @dev Indicates whether any particular address is the trusted forwarder."},"functionSelector":"572b6c05","id":15891,"implemented":true,"kind":"function","modifiers":[],"name":"isTrustedForwarder","nameLocation":"1985:18:42","nodeType":"FunctionDefinition","parameters":{"id":15881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15880,"mutability":"mutable","name":"forwarder","nameLocation":"2012:9:42","nodeType":"VariableDeclaration","scope":15891,"src":"2004:17:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15879,"name":"address","nodeType":"ElementaryTypeName","src":"2004:7:42","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2003:19:42"},"returnParameters":{"id":15884,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15883,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15891,"src":"2052:4:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15882,"name":"bool","nodeType":"ElementaryTypeName","src":"2052:4:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2051:6:42"},"scope":15992,"src":"1976:137:42","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[18654],"body":{"id":15938,"nodeType":"Block","src":"2421:400:42","statements":[{"assignments":[15899],"declarations":[{"constant":false,"id":15899,"mutability":"mutable","name":"calldataLength","nameLocation":"2439:14:42","nodeType":"VariableDeclaration","scope":15938,"src":"2431:22:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15898,"name":"uint256","nodeType":"ElementaryTypeName","src":"2431:7:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15903,"initialValue":{"expression":{"expression":{"id":15900,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2456:3:42","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2460:4:42","memberName":"data","nodeType":"MemberAccess","src":"2456:8:42","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":15902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2465:6:42","memberName":"length","nodeType":"MemberAccess","src":"2456:15:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2431:40:42"},{"assignments":[15905],"declarations":[{"constant":false,"id":15905,"mutability":"mutable","name":"contextSuffixLength","nameLocation":"2489:19:42","nodeType":"VariableDeclaration","scope":15938,"src":"2481:27:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15904,"name":"uint256","nodeType":"ElementaryTypeName","src":"2481:7:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15908,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":15906,"name":"_contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[15991],"referencedDeclaration":15991,"src":"2511:20:42","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":15907,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2511:22:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2481:52:42"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15916,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15909,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15899,"src":"2547:14:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":15910,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15905,"src":"2565:19:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2547:37:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"arguments":[{"expression":{"id":15913,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2607:3:42","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2611:6:42","memberName":"sender","nodeType":"MemberAccess","src":"2607:10:42","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":15912,"name":"isTrustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15891,"src":"2588:18:42","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":15915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2588:30:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2547:71:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":15936,"nodeType":"Block","src":"2765:50:42","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15932,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2786:5:42","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC2771ContextUpgradeable_$15992_$","typeString":"type(contract super ERC2771ContextUpgradeable)"}},"id":15933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2792:10:42","memberName":"_msgSender","nodeType":"MemberAccess","referencedDeclaration":18654,"src":"2786:16:42","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":15934,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2786:18:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":15897,"id":15935,"nodeType":"Return","src":"2779:25:42"}]},"id":15937,"nodeType":"IfStatement","src":"2543:272:42","trueBody":{"id":15931,"nodeType":"Block","src":"2620:139:42","statements":[{"id":15930,"nodeType":"UncheckedBlock","src":"2634:115:42","statements":[{"expression":{"arguments":[{"arguments":[{"baseExpression":{"expression":{"id":15921,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2685:3:42","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15922,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2689:4:42","memberName":"data","nodeType":"MemberAccess","src":"2685:8:42","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":15926,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"2685:47:42","startExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15923,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15899,"src":"2694:14:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":15924,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15905,"src":"2711:19:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2694:36:42","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":15920,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2677:7:42","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":15919,"name":"bytes20","nodeType":"ElementaryTypeName","src":"2677:7:42","typeDescriptions":{}}},"id":15927,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2677:56:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"}],"id":15918,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2669:7:42","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15917,"name":"address","nodeType":"ElementaryTypeName","src":"2669:7:42","typeDescriptions":{}}},"id":15928,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2669:65:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":15897,"id":15929,"nodeType":"Return","src":"2662:72:42"}]}]}}]},"documentation":{"id":15892,"nodeType":"StructuredDocumentation","src":"2119:226:42","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":15939,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"2359:10:42","nodeType":"FunctionDefinition","overrides":{"id":15894,"nodeType":"OverrideSpecifier","overrides":[],"src":"2394:8:42"},"parameters":{"id":15893,"nodeType":"ParameterList","parameters":[],"src":"2369:2:42"},"returnParameters":{"id":15897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15896,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15939,"src":"2412:7:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15895,"name":"address","nodeType":"ElementaryTypeName","src":"2412:7:42","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2411:9:42"},"scope":15992,"src":"2350:471:42","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[18663],"body":{"id":15980,"nodeType":"Block","src":"3130:380:42","statements":[{"assignments":[15947],"declarations":[{"constant":false,"id":15947,"mutability":"mutable","name":"calldataLength","nameLocation":"3148:14:42","nodeType":"VariableDeclaration","scope":15980,"src":"3140:22:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15946,"name":"uint256","nodeType":"ElementaryTypeName","src":"3140:7:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15951,"initialValue":{"expression":{"expression":{"id":15948,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3165:3:42","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3169:4:42","memberName":"data","nodeType":"MemberAccess","src":"3165:8:42","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":15950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3174:6:42","memberName":"length","nodeType":"MemberAccess","src":"3165:15:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3140:40:42"},{"assignments":[15953],"declarations":[{"constant":false,"id":15953,"mutability":"mutable","name":"contextSuffixLength","nameLocation":"3198:19:42","nodeType":"VariableDeclaration","scope":15980,"src":"3190:27:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15952,"name":"uint256","nodeType":"ElementaryTypeName","src":"3190:7:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15956,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":15954,"name":"_contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[15991],"referencedDeclaration":15991,"src":"3220:20:42","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":15955,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3220:22:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3190:52:42"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15957,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15947,"src":"3256:14:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":15958,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15953,"src":"3274:19:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3256:37:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"arguments":[{"expression":{"id":15961,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3316:3:42","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15962,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3320:6:42","memberName":"sender","nodeType":"MemberAccess","src":"3316:10:42","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":15960,"name":"isTrustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15891,"src":"3297:18:42","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":15963,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3297:30:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3256:71:42","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":15978,"nodeType":"Block","src":"3456:48:42","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":15974,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"3477:5:42","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC2771ContextUpgradeable_$15992_$","typeString":"type(contract super ERC2771ContextUpgradeable)"}},"id":15975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3483:8:42","memberName":"_msgData","nodeType":"MemberAccess","referencedDeclaration":18663,"src":"3477:14:42","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":15976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3477:16:42","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":15945,"id":15977,"nodeType":"Return","src":"3470:23:42"}]},"id":15979,"nodeType":"IfStatement","src":"3252:252:42","trueBody":{"id":15973,"nodeType":"Block","src":"3329:121:42","statements":[{"id":15972,"nodeType":"UncheckedBlock","src":"3343:97:42","statements":[{"expression":{"baseExpression":{"expression":{"id":15965,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3378:3:42","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":15966,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3382:4:42","memberName":"data","nodeType":"MemberAccess","src":"3378:8:42","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15967,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15947,"src":"3388:14:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":15968,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15953,"src":"3405:19:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3388:36:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"3378:47:42","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},"functionReturnParameters":15945,"id":15971,"nodeType":"Return","src":"3371:54:42"}]}]}}]},"documentation":{"id":15940,"nodeType":"StructuredDocumentation","src":"2827:222:42","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":15981,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"3063:8:42","nodeType":"FunctionDefinition","overrides":{"id":15942,"nodeType":"OverrideSpecifier","overrides":[],"src":"3096:8:42"},"parameters":{"id":15941,"nodeType":"ParameterList","parameters":[],"src":"3071:2:42"},"returnParameters":{"id":15945,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15944,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15981,"src":"3114:14:42","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":15943,"name":"bytes","nodeType":"ElementaryTypeName","src":"3114:5:42","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3113:16:42"},"scope":15992,"src":"3054:456:42","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[18671],"body":{"id":15990,"nodeType":"Block","src":"3694:26:42","statements":[{"expression":{"hexValue":"3230","id":15988,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3711:2:42","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"functionReturnParameters":15987,"id":15989,"nodeType":"Return","src":"3704:9:42"}]},"documentation":{"id":15982,"nodeType":"StructuredDocumentation","src":"3516:92:42","text":" @dev ERC-2771 specifies the context as being a single address (20 bytes)."},"id":15991,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"3622:20:42","nodeType":"FunctionDefinition","overrides":{"id":15984,"nodeType":"OverrideSpecifier","overrides":[],"src":"3667:8:42"},"parameters":{"id":15983,"nodeType":"ParameterList","parameters":[],"src":"3642:2:42"},"returnParameters":{"id":15987,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15986,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15991,"src":"3685:7:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15985,"name":"uint256","nodeType":"ElementaryTypeName","src":"3685:7:42","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3684:9:42"},"scope":15992,"src":"3613:107:42","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":15993,"src":"1076:2646:42","usedErrors":[23183,23186],"usedEvents":[23191]}],"src":"109:3614:42"},"id":42},"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol","exportedSymbols":{"UUPSUpgradeable":[23600]},"id":15997,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":15994,"literals":["solidity","^","0.8",".22"],"nodeType":"PragmaDirective","src":"33:24:43"},{"absolutePath":"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol","file":"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol","id":15996,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":15997,"sourceUnit":23601,"src":"59:88:43","symbolAliases":[{"foreign":{"id":15995,"name":"UUPSUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23600,"src":"67:15:43","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"33:115:43"},"id":43},"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol","exportedSymbols":{"ContextUpgradeable":[18672],"ERC20Upgradeable":[16613],"IERC20":[24193],"IERC20Errors":[22548],"IERC20Metadata":[24925],"Initializable":[23434]},"id":16614,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":15998,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:44"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"@openzeppelin/contracts/token/ERC20/IERC20.sol","id":16000,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16614,"sourceUnit":24194,"src":"131:70:44","symbolAliases":[{"foreign":{"id":15999,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"139:6:44","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":16002,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16614,"sourceUnit":24926,"src":"202:97:44","symbolAliases":[{"foreign":{"id":16001,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"210:14:44","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"../../utils/ContextUpgradeable.sol","id":16004,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16614,"sourceUnit":18673,"src":"300:70:44","symbolAliases":[{"foreign":{"id":16003,"name":"ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18672,"src":"308:18:44","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","id":16006,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16614,"sourceUnit":22644,"src":"371:83:44","symbolAliases":[{"foreign":{"id":16005,"name":"IERC20Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22548,"src":"379:12:44","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":16008,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16614,"sourceUnit":23435,"src":"455:84:44","symbolAliases":[{"foreign":{"id":16007,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23434,"src":"463:13:44","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":16010,"name":"Initializable","nameLocations":["1337:13:44"],"nodeType":"IdentifierPath","referencedDeclaration":23434,"src":"1337:13:44"},"id":16011,"nodeType":"InheritanceSpecifier","src":"1337:13:44"},{"baseName":{"id":16012,"name":"ContextUpgradeable","nameLocations":["1352:18:44"],"nodeType":"IdentifierPath","referencedDeclaration":18672,"src":"1352:18:44"},"id":16013,"nodeType":"InheritanceSpecifier","src":"1352:18:44"},{"baseName":{"id":16014,"name":"IERC20","nameLocations":["1372:6:44"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"1372:6:44"},"id":16015,"nodeType":"InheritanceSpecifier","src":"1372:6:44"},{"baseName":{"id":16016,"name":"IERC20Metadata","nameLocations":["1380:14:44"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"1380:14:44"},"id":16017,"nodeType":"InheritanceSpecifier","src":"1380:14:44"},{"baseName":{"id":16018,"name":"IERC20Errors","nameLocations":["1396:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":22548,"src":"1396:12:44"},"id":16019,"nodeType":"InheritanceSpecifier","src":"1396:12:44"}],"canonicalName":"ERC20Upgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":16009,"nodeType":"StructuredDocumentation","src":"541:757:44","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":16613,"linearizedBaseContracts":[16613,22548,24925,24193,18672,23434],"name":"ERC20Upgradeable","nameLocation":"1317:16:44","nodeType":"ContractDefinition","nodes":[{"canonicalName":"ERC20Upgradeable.ERC20Storage","documentation":{"id":16020,"nodeType":"StructuredDocumentation","src":"1415:63:44","text":"@custom:storage-location erc7201:openzeppelin.storage.ERC20"},"id":16037,"members":[{"constant":false,"id":16024,"mutability":"mutable","name":"_balances","nameLocation":"1549:9:44","nodeType":"VariableDeclaration","scope":16037,"src":"1513:45:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":16023,"keyName":"account","keyNameLocation":"1529:7:44","keyType":{"id":16021,"name":"address","nodeType":"ElementaryTypeName","src":"1521:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1513:35:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":16022,"name":"uint256","nodeType":"ElementaryTypeName","src":"1540:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"id":16030,"mutability":"mutable","name":"_allowances","nameLocation":"1633:11:44","nodeType":"VariableDeclaration","scope":16037,"src":"1569:75:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":16029,"keyName":"account","keyNameLocation":"1585:7:44","keyType":{"id":16025,"name":"address","nodeType":"ElementaryTypeName","src":"1577:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1569:63:44","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":16028,"keyName":"spender","keyNameLocation":"1612:7:44","keyType":{"id":16026,"name":"address","nodeType":"ElementaryTypeName","src":"1604:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1596:35:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":16027,"name":"uint256","nodeType":"ElementaryTypeName","src":"1623:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"internal"},{"constant":false,"id":16032,"mutability":"mutable","name":"_totalSupply","nameLocation":"1663:12:44","nodeType":"VariableDeclaration","scope":16037,"src":"1655:20:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16031,"name":"uint256","nodeType":"ElementaryTypeName","src":"1655:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16034,"mutability":"mutable","name":"_name","nameLocation":"1693:5:44","nodeType":"VariableDeclaration","scope":16037,"src":"1686:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":16033,"name":"string","nodeType":"ElementaryTypeName","src":"1686:6:44","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":16036,"mutability":"mutable","name":"_symbol","nameLocation":"1715:7:44","nodeType":"VariableDeclaration","scope":16037,"src":"1708:14:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":16035,"name":"string","nodeType":"ElementaryTypeName","src":"1708:6:44","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"name":"ERC20Storage","nameLocation":"1490:12:44","nodeType":"StructDefinition","scope":16613,"src":"1483:246:44","visibility":"public"},{"constant":true,"id":16040,"mutability":"constant","name":"ERC20StorageLocation","nameLocation":"1869:20:44","nodeType":"VariableDeclaration","scope":16613,"src":"1844:114:44","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16038,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1844:7:44","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307835326336333234376531663437646231396435636530343630303330633439376630363763613463656266373162613938656561646162653230626163653030","id":16039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1892:66:44","typeDescriptions":{"typeIdentifier":"t_rational_37439836327923360225337895871394760624280537466773280374265222508165906222592_by_1","typeString":"int_const 3743...(69 digits omitted)...2592"},"value":"0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00"},"visibility":"private"},{"body":{"id":16047,"nodeType":"Block","src":"2039:79:44","statements":[{"AST":{"nativeSrc":"2058:54:44","nodeType":"YulBlock","src":"2058:54:44","statements":[{"nativeSrc":"2072:30:44","nodeType":"YulAssignment","src":"2072:30:44","value":{"name":"ERC20StorageLocation","nativeSrc":"2082:20:44","nodeType":"YulIdentifier","src":"2082:20:44"},"variableNames":[{"name":"$.slot","nativeSrc":"2072:6:44","nodeType":"YulIdentifier","src":"2072:6:44"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":16044,"isOffset":false,"isSlot":true,"src":"2072:6:44","suffix":"slot","valueSize":1},{"declaration":16040,"isOffset":false,"isSlot":false,"src":"2082:20:44","valueSize":1}],"id":16046,"nodeType":"InlineAssembly","src":"2049:63:44"}]},"id":16048,"implemented":true,"kind":"function","modifiers":[],"name":"_getERC20Storage","nameLocation":"1974:16:44","nodeType":"FunctionDefinition","parameters":{"id":16041,"nodeType":"ParameterList","parameters":[],"src":"1990:2:44"},"returnParameters":{"id":16045,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16044,"mutability":"mutable","name":"$","nameLocation":"2036:1:44","nodeType":"VariableDeclaration","scope":16048,"src":"2015:22:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":16043,"nodeType":"UserDefinedTypeName","pathNode":{"id":16042,"name":"ERC20Storage","nameLocations":["2015:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":16037,"src":"2015:12:44"},"referencedDeclaration":16037,"src":"2015:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"src":"2014:24:44"},"scope":16613,"src":"1965:153:44","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":16063,"nodeType":"Block","src":"2373:55:44","statements":[{"expression":{"arguments":[{"id":16059,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16051,"src":"2406:5:44","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":16060,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16053,"src":"2413:7:44","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"}],"id":16058,"name":"__ERC20_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16092,"src":"2383:22:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":16061,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2383:38:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16062,"nodeType":"ExpressionStatement","src":"2383:38:44"}]},"documentation":{"id":16049,"nodeType":"StructuredDocumentation","src":"2124:152:44","text":" @dev Sets the values for {name} and {symbol}.\n Both values are immutable: they can only be set once during construction."},"id":16064,"implemented":true,"kind":"function","modifiers":[{"id":16056,"kind":"modifierInvocation","modifierName":{"id":16055,"name":"onlyInitializing","nameLocations":["2356:16:44"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"2356:16:44"},"nodeType":"ModifierInvocation","src":"2356:16:44"}],"name":"__ERC20_init","nameLocation":"2290:12:44","nodeType":"FunctionDefinition","parameters":{"id":16054,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16051,"mutability":"mutable","name":"name_","nameLocation":"2317:5:44","nodeType":"VariableDeclaration","scope":16064,"src":"2303:19:44","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16050,"name":"string","nodeType":"ElementaryTypeName","src":"2303:6:44","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":16053,"mutability":"mutable","name":"symbol_","nameLocation":"2338:7:44","nodeType":"VariableDeclaration","scope":16064,"src":"2324:21:44","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16052,"name":"string","nodeType":"ElementaryTypeName","src":"2324:6:44","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2302:44:44"},"returnParameters":{"id":16057,"nodeType":"ParameterList","parameters":[],"src":"2373:0:44"},"scope":16613,"src":"2281:147:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":16091,"nodeType":"Block","src":"2536:114:44","statements":[{"assignments":[16075],"declarations":[{"constant":false,"id":16075,"mutability":"mutable","name":"$","nameLocation":"2567:1:44","nodeType":"VariableDeclaration","scope":16091,"src":"2546:22:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":16074,"nodeType":"UserDefinedTypeName","pathNode":{"id":16073,"name":"ERC20Storage","nameLocations":["2546:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":16037,"src":"2546:12:44"},"referencedDeclaration":16037,"src":"2546:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":16078,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":16076,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16048,"src":"2571:16:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$16037_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":16077,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2571:18:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"2546:43:44"},{"expression":{"id":16083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":16079,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16075,"src":"2599:1:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":16081,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2601:5:44","memberName":"_name","nodeType":"MemberAccess","referencedDeclaration":16034,"src":"2599:7:44","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":16082,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16066,"src":"2609:5:44","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2599:15:44","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":16084,"nodeType":"ExpressionStatement","src":"2599:15:44"},{"expression":{"id":16089,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":16085,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16075,"src":"2624:1:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":16087,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2626:7:44","memberName":"_symbol","nodeType":"MemberAccess","referencedDeclaration":16036,"src":"2624:9:44","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":16088,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16068,"src":"2636:7:44","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2624:19:44","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":16090,"nodeType":"ExpressionStatement","src":"2624:19:44"}]},"id":16092,"implemented":true,"kind":"function","modifiers":[{"id":16071,"kind":"modifierInvocation","modifierName":{"id":16070,"name":"onlyInitializing","nameLocations":["2519:16:44"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"2519:16:44"},"nodeType":"ModifierInvocation","src":"2519:16:44"}],"name":"__ERC20_init_unchained","nameLocation":"2443:22:44","nodeType":"FunctionDefinition","parameters":{"id":16069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16066,"mutability":"mutable","name":"name_","nameLocation":"2480:5:44","nodeType":"VariableDeclaration","scope":16092,"src":"2466:19:44","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16065,"name":"string","nodeType":"ElementaryTypeName","src":"2466:6:44","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":16068,"mutability":"mutable","name":"symbol_","nameLocation":"2501:7:44","nodeType":"VariableDeclaration","scope":16092,"src":"2487:21:44","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16067,"name":"string","nodeType":"ElementaryTypeName","src":"2487:6:44","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2465:44:44"},"returnParameters":{"id":16072,"nodeType":"ParameterList","parameters":[],"src":"2536:0:44"},"scope":16613,"src":"2434:216:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[24912],"body":{"id":16107,"nodeType":"Block","src":"2775:84:44","statements":[{"assignments":[16100],"declarations":[{"constant":false,"id":16100,"mutability":"mutable","name":"$","nameLocation":"2806:1:44","nodeType":"VariableDeclaration","scope":16107,"src":"2785:22:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":16099,"nodeType":"UserDefinedTypeName","pathNode":{"id":16098,"name":"ERC20Storage","nameLocations":["2785:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":16037,"src":"2785:12:44"},"referencedDeclaration":16037,"src":"2785:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":16103,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":16101,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16048,"src":"2810:16:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$16037_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":16102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2810:18:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"2785:43:44"},{"expression":{"expression":{"id":16104,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16100,"src":"2845:1:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":16105,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2847:5:44","memberName":"_name","nodeType":"MemberAccess","referencedDeclaration":16034,"src":"2845:7:44","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":16097,"id":16106,"nodeType":"Return","src":"2838:14:44"}]},"documentation":{"id":16093,"nodeType":"StructuredDocumentation","src":"2656:54:44","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":16108,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"2724:4:44","nodeType":"FunctionDefinition","parameters":{"id":16094,"nodeType":"ParameterList","parameters":[],"src":"2728:2:44"},"returnParameters":{"id":16097,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16096,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16108,"src":"2760:13:44","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16095,"name":"string","nodeType":"ElementaryTypeName","src":"2760:6:44","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2759:15:44"},"scope":16613,"src":"2715:144:44","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[24918],"body":{"id":16123,"nodeType":"Block","src":"3034:86:44","statements":[{"assignments":[16116],"declarations":[{"constant":false,"id":16116,"mutability":"mutable","name":"$","nameLocation":"3065:1:44","nodeType":"VariableDeclaration","scope":16123,"src":"3044:22:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":16115,"nodeType":"UserDefinedTypeName","pathNode":{"id":16114,"name":"ERC20Storage","nameLocations":["3044:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":16037,"src":"3044:12:44"},"referencedDeclaration":16037,"src":"3044:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":16119,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":16117,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16048,"src":"3069:16:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$16037_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":16118,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3069:18:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3044:43:44"},{"expression":{"expression":{"id":16120,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16116,"src":"3104:1:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":16121,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3106:7:44","memberName":"_symbol","nodeType":"MemberAccess","referencedDeclaration":16036,"src":"3104:9:44","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":16113,"id":16122,"nodeType":"Return","src":"3097:16:44"}]},"documentation":{"id":16109,"nodeType":"StructuredDocumentation","src":"2865:102:44","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":16124,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"2981:6:44","nodeType":"FunctionDefinition","parameters":{"id":16110,"nodeType":"ParameterList","parameters":[],"src":"2987:2:44"},"returnParameters":{"id":16113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16112,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16124,"src":"3019:13:44","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16111,"name":"string","nodeType":"ElementaryTypeName","src":"3019:6:44","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3018:15:44"},"scope":16613,"src":"2972:148:44","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[24924],"body":{"id":16132,"nodeType":"Block","src":"3809:26:44","statements":[{"expression":{"hexValue":"3138","id":16130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3826:2:44","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":16129,"id":16131,"nodeType":"Return","src":"3819:9:44"}]},"documentation":{"id":16125,"nodeType":"StructuredDocumentation","src":"3126:622:44","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":16133,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"3762:8:44","nodeType":"FunctionDefinition","parameters":{"id":16126,"nodeType":"ParameterList","parameters":[],"src":"3770:2:44"},"returnParameters":{"id":16129,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16128,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16133,"src":"3802:5:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16127,"name":"uint8","nodeType":"ElementaryTypeName","src":"3802:5:44","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"3801:7:44"},"scope":16613,"src":"3753:82:44","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[24142],"body":{"id":16148,"nodeType":"Block","src":"3929:91:44","statements":[{"assignments":[16141],"declarations":[{"constant":false,"id":16141,"mutability":"mutable","name":"$","nameLocation":"3960:1:44","nodeType":"VariableDeclaration","scope":16148,"src":"3939:22:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":16140,"nodeType":"UserDefinedTypeName","pathNode":{"id":16139,"name":"ERC20Storage","nameLocations":["3939:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":16037,"src":"3939:12:44"},"referencedDeclaration":16037,"src":"3939:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":16144,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":16142,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16048,"src":"3964:16:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$16037_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":16143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3964:18:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3939:43:44"},{"expression":{"expression":{"id":16145,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16141,"src":"3999:1:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":16146,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4001:12:44","memberName":"_totalSupply","nodeType":"MemberAccess","referencedDeclaration":16032,"src":"3999:14:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":16138,"id":16147,"nodeType":"Return","src":"3992:21:44"}]},"documentation":{"id":16134,"nodeType":"StructuredDocumentation","src":"3841:22:44","text":"@inheritdoc IERC20"},"functionSelector":"18160ddd","id":16149,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"3877:11:44","nodeType":"FunctionDefinition","parameters":{"id":16135,"nodeType":"ParameterList","parameters":[],"src":"3888:2:44"},"returnParameters":{"id":16138,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16137,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16149,"src":"3920:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16136,"name":"uint256","nodeType":"ElementaryTypeName","src":"3920:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3919:9:44"},"scope":16613,"src":"3868:152:44","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[24150],"body":{"id":16168,"nodeType":"Block","src":"4127:97:44","statements":[{"assignments":[16159],"declarations":[{"constant":false,"id":16159,"mutability":"mutable","name":"$","nameLocation":"4158:1:44","nodeType":"VariableDeclaration","scope":16168,"src":"4137:22:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":16158,"nodeType":"UserDefinedTypeName","pathNode":{"id":16157,"name":"ERC20Storage","nameLocations":["4137:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":16037,"src":"4137:12:44"},"referencedDeclaration":16037,"src":"4137:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":16162,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":16160,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16048,"src":"4162:16:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$16037_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":16161,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4162:18:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"4137:43:44"},{"expression":{"baseExpression":{"expression":{"id":16163,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16159,"src":"4197:1:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":16164,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4199:9:44","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":16024,"src":"4197:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":16166,"indexExpression":{"id":16165,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16152,"src":"4209:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4197:20:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":16156,"id":16167,"nodeType":"Return","src":"4190:27:44"}]},"documentation":{"id":16150,"nodeType":"StructuredDocumentation","src":"4026:22:44","text":"@inheritdoc IERC20"},"functionSelector":"70a08231","id":16169,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"4062:9:44","nodeType":"FunctionDefinition","parameters":{"id":16153,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16152,"mutability":"mutable","name":"account","nameLocation":"4080:7:44","nodeType":"VariableDeclaration","scope":16169,"src":"4072:15:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16151,"name":"address","nodeType":"ElementaryTypeName","src":"4072:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4071:17:44"},"returnParameters":{"id":16156,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16155,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16169,"src":"4118:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16154,"name":"uint256","nodeType":"ElementaryTypeName","src":"4118:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4117:9:44"},"scope":16613,"src":"4053:171:44","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[24160],"body":{"id":16192,"nodeType":"Block","src":"4494:103:44","statements":[{"assignments":[16180],"declarations":[{"constant":false,"id":16180,"mutability":"mutable","name":"owner","nameLocation":"4512:5:44","nodeType":"VariableDeclaration","scope":16192,"src":"4504:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16179,"name":"address","nodeType":"ElementaryTypeName","src":"4504:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":16183,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":16181,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"4520:10:44","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":16182,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4520:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4504:28:44"},{"expression":{"arguments":[{"id":16185,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16180,"src":"4552:5:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16186,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16172,"src":"4559:2:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16187,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16174,"src":"4563:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16184,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16320,"src":"4542:9:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":16188,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4542:27:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16189,"nodeType":"ExpressionStatement","src":"4542:27:44"},{"expression":{"hexValue":"74727565","id":16190,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4586:4:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":16178,"id":16191,"nodeType":"Return","src":"4579:11:44"}]},"documentation":{"id":16170,"nodeType":"StructuredDocumentation","src":"4230:184:44","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":16193,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"4428:8:44","nodeType":"FunctionDefinition","parameters":{"id":16175,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16172,"mutability":"mutable","name":"to","nameLocation":"4445:2:44","nodeType":"VariableDeclaration","scope":16193,"src":"4437:10:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16171,"name":"address","nodeType":"ElementaryTypeName","src":"4437:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16174,"mutability":"mutable","name":"value","nameLocation":"4457:5:44","nodeType":"VariableDeclaration","scope":16193,"src":"4449:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16173,"name":"uint256","nodeType":"ElementaryTypeName","src":"4449:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4436:27:44"},"returnParameters":{"id":16178,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16177,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16193,"src":"4488:4:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16176,"name":"bool","nodeType":"ElementaryTypeName","src":"4488:4:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4487:6:44"},"scope":16613,"src":"4419:178:44","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[24170],"body":{"id":16216,"nodeType":"Block","src":"4719:106:44","statements":[{"assignments":[16205],"declarations":[{"constant":false,"id":16205,"mutability":"mutable","name":"$","nameLocation":"4750:1:44","nodeType":"VariableDeclaration","scope":16216,"src":"4729:22:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":16204,"nodeType":"UserDefinedTypeName","pathNode":{"id":16203,"name":"ERC20Storage","nameLocations":["4729:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":16037,"src":"4729:12:44"},"referencedDeclaration":16037,"src":"4729:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":16208,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":16206,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16048,"src":"4754:16:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$16037_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":16207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4754:18:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"4729:43:44"},{"expression":{"baseExpression":{"baseExpression":{"expression":{"id":16209,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16205,"src":"4789:1:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":16210,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4791:11:44","memberName":"_allowances","nodeType":"MemberAccess","referencedDeclaration":16030,"src":"4789:13:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":16212,"indexExpression":{"id":16211,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16196,"src":"4803:5:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4789:20:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":16214,"indexExpression":{"id":16213,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16198,"src":"4810:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4789:29:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":16202,"id":16215,"nodeType":"Return","src":"4782:36:44"}]},"documentation":{"id":16194,"nodeType":"StructuredDocumentation","src":"4603:22:44","text":"@inheritdoc IERC20"},"functionSelector":"dd62ed3e","id":16217,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"4639:9:44","nodeType":"FunctionDefinition","parameters":{"id":16199,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16196,"mutability":"mutable","name":"owner","nameLocation":"4657:5:44","nodeType":"VariableDeclaration","scope":16217,"src":"4649:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16195,"name":"address","nodeType":"ElementaryTypeName","src":"4649:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16198,"mutability":"mutable","name":"spender","nameLocation":"4672:7:44","nodeType":"VariableDeclaration","scope":16217,"src":"4664:15:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16197,"name":"address","nodeType":"ElementaryTypeName","src":"4664:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4648:32:44"},"returnParameters":{"id":16202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16201,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16217,"src":"4710:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16200,"name":"uint256","nodeType":"ElementaryTypeName","src":"4710:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4709:9:44"},"scope":16613,"src":"4630:195:44","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[24180],"body":{"id":16240,"nodeType":"Block","src":"5211:107:44","statements":[{"assignments":[16228],"declarations":[{"constant":false,"id":16228,"mutability":"mutable","name":"owner","nameLocation":"5229:5:44","nodeType":"VariableDeclaration","scope":16240,"src":"5221:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16227,"name":"address","nodeType":"ElementaryTypeName","src":"5221:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":16231,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":16229,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"5237:10:44","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":16230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5237:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5221:28:44"},{"expression":{"arguments":[{"id":16233,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16228,"src":"5268:5:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16234,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16220,"src":"5275:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16235,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16222,"src":"5284:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16232,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[16496,16564],"referencedDeclaration":16496,"src":"5259:8:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":16236,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5259:31:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16237,"nodeType":"ExpressionStatement","src":"5259:31:44"},{"expression":{"hexValue":"74727565","id":16238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5307:4:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":16226,"id":16239,"nodeType":"Return","src":"5300:11:44"}]},"documentation":{"id":16218,"nodeType":"StructuredDocumentation","src":"4831:296:44","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":16241,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"5141:7:44","nodeType":"FunctionDefinition","parameters":{"id":16223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16220,"mutability":"mutable","name":"spender","nameLocation":"5157:7:44","nodeType":"VariableDeclaration","scope":16241,"src":"5149:15:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16219,"name":"address","nodeType":"ElementaryTypeName","src":"5149:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16222,"mutability":"mutable","name":"value","nameLocation":"5174:5:44","nodeType":"VariableDeclaration","scope":16241,"src":"5166:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16221,"name":"uint256","nodeType":"ElementaryTypeName","src":"5166:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5148:32:44"},"returnParameters":{"id":16226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16225,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16241,"src":"5205:4:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16224,"name":"bool","nodeType":"ElementaryTypeName","src":"5205:4:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5204:6:44"},"scope":16613,"src":"5132:186:44","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[24192],"body":{"id":16272,"nodeType":"Block","src":"6003:151:44","statements":[{"assignments":[16254],"declarations":[{"constant":false,"id":16254,"mutability":"mutable","name":"spender","nameLocation":"6021:7:44","nodeType":"VariableDeclaration","scope":16272,"src":"6013:15:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16253,"name":"address","nodeType":"ElementaryTypeName","src":"6013:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":16257,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":16255,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"6031:10:44","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":16256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6031:12:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6013:30:44"},{"expression":{"arguments":[{"id":16259,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16244,"src":"6069:4:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16260,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16254,"src":"6075:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16261,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16248,"src":"6084:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16258,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16612,"src":"6053:15:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":16262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6053:37:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16263,"nodeType":"ExpressionStatement","src":"6053:37:44"},{"expression":{"arguments":[{"id":16265,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16244,"src":"6110:4:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16266,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16246,"src":"6116:2:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16267,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16248,"src":"6120:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16264,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16320,"src":"6100:9:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":16268,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6100:26:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16269,"nodeType":"ExpressionStatement","src":"6100:26:44"},{"expression":{"hexValue":"74727565","id":16270,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6143:4:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":16252,"id":16271,"nodeType":"Return","src":"6136:11:44"}]},"documentation":{"id":16242,"nodeType":"StructuredDocumentation","src":"5324:581:44","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":16273,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"5919:12:44","nodeType":"FunctionDefinition","parameters":{"id":16249,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16244,"mutability":"mutable","name":"from","nameLocation":"5940:4:44","nodeType":"VariableDeclaration","scope":16273,"src":"5932:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16243,"name":"address","nodeType":"ElementaryTypeName","src":"5932:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16246,"mutability":"mutable","name":"to","nameLocation":"5954:2:44","nodeType":"VariableDeclaration","scope":16273,"src":"5946:10:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16245,"name":"address","nodeType":"ElementaryTypeName","src":"5946:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16248,"mutability":"mutable","name":"value","nameLocation":"5966:5:44","nodeType":"VariableDeclaration","scope":16273,"src":"5958:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16247,"name":"uint256","nodeType":"ElementaryTypeName","src":"5958:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5931:41:44"},"returnParameters":{"id":16252,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16251,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16273,"src":"5997:4:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16250,"name":"bool","nodeType":"ElementaryTypeName","src":"5997:4:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5996:6:44"},"scope":16613,"src":"5910:244:44","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":16319,"nodeType":"Block","src":"6596:231:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":16288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16283,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16276,"src":"6610:4:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":16286,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6626:1:44","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":16285,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6618:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16284,"name":"address","nodeType":"ElementaryTypeName","src":"6618:7:44","typeDescriptions":{}}},"id":16287,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6618:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6610:18:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16297,"nodeType":"IfStatement","src":"6606:86:44","trueBody":{"id":16296,"nodeType":"Block","src":"6630:62:44","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":16292,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6678:1:44","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":16291,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6670:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16290,"name":"address","nodeType":"ElementaryTypeName","src":"6670:7:44","typeDescriptions":{}}},"id":16293,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6670:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":16289,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22523,"src":"6651:18:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":16294,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6651:30:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16295,"nodeType":"RevertStatement","src":"6644:37:44"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":16303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16298,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16278,"src":"6705:2:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":16301,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6719:1:44","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":16300,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6711:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16299,"name":"address","nodeType":"ElementaryTypeName","src":"6711:7:44","typeDescriptions":{}}},"id":16302,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6711:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6705:16:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16312,"nodeType":"IfStatement","src":"6701:86:44","trueBody":{"id":16311,"nodeType":"Block","src":"6723:64:44","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":16307,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6773:1:44","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":16306,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6765:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16305,"name":"address","nodeType":"ElementaryTypeName","src":"6765:7:44","typeDescriptions":{}}},"id":16308,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6765:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":16304,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22528,"src":"6744:20:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":16309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6744:32:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16310,"nodeType":"RevertStatement","src":"6737:39:44"}]}},{"expression":{"arguments":[{"id":16314,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16276,"src":"6804:4:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16315,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16278,"src":"6810:2:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16316,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16280,"src":"6814:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16313,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16412,"src":"6796:7:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":16317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6796:24:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16318,"nodeType":"ExpressionStatement","src":"6796:24:44"}]},"documentation":{"id":16274,"nodeType":"StructuredDocumentation","src":"6160:362:44","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":16320,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"6536:9:44","nodeType":"FunctionDefinition","parameters":{"id":16281,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16276,"mutability":"mutable","name":"from","nameLocation":"6554:4:44","nodeType":"VariableDeclaration","scope":16320,"src":"6546:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16275,"name":"address","nodeType":"ElementaryTypeName","src":"6546:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16278,"mutability":"mutable","name":"to","nameLocation":"6568:2:44","nodeType":"VariableDeclaration","scope":16320,"src":"6560:10:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16277,"name":"address","nodeType":"ElementaryTypeName","src":"6560:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16280,"mutability":"mutable","name":"value","nameLocation":"6580:5:44","nodeType":"VariableDeclaration","scope":16320,"src":"6572:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16279,"name":"uint256","nodeType":"ElementaryTypeName","src":"6572:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6545:41:44"},"returnParameters":{"id":16282,"nodeType":"ParameterList","parameters":[],"src":"6596:0:44"},"scope":16613,"src":"6527:300:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":16411,"nodeType":"Block","src":"7217:1095:44","statements":[{"assignments":[16332],"declarations":[{"constant":false,"id":16332,"mutability":"mutable","name":"$","nameLocation":"7248:1:44","nodeType":"VariableDeclaration","scope":16411,"src":"7227:22:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":16331,"nodeType":"UserDefinedTypeName","pathNode":{"id":16330,"name":"ERC20Storage","nameLocations":["7227:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":16037,"src":"7227:12:44"},"referencedDeclaration":16037,"src":"7227:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":16335,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":16333,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16048,"src":"7252:16:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$16037_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":16334,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7252:18:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"7227:43:44"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":16341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16336,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16323,"src":"7284:4:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":16339,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7300:1:44","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":16338,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7292:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16337,"name":"address","nodeType":"ElementaryTypeName","src":"7292:7:44","typeDescriptions":{}}},"id":16340,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7292:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7284:18:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":16378,"nodeType":"Block","src":"7460:366:44","statements":[{"assignments":[16350],"declarations":[{"constant":false,"id":16350,"mutability":"mutable","name":"fromBalance","nameLocation":"7482:11:44","nodeType":"VariableDeclaration","scope":16378,"src":"7474:19:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16349,"name":"uint256","nodeType":"ElementaryTypeName","src":"7474:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16355,"initialValue":{"baseExpression":{"expression":{"id":16351,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16332,"src":"7496:1:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":16352,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7498:9:44","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":16024,"src":"7496:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":16354,"indexExpression":{"id":16353,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16323,"src":"7508:4:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7496:17:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7474:39:44"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16356,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16350,"src":"7531:11:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":16357,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16327,"src":"7545:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7531:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16366,"nodeType":"IfStatement","src":"7527:115:44","trueBody":{"id":16365,"nodeType":"Block","src":"7552:90:44","statements":[{"errorCall":{"arguments":[{"id":16360,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16323,"src":"7602:4:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16361,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16350,"src":"7608:11:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16362,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16327,"src":"7621:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16359,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22518,"src":"7577:24:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":16363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7577:50:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16364,"nodeType":"RevertStatement","src":"7570:57:44"}]}},{"id":16377,"nodeType":"UncheckedBlock","src":"7655:161:44","statements":[{"expression":{"id":16375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":16367,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16332,"src":"7762:1:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":16370,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7764:9:44","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":16024,"src":"7762:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":16371,"indexExpression":{"id":16369,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16323,"src":"7774:4:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7762:17:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16372,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16350,"src":"7782:11:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":16373,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16327,"src":"7796:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7782:19:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7762:39:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16376,"nodeType":"ExpressionStatement","src":"7762:39:44"}]}]},"id":16379,"nodeType":"IfStatement","src":"7280:546:44","trueBody":{"id":16348,"nodeType":"Block","src":"7304:150:44","statements":[{"expression":{"id":16346,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":16342,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16332,"src":"7420:1:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":16344,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"7422:12:44","memberName":"_totalSupply","nodeType":"MemberAccess","referencedDeclaration":16032,"src":"7420:14:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":16345,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16327,"src":"7438:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7420:23:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16347,"nodeType":"ExpressionStatement","src":"7420:23:44"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":16385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16380,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16325,"src":"7840:2:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":16383,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7854:1:44","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":16382,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7846:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16381,"name":"address","nodeType":"ElementaryTypeName","src":"7846:7:44","typeDescriptions":{}}},"id":16384,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7846:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7840:16:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":16403,"nodeType":"Block","src":"8057:208:44","statements":[{"id":16402,"nodeType":"UncheckedBlock","src":"8071:184:44","statements":[{"expression":{"id":16400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":16394,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16332,"src":"8216:1:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":16397,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8218:9:44","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":16024,"src":"8216:11:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":16398,"indexExpression":{"id":16396,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16325,"src":"8228:2:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8216:15:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":16399,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16327,"src":"8235:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8216:24:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16401,"nodeType":"ExpressionStatement","src":"8216:24:44"}]}]},"id":16404,"nodeType":"IfStatement","src":"7836:429:44","trueBody":{"id":16393,"nodeType":"Block","src":"7858:193:44","statements":[{"id":16392,"nodeType":"UncheckedBlock","src":"7872:169:44","statements":[{"expression":{"id":16390,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":16386,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16332,"src":"8003:1:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":16388,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8005:12:44","memberName":"_totalSupply","nodeType":"MemberAccess","referencedDeclaration":16032,"src":"8003:14:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":16389,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16327,"src":"8021:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8003:23:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16391,"nodeType":"ExpressionStatement","src":"8003:23:44"}]}]}},{"eventCall":{"arguments":[{"id":16406,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16323,"src":"8289:4:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16407,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16325,"src":"8295:2:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16408,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16327,"src":"8299:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16405,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24127,"src":"8280:8:44","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":16409,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8280:25:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16410,"nodeType":"EmitStatement","src":"8275:30:44"}]},"documentation":{"id":16321,"nodeType":"StructuredDocumentation","src":"6833:304:44","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":16412,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"7151:7:44","nodeType":"FunctionDefinition","parameters":{"id":16328,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16323,"mutability":"mutable","name":"from","nameLocation":"7167:4:44","nodeType":"VariableDeclaration","scope":16412,"src":"7159:12:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16322,"name":"address","nodeType":"ElementaryTypeName","src":"7159:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16325,"mutability":"mutable","name":"to","nameLocation":"7181:2:44","nodeType":"VariableDeclaration","scope":16412,"src":"7173:10:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16324,"name":"address","nodeType":"ElementaryTypeName","src":"7173:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16327,"mutability":"mutable","name":"value","nameLocation":"7193:5:44","nodeType":"VariableDeclaration","scope":16412,"src":"7185:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16326,"name":"uint256","nodeType":"ElementaryTypeName","src":"7185:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7158:41:44"},"returnParameters":{"id":16329,"nodeType":"ParameterList","parameters":[],"src":"7217:0:44"},"scope":16613,"src":"7142:1170:44","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":16444,"nodeType":"Block","src":"8711:152:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":16425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16420,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16415,"src":"8725:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":16423,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8744:1:44","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":16422,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8736:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16421,"name":"address","nodeType":"ElementaryTypeName","src":"8736:7:44","typeDescriptions":{}}},"id":16424,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8736:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8725:21:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16434,"nodeType":"IfStatement","src":"8721:91:44","trueBody":{"id":16433,"nodeType":"Block","src":"8748:64:44","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":16429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8798:1:44","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":16428,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8790:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16427,"name":"address","nodeType":"ElementaryTypeName","src":"8790:7:44","typeDescriptions":{}}},"id":16430,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8790:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":16426,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22528,"src":"8769:20:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":16431,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8769:32:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16432,"nodeType":"RevertStatement","src":"8762:39:44"}]}},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":16438,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8837:1:44","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":16437,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8829:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16436,"name":"address","nodeType":"ElementaryTypeName","src":"8829:7:44","typeDescriptions":{}}},"id":16439,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8829:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16440,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16415,"src":"8841:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16441,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16417,"src":"8850:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16435,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16412,"src":"8821:7:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":16442,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8821:35:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16443,"nodeType":"ExpressionStatement","src":"8821:35:44"}]},"documentation":{"id":16413,"nodeType":"StructuredDocumentation","src":"8318:332:44","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":16445,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"8664:5:44","nodeType":"FunctionDefinition","parameters":{"id":16418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16415,"mutability":"mutable","name":"account","nameLocation":"8678:7:44","nodeType":"VariableDeclaration","scope":16445,"src":"8670:15:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16414,"name":"address","nodeType":"ElementaryTypeName","src":"8670:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16417,"mutability":"mutable","name":"value","nameLocation":"8695:5:44","nodeType":"VariableDeclaration","scope":16445,"src":"8687:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16416,"name":"uint256","nodeType":"ElementaryTypeName","src":"8687:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8669:32:44"},"returnParameters":{"id":16419,"nodeType":"ParameterList","parameters":[],"src":"8711:0:44"},"scope":16613,"src":"8655:208:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":16477,"nodeType":"Block","src":"9237:150:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":16458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16453,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16448,"src":"9251:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":16456,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9270:1:44","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":16455,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9262:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16454,"name":"address","nodeType":"ElementaryTypeName","src":"9262:7:44","typeDescriptions":{}}},"id":16457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9262:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9251:21:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16467,"nodeType":"IfStatement","src":"9247:89:44","trueBody":{"id":16466,"nodeType":"Block","src":"9274:62:44","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":16462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9322:1:44","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":16461,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9314:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16460,"name":"address","nodeType":"ElementaryTypeName","src":"9314:7:44","typeDescriptions":{}}},"id":16463,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9314:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":16459,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22523,"src":"9295:18:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":16464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9295:30:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16465,"nodeType":"RevertStatement","src":"9288:37:44"}]}},{"expression":{"arguments":[{"id":16469,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16448,"src":"9353:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":16472,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9370:1:44","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":16471,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9362:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16470,"name":"address","nodeType":"ElementaryTypeName","src":"9362:7:44","typeDescriptions":{}}},"id":16473,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9362:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16474,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16450,"src":"9374:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16468,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16412,"src":"9345:7:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":16475,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9345:35:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16476,"nodeType":"ExpressionStatement","src":"9345:35:44"}]},"documentation":{"id":16446,"nodeType":"StructuredDocumentation","src":"8869:307:44","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":16478,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"9190:5:44","nodeType":"FunctionDefinition","parameters":{"id":16451,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16448,"mutability":"mutable","name":"account","nameLocation":"9204:7:44","nodeType":"VariableDeclaration","scope":16478,"src":"9196:15:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16447,"name":"address","nodeType":"ElementaryTypeName","src":"9196:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16450,"mutability":"mutable","name":"value","nameLocation":"9221:5:44","nodeType":"VariableDeclaration","scope":16478,"src":"9213:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16449,"name":"uint256","nodeType":"ElementaryTypeName","src":"9213:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9195:32:44"},"returnParameters":{"id":16452,"nodeType":"ParameterList","parameters":[],"src":"9237:0:44"},"scope":16613,"src":"9181:206:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":16495,"nodeType":"Block","src":"9997:54:44","statements":[{"expression":{"arguments":[{"id":16489,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16481,"src":"10016:5:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16490,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16483,"src":"10023:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16491,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16485,"src":"10032:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":16492,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10039:4:44","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":16488,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[16496,16564],"referencedDeclaration":16564,"src":"10007:8:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":16493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10007:37:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16494,"nodeType":"ExpressionStatement","src":"10007:37:44"}]},"documentation":{"id":16479,"nodeType":"StructuredDocumentation","src":"9393:525:44","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":16496,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"9932:8:44","nodeType":"FunctionDefinition","parameters":{"id":16486,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16481,"mutability":"mutable","name":"owner","nameLocation":"9949:5:44","nodeType":"VariableDeclaration","scope":16496,"src":"9941:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16480,"name":"address","nodeType":"ElementaryTypeName","src":"9941:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16483,"mutability":"mutable","name":"spender","nameLocation":"9964:7:44","nodeType":"VariableDeclaration","scope":16496,"src":"9956:15:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16482,"name":"address","nodeType":"ElementaryTypeName","src":"9956:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16485,"mutability":"mutable","name":"value","nameLocation":"9981:5:44","nodeType":"VariableDeclaration","scope":16496,"src":"9973:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16484,"name":"uint256","nodeType":"ElementaryTypeName","src":"9973:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9940:47:44"},"returnParameters":{"id":16487,"nodeType":"ParameterList","parameters":[],"src":"9997:0:44"},"scope":16613,"src":"9923:128:44","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":16563,"nodeType":"Block","src":"10998:389:44","statements":[{"assignments":[16510],"declarations":[{"constant":false,"id":16510,"mutability":"mutable","name":"$","nameLocation":"11029:1:44","nodeType":"VariableDeclaration","scope":16563,"src":"11008:22:44","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"},"typeName":{"id":16509,"nodeType":"UserDefinedTypeName","pathNode":{"id":16508,"name":"ERC20Storage","nameLocations":["11008:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":16037,"src":"11008:12:44"},"referencedDeclaration":16037,"src":"11008:12:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage"}},"visibility":"internal"}],"id":16513,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":16511,"name":"_getERC20Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16048,"src":"11033:16:44","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC20Storage_$16037_storage_ptr_$","typeString":"function () pure returns (struct ERC20Upgradeable.ERC20Storage storage pointer)"}},"id":16512,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11033:18:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"11008:43:44"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":16519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16514,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16499,"src":"11065:5:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":16517,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11082:1:44","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":16516,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11074:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16515,"name":"address","nodeType":"ElementaryTypeName","src":"11074:7:44","typeDescriptions":{}}},"id":16518,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11074:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11065:19:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16528,"nodeType":"IfStatement","src":"11061:89:44","trueBody":{"id":16527,"nodeType":"Block","src":"11086:64:44","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":16523,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11136:1:44","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":16522,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11128:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16521,"name":"address","nodeType":"ElementaryTypeName","src":"11128:7:44","typeDescriptions":{}}},"id":16524,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11128:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":16520,"name":"ERC20InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22542,"src":"11107:20:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":16525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11107:32:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16526,"nodeType":"RevertStatement","src":"11100:39:44"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":16534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16529,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16501,"src":"11163:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":16532,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11182:1:44","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":16531,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11174:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16530,"name":"address","nodeType":"ElementaryTypeName","src":"11174:7:44","typeDescriptions":{}}},"id":16533,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11174:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11163:21:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16543,"nodeType":"IfStatement","src":"11159:90:44","trueBody":{"id":16542,"nodeType":"Block","src":"11186:63:44","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":16538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11235:1:44","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":16537,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11227:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16536,"name":"address","nodeType":"ElementaryTypeName","src":"11227:7:44","typeDescriptions":{}}},"id":16539,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11227:10:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":16535,"name":"ERC20InvalidSpender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22547,"src":"11207:19:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":16540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11207:31:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16541,"nodeType":"RevertStatement","src":"11200:38:44"}]}},{"expression":{"id":16552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"expression":{"id":16544,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16510,"src":"11258:1:44","typeDescriptions":{"typeIdentifier":"t_struct$_ERC20Storage_$16037_storage_ptr","typeString":"struct ERC20Upgradeable.ERC20Storage storage pointer"}},"id":16548,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11260:11:44","memberName":"_allowances","nodeType":"MemberAccess","referencedDeclaration":16030,"src":"11258:13:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":16549,"indexExpression":{"id":16546,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16499,"src":"11272:5:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11258:20:44","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":16550,"indexExpression":{"id":16547,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16501,"src":"11279:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"11258:29:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":16551,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16503,"src":"11290:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11258:37:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16553,"nodeType":"ExpressionStatement","src":"11258:37:44"},{"condition":{"id":16554,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16505,"src":"11309:9:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16562,"nodeType":"IfStatement","src":"11305:76:44","trueBody":{"id":16561,"nodeType":"Block","src":"11320:61:44","statements":[{"eventCall":{"arguments":[{"id":16556,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16499,"src":"11348:5:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16557,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16501,"src":"11355:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16558,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16503,"src":"11364:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16555,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24136,"src":"11339:8:44","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":16559,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11339:31:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16560,"nodeType":"EmitStatement","src":"11334:36:44"}]}}]},"documentation":{"id":16497,"nodeType":"StructuredDocumentation","src":"10057:838:44","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 sets 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":16564,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"10909:8:44","nodeType":"FunctionDefinition","parameters":{"id":16506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16499,"mutability":"mutable","name":"owner","nameLocation":"10926:5:44","nodeType":"VariableDeclaration","scope":16564,"src":"10918:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16498,"name":"address","nodeType":"ElementaryTypeName","src":"10918:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16501,"mutability":"mutable","name":"spender","nameLocation":"10941:7:44","nodeType":"VariableDeclaration","scope":16564,"src":"10933:15:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16500,"name":"address","nodeType":"ElementaryTypeName","src":"10933:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16503,"mutability":"mutable","name":"value","nameLocation":"10958:5:44","nodeType":"VariableDeclaration","scope":16564,"src":"10950:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16502,"name":"uint256","nodeType":"ElementaryTypeName","src":"10950:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16505,"mutability":"mutable","name":"emitEvent","nameLocation":"10970:9:44","nodeType":"VariableDeclaration","scope":16564,"src":"10965:14:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16504,"name":"bool","nodeType":"ElementaryTypeName","src":"10965:4:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10917:63:44"},"returnParameters":{"id":16507,"nodeType":"ParameterList","parameters":[],"src":"10998:0:44"},"scope":16613,"src":"10900:487:44","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":16611,"nodeType":"Block","src":"11758:387:44","statements":[{"assignments":[16575],"declarations":[{"constant":false,"id":16575,"mutability":"mutable","name":"currentAllowance","nameLocation":"11776:16:44","nodeType":"VariableDeclaration","scope":16611,"src":"11768:24:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16574,"name":"uint256","nodeType":"ElementaryTypeName","src":"11768:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16580,"initialValue":{"arguments":[{"id":16577,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16567,"src":"11805:5:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16578,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16569,"src":"11812:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":16576,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16217,"src":"11795:9:44","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":16579,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11795:25:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11768:52:44"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16581,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16575,"src":"11834:16:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":16584,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11858:7:44","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":16583,"name":"uint256","nodeType":"ElementaryTypeName","src":"11858:7:44","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":16582,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11853:4:44","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16585,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11853:13:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":16586,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11867:3:44","memberName":"max","nodeType":"MemberAccess","src":"11853:17:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11834:36:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16610,"nodeType":"IfStatement","src":"11830:309:44","trueBody":{"id":16609,"nodeType":"Block","src":"11872:267:44","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16588,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16575,"src":"11890:16:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":16589,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16571,"src":"11909:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11890:24:44","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16598,"nodeType":"IfStatement","src":"11886:130:44","trueBody":{"id":16597,"nodeType":"Block","src":"11916:100:44","statements":[{"errorCall":{"arguments":[{"id":16592,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16569,"src":"11968:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16593,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16575,"src":"11977:16:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16594,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16571,"src":"11995:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16591,"name":"ERC20InsufficientAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22537,"src":"11941:26:44","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":16595,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11941:60:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16596,"nodeType":"RevertStatement","src":"11934:67:44"}]}},{"id":16608,"nodeType":"UncheckedBlock","src":"12029:100:44","statements":[{"expression":{"arguments":[{"id":16600,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16567,"src":"12066:5:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16601,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16569,"src":"12073:7:44","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16602,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16575,"src":"12082:16:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":16603,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16571,"src":"12101:5:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12082:24:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":16605,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"12108:5:44","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":16599,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[16496,16564],"referencedDeclaration":16564,"src":"12057:8:44","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":16606,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12057:57:44","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16607,"nodeType":"ExpressionStatement","src":"12057:57:44"}]}]}}]},"documentation":{"id":16565,"nodeType":"StructuredDocumentation","src":"11393:271:44","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":16612,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"11678:15:44","nodeType":"FunctionDefinition","parameters":{"id":16572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16567,"mutability":"mutable","name":"owner","nameLocation":"11702:5:44","nodeType":"VariableDeclaration","scope":16612,"src":"11694:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16566,"name":"address","nodeType":"ElementaryTypeName","src":"11694:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16569,"mutability":"mutable","name":"spender","nameLocation":"11717:7:44","nodeType":"VariableDeclaration","scope":16612,"src":"11709:15:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16568,"name":"address","nodeType":"ElementaryTypeName","src":"11709:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16571,"mutability":"mutable","name":"value","nameLocation":"11734:5:44","nodeType":"VariableDeclaration","scope":16612,"src":"11726:13:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16570,"name":"uint256","nodeType":"ElementaryTypeName","src":"11726:7:44","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11693:47:44"},"returnParameters":{"id":16573,"nodeType":"ParameterList","parameters":[],"src":"11758:0:44"},"scope":16613,"src":"11669:476:44","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":16614,"src":"1299:10848:44","usedErrors":[22518,22523,22528,22537,22542,22547,23183,23186],"usedEvents":[23191,24127,24136]}],"src":"105:12043:44"},"id":44},"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol","exportedSymbols":{"ECDSA":[33173],"EIP712Upgradeable":[19390],"ERC20PermitUpgradeable":[16782],"ERC20Upgradeable":[16613],"IERC20Permit":[24961],"Initializable":[23434],"NoncesUpgradeable":[18886]},"id":16783,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":16615,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"122:24:45"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","id":16617,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16783,"sourceUnit":24962,"src":"148:93:45","symbolAliases":[{"foreign":{"id":16616,"name":"IERC20Permit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24961,"src":"156:12:45","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol","file":"../ERC20Upgradeable.sol","id":16619,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16783,"sourceUnit":16614,"src":"242:57:45","symbolAliases":[{"foreign":{"id":16618,"name":"ERC20Upgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16613,"src":"250:16:45","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","id":16621,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16783,"sourceUnit":33174,"src":"300:75:45","symbolAliases":[{"foreign":{"id":16620,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33173,"src":"308:5:45","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol","file":"../../../utils/cryptography/EIP712Upgradeable.sol","id":16623,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16783,"sourceUnit":19391,"src":"376:84:45","symbolAliases":[{"foreign":{"id":16622,"name":"EIP712Upgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19390,"src":"384:17:45","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/NoncesUpgradeable.sol","file":"../../../utils/NoncesUpgradeable.sol","id":16625,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16783,"sourceUnit":18887,"src":"461:71:45","symbolAliases":[{"foreign":{"id":16624,"name":"NoncesUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18886,"src":"469:17:45","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":16627,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16783,"sourceUnit":23435,"src":"533:84:45","symbolAliases":[{"foreign":{"id":16626,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23434,"src":"541:13:45","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":16629,"name":"Initializable","nameLocations":["1153:13:45"],"nodeType":"IdentifierPath","referencedDeclaration":23434,"src":"1153:13:45"},"id":16630,"nodeType":"InheritanceSpecifier","src":"1153:13:45"},{"baseName":{"id":16631,"name":"ERC20Upgradeable","nameLocations":["1168:16:45"],"nodeType":"IdentifierPath","referencedDeclaration":16613,"src":"1168:16:45"},"id":16632,"nodeType":"InheritanceSpecifier","src":"1168:16:45"},{"baseName":{"id":16633,"name":"IERC20Permit","nameLocations":["1186:12:45"],"nodeType":"IdentifierPath","referencedDeclaration":24961,"src":"1186:12:45"},"id":16634,"nodeType":"InheritanceSpecifier","src":"1186:12:45"},{"baseName":{"id":16635,"name":"EIP712Upgradeable","nameLocations":["1200:17:45"],"nodeType":"IdentifierPath","referencedDeclaration":19390,"src":"1200:17:45"},"id":16636,"nodeType":"InheritanceSpecifier","src":"1200:17:45"},{"baseName":{"id":16637,"name":"NoncesUpgradeable","nameLocations":["1219:17:45"],"nodeType":"IdentifierPath","referencedDeclaration":18886,"src":"1219:17:45"},"id":16638,"nodeType":"InheritanceSpecifier","src":"1219:17:45"}],"canonicalName":"ERC20PermitUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":16628,"nodeType":"StructuredDocumentation","src":"619:489:45","text":" @dev Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't\n need to send a transaction, and thus is not required to hold Ether at all."},"fullyImplemented":true,"id":16782,"linearizedBaseContracts":[16782,18886,19390,22488,24961,16613,22548,24925,24193,18672,23434],"name":"ERC20PermitUpgradeable","nameLocation":"1127:22:45","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":16643,"mutability":"constant","name":"PERMIT_TYPEHASH","nameLocation":"1268:15:45","nodeType":"VariableDeclaration","scope":16782,"src":"1243:146:45","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16639,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1243:7:45","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"5065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e6529","id":16641,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1304:84:45","typeDescriptions":{"typeIdentifier":"t_stringliteral_6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9","typeString":"literal_string \"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\""},"value":"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9","typeString":"literal_string \"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\""}],"id":16640,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1294:9:45","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":16642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1294:95:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"documentation":{"id":16644,"nodeType":"StructuredDocumentation","src":"1396:52:45","text":" @dev Permit deadline has expired."},"errorSelector":"62791302","id":16648,"name":"ERC2612ExpiredSignature","nameLocation":"1459:23:45","nodeType":"ErrorDefinition","parameters":{"id":16647,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16646,"mutability":"mutable","name":"deadline","nameLocation":"1491:8:45","nodeType":"VariableDeclaration","scope":16648,"src":"1483:16:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16645,"name":"uint256","nodeType":"ElementaryTypeName","src":"1483:7:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1482:18:45"},"src":"1453:48:45"},{"documentation":{"id":16649,"nodeType":"StructuredDocumentation","src":"1507:45:45","text":" @dev Mismatched signature."},"errorSelector":"4b800e46","id":16655,"name":"ERC2612InvalidSigner","nameLocation":"1563:20:45","nodeType":"ErrorDefinition","parameters":{"id":16654,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16651,"mutability":"mutable","name":"signer","nameLocation":"1592:6:45","nodeType":"VariableDeclaration","scope":16655,"src":"1584:14:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16650,"name":"address","nodeType":"ElementaryTypeName","src":"1584:7:45","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16653,"mutability":"mutable","name":"owner","nameLocation":"1608:5:45","nodeType":"VariableDeclaration","scope":16655,"src":"1600:13:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16652,"name":"address","nodeType":"ElementaryTypeName","src":"1600:7:45","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1583:31:45"},"src":"1557:58:45"},{"body":{"id":16668,"nodeType":"Block","src":"1921:51:45","statements":[{"expression":{"arguments":[{"id":16664,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16658,"src":"1955:4:45","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"31","id":16665,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1961:3:45","typeDescriptions":{"typeIdentifier":"t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6","typeString":"literal_string \"1\""},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6","typeString":"literal_string \"1\""}],"id":16663,"name":"__EIP712_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19143,"src":"1931:23:45","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":16666,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1931:34:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16667,"nodeType":"ExpressionStatement","src":"1931:34:45"}]},"documentation":{"id":16656,"nodeType":"StructuredDocumentation","src":"1621:221:45","text":" @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\"1\"`.\n It's a good idea to use the same `name` that is defined as the ERC-20 token name."},"id":16669,"implemented":true,"kind":"function","modifiers":[{"id":16661,"kind":"modifierInvocation","modifierName":{"id":16660,"name":"onlyInitializing","nameLocations":["1904:16:45"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"1904:16:45"},"nodeType":"ModifierInvocation","src":"1904:16:45"}],"name":"__ERC20Permit_init","nameLocation":"1856:18:45","nodeType":"FunctionDefinition","parameters":{"id":16659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16658,"mutability":"mutable","name":"name","nameLocation":"1889:4:45","nodeType":"VariableDeclaration","scope":16669,"src":"1875:18:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16657,"name":"string","nodeType":"ElementaryTypeName","src":"1875:6:45","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1874:20:45"},"returnParameters":{"id":16662,"nodeType":"ParameterList","parameters":[],"src":"1921:0:45"},"scope":16782,"src":"1847:125:45","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":16676,"nodeType":"Block","src":"2057:2:45","statements":[]},"id":16677,"implemented":true,"kind":"function","modifiers":[{"id":16674,"kind":"modifierInvocation","modifierName":{"id":16673,"name":"onlyInitializing","nameLocations":["2040:16:45"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"2040:16:45"},"nodeType":"ModifierInvocation","src":"2040:16:45"}],"name":"__ERC20Permit_init_unchained","nameLocation":"1987:28:45","nodeType":"FunctionDefinition","parameters":{"id":16672,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16671,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16677,"src":"2016:13:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16670,"name":"string","nodeType":"ElementaryTypeName","src":"2016:6:45","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2015:15:45"},"returnParameters":{"id":16675,"nodeType":"ParameterList","parameters":[],"src":"2057:0:45"},"scope":16782,"src":"1978:81:45","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[24946],"body":{"id":16753,"nodeType":"Block","src":"2287:483:45","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":16695,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"2301:5:45","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":16696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2307:9:45","memberName":"timestamp","nodeType":"MemberAccess","src":"2301:15:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":16697,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16686,"src":"2319:8:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2301:26:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16704,"nodeType":"IfStatement","src":"2297:97:45","trueBody":{"id":16703,"nodeType":"Block","src":"2329:65:45","statements":[{"errorCall":{"arguments":[{"id":16700,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16686,"src":"2374:8:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16699,"name":"ERC2612ExpiredSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16648,"src":"2350:23:45","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":16701,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2350:33:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16702,"nodeType":"RevertStatement","src":"2343:40:45"}]}},{"assignments":[16706],"declarations":[{"constant":false,"id":16706,"mutability":"mutable","name":"structHash","nameLocation":"2412:10:45","nodeType":"VariableDeclaration","scope":16753,"src":"2404:18:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16705,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2404:7:45","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":16720,"initialValue":{"arguments":[{"arguments":[{"id":16710,"name":"PERMIT_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16643,"src":"2446:15:45","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":16711,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16680,"src":"2463:5:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16712,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16682,"src":"2470:7:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16713,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16684,"src":"2479:5:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":16715,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16680,"src":"2496:5:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":16714,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18860,"src":"2486:9:45","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":16716,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2486:16:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16717,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16686,"src":"2504:8:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":16708,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2435:3:45","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":16709,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2439:6:45","memberName":"encode","nodeType":"MemberAccess","src":"2435:10:45","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":16718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2435:78:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":16707,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2425:9:45","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":16719,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2425:89:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2404:110:45"},{"assignments":[16722],"declarations":[{"constant":false,"id":16722,"mutability":"mutable","name":"hash","nameLocation":"2533:4:45","nodeType":"VariableDeclaration","scope":16753,"src":"2525:12:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16721,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2525:7:45","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":16726,"initialValue":{"arguments":[{"id":16724,"name":"structHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16706,"src":"2557:10:45","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":16723,"name":"_hashTypedDataV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19192,"src":"2540:16:45","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":16725,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2540:28:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2525:43:45"},{"assignments":[16728],"declarations":[{"constant":false,"id":16728,"mutability":"mutable","name":"signer","nameLocation":"2587:6:45","nodeType":"VariableDeclaration","scope":16753,"src":"2579:14:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16727,"name":"address","nodeType":"ElementaryTypeName","src":"2579:7:45","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":16736,"initialValue":{"arguments":[{"id":16731,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16722,"src":"2610:4:45","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":16732,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16688,"src":"2616:1:45","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":16733,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16690,"src":"2619:1:45","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":16734,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16692,"src":"2622:1:45","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"}],"expression":{"id":16729,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33173,"src":"2596:5:45","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$33173_$","typeString":"type(library ECDSA)"}},"id":16730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2602:7:45","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":33095,"src":"2596:13:45","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address)"}},"id":16735,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2596:28:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2579:45:45"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":16739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16737,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16728,"src":"2638:6:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":16738,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16680,"src":"2648:5:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2638:15:45","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16746,"nodeType":"IfStatement","src":"2634:88:45","trueBody":{"id":16745,"nodeType":"Block","src":"2655:67:45","statements":[{"errorCall":{"arguments":[{"id":16741,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16728,"src":"2697:6:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16742,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16680,"src":"2705:5:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":16740,"name":"ERC2612InvalidSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16655,"src":"2676:20:45","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$returns$_t_error_$","typeString":"function (address,address) pure returns (error)"}},"id":16743,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2676:35:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16744,"nodeType":"RevertStatement","src":"2669:42:45"}]}},{"expression":{"arguments":[{"id":16748,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16680,"src":"2741:5:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16749,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16682,"src":"2748:7:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":16750,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16684,"src":"2757:5:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16747,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[16496,16564],"referencedDeclaration":16496,"src":"2732:8:45","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":16751,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2732:31:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16752,"nodeType":"ExpressionStatement","src":"2732:31:45"}]},"documentation":{"id":16678,"nodeType":"StructuredDocumentation","src":"2065:28:45","text":"@inheritdoc IERC20Permit"},"functionSelector":"d505accf","id":16754,"implemented":true,"kind":"function","modifiers":[],"name":"permit","nameLocation":"2107:6:45","nodeType":"FunctionDefinition","parameters":{"id":16693,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16680,"mutability":"mutable","name":"owner","nameLocation":"2131:5:45","nodeType":"VariableDeclaration","scope":16754,"src":"2123:13:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16679,"name":"address","nodeType":"ElementaryTypeName","src":"2123:7:45","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16682,"mutability":"mutable","name":"spender","nameLocation":"2154:7:45","nodeType":"VariableDeclaration","scope":16754,"src":"2146:15:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16681,"name":"address","nodeType":"ElementaryTypeName","src":"2146:7:45","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16684,"mutability":"mutable","name":"value","nameLocation":"2179:5:45","nodeType":"VariableDeclaration","scope":16754,"src":"2171:13:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16683,"name":"uint256","nodeType":"ElementaryTypeName","src":"2171:7:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16686,"mutability":"mutable","name":"deadline","nameLocation":"2202:8:45","nodeType":"VariableDeclaration","scope":16754,"src":"2194:16:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16685,"name":"uint256","nodeType":"ElementaryTypeName","src":"2194:7:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16688,"mutability":"mutable","name":"v","nameLocation":"2226:1:45","nodeType":"VariableDeclaration","scope":16754,"src":"2220:7:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16687,"name":"uint8","nodeType":"ElementaryTypeName","src":"2220:5:45","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":16690,"mutability":"mutable","name":"r","nameLocation":"2245:1:45","nodeType":"VariableDeclaration","scope":16754,"src":"2237:9:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16689,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2237:7:45","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16692,"mutability":"mutable","name":"s","nameLocation":"2264:1:45","nodeType":"VariableDeclaration","scope":16754,"src":"2256:9:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16691,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2256:7:45","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2113:158:45"},"returnParameters":{"id":16694,"nodeType":"ParameterList","parameters":[],"src":"2287:0:45"},"scope":16782,"src":"2098:672:45","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[18838,24954],"body":{"id":16770,"nodeType":"Block","src":"2920:43:45","statements":[{"expression":{"arguments":[{"id":16767,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16757,"src":"2950:5:45","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":16765,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2937:5:45","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC20PermitUpgradeable_$16782_$","typeString":"type(contract super ERC20PermitUpgradeable)"}},"id":16766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2943:6:45","memberName":"nonces","nodeType":"MemberAccess","referencedDeclaration":18838,"src":"2937:12:45","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":16768,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2937:19:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":16764,"id":16769,"nodeType":"Return","src":"2930:26:45"}]},"documentation":{"id":16755,"nodeType":"StructuredDocumentation","src":"2776:28:45","text":"@inheritdoc IERC20Permit"},"functionSelector":"7ecebe00","id":16771,"implemented":true,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"2818:6:45","nodeType":"FunctionDefinition","overrides":{"id":16761,"nodeType":"OverrideSpecifier","overrides":[{"id":16759,"name":"IERC20Permit","nameLocations":["2869:12:45"],"nodeType":"IdentifierPath","referencedDeclaration":24961,"src":"2869:12:45"},{"id":16760,"name":"NoncesUpgradeable","nameLocations":["2883:17:45"],"nodeType":"IdentifierPath","referencedDeclaration":18886,"src":"2883:17:45"}],"src":"2860:41:45"},"parameters":{"id":16758,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16757,"mutability":"mutable","name":"owner","nameLocation":"2833:5:45","nodeType":"VariableDeclaration","scope":16771,"src":"2825:13:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16756,"name":"address","nodeType":"ElementaryTypeName","src":"2825:7:45","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2824:15:45"},"returnParameters":{"id":16764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16763,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16771,"src":"2911:7:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16762,"name":"uint256","nodeType":"ElementaryTypeName","src":"2911:7:45","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2910:9:45"},"scope":16782,"src":"2809:154:45","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[24960],"body":{"id":16780,"nodeType":"Block","src":"3115:44:45","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":16777,"name":"_domainSeparatorV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19153,"src":"3132:18:45","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":16778,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3132:20:45","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":16776,"id":16779,"nodeType":"Return","src":"3125:27:45"}]},"documentation":{"id":16772,"nodeType":"StructuredDocumentation","src":"2969:28:45","text":"@inheritdoc IERC20Permit"},"functionSelector":"3644e515","id":16781,"implemented":true,"kind":"function","modifiers":[],"name":"DOMAIN_SEPARATOR","nameLocation":"3064:16:45","nodeType":"FunctionDefinition","parameters":{"id":16773,"nodeType":"ParameterList","parameters":[],"src":"3080:2:45"},"returnParameters":{"id":16776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16775,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16781,"src":"3106:7:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16774,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3106:7:45","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3105:9:45"},"scope":16782,"src":"3055:104:45","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":16783,"src":"1109:2052:45","usedErrors":[16648,16655,18789,22518,22523,22528,22537,22542,22547,23183,23186,32725,32730,32735],"usedEvents":[22468,23191,24127,24136]}],"src":"122:3040:45"},"id":45},"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol","exportedSymbols":{"ERC20Upgradeable":[16613],"ERC4626Upgradeable":[17546],"IERC20":[24193],"IERC20Metadata":[24925],"IERC4626":[22463],"Initializable":[23434],"LowLevelCall":[26970],"Math":[35187],"Memory":[27272],"SafeERC20":[25416]},"id":17547,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":16784,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"118:24:46"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"@openzeppelin/contracts/token/ERC20/IERC20.sol","id":16786,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":17547,"sourceUnit":24194,"src":"144:70:46","symbolAliases":[{"foreign":{"id":16785,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"152:6:46","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":16788,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":17547,"sourceUnit":24926,"src":"215:97:46","symbolAliases":[{"foreign":{"id":16787,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"223:14:46","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol","file":"../ERC20Upgradeable.sol","id":16790,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":17547,"sourceUnit":16614,"src":"313:57:46","symbolAliases":[{"foreign":{"id":16789,"name":"ERC20Upgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16613,"src":"321:16:46","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":16792,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":17547,"sourceUnit":25417,"src":"371:82:46","symbolAliases":[{"foreign":{"id":16791,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25416,"src":"379:9:46","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","file":"@openzeppelin/contracts/interfaces/IERC4626.sol","id":16794,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":17547,"sourceUnit":22464,"src":"454:73:46","symbolAliases":[{"foreign":{"id":16793,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22463,"src":"462:8:46","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/LowLevelCall.sol","file":"@openzeppelin/contracts/utils/LowLevelCall.sol","id":16796,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":17547,"sourceUnit":26971,"src":"528:76:46","symbolAliases":[{"foreign":{"id":16795,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"536:12:46","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Memory.sol","file":"@openzeppelin/contracts/utils/Memory.sol","id":16798,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":17547,"sourceUnit":27273,"src":"605:64:46","symbolAliases":[{"foreign":{"id":16797,"name":"Memory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27272,"src":"613:6:46","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":16800,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":17547,"sourceUnit":35188,"src":"670:65:46","symbolAliases":[{"foreign":{"id":16799,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"678:4:46","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":16802,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":17547,"sourceUnit":23435,"src":"736:84:46","symbolAliases":[{"foreign":{"id":16801,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23434,"src":"744:13:46","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":16804,"name":"Initializable","nameLocations":["4903:13:46"],"nodeType":"IdentifierPath","referencedDeclaration":23434,"src":"4903:13:46"},"id":16805,"nodeType":"InheritanceSpecifier","src":"4903:13:46"},{"baseName":{"id":16806,"name":"ERC20Upgradeable","nameLocations":["4918:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":16613,"src":"4918:16:46"},"id":16807,"nodeType":"InheritanceSpecifier","src":"4918:16:46"},{"baseName":{"id":16808,"name":"IERC4626","nameLocations":["4936:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"4936:8:46"},"id":16809,"nodeType":"InheritanceSpecifier","src":"4936:8:46"}],"canonicalName":"ERC4626Upgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":16803,"nodeType":"StructuredDocumentation","src":"822:4040:46","text":" @dev Implementation of the ERC-4626 \"Tokenized Vault Standard\" as defined in\n https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].\n This extension allows the minting and burning of \"shares\" (represented using the ERC-20 inheritance) in exchange for\n underlying \"assets\" through standardized {deposit}, {mint}, {redeem} and {burn} workflows. This contract extends\n the ERC-20 standard. Any additional extensions included along it would affect the \"shares\" token represented by this\n contract and not the \"assets\" token which is an independent contract.\n [CAUTION]\n ====\n In empty (or nearly empty) ERC-4626 vaults, deposits are at high risk of being stolen through frontrunning\n with a \"donation\" to the vault that inflates the price of a share. This is variously known as a donation or inflation\n attack and is essentially a problem of slippage. Vault deployers can protect against this attack by making an initial\n deposit of a non-trivial amount of the asset, such that price manipulation becomes infeasible. Withdrawals may\n similarly be affected by slippage. Users can protect against this attack as well as unexpected slippage in general by\n verifying the amount received is as expected, using a wrapper that performs these checks such as\n https://github.com/fei-protocol/ERC4626#erc4626router-and-base[ERC4626Router].\n Since v4.9, this implementation introduces configurable virtual assets and shares to help developers mitigate that risk.\n The `_decimalsOffset()` corresponds to an offset in the decimal representation between the underlying asset's decimals\n and the vault decimals. This offset also determines the rate of virtual shares to virtual assets in the vault, which\n itself determines the initial exchange rate. While not fully preventing the attack, analysis shows that the default\n offset (0) makes it non-profitable even if an attacker is able to capture value from multiple user deposits, as a result\n of the value being captured by the virtual shares (out of the attacker's donation) matching the attacker's expected gains.\n With a larger offset, the attack becomes orders of magnitude more expensive than it is profitable. More details about the\n underlying math can be found xref:ROOT:erc4626.adoc#inflation-attack[here].\n The drawback of this approach is that the virtual shares do capture (a very small) part of the value being accrued\n to the vault. Also, if the vault experiences losses, the users try to exit the vault, the virtual shares and assets\n will cause the first user to exit to experience reduced losses in detriment to the last users that will experience\n bigger losses. Developers willing to revert back to the pre-v4.9 behavior just need to override the\n `_convertToShares` and `_convertToAssets` functions.\n To learn more, check out our xref:ROOT:erc4626.adoc[ERC-4626 guide].\n ====\n [NOTE]\n ====\n When overriding this contract, some elements must be considered:\n * When overriding the behavior of the deposit or withdraw mechanisms, it is recommended to override the internal\n functions. Overriding {_deposit} automatically affects both {deposit} and {mint}. Similarly, overriding {_withdraw}\n automatically affects both {withdraw} and {redeem}. Overall it is not recommended to override the public facing\n functions since that could lead to inconsistent behaviors between the {deposit} and {mint} or between {withdraw} and\n {redeem}, which is documented to have lead to loss of funds.\n * Overrides to the deposit or withdraw mechanism must be reflected in the preview functions as well.\n * {maxWithdraw} depends on {maxRedeem}. Therefore, overriding {maxRedeem} only is enough. On the other hand,\n overriding {maxWithdraw} only would have no effect on {maxRedeem}, and could create an inconsistency between the two\n functions.\n * If {previewRedeem} is overridden to revert, {maxWithdraw} must be overridden as necessary to ensure it\n always return successfully.\n ===="},"fullyImplemented":true,"id":17546,"linearizedBaseContracts":[17546,22463,16613,22548,24925,24193,18672,23434],"name":"ERC4626Upgradeable","nameLocation":"4881:18:46","nodeType":"ContractDefinition","nodes":[{"global":false,"id":16812,"libraryName":{"id":16810,"name":"Math","nameLocations":["4957:4:46"],"nodeType":"IdentifierPath","referencedDeclaration":35187,"src":"4957:4:46"},"nodeType":"UsingForDirective","src":"4951:23:46","typeName":{"id":16811,"name":"uint256","nodeType":"ElementaryTypeName","src":"4966:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"canonicalName":"ERC4626Upgradeable.ERC4626Storage","documentation":{"id":16813,"nodeType":"StructuredDocumentation","src":"4980:65:46","text":"@custom:storage-location erc7201:openzeppelin.storage.ERC4626"},"id":16819,"members":[{"constant":false,"id":16816,"mutability":"mutable","name":"_asset","nameLocation":"5089:6:46","nodeType":"VariableDeclaration","scope":16819,"src":"5082:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":16815,"nodeType":"UserDefinedTypeName","pathNode":{"id":16814,"name":"IERC20","nameLocations":["5082:6:46"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"5082:6:46"},"referencedDeclaration":24193,"src":"5082:6:46","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":16818,"mutability":"mutable","name":"_underlyingDecimals","nameLocation":"5111:19:46","nodeType":"VariableDeclaration","scope":16819,"src":"5105:25:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16817,"name":"uint8","nodeType":"ElementaryTypeName","src":"5105:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"name":"ERC4626Storage","nameLocation":"5057:14:46","nodeType":"StructDefinition","scope":17546,"src":"5050:87:46","visibility":"public"},{"constant":true,"id":16822,"mutability":"constant","name":"ERC4626StorageLocation","nameLocation":"5279:22:46","nodeType":"VariableDeclaration","scope":17546,"src":"5254:116:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16820,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5254:7:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307830373733653533326466656465393166303462313261373364336432616364333631343234663431663736623466623739663039303136316533366234653030","id":16821,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5304:66:46","typeDescriptions":{"typeIdentifier":"t_rational_3370959224025639111533709689598502374825270023453997444744848480697785732608_by_1","typeString":"int_const 3370...(68 digits omitted)...2608"},"value":"0x0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e00"},"visibility":"private"},{"body":{"id":16829,"nodeType":"Block","src":"5455:81:46","statements":[{"AST":{"nativeSrc":"5474:56:46","nodeType":"YulBlock","src":"5474:56:46","statements":[{"nativeSrc":"5488:32:46","nodeType":"YulAssignment","src":"5488:32:46","value":{"name":"ERC4626StorageLocation","nativeSrc":"5498:22:46","nodeType":"YulIdentifier","src":"5498:22:46"},"variableNames":[{"name":"$.slot","nativeSrc":"5488:6:46","nodeType":"YulIdentifier","src":"5488:6:46"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":16826,"isOffset":false,"isSlot":true,"src":"5488:6:46","suffix":"slot","valueSize":1},{"declaration":16822,"isOffset":false,"isSlot":false,"src":"5498:22:46","valueSize":1}],"id":16828,"nodeType":"InlineAssembly","src":"5465:65:46"}]},"id":16830,"implemented":true,"kind":"function","modifiers":[],"name":"_getERC4626Storage","nameLocation":"5386:18:46","nodeType":"FunctionDefinition","parameters":{"id":16823,"nodeType":"ParameterList","parameters":[],"src":"5404:2:46"},"returnParameters":{"id":16827,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16826,"mutability":"mutable","name":"$","nameLocation":"5452:1:46","nodeType":"VariableDeclaration","scope":16830,"src":"5429:24:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$16819_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"},"typeName":{"id":16825,"nodeType":"UserDefinedTypeName","pathNode":{"id":16824,"name":"ERC4626Storage","nameLocations":["5429:14:46"],"nodeType":"IdentifierPath","referencedDeclaration":16819,"src":"5429:14:46"},"referencedDeclaration":16819,"src":"5429:14:46","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$16819_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"}},"visibility":"internal"}],"src":"5428:26:46"},"scope":17546,"src":"5377:159:46","stateMutability":"pure","virtual":false,"visibility":"private"},{"documentation":{"id":16831,"nodeType":"StructuredDocumentation","src":"5542:92:46","text":" @dev Attempted to deposit more assets than the max amount for `receiver`."},"errorSelector":"79012fb2","id":16839,"name":"ERC4626ExceededMaxDeposit","nameLocation":"5645:25:46","nodeType":"ErrorDefinition","parameters":{"id":16838,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16833,"mutability":"mutable","name":"receiver","nameLocation":"5679:8:46","nodeType":"VariableDeclaration","scope":16839,"src":"5671:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16832,"name":"address","nodeType":"ElementaryTypeName","src":"5671:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16835,"mutability":"mutable","name":"assets","nameLocation":"5697:6:46","nodeType":"VariableDeclaration","scope":16839,"src":"5689:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16834,"name":"uint256","nodeType":"ElementaryTypeName","src":"5689:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16837,"mutability":"mutable","name":"max","nameLocation":"5713:3:46","nodeType":"VariableDeclaration","scope":16839,"src":"5705:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16836,"name":"uint256","nodeType":"ElementaryTypeName","src":"5705:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5670:47:46"},"src":"5639:79:46"},{"documentation":{"id":16840,"nodeType":"StructuredDocumentation","src":"5724:89:46","text":" @dev Attempted to mint more shares than the max amount for `receiver`."},"errorSelector":"284ff667","id":16848,"name":"ERC4626ExceededMaxMint","nameLocation":"5824:22:46","nodeType":"ErrorDefinition","parameters":{"id":16847,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16842,"mutability":"mutable","name":"receiver","nameLocation":"5855:8:46","nodeType":"VariableDeclaration","scope":16848,"src":"5847:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16841,"name":"address","nodeType":"ElementaryTypeName","src":"5847:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16844,"mutability":"mutable","name":"shares","nameLocation":"5873:6:46","nodeType":"VariableDeclaration","scope":16848,"src":"5865:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16843,"name":"uint256","nodeType":"ElementaryTypeName","src":"5865:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16846,"mutability":"mutable","name":"max","nameLocation":"5889:3:46","nodeType":"VariableDeclaration","scope":16848,"src":"5881:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16845,"name":"uint256","nodeType":"ElementaryTypeName","src":"5881:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5846:47:46"},"src":"5818:76:46"},{"documentation":{"id":16849,"nodeType":"StructuredDocumentation","src":"5900:93:46","text":" @dev Attempted to withdraw more assets than the max amount for `receiver`."},"errorSelector":"fe9cceec","id":16857,"name":"ERC4626ExceededMaxWithdraw","nameLocation":"6004:26:46","nodeType":"ErrorDefinition","parameters":{"id":16856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16851,"mutability":"mutable","name":"owner","nameLocation":"6039:5:46","nodeType":"VariableDeclaration","scope":16857,"src":"6031:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16850,"name":"address","nodeType":"ElementaryTypeName","src":"6031:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16853,"mutability":"mutable","name":"assets","nameLocation":"6054:6:46","nodeType":"VariableDeclaration","scope":16857,"src":"6046:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16852,"name":"uint256","nodeType":"ElementaryTypeName","src":"6046:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16855,"mutability":"mutable","name":"max","nameLocation":"6070:3:46","nodeType":"VariableDeclaration","scope":16857,"src":"6062:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16854,"name":"uint256","nodeType":"ElementaryTypeName","src":"6062:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6030:44:46"},"src":"5998:77:46"},{"documentation":{"id":16858,"nodeType":"StructuredDocumentation","src":"6081:91:46","text":" @dev Attempted to redeem more shares than the max amount for `receiver`."},"errorSelector":"b94abeec","id":16866,"name":"ERC4626ExceededMaxRedeem","nameLocation":"6183:24:46","nodeType":"ErrorDefinition","parameters":{"id":16865,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16860,"mutability":"mutable","name":"owner","nameLocation":"6216:5:46","nodeType":"VariableDeclaration","scope":16866,"src":"6208:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16859,"name":"address","nodeType":"ElementaryTypeName","src":"6208:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16862,"mutability":"mutable","name":"shares","nameLocation":"6231:6:46","nodeType":"VariableDeclaration","scope":16866,"src":"6223:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16861,"name":"uint256","nodeType":"ElementaryTypeName","src":"6223:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16864,"mutability":"mutable","name":"max","nameLocation":"6247:3:46","nodeType":"VariableDeclaration","scope":16866,"src":"6239:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16863,"name":"uint256","nodeType":"ElementaryTypeName","src":"6239:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6207:44:46"},"src":"6177:75:46"},{"body":{"id":16879,"nodeType":"Block","src":"6449:49:46","statements":[{"expression":{"arguments":[{"id":16876,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16870,"src":"6484:6:46","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}],"id":16875,"name":"__ERC4626_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16918,"src":"6459:24:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$returns$__$","typeString":"function (contract IERC20)"}},"id":16877,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6459:32:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16878,"nodeType":"ExpressionStatement","src":"6459:32:46"}]},"documentation":{"id":16867,"nodeType":"StructuredDocumentation","src":"6258:121:46","text":" @dev Set the underlying asset contract. This must be an ERC20-compatible contract (ERC-20 or ERC-777)."},"id":16880,"implemented":true,"kind":"function","modifiers":[{"id":16873,"kind":"modifierInvocation","modifierName":{"id":16872,"name":"onlyInitializing","nameLocations":["6432:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"6432:16:46"},"nodeType":"ModifierInvocation","src":"6432:16:46"}],"name":"__ERC4626_init","nameLocation":"6393:14:46","nodeType":"FunctionDefinition","parameters":{"id":16871,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16870,"mutability":"mutable","name":"asset_","nameLocation":"6415:6:46","nodeType":"VariableDeclaration","scope":16880,"src":"6408:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":16869,"nodeType":"UserDefinedTypeName","pathNode":{"id":16868,"name":"IERC20","nameLocations":["6408:6:46"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"6408:6:46"},"referencedDeclaration":24193,"src":"6408:6:46","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"}],"src":"6407:15:46"},"returnParameters":{"id":16874,"nodeType":"ParameterList","parameters":[],"src":"6449:0:46"},"scope":17546,"src":"6384:114:46","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":16917,"nodeType":"Block","src":"6579:229:46","statements":[{"assignments":[16890],"declarations":[{"constant":false,"id":16890,"mutability":"mutable","name":"$","nameLocation":"6612:1:46","nodeType":"VariableDeclaration","scope":16917,"src":"6589:24:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$16819_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"},"typeName":{"id":16889,"nodeType":"UserDefinedTypeName","pathNode":{"id":16888,"name":"ERC4626Storage","nameLocations":["6589:14:46"],"nodeType":"IdentifierPath","referencedDeclaration":16819,"src":"6589:14:46"},"referencedDeclaration":16819,"src":"6589:14:46","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$16819_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"}},"visibility":"internal"}],"id":16893,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":16891,"name":"_getERC4626Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16830,"src":"6616:18:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC4626Storage_$16819_storage_ptr_$","typeString":"function () pure returns (struct ERC4626Upgradeable.ERC4626Storage storage pointer)"}},"id":16892,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6616:20:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$16819_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"6589:47:46"},{"assignments":[16895,16897],"declarations":[{"constant":false,"id":16895,"mutability":"mutable","name":"success","nameLocation":"6652:7:46","nodeType":"VariableDeclaration","scope":16917,"src":"6647:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16894,"name":"bool","nodeType":"ElementaryTypeName","src":"6647:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":16897,"mutability":"mutable","name":"assetDecimals","nameLocation":"6667:13:46","nodeType":"VariableDeclaration","scope":16917,"src":"6661:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16896,"name":"uint8","nodeType":"ElementaryTypeName","src":"6661:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":16901,"initialValue":{"arguments":[{"id":16899,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16883,"src":"6705:6:46","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}],"id":16898,"name":"_tryGetAssetDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16996,"src":"6684:20:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_contract$_IERC20_$24193_$returns$_t_bool_$_t_uint8_$","typeString":"function (contract IERC20) view returns (bool,uint8)"}},"id":16900,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6684:28:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint8_$","typeString":"tuple(bool,uint8)"}},"nodeType":"VariableDeclarationStatement","src":"6646:66:46"},{"expression":{"id":16909,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":16902,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16890,"src":"6722:1:46","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$16819_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"id":16904,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6724:19:46","memberName":"_underlyingDecimals","nodeType":"MemberAccess","referencedDeclaration":16818,"src":"6722:21:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"condition":{"id":16905,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16895,"src":"6746:7:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"3138","id":16907,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6772:2:46","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"id":16908,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"6746:28:46","trueExpression":{"id":16906,"name":"assetDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16897,"src":"6756:13:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6722:52:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":16910,"nodeType":"ExpressionStatement","src":"6722:52:46"},{"expression":{"id":16915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":16911,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16890,"src":"6784:1:46","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$16819_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"id":16913,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6786:6:46","memberName":"_asset","nodeType":"MemberAccess","referencedDeclaration":16816,"src":"6784:8:46","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":16914,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16883,"src":"6795:6:46","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"src":"6784:17:46","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"id":16916,"nodeType":"ExpressionStatement","src":"6784:17:46"}]},"id":16918,"implemented":true,"kind":"function","modifiers":[{"id":16886,"kind":"modifierInvocation","modifierName":{"id":16885,"name":"onlyInitializing","nameLocations":["6562:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"6562:16:46"},"nodeType":"ModifierInvocation","src":"6562:16:46"}],"name":"__ERC4626_init_unchained","nameLocation":"6513:24:46","nodeType":"FunctionDefinition","parameters":{"id":16884,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16883,"mutability":"mutable","name":"asset_","nameLocation":"6545:6:46","nodeType":"VariableDeclaration","scope":16918,"src":"6538:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":16882,"nodeType":"UserDefinedTypeName","pathNode":{"id":16881,"name":"IERC20","nameLocations":["6538:6:46"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"6538:6:46"},"referencedDeclaration":24193,"src":"6538:6:46","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"}],"src":"6537:15:46"},"returnParameters":{"id":16887,"nodeType":"ParameterList","parameters":[],"src":"6579:0:46"},"scope":17546,"src":"6504:304:46","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":16995,"nodeType":"Block","src":"7048:510:46","statements":[{"assignments":[16933],"declarations":[{"constant":false,"id":16933,"mutability":"mutable","name":"ptr","nameLocation":"7073:3:46","nodeType":"VariableDeclaration","scope":16995,"src":"7058:18:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"},"typeName":{"id":16932,"nodeType":"UserDefinedTypeName","pathNode":{"id":16931,"name":"Memory.Pointer","nameLocations":["7058:6:46","7065:7:46"],"nodeType":"IdentifierPath","referencedDeclaration":26979,"src":"7058:14:46"},"referencedDeclaration":26979,"src":"7058:14:46","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"visibility":"internal"}],"id":16937,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":16934,"name":"Memory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27272,"src":"7079:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Memory_$27272_$","typeString":"type(library Memory)"}},"id":16935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7086:20:46","memberName":"getFreeMemoryPointer","nodeType":"MemberAccess","referencedDeclaration":26988,"src":"7079:27:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_userDefinedValueType$_Pointer_$26979_$","typeString":"function () pure returns (Memory.Pointer)"}},"id":16936,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7079:29:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"nodeType":"VariableDeclarationStatement","src":"7058:50:46"},{"assignments":[16939,16941,null],"declarations":[{"constant":false,"id":16939,"mutability":"mutable","name":"success","nameLocation":"7124:7:46","nodeType":"VariableDeclaration","scope":16995,"src":"7119:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16938,"name":"bool","nodeType":"ElementaryTypeName","src":"7119:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":16941,"mutability":"mutable","name":"returnedDecimals","nameLocation":"7141:16:46","nodeType":"VariableDeclaration","scope":16995,"src":"7133:24:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16940,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7133:7:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},null],"id":16955,"initialValue":{"arguments":[{"arguments":[{"id":16946,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16922,"src":"7221:6:46","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}],"id":16945,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7213:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":16944,"name":"address","nodeType":"ElementaryTypeName","src":"7213:7:46","typeDescriptions":{}}},"id":16947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7213:15:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"expression":{"id":16950,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"7257:14:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$24925_$","typeString":"type(contract IERC20Metadata)"}},"id":16951,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7272:8:46","memberName":"decimals","nodeType":"MemberAccess","referencedDeclaration":24924,"src":"7257:23:46","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$__$returns$_t_uint8_$","typeString":"function IERC20Metadata.decimals() view returns (uint8)"}},{"components":[],"id":16952,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"7282:2:46","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_declaration_view$__$returns$_t_uint8_$","typeString":"function IERC20Metadata.decimals() view returns (uint8)"},{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}],"expression":{"id":16948,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"7242:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":16949,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7246:10:46","memberName":"encodeCall","nodeType":"MemberAccess","src":"7242:14:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":16953,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7242:43:46","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":16942,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"7163:12:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":16943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7176:23:46","memberName":"staticcallReturn64Bytes","nodeType":"MemberAccess","referencedDeclaration":26912,"src":"7163:36:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes32_$_t_bytes32_$","typeString":"function (address,bytes memory) view returns (bool,bytes32,bytes32)"}},"id":16954,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7163:132:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes32_$_t_bytes32_$","typeString":"tuple(bool,bytes32,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"7118:177:46"},{"expression":{"arguments":[{"id":16959,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16933,"src":"7333:3:46","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}],"expression":{"id":16956,"name":"Memory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27272,"src":"7305:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Memory_$27272_$","typeString":"type(library Memory)"}},"id":16958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7312:20:46","memberName":"setFreeMemoryPointer","nodeType":"MemberAccess","referencedDeclaration":26997,"src":"7305:27:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Pointer_$26979_$returns$__$","typeString":"function (Memory.Pointer) pure"}},"id":16960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7305:32:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16961,"nodeType":"ExpressionStatement","src":"7305:32:46"},{"expression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":16979,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":16968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16962,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16939,"src":"7368:7:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":16963,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"7379:12:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":16964,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7392:14:46","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":26948,"src":"7379:27:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":16965,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7379:29:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3332","id":16966,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7412:2:46","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"7379:35:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7368:46:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16971,"name":"returnedDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16941,"src":"7426:16:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":16970,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7418:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":16969,"name":"uint256","nodeType":"ElementaryTypeName","src":"7418:7:46","typeDescriptions":{}}},"id":16972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7418:25:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":16975,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7452:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16974,"name":"uint8","nodeType":"ElementaryTypeName","src":"7452:5:46","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":16973,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7447:4:46","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":16976,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7447:11:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":16977,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7459:3:46","memberName":"max","nodeType":"MemberAccess","src":"7447:15:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"7418:44:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7368:94:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":16980,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7367:96:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"hexValue":"66616c7365","id":16990,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7542:5:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":16991,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7549:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":16992,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"7541:10:46","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"id":16993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"7367:184:46","trueExpression":{"components":[{"hexValue":"74727565","id":16981,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7483:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"arguments":[{"arguments":[{"id":16986,"name":"returnedDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16941,"src":"7503:16:46","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":16985,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7495:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":16984,"name":"uint256","nodeType":"ElementaryTypeName","src":"7495:7:46","typeDescriptions":{}}},"id":16987,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7495:25:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16983,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7489:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16982,"name":"uint8","nodeType":"ElementaryTypeName","src":"7489:5:46","typeDescriptions":{}}},"id":16988,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7489:32:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":16989,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7482:40:46","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint8_$","typeString":"tuple(bool,uint8)"}},"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint8_$","typeString":"tuple(bool,uint8)"}},"functionReturnParameters":16928,"id":16994,"nodeType":"Return","src":"7348:203:46"}]},"documentation":{"id":16919,"nodeType":"StructuredDocumentation","src":"6814:132:46","text":" @dev Attempts to fetch the asset decimals. A return value of false indicates that the attempt failed in some way."},"id":16996,"implemented":true,"kind":"function","modifiers":[],"name":"_tryGetAssetDecimals","nameLocation":"6960:20:46","nodeType":"FunctionDefinition","parameters":{"id":16923,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16922,"mutability":"mutable","name":"asset_","nameLocation":"6988:6:46","nodeType":"VariableDeclaration","scope":16996,"src":"6981:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":16921,"nodeType":"UserDefinedTypeName","pathNode":{"id":16920,"name":"IERC20","nameLocations":["6981:6:46"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"6981:6:46"},"referencedDeclaration":24193,"src":"6981:6:46","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"}],"src":"6980:15:46"},"returnParameters":{"id":16928,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16925,"mutability":"mutable","name":"ok","nameLocation":"7023:2:46","nodeType":"VariableDeclaration","scope":16996,"src":"7018:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16924,"name":"bool","nodeType":"ElementaryTypeName","src":"7018:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":16927,"mutability":"mutable","name":"assetDecimals","nameLocation":"7033:13:46","nodeType":"VariableDeclaration","scope":16996,"src":"7027:19:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16926,"name":"uint8","nodeType":"ElementaryTypeName","src":"7027:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"7017:30:46"},"scope":17546,"src":"6951:607:46","stateMutability":"view","virtual":false,"visibility":"private"},{"baseFunctions":[16133,24924],"body":{"id":17017,"nodeType":"Block","src":"8062:122:46","statements":[{"assignments":[17007],"declarations":[{"constant":false,"id":17007,"mutability":"mutable","name":"$","nameLocation":"8095:1:46","nodeType":"VariableDeclaration","scope":17017,"src":"8072:24:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$16819_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"},"typeName":{"id":17006,"nodeType":"UserDefinedTypeName","pathNode":{"id":17005,"name":"ERC4626Storage","nameLocations":["8072:14:46"],"nodeType":"IdentifierPath","referencedDeclaration":16819,"src":"8072:14:46"},"referencedDeclaration":16819,"src":"8072:14:46","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$16819_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"}},"visibility":"internal"}],"id":17010,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":17008,"name":"_getERC4626Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16830,"src":"8099:18:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC4626Storage_$16819_storage_ptr_$","typeString":"function () pure returns (struct ERC4626Upgradeable.ERC4626Storage storage pointer)"}},"id":17009,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8099:20:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$16819_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"8072:47:46"},{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17015,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17011,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17007,"src":"8136:1:46","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$16819_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"id":17012,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8138:19:46","memberName":"_underlyingDecimals","nodeType":"MemberAccess","referencedDeclaration":16818,"src":"8136:21:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":17013,"name":"_decimalsOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17545,"src":"8160:15:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":17014,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8160:17:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"8136:41:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":17004,"id":17016,"nodeType":"Return","src":"8129:48:46"}]},"documentation":{"id":16997,"nodeType":"StructuredDocumentation","src":"7564:394:46","text":" @dev Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This\n \"original\" value is cached during construction of the vault contract. If this read operation fails (e.g., the\n asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals.\n See {IERC20Metadata-decimals}."},"functionSelector":"313ce567","id":17018,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"7972:8:46","nodeType":"FunctionDefinition","overrides":{"id":17001,"nodeType":"OverrideSpecifier","overrides":[{"id":16999,"name":"IERC20Metadata","nameLocations":["8012:14:46"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"8012:14:46"},{"id":17000,"name":"ERC20Upgradeable","nameLocations":["8028:16:46"],"nodeType":"IdentifierPath","referencedDeclaration":16613,"src":"8028:16:46"}],"src":"8003:42:46"},"parameters":{"id":16998,"nodeType":"ParameterList","parameters":[],"src":"7980:2:46"},"returnParameters":{"id":17004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17003,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17018,"src":"8055:5:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17002,"name":"uint8","nodeType":"ElementaryTypeName","src":"8055:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"8054:7:46"},"scope":17546,"src":"7963:221:46","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22332],"body":{"id":17036,"nodeType":"Block","src":"8274:98:46","statements":[{"assignments":[17026],"declarations":[{"constant":false,"id":17026,"mutability":"mutable","name":"$","nameLocation":"8307:1:46","nodeType":"VariableDeclaration","scope":17036,"src":"8284:24:46","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$16819_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"},"typeName":{"id":17025,"nodeType":"UserDefinedTypeName","pathNode":{"id":17024,"name":"ERC4626Storage","nameLocations":["8284:14:46"],"nodeType":"IdentifierPath","referencedDeclaration":16819,"src":"8284:14:46"},"referencedDeclaration":16819,"src":"8284:14:46","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$16819_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage"}},"visibility":"internal"}],"id":17029,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":17027,"name":"_getERC4626Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16830,"src":"8311:18:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC4626Storage_$16819_storage_ptr_$","typeString":"function () pure returns (struct ERC4626Upgradeable.ERC4626Storage storage pointer)"}},"id":17028,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8311:20:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$16819_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"8284:47:46"},{"expression":{"arguments":[{"expression":{"id":17032,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17026,"src":"8356:1:46","typeDescriptions":{"typeIdentifier":"t_struct$_ERC4626Storage_$16819_storage_ptr","typeString":"struct ERC4626Upgradeable.ERC4626Storage storage pointer"}},"id":17033,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8358:6:46","memberName":"_asset","nodeType":"MemberAccess","referencedDeclaration":16816,"src":"8356:8:46","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}],"id":17031,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8348:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":17030,"name":"address","nodeType":"ElementaryTypeName","src":"8348:7:46","typeDescriptions":{}}},"id":17034,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8348:17:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":17023,"id":17035,"nodeType":"Return","src":"8341:24:46"}]},"documentation":{"id":17019,"nodeType":"StructuredDocumentation","src":"8190:24:46","text":"@inheritdoc IERC4626"},"functionSelector":"38d52e0f","id":17037,"implemented":true,"kind":"function","modifiers":[],"name":"asset","nameLocation":"8228:5:46","nodeType":"FunctionDefinition","parameters":{"id":17020,"nodeType":"ParameterList","parameters":[],"src":"8233:2:46"},"returnParameters":{"id":17023,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17022,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17037,"src":"8265:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17021,"name":"address","nodeType":"ElementaryTypeName","src":"8265:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8264:9:46"},"scope":17546,"src":"8219:153:46","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22338],"body":{"id":17054,"nodeType":"Block","src":"8468:64:46","statements":[{"expression":{"arguments":[{"arguments":[{"id":17050,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"8519:4:46","typeDescriptions":{"typeIdentifier":"t_contract$_ERC4626Upgradeable_$17546","typeString":"contract ERC4626Upgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC4626Upgradeable_$17546","typeString":"contract ERC4626Upgradeable"}],"id":17049,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8511:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":17048,"name":"address","nodeType":"ElementaryTypeName","src":"8511:7:46","typeDescriptions":{}}},"id":17051,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8511:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":17044,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17037,"src":"8492:5:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":17045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8492:7:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":17043,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"8485:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$24193_$","typeString":"type(contract IERC20)"}},"id":17046,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8485:15:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"id":17047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8501:9:46","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":24150,"src":"8485:25:46","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":17052,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8485:40:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17042,"id":17053,"nodeType":"Return","src":"8478:47:46"}]},"documentation":{"id":17038,"nodeType":"StructuredDocumentation","src":"8378:24:46","text":"@inheritdoc IERC4626"},"functionSelector":"01e1d114","id":17055,"implemented":true,"kind":"function","modifiers":[],"name":"totalAssets","nameLocation":"8416:11:46","nodeType":"FunctionDefinition","parameters":{"id":17039,"nodeType":"ParameterList","parameters":[],"src":"8427:2:46"},"returnParameters":{"id":17042,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17041,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17055,"src":"8459:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17040,"name":"uint256","nodeType":"ElementaryTypeName","src":"8459:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8458:9:46"},"scope":17546,"src":"8407:125:46","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22346],"body":{"id":17070,"nodeType":"Block","src":"8646:69:46","statements":[{"expression":{"arguments":[{"id":17064,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17058,"src":"8680:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":17065,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"8688:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":17066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8693:8:46","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":33557,"src":"8688:13:46","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$33557_$","typeString":"type(enum Math.Rounding)"}},"id":17067,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8702:5:46","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":33553,"src":"8688:19:46","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":17063,"name":"_convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17419,"src":"8663:16:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":17068,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8663:45:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17062,"id":17069,"nodeType":"Return","src":"8656:52:46"}]},"documentation":{"id":17056,"nodeType":"StructuredDocumentation","src":"8538:24:46","text":"@inheritdoc IERC4626"},"functionSelector":"c6e6f592","id":17071,"implemented":true,"kind":"function","modifiers":[],"name":"convertToShares","nameLocation":"8576:15:46","nodeType":"FunctionDefinition","parameters":{"id":17059,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17058,"mutability":"mutable","name":"assets","nameLocation":"8600:6:46","nodeType":"VariableDeclaration","scope":17071,"src":"8592:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17057,"name":"uint256","nodeType":"ElementaryTypeName","src":"8592:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8591:16:46"},"returnParameters":{"id":17062,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17061,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17071,"src":"8637:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17060,"name":"uint256","nodeType":"ElementaryTypeName","src":"8637:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8636:9:46"},"scope":17546,"src":"8567:148:46","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22354],"body":{"id":17086,"nodeType":"Block","src":"8829:69:46","statements":[{"expression":{"arguments":[{"id":17080,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17074,"src":"8863:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":17081,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"8871:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":17082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8876:8:46","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":33557,"src":"8871:13:46","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$33557_$","typeString":"type(enum Math.Rounding)"}},"id":17083,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8885:5:46","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":33553,"src":"8871:19:46","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":17079,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17447,"src":"8846:16:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":17084,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8846:45:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17078,"id":17085,"nodeType":"Return","src":"8839:52:46"}]},"documentation":{"id":17072,"nodeType":"StructuredDocumentation","src":"8721:24:46","text":"@inheritdoc IERC4626"},"functionSelector":"07a2d13a","id":17087,"implemented":true,"kind":"function","modifiers":[],"name":"convertToAssets","nameLocation":"8759:15:46","nodeType":"FunctionDefinition","parameters":{"id":17075,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17074,"mutability":"mutable","name":"shares","nameLocation":"8783:6:46","nodeType":"VariableDeclaration","scope":17087,"src":"8775:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17073,"name":"uint256","nodeType":"ElementaryTypeName","src":"8775:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8774:16:46"},"returnParameters":{"id":17078,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17077,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17087,"src":"8820:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17076,"name":"uint256","nodeType":"ElementaryTypeName","src":"8820:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8819:9:46"},"scope":17546,"src":"8750:148:46","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22362],"body":{"id":17101,"nodeType":"Block","src":"9000:41:46","statements":[{"expression":{"expression":{"arguments":[{"id":17097,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9022:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":17096,"name":"uint256","nodeType":"ElementaryTypeName","src":"9022:7:46","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":17095,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9017:4:46","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":17098,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9017:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":17099,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9031:3:46","memberName":"max","nodeType":"MemberAccess","src":"9017:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17094,"id":17100,"nodeType":"Return","src":"9010:24:46"}]},"documentation":{"id":17088,"nodeType":"StructuredDocumentation","src":"8904:24:46","text":"@inheritdoc IERC4626"},"functionSelector":"402d267d","id":17102,"implemented":true,"kind":"function","modifiers":[],"name":"maxDeposit","nameLocation":"8942:10:46","nodeType":"FunctionDefinition","parameters":{"id":17091,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17090,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17102,"src":"8953:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17089,"name":"address","nodeType":"ElementaryTypeName","src":"8953:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8952:9:46"},"returnParameters":{"id":17094,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17093,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17102,"src":"8991:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17092,"name":"uint256","nodeType":"ElementaryTypeName","src":"8991:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8990:9:46"},"scope":17546,"src":"8933:108:46","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22388],"body":{"id":17116,"nodeType":"Block","src":"9140:41:46","statements":[{"expression":{"expression":{"arguments":[{"id":17112,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9162:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":17111,"name":"uint256","nodeType":"ElementaryTypeName","src":"9162:7:46","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":17110,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9157:4:46","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":17113,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9157:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":17114,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9171:3:46","memberName":"max","nodeType":"MemberAccess","src":"9157:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17109,"id":17115,"nodeType":"Return","src":"9150:24:46"}]},"documentation":{"id":17103,"nodeType":"StructuredDocumentation","src":"9047:24:46","text":"@inheritdoc IERC4626"},"functionSelector":"c63d75b6","id":17117,"implemented":true,"kind":"function","modifiers":[],"name":"maxMint","nameLocation":"9085:7:46","nodeType":"FunctionDefinition","parameters":{"id":17106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17105,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17117,"src":"9093:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17104,"name":"address","nodeType":"ElementaryTypeName","src":"9093:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9092:9:46"},"returnParameters":{"id":17109,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17108,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17117,"src":"9131:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17107,"name":"uint256","nodeType":"ElementaryTypeName","src":"9131:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9130:9:46"},"scope":17546,"src":"9076:105:46","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22414],"body":{"id":17131,"nodeType":"Block","src":"9290:55:46","statements":[{"expression":{"arguments":[{"arguments":[{"id":17127,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17120,"src":"9331:5:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":17126,"name":"maxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17145,"src":"9321:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":17128,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9321:16:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17125,"name":"previewRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17209,"src":"9307:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":17129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9307:31:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17124,"id":17130,"nodeType":"Return","src":"9300:38:46"}]},"documentation":{"id":17118,"nodeType":"StructuredDocumentation","src":"9187:24:46","text":"@inheritdoc IERC4626"},"functionSelector":"ce96cb77","id":17132,"implemented":true,"kind":"function","modifiers":[],"name":"maxWithdraw","nameLocation":"9225:11:46","nodeType":"FunctionDefinition","parameters":{"id":17121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17120,"mutability":"mutable","name":"owner","nameLocation":"9245:5:46","nodeType":"VariableDeclaration","scope":17132,"src":"9237:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17119,"name":"address","nodeType":"ElementaryTypeName","src":"9237:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9236:15:46"},"returnParameters":{"id":17124,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17123,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17132,"src":"9281:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17122,"name":"uint256","nodeType":"ElementaryTypeName","src":"9281:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9280:9:46"},"scope":17546,"src":"9216:129:46","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22442],"body":{"id":17144,"nodeType":"Block","src":"9452:40:46","statements":[{"expression":{"arguments":[{"id":17141,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17135,"src":"9479:5:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":17140,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16169,"src":"9469:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":17142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9469:16:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17139,"id":17143,"nodeType":"Return","src":"9462:23:46"}]},"documentation":{"id":17133,"nodeType":"StructuredDocumentation","src":"9351:24:46","text":"@inheritdoc IERC4626"},"functionSelector":"d905777e","id":17145,"implemented":true,"kind":"function","modifiers":[],"name":"maxRedeem","nameLocation":"9389:9:46","nodeType":"FunctionDefinition","parameters":{"id":17136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17135,"mutability":"mutable","name":"owner","nameLocation":"9407:5:46","nodeType":"VariableDeclaration","scope":17145,"src":"9399:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17134,"name":"address","nodeType":"ElementaryTypeName","src":"9399:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9398:15:46"},"returnParameters":{"id":17139,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17138,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17145,"src":"9443:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17137,"name":"uint256","nodeType":"ElementaryTypeName","src":"9443:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9442:9:46"},"scope":17546,"src":"9380:112:46","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22370],"body":{"id":17160,"nodeType":"Block","src":"9605:69:46","statements":[{"expression":{"arguments":[{"id":17154,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17148,"src":"9639:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":17155,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"9647:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":17156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9652:8:46","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":33557,"src":"9647:13:46","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$33557_$","typeString":"type(enum Math.Rounding)"}},"id":17157,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9661:5:46","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":33553,"src":"9647:19:46","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":17153,"name":"_convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17419,"src":"9622:16:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":17158,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9622:45:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17152,"id":17159,"nodeType":"Return","src":"9615:52:46"}]},"documentation":{"id":17146,"nodeType":"StructuredDocumentation","src":"9498:24:46","text":"@inheritdoc IERC4626"},"functionSelector":"ef8b30f7","id":17161,"implemented":true,"kind":"function","modifiers":[],"name":"previewDeposit","nameLocation":"9536:14:46","nodeType":"FunctionDefinition","parameters":{"id":17149,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17148,"mutability":"mutable","name":"assets","nameLocation":"9559:6:46","nodeType":"VariableDeclaration","scope":17161,"src":"9551:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17147,"name":"uint256","nodeType":"ElementaryTypeName","src":"9551:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9550:16:46"},"returnParameters":{"id":17152,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17151,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17161,"src":"9596:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17150,"name":"uint256","nodeType":"ElementaryTypeName","src":"9596:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9595:9:46"},"scope":17546,"src":"9527:147:46","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22396],"body":{"id":17176,"nodeType":"Block","src":"9784:68:46","statements":[{"expression":{"arguments":[{"id":17170,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17164,"src":"9818:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":17171,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"9826:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":17172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9831:8:46","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":33557,"src":"9826:13:46","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$33557_$","typeString":"type(enum Math.Rounding)"}},"id":17173,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9840:4:46","memberName":"Ceil","nodeType":"MemberAccess","referencedDeclaration":33554,"src":"9826:18:46","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":17169,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17447,"src":"9801:16:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":17174,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9801:44:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17168,"id":17175,"nodeType":"Return","src":"9794:51:46"}]},"documentation":{"id":17162,"nodeType":"StructuredDocumentation","src":"9680:24:46","text":"@inheritdoc IERC4626"},"functionSelector":"b3d7f6b9","id":17177,"implemented":true,"kind":"function","modifiers":[],"name":"previewMint","nameLocation":"9718:11:46","nodeType":"FunctionDefinition","parameters":{"id":17165,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17164,"mutability":"mutable","name":"shares","nameLocation":"9738:6:46","nodeType":"VariableDeclaration","scope":17177,"src":"9730:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17163,"name":"uint256","nodeType":"ElementaryTypeName","src":"9730:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9729:16:46"},"returnParameters":{"id":17168,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17167,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17177,"src":"9775:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17166,"name":"uint256","nodeType":"ElementaryTypeName","src":"9775:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9774:9:46"},"scope":17546,"src":"9709:143:46","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22422],"body":{"id":17192,"nodeType":"Block","src":"9966:68:46","statements":[{"expression":{"arguments":[{"id":17186,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17180,"src":"10000:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":17187,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"10008:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":17188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10013:8:46","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":33557,"src":"10008:13:46","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$33557_$","typeString":"type(enum Math.Rounding)"}},"id":17189,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10022:4:46","memberName":"Ceil","nodeType":"MemberAccess","referencedDeclaration":33554,"src":"10008:18:46","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":17185,"name":"_convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17419,"src":"9983:16:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":17190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9983:44:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17184,"id":17191,"nodeType":"Return","src":"9976:51:46"}]},"documentation":{"id":17178,"nodeType":"StructuredDocumentation","src":"9858:24:46","text":"@inheritdoc IERC4626"},"functionSelector":"0a28a477","id":17193,"implemented":true,"kind":"function","modifiers":[],"name":"previewWithdraw","nameLocation":"9896:15:46","nodeType":"FunctionDefinition","parameters":{"id":17181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17180,"mutability":"mutable","name":"assets","nameLocation":"9920:6:46","nodeType":"VariableDeclaration","scope":17193,"src":"9912:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17179,"name":"uint256","nodeType":"ElementaryTypeName","src":"9912:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9911:16:46"},"returnParameters":{"id":17184,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17183,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17193,"src":"9957:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17182,"name":"uint256","nodeType":"ElementaryTypeName","src":"9957:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9956:9:46"},"scope":17546,"src":"9887:147:46","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22450],"body":{"id":17208,"nodeType":"Block","src":"10146:69:46","statements":[{"expression":{"arguments":[{"id":17202,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17196,"src":"10180:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":17203,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"10188:4:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":17204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10193:8:46","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":33557,"src":"10188:13:46","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$33557_$","typeString":"type(enum Math.Rounding)"}},"id":17205,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10202:5:46","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":33553,"src":"10188:19:46","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":17201,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17447,"src":"10163:16:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":17206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10163:45:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17200,"id":17207,"nodeType":"Return","src":"10156:52:46"}]},"documentation":{"id":17194,"nodeType":"StructuredDocumentation","src":"10040:24:46","text":"@inheritdoc IERC4626"},"functionSelector":"4cdad506","id":17209,"implemented":true,"kind":"function","modifiers":[],"name":"previewRedeem","nameLocation":"10078:13:46","nodeType":"FunctionDefinition","parameters":{"id":17197,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17196,"mutability":"mutable","name":"shares","nameLocation":"10100:6:46","nodeType":"VariableDeclaration","scope":17209,"src":"10092:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17195,"name":"uint256","nodeType":"ElementaryTypeName","src":"10092:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10091:16:46"},"returnParameters":{"id":17200,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17199,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17209,"src":"10137:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17198,"name":"uint256","nodeType":"ElementaryTypeName","src":"10137:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10136:9:46"},"scope":17546,"src":"10069:146:46","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22380],"body":{"id":17252,"nodeType":"Block","src":"10334:308:46","statements":[{"assignments":[17220],"declarations":[{"constant":false,"id":17220,"mutability":"mutable","name":"maxAssets","nameLocation":"10352:9:46","nodeType":"VariableDeclaration","scope":17252,"src":"10344:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17219,"name":"uint256","nodeType":"ElementaryTypeName","src":"10344:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17224,"initialValue":{"arguments":[{"id":17222,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17214,"src":"10375:8:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":17221,"name":"maxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17102,"src":"10364:10:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":17223,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10364:20:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10344:40:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17225,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17212,"src":"10398:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":17226,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17220,"src":"10407:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10398:18:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17235,"nodeType":"IfStatement","src":"10394:110:46","trueBody":{"id":17234,"nodeType":"Block","src":"10418:86:46","statements":[{"errorCall":{"arguments":[{"id":17229,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17214,"src":"10465:8:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17230,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17212,"src":"10475:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17231,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17220,"src":"10483:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17228,"name":"ERC4626ExceededMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16839,"src":"10439:25:46","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":17232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10439:54:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17233,"nodeType":"RevertStatement","src":"10432:61:46"}]}},{"assignments":[17237],"declarations":[{"constant":false,"id":17237,"mutability":"mutable","name":"shares","nameLocation":"10522:6:46","nodeType":"VariableDeclaration","scope":17252,"src":"10514:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17236,"name":"uint256","nodeType":"ElementaryTypeName","src":"10514:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17241,"initialValue":{"arguments":[{"id":17239,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17212,"src":"10546:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17238,"name":"previewDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17161,"src":"10531:14:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":17240,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10531:22:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10514:39:46"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":17243,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"10572:10:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":17244,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10572:12:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17245,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17214,"src":"10586:8:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17246,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17212,"src":"10596:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17247,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17237,"src":"10604:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17242,"name":"_deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17487,"src":"10563:8:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":17248,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10563:48:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17249,"nodeType":"ExpressionStatement","src":"10563:48:46"},{"expression":{"id":17250,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17237,"src":"10629:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17218,"id":17251,"nodeType":"Return","src":"10622:13:46"}]},"documentation":{"id":17210,"nodeType":"StructuredDocumentation","src":"10221:24:46","text":"@inheritdoc IERC4626"},"functionSelector":"6e553f65","id":17253,"implemented":true,"kind":"function","modifiers":[],"name":"deposit","nameLocation":"10259:7:46","nodeType":"FunctionDefinition","parameters":{"id":17215,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17212,"mutability":"mutable","name":"assets","nameLocation":"10275:6:46","nodeType":"VariableDeclaration","scope":17253,"src":"10267:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17211,"name":"uint256","nodeType":"ElementaryTypeName","src":"10267:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17214,"mutability":"mutable","name":"receiver","nameLocation":"10291:8:46","nodeType":"VariableDeclaration","scope":17253,"src":"10283:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17213,"name":"address","nodeType":"ElementaryTypeName","src":"10283:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10266:34:46"},"returnParameters":{"id":17218,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17217,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17253,"src":"10325:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17216,"name":"uint256","nodeType":"ElementaryTypeName","src":"10325:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10324:9:46"},"scope":17546,"src":"10250:392:46","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[22406],"body":{"id":17296,"nodeType":"Block","src":"10758:299:46","statements":[{"assignments":[17264],"declarations":[{"constant":false,"id":17264,"mutability":"mutable","name":"maxShares","nameLocation":"10776:9:46","nodeType":"VariableDeclaration","scope":17296,"src":"10768:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17263,"name":"uint256","nodeType":"ElementaryTypeName","src":"10768:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17268,"initialValue":{"arguments":[{"id":17266,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17258,"src":"10796:8:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":17265,"name":"maxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17117,"src":"10788:7:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":17267,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10788:17:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10768:37:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17269,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17256,"src":"10819:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":17270,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17264,"src":"10828:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10819:18:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17279,"nodeType":"IfStatement","src":"10815:107:46","trueBody":{"id":17278,"nodeType":"Block","src":"10839:83:46","statements":[{"errorCall":{"arguments":[{"id":17273,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17258,"src":"10883:8:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17274,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17256,"src":"10893:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17275,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17264,"src":"10901:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17272,"name":"ERC4626ExceededMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16848,"src":"10860:22:46","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":17276,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10860:51:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17277,"nodeType":"RevertStatement","src":"10853:58:46"}]}},{"assignments":[17281],"declarations":[{"constant":false,"id":17281,"mutability":"mutable","name":"assets","nameLocation":"10940:6:46","nodeType":"VariableDeclaration","scope":17296,"src":"10932:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17280,"name":"uint256","nodeType":"ElementaryTypeName","src":"10932:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17285,"initialValue":{"arguments":[{"id":17283,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17256,"src":"10961:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17282,"name":"previewMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17177,"src":"10949:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":17284,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10949:19:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10932:36:46"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":17287,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"10987:10:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":17288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10987:12:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17289,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17258,"src":"11001:8:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17290,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17281,"src":"11011:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17291,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17256,"src":"11019:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17286,"name":"_deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17487,"src":"10978:8:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":17292,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10978:48:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17293,"nodeType":"ExpressionStatement","src":"10978:48:46"},{"expression":{"id":17294,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17281,"src":"11044:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17262,"id":17295,"nodeType":"Return","src":"11037:13:46"}]},"documentation":{"id":17254,"nodeType":"StructuredDocumentation","src":"10648:24:46","text":"@inheritdoc IERC4626"},"functionSelector":"94bf804d","id":17297,"implemented":true,"kind":"function","modifiers":[],"name":"mint","nameLocation":"10686:4:46","nodeType":"FunctionDefinition","parameters":{"id":17259,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17256,"mutability":"mutable","name":"shares","nameLocation":"10699:6:46","nodeType":"VariableDeclaration","scope":17297,"src":"10691:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17255,"name":"uint256","nodeType":"ElementaryTypeName","src":"10691:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17258,"mutability":"mutable","name":"receiver","nameLocation":"10715:8:46","nodeType":"VariableDeclaration","scope":17297,"src":"10707:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17257,"name":"address","nodeType":"ElementaryTypeName","src":"10707:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10690:34:46"},"returnParameters":{"id":17262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17261,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17297,"src":"10749:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17260,"name":"uint256","nodeType":"ElementaryTypeName","src":"10749:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10748:9:46"},"scope":17546,"src":"10677:380:46","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[22434],"body":{"id":17343,"nodeType":"Block","src":"11192:313:46","statements":[{"assignments":[17310],"declarations":[{"constant":false,"id":17310,"mutability":"mutable","name":"maxAssets","nameLocation":"11210:9:46","nodeType":"VariableDeclaration","scope":17343,"src":"11202:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17309,"name":"uint256","nodeType":"ElementaryTypeName","src":"11202:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17314,"initialValue":{"arguments":[{"id":17312,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17304,"src":"11234:5:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":17311,"name":"maxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17132,"src":"11222:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":17313,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11222:18:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11202:38:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17315,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17300,"src":"11254:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":17316,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17310,"src":"11263:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11254:18:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17325,"nodeType":"IfStatement","src":"11250:108:46","trueBody":{"id":17324,"nodeType":"Block","src":"11274:84:46","statements":[{"errorCall":{"arguments":[{"id":17319,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17304,"src":"11322:5:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17320,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17300,"src":"11329:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17321,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17310,"src":"11337:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17318,"name":"ERC4626ExceededMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16857,"src":"11295:26:46","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":17322,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11295:52:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17323,"nodeType":"RevertStatement","src":"11288:59:46"}]}},{"assignments":[17327],"declarations":[{"constant":false,"id":17327,"mutability":"mutable","name":"shares","nameLocation":"11376:6:46","nodeType":"VariableDeclaration","scope":17343,"src":"11368:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17326,"name":"uint256","nodeType":"ElementaryTypeName","src":"11368:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17331,"initialValue":{"arguments":[{"id":17329,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17300,"src":"11401:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17328,"name":"previewWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17193,"src":"11385:15:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":17330,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11385:23:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11368:40:46"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":17333,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"11428:10:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":17334,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11428:12:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17335,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17302,"src":"11442:8:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17336,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17304,"src":"11452:5:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17337,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17300,"src":"11459:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17338,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17327,"src":"11467:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17332,"name":"_withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17537,"src":"11418:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":17339,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11418:56:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17340,"nodeType":"ExpressionStatement","src":"11418:56:46"},{"expression":{"id":17341,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17327,"src":"11492:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17308,"id":17342,"nodeType":"Return","src":"11485:13:46"}]},"documentation":{"id":17298,"nodeType":"StructuredDocumentation","src":"11063:24:46","text":"@inheritdoc IERC4626"},"functionSelector":"b460af94","id":17344,"implemented":true,"kind":"function","modifiers":[],"name":"withdraw","nameLocation":"11101:8:46","nodeType":"FunctionDefinition","parameters":{"id":17305,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17300,"mutability":"mutable","name":"assets","nameLocation":"11118:6:46","nodeType":"VariableDeclaration","scope":17344,"src":"11110:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17299,"name":"uint256","nodeType":"ElementaryTypeName","src":"11110:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17302,"mutability":"mutable","name":"receiver","nameLocation":"11134:8:46","nodeType":"VariableDeclaration","scope":17344,"src":"11126:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17301,"name":"address","nodeType":"ElementaryTypeName","src":"11126:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17304,"mutability":"mutable","name":"owner","nameLocation":"11152:5:46","nodeType":"VariableDeclaration","scope":17344,"src":"11144:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17303,"name":"address","nodeType":"ElementaryTypeName","src":"11144:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11109:49:46"},"returnParameters":{"id":17308,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17307,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17344,"src":"11183:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17306,"name":"uint256","nodeType":"ElementaryTypeName","src":"11183:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11182:9:46"},"scope":17546,"src":"11092:413:46","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[22462],"body":{"id":17390,"nodeType":"Block","src":"11638:307:46","statements":[{"assignments":[17357],"declarations":[{"constant":false,"id":17357,"mutability":"mutable","name":"maxShares","nameLocation":"11656:9:46","nodeType":"VariableDeclaration","scope":17390,"src":"11648:17:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17356,"name":"uint256","nodeType":"ElementaryTypeName","src":"11648:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17361,"initialValue":{"arguments":[{"id":17359,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17351,"src":"11678:5:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":17358,"name":"maxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17145,"src":"11668:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":17360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11668:16:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11648:36:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17362,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17347,"src":"11698:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":17363,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17357,"src":"11707:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11698:18:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17372,"nodeType":"IfStatement","src":"11694:106:46","trueBody":{"id":17371,"nodeType":"Block","src":"11718:82:46","statements":[{"errorCall":{"arguments":[{"id":17366,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17351,"src":"11764:5:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17367,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17347,"src":"11771:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17368,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17357,"src":"11779:9:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17365,"name":"ERC4626ExceededMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16866,"src":"11739:24:46","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":17369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11739:50:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17370,"nodeType":"RevertStatement","src":"11732:57:46"}]}},{"assignments":[17374],"declarations":[{"constant":false,"id":17374,"mutability":"mutable","name":"assets","nameLocation":"11818:6:46","nodeType":"VariableDeclaration","scope":17390,"src":"11810:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17373,"name":"uint256","nodeType":"ElementaryTypeName","src":"11810:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17378,"initialValue":{"arguments":[{"id":17376,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17347,"src":"11841:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17375,"name":"previewRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17209,"src":"11827:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":17377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11827:21:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11810:38:46"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":17380,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"11868:10:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":17381,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11868:12:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17382,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17349,"src":"11882:8:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17383,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17351,"src":"11892:5:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17384,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17374,"src":"11899:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17385,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17347,"src":"11907:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17379,"name":"_withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17537,"src":"11858:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":17386,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11858:56:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17387,"nodeType":"ExpressionStatement","src":"11858:56:46"},{"expression":{"id":17388,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17374,"src":"11932:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17355,"id":17389,"nodeType":"Return","src":"11925:13:46"}]},"documentation":{"id":17345,"nodeType":"StructuredDocumentation","src":"11511:24:46","text":"@inheritdoc IERC4626"},"functionSelector":"ba087652","id":17391,"implemented":true,"kind":"function","modifiers":[],"name":"redeem","nameLocation":"11549:6:46","nodeType":"FunctionDefinition","parameters":{"id":17352,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17347,"mutability":"mutable","name":"shares","nameLocation":"11564:6:46","nodeType":"VariableDeclaration","scope":17391,"src":"11556:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17346,"name":"uint256","nodeType":"ElementaryTypeName","src":"11556:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17349,"mutability":"mutable","name":"receiver","nameLocation":"11580:8:46","nodeType":"VariableDeclaration","scope":17391,"src":"11572:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17348,"name":"address","nodeType":"ElementaryTypeName","src":"11572:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17351,"mutability":"mutable","name":"owner","nameLocation":"11598:5:46","nodeType":"VariableDeclaration","scope":17391,"src":"11590:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17350,"name":"address","nodeType":"ElementaryTypeName","src":"11590:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11555:49:46"},"returnParameters":{"id":17355,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17354,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17391,"src":"11629:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17353,"name":"uint256","nodeType":"ElementaryTypeName","src":"11629:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11628:9:46"},"scope":17546,"src":"11540:405:46","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":17418,"nodeType":"Block","src":"12175:107:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":17404,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16149,"src":"12206:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":17405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12206:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":17406,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12222:2:46","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":17407,"name":"_decimalsOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17545,"src":"12228:15:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":17408,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12228:17:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"12222:23:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12206:39:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17414,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":17411,"name":"totalAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17055,"src":"12247:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":17412,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12247:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":17413,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12263:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"12247:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17415,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17397,"src":"12266:8:46","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"expression":{"id":17402,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17394,"src":"12192:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12199:6:46","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34109,"src":"12192:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256,enum Math.Rounding) pure returns (uint256)"}},"id":17416,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12192:83:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17401,"id":17417,"nodeType":"Return","src":"12185:90:46"}]},"documentation":{"id":17392,"nodeType":"StructuredDocumentation","src":"11951:113:46","text":" @dev Internal conversion function (from assets to shares) with support for rounding direction."},"id":17419,"implemented":true,"kind":"function","modifiers":[],"name":"_convertToShares","nameLocation":"12078:16:46","nodeType":"FunctionDefinition","parameters":{"id":17398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17394,"mutability":"mutable","name":"assets","nameLocation":"12103:6:46","nodeType":"VariableDeclaration","scope":17419,"src":"12095:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17393,"name":"uint256","nodeType":"ElementaryTypeName","src":"12095:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17397,"mutability":"mutable","name":"rounding","nameLocation":"12125:8:46","nodeType":"VariableDeclaration","scope":17419,"src":"12111:22:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"},"typeName":{"id":17396,"nodeType":"UserDefinedTypeName","pathNode":{"id":17395,"name":"Math.Rounding","nameLocations":["12111:4:46","12116:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":33557,"src":"12111:13:46"},"referencedDeclaration":33557,"src":"12111:13:46","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"12094:40:46"},"returnParameters":{"id":17401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17400,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17419,"src":"12166:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17399,"name":"uint256","nodeType":"ElementaryTypeName","src":"12166:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12165:9:46"},"scope":17546,"src":"12069:213:46","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":17446,"nodeType":"Block","src":"12512:107:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":17432,"name":"totalAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17055,"src":"12543:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":17433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12543:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":17434,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12559:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"12543:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":17436,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16149,"src":"12562:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":17437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12562:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":17438,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12578:2:46","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":17439,"name":"_decimalsOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17545,"src":"12584:15:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":17440,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12584:17:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"12578:23:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12562:39:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17443,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17425,"src":"12603:8:46","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"expression":{"id":17430,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17422,"src":"12529:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12536:6:46","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34109,"src":"12529:13:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256,enum Math.Rounding) pure returns (uint256)"}},"id":17444,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12529:83:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17429,"id":17445,"nodeType":"Return","src":"12522:90:46"}]},"documentation":{"id":17420,"nodeType":"StructuredDocumentation","src":"12288:113:46","text":" @dev Internal conversion function (from shares to assets) with support for rounding direction."},"id":17447,"implemented":true,"kind":"function","modifiers":[],"name":"_convertToAssets","nameLocation":"12415:16:46","nodeType":"FunctionDefinition","parameters":{"id":17426,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17422,"mutability":"mutable","name":"shares","nameLocation":"12440:6:46","nodeType":"VariableDeclaration","scope":17447,"src":"12432:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17421,"name":"uint256","nodeType":"ElementaryTypeName","src":"12432:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17425,"mutability":"mutable","name":"rounding","nameLocation":"12462:8:46","nodeType":"VariableDeclaration","scope":17447,"src":"12448:22:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"},"typeName":{"id":17424,"nodeType":"UserDefinedTypeName","pathNode":{"id":17423,"name":"Math.Rounding","nameLocations":["12448:4:46","12453:8:46"],"nodeType":"IdentifierPath","referencedDeclaration":33557,"src":"12448:13:46"},"referencedDeclaration":33557,"src":"12448:13:46","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"12431:40:46"},"returnParameters":{"id":17429,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17428,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17447,"src":"12503:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17427,"name":"uint256","nodeType":"ElementaryTypeName","src":"12503:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12502:9:46"},"scope":17546,"src":"12406:213:46","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":17486,"nodeType":"Block","src":"12784:740:46","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":17463,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17037,"src":"13387:5:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":17464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13387:7:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":17462,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"13380:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$24193_$","typeString":"type(contract IERC20)"}},"id":17465,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13380:15:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},{"id":17466,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17450,"src":"13397:6:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":17469,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"13413:4:46","typeDescriptions":{"typeIdentifier":"t_contract$_ERC4626Upgradeable_$17546","typeString":"contract ERC4626Upgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC4626Upgradeable_$17546","typeString":"contract ERC4626Upgradeable"}],"id":17468,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13405:7:46","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":17467,"name":"address","nodeType":"ElementaryTypeName","src":"13405:7:46","typeDescriptions":{}}},"id":17470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13405:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17471,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17454,"src":"13420:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":17459,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25416,"src":"13353:9:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeERC20_$25416_$","typeString":"type(library SafeERC20)"}},"id":17461,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13363:16:46","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":25041,"src":"13353:26:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":17472,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13353:74:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17473,"nodeType":"ExpressionStatement","src":"13353:74:46"},{"expression":{"arguments":[{"id":17475,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17452,"src":"13443:8:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17476,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17456,"src":"13453:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17474,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16445,"src":"13437:5:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":17477,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13437:23:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17478,"nodeType":"ExpressionStatement","src":"13437:23:46"},{"eventCall":{"arguments":[{"id":17480,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17450,"src":"13484:6:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17481,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17452,"src":"13492:8:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17482,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17454,"src":"13502:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17483,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17456,"src":"13510:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17479,"name":"Deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22314,"src":"13476:7:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":17484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13476:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17485,"nodeType":"EmitStatement","src":"13471:46:46"}]},"documentation":{"id":17448,"nodeType":"StructuredDocumentation","src":"12625:53:46","text":" @dev Deposit/mint common workflow."},"id":17487,"implemented":true,"kind":"function","modifiers":[],"name":"_deposit","nameLocation":"12692:8:46","nodeType":"FunctionDefinition","parameters":{"id":17457,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17450,"mutability":"mutable","name":"caller","nameLocation":"12709:6:46","nodeType":"VariableDeclaration","scope":17487,"src":"12701:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17449,"name":"address","nodeType":"ElementaryTypeName","src":"12701:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17452,"mutability":"mutable","name":"receiver","nameLocation":"12725:8:46","nodeType":"VariableDeclaration","scope":17487,"src":"12717:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17451,"name":"address","nodeType":"ElementaryTypeName","src":"12717:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17454,"mutability":"mutable","name":"assets","nameLocation":"12743:6:46","nodeType":"VariableDeclaration","scope":17487,"src":"12735:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17453,"name":"uint256","nodeType":"ElementaryTypeName","src":"12735:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17456,"mutability":"mutable","name":"shares","nameLocation":"12759:6:46","nodeType":"VariableDeclaration","scope":17487,"src":"12751:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17455,"name":"uint256","nodeType":"ElementaryTypeName","src":"12751:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12700:66:46"},"returnParameters":{"id":17458,"nodeType":"ParameterList","parameters":[],"src":"12784:0:46"},"scope":17546,"src":"12683:841:46","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":17536,"nodeType":"Block","src":"13754:762:46","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":17503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17501,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17490,"src":"13768:6:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17502,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17494,"src":"13778:5:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"13768:15:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17511,"nodeType":"IfStatement","src":"13764:84:46","trueBody":{"id":17510,"nodeType":"Block","src":"13785:63:46","statements":[{"expression":{"arguments":[{"id":17505,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17494,"src":"13815:5:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17506,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17490,"src":"13822:6:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17507,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17498,"src":"13830:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17504,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16612,"src":"13799:15:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":17508,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13799:38:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17509,"nodeType":"ExpressionStatement","src":"13799:38:46"}]}},{"expression":{"arguments":[{"id":17513,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17494,"src":"14363:5:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17514,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17498,"src":"14370:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17512,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16478,"src":"14357:5:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":17515,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14357:20:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17516,"nodeType":"ExpressionStatement","src":"14357:20:46"},{"expression":{"arguments":[{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":17521,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17037,"src":"14417:5:46","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":17522,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14417:7:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":17520,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"14410:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$24193_$","typeString":"type(contract IERC20)"}},"id":17523,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14410:15:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},{"id":17524,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17492,"src":"14427:8:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17525,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17496,"src":"14437:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":17517,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25416,"src":"14387:9:46","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeERC20_$25416_$","typeString":"type(library SafeERC20)"}},"id":17519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14397:12:46","memberName":"safeTransfer","nodeType":"MemberAccess","referencedDeclaration":25010,"src":"14387:22:46","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":17526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14387:57:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17527,"nodeType":"ExpressionStatement","src":"14387:57:46"},{"eventCall":{"arguments":[{"id":17529,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17490,"src":"14469:6:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17530,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17492,"src":"14477:8:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17531,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17494,"src":"14487:5:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17532,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17496,"src":"14494:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17533,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17498,"src":"14502:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17528,"name":"Withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22326,"src":"14460:8:46","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":17534,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14460:49:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17535,"nodeType":"EmitStatement","src":"14455:54:46"}]},"documentation":{"id":17488,"nodeType":"StructuredDocumentation","src":"13530:56:46","text":" @dev Withdraw/redeem common workflow."},"id":17537,"implemented":true,"kind":"function","modifiers":[],"name":"_withdraw","nameLocation":"13600:9:46","nodeType":"FunctionDefinition","parameters":{"id":17499,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17490,"mutability":"mutable","name":"caller","nameLocation":"13627:6:46","nodeType":"VariableDeclaration","scope":17537,"src":"13619:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17489,"name":"address","nodeType":"ElementaryTypeName","src":"13619:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17492,"mutability":"mutable","name":"receiver","nameLocation":"13651:8:46","nodeType":"VariableDeclaration","scope":17537,"src":"13643:16:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17491,"name":"address","nodeType":"ElementaryTypeName","src":"13643:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17494,"mutability":"mutable","name":"owner","nameLocation":"13677:5:46","nodeType":"VariableDeclaration","scope":17537,"src":"13669:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17493,"name":"address","nodeType":"ElementaryTypeName","src":"13669:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17496,"mutability":"mutable","name":"assets","nameLocation":"13700:6:46","nodeType":"VariableDeclaration","scope":17537,"src":"13692:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17495,"name":"uint256","nodeType":"ElementaryTypeName","src":"13692:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17498,"mutability":"mutable","name":"shares","nameLocation":"13724:6:46","nodeType":"VariableDeclaration","scope":17537,"src":"13716:14:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17497,"name":"uint256","nodeType":"ElementaryTypeName","src":"13716:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13609:127:46"},"returnParameters":{"id":17500,"nodeType":"ParameterList","parameters":[],"src":"13754:0:46"},"scope":17546,"src":"13591:925:46","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":17544,"nodeType":"Block","src":"14587:25:46","statements":[{"expression":{"hexValue":"30","id":17542,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14604:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":17541,"id":17543,"nodeType":"Return","src":"14597:8:46"}]},"id":17545,"implemented":true,"kind":"function","modifiers":[],"name":"_decimalsOffset","nameLocation":"14531:15:46","nodeType":"FunctionDefinition","parameters":{"id":17538,"nodeType":"ParameterList","parameters":[],"src":"14546:2:46"},"returnParameters":{"id":17541,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17540,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17545,"src":"14580:5:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17539,"name":"uint8","nodeType":"ElementaryTypeName","src":"14580:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"14579:7:46"},"scope":17546,"src":"14522:90:46","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":17547,"src":"4863:9751:46","usedErrors":[16839,16848,16857,16866,22518,22523,22528,22537,22542,22547,23183,23186,24973],"usedEvents":[22314,22326,23191,24127,24136]}],"src":"118:14497:46"},"id":46},"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol","exportedSymbols":{"ContextUpgradeable":[18672],"ERC165Upgradeable":[19430],"ERC721Upgradeable":[18626],"ERC721Utils":[25656],"IERC165":[33545],"IERC721":[25533],"IERC721Errors":[22596],"IERC721Metadata":[25579],"Initializable":[23434],"Strings":[32714]},"id":18627,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":17548,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"107:24:47"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","file":"@openzeppelin/contracts/token/ERC721/IERC721.sol","id":17550,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18627,"sourceUnit":25534,"src":"133:73:47","symbolAliases":[{"foreign":{"id":17549,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25533,"src":"141:7:47","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol","file":"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol","id":17552,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18627,"sourceUnit":25580,"src":"207:100:47","symbolAliases":[{"foreign":{"id":17551,"name":"IERC721Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25579,"src":"215:15:47","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol","file":"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol","id":17554,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18627,"sourceUnit":25657,"src":"308:87:47","symbolAliases":[{"foreign":{"id":17553,"name":"ERC721Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25656,"src":"316:11:47","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"../../utils/ContextUpgradeable.sol","id":17556,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18627,"sourceUnit":18673,"src":"396:70:47","symbolAliases":[{"foreign":{"id":17555,"name":"ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18672,"src":"404:18:47","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","file":"@openzeppelin/contracts/utils/Strings.sol","id":17558,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18627,"sourceUnit":32715,"src":"467:66:47","symbolAliases":[{"foreign":{"id":17557,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32714,"src":"475:7:47","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":17560,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18627,"sourceUnit":33546,"src":"534:80:47","symbolAliases":[{"foreign":{"id":17559,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"542:7:47","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol","file":"../../utils/introspection/ERC165Upgradeable.sol","id":17562,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18627,"sourceUnit":19431,"src":"615:82:47","symbolAliases":[{"foreign":{"id":17561,"name":"ERC165Upgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19430,"src":"623:17:47","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","id":17564,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18627,"sourceUnit":22644,"src":"698:84:47","symbolAliases":[{"foreign":{"id":17563,"name":"IERC721Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22596,"src":"706:13:47","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":17566,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18627,"sourceUnit":23435,"src":"783:84:47","symbolAliases":[{"foreign":{"id":17565,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23434,"src":"791:13:47","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":17568,"name":"Initializable","nameLocations":["1156:13:47"],"nodeType":"IdentifierPath","referencedDeclaration":23434,"src":"1156:13:47"},"id":17569,"nodeType":"InheritanceSpecifier","src":"1156:13:47"},{"baseName":{"id":17570,"name":"ContextUpgradeable","nameLocations":["1171:18:47"],"nodeType":"IdentifierPath","referencedDeclaration":18672,"src":"1171:18:47"},"id":17571,"nodeType":"InheritanceSpecifier","src":"1171:18:47"},{"baseName":{"id":17572,"name":"ERC165Upgradeable","nameLocations":["1191:17:47"],"nodeType":"IdentifierPath","referencedDeclaration":19430,"src":"1191:17:47"},"id":17573,"nodeType":"InheritanceSpecifier","src":"1191:17:47"},{"baseName":{"id":17574,"name":"IERC721","nameLocations":["1210:7:47"],"nodeType":"IdentifierPath","referencedDeclaration":25533,"src":"1210:7:47"},"id":17575,"nodeType":"InheritanceSpecifier","src":"1210:7:47"},{"baseName":{"id":17576,"name":"IERC721Metadata","nameLocations":["1219:15:47"],"nodeType":"IdentifierPath","referencedDeclaration":25579,"src":"1219:15:47"},"id":17577,"nodeType":"InheritanceSpecifier","src":"1219:15:47"},{"baseName":{"id":17578,"name":"IERC721Errors","nameLocations":["1236:13:47"],"nodeType":"IdentifierPath","referencedDeclaration":22596,"src":"1236:13:47"},"id":17579,"nodeType":"InheritanceSpecifier","src":"1236:13:47"}],"canonicalName":"ERC721Upgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":17567,"nodeType":"StructuredDocumentation","src":"869:247:47","text":" @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including\n the Metadata extension, but not including the Enumerable extension, which is available separately as\n {ERC721Enumerable}."},"fullyImplemented":true,"id":18626,"linearizedBaseContracts":[18626,22596,25579,25533,19430,33545,18672,23434],"name":"ERC721Upgradeable","nameLocation":"1135:17:47","nodeType":"ContractDefinition","nodes":[{"global":false,"id":17582,"libraryName":{"id":17580,"name":"Strings","nameLocations":["1262:7:47"],"nodeType":"IdentifierPath","referencedDeclaration":32714,"src":"1262:7:47"},"nodeType":"UsingForDirective","src":"1256:26:47","typeName":{"id":17581,"name":"uint256","nodeType":"ElementaryTypeName","src":"1274:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"canonicalName":"ERC721Upgradeable.ERC721Storage","documentation":{"id":17583,"nodeType":"StructuredDocumentation","src":"1288:64:47","text":"@custom:storage-location erc7201:openzeppelin.storage.ERC721"},"id":17606,"members":[{"constant":false,"id":17585,"mutability":"mutable","name":"_name","nameLocation":"1417:5:47","nodeType":"VariableDeclaration","scope":17606,"src":"1410:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":17584,"name":"string","nodeType":"ElementaryTypeName","src":"1410:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":17587,"mutability":"mutable","name":"_symbol","nameLocation":"1464:7:47","nodeType":"VariableDeclaration","scope":17606,"src":"1457:14:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":17586,"name":"string","nodeType":"ElementaryTypeName","src":"1457:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":17591,"mutability":"mutable","name":"_owners","nameLocation":"1518:7:47","nodeType":"VariableDeclaration","scope":17606,"src":"1482:43:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"},"typeName":{"id":17590,"keyName":"tokenId","keyNameLocation":"1498:7:47","keyType":{"id":17588,"name":"uint256","nodeType":"ElementaryTypeName","src":"1490:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1482:35:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":17589,"name":"address","nodeType":"ElementaryTypeName","src":"1509:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"internal"},{"constant":false,"id":17595,"mutability":"mutable","name":"_balances","nameLocation":"1570:9:47","nodeType":"VariableDeclaration","scope":17606,"src":"1536:43:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":17594,"keyName":"owner","keyNameLocation":"1552:5:47","keyType":{"id":17592,"name":"address","nodeType":"ElementaryTypeName","src":"1544:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1536:33:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":17593,"name":"uint256","nodeType":"ElementaryTypeName","src":"1561:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"id":17599,"mutability":"mutable","name":"_tokenApprovals","nameLocation":"1626:15:47","nodeType":"VariableDeclaration","scope":17606,"src":"1590:51:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"},"typeName":{"id":17598,"keyName":"tokenId","keyNameLocation":"1606:7:47","keyType":{"id":17596,"name":"uint256","nodeType":"ElementaryTypeName","src":"1598:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1590:35:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":17597,"name":"address","nodeType":"ElementaryTypeName","src":"1617:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"internal"},{"constant":false,"id":17605,"mutability":"mutable","name":"_operatorApprovals","nameLocation":"1712:18:47","nodeType":"VariableDeclaration","scope":17606,"src":"1652:78:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$","typeString":"mapping(address => mapping(address => bool))"},"typeName":{"id":17604,"keyName":"owner","keyNameLocation":"1668:5:47","keyType":{"id":17600,"name":"address","nodeType":"ElementaryTypeName","src":"1660:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1652:59:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$","typeString":"mapping(address => mapping(address => bool))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":17603,"keyName":"operator","keyNameLocation":"1693:8:47","keyType":{"id":17601,"name":"address","nodeType":"ElementaryTypeName","src":"1685:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1677:33:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":17602,"name":"bool","nodeType":"ElementaryTypeName","src":"1705:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}}},"visibility":"internal"}],"name":"ERC721Storage","nameLocation":"1364:13:47","nodeType":"StructDefinition","scope":18626,"src":"1357:380:47","visibility":"public"},{"constant":true,"id":17609,"mutability":"constant","name":"ERC721StorageLocation","nameLocation":"1878:21:47","nodeType":"VariableDeclaration","scope":18626,"src":"1853:115:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":17607,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1853:7:47","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307838306262326236333863633230626334643061363064363639343066336162346130306331643762333133343937636138326662306234616230303739333030","id":17608,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1902:66:47","typeDescriptions":{"typeIdentifier":"t_rational_58226744478722834339948329933988999792353370511964151963072532422914231210752_by_1","typeString":"int_const 5822...(69 digits omitted)...0752"},"value":"0x80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300"},"visibility":"private"},{"body":{"id":17616,"nodeType":"Block","src":"2051:80:47","statements":[{"AST":{"nativeSrc":"2070:55:47","nodeType":"YulBlock","src":"2070:55:47","statements":[{"nativeSrc":"2084:31:47","nodeType":"YulAssignment","src":"2084:31:47","value":{"name":"ERC721StorageLocation","nativeSrc":"2094:21:47","nodeType":"YulIdentifier","src":"2094:21:47"},"variableNames":[{"name":"$.slot","nativeSrc":"2084:6:47","nodeType":"YulIdentifier","src":"2084:6:47"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":17613,"isOffset":false,"isSlot":true,"src":"2084:6:47","suffix":"slot","valueSize":1},{"declaration":17609,"isOffset":false,"isSlot":false,"src":"2094:21:47","valueSize":1}],"id":17615,"nodeType":"InlineAssembly","src":"2061:64:47"}]},"id":17617,"implemented":true,"kind":"function","modifiers":[],"name":"_getERC721Storage","nameLocation":"1984:17:47","nodeType":"FunctionDefinition","parameters":{"id":17610,"nodeType":"ParameterList","parameters":[],"src":"2001:2:47"},"returnParameters":{"id":17614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17613,"mutability":"mutable","name":"$","nameLocation":"2048:1:47","nodeType":"VariableDeclaration","scope":17617,"src":"2026:23:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":17612,"nodeType":"UserDefinedTypeName","pathNode":{"id":17611,"name":"ERC721Storage","nameLocations":["2026:13:47"],"nodeType":"IdentifierPath","referencedDeclaration":17606,"src":"2026:13:47"},"referencedDeclaration":17606,"src":"2026:13:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"src":"2025:25:47"},"scope":18626,"src":"1975:156:47","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":17632,"nodeType":"Block","src":"2343:56:47","statements":[{"expression":{"arguments":[{"id":17628,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17620,"src":"2377:5:47","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":17629,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17622,"src":"2384:7:47","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"}],"id":17627,"name":"__ERC721_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17661,"src":"2353:23:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":17630,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2353:39:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17631,"nodeType":"ExpressionStatement","src":"2353:39:47"}]},"documentation":{"id":17618,"nodeType":"StructuredDocumentation","src":"2137:108:47","text":" @dev Initializes the contract by setting a `name` and a `symbol` to the token collection."},"id":17633,"implemented":true,"kind":"function","modifiers":[{"id":17625,"kind":"modifierInvocation","modifierName":{"id":17624,"name":"onlyInitializing","nameLocations":["2326:16:47"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"2326:16:47"},"nodeType":"ModifierInvocation","src":"2326:16:47"}],"name":"__ERC721_init","nameLocation":"2259:13:47","nodeType":"FunctionDefinition","parameters":{"id":17623,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17620,"mutability":"mutable","name":"name_","nameLocation":"2287:5:47","nodeType":"VariableDeclaration","scope":17633,"src":"2273:19:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17619,"name":"string","nodeType":"ElementaryTypeName","src":"2273:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":17622,"mutability":"mutable","name":"symbol_","nameLocation":"2308:7:47","nodeType":"VariableDeclaration","scope":17633,"src":"2294:21:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17621,"name":"string","nodeType":"ElementaryTypeName","src":"2294:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2272:44:47"},"returnParameters":{"id":17626,"nodeType":"ParameterList","parameters":[],"src":"2343:0:47"},"scope":18626,"src":"2250:149:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":17660,"nodeType":"Block","src":"2508:116:47","statements":[{"assignments":[17644],"declarations":[{"constant":false,"id":17644,"mutability":"mutable","name":"$","nameLocation":"2540:1:47","nodeType":"VariableDeclaration","scope":17660,"src":"2518:23:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":17643,"nodeType":"UserDefinedTypeName","pathNode":{"id":17642,"name":"ERC721Storage","nameLocations":["2518:13:47"],"nodeType":"IdentifierPath","referencedDeclaration":17606,"src":"2518:13:47"},"referencedDeclaration":17606,"src":"2518:13:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":17647,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":17645,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17617,"src":"2544:17:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$17606_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":17646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2544:19:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"2518:45:47"},{"expression":{"id":17652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":17648,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17644,"src":"2573:1:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":17650,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2575:5:47","memberName":"_name","nodeType":"MemberAccess","referencedDeclaration":17585,"src":"2573:7:47","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":17651,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17635,"src":"2583:5:47","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2573:15:47","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":17653,"nodeType":"ExpressionStatement","src":"2573:15:47"},{"expression":{"id":17658,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":17654,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17644,"src":"2598:1:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":17656,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2600:7:47","memberName":"_symbol","nodeType":"MemberAccess","referencedDeclaration":17587,"src":"2598:9:47","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":17657,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17637,"src":"2610:7:47","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"2598:19:47","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":17659,"nodeType":"ExpressionStatement","src":"2598:19:47"}]},"id":17661,"implemented":true,"kind":"function","modifiers":[{"id":17640,"kind":"modifierInvocation","modifierName":{"id":17639,"name":"onlyInitializing","nameLocations":["2491:16:47"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"2491:16:47"},"nodeType":"ModifierInvocation","src":"2491:16:47"}],"name":"__ERC721_init_unchained","nameLocation":"2414:23:47","nodeType":"FunctionDefinition","parameters":{"id":17638,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17635,"mutability":"mutable","name":"name_","nameLocation":"2452:5:47","nodeType":"VariableDeclaration","scope":17661,"src":"2438:19:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17634,"name":"string","nodeType":"ElementaryTypeName","src":"2438:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":17637,"mutability":"mutable","name":"symbol_","nameLocation":"2473:7:47","nodeType":"VariableDeclaration","scope":17661,"src":"2459:21:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17636,"name":"string","nodeType":"ElementaryTypeName","src":"2459:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2437:44:47"},"returnParameters":{"id":17641,"nodeType":"ParameterList","parameters":[],"src":"2508:0:47"},"scope":18626,"src":"2405:219:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[19429,33544],"body":{"id":17691,"nodeType":"Block","src":"2777:192:47","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17684,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":17677,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17672,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17664,"src":"2806:11:47","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":17674,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25533,"src":"2826:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721_$25533_$","typeString":"type(contract IERC721)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC721_$25533_$","typeString":"type(contract IERC721)"}],"id":17673,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2821:4:47","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":17675,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2821:13:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC721_$25533","typeString":"type(contract IERC721)"}},"id":17676,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2835:11:47","memberName":"interfaceId","nodeType":"MemberAccess","src":"2821:25:47","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2806:40:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":17683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17678,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17664,"src":"2862:11:47","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":17680,"name":"IERC721Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25579,"src":"2882:15:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Metadata_$25579_$","typeString":"type(contract IERC721Metadata)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC721Metadata_$25579_$","typeString":"type(contract IERC721Metadata)"}],"id":17679,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2877:4:47","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":17681,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2877:21:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC721Metadata_$25579","typeString":"type(contract IERC721Metadata)"}},"id":17682,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2899:11:47","memberName":"interfaceId","nodeType":"MemberAccess","src":"2877:33:47","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2862:48:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2806:104:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":17687,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17664,"src":"2950:11:47","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":17685,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2926:5:47","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC721Upgradeable_$18626_$","typeString":"type(contract super ERC721Upgradeable)"}},"id":17686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2932:17:47","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":19429,"src":"2926:23:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":17688,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2926:36:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2806:156:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":17671,"id":17690,"nodeType":"Return","src":"2787:175:47"}]},"documentation":{"id":17662,"nodeType":"StructuredDocumentation","src":"2630:23:47","text":"@inheritdoc IERC165"},"functionSelector":"01ffc9a7","id":17692,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"2667:17:47","nodeType":"FunctionDefinition","overrides":{"id":17668,"nodeType":"OverrideSpecifier","overrides":[{"id":17666,"name":"ERC165Upgradeable","nameLocations":["2734:17:47"],"nodeType":"IdentifierPath","referencedDeclaration":19430,"src":"2734:17:47"},{"id":17667,"name":"IERC165","nameLocations":["2753:7:47"],"nodeType":"IdentifierPath","referencedDeclaration":33545,"src":"2753:7:47"}],"src":"2725:36:47"},"parameters":{"id":17665,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17664,"mutability":"mutable","name":"interfaceId","nameLocation":"2692:11:47","nodeType":"VariableDeclaration","scope":17692,"src":"2685:18:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":17663,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2685:6:47","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2684:20:47"},"returnParameters":{"id":17671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17670,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17692,"src":"2771:4:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17669,"name":"bool","nodeType":"ElementaryTypeName","src":"2771:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2770:6:47"},"scope":18626,"src":"2658:311:47","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[25458],"body":{"id":17726,"nodeType":"Block","src":"3075:193:47","statements":[{"assignments":[17702],"declarations":[{"constant":false,"id":17702,"mutability":"mutable","name":"$","nameLocation":"3107:1:47","nodeType":"VariableDeclaration","scope":17726,"src":"3085:23:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":17701,"nodeType":"UserDefinedTypeName","pathNode":{"id":17700,"name":"ERC721Storage","nameLocations":["3085:13:47"],"nodeType":"IdentifierPath","referencedDeclaration":17606,"src":"3085:13:47"},"referencedDeclaration":17606,"src":"3085:13:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":17705,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":17703,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17617,"src":"3111:17:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$17606_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":17704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3111:19:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3085:45:47"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":17711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17706,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17695,"src":"3144:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":17709,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3161:1:47","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":17708,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3153:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":17707,"name":"address","nodeType":"ElementaryTypeName","src":"3153:7:47","typeDescriptions":{}}},"id":17710,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3153:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3144:19:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17720,"nodeType":"IfStatement","src":"3140:87:47","trueBody":{"id":17719,"nodeType":"Block","src":"3165:62:47","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":17715,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3213:1:47","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":17714,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3205:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":17713,"name":"address","nodeType":"ElementaryTypeName","src":"3205:7:47","typeDescriptions":{}}},"id":17716,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3205:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":17712,"name":"ERC721InvalidOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22554,"src":"3186:18:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":17717,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3186:30:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17718,"nodeType":"RevertStatement","src":"3179:37:47"}]}},{"expression":{"baseExpression":{"expression":{"id":17721,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17702,"src":"3243:1:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":17722,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3245:9:47","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":17595,"src":"3243:11:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":17724,"indexExpression":{"id":17723,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17695,"src":"3255:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3243:18:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":17699,"id":17725,"nodeType":"Return","src":"3236:25:47"}]},"documentation":{"id":17693,"nodeType":"StructuredDocumentation","src":"2975:23:47","text":"@inheritdoc IERC721"},"functionSelector":"70a08231","id":17727,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"3012:9:47","nodeType":"FunctionDefinition","parameters":{"id":17696,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17695,"mutability":"mutable","name":"owner","nameLocation":"3030:5:47","nodeType":"VariableDeclaration","scope":17727,"src":"3022:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17694,"name":"address","nodeType":"ElementaryTypeName","src":"3022:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3021:15:47"},"returnParameters":{"id":17699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17698,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17727,"src":"3066:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17697,"name":"uint256","nodeType":"ElementaryTypeName","src":"3066:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3065:9:47"},"scope":18626,"src":"3003:265:47","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[25466],"body":{"id":17739,"nodeType":"Block","src":"3374:46:47","statements":[{"expression":{"arguments":[{"id":17736,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17730,"src":"3405:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17735,"name":"_requireOwned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18625,"src":"3391:13:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":17737,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3391:22:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":17734,"id":17738,"nodeType":"Return","src":"3384:29:47"}]},"documentation":{"id":17728,"nodeType":"StructuredDocumentation","src":"3274:23:47","text":"@inheritdoc IERC721"},"functionSelector":"6352211e","id":17740,"implemented":true,"kind":"function","modifiers":[],"name":"ownerOf","nameLocation":"3311:7:47","nodeType":"FunctionDefinition","parameters":{"id":17731,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17730,"mutability":"mutable","name":"tokenId","nameLocation":"3327:7:47","nodeType":"VariableDeclaration","scope":17740,"src":"3319:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17729,"name":"uint256","nodeType":"ElementaryTypeName","src":"3319:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3318:17:47"},"returnParameters":{"id":17734,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17733,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17740,"src":"3365:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17732,"name":"address","nodeType":"ElementaryTypeName","src":"3365:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3364:9:47"},"scope":18626,"src":"3302:118:47","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[25564],"body":{"id":17755,"nodeType":"Block","src":"3522:86:47","statements":[{"assignments":[17748],"declarations":[{"constant":false,"id":17748,"mutability":"mutable","name":"$","nameLocation":"3554:1:47","nodeType":"VariableDeclaration","scope":17755,"src":"3532:23:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":17747,"nodeType":"UserDefinedTypeName","pathNode":{"id":17746,"name":"ERC721Storage","nameLocations":["3532:13:47"],"nodeType":"IdentifierPath","referencedDeclaration":17606,"src":"3532:13:47"},"referencedDeclaration":17606,"src":"3532:13:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":17751,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":17749,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17617,"src":"3558:17:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$17606_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":17750,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3558:19:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3532:45:47"},{"expression":{"expression":{"id":17752,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17748,"src":"3594:1:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":17753,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3596:5:47","memberName":"_name","nodeType":"MemberAccess","referencedDeclaration":17585,"src":"3594:7:47","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":17745,"id":17754,"nodeType":"Return","src":"3587:14:47"}]},"documentation":{"id":17741,"nodeType":"StructuredDocumentation","src":"3426:31:47","text":"@inheritdoc IERC721Metadata"},"functionSelector":"06fdde03","id":17756,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"3471:4:47","nodeType":"FunctionDefinition","parameters":{"id":17742,"nodeType":"ParameterList","parameters":[],"src":"3475:2:47"},"returnParameters":{"id":17745,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17744,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17756,"src":"3507:13:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17743,"name":"string","nodeType":"ElementaryTypeName","src":"3507:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3506:15:47"},"scope":18626,"src":"3462:146:47","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[25570],"body":{"id":17771,"nodeType":"Block","src":"3712:88:47","statements":[{"assignments":[17764],"declarations":[{"constant":false,"id":17764,"mutability":"mutable","name":"$","nameLocation":"3744:1:47","nodeType":"VariableDeclaration","scope":17771,"src":"3722:23:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":17763,"nodeType":"UserDefinedTypeName","pathNode":{"id":17762,"name":"ERC721Storage","nameLocations":["3722:13:47"],"nodeType":"IdentifierPath","referencedDeclaration":17606,"src":"3722:13:47"},"referencedDeclaration":17606,"src":"3722:13:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":17767,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":17765,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17617,"src":"3748:17:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$17606_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":17766,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3748:19:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3722:45:47"},{"expression":{"expression":{"id":17768,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17764,"src":"3784:1:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":17769,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3786:7:47","memberName":"_symbol","nodeType":"MemberAccess","referencedDeclaration":17587,"src":"3784:9:47","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":17761,"id":17770,"nodeType":"Return","src":"3777:16:47"}]},"documentation":{"id":17757,"nodeType":"StructuredDocumentation","src":"3614:31:47","text":"@inheritdoc IERC721Metadata"},"functionSelector":"95d89b41","id":17772,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"3659:6:47","nodeType":"FunctionDefinition","parameters":{"id":17758,"nodeType":"ParameterList","parameters":[],"src":"3665:2:47"},"returnParameters":{"id":17761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17760,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17772,"src":"3697:13:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17759,"name":"string","nodeType":"ElementaryTypeName","src":"3697:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3696:15:47"},"scope":18626,"src":"3650:150:47","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[25578],"body":{"id":17807,"nodeType":"Block","src":"3921:176:47","statements":[{"expression":{"arguments":[{"id":17781,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17775,"src":"3945:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17780,"name":"_requireOwned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18625,"src":"3931:13:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":17782,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3931:22:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":17783,"nodeType":"ExpressionStatement","src":"3931:22:47"},{"assignments":[17785],"declarations":[{"constant":false,"id":17785,"mutability":"mutable","name":"baseURI","nameLocation":"3978:7:47","nodeType":"VariableDeclaration","scope":17807,"src":"3964:21:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17784,"name":"string","nodeType":"ElementaryTypeName","src":"3964:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":17788,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":17786,"name":"_baseURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17817,"src":"3988:8:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":17787,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3988:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"3964:34:47"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":17791,"name":"baseURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17785,"src":"4021:7:47","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17790,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4015:5:47","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":17789,"name":"bytes","nodeType":"ElementaryTypeName","src":"4015:5:47","typeDescriptions":{}}},"id":17792,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4015:14:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4030:6:47","memberName":"length","nodeType":"MemberAccess","src":"4015:21:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":17794,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4039:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4015:25:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"","id":17804,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4088:2:47","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":17805,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4015:75:47","trueExpression":{"arguments":[{"id":17799,"name":"baseURI","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17785,"src":"4057:7:47","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":17800,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17775,"src":"4066:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4074:8:47","memberName":"toString","nodeType":"MemberAccess","referencedDeclaration":31350,"src":"4066:16:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (string memory)"}},"id":17802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4066:18:47","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":17797,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4043:6:47","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":17796,"name":"string","nodeType":"ElementaryTypeName","src":"4043:6:47","typeDescriptions":{}}},"id":17798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4050:6:47","memberName":"concat","nodeType":"MemberAccess","src":"4043:13:47","typeDescriptions":{"typeIdentifier":"t_function_stringconcat_pure$__$returns$_t_string_memory_ptr_$","typeString":"function () pure returns (string memory)"}},"id":17803,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4043:42:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":17779,"id":17806,"nodeType":"Return","src":"4008:82:47"}]},"documentation":{"id":17773,"nodeType":"StructuredDocumentation","src":"3806:31:47","text":"@inheritdoc IERC721Metadata"},"functionSelector":"c87b56dd","id":17808,"implemented":true,"kind":"function","modifiers":[],"name":"tokenURI","nameLocation":"3851:8:47","nodeType":"FunctionDefinition","parameters":{"id":17776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17775,"mutability":"mutable","name":"tokenId","nameLocation":"3868:7:47","nodeType":"VariableDeclaration","scope":17808,"src":"3860:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17774,"name":"uint256","nodeType":"ElementaryTypeName","src":"3860:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3859:17:47"},"returnParameters":{"id":17779,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17778,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17808,"src":"3906:13:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17777,"name":"string","nodeType":"ElementaryTypeName","src":"3906:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3905:15:47"},"scope":18626,"src":"3842:255:47","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":17816,"nodeType":"Block","src":"4405:26:47","statements":[{"expression":{"hexValue":"","id":17814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4422:2:47","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"functionReturnParameters":17813,"id":17815,"nodeType":"Return","src":"4415:9:47"}]},"documentation":{"id":17809,"nodeType":"StructuredDocumentation","src":"4103:231:47","text":" @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\n token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n by default, can be overridden in child contracts."},"id":17817,"implemented":true,"kind":"function","modifiers":[],"name":"_baseURI","nameLocation":"4348:8:47","nodeType":"FunctionDefinition","parameters":{"id":17810,"nodeType":"ParameterList","parameters":[],"src":"4356:2:47"},"returnParameters":{"id":17813,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17812,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17817,"src":"4390:13:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":17811,"name":"string","nodeType":"ElementaryTypeName","src":"4390:6:47","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4389:15:47"},"scope":18626,"src":"4339:92:47","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[25506],"body":{"id":17832,"nodeType":"Block","src":"4526:52:47","statements":[{"expression":{"arguments":[{"id":17826,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17820,"src":"4545:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17827,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17822,"src":"4549:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":17828,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"4558:10:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":17829,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4558:12:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":17825,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[18477,18551],"referencedDeclaration":18477,"src":"4536:8:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_address_$returns$__$","typeString":"function (address,uint256,address)"}},"id":17830,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4536:35:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17831,"nodeType":"ExpressionStatement","src":"4536:35:47"}]},"documentation":{"id":17818,"nodeType":"StructuredDocumentation","src":"4437:23:47","text":"@inheritdoc IERC721"},"functionSelector":"095ea7b3","id":17833,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"4474:7:47","nodeType":"FunctionDefinition","parameters":{"id":17823,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17820,"mutability":"mutable","name":"to","nameLocation":"4490:2:47","nodeType":"VariableDeclaration","scope":17833,"src":"4482:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17819,"name":"address","nodeType":"ElementaryTypeName","src":"4482:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17822,"mutability":"mutable","name":"tokenId","nameLocation":"4502:7:47","nodeType":"VariableDeclaration","scope":17833,"src":"4494:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17821,"name":"uint256","nodeType":"ElementaryTypeName","src":"4494:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4481:29:47"},"returnParameters":{"id":17824,"nodeType":"ParameterList","parameters":[],"src":"4526:0:47"},"scope":18626,"src":"4465:113:47","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[25522],"body":{"id":17849,"nodeType":"Block","src":"4688:78:47","statements":[{"expression":{"arguments":[{"id":17842,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17836,"src":"4712:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17841,"name":"_requireOwned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18625,"src":"4698:13:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":17843,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4698:22:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":17844,"nodeType":"ExpressionStatement","src":"4698:22:47"},{"expression":{"arguments":[{"id":17846,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17836,"src":"4751:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17845,"name":"_getApproved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18024,"src":"4738:12:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":17847,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4738:21:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":17840,"id":17848,"nodeType":"Return","src":"4731:28:47"}]},"documentation":{"id":17834,"nodeType":"StructuredDocumentation","src":"4584:23:47","text":"@inheritdoc IERC721"},"functionSelector":"081812fc","id":17850,"implemented":true,"kind":"function","modifiers":[],"name":"getApproved","nameLocation":"4621:11:47","nodeType":"FunctionDefinition","parameters":{"id":17837,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17836,"mutability":"mutable","name":"tokenId","nameLocation":"4641:7:47","nodeType":"VariableDeclaration","scope":17850,"src":"4633:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17835,"name":"uint256","nodeType":"ElementaryTypeName","src":"4633:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4632:17:47"},"returnParameters":{"id":17840,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17839,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17850,"src":"4679:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17838,"name":"address","nodeType":"ElementaryTypeName","src":"4679:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4678:9:47"},"scope":18626,"src":"4612:154:47","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[25514],"body":{"id":17865,"nodeType":"Block","src":"4875:69:47","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":17859,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"4904:10:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":17860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4904:12:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17861,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17853,"src":"4918:8:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17862,"name":"approved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17855,"src":"4928:8:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":17858,"name":"_setApprovalForAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18596,"src":"4885:18:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_bool_$returns$__$","typeString":"function (address,address,bool)"}},"id":17863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4885:52:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17864,"nodeType":"ExpressionStatement","src":"4885:52:47"}]},"documentation":{"id":17851,"nodeType":"StructuredDocumentation","src":"4772:23:47","text":"@inheritdoc IERC721"},"functionSelector":"a22cb465","id":17866,"implemented":true,"kind":"function","modifiers":[],"name":"setApprovalForAll","nameLocation":"4809:17:47","nodeType":"FunctionDefinition","parameters":{"id":17856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17853,"mutability":"mutable","name":"operator","nameLocation":"4835:8:47","nodeType":"VariableDeclaration","scope":17866,"src":"4827:16:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17852,"name":"address","nodeType":"ElementaryTypeName","src":"4827:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17855,"mutability":"mutable","name":"approved","nameLocation":"4850:8:47","nodeType":"VariableDeclaration","scope":17866,"src":"4845:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17854,"name":"bool","nodeType":"ElementaryTypeName","src":"4845:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4826:33:47"},"returnParameters":{"id":17857,"nodeType":"ParameterList","parameters":[],"src":"4875:0:47"},"scope":18626,"src":"4800:144:47","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[25532],"body":{"id":17889,"nodeType":"Block","src":"5072:116:47","statements":[{"assignments":[17878],"declarations":[{"constant":false,"id":17878,"mutability":"mutable","name":"$","nameLocation":"5104:1:47","nodeType":"VariableDeclaration","scope":17889,"src":"5082:23:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":17877,"nodeType":"UserDefinedTypeName","pathNode":{"id":17876,"name":"ERC721Storage","nameLocations":["5082:13:47"],"nodeType":"IdentifierPath","referencedDeclaration":17606,"src":"5082:13:47"},"referencedDeclaration":17606,"src":"5082:13:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":17881,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":17879,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17617,"src":"5108:17:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$17606_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":17880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5108:19:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"5082:45:47"},{"expression":{"baseExpression":{"baseExpression":{"expression":{"id":17882,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17878,"src":"5144:1:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":17883,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5146:18:47","memberName":"_operatorApprovals","nodeType":"MemberAccess","referencedDeclaration":17605,"src":"5144:20:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$","typeString":"mapping(address => mapping(address => bool))"}},"id":17885,"indexExpression":{"id":17884,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17869,"src":"5165:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5144:27:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":17887,"indexExpression":{"id":17886,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17871,"src":"5172:8:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5144:37:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":17875,"id":17888,"nodeType":"Return","src":"5137:44:47"}]},"documentation":{"id":17867,"nodeType":"StructuredDocumentation","src":"4950:23:47","text":"@inheritdoc IERC721"},"functionSelector":"e985e9c5","id":17890,"implemented":true,"kind":"function","modifiers":[],"name":"isApprovedForAll","nameLocation":"4987:16:47","nodeType":"FunctionDefinition","parameters":{"id":17872,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17869,"mutability":"mutable","name":"owner","nameLocation":"5012:5:47","nodeType":"VariableDeclaration","scope":17890,"src":"5004:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17868,"name":"address","nodeType":"ElementaryTypeName","src":"5004:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17871,"mutability":"mutable","name":"operator","nameLocation":"5027:8:47","nodeType":"VariableDeclaration","scope":17890,"src":"5019:16:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17870,"name":"address","nodeType":"ElementaryTypeName","src":"5019:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5003:33:47"},"returnParameters":{"id":17875,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17874,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17890,"src":"5066:4:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":17873,"name":"bool","nodeType":"ElementaryTypeName","src":"5066:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5065:6:47"},"scope":18626,"src":"4978:210:47","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[25498],"body":{"id":17935,"nodeType":"Block","src":"5302:498:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":17905,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17900,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17895,"src":"5316:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":17903,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5330:1:47","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":17902,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5322:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":17901,"name":"address","nodeType":"ElementaryTypeName","src":"5322:7:47","typeDescriptions":{}}},"id":17904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5322:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5316:16:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17914,"nodeType":"IfStatement","src":"5312:87:47","trueBody":{"id":17913,"nodeType":"Block","src":"5334:65:47","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":17909,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5385:1:47","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":17908,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5377:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":17907,"name":"address","nodeType":"ElementaryTypeName","src":"5377:7:47","typeDescriptions":{}}},"id":17910,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5377:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":17906,"name":"ERC721InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22578,"src":"5355:21:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":17911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5355:33:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17912,"nodeType":"RevertStatement","src":"5348:40:47"}]}},{"assignments":[17916],"declarations":[{"constant":false,"id":17916,"mutability":"mutable","name":"previousOwner","nameLocation":"5625:13:47","nodeType":"VariableDeclaration","scope":17935,"src":"5617:21:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17915,"name":"address","nodeType":"ElementaryTypeName","src":"5617:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":17923,"initialValue":{"arguments":[{"id":17918,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17895,"src":"5649:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17919,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17897,"src":"5653:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":17920,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"5662:10:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":17921,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5662:12:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":17917,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18223,"src":"5641:7:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_address_$returns$_t_address_$","typeString":"function (address,uint256,address) returns (address)"}},"id":17922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5641:34:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5617:58:47"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":17926,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17924,"name":"previousOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17916,"src":"5689:13:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17925,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17893,"src":"5706:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5689:21:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17934,"nodeType":"IfStatement","src":"5685:109:47","trueBody":{"id":17933,"nodeType":"Block","src":"5712:82:47","statements":[{"errorCall":{"arguments":[{"id":17928,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17893,"src":"5754:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17929,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17897,"src":"5760:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17930,"name":"previousOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17916,"src":"5769:13:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":17927,"name":"ERC721IncorrectOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22568,"src":"5733:20:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_address_$returns$_t_error_$","typeString":"function (address,uint256,address) pure returns (error)"}},"id":17931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5733:50:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":17932,"nodeType":"RevertStatement","src":"5726:57:47"}]}}]},"documentation":{"id":17891,"nodeType":"StructuredDocumentation","src":"5194:23:47","text":"@inheritdoc IERC721"},"functionSelector":"23b872dd","id":17936,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"5231:12:47","nodeType":"FunctionDefinition","parameters":{"id":17898,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17893,"mutability":"mutable","name":"from","nameLocation":"5252:4:47","nodeType":"VariableDeclaration","scope":17936,"src":"5244:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17892,"name":"address","nodeType":"ElementaryTypeName","src":"5244:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17895,"mutability":"mutable","name":"to","nameLocation":"5266:2:47","nodeType":"VariableDeclaration","scope":17936,"src":"5258:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17894,"name":"address","nodeType":"ElementaryTypeName","src":"5258:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17897,"mutability":"mutable","name":"tokenId","nameLocation":"5278:7:47","nodeType":"VariableDeclaration","scope":17936,"src":"5270:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17896,"name":"uint256","nodeType":"ElementaryTypeName","src":"5270:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5243:43:47"},"returnParameters":{"id":17899,"nodeType":"ParameterList","parameters":[],"src":"5302:0:47"},"scope":18626,"src":"5222:578:47","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[25488],"body":{"id":17953,"nodeType":"Block","src":"5910:56:47","statements":[{"expression":{"arguments":[{"id":17947,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17939,"src":"5937:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17948,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17941,"src":"5943:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17949,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17943,"src":"5947:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"","id":17950,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5956:2:47","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":17946,"name":"safeTransferFrom","nodeType":"Identifier","overloadedDeclarations":[17954,17984],"referencedDeclaration":17984,"src":"5920:16:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,uint256,bytes memory)"}},"id":17951,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5920:39:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17952,"nodeType":"ExpressionStatement","src":"5920:39:47"}]},"documentation":{"id":17937,"nodeType":"StructuredDocumentation","src":"5806:23:47","text":"@inheritdoc IERC721"},"functionSelector":"42842e0e","id":17954,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"5843:16:47","nodeType":"FunctionDefinition","parameters":{"id":17944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17939,"mutability":"mutable","name":"from","nameLocation":"5868:4:47","nodeType":"VariableDeclaration","scope":17954,"src":"5860:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17938,"name":"address","nodeType":"ElementaryTypeName","src":"5860:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17941,"mutability":"mutable","name":"to","nameLocation":"5882:2:47","nodeType":"VariableDeclaration","scope":17954,"src":"5874:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17940,"name":"address","nodeType":"ElementaryTypeName","src":"5874:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17943,"mutability":"mutable","name":"tokenId","nameLocation":"5894:7:47","nodeType":"VariableDeclaration","scope":17954,"src":"5886:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17942,"name":"uint256","nodeType":"ElementaryTypeName","src":"5886:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5859:43:47"},"returnParameters":{"id":17945,"nodeType":"ParameterList","parameters":[],"src":"5910:0:47"},"scope":18626,"src":"5834:132:47","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[25478],"body":{"id":17983,"nodeType":"Block","src":"6103:130:47","statements":[{"expression":{"arguments":[{"id":17967,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17957,"src":"6126:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17968,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17959,"src":"6132:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17969,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17961,"src":"6136:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17966,"name":"transferFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17936,"src":"6113:12:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":17970,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6113:31:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17971,"nodeType":"ExpressionStatement","src":"6113:31:47"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":17975,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"6188:10:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":17976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6188:12:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17977,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17957,"src":"6202:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17978,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17959,"src":"6208:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":17979,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17961,"src":"6212:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17980,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17963,"src":"6221:4:47","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":17972,"name":"ERC721Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25656,"src":"6154:11:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC721Utils_$25656_$","typeString":"type(library ERC721Utils)"}},"id":17974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6166:21:47","memberName":"checkOnERC721Received","nodeType":"MemberAccess","referencedDeclaration":25655,"src":"6154:33:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256,bytes memory)"}},"id":17981,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6154:72:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17982,"nodeType":"ExpressionStatement","src":"6154:72:47"}]},"documentation":{"id":17955,"nodeType":"StructuredDocumentation","src":"5972:23:47","text":"@inheritdoc IERC721"},"functionSelector":"b88d4fde","id":17984,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"6009:16:47","nodeType":"FunctionDefinition","parameters":{"id":17964,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17957,"mutability":"mutable","name":"from","nameLocation":"6034:4:47","nodeType":"VariableDeclaration","scope":17984,"src":"6026:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17956,"name":"address","nodeType":"ElementaryTypeName","src":"6026:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17959,"mutability":"mutable","name":"to","nameLocation":"6048:2:47","nodeType":"VariableDeclaration","scope":17984,"src":"6040:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17958,"name":"address","nodeType":"ElementaryTypeName","src":"6040:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":17961,"mutability":"mutable","name":"tokenId","nameLocation":"6060:7:47","nodeType":"VariableDeclaration","scope":17984,"src":"6052:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17960,"name":"uint256","nodeType":"ElementaryTypeName","src":"6052:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":17963,"mutability":"mutable","name":"data","nameLocation":"6082:4:47","nodeType":"VariableDeclaration","scope":17984,"src":"6069:17:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17962,"name":"bytes","nodeType":"ElementaryTypeName","src":"6069:5:47","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6025:62:47"},"returnParameters":{"id":17965,"nodeType":"ParameterList","parameters":[],"src":"6103:0:47"},"scope":18626,"src":"6000:233:47","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":18003,"nodeType":"Block","src":"6823:97:47","statements":[{"assignments":[17994],"declarations":[{"constant":false,"id":17994,"mutability":"mutable","name":"$","nameLocation":"6855:1:47","nodeType":"VariableDeclaration","scope":18003,"src":"6833:23:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":17993,"nodeType":"UserDefinedTypeName","pathNode":{"id":17992,"name":"ERC721Storage","nameLocations":["6833:13:47"],"nodeType":"IdentifierPath","referencedDeclaration":17606,"src":"6833:13:47"},"referencedDeclaration":17606,"src":"6833:13:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":17997,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":17995,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17617,"src":"6859:17:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$17606_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":17996,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6859:19:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"6833:45:47"},{"expression":{"baseExpression":{"expression":{"id":17998,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17994,"src":"6895:1:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":17999,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6897:7:47","memberName":"_owners","nodeType":"MemberAccess","referencedDeclaration":17591,"src":"6895:9:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":18001,"indexExpression":{"id":18000,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17987,"src":"6905:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6895:18:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":17991,"id":18002,"nodeType":"Return","src":"6888:25:47"}]},"documentation":{"id":17985,"nodeType":"StructuredDocumentation","src":"6239:504:47","text":" @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist\n IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the\n core ERC-721 logic MUST be matched with the use of {_increaseBalance} to keep balances\n consistent with ownership. The invariant to preserve is that for any address `a` the value returned by\n `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`."},"id":18004,"implemented":true,"kind":"function","modifiers":[],"name":"_ownerOf","nameLocation":"6757:8:47","nodeType":"FunctionDefinition","parameters":{"id":17988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17987,"mutability":"mutable","name":"tokenId","nameLocation":"6774:7:47","nodeType":"VariableDeclaration","scope":18004,"src":"6766:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17986,"name":"uint256","nodeType":"ElementaryTypeName","src":"6766:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6765:17:47"},"returnParameters":{"id":17991,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17990,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18004,"src":"6814:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17989,"name":"address","nodeType":"ElementaryTypeName","src":"6814:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6813:9:47"},"scope":18626,"src":"6748:172:47","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":18023,"nodeType":"Block","src":"7115:105:47","statements":[{"assignments":[18014],"declarations":[{"constant":false,"id":18014,"mutability":"mutable","name":"$","nameLocation":"7147:1:47","nodeType":"VariableDeclaration","scope":18023,"src":"7125:23:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":18013,"nodeType":"UserDefinedTypeName","pathNode":{"id":18012,"name":"ERC721Storage","nameLocations":["7125:13:47"],"nodeType":"IdentifierPath","referencedDeclaration":17606,"src":"7125:13:47"},"referencedDeclaration":17606,"src":"7125:13:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":18017,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":18015,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17617,"src":"7151:17:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$17606_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":18016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7151:19:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"7125:45:47"},{"expression":{"baseExpression":{"expression":{"id":18018,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18014,"src":"7187:1:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":18019,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7189:15:47","memberName":"_tokenApprovals","nodeType":"MemberAccess","referencedDeclaration":17599,"src":"7187:17:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":18021,"indexExpression":{"id":18020,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18007,"src":"7205:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7187:26:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":18011,"id":18022,"nodeType":"Return","src":"7180:33:47"}]},"documentation":{"id":18005,"nodeType":"StructuredDocumentation","src":"6926:105:47","text":" @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted."},"id":18024,"implemented":true,"kind":"function","modifiers":[],"name":"_getApproved","nameLocation":"7045:12:47","nodeType":"FunctionDefinition","parameters":{"id":18008,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18007,"mutability":"mutable","name":"tokenId","nameLocation":"7066:7:47","nodeType":"VariableDeclaration","scope":18024,"src":"7058:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18006,"name":"uint256","nodeType":"ElementaryTypeName","src":"7058:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7057:17:47"},"returnParameters":{"id":18011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18010,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18024,"src":"7106:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18009,"name":"address","nodeType":"ElementaryTypeName","src":"7106:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7105:9:47"},"scope":18626,"src":"7036:184:47","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":18059,"nodeType":"Block","src":"7640:163:47","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18036,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18029,"src":"7669:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":18039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7688:1:47","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":18038,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7680:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18037,"name":"address","nodeType":"ElementaryTypeName","src":"7680:7:47","typeDescriptions":{}}},"id":18040,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7680:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7669:21:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18042,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18027,"src":"7707:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":18043,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18029,"src":"7716:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7707:16:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":18046,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18027,"src":"7744:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18047,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18029,"src":"7751:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":18045,"name":"isApprovedForAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17890,"src":"7727:16:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_bool_$","typeString":"function (address,address) view returns (bool)"}},"id":18048,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7727:32:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7707:52:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":18051,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18031,"src":"7776:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18050,"name":"_getApproved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18024,"src":"7763:12:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":18052,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7763:21:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":18053,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18029,"src":"7788:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7763:32:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7707:88:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":18056,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7706:90:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7669:127:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":18035,"id":18058,"nodeType":"Return","src":"7650:146:47"}]},"documentation":{"id":18025,"nodeType":"StructuredDocumentation","src":"7226:300:47","text":" @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in\n particular (ignoring whether it is owned by `owner`).\n WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this\n assumption."},"id":18060,"implemented":true,"kind":"function","modifiers":[],"name":"_isAuthorized","nameLocation":"7540:13:47","nodeType":"FunctionDefinition","parameters":{"id":18032,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18027,"mutability":"mutable","name":"owner","nameLocation":"7562:5:47","nodeType":"VariableDeclaration","scope":18060,"src":"7554:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18026,"name":"address","nodeType":"ElementaryTypeName","src":"7554:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18029,"mutability":"mutable","name":"spender","nameLocation":"7577:7:47","nodeType":"VariableDeclaration","scope":18060,"src":"7569:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18028,"name":"address","nodeType":"ElementaryTypeName","src":"7569:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18031,"mutability":"mutable","name":"tokenId","nameLocation":"7594:7:47","nodeType":"VariableDeclaration","scope":18060,"src":"7586:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18030,"name":"uint256","nodeType":"ElementaryTypeName","src":"7586:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7553:49:47"},"returnParameters":{"id":18035,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18034,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18060,"src":"7634:4:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18033,"name":"bool","nodeType":"ElementaryTypeName","src":"7634:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7633:6:47"},"scope":18626,"src":"7531:272:47","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":18096,"nodeType":"Block","src":"8332:271:47","statements":[{"condition":{"id":18075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"8346:39:47","subExpression":{"arguments":[{"id":18071,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18063,"src":"8361:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18072,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18065,"src":"8368:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18073,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18067,"src":"8377:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18070,"name":"_isAuthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18060,"src":"8347:13:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,address,uint256) view returns (bool)"}},"id":18074,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8347:38:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18095,"nodeType":"IfStatement","src":"8342:255:47","trueBody":{"id":18094,"nodeType":"Block","src":"8387:210:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18076,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18063,"src":"8405:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":18079,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8422:1:47","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":18078,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8414:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18077,"name":"address","nodeType":"ElementaryTypeName","src":"8414:7:47","typeDescriptions":{}}},"id":18080,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8414:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8405:19:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":18092,"nodeType":"Block","src":"8503:84:47","statements":[{"errorCall":{"arguments":[{"id":18088,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18065,"src":"8555:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18089,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18067,"src":"8564:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18087,"name":"ERC721InsufficientApproval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22585,"src":"8528:26:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256) pure returns (error)"}},"id":18090,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8528:44:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18091,"nodeType":"RevertStatement","src":"8521:51:47"}]},"id":18093,"nodeType":"IfStatement","src":"8401:186:47","trueBody":{"id":18086,"nodeType":"Block","src":"8426:71:47","statements":[{"errorCall":{"arguments":[{"id":18083,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18067,"src":"8474:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18082,"name":"ERC721NonexistentToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22559,"src":"8451:22:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":18084,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8451:31:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18085,"nodeType":"RevertStatement","src":"8444:38:47"}]}}]}}]},"documentation":{"id":18061,"nodeType":"StructuredDocumentation","src":"7809:421:47","text":" @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.\n Reverts if:\n - `spender` does not have approval from `owner` for `tokenId`.\n - `spender` does not have approval to manage all of `owner`'s assets.\n WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this\n assumption."},"id":18097,"implemented":true,"kind":"function","modifiers":[],"name":"_checkAuthorized","nameLocation":"8244:16:47","nodeType":"FunctionDefinition","parameters":{"id":18068,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18063,"mutability":"mutable","name":"owner","nameLocation":"8269:5:47","nodeType":"VariableDeclaration","scope":18097,"src":"8261:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18062,"name":"address","nodeType":"ElementaryTypeName","src":"8261:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18065,"mutability":"mutable","name":"spender","nameLocation":"8284:7:47","nodeType":"VariableDeclaration","scope":18097,"src":"8276:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18064,"name":"address","nodeType":"ElementaryTypeName","src":"8276:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18067,"mutability":"mutable","name":"tokenId","nameLocation":"8301:7:47","nodeType":"VariableDeclaration","scope":18097,"src":"8293:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18066,"name":"uint256","nodeType":"ElementaryTypeName","src":"8293:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8260:49:47"},"returnParameters":{"id":18069,"nodeType":"ParameterList","parameters":[],"src":"8332:0:47"},"scope":18626,"src":"8235:368:47","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":18120,"nodeType":"Block","src":"9320:135:47","statements":[{"assignments":[18107],"declarations":[{"constant":false,"id":18107,"mutability":"mutable","name":"$","nameLocation":"9352:1:47","nodeType":"VariableDeclaration","scope":18120,"src":"9330:23:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":18106,"nodeType":"UserDefinedTypeName","pathNode":{"id":18105,"name":"ERC721Storage","nameLocations":["9330:13:47"],"nodeType":"IdentifierPath","referencedDeclaration":17606,"src":"9330:13:47"},"referencedDeclaration":17606,"src":"9330:13:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":18110,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":18108,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17617,"src":"9356:17:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$17606_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":18109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9356:19:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"9330:45:47"},{"id":18119,"nodeType":"UncheckedBlock","src":"9385:64:47","statements":[{"expression":{"id":18117,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":18111,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18107,"src":"9409:1:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":18114,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9411:9:47","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":17595,"src":"9409:11:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":18115,"indexExpression":{"id":18113,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18100,"src":"9421:7:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9409:20:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":18116,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18102,"src":"9433:5:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"9409:29:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18118,"nodeType":"ExpressionStatement","src":"9409:29:47"}]}]},"documentation":{"id":18098,"nodeType":"StructuredDocumentation","src":"8609:631:47","text":" @dev Unsafe write access to the balances, used by extensions that \"mint\" tokens using an {ownerOf} override.\n NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that\n a uint256 would ever overflow from increments when these increments are bounded to uint128 values.\n WARNING: Increasing an account's balance using this function tends to be paired with an override of the\n {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership\n remain consistent with one another."},"id":18121,"implemented":true,"kind":"function","modifiers":[],"name":"_increaseBalance","nameLocation":"9254:16:47","nodeType":"FunctionDefinition","parameters":{"id":18103,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18100,"mutability":"mutable","name":"account","nameLocation":"9279:7:47","nodeType":"VariableDeclaration","scope":18121,"src":"9271:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18099,"name":"address","nodeType":"ElementaryTypeName","src":"9271:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18102,"mutability":"mutable","name":"value","nameLocation":"9296:5:47","nodeType":"VariableDeclaration","scope":18121,"src":"9288:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":18101,"name":"uint128","nodeType":"ElementaryTypeName","src":"9288:7:47","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"9270:32:47"},"returnParameters":{"id":18104,"nodeType":"ParameterList","parameters":[],"src":"9320:0:47"},"scope":18626,"src":"9245:210:47","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":18222,"nodeType":"Block","src":"10143:761:47","statements":[{"assignments":[18135],"declarations":[{"constant":false,"id":18135,"mutability":"mutable","name":"$","nameLocation":"10175:1:47","nodeType":"VariableDeclaration","scope":18222,"src":"10153:23:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":18134,"nodeType":"UserDefinedTypeName","pathNode":{"id":18133,"name":"ERC721Storage","nameLocations":["10153:13:47"],"nodeType":"IdentifierPath","referencedDeclaration":17606,"src":"10153:13:47"},"referencedDeclaration":17606,"src":"10153:13:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":18138,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":18136,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17617,"src":"10179:17:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$17606_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":18137,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10179:19:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"10153:45:47"},{"assignments":[18140],"declarations":[{"constant":false,"id":18140,"mutability":"mutable","name":"from","nameLocation":"10216:4:47","nodeType":"VariableDeclaration","scope":18222,"src":"10208:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18139,"name":"address","nodeType":"ElementaryTypeName","src":"10208:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":18144,"initialValue":{"arguments":[{"id":18142,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18126,"src":"10232:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18141,"name":"_ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18004,"src":"10223:8:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":18143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10223:17:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"10208:32:47"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18145,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18128,"src":"10300:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":18148,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10316:1:47","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":18147,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10308:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18146,"name":"address","nodeType":"ElementaryTypeName","src":"10308:7:47","typeDescriptions":{}}},"id":18149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10308:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10300:18:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18158,"nodeType":"IfStatement","src":"10296:86:47","trueBody":{"id":18157,"nodeType":"Block","src":"10320:62:47","statements":[{"expression":{"arguments":[{"id":18152,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18140,"src":"10351:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18153,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18128,"src":"10357:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18154,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18126,"src":"10363:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18151,"name":"_checkAuthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18097,"src":"10334:16:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256) view"}},"id":18155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10334:37:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18156,"nodeType":"ExpressionStatement","src":"10334:37:47"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18159,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18140,"src":"10426:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":18162,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10442:1:47","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":18161,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10434:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18160,"name":"address","nodeType":"ElementaryTypeName","src":"10434:7:47","typeDescriptions":{}}},"id":18163,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10434:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10426:18:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18188,"nodeType":"IfStatement","src":"10422:258:47","trueBody":{"id":18187,"nodeType":"Block","src":"10446:234:47","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":18168,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10559:1:47","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":18167,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10551:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18166,"name":"address","nodeType":"ElementaryTypeName","src":"10551:7:47","typeDescriptions":{}}},"id":18169,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10551:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18170,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18126,"src":"10563:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"hexValue":"30","id":18173,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10580:1:47","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":18172,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10572:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18171,"name":"address","nodeType":"ElementaryTypeName","src":"10572:7:47","typeDescriptions":{}}},"id":18174,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10572:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"66616c7365","id":18175,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10584:5:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":18165,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[18477,18551],"referencedDeclaration":18551,"src":"10542:8:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_address_$_t_bool_$returns$__$","typeString":"function (address,uint256,address,bool)"}},"id":18176,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10542:48:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18177,"nodeType":"ExpressionStatement","src":"10542:48:47"},{"id":18186,"nodeType":"UncheckedBlock","src":"10605:65:47","statements":[{"expression":{"id":18184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":18178,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18135,"src":"10633:1:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":18181,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10635:9:47","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":17595,"src":"10633:11:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":18182,"indexExpression":{"id":18180,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18140,"src":"10645:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10633:17:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"31","id":18183,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10654:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10633:22:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18185,"nodeType":"ExpressionStatement","src":"10633:22:47"}]}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18194,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18189,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18124,"src":"10694:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":18192,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10708:1:47","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":18191,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10700:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18190,"name":"address","nodeType":"ElementaryTypeName","src":"10700:7:47","typeDescriptions":{}}},"id":18193,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10700:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10694:16:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18205,"nodeType":"IfStatement","src":"10690:109:47","trueBody":{"id":18204,"nodeType":"Block","src":"10712:87:47","statements":[{"id":18203,"nodeType":"UncheckedBlock","src":"10726:63:47","statements":[{"expression":{"id":18201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":18195,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18135,"src":"10754:1:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":18198,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10756:9:47","memberName":"_balances","nodeType":"MemberAccess","referencedDeclaration":17595,"src":"10754:11:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":18199,"indexExpression":{"id":18197,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18124,"src":"10766:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10754:15:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":18200,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10773:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"10754:20:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18202,"nodeType":"ExpressionStatement","src":"10754:20:47"}]}]}},{"expression":{"id":18212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":18206,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18135,"src":"10809:1:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":18209,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10811:7:47","memberName":"_owners","nodeType":"MemberAccess","referencedDeclaration":17591,"src":"10809:9:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":18210,"indexExpression":{"id":18208,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18126,"src":"10819:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10809:18:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":18211,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18124,"src":"10830:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10809:23:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":18213,"nodeType":"ExpressionStatement","src":"10809:23:47"},{"eventCall":{"arguments":[{"id":18215,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18140,"src":"10857:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18216,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18124,"src":"10863:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18217,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18126,"src":"10867:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18214,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25432,"src":"10848:8:47","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":18218,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10848:27:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18219,"nodeType":"EmitStatement","src":"10843:32:47"},{"expression":{"id":18220,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18140,"src":"10893:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":18132,"id":18221,"nodeType":"Return","src":"10886:11:47"}]},"documentation":{"id":18122,"nodeType":"StructuredDocumentation","src":"9461:582:47","text":" @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner\n (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.\n The `auth` argument is optional. If the value passed is non 0, then this function will check that\n `auth` is either the owner of the token, or approved to operate on the token (by the owner).\n Emits a {Transfer} event.\n NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}."},"id":18223,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"10057:7:47","nodeType":"FunctionDefinition","parameters":{"id":18129,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18124,"mutability":"mutable","name":"to","nameLocation":"10073:2:47","nodeType":"VariableDeclaration","scope":18223,"src":"10065:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18123,"name":"address","nodeType":"ElementaryTypeName","src":"10065:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18126,"mutability":"mutable","name":"tokenId","nameLocation":"10085:7:47","nodeType":"VariableDeclaration","scope":18223,"src":"10077:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18125,"name":"uint256","nodeType":"ElementaryTypeName","src":"10077:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18128,"mutability":"mutable","name":"auth","nameLocation":"10102:4:47","nodeType":"VariableDeclaration","scope":18223,"src":"10094:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18127,"name":"address","nodeType":"ElementaryTypeName","src":"10094:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10064:43:47"},"returnParameters":{"id":18132,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18131,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18223,"src":"10134:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18130,"name":"address","nodeType":"ElementaryTypeName","src":"10134:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10133:9:47"},"scope":18626,"src":"10048:856:47","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":18272,"nodeType":"Block","src":"11279:274:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18231,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18226,"src":"11293:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":18234,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11307:1:47","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":18233,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11299:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18232,"name":"address","nodeType":"ElementaryTypeName","src":"11299:7:47","typeDescriptions":{}}},"id":18235,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11299:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11293:16:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18245,"nodeType":"IfStatement","src":"11289:87:47","trueBody":{"id":18244,"nodeType":"Block","src":"11311:65:47","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":18240,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11362:1:47","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":18239,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11354:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18238,"name":"address","nodeType":"ElementaryTypeName","src":"11354:7:47","typeDescriptions":{}}},"id":18241,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11354:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":18237,"name":"ERC721InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22578,"src":"11332:21:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":18242,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11332:33:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18243,"nodeType":"RevertStatement","src":"11325:40:47"}]}},{"assignments":[18247],"declarations":[{"constant":false,"id":18247,"mutability":"mutable","name":"previousOwner","nameLocation":"11393:13:47","nodeType":"VariableDeclaration","scope":18272,"src":"11385:21:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18246,"name":"address","nodeType":"ElementaryTypeName","src":"11385:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":18256,"initialValue":{"arguments":[{"id":18249,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18226,"src":"11417:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18250,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18228,"src":"11421:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"hexValue":"30","id":18253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11438:1:47","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":18252,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11430:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18251,"name":"address","nodeType":"ElementaryTypeName","src":"11430:7:47","typeDescriptions":{}}},"id":18254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11430:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":18248,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18223,"src":"11409:7:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_address_$returns$_t_address_$","typeString":"function (address,uint256,address) returns (address)"}},"id":18255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11409:32:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"11385:56:47"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18257,"name":"previousOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18247,"src":"11455:13:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":18260,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11480:1:47","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":18259,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11472:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18258,"name":"address","nodeType":"ElementaryTypeName","src":"11472:7:47","typeDescriptions":{}}},"id":18261,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11472:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11455:27:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18271,"nodeType":"IfStatement","src":"11451:96:47","trueBody":{"id":18270,"nodeType":"Block","src":"11484:63:47","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":18266,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11533:1:47","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":18265,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11525:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18264,"name":"address","nodeType":"ElementaryTypeName","src":"11525:7:47","typeDescriptions":{}}},"id":18267,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11525:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":18263,"name":"ERC721InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22573,"src":"11505:19:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":18268,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11505:31:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18269,"nodeType":"RevertStatement","src":"11498:38:47"}]}}]},"documentation":{"id":18224,"nodeType":"StructuredDocumentation","src":"10910:311:47","text":" @dev Mints `tokenId` and transfers it to `to`.\n WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible\n Requirements:\n - `tokenId` must not exist.\n - `to` cannot be the zero address.\n Emits a {Transfer} event."},"id":18273,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"11235:5:47","nodeType":"FunctionDefinition","parameters":{"id":18229,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18226,"mutability":"mutable","name":"to","nameLocation":"11249:2:47","nodeType":"VariableDeclaration","scope":18273,"src":"11241:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18225,"name":"address","nodeType":"ElementaryTypeName","src":"11241:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18228,"mutability":"mutable","name":"tokenId","nameLocation":"11261:7:47","nodeType":"VariableDeclaration","scope":18273,"src":"11253:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18227,"name":"uint256","nodeType":"ElementaryTypeName","src":"11253:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11240:29:47"},"returnParameters":{"id":18230,"nodeType":"ParameterList","parameters":[],"src":"11279:0:47"},"scope":18626,"src":"11226:327:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":18287,"nodeType":"Block","src":"11961:43:47","statements":[{"expression":{"arguments":[{"id":18282,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18276,"src":"11981:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18283,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18278,"src":"11985:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"","id":18284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11994:2:47","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":18281,"name":"_safeMint","nodeType":"Identifier","overloadedDeclarations":[18288,18318],"referencedDeclaration":18318,"src":"11971:9:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,uint256,bytes memory)"}},"id":18285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11971:26:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18286,"nodeType":"ExpressionStatement","src":"11971:26:47"}]},"documentation":{"id":18274,"nodeType":"StructuredDocumentation","src":"11559:340:47","text":" @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.\n Requirements:\n - `tokenId` must not exist.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n Emits a {Transfer} event."},"id":18288,"implemented":true,"kind":"function","modifiers":[],"name":"_safeMint","nameLocation":"11913:9:47","nodeType":"FunctionDefinition","parameters":{"id":18279,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18276,"mutability":"mutable","name":"to","nameLocation":"11931:2:47","nodeType":"VariableDeclaration","scope":18288,"src":"11923:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18275,"name":"address","nodeType":"ElementaryTypeName","src":"11923:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18278,"mutability":"mutable","name":"tokenId","nameLocation":"11943:7:47","nodeType":"VariableDeclaration","scope":18288,"src":"11935:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18277,"name":"uint256","nodeType":"ElementaryTypeName","src":"11935:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11922:29:47"},"returnParameters":{"id":18280,"nodeType":"ParameterList","parameters":[],"src":"11961:0:47"},"scope":18626,"src":"11904:100:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":18317,"nodeType":"Block","src":"12309:123:47","statements":[{"expression":{"arguments":[{"id":18299,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18291,"src":"12325:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18300,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18293,"src":"12329:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18298,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18273,"src":"12319:5:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":18301,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12319:18:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18302,"nodeType":"ExpressionStatement","src":"12319:18:47"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":18306,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"12381:10:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":18307,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12381:12:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":18310,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12403:1:47","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":18309,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12395:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18308,"name":"address","nodeType":"ElementaryTypeName","src":"12395:7:47","typeDescriptions":{}}},"id":18311,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12395:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18312,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18291,"src":"12407:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18313,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18293,"src":"12411:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18314,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18295,"src":"12420:4:47","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":18303,"name":"ERC721Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25656,"src":"12347:11:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC721Utils_$25656_$","typeString":"type(library ERC721Utils)"}},"id":18305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12359:21:47","memberName":"checkOnERC721Received","nodeType":"MemberAccess","referencedDeclaration":25655,"src":"12347:33:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256,bytes memory)"}},"id":18315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12347:78:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18316,"nodeType":"ExpressionStatement","src":"12347:78:47"}]},"documentation":{"id":18289,"nodeType":"StructuredDocumentation","src":"12010:210:47","text":" @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is\n forwarded in {IERC721Receiver-onERC721Received} to contract recipients."},"id":18318,"implemented":true,"kind":"function","modifiers":[],"name":"_safeMint","nameLocation":"12234:9:47","nodeType":"FunctionDefinition","parameters":{"id":18296,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18291,"mutability":"mutable","name":"to","nameLocation":"12252:2:47","nodeType":"VariableDeclaration","scope":18318,"src":"12244:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18290,"name":"address","nodeType":"ElementaryTypeName","src":"12244:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18293,"mutability":"mutable","name":"tokenId","nameLocation":"12264:7:47","nodeType":"VariableDeclaration","scope":18318,"src":"12256:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18292,"name":"uint256","nodeType":"ElementaryTypeName","src":"12256:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18295,"mutability":"mutable","name":"data","nameLocation":"12286:4:47","nodeType":"VariableDeclaration","scope":18318,"src":"12273:17:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18294,"name":"bytes","nodeType":"ElementaryTypeName","src":"12273:5:47","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"12243:48:47"},"returnParameters":{"id":18297,"nodeType":"ParameterList","parameters":[],"src":"12309:0:47"},"scope":18626,"src":"12225:207:47","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":18350,"nodeType":"Block","src":"12799:186:47","statements":[{"assignments":[18325],"declarations":[{"constant":false,"id":18325,"mutability":"mutable","name":"previousOwner","nameLocation":"12817:13:47","nodeType":"VariableDeclaration","scope":18350,"src":"12809:21:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18324,"name":"address","nodeType":"ElementaryTypeName","src":"12809:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":18337,"initialValue":{"arguments":[{"arguments":[{"hexValue":"30","id":18329,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12849:1:47","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":18328,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12841:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18327,"name":"address","nodeType":"ElementaryTypeName","src":"12841:7:47","typeDescriptions":{}}},"id":18330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12841:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18331,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18321,"src":"12853:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"hexValue":"30","id":18334,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12870:1:47","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":18333,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12862:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18332,"name":"address","nodeType":"ElementaryTypeName","src":"12862:7:47","typeDescriptions":{}}},"id":18335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12862:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":18326,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18223,"src":"12833:7:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_address_$returns$_t_address_$","typeString":"function (address,uint256,address) returns (address)"}},"id":18336,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12833:40:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"12809:64:47"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18338,"name":"previousOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18325,"src":"12887:13:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":18341,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12912:1:47","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":18340,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12904:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18339,"name":"address","nodeType":"ElementaryTypeName","src":"12904:7:47","typeDescriptions":{}}},"id":18342,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12904:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12887:27:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18349,"nodeType":"IfStatement","src":"12883:96:47","trueBody":{"id":18348,"nodeType":"Block","src":"12916:63:47","statements":[{"errorCall":{"arguments":[{"id":18345,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18321,"src":"12960:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18344,"name":"ERC721NonexistentToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22559,"src":"12937:22:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":18346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12937:31:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18347,"nodeType":"RevertStatement","src":"12930:38:47"}]}}]},"documentation":{"id":18319,"nodeType":"StructuredDocumentation","src":"12438:315:47","text":" @dev Destroys `tokenId`.\n The approval is cleared when the token is burned.\n This is an internal function that does not check if the sender is authorized to operate on the token.\n Requirements:\n - `tokenId` must exist.\n Emits a {Transfer} event."},"id":18351,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"12767:5:47","nodeType":"FunctionDefinition","parameters":{"id":18322,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18321,"mutability":"mutable","name":"tokenId","nameLocation":"12781:7:47","nodeType":"VariableDeclaration","scope":18351,"src":"12773:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18320,"name":"uint256","nodeType":"ElementaryTypeName","src":"12773:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12772:17:47"},"returnParameters":{"id":18323,"nodeType":"ParameterList","parameters":[],"src":"12799:0:47"},"scope":18626,"src":"12758:227:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":18410,"nodeType":"Block","src":"13380:389:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18361,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18356,"src":"13394:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":18364,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13408:1:47","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":18363,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13400:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18362,"name":"address","nodeType":"ElementaryTypeName","src":"13400:7:47","typeDescriptions":{}}},"id":18365,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13400:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"13394:16:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18375,"nodeType":"IfStatement","src":"13390:87:47","trueBody":{"id":18374,"nodeType":"Block","src":"13412:65:47","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":18370,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13463:1:47","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":18369,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13455:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18368,"name":"address","nodeType":"ElementaryTypeName","src":"13455:7:47","typeDescriptions":{}}},"id":18371,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13455:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":18367,"name":"ERC721InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22578,"src":"13433:21:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":18372,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13433:33:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18373,"nodeType":"RevertStatement","src":"13426:40:47"}]}},{"assignments":[18377],"declarations":[{"constant":false,"id":18377,"mutability":"mutable","name":"previousOwner","nameLocation":"13494:13:47","nodeType":"VariableDeclaration","scope":18410,"src":"13486:21:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18376,"name":"address","nodeType":"ElementaryTypeName","src":"13486:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":18386,"initialValue":{"arguments":[{"id":18379,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18356,"src":"13518:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18380,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18358,"src":"13522:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"hexValue":"30","id":18383,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13539:1:47","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":18382,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13531:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18381,"name":"address","nodeType":"ElementaryTypeName","src":"13531:7:47","typeDescriptions":{}}},"id":18384,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13531:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":18378,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18223,"src":"13510:7:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_address_$returns$_t_address_$","typeString":"function (address,uint256,address) returns (address)"}},"id":18385,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13510:32:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"13486:56:47"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18392,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18387,"name":"previousOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18377,"src":"13556:13:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":18390,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13581:1:47","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":18389,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13573:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18388,"name":"address","nodeType":"ElementaryTypeName","src":"13573:7:47","typeDescriptions":{}}},"id":18391,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13573:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"13556:27:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18398,"name":"previousOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18377,"src":"13658:13:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":18399,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18354,"src":"13675:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"13658:21:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18408,"nodeType":"IfStatement","src":"13654:109:47","trueBody":{"id":18407,"nodeType":"Block","src":"13681:82:47","statements":[{"errorCall":{"arguments":[{"id":18402,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18354,"src":"13723:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18403,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18358,"src":"13729:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18404,"name":"previousOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18377,"src":"13738:13:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":18401,"name":"ERC721IncorrectOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22568,"src":"13702:20:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_address_$returns$_t_error_$","typeString":"function (address,uint256,address) pure returns (error)"}},"id":18405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13702:50:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18406,"nodeType":"RevertStatement","src":"13695:57:47"}]}},"id":18409,"nodeType":"IfStatement","src":"13552:211:47","trueBody":{"id":18397,"nodeType":"Block","src":"13585:63:47","statements":[{"errorCall":{"arguments":[{"id":18394,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18358,"src":"13629:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18393,"name":"ERC721NonexistentToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22559,"src":"13606:22:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":18395,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13606:31:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18396,"nodeType":"RevertStatement","src":"13599:38:47"}]}}]},"documentation":{"id":18352,"nodeType":"StructuredDocumentation","src":"12991:313:47","text":" @dev Transfers `tokenId` from `from` to `to`.\n  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.\n Requirements:\n - `to` cannot be the zero address.\n - `tokenId` token must be owned by `from`.\n Emits a {Transfer} event."},"id":18411,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"13318:9:47","nodeType":"FunctionDefinition","parameters":{"id":18359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18354,"mutability":"mutable","name":"from","nameLocation":"13336:4:47","nodeType":"VariableDeclaration","scope":18411,"src":"13328:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18353,"name":"address","nodeType":"ElementaryTypeName","src":"13328:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18356,"mutability":"mutable","name":"to","nameLocation":"13350:2:47","nodeType":"VariableDeclaration","scope":18411,"src":"13342:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18355,"name":"address","nodeType":"ElementaryTypeName","src":"13342:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18358,"mutability":"mutable","name":"tokenId","nameLocation":"13362:7:47","nodeType":"VariableDeclaration","scope":18411,"src":"13354:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18357,"name":"uint256","nodeType":"ElementaryTypeName","src":"13354:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13327:43:47"},"returnParameters":{"id":18360,"nodeType":"ParameterList","parameters":[],"src":"13380:0:47"},"scope":18626,"src":"13309:460:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":18428,"nodeType":"Block","src":"14778:53:47","statements":[{"expression":{"arguments":[{"id":18422,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18414,"src":"14802:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18423,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18416,"src":"14808:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18424,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18418,"src":"14812:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"","id":18425,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14821:2:47","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":18421,"name":"_safeTransfer","nodeType":"Identifier","overloadedDeclarations":[18429,18459],"referencedDeclaration":18459,"src":"14788:13:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,uint256,bytes memory)"}},"id":18426,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14788:36:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18427,"nodeType":"ExpressionStatement","src":"14788:36:47"}]},"documentation":{"id":18412,"nodeType":"StructuredDocumentation","src":"13775:923:47","text":" @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients\n are aware of the ERC-721 standard to prevent tokens from being forever locked.\n `data` is additional data, it has no specified format and it is sent in call to `to`.\n This internal function is like {safeTransferFrom} in the sense that it invokes\n {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.\n implement alternative mechanisms to perform token transfer, such as signature-based.\n Requirements:\n - `tokenId` token must exist and be owned by `from`.\n - `to` cannot be the zero address.\n - `from` cannot be the zero address.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n Emits a {Transfer} event."},"id":18429,"implemented":true,"kind":"function","modifiers":[],"name":"_safeTransfer","nameLocation":"14712:13:47","nodeType":"FunctionDefinition","parameters":{"id":18419,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18414,"mutability":"mutable","name":"from","nameLocation":"14734:4:47","nodeType":"VariableDeclaration","scope":18429,"src":"14726:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18413,"name":"address","nodeType":"ElementaryTypeName","src":"14726:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18416,"mutability":"mutable","name":"to","nameLocation":"14748:2:47","nodeType":"VariableDeclaration","scope":18429,"src":"14740:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18415,"name":"address","nodeType":"ElementaryTypeName","src":"14740:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18418,"mutability":"mutable","name":"tokenId","nameLocation":"14760:7:47","nodeType":"VariableDeclaration","scope":18429,"src":"14752:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18417,"name":"uint256","nodeType":"ElementaryTypeName","src":"14752:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14725:43:47"},"returnParameters":{"id":18420,"nodeType":"ParameterList","parameters":[],"src":"14778:0:47"},"scope":18626,"src":"14703:128:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":18458,"nodeType":"Block","src":"15170:127:47","statements":[{"expression":{"arguments":[{"id":18442,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18432,"src":"15190:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18443,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18434,"src":"15196:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18444,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18436,"src":"15200:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18441,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18411,"src":"15180:9:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":18445,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15180:28:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18446,"nodeType":"ExpressionStatement","src":"15180:28:47"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":18450,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"15252:10:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":18451,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15252:12:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18452,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18432,"src":"15266:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18453,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18434,"src":"15272:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18454,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18436,"src":"15276:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18455,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18438,"src":"15285:4:47","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":18447,"name":"ERC721Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25656,"src":"15218:11:47","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC721Utils_$25656_$","typeString":"type(library ERC721Utils)"}},"id":18449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15230:21:47","memberName":"checkOnERC721Received","nodeType":"MemberAccess","referencedDeclaration":25655,"src":"15218:33:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,address,address,uint256,bytes memory)"}},"id":18456,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15218:72:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18457,"nodeType":"ExpressionStatement","src":"15218:72:47"}]},"documentation":{"id":18430,"nodeType":"StructuredDocumentation","src":"14837:226:47","text":" @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is\n forwarded in {IERC721Receiver-onERC721Received} to contract recipients."},"id":18459,"implemented":true,"kind":"function","modifiers":[],"name":"_safeTransfer","nameLocation":"15077:13:47","nodeType":"FunctionDefinition","parameters":{"id":18439,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18432,"mutability":"mutable","name":"from","nameLocation":"15099:4:47","nodeType":"VariableDeclaration","scope":18459,"src":"15091:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18431,"name":"address","nodeType":"ElementaryTypeName","src":"15091:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18434,"mutability":"mutable","name":"to","nameLocation":"15113:2:47","nodeType":"VariableDeclaration","scope":18459,"src":"15105:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18433,"name":"address","nodeType":"ElementaryTypeName","src":"15105:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18436,"mutability":"mutable","name":"tokenId","nameLocation":"15125:7:47","nodeType":"VariableDeclaration","scope":18459,"src":"15117:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18435,"name":"uint256","nodeType":"ElementaryTypeName","src":"15117:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18438,"mutability":"mutable","name":"data","nameLocation":"15147:4:47","nodeType":"VariableDeclaration","scope":18459,"src":"15134:17:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18437,"name":"bytes","nodeType":"ElementaryTypeName","src":"15134:5:47","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15090:62:47"},"returnParameters":{"id":18440,"nodeType":"ParameterList","parameters":[],"src":"15170:0:47"},"scope":18626,"src":"15068:229:47","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":18476,"nodeType":"Block","src":"15810:50:47","statements":[{"expression":{"arguments":[{"id":18470,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18462,"src":"15829:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18471,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18464,"src":"15833:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18472,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18466,"src":"15842:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"74727565","id":18473,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"15848:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":18469,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[18477,18551],"referencedDeclaration":18551,"src":"15820:8:47","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_address_$_t_bool_$returns$__$","typeString":"function (address,uint256,address,bool)"}},"id":18474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15820:33:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18475,"nodeType":"ExpressionStatement","src":"15820:33:47"}]},"documentation":{"id":18460,"nodeType":"StructuredDocumentation","src":"15303:432:47","text":" @dev Approve `to` to operate on `tokenId`\n The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is\n either the owner of the token, or approved to operate on all tokens held by this owner.\n Emits an {Approval} event.\n Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument."},"id":18477,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"15749:8:47","nodeType":"FunctionDefinition","parameters":{"id":18467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18462,"mutability":"mutable","name":"to","nameLocation":"15766:2:47","nodeType":"VariableDeclaration","scope":18477,"src":"15758:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18461,"name":"address","nodeType":"ElementaryTypeName","src":"15758:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18464,"mutability":"mutable","name":"tokenId","nameLocation":"15778:7:47","nodeType":"VariableDeclaration","scope":18477,"src":"15770:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18463,"name":"uint256","nodeType":"ElementaryTypeName","src":"15770:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18466,"mutability":"mutable","name":"auth","nameLocation":"15795:4:47","nodeType":"VariableDeclaration","scope":18477,"src":"15787:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18465,"name":"address","nodeType":"ElementaryTypeName","src":"15787:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15757:43:47"},"returnParameters":{"id":18468,"nodeType":"ParameterList","parameters":[],"src":"15810:0:47"},"scope":18626,"src":"15740:120:47","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":18550,"nodeType":"Block","src":"16136:625:47","statements":[{"assignments":[18491],"declarations":[{"constant":false,"id":18491,"mutability":"mutable","name":"$","nameLocation":"16168:1:47","nodeType":"VariableDeclaration","scope":18550,"src":"16146:23:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":18490,"nodeType":"UserDefinedTypeName","pathNode":{"id":18489,"name":"ERC721Storage","nameLocations":["16146:13:47"],"nodeType":"IdentifierPath","referencedDeclaration":17606,"src":"16146:13:47"},"referencedDeclaration":17606,"src":"16146:13:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":18494,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":18492,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17617,"src":"16172:17:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$17606_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":18493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16172:19:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"16146:45:47"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18502,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18495,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18486,"src":"16257:9:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18496,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18484,"src":"16270:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":18499,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16286:1:47","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":18498,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16278:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18497,"name":"address","nodeType":"ElementaryTypeName","src":"16278:7:47","typeDescriptions":{}}},"id":18500,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16278:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16270:18:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16257:31:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18541,"nodeType":"IfStatement","src":"16253:460:47","trueBody":{"id":18540,"nodeType":"Block","src":"16290:423:47","statements":[{"assignments":[18504],"declarations":[{"constant":false,"id":18504,"mutability":"mutable","name":"owner","nameLocation":"16312:5:47","nodeType":"VariableDeclaration","scope":18540,"src":"16304:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18503,"name":"address","nodeType":"ElementaryTypeName","src":"16304:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":18508,"initialValue":{"arguments":[{"id":18506,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18482,"src":"16334:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18505,"name":"_requireOwned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18625,"src":"16320:13:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":18507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16320:22:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"16304:38:47"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18509,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18484,"src":"16470:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":18512,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16486:1:47","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":18511,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16478:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18510,"name":"address","nodeType":"ElementaryTypeName","src":"16478:7:47","typeDescriptions":{}}},"id":18513,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16478:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16470:18:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18515,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18504,"src":"16492:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":18516,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18484,"src":"16501:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16492:13:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16470:35:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":18523,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16509:30:47","subExpression":{"arguments":[{"id":18520,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18504,"src":"16527:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18521,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18484,"src":"16534:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":18519,"name":"isApprovedForAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17890,"src":"16510:16:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_bool_$","typeString":"function (address,address) view returns (bool)"}},"id":18522,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16510:29:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16470:69:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18530,"nodeType":"IfStatement","src":"16466:142:47","trueBody":{"id":18529,"nodeType":"Block","src":"16541:67:47","statements":[{"errorCall":{"arguments":[{"id":18526,"name":"auth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18484,"src":"16588:4:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":18525,"name":"ERC721InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22590,"src":"16566:21:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":18527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16566:27:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18528,"nodeType":"RevertStatement","src":"16559:34:47"}]}},{"condition":{"id":18531,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18486,"src":"16626:9:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18539,"nodeType":"IfStatement","src":"16622:81:47","trueBody":{"id":18538,"nodeType":"Block","src":"16637:66:47","statements":[{"eventCall":{"arguments":[{"id":18533,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18504,"src":"16669:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18534,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18480,"src":"16676:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18535,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18482,"src":"16680:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18532,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25441,"src":"16660:8:47","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":18536,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16660:28:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18537,"nodeType":"EmitStatement","src":"16655:33:47"}]}}]}},{"expression":{"id":18548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":18542,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18491,"src":"16723:1:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":18545,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16725:15:47","memberName":"_tokenApprovals","nodeType":"MemberAccess","referencedDeclaration":17599,"src":"16723:17:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":18546,"indexExpression":{"id":18544,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18482,"src":"16741:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"16723:26:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":18547,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18480,"src":"16752:2:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"16723:31:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":18549,"nodeType":"ExpressionStatement","src":"16723:31:47"}]},"documentation":{"id":18478,"nodeType":"StructuredDocumentation","src":"15866:171:47","text":" @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not\n emitted in the context of transfers."},"id":18551,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"16051:8:47","nodeType":"FunctionDefinition","parameters":{"id":18487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18480,"mutability":"mutable","name":"to","nameLocation":"16068:2:47","nodeType":"VariableDeclaration","scope":18551,"src":"16060:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18479,"name":"address","nodeType":"ElementaryTypeName","src":"16060:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18482,"mutability":"mutable","name":"tokenId","nameLocation":"16080:7:47","nodeType":"VariableDeclaration","scope":18551,"src":"16072:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18481,"name":"uint256","nodeType":"ElementaryTypeName","src":"16072:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18484,"mutability":"mutable","name":"auth","nameLocation":"16097:4:47","nodeType":"VariableDeclaration","scope":18551,"src":"16089:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18483,"name":"address","nodeType":"ElementaryTypeName","src":"16089:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18486,"mutability":"mutable","name":"emitEvent","nameLocation":"16108:9:47","nodeType":"VariableDeclaration","scope":18551,"src":"16103:14:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18485,"name":"bool","nodeType":"ElementaryTypeName","src":"16103:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"16059:59:47"},"returnParameters":{"id":18488,"nodeType":"ParameterList","parameters":[],"src":"16136:0:47"},"scope":18626,"src":"16042:719:47","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":18595,"nodeType":"Block","src":"17063:276:47","statements":[{"assignments":[18563],"declarations":[{"constant":false,"id":18563,"mutability":"mutable","name":"$","nameLocation":"17095:1:47","nodeType":"VariableDeclaration","scope":18595,"src":"17073:23:47","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"},"typeName":{"id":18562,"nodeType":"UserDefinedTypeName","pathNode":{"id":18561,"name":"ERC721Storage","nameLocations":["17073:13:47"],"nodeType":"IdentifierPath","referencedDeclaration":17606,"src":"17073:13:47"},"referencedDeclaration":17606,"src":"17073:13:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage"}},"visibility":"internal"}],"id":18566,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":18564,"name":"_getERC721Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17617,"src":"17099:17:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_ERC721Storage_$17606_storage_ptr_$","typeString":"function () pure returns (struct ERC721Upgradeable.ERC721Storage storage pointer)"}},"id":18565,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17099:19:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"17073:45:47"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18572,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18567,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18556,"src":"17132:8:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":18570,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17152:1:47","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":18569,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17144:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18568,"name":"address","nodeType":"ElementaryTypeName","src":"17144:7:47","typeDescriptions":{}}},"id":18571,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17144:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"17132:22:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18578,"nodeType":"IfStatement","src":"17128:91:47","trueBody":{"id":18577,"nodeType":"Block","src":"17156:63:47","statements":[{"errorCall":{"arguments":[{"id":18574,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18556,"src":"17199:8:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":18573,"name":"ERC721InvalidOperator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22595,"src":"17177:21:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":18575,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17177:31:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18576,"nodeType":"RevertStatement","src":"17170:38:47"}]}},{"expression":{"id":18587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"expression":{"id":18579,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18563,"src":"17228:1:47","typeDescriptions":{"typeIdentifier":"t_struct$_ERC721Storage_$17606_storage_ptr","typeString":"struct ERC721Upgradeable.ERC721Storage storage pointer"}},"id":18583,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17230:18:47","memberName":"_operatorApprovals","nodeType":"MemberAccess","referencedDeclaration":17605,"src":"17228:20:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_bool_$_$","typeString":"mapping(address => mapping(address => bool))"}},"id":18584,"indexExpression":{"id":18581,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18554,"src":"17249:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17228:27:47","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":18585,"indexExpression":{"id":18582,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18556,"src":"17256:8:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17228:37:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":18586,"name":"approved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18558,"src":"17268:8:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17228:48:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18588,"nodeType":"ExpressionStatement","src":"17228:48:47"},{"eventCall":{"arguments":[{"id":18590,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18554,"src":"17306:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18591,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18556,"src":"17313:8:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18592,"name":"approved","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18558,"src":"17323:8:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":18589,"name":"ApprovalForAll","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25450,"src":"17291:14:47","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_bool_$returns$__$","typeString":"function (address,address,bool)"}},"id":18593,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17291:41:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18594,"nodeType":"EmitStatement","src":"17286:46:47"}]},"documentation":{"id":18552,"nodeType":"StructuredDocumentation","src":"16767:198:47","text":" @dev Approve `operator` to operate on all of `owner` tokens\n Requirements:\n - operator can't be the address zero.\n Emits an {ApprovalForAll} event."},"id":18596,"implemented":true,"kind":"function","modifiers":[],"name":"_setApprovalForAll","nameLocation":"16979:18:47","nodeType":"FunctionDefinition","parameters":{"id":18559,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18554,"mutability":"mutable","name":"owner","nameLocation":"17006:5:47","nodeType":"VariableDeclaration","scope":18596,"src":"16998:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18553,"name":"address","nodeType":"ElementaryTypeName","src":"16998:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18556,"mutability":"mutable","name":"operator","nameLocation":"17021:8:47","nodeType":"VariableDeclaration","scope":18596,"src":"17013:16:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18555,"name":"address","nodeType":"ElementaryTypeName","src":"17013:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18558,"mutability":"mutable","name":"approved","nameLocation":"17036:8:47","nodeType":"VariableDeclaration","scope":18596,"src":"17031:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18557,"name":"bool","nodeType":"ElementaryTypeName","src":"17031:4:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"16997:48:47"},"returnParameters":{"id":18560,"nodeType":"ParameterList","parameters":[],"src":"17063:0:47"},"scope":18626,"src":"16970:369:47","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":18624,"nodeType":"Block","src":"17646:169:47","statements":[{"assignments":[18605],"declarations":[{"constant":false,"id":18605,"mutability":"mutable","name":"owner","nameLocation":"17664:5:47","nodeType":"VariableDeclaration","scope":18624,"src":"17656:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18604,"name":"address","nodeType":"ElementaryTypeName","src":"17656:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":18609,"initialValue":{"arguments":[{"id":18607,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18599,"src":"17681:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18606,"name":"_ownerOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18004,"src":"17672:8:47","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":18608,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17672:17:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"17656:33:47"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18615,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18610,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18605,"src":"17703:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":18613,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17720:1:47","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":18612,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17712:7:47","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18611,"name":"address","nodeType":"ElementaryTypeName","src":"17712:7:47","typeDescriptions":{}}},"id":18614,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17712:10:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"17703:19:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18621,"nodeType":"IfStatement","src":"17699:88:47","trueBody":{"id":18620,"nodeType":"Block","src":"17724:63:47","statements":[{"errorCall":{"arguments":[{"id":18617,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18599,"src":"17768:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18616,"name":"ERC721NonexistentToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22559,"src":"17745:22:47","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":18618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17745:31:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18619,"nodeType":"RevertStatement","src":"17738:38:47"}]}},{"expression":{"id":18622,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18605,"src":"17803:5:47","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":18603,"id":18623,"nodeType":"Return","src":"17796:12:47"}]},"documentation":{"id":18597,"nodeType":"StructuredDocumentation","src":"17345:224:47","text":" @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).\n Returns the owner.\n Overrides to ownership logic should be done to {_ownerOf}."},"id":18625,"implemented":true,"kind":"function","modifiers":[],"name":"_requireOwned","nameLocation":"17583:13:47","nodeType":"FunctionDefinition","parameters":{"id":18600,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18599,"mutability":"mutable","name":"tokenId","nameLocation":"17605:7:47","nodeType":"VariableDeclaration","scope":18625,"src":"17597:15:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18598,"name":"uint256","nodeType":"ElementaryTypeName","src":"17597:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17596:17:47"},"returnParameters":{"id":18603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18602,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18625,"src":"17637:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18601,"name":"address","nodeType":"ElementaryTypeName","src":"17637:7:47","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"17636:9:47"},"scope":18626,"src":"17574:241:47","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":18627,"src":"1117:16700:47","usedErrors":[22554,22559,22568,22573,22578,22585,22590,22595,23183,23186],"usedEvents":[23191,25432,25441,25450]}],"src":"107:17711:47"},"id":47},"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[18672],"Initializable":[23434]},"id":18673,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":18628,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:48"},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":18630,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18673,"sourceUnit":23435,"src":"126:84:48","symbolAliases":[{"foreign":{"id":18629,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23434,"src":"134:13:48","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":18632,"name":"Initializable","nameLocations":["749:13:48"],"nodeType":"IdentifierPath","referencedDeclaration":23434,"src":"749:13:48"},"id":18633,"nodeType":"InheritanceSpecifier","src":"749:13:48"}],"canonicalName":"ContextUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":18631,"nodeType":"StructuredDocumentation","src":"212:496:48","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":18672,"linearizedBaseContracts":[18672,23434],"name":"ContextUpgradeable","nameLocation":"727:18:48","nodeType":"ContractDefinition","nodes":[{"body":{"id":18638,"nodeType":"Block","src":"821:7:48","statements":[]},"id":18639,"implemented":true,"kind":"function","modifiers":[{"id":18636,"kind":"modifierInvocation","modifierName":{"id":18635,"name":"onlyInitializing","nameLocations":["804:16:48"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"804:16:48"},"nodeType":"ModifierInvocation","src":"804:16:48"}],"name":"__Context_init","nameLocation":"778:14:48","nodeType":"FunctionDefinition","parameters":{"id":18634,"nodeType":"ParameterList","parameters":[],"src":"792:2:48"},"returnParameters":{"id":18637,"nodeType":"ParameterList","parameters":[],"src":"821:0:48"},"scope":18672,"src":"769:59:48","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":18644,"nodeType":"Block","src":"896:7:48","statements":[]},"id":18645,"implemented":true,"kind":"function","modifiers":[{"id":18642,"kind":"modifierInvocation","modifierName":{"id":18641,"name":"onlyInitializing","nameLocations":["879:16:48"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"879:16:48"},"nodeType":"ModifierInvocation","src":"879:16:48"}],"name":"__Context_init_unchained","nameLocation":"843:24:48","nodeType":"FunctionDefinition","parameters":{"id":18640,"nodeType":"ParameterList","parameters":[],"src":"867:2:48"},"returnParameters":{"id":18643,"nodeType":"ParameterList","parameters":[],"src":"896:0:48"},"scope":18672,"src":"834:69:48","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":18653,"nodeType":"Block","src":"970:34:48","statements":[{"expression":{"expression":{"id":18650,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"987:3:48","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":18651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"991:6:48","memberName":"sender","nodeType":"MemberAccess","src":"987:10:48","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":18649,"id":18652,"nodeType":"Return","src":"980:17:48"}]},"id":18654,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"917:10:48","nodeType":"FunctionDefinition","parameters":{"id":18646,"nodeType":"ParameterList","parameters":[],"src":"927:2:48"},"returnParameters":{"id":18649,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18648,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18654,"src":"961:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18647,"name":"address","nodeType":"ElementaryTypeName","src":"961:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"960:9:48"},"scope":18672,"src":"908:96:48","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":18662,"nodeType":"Block","src":"1077:32:48","statements":[{"expression":{"expression":{"id":18659,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1094:3:48","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":18660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1098:4:48","memberName":"data","nodeType":"MemberAccess","src":"1094:8:48","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":18658,"id":18661,"nodeType":"Return","src":"1087:15:48"}]},"id":18663,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"1019:8:48","nodeType":"FunctionDefinition","parameters":{"id":18655,"nodeType":"ParameterList","parameters":[],"src":"1027:2:48"},"returnParameters":{"id":18658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18657,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18663,"src":"1061:14:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":18656,"name":"bytes","nodeType":"ElementaryTypeName","src":"1061:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1060:16:48"},"scope":18672,"src":"1010:99:48","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":18670,"nodeType":"Block","src":"1187:25:48","statements":[{"expression":{"hexValue":"30","id":18668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1204:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":18667,"id":18669,"nodeType":"Return","src":"1197:8:48"}]},"id":18671,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"1124:20:48","nodeType":"FunctionDefinition","parameters":{"id":18664,"nodeType":"ParameterList","parameters":[],"src":"1144:2:48"},"returnParameters":{"id":18667,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18666,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18671,"src":"1178:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18665,"name":"uint256","nodeType":"ElementaryTypeName","src":"1178:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1177:9:48"},"scope":18672,"src":"1115:97:48","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":18673,"src":"709:505:48","usedErrors":[23183,23186],"usedEvents":[23191]}],"src":"101:1114:48"},"id":48},"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol","exportedSymbols":{"Address":[26046],"ContextUpgradeable":[18672],"Initializable":[23434],"MulticallUpgradeable":[18775]},"id":18776,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":18674,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"103:24:49"},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"@openzeppelin/contracts/utils/Address.sol","id":18676,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18776,"sourceUnit":26047,"src":"129:66:49","symbolAliases":[{"foreign":{"id":18675,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26046,"src":"137:7:49","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"./ContextUpgradeable.sol","id":18678,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18776,"sourceUnit":18673,"src":"196:60:49","symbolAliases":[{"foreign":{"id":18677,"name":"ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18672,"src":"204:18:49","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":18680,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18776,"sourceUnit":23435,"src":"257:84:49","symbolAliases":[{"foreign":{"id":18679,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23434,"src":"265:13:49","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":18682,"name":"Initializable","nameLocations":["1199:13:49"],"nodeType":"IdentifierPath","referencedDeclaration":23434,"src":"1199:13:49"},"id":18683,"nodeType":"InheritanceSpecifier","src":"1199:13:49"},{"baseName":{"id":18684,"name":"ContextUpgradeable","nameLocations":["1214:18:49"],"nodeType":"IdentifierPath","referencedDeclaration":18672,"src":"1214:18:49"},"id":18685,"nodeType":"InheritanceSpecifier","src":"1214:18:49"}],"canonicalName":"MulticallUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":18681,"nodeType":"StructuredDocumentation","src":"343:813:49","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 {Context-_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 {Context-_msgSender} are not propagated to subcalls."},"fullyImplemented":true,"id":18775,"linearizedBaseContracts":[18775,18672,23434],"name":"MulticallUpgradeable","nameLocation":"1175:20:49","nodeType":"ContractDefinition","nodes":[{"body":{"id":18690,"nodeType":"Block","src":"1293:7:49","statements":[]},"id":18691,"implemented":true,"kind":"function","modifiers":[{"id":18688,"kind":"modifierInvocation","modifierName":{"id":18687,"name":"onlyInitializing","nameLocations":["1276:16:49"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"1276:16:49"},"nodeType":"ModifierInvocation","src":"1276:16:49"}],"name":"__Multicall_init","nameLocation":"1248:16:49","nodeType":"FunctionDefinition","parameters":{"id":18686,"nodeType":"ParameterList","parameters":[],"src":"1264:2:49"},"returnParameters":{"id":18689,"nodeType":"ParameterList","parameters":[],"src":"1293:0:49"},"scope":18775,"src":"1239:61:49","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":18696,"nodeType":"Block","src":"1370:7:49","statements":[]},"id":18697,"implemented":true,"kind":"function","modifiers":[{"id":18694,"kind":"modifierInvocation","modifierName":{"id":18693,"name":"onlyInitializing","nameLocations":["1353:16:49"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"1353:16:49"},"nodeType":"ModifierInvocation","src":"1353:16:49"}],"name":"__Multicall_init_unchained","nameLocation":"1315:26:49","nodeType":"FunctionDefinition","parameters":{"id":18692,"nodeType":"ParameterList","parameters":[],"src":"1341:2:49"},"returnParameters":{"id":18695,"nodeType":"ParameterList","parameters":[],"src":"1370:0:49"},"scope":18775,"src":"1306:71:49","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":18773,"nodeType":"Block","src":"1629:392:49","statements":[{"assignments":[18708],"declarations":[{"constant":false,"id":18708,"mutability":"mutable","name":"context","nameLocation":"1652:7:49","nodeType":"VariableDeclaration","scope":18773,"src":"1639:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18707,"name":"bytes","nodeType":"ElementaryTypeName","src":"1639:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":18728,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":18713,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18709,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1662:3:49","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":18710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1666:6:49","memberName":"sender","nodeType":"MemberAccess","src":"1662:10:49","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":18711,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"1676:10:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":18712,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1676:12:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1662:26:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"baseExpression":{"expression":{"id":18718,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1730:3:49","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":18719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1734:4:49","memberName":"data","nodeType":"MemberAccess","src":"1730:8:49","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":18726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"1730:51:49","startExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":18720,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1739:3:49","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":18721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1743:4:49","memberName":"data","nodeType":"MemberAccess","src":"1739:8:49","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":18722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1748:6:49","memberName":"length","nodeType":"MemberAccess","src":"1739:15:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":18723,"name":"_contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18671,"src":"1757:20:49","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":18724,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1757:22:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1739:40:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},"id":18727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1662:119:49","trueExpression":{"arguments":[{"hexValue":"30","id":18716,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1713:1:49","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":18715,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1703:9:49","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":18714,"name":"bytes","nodeType":"ElementaryTypeName","src":"1707:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":18717,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1703:12:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"1639:142:49"},{"expression":{"id":18736,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18729,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18705,"src":"1792:7:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":18733,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18701,"src":"1814:4:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":18734,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1819:6:49","memberName":"length","nodeType":"MemberAccess","src":"1814:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18732,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1802:11:49","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":18730,"name":"bytes","nodeType":"ElementaryTypeName","src":"1806:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":18731,"nodeType":"ArrayTypeName","src":"1806:7:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}}},"id":18735,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1802:24:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"src":"1792:34:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":18737,"nodeType":"ExpressionStatement","src":"1792:34:49"},{"body":{"id":18769,"nodeType":"Block","src":"1878:113:49","statements":[{"expression":{"id":18767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":18749,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18705,"src":"1892:7:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":18751,"indexExpression":{"id":18750,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18739,"src":"1900:1:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1892:10:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":18756,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1942:4:49","typeDescriptions":{"typeIdentifier":"t_contract$_MulticallUpgradeable_$18775","typeString":"contract MulticallUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_MulticallUpgradeable_$18775","typeString":"contract MulticallUpgradeable"}],"id":18755,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1934:7:49","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":18754,"name":"address","nodeType":"ElementaryTypeName","src":"1934:7:49","typeDescriptions":{}}},"id":18757,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1934:13:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"baseExpression":{"id":18761,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18701,"src":"1962:4:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":18763,"indexExpression":{"id":18762,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18739,"src":"1967:1:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1962:7:49","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":18764,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18708,"src":"1971:7:49","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":18759,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1949:5:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":18758,"name":"bytes","nodeType":"ElementaryTypeName","src":"1949:5:49","typeDescriptions":{}}},"id":18760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1955:6:49","memberName":"concat","nodeType":"MemberAccess","src":"1949:12:49","typeDescriptions":{"typeIdentifier":"t_function_bytesconcat_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":18765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1949:30:49","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":18752,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26046,"src":"1905:7:49","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$26046_$","typeString":"type(library Address)"}},"id":18753,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1913:20:49","memberName":"functionDelegateCall","nodeType":"MemberAccess","referencedDeclaration":25956,"src":"1905:28:49","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":18766,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1905:75:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"1892:88:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18768,"nodeType":"ExpressionStatement","src":"1892:88:49"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18742,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18739,"src":"1856:1:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":18743,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18701,"src":"1860:4:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":18744,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1865:6:49","memberName":"length","nodeType":"MemberAccess","src":"1860:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1856:15:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18770,"initializationExpression":{"assignments":[18739],"declarations":[{"constant":false,"id":18739,"mutability":"mutable","name":"i","nameLocation":"1849:1:49","nodeType":"VariableDeclaration","scope":18770,"src":"1841:9:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18738,"name":"uint256","nodeType":"ElementaryTypeName","src":"1841:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18741,"initialValue":{"hexValue":"30","id":18740,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1853:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"1841:13:49"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":18747,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1873:3:49","subExpression":{"id":18746,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18739,"src":"1873:1:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18748,"nodeType":"ExpressionStatement","src":"1873:3:49"},"nodeType":"ForStatement","src":"1836:155:49"},{"expression":{"id":18771,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18705,"src":"2007:7:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"functionReturnParameters":18706,"id":18772,"nodeType":"Return","src":"2000:14:49"}]},"documentation":{"id":18698,"nodeType":"StructuredDocumentation","src":"1382:152:49","text":" @dev Receives and executes a batch of function calls on this contract.\n @custom:oz-upgrades-unsafe-allow-reachable delegatecall"},"functionSelector":"ac9650d8","id":18774,"implemented":true,"kind":"function","modifiers":[],"name":"multicall","nameLocation":"1548:9:49","nodeType":"FunctionDefinition","parameters":{"id":18702,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18701,"mutability":"mutable","name":"data","nameLocation":"1575:4:49","nodeType":"VariableDeclaration","scope":18774,"src":"1558:21:49","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":18699,"name":"bytes","nodeType":"ElementaryTypeName","src":"1558:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":18700,"nodeType":"ArrayTypeName","src":"1558:7:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"1557:23:49"},"returnParameters":{"id":18706,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18705,"mutability":"mutable","name":"results","nameLocation":"1620:7:49","nodeType":"VariableDeclaration","scope":18774,"src":"1605:22:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":18703,"name":"bytes","nodeType":"ElementaryTypeName","src":"1605:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":18704,"nodeType":"ArrayTypeName","src":"1605:7:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"1604:24:49"},"scope":18775,"src":"1539:482:49","stateMutability":"nonpayable","virtual":true,"visibility":"public"}],"scope":18776,"src":"1157:866:49","usedErrors":[23183,23186,25668,26802],"usedEvents":[23191]}],"src":"103:1921:49"},"id":49},"@openzeppelin/contracts-upgradeable/utils/NoncesUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/NoncesUpgradeable.sol","exportedSymbols":{"Initializable":[23434],"NoncesUpgradeable":[18886]},"id":18887,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":18777,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:50"},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":18779,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":18887,"sourceUnit":23435,"src":"124:84:50","symbolAliases":[{"foreign":{"id":18778,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23434,"src":"132:13:50","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":18781,"name":"Initializable","nameLocations":["333:13:50"],"nodeType":"IdentifierPath","referencedDeclaration":23434,"src":"333:13:50"},"id":18782,"nodeType":"InheritanceSpecifier","src":"333:13:50"}],"canonicalName":"NoncesUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":18780,"nodeType":"StructuredDocumentation","src":"210:83:50","text":" @dev Provides tracking nonces for addresses. Nonces will only increment."},"fullyImplemented":true,"id":18886,"linearizedBaseContracts":[18886,23434],"name":"NoncesUpgradeable","nameLocation":"312:17:50","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":18783,"nodeType":"StructuredDocumentation","src":"353:90:50","text":" @dev The nonce used for an `account` is not the expected current nonce."},"errorSelector":"752d88c0","id":18789,"name":"InvalidAccountNonce","nameLocation":"454:19:50","nodeType":"ErrorDefinition","parameters":{"id":18788,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18785,"mutability":"mutable","name":"account","nameLocation":"482:7:50","nodeType":"VariableDeclaration","scope":18789,"src":"474:15:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18784,"name":"address","nodeType":"ElementaryTypeName","src":"474:7:50","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18787,"mutability":"mutable","name":"currentNonce","nameLocation":"499:12:50","nodeType":"VariableDeclaration","scope":18789,"src":"491:20:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18786,"name":"uint256","nodeType":"ElementaryTypeName","src":"491:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"473:39:50"},"src":"448:65:50"},{"canonicalName":"NoncesUpgradeable.NoncesStorage","documentation":{"id":18790,"nodeType":"StructuredDocumentation","src":"519:64:50","text":"@custom:storage-location erc7201:openzeppelin.storage.Nonces"},"id":18795,"members":[{"constant":false,"id":18794,"mutability":"mutable","name":"_nonces","nameLocation":"655:7:50","nodeType":"VariableDeclaration","scope":18795,"src":"619:43:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":18793,"keyName":"account","keyNameLocation":"635:7:50","keyType":{"id":18791,"name":"address","nodeType":"ElementaryTypeName","src":"627:7:50","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"619:35:50","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":18792,"name":"uint256","nodeType":"ElementaryTypeName","src":"646:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"}],"name":"NoncesStorage","nameLocation":"595:13:50","nodeType":"StructDefinition","scope":18886,"src":"588:81:50","visibility":"public"},{"constant":true,"id":18798,"mutability":"constant","name":"NoncesStorageLocation","nameLocation":"810:21:50","nodeType":"VariableDeclaration","scope":18886,"src":"785:115:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":18796,"name":"bytes32","nodeType":"ElementaryTypeName","src":"785:7:50","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307835616234326365643632383838383235396330386163393864623165623063663730326663313530313334343331316438623130306364316266653462623030","id":18797,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"834:66:50","typeDescriptions":{"typeIdentifier":"t_rational_41026498920877473550552694860415970151284396403628511442111957027090812156672_by_1","typeString":"int_const 4102...(69 digits omitted)...6672"},"value":"0x5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb00"},"visibility":"private"},{"body":{"id":18805,"nodeType":"Block","src":"983:80:50","statements":[{"AST":{"nativeSrc":"1002:55:50","nodeType":"YulBlock","src":"1002:55:50","statements":[{"nativeSrc":"1016:31:50","nodeType":"YulAssignment","src":"1016:31:50","value":{"name":"NoncesStorageLocation","nativeSrc":"1026:21:50","nodeType":"YulIdentifier","src":"1026:21:50"},"variableNames":[{"name":"$.slot","nativeSrc":"1016:6:50","nodeType":"YulIdentifier","src":"1016:6:50"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":18802,"isOffset":false,"isSlot":true,"src":"1016:6:50","suffix":"slot","valueSize":1},{"declaration":18798,"isOffset":false,"isSlot":false,"src":"1026:21:50","valueSize":1}],"id":18804,"nodeType":"InlineAssembly","src":"993:64:50"}]},"id":18806,"implemented":true,"kind":"function","modifiers":[],"name":"_getNoncesStorage","nameLocation":"916:17:50","nodeType":"FunctionDefinition","parameters":{"id":18799,"nodeType":"ParameterList","parameters":[],"src":"933:2:50"},"returnParameters":{"id":18803,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18802,"mutability":"mutable","name":"$","nameLocation":"980:1:50","nodeType":"VariableDeclaration","scope":18806,"src":"958:23:50","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$18795_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage"},"typeName":{"id":18801,"nodeType":"UserDefinedTypeName","pathNode":{"id":18800,"name":"NoncesStorage","nameLocations":["958:13:50"],"nodeType":"IdentifierPath","referencedDeclaration":18795,"src":"958:13:50"},"referencedDeclaration":18795,"src":"958:13:50","typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$18795_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage"}},"visibility":"internal"}],"src":"957:25:50"},"scope":18886,"src":"907:156:50","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":18811,"nodeType":"Block","src":"1120:7:50","statements":[]},"id":18812,"implemented":true,"kind":"function","modifiers":[{"id":18809,"kind":"modifierInvocation","modifierName":{"id":18808,"name":"onlyInitializing","nameLocations":["1103:16:50"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"1103:16:50"},"nodeType":"ModifierInvocation","src":"1103:16:50"}],"name":"__Nonces_init","nameLocation":"1078:13:50","nodeType":"FunctionDefinition","parameters":{"id":18807,"nodeType":"ParameterList","parameters":[],"src":"1091:2:50"},"returnParameters":{"id":18810,"nodeType":"ParameterList","parameters":[],"src":"1120:0:50"},"scope":18886,"src":"1069:58:50","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":18817,"nodeType":"Block","src":"1194:7:50","statements":[]},"id":18818,"implemented":true,"kind":"function","modifiers":[{"id":18815,"kind":"modifierInvocation","modifierName":{"id":18814,"name":"onlyInitializing","nameLocations":["1177:16:50"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"1177:16:50"},"nodeType":"ModifierInvocation","src":"1177:16:50"}],"name":"__Nonces_init_unchained","nameLocation":"1142:23:50","nodeType":"FunctionDefinition","parameters":{"id":18813,"nodeType":"ParameterList","parameters":[],"src":"1165:2:50"},"returnParameters":{"id":18816,"nodeType":"ParameterList","parameters":[],"src":"1194:0:50"},"scope":18886,"src":"1133:68:50","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":18837,"nodeType":"Block","src":"1349:95:50","statements":[{"assignments":[18828],"declarations":[{"constant":false,"id":18828,"mutability":"mutable","name":"$","nameLocation":"1381:1:50","nodeType":"VariableDeclaration","scope":18837,"src":"1359:23:50","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$18795_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage"},"typeName":{"id":18827,"nodeType":"UserDefinedTypeName","pathNode":{"id":18826,"name":"NoncesStorage","nameLocations":["1359:13:50"],"nodeType":"IdentifierPath","referencedDeclaration":18795,"src":"1359:13:50"},"referencedDeclaration":18795,"src":"1359:13:50","typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$18795_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage"}},"visibility":"internal"}],"id":18831,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":18829,"name":"_getNoncesStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18806,"src":"1385:17:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_NoncesStorage_$18795_storage_ptr_$","typeString":"function () pure returns (struct NoncesUpgradeable.NoncesStorage storage pointer)"}},"id":18830,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1385:19:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$18795_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"1359:45:50"},{"expression":{"baseExpression":{"expression":{"id":18832,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18828,"src":"1421:1:50","typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$18795_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage storage pointer"}},"id":18833,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1423:7:50","memberName":"_nonces","nodeType":"MemberAccess","referencedDeclaration":18794,"src":"1421:9:50","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":18835,"indexExpression":{"id":18834,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18821,"src":"1431:5:50","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1421:16:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18825,"id":18836,"nodeType":"Return","src":"1414:23:50"}]},"documentation":{"id":18819,"nodeType":"StructuredDocumentation","src":"1206:69:50","text":" @dev Returns the next unused nonce for an address."},"functionSelector":"7ecebe00","id":18838,"implemented":true,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"1289:6:50","nodeType":"FunctionDefinition","parameters":{"id":18822,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18821,"mutability":"mutable","name":"owner","nameLocation":"1304:5:50","nodeType":"VariableDeclaration","scope":18838,"src":"1296:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18820,"name":"address","nodeType":"ElementaryTypeName","src":"1296:7:50","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1295:15:50"},"returnParameters":{"id":18825,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18824,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18838,"src":"1340:7:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18823,"name":"uint256","nodeType":"ElementaryTypeName","src":"1340:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1339:9:50"},"scope":18886,"src":"1280:164:50","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":18859,"nodeType":"Block","src":"1627:383:50","statements":[{"assignments":[18848],"declarations":[{"constant":false,"id":18848,"mutability":"mutable","name":"$","nameLocation":"1659:1:50","nodeType":"VariableDeclaration","scope":18859,"src":"1637:23:50","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$18795_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage"},"typeName":{"id":18847,"nodeType":"UserDefinedTypeName","pathNode":{"id":18846,"name":"NoncesStorage","nameLocations":["1637:13:50"],"nodeType":"IdentifierPath","referencedDeclaration":18795,"src":"1637:13:50"},"referencedDeclaration":18795,"src":"1637:13:50","typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$18795_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage"}},"visibility":"internal"}],"id":18851,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":18849,"name":"_getNoncesStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18806,"src":"1663:17:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_NoncesStorage_$18795_storage_ptr_$","typeString":"function () pure returns (struct NoncesUpgradeable.NoncesStorage storage pointer)"}},"id":18850,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1663:19:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$18795_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"1637:45:50"},{"id":18858,"nodeType":"UncheckedBlock","src":"1885:119:50","statements":[{"expression":{"id":18856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1975:18:50","subExpression":{"baseExpression":{"expression":{"id":18852,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18848,"src":"1975:1:50","typeDescriptions":{"typeIdentifier":"t_struct$_NoncesStorage_$18795_storage_ptr","typeString":"struct NoncesUpgradeable.NoncesStorage storage pointer"}},"id":18853,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1977:7:50","memberName":"_nonces","nodeType":"MemberAccess","referencedDeclaration":18794,"src":"1975:9:50","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":18855,"indexExpression":{"id":18854,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18841,"src":"1985:5:50","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1975:16:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18845,"id":18857,"nodeType":"Return","src":"1968:25:50"}]}]},"documentation":{"id":18839,"nodeType":"StructuredDocumentation","src":"1450:103:50","text":" @dev Consumes a nonce.\n Returns the current value and increments nonce."},"id":18860,"implemented":true,"kind":"function","modifiers":[],"name":"_useNonce","nameLocation":"1567:9:50","nodeType":"FunctionDefinition","parameters":{"id":18842,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18841,"mutability":"mutable","name":"owner","nameLocation":"1585:5:50","nodeType":"VariableDeclaration","scope":18860,"src":"1577:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18840,"name":"address","nodeType":"ElementaryTypeName","src":"1577:7:50","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1576:15:50"},"returnParameters":{"id":18845,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18844,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18860,"src":"1618:7:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18843,"name":"uint256","nodeType":"ElementaryTypeName","src":"1618:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1617:9:50"},"scope":18886,"src":"1558:452:50","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":18884,"nodeType":"Block","src":"2194:149:50","statements":[{"assignments":[18869],"declarations":[{"constant":false,"id":18869,"mutability":"mutable","name":"current","nameLocation":"2212:7:50","nodeType":"VariableDeclaration","scope":18884,"src":"2204:15:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18868,"name":"uint256","nodeType":"ElementaryTypeName","src":"2204:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18873,"initialValue":{"arguments":[{"id":18871,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"2232:5:50","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":18870,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18860,"src":"2222:9:50","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":18872,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2222:16:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2204:34:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18874,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18865,"src":"2252:5:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":18875,"name":"current","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18869,"src":"2261:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2252:16:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18883,"nodeType":"IfStatement","src":"2248:89:50","trueBody":{"id":18882,"nodeType":"Block","src":"2270:67:50","statements":[{"errorCall":{"arguments":[{"id":18878,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18863,"src":"2311:5:50","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":18879,"name":"current","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18869,"src":"2318:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18877,"name":"InvalidAccountNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18789,"src":"2291:19:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256) pure returns (error)"}},"id":18880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2291:35:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18881,"nodeType":"RevertStatement","src":"2284:42:50"}]}}]},"documentation":{"id":18861,"nodeType":"StructuredDocumentation","src":"2016:100:50","text":" @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`."},"id":18885,"implemented":true,"kind":"function","modifiers":[],"name":"_useCheckedNonce","nameLocation":"2130:16:50","nodeType":"FunctionDefinition","parameters":{"id":18866,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18863,"mutability":"mutable","name":"owner","nameLocation":"2155:5:50","nodeType":"VariableDeclaration","scope":18885,"src":"2147:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18862,"name":"address","nodeType":"ElementaryTypeName","src":"2147:7:50","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18865,"mutability":"mutable","name":"nonce","nameLocation":"2170:5:50","nodeType":"VariableDeclaration","scope":18885,"src":"2162:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18864,"name":"uint256","nodeType":"ElementaryTypeName","src":"2162:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2146:30:50"},"returnParameters":{"id":18867,"nodeType":"ParameterList","parameters":[],"src":"2194:0:50"},"scope":18886,"src":"2121:222:50","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":18887,"src":"294:2051:50","usedErrors":[18789,23183,23186],"usedEvents":[23191]}],"src":"99:2247:50"},"id":50},"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol","exportedSymbols":{"ContextUpgradeable":[18672],"Initializable":[23434],"PausableUpgradeable":[19046]},"id":19047,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":18888,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"102:24:51"},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"../utils/ContextUpgradeable.sol","id":18890,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":19047,"sourceUnit":18673,"src":"128:67:51","symbolAliases":[{"foreign":{"id":18889,"name":"ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18672,"src":"136:18:51","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":18892,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":19047,"sourceUnit":23435,"src":"196:84:51","symbolAliases":[{"foreign":{"id":18891,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23434,"src":"204:13:51","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":18894,"name":"Initializable","nameLocations":["763:13:51"],"nodeType":"IdentifierPath","referencedDeclaration":23434,"src":"763:13:51"},"id":18895,"nodeType":"InheritanceSpecifier","src":"763:13:51"},{"baseName":{"id":18896,"name":"ContextUpgradeable","nameLocations":["778:18:51"],"nodeType":"IdentifierPath","referencedDeclaration":18672,"src":"778:18:51"},"id":18897,"nodeType":"InheritanceSpecifier","src":"778:18:51"}],"canonicalName":"PausableUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":18893,"nodeType":"StructuredDocumentation","src":"282:439:51","text":" @dev Contract module which allows children to implement an emergency stop\n mechanism that can be triggered by an authorized account.\n This module is used through inheritance. It will make available the\n modifiers `whenNotPaused` and `whenPaused`, which can be applied to\n the functions of your contract. Note that they will not be pausable by\n simply including this module, only once the modifiers are put in place."},"fullyImplemented":true,"id":19046,"linearizedBaseContracts":[19046,18672,23434],"name":"PausableUpgradeable","nameLocation":"740:19:51","nodeType":"ContractDefinition","nodes":[{"canonicalName":"PausableUpgradeable.PausableStorage","documentation":{"id":18898,"nodeType":"StructuredDocumentation","src":"803:66:51","text":"@custom:storage-location erc7201:openzeppelin.storage.Pausable"},"id":18901,"members":[{"constant":false,"id":18900,"mutability":"mutable","name":"_paused","nameLocation":"912:7:51","nodeType":"VariableDeclaration","scope":18901,"src":"907:12:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18899,"name":"bool","nodeType":"ElementaryTypeName","src":"907:4:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"PausableStorage","nameLocation":"881:15:51","nodeType":"StructDefinition","scope":19046,"src":"874:52:51","visibility":"public"},{"constant":true,"id":18904,"mutability":"constant","name":"PausableStorageLocation","nameLocation":"1069:23:51","nodeType":"VariableDeclaration","scope":19046,"src":"1044:117:51","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":18902,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1044:7:51","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307863643565643135633665313837653737653961656538383138346332316634663231383261623538323763623362376530376662656463643633663033333030","id":18903,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1095:66:51","typeDescriptions":{"typeIdentifier":"t_rational_92891662540554778686986514950364265630913525426840345632122912437671245656832_by_1","typeString":"int_const 9289...(69 digits omitted)...6832"},"value":"0xcd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300"},"visibility":"private"},{"body":{"id":18911,"nodeType":"Block","src":"1248:82:51","statements":[{"AST":{"nativeSrc":"1267:57:51","nodeType":"YulBlock","src":"1267:57:51","statements":[{"nativeSrc":"1281:33:51","nodeType":"YulAssignment","src":"1281:33:51","value":{"name":"PausableStorageLocation","nativeSrc":"1291:23:51","nodeType":"YulIdentifier","src":"1291:23:51"},"variableNames":[{"name":"$.slot","nativeSrc":"1281:6:51","nodeType":"YulIdentifier","src":"1281:6:51"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":18908,"isOffset":false,"isSlot":true,"src":"1281:6:51","suffix":"slot","valueSize":1},{"declaration":18904,"isOffset":false,"isSlot":false,"src":"1291:23:51","valueSize":1}],"id":18910,"nodeType":"InlineAssembly","src":"1258:66:51"}]},"id":18912,"implemented":true,"kind":"function","modifiers":[],"name":"_getPausableStorage","nameLocation":"1177:19:51","nodeType":"FunctionDefinition","parameters":{"id":18905,"nodeType":"ParameterList","parameters":[],"src":"1196:2:51"},"returnParameters":{"id":18909,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18908,"mutability":"mutable","name":"$","nameLocation":"1245:1:51","nodeType":"VariableDeclaration","scope":18912,"src":"1221:25:51","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$18901_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage"},"typeName":{"id":18907,"nodeType":"UserDefinedTypeName","pathNode":{"id":18906,"name":"PausableStorage","nameLocations":["1221:15:51"],"nodeType":"IdentifierPath","referencedDeclaration":18901,"src":"1221:15:51"},"referencedDeclaration":18901,"src":"1221:15:51","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$18901_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage"}},"visibility":"internal"}],"src":"1220:27:51"},"scope":19046,"src":"1168:162:51","stateMutability":"pure","virtual":false,"visibility":"private"},{"anonymous":false,"documentation":{"id":18913,"nodeType":"StructuredDocumentation","src":"1336:73:51","text":" @dev Emitted when the pause is triggered by `account`."},"eventSelector":"62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258","id":18917,"name":"Paused","nameLocation":"1420:6:51","nodeType":"EventDefinition","parameters":{"id":18916,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18915,"indexed":false,"mutability":"mutable","name":"account","nameLocation":"1435:7:51","nodeType":"VariableDeclaration","scope":18917,"src":"1427:15:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18914,"name":"address","nodeType":"ElementaryTypeName","src":"1427:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1426:17:51"},"src":"1414:30:51"},{"anonymous":false,"documentation":{"id":18918,"nodeType":"StructuredDocumentation","src":"1450:70:51","text":" @dev Emitted when the pause is lifted by `account`."},"eventSelector":"5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa","id":18922,"name":"Unpaused","nameLocation":"1531:8:51","nodeType":"EventDefinition","parameters":{"id":18921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18920,"indexed":false,"mutability":"mutable","name":"account","nameLocation":"1548:7:51","nodeType":"VariableDeclaration","scope":18922,"src":"1540:15:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":18919,"name":"address","nodeType":"ElementaryTypeName","src":"1540:7:51","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1539:17:51"},"src":"1525:32:51"},{"documentation":{"id":18923,"nodeType":"StructuredDocumentation","src":"1563:76:51","text":" @dev The operation failed because the contract is paused."},"errorSelector":"d93c0665","id":18925,"name":"EnforcedPause","nameLocation":"1650:13:51","nodeType":"ErrorDefinition","parameters":{"id":18924,"nodeType":"ParameterList","parameters":[],"src":"1663:2:51"},"src":"1644:22:51"},{"documentation":{"id":18926,"nodeType":"StructuredDocumentation","src":"1672:80:51","text":" @dev The operation failed because the contract is not paused."},"errorSelector":"8dfc202b","id":18928,"name":"ExpectedPause","nameLocation":"1763:13:51","nodeType":"ErrorDefinition","parameters":{"id":18927,"nodeType":"ParameterList","parameters":[],"src":"1776:2:51"},"src":"1757:22:51"},{"body":{"id":18935,"nodeType":"Block","src":"1990:47:51","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":18931,"name":"_requireNotPaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18984,"src":"2000:17:51","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":18932,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2000:19:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18933,"nodeType":"ExpressionStatement","src":"2000:19:51"},{"id":18934,"nodeType":"PlaceholderStatement","src":"2029:1:51"}]},"documentation":{"id":18929,"nodeType":"StructuredDocumentation","src":"1785:175:51","text":" @dev Modifier to make a function callable only when the contract is not paused.\n Requirements:\n - The contract must not be paused."},"id":18936,"name":"whenNotPaused","nameLocation":"1974:13:51","nodeType":"ModifierDefinition","parameters":{"id":18930,"nodeType":"ParameterList","parameters":[],"src":"1987:2:51"},"src":"1965:72:51","virtual":false,"visibility":"internal"},{"body":{"id":18943,"nodeType":"Block","src":"2237:44:51","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":18939,"name":"_requirePaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18997,"src":"2247:14:51","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":18940,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2247:16:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18941,"nodeType":"ExpressionStatement","src":"2247:16:51"},{"id":18942,"nodeType":"PlaceholderStatement","src":"2273:1:51"}]},"documentation":{"id":18937,"nodeType":"StructuredDocumentation","src":"2043:167:51","text":" @dev Modifier to make a function callable only when the contract is paused.\n Requirements:\n - The contract must be paused."},"id":18944,"name":"whenPaused","nameLocation":"2224:10:51","nodeType":"ModifierDefinition","parameters":{"id":18938,"nodeType":"ParameterList","parameters":[],"src":"2234:2:51"},"src":"2215:66:51","virtual":false,"visibility":"internal"},{"body":{"id":18949,"nodeType":"Block","src":"2340:7:51","statements":[]},"id":18950,"implemented":true,"kind":"function","modifiers":[{"id":18947,"kind":"modifierInvocation","modifierName":{"id":18946,"name":"onlyInitializing","nameLocations":["2323:16:51"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"2323:16:51"},"nodeType":"ModifierInvocation","src":"2323:16:51"}],"name":"__Pausable_init","nameLocation":"2296:15:51","nodeType":"FunctionDefinition","parameters":{"id":18945,"nodeType":"ParameterList","parameters":[],"src":"2311:2:51"},"returnParameters":{"id":18948,"nodeType":"ParameterList","parameters":[],"src":"2340:0:51"},"scope":19046,"src":"2287:60:51","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":18955,"nodeType":"Block","src":"2416:7:51","statements":[]},"id":18956,"implemented":true,"kind":"function","modifiers":[{"id":18953,"kind":"modifierInvocation","modifierName":{"id":18952,"name":"onlyInitializing","nameLocations":["2399:16:51"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"2399:16:51"},"nodeType":"ModifierInvocation","src":"2399:16:51"}],"name":"__Pausable_init_unchained","nameLocation":"2362:25:51","nodeType":"FunctionDefinition","parameters":{"id":18951,"nodeType":"ParameterList","parameters":[],"src":"2387:2:51"},"returnParameters":{"id":18954,"nodeType":"ParameterList","parameters":[],"src":"2416:0:51"},"scope":19046,"src":"2353:70:51","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":18971,"nodeType":"Block","src":"2570:92:51","statements":[{"assignments":[18964],"declarations":[{"constant":false,"id":18964,"mutability":"mutable","name":"$","nameLocation":"2604:1:51","nodeType":"VariableDeclaration","scope":18971,"src":"2580:25:51","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$18901_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage"},"typeName":{"id":18963,"nodeType":"UserDefinedTypeName","pathNode":{"id":18962,"name":"PausableStorage","nameLocations":["2580:15:51"],"nodeType":"IdentifierPath","referencedDeclaration":18901,"src":"2580:15:51"},"referencedDeclaration":18901,"src":"2580:15:51","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$18901_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage"}},"visibility":"internal"}],"id":18967,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":18965,"name":"_getPausableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18912,"src":"2608:19:51","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_PausableStorage_$18901_storage_ptr_$","typeString":"function () pure returns (struct PausableUpgradeable.PausableStorage storage pointer)"}},"id":18966,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2608:21:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$18901_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"2580:49:51"},{"expression":{"expression":{"id":18968,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18964,"src":"2646:1:51","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$18901_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage storage pointer"}},"id":18969,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2648:7:51","memberName":"_paused","nodeType":"MemberAccess","referencedDeclaration":18900,"src":"2646:9:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":18961,"id":18970,"nodeType":"Return","src":"2639:16:51"}]},"documentation":{"id":18957,"nodeType":"StructuredDocumentation","src":"2428:84:51","text":" @dev Returns true if the contract is paused, and false otherwise."},"functionSelector":"5c975abb","id":18972,"implemented":true,"kind":"function","modifiers":[],"name":"paused","nameLocation":"2526:6:51","nodeType":"FunctionDefinition","parameters":{"id":18958,"nodeType":"ParameterList","parameters":[],"src":"2532:2:51"},"returnParameters":{"id":18961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18960,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18972,"src":"2564:4:51","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18959,"name":"bool","nodeType":"ElementaryTypeName","src":"2564:4:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2563:6:51"},"scope":19046,"src":"2517:145:51","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":18983,"nodeType":"Block","src":"2781:77:51","statements":[{"condition":{"arguments":[],"expression":{"argumentTypes":[],"id":18976,"name":"paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18972,"src":"2795:6:51","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":18977,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2795:8:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18982,"nodeType":"IfStatement","src":"2791:61:51","trueBody":{"id":18981,"nodeType":"Block","src":"2805:47:51","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":18978,"name":"EnforcedPause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18925,"src":"2826:13:51","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":18979,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2826:15:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18980,"nodeType":"RevertStatement","src":"2819:22:51"}]}}]},"documentation":{"id":18973,"nodeType":"StructuredDocumentation","src":"2668:57:51","text":" @dev Throws if the contract is paused."},"id":18984,"implemented":true,"kind":"function","modifiers":[],"name":"_requireNotPaused","nameLocation":"2739:17:51","nodeType":"FunctionDefinition","parameters":{"id":18974,"nodeType":"ParameterList","parameters":[],"src":"2756:2:51"},"returnParameters":{"id":18975,"nodeType":"ParameterList","parameters":[],"src":"2781:0:51"},"scope":19046,"src":"2730:128:51","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":18996,"nodeType":"Block","src":"2978:78:51","statements":[{"condition":{"id":18990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"2992:9:51","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":18988,"name":"paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18972,"src":"2993:6:51","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":18989,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2993:8:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18995,"nodeType":"IfStatement","src":"2988:62:51","trueBody":{"id":18994,"nodeType":"Block","src":"3003:47:51","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":18991,"name":"ExpectedPause","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18928,"src":"3024:13:51","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":18992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3024:15:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18993,"nodeType":"RevertStatement","src":"3017:22:51"}]}}]},"documentation":{"id":18985,"nodeType":"StructuredDocumentation","src":"2864:61:51","text":" @dev Throws if the contract is not paused."},"id":18997,"implemented":true,"kind":"function","modifiers":[],"name":"_requirePaused","nameLocation":"2939:14:51","nodeType":"FunctionDefinition","parameters":{"id":18986,"nodeType":"ParameterList","parameters":[],"src":"2953:2:51"},"returnParameters":{"id":18987,"nodeType":"ParameterList","parameters":[],"src":"2978:0:51"},"scope":19046,"src":"2930:126:51","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":19020,"nodeType":"Block","src":"3240:127:51","statements":[{"assignments":[19005],"declarations":[{"constant":false,"id":19005,"mutability":"mutable","name":"$","nameLocation":"3274:1:51","nodeType":"VariableDeclaration","scope":19020,"src":"3250:25:51","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$18901_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage"},"typeName":{"id":19004,"nodeType":"UserDefinedTypeName","pathNode":{"id":19003,"name":"PausableStorage","nameLocations":["3250:15:51"],"nodeType":"IdentifierPath","referencedDeclaration":18901,"src":"3250:15:51"},"referencedDeclaration":18901,"src":"3250:15:51","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$18901_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage"}},"visibility":"internal"}],"id":19008,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":19006,"name":"_getPausableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18912,"src":"3278:19:51","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_PausableStorage_$18901_storage_ptr_$","typeString":"function () pure returns (struct PausableUpgradeable.PausableStorage storage pointer)"}},"id":19007,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3278:21:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$18901_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3250:49:51"},{"expression":{"id":19013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":19009,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19005,"src":"3309:1:51","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$18901_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage storage pointer"}},"id":19011,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3311:7:51","memberName":"_paused","nodeType":"MemberAccess","referencedDeclaration":18900,"src":"3309:9:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":19012,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3321:4:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"3309:16:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19014,"nodeType":"ExpressionStatement","src":"3309:16:51"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":19016,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"3347:10:51","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":19017,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3347:12:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":19015,"name":"Paused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18917,"src":"3340:6:51","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":19018,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3340:20:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":19019,"nodeType":"EmitStatement","src":"3335:25:51"}]},"documentation":{"id":18998,"nodeType":"StructuredDocumentation","src":"3062:124:51","text":" @dev Triggers stopped state.\n Requirements:\n - The contract must not be paused."},"id":19021,"implemented":true,"kind":"function","modifiers":[{"id":19001,"kind":"modifierInvocation","modifierName":{"id":19000,"name":"whenNotPaused","nameLocations":["3226:13:51"],"nodeType":"IdentifierPath","referencedDeclaration":18936,"src":"3226:13:51"},"nodeType":"ModifierInvocation","src":"3226:13:51"}],"name":"_pause","nameLocation":"3200:6:51","nodeType":"FunctionDefinition","parameters":{"id":18999,"nodeType":"ParameterList","parameters":[],"src":"3206:2:51"},"returnParameters":{"id":19002,"nodeType":"ParameterList","parameters":[],"src":"3240:0:51"},"scope":19046,"src":"3191:176:51","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":19044,"nodeType":"Block","src":"3547:130:51","statements":[{"assignments":[19029],"declarations":[{"constant":false,"id":19029,"mutability":"mutable","name":"$","nameLocation":"3581:1:51","nodeType":"VariableDeclaration","scope":19044,"src":"3557:25:51","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$18901_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage"},"typeName":{"id":19028,"nodeType":"UserDefinedTypeName","pathNode":{"id":19027,"name":"PausableStorage","nameLocations":["3557:15:51"],"nodeType":"IdentifierPath","referencedDeclaration":18901,"src":"3557:15:51"},"referencedDeclaration":18901,"src":"3557:15:51","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$18901_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage"}},"visibility":"internal"}],"id":19032,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":19030,"name":"_getPausableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18912,"src":"3585:19:51","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_PausableStorage_$18901_storage_ptr_$","typeString":"function () pure returns (struct PausableUpgradeable.PausableStorage storage pointer)"}},"id":19031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3585:21:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$18901_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3557:49:51"},{"expression":{"id":19037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":19033,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19029,"src":"3616:1:51","typeDescriptions":{"typeIdentifier":"t_struct$_PausableStorage_$18901_storage_ptr","typeString":"struct PausableUpgradeable.PausableStorage storage pointer"}},"id":19035,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3618:7:51","memberName":"_paused","nodeType":"MemberAccess","referencedDeclaration":18900,"src":"3616:9:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":19036,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3628:5:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"3616:17:51","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19038,"nodeType":"ExpressionStatement","src":"3616:17:51"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":19040,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18654,"src":"3657:10:51","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":19041,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3657:12:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":19039,"name":"Unpaused","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18922,"src":"3648:8:51","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":19042,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3648:22:51","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":19043,"nodeType":"EmitStatement","src":"3643:27:51"}]},"documentation":{"id":19022,"nodeType":"StructuredDocumentation","src":"3373:121:51","text":" @dev Returns to normal state.\n Requirements:\n - The contract must be paused."},"id":19045,"implemented":true,"kind":"function","modifiers":[{"id":19025,"kind":"modifierInvocation","modifierName":{"id":19024,"name":"whenPaused","nameLocations":["3536:10:51"],"nodeType":"IdentifierPath","referencedDeclaration":18944,"src":"3536:10:51"},"nodeType":"ModifierInvocation","src":"3536:10:51"}],"name":"_unpause","nameLocation":"3508:8:51","nodeType":"FunctionDefinition","parameters":{"id":19023,"nodeType":"ParameterList","parameters":[],"src":"3516:2:51"},"returnParameters":{"id":19026,"nodeType":"ParameterList","parameters":[],"src":"3547:0:51"},"scope":19046,"src":"3499:178:51","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":19047,"src":"722:2957:51","usedErrors":[18925,18928,23183,23186],"usedEvents":[18917,18922,23191]}],"src":"102:3578:51"},"id":51},"@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol","exportedSymbols":{"EIP712Upgradeable":[19390],"IERC5267":[22488],"Initializable":[23434],"MessageHashUtils":[33299]},"id":19391,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":19048,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"113:24:52"},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","file":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","id":19050,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":19391,"sourceUnit":33300,"src":"139:97:52","symbolAliases":[{"foreign":{"id":19049,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33299,"src":"147:16:52","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5267.sol","file":"@openzeppelin/contracts/interfaces/IERC5267.sol","id":19052,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":19391,"sourceUnit":22489,"src":"237:73:52","symbolAliases":[{"foreign":{"id":19051,"name":"IERC5267","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22488,"src":"245:8:52","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":19054,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":19391,"sourceUnit":23435,"src":"311:84:52","symbolAliases":[{"foreign":{"id":19053,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23434,"src":"319:13:52","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":19056,"name":"Initializable","nameLocations":["1902:13:52"],"nodeType":"IdentifierPath","referencedDeclaration":23434,"src":"1902:13:52"},"id":19057,"nodeType":"InheritanceSpecifier","src":"1902:13:52"},{"baseName":{"id":19058,"name":"IERC5267","nameLocations":["1917:8:52"],"nodeType":"IdentifierPath","referencedDeclaration":22488,"src":"1917:8:52"},"id":19059,"nodeType":"InheritanceSpecifier","src":"1917:8:52"}],"canonicalName":"EIP712Upgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":19055,"nodeType":"StructuredDocumentation","src":"397:1465:52","text":" @dev https://eips.ethereum.org/EIPS/eip-712[EIP-712] is a standard for hashing and signing of typed structured data.\n The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose\n encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract\n does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to\n produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.\n This contract implements the EIP-712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\n scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\n ({_hashTypedDataV4}).\n The implementation of the domain separator was designed to be as efficient as possible while still properly updating\n the chain id to protect against replay attacks on an eventual fork of the chain.\n NOTE: This contract implements the version of the encoding known as \"v4\", as implemented by the JSON RPC method\n https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\n NOTE: The upgradeable version of this contract does not use an immutable cache and recomputes the domain separator\n each time {_domainSeparatorV4} is called. That is cheaper than accessing a cached version in cold storage."},"fullyImplemented":true,"id":19390,"linearizedBaseContracts":[19390,22488,23434],"name":"EIP712Upgradeable","nameLocation":"1881:17:52","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":19064,"mutability":"constant","name":"TYPE_HASH","nameLocation":"1957:9:52","nodeType":"VariableDeclaration","scope":19390,"src":"1932:140:52","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19060,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1932:7:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429","id":19062,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1987:84:52","typeDescriptions":{"typeIdentifier":"t_stringliteral_8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f","typeString":"literal_string \"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\""},"value":"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f","typeString":"literal_string \"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\""}],"id":19061,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1977:9:52","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":19063,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1977:95:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"canonicalName":"EIP712Upgradeable.EIP712Storage","documentation":{"id":19065,"nodeType":"StructuredDocumentation","src":"2079:64:52","text":"@custom:storage-location erc7201:openzeppelin.storage.EIP712"},"id":19076,"members":[{"constant":false,"id":19068,"mutability":"mutable","name":"_hashedName","nameLocation":"2236:11:52","nodeType":"VariableDeclaration","scope":19076,"src":"2228:19:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19067,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2228:7:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19071,"mutability":"mutable","name":"_hashedVersion","nameLocation":"2317:14:52","nodeType":"VariableDeclaration","scope":19076,"src":"2309:22:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19070,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2309:7:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19073,"mutability":"mutable","name":"_name","nameLocation":"2349:5:52","nodeType":"VariableDeclaration","scope":19076,"src":"2342:12:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":19072,"name":"string","nodeType":"ElementaryTypeName","src":"2342:6:52","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":19075,"mutability":"mutable","name":"_version","nameLocation":"2371:8:52","nodeType":"VariableDeclaration","scope":19076,"src":"2364:15:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":19074,"name":"string","nodeType":"ElementaryTypeName","src":"2364:6:52","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"name":"EIP712Storage","nameLocation":"2155:13:52","nodeType":"StructDefinition","scope":19390,"src":"2148:238:52","visibility":"public"},{"constant":true,"id":19079,"mutability":"constant","name":"EIP712StorageLocation","nameLocation":"2527:21:52","nodeType":"VariableDeclaration","scope":19390,"src":"2502:115:52","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19077,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2502:7:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307861313661343664393432363163373531376363386666383966363163306365393335393865336338343938303130313164656536343961366135353764313030","id":19078,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2551:66:52","typeDescriptions":{"typeIdentifier":"t_rational_73010143390315934406010559831118728393600729754696197287367516085911467577600_by_1","typeString":"int_const 7301...(69 digits omitted)...7600"},"value":"0xa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d100"},"visibility":"private"},{"body":{"id":19086,"nodeType":"Block","src":"2700:80:52","statements":[{"AST":{"nativeSrc":"2719:55:52","nodeType":"YulBlock","src":"2719:55:52","statements":[{"nativeSrc":"2733:31:52","nodeType":"YulAssignment","src":"2733:31:52","value":{"name":"EIP712StorageLocation","nativeSrc":"2743:21:52","nodeType":"YulIdentifier","src":"2743:21:52"},"variableNames":[{"name":"$.slot","nativeSrc":"2733:6:52","nodeType":"YulIdentifier","src":"2733:6:52"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":19083,"isOffset":false,"isSlot":true,"src":"2733:6:52","suffix":"slot","valueSize":1},{"declaration":19079,"isOffset":false,"isSlot":false,"src":"2743:21:52","valueSize":1}],"id":19085,"nodeType":"InlineAssembly","src":"2710:64:52"}]},"id":19087,"implemented":true,"kind":"function","modifiers":[],"name":"_getEIP712Storage","nameLocation":"2633:17:52","nodeType":"FunctionDefinition","parameters":{"id":19080,"nodeType":"ParameterList","parameters":[],"src":"2650:2:52"},"returnParameters":{"id":19084,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19083,"mutability":"mutable","name":"$","nameLocation":"2697:1:52","nodeType":"VariableDeclaration","scope":19087,"src":"2675:23:52","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"},"typeName":{"id":19082,"nodeType":"UserDefinedTypeName","pathNode":{"id":19081,"name":"EIP712Storage","nameLocations":["2675:13:52"],"nodeType":"IdentifierPath","referencedDeclaration":19076,"src":"2675:13:52"},"referencedDeclaration":19076,"src":"2675:13:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"}},"visibility":"internal"}],"src":"2674:25:52"},"scope":19390,"src":"2624:156:52","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":19102,"nodeType":"Block","src":"3442:55:52","statements":[{"expression":{"arguments":[{"id":19098,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19090,"src":"3476:4:52","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":19099,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19092,"src":"3482:7:52","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"}],"id":19097,"name":"__EIP712_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19143,"src":"3452:23:52","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":19100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3452:38:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":19101,"nodeType":"ExpressionStatement","src":"3452:38:52"}]},"documentation":{"id":19088,"nodeType":"StructuredDocumentation","src":"2786:559:52","text":" @dev Initializes the domain separator and parameter caches.\n The meaning of `name` and `version` is specified in\n https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP-712]:\n - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\n - `version`: the current major version of the signing domain.\n NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\n contract upgrade]."},"id":19103,"implemented":true,"kind":"function","modifiers":[{"id":19095,"kind":"modifierInvocation","modifierName":{"id":19094,"name":"onlyInitializing","nameLocations":["3425:16:52"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"3425:16:52"},"nodeType":"ModifierInvocation","src":"3425:16:52"}],"name":"__EIP712_init","nameLocation":"3359:13:52","nodeType":"FunctionDefinition","parameters":{"id":19093,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19090,"mutability":"mutable","name":"name","nameLocation":"3387:4:52","nodeType":"VariableDeclaration","scope":19103,"src":"3373:18:52","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":19089,"name":"string","nodeType":"ElementaryTypeName","src":"3373:6:52","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":19092,"mutability":"mutable","name":"version","nameLocation":"3407:7:52","nodeType":"VariableDeclaration","scope":19103,"src":"3393:21:52","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":19091,"name":"string","nodeType":"ElementaryTypeName","src":"3393:6:52","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3372:43:52"},"returnParameters":{"id":19096,"nodeType":"ParameterList","parameters":[],"src":"3442:0:52"},"scope":19390,"src":"3350:147:52","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":19142,"nodeType":"Block","src":"3605:228:52","statements":[{"assignments":[19114],"declarations":[{"constant":false,"id":19114,"mutability":"mutable","name":"$","nameLocation":"3637:1:52","nodeType":"VariableDeclaration","scope":19142,"src":"3615:23:52","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"},"typeName":{"id":19113,"nodeType":"UserDefinedTypeName","pathNode":{"id":19112,"name":"EIP712Storage","nameLocations":["3615:13:52"],"nodeType":"IdentifierPath","referencedDeclaration":19076,"src":"3615:13:52"},"referencedDeclaration":19076,"src":"3615:13:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"}},"visibility":"internal"}],"id":19117,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":19115,"name":"_getEIP712Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19087,"src":"3641:17:52","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_EIP712Storage_$19076_storage_ptr_$","typeString":"function () pure returns (struct EIP712Upgradeable.EIP712Storage storage pointer)"}},"id":19116,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3641:19:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"3615:45:52"},{"expression":{"id":19122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":19118,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19114,"src":"3670:1:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":19120,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3672:5:52","memberName":"_name","nodeType":"MemberAccess","referencedDeclaration":19073,"src":"3670:7:52","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":19121,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19105,"src":"3680:4:52","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"3670:14:52","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":19123,"nodeType":"ExpressionStatement","src":"3670:14:52"},{"expression":{"id":19128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":19124,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19114,"src":"3694:1:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":19126,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3696:8:52","memberName":"_version","nodeType":"MemberAccess","referencedDeclaration":19075,"src":"3694:10:52","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":19127,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19107,"src":"3707:7:52","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"3694:20:52","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":19129,"nodeType":"ExpressionStatement","src":"3694:20:52"},{"expression":{"id":19134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":19130,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19114,"src":"3779:1:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":19132,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3781:11:52","memberName":"_hashedName","nodeType":"MemberAccess","referencedDeclaration":19068,"src":"3779:13:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":19133,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3795:1:52","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3779:17:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":19135,"nodeType":"ExpressionStatement","src":"3779:17:52"},{"expression":{"id":19140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":19136,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19114,"src":"3806:1:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":19138,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3808:14:52","memberName":"_hashedVersion","nodeType":"MemberAccess","referencedDeclaration":19071,"src":"3806:16:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":19139,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3825:1:52","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3806:20:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":19141,"nodeType":"ExpressionStatement","src":"3806:20:52"}]},"id":19143,"implemented":true,"kind":"function","modifiers":[{"id":19110,"kind":"modifierInvocation","modifierName":{"id":19109,"name":"onlyInitializing","nameLocations":["3588:16:52"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"3588:16:52"},"nodeType":"ModifierInvocation","src":"3588:16:52"}],"name":"__EIP712_init_unchained","nameLocation":"3512:23:52","nodeType":"FunctionDefinition","parameters":{"id":19108,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19105,"mutability":"mutable","name":"name","nameLocation":"3550:4:52","nodeType":"VariableDeclaration","scope":19143,"src":"3536:18:52","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":19104,"name":"string","nodeType":"ElementaryTypeName","src":"3536:6:52","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":19107,"mutability":"mutable","name":"version","nameLocation":"3570:7:52","nodeType":"VariableDeclaration","scope":19143,"src":"3556:21:52","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":19106,"name":"string","nodeType":"ElementaryTypeName","src":"3556:6:52","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3535:43:52"},"returnParameters":{"id":19111,"nodeType":"ParameterList","parameters":[],"src":"3605:0:52"},"scope":19390,"src":"3503:330:52","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":19152,"nodeType":"Block","src":"3981:47:52","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":19149,"name":"_buildDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19176,"src":"3998:21:52","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":19150,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3998:23:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":19148,"id":19151,"nodeType":"Return","src":"3991:30:52"}]},"documentation":{"id":19144,"nodeType":"StructuredDocumentation","src":"3839:75:52","text":" @dev Returns the domain separator for the current chain."},"id":19153,"implemented":true,"kind":"function","modifiers":[],"name":"_domainSeparatorV4","nameLocation":"3928:18:52","nodeType":"FunctionDefinition","parameters":{"id":19145,"nodeType":"ParameterList","parameters":[],"src":"3946:2:52"},"returnParameters":{"id":19148,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19147,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19153,"src":"3972:7:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19146,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3972:7:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3971:9:52"},"scope":19390,"src":"3919:109:52","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":19175,"nodeType":"Block","src":"4098:127:52","statements":[{"expression":{"arguments":[{"arguments":[{"id":19161,"name":"TYPE_HASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19064,"src":"4136:9:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":19162,"name":"_EIP712NameHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19337,"src":"4147:15:52","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":19163,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4147:17:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":19164,"name":"_EIP712VersionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19389,"src":"4166:18:52","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":19165,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4166:20:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":19166,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"4188:5:52","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":19167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4194:7:52","memberName":"chainid","nodeType":"MemberAccess","src":"4188:13:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":19170,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4211:4:52","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712Upgradeable_$19390","typeString":"contract EIP712Upgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712Upgradeable_$19390","typeString":"contract EIP712Upgradeable"}],"id":19169,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4203:7:52","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":19168,"name":"address","nodeType":"ElementaryTypeName","src":"4203:7:52","typeDescriptions":{}}},"id":19171,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4203:13:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":19159,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4125:3:52","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":19160,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4129:6:52","memberName":"encode","nodeType":"MemberAccess","src":"4125:10:52","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":19172,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4125:92:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":19158,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4115:9:52","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":19173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4115:103:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":19157,"id":19174,"nodeType":"Return","src":"4108:110:52"}]},"id":19176,"implemented":true,"kind":"function","modifiers":[],"name":"_buildDomainSeparator","nameLocation":"4043:21:52","nodeType":"FunctionDefinition","parameters":{"id":19154,"nodeType":"ParameterList","parameters":[],"src":"4064:2:52"},"returnParameters":{"id":19157,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19156,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19176,"src":"4089:7:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19155,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4089:7:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4088:9:52"},"scope":19390,"src":"4034:191:52","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":19191,"nodeType":"Block","src":"4936:90:52","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":19186,"name":"_domainSeparatorV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19153,"src":"4986:18:52","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":19187,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4986:20:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":19188,"name":"structHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19179,"src":"5008:10:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":19184,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33299,"src":"4953:16:52","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_MessageHashUtils_$33299_$","typeString":"type(library MessageHashUtils)"}},"id":19185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4970:15:52","memberName":"toTypedDataHash","nodeType":"MemberAccess","referencedDeclaration":33298,"src":"4953:32:52","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes32) pure returns (bytes32)"}},"id":19189,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4953:66:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":19183,"id":19190,"nodeType":"Return","src":"4946:73:52"}]},"documentation":{"id":19177,"nodeType":"StructuredDocumentation","src":"4231:614:52","text":" @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\n function returns the hash of the fully encoded EIP712 message for this domain.\n This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\n ```solidity\n bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\n     keccak256(\"Mail(address to,string contents)\"),\n     mailTo,\n     keccak256(bytes(mailContents))\n )));\n address signer = ECDSA.recover(digest, signature);\n ```"},"id":19192,"implemented":true,"kind":"function","modifiers":[],"name":"_hashTypedDataV4","nameLocation":"4859:16:52","nodeType":"FunctionDefinition","parameters":{"id":19180,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19179,"mutability":"mutable","name":"structHash","nameLocation":"4884:10:52","nodeType":"VariableDeclaration","scope":19192,"src":"4876:18:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19178,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4876:7:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4875:20:52"},"returnParameters":{"id":19183,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19182,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19192,"src":"4927:7:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19181,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4927:7:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4926:9:52"},"scope":19390,"src":"4850:176:52","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[22487],"body":{"id":19252,"nodeType":"Block","src":"5389:575:52","statements":[{"assignments":[19213],"declarations":[{"constant":false,"id":19213,"mutability":"mutable","name":"$","nameLocation":"5421:1:52","nodeType":"VariableDeclaration","scope":19252,"src":"5399:23:52","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"},"typeName":{"id":19212,"nodeType":"UserDefinedTypeName","pathNode":{"id":19211,"name":"EIP712Storage","nameLocations":["5399:13:52"],"nodeType":"IdentifierPath","referencedDeclaration":19076,"src":"5399:13:52"},"referencedDeclaration":19076,"src":"5399:13:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"}},"visibility":"internal"}],"id":19216,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":19214,"name":"_getEIP712Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19087,"src":"5425:17:52","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_EIP712Storage_$19076_storage_ptr_$","typeString":"function () pure returns (struct EIP712Upgradeable.EIP712Storage storage pointer)"}},"id":19215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5425:19:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"5399:45:52"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19226,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":19221,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19218,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19213,"src":"5665:1:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":19219,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5667:11:52","memberName":"_hashedName","nodeType":"MemberAccess","referencedDeclaration":19068,"src":"5665:13:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":19220,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5682:1:52","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5665:18:52","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":19225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19222,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19213,"src":"5687:1:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":19223,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5689:14:52","memberName":"_hashedVersion","nodeType":"MemberAccess","referencedDeclaration":19071,"src":"5687:16:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":19224,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5707:1:52","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5687:21:52","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5665:43:52","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4549503731323a20556e696e697469616c697a6564","id":19227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5710:23:52","typeDescriptions":{"typeIdentifier":"t_stringliteral_2e5045ff73280aa8e8acd8c82710f23812497f87f7f576e2220a2ddd0d45eade","typeString":"literal_string \"EIP712: Uninitialized\""},"value":"EIP712: Uninitialized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2e5045ff73280aa8e8acd8c82710f23812497f87f7f576e2220a2ddd0d45eade","typeString":"literal_string \"EIP712: Uninitialized\""}],"id":19217,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"5657:7:52","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":19228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5657:77:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":19229,"nodeType":"ExpressionStatement","src":"5657:77:52"},{"expression":{"components":[{"hexValue":"0f","id":19230,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"5766:7:52","typeDescriptions":{"typeIdentifier":"t_stringliteral_3d725c5ee53025f027da36bea8d3af3b6a3e9d2d1542d47c162631de48e66c1c","typeString":"literal_string hex\"0f\""},"value":"\u000f"},{"arguments":[],"expression":{"argumentTypes":[],"id":19231,"name":"_EIP712Name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"5796:11:52","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":19232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5796:13:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[],"expression":{"argumentTypes":[],"id":19233,"name":"_EIP712Version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19285,"src":"5823:14:52","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":19234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5823:16:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":19235,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5853:5:52","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":19236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5859:7:52","memberName":"chainid","nodeType":"MemberAccess","src":"5853:13:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":19239,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5888:4:52","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712Upgradeable_$19390","typeString":"contract EIP712Upgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712Upgradeable_$19390","typeString":"contract EIP712Upgradeable"}],"id":19238,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5880:7:52","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":19237,"name":"address","nodeType":"ElementaryTypeName","src":"5880:7:52","typeDescriptions":{}}},"id":19240,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5880:13:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":19243,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5915:1:52","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":19242,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5907:7:52","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":19241,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5907:7:52","typeDescriptions":{}}},"id":19244,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5907:10:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"hexValue":"30","id":19248,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5945:1:52","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":19247,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"5931:13:52","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint256[] memory)"},"typeName":{"baseType":{"id":19245,"name":"uint256","nodeType":"ElementaryTypeName","src":"5935:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19246,"nodeType":"ArrayTypeName","src":"5935:9:52","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":19249,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5931:16:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}}],"id":19250,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5752:205:52","typeDescriptions":{"typeIdentifier":"t_tuple$_t_stringliteral_3d725c5ee53025f027da36bea8d3af3b6a3e9d2d1542d47c162631de48e66c1c_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_uint256_$_t_address_$_t_bytes32_$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"tuple(literal_string hex\"0f\",string memory,string memory,uint256,address,bytes32,uint256[] memory)"}},"functionReturnParameters":19210,"id":19251,"nodeType":"Return","src":"5745:212:52"}]},"documentation":{"id":19193,"nodeType":"StructuredDocumentation","src":"5032:24:52","text":"@inheritdoc IERC5267"},"functionSelector":"84b0196e","id":19253,"implemented":true,"kind":"function","modifiers":[],"name":"eip712Domain","nameLocation":"5070:12:52","nodeType":"FunctionDefinition","parameters":{"id":19194,"nodeType":"ParameterList","parameters":[],"src":"5082:2:52"},"returnParameters":{"id":19210,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19196,"mutability":"mutable","name":"fields","nameLocation":"5166:6:52","nodeType":"VariableDeclaration","scope":19253,"src":"5159:13:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":19195,"name":"bytes1","nodeType":"ElementaryTypeName","src":"5159:6:52","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":19198,"mutability":"mutable","name":"name","nameLocation":"5200:4:52","nodeType":"VariableDeclaration","scope":19253,"src":"5186:18:52","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":19197,"name":"string","nodeType":"ElementaryTypeName","src":"5186:6:52","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":19200,"mutability":"mutable","name":"version","nameLocation":"5232:7:52","nodeType":"VariableDeclaration","scope":19253,"src":"5218:21:52","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":19199,"name":"string","nodeType":"ElementaryTypeName","src":"5218:6:52","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":19202,"mutability":"mutable","name":"chainId","nameLocation":"5261:7:52","nodeType":"VariableDeclaration","scope":19253,"src":"5253:15:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19201,"name":"uint256","nodeType":"ElementaryTypeName","src":"5253:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":19204,"mutability":"mutable","name":"verifyingContract","nameLocation":"5290:17:52","nodeType":"VariableDeclaration","scope":19253,"src":"5282:25:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19203,"name":"address","nodeType":"ElementaryTypeName","src":"5282:7:52","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":19206,"mutability":"mutable","name":"salt","nameLocation":"5329:4:52","nodeType":"VariableDeclaration","scope":19253,"src":"5321:12:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19205,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5321:7:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19209,"mutability":"mutable","name":"extensions","nameLocation":"5364:10:52","nodeType":"VariableDeclaration","scope":19253,"src":"5347:27:52","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":19207,"name":"uint256","nodeType":"ElementaryTypeName","src":"5347:7:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19208,"nodeType":"ArrayTypeName","src":"5347:9:52","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"5145:239:52"},"scope":19390,"src":"5061:903:52","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":19268,"nodeType":"Block","src":"6257:86:52","statements":[{"assignments":[19261],"declarations":[{"constant":false,"id":19261,"mutability":"mutable","name":"$","nameLocation":"6289:1:52","nodeType":"VariableDeclaration","scope":19268,"src":"6267:23:52","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"},"typeName":{"id":19260,"nodeType":"UserDefinedTypeName","pathNode":{"id":19259,"name":"EIP712Storage","nameLocations":["6267:13:52"],"nodeType":"IdentifierPath","referencedDeclaration":19076,"src":"6267:13:52"},"referencedDeclaration":19076,"src":"6267:13:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"}},"visibility":"internal"}],"id":19264,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":19262,"name":"_getEIP712Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19087,"src":"6293:17:52","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_EIP712Storage_$19076_storage_ptr_$","typeString":"function () pure returns (struct EIP712Upgradeable.EIP712Storage storage pointer)"}},"id":19263,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6293:19:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"6267:45:52"},{"expression":{"expression":{"id":19265,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19261,"src":"6329:1:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":19266,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6331:5:52","memberName":"_name","nodeType":"MemberAccess","referencedDeclaration":19073,"src":"6329:7:52","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":19258,"id":19267,"nodeType":"Return","src":"6322:14:52"}]},"documentation":{"id":19254,"nodeType":"StructuredDocumentation","src":"5970:213:52","text":" @dev The name parameter for the EIP712 domain.\n NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs\n are a concern."},"id":19269,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712Name","nameLocation":"6197:11:52","nodeType":"FunctionDefinition","parameters":{"id":19255,"nodeType":"ParameterList","parameters":[],"src":"6208:2:52"},"returnParameters":{"id":19258,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19257,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19269,"src":"6242:13:52","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":19256,"name":"string","nodeType":"ElementaryTypeName","src":"6242:6:52","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6241:15:52"},"scope":19390,"src":"6188:155:52","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":19284,"nodeType":"Block","src":"6642:89:52","statements":[{"assignments":[19277],"declarations":[{"constant":false,"id":19277,"mutability":"mutable","name":"$","nameLocation":"6674:1:52","nodeType":"VariableDeclaration","scope":19284,"src":"6652:23:52","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"},"typeName":{"id":19276,"nodeType":"UserDefinedTypeName","pathNode":{"id":19275,"name":"EIP712Storage","nameLocations":["6652:13:52"],"nodeType":"IdentifierPath","referencedDeclaration":19076,"src":"6652:13:52"},"referencedDeclaration":19076,"src":"6652:13:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"}},"visibility":"internal"}],"id":19280,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":19278,"name":"_getEIP712Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19087,"src":"6678:17:52","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_EIP712Storage_$19076_storage_ptr_$","typeString":"function () pure returns (struct EIP712Upgradeable.EIP712Storage storage pointer)"}},"id":19279,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6678:19:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"6652:45:52"},{"expression":{"expression":{"id":19281,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19277,"src":"6714:1:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":19282,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6716:8:52","memberName":"_version","nodeType":"MemberAccess","referencedDeclaration":19075,"src":"6714:10:52","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":19274,"id":19283,"nodeType":"Return","src":"6707:17:52"}]},"documentation":{"id":19270,"nodeType":"StructuredDocumentation","src":"6349:216:52","text":" @dev The version parameter for the EIP712 domain.\n NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs\n are a concern."},"id":19285,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712Version","nameLocation":"6579:14:52","nodeType":"FunctionDefinition","parameters":{"id":19271,"nodeType":"ParameterList","parameters":[],"src":"6593:2:52"},"returnParameters":{"id":19274,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19273,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19285,"src":"6627:13:52","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":19272,"name":"string","nodeType":"ElementaryTypeName","src":"6627:6:52","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6626:15:52"},"scope":19390,"src":"6570:161:52","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":19336,"nodeType":"Block","src":"7005:628:52","statements":[{"assignments":[19293],"declarations":[{"constant":false,"id":19293,"mutability":"mutable","name":"$","nameLocation":"7037:1:52","nodeType":"VariableDeclaration","scope":19336,"src":"7015:23:52","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"},"typeName":{"id":19292,"nodeType":"UserDefinedTypeName","pathNode":{"id":19291,"name":"EIP712Storage","nameLocations":["7015:13:52"],"nodeType":"IdentifierPath","referencedDeclaration":19076,"src":"7015:13:52"},"referencedDeclaration":19076,"src":"7015:13:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"}},"visibility":"internal"}],"id":19296,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":19294,"name":"_getEIP712Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19087,"src":"7041:17:52","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_EIP712Storage_$19076_storage_ptr_$","typeString":"function () pure returns (struct EIP712Upgradeable.EIP712Storage storage pointer)"}},"id":19295,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7041:19:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"7015:45:52"},{"assignments":[19298],"declarations":[{"constant":false,"id":19298,"mutability":"mutable","name":"name","nameLocation":"7084:4:52","nodeType":"VariableDeclaration","scope":19336,"src":"7070:18:52","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":19297,"name":"string","nodeType":"ElementaryTypeName","src":"7070:6:52","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":19301,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":19299,"name":"_EIP712Name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"7091:11:52","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":19300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7091:13:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"7070:34:52"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19308,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":19304,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19298,"src":"7124:4:52","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":19303,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7118:5:52","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":19302,"name":"bytes","nodeType":"ElementaryTypeName","src":"7118:5:52","typeDescriptions":{}}},"id":19305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7118:11:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":19306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7130:6:52","memberName":"length","nodeType":"MemberAccess","src":"7118:18:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":19307,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7139:1:52","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7118:22:52","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19334,"nodeType":"Block","src":"7202:425:52","statements":[{"assignments":[19318],"declarations":[{"constant":false,"id":19318,"mutability":"mutable","name":"hashedName","nameLocation":"7447:10:52","nodeType":"VariableDeclaration","scope":19334,"src":"7439:18:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19317,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7439:7:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":19321,"initialValue":{"expression":{"id":19319,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19293,"src":"7460:1:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":19320,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7462:11:52","memberName":"_hashedName","nodeType":"MemberAccess","referencedDeclaration":19068,"src":"7460:13:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"7439:34:52"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":19324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19322,"name":"hashedName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19318,"src":"7491:10:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":19323,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7505:1:52","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7491:15:52","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19332,"nodeType":"Block","src":"7564:53:52","statements":[{"expression":{"arguments":[{"hexValue":"","id":19329,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7599:2:52","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":19328,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"7589:9:52","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":19330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7589:13:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":19290,"id":19331,"nodeType":"Return","src":"7582:20:52"}]},"id":19333,"nodeType":"IfStatement","src":"7487:130:52","trueBody":{"id":19327,"nodeType":"Block","src":"7508:50:52","statements":[{"expression":{"id":19325,"name":"hashedName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19318,"src":"7533:10:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":19290,"id":19326,"nodeType":"Return","src":"7526:17:52"}]}}]},"id":19335,"nodeType":"IfStatement","src":"7114:513:52","trueBody":{"id":19316,"nodeType":"Block","src":"7142:54:52","statements":[{"expression":{"arguments":[{"arguments":[{"id":19312,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19298,"src":"7179:4:52","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":19311,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7173:5:52","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":19310,"name":"bytes","nodeType":"ElementaryTypeName","src":"7173:5:52","typeDescriptions":{}}},"id":19313,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7173:11:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":19309,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"7163:9:52","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":19314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7163:22:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":19290,"id":19315,"nodeType":"Return","src":"7156:29:52"}]}}]},"documentation":{"id":19286,"nodeType":"StructuredDocumentation","src":"6737:204:52","text":" @dev The hash of the name parameter for the EIP712 domain.\n NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Name` instead."},"id":19337,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712NameHash","nameLocation":"6955:15:52","nodeType":"FunctionDefinition","parameters":{"id":19287,"nodeType":"ParameterList","parameters":[],"src":"6970:2:52"},"returnParameters":{"id":19290,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19289,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19337,"src":"6996:7:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19288,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6996:7:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6995:9:52"},"scope":19390,"src":"6946:687:52","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":19388,"nodeType":"Block","src":"7916:661:52","statements":[{"assignments":[19345],"declarations":[{"constant":false,"id":19345,"mutability":"mutable","name":"$","nameLocation":"7948:1:52","nodeType":"VariableDeclaration","scope":19388,"src":"7926:23:52","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"},"typeName":{"id":19344,"nodeType":"UserDefinedTypeName","pathNode":{"id":19343,"name":"EIP712Storage","nameLocations":["7926:13:52"],"nodeType":"IdentifierPath","referencedDeclaration":19076,"src":"7926:13:52"},"referencedDeclaration":19076,"src":"7926:13:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage"}},"visibility":"internal"}],"id":19348,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":19346,"name":"_getEIP712Storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19087,"src":"7952:17:52","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_EIP712Storage_$19076_storage_ptr_$","typeString":"function () pure returns (struct EIP712Upgradeable.EIP712Storage storage pointer)"}},"id":19347,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7952:19:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"7926:45:52"},{"assignments":[19350],"declarations":[{"constant":false,"id":19350,"mutability":"mutable","name":"version","nameLocation":"7995:7:52","nodeType":"VariableDeclaration","scope":19388,"src":"7981:21:52","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":19349,"name":"string","nodeType":"ElementaryTypeName","src":"7981:6:52","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":19353,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":19351,"name":"_EIP712Version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19285,"src":"8005:14:52","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":19352,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8005:16:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"7981:40:52"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":19356,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19350,"src":"8041:7:52","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":19355,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8035:5:52","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":19354,"name":"bytes","nodeType":"ElementaryTypeName","src":"8035:5:52","typeDescriptions":{}}},"id":19357,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8035:14:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":19358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8050:6:52","memberName":"length","nodeType":"MemberAccess","src":"8035:21:52","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":19359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8059:1:52","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8035:25:52","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19386,"nodeType":"Block","src":"8125:446:52","statements":[{"assignments":[19370],"declarations":[{"constant":false,"id":19370,"mutability":"mutable","name":"hashedVersion","nameLocation":"8379:13:52","nodeType":"VariableDeclaration","scope":19386,"src":"8371:21:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19369,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8371:7:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":19373,"initialValue":{"expression":{"id":19371,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19345,"src":"8395:1:52","typeDescriptions":{"typeIdentifier":"t_struct$_EIP712Storage_$19076_storage_ptr","typeString":"struct EIP712Upgradeable.EIP712Storage storage pointer"}},"id":19372,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8397:14:52","memberName":"_hashedVersion","nodeType":"MemberAccess","referencedDeclaration":19071,"src":"8395:16:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"8371:40:52"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":19376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19374,"name":"hashedVersion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19370,"src":"8429:13:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":19375,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8446:1:52","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8429:18:52","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19384,"nodeType":"Block","src":"8508:53:52","statements":[{"expression":{"arguments":[{"hexValue":"","id":19381,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8543:2:52","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"id":19380,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"8533:9:52","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":19382,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8533:13:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":19342,"id":19383,"nodeType":"Return","src":"8526:20:52"}]},"id":19385,"nodeType":"IfStatement","src":"8425:136:52","trueBody":{"id":19379,"nodeType":"Block","src":"8449:53:52","statements":[{"expression":{"id":19377,"name":"hashedVersion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19370,"src":"8474:13:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":19342,"id":19378,"nodeType":"Return","src":"8467:20:52"}]}}]},"id":19387,"nodeType":"IfStatement","src":"8031:540:52","trueBody":{"id":19368,"nodeType":"Block","src":"8062:57:52","statements":[{"expression":{"arguments":[{"arguments":[{"id":19364,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19350,"src":"8099:7:52","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":19363,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8093:5:52","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":19362,"name":"bytes","nodeType":"ElementaryTypeName","src":"8093:5:52","typeDescriptions":{}}},"id":19365,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8093:14:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":19361,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"8083:9:52","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":19366,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8083:25:52","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":19342,"id":19367,"nodeType":"Return","src":"8076:32:52"}]}}]},"documentation":{"id":19338,"nodeType":"StructuredDocumentation","src":"7639:210:52","text":" @dev The hash of the version parameter for the EIP712 domain.\n NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Version` instead."},"id":19389,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712VersionHash","nameLocation":"7863:18:52","nodeType":"FunctionDefinition","parameters":{"id":19339,"nodeType":"ParameterList","parameters":[],"src":"7881:2:52"},"returnParameters":{"id":19342,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19341,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19389,"src":"7907:7:52","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19340,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7907:7:52","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7906:9:52"},"scope":19390,"src":"7854:723:52","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":19391,"src":"1863:6716:52","usedErrors":[23183,23186],"usedEvents":[22468,23191]}],"src":"113:8467:52"},"id":52},"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol","exportedSymbols":{"ERC165Upgradeable":[19430],"IERC165":[33545],"Initializable":[23434]},"id":19431,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":19392,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"114:24:53"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":19394,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":19431,"sourceUnit":33546,"src":"140:80:53","symbolAliases":[{"foreign":{"id":19393,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"148:7:53","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":19396,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":19431,"sourceUnit":23435,"src":"221:84:53","symbolAliases":[{"foreign":{"id":19395,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23434,"src":"229:13:53","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":19398,"name":"Initializable","nameLocations":["826:13:53"],"nodeType":"IdentifierPath","referencedDeclaration":23434,"src":"826:13:53"},"id":19399,"nodeType":"InheritanceSpecifier","src":"826:13:53"},{"baseName":{"id":19400,"name":"IERC165","nameLocations":["841:7:53"],"nodeType":"IdentifierPath","referencedDeclaration":33545,"src":"841:7:53"},"id":19401,"nodeType":"InheritanceSpecifier","src":"841:7:53"}],"canonicalName":"ERC165Upgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":19397,"nodeType":"StructuredDocumentation","src":"307:479:53","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":19430,"linearizedBaseContracts":[19430,33545,23434],"name":"ERC165Upgradeable","nameLocation":"805:17:53","nodeType":"ContractDefinition","nodes":[{"body":{"id":19406,"nodeType":"Block","src":"906:7:53","statements":[]},"id":19407,"implemented":true,"kind":"function","modifiers":[{"id":19404,"kind":"modifierInvocation","modifierName":{"id":19403,"name":"onlyInitializing","nameLocations":["889:16:53"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"889:16:53"},"nodeType":"ModifierInvocation","src":"889:16:53"}],"name":"__ERC165_init","nameLocation":"864:13:53","nodeType":"FunctionDefinition","parameters":{"id":19402,"nodeType":"ParameterList","parameters":[],"src":"877:2:53"},"returnParameters":{"id":19405,"nodeType":"ParameterList","parameters":[],"src":"906:0:53"},"scope":19430,"src":"855:58:53","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":19412,"nodeType":"Block","src":"980:7:53","statements":[]},"id":19413,"implemented":true,"kind":"function","modifiers":[{"id":19410,"kind":"modifierInvocation","modifierName":{"id":19409,"name":"onlyInitializing","nameLocations":["963:16:53"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"963:16:53"},"nodeType":"ModifierInvocation","src":"963:16:53"}],"name":"__ERC165_init_unchained","nameLocation":"928:23:53","nodeType":"FunctionDefinition","parameters":{"id":19408,"nodeType":"ParameterList","parameters":[],"src":"951:2:53"},"returnParameters":{"id":19411,"nodeType":"ParameterList","parameters":[],"src":"980:0:53"},"scope":19430,"src":"919:68:53","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[33544],"body":{"id":19428,"nodeType":"Block","src":"1102:64:53","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":19426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19421,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19416,"src":"1119:11:53","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":19423,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"1139:7:53","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$33545_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$33545_$","typeString":"type(contract IERC165)"}],"id":19422,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1134:4:53","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":19424,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1134:13:53","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$33545","typeString":"type(contract IERC165)"}},"id":19425,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1148:11:53","memberName":"interfaceId","nodeType":"MemberAccess","src":"1134:25:53","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1119:40:53","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":19420,"id":19427,"nodeType":"Return","src":"1112:47:53"}]},"documentation":{"id":19414,"nodeType":"StructuredDocumentation","src":"992:23:53","text":"@inheritdoc IERC165"},"functionSelector":"01ffc9a7","id":19429,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"1029:17:53","nodeType":"FunctionDefinition","parameters":{"id":19417,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19416,"mutability":"mutable","name":"interfaceId","nameLocation":"1054:11:53","nodeType":"VariableDeclaration","scope":19429,"src":"1047:18:53","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":19415,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1047:6:53","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1046:20:53"},"returnParameters":{"id":19420,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19419,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19429,"src":"1096:4:53","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":19418,"name":"bool","nodeType":"ElementaryTypeName","src":"1096:4:53","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1095:6:53"},"scope":19430,"src":"1020:146:53","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":19431,"src":"787:381:53","usedErrors":[23183,23186],"usedEvents":[23191]}],"src":"114:1055:53"},"id":53},"@openzeppelin/contracts/access/AccessControl.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/AccessControl.sol","exportedSymbols":{"AccessControl":[19727],"Context":[26789],"ERC165":[33323],"IAccessControl":[19810],"IERC165":[33545]},"id":19728,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":19432,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"108:24:54"},{"absolutePath":"@openzeppelin/contracts/access/IAccessControl.sol","file":"./IAccessControl.sol","id":19434,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":19728,"sourceUnit":19811,"src":"134:52:54","symbolAliases":[{"foreign":{"id":19433,"name":"IAccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19810,"src":"142:14:54","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../utils/Context.sol","id":19436,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":19728,"sourceUnit":26790,"src":"187:45:54","symbolAliases":[{"foreign":{"id":19435,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26789,"src":"195:7:54","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"../utils/introspection/ERC165.sol","id":19439,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":19728,"sourceUnit":33324,"src":"233:66:54","symbolAliases":[{"foreign":{"id":19437,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"241:7:54","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":19438,"name":"ERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33323,"src":"250:6:54","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":19441,"name":"Context","nameLocations":["1997:7:54"],"nodeType":"IdentifierPath","referencedDeclaration":26789,"src":"1997:7:54"},"id":19442,"nodeType":"InheritanceSpecifier","src":"1997:7:54"},{"baseName":{"id":19443,"name":"IAccessControl","nameLocations":["2006:14:54"],"nodeType":"IdentifierPath","referencedDeclaration":19810,"src":"2006:14:54"},"id":19444,"nodeType":"InheritanceSpecifier","src":"2006:14:54"},{"baseName":{"id":19445,"name":"ERC165","nameLocations":["2022:6:54"],"nodeType":"IdentifierPath","referencedDeclaration":33323,"src":"2022:6:54"},"id":19446,"nodeType":"InheritanceSpecifier","src":"2022:6:54"}],"canonicalName":"AccessControl","contractDependencies":[],"contractKind":"contract","documentation":{"id":19440,"nodeType":"StructuredDocumentation","src":"301:1660:54","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":19727,"linearizedBaseContracts":[19727,33323,33545,19810,26789],"name":"AccessControl","nameLocation":"1980:13:54","nodeType":"ContractDefinition","nodes":[{"canonicalName":"AccessControl.RoleData","id":19453,"members":[{"constant":false,"id":19450,"mutability":"mutable","name":"hasRole","nameLocation":"2094:7:54","nodeType":"VariableDeclaration","scope":19453,"src":"2061:40:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"typeName":{"id":19449,"keyName":"account","keyNameLocation":"2077:7:54","keyType":{"id":19447,"name":"address","nodeType":"ElementaryTypeName","src":"2069:7:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"2061:32:54","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":19448,"name":"bool","nodeType":"ElementaryTypeName","src":"2088:4:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}},"visibility":"internal"},{"constant":false,"id":19452,"mutability":"mutable","name":"adminRole","nameLocation":"2119:9:54","nodeType":"VariableDeclaration","scope":19453,"src":"2111:17:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19451,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2111:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"name":"RoleData","nameLocation":"2042:8:54","nodeType":"StructDefinition","scope":19727,"src":"2035:100:54","visibility":"public"},{"constant":false,"id":19458,"mutability":"mutable","name":"_roles","nameLocation":"2183:6:54","nodeType":"VariableDeclaration","scope":19727,"src":"2141:48:54","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$19453_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData)"},"typeName":{"id":19457,"keyName":"role","keyNameLocation":"2157:4:54","keyType":{"id":19454,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2149:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"2141:33:54","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$19453_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":19456,"nodeType":"UserDefinedTypeName","pathNode":{"id":19455,"name":"RoleData","nameLocations":["2165:8:54"],"nodeType":"IdentifierPath","referencedDeclaration":19453,"src":"2165:8:54"},"referencedDeclaration":19453,"src":"2165:8:54","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$19453_storage_ptr","typeString":"struct AccessControl.RoleData"}}},"visibility":"private"},{"constant":true,"functionSelector":"a217fddf","id":19461,"mutability":"constant","name":"DEFAULT_ADMIN_ROLE","nameLocation":"2220:18:54","nodeType":"VariableDeclaration","scope":19727,"src":"2196:49:54","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19459,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2196:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"30783030","id":19460,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2241:4:54","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0x00"},"visibility":"public"},{"body":{"id":19471,"nodeType":"Block","src":"2463:44:54","statements":[{"expression":{"arguments":[{"id":19467,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19464,"src":"2484:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":19466,"name":"_checkRole","nodeType":"Identifier","overloadedDeclarations":[19525,19546],"referencedDeclaration":19525,"src":"2473:10:54","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$__$","typeString":"function (bytes32) view"}},"id":19468,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2473:16:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":19469,"nodeType":"ExpressionStatement","src":"2473:16:54"},{"id":19470,"nodeType":"PlaceholderStatement","src":"2499:1:54"}]},"documentation":{"id":19462,"nodeType":"StructuredDocumentation","src":"2252:174:54","text":" @dev Modifier that checks that an account has a specific role. Reverts\n with an {AccessControlUnauthorizedAccount} error including the required role."},"id":19472,"name":"onlyRole","nameLocation":"2440:8:54","nodeType":"ModifierDefinition","parameters":{"id":19465,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19464,"mutability":"mutable","name":"role","nameLocation":"2457:4:54","nodeType":"VariableDeclaration","scope":19472,"src":"2449:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19463,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2449:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2448:14:54"},"src":"2431:76:54","virtual":false,"visibility":"internal"},{"baseFunctions":[33322],"body":{"id":19493,"nodeType":"Block","src":"2632:111:54","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":19486,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19481,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19475,"src":"2649:11:54","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":19483,"name":"IAccessControl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19810,"src":"2669:14:54","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessControl_$19810_$","typeString":"type(contract IAccessControl)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IAccessControl_$19810_$","typeString":"type(contract IAccessControl)"}],"id":19482,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2664:4:54","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":19484,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2664:20:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IAccessControl_$19810","typeString":"type(contract IAccessControl)"}},"id":19485,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2685:11:54","memberName":"interfaceId","nodeType":"MemberAccess","src":"2664:32:54","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"2649:47:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":19489,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19475,"src":"2724:11:54","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":19487,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2700:5:54","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_AccessControl_$19727_$","typeString":"type(contract super AccessControl)"}},"id":19488,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2706:17:54","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":33322,"src":"2700:23:54","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":19490,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2700:36:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2649:87:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":19480,"id":19492,"nodeType":"Return","src":"2642:94:54"}]},"documentation":{"id":19473,"nodeType":"StructuredDocumentation","src":"2513:23:54","text":"@inheritdoc IERC165"},"functionSelector":"01ffc9a7","id":19494,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"2550:17:54","nodeType":"FunctionDefinition","overrides":{"id":19477,"nodeType":"OverrideSpecifier","overrides":[],"src":"2608:8:54"},"parameters":{"id":19476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19475,"mutability":"mutable","name":"interfaceId","nameLocation":"2575:11:54","nodeType":"VariableDeclaration","scope":19494,"src":"2568:18:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":19474,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2568:6:54","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"2567:20:54"},"returnParameters":{"id":19480,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19479,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19494,"src":"2626:4:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":19478,"name":"bool","nodeType":"ElementaryTypeName","src":"2626:4:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2625:6:54"},"scope":19727,"src":"2541:202:54","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[19777],"body":{"id":19511,"nodeType":"Block","src":"2913:53:54","statements":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":19504,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19458,"src":"2930:6:54","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$19453_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":19506,"indexExpression":{"id":19505,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19497,"src":"2937:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2930:12:54","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$19453_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":19507,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2943:7:54","memberName":"hasRole","nodeType":"MemberAccess","referencedDeclaration":19450,"src":"2930:20:54","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":19509,"indexExpression":{"id":19508,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19499,"src":"2951:7:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2930:29:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":19503,"id":19510,"nodeType":"Return","src":"2923:36:54"}]},"documentation":{"id":19495,"nodeType":"StructuredDocumentation","src":"2749:76:54","text":" @dev Returns `true` if `account` has been granted `role`."},"functionSelector":"91d14854","id":19512,"implemented":true,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"2839:7:54","nodeType":"FunctionDefinition","parameters":{"id":19500,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19497,"mutability":"mutable","name":"role","nameLocation":"2855:4:54","nodeType":"VariableDeclaration","scope":19512,"src":"2847:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19496,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2847:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19499,"mutability":"mutable","name":"account","nameLocation":"2869:7:54","nodeType":"VariableDeclaration","scope":19512,"src":"2861:15:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19498,"name":"address","nodeType":"ElementaryTypeName","src":"2861:7:54","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2846:31:54"},"returnParameters":{"id":19503,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19502,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19512,"src":"2907:4:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":19501,"name":"bool","nodeType":"ElementaryTypeName","src":"2907:4:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2906:6:54"},"scope":19727,"src":"2830:136:54","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":19524,"nodeType":"Block","src":"3231:47:54","statements":[{"expression":{"arguments":[{"id":19519,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19515,"src":"3252:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":19520,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"3258:10:54","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":19521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3258:12:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":19518,"name":"_checkRole","nodeType":"Identifier","overloadedDeclarations":[19525,19546],"referencedDeclaration":19546,"src":"3241:10:54","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$__$","typeString":"function (bytes32,address) view"}},"id":19522,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3241:30:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":19523,"nodeType":"ExpressionStatement","src":"3241:30:54"}]},"documentation":{"id":19513,"nodeType":"StructuredDocumentation","src":"2972:198:54","text":" @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`\n is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier."},"id":19525,"implemented":true,"kind":"function","modifiers":[],"name":"_checkRole","nameLocation":"3184:10:54","nodeType":"FunctionDefinition","parameters":{"id":19516,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19515,"mutability":"mutable","name":"role","nameLocation":"3203:4:54","nodeType":"VariableDeclaration","scope":19525,"src":"3195:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19514,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3195:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3194:14:54"},"returnParameters":{"id":19517,"nodeType":"ParameterList","parameters":[],"src":"3231:0:54"},"scope":19727,"src":"3175:103:54","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":19545,"nodeType":"Block","src":"3481:124:54","statements":[{"condition":{"id":19537,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3495:23:54","subExpression":{"arguments":[{"id":19534,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19528,"src":"3504:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":19535,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19530,"src":"3510:7:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":19533,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19512,"src":"3496:7:54","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":19536,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3496:22:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19544,"nodeType":"IfStatement","src":"3491:108:54","trueBody":{"id":19543,"nodeType":"Block","src":"3520:79:54","statements":[{"errorCall":{"arguments":[{"id":19539,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19530,"src":"3574:7:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":19540,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19528,"src":"3583:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":19538,"name":"AccessControlUnauthorizedAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19737,"src":"3541:32:54","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_bytes32_$returns$_t_error_$","typeString":"function (address,bytes32) pure returns (error)"}},"id":19541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3541:47:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19542,"nodeType":"RevertStatement","src":"3534:54:54"}]}}]},"documentation":{"id":19526,"nodeType":"StructuredDocumentation","src":"3284:119:54","text":" @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`\n is missing `role`."},"id":19546,"implemented":true,"kind":"function","modifiers":[],"name":"_checkRole","nameLocation":"3417:10:54","nodeType":"FunctionDefinition","parameters":{"id":19531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19528,"mutability":"mutable","name":"role","nameLocation":"3436:4:54","nodeType":"VariableDeclaration","scope":19546,"src":"3428:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19527,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3428:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19530,"mutability":"mutable","name":"account","nameLocation":"3450:7:54","nodeType":"VariableDeclaration","scope":19546,"src":"3442:15:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19529,"name":"address","nodeType":"ElementaryTypeName","src":"3442:7:54","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3427:31:54"},"returnParameters":{"id":19532,"nodeType":"ParameterList","parameters":[],"src":"3481:0:54"},"scope":19727,"src":"3408:197:54","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[19785],"body":{"id":19559,"nodeType":"Block","src":"3860:46:54","statements":[{"expression":{"expression":{"baseExpression":{"id":19554,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19458,"src":"3877:6:54","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$19453_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":19556,"indexExpression":{"id":19555,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19549,"src":"3884:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3877:12:54","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$19453_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":19557,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3890:9:54","memberName":"adminRole","nodeType":"MemberAccess","referencedDeclaration":19452,"src":"3877:22:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":19553,"id":19558,"nodeType":"Return","src":"3870:29:54"}]},"documentation":{"id":19547,"nodeType":"StructuredDocumentation","src":"3611:170:54","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":19560,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"3795:12:54","nodeType":"FunctionDefinition","parameters":{"id":19550,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19549,"mutability":"mutable","name":"role","nameLocation":"3816:4:54","nodeType":"VariableDeclaration","scope":19560,"src":"3808:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19548,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3808:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3807:14:54"},"returnParameters":{"id":19553,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19552,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19560,"src":"3851:7:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19551,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3851:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3850:9:54"},"scope":19727,"src":"3786:120:54","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[19793],"body":{"id":19578,"nodeType":"Block","src":"4296:42:54","statements":[{"expression":{"arguments":[{"id":19574,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19563,"src":"4317:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":19575,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19565,"src":"4323:7:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":19573,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19688,"src":"4306:10:54","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":19576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4306:25:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19577,"nodeType":"ExpressionStatement","src":"4306:25:54"}]},"documentation":{"id":19561,"nodeType":"StructuredDocumentation","src":"3912:285:54","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":19579,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"arguments":[{"id":19569,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19563,"src":"4289:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":19568,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19560,"src":"4276:12:54","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":19570,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4276:18:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":19571,"kind":"modifierInvocation","modifierName":{"id":19567,"name":"onlyRole","nameLocations":["4267:8:54"],"nodeType":"IdentifierPath","referencedDeclaration":19472,"src":"4267:8:54"},"nodeType":"ModifierInvocation","src":"4267:28:54"}],"name":"grantRole","nameLocation":"4211:9:54","nodeType":"FunctionDefinition","parameters":{"id":19566,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19563,"mutability":"mutable","name":"role","nameLocation":"4229:4:54","nodeType":"VariableDeclaration","scope":19579,"src":"4221:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19562,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4221:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19565,"mutability":"mutable","name":"account","nameLocation":"4243:7:54","nodeType":"VariableDeclaration","scope":19579,"src":"4235:15:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19564,"name":"address","nodeType":"ElementaryTypeName","src":"4235:7:54","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4220:31:54"},"returnParameters":{"id":19572,"nodeType":"ParameterList","parameters":[],"src":"4296:0:54"},"scope":19727,"src":"4202:136:54","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[19801],"body":{"id":19597,"nodeType":"Block","src":"4713:43:54","statements":[{"expression":{"arguments":[{"id":19593,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19582,"src":"4735:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":19594,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19584,"src":"4741:7:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":19592,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19726,"src":"4723:11:54","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":19595,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4723:26:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19596,"nodeType":"ExpressionStatement","src":"4723:26:54"}]},"documentation":{"id":19580,"nodeType":"StructuredDocumentation","src":"4344:269:54","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":19598,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"arguments":[{"id":19588,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19582,"src":"4706:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":19587,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19560,"src":"4693:12:54","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":19589,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4693:18:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":19590,"kind":"modifierInvocation","modifierName":{"id":19586,"name":"onlyRole","nameLocations":["4684:8:54"],"nodeType":"IdentifierPath","referencedDeclaration":19472,"src":"4684:8:54"},"nodeType":"ModifierInvocation","src":"4684:28:54"}],"name":"revokeRole","nameLocation":"4627:10:54","nodeType":"FunctionDefinition","parameters":{"id":19585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19582,"mutability":"mutable","name":"role","nameLocation":"4646:4:54","nodeType":"VariableDeclaration","scope":19598,"src":"4638:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19581,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4638:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19584,"mutability":"mutable","name":"account","nameLocation":"4660:7:54","nodeType":"VariableDeclaration","scope":19598,"src":"4652:15:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19583,"name":"address","nodeType":"ElementaryTypeName","src":"4652:7:54","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4637:31:54"},"returnParameters":{"id":19591,"nodeType":"ParameterList","parameters":[],"src":"4713:0:54"},"scope":19727,"src":"4618:138:54","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[19809],"body":{"id":19620,"nodeType":"Block","src":"5383:166:54","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":19609,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19606,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19603,"src":"5397:18:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":19607,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"5419:10:54","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":19608,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5419:12:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5397:34:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19614,"nodeType":"IfStatement","src":"5393:102:54","trueBody":{"id":19613,"nodeType":"Block","src":"5433:62:54","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":19610,"name":"AccessControlBadConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19740,"src":"5454:28:54","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":19611,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5454:30:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19612,"nodeType":"RevertStatement","src":"5447:37:54"}]}},{"expression":{"arguments":[{"id":19616,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19601,"src":"5517:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":19617,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19603,"src":"5523:18:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":19615,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19726,"src":"5505:11:54","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) returns (bool)"}},"id":19618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5505:37:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19619,"nodeType":"ExpressionStatement","src":"5505:37:54"}]},"documentation":{"id":19599,"nodeType":"StructuredDocumentation","src":"4762:537:54","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":19621,"implemented":true,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"5313:12:54","nodeType":"FunctionDefinition","parameters":{"id":19604,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19601,"mutability":"mutable","name":"role","nameLocation":"5334:4:54","nodeType":"VariableDeclaration","scope":19621,"src":"5326:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19600,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5326:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19603,"mutability":"mutable","name":"callerConfirmation","nameLocation":"5348:18:54","nodeType":"VariableDeclaration","scope":19621,"src":"5340:26:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19602,"name":"address","nodeType":"ElementaryTypeName","src":"5340:7:54","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5325:42:54"},"returnParameters":{"id":19605,"nodeType":"ParameterList","parameters":[],"src":"5383:0:54"},"scope":19727,"src":"5304:245:54","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":19648,"nodeType":"Block","src":"5747:174:54","statements":[{"assignments":[19630],"declarations":[{"constant":false,"id":19630,"mutability":"mutable","name":"previousAdminRole","nameLocation":"5765:17:54","nodeType":"VariableDeclaration","scope":19648,"src":"5757:25:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19629,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5757:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":19634,"initialValue":{"arguments":[{"id":19632,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19624,"src":"5798:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":19631,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19560,"src":"5785:12:54","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":19633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5785:18:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"5757:46:54"},{"expression":{"id":19640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":19635,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19458,"src":"5813:6:54","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$19453_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":19637,"indexExpression":{"id":19636,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19624,"src":"5820:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5813:12:54","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$19453_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":19638,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5826:9:54","memberName":"adminRole","nodeType":"MemberAccess","referencedDeclaration":19452,"src":"5813:22:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":19639,"name":"adminRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19626,"src":"5838:9:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"5813:34:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":19641,"nodeType":"ExpressionStatement","src":"5813:34:54"},{"eventCall":{"arguments":[{"id":19643,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19624,"src":"5879:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":19644,"name":"previousAdminRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19630,"src":"5885:17:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":19645,"name":"adminRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19626,"src":"5904:9:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":19642,"name":"RoleAdminChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19749,"src":"5862:16:54","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$__$","typeString":"function (bytes32,bytes32,bytes32)"}},"id":19646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5862:52:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":19647,"nodeType":"EmitStatement","src":"5857:57:54"}]},"documentation":{"id":19622,"nodeType":"StructuredDocumentation","src":"5555:114:54","text":" @dev Sets `adminRole` as ``role``'s admin role.\n Emits a {RoleAdminChanged} event."},"id":19649,"implemented":true,"kind":"function","modifiers":[],"name":"_setRoleAdmin","nameLocation":"5683:13:54","nodeType":"FunctionDefinition","parameters":{"id":19627,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19624,"mutability":"mutable","name":"role","nameLocation":"5705:4:54","nodeType":"VariableDeclaration","scope":19649,"src":"5697:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19623,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5697:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19626,"mutability":"mutable","name":"adminRole","nameLocation":"5719:9:54","nodeType":"VariableDeclaration","scope":19649,"src":"5711:17:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19625,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5711:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5696:33:54"},"returnParameters":{"id":19628,"nodeType":"ParameterList","parameters":[],"src":"5747:0:54"},"scope":19727,"src":"5674:247:54","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":19687,"nodeType":"Block","src":"6238:233:54","statements":[{"condition":{"id":19663,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6252:23:54","subExpression":{"arguments":[{"id":19660,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19652,"src":"6261:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":19661,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19654,"src":"6267:7:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":19659,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19512,"src":"6253:7:54","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":19662,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6253:22:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19685,"nodeType":"Block","src":"6428:37:54","statements":[{"expression":{"hexValue":"66616c7365","id":19683,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6449:5:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":19658,"id":19684,"nodeType":"Return","src":"6442:12:54"}]},"id":19686,"nodeType":"IfStatement","src":"6248:217:54","trueBody":{"id":19682,"nodeType":"Block","src":"6277:145:54","statements":[{"expression":{"id":19671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":19664,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19458,"src":"6291:6:54","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$19453_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":19666,"indexExpression":{"id":19665,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19652,"src":"6298:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6291:12:54","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$19453_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":19667,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6304:7:54","memberName":"hasRole","nodeType":"MemberAccess","referencedDeclaration":19450,"src":"6291:20:54","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":19669,"indexExpression":{"id":19668,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19654,"src":"6312:7:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6291:29:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":19670,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6323:4:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6291:36:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19672,"nodeType":"ExpressionStatement","src":"6291:36:54"},{"eventCall":{"arguments":[{"id":19674,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19652,"src":"6358:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":19675,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19654,"src":"6364:7:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":19676,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"6373:10:54","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":19677,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6373:12:54","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":19673,"name":"RoleGranted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19758,"src":"6346:11:54","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$returns$__$","typeString":"function (bytes32,address,address)"}},"id":19678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6346:40:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":19679,"nodeType":"EmitStatement","src":"6341:45:54"},{"expression":{"hexValue":"74727565","id":19680,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6407:4:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":19658,"id":19681,"nodeType":"Return","src":"6400:11:54"}]}}]},"documentation":{"id":19650,"nodeType":"StructuredDocumentation","src":"5927:223:54","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":19688,"implemented":true,"kind":"function","modifiers":[],"name":"_grantRole","nameLocation":"6164:10:54","nodeType":"FunctionDefinition","parameters":{"id":19655,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19652,"mutability":"mutable","name":"role","nameLocation":"6183:4:54","nodeType":"VariableDeclaration","scope":19688,"src":"6175:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19651,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6175:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19654,"mutability":"mutable","name":"account","nameLocation":"6197:7:54","nodeType":"VariableDeclaration","scope":19688,"src":"6189:15:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19653,"name":"address","nodeType":"ElementaryTypeName","src":"6189:7:54","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6174:31:54"},"returnParameters":{"id":19658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19657,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19688,"src":"6232:4:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":19656,"name":"bool","nodeType":"ElementaryTypeName","src":"6232:4:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6231:6:54"},"scope":19727,"src":"6155:316:54","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":19725,"nodeType":"Block","src":"6792:233:54","statements":[{"condition":{"arguments":[{"id":19699,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19691,"src":"6814:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":19700,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19693,"src":"6820:7:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"}],"id":19698,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19512,"src":"6806:7:54","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$","typeString":"function (bytes32,address) view returns (bool)"}},"id":19701,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6806:22:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19723,"nodeType":"Block","src":"6982:37:54","statements":[{"expression":{"hexValue":"66616c7365","id":19721,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7003:5:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":19697,"id":19722,"nodeType":"Return","src":"6996:12:54"}]},"id":19724,"nodeType":"IfStatement","src":"6802:217:54","trueBody":{"id":19720,"nodeType":"Block","src":"6830:146:54","statements":[{"expression":{"id":19709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":19702,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19458,"src":"6844:6:54","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_RoleData_$19453_storage_$","typeString":"mapping(bytes32 => struct AccessControl.RoleData storage ref)"}},"id":19704,"indexExpression":{"id":19703,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19691,"src":"6851:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6844:12:54","typeDescriptions":{"typeIdentifier":"t_struct$_RoleData_$19453_storage","typeString":"struct AccessControl.RoleData storage ref"}},"id":19705,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6857:7:54","memberName":"hasRole","nodeType":"MemberAccess","referencedDeclaration":19450,"src":"6844:20:54","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_bool_$","typeString":"mapping(address => bool)"}},"id":19707,"indexExpression":{"id":19706,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19693,"src":"6865:7:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6844:29:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":19708,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6876:5:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"6844:37:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19710,"nodeType":"ExpressionStatement","src":"6844:37:54"},{"eventCall":{"arguments":[{"id":19712,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19691,"src":"6912:4:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":19713,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19693,"src":"6918:7:54","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":19714,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"6927:10:54","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":19715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6927:12:54","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":19711,"name":"RoleRevoked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19767,"src":"6900:11:54","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$returns$__$","typeString":"function (bytes32,address,address)"}},"id":19716,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6900:40:54","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":19717,"nodeType":"EmitStatement","src":"6895:45:54"},{"expression":{"hexValue":"74727565","id":19718,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6961:4:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":19697,"id":19719,"nodeType":"Return","src":"6954:11:54"}]}}]},"documentation":{"id":19689,"nodeType":"StructuredDocumentation","src":"6477:226:54","text":" @dev Attempts to revoke `role` from `account` and returns a boolean indicating if `role` was revoked.\n Internal function without access restriction.\n May emit a {RoleRevoked} event."},"id":19726,"implemented":true,"kind":"function","modifiers":[],"name":"_revokeRole","nameLocation":"6717:11:54","nodeType":"FunctionDefinition","parameters":{"id":19694,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19691,"mutability":"mutable","name":"role","nameLocation":"6737:4:54","nodeType":"VariableDeclaration","scope":19726,"src":"6729:12:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19690,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6729:7:54","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19693,"mutability":"mutable","name":"account","nameLocation":"6751:7:54","nodeType":"VariableDeclaration","scope":19726,"src":"6743:15:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19692,"name":"address","nodeType":"ElementaryTypeName","src":"6743:7:54","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6728:31:54"},"returnParameters":{"id":19697,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19696,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19726,"src":"6786:4:54","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":19695,"name":"bool","nodeType":"ElementaryTypeName","src":"6786:4:54","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6785:6:54"},"scope":19727,"src":"6708:317:54","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":19728,"src":"1962:5065:54","usedErrors":[19737,19740],"usedEvents":[19749,19758,19767]}],"src":"108:6920:54"},"id":54},"@openzeppelin/contracts/access/IAccessControl.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/IAccessControl.sol","exportedSymbols":{"IAccessControl":[19810]},"id":19811,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":19729,"literals":["solidity",">=","0.8",".4"],"nodeType":"PragmaDirective","src":"109:24:55"},{"abstract":false,"baseContracts":[],"canonicalName":"IAccessControl","contractDependencies":[],"contractKind":"interface","documentation":{"id":19730,"nodeType":"StructuredDocumentation","src":"135:90:55","text":" @dev External interface of AccessControl declared to support ERC-165 detection."},"fullyImplemented":false,"id":19810,"linearizedBaseContracts":[19810],"name":"IAccessControl","nameLocation":"236:14:55","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":19731,"nodeType":"StructuredDocumentation","src":"257:56:55","text":" @dev The `account` is missing a role."},"errorSelector":"e2517d3f","id":19737,"name":"AccessControlUnauthorizedAccount","nameLocation":"324:32:55","nodeType":"ErrorDefinition","parameters":{"id":19736,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19733,"mutability":"mutable","name":"account","nameLocation":"365:7:55","nodeType":"VariableDeclaration","scope":19737,"src":"357:15:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19732,"name":"address","nodeType":"ElementaryTypeName","src":"357:7:55","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":19735,"mutability":"mutable","name":"neededRole","nameLocation":"382:10:55","nodeType":"VariableDeclaration","scope":19737,"src":"374:18:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19734,"name":"bytes32","nodeType":"ElementaryTypeName","src":"374:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"356:37:55"},"src":"318:76:55"},{"documentation":{"id":19738,"nodeType":"StructuredDocumentation","src":"400:148:55","text":" @dev The caller of a function is not the expected one.\n NOTE: Don't confuse with {AccessControlUnauthorizedAccount}."},"errorSelector":"6697b232","id":19740,"name":"AccessControlBadConfirmation","nameLocation":"559:28:55","nodeType":"ErrorDefinition","parameters":{"id":19739,"nodeType":"ParameterList","parameters":[],"src":"587:2:55"},"src":"553:37:55"},{"anonymous":false,"documentation":{"id":19741,"nodeType":"StructuredDocumentation","src":"596:254:55","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 to signal this."},"eventSelector":"bd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff","id":19749,"name":"RoleAdminChanged","nameLocation":"861:16:55","nodeType":"EventDefinition","parameters":{"id":19748,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19743,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"894:4:55","nodeType":"VariableDeclaration","scope":19749,"src":"878:20:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19742,"name":"bytes32","nodeType":"ElementaryTypeName","src":"878:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19745,"indexed":true,"mutability":"mutable","name":"previousAdminRole","nameLocation":"916:17:55","nodeType":"VariableDeclaration","scope":19749,"src":"900:33:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19744,"name":"bytes32","nodeType":"ElementaryTypeName","src":"900:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19747,"indexed":true,"mutability":"mutable","name":"newAdminRole","nameLocation":"951:12:55","nodeType":"VariableDeclaration","scope":19749,"src":"935:28:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19746,"name":"bytes32","nodeType":"ElementaryTypeName","src":"935:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"877:87:55"},"src":"855:110:55"},{"anonymous":false,"documentation":{"id":19750,"nodeType":"StructuredDocumentation","src":"971:295:55","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":19758,"name":"RoleGranted","nameLocation":"1277:11:55","nodeType":"EventDefinition","parameters":{"id":19757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19752,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"1305:4:55","nodeType":"VariableDeclaration","scope":19758,"src":"1289:20:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19751,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1289:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19754,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1327:7:55","nodeType":"VariableDeclaration","scope":19758,"src":"1311:23:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19753,"name":"address","nodeType":"ElementaryTypeName","src":"1311:7:55","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":19756,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1352:6:55","nodeType":"VariableDeclaration","scope":19758,"src":"1336:22:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19755,"name":"address","nodeType":"ElementaryTypeName","src":"1336:7:55","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1288:71:55"},"src":"1271:89:55"},{"anonymous":false,"documentation":{"id":19759,"nodeType":"StructuredDocumentation","src":"1366:275:55","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":19767,"name":"RoleRevoked","nameLocation":"1652:11:55","nodeType":"EventDefinition","parameters":{"id":19766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19761,"indexed":true,"mutability":"mutable","name":"role","nameLocation":"1680:4:55","nodeType":"VariableDeclaration","scope":19767,"src":"1664:20:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19760,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1664:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19763,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1702:7:55","nodeType":"VariableDeclaration","scope":19767,"src":"1686:23:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19762,"name":"address","nodeType":"ElementaryTypeName","src":"1686:7:55","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":19765,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"1727:6:55","nodeType":"VariableDeclaration","scope":19767,"src":"1711:22:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19764,"name":"address","nodeType":"ElementaryTypeName","src":"1711:7:55","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1663:71:55"},"src":"1646:89:55"},{"documentation":{"id":19768,"nodeType":"StructuredDocumentation","src":"1741:76:55","text":" @dev Returns `true` if `account` has been granted `role`."},"functionSelector":"91d14854","id":19777,"implemented":false,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"1831:7:55","nodeType":"FunctionDefinition","parameters":{"id":19773,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19770,"mutability":"mutable","name":"role","nameLocation":"1847:4:55","nodeType":"VariableDeclaration","scope":19777,"src":"1839:12:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19769,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1839:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19772,"mutability":"mutable","name":"account","nameLocation":"1861:7:55","nodeType":"VariableDeclaration","scope":19777,"src":"1853:15:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19771,"name":"address","nodeType":"ElementaryTypeName","src":"1853:7:55","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1838:31:55"},"returnParameters":{"id":19776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19775,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19777,"src":"1893:4:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":19774,"name":"bool","nodeType":"ElementaryTypeName","src":"1893:4:55","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1892:6:55"},"scope":19810,"src":"1822:77:55","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":19778,"nodeType":"StructuredDocumentation","src":"1905:184:55","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":19785,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"2103:12:55","nodeType":"FunctionDefinition","parameters":{"id":19781,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19780,"mutability":"mutable","name":"role","nameLocation":"2124:4:55","nodeType":"VariableDeclaration","scope":19785,"src":"2116:12:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19779,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2116:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2115:14:55"},"returnParameters":{"id":19784,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19783,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19785,"src":"2153:7:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19782,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2153:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2152:9:55"},"scope":19810,"src":"2094:68:55","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":19786,"nodeType":"StructuredDocumentation","src":"2168:239:55","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":19793,"implemented":false,"kind":"function","modifiers":[],"name":"grantRole","nameLocation":"2421:9:55","nodeType":"FunctionDefinition","parameters":{"id":19791,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19788,"mutability":"mutable","name":"role","nameLocation":"2439:4:55","nodeType":"VariableDeclaration","scope":19793,"src":"2431:12:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19787,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2431:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19790,"mutability":"mutable","name":"account","nameLocation":"2453:7:55","nodeType":"VariableDeclaration","scope":19793,"src":"2445:15:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19789,"name":"address","nodeType":"ElementaryTypeName","src":"2445:7:55","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2430:31:55"},"returnParameters":{"id":19792,"nodeType":"ParameterList","parameters":[],"src":"2470:0:55"},"scope":19810,"src":"2412:59:55","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":19794,"nodeType":"StructuredDocumentation","src":"2477:223:55","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":19801,"implemented":false,"kind":"function","modifiers":[],"name":"revokeRole","nameLocation":"2714:10:55","nodeType":"FunctionDefinition","parameters":{"id":19799,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19796,"mutability":"mutable","name":"role","nameLocation":"2733:4:55","nodeType":"VariableDeclaration","scope":19801,"src":"2725:12:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19795,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2725:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19798,"mutability":"mutable","name":"account","nameLocation":"2747:7:55","nodeType":"VariableDeclaration","scope":19801,"src":"2739:15:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19797,"name":"address","nodeType":"ElementaryTypeName","src":"2739:7:55","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2724:31:55"},"returnParameters":{"id":19800,"nodeType":"ParameterList","parameters":[],"src":"2764:0:55"},"scope":19810,"src":"2705:60:55","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":19802,"nodeType":"StructuredDocumentation","src":"2771:491:55","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":19809,"implemented":false,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"3276:12:55","nodeType":"FunctionDefinition","parameters":{"id":19807,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19804,"mutability":"mutable","name":"role","nameLocation":"3297:4:55","nodeType":"VariableDeclaration","scope":19809,"src":"3289:12:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19803,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3289:7:55","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":19806,"mutability":"mutable","name":"callerConfirmation","nameLocation":"3311:18:55","nodeType":"VariableDeclaration","scope":19809,"src":"3303:26:55","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19805,"name":"address","nodeType":"ElementaryTypeName","src":"3303:7:55","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3288:42:55"},"returnParameters":{"id":19808,"nodeType":"ParameterList","parameters":[],"src":"3339:0:55"},"scope":19810,"src":"3267:73:55","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":19811,"src":"226:3116:55","usedErrors":[19737,19740],"usedEvents":[19749,19758,19767]}],"src":"109:3234:55"},"id":55},"@openzeppelin/contracts/access/manager/AccessManager.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/manager/AccessManager.sol","exportedSymbols":{"AccessManager":[21708],"Address":[26046],"Context":[26789],"Hashes":[33213],"IAccessManaged":[21748],"IAccessManager":[22178],"Math":[35187],"Multicall":[27359],"Time":[37370]},"id":21709,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":19812,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"116:24:56"},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","file":"./IAccessManager.sol","id":19814,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21709,"sourceUnit":22179,"src":"142:52:56","symbolAliases":[{"foreign":{"id":19813,"name":"IAccessManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22178,"src":"150:14:56","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManaged.sol","file":"./IAccessManaged.sol","id":19816,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21709,"sourceUnit":21749,"src":"195:52:56","symbolAliases":[{"foreign":{"id":19815,"name":"IAccessManaged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21748,"src":"203:14:56","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"../../utils/Address.sol","id":19818,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21709,"sourceUnit":26047,"src":"248:48:56","symbolAliases":[{"foreign":{"id":19817,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26046,"src":"256:7:56","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":19820,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21709,"sourceUnit":26790,"src":"297:48:56","symbolAliases":[{"foreign":{"id":19819,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26789,"src":"305:7:56","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Multicall.sol","file":"../../utils/Multicall.sol","id":19822,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21709,"sourceUnit":27360,"src":"346:52:56","symbolAliases":[{"foreign":{"id":19821,"name":"Multicall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27359,"src":"354:9:56","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../../utils/math/Math.sol","id":19824,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21709,"sourceUnit":35188,"src":"399:47:56","symbolAliases":[{"foreign":{"id":19823,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"407:4:56","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","file":"../../utils/types/Time.sol","id":19826,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21709,"sourceUnit":37371,"src":"447:48:56","symbolAliases":[{"foreign":{"id":19825,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37370,"src":"455:4:56","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/Hashes.sol","file":"../../utils/cryptography/Hashes.sol","id":19828,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":21709,"sourceUnit":33214,"src":"496:59:56","symbolAliases":[{"foreign":{"id":19827,"name":"Hashes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33213,"src":"504:6:56","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":19830,"name":"Context","nameLocations":["3808:7:56"],"nodeType":"IdentifierPath","referencedDeclaration":26789,"src":"3808:7:56"},"id":19831,"nodeType":"InheritanceSpecifier","src":"3808:7:56"},{"baseName":{"id":19832,"name":"Multicall","nameLocations":["3817:9:56"],"nodeType":"IdentifierPath","referencedDeclaration":27359,"src":"3817:9:56"},"id":19833,"nodeType":"InheritanceSpecifier","src":"3817:9:56"},{"baseName":{"id":19834,"name":"IAccessManager","nameLocations":["3828:14:56"],"nodeType":"IdentifierPath","referencedDeclaration":22178,"src":"3828:14:56"},"id":19835,"nodeType":"InheritanceSpecifier","src":"3828:14:56"}],"canonicalName":"AccessManager","contractDependencies":[],"contractKind":"contract","documentation":{"id":19829,"nodeType":"StructuredDocumentation","src":"557:3224:56","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":21708,"linearizedBaseContracts":[21708,22178,27359,26789],"name":"AccessManager","nameLocation":"3791:13:56","nodeType":"ContractDefinition","nodes":[{"global":false,"id":19837,"libraryName":{"id":19836,"name":"Time","nameLocations":["3855:4:56"],"nodeType":"IdentifierPath","referencedDeclaration":37370,"src":"3855:4:56"},"nodeType":"UsingForDirective","src":"3849:17:56"},{"canonicalName":"AccessManager.TargetConfig","id":19847,"members":[{"constant":false,"id":19841,"mutability":"mutable","name":"allowedRoles","nameLocation":"4008:12:56","nodeType":"VariableDeclaration","scope":19847,"src":"3966:54:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_uint64_$","typeString":"mapping(bytes4 => uint64)"},"typeName":{"id":19840,"keyName":"selector","keyNameLocation":"3981:8:56","keyType":{"id":19838,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3974:6:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"Mapping","src":"3966:41:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_uint64_$","typeString":"mapping(bytes4 => uint64)"},"valueName":"roleId","valueNameLocation":"4000:6:56","valueType":{"id":19839,"name":"uint64","nodeType":"ElementaryTypeName","src":"3993:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}},"visibility":"internal"},{"constant":false,"id":19844,"mutability":"mutable","name":"adminDelay","nameLocation":"4041:10:56","nodeType":"VariableDeclaration","scope":19847,"src":"4030:21:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"},"typeName":{"id":19843,"nodeType":"UserDefinedTypeName","pathNode":{"id":19842,"name":"Time.Delay","nameLocations":["4030:4:56","4035:5:56"],"nodeType":"IdentifierPath","referencedDeclaration":37133,"src":"4030:10:56"},"referencedDeclaration":37133,"src":"4030:10:56","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":19846,"mutability":"mutable","name":"closed","nameLocation":"4066:6:56","nodeType":"VariableDeclaration","scope":19847,"src":"4061:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":19845,"name":"bool","nodeType":"ElementaryTypeName","src":"4061:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"TargetConfig","nameLocation":"3943:12:56","nodeType":"StructDefinition","scope":21708,"src":"3936:143:56","visibility":"public"},{"canonicalName":"AccessManager.Access","id":19853,"members":[{"constant":false,"id":19849,"mutability":"mutable","name":"since","nameLocation":"4374:5:56","nodeType":"VariableDeclaration","scope":19853,"src":"4367:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":19848,"name":"uint48","nodeType":"ElementaryTypeName","src":"4367:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":19852,"mutability":"mutable","name":"delay","nameLocation":"4480:5:56","nodeType":"VariableDeclaration","scope":19853,"src":"4469:16:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"},"typeName":{"id":19851,"nodeType":"UserDefinedTypeName","pathNode":{"id":19850,"name":"Time.Delay","nameLocations":["4469:4:56","4474:5:56"],"nodeType":"IdentifierPath","referencedDeclaration":37133,"src":"4469:10:56"},"referencedDeclaration":37133,"src":"4469:10:56","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"visibility":"internal"}],"name":"Access","nameLocation":"4198:6:56","nodeType":"StructDefinition","scope":21708,"src":"4191:301:56","visibility":"public"},{"canonicalName":"AccessManager.Role","id":19866,"members":[{"constant":false,"id":19858,"mutability":"mutable","name":"members","nameLocation":"4643:7:56","nodeType":"VariableDeclaration","scope":19866,"src":"4604:46:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$19853_storage_$","typeString":"mapping(address => struct AccessManager.Access)"},"typeName":{"id":19857,"keyName":"user","keyNameLocation":"4620:4:56","keyType":{"id":19854,"name":"address","nodeType":"ElementaryTypeName","src":"4612:7:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"4604:38:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$19853_storage_$","typeString":"mapping(address => struct AccessManager.Access)"},"valueName":"access","valueNameLocation":"4635:6:56","valueType":{"id":19856,"nodeType":"UserDefinedTypeName","pathNode":{"id":19855,"name":"Access","nameLocations":["4628:6:56"],"nodeType":"IdentifierPath","referencedDeclaration":19853,"src":"4628:6:56"},"referencedDeclaration":19853,"src":"4628:6:56","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$19853_storage_ptr","typeString":"struct AccessManager.Access"}}},"visibility":"internal"},{"constant":false,"id":19860,"mutability":"mutable","name":"admin","nameLocation":"4721:5:56","nodeType":"VariableDeclaration","scope":19866,"src":"4714:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19859,"name":"uint64","nodeType":"ElementaryTypeName","src":"4714:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":19862,"mutability":"mutable","name":"guardian","nameLocation":"4830:8:56","nodeType":"VariableDeclaration","scope":19866,"src":"4823:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19861,"name":"uint64","nodeType":"ElementaryTypeName","src":"4823:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":19865,"mutability":"mutable","name":"grantDelay","nameLocation":"4928:10:56","nodeType":"VariableDeclaration","scope":19866,"src":"4917:21:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"},"typeName":{"id":19864,"nodeType":"UserDefinedTypeName","pathNode":{"id":19863,"name":"Time.Delay","nameLocations":["4917:4:56","4922:5:56"],"nodeType":"IdentifierPath","referencedDeclaration":37133,"src":"4917:10:56"},"referencedDeclaration":37133,"src":"4917:10:56","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"visibility":"internal"}],"name":"Role","nameLocation":"4557:4:56","nodeType":"StructDefinition","scope":21708,"src":"4550:395:56","visibility":"public"},{"canonicalName":"AccessManager.Schedule","id":19871,"members":[{"constant":false,"id":19868,"mutability":"mutable","name":"timepoint","nameLocation":"5150:9:56","nodeType":"VariableDeclaration","scope":19871,"src":"5143:16:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":19867,"name":"uint48","nodeType":"ElementaryTypeName","src":"5143:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":19870,"mutability":"mutable","name":"nonce","nameLocation":"5261:5:56","nodeType":"VariableDeclaration","scope":19871,"src":"5254:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":19869,"name":"uint32","nodeType":"ElementaryTypeName","src":"5254:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"name":"Schedule","nameLocation":"5066:8:56","nodeType":"StructDefinition","scope":21708,"src":"5059:214:56","visibility":"public"},{"constant":true,"documentation":{"id":19872,"nodeType":"StructuredDocumentation","src":"5279:173:56","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":19879,"mutability":"constant","name":"ADMIN_ROLE","nameLocation":"5480:10:56","nodeType":"VariableDeclaration","scope":21708,"src":"5457:52:56","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19873,"name":"uint64","nodeType":"ElementaryTypeName","src":"5457:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"value":{"expression":{"arguments":[{"id":19876,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5498:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":19875,"name":"uint64","nodeType":"ElementaryTypeName","src":"5498:6:56","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":19874,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5493:4:56","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":19877,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5493:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":19878,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5506:3:56","memberName":"min","nodeType":"MemberAccess","src":"5493:16:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"public"},{"constant":true,"documentation":{"id":19880,"nodeType":"StructuredDocumentation","src":"5521:112:56","text":" @dev The identifier of the public role. Automatically granted to all addresses with no delay."},"functionSelector":"3ca7c02a","id":19887,"mutability":"constant","name":"PUBLIC_ROLE","nameLocation":"5661:11:56","nodeType":"VariableDeclaration","scope":21708,"src":"5638:53:56","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19881,"name":"uint64","nodeType":"ElementaryTypeName","src":"5638:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"value":{"expression":{"arguments":[{"id":19884,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5680:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":19883,"name":"uint64","nodeType":"ElementaryTypeName","src":"5680:6:56","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":19882,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5675:4:56","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":19885,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5675:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":19886,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5688:3:56","memberName":"max","nodeType":"MemberAccess","src":"5675:16:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"public"},{"constant":false,"id":19892,"mutability":"mutable","name":"_targets","nameLocation":"5762:8:56","nodeType":"VariableDeclaration","scope":21708,"src":"5709:61:56","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$19847_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig)"},"typeName":{"id":19891,"keyName":"target","keyNameLocation":"5725:6:56","keyType":{"id":19888,"name":"address","nodeType":"ElementaryTypeName","src":"5717:7:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"5709:44:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$19847_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig)"},"valueName":"mode","valueNameLocation":"5748:4:56","valueType":{"id":19890,"nodeType":"UserDefinedTypeName","pathNode":{"id":19889,"name":"TargetConfig","nameLocations":["5735:12:56"],"nodeType":"IdentifierPath","referencedDeclaration":19847,"src":"5735:12:56"},"referencedDeclaration":19847,"src":"5735:12:56","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$19847_storage_ptr","typeString":"struct AccessManager.TargetConfig"}}},"visibility":"private"},{"constant":false,"id":19897,"mutability":"mutable","name":"_roles","nameLocation":"5815:6:56","nodeType":"VariableDeclaration","scope":21708,"src":"5776:45:56","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$19866_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role)"},"typeName":{"id":19896,"keyName":"roleId","keyNameLocation":"5791:6:56","keyType":{"id":19893,"name":"uint64","nodeType":"ElementaryTypeName","src":"5784:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Mapping","src":"5776:30:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$19866_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":19895,"nodeType":"UserDefinedTypeName","pathNode":{"id":19894,"name":"Role","nameLocations":["5801:4:56"],"nodeType":"IdentifierPath","referencedDeclaration":19866,"src":"5801:4:56"},"referencedDeclaration":19866,"src":"5801:4:56","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$19866_storage_ptr","typeString":"struct AccessManager.Role"}}},"visibility":"private"},{"constant":false,"id":19902,"mutability":"mutable","name":"_schedules","nameLocation":"5876:10:56","nodeType":"VariableDeclaration","scope":21708,"src":"5827:59:56","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$19871_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule)"},"typeName":{"id":19901,"keyName":"operationId","keyNameLocation":"5843:11:56","keyType":{"id":19898,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5835:7:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Mapping","src":"5827:40:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$19871_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":19900,"nodeType":"UserDefinedTypeName","pathNode":{"id":19899,"name":"Schedule","nameLocations":["5858:8:56"],"nodeType":"IdentifierPath","referencedDeclaration":19871,"src":"5858:8:56"},"referencedDeclaration":19871,"src":"5858:8:56","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$19871_storage_ptr","typeString":"struct AccessManager.Schedule"}}},"visibility":"private"},{"constant":false,"id":19904,"mutability":"mutable","name":"_executionId","nameLocation":"6060:12:56","nodeType":"VariableDeclaration","scope":21708,"src":"6044:28:56","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":19903,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6044:7:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"body":{"id":19911,"nodeType":"Block","src":"6287:46:56","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":19907,"name":"_checkAuthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21328,"src":"6297:16:56","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":19908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6297:18:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":19909,"nodeType":"ExpressionStatement","src":"6297:18:56"},{"id":19910,"nodeType":"PlaceholderStatement","src":"6325:1:56"}]},"documentation":{"id":19905,"nodeType":"StructuredDocumentation","src":"6079:177:56","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":19912,"name":"onlyAuthorized","nameLocation":"6270:14:56","nodeType":"ModifierDefinition","parameters":{"id":19906,"nodeType":"ParameterList","parameters":[],"src":"6284:2:56"},"src":"6261:72:56","virtual":false,"visibility":"internal"},{"body":{"id":19939,"nodeType":"Block","src":"6373:249:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":19922,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19917,"name":"initialAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19914,"src":"6387:12:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":19920,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6411:1:56","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":19919,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6403:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":19918,"name":"address","nodeType":"ElementaryTypeName","src":"6403:7:56","typeDescriptions":{}}},"id":19921,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6403:10:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6387:26:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19931,"nodeType":"IfStatement","src":"6383:108:56","trueBody":{"id":19930,"nodeType":"Block","src":"6415:76:56","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":19926,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6477:1:56","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":19925,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6469:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":19924,"name":"address","nodeType":"ElementaryTypeName","src":"6469:7:56","typeDescriptions":{}}},"id":19927,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6469:10:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":19923,"name":"AccessManagerInvalidInitialAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21908,"src":"6436:32:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":19928,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6436:44:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19929,"nodeType":"RevertStatement","src":"6429:51:56"}]}},{"expression":{"arguments":[{"id":19933,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19879,"src":"6584:10:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":19934,"name":"initialAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19914,"src":"6596:12:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":19935,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6610:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":19936,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6613:1:56","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":19932,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20444,"src":"6573:10:56","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":19937,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6573:42:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19938,"nodeType":"ExpressionStatement","src":"6573:42:56"}]},"id":19940,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":19915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19914,"mutability":"mutable","name":"initialAdmin","nameLocation":"6359:12:56","nodeType":"VariableDeclaration","scope":19940,"src":"6351:20:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19913,"name":"address","nodeType":"ElementaryTypeName","src":"6351:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6350:22:56"},"returnParameters":{"id":19916,"nodeType":"ParameterList","parameters":[],"src":"6373:0:56"},"scope":21708,"src":"6339:283:56","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[21922],"body":{"id":20006,"nodeType":"Block","src":"6938:647:56","statements":[{"condition":{"arguments":[{"id":19955,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19945,"src":"6967:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":19954,"name":"isTargetClosed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20039,"src":"6952:14:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":19956,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6952:22:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":19967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19962,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19943,"src":"7028:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":19965,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7046:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}],"id":19964,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7038:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":19963,"name":"address","nodeType":"ElementaryTypeName","src":"7038:7:56","typeDescriptions":{}}},"id":19966,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7038:13:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7028:23:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":20003,"nodeType":"Block","src":"7345:234:56","statements":[{"assignments":[19977],"declarations":[{"constant":false,"id":19977,"mutability":"mutable","name":"roleId","nameLocation":"7366:6:56","nodeType":"VariableDeclaration","scope":20003,"src":"7359:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19976,"name":"uint64","nodeType":"ElementaryTypeName","src":"7359:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19982,"initialValue":{"arguments":[{"id":19979,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19945,"src":"7397:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":19980,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19947,"src":"7405:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":19978,"name":"getTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20057,"src":"7375:21:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_uint64_$","typeString":"function (address,bytes4) view returns (uint64)"}},"id":19981,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7375:39:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"7359:55:56"},{"assignments":[19984,19986],"declarations":[{"constant":false,"id":19984,"mutability":"mutable","name":"isMember","nameLocation":"7434:8:56","nodeType":"VariableDeclaration","scope":20003,"src":"7429:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":19983,"name":"bool","nodeType":"ElementaryTypeName","src":"7429:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":19986,"mutability":"mutable","name":"currentDelay","nameLocation":"7451:12:56","nodeType":"VariableDeclaration","scope":20003,"src":"7444:19:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":19985,"name":"uint32","nodeType":"ElementaryTypeName","src":"7444:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":19991,"initialValue":{"arguments":[{"id":19988,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19977,"src":"7475:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":19989,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19943,"src":"7483:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":19987,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20209,"src":"7467:7:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_bool_$_t_uint32_$","typeString":"function (uint64,address) view returns (bool,uint32)"}},"id":19990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7467:23:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"7428:62:56"},{"expression":{"condition":{"id":19992,"name":"isMember","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19984,"src":"7511:8:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"hexValue":"66616c7365","id":19998,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7559:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":19999,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7566:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":20000,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"7558:10:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"id":20001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"7511:57:56","trueExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":19995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19993,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19986,"src":"7523:12:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":19994,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7539:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7523:17:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":19996,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19986,"src":"7542:12:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":19997,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7522:33:56","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":19953,"id":20002,"nodeType":"Return","src":"7504:64:56"}]},"id":20004,"nodeType":"IfStatement","src":"7024:555:56","trueBody":{"id":19975,"nodeType":"Block","src":"7053:286:56","statements":[{"expression":{"components":[{"arguments":[{"id":19969,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19945,"src":"7307:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":19970,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19947,"src":"7315:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":19968,"name":"_isExecuting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21646,"src":"7294:12:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":19971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7294:30:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"30","id":19972,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7326:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":19973,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7293:35:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":19953,"id":19974,"nodeType":"Return","src":"7286:42:56"}]}},"id":20005,"nodeType":"IfStatement","src":"6948:631:56","trueBody":{"id":19961,"nodeType":"Block","src":"6976:42:56","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":19957,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6998:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":19958,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7005:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":19959,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6997:10:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":19953,"id":19960,"nodeType":"Return","src":"6990:17:56"}]}}]},"documentation":{"id":19941,"nodeType":"StructuredDocumentation","src":"6748:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"b7009613","id":20007,"implemented":true,"kind":"function","modifiers":[],"name":"canCall","nameLocation":"6792:7:56","nodeType":"FunctionDefinition","parameters":{"id":19948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19943,"mutability":"mutable","name":"caller","nameLocation":"6817:6:56","nodeType":"VariableDeclaration","scope":20007,"src":"6809:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19942,"name":"address","nodeType":"ElementaryTypeName","src":"6809:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":19945,"mutability":"mutable","name":"target","nameLocation":"6841:6:56","nodeType":"VariableDeclaration","scope":20007,"src":"6833:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":19944,"name":"address","nodeType":"ElementaryTypeName","src":"6833:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":19947,"mutability":"mutable","name":"selector","nameLocation":"6864:8:56","nodeType":"VariableDeclaration","scope":20007,"src":"6857:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":19946,"name":"bytes4","nodeType":"ElementaryTypeName","src":"6857:6:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"6799:79:56"},"returnParameters":{"id":19953,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19950,"mutability":"mutable","name":"immediate","nameLocation":"6913:9:56","nodeType":"VariableDeclaration","scope":20007,"src":"6908:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":19949,"name":"bool","nodeType":"ElementaryTypeName","src":"6908:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":19952,"mutability":"mutable","name":"delay","nameLocation":"6931:5:56","nodeType":"VariableDeclaration","scope":20007,"src":"6924:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":19951,"name":"uint32","nodeType":"ElementaryTypeName","src":"6924:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"6907:30:56"},"scope":21708,"src":"6783:802:56","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[21928],"body":{"id":20015,"nodeType":"Block","src":"7685:31:56","statements":[{"expression":{"hexValue":"31","id":20013,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7702:7:56","subdenomination":"weeks","typeDescriptions":{"typeIdentifier":"t_rational_604800_by_1","typeString":"int_const 604800"},"value":"1"},"functionReturnParameters":20012,"id":20014,"nodeType":"Return","src":"7695:14:56"}]},"documentation":{"id":20008,"nodeType":"StructuredDocumentation","src":"7591:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"4665096d","id":20016,"implemented":true,"kind":"function","modifiers":[],"name":"expiration","nameLocation":"7635:10:56","nodeType":"FunctionDefinition","parameters":{"id":20009,"nodeType":"ParameterList","parameters":[],"src":"7645:2:56"},"returnParameters":{"id":20012,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20011,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20016,"src":"7677:6:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20010,"name":"uint32","nodeType":"ElementaryTypeName","src":"7677:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"7676:8:56"},"scope":21708,"src":"7626:90:56","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[21934],"body":{"id":20024,"nodeType":"Block","src":"7816:30:56","statements":[{"expression":{"hexValue":"35","id":20022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7833:6:56","subdenomination":"days","typeDescriptions":{"typeIdentifier":"t_rational_432000_by_1","typeString":"int_const 432000"},"value":"5"},"functionReturnParameters":20021,"id":20023,"nodeType":"Return","src":"7826:13:56"}]},"documentation":{"id":20017,"nodeType":"StructuredDocumentation","src":"7722:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"cc1b6c81","id":20025,"implemented":true,"kind":"function","modifiers":[],"name":"minSetback","nameLocation":"7766:10:56","nodeType":"FunctionDefinition","parameters":{"id":20018,"nodeType":"ParameterList","parameters":[],"src":"7776:2:56"},"returnParameters":{"id":20021,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20020,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20025,"src":"7808:6:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20019,"name":"uint32","nodeType":"ElementaryTypeName","src":"7808:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"7807:8:56"},"scope":21708,"src":"7757:89:56","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[21942],"body":{"id":20038,"nodeType":"Block","src":"7962:47:56","statements":[{"expression":{"expression":{"baseExpression":{"id":20033,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19892,"src":"7979:8:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$19847_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":20035,"indexExpression":{"id":20034,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20028,"src":"7988:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7979:16:56","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$19847_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":20036,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7996:6:56","memberName":"closed","nodeType":"MemberAccess","referencedDeclaration":19846,"src":"7979:23:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":20032,"id":20037,"nodeType":"Return","src":"7972:30:56"}]},"documentation":{"id":20026,"nodeType":"StructuredDocumentation","src":"7852:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"a166aa89","id":20039,"implemented":true,"kind":"function","modifiers":[],"name":"isTargetClosed","nameLocation":"7896:14:56","nodeType":"FunctionDefinition","parameters":{"id":20029,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20028,"mutability":"mutable","name":"target","nameLocation":"7919:6:56","nodeType":"VariableDeclaration","scope":20039,"src":"7911:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20027,"name":"address","nodeType":"ElementaryTypeName","src":"7911:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7910:16:56"},"returnParameters":{"id":20032,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20031,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20039,"src":"7956:4:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":20030,"name":"bool","nodeType":"ElementaryTypeName","src":"7956:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7955:6:56"},"scope":21708,"src":"7887:122:56","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[21952],"body":{"id":20056,"nodeType":"Block","src":"8151:63:56","statements":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":20049,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19892,"src":"8168:8:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$19847_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":20051,"indexExpression":{"id":20050,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20042,"src":"8177:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8168:16:56","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$19847_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":20052,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8185:12:56","memberName":"allowedRoles","nodeType":"MemberAccess","referencedDeclaration":19841,"src":"8168:29:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_uint64_$","typeString":"mapping(bytes4 => uint64)"}},"id":20054,"indexExpression":{"id":20053,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20044,"src":"8198:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8168:39:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":20048,"id":20055,"nodeType":"Return","src":"8161:46:56"}]},"documentation":{"id":20040,"nodeType":"StructuredDocumentation","src":"8015:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"6d5115bd","id":20057,"implemented":true,"kind":"function","modifiers":[],"name":"getTargetFunctionRole","nameLocation":"8059:21:56","nodeType":"FunctionDefinition","parameters":{"id":20045,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20042,"mutability":"mutable","name":"target","nameLocation":"8089:6:56","nodeType":"VariableDeclaration","scope":20057,"src":"8081:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20041,"name":"address","nodeType":"ElementaryTypeName","src":"8081:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20044,"mutability":"mutable","name":"selector","nameLocation":"8104:8:56","nodeType":"VariableDeclaration","scope":20057,"src":"8097:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":20043,"name":"bytes4","nodeType":"ElementaryTypeName","src":"8097:6:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"8080:33:56"},"returnParameters":{"id":20048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20047,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20057,"src":"8143:6:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20046,"name":"uint64","nodeType":"ElementaryTypeName","src":"8143:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8142:8:56"},"scope":21708,"src":"8050:164:56","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[21960],"body":{"id":20072,"nodeType":"Block","src":"8337:57:56","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"baseExpression":{"id":20065,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19892,"src":"8354:8:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$19847_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":20067,"indexExpression":{"id":20066,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20060,"src":"8363:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8354:16:56","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$19847_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":20068,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8371:10:56","memberName":"adminDelay","nodeType":"MemberAccess","referencedDeclaration":19844,"src":"8354:27:56","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"id":20069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8382:3:56","memberName":"get","nodeType":"MemberAccess","referencedDeclaration":37224,"src":"8354:31:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$37133_$returns$_t_uint32_$attached_to$_t_userDefinedValueType$_Delay_$37133_$","typeString":"function (Time.Delay) view returns (uint32)"}},"id":20070,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8354:33:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":20064,"id":20071,"nodeType":"Return","src":"8347:40:56"}]},"documentation":{"id":20058,"nodeType":"StructuredDocumentation","src":"8220:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"4c1da1e2","id":20073,"implemented":true,"kind":"function","modifiers":[],"name":"getTargetAdminDelay","nameLocation":"8264:19:56","nodeType":"FunctionDefinition","parameters":{"id":20061,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20060,"mutability":"mutable","name":"target","nameLocation":"8292:6:56","nodeType":"VariableDeclaration","scope":20073,"src":"8284:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20059,"name":"address","nodeType":"ElementaryTypeName","src":"8284:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8283:16:56"},"returnParameters":{"id":20064,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20063,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20073,"src":"8329:6:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20062,"name":"uint32","nodeType":"ElementaryTypeName","src":"8329:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8328:8:56"},"scope":21708,"src":"8255:139:56","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[21968],"body":{"id":20086,"nodeType":"Block","src":"8509:44:56","statements":[{"expression":{"expression":{"baseExpression":{"id":20081,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19897,"src":"8526:6:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$19866_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":20083,"indexExpression":{"id":20082,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20076,"src":"8533:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8526:14:56","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$19866_storage","typeString":"struct AccessManager.Role storage ref"}},"id":20084,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8541:5:56","memberName":"admin","nodeType":"MemberAccess","referencedDeclaration":19860,"src":"8526:20:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":20080,"id":20085,"nodeType":"Return","src":"8519:27:56"}]},"documentation":{"id":20074,"nodeType":"StructuredDocumentation","src":"8400:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"530dd456","id":20087,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"8444:12:56","nodeType":"FunctionDefinition","parameters":{"id":20077,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20076,"mutability":"mutable","name":"roleId","nameLocation":"8464:6:56","nodeType":"VariableDeclaration","scope":20087,"src":"8457:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20075,"name":"uint64","nodeType":"ElementaryTypeName","src":"8457:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8456:15:56"},"returnParameters":{"id":20080,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20079,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20087,"src":"8501:6:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20078,"name":"uint64","nodeType":"ElementaryTypeName","src":"8501:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8500:8:56"},"scope":21708,"src":"8435:118:56","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[21976],"body":{"id":20100,"nodeType":"Block","src":"8671:47:56","statements":[{"expression":{"expression":{"baseExpression":{"id":20095,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19897,"src":"8688:6:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$19866_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":20097,"indexExpression":{"id":20096,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20090,"src":"8695:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8688:14:56","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$19866_storage","typeString":"struct AccessManager.Role storage ref"}},"id":20098,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8703:8:56","memberName":"guardian","nodeType":"MemberAccess","referencedDeclaration":19862,"src":"8688:23:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":20094,"id":20099,"nodeType":"Return","src":"8681:30:56"}]},"documentation":{"id":20088,"nodeType":"StructuredDocumentation","src":"8559:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"0b0a93ba","id":20101,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleGuardian","nameLocation":"8603:15:56","nodeType":"FunctionDefinition","parameters":{"id":20091,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20090,"mutability":"mutable","name":"roleId","nameLocation":"8626:6:56","nodeType":"VariableDeclaration","scope":20101,"src":"8619:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20089,"name":"uint64","nodeType":"ElementaryTypeName","src":"8619:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8618:15:56"},"returnParameters":{"id":20094,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20093,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20101,"src":"8663:6:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20092,"name":"uint64","nodeType":"ElementaryTypeName","src":"8663:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8662:8:56"},"scope":21708,"src":"8594:124:56","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[21984],"body":{"id":20116,"nodeType":"Block","src":"8838:55:56","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"baseExpression":{"id":20109,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19897,"src":"8855:6:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$19866_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":20111,"indexExpression":{"id":20110,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20104,"src":"8862:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8855:14:56","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$19866_storage","typeString":"struct AccessManager.Role storage ref"}},"id":20112,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8870:10:56","memberName":"grantDelay","nodeType":"MemberAccess","referencedDeclaration":19865,"src":"8855:25:56","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"id":20113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8881:3:56","memberName":"get","nodeType":"MemberAccess","referencedDeclaration":37224,"src":"8855:29:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$37133_$returns$_t_uint32_$attached_to$_t_userDefinedValueType$_Delay_$37133_$","typeString":"function (Time.Delay) view returns (uint32)"}},"id":20114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8855:31:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":20108,"id":20115,"nodeType":"Return","src":"8848:38:56"}]},"documentation":{"id":20102,"nodeType":"StructuredDocumentation","src":"8724:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"12be8727","id":20117,"implemented":true,"kind":"function","modifiers":[],"name":"getRoleGrantDelay","nameLocation":"8768:17:56","nodeType":"FunctionDefinition","parameters":{"id":20105,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20104,"mutability":"mutable","name":"roleId","nameLocation":"8793:6:56","nodeType":"VariableDeclaration","scope":20117,"src":"8786:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20103,"name":"uint64","nodeType":"ElementaryTypeName","src":"8786:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8785:15:56"},"returnParameters":{"id":20108,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20107,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20117,"src":"8830:6:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20106,"name":"uint32","nodeType":"ElementaryTypeName","src":"8830:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8829:8:56"},"scope":21708,"src":"8759:134:56","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22000],"body":{"id":20164,"nodeType":"Block","src":"9107:235:56","statements":[{"assignments":[20135],"declarations":[{"constant":false,"id":20135,"mutability":"mutable","name":"access","nameLocation":"9132:6:56","nodeType":"VariableDeclaration","scope":20164,"src":"9117:21:56","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$19853_storage_ptr","typeString":"struct AccessManager.Access"},"typeName":{"id":20134,"nodeType":"UserDefinedTypeName","pathNode":{"id":20133,"name":"Access","nameLocations":["9117:6:56"],"nodeType":"IdentifierPath","referencedDeclaration":19853,"src":"9117:6:56"},"referencedDeclaration":19853,"src":"9117:6:56","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$19853_storage_ptr","typeString":"struct AccessManager.Access"}},"visibility":"internal"}],"id":20142,"initialValue":{"baseExpression":{"expression":{"baseExpression":{"id":20136,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19897,"src":"9141:6:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$19866_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":20138,"indexExpression":{"id":20137,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20120,"src":"9148:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9141:14:56","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$19866_storage","typeString":"struct AccessManager.Role storage ref"}},"id":20139,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9156:7:56","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":19858,"src":"9141:22:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$19853_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":20141,"indexExpression":{"id":20140,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20122,"src":"9164:7:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9141:31:56","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$19853_storage","typeString":"struct AccessManager.Access storage ref"}},"nodeType":"VariableDeclarationStatement","src":"9117:55:56"},{"expression":{"id":20146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20143,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20125,"src":"9183:5:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":20144,"name":"access","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20135,"src":"9191:6:56","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$19853_storage_ptr","typeString":"struct AccessManager.Access storage pointer"}},"id":20145,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9198:5:56","memberName":"since","nodeType":"MemberAccess","referencedDeclaration":19849,"src":"9191:12:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"9183:20:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":20147,"nodeType":"ExpressionStatement","src":"9183:20:56"},{"expression":{"id":20156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":20148,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20127,"src":"9214:12:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":20149,"name":"pendingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20129,"src":"9228:12:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":20150,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20131,"src":"9242:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":20151,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"9213:36:56","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":20152,"name":"access","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20135,"src":"9252:6:56","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$19853_storage_ptr","typeString":"struct AccessManager.Access storage pointer"}},"id":20153,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9259:5:56","memberName":"delay","nodeType":"MemberAccess","referencedDeclaration":19852,"src":"9252:12:56","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"id":20154,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9265:7:56","memberName":"getFull","nodeType":"MemberAccess","referencedDeclaration":37206,"src":"9252:20:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$37133_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$37133_$","typeString":"function (Time.Delay) view returns (uint32,uint32,uint48)"}},"id":20155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9252:22:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"src":"9213:61:56","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20157,"nodeType":"ExpressionStatement","src":"9213:61:56"},{"expression":{"components":[{"id":20158,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20125,"src":"9293:5:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":20159,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20127,"src":"9300:12:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":20160,"name":"pendingDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20129,"src":"9314:12:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":20161,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20131,"src":"9328:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":20162,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9292:43:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint48_$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint48,uint32,uint32,uint48)"}},"functionReturnParameters":20132,"id":20163,"nodeType":"Return","src":"9285:50:56"}]},"documentation":{"id":20118,"nodeType":"StructuredDocumentation","src":"8899:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"3078f114","id":20165,"implemented":true,"kind":"function","modifiers":[],"name":"getAccess","nameLocation":"8943:9:56","nodeType":"FunctionDefinition","parameters":{"id":20123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20120,"mutability":"mutable","name":"roleId","nameLocation":"8969:6:56","nodeType":"VariableDeclaration","scope":20165,"src":"8962:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20119,"name":"uint64","nodeType":"ElementaryTypeName","src":"8962:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":20122,"mutability":"mutable","name":"account","nameLocation":"8993:7:56","nodeType":"VariableDeclaration","scope":20165,"src":"8985:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20121,"name":"address","nodeType":"ElementaryTypeName","src":"8985:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8952:54:56"},"returnParameters":{"id":20132,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20125,"mutability":"mutable","name":"since","nameLocation":"9043:5:56","nodeType":"VariableDeclaration","scope":20165,"src":"9036:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":20124,"name":"uint48","nodeType":"ElementaryTypeName","src":"9036:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":20127,"mutability":"mutable","name":"currentDelay","nameLocation":"9057:12:56","nodeType":"VariableDeclaration","scope":20165,"src":"9050:19:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20126,"name":"uint32","nodeType":"ElementaryTypeName","src":"9050:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":20129,"mutability":"mutable","name":"pendingDelay","nameLocation":"9078:12:56","nodeType":"VariableDeclaration","scope":20165,"src":"9071:19:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20128,"name":"uint32","nodeType":"ElementaryTypeName","src":"9071:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":20131,"mutability":"mutable","name":"effect","nameLocation":"9099:6:56","nodeType":"VariableDeclaration","scope":20165,"src":"9092:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":20130,"name":"uint48","nodeType":"ElementaryTypeName","src":"9092:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"9035:71:56"},"scope":21708,"src":"8934:408:56","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22012],"body":{"id":20208,"nodeType":"Block","src":"9521:280:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":20179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20177,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20168,"src":"9535:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":20178,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19887,"src":"9545:11:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"9535:21:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":20206,"nodeType":"Block","src":"9605:190:56","statements":[{"assignments":[20186,20188,null,null],"declarations":[{"constant":false,"id":20186,"mutability":"mutable","name":"hasRoleSince","nameLocation":"9627:12:56","nodeType":"VariableDeclaration","scope":20206,"src":"9620:19:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":20185,"name":"uint48","nodeType":"ElementaryTypeName","src":"9620:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":20188,"mutability":"mutable","name":"currentDelay","nameLocation":"9648:12:56","nodeType":"VariableDeclaration","scope":20206,"src":"9641:19:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20187,"name":"uint32","nodeType":"ElementaryTypeName","src":"9641:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},null,null],"id":20193,"initialValue":{"arguments":[{"id":20190,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20168,"src":"9678:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":20191,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20170,"src":"9686:7:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":20189,"name":"getAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20165,"src":"9668:9:56","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":20192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9668:26:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint48_$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint48,uint32,uint32,uint48)"}},"nodeType":"VariableDeclarationStatement","src":"9619:75:56"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":20202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":20196,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20194,"name":"hasRoleSince","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20186,"src":"9716:12:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":20195,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9732:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9716:17:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":20201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20197,"name":"hasRoleSince","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20186,"src":"9737:12:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":20198,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37370,"src":"9753:4:56","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$37370_$","typeString":"type(library Time)"}},"id":20199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9758:9:56","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":37118,"src":"9753:14:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":20200,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9753:16:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"9737:32:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9716:53:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":20203,"name":"currentDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20188,"src":"9771:12:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":20204,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9715:69:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":20176,"id":20205,"nodeType":"Return","src":"9708:76:56"}]},"id":20207,"nodeType":"IfStatement","src":"9531:264:56","trueBody":{"id":20184,"nodeType":"Block","src":"9558:41:56","statements":[{"expression":{"components":[{"hexValue":"74727565","id":20180,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9580:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"hexValue":"30","id":20181,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9586:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":20182,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"9579:9:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":20176,"id":20183,"nodeType":"Return","src":"9572:16:56"}]}}]},"documentation":{"id":20166,"nodeType":"StructuredDocumentation","src":"9348:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"d1f856ee","id":20209,"implemented":true,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"9392:7:56","nodeType":"FunctionDefinition","parameters":{"id":20171,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20168,"mutability":"mutable","name":"roleId","nameLocation":"9416:6:56","nodeType":"VariableDeclaration","scope":20209,"src":"9409:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20167,"name":"uint64","nodeType":"ElementaryTypeName","src":"9409:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":20170,"mutability":"mutable","name":"account","nameLocation":"9440:7:56","nodeType":"VariableDeclaration","scope":20209,"src":"9432:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20169,"name":"address","nodeType":"ElementaryTypeName","src":"9432:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9399:54:56"},"returnParameters":{"id":20176,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20173,"mutability":"mutable","name":"isMember","nameLocation":"9488:8:56","nodeType":"VariableDeclaration","scope":20209,"src":"9483:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":20172,"name":"bool","nodeType":"ElementaryTypeName","src":"9483:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":20175,"mutability":"mutable","name":"executionDelay","nameLocation":"9505:14:56","nodeType":"VariableDeclaration","scope":20209,"src":"9498:21:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20174,"name":"uint32","nodeType":"ElementaryTypeName","src":"9498:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"9482:38:56"},"scope":21708,"src":"9383:418:56","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22020],"body":{"id":20237,"nodeType":"Block","src":"10048:169:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":20225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":20221,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20219,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20212,"src":"10062:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":20220,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19879,"src":"10072:10:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"10062:20:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":20224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20222,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20212,"src":"10086:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":20223,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19887,"src":"10096:11:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"10086:21:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10062:45:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20231,"nodeType":"IfStatement","src":"10058:114:56","trueBody":{"id":20230,"nodeType":"Block","src":"10109:63:56","statements":[{"errorCall":{"arguments":[{"id":20227,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20212,"src":"10154:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20226,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21874,"src":"10130:23:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":20228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10130:31:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20229,"nodeType":"RevertStatement","src":"10123:38:56"}]}},{"eventCall":{"arguments":[{"id":20233,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20212,"src":"10196:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":20234,"name":"label","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20214,"src":"10204:5:56","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":20232,"name":"RoleLabel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21786,"src":"10186:9:56","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_string_memory_ptr_$returns$__$","typeString":"function (uint64,string memory)"}},"id":20235,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10186:24:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20236,"nodeType":"EmitStatement","src":"10181:29:56"}]},"documentation":{"id":20210,"nodeType":"StructuredDocumentation","src":"9926:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"853551b8","id":20238,"implemented":true,"kind":"function","modifiers":[{"id":20217,"kind":"modifierInvocation","modifierName":{"id":20216,"name":"onlyAuthorized","nameLocations":["10033:14:56"],"nodeType":"IdentifierPath","referencedDeclaration":19912,"src":"10033:14:56"},"nodeType":"ModifierInvocation","src":"10033:14:56"}],"name":"labelRole","nameLocation":"9970:9:56","nodeType":"FunctionDefinition","parameters":{"id":20215,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20212,"mutability":"mutable","name":"roleId","nameLocation":"9987:6:56","nodeType":"VariableDeclaration","scope":20238,"src":"9980:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20211,"name":"uint64","nodeType":"ElementaryTypeName","src":"9980:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":20214,"mutability":"mutable","name":"label","nameLocation":"10011:5:56","nodeType":"VariableDeclaration","scope":20238,"src":"9995:21:56","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":20213,"name":"string","nodeType":"ElementaryTypeName","src":"9995:6:56","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"9979:38:56"},"returnParameters":{"id":20218,"nodeType":"ParameterList","parameters":[],"src":"10048:0:56"},"scope":21708,"src":"9961:256:56","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[22030],"body":{"id":20259,"nodeType":"Block","src":"10362:87:56","statements":[{"expression":{"arguments":[{"id":20251,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20241,"src":"10383:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":20252,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20243,"src":"10391:7:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":20254,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20241,"src":"10418:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20253,"name":"getRoleGrantDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20117,"src":"10400:17:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$returns$_t_uint32_$","typeString":"function (uint64) view returns (uint32)"}},"id":20255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10400:25:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":20256,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20245,"src":"10427:14:56","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":20250,"name":"_grantRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20444,"src":"10372:10:56","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":20257,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10372:70:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20258,"nodeType":"ExpressionStatement","src":"10372:70:56"}]},"documentation":{"id":20239,"nodeType":"StructuredDocumentation","src":"10223:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"25c471a0","id":20260,"implemented":true,"kind":"function","modifiers":[{"id":20248,"kind":"modifierInvocation","modifierName":{"id":20247,"name":"onlyAuthorized","nameLocations":["10347:14:56"],"nodeType":"IdentifierPath","referencedDeclaration":19912,"src":"10347:14:56"},"nodeType":"ModifierInvocation","src":"10347:14:56"}],"name":"grantRole","nameLocation":"10267:9:56","nodeType":"FunctionDefinition","parameters":{"id":20246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20241,"mutability":"mutable","name":"roleId","nameLocation":"10284:6:56","nodeType":"VariableDeclaration","scope":20260,"src":"10277:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20240,"name":"uint64","nodeType":"ElementaryTypeName","src":"10277:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":20243,"mutability":"mutable","name":"account","nameLocation":"10300:7:56","nodeType":"VariableDeclaration","scope":20260,"src":"10292:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20242,"name":"address","nodeType":"ElementaryTypeName","src":"10292:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20245,"mutability":"mutable","name":"executionDelay","nameLocation":"10316:14:56","nodeType":"VariableDeclaration","scope":20260,"src":"10309:21:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20244,"name":"uint32","nodeType":"ElementaryTypeName","src":"10309:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"10276:55:56"},"returnParameters":{"id":20249,"nodeType":"ParameterList","parameters":[],"src":"10362:0:56"},"scope":21708,"src":"10258:191:56","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[22038],"body":{"id":20275,"nodeType":"Block","src":"10572:45:56","statements":[{"expression":{"arguments":[{"id":20271,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20263,"src":"10594:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":20272,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20265,"src":"10602:7:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":20270,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20492,"src":"10582:11:56","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_address_$returns$_t_bool_$","typeString":"function (uint64,address) returns (bool)"}},"id":20273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10582:28:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20274,"nodeType":"ExpressionStatement","src":"10582:28:56"}]},"documentation":{"id":20261,"nodeType":"StructuredDocumentation","src":"10455:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"b7d2b162","id":20276,"implemented":true,"kind":"function","modifiers":[{"id":20268,"kind":"modifierInvocation","modifierName":{"id":20267,"name":"onlyAuthorized","nameLocations":["10557:14:56"],"nodeType":"IdentifierPath","referencedDeclaration":19912,"src":"10557:14:56"},"nodeType":"ModifierInvocation","src":"10557:14:56"}],"name":"revokeRole","nameLocation":"10499:10:56","nodeType":"FunctionDefinition","parameters":{"id":20266,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20263,"mutability":"mutable","name":"roleId","nameLocation":"10517:6:56","nodeType":"VariableDeclaration","scope":20276,"src":"10510:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20262,"name":"uint64","nodeType":"ElementaryTypeName","src":"10510:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":20265,"mutability":"mutable","name":"account","nameLocation":"10533:7:56","nodeType":"VariableDeclaration","scope":20276,"src":"10525:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20264,"name":"address","nodeType":"ElementaryTypeName","src":"10525:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10509:32:56"},"returnParameters":{"id":20269,"nodeType":"ParameterList","parameters":[],"src":"10572:0:56"},"scope":21708,"src":"10490:127:56","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[22046],"body":{"id":20298,"nodeType":"Block","src":"10738:167:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":20287,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20284,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20281,"src":"10752:18:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":20285,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"10774:10:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":20286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10774:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10752:34:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20292,"nodeType":"IfStatement","src":"10748:102:56","trueBody":{"id":20291,"nodeType":"Block","src":"10788:62:56","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":20288,"name":"AccessManagerBadConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21876,"src":"10809:28:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":20289,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10809:30:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20290,"nodeType":"RevertStatement","src":"10802:37:56"}]}},{"expression":{"arguments":[{"id":20294,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20279,"src":"10871:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":20295,"name":"callerConfirmation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20281,"src":"10879:18:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":20293,"name":"_revokeRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20492,"src":"10859:11:56","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_address_$returns$_t_bool_$","typeString":"function (uint64,address) returns (bool)"}},"id":20296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10859:39:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20297,"nodeType":"ExpressionStatement","src":"10859:39:56"}]},"documentation":{"id":20277,"nodeType":"StructuredDocumentation","src":"10623:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"fe0776f5","id":20299,"implemented":true,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"10667:12:56","nodeType":"FunctionDefinition","parameters":{"id":20282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20279,"mutability":"mutable","name":"roleId","nameLocation":"10687:6:56","nodeType":"VariableDeclaration","scope":20299,"src":"10680:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20278,"name":"uint64","nodeType":"ElementaryTypeName","src":"10680:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":20281,"mutability":"mutable","name":"callerConfirmation","nameLocation":"10703:18:56","nodeType":"VariableDeclaration","scope":20299,"src":"10695:26:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20280,"name":"address","nodeType":"ElementaryTypeName","src":"10695:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10679:43:56"},"returnParameters":{"id":20283,"nodeType":"ParameterList","parameters":[],"src":"10738:0:56"},"scope":21708,"src":"10658:247:56","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[22054],"body":{"id":20314,"nodeType":"Block","src":"11027:45:56","statements":[{"expression":{"arguments":[{"id":20310,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20302,"src":"11051:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":20311,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20304,"src":"11059:5:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20309,"name":"_setRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20526,"src":"11037:13:56","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64)"}},"id":20312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11037:28:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20313,"nodeType":"ExpressionStatement","src":"11037:28:56"}]},"documentation":{"id":20300,"nodeType":"StructuredDocumentation","src":"10911:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"30cae187","id":20315,"implemented":true,"kind":"function","modifiers":[{"id":20307,"kind":"modifierInvocation","modifierName":{"id":20306,"name":"onlyAuthorized","nameLocations":["11012:14:56"],"nodeType":"IdentifierPath","referencedDeclaration":19912,"src":"11012:14:56"},"nodeType":"ModifierInvocation","src":"11012:14:56"}],"name":"setRoleAdmin","nameLocation":"10955:12:56","nodeType":"FunctionDefinition","parameters":{"id":20305,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20302,"mutability":"mutable","name":"roleId","nameLocation":"10975:6:56","nodeType":"VariableDeclaration","scope":20315,"src":"10968:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20301,"name":"uint64","nodeType":"ElementaryTypeName","src":"10968:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":20304,"mutability":"mutable","name":"admin","nameLocation":"10990:5:56","nodeType":"VariableDeclaration","scope":20315,"src":"10983:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20303,"name":"uint64","nodeType":"ElementaryTypeName","src":"10983:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"10967:29:56"},"returnParameters":{"id":20308,"nodeType":"ParameterList","parameters":[],"src":"11027:0:56"},"scope":21708,"src":"10946:126:56","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[22062],"body":{"id":20330,"nodeType":"Block","src":"11200:51:56","statements":[{"expression":{"arguments":[{"id":20326,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20318,"src":"11227:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":20327,"name":"guardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20320,"src":"11235:8:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20325,"name":"_setRoleGuardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20560,"src":"11210:16:56","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64)"}},"id":20328,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11210:34:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20329,"nodeType":"ExpressionStatement","src":"11210:34:56"}]},"documentation":{"id":20316,"nodeType":"StructuredDocumentation","src":"11078:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"52962952","id":20331,"implemented":true,"kind":"function","modifiers":[{"id":20323,"kind":"modifierInvocation","modifierName":{"id":20322,"name":"onlyAuthorized","nameLocations":["11185:14:56"],"nodeType":"IdentifierPath","referencedDeclaration":19912,"src":"11185:14:56"},"nodeType":"ModifierInvocation","src":"11185:14:56"}],"name":"setRoleGuardian","nameLocation":"11122:15:56","nodeType":"FunctionDefinition","parameters":{"id":20321,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20318,"mutability":"mutable","name":"roleId","nameLocation":"11145:6:56","nodeType":"VariableDeclaration","scope":20331,"src":"11138:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20317,"name":"uint64","nodeType":"ElementaryTypeName","src":"11138:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":20320,"mutability":"mutable","name":"guardian","nameLocation":"11160:8:56","nodeType":"VariableDeclaration","scope":20331,"src":"11153:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20319,"name":"uint64","nodeType":"ElementaryTypeName","src":"11153:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"11137:32:56"},"returnParameters":{"id":20324,"nodeType":"ParameterList","parameters":[],"src":"11200:0:56"},"scope":21708,"src":"11113:138:56","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[22070],"body":{"id":20346,"nodeType":"Block","src":"11377:49:56","statements":[{"expression":{"arguments":[{"id":20342,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20334,"src":"11402:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":20343,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20336,"src":"11410:8:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":20341,"name":"_setGrantDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20604,"src":"11387:14:56","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint64_$_t_uint32_$returns$__$","typeString":"function (uint64,uint32)"}},"id":20344,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11387:32:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20345,"nodeType":"ExpressionStatement","src":"11387:32:56"}]},"documentation":{"id":20332,"nodeType":"StructuredDocumentation","src":"11257:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"a64d95ce","id":20347,"implemented":true,"kind":"function","modifiers":[{"id":20339,"kind":"modifierInvocation","modifierName":{"id":20338,"name":"onlyAuthorized","nameLocations":["11362:14:56"],"nodeType":"IdentifierPath","referencedDeclaration":19912,"src":"11362:14:56"},"nodeType":"ModifierInvocation","src":"11362:14:56"}],"name":"setGrantDelay","nameLocation":"11301:13:56","nodeType":"FunctionDefinition","parameters":{"id":20337,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20334,"mutability":"mutable","name":"roleId","nameLocation":"11322:6:56","nodeType":"VariableDeclaration","scope":20347,"src":"11315:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20333,"name":"uint64","nodeType":"ElementaryTypeName","src":"11315:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":20336,"mutability":"mutable","name":"newDelay","nameLocation":"11337:8:56","nodeType":"VariableDeclaration","scope":20347,"src":"11330:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20335,"name":"uint32","nodeType":"ElementaryTypeName","src":"11330:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"11314:32:56"},"returnParameters":{"id":20340,"nodeType":"ParameterList","parameters":[],"src":"11377:0:56"},"scope":21708,"src":"11292:134:56","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":20443,"nodeType":"Block","src":"11767:897:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":20363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20361,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20350,"src":"11781:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":20362,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19887,"src":"11791:11:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"11781:21:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20369,"nodeType":"IfStatement","src":"11777:90:56","trueBody":{"id":20368,"nodeType":"Block","src":"11804:63:56","statements":[{"errorCall":{"arguments":[{"id":20365,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20350,"src":"11849:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20364,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21874,"src":"11825:23:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":20366,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11825:31:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20367,"nodeType":"RevertStatement","src":"11818:38:56"}]}},{"assignments":[20371],"declarations":[{"constant":false,"id":20371,"mutability":"mutable","name":"newMember","nameLocation":"11882:9:56","nodeType":"VariableDeclaration","scope":20443,"src":"11877:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":20370,"name":"bool","nodeType":"ElementaryTypeName","src":"11877:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":20381,"initialValue":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":20380,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":20372,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19897,"src":"11894:6:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$19866_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":20374,"indexExpression":{"id":20373,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20350,"src":"11901:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11894:14:56","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$19866_storage","typeString":"struct AccessManager.Role storage ref"}},"id":20375,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11909:7:56","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":19858,"src":"11894:22:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$19853_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":20377,"indexExpression":{"id":20376,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20352,"src":"11917:7:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11894:31:56","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$19853_storage","typeString":"struct AccessManager.Access storage ref"}},"id":20378,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11926:5:56","memberName":"since","nodeType":"MemberAccess","referencedDeclaration":19849,"src":"11894:37:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":20379,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11935:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11894:42:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"11877:59:56"},{"assignments":[20383],"declarations":[{"constant":false,"id":20383,"mutability":"mutable","name":"since","nameLocation":"11953:5:56","nodeType":"VariableDeclaration","scope":20443,"src":"11946:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":20382,"name":"uint48","nodeType":"ElementaryTypeName","src":"11946:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":20384,"nodeType":"VariableDeclarationStatement","src":"11946:12:56"},{"condition":{"id":20385,"name":"newMember","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20371,"src":"11973:9:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":20431,"nodeType":"Block","src":"12155:399:56","statements":[{"expression":{"id":20429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":20409,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19897,"src":"12382:6:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$19866_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":20411,"indexExpression":{"id":20410,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20350,"src":"12389:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12382:14:56","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$19866_storage","typeString":"struct AccessManager.Role storage ref"}},"id":20412,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12397:7:56","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":19858,"src":"12382:22:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$19853_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":20414,"indexExpression":{"id":20413,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20352,"src":"12405:7:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12382:31:56","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$19853_storage","typeString":"struct AccessManager.Access storage ref"}},"id":20415,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12414:5:56","memberName":"delay","nodeType":"MemberAccess","referencedDeclaration":19852,"src":"12382:37:56","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},{"id":20416,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20383,"src":"12421:5:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":20417,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"12381:46:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$37133_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20426,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20356,"src":"12496:14:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":20427,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12528:1:56","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":20418,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19897,"src":"12430:6:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$19866_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":20420,"indexExpression":{"id":20419,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20350,"src":"12437:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12430:14:56","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$19866_storage","typeString":"struct AccessManager.Role storage ref"}},"id":20421,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12445:7:56","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":19858,"src":"12430:22:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$19853_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":20423,"indexExpression":{"id":20422,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20352,"src":"12453:7:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12430:31:56","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$19853_storage","typeString":"struct AccessManager.Access storage ref"}},"id":20424,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12462:5:56","memberName":"delay","nodeType":"MemberAccess","referencedDeclaration":19852,"src":"12430:37:56","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"id":20425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12468:10:56","memberName":"withUpdate","nodeType":"MemberAccess","referencedDeclaration":37280,"src":"12430:48:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$37133_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_Delay_$37133_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$37133_$","typeString":"function (Time.Delay,uint32,uint32) view returns (Time.Delay,uint48)"}},"id":20428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12430:113:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$37133_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"src":"12381:162:56","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20430,"nodeType":"ExpressionStatement","src":"12381:162:56"}]},"id":20432,"nodeType":"IfStatement","src":"11969:585:56","trueBody":{"id":20408,"nodeType":"Block","src":"11984:165:56","statements":[{"expression":{"id":20392,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20386,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20383,"src":"11998:5:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":20391,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":20387,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37370,"src":"12006:4:56","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$37370_$","typeString":"type(library Time)"}},"id":20388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12011:9:56","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":37118,"src":"12006:14:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":20389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12006:16:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":20390,"name":"grantDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20354,"src":"12025:10:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"12006:29:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"11998:37:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":20393,"nodeType":"ExpressionStatement","src":"11998:37:56"},{"expression":{"id":20406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":20394,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19897,"src":"12049:6:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$19866_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":20396,"indexExpression":{"id":20395,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20350,"src":"12056:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12049:14:56","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$19866_storage","typeString":"struct AccessManager.Role storage ref"}},"id":20397,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12064:7:56","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":19858,"src":"12049:22:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$19853_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":20399,"indexExpression":{"id":20398,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20352,"src":"12072:7:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"12049:31:56","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$19853_storage","typeString":"struct AccessManager.Access storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20401,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20383,"src":"12098:5:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":20402,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20356,"src":"12112:14:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":20403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12127:7:56","memberName":"toDelay","nodeType":"MemberAccess","referencedDeclaration":37148,"src":"12112:22:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$returns$_t_userDefinedValueType$_Delay_$37133_$attached_to$_t_uint32_$","typeString":"function (uint32) pure returns (Time.Delay)"}},"id":20404,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12112:24:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}],"id":20400,"name":"Access","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19853,"src":"12083:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Access_$19853_storage_ptr_$","typeString":"type(struct AccessManager.Access storage pointer)"}},"id":20405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["12091:5:56","12105:5:56"],"names":["since","delay"],"nodeType":"FunctionCall","src":"12083:55:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Access_$19853_memory_ptr","typeString":"struct AccessManager.Access memory"}},"src":"12049:89:56","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$19853_storage","typeString":"struct AccessManager.Access storage ref"}},"id":20407,"nodeType":"ExpressionStatement","src":"12049:89:56"}]}},{"eventCall":{"arguments":[{"id":20434,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20350,"src":"12581:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":20435,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20352,"src":"12589:7:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20436,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20356,"src":"12598:14:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":20437,"name":"since","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20383,"src":"12614:5:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":20438,"name":"newMember","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20371,"src":"12621:9:56","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":20433,"name":"RoleGranted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21799,"src":"12569:11:56","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":20439,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12569:62:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20440,"nodeType":"EmitStatement","src":"12564:67:56"},{"expression":{"id":20441,"name":"newMember","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20371,"src":"12648:9:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":20360,"id":20442,"nodeType":"Return","src":"12641:16:56"}]},"documentation":{"id":20348,"nodeType":"StructuredDocumentation","src":"11432:166:56","text":" @dev Internal version of {grantRole} without access control. Returns true if the role was newly granted.\n Emits a {RoleGranted} event."},"id":20444,"implemented":true,"kind":"function","modifiers":[],"name":"_grantRole","nameLocation":"11612:10:56","nodeType":"FunctionDefinition","parameters":{"id":20357,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20350,"mutability":"mutable","name":"roleId","nameLocation":"11639:6:56","nodeType":"VariableDeclaration","scope":20444,"src":"11632:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20349,"name":"uint64","nodeType":"ElementaryTypeName","src":"11632:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":20352,"mutability":"mutable","name":"account","nameLocation":"11663:7:56","nodeType":"VariableDeclaration","scope":20444,"src":"11655:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20351,"name":"address","nodeType":"ElementaryTypeName","src":"11655:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20354,"mutability":"mutable","name":"grantDelay","nameLocation":"11687:10:56","nodeType":"VariableDeclaration","scope":20444,"src":"11680:17:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20353,"name":"uint32","nodeType":"ElementaryTypeName","src":"11680:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":20356,"mutability":"mutable","name":"executionDelay","nameLocation":"11714:14:56","nodeType":"VariableDeclaration","scope":20444,"src":"11707:21:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20355,"name":"uint32","nodeType":"ElementaryTypeName","src":"11707:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"11622:112:56"},"returnParameters":{"id":20360,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20359,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20444,"src":"11761:4:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":20358,"name":"bool","nodeType":"ElementaryTypeName","src":"11761:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"11760:6:56"},"scope":21708,"src":"11603:1061:56","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":20491,"nodeType":"Block","src":"13010:315:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":20456,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20454,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20447,"src":"13024:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":20455,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19887,"src":"13034:11:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13024:21:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20462,"nodeType":"IfStatement","src":"13020:90:56","trueBody":{"id":20461,"nodeType":"Block","src":"13047:63:56","statements":[{"errorCall":{"arguments":[{"id":20458,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20447,"src":"13092:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20457,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21874,"src":"13068:23:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":20459,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13068:31:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20460,"nodeType":"RevertStatement","src":"13061:38:56"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":20471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":20463,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19897,"src":"13124:6:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$19866_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":20465,"indexExpression":{"id":20464,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20447,"src":"13131:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13124:14:56","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$19866_storage","typeString":"struct AccessManager.Role storage ref"}},"id":20466,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13139:7:56","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":19858,"src":"13124:22:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$19853_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":20468,"indexExpression":{"id":20467,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20449,"src":"13147:7:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13124:31:56","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$19853_storage","typeString":"struct AccessManager.Access storage ref"}},"id":20469,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13156:5:56","memberName":"since","nodeType":"MemberAccess","referencedDeclaration":19849,"src":"13124:37:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":20470,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13165:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13124:42:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20475,"nodeType":"IfStatement","src":"13120:85:56","trueBody":{"id":20474,"nodeType":"Block","src":"13168:37:56","statements":[{"expression":{"hexValue":"66616c7365","id":20472,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13189:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":20453,"id":20473,"nodeType":"Return","src":"13182:12:56"}]}},{"expression":{"id":20482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"13215:38:56","subExpression":{"baseExpression":{"expression":{"baseExpression":{"id":20476,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19897,"src":"13222:6:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$19866_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":20478,"indexExpression":{"id":20477,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20447,"src":"13229:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13222:14:56","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$19866_storage","typeString":"struct AccessManager.Role storage ref"}},"id":20479,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13237:7:56","memberName":"members","nodeType":"MemberAccess","referencedDeclaration":19858,"src":"13222:22:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_Access_$19853_storage_$","typeString":"mapping(address => struct AccessManager.Access storage ref)"}},"id":20481,"indexExpression":{"id":20480,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20449,"src":"13245:7:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"13222:31:56","typeDescriptions":{"typeIdentifier":"t_struct$_Access_$19853_storage","typeString":"struct AccessManager.Access storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20483,"nodeType":"ExpressionStatement","src":"13215:38:56"},{"eventCall":{"arguments":[{"id":20485,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20447,"src":"13281:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":20486,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20449,"src":"13289:7:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":20484,"name":"RoleRevoked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21806,"src":"13269:11:56","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_address_$returns$__$","typeString":"function (uint64,address)"}},"id":20487,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13269:28:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20488,"nodeType":"EmitStatement","src":"13264:33:56"},{"expression":{"hexValue":"74727565","id":20489,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13314:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":20453,"id":20490,"nodeType":"Return","src":"13307:11:56"}]},"documentation":{"id":20445,"nodeType":"StructuredDocumentation","src":"12670:250:56","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":20492,"implemented":true,"kind":"function","modifiers":[],"name":"_revokeRole","nameLocation":"12934:11:56","nodeType":"FunctionDefinition","parameters":{"id":20450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20447,"mutability":"mutable","name":"roleId","nameLocation":"12953:6:56","nodeType":"VariableDeclaration","scope":20492,"src":"12946:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20446,"name":"uint64","nodeType":"ElementaryTypeName","src":"12946:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":20449,"mutability":"mutable","name":"account","nameLocation":"12969:7:56","nodeType":"VariableDeclaration","scope":20492,"src":"12961:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20448,"name":"address","nodeType":"ElementaryTypeName","src":"12961:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"12945:32:56"},"returnParameters":{"id":20453,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20452,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20492,"src":"13004:4:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":20451,"name":"bool","nodeType":"ElementaryTypeName","src":"13004:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"13003:6:56"},"scope":21708,"src":"12925:400:56","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":20525,"nodeType":"Block","src":"13689:216:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":20506,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":20502,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20500,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20495,"src":"13703:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":20501,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19879,"src":"13713:10:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13703:20:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":20505,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20503,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20495,"src":"13727:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":20504,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19887,"src":"13737:11:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13727:21:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"13703:45:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20512,"nodeType":"IfStatement","src":"13699:114:56","trueBody":{"id":20511,"nodeType":"Block","src":"13750:63:56","statements":[{"errorCall":{"arguments":[{"id":20508,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20495,"src":"13795:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20507,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21874,"src":"13771:23:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":20509,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13771:31:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20510,"nodeType":"RevertStatement","src":"13764:38:56"}]}},{"expression":{"id":20518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":20513,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19897,"src":"13823:6:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$19866_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":20515,"indexExpression":{"id":20514,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20495,"src":"13830:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"13823:14:56","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$19866_storage","typeString":"struct AccessManager.Role storage ref"}},"id":20516,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13838:5:56","memberName":"admin","nodeType":"MemberAccess","referencedDeclaration":19860,"src":"13823:20:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":20517,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20497,"src":"13846:5:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13823:28:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":20519,"nodeType":"ExpressionStatement","src":"13823:28:56"},{"eventCall":{"arguments":[{"id":20521,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20495,"src":"13884:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":20522,"name":"admin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20497,"src":"13892:5:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20520,"name":"RoleAdminChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21813,"src":"13867:16:56","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64)"}},"id":20523,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13867:31:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20524,"nodeType":"EmitStatement","src":"13862:36:56"}]},"documentation":{"id":20493,"nodeType":"StructuredDocumentation","src":"13331:284:56","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":20526,"implemented":true,"kind":"function","modifiers":[],"name":"_setRoleAdmin","nameLocation":"13629:13:56","nodeType":"FunctionDefinition","parameters":{"id":20498,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20495,"mutability":"mutable","name":"roleId","nameLocation":"13650:6:56","nodeType":"VariableDeclaration","scope":20526,"src":"13643:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20494,"name":"uint64","nodeType":"ElementaryTypeName","src":"13643:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":20497,"mutability":"mutable","name":"admin","nameLocation":"13665:5:56","nodeType":"VariableDeclaration","scope":20526,"src":"13658:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20496,"name":"uint64","nodeType":"ElementaryTypeName","src":"13658:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"13642:29:56"},"returnParameters":{"id":20499,"nodeType":"ParameterList","parameters":[],"src":"13689:0:56"},"scope":21708,"src":"13620:285:56","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":20559,"nodeType":"Block","src":"14299:228:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":20540,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":20536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20534,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20529,"src":"14313:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":20535,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19879,"src":"14323:10:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14313:20:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":20539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20537,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20529,"src":"14337:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":20538,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19887,"src":"14347:11:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14337:21:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"14313:45:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20546,"nodeType":"IfStatement","src":"14309:114:56","trueBody":{"id":20545,"nodeType":"Block","src":"14360:63:56","statements":[{"errorCall":{"arguments":[{"id":20542,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20529,"src":"14405:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20541,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21874,"src":"14381:23:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":20543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14381:31:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20544,"nodeType":"RevertStatement","src":"14374:38:56"}]}},{"expression":{"id":20552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":20547,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19897,"src":"14433:6:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$19866_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":20549,"indexExpression":{"id":20548,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20529,"src":"14440:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14433:14:56","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$19866_storage","typeString":"struct AccessManager.Role storage ref"}},"id":20550,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14448:8:56","memberName":"guardian","nodeType":"MemberAccess","referencedDeclaration":19862,"src":"14433:23:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":20551,"name":"guardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20531,"src":"14459:8:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14433:34:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":20553,"nodeType":"ExpressionStatement","src":"14433:34:56"},{"eventCall":{"arguments":[{"id":20555,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20529,"src":"14503:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":20556,"name":"guardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20531,"src":"14511:8:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20554,"name":"RoleGuardianChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21820,"src":"14483:19:56","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64)"}},"id":20557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14483:37:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20558,"nodeType":"EmitStatement","src":"14478:42:56"}]},"documentation":{"id":20527,"nodeType":"StructuredDocumentation","src":"13911:308:56","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":20560,"implemented":true,"kind":"function","modifiers":[],"name":"_setRoleGuardian","nameLocation":"14233:16:56","nodeType":"FunctionDefinition","parameters":{"id":20532,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20529,"mutability":"mutable","name":"roleId","nameLocation":"14257:6:56","nodeType":"VariableDeclaration","scope":20560,"src":"14250:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20528,"name":"uint64","nodeType":"ElementaryTypeName","src":"14250:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":20531,"mutability":"mutable","name":"guardian","nameLocation":"14272:8:56","nodeType":"VariableDeclaration","scope":20560,"src":"14265:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20530,"name":"uint64","nodeType":"ElementaryTypeName","src":"14265:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"14249:32:56"},"returnParameters":{"id":20533,"nodeType":"ParameterList","parameters":[],"src":"14299:0:56"},"scope":21708,"src":"14224:303:56","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":20603,"nodeType":"Block","src":"14747:301:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":20570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20568,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20563,"src":"14761:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":20569,"name":"PUBLIC_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19887,"src":"14771:11:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14761:21:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20576,"nodeType":"IfStatement","src":"14757:90:56","trueBody":{"id":20575,"nodeType":"Block","src":"14784:63:56","statements":[{"errorCall":{"arguments":[{"id":20572,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20563,"src":"14829:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20571,"name":"AccessManagerLockedRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21874,"src":"14805:23:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint64_$returns$_t_error_$","typeString":"function (uint64) pure returns (error)"}},"id":20573,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14805:31:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20574,"nodeType":"RevertStatement","src":"14798:38:56"}]}},{"assignments":[20578],"declarations":[{"constant":false,"id":20578,"mutability":"mutable","name":"effect","nameLocation":"14864:6:56","nodeType":"VariableDeclaration","scope":20603,"src":"14857:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":20577,"name":"uint48","nodeType":"ElementaryTypeName","src":"14857:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":20579,"nodeType":"VariableDeclarationStatement","src":"14857:13:56"},{"expression":{"id":20595,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"baseExpression":{"id":20580,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19897,"src":"14881:6:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$19866_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":20582,"indexExpression":{"id":20581,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20563,"src":"14888:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14881:14:56","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$19866_storage","typeString":"struct AccessManager.Role storage ref"}},"id":20583,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14896:10:56","memberName":"grantDelay","nodeType":"MemberAccess","referencedDeclaration":19865,"src":"14881:25:56","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},{"id":20584,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20578,"src":"14908:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":20585,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"14880:35:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$37133_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20591,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20565,"src":"14955:8:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":20592,"name":"minSetback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20025,"src":"14965:10:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint32_$","typeString":"function () view returns (uint32)"}},"id":20593,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14965:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"expression":{"baseExpression":{"id":20586,"name":"_roles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19897,"src":"14918:6:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint64_$_t_struct$_Role_$19866_storage_$","typeString":"mapping(uint64 => struct AccessManager.Role storage ref)"}},"id":20588,"indexExpression":{"id":20587,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20563,"src":"14925:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"14918:14:56","typeDescriptions":{"typeIdentifier":"t_struct$_Role_$19866_storage","typeString":"struct AccessManager.Role storage ref"}},"id":20589,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14933:10:56","memberName":"grantDelay","nodeType":"MemberAccess","referencedDeclaration":19865,"src":"14918:25:56","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"id":20590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14944:10:56","memberName":"withUpdate","nodeType":"MemberAccess","referencedDeclaration":37280,"src":"14918:36:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$37133_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_Delay_$37133_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$37133_$","typeString":"function (Time.Delay,uint32,uint32) view returns (Time.Delay,uint48)"}},"id":20594,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14918:60:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$37133_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"src":"14880:98:56","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20596,"nodeType":"ExpressionStatement","src":"14880:98:56"},{"eventCall":{"arguments":[{"id":20598,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20563,"src":"15016:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":20599,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20565,"src":"15024:8:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":20600,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20578,"src":"15034:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":20597,"name":"RoleGrantDelayChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21829,"src":"14994:21:56","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$_t_uint32_$_t_uint48_$returns$__$","typeString":"function (uint64,uint32,uint48)"}},"id":20601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14994:47:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20602,"nodeType":"EmitStatement","src":"14989:52:56"}]},"documentation":{"id":20561,"nodeType":"StructuredDocumentation","src":"14533:136:56","text":" @dev Internal version of {setGrantDelay} without access control.\n Emits a {RoleGrantDelayChanged} event."},"id":20604,"implemented":true,"kind":"function","modifiers":[],"name":"_setGrantDelay","nameLocation":"14683:14:56","nodeType":"FunctionDefinition","parameters":{"id":20566,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20563,"mutability":"mutable","name":"roleId","nameLocation":"14705:6:56","nodeType":"VariableDeclaration","scope":20604,"src":"14698:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20562,"name":"uint64","nodeType":"ElementaryTypeName","src":"14698:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":20565,"mutability":"mutable","name":"newDelay","nameLocation":"14720:8:56","nodeType":"VariableDeclaration","scope":20604,"src":"14713:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20564,"name":"uint32","nodeType":"ElementaryTypeName","src":"14713:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"14697:32:56"},"returnParameters":{"id":20567,"nodeType":"ParameterList","parameters":[],"src":"14747:0:56"},"scope":21708,"src":"14674:374:56","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[22081],"body":{"id":20638,"nodeType":"Block","src":"15360:140:56","statements":[{"body":{"id":20636,"nodeType":"Block","src":"15417:77:56","statements":[{"expression":{"arguments":[{"id":20629,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20607,"src":"15454:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":20630,"name":"selectors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20610,"src":"15462:9:56","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_calldata_ptr","typeString":"bytes4[] calldata"}},"id":20632,"indexExpression":{"id":20631,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20618,"src":"15472:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15462:12:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":20633,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20612,"src":"15476:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20628,"name":"_setTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20665,"src":"15431:22:56","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes4_$_t_uint64_$returns$__$","typeString":"function (address,bytes4,uint64)"}},"id":20634,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15431:52:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20635,"nodeType":"ExpressionStatement","src":"15431:52:56"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20624,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20621,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20618,"src":"15390:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":20622,"name":"selectors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20610,"src":"15394:9:56","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_calldata_ptr","typeString":"bytes4[] calldata"}},"id":20623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15404:6:56","memberName":"length","nodeType":"MemberAccess","src":"15394:16:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15390:20:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20637,"initializationExpression":{"assignments":[20618],"declarations":[{"constant":false,"id":20618,"mutability":"mutable","name":"i","nameLocation":"15383:1:56","nodeType":"VariableDeclaration","scope":20637,"src":"15375:9:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20617,"name":"uint256","nodeType":"ElementaryTypeName","src":"15375:7:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":20620,"initialValue":{"hexValue":"30","id":20619,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15387:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"15375:13:56"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":20626,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"15412:3:56","subExpression":{"id":20625,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20618,"src":"15414:1:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":20627,"nodeType":"ExpressionStatement","src":"15412:3:56"},"nodeType":"ForStatement","src":"15370:124:56"}]},"documentation":{"id":20605,"nodeType":"StructuredDocumentation","src":"15174:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"08d6122d","id":20639,"implemented":true,"kind":"function","modifiers":[{"id":20615,"kind":"modifierInvocation","modifierName":{"id":20614,"name":"onlyAuthorized","nameLocations":["15345:14:56"],"nodeType":"IdentifierPath","referencedDeclaration":19912,"src":"15345:14:56"},"nodeType":"ModifierInvocation","src":"15345:14:56"}],"name":"setTargetFunctionRole","nameLocation":"15218:21:56","nodeType":"FunctionDefinition","parameters":{"id":20613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20607,"mutability":"mutable","name":"target","nameLocation":"15257:6:56","nodeType":"VariableDeclaration","scope":20639,"src":"15249:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20606,"name":"address","nodeType":"ElementaryTypeName","src":"15249:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20610,"mutability":"mutable","name":"selectors","nameLocation":"15291:9:56","nodeType":"VariableDeclaration","scope":20639,"src":"15273:27:56","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_calldata_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":20608,"name":"bytes4","nodeType":"ElementaryTypeName","src":"15273:6:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":20609,"nodeType":"ArrayTypeName","src":"15273:8:56","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"},{"constant":false,"id":20612,"mutability":"mutable","name":"roleId","nameLocation":"15317:6:56","nodeType":"VariableDeclaration","scope":20639,"src":"15310:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20611,"name":"uint64","nodeType":"ElementaryTypeName","src":"15310:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"15239:90:56"},"returnParameters":{"id":20616,"nodeType":"ParameterList","parameters":[],"src":"15360:0:56"},"scope":21708,"src":"15209:291:56","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":20664,"nodeType":"Block","src":"15756:131:56","statements":[{"expression":{"id":20656,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"baseExpression":{"id":20649,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19892,"src":"15766:8:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$19847_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":20651,"indexExpression":{"id":20650,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20642,"src":"15775:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15766:16:56","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$19847_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":20652,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15783:12:56","memberName":"allowedRoles","nodeType":"MemberAccess","referencedDeclaration":19841,"src":"15766:29:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes4_$_t_uint64_$","typeString":"mapping(bytes4 => uint64)"}},"id":20654,"indexExpression":{"id":20653,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20644,"src":"15796:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"15766:39:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":20655,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20646,"src":"15808:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"15766:48:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":20657,"nodeType":"ExpressionStatement","src":"15766:48:56"},{"eventCall":{"arguments":[{"id":20659,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20642,"src":"15855:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20660,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20644,"src":"15863:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":20661,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20646,"src":"15873:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20658,"name":"TargetFunctionRoleUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21845,"src":"15829:25:56","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_bytes4_$_t_uint64_$returns$__$","typeString":"function (address,bytes4,uint64)"}},"id":20662,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15829:51:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20663,"nodeType":"EmitStatement","src":"15824:56:56"}]},"documentation":{"id":20640,"nodeType":"StructuredDocumentation","src":"15506:148:56","text":" @dev Internal version of {setTargetFunctionRole} without access control.\n Emits a {TargetFunctionRoleUpdated} event."},"id":20665,"implemented":true,"kind":"function","modifiers":[],"name":"_setTargetFunctionRole","nameLocation":"15668:22:56","nodeType":"FunctionDefinition","parameters":{"id":20647,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20642,"mutability":"mutable","name":"target","nameLocation":"15699:6:56","nodeType":"VariableDeclaration","scope":20665,"src":"15691:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20641,"name":"address","nodeType":"ElementaryTypeName","src":"15691:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20644,"mutability":"mutable","name":"selector","nameLocation":"15714:8:56","nodeType":"VariableDeclaration","scope":20665,"src":"15707:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":20643,"name":"bytes4","nodeType":"ElementaryTypeName","src":"15707:6:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":20646,"mutability":"mutable","name":"roleId","nameLocation":"15731:6:56","nodeType":"VariableDeclaration","scope":20665,"src":"15724:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20645,"name":"uint64","nodeType":"ElementaryTypeName","src":"15724:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"15690:48:56"},"returnParameters":{"id":20648,"nodeType":"ParameterList","parameters":[],"src":"15756:0:56"},"scope":21708,"src":"15659:228:56","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[22089],"body":{"id":20680,"nodeType":"Block","src":"16020:55:56","statements":[{"expression":{"arguments":[{"id":20676,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20668,"src":"16051:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20677,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20670,"src":"16059:8:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":20675,"name":"_setTargetAdminDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20716,"src":"16030:20:56","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint32_$returns$__$","typeString":"function (address,uint32)"}},"id":20678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16030:38:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20679,"nodeType":"ExpressionStatement","src":"16030:38:56"}]},"documentation":{"id":20666,"nodeType":"StructuredDocumentation","src":"15893:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"d22b5989","id":20681,"implemented":true,"kind":"function","modifiers":[{"id":20673,"kind":"modifierInvocation","modifierName":{"id":20672,"name":"onlyAuthorized","nameLocations":["16005:14:56"],"nodeType":"IdentifierPath","referencedDeclaration":19912,"src":"16005:14:56"},"nodeType":"ModifierInvocation","src":"16005:14:56"}],"name":"setTargetAdminDelay","nameLocation":"15937:19:56","nodeType":"FunctionDefinition","parameters":{"id":20671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20668,"mutability":"mutable","name":"target","nameLocation":"15965:6:56","nodeType":"VariableDeclaration","scope":20681,"src":"15957:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20667,"name":"address","nodeType":"ElementaryTypeName","src":"15957:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20670,"mutability":"mutable","name":"newDelay","nameLocation":"15980:8:56","nodeType":"VariableDeclaration","scope":20681,"src":"15973:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20669,"name":"uint32","nodeType":"ElementaryTypeName","src":"15973:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15956:33:56"},"returnParameters":{"id":20674,"nodeType":"ParameterList","parameters":[],"src":"16020:0:56"},"scope":21708,"src":"15928:147:56","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":20715,"nodeType":"Block","src":"16310:207:56","statements":[{"assignments":[20690],"declarations":[{"constant":false,"id":20690,"mutability":"mutable","name":"effect","nameLocation":"16327:6:56","nodeType":"VariableDeclaration","scope":20715,"src":"16320:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":20689,"name":"uint48","nodeType":"ElementaryTypeName","src":"16320:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":20691,"nodeType":"VariableDeclarationStatement","src":"16320:13:56"},{"expression":{"id":20707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"baseExpression":{"id":20692,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19892,"src":"16344:8:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$19847_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":20694,"indexExpression":{"id":20693,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20684,"src":"16353:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16344:16:56","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$19847_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":20695,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16361:10:56","memberName":"adminDelay","nodeType":"MemberAccess","referencedDeclaration":19844,"src":"16344:27:56","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},{"id":20696,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20690,"src":"16373:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":20697,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"16343:37:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$37133_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20703,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20686,"src":"16422:8:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[],"expression":{"argumentTypes":[],"id":20704,"name":"minSetback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20025,"src":"16432:10:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint32_$","typeString":"function () view returns (uint32)"}},"id":20705,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16432:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"expression":{"baseExpression":{"id":20698,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19892,"src":"16383:8:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$19847_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":20700,"indexExpression":{"id":20699,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20684,"src":"16392:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"16383:16:56","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$19847_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":20701,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16400:10:56","memberName":"adminDelay","nodeType":"MemberAccess","referencedDeclaration":19844,"src":"16383:27:56","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"id":20702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16411:10:56","memberName":"withUpdate","nodeType":"MemberAccess","referencedDeclaration":37280,"src":"16383:38:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$37133_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_Delay_$37133_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$37133_$","typeString":"function (Time.Delay,uint32,uint32) view returns (Time.Delay,uint48)"}},"id":20706,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16383:62:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$37133_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"src":"16343:102:56","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20708,"nodeType":"ExpressionStatement","src":"16343:102:56"},{"eventCall":{"arguments":[{"id":20710,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20684,"src":"16485:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20711,"name":"newDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20686,"src":"16493:8:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":20712,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20690,"src":"16503:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":20709,"name":"TargetAdminDelayUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21854,"src":"16461:23:56","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint32_$_t_uint48_$returns$__$","typeString":"function (address,uint32,uint48)"}},"id":20713,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16461:49:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20714,"nodeType":"EmitStatement","src":"16456:54:56"}]},"documentation":{"id":20682,"nodeType":"StructuredDocumentation","src":"16081:144:56","text":" @dev Internal version of {setTargetAdminDelay} without access control.\n Emits a {TargetAdminDelayUpdated} event."},"id":20716,"implemented":true,"kind":"function","modifiers":[],"name":"_setTargetAdminDelay","nameLocation":"16239:20:56","nodeType":"FunctionDefinition","parameters":{"id":20687,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20684,"mutability":"mutable","name":"target","nameLocation":"16268:6:56","nodeType":"VariableDeclaration","scope":20716,"src":"16260:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20683,"name":"address","nodeType":"ElementaryTypeName","src":"16260:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20686,"mutability":"mutable","name":"newDelay","nameLocation":"16283:8:56","nodeType":"VariableDeclaration","scope":20716,"src":"16276:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20685,"name":"uint32","nodeType":"ElementaryTypeName","src":"16276:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"16259:33:56"},"returnParameters":{"id":20688,"nodeType":"ParameterList","parameters":[],"src":"16310:0:56"},"scope":21708,"src":"16230:287:56","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[22097],"body":{"id":20731,"nodeType":"Block","src":"16762:49:56","statements":[{"expression":{"arguments":[{"id":20727,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20719,"src":"16789:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20728,"name":"closed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20721,"src":"16797:6:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":20726,"name":"_setTargetClosed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20753,"src":"16772:16:56","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bool_$returns$__$","typeString":"function (address,bool)"}},"id":20729,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16772:32:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20730,"nodeType":"ExpressionStatement","src":"16772:32:56"}]},"documentation":{"id":20717,"nodeType":"StructuredDocumentation","src":"16643:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"167bd395","id":20732,"implemented":true,"kind":"function","modifiers":[{"id":20724,"kind":"modifierInvocation","modifierName":{"id":20723,"name":"onlyAuthorized","nameLocations":["16747:14:56"],"nodeType":"IdentifierPath","referencedDeclaration":19912,"src":"16747:14:56"},"nodeType":"ModifierInvocation","src":"16747:14:56"}],"name":"setTargetClosed","nameLocation":"16687:15:56","nodeType":"FunctionDefinition","parameters":{"id":20722,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20719,"mutability":"mutable","name":"target","nameLocation":"16711:6:56","nodeType":"VariableDeclaration","scope":20732,"src":"16703:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20718,"name":"address","nodeType":"ElementaryTypeName","src":"16703:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20721,"mutability":"mutable","name":"closed","nameLocation":"16724:6:56","nodeType":"VariableDeclaration","scope":20732,"src":"16719:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":20720,"name":"bool","nodeType":"ElementaryTypeName","src":"16719:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"16702:29:56"},"returnParameters":{"id":20725,"nodeType":"ParameterList","parameters":[],"src":"16762:0:56"},"scope":21708,"src":"16678:133:56","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":20752,"nodeType":"Block","src":"17053:92:56","statements":[{"expression":{"id":20745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":20740,"name":"_targets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19892,"src":"17063:8:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$19847_storage_$","typeString":"mapping(address => struct AccessManager.TargetConfig storage ref)"}},"id":20742,"indexExpression":{"id":20741,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20735,"src":"17072:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17063:16:56","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$19847_storage","typeString":"struct AccessManager.TargetConfig storage ref"}},"id":20743,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"17080:6:56","memberName":"closed","nodeType":"MemberAccess","referencedDeclaration":19846,"src":"17063:23:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":20744,"name":"closed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20737,"src":"17089:6:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17063:32:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20746,"nodeType":"ExpressionStatement","src":"17063:32:56"},{"eventCall":{"arguments":[{"id":20748,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20735,"src":"17123:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20749,"name":"closed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20737,"src":"17131:6:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":20747,"name":"TargetClosed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21836,"src":"17110:12:56","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_bool_$returns$__$","typeString":"function (address,bool)"}},"id":20750,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17110:28:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20751,"nodeType":"EmitStatement","src":"17105:33:56"}]},"documentation":{"id":20733,"nodeType":"StructuredDocumentation","src":"16817:159:56","text":" @dev Set the closed flag for a contract. This is an internal setter with no access restrictions.\n Emits a {TargetClosed} event."},"id":20753,"implemented":true,"kind":"function","modifiers":[],"name":"_setTargetClosed","nameLocation":"16990:16:56","nodeType":"FunctionDefinition","parameters":{"id":20738,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20735,"mutability":"mutable","name":"target","nameLocation":"17015:6:56","nodeType":"VariableDeclaration","scope":20753,"src":"17007:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20734,"name":"address","nodeType":"ElementaryTypeName","src":"17007:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20737,"mutability":"mutable","name":"closed","nameLocation":"17028:6:56","nodeType":"VariableDeclaration","scope":20753,"src":"17023:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":20736,"name":"bool","nodeType":"ElementaryTypeName","src":"17023:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"17006:29:56"},"returnParameters":{"id":20739,"nodeType":"ParameterList","parameters":[],"src":"17053:0:56"},"scope":21708,"src":"16981:164:56","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[22105],"body":{"id":20775,"nodeType":"Block","src":"17376:114:56","statements":[{"assignments":[20762],"declarations":[{"constant":false,"id":20762,"mutability":"mutable","name":"timepoint","nameLocation":"17393:9:56","nodeType":"VariableDeclaration","scope":20775,"src":"17386:16:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":20761,"name":"uint48","nodeType":"ElementaryTypeName","src":"17386:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":20767,"initialValue":{"expression":{"baseExpression":{"id":20763,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"17405:10:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$19871_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":20765,"indexExpression":{"id":20764,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20756,"src":"17416:2:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17405:14:56","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$19871_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":20766,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17420:9:56","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":19868,"src":"17405:24:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"17386:43:56"},{"expression":{"condition":{"arguments":[{"id":20769,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20762,"src":"17457:9:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":20768,"name":"_isExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21664,"src":"17446:10:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint48_$returns$_t_bool_$","typeString":"function (uint48) view returns (bool)"}},"id":20770,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17446:21:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":20772,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20762,"src":"17474:9:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":20773,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"17446:37:56","trueExpression":{"hexValue":"30","id":20771,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17470:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":20760,"id":20774,"nodeType":"Return","src":"17439:44:56"}]},"documentation":{"id":20754,"nodeType":"StructuredDocumentation","src":"17271:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"3adc277a","id":20776,"implemented":true,"kind":"function","modifiers":[],"name":"getSchedule","nameLocation":"17315:11:56","nodeType":"FunctionDefinition","parameters":{"id":20757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20756,"mutability":"mutable","name":"id","nameLocation":"17335:2:56","nodeType":"VariableDeclaration","scope":20776,"src":"17327:10:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":20755,"name":"bytes32","nodeType":"ElementaryTypeName","src":"17327:7:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"17326:12:56"},"returnParameters":{"id":20760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20759,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20776,"src":"17368:6:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":20758,"name":"uint48","nodeType":"ElementaryTypeName","src":"17368:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"17367:8:56"},"scope":21708,"src":"17306:184:56","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22113],"body":{"id":20789,"nodeType":"Block","src":"17598:44:56","statements":[{"expression":{"expression":{"baseExpression":{"id":20784,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"17615:10:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$19871_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":20786,"indexExpression":{"id":20785,"name":"id","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20779,"src":"17626:2:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17615:14:56","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$19871_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":20787,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17630:5:56","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":19870,"src":"17615:20:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":20783,"id":20788,"nodeType":"Return","src":"17608:27:56"}]},"documentation":{"id":20777,"nodeType":"StructuredDocumentation","src":"17496:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"4136a33c","id":20790,"implemented":true,"kind":"function","modifiers":[],"name":"getNonce","nameLocation":"17540:8:56","nodeType":"FunctionDefinition","parameters":{"id":20780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20779,"mutability":"mutable","name":"id","nameLocation":"17557:2:56","nodeType":"VariableDeclaration","scope":20790,"src":"17549:10:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":20778,"name":"bytes32","nodeType":"ElementaryTypeName","src":"17549:7:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"17548:12:56"},"returnParameters":{"id":20783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20782,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20790,"src":"17590:6:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20781,"name":"uint32","nodeType":"ElementaryTypeName","src":"17590:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"17589:8:56"},"scope":21708,"src":"17531:111:56","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22127],"body":{"id":20903,"nodeType":"Block","src":"17840:1216:56","statements":[{"assignments":[20805],"declarations":[{"constant":false,"id":20805,"mutability":"mutable","name":"caller","nameLocation":"17858:6:56","nodeType":"VariableDeclaration","scope":20903,"src":"17850:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20804,"name":"address","nodeType":"ElementaryTypeName","src":"17850:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":20808,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":20806,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"17867:10:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":20807,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17867:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"17850:29:56"},{"assignments":[null,20810],"declarations":[null,{"constant":false,"id":20810,"mutability":"mutable","name":"setback","nameLocation":"17980:7:56","nodeType":"VariableDeclaration","scope":20903,"src":"17973:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20809,"name":"uint32","nodeType":"ElementaryTypeName","src":"17973:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":20816,"initialValue":{"arguments":[{"id":20812,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20805,"src":"18008:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20813,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20793,"src":"18016:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20814,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20795,"src":"18024:4:56","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":20811,"name":"_canCallExtended","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21526,"src":"17991:16:56","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":20815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17991:38:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"17970:59:56"},{"assignments":[20818],"declarations":[{"constant":false,"id":20818,"mutability":"mutable","name":"minWhen","nameLocation":"18047:7:56","nodeType":"VariableDeclaration","scope":20903,"src":"18040:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":20817,"name":"uint48","nodeType":"ElementaryTypeName","src":"18040:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":20824,"initialValue":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":20823,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":20819,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37370,"src":"18057:4:56","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$37370_$","typeString":"type(library Time)"}},"id":20820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18062:9:56","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":37118,"src":"18057:14:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":20821,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18057:16:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":20822,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20810,"src":"18076:7:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"18057:26:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"18040:43:56"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":20836,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":20827,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20825,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20810,"src":"18190:7:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":20826,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18201:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18190:12:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":20834,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":20830,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20828,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20797,"src":"18207:4:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":20829,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18214:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18207:8:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":20833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20831,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20797,"src":"18219:4:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":20832,"name":"minWhen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20818,"src":"18226:7:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"18219:14:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"18207:26:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":20835,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"18206:28:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"18190:44:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20846,"nodeType":"IfStatement","src":"18186:149:56","trueBody":{"id":20845,"nodeType":"Block","src":"18236:99:56","statements":[{"errorCall":{"arguments":[{"id":20838,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20805,"src":"18287:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20839,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20793,"src":"18295:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":20841,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20795,"src":"18318:4:56","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":20840,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21681,"src":"18303:14:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":20842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18303:20:56","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":20837,"name":"AccessManagerUnauthorizedCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21890,"src":"18257:29:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$_t_bytes4_$returns$_t_error_$","typeString":"function (address,address,bytes4) pure returns (error)"}},"id":20843,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18257:67:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20844,"nodeType":"RevertStatement","src":"18250:74:56"}]}},{"expression":{"id":20856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20847,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20797,"src":"18393:4:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":20852,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20797,"src":"18416:4:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":20853,"name":"minWhen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20818,"src":"18422:7:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"expression":{"id":20850,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"18407:4:56","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":20851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18412:3:56","memberName":"max","nodeType":"MemberAccess","referencedDeclaration":33853,"src":"18407:8:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":20854,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18407:23:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20849,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18400:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":20848,"name":"uint48","nodeType":"ElementaryTypeName","src":"18400:6:56","typeDescriptions":{}}},"id":20855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18400:31:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"18393:38:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":20857,"nodeType":"ExpressionStatement","src":"18393:38:56"},{"expression":{"id":20864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20858,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20800,"src":"18537:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20860,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20805,"src":"18565:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20861,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20793,"src":"18573:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20862,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20795,"src":"18581:4:56","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":20859,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21256,"src":"18551:13:56","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":20863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18551:35:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"18537:49:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":20865,"nodeType":"ExpressionStatement","src":"18537:49:56"},{"expression":{"arguments":[{"id":20867,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20800,"src":"18616:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":20866,"name":"_checkNotScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20932,"src":"18597:18:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$__$","typeString":"function (bytes32) view"}},"id":20868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18597:31:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20869,"nodeType":"ExpressionStatement","src":"18597:31:56"},{"id":20879,"nodeType":"UncheckedBlock","src":"18639:155:56","statements":[{"expression":{"id":20877,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20870,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20802,"src":"18742:5:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":20876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":20871,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"18750:10:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$19871_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":20873,"indexExpression":{"id":20872,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20800,"src":"18761:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18750:23:56","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$19871_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":20874,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18774:5:56","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":19870,"src":"18750:29:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":20875,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18782:1:56","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"18750:33:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"18742:41:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":20878,"nodeType":"ExpressionStatement","src":"18742:41:56"}]},{"expression":{"id":20885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":20880,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"18803:10:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$19871_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":20882,"indexExpression":{"id":20881,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20800,"src":"18814:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18803:23:56","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$19871_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":20883,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"18827:9:56","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":19868,"src":"18803:33:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":20884,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20797,"src":"18839:4:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"18803:40:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":20886,"nodeType":"ExpressionStatement","src":"18803:40:56"},{"expression":{"id":20892,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":20887,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"18853:10:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$19871_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":20889,"indexExpression":{"id":20888,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20800,"src":"18864:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18853:23:56","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$19871_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":20890,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"18877:5:56","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":19870,"src":"18853:29:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":20891,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20802,"src":"18885:5:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"18853:37:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":20893,"nodeType":"ExpressionStatement","src":"18853:37:56"},{"eventCall":{"arguments":[{"id":20895,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20800,"src":"18924:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":20896,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20802,"src":"18937:5:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":20897,"name":"when","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20797,"src":"18944:4:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},{"id":20898,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20805,"src":"18950:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20899,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20793,"src":"18958:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20900,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20795,"src":"18966:4:56","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":20894,"name":"OperationScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21765,"src":"18905:18:56","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":20901,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18905:66:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":20902,"nodeType":"EmitStatement","src":"18900:71:56"}]},"documentation":{"id":20791,"nodeType":"StructuredDocumentation","src":"17648:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"f801a698","id":20904,"implemented":true,"kind":"function","modifiers":[],"name":"schedule","nameLocation":"17692:8:56","nodeType":"FunctionDefinition","parameters":{"id":20798,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20793,"mutability":"mutable","name":"target","nameLocation":"17718:6:56","nodeType":"VariableDeclaration","scope":20904,"src":"17710:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20792,"name":"address","nodeType":"ElementaryTypeName","src":"17710:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20795,"mutability":"mutable","name":"data","nameLocation":"17749:4:56","nodeType":"VariableDeclaration","scope":20904,"src":"17734:19:56","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":20794,"name":"bytes","nodeType":"ElementaryTypeName","src":"17734:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":20797,"mutability":"mutable","name":"when","nameLocation":"17770:4:56","nodeType":"VariableDeclaration","scope":20904,"src":"17763:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":20796,"name":"uint48","nodeType":"ElementaryTypeName","src":"17763:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"17700:80:56"},"returnParameters":{"id":20803,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20800,"mutability":"mutable","name":"operationId","nameLocation":"17813:11:56","nodeType":"VariableDeclaration","scope":20904,"src":"17805:19:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":20799,"name":"bytes32","nodeType":"ElementaryTypeName","src":"17805:7:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":20802,"mutability":"mutable","name":"nonce","nameLocation":"17833:5:56","nodeType":"VariableDeclaration","scope":20904,"src":"17826:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20801,"name":"uint32","nodeType":"ElementaryTypeName","src":"17826:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"17804:35:56"},"scope":21708,"src":"17683:1373:56","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":20931,"nodeType":"Block","src":"19312:210:56","statements":[{"assignments":[20911],"declarations":[{"constant":false,"id":20911,"mutability":"mutable","name":"prevTimepoint","nameLocation":"19329:13:56","nodeType":"VariableDeclaration","scope":20931,"src":"19322:20:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":20910,"name":"uint48","nodeType":"ElementaryTypeName","src":"19322:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":20916,"initialValue":{"expression":{"baseExpression":{"id":20912,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"19345:10:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$19871_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":20914,"indexExpression":{"id":20913,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20907,"src":"19356:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19345:23:56","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$19871_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":20915,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19369:9:56","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":19868,"src":"19345:33:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"19322:56:56"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":20924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":20919,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20917,"name":"prevTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20911,"src":"19392:13:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":20918,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19409:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"19392:18:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":20923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"19414:26:56","subExpression":{"arguments":[{"id":20921,"name":"prevTimepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20911,"src":"19426:13:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":20920,"name":"_isExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21664,"src":"19415:10:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint48_$returns$_t_bool_$","typeString":"function (uint48) view returns (bool)"}},"id":20922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19415:25:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"19392:48:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20930,"nodeType":"IfStatement","src":"19388:128:56","trueBody":{"id":20929,"nodeType":"Block","src":"19442:74:56","statements":[{"errorCall":{"arguments":[{"id":20926,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20907,"src":"19493:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":20925,"name":"AccessManagerAlreadyScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21858,"src":"19463:29:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":20927,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19463:42:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20928,"nodeType":"RevertStatement","src":"19456:49:56"}]}}]},"documentation":{"id":20905,"nodeType":"StructuredDocumentation","src":"19062:183:56","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":20932,"implemented":true,"kind":"function","modifiers":[],"name":"_checkNotScheduled","nameLocation":"19259:18:56","nodeType":"FunctionDefinition","parameters":{"id":20908,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20907,"mutability":"mutable","name":"operationId","nameLocation":"19286:11:56","nodeType":"VariableDeclaration","scope":20932,"src":"19278:19:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":20906,"name":"bytes32","nodeType":"ElementaryTypeName","src":"19278:7:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"19277:21:56"},"returnParameters":{"id":20909,"nodeType":"ParameterList","parameters":[],"src":"19312:0:56"},"scope":21708,"src":"19250:272:56","stateMutability":"view","virtual":false,"visibility":"private"},{"baseFunctions":[22137],"body":{"id":21029,"nodeType":"Block","src":"19886:1144:56","statements":[{"assignments":[20943],"declarations":[{"constant":false,"id":20943,"mutability":"mutable","name":"caller","nameLocation":"19904:6:56","nodeType":"VariableDeclaration","scope":21029,"src":"19896:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20942,"name":"address","nodeType":"ElementaryTypeName","src":"19896:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":20946,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":20944,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"19913:10:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":20945,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19913:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"19896:29:56"},{"assignments":[20948,20950],"declarations":[{"constant":false,"id":20948,"mutability":"mutable","name":"immediate","nameLocation":"20022:9:56","nodeType":"VariableDeclaration","scope":21029,"src":"20017:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":20947,"name":"bool","nodeType":"ElementaryTypeName","src":"20017:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":20950,"mutability":"mutable","name":"setback","nameLocation":"20040:7:56","nodeType":"VariableDeclaration","scope":21029,"src":"20033:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20949,"name":"uint32","nodeType":"ElementaryTypeName","src":"20033:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":20956,"initialValue":{"arguments":[{"id":20952,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20943,"src":"20068:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20953,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20935,"src":"20076:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20954,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20937,"src":"20084:4:56","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":20951,"name":"_canCallExtended","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21526,"src":"20051:16:56","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":20955,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20051:38:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"20016:73:56"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":20962,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"20149:10:56","subExpression":{"id":20957,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20948,"src":"20150:9:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":20961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20959,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20950,"src":"20163:7:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":20960,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20174:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20163:12:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"20149:26:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20972,"nodeType":"IfStatement","src":"20145:131:56","trueBody":{"id":20971,"nodeType":"Block","src":"20177:99:56","statements":[{"errorCall":{"arguments":[{"id":20964,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20943,"src":"20228:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20965,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20935,"src":"20236:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":20967,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20937,"src":"20259:4:56","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":20966,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21681,"src":"20244:14:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":20968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20244:20:56","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":20963,"name":"AccessManagerUnauthorizedCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21890,"src":"20198:29:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$_t_bytes4_$returns$_t_error_$","typeString":"function (address,address,bytes4) pure returns (error)"}},"id":20969,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20198:67:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20970,"nodeType":"RevertStatement","src":"20191:74:56"}]}},{"assignments":[20974],"declarations":[{"constant":false,"id":20974,"mutability":"mutable","name":"operationId","nameLocation":"20294:11:56","nodeType":"VariableDeclaration","scope":21029,"src":"20286:19:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":20973,"name":"bytes32","nodeType":"ElementaryTypeName","src":"20286:7:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":20980,"initialValue":{"arguments":[{"id":20976,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20943,"src":"20322:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20977,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20935,"src":"20330:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":20978,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20937,"src":"20338:4:56","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":20975,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21256,"src":"20308:13:56","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":20979,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20308:35:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"20286:57:56"},{"assignments":[20982],"declarations":[{"constant":false,"id":20982,"mutability":"mutable","name":"nonce","nameLocation":"20360:5:56","nodeType":"VariableDeclaration","scope":21029,"src":"20353:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20981,"name":"uint32","nodeType":"ElementaryTypeName","src":"20353:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":20983,"nodeType":"VariableDeclarationStatement","src":"20353:12:56"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":20992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":20986,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20984,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20950,"src":"20545:7:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":20985,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20556:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20545:12:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":20991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":20988,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20974,"src":"20573:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":20987,"name":"getSchedule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20776,"src":"20561:11:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_uint48_$","typeString":"function (bytes32) view returns (uint48)"}},"id":20989,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20561:24:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":20990,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20589:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20561:29:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"20545:45:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21000,"nodeType":"IfStatement","src":"20541:116:56","trueBody":{"id":20999,"nodeType":"Block","src":"20592:65:56","statements":[{"expression":{"id":20997,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20993,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20982,"src":"20606:5:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20995,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20974,"src":"20634:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":20994,"name":"_consumeScheduledOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21234,"src":"20614:19:56","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$_t_uint32_$","typeString":"function (bytes32) returns (uint32)"}},"id":20996,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20614:32:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"20606:40:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":20998,"nodeType":"ExpressionStatement","src":"20606:40:56"}]}},{"assignments":[21002],"declarations":[{"constant":false,"id":21002,"mutability":"mutable","name":"executionIdBefore","nameLocation":"20729:17:56","nodeType":"VariableDeclaration","scope":21029,"src":"20721:25:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":21001,"name":"bytes32","nodeType":"ElementaryTypeName","src":"20721:7:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":21004,"initialValue":{"id":21003,"name":"_executionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19904,"src":"20749:12:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"20721:40:56"},{"expression":{"id":21012,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21005,"name":"_executionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19904,"src":"20771:12:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":21007,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20935,"src":"20803:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":21009,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20937,"src":"20826:4:56","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":21008,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21681,"src":"20811:14:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":21010,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20811:20:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":21006,"name":"_hashExecutionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21707,"src":"20786:16:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_bytes4_$returns$_t_bytes32_$","typeString":"function (address,bytes4) pure returns (bytes32)"}},"id":21011,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20786:46:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"20771:61:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":21013,"nodeType":"ExpressionStatement","src":"20771:61:56"},{"expression":{"arguments":[{"id":21017,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20935,"src":"20897:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21018,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20937,"src":"20905:4:56","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"expression":{"id":21019,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"20911:3:56","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":21020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20915:5:56","memberName":"value","nodeType":"MemberAccess","src":"20911:9:56","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":21014,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26046,"src":"20867:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$26046_$","typeString":"type(library Address)"}},"id":21016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20875:21:56","memberName":"functionCallWithValue","nodeType":"MemberAccess","referencedDeclaration":25828,"src":"20867:29:56","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":21021,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20867:54:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":21022,"nodeType":"ExpressionStatement","src":"20867:54:56"},{"expression":{"id":21025,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21023,"name":"_executionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19904,"src":"20968:12:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":21024,"name":"executionIdBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21002,"src":"20983:17:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"20968:32:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":21026,"nodeType":"ExpressionStatement","src":"20968:32:56"},{"expression":{"id":21027,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20982,"src":"21018:5:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":20941,"id":21028,"nodeType":"Return","src":"21011:12:56"}]},"documentation":{"id":20933,"nodeType":"StructuredDocumentation","src":"19528:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"1cff79cd","id":21030,"implemented":true,"kind":"function","modifiers":[],"name":"execute","nameLocation":"19801:7:56","nodeType":"FunctionDefinition","parameters":{"id":20938,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20935,"mutability":"mutable","name":"target","nameLocation":"19817:6:56","nodeType":"VariableDeclaration","scope":21030,"src":"19809:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":20934,"name":"address","nodeType":"ElementaryTypeName","src":"19809:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20937,"mutability":"mutable","name":"data","nameLocation":"19840:4:56","nodeType":"VariableDeclaration","scope":21030,"src":"19825:19:56","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":20936,"name":"bytes","nodeType":"ElementaryTypeName","src":"19825:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"19808:37:56"},"returnParameters":{"id":20941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20940,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21030,"src":"19878:6:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":20939,"name":"uint32","nodeType":"ElementaryTypeName","src":"19878:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"19877:8:56"},"scope":21708,"src":"19792:1238:56","stateMutability":"payable","virtual":true,"visibility":"public"},{"baseFunctions":[22149],"body":{"id":21131,"nodeType":"Block","src":"21172:1007:56","statements":[{"assignments":[21043],"declarations":[{"constant":false,"id":21043,"mutability":"mutable","name":"msgsender","nameLocation":"21190:9:56","nodeType":"VariableDeclaration","scope":21131,"src":"21182:17:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21042,"name":"address","nodeType":"ElementaryTypeName","src":"21182:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":21046,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":21044,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"21202:10:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":21045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21202:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"21182:32:56"},{"assignments":[21048],"declarations":[{"constant":false,"id":21048,"mutability":"mutable","name":"selector","nameLocation":"21231:8:56","nodeType":"VariableDeclaration","scope":21131,"src":"21224:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":21047,"name":"bytes4","nodeType":"ElementaryTypeName","src":"21224:6:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":21052,"initialValue":{"arguments":[{"id":21050,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21037,"src":"21257:4:56","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":21049,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21681,"src":"21242:14:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":21051,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21242:20:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"21224:38:56"},{"assignments":[21054],"declarations":[{"constant":false,"id":21054,"mutability":"mutable","name":"operationId","nameLocation":"21281:11:56","nodeType":"VariableDeclaration","scope":21131,"src":"21273:19:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":21053,"name":"bytes32","nodeType":"ElementaryTypeName","src":"21273:7:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":21060,"initialValue":{"arguments":[{"id":21056,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21033,"src":"21309:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21057,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21035,"src":"21317:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21058,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21037,"src":"21325:4:56","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":21055,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21256,"src":"21295:13:56","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":21059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21295:35:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"21273:57:56"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":21066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":21061,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"21344:10:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$19871_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":21063,"indexExpression":{"id":21062,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21054,"src":"21355:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21344:23:56","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$19871_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":21064,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21368:9:56","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":19868,"src":"21344:33:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":21065,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21381:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"21344:38:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":21074,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21072,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21033,"src":"21464:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":21073,"name":"msgsender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21043,"src":"21474:9:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"21464:19:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21109,"nodeType":"IfStatement","src":"21460:494:56","trueBody":{"id":21108,"nodeType":"Block","src":"21485:469:56","statements":[{"assignments":[21076,null],"declarations":[{"constant":false,"id":21076,"mutability":"mutable","name":"isAdmin","nameLocation":"21638:7:56","nodeType":"VariableDeclaration","scope":21108,"src":"21633:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":21075,"name":"bool","nodeType":"ElementaryTypeName","src":"21633:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":21081,"initialValue":{"arguments":[{"id":21078,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19879,"src":"21659:10:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":21079,"name":"msgsender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21043,"src":"21671:9:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":21077,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20209,"src":"21651:7:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_bool_$_t_uint32_$","typeString":"function (uint64,address) view returns (bool,uint32)"}},"id":21080,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21651:30:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"21632:49:56"},{"assignments":[21083,null],"declarations":[{"constant":false,"id":21083,"mutability":"mutable","name":"isGuardian","nameLocation":"21701:10:56","nodeType":"VariableDeclaration","scope":21108,"src":"21696:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":21082,"name":"bool","nodeType":"ElementaryTypeName","src":"21696:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":21093,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":21087,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21035,"src":"21763:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21088,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21048,"src":"21771:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":21086,"name":"getTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20057,"src":"21741:21:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_uint64_$","typeString":"function (address,bytes4) view returns (uint64)"}},"id":21089,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21741:39:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":21085,"name":"getRoleGuardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20101,"src":"21725:15:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$returns$_t_uint64_$","typeString":"function (uint64) view returns (uint64)"}},"id":21090,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21725:56:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":21091,"name":"msgsender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21043,"src":"21783:9:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":21084,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20209,"src":"21717:7:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_bool_$_t_uint32_$","typeString":"function (uint64,address) view returns (bool,uint32)"}},"id":21092,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21717:76:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"21695:98:56"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"21811:8:56","subExpression":{"id":21094,"name":"isAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21076,"src":"21812:7:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":21097,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"21823:11:56","subExpression":{"id":21096,"name":"isGuardian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21083,"src":"21824:10:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"21811:23:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21107,"nodeType":"IfStatement","src":"21807:137:56","trueBody":{"id":21106,"nodeType":"Block","src":"21836:108:56","statements":[{"errorCall":{"arguments":[{"id":21100,"name":"msgsender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21043,"src":"21893:9:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21101,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21033,"src":"21904:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21102,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21035,"src":"21912:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21103,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21048,"src":"21920:8:56","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":21099,"name":"AccessManagerUnauthorizedCancel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21904,"src":"21861:31:56","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":21104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21861:68:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21105,"nodeType":"RevertStatement","src":"21854:75:56"}]}}]}},"id":21110,"nodeType":"IfStatement","src":"21340:614:56","trueBody":{"id":21071,"nodeType":"Block","src":"21384:70:56","statements":[{"errorCall":{"arguments":[{"id":21068,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21054,"src":"21431:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":21067,"name":"AccessManagerNotScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21862,"src":"21405:25:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":21069,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21405:38:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21070,"nodeType":"RevertStatement","src":"21398:45:56"}]}},{"expression":{"id":21115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"21964:40:56","subExpression":{"expression":{"baseExpression":{"id":21111,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"21971:10:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$19871_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":21113,"indexExpression":{"id":21112,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21054,"src":"21982:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"21971:23:56","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$19871_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":21114,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"21995:9:56","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":19868,"src":"21971:33:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21116,"nodeType":"ExpressionStatement","src":"21964:40:56"},{"assignments":[21118],"declarations":[{"constant":false,"id":21118,"mutability":"mutable","name":"nonce","nameLocation":"22060:5:56","nodeType":"VariableDeclaration","scope":21131,"src":"22053:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21117,"name":"uint32","nodeType":"ElementaryTypeName","src":"22053:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":21123,"initialValue":{"expression":{"baseExpression":{"id":21119,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"22068:10:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$19871_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":21121,"indexExpression":{"id":21120,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21054,"src":"22079:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22068:23:56","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$19871_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":21122,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22092:5:56","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":19870,"src":"22068:29:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"22053:44:56"},{"eventCall":{"arguments":[{"id":21125,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21054,"src":"22130:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":21126,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21118,"src":"22143:5:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":21124,"name":"OperationCanceled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21779,"src":"22112:17:56","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint32_$returns$__$","typeString":"function (bytes32,uint32)"}},"id":21127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22112:37:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21128,"nodeType":"EmitStatement","src":"22107:42:56"},{"expression":{"id":21129,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21118,"src":"22167:5:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":21041,"id":21130,"nodeType":"Return","src":"22160:12:56"}]},"documentation":{"id":21031,"nodeType":"StructuredDocumentation","src":"21036:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"d6bb62c6","id":21132,"implemented":true,"kind":"function","modifiers":[],"name":"cancel","nameLocation":"21080:6:56","nodeType":"FunctionDefinition","parameters":{"id":21038,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21033,"mutability":"mutable","name":"caller","nameLocation":"21095:6:56","nodeType":"VariableDeclaration","scope":21132,"src":"21087:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21032,"name":"address","nodeType":"ElementaryTypeName","src":"21087:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21035,"mutability":"mutable","name":"target","nameLocation":"21111:6:56","nodeType":"VariableDeclaration","scope":21132,"src":"21103:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21034,"name":"address","nodeType":"ElementaryTypeName","src":"21103:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21037,"mutability":"mutable","name":"data","nameLocation":"21134:4:56","nodeType":"VariableDeclaration","scope":21132,"src":"21119:19:56","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":21036,"name":"bytes","nodeType":"ElementaryTypeName","src":"21119:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"21086:53:56"},"returnParameters":{"id":21041,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21040,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21132,"src":"21164:6:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21039,"name":"uint32","nodeType":"ElementaryTypeName","src":"21164:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"21163:8:56"},"scope":21708,"src":"21071:1108:56","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[22157],"body":{"id":21168,"nodeType":"Block","src":"22300:296:56","statements":[{"assignments":[21141],"declarations":[{"constant":false,"id":21141,"mutability":"mutable","name":"target","nameLocation":"22318:6:56","nodeType":"VariableDeclaration","scope":21168,"src":"22310:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21140,"name":"address","nodeType":"ElementaryTypeName","src":"22310:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":21144,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":21142,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"22327:10:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":21143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22327:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"22310:29:56"},{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":21153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":21146,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21141,"src":"22368:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21145,"name":"IAccessManaged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21748,"src":"22353:14:56","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManaged_$21748_$","typeString":"type(contract IAccessManaged)"}},"id":21147,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22353:22:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManaged_$21748","typeString":"contract IAccessManaged"}},"id":21148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22376:22:56","memberName":"isConsumingScheduledOp","nodeType":"MemberAccess","referencedDeclaration":21747,"src":"22353:45:56","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_bytes4_$","typeString":"function () view external returns (bytes4)"}},"id":21149,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22353:47:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"expression":{"id":21150,"name":"IAccessManaged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21748,"src":"22404:14:56","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManaged_$21748_$","typeString":"type(contract IAccessManaged)"}},"id":21151,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22419:22:56","memberName":"isConsumingScheduledOp","nodeType":"MemberAccess","referencedDeclaration":21747,"src":"22404:37:56","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$__$returns$_t_bytes4_$","typeString":"function IAccessManaged.isConsumingScheduledOp() view returns (bytes4)"}},"id":21152,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22442:8:56","memberName":"selector","nodeType":"MemberAccess","src":"22404:46:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"22353:97:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21159,"nodeType":"IfStatement","src":"22349:175:56","trueBody":{"id":21158,"nodeType":"Block","src":"22452:72:56","statements":[{"errorCall":{"arguments":[{"id":21155,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21141,"src":"22506:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21154,"name":"AccessManagerUnauthorizedConsume","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21894,"src":"22473:32:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":21156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22473:40:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21157,"nodeType":"RevertStatement","src":"22466:47:56"}]}},{"expression":{"arguments":[{"arguments":[{"id":21162,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21135,"src":"22567:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21163,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21141,"src":"22575:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21164,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21137,"src":"22583:4:56","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":21161,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21256,"src":"22553:13:56","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":21165,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22553:35:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":21160,"name":"_consumeScheduledOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21234,"src":"22533:19:56","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$_t_uint32_$","typeString":"function (bytes32) returns (uint32)"}},"id":21166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22533:56:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":21167,"nodeType":"ExpressionStatement","src":"22533:56:56"}]},"documentation":{"id":21133,"nodeType":"StructuredDocumentation","src":"22185:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"94c7d7ee","id":21169,"implemented":true,"kind":"function","modifiers":[],"name":"consumeScheduledOp","nameLocation":"22229:18:56","nodeType":"FunctionDefinition","parameters":{"id":21138,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21135,"mutability":"mutable","name":"caller","nameLocation":"22256:6:56","nodeType":"VariableDeclaration","scope":21169,"src":"22248:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21134,"name":"address","nodeType":"ElementaryTypeName","src":"22248:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21137,"mutability":"mutable","name":"data","nameLocation":"22279:4:56","nodeType":"VariableDeclaration","scope":21169,"src":"22264:19:56","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":21136,"name":"bytes","nodeType":"ElementaryTypeName","src":"22264:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"22247:37:56"},"returnParameters":{"id":21139,"nodeType":"ParameterList","parameters":[],"src":"22300:0:56"},"scope":21708,"src":"22220:376:56","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":21233,"nodeType":"Block","src":"22870:592:56","statements":[{"assignments":[21178],"declarations":[{"constant":false,"id":21178,"mutability":"mutable","name":"timepoint","nameLocation":"22887:9:56","nodeType":"VariableDeclaration","scope":21233,"src":"22880:16:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":21177,"name":"uint48","nodeType":"ElementaryTypeName","src":"22880:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"id":21183,"initialValue":{"expression":{"baseExpression":{"id":21179,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"22899:10:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$19871_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":21181,"indexExpression":{"id":21180,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21172,"src":"22910:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22899:23:56","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$19871_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":21182,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22923:9:56","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":19868,"src":"22899:33:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"VariableDeclarationStatement","src":"22880:52:56"},{"assignments":[21185],"declarations":[{"constant":false,"id":21185,"mutability":"mutable","name":"nonce","nameLocation":"22949:5:56","nodeType":"VariableDeclaration","scope":21233,"src":"22942:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21184,"name":"uint32","nodeType":"ElementaryTypeName","src":"22942:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":21190,"initialValue":{"expression":{"baseExpression":{"id":21186,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"22957:10:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$19871_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":21188,"indexExpression":{"id":21187,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21172,"src":"22968:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22957:23:56","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$19871_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":21189,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22981:5:56","memberName":"nonce","nodeType":"MemberAccess","referencedDeclaration":19870,"src":"22957:29:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"22942:44:56"},{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":21193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21191,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21178,"src":"23001:9:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":21192,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23014:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23001:14:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":21203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21199,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21178,"src":"23097:9:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":21200,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37370,"src":"23109:4:56","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$37370_$","typeString":"type(library Time)"}},"id":21201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23114:9:56","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":37118,"src":"23109:14:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":21202,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23109:16:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"23097:28:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"arguments":[{"id":21210,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21178,"src":"23214:9:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":21209,"name":"_isExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21664,"src":"23203:10:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint48_$returns$_t_bool_$","typeString":"function (uint48) view returns (bool)"}},"id":21211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23203:21:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21217,"nodeType":"IfStatement","src":"23199:92:56","trueBody":{"id":21216,"nodeType":"Block","src":"23226:65:56","statements":[{"errorCall":{"arguments":[{"id":21213,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21172,"src":"23268:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":21212,"name":"AccessManagerExpired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21870,"src":"23247:20:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":21214,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23247:33:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21215,"nodeType":"RevertStatement","src":"23240:40:56"}]}},"id":21218,"nodeType":"IfStatement","src":"23093:198:56","trueBody":{"id":21208,"nodeType":"Block","src":"23127:66:56","statements":[{"errorCall":{"arguments":[{"id":21205,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21172,"src":"23170:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":21204,"name":"AccessManagerNotReady","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21866,"src":"23148:21:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":21206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23148:34:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21207,"nodeType":"RevertStatement","src":"23141:41:56"}]}},"id":21219,"nodeType":"IfStatement","src":"22997:294:56","trueBody":{"id":21198,"nodeType":"Block","src":"23017:70:56","statements":[{"errorCall":{"arguments":[{"id":21195,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21172,"src":"23064:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":21194,"name":"AccessManagerNotScheduled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21862,"src":"23038:25:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":21196,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23038:38:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21197,"nodeType":"RevertStatement","src":"23031:45:56"}]}},{"expression":{"id":21224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"23301:40:56","subExpression":{"expression":{"baseExpression":{"id":21220,"name":"_schedules","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19902,"src":"23308:10:56","typeDescriptions":{"typeIdentifier":"t_mapping$_t_bytes32_$_t_struct$_Schedule_$19871_storage_$","typeString":"mapping(bytes32 => struct AccessManager.Schedule storage ref)"}},"id":21222,"indexExpression":{"id":21221,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21172,"src":"23319:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23308:23:56","typeDescriptions":{"typeIdentifier":"t_struct$_Schedule_$19871_storage","typeString":"struct AccessManager.Schedule storage ref"}},"id":21223,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"23332:9:56","memberName":"timepoint","nodeType":"MemberAccess","referencedDeclaration":19868,"src":"23308:33:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21225,"nodeType":"ExpressionStatement","src":"23301:40:56"},{"eventCall":{"arguments":[{"id":21227,"name":"operationId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21172,"src":"23413:11:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":21228,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21185,"src":"23426:5:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":21226,"name":"OperationExecuted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21772,"src":"23395:17:56","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_bytes32_$_t_uint32_$returns$__$","typeString":"function (bytes32,uint32)"}},"id":21229,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23395:37:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21230,"nodeType":"EmitStatement","src":"23390:42:56"},{"expression":{"id":21231,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21185,"src":"23450:5:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":21176,"id":21232,"nodeType":"Return","src":"23443:12:56"}]},"documentation":{"id":21170,"nodeType":"StructuredDocumentation","src":"22602:179:56","text":" @dev Internal variant of {consumeScheduledOp} that operates on bytes32 operationId.\n Returns the nonce of the scheduled operation that is consumed."},"id":21234,"implemented":true,"kind":"function","modifiers":[],"name":"_consumeScheduledOp","nameLocation":"22795:19:56","nodeType":"FunctionDefinition","parameters":{"id":21173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21172,"mutability":"mutable","name":"operationId","nameLocation":"22823:11:56","nodeType":"VariableDeclaration","scope":21234,"src":"22815:19:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":21171,"name":"bytes32","nodeType":"ElementaryTypeName","src":"22815:7:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"22814:21:56"},"returnParameters":{"id":21176,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21175,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21234,"src":"22862:6:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21174,"name":"uint32","nodeType":"ElementaryTypeName","src":"22862:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"22861:8:56"},"scope":21708,"src":"22786:676:56","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"baseFunctions":[22169],"body":{"id":21255,"nodeType":"Block","src":"23617:67:56","statements":[{"expression":{"arguments":[{"arguments":[{"id":21249,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21237,"src":"23655:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21250,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21239,"src":"23663:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21251,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21241,"src":"23671:4:56","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":21247,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"23644:3:56","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":21248,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"23648:6:56","memberName":"encode","nodeType":"MemberAccess","src":"23644:10:56","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":21252,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23644:32:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":21246,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"23634:9:56","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":21253,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23634:43:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":21245,"id":21254,"nodeType":"Return","src":"23627:50:56"}]},"documentation":{"id":21235,"nodeType":"StructuredDocumentation","src":"23468:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"abd9bd2a","id":21256,"implemented":true,"kind":"function","modifiers":[],"name":"hashOperation","nameLocation":"23512:13:56","nodeType":"FunctionDefinition","parameters":{"id":21242,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21237,"mutability":"mutable","name":"caller","nameLocation":"23534:6:56","nodeType":"VariableDeclaration","scope":21256,"src":"23526:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21236,"name":"address","nodeType":"ElementaryTypeName","src":"23526:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21239,"mutability":"mutable","name":"target","nameLocation":"23550:6:56","nodeType":"VariableDeclaration","scope":21256,"src":"23542:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21238,"name":"address","nodeType":"ElementaryTypeName","src":"23542:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21241,"mutability":"mutable","name":"data","nameLocation":"23573:4:56","nodeType":"VariableDeclaration","scope":21256,"src":"23558:19:56","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":21240,"name":"bytes","nodeType":"ElementaryTypeName","src":"23558:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"23525:53:56"},"returnParameters":{"id":21245,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21244,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21256,"src":"23608:7:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":21243,"name":"bytes32","nodeType":"ElementaryTypeName","src":"23608:7:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"23607:9:56"},"scope":21708,"src":"23503:181:56","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22177],"body":{"id":21273,"nodeType":"Block","src":"23938:66:56","statements":[{"expression":{"arguments":[{"id":21270,"name":"newAuthority","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21261,"src":"23984:12:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"id":21267,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21259,"src":"23963:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21266,"name":"IAccessManaged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21748,"src":"23948:14:56","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IAccessManaged_$21748_$","typeString":"type(contract IAccessManaged)"}},"id":21268,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23948:22:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManaged_$21748","typeString":"contract IAccessManaged"}},"id":21269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23971:12:56","memberName":"setAuthority","nodeType":"MemberAccess","referencedDeclaration":21741,"src":"23948:35:56","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$returns$__$","typeString":"function (address) external"}},"id":21271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23948:49:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":21272,"nodeType":"ExpressionStatement","src":"23948:49:56"}]},"documentation":{"id":21257,"nodeType":"StructuredDocumentation","src":"23810:30:56","text":"@inheritdoc IAccessManager"},"functionSelector":"18ff183c","id":21274,"implemented":true,"kind":"function","modifiers":[{"id":21264,"kind":"modifierInvocation","modifierName":{"id":21263,"name":"onlyAuthorized","nameLocations":["23923:14:56"],"nodeType":"IdentifierPath","referencedDeclaration":19912,"src":"23923:14:56"},"nodeType":"ModifierInvocation","src":"23923:14:56"}],"name":"updateAuthority","nameLocation":"23854:15:56","nodeType":"FunctionDefinition","parameters":{"id":21262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21259,"mutability":"mutable","name":"target","nameLocation":"23878:6:56","nodeType":"VariableDeclaration","scope":21274,"src":"23870:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21258,"name":"address","nodeType":"ElementaryTypeName","src":"23870:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21261,"mutability":"mutable","name":"newAuthority","nameLocation":"23894:12:56","nodeType":"VariableDeclaration","scope":21274,"src":"23886:20:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21260,"name":"address","nodeType":"ElementaryTypeName","src":"23886:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"23869:38:56"},"returnParameters":{"id":21265,"nodeType":"ParameterList","parameters":[],"src":"23938:0:56"},"scope":21708,"src":"23845:159:56","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":21327,"nodeType":"Block","src":"24394:467:56","statements":[{"assignments":[21279],"declarations":[{"constant":false,"id":21279,"mutability":"mutable","name":"caller","nameLocation":"24412:6:56","nodeType":"VariableDeclaration","scope":21327,"src":"24404:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21278,"name":"address","nodeType":"ElementaryTypeName","src":"24404:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":21282,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":21280,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"24421:10:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":21281,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24421:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"24404:29:56"},{"assignments":[21284,21286],"declarations":[{"constant":false,"id":21284,"mutability":"mutable","name":"immediate","nameLocation":"24449:9:56","nodeType":"VariableDeclaration","scope":21327,"src":"24444:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":21283,"name":"bool","nodeType":"ElementaryTypeName","src":"24444:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":21286,"mutability":"mutable","name":"delay","nameLocation":"24467:5:56","nodeType":"VariableDeclaration","scope":21327,"src":"24460:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21285,"name":"uint32","nodeType":"ElementaryTypeName","src":"24460:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":21292,"initialValue":{"arguments":[{"id":21288,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21279,"src":"24489:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":21289,"name":"_msgData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26780,"src":"24497:8:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":21290,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24497:10:56","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":21287,"name":"_canCallSelf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21628,"src":"24476:12:56","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":21291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24476:32:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"24443:65:56"},{"condition":{"id":21294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"24522:10:56","subExpression":{"id":21293,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21284,"src":"24523:9:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21326,"nodeType":"IfStatement","src":"24518:337:56","trueBody":{"id":21325,"nodeType":"Block","src":"24534:321:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":21297,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21295,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21286,"src":"24552:5:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":21296,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24561:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"24552:10:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":21323,"nodeType":"Block","src":"24743:102:56","statements":[{"expression":{"arguments":[{"arguments":[{"id":21313,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21279,"src":"24795:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":21316,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"24811:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}],"id":21315,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24803:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21314,"name":"address","nodeType":"ElementaryTypeName","src":"24803:7:56","typeDescriptions":{}}},"id":21317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24803:13:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[],"expression":{"argumentTypes":[],"id":21318,"name":"_msgData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26780,"src":"24818:8:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":21319,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24818:10:56","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":21312,"name":"hashOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21256,"src":"24781:13:56","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":21320,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24781:48:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":21311,"name":"_consumeScheduledOp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21234,"src":"24761:19:56","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$returns$_t_uint32_$","typeString":"function (bytes32) returns (uint32)"}},"id":21321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24761:69:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":21322,"nodeType":"ExpressionStatement","src":"24761:69:56"}]},"id":21324,"nodeType":"IfStatement","src":"24548:297:56","trueBody":{"id":21310,"nodeType":"Block","src":"24564:173:56","statements":[{"assignments":[null,21299,null],"declarations":[null,{"constant":false,"id":21299,"mutability":"mutable","name":"requiredRole","nameLocation":"24592:12:56","nodeType":"VariableDeclaration","scope":21310,"src":"24585:19:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21298,"name":"uint64","nodeType":"ElementaryTypeName","src":"24585:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},null],"id":21304,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":21301,"name":"_msgData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26780,"src":"24632:8:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":21302,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24632:10:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":21300,"name":"_getAdminRestrictions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21481,"src":"24610:21:56","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":21303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24610:33:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"tuple(bool,uint64,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"24582:61:56"},{"errorCall":{"arguments":[{"id":21306,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21279,"src":"24701:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21307,"name":"requiredRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21299,"src":"24709:12:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":21305,"name":"AccessManagerUnauthorizedAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21882,"src":"24668:32:56","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint64_$returns$_t_error_$","typeString":"function (address,uint64) pure returns (error)"}},"id":21308,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24668:54:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":21309,"nodeType":"RevertStatement","src":"24661:61:56"}]}}]}}]},"documentation":{"id":21275,"nodeType":"StructuredDocumentation","src":"24130:223:56","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":21328,"implemented":true,"kind":"function","modifiers":[],"name":"_checkAuthorized","nameLocation":"24367:16:56","nodeType":"FunctionDefinition","parameters":{"id":21276,"nodeType":"ParameterList","parameters":[],"src":"24383:2:56"},"returnParameters":{"id":21277,"nodeType":"ParameterList","parameters":[],"src":"24394:0:56"},"scope":21708,"src":"24358:503:56","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":21480,"nodeType":"Block","src":"25420:1525:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":21340,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21331,"src":"25434:4:56","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":21341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25439:6:56","memberName":"length","nodeType":"MemberAccess","src":"25434:11:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"34","id":21342,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25448:1:56","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25434:15:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21350,"nodeType":"IfStatement","src":"25430:66:56","trueBody":{"id":21349,"nodeType":"Block","src":"25451:45:56","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":21344,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"25473:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":21345,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25480:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":21346,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25483:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":21347,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"25472:13:56","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":21339,"id":21348,"nodeType":"Return","src":"25465:20:56"}]}},{"assignments":[21352],"declarations":[{"constant":false,"id":21352,"mutability":"mutable","name":"selector","nameLocation":"25513:8:56","nodeType":"VariableDeclaration","scope":21480,"src":"25506:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":21351,"name":"bytes4","nodeType":"ElementaryTypeName","src":"25506:6:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":21356,"initialValue":{"arguments":[{"id":21354,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21331,"src":"25539:4:56","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":21353,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21681,"src":"25524:14:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":21355,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25524:20:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"25506:38:56"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":21361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21357,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21352,"src":"25664:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":21358,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25676:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}},"id":21359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25681:9:56","memberName":"labelRole","nodeType":"MemberAccess","referencedDeclaration":20238,"src":"25676:14:56","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_string_memory_ptr_$returns$__$","typeString":"function (uint64,string memory) external"}},"id":21360,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25691:8:56","memberName":"selector","nodeType":"MemberAccess","src":"25676:23:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"25664:35:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":21366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21362,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21352,"src":"25715:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":21363,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25727:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}},"id":21364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25732:12:56","memberName":"setRoleAdmin","nodeType":"MemberAccess","referencedDeclaration":20315,"src":"25727:17:56","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64) external"}},"id":21365,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25745:8:56","memberName":"selector","nodeType":"MemberAccess","src":"25727:26:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"25715:38:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25664:89:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":21372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21368,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21352,"src":"25769:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":21369,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25781:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}},"id":21370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25786:15:56","memberName":"setRoleGuardian","nodeType":"MemberAccess","referencedDeclaration":20331,"src":"25781:20:56","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_uint64_$returns$__$","typeString":"function (uint64,uint64) external"}},"id":21371,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25802:8:56","memberName":"selector","nodeType":"MemberAccess","src":"25781:29:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"25769:41:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25664:146:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":21378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21374,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21352,"src":"25826:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":21375,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25838:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}},"id":21376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25843:13:56","memberName":"setGrantDelay","nodeType":"MemberAccess","referencedDeclaration":20347,"src":"25838:18:56","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_uint32_$returns$__$","typeString":"function (uint64,uint32) external"}},"id":21377,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25857:8:56","memberName":"selector","nodeType":"MemberAccess","src":"25838:27:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"25826:39:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25664:201:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":21384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21380,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21352,"src":"25881:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":21381,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"25893:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}},"id":21382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25898:19:56","memberName":"setTargetAdminDelay","nodeType":"MemberAccess","referencedDeclaration":20681,"src":"25893:24:56","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint32_$returns$__$","typeString":"function (address,uint32) external"}},"id":21383,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25918:8:56","memberName":"selector","nodeType":"MemberAccess","src":"25893:33:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"25881:45:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"25664:262:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21392,"nodeType":"IfStatement","src":"25647:343:56","trueBody":{"id":21391,"nodeType":"Block","src":"25937:53:56","statements":[{"expression":{"components":[{"hexValue":"74727565","id":21386,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"25959:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":21387,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19879,"src":"25965:10:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"hexValue":"30","id":21388,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25977:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":21389,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"25958:21:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_rational_0_by_1_$","typeString":"tuple(bool,uint64,int_const 0)"}},"functionReturnParameters":21339,"id":21390,"nodeType":"Return","src":"25951:28:56"}]}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":21397,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21393,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21352,"src":"26097:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":21394,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26109:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}},"id":21395,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26114:15:56","memberName":"updateAuthority","nodeType":"MemberAccess","referencedDeclaration":21274,"src":"26109:20:56","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address) external"}},"id":21396,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26130:8:56","memberName":"selector","nodeType":"MemberAccess","src":"26109:29:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26097:41:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":21402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21398,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21352,"src":"26154:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":21399,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26166:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}},"id":21400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26171:15:56","memberName":"setTargetClosed","nodeType":"MemberAccess","referencedDeclaration":20732,"src":"26166:20:56","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_bool_$returns$__$","typeString":"function (address,bool) external"}},"id":21401,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26187:8:56","memberName":"selector","nodeType":"MemberAccess","src":"26166:29:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26154:41:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26097:98:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":21408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21404,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21352,"src":"26211:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":21405,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26223:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}},"id":21406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26228:21:56","memberName":"setTargetFunctionRole","nodeType":"MemberAccess","referencedDeclaration":20639,"src":"26223:26:56","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":21407,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26250:8:56","memberName":"selector","nodeType":"MemberAccess","src":"26223:35:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26211:47:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26097:161:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21435,"nodeType":"IfStatement","src":"26080:414:56","trueBody":{"id":21434,"nodeType":"Block","src":"26269:225:56","statements":[{"assignments":[21411],"declarations":[{"constant":false,"id":21411,"mutability":"mutable","name":"target","nameLocation":"26334:6:56","nodeType":"VariableDeclaration","scope":21434,"src":"26326:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21410,"name":"address","nodeType":"ElementaryTypeName","src":"26326:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":21422,"initialValue":{"arguments":[{"baseExpression":{"id":21414,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21331,"src":"26354:4:56","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"30783234","id":21416,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26364:4:56","typeDescriptions":{"typeIdentifier":"t_rational_36_by_1","typeString":"int_const 36"},"value":"0x24"},"id":21417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"26354:15:56","startExpression":{"hexValue":"30783034","id":21415,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26359:4:56","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":21419,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26372:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21418,"name":"address","nodeType":"ElementaryTypeName","src":"26372:7:56","typeDescriptions":{}}}],"id":21420,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"26371:9:56","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":21412,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"26343:3:56","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":21413,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26347:6:56","memberName":"decode","nodeType":"MemberAccess","src":"26343:10:56","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":21421,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26343:38:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"nodeType":"VariableDeclarationStatement","src":"26326:55:56"},{"assignments":[21424],"declarations":[{"constant":false,"id":21424,"mutability":"mutable","name":"delay","nameLocation":"26402:5:56","nodeType":"VariableDeclaration","scope":21434,"src":"26395:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21423,"name":"uint32","nodeType":"ElementaryTypeName","src":"26395:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":21428,"initialValue":{"arguments":[{"id":21426,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21411,"src":"26430:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21425,"name":"getTargetAdminDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20073,"src":"26410:19:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint32_$","typeString":"function (address) view returns (uint32)"}},"id":21427,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26410:27:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"26395:42:56"},{"expression":{"components":[{"hexValue":"74727565","id":21429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"26459:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":21430,"name":"ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19879,"src":"26465:10:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":21431,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21424,"src":"26477:5:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":21432,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26458:25:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"tuple(bool,uint64,uint32)"}},"functionReturnParameters":21339,"id":21433,"nodeType":"Return","src":"26451:32:56"}]}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":21440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21436,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21352,"src":"26613:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":21437,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26625:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}},"id":21438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26630:9:56","memberName":"grantRole","nodeType":"MemberAccess","referencedDeclaration":20260,"src":"26625:14:56","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_address_$_t_uint32_$returns$__$","typeString":"function (uint64,address,uint32) external"}},"id":21439,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26640:8:56","memberName":"selector","nodeType":"MemberAccess","src":"26625:23:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26613:35:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":21445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21441,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21352,"src":"26652:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":21442,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26664:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}},"id":21443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26669:10:56","memberName":"revokeRole","nodeType":"MemberAccess","referencedDeclaration":20276,"src":"26664:15:56","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint64_$_t_address_$returns$__$","typeString":"function (uint64,address) external"}},"id":21444,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26680:8:56","memberName":"selector","nodeType":"MemberAccess","src":"26664:24:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"26652:36:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26613:75:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21468,"nodeType":"IfStatement","src":"26609:254:56","trueBody":{"id":21467,"nodeType":"Block","src":"26690:173:56","statements":[{"assignments":[21448],"declarations":[{"constant":false,"id":21448,"mutability":"mutable","name":"roleId","nameLocation":"26754:6:56","nodeType":"VariableDeclaration","scope":21467,"src":"26747:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21447,"name":"uint64","nodeType":"ElementaryTypeName","src":"26747:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":21459,"initialValue":{"arguments":[{"baseExpression":{"id":21451,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21331,"src":"26774:4:56","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"30783234","id":21453,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26784:4:56","typeDescriptions":{"typeIdentifier":"t_rational_36_by_1","typeString":"int_const 36"},"value":"0x24"},"id":21454,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"26774:15:56","startExpression":{"hexValue":"30783034","id":21452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26779:4:56","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":21456,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26792:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":21455,"name":"uint64","nodeType":"ElementaryTypeName","src":"26792:6:56","typeDescriptions":{}}}],"id":21457,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"26791:8:56","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":21449,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"26763:3:56","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":21450,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26767:6:56","memberName":"decode","nodeType":"MemberAccess","src":"26763:10:56","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":21458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26763:37:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"26747:53:56"},{"expression":{"components":[{"hexValue":"74727565","id":21460,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"26822:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"arguments":[{"id":21462,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21448,"src":"26841:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":21461,"name":"getRoleAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20087,"src":"26828:12:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$returns$_t_uint64_$","typeString":"function (uint64) view returns (uint64)"}},"id":21463,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26828:20:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"hexValue":"30","id":21464,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26850:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":21465,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26821:31:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_rational_0_by_1_$","typeString":"tuple(bool,uint64,int_const 0)"}},"functionReturnParameters":21339,"id":21466,"nodeType":"Return","src":"26814:38:56"}]}},{"expression":{"components":[{"hexValue":"66616c7365","id":21469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"26881:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"arguments":[{"id":21473,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26918:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}],"id":21472,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26910:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21471,"name":"address","nodeType":"ElementaryTypeName","src":"26910:7:56","typeDescriptions":{}}},"id":21474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26910:13:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21475,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21352,"src":"26925:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":21470,"name":"getTargetFunctionRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20057,"src":"26888:21:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_uint64_$","typeString":"function (address,bytes4) view returns (uint64)"}},"id":21476,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26888:46:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"hexValue":"30","id":21477,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26936:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":21478,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26880:58:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_rational_0_by_1_$","typeString":"tuple(bool,uint64,int_const 0)"}},"functionReturnParameters":21339,"id":21479,"nodeType":"Return","src":"26873:65:56"}]},"documentation":{"id":21329,"nodeType":"StructuredDocumentation","src":"24867:395:56","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":21481,"implemented":true,"kind":"function","modifiers":[],"name":"_getAdminRestrictions","nameLocation":"25276:21:56","nodeType":"FunctionDefinition","parameters":{"id":21332,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21331,"mutability":"mutable","name":"data","nameLocation":"25322:4:56","nodeType":"VariableDeclaration","scope":21481,"src":"25307:19:56","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":21330,"name":"bytes","nodeType":"ElementaryTypeName","src":"25307:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"25297:35:56"},"returnParameters":{"id":21339,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21334,"mutability":"mutable","name":"adminRestricted","nameLocation":"25360:15:56","nodeType":"VariableDeclaration","scope":21481,"src":"25355:20:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":21333,"name":"bool","nodeType":"ElementaryTypeName","src":"25355:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":21336,"mutability":"mutable","name":"roleAdminId","nameLocation":"25384:11:56","nodeType":"VariableDeclaration","scope":21481,"src":"25377:18:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21335,"name":"uint64","nodeType":"ElementaryTypeName","src":"25377:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":21338,"mutability":"mutable","name":"executionDelay","nameLocation":"25404:14:56","nodeType":"VariableDeclaration","scope":21481,"src":"25397:21:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21337,"name":"uint32","nodeType":"ElementaryTypeName","src":"25397:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"25354:65:56"},"scope":21708,"src":"25267:1678:56","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":21525,"nodeType":"Block","src":"27537:217:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":21500,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21495,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21486,"src":"27551:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":21498,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"27569:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}],"id":21497,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27561:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21496,"name":"address","nodeType":"ElementaryTypeName","src":"27561:7:56","typeDescriptions":{}}},"id":21499,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27561:13:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"27551:23:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":21523,"nodeType":"Block","src":"27640:108:56","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21510,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":21507,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21488,"src":"27661:4:56","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":21508,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27666:6:56","memberName":"length","nodeType":"MemberAccess","src":"27661:11:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"34","id":21509,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27675:1:56","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"27661:15:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":21515,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21484,"src":"27700:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21516,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21486,"src":"27708:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":21518,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21488,"src":"27731:4:56","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":21517,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21681,"src":"27716:14:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":21519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27716:20:56","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":21514,"name":"canCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20007,"src":"27692:7:56","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":21520,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27692:45:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"id":21521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"27661:76:56","trueExpression":{"components":[{"hexValue":"66616c7365","id":21511,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"27680:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":21512,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27687:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":21513,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"27679:10:56","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":21494,"id":21522,"nodeType":"Return","src":"27654:83:56"}]},"id":21524,"nodeType":"IfStatement","src":"27547:201:56","trueBody":{"id":21506,"nodeType":"Block","src":"27576:58:56","statements":[{"expression":{"arguments":[{"id":21502,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21484,"src":"27610:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21503,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21488,"src":"27618:4:56","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":21501,"name":"_canCallSelf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21628,"src":"27597:12:56","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":21504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27597:26:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":21494,"id":21505,"nodeType":"Return","src":"27590:33:56"}]}}]},"documentation":{"id":21482,"nodeType":"StructuredDocumentation","src":"27071:300:56","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":21526,"implemented":true,"kind":"function","modifiers":[],"name":"_canCallExtended","nameLocation":"27385:16:56","nodeType":"FunctionDefinition","parameters":{"id":21489,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21484,"mutability":"mutable","name":"caller","nameLocation":"27419:6:56","nodeType":"VariableDeclaration","scope":21526,"src":"27411:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21483,"name":"address","nodeType":"ElementaryTypeName","src":"27411:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21486,"mutability":"mutable","name":"target","nameLocation":"27443:6:56","nodeType":"VariableDeclaration","scope":21526,"src":"27435:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21485,"name":"address","nodeType":"ElementaryTypeName","src":"27435:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21488,"mutability":"mutable","name":"data","nameLocation":"27474:4:56","nodeType":"VariableDeclaration","scope":21526,"src":"27459:19:56","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":21487,"name":"bytes","nodeType":"ElementaryTypeName","src":"27459:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"27401:83:56"},"returnParameters":{"id":21494,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21491,"mutability":"mutable","name":"immediate","nameLocation":"27512:9:56","nodeType":"VariableDeclaration","scope":21526,"src":"27507:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":21490,"name":"bool","nodeType":"ElementaryTypeName","src":"27507:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":21493,"mutability":"mutable","name":"delay","nameLocation":"27530:5:56","nodeType":"VariableDeclaration","scope":21526,"src":"27523:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21492,"name":"uint32","nodeType":"ElementaryTypeName","src":"27523:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"27506:30:56"},"scope":21708,"src":"27376:378:56","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":21627,"nodeType":"Block","src":"27969:996:56","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":21541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":21538,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21531,"src":"27983:4:56","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":21539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27988:6:56","memberName":"length","nodeType":"MemberAccess","src":"27983:11:56","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"34","id":21540,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27997:1:56","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"27983:15:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21547,"nodeType":"IfStatement","src":"27979:63:56","trueBody":{"id":21546,"nodeType":"Block","src":"28000:42:56","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":21542,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"28022:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":21543,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28029:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":21544,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"28021:10:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":21537,"id":21545,"nodeType":"Return","src":"28014:17:56"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":21553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21548,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21529,"src":"28056:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":21551,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28074:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}],"id":21550,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28066:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21549,"name":"address","nodeType":"ElementaryTypeName","src":"28066:7:56","typeDescriptions":{}}},"id":21552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28066:13:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"28056:23:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21567,"nodeType":"IfStatement","src":"28052:334:56","trueBody":{"id":21566,"nodeType":"Block","src":"28081:305:56","statements":[{"expression":{"components":[{"arguments":[{"arguments":[{"id":21557,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28343:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}],"id":21556,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28335:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21555,"name":"address","nodeType":"ElementaryTypeName","src":"28335:7:56","typeDescriptions":{}}},"id":21558,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28335:13:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":21560,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21531,"src":"28365:4:56","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":21559,"name":"_checkSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21681,"src":"28350:14:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function (bytes calldata) pure returns (bytes4)"}},"id":21561,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28350:20:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":21554,"name":"_isExecuting","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21646,"src":"28322:12:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":21562,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28322:49:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"30","id":21563,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28373:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":21564,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"28321:54:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":21537,"id":21565,"nodeType":"Return","src":"28314:61:56"}]}},{"assignments":[21569,21571,21573],"declarations":[{"constant":false,"id":21569,"mutability":"mutable","name":"adminRestricted","nameLocation":"28402:15:56","nodeType":"VariableDeclaration","scope":21627,"src":"28397:20:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":21568,"name":"bool","nodeType":"ElementaryTypeName","src":"28397:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":21571,"mutability":"mutable","name":"roleId","nameLocation":"28426:6:56","nodeType":"VariableDeclaration","scope":21627,"src":"28419:13:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21570,"name":"uint64","nodeType":"ElementaryTypeName","src":"28419:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":21573,"mutability":"mutable","name":"operationDelay","nameLocation":"28441:14:56","nodeType":"VariableDeclaration","scope":21627,"src":"28434:21:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21572,"name":"uint32","nodeType":"ElementaryTypeName","src":"28434:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":21577,"initialValue":{"arguments":[{"id":21575,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21531,"src":"28481:4:56","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":21574,"name":"_getAdminRestrictions","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21481,"src":"28459:21:56","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":21576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28459:27:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint64_$_t_uint32_$","typeString":"tuple(bool,uint64,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"28396:90:56"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":21586,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"28566:16:56","subExpression":{"id":21578,"name":"adminRestricted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21569,"src":"28567:15:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"arguments":[{"arguments":[{"id":21583,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28609:4:56","typeDescriptions":{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_AccessManager_$21708","typeString":"contract AccessManager"}],"id":21582,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28601:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":21581,"name":"address","nodeType":"ElementaryTypeName","src":"28601:7:56","typeDescriptions":{}}},"id":21584,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28601:13:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21580,"name":"isTargetClosed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20039,"src":"28586:14:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":21585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28586:29:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"28566:49:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21592,"nodeType":"IfStatement","src":"28562:97:56","trueBody":{"id":21591,"nodeType":"Block","src":"28617:42:56","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":21587,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"28639:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":21588,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28646:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":21589,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"28638:10:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":21537,"id":21590,"nodeType":"Return","src":"28631:17:56"}]}},{"assignments":[21594,21596],"declarations":[{"constant":false,"id":21594,"mutability":"mutable","name":"inRole","nameLocation":"28675:6:56","nodeType":"VariableDeclaration","scope":21627,"src":"28670:11:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":21593,"name":"bool","nodeType":"ElementaryTypeName","src":"28670:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":21596,"mutability":"mutable","name":"executionDelay","nameLocation":"28690:14:56","nodeType":"VariableDeclaration","scope":21627,"src":"28683:21:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21595,"name":"uint32","nodeType":"ElementaryTypeName","src":"28683:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":21601,"initialValue":{"arguments":[{"id":21598,"name":"roleId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21571,"src":"28716:6:56","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":21599,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21529,"src":"28724:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_address","typeString":"address"}],"id":21597,"name":"hasRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20209,"src":"28708:7:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint64_$_t_address_$returns$_t_bool_$_t_uint32_$","typeString":"function (uint64,address) view returns (bool,uint32)"}},"id":21600,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28708:23:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"28669:62:56"},{"condition":{"id":21603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"28745:7:56","subExpression":{"id":21602,"name":"inRole","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21594,"src":"28746:6:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":21609,"nodeType":"IfStatement","src":"28741:55:56","trueBody":{"id":21608,"nodeType":"Block","src":"28754:42:56","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":21604,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"28776:5:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":21605,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28783:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":21606,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"28775:10:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":21537,"id":21607,"nodeType":"Return","src":"28768:17:56"}]}},{"expression":{"id":21619,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":21610,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21536,"src":"28866:5:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":21615,"name":"operationDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21573,"src":"28890:14:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":21616,"name":"executionDelay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21596,"src":"28906:14:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":21613,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"28881:4:56","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":21614,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28886:3:56","memberName":"max","nodeType":"MemberAccess","referencedDeclaration":33853,"src":"28881:8:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":21617,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28881:40:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21612,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28874:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":21611,"name":"uint32","nodeType":"ElementaryTypeName","src":"28874:6:56","typeDescriptions":{}}},"id":21618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28874:48:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"28866:56:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":21620,"nodeType":"ExpressionStatement","src":"28866:56:56"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":21623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21621,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21536,"src":"28940:5:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":21622,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28949:1:56","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"28940:10:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":21624,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21536,"src":"28952:5:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":21625,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"28939:19:56","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"functionReturnParameters":21537,"id":21626,"nodeType":"Return","src":"28932:26:56"}]},"documentation":{"id":21527,"nodeType":"StructuredDocumentation","src":"27760:93:56","text":" @dev A version of {canCall} that checks for restrictions in this contract."},"id":21628,"implemented":true,"kind":"function","modifiers":[],"name":"_canCallSelf","nameLocation":"27867:12:56","nodeType":"FunctionDefinition","parameters":{"id":21532,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21529,"mutability":"mutable","name":"caller","nameLocation":"27888:6:56","nodeType":"VariableDeclaration","scope":21628,"src":"27880:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21528,"name":"address","nodeType":"ElementaryTypeName","src":"27880:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21531,"mutability":"mutable","name":"data","nameLocation":"27911:4:56","nodeType":"VariableDeclaration","scope":21628,"src":"27896:19:56","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":21530,"name":"bytes","nodeType":"ElementaryTypeName","src":"27896:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"27879:37:56"},"returnParameters":{"id":21537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21534,"mutability":"mutable","name":"immediate","nameLocation":"27944:9:56","nodeType":"VariableDeclaration","scope":21628,"src":"27939:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":21533,"name":"bool","nodeType":"ElementaryTypeName","src":"27939:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":21536,"mutability":"mutable","name":"delay","nameLocation":"27962:5:56","nodeType":"VariableDeclaration","scope":21628,"src":"27955:12:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21535,"name":"uint32","nodeType":"ElementaryTypeName","src":"27955:6:56","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"27938:30:56"},"scope":21708,"src":"27858:1107:56","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":21645,"nodeType":"Block","src":"29168:74:56","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":21643,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21638,"name":"_executionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19904,"src":"29185:12:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":21640,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21631,"src":"29218:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":21641,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21633,"src":"29226:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":21639,"name":"_hashExecutionId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21707,"src":"29201:16:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_bytes4_$returns$_t_bytes32_$","typeString":"function (address,bytes4) pure returns (bytes32)"}},"id":21642,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29201:34:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"29185:50:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":21637,"id":21644,"nodeType":"Return","src":"29178:57:56"}]},"documentation":{"id":21629,"nodeType":"StructuredDocumentation","src":"28971:109:56","text":" @dev Returns true if a call with `target` and `selector` is being executed via {executed}."},"id":21646,"implemented":true,"kind":"function","modifiers":[],"name":"_isExecuting","nameLocation":"29094:12:56","nodeType":"FunctionDefinition","parameters":{"id":21634,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21631,"mutability":"mutable","name":"target","nameLocation":"29115:6:56","nodeType":"VariableDeclaration","scope":21646,"src":"29107:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21630,"name":"address","nodeType":"ElementaryTypeName","src":"29107:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21633,"mutability":"mutable","name":"selector","nameLocation":"29130:8:56","nodeType":"VariableDeclaration","scope":21646,"src":"29123:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":21632,"name":"bytes4","nodeType":"ElementaryTypeName","src":"29123:6:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"29106:33:56"},"returnParameters":{"id":21637,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21636,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21646,"src":"29162:4:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":21635,"name":"bool","nodeType":"ElementaryTypeName","src":"29162:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"29161:6:56"},"scope":21708,"src":"29085:157:56","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":21663,"nodeType":"Block","src":"29412:68:56","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":21661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":21657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":21654,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21649,"src":"29429:9:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":21655,"name":"expiration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20016,"src":"29441:10:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint32_$","typeString":"function () view returns (uint32)"}},"id":21656,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29441:12:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"29429:24:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":21658,"name":"Time","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37370,"src":"29457:4:56","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Time_$37370_$","typeString":"type(library Time)"}},"id":21659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29462:9:56","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":37118,"src":"29457:14:56","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":21660,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29457:16:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"29429:44:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":21653,"id":21662,"nodeType":"Return","src":"29422:51:56"}]},"documentation":{"id":21647,"nodeType":"StructuredDocumentation","src":"29248:93:56","text":" @dev Returns true if a schedule timepoint is past its expiration deadline."},"id":21664,"implemented":true,"kind":"function","modifiers":[],"name":"_isExpired","nameLocation":"29355:10:56","nodeType":"FunctionDefinition","parameters":{"id":21650,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21649,"mutability":"mutable","name":"timepoint","nameLocation":"29373:9:56","nodeType":"VariableDeclaration","scope":21664,"src":"29366:16:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":21648,"name":"uint48","nodeType":"ElementaryTypeName","src":"29366:6:56","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"29365:18:56"},"returnParameters":{"id":21653,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21652,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21664,"src":"29406:4:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":21651,"name":"bool","nodeType":"ElementaryTypeName","src":"29406:4:56","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"29405:6:56"},"scope":21708,"src":"29346:134:56","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":21680,"nodeType":"Block","src":"29665:41:56","statements":[{"expression":{"arguments":[{"baseExpression":{"id":21674,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21667,"src":"29689:4:56","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":21676,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29696:1:56","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":21677,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"29689:9:56","startExpression":{"hexValue":"30","id":21675,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29694:1:56","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":21673,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29682:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":21672,"name":"bytes4","nodeType":"ElementaryTypeName","src":"29682:6:56","typeDescriptions":{}}},"id":21678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29682:17:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":21671,"id":21679,"nodeType":"Return","src":"29675:24:56"}]},"documentation":{"id":21665,"nodeType":"StructuredDocumentation","src":"29486:99:56","text":" @dev Extracts the selector from calldata. Panics if data is not at least 4 bytes"},"id":21681,"implemented":true,"kind":"function","modifiers":[],"name":"_checkSelector","nameLocation":"29599:14:56","nodeType":"FunctionDefinition","parameters":{"id":21668,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21667,"mutability":"mutable","name":"data","nameLocation":"29629:4:56","nodeType":"VariableDeclaration","scope":21681,"src":"29614:19:56","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":21666,"name":"bytes","nodeType":"ElementaryTypeName","src":"29614:5:56","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"29613:21:56"},"returnParameters":{"id":21671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21670,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21681,"src":"29657:6:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":21669,"name":"bytes4","nodeType":"ElementaryTypeName","src":"29657:6:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"29656:8:56"},"scope":21708,"src":"29590:116:56","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":21706,"nodeType":"Block","src":"29870:94:56","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"id":21699,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21684,"src":"29937:6:56","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":21698,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29929:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":21697,"name":"uint160","nodeType":"ElementaryTypeName","src":"29929:7:56","typeDescriptions":{}}},"id":21700,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29929:15:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":21696,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29921:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":21695,"name":"uint256","nodeType":"ElementaryTypeName","src":"29921:7:56","typeDescriptions":{}}},"id":21701,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29921:24:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":21694,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29913:7:56","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":21693,"name":"bytes32","nodeType":"ElementaryTypeName","src":"29913:7:56","typeDescriptions":{}}},"id":21702,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29913:33:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":21703,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":21686,"src":"29948:8:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":21691,"name":"Hashes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33213,"src":"29887:6:56","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Hashes_$33213_$","typeString":"type(library Hashes)"}},"id":21692,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29894:18:56","memberName":"efficientKeccak256","nodeType":"MemberAccess","referencedDeclaration":33212,"src":"29887:25:56","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes32) pure returns (bytes32)"}},"id":21704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29887:70:56","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":21690,"id":21705,"nodeType":"Return","src":"29880:77:56"}]},"documentation":{"id":21682,"nodeType":"StructuredDocumentation","src":"29712:63:56","text":" @dev Hashing function for execute protection"},"id":21707,"implemented":true,"kind":"function","modifiers":[],"name":"_hashExecutionId","nameLocation":"29789:16:56","nodeType":"FunctionDefinition","parameters":{"id":21687,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21684,"mutability":"mutable","name":"target","nameLocation":"29814:6:56","nodeType":"VariableDeclaration","scope":21707,"src":"29806:14:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21683,"name":"address","nodeType":"ElementaryTypeName","src":"29806:7:56","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21686,"mutability":"mutable","name":"selector","nameLocation":"29829:8:56","nodeType":"VariableDeclaration","scope":21707,"src":"29822:15:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":21685,"name":"bytes4","nodeType":"ElementaryTypeName","src":"29822:6:56","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"29805:33:56"},"returnParameters":{"id":21690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21689,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21707,"src":"29861:7:56","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":21688,"name":"bytes32","nodeType":"ElementaryTypeName","src":"29861:7:56","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"29860:9:56"},"scope":21708,"src":"29780:184:56","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":21709,"src":"3782:26184:56","usedErrors":[21858,21862,21866,21870,21874,21876,21882,21890,21894,21904,21908,25668,26799,26802,35197],"usedEvents":[21765,21772,21779,21786,21799,21806,21813,21820,21829,21836,21845,21854]}],"src":"116:29851:56"},"id":56},"@openzeppelin/contracts/access/manager/IAccessManaged.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManaged.sol","exportedSymbols":{"IAccessManaged":[21748]},"id":21749,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":21710,"literals":["solidity",">=","0.8",".4"],"nodeType":"PragmaDirective","src":"117:24:57"},{"abstract":false,"baseContracts":[],"canonicalName":"IAccessManaged","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":21748,"linearizedBaseContracts":[21748],"name":"IAccessManaged","nameLocation":"153:14:57","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":21711,"nodeType":"StructuredDocumentation","src":"174:73:57","text":" @dev Authority that manages this contract was updated."},"eventSelector":"2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad","id":21715,"name":"AuthorityUpdated","nameLocation":"258:16:57","nodeType":"EventDefinition","parameters":{"id":21714,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21713,"indexed":false,"mutability":"mutable","name":"authority","nameLocation":"283:9:57","nodeType":"VariableDeclaration","scope":21715,"src":"275:17:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21712,"name":"address","nodeType":"ElementaryTypeName","src":"275:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"274:19:57"},"src":"252:42:57"},{"errorSelector":"068ca9d8","id":21719,"name":"AccessManagedUnauthorized","nameLocation":"306:25:57","nodeType":"ErrorDefinition","parameters":{"id":21718,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21717,"mutability":"mutable","name":"caller","nameLocation":"340:6:57","nodeType":"VariableDeclaration","scope":21719,"src":"332:14:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21716,"name":"address","nodeType":"ElementaryTypeName","src":"332:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"331:16:57"},"src":"300:48:57"},{"errorSelector":"af77169d","id":21725,"name":"AccessManagedRequiredDelay","nameLocation":"359:26:57","nodeType":"ErrorDefinition","parameters":{"id":21724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21721,"mutability":"mutable","name":"caller","nameLocation":"394:6:57","nodeType":"VariableDeclaration","scope":21725,"src":"386:14:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21720,"name":"address","nodeType":"ElementaryTypeName","src":"386:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21723,"mutability":"mutable","name":"delay","nameLocation":"409:5:57","nodeType":"VariableDeclaration","scope":21725,"src":"402:12:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21722,"name":"uint32","nodeType":"ElementaryTypeName","src":"402:6:57","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"385:30:57"},"src":"353:63:57"},{"errorSelector":"c2f31e5e","id":21729,"name":"AccessManagedInvalidAuthority","nameLocation":"427:29:57","nodeType":"ErrorDefinition","parameters":{"id":21728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21727,"mutability":"mutable","name":"authority","nameLocation":"465:9:57","nodeType":"VariableDeclaration","scope":21729,"src":"457:17:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21726,"name":"address","nodeType":"ElementaryTypeName","src":"457:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"456:19:57"},"src":"421:55:57"},{"documentation":{"id":21730,"nodeType":"StructuredDocumentation","src":"482:54:57","text":" @dev Returns the current authority."},"functionSelector":"bf7e214f","id":21735,"implemented":false,"kind":"function","modifiers":[],"name":"authority","nameLocation":"550:9:57","nodeType":"FunctionDefinition","parameters":{"id":21731,"nodeType":"ParameterList","parameters":[],"src":"559:2:57"},"returnParameters":{"id":21734,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21733,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21735,"src":"585:7:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21732,"name":"address","nodeType":"ElementaryTypeName","src":"585:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"584:9:57"},"scope":21748,"src":"541:53:57","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":21736,"nodeType":"StructuredDocumentation","src":"600:103:57","text":" @dev Transfers control to a new authority. The caller must be the current authority."},"functionSelector":"7a9e5e4b","id":21741,"implemented":false,"kind":"function","modifiers":[],"name":"setAuthority","nameLocation":"717:12:57","nodeType":"FunctionDefinition","parameters":{"id":21739,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21738,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21741,"src":"730:7:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21737,"name":"address","nodeType":"ElementaryTypeName","src":"730:7:57","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"729:9:57"},"returnParameters":{"id":21740,"nodeType":"ParameterList","parameters":[],"src":"747:0:57"},"scope":21748,"src":"708:40:57","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":21742,"nodeType":"StructuredDocumentation","src":"754:284:57","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":21747,"implemented":false,"kind":"function","modifiers":[],"name":"isConsumingScheduledOp","nameLocation":"1052:22:57","nodeType":"FunctionDefinition","parameters":{"id":21743,"nodeType":"ParameterList","parameters":[],"src":"1074:2:57"},"returnParameters":{"id":21746,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21745,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21747,"src":"1100:6:57","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":21744,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1100:6:57","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1099:8:57"},"scope":21748,"src":"1043:65:57","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":21749,"src":"143:967:57","usedErrors":[21719,21725,21729],"usedEvents":[21715]}],"src":"117:994:57"},"id":57},"@openzeppelin/contracts/access/manager/IAccessManager.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","exportedSymbols":{"IAccessManager":[22178]},"id":22179,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":21750,"literals":["solidity",">=","0.8",".4"],"nodeType":"PragmaDirective","src":"117:24:58"},{"abstract":false,"baseContracts":[],"canonicalName":"IAccessManager","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":22178,"linearizedBaseContracts":[22178],"name":"IAccessManager","nameLocation":"153:14:58","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":21751,"nodeType":"StructuredDocumentation","src":"174:58:58","text":" @dev A delayed operation was scheduled."},"eventSelector":"82a2da5dee54ea8021c6545b4444620291e07ee83be6dd57edb175062715f3b4","id":21765,"name":"OperationScheduled","nameLocation":"243:18:58","nodeType":"EventDefinition","parameters":{"id":21764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21753,"indexed":true,"mutability":"mutable","name":"operationId","nameLocation":"287:11:58","nodeType":"VariableDeclaration","scope":21765,"src":"271:27:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":21752,"name":"bytes32","nodeType":"ElementaryTypeName","src":"271:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":21755,"indexed":true,"mutability":"mutable","name":"nonce","nameLocation":"323:5:58","nodeType":"VariableDeclaration","scope":21765,"src":"308:20:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21754,"name":"uint32","nodeType":"ElementaryTypeName","src":"308:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":21757,"indexed":false,"mutability":"mutable","name":"schedule","nameLocation":"345:8:58","nodeType":"VariableDeclaration","scope":21765,"src":"338:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":21756,"name":"uint48","nodeType":"ElementaryTypeName","src":"338:6:58","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":21759,"indexed":false,"mutability":"mutable","name":"caller","nameLocation":"371:6:58","nodeType":"VariableDeclaration","scope":21765,"src":"363:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21758,"name":"address","nodeType":"ElementaryTypeName","src":"363:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21761,"indexed":false,"mutability":"mutable","name":"target","nameLocation":"395:6:58","nodeType":"VariableDeclaration","scope":21765,"src":"387:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21760,"name":"address","nodeType":"ElementaryTypeName","src":"387:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21763,"indexed":false,"mutability":"mutable","name":"data","nameLocation":"417:4:58","nodeType":"VariableDeclaration","scope":21765,"src":"411:10:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":21762,"name":"bytes","nodeType":"ElementaryTypeName","src":"411:5:58","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"261:166:58"},"src":"237:191:58"},{"anonymous":false,"documentation":{"id":21766,"nodeType":"StructuredDocumentation","src":"434:59:58","text":" @dev A scheduled operation was executed."},"eventSelector":"76a2a46953689d4861a5d3f6ed883ad7e6af674a21f8e162707159fc9dde614d","id":21772,"name":"OperationExecuted","nameLocation":"504:17:58","nodeType":"EventDefinition","parameters":{"id":21771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21768,"indexed":true,"mutability":"mutable","name":"operationId","nameLocation":"538:11:58","nodeType":"VariableDeclaration","scope":21772,"src":"522:27:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":21767,"name":"bytes32","nodeType":"ElementaryTypeName","src":"522:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":21770,"indexed":true,"mutability":"mutable","name":"nonce","nameLocation":"566:5:58","nodeType":"VariableDeclaration","scope":21772,"src":"551:20:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21769,"name":"uint32","nodeType":"ElementaryTypeName","src":"551:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"521:51:58"},"src":"498:75:58"},{"anonymous":false,"documentation":{"id":21773,"nodeType":"StructuredDocumentation","src":"579:59:58","text":" @dev A scheduled operation was canceled."},"eventSelector":"bd9ac67a6e2f6463b80927326310338bcbb4bdb7936ce1365ea3e01067e7b9f7","id":21779,"name":"OperationCanceled","nameLocation":"649:17:58","nodeType":"EventDefinition","parameters":{"id":21778,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21775,"indexed":true,"mutability":"mutable","name":"operationId","nameLocation":"683:11:58","nodeType":"VariableDeclaration","scope":21779,"src":"667:27:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":21774,"name":"bytes32","nodeType":"ElementaryTypeName","src":"667:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":21777,"indexed":true,"mutability":"mutable","name":"nonce","nameLocation":"711:5:58","nodeType":"VariableDeclaration","scope":21779,"src":"696:20:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21776,"name":"uint32","nodeType":"ElementaryTypeName","src":"696:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"666:51:58"},"src":"643:75:58"},{"anonymous":false,"documentation":{"id":21780,"nodeType":"StructuredDocumentation","src":"724:61:58","text":" @dev Informational labelling for a roleId."},"eventSelector":"1256f5b5ecb89caec12db449738f2fbcd1ba5806cf38f35413f4e5c15bf6a450","id":21786,"name":"RoleLabel","nameLocation":"796:9:58","nodeType":"EventDefinition","parameters":{"id":21785,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21782,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"821:6:58","nodeType":"VariableDeclaration","scope":21786,"src":"806:21:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21781,"name":"uint64","nodeType":"ElementaryTypeName","src":"806:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":21784,"indexed":false,"mutability":"mutable","name":"label","nameLocation":"836:5:58","nodeType":"VariableDeclaration","scope":21786,"src":"829:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":21783,"name":"string","nodeType":"ElementaryTypeName","src":"829:6:58","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"805:37:58"},"src":"790:53:58"},{"anonymous":false,"documentation":{"id":21787,"nodeType":"StructuredDocumentation","src":"849:375:58","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":21799,"name":"RoleGranted","nameLocation":"1235:11:58","nodeType":"EventDefinition","parameters":{"id":21798,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21789,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"1262:6:58","nodeType":"VariableDeclaration","scope":21799,"src":"1247:21:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21788,"name":"uint64","nodeType":"ElementaryTypeName","src":"1247:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":21791,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1286:7:58","nodeType":"VariableDeclaration","scope":21799,"src":"1270:23:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21790,"name":"address","nodeType":"ElementaryTypeName","src":"1270:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21793,"indexed":false,"mutability":"mutable","name":"delay","nameLocation":"1302:5:58","nodeType":"VariableDeclaration","scope":21799,"src":"1295:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21792,"name":"uint32","nodeType":"ElementaryTypeName","src":"1295:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":21795,"indexed":false,"mutability":"mutable","name":"since","nameLocation":"1316:5:58","nodeType":"VariableDeclaration","scope":21799,"src":"1309:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":21794,"name":"uint48","nodeType":"ElementaryTypeName","src":"1309:6:58","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":21797,"indexed":false,"mutability":"mutable","name":"newMember","nameLocation":"1328:9:58","nodeType":"VariableDeclaration","scope":21799,"src":"1323:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":21796,"name":"bool","nodeType":"ElementaryTypeName","src":"1323:4:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1246:92:58"},"src":"1229:110:58"},{"anonymous":false,"documentation":{"id":21800,"nodeType":"StructuredDocumentation","src":"1345:125:58","text":" @dev Emitted when `account` membership or `roleId` is revoked. Unlike granting, revoking is instantaneous."},"eventSelector":"f229baa593af28c41b1d16b748cd7688f0c83aaf92d4be41c44005defe84c166","id":21806,"name":"RoleRevoked","nameLocation":"1481:11:58","nodeType":"EventDefinition","parameters":{"id":21805,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21802,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"1508:6:58","nodeType":"VariableDeclaration","scope":21806,"src":"1493:21:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21801,"name":"uint64","nodeType":"ElementaryTypeName","src":"1493:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":21804,"indexed":true,"mutability":"mutable","name":"account","nameLocation":"1532:7:58","nodeType":"VariableDeclaration","scope":21806,"src":"1516:23:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21803,"name":"address","nodeType":"ElementaryTypeName","src":"1516:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1492:48:58"},"src":"1475:66:58"},{"anonymous":false,"documentation":{"id":21807,"nodeType":"StructuredDocumentation","src":"1547:78:58","text":" @dev Role acting as admin over a given `roleId` is updated."},"eventSelector":"1fd6dd7631312dfac2205b52913f99de03b4d7e381d5d27d3dbfe0713e6e6340","id":21813,"name":"RoleAdminChanged","nameLocation":"1636:16:58","nodeType":"EventDefinition","parameters":{"id":21812,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21809,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"1668:6:58","nodeType":"VariableDeclaration","scope":21813,"src":"1653:21:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21808,"name":"uint64","nodeType":"ElementaryTypeName","src":"1653:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":21811,"indexed":true,"mutability":"mutable","name":"admin","nameLocation":"1691:5:58","nodeType":"VariableDeclaration","scope":21813,"src":"1676:20:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21810,"name":"uint64","nodeType":"ElementaryTypeName","src":"1676:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"1652:45:58"},"src":"1630:68:58"},{"anonymous":false,"documentation":{"id":21814,"nodeType":"StructuredDocumentation","src":"1704:81:58","text":" @dev Role acting as guardian over a given `roleId` is updated."},"eventSelector":"7a8059630b897b5de4c08ade69f8b90c3ead1f8596d62d10b6c4d14a0afb4ae2","id":21820,"name":"RoleGuardianChanged","nameLocation":"1796:19:58","nodeType":"EventDefinition","parameters":{"id":21819,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21816,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"1831:6:58","nodeType":"VariableDeclaration","scope":21820,"src":"1816:21:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21815,"name":"uint64","nodeType":"ElementaryTypeName","src":"1816:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":21818,"indexed":true,"mutability":"mutable","name":"guardian","nameLocation":"1854:8:58","nodeType":"VariableDeclaration","scope":21820,"src":"1839:23:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21817,"name":"uint64","nodeType":"ElementaryTypeName","src":"1839:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"1815:48:58"},"src":"1790:74:58"},{"anonymous":false,"documentation":{"id":21821,"nodeType":"StructuredDocumentation","src":"1870:108:58","text":" @dev Grant delay for a given `roleId` will be updated to `delay` when `since` is reached."},"eventSelector":"feb69018ee8b8fd50ea86348f1267d07673379f72cffdeccec63853ee8ce8b48","id":21829,"name":"RoleGrantDelayChanged","nameLocation":"1989:21:58","nodeType":"EventDefinition","parameters":{"id":21828,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21823,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"2026:6:58","nodeType":"VariableDeclaration","scope":21829,"src":"2011:21:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21822,"name":"uint64","nodeType":"ElementaryTypeName","src":"2011:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":21825,"indexed":false,"mutability":"mutable","name":"delay","nameLocation":"2041:5:58","nodeType":"VariableDeclaration","scope":21829,"src":"2034:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21824,"name":"uint32","nodeType":"ElementaryTypeName","src":"2034:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":21827,"indexed":false,"mutability":"mutable","name":"since","nameLocation":"2055:5:58","nodeType":"VariableDeclaration","scope":21829,"src":"2048:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":21826,"name":"uint48","nodeType":"ElementaryTypeName","src":"2048:6:58","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2010:51:58"},"src":"1983:79:58"},{"anonymous":false,"documentation":{"id":21830,"nodeType":"StructuredDocumentation","src":"2068:77:58","text":" @dev Target mode is updated (true = closed, false = open)."},"eventSelector":"90d4e7bb7e5d933792b3562e1741306f8be94837e1348dacef9b6f1df56eb138","id":21836,"name":"TargetClosed","nameLocation":"2156:12:58","nodeType":"EventDefinition","parameters":{"id":21835,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21832,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"2185:6:58","nodeType":"VariableDeclaration","scope":21836,"src":"2169:22:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21831,"name":"address","nodeType":"ElementaryTypeName","src":"2169:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21834,"indexed":false,"mutability":"mutable","name":"closed","nameLocation":"2198:6:58","nodeType":"VariableDeclaration","scope":21836,"src":"2193:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":21833,"name":"bool","nodeType":"ElementaryTypeName","src":"2193:4:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2168:37:58"},"src":"2150:56:58"},{"anonymous":false,"documentation":{"id":21837,"nodeType":"StructuredDocumentation","src":"2212:94:58","text":" @dev Role required to invoke `selector` on `target` is updated to `roleId`."},"eventSelector":"9ea6790c7dadfd01c9f8b9762b3682607af2c7e79e05a9f9fdf5580dde949151","id":21845,"name":"TargetFunctionRoleUpdated","nameLocation":"2317:25:58","nodeType":"EventDefinition","parameters":{"id":21844,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21839,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"2359:6:58","nodeType":"VariableDeclaration","scope":21845,"src":"2343:22:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21838,"name":"address","nodeType":"ElementaryTypeName","src":"2343:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21841,"indexed":false,"mutability":"mutable","name":"selector","nameLocation":"2374:8:58","nodeType":"VariableDeclaration","scope":21845,"src":"2367:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":21840,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2367:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":21843,"indexed":true,"mutability":"mutable","name":"roleId","nameLocation":"2399:6:58","nodeType":"VariableDeclaration","scope":21845,"src":"2384:21:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21842,"name":"uint64","nodeType":"ElementaryTypeName","src":"2384:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"2342:64:58"},"src":"2311:96:58"},{"anonymous":false,"documentation":{"id":21846,"nodeType":"StructuredDocumentation","src":"2413:108:58","text":" @dev Admin delay for a given `target` will be updated to `delay` when `since` is reached."},"eventSelector":"a56b76017453f399ec2327ba00375dbfb1fd070ff854341ad6191e6a2e2de19c","id":21854,"name":"TargetAdminDelayUpdated","nameLocation":"2532:23:58","nodeType":"EventDefinition","parameters":{"id":21853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21848,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"2572:6:58","nodeType":"VariableDeclaration","scope":21854,"src":"2556:22:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21847,"name":"address","nodeType":"ElementaryTypeName","src":"2556:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21850,"indexed":false,"mutability":"mutable","name":"delay","nameLocation":"2587:5:58","nodeType":"VariableDeclaration","scope":21854,"src":"2580:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21849,"name":"uint32","nodeType":"ElementaryTypeName","src":"2580:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":21852,"indexed":false,"mutability":"mutable","name":"since","nameLocation":"2601:5:58","nodeType":"VariableDeclaration","scope":21854,"src":"2594:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":21851,"name":"uint48","nodeType":"ElementaryTypeName","src":"2594:6:58","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2555:52:58"},"src":"2526:82:58"},{"errorSelector":"813e9459","id":21858,"name":"AccessManagerAlreadyScheduled","nameLocation":"2620:29:58","nodeType":"ErrorDefinition","parameters":{"id":21857,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21856,"mutability":"mutable","name":"operationId","nameLocation":"2658:11:58","nodeType":"VariableDeclaration","scope":21858,"src":"2650:19:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":21855,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2650:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2649:21:58"},"src":"2614:57:58"},{"errorSelector":"60a299b0","id":21862,"name":"AccessManagerNotScheduled","nameLocation":"2682:25:58","nodeType":"ErrorDefinition","parameters":{"id":21861,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21860,"mutability":"mutable","name":"operationId","nameLocation":"2716:11:58","nodeType":"VariableDeclaration","scope":21862,"src":"2708:19:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":21859,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2708:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2707:21:58"},"src":"2676:53:58"},{"errorSelector":"18cb6b7a","id":21866,"name":"AccessManagerNotReady","nameLocation":"2740:21:58","nodeType":"ErrorDefinition","parameters":{"id":21865,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21864,"mutability":"mutable","name":"operationId","nameLocation":"2770:11:58","nodeType":"VariableDeclaration","scope":21866,"src":"2762:19:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":21863,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2762:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2761:21:58"},"src":"2734:49:58"},{"errorSelector":"78a5d6e4","id":21870,"name":"AccessManagerExpired","nameLocation":"2794:20:58","nodeType":"ErrorDefinition","parameters":{"id":21869,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21868,"mutability":"mutable","name":"operationId","nameLocation":"2823:11:58","nodeType":"VariableDeclaration","scope":21870,"src":"2815:19:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":21867,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2815:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2814:21:58"},"src":"2788:48:58"},{"errorSelector":"1871a90c","id":21874,"name":"AccessManagerLockedRole","nameLocation":"2847:23:58","nodeType":"ErrorDefinition","parameters":{"id":21873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21872,"mutability":"mutable","name":"roleId","nameLocation":"2878:6:58","nodeType":"VariableDeclaration","scope":21874,"src":"2871:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21871,"name":"uint64","nodeType":"ElementaryTypeName","src":"2871:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"2870:15:58"},"src":"2841:45:58"},{"errorSelector":"5f159e63","id":21876,"name":"AccessManagerBadConfirmation","nameLocation":"2897:28:58","nodeType":"ErrorDefinition","parameters":{"id":21875,"nodeType":"ParameterList","parameters":[],"src":"2925:2:58"},"src":"2891:37:58"},{"errorSelector":"f07e038f","id":21882,"name":"AccessManagerUnauthorizedAccount","nameLocation":"2939:32:58","nodeType":"ErrorDefinition","parameters":{"id":21881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21878,"mutability":"mutable","name":"msgsender","nameLocation":"2980:9:58","nodeType":"VariableDeclaration","scope":21882,"src":"2972:17:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21877,"name":"address","nodeType":"ElementaryTypeName","src":"2972:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21880,"mutability":"mutable","name":"roleId","nameLocation":"2998:6:58","nodeType":"VariableDeclaration","scope":21882,"src":"2991:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21879,"name":"uint64","nodeType":"ElementaryTypeName","src":"2991:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"2971:34:58"},"src":"2933:73:58"},{"errorSelector":"81c6f24b","id":21890,"name":"AccessManagerUnauthorizedCall","nameLocation":"3017:29:58","nodeType":"ErrorDefinition","parameters":{"id":21889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21884,"mutability":"mutable","name":"caller","nameLocation":"3055:6:58","nodeType":"VariableDeclaration","scope":21890,"src":"3047:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21883,"name":"address","nodeType":"ElementaryTypeName","src":"3047:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21886,"mutability":"mutable","name":"target","nameLocation":"3071:6:58","nodeType":"VariableDeclaration","scope":21890,"src":"3063:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21885,"name":"address","nodeType":"ElementaryTypeName","src":"3063:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21888,"mutability":"mutable","name":"selector","nameLocation":"3086:8:58","nodeType":"VariableDeclaration","scope":21890,"src":"3079:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":21887,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3079:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3046:49:58"},"src":"3011:85:58"},{"errorSelector":"320ff748","id":21894,"name":"AccessManagerUnauthorizedConsume","nameLocation":"3107:32:58","nodeType":"ErrorDefinition","parameters":{"id":21893,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21892,"mutability":"mutable","name":"target","nameLocation":"3148:6:58","nodeType":"VariableDeclaration","scope":21894,"src":"3140:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21891,"name":"address","nodeType":"ElementaryTypeName","src":"3140:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3139:16:58"},"src":"3101:55:58"},{"errorSelector":"3fe2751c","id":21904,"name":"AccessManagerUnauthorizedCancel","nameLocation":"3167:31:58","nodeType":"ErrorDefinition","parameters":{"id":21903,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21896,"mutability":"mutable","name":"msgsender","nameLocation":"3207:9:58","nodeType":"VariableDeclaration","scope":21904,"src":"3199:17:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21895,"name":"address","nodeType":"ElementaryTypeName","src":"3199:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21898,"mutability":"mutable","name":"caller","nameLocation":"3226:6:58","nodeType":"VariableDeclaration","scope":21904,"src":"3218:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21897,"name":"address","nodeType":"ElementaryTypeName","src":"3218:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21900,"mutability":"mutable","name":"target","nameLocation":"3242:6:58","nodeType":"VariableDeclaration","scope":21904,"src":"3234:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21899,"name":"address","nodeType":"ElementaryTypeName","src":"3234:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21902,"mutability":"mutable","name":"selector","nameLocation":"3257:8:58","nodeType":"VariableDeclaration","scope":21904,"src":"3250:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":21901,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3250:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3198:68:58"},"src":"3161:106:58"},{"errorSelector":"0813ada2","id":21908,"name":"AccessManagerInvalidInitialAdmin","nameLocation":"3278:32:58","nodeType":"ErrorDefinition","parameters":{"id":21907,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21906,"mutability":"mutable","name":"initialAdmin","nameLocation":"3319:12:58","nodeType":"VariableDeclaration","scope":21908,"src":"3311:20:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21905,"name":"address","nodeType":"ElementaryTypeName","src":"3311:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3310:22:58"},"src":"3272:61:58"},{"documentation":{"id":21909,"nodeType":"StructuredDocumentation","src":"3339:1391:58","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 `allowed` 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":21922,"implemented":false,"kind":"function","modifiers":[],"name":"canCall","nameLocation":"4744:7:58","nodeType":"FunctionDefinition","parameters":{"id":21916,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21911,"mutability":"mutable","name":"caller","nameLocation":"4769:6:58","nodeType":"VariableDeclaration","scope":21922,"src":"4761:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21910,"name":"address","nodeType":"ElementaryTypeName","src":"4761:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21913,"mutability":"mutable","name":"target","nameLocation":"4793:6:58","nodeType":"VariableDeclaration","scope":21922,"src":"4785:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21912,"name":"address","nodeType":"ElementaryTypeName","src":"4785:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21915,"mutability":"mutable","name":"selector","nameLocation":"4816:8:58","nodeType":"VariableDeclaration","scope":21922,"src":"4809:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":21914,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4809:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"4751:79:58"},"returnParameters":{"id":21921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21918,"mutability":"mutable","name":"allowed","nameLocation":"4859:7:58","nodeType":"VariableDeclaration","scope":21922,"src":"4854:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":21917,"name":"bool","nodeType":"ElementaryTypeName","src":"4854:4:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":21920,"mutability":"mutable","name":"delay","nameLocation":"4875:5:58","nodeType":"VariableDeclaration","scope":21922,"src":"4868:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21919,"name":"uint32","nodeType":"ElementaryTypeName","src":"4868:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4853:28:58"},"scope":22178,"src":"4735:147:58","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":21923,"nodeType":"StructuredDocumentation","src":"4888:252:58","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":21928,"implemented":false,"kind":"function","modifiers":[],"name":"expiration","nameLocation":"5154:10:58","nodeType":"FunctionDefinition","parameters":{"id":21924,"nodeType":"ParameterList","parameters":[],"src":"5164:2:58"},"returnParameters":{"id":21927,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21926,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21928,"src":"5190:6:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21925,"name":"uint32","nodeType":"ElementaryTypeName","src":"5190:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"5189:8:58"},"scope":22178,"src":"5145:53:58","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":21929,"nodeType":"StructuredDocumentation","src":"5204:241:58","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 event of an\n accidental increase). Defaults to 5 days."},"functionSelector":"cc1b6c81","id":21934,"implemented":false,"kind":"function","modifiers":[],"name":"minSetback","nameLocation":"5459:10:58","nodeType":"FunctionDefinition","parameters":{"id":21930,"nodeType":"ParameterList","parameters":[],"src":"5469:2:58"},"returnParameters":{"id":21933,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21932,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21934,"src":"5495:6:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21931,"name":"uint32","nodeType":"ElementaryTypeName","src":"5495:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"5494:8:58"},"scope":22178,"src":"5450:53:58","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":21935,"nodeType":"StructuredDocumentation","src":"5509:243:58","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":21942,"implemented":false,"kind":"function","modifiers":[],"name":"isTargetClosed","nameLocation":"5766:14:58","nodeType":"FunctionDefinition","parameters":{"id":21938,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21937,"mutability":"mutable","name":"target","nameLocation":"5789:6:58","nodeType":"VariableDeclaration","scope":21942,"src":"5781:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21936,"name":"address","nodeType":"ElementaryTypeName","src":"5781:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5780:16:58"},"returnParameters":{"id":21941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21940,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21942,"src":"5820:4:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":21939,"name":"bool","nodeType":"ElementaryTypeName","src":"5820:4:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5819:6:58"},"scope":22178,"src":"5757:69:58","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":21943,"nodeType":"StructuredDocumentation","src":"5832:65:58","text":" @dev Get the role required to call a function."},"functionSelector":"6d5115bd","id":21952,"implemented":false,"kind":"function","modifiers":[],"name":"getTargetFunctionRole","nameLocation":"5911:21:58","nodeType":"FunctionDefinition","parameters":{"id":21948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21945,"mutability":"mutable","name":"target","nameLocation":"5941:6:58","nodeType":"VariableDeclaration","scope":21952,"src":"5933:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21944,"name":"address","nodeType":"ElementaryTypeName","src":"5933:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":21947,"mutability":"mutable","name":"selector","nameLocation":"5956:8:58","nodeType":"VariableDeclaration","scope":21952,"src":"5949:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":21946,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5949:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"5932:33:58"},"returnParameters":{"id":21951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21950,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21952,"src":"5989:6:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21949,"name":"uint64","nodeType":"ElementaryTypeName","src":"5989:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"5988:8:58"},"scope":22178,"src":"5902:95:58","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":21953,"nodeType":"StructuredDocumentation","src":"6003:127:58","text":" @dev Get the admin delay for a target contract. Changes to contract configuration are subject to this delay."},"functionSelector":"4c1da1e2","id":21960,"implemented":false,"kind":"function","modifiers":[],"name":"getTargetAdminDelay","nameLocation":"6144:19:58","nodeType":"FunctionDefinition","parameters":{"id":21956,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21955,"mutability":"mutable","name":"target","nameLocation":"6172:6:58","nodeType":"VariableDeclaration","scope":21960,"src":"6164:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21954,"name":"address","nodeType":"ElementaryTypeName","src":"6164:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6163:16:58"},"returnParameters":{"id":21959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21958,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21960,"src":"6203:6:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21957,"name":"uint32","nodeType":"ElementaryTypeName","src":"6203:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"6202:8:58"},"scope":22178,"src":"6135:76:58","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":21961,"nodeType":"StructuredDocumentation","src":"6217:265:58","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":21968,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleAdmin","nameLocation":"6496:12:58","nodeType":"FunctionDefinition","parameters":{"id":21964,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21963,"mutability":"mutable","name":"roleId","nameLocation":"6516:6:58","nodeType":"VariableDeclaration","scope":21968,"src":"6509:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21962,"name":"uint64","nodeType":"ElementaryTypeName","src":"6509:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6508:15:58"},"returnParameters":{"id":21967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21966,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21968,"src":"6547:6:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21965,"name":"uint64","nodeType":"ElementaryTypeName","src":"6547:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6546:8:58"},"scope":22178,"src":"6487:68:58","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":21969,"nodeType":"StructuredDocumentation","src":"6561:185:58","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":21976,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleGuardian","nameLocation":"6760:15:58","nodeType":"FunctionDefinition","parameters":{"id":21972,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21971,"mutability":"mutable","name":"roleId","nameLocation":"6783:6:58","nodeType":"VariableDeclaration","scope":21976,"src":"6776:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21970,"name":"uint64","nodeType":"ElementaryTypeName","src":"6776:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6775:15:58"},"returnParameters":{"id":21975,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21974,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21976,"src":"6814:6:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21973,"name":"uint64","nodeType":"ElementaryTypeName","src":"6814:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6813:8:58"},"scope":22178,"src":"6751:71:58","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":21977,"nodeType":"StructuredDocumentation","src":"6828:286:58","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":21984,"implemented":false,"kind":"function","modifiers":[],"name":"getRoleGrantDelay","nameLocation":"7128:17:58","nodeType":"FunctionDefinition","parameters":{"id":21980,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21979,"mutability":"mutable","name":"roleId","nameLocation":"7153:6:58","nodeType":"VariableDeclaration","scope":21984,"src":"7146:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21978,"name":"uint64","nodeType":"ElementaryTypeName","src":"7146:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"7145:15:58"},"returnParameters":{"id":21983,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21982,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":21984,"src":"7184:6:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21981,"name":"uint32","nodeType":"ElementaryTypeName","src":"7184:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"7183:8:58"},"scope":22178,"src":"7119:73:58","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":21985,"nodeType":"StructuredDocumentation","src":"7198:600:58","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 operations 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":22000,"implemented":false,"kind":"function","modifiers":[],"name":"getAccess","nameLocation":"7812:9:58","nodeType":"FunctionDefinition","parameters":{"id":21990,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21987,"mutability":"mutable","name":"roleId","nameLocation":"7838:6:58","nodeType":"VariableDeclaration","scope":22000,"src":"7831:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":21986,"name":"uint64","nodeType":"ElementaryTypeName","src":"7831:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":21989,"mutability":"mutable","name":"account","nameLocation":"7862:7:58","nodeType":"VariableDeclaration","scope":22000,"src":"7854:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21988,"name":"address","nodeType":"ElementaryTypeName","src":"7854:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7821:54:58"},"returnParameters":{"id":21999,"nodeType":"ParameterList","parameters":[{"constant":false,"id":21992,"mutability":"mutable","name":"since","nameLocation":"7906:5:58","nodeType":"VariableDeclaration","scope":22000,"src":"7899:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":21991,"name":"uint48","nodeType":"ElementaryTypeName","src":"7899:6:58","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"},{"constant":false,"id":21994,"mutability":"mutable","name":"currentDelay","nameLocation":"7920:12:58","nodeType":"VariableDeclaration","scope":22000,"src":"7913:19:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21993,"name":"uint32","nodeType":"ElementaryTypeName","src":"7913:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":21996,"mutability":"mutable","name":"pendingDelay","nameLocation":"7941:12:58","nodeType":"VariableDeclaration","scope":22000,"src":"7934:19:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":21995,"name":"uint32","nodeType":"ElementaryTypeName","src":"7934:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":21998,"mutability":"mutable","name":"effect","nameLocation":"7962:6:58","nodeType":"VariableDeclaration","scope":22000,"src":"7955:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":21997,"name":"uint48","nodeType":"ElementaryTypeName","src":"7955:6:58","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"7898:71:58"},"scope":22178,"src":"7803:167:58","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22001,"nodeType":"StructuredDocumentation","src":"7976:230:58","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":22012,"implemented":false,"kind":"function","modifiers":[],"name":"hasRole","nameLocation":"8220:7:58","nodeType":"FunctionDefinition","parameters":{"id":22006,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22003,"mutability":"mutable","name":"roleId","nameLocation":"8235:6:58","nodeType":"VariableDeclaration","scope":22012,"src":"8228:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":22002,"name":"uint64","nodeType":"ElementaryTypeName","src":"8228:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":22005,"mutability":"mutable","name":"account","nameLocation":"8251:7:58","nodeType":"VariableDeclaration","scope":22012,"src":"8243:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22004,"name":"address","nodeType":"ElementaryTypeName","src":"8243:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8227:32:58"},"returnParameters":{"id":22011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22008,"mutability":"mutable","name":"isMember","nameLocation":"8288:8:58","nodeType":"VariableDeclaration","scope":22012,"src":"8283:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":22007,"name":"bool","nodeType":"ElementaryTypeName","src":"8283:4:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":22010,"mutability":"mutable","name":"executionDelay","nameLocation":"8305:14:58","nodeType":"VariableDeclaration","scope":22012,"src":"8298:21:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":22009,"name":"uint32","nodeType":"ElementaryTypeName","src":"8298:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"8282:38:58"},"scope":22178,"src":"8211:110:58","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22013,"nodeType":"StructuredDocumentation","src":"8327:208:58","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":22020,"implemented":false,"kind":"function","modifiers":[],"name":"labelRole","nameLocation":"8549:9:58","nodeType":"FunctionDefinition","parameters":{"id":22018,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22015,"mutability":"mutable","name":"roleId","nameLocation":"8566:6:58","nodeType":"VariableDeclaration","scope":22020,"src":"8559:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":22014,"name":"uint64","nodeType":"ElementaryTypeName","src":"8559:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":22017,"mutability":"mutable","name":"label","nameLocation":"8590:5:58","nodeType":"VariableDeclaration","scope":22020,"src":"8574:21:58","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":22016,"name":"string","nodeType":"ElementaryTypeName","src":"8574:6:58","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8558:38:58"},"returnParameters":{"id":22019,"nodeType":"ParameterList","parameters":[],"src":"8605:0:58"},"scope":22178,"src":"8540:66:58","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22021,"nodeType":"StructuredDocumentation","src":"8612:1222:58","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":22030,"implemented":false,"kind":"function","modifiers":[],"name":"grantRole","nameLocation":"9848:9:58","nodeType":"FunctionDefinition","parameters":{"id":22028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22023,"mutability":"mutable","name":"roleId","nameLocation":"9865:6:58","nodeType":"VariableDeclaration","scope":22030,"src":"9858:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":22022,"name":"uint64","nodeType":"ElementaryTypeName","src":"9858:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":22025,"mutability":"mutable","name":"account","nameLocation":"9881:7:58","nodeType":"VariableDeclaration","scope":22030,"src":"9873:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22024,"name":"address","nodeType":"ElementaryTypeName","src":"9873:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22027,"mutability":"mutable","name":"executionDelay","nameLocation":"9897:14:58","nodeType":"VariableDeclaration","scope":22030,"src":"9890:21:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":22026,"name":"uint32","nodeType":"ElementaryTypeName","src":"9890:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"9857:55:58"},"returnParameters":{"id":22029,"nodeType":"ParameterList","parameters":[],"src":"9921:0:58"},"scope":22178,"src":"9839:83:58","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22031,"nodeType":"StructuredDocumentation","src":"9928:377:58","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":22038,"implemented":false,"kind":"function","modifiers":[],"name":"revokeRole","nameLocation":"10319:10:58","nodeType":"FunctionDefinition","parameters":{"id":22036,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22033,"mutability":"mutable","name":"roleId","nameLocation":"10337:6:58","nodeType":"VariableDeclaration","scope":22038,"src":"10330:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":22032,"name":"uint64","nodeType":"ElementaryTypeName","src":"10330:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":22035,"mutability":"mutable","name":"account","nameLocation":"10353:7:58","nodeType":"VariableDeclaration","scope":22038,"src":"10345:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22034,"name":"address","nodeType":"ElementaryTypeName","src":"10345:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10329:32:58"},"returnParameters":{"id":22037,"nodeType":"ParameterList","parameters":[],"src":"10370:0:58"},"scope":22178,"src":"10310:61:58","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22039,"nodeType":"StructuredDocumentation","src":"10377:317:58","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":22046,"implemented":false,"kind":"function","modifiers":[],"name":"renounceRole","nameLocation":"10708:12:58","nodeType":"FunctionDefinition","parameters":{"id":22044,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22041,"mutability":"mutable","name":"roleId","nameLocation":"10728:6:58","nodeType":"VariableDeclaration","scope":22046,"src":"10721:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":22040,"name":"uint64","nodeType":"ElementaryTypeName","src":"10721:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":22043,"mutability":"mutable","name":"callerConfirmation","nameLocation":"10744:18:58","nodeType":"VariableDeclaration","scope":22046,"src":"10736:26:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22042,"name":"address","nodeType":"ElementaryTypeName","src":"10736:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10720:43:58"},"returnParameters":{"id":22045,"nodeType":"ParameterList","parameters":[],"src":"10772:0:58"},"scope":22178,"src":"10699:74:58","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22047,"nodeType":"StructuredDocumentation","src":"10779:184:58","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":22054,"implemented":false,"kind":"function","modifiers":[],"name":"setRoleAdmin","nameLocation":"10977:12:58","nodeType":"FunctionDefinition","parameters":{"id":22052,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22049,"mutability":"mutable","name":"roleId","nameLocation":"10997:6:58","nodeType":"VariableDeclaration","scope":22054,"src":"10990:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":22048,"name":"uint64","nodeType":"ElementaryTypeName","src":"10990:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":22051,"mutability":"mutable","name":"admin","nameLocation":"11012:5:58","nodeType":"VariableDeclaration","scope":22054,"src":"11005:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":22050,"name":"uint64","nodeType":"ElementaryTypeName","src":"11005:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"10989:29:58"},"returnParameters":{"id":22053,"nodeType":"ParameterList","parameters":[],"src":"11027:0:58"},"scope":22178,"src":"10968:60:58","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22055,"nodeType":"StructuredDocumentation","src":"11034:190:58","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":22062,"implemented":false,"kind":"function","modifiers":[],"name":"setRoleGuardian","nameLocation":"11238:15:58","nodeType":"FunctionDefinition","parameters":{"id":22060,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22057,"mutability":"mutable","name":"roleId","nameLocation":"11261:6:58","nodeType":"VariableDeclaration","scope":22062,"src":"11254:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":22056,"name":"uint64","nodeType":"ElementaryTypeName","src":"11254:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":22059,"mutability":"mutable","name":"guardian","nameLocation":"11276:8:58","nodeType":"VariableDeclaration","scope":22062,"src":"11269:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":22058,"name":"uint64","nodeType":"ElementaryTypeName","src":"11269:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"11253:32:58"},"returnParameters":{"id":22061,"nodeType":"ParameterList","parameters":[],"src":"11294:0:58"},"scope":22178,"src":"11229:66:58","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22063,"nodeType":"StructuredDocumentation","src":"11301:196:58","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":22070,"implemented":false,"kind":"function","modifiers":[],"name":"setGrantDelay","nameLocation":"11511:13:58","nodeType":"FunctionDefinition","parameters":{"id":22068,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22065,"mutability":"mutable","name":"roleId","nameLocation":"11532:6:58","nodeType":"VariableDeclaration","scope":22070,"src":"11525:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":22064,"name":"uint64","nodeType":"ElementaryTypeName","src":"11525:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":22067,"mutability":"mutable","name":"newDelay","nameLocation":"11547:8:58","nodeType":"VariableDeclaration","scope":22070,"src":"11540:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":22066,"name":"uint32","nodeType":"ElementaryTypeName","src":"11540:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"11524:32:58"},"returnParameters":{"id":22069,"nodeType":"ParameterList","parameters":[],"src":"11565:0:58"},"scope":22178,"src":"11502:64:58","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22071,"nodeType":"StructuredDocumentation","src":"11572:267:58","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":22081,"implemented":false,"kind":"function","modifiers":[],"name":"setTargetFunctionRole","nameLocation":"11853:21:58","nodeType":"FunctionDefinition","parameters":{"id":22079,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22073,"mutability":"mutable","name":"target","nameLocation":"11883:6:58","nodeType":"VariableDeclaration","scope":22081,"src":"11875:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22072,"name":"address","nodeType":"ElementaryTypeName","src":"11875:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22076,"mutability":"mutable","name":"selectors","nameLocation":"11909:9:58","nodeType":"VariableDeclaration","scope":22081,"src":"11891:27:58","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_calldata_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":22074,"name":"bytes4","nodeType":"ElementaryTypeName","src":"11891:6:58","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":22075,"nodeType":"ArrayTypeName","src":"11891:8:58","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"},{"constant":false,"id":22078,"mutability":"mutable","name":"roleId","nameLocation":"11927:6:58","nodeType":"VariableDeclaration","scope":22081,"src":"11920:13:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":22077,"name":"uint64","nodeType":"ElementaryTypeName","src":"11920:6:58","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"11874:60:58"},"returnParameters":{"id":22080,"nodeType":"ParameterList","parameters":[],"src":"11943:0:58"},"scope":22178,"src":"11844:100:58","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22082,"nodeType":"StructuredDocumentation","src":"11950:229:58","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":22089,"implemented":false,"kind":"function","modifiers":[],"name":"setTargetAdminDelay","nameLocation":"12193:19:58","nodeType":"FunctionDefinition","parameters":{"id":22087,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22084,"mutability":"mutable","name":"target","nameLocation":"12221:6:58","nodeType":"VariableDeclaration","scope":22089,"src":"12213:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22083,"name":"address","nodeType":"ElementaryTypeName","src":"12213:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22086,"mutability":"mutable","name":"newDelay","nameLocation":"12236:8:58","nodeType":"VariableDeclaration","scope":22089,"src":"12229:15:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":22085,"name":"uint32","nodeType":"ElementaryTypeName","src":"12229:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"12212:33:58"},"returnParameters":{"id":22088,"nodeType":"ParameterList","parameters":[],"src":"12254:0:58"},"scope":22178,"src":"12184:71:58","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22090,"nodeType":"StructuredDocumentation","src":"12261:291:58","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":22097,"implemented":false,"kind":"function","modifiers":[],"name":"setTargetClosed","nameLocation":"12566:15:58","nodeType":"FunctionDefinition","parameters":{"id":22095,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22092,"mutability":"mutable","name":"target","nameLocation":"12590:6:58","nodeType":"VariableDeclaration","scope":22097,"src":"12582:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22091,"name":"address","nodeType":"ElementaryTypeName","src":"12582:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22094,"mutability":"mutable","name":"closed","nameLocation":"12603:6:58","nodeType":"VariableDeclaration","scope":22097,"src":"12598:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":22093,"name":"bool","nodeType":"ElementaryTypeName","src":"12598:4:58","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12581:29:58"},"returnParameters":{"id":22096,"nodeType":"ParameterList","parameters":[],"src":"12619:0:58"},"scope":22178,"src":"12557:63:58","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22098,"nodeType":"StructuredDocumentation","src":"12626:209:58","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":22105,"implemented":false,"kind":"function","modifiers":[],"name":"getSchedule","nameLocation":"12849:11:58","nodeType":"FunctionDefinition","parameters":{"id":22101,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22100,"mutability":"mutable","name":"id","nameLocation":"12869:2:58","nodeType":"VariableDeclaration","scope":22105,"src":"12861:10:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":22099,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12861:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"12860:12:58"},"returnParameters":{"id":22104,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22103,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22105,"src":"12896:6:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":22102,"name":"uint48","nodeType":"ElementaryTypeName","src":"12896:6:58","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"12895:8:58"},"scope":22178,"src":"12840:64:58","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22106,"nodeType":"StructuredDocumentation","src":"12910:152:58","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":22113,"implemented":false,"kind":"function","modifiers":[],"name":"getNonce","nameLocation":"13076:8:58","nodeType":"FunctionDefinition","parameters":{"id":22109,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22108,"mutability":"mutable","name":"id","nameLocation":"13093:2:58","nodeType":"VariableDeclaration","scope":22113,"src":"13085:10:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":22107,"name":"bytes32","nodeType":"ElementaryTypeName","src":"13085:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"13084:12:58"},"returnParameters":{"id":22112,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22111,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22113,"src":"13120:6:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":22110,"name":"uint32","nodeType":"ElementaryTypeName","src":"13120:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"13119:8:58"},"scope":22178,"src":"13067:61:58","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22114,"nodeType":"StructuredDocumentation","src":"13134:1068:58","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":22127,"implemented":false,"kind":"function","modifiers":[],"name":"schedule","nameLocation":"14216:8:58","nodeType":"FunctionDefinition","parameters":{"id":22121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22116,"mutability":"mutable","name":"target","nameLocation":"14242:6:58","nodeType":"VariableDeclaration","scope":22127,"src":"14234:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22115,"name":"address","nodeType":"ElementaryTypeName","src":"14234:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22118,"mutability":"mutable","name":"data","nameLocation":"14273:4:58","nodeType":"VariableDeclaration","scope":22127,"src":"14258:19:58","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":22117,"name":"bytes","nodeType":"ElementaryTypeName","src":"14258:5:58","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":22120,"mutability":"mutable","name":"when","nameLocation":"14294:4:58","nodeType":"VariableDeclaration","scope":22127,"src":"14287:11:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":22119,"name":"uint48","nodeType":"ElementaryTypeName","src":"14287:6:58","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"14224:80:58"},"returnParameters":{"id":22126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22123,"mutability":"mutable","name":"operationId","nameLocation":"14331:11:58","nodeType":"VariableDeclaration","scope":22127,"src":"14323:19:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":22122,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14323:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":22125,"mutability":"mutable","name":"nonce","nameLocation":"14351:5:58","nodeType":"VariableDeclaration","scope":22127,"src":"14344:12:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":22124,"name":"uint32","nodeType":"ElementaryTypeName","src":"14344:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"14322:35:58"},"scope":22178,"src":"14207:151:58","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22128,"nodeType":"StructuredDocumentation","src":"14364:451:58","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":22137,"implemented":false,"kind":"function","modifiers":[],"name":"execute","nameLocation":"14829:7:58","nodeType":"FunctionDefinition","parameters":{"id":22133,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22130,"mutability":"mutable","name":"target","nameLocation":"14845:6:58","nodeType":"VariableDeclaration","scope":22137,"src":"14837:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22129,"name":"address","nodeType":"ElementaryTypeName","src":"14837:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22132,"mutability":"mutable","name":"data","nameLocation":"14868:4:58","nodeType":"VariableDeclaration","scope":22137,"src":"14853:19:58","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":22131,"name":"bytes","nodeType":"ElementaryTypeName","src":"14853:5:58","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"14836:37:58"},"returnParameters":{"id":22136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22135,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22137,"src":"14900:6:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":22134,"name":"uint32","nodeType":"ElementaryTypeName","src":"14900:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"14899:8:58"},"scope":22178,"src":"14820:88:58","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":22138,"nodeType":"StructuredDocumentation","src":"14914:339:58","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":22149,"implemented":false,"kind":"function","modifiers":[],"name":"cancel","nameLocation":"15267:6:58","nodeType":"FunctionDefinition","parameters":{"id":22145,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22140,"mutability":"mutable","name":"caller","nameLocation":"15282:6:58","nodeType":"VariableDeclaration","scope":22149,"src":"15274:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22139,"name":"address","nodeType":"ElementaryTypeName","src":"15274:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22142,"mutability":"mutable","name":"target","nameLocation":"15298:6:58","nodeType":"VariableDeclaration","scope":22149,"src":"15290:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22141,"name":"address","nodeType":"ElementaryTypeName","src":"15290:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22144,"mutability":"mutable","name":"data","nameLocation":"15321:4:58","nodeType":"VariableDeclaration","scope":22149,"src":"15306:19:58","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":22143,"name":"bytes","nodeType":"ElementaryTypeName","src":"15306:5:58","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15273:53:58"},"returnParameters":{"id":22148,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22147,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22149,"src":"15345:6:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":22146,"name":"uint32","nodeType":"ElementaryTypeName","src":"15345:6:58","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15344:8:58"},"scope":22178,"src":"15258:95:58","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22150,"nodeType":"StructuredDocumentation","src":"15359:435:58","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 contracts 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":22157,"implemented":false,"kind":"function","modifiers":[],"name":"consumeScheduledOp","nameLocation":"15808:18:58","nodeType":"FunctionDefinition","parameters":{"id":22155,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22152,"mutability":"mutable","name":"caller","nameLocation":"15835:6:58","nodeType":"VariableDeclaration","scope":22157,"src":"15827:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22151,"name":"address","nodeType":"ElementaryTypeName","src":"15827:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22154,"mutability":"mutable","name":"data","nameLocation":"15858:4:58","nodeType":"VariableDeclaration","scope":22157,"src":"15843:19:58","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":22153,"name":"bytes","nodeType":"ElementaryTypeName","src":"15843:5:58","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15826:37:58"},"returnParameters":{"id":22156,"nodeType":"ParameterList","parameters":[],"src":"15872:0:58"},"scope":22178,"src":"15799:74:58","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22158,"nodeType":"StructuredDocumentation","src":"15879:64:58","text":" @dev Hashing function for delayed operations."},"functionSelector":"abd9bd2a","id":22169,"implemented":false,"kind":"function","modifiers":[],"name":"hashOperation","nameLocation":"15957:13:58","nodeType":"FunctionDefinition","parameters":{"id":22165,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22160,"mutability":"mutable","name":"caller","nameLocation":"15979:6:58","nodeType":"VariableDeclaration","scope":22169,"src":"15971:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22159,"name":"address","nodeType":"ElementaryTypeName","src":"15971:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22162,"mutability":"mutable","name":"target","nameLocation":"15995:6:58","nodeType":"VariableDeclaration","scope":22169,"src":"15987:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22161,"name":"address","nodeType":"ElementaryTypeName","src":"15987:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22164,"mutability":"mutable","name":"data","nameLocation":"16018:4:58","nodeType":"VariableDeclaration","scope":22169,"src":"16003:19:58","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":22163,"name":"bytes","nodeType":"ElementaryTypeName","src":"16003:5:58","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15970:53:58"},"returnParameters":{"id":22168,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22167,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22169,"src":"16047:7:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":22166,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16047:7:58","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16046:9:58"},"scope":22178,"src":"15948:108:58","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22170,"nodeType":"StructuredDocumentation","src":"16062:169:58","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":22177,"implemented":false,"kind":"function","modifiers":[],"name":"updateAuthority","nameLocation":"16245:15:58","nodeType":"FunctionDefinition","parameters":{"id":22175,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22172,"mutability":"mutable","name":"target","nameLocation":"16269:6:58","nodeType":"VariableDeclaration","scope":22177,"src":"16261:14:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22171,"name":"address","nodeType":"ElementaryTypeName","src":"16261:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22174,"mutability":"mutable","name":"newAuthority","nameLocation":"16285:12:58","nodeType":"VariableDeclaration","scope":22177,"src":"16277:20:58","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22173,"name":"address","nodeType":"ElementaryTypeName","src":"16277:7:58","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"16260:38:58"},"returnParameters":{"id":22176,"nodeType":"ParameterList","parameters":[],"src":"16307:0:58"},"scope":22178,"src":"16236:72:58","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":22179,"src":"143:16167:58","usedErrors":[21858,21862,21866,21870,21874,21876,21882,21890,21894,21904,21908],"usedEvents":[21765,21772,21779,21786,21799,21806,21813,21820,21829,21836,21845,21854]}],"src":"117:16194:58"},"id":58},"@openzeppelin/contracts/interfaces/IERC1363.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1363.sol","exportedSymbols":{"IERC1363":[22260],"IERC165":[33545],"IERC20":[24193]},"id":22261,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":22180,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"107:24:59"},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","file":"./IERC20.sol","id":22182,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22261,"sourceUnit":22290,"src":"133:36:59","symbolAliases":[{"foreign":{"id":22181,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"141:6:59","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","file":"./IERC165.sol","id":22184,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22261,"sourceUnit":22265,"src":"170:38:59","symbolAliases":[{"foreign":{"id":22183,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"178:7:59","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":22186,"name":"IERC20","nameLocations":["590:6:59"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"590:6:59"},"id":22187,"nodeType":"InheritanceSpecifier","src":"590:6:59"},{"baseName":{"id":22188,"name":"IERC165","nameLocations":["598:7:59"],"nodeType":"IdentifierPath","referencedDeclaration":33545,"src":"598:7:59"},"id":22189,"nodeType":"InheritanceSpecifier","src":"598:7:59"}],"canonicalName":"IERC1363","contractDependencies":[],"contractKind":"interface","documentation":{"id":22185,"nodeType":"StructuredDocumentation","src":"210:357:59","text":" @title IERC1363\n @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].\n Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract\n after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction."},"fullyImplemented":false,"id":22260,"linearizedBaseContracts":[22260,33545,24193],"name":"IERC1363","nameLocation":"578:8:59","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":22190,"nodeType":"StructuredDocumentation","src":"1148:370:59","text":" @dev Moves a `value` amount of tokens from the caller's account to `to`\n and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n @param to The address which you want to transfer to.\n @param value The amount of tokens to be transferred.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"1296ee62","id":22199,"implemented":false,"kind":"function","modifiers":[],"name":"transferAndCall","nameLocation":"1532:15:59","nodeType":"FunctionDefinition","parameters":{"id":22195,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22192,"mutability":"mutable","name":"to","nameLocation":"1556:2:59","nodeType":"VariableDeclaration","scope":22199,"src":"1548:10:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22191,"name":"address","nodeType":"ElementaryTypeName","src":"1548:7:59","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22194,"mutability":"mutable","name":"value","nameLocation":"1568:5:59","nodeType":"VariableDeclaration","scope":22199,"src":"1560:13:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22193,"name":"uint256","nodeType":"ElementaryTypeName","src":"1560:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1547:27:59"},"returnParameters":{"id":22198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22197,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22199,"src":"1593:4:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":22196,"name":"bool","nodeType":"ElementaryTypeName","src":"1593:4:59","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1592:6:59"},"scope":22260,"src":"1523:76:59","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22200,"nodeType":"StructuredDocumentation","src":"1605:453:59","text":" @dev Moves a `value` amount of tokens from the caller's account to `to`\n and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n @param to The address which you want to transfer to.\n @param value The amount of tokens to be transferred.\n @param data Additional data with no specified format, sent in call to `to`.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"4000aea0","id":22211,"implemented":false,"kind":"function","modifiers":[],"name":"transferAndCall","nameLocation":"2072:15:59","nodeType":"FunctionDefinition","parameters":{"id":22207,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22202,"mutability":"mutable","name":"to","nameLocation":"2096:2:59","nodeType":"VariableDeclaration","scope":22211,"src":"2088:10:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22201,"name":"address","nodeType":"ElementaryTypeName","src":"2088:7:59","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22204,"mutability":"mutable","name":"value","nameLocation":"2108:5:59","nodeType":"VariableDeclaration","scope":22211,"src":"2100:13:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22203,"name":"uint256","nodeType":"ElementaryTypeName","src":"2100:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22206,"mutability":"mutable","name":"data","nameLocation":"2130:4:59","nodeType":"VariableDeclaration","scope":22211,"src":"2115:19:59","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":22205,"name":"bytes","nodeType":"ElementaryTypeName","src":"2115:5:59","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2087:48:59"},"returnParameters":{"id":22210,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22209,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22211,"src":"2154:4:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":22208,"name":"bool","nodeType":"ElementaryTypeName","src":"2154:4:59","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2153:6:59"},"scope":22260,"src":"2063:97:59","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22212,"nodeType":"StructuredDocumentation","src":"2166:453:59","text":" @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism\n and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n @param from The address which you want to send tokens from.\n @param to The address which you want to transfer to.\n @param value The amount of tokens to be transferred.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"d8fbe994","id":22223,"implemented":false,"kind":"function","modifiers":[],"name":"transferFromAndCall","nameLocation":"2633:19:59","nodeType":"FunctionDefinition","parameters":{"id":22219,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22214,"mutability":"mutable","name":"from","nameLocation":"2661:4:59","nodeType":"VariableDeclaration","scope":22223,"src":"2653:12:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22213,"name":"address","nodeType":"ElementaryTypeName","src":"2653:7:59","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22216,"mutability":"mutable","name":"to","nameLocation":"2675:2:59","nodeType":"VariableDeclaration","scope":22223,"src":"2667:10:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22215,"name":"address","nodeType":"ElementaryTypeName","src":"2667:7:59","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22218,"mutability":"mutable","name":"value","nameLocation":"2687:5:59","nodeType":"VariableDeclaration","scope":22223,"src":"2679:13:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22217,"name":"uint256","nodeType":"ElementaryTypeName","src":"2679:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2652:41:59"},"returnParameters":{"id":22222,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22221,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22223,"src":"2712:4:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":22220,"name":"bool","nodeType":"ElementaryTypeName","src":"2712:4:59","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2711:6:59"},"scope":22260,"src":"2624:94:59","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22224,"nodeType":"StructuredDocumentation","src":"2724:536:59","text":" @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism\n and then calls {IERC1363Receiver-onTransferReceived} on `to`.\n @param from The address which you want to send tokens from.\n @param to The address which you want to transfer to.\n @param value The amount of tokens to be transferred.\n @param data Additional data with no specified format, sent in call to `to`.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"c1d34b89","id":22237,"implemented":false,"kind":"function","modifiers":[],"name":"transferFromAndCall","nameLocation":"3274:19:59","nodeType":"FunctionDefinition","parameters":{"id":22233,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22226,"mutability":"mutable","name":"from","nameLocation":"3302:4:59","nodeType":"VariableDeclaration","scope":22237,"src":"3294:12:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22225,"name":"address","nodeType":"ElementaryTypeName","src":"3294:7:59","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22228,"mutability":"mutable","name":"to","nameLocation":"3316:2:59","nodeType":"VariableDeclaration","scope":22237,"src":"3308:10:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22227,"name":"address","nodeType":"ElementaryTypeName","src":"3308:7:59","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22230,"mutability":"mutable","name":"value","nameLocation":"3328:5:59","nodeType":"VariableDeclaration","scope":22237,"src":"3320:13:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22229,"name":"uint256","nodeType":"ElementaryTypeName","src":"3320:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22232,"mutability":"mutable","name":"data","nameLocation":"3350:4:59","nodeType":"VariableDeclaration","scope":22237,"src":"3335:19:59","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":22231,"name":"bytes","nodeType":"ElementaryTypeName","src":"3335:5:59","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3293:62:59"},"returnParameters":{"id":22236,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22235,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22237,"src":"3374:4:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":22234,"name":"bool","nodeType":"ElementaryTypeName","src":"3374:4:59","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3373:6:59"},"scope":22260,"src":"3265:115:59","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22238,"nodeType":"StructuredDocumentation","src":"3386:390:59","text":" @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\n @param spender The address which will spend the funds.\n @param value The amount of tokens to be spent.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"3177029f","id":22247,"implemented":false,"kind":"function","modifiers":[],"name":"approveAndCall","nameLocation":"3790:14:59","nodeType":"FunctionDefinition","parameters":{"id":22243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22240,"mutability":"mutable","name":"spender","nameLocation":"3813:7:59","nodeType":"VariableDeclaration","scope":22247,"src":"3805:15:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22239,"name":"address","nodeType":"ElementaryTypeName","src":"3805:7:59","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22242,"mutability":"mutable","name":"value","nameLocation":"3830:5:59","nodeType":"VariableDeclaration","scope":22247,"src":"3822:13:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22241,"name":"uint256","nodeType":"ElementaryTypeName","src":"3822:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3804:32:59"},"returnParameters":{"id":22246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22245,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22247,"src":"3855:4:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":22244,"name":"bool","nodeType":"ElementaryTypeName","src":"3855:4:59","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3854:6:59"},"scope":22260,"src":"3781:80:59","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22248,"nodeType":"StructuredDocumentation","src":"3867:478:59","text":" @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\n @param spender The address which will spend the funds.\n @param value The amount of tokens to be spent.\n @param data Additional data with no specified format, sent in call to `spender`.\n @return A boolean value indicating whether the operation succeeded unless throwing."},"functionSelector":"cae9ca51","id":22259,"implemented":false,"kind":"function","modifiers":[],"name":"approveAndCall","nameLocation":"4359:14:59","nodeType":"FunctionDefinition","parameters":{"id":22255,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22250,"mutability":"mutable","name":"spender","nameLocation":"4382:7:59","nodeType":"VariableDeclaration","scope":22259,"src":"4374:15:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22249,"name":"address","nodeType":"ElementaryTypeName","src":"4374:7:59","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22252,"mutability":"mutable","name":"value","nameLocation":"4399:5:59","nodeType":"VariableDeclaration","scope":22259,"src":"4391:13:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22251,"name":"uint256","nodeType":"ElementaryTypeName","src":"4391:7:59","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22254,"mutability":"mutable","name":"data","nameLocation":"4421:4:59","nodeType":"VariableDeclaration","scope":22259,"src":"4406:19:59","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":22253,"name":"bytes","nodeType":"ElementaryTypeName","src":"4406:5:59","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4373:53:59"},"returnParameters":{"id":22258,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22257,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22259,"src":"4445:4:59","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":22256,"name":"bool","nodeType":"ElementaryTypeName","src":"4445:4:59","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4444:6:59"},"scope":22260,"src":"4350:101:59","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":22261,"src":"568:3885:59","usedErrors":[],"usedEvents":[24127,24136]}],"src":"107:4347:59"},"id":59},"@openzeppelin/contracts/interfaces/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","exportedSymbols":{"IERC165":[33545]},"id":22265,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":22262,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"106:25:60"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../utils/introspection/IERC165.sol","id":22264,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22265,"sourceUnit":33546,"src":"133:59:60","symbolAliases":[{"foreign":{"id":22263,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"141:7:60","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"106:87:60"},"id":60},"@openzeppelin/contracts/interfaces/IERC1967.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1967.sol","exportedSymbols":{"IERC1967":[22285]},"id":22286,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":22266,"literals":["solidity",">=","0.4",".11"],"nodeType":"PragmaDirective","src":"107:25:61"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1967","contractDependencies":[],"contractKind":"interface","documentation":{"id":22267,"nodeType":"StructuredDocumentation","src":"134:101:61","text":" @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC."},"fullyImplemented":true,"id":22285,"linearizedBaseContracts":[22285],"name":"IERC1967","nameLocation":"246:8:61","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":22268,"nodeType":"StructuredDocumentation","src":"261:68:61","text":" @dev Emitted when the implementation is upgraded."},"eventSelector":"bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b","id":22272,"name":"Upgraded","nameLocation":"340:8:61","nodeType":"EventDefinition","parameters":{"id":22271,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22270,"indexed":true,"mutability":"mutable","name":"implementation","nameLocation":"365:14:61","nodeType":"VariableDeclaration","scope":22272,"src":"349:30:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22269,"name":"address","nodeType":"ElementaryTypeName","src":"349:7:61","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"348:32:61"},"src":"334:47:61"},{"anonymous":false,"documentation":{"id":22273,"nodeType":"StructuredDocumentation","src":"387:67:61","text":" @dev Emitted when the admin account has changed."},"eventSelector":"7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f","id":22279,"name":"AdminChanged","nameLocation":"465:12:61","nodeType":"EventDefinition","parameters":{"id":22278,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22275,"indexed":false,"mutability":"mutable","name":"previousAdmin","nameLocation":"486:13:61","nodeType":"VariableDeclaration","scope":22279,"src":"478:21:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22274,"name":"address","nodeType":"ElementaryTypeName","src":"478:7:61","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22277,"indexed":false,"mutability":"mutable","name":"newAdmin","nameLocation":"509:8:61","nodeType":"VariableDeclaration","scope":22279,"src":"501:16:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22276,"name":"address","nodeType":"ElementaryTypeName","src":"501:7:61","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"477:41:61"},"src":"459:60:61"},{"anonymous":false,"documentation":{"id":22280,"nodeType":"StructuredDocumentation","src":"525:59:61","text":" @dev Emitted when the beacon is changed."},"eventSelector":"1cf3b03a6cf19fa2baba4df148e9dcabedea7f8a5c07840e207e5c089be95d3e","id":22284,"name":"BeaconUpgraded","nameLocation":"595:14:61","nodeType":"EventDefinition","parameters":{"id":22283,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22282,"indexed":true,"mutability":"mutable","name":"beacon","nameLocation":"626:6:61","nodeType":"VariableDeclaration","scope":22284,"src":"610:22:61","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22281,"name":"address","nodeType":"ElementaryTypeName","src":"610:7:61","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"609:24:61"},"src":"589:45:61"}],"scope":22286,"src":"236:400:61","usedErrors":[],"usedEvents":[22272,22279,22284]}],"src":"107:530:61"},"id":61},"@openzeppelin/contracts/interfaces/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","exportedSymbols":{"IERC20":[24193]},"id":22290,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":22287,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"105:25:62"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../token/ERC20/IERC20.sol","id":22289,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22290,"sourceUnit":24194,"src":"132:49:62","symbolAliases":[{"foreign":{"id":22288,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"140:6:62","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"105:77:62"},"id":62},"@openzeppelin/contracts/interfaces/IERC20Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20Metadata.sol","exportedSymbols":{"IERC20Metadata":[24925]},"id":22294,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":22291,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"113:24:63"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"../token/ERC20/extensions/IERC20Metadata.sol","id":22293,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22294,"sourceUnit":24926,"src":"139:76:63","symbolAliases":[{"foreign":{"id":22292,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"147:14:63","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"113:103:63"},"id":63},"@openzeppelin/contracts/interfaces/IERC4626.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","exportedSymbols":{"IERC20":[24193],"IERC20Metadata":[24925],"IERC4626":[22463]},"id":22464,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":22295,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"107:24:64"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../token/ERC20/IERC20.sol","id":22297,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22464,"sourceUnit":24194,"src":"133:49:64","symbolAliases":[{"foreign":{"id":22296,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"141:6:64","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"../token/ERC20/extensions/IERC20Metadata.sol","id":22299,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22464,"sourceUnit":24926,"src":"183:76:64","symbolAliases":[{"foreign":{"id":22298,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"191:14:64","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":22301,"name":"IERC20","nameLocations":["421:6:64"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"421:6:64"},"id":22302,"nodeType":"InheritanceSpecifier","src":"421:6:64"},{"baseName":{"id":22303,"name":"IERC20Metadata","nameLocations":["429:14:64"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"429:14:64"},"id":22304,"nodeType":"InheritanceSpecifier","src":"429:14:64"}],"canonicalName":"IERC4626","contractDependencies":[],"contractKind":"interface","documentation":{"id":22300,"nodeType":"StructuredDocumentation","src":"261:137:64","text":" @dev Interface of the ERC-4626 \"Tokenized Vault Standard\", as defined in\n https://eips.ethereum.org/EIPS/eip-4626[ERC-4626]."},"fullyImplemented":false,"id":22463,"linearizedBaseContracts":[22463,24925,24193],"name":"IERC4626","nameLocation":"409:8:64","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"eventSelector":"dcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7","id":22314,"name":"Deposit","nameLocation":"456:7:64","nodeType":"EventDefinition","parameters":{"id":22313,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22306,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"480:6:64","nodeType":"VariableDeclaration","scope":22314,"src":"464:22:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22305,"name":"address","nodeType":"ElementaryTypeName","src":"464:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22308,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"504:5:64","nodeType":"VariableDeclaration","scope":22314,"src":"488:21:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22307,"name":"address","nodeType":"ElementaryTypeName","src":"488:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22310,"indexed":false,"mutability":"mutable","name":"assets","nameLocation":"519:6:64","nodeType":"VariableDeclaration","scope":22314,"src":"511:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22309,"name":"uint256","nodeType":"ElementaryTypeName","src":"511:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22312,"indexed":false,"mutability":"mutable","name":"shares","nameLocation":"535:6:64","nodeType":"VariableDeclaration","scope":22314,"src":"527:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22311,"name":"uint256","nodeType":"ElementaryTypeName","src":"527:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"463:79:64"},"src":"450:93:64"},{"anonymous":false,"eventSelector":"fbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db","id":22326,"name":"Withdraw","nameLocation":"555:8:64","nodeType":"EventDefinition","parameters":{"id":22325,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22316,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"589:6:64","nodeType":"VariableDeclaration","scope":22326,"src":"573:22:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22315,"name":"address","nodeType":"ElementaryTypeName","src":"573:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22318,"indexed":true,"mutability":"mutable","name":"receiver","nameLocation":"621:8:64","nodeType":"VariableDeclaration","scope":22326,"src":"605:24:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22317,"name":"address","nodeType":"ElementaryTypeName","src":"605:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22320,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"655:5:64","nodeType":"VariableDeclaration","scope":22326,"src":"639:21:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22319,"name":"address","nodeType":"ElementaryTypeName","src":"639:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22322,"indexed":false,"mutability":"mutable","name":"assets","nameLocation":"678:6:64","nodeType":"VariableDeclaration","scope":22326,"src":"670:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22321,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22324,"indexed":false,"mutability":"mutable","name":"shares","nameLocation":"702:6:64","nodeType":"VariableDeclaration","scope":22326,"src":"694:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22323,"name":"uint256","nodeType":"ElementaryTypeName","src":"694:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"563:151:64"},"src":"549:166:64"},{"documentation":{"id":22327,"nodeType":"StructuredDocumentation","src":"721:207:64","text":" @dev Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing.\n - MUST be an ERC-20 token contract.\n - MUST NOT revert."},"functionSelector":"38d52e0f","id":22332,"implemented":false,"kind":"function","modifiers":[],"name":"asset","nameLocation":"942:5:64","nodeType":"FunctionDefinition","parameters":{"id":22328,"nodeType":"ParameterList","parameters":[],"src":"947:2:64"},"returnParameters":{"id":22331,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22330,"mutability":"mutable","name":"assetTokenAddress","nameLocation":"981:17:64","nodeType":"VariableDeclaration","scope":22332,"src":"973:25:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22329,"name":"address","nodeType":"ElementaryTypeName","src":"973:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"972:27:64"},"scope":22463,"src":"933:67:64","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22333,"nodeType":"StructuredDocumentation","src":"1006:286:64","text":" @dev Returns the total amount of the underlying asset that is “managed” by Vault.\n - SHOULD include any compounding that occurs from yield.\n - MUST be inclusive of any fees that are charged against assets in the Vault.\n - MUST NOT revert."},"functionSelector":"01e1d114","id":22338,"implemented":false,"kind":"function","modifiers":[],"name":"totalAssets","nameLocation":"1306:11:64","nodeType":"FunctionDefinition","parameters":{"id":22334,"nodeType":"ParameterList","parameters":[],"src":"1317:2:64"},"returnParameters":{"id":22337,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22336,"mutability":"mutable","name":"totalManagedAssets","nameLocation":"1351:18:64","nodeType":"VariableDeclaration","scope":22338,"src":"1343:26:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22335,"name":"uint256","nodeType":"ElementaryTypeName","src":"1343:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1342:28:64"},"scope":22463,"src":"1297:74:64","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22339,"nodeType":"StructuredDocumentation","src":"1377:720:64","text":" @dev Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal\n scenario where all the conditions are met.\n - MUST NOT be inclusive of any fees that are charged against assets in the Vault.\n - MUST NOT show any variations depending on the caller.\n - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange.\n - MUST NOT revert.\n NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the\n “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and\n from."},"functionSelector":"c6e6f592","id":22346,"implemented":false,"kind":"function","modifiers":[],"name":"convertToShares","nameLocation":"2111:15:64","nodeType":"FunctionDefinition","parameters":{"id":22342,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22341,"mutability":"mutable","name":"assets","nameLocation":"2135:6:64","nodeType":"VariableDeclaration","scope":22346,"src":"2127:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22340,"name":"uint256","nodeType":"ElementaryTypeName","src":"2127:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2126:16:64"},"returnParameters":{"id":22345,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22344,"mutability":"mutable","name":"shares","nameLocation":"2174:6:64","nodeType":"VariableDeclaration","scope":22346,"src":"2166:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22343,"name":"uint256","nodeType":"ElementaryTypeName","src":"2166:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2165:16:64"},"scope":22463,"src":"2102:80:64","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22347,"nodeType":"StructuredDocumentation","src":"2188:720:64","text":" @dev Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal\n scenario where all the conditions are met.\n - MUST NOT be inclusive of any fees that are charged against assets in the Vault.\n - MUST NOT show any variations depending on the caller.\n - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange.\n - MUST NOT revert.\n NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the\n “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and\n from."},"functionSelector":"07a2d13a","id":22354,"implemented":false,"kind":"function","modifiers":[],"name":"convertToAssets","nameLocation":"2922:15:64","nodeType":"FunctionDefinition","parameters":{"id":22350,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22349,"mutability":"mutable","name":"shares","nameLocation":"2946:6:64","nodeType":"VariableDeclaration","scope":22354,"src":"2938:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22348,"name":"uint256","nodeType":"ElementaryTypeName","src":"2938:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2937:16:64"},"returnParameters":{"id":22353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22352,"mutability":"mutable","name":"assets","nameLocation":"2985:6:64","nodeType":"VariableDeclaration","scope":22354,"src":"2977:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22351,"name":"uint256","nodeType":"ElementaryTypeName","src":"2977:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2976:16:64"},"scope":22463,"src":"2913:80:64","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22355,"nodeType":"StructuredDocumentation","src":"2999:386:64","text":" @dev Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver,\n through a deposit call.\n - MUST return a limited value if receiver is subject to some deposit limit.\n - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited.\n - MUST NOT revert."},"functionSelector":"402d267d","id":22362,"implemented":false,"kind":"function","modifiers":[],"name":"maxDeposit","nameLocation":"3399:10:64","nodeType":"FunctionDefinition","parameters":{"id":22358,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22357,"mutability":"mutable","name":"receiver","nameLocation":"3418:8:64","nodeType":"VariableDeclaration","scope":22362,"src":"3410:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22356,"name":"address","nodeType":"ElementaryTypeName","src":"3410:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3409:18:64"},"returnParameters":{"id":22361,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22360,"mutability":"mutable","name":"maxAssets","nameLocation":"3459:9:64","nodeType":"VariableDeclaration","scope":22362,"src":"3451:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22359,"name":"uint256","nodeType":"ElementaryTypeName","src":"3451:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3450:19:64"},"scope":22463,"src":"3390:80:64","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22363,"nodeType":"StructuredDocumentation","src":"3476:1012:64","text":" @dev Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given\n current on-chain conditions.\n - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit\n   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called\n   in the same transaction.\n - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the\n   deposit would be accepted, regardless if the user has enough tokens approved, etc.\n - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees.\n - MUST NOT revert.\n NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in\n share price or some other type of condition, meaning the depositor will lose assets by depositing."},"functionSelector":"ef8b30f7","id":22370,"implemented":false,"kind":"function","modifiers":[],"name":"previewDeposit","nameLocation":"4502:14:64","nodeType":"FunctionDefinition","parameters":{"id":22366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22365,"mutability":"mutable","name":"assets","nameLocation":"4525:6:64","nodeType":"VariableDeclaration","scope":22370,"src":"4517:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22364,"name":"uint256","nodeType":"ElementaryTypeName","src":"4517:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4516:16:64"},"returnParameters":{"id":22369,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22368,"mutability":"mutable","name":"shares","nameLocation":"4564:6:64","nodeType":"VariableDeclaration","scope":22370,"src":"4556:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22367,"name":"uint256","nodeType":"ElementaryTypeName","src":"4556:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4555:16:64"},"scope":22463,"src":"4493:79:64","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22371,"nodeType":"StructuredDocumentation","src":"4578:673:64","text":" @dev Deposit `assets` underlying tokens and send the corresponding number of vault shares (`shares`) to `receiver`.\n - MUST emit the Deposit event.\n - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n   deposit execution, and are accounted for during deposit.\n - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not\n   approving enough underlying tokens to the Vault contract, etc).\n NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token."},"functionSelector":"6e553f65","id":22380,"implemented":false,"kind":"function","modifiers":[],"name":"deposit","nameLocation":"5265:7:64","nodeType":"FunctionDefinition","parameters":{"id":22376,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22373,"mutability":"mutable","name":"assets","nameLocation":"5281:6:64","nodeType":"VariableDeclaration","scope":22380,"src":"5273:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22372,"name":"uint256","nodeType":"ElementaryTypeName","src":"5273:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22375,"mutability":"mutable","name":"receiver","nameLocation":"5297:8:64","nodeType":"VariableDeclaration","scope":22380,"src":"5289:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22374,"name":"address","nodeType":"ElementaryTypeName","src":"5289:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5272:34:64"},"returnParameters":{"id":22379,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22378,"mutability":"mutable","name":"shares","nameLocation":"5333:6:64","nodeType":"VariableDeclaration","scope":22380,"src":"5325:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22377,"name":"uint256","nodeType":"ElementaryTypeName","src":"5325:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5324:16:64"},"scope":22463,"src":"5256:85:64","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22381,"nodeType":"StructuredDocumentation","src":"5347:341:64","text":" @dev Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call.\n - MUST return a limited value if receiver is subject to some mint limit.\n - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted.\n - MUST NOT revert."},"functionSelector":"c63d75b6","id":22388,"implemented":false,"kind":"function","modifiers":[],"name":"maxMint","nameLocation":"5702:7:64","nodeType":"FunctionDefinition","parameters":{"id":22384,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22383,"mutability":"mutable","name":"receiver","nameLocation":"5718:8:64","nodeType":"VariableDeclaration","scope":22388,"src":"5710:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22382,"name":"address","nodeType":"ElementaryTypeName","src":"5710:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5709:18:64"},"returnParameters":{"id":22387,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22386,"mutability":"mutable","name":"maxShares","nameLocation":"5759:9:64","nodeType":"VariableDeclaration","scope":22388,"src":"5751:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22385,"name":"uint256","nodeType":"ElementaryTypeName","src":"5751:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5750:19:64"},"scope":22463,"src":"5693:77:64","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22389,"nodeType":"StructuredDocumentation","src":"5776:984:64","text":" @dev Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given\n current on-chain conditions.\n - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call\n   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the\n   same transaction.\n - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint\n   would be accepted, regardless if the user has enough tokens approved, etc.\n - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees.\n - MUST NOT revert.\n NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in\n share price or some other type of condition, meaning the depositor will lose assets by minting."},"functionSelector":"b3d7f6b9","id":22396,"implemented":false,"kind":"function","modifiers":[],"name":"previewMint","nameLocation":"6774:11:64","nodeType":"FunctionDefinition","parameters":{"id":22392,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22391,"mutability":"mutable","name":"shares","nameLocation":"6794:6:64","nodeType":"VariableDeclaration","scope":22396,"src":"6786:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22390,"name":"uint256","nodeType":"ElementaryTypeName","src":"6786:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6785:16:64"},"returnParameters":{"id":22395,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22394,"mutability":"mutable","name":"assets","nameLocation":"6833:6:64","nodeType":"VariableDeclaration","scope":22396,"src":"6825:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22393,"name":"uint256","nodeType":"ElementaryTypeName","src":"6825:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6824:16:64"},"scope":22463,"src":"6765:76:64","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22397,"nodeType":"StructuredDocumentation","src":"6847:647:64","text":" @dev Mints exactly `shares` vault shares to `receiver` in exchange for `assets` underlying tokens.\n - MUST emit the Deposit event.\n - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint\n   execution, and are accounted for during mint.\n - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not\n   approving enough underlying tokens to the Vault contract, etc).\n NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token."},"functionSelector":"94bf804d","id":22406,"implemented":false,"kind":"function","modifiers":[],"name":"mint","nameLocation":"7508:4:64","nodeType":"FunctionDefinition","parameters":{"id":22402,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22399,"mutability":"mutable","name":"shares","nameLocation":"7521:6:64","nodeType":"VariableDeclaration","scope":22406,"src":"7513:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22398,"name":"uint256","nodeType":"ElementaryTypeName","src":"7513:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22401,"mutability":"mutable","name":"receiver","nameLocation":"7537:8:64","nodeType":"VariableDeclaration","scope":22406,"src":"7529:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22400,"name":"address","nodeType":"ElementaryTypeName","src":"7529:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7512:34:64"},"returnParameters":{"id":22405,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22404,"mutability":"mutable","name":"assets","nameLocation":"7573:6:64","nodeType":"VariableDeclaration","scope":22406,"src":"7565:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22403,"name":"uint256","nodeType":"ElementaryTypeName","src":"7565:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7564:16:64"},"scope":22463,"src":"7499:82:64","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22407,"nodeType":"StructuredDocumentation","src":"7587:293:64","text":" @dev Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the\n Vault, through a withdraw call.\n - MUST return a limited value if owner is subject to some withdrawal limit or timelock.\n - MUST NOT revert."},"functionSelector":"ce96cb77","id":22414,"implemented":false,"kind":"function","modifiers":[],"name":"maxWithdraw","nameLocation":"7894:11:64","nodeType":"FunctionDefinition","parameters":{"id":22410,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22409,"mutability":"mutable","name":"owner","nameLocation":"7914:5:64","nodeType":"VariableDeclaration","scope":22414,"src":"7906:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22408,"name":"address","nodeType":"ElementaryTypeName","src":"7906:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7905:15:64"},"returnParameters":{"id":22413,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22412,"mutability":"mutable","name":"maxAssets","nameLocation":"7952:9:64","nodeType":"VariableDeclaration","scope":22414,"src":"7944:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22411,"name":"uint256","nodeType":"ElementaryTypeName","src":"7944:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7943:19:64"},"scope":22463,"src":"7885:78:64","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22415,"nodeType":"StructuredDocumentation","src":"7969:1034:64","text":" @dev Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block,\n given current on-chain conditions.\n - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw\n   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if\n   called\n   in the same transaction.\n - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though\n   the withdrawal would be accepted, regardless if the user has enough shares, etc.\n - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees.\n - MUST NOT revert.\n NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in\n share price or some other type of condition, meaning the depositor will lose assets by depositing."},"functionSelector":"0a28a477","id":22422,"implemented":false,"kind":"function","modifiers":[],"name":"previewWithdraw","nameLocation":"9017:15:64","nodeType":"FunctionDefinition","parameters":{"id":22418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22417,"mutability":"mutable","name":"assets","nameLocation":"9041:6:64","nodeType":"VariableDeclaration","scope":22422,"src":"9033:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22416,"name":"uint256","nodeType":"ElementaryTypeName","src":"9033:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9032:16:64"},"returnParameters":{"id":22421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22420,"mutability":"mutable","name":"shares","nameLocation":"9080:6:64","nodeType":"VariableDeclaration","scope":22422,"src":"9072:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22419,"name":"uint256","nodeType":"ElementaryTypeName","src":"9072:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9071:16:64"},"scope":22463,"src":"9008:80:64","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22423,"nodeType":"StructuredDocumentation","src":"9094:670:64","text":" @dev Burns shares from owner and sends exactly assets of underlying tokens to receiver.\n - MUST emit the Withdraw event.\n - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n   withdraw execution, and are accounted for during withdraw.\n - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner\n   not having enough shares, etc).\n Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed.\n Those methods should be performed separately."},"functionSelector":"b460af94","id":22434,"implemented":false,"kind":"function","modifiers":[],"name":"withdraw","nameLocation":"9778:8:64","nodeType":"FunctionDefinition","parameters":{"id":22430,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22425,"mutability":"mutable","name":"assets","nameLocation":"9795:6:64","nodeType":"VariableDeclaration","scope":22434,"src":"9787:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22424,"name":"uint256","nodeType":"ElementaryTypeName","src":"9787:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22427,"mutability":"mutable","name":"receiver","nameLocation":"9811:8:64","nodeType":"VariableDeclaration","scope":22434,"src":"9803:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22426,"name":"address","nodeType":"ElementaryTypeName","src":"9803:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22429,"mutability":"mutable","name":"owner","nameLocation":"9829:5:64","nodeType":"VariableDeclaration","scope":22434,"src":"9821:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22428,"name":"address","nodeType":"ElementaryTypeName","src":"9821:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9786:49:64"},"returnParameters":{"id":22433,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22432,"mutability":"mutable","name":"shares","nameLocation":"9862:6:64","nodeType":"VariableDeclaration","scope":22434,"src":"9854:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22431,"name":"uint256","nodeType":"ElementaryTypeName","src":"9854:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9853:16:64"},"scope":22463,"src":"9769:101:64","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":22435,"nodeType":"StructuredDocumentation","src":"9876:381:64","text":" @dev Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault,\n through a redeem call.\n - MUST return a limited value if owner is subject to some withdrawal limit or timelock.\n - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock.\n - MUST NOT revert."},"functionSelector":"d905777e","id":22442,"implemented":false,"kind":"function","modifiers":[],"name":"maxRedeem","nameLocation":"10271:9:64","nodeType":"FunctionDefinition","parameters":{"id":22438,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22437,"mutability":"mutable","name":"owner","nameLocation":"10289:5:64","nodeType":"VariableDeclaration","scope":22442,"src":"10281:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22436,"name":"address","nodeType":"ElementaryTypeName","src":"10281:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10280:15:64"},"returnParameters":{"id":22441,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22440,"mutability":"mutable","name":"maxShares","nameLocation":"10327:9:64","nodeType":"VariableDeclaration","scope":22442,"src":"10319:17:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22439,"name":"uint256","nodeType":"ElementaryTypeName","src":"10319:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10318:19:64"},"scope":22463,"src":"10262:76:64","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22443,"nodeType":"StructuredDocumentation","src":"10344:1009:64","text":" @dev Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block,\n given current on-chain conditions.\n - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call\n   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the\n   same transaction.\n - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the\n   redemption would be accepted, regardless if the user has enough shares, etc.\n - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees.\n - MUST NOT revert.\n NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in\n share price or some other type of condition, meaning the depositor will lose assets by redeeming."},"functionSelector":"4cdad506","id":22450,"implemented":false,"kind":"function","modifiers":[],"name":"previewRedeem","nameLocation":"11367:13:64","nodeType":"FunctionDefinition","parameters":{"id":22446,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22445,"mutability":"mutable","name":"shares","nameLocation":"11389:6:64","nodeType":"VariableDeclaration","scope":22450,"src":"11381:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22444,"name":"uint256","nodeType":"ElementaryTypeName","src":"11381:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11380:16:64"},"returnParameters":{"id":22449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22448,"mutability":"mutable","name":"assets","nameLocation":"11428:6:64","nodeType":"VariableDeclaration","scope":22450,"src":"11420:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22447,"name":"uint256","nodeType":"ElementaryTypeName","src":"11420:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11419:16:64"},"scope":22463,"src":"11358:78:64","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":22451,"nodeType":"StructuredDocumentation","src":"11442:661:64","text":" @dev Burns exactly shares from owner and sends assets of underlying tokens to receiver.\n - MUST emit the Withdraw event.\n - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the\n   redeem execution, and are accounted for during redeem.\n - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner\n   not having enough shares, etc).\n NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed.\n Those methods should be performed separately."},"functionSelector":"ba087652","id":22462,"implemented":false,"kind":"function","modifiers":[],"name":"redeem","nameLocation":"12117:6:64","nodeType":"FunctionDefinition","parameters":{"id":22458,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22453,"mutability":"mutable","name":"shares","nameLocation":"12132:6:64","nodeType":"VariableDeclaration","scope":22462,"src":"12124:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22452,"name":"uint256","nodeType":"ElementaryTypeName","src":"12124:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22455,"mutability":"mutable","name":"receiver","nameLocation":"12148:8:64","nodeType":"VariableDeclaration","scope":22462,"src":"12140:16:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22454,"name":"address","nodeType":"ElementaryTypeName","src":"12140:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22457,"mutability":"mutable","name":"owner","nameLocation":"12166:5:64","nodeType":"VariableDeclaration","scope":22462,"src":"12158:13:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22456,"name":"address","nodeType":"ElementaryTypeName","src":"12158:7:64","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"12123:49:64"},"returnParameters":{"id":22461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22460,"mutability":"mutable","name":"assets","nameLocation":"12199:6:64","nodeType":"VariableDeclaration","scope":22462,"src":"12191:14:64","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22459,"name":"uint256","nodeType":"ElementaryTypeName","src":"12191:7:64","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12190:16:64"},"scope":22463,"src":"12108:99:64","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":22464,"src":"399:11810:64","usedErrors":[],"usedEvents":[22314,22326,24127,24136]}],"src":"107:12103:64"},"id":64},"@openzeppelin/contracts/interfaces/IERC5267.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5267.sol","exportedSymbols":{"IERC5267":[22488]},"id":22489,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":22465,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"107:25:65"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC5267","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":22488,"linearizedBaseContracts":[22488],"name":"IERC5267","nameLocation":"144:8:65","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":22466,"nodeType":"StructuredDocumentation","src":"159:84:65","text":" @dev MAY be emitted to signal that the domain could have changed."},"eventSelector":"0a6387c9ea3628b88a633bb4f3b151770f70085117a15f9bf3787cda53f13d31","id":22468,"name":"EIP712DomainChanged","nameLocation":"254:19:65","nodeType":"EventDefinition","parameters":{"id":22467,"nodeType":"ParameterList","parameters":[],"src":"273:2:65"},"src":"248:28:65"},{"documentation":{"id":22469,"nodeType":"StructuredDocumentation","src":"282:140:65","text":" @dev returns the fields and values that describe the domain separator used by this contract for EIP-712\n signature."},"functionSelector":"84b0196e","id":22487,"implemented":false,"kind":"function","modifiers":[],"name":"eip712Domain","nameLocation":"436:12:65","nodeType":"FunctionDefinition","parameters":{"id":22470,"nodeType":"ParameterList","parameters":[],"src":"448:2:65"},"returnParameters":{"id":22486,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22472,"mutability":"mutable","name":"fields","nameLocation":"518:6:65","nodeType":"VariableDeclaration","scope":22487,"src":"511:13:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":22471,"name":"bytes1","nodeType":"ElementaryTypeName","src":"511:6:65","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":22474,"mutability":"mutable","name":"name","nameLocation":"552:4:65","nodeType":"VariableDeclaration","scope":22487,"src":"538:18:65","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":22473,"name":"string","nodeType":"ElementaryTypeName","src":"538:6:65","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":22476,"mutability":"mutable","name":"version","nameLocation":"584:7:65","nodeType":"VariableDeclaration","scope":22487,"src":"570:21:65","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":22475,"name":"string","nodeType":"ElementaryTypeName","src":"570:6:65","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":22478,"mutability":"mutable","name":"chainId","nameLocation":"613:7:65","nodeType":"VariableDeclaration","scope":22487,"src":"605:15:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22477,"name":"uint256","nodeType":"ElementaryTypeName","src":"605:7:65","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22480,"mutability":"mutable","name":"verifyingContract","nameLocation":"642:17:65","nodeType":"VariableDeclaration","scope":22487,"src":"634:25:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22479,"name":"address","nodeType":"ElementaryTypeName","src":"634:7:65","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22482,"mutability":"mutable","name":"salt","nameLocation":"681:4:65","nodeType":"VariableDeclaration","scope":22487,"src":"673:12:65","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":22481,"name":"bytes32","nodeType":"ElementaryTypeName","src":"673:7:65","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":22485,"mutability":"mutable","name":"extensions","nameLocation":"716:10:65","nodeType":"VariableDeclaration","scope":22487,"src":"699:27:65","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":22483,"name":"uint256","nodeType":"ElementaryTypeName","src":"699:7:65","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22484,"nodeType":"ArrayTypeName","src":"699:9:65","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"497:239:65"},"scope":22488,"src":"427:310:65","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":22489,"src":"134:605:65","usedErrors":[],"usedEvents":[22468]}],"src":"107:633:65"},"id":65},"@openzeppelin/contracts/interfaces/IERC721.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC721.sol","exportedSymbols":{"IERC721":[25533]},"id":22493,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":22490,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"106:24:66"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","file":"../token/ERC721/IERC721.sol","id":22492,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22493,"sourceUnit":25534,"src":"132:52:66","symbolAliases":[{"foreign":{"id":22491,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25533,"src":"140:7:66","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"106:79:66"},"id":66},"@openzeppelin/contracts/interfaces/IERC721Receiver.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC721Receiver.sol","exportedSymbols":{"IERC721Receiver":[25551]},"id":22497,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":22494,"literals":["solidity",">=","0.5",".0"],"nodeType":"PragmaDirective","src":"114:24:67"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"../token/ERC721/IERC721Receiver.sol","id":22496,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22497,"sourceUnit":25552,"src":"140:68:67","symbolAliases":[{"foreign":{"id":22495,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25551,"src":"148:15:67","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""}],"src":"114:95:67"},"id":67},"@openzeppelin/contracts/interfaces/draft-IERC1822.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC1822.sol","exportedSymbols":{"IERC1822Proxiable":[22506]},"id":22507,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":22498,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"113:25:68"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1822Proxiable","contractDependencies":[],"contractKind":"interface","documentation":{"id":22499,"nodeType":"StructuredDocumentation","src":"140:204:68","text":" @dev ERC-1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified\n proxy whose upgrades are fully controlled by the current implementation."},"fullyImplemented":false,"id":22506,"linearizedBaseContracts":[22506],"name":"IERC1822Proxiable","nameLocation":"355:17:68","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":22500,"nodeType":"StructuredDocumentation","src":"379:438:68","text":" @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation\n address.\n IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n function revert if invoked through a proxy."},"functionSelector":"52d1902d","id":22505,"implemented":false,"kind":"function","modifiers":[],"name":"proxiableUUID","nameLocation":"831:13:68","nodeType":"FunctionDefinition","parameters":{"id":22501,"nodeType":"ParameterList","parameters":[],"src":"844:2:68"},"returnParameters":{"id":22504,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22503,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22505,"src":"870:7:68","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":22502,"name":"bytes32","nodeType":"ElementaryTypeName","src":"870:7:68","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"869:9:68"},"scope":22506,"src":"822:57:68","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":22507,"src":"345:536:68","usedErrors":[],"usedEvents":[]}],"src":"113:769:68"},"id":68},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","exportedSymbols":{"IERC1155Errors":[22643],"IERC20Errors":[22548],"IERC721Errors":[22596]},"id":22644,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":22508,"literals":["solidity",">=","0.8",".4"],"nodeType":"PragmaDirective","src":"113:24:69"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":22509,"nodeType":"StructuredDocumentation","src":"139:141:69","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":22548,"linearizedBaseContracts":[22548],"name":"IERC20Errors","nameLocation":"291:12:69","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":22510,"nodeType":"StructuredDocumentation","src":"310:309:69","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":22518,"name":"ERC20InsufficientBalance","nameLocation":"630:24:69","nodeType":"ErrorDefinition","parameters":{"id":22517,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22512,"mutability":"mutable","name":"sender","nameLocation":"663:6:69","nodeType":"VariableDeclaration","scope":22518,"src":"655:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22511,"name":"address","nodeType":"ElementaryTypeName","src":"655:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22514,"mutability":"mutable","name":"balance","nameLocation":"679:7:69","nodeType":"VariableDeclaration","scope":22518,"src":"671:15:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22513,"name":"uint256","nodeType":"ElementaryTypeName","src":"671:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22516,"mutability":"mutable","name":"needed","nameLocation":"696:6:69","nodeType":"VariableDeclaration","scope":22518,"src":"688:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22515,"name":"uint256","nodeType":"ElementaryTypeName","src":"688:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"654:49:69"},"src":"624:80:69"},{"documentation":{"id":22519,"nodeType":"StructuredDocumentation","src":"710:152:69","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"96c6fd1e","id":22523,"name":"ERC20InvalidSender","nameLocation":"873:18:69","nodeType":"ErrorDefinition","parameters":{"id":22522,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22521,"mutability":"mutable","name":"sender","nameLocation":"900:6:69","nodeType":"VariableDeclaration","scope":22523,"src":"892:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22520,"name":"address","nodeType":"ElementaryTypeName","src":"892:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"891:16:69"},"src":"867:41:69"},{"documentation":{"id":22524,"nodeType":"StructuredDocumentation","src":"914:159:69","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":22528,"name":"ERC20InvalidReceiver","nameLocation":"1084:20:69","nodeType":"ErrorDefinition","parameters":{"id":22527,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22526,"mutability":"mutable","name":"receiver","nameLocation":"1113:8:69","nodeType":"VariableDeclaration","scope":22528,"src":"1105:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22525,"name":"address","nodeType":"ElementaryTypeName","src":"1105:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1104:18:69"},"src":"1078:45:69"},{"documentation":{"id":22529,"nodeType":"StructuredDocumentation","src":"1129:345:69","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":22537,"name":"ERC20InsufficientAllowance","nameLocation":"1485:26:69","nodeType":"ErrorDefinition","parameters":{"id":22536,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22531,"mutability":"mutable","name":"spender","nameLocation":"1520:7:69","nodeType":"VariableDeclaration","scope":22537,"src":"1512:15:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22530,"name":"address","nodeType":"ElementaryTypeName","src":"1512:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22533,"mutability":"mutable","name":"allowance","nameLocation":"1537:9:69","nodeType":"VariableDeclaration","scope":22537,"src":"1529:17:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22532,"name":"uint256","nodeType":"ElementaryTypeName","src":"1529:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22535,"mutability":"mutable","name":"needed","nameLocation":"1556:6:69","nodeType":"VariableDeclaration","scope":22537,"src":"1548:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22534,"name":"uint256","nodeType":"ElementaryTypeName","src":"1548:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1511:52:69"},"src":"1479:85:69"},{"documentation":{"id":22538,"nodeType":"StructuredDocumentation","src":"1570:174:69","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":22542,"name":"ERC20InvalidApprover","nameLocation":"1755:20:69","nodeType":"ErrorDefinition","parameters":{"id":22541,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22540,"mutability":"mutable","name":"approver","nameLocation":"1784:8:69","nodeType":"VariableDeclaration","scope":22542,"src":"1776:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22539,"name":"address","nodeType":"ElementaryTypeName","src":"1776:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1775:18:69"},"src":"1749:45:69"},{"documentation":{"id":22543,"nodeType":"StructuredDocumentation","src":"1800:195:69","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":22547,"name":"ERC20InvalidSpender","nameLocation":"2006:19:69","nodeType":"ErrorDefinition","parameters":{"id":22546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22545,"mutability":"mutable","name":"spender","nameLocation":"2034:7:69","nodeType":"VariableDeclaration","scope":22547,"src":"2026:15:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22544,"name":"address","nodeType":"ElementaryTypeName","src":"2026:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2025:17:69"},"src":"2000:43:69"}],"scope":22644,"src":"281:1764:69","usedErrors":[22518,22523,22528,22537,22542,22547],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":22549,"nodeType":"StructuredDocumentation","src":"2047:143:69","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":22596,"linearizedBaseContracts":[22596],"name":"IERC721Errors","nameLocation":"2201:13:69","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":22550,"nodeType":"StructuredDocumentation","src":"2221:220:69","text":" @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-721.\n Used in balance queries.\n @param owner Address of the current owner of a token."},"errorSelector":"89c62b64","id":22554,"name":"ERC721InvalidOwner","nameLocation":"2452:18:69","nodeType":"ErrorDefinition","parameters":{"id":22553,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22552,"mutability":"mutable","name":"owner","nameLocation":"2479:5:69","nodeType":"VariableDeclaration","scope":22554,"src":"2471:13:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22551,"name":"address","nodeType":"ElementaryTypeName","src":"2471:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2470:15:69"},"src":"2446:40:69"},{"documentation":{"id":22555,"nodeType":"StructuredDocumentation","src":"2492:132:69","text":" @dev Indicates a `tokenId` whose `owner` is the zero address.\n @param tokenId Identifier number of a token."},"errorSelector":"7e273289","id":22559,"name":"ERC721NonexistentToken","nameLocation":"2635:22:69","nodeType":"ErrorDefinition","parameters":{"id":22558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22557,"mutability":"mutable","name":"tokenId","nameLocation":"2666:7:69","nodeType":"VariableDeclaration","scope":22559,"src":"2658:15:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22556,"name":"uint256","nodeType":"ElementaryTypeName","src":"2658:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2657:17:69"},"src":"2629:46:69"},{"documentation":{"id":22560,"nodeType":"StructuredDocumentation","src":"2681:289:69","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":22568,"name":"ERC721IncorrectOwner","nameLocation":"2981:20:69","nodeType":"ErrorDefinition","parameters":{"id":22567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22562,"mutability":"mutable","name":"sender","nameLocation":"3010:6:69","nodeType":"VariableDeclaration","scope":22568,"src":"3002:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22561,"name":"address","nodeType":"ElementaryTypeName","src":"3002:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22564,"mutability":"mutable","name":"tokenId","nameLocation":"3026:7:69","nodeType":"VariableDeclaration","scope":22568,"src":"3018:15:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22563,"name":"uint256","nodeType":"ElementaryTypeName","src":"3018:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22566,"mutability":"mutable","name":"owner","nameLocation":"3043:5:69","nodeType":"VariableDeclaration","scope":22568,"src":"3035:13:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22565,"name":"address","nodeType":"ElementaryTypeName","src":"3035:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3001:48:69"},"src":"2975:75:69"},{"documentation":{"id":22569,"nodeType":"StructuredDocumentation","src":"3056:152:69","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"73c6ac6e","id":22573,"name":"ERC721InvalidSender","nameLocation":"3219:19:69","nodeType":"ErrorDefinition","parameters":{"id":22572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22571,"mutability":"mutable","name":"sender","nameLocation":"3247:6:69","nodeType":"VariableDeclaration","scope":22573,"src":"3239:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22570,"name":"address","nodeType":"ElementaryTypeName","src":"3239:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3238:16:69"},"src":"3213:42:69"},{"documentation":{"id":22574,"nodeType":"StructuredDocumentation","src":"3261:159:69","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":22578,"name":"ERC721InvalidReceiver","nameLocation":"3431:21:69","nodeType":"ErrorDefinition","parameters":{"id":22577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22576,"mutability":"mutable","name":"receiver","nameLocation":"3461:8:69","nodeType":"VariableDeclaration","scope":22578,"src":"3453:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22575,"name":"address","nodeType":"ElementaryTypeName","src":"3453:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3452:18:69"},"src":"3425:46:69"},{"documentation":{"id":22579,"nodeType":"StructuredDocumentation","src":"3477:247:69","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":22585,"name":"ERC721InsufficientApproval","nameLocation":"3735:26:69","nodeType":"ErrorDefinition","parameters":{"id":22584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22581,"mutability":"mutable","name":"operator","nameLocation":"3770:8:69","nodeType":"VariableDeclaration","scope":22585,"src":"3762:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22580,"name":"address","nodeType":"ElementaryTypeName","src":"3762:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22583,"mutability":"mutable","name":"tokenId","nameLocation":"3788:7:69","nodeType":"VariableDeclaration","scope":22585,"src":"3780:15:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22582,"name":"uint256","nodeType":"ElementaryTypeName","src":"3780:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3761:35:69"},"src":"3729:68:69"},{"documentation":{"id":22586,"nodeType":"StructuredDocumentation","src":"3803:174:69","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":22590,"name":"ERC721InvalidApprover","nameLocation":"3988:21:69","nodeType":"ErrorDefinition","parameters":{"id":22589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22588,"mutability":"mutable","name":"approver","nameLocation":"4018:8:69","nodeType":"VariableDeclaration","scope":22590,"src":"4010:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22587,"name":"address","nodeType":"ElementaryTypeName","src":"4010:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4009:18:69"},"src":"3982:46:69"},{"documentation":{"id":22591,"nodeType":"StructuredDocumentation","src":"4034:197:69","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":22595,"name":"ERC721InvalidOperator","nameLocation":"4242:21:69","nodeType":"ErrorDefinition","parameters":{"id":22594,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22593,"mutability":"mutable","name":"operator","nameLocation":"4272:8:69","nodeType":"VariableDeclaration","scope":22595,"src":"4264:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22592,"name":"address","nodeType":"ElementaryTypeName","src":"4264:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4263:18:69"},"src":"4236:46:69"}],"scope":22644,"src":"2191:2093:69","usedErrors":[22554,22559,22568,22573,22578,22585,22590,22595],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1155Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":22597,"nodeType":"StructuredDocumentation","src":"4286:145:69","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":22643,"linearizedBaseContracts":[22643],"name":"IERC1155Errors","nameLocation":"4442:14:69","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":22598,"nodeType":"StructuredDocumentation","src":"4463:361:69","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":22608,"name":"ERC1155InsufficientBalance","nameLocation":"4835:26:69","nodeType":"ErrorDefinition","parameters":{"id":22607,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22600,"mutability":"mutable","name":"sender","nameLocation":"4870:6:69","nodeType":"VariableDeclaration","scope":22608,"src":"4862:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22599,"name":"address","nodeType":"ElementaryTypeName","src":"4862:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22602,"mutability":"mutable","name":"balance","nameLocation":"4886:7:69","nodeType":"VariableDeclaration","scope":22608,"src":"4878:15:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22601,"name":"uint256","nodeType":"ElementaryTypeName","src":"4878:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22604,"mutability":"mutable","name":"needed","nameLocation":"4903:6:69","nodeType":"VariableDeclaration","scope":22608,"src":"4895:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22603,"name":"uint256","nodeType":"ElementaryTypeName","src":"4895:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22606,"mutability":"mutable","name":"tokenId","nameLocation":"4919:7:69","nodeType":"VariableDeclaration","scope":22608,"src":"4911:15:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22605,"name":"uint256","nodeType":"ElementaryTypeName","src":"4911:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4861:66:69"},"src":"4829:99:69"},{"documentation":{"id":22609,"nodeType":"StructuredDocumentation","src":"4934:152:69","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"01a83514","id":22613,"name":"ERC1155InvalidSender","nameLocation":"5097:20:69","nodeType":"ErrorDefinition","parameters":{"id":22612,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22611,"mutability":"mutable","name":"sender","nameLocation":"5126:6:69","nodeType":"VariableDeclaration","scope":22613,"src":"5118:14:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22610,"name":"address","nodeType":"ElementaryTypeName","src":"5118:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5117:16:69"},"src":"5091:43:69"},{"documentation":{"id":22614,"nodeType":"StructuredDocumentation","src":"5140:159:69","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":22618,"name":"ERC1155InvalidReceiver","nameLocation":"5310:22:69","nodeType":"ErrorDefinition","parameters":{"id":22617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22616,"mutability":"mutable","name":"receiver","nameLocation":"5341:8:69","nodeType":"VariableDeclaration","scope":22618,"src":"5333:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22615,"name":"address","nodeType":"ElementaryTypeName","src":"5333:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5332:18:69"},"src":"5304:47:69"},{"documentation":{"id":22619,"nodeType":"StructuredDocumentation","src":"5357:256:69","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":22625,"name":"ERC1155MissingApprovalForAll","nameLocation":"5624:28:69","nodeType":"ErrorDefinition","parameters":{"id":22624,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22621,"mutability":"mutable","name":"operator","nameLocation":"5661:8:69","nodeType":"VariableDeclaration","scope":22625,"src":"5653:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22620,"name":"address","nodeType":"ElementaryTypeName","src":"5653:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22623,"mutability":"mutable","name":"owner","nameLocation":"5679:5:69","nodeType":"VariableDeclaration","scope":22625,"src":"5671:13:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22622,"name":"address","nodeType":"ElementaryTypeName","src":"5671:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5652:33:69"},"src":"5618:68:69"},{"documentation":{"id":22626,"nodeType":"StructuredDocumentation","src":"5692:174:69","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":22630,"name":"ERC1155InvalidApprover","nameLocation":"5877:22:69","nodeType":"ErrorDefinition","parameters":{"id":22629,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22628,"mutability":"mutable","name":"approver","nameLocation":"5908:8:69","nodeType":"VariableDeclaration","scope":22630,"src":"5900:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22627,"name":"address","nodeType":"ElementaryTypeName","src":"5900:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5899:18:69"},"src":"5871:47:69"},{"documentation":{"id":22631,"nodeType":"StructuredDocumentation","src":"5924:197:69","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":22635,"name":"ERC1155InvalidOperator","nameLocation":"6132:22:69","nodeType":"ErrorDefinition","parameters":{"id":22634,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22633,"mutability":"mutable","name":"operator","nameLocation":"6163:8:69","nodeType":"VariableDeclaration","scope":22635,"src":"6155:16:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22632,"name":"address","nodeType":"ElementaryTypeName","src":"6155:7:69","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6154:18:69"},"src":"6126:47:69"},{"documentation":{"id":22636,"nodeType":"StructuredDocumentation","src":"6179:280:69","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":22642,"name":"ERC1155InvalidArrayLength","nameLocation":"6470:25:69","nodeType":"ErrorDefinition","parameters":{"id":22641,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22638,"mutability":"mutable","name":"idsLength","nameLocation":"6504:9:69","nodeType":"VariableDeclaration","scope":22642,"src":"6496:17:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22637,"name":"uint256","nodeType":"ElementaryTypeName","src":"6496:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22640,"mutability":"mutable","name":"valuesLength","nameLocation":"6523:12:69","nodeType":"VariableDeclaration","scope":22642,"src":"6515:20:69","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22639,"name":"uint256","nodeType":"ElementaryTypeName","src":"6515:7:69","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6495:41:69"},"src":"6464:73:69"}],"scope":22644,"src":"4432:2107:69","usedErrors":[22608,22613,22618,22625,22630,22635,22642],"usedEvents":[]}],"src":"113:6427:69"},"id":69},"@openzeppelin/contracts/metatx/ERC2771Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/metatx/ERC2771Context.sol","exportedSymbols":{"Context":[26789],"ERC2771Context":[22788]},"id":22789,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":22645,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:70"},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../utils/Context.sol","id":22647,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22789,"sourceUnit":26790,"src":"135:45:70","symbolAliases":[{"foreign":{"id":22646,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26789,"src":"143:7:70","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":22649,"name":"Context","nameLocations":["1005:7:70"],"nodeType":"IdentifierPath","referencedDeclaration":26789,"src":"1005:7:70"},"id":22650,"nodeType":"InheritanceSpecifier","src":"1005:7:70"}],"canonicalName":"ERC2771Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":22648,"nodeType":"StructuredDocumentation","src":"182:786:70","text":" @dev Context variant with ERC-2771 support.\n WARNING: Avoid using this pattern in contracts that rely on 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":22788,"linearizedBaseContracts":[22788,26789],"name":"ERC2771Context","nameLocation":"987:14:70","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":22651,"nodeType":"StructuredDocumentation","src":"1019:61:70","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":22653,"mutability":"immutable","name":"_trustedForwarder","nameLocation":"1111:17:70","nodeType":"VariableDeclaration","scope":22788,"src":"1085:43:70","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22652,"name":"address","nodeType":"ElementaryTypeName","src":"1085:7:70","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"body":{"id":22663,"nodeType":"Block","src":"1490:54:70","statements":[{"expression":{"id":22661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":22659,"name":"_trustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22653,"src":"1500:17:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":22660,"name":"trustedForwarder_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22656,"src":"1520:17:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1500:37:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":22662,"nodeType":"ExpressionStatement","src":"1500:37:70"}]},"documentation":{"id":22654,"nodeType":"StructuredDocumentation","src":"1398:48:70","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":22664,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":22657,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22656,"mutability":"mutable","name":"trustedForwarder_","nameLocation":"1471:17:70","nodeType":"VariableDeclaration","scope":22664,"src":"1463:25:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22655,"name":"address","nodeType":"ElementaryTypeName","src":"1463:7:70","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1462:27:70"},"returnParameters":{"id":22658,"nodeType":"ParameterList","parameters":[],"src":"1490:0:70"},"scope":22788,"src":"1451:93:70","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":22672,"nodeType":"Block","src":"1690:41:70","statements":[{"expression":{"id":22670,"name":"_trustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22653,"src":"1707:17:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":22669,"id":22671,"nodeType":"Return","src":"1700:24:70"}]},"documentation":{"id":22665,"nodeType":"StructuredDocumentation","src":"1550:69:70","text":" @dev Returns the address of the trusted forwarder."},"functionSelector":"7da0a877","id":22673,"implemented":true,"kind":"function","modifiers":[],"name":"trustedForwarder","nameLocation":"1633:16:70","nodeType":"FunctionDefinition","parameters":{"id":22666,"nodeType":"ParameterList","parameters":[],"src":"1649:2:70"},"returnParameters":{"id":22669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22668,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22673,"src":"1681:7:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22667,"name":"address","nodeType":"ElementaryTypeName","src":"1681:7:70","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1680:9:70"},"scope":22788,"src":"1624:107:70","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":22686,"nodeType":"Block","src":"1914:55:70","statements":[{"expression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":22684,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22681,"name":"forwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22676,"src":"1931:9:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":22682,"name":"trustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22673,"src":"1944:16:70","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":22683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1944:18:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1931:31:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":22680,"id":22685,"nodeType":"Return","src":"1924:38:70"}]},"documentation":{"id":22674,"nodeType":"StructuredDocumentation","src":"1737:90:70","text":" @dev Indicates whether any particular address is the trusted forwarder."},"functionSelector":"572b6c05","id":22687,"implemented":true,"kind":"function","modifiers":[],"name":"isTrustedForwarder","nameLocation":"1841:18:70","nodeType":"FunctionDefinition","parameters":{"id":22677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22676,"mutability":"mutable","name":"forwarder","nameLocation":"1868:9:70","nodeType":"VariableDeclaration","scope":22687,"src":"1860:17:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22675,"name":"address","nodeType":"ElementaryTypeName","src":"1860:7:70","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1859:19:70"},"returnParameters":{"id":22680,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22679,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22687,"src":"1908:4:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":22678,"name":"bool","nodeType":"ElementaryTypeName","src":"1908:4:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1907:6:70"},"scope":22788,"src":"1832:137:70","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[26771],"body":{"id":22734,"nodeType":"Block","src":"2277:400:70","statements":[{"assignments":[22695],"declarations":[{"constant":false,"id":22695,"mutability":"mutable","name":"calldataLength","nameLocation":"2295:14:70","nodeType":"VariableDeclaration","scope":22734,"src":"2287:22:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22694,"name":"uint256","nodeType":"ElementaryTypeName","src":"2287:7:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":22699,"initialValue":{"expression":{"expression":{"id":22696,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2312:3:70","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":22697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2316:4:70","memberName":"data","nodeType":"MemberAccess","src":"2312:8:70","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":22698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2321:6:70","memberName":"length","nodeType":"MemberAccess","src":"2312:15:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2287:40:70"},{"assignments":[22701],"declarations":[{"constant":false,"id":22701,"mutability":"mutable","name":"contextSuffixLength","nameLocation":"2345:19:70","nodeType":"VariableDeclaration","scope":22734,"src":"2337:27:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22700,"name":"uint256","nodeType":"ElementaryTypeName","src":"2337:7:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":22704,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":22702,"name":"_contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[22787],"referencedDeclaration":22787,"src":"2367:20:70","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":22703,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2367:22:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2337:52:70"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":22712,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22705,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22695,"src":"2403:14:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":22706,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22701,"src":"2421:19:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2403:37:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"arguments":[{"expression":{"id":22709,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2463:3:70","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":22710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2467:6:70","memberName":"sender","nodeType":"MemberAccess","src":"2463:10:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":22708,"name":"isTrustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22687,"src":"2444:18:70","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":22711,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2444:30:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2403:71:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":22732,"nodeType":"Block","src":"2621:50:70","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22728,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2642:5:70","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC2771Context_$22788_$","typeString":"type(contract super ERC2771Context)"}},"id":22729,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2648:10:70","memberName":"_msgSender","nodeType":"MemberAccess","referencedDeclaration":26771,"src":"2642:16:70","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":22730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2642:18:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":22693,"id":22731,"nodeType":"Return","src":"2635:25:70"}]},"id":22733,"nodeType":"IfStatement","src":"2399:272:70","trueBody":{"id":22727,"nodeType":"Block","src":"2476:139:70","statements":[{"id":22726,"nodeType":"UncheckedBlock","src":"2490:115:70","statements":[{"expression":{"arguments":[{"arguments":[{"baseExpression":{"expression":{"id":22717,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"2541:3:70","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":22718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2545:4:70","memberName":"data","nodeType":"MemberAccess","src":"2541:8:70","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":22722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"2541:47:70","startExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22719,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22695,"src":"2550:14:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":22720,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22701,"src":"2567:19:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2550:36:70","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":22716,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2533:7:70","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":22715,"name":"bytes20","nodeType":"ElementaryTypeName","src":"2533:7:70","typeDescriptions":{}}},"id":22723,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2533:56:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"}],"id":22714,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2525:7:70","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":22713,"name":"address","nodeType":"ElementaryTypeName","src":"2525:7:70","typeDescriptions":{}}},"id":22724,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2525:65:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":22693,"id":22725,"nodeType":"Return","src":"2518:72:70"}]}]}}]},"documentation":{"id":22688,"nodeType":"StructuredDocumentation","src":"1975:226:70","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":22735,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"2215:10:70","nodeType":"FunctionDefinition","overrides":{"id":22690,"nodeType":"OverrideSpecifier","overrides":[],"src":"2250:8:70"},"parameters":{"id":22689,"nodeType":"ParameterList","parameters":[],"src":"2225:2:70"},"returnParameters":{"id":22693,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22692,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22735,"src":"2268:7:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22691,"name":"address","nodeType":"ElementaryTypeName","src":"2268:7:70","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2267:9:70"},"scope":22788,"src":"2206:471:70","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[26780],"body":{"id":22776,"nodeType":"Block","src":"2986:380:70","statements":[{"assignments":[22743],"declarations":[{"constant":false,"id":22743,"mutability":"mutable","name":"calldataLength","nameLocation":"3004:14:70","nodeType":"VariableDeclaration","scope":22776,"src":"2996:22:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22742,"name":"uint256","nodeType":"ElementaryTypeName","src":"2996:7:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":22747,"initialValue":{"expression":{"expression":{"id":22744,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3021:3:70","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":22745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3025:4:70","memberName":"data","nodeType":"MemberAccess","src":"3021:8:70","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":22746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3030:6:70","memberName":"length","nodeType":"MemberAccess","src":"3021:15:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2996:40:70"},{"assignments":[22749],"declarations":[{"constant":false,"id":22749,"mutability":"mutable","name":"contextSuffixLength","nameLocation":"3054:19:70","nodeType":"VariableDeclaration","scope":22776,"src":"3046:27:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22748,"name":"uint256","nodeType":"ElementaryTypeName","src":"3046:7:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":22752,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":22750,"name":"_contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[22787],"referencedDeclaration":22787,"src":"3076:20:70","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":22751,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3076:22:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3046:52:70"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":22760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22753,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22743,"src":"3112:14:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":22754,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22749,"src":"3130:19:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3112:37:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"arguments":[{"expression":{"id":22757,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3172:3:70","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":22758,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3176:6:70","memberName":"sender","nodeType":"MemberAccess","src":"3172:10:70","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":22756,"name":"isTrustedForwarder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22687,"src":"3153:18:70","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":22759,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3153:30:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3112:71:70","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":22774,"nodeType":"Block","src":"3312:48:70","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22770,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"3333:5:70","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC2771Context_$22788_$","typeString":"type(contract super ERC2771Context)"}},"id":22771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3339:8:70","memberName":"_msgData","nodeType":"MemberAccess","referencedDeclaration":26780,"src":"3333:14:70","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":22772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3333:16:70","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":22741,"id":22773,"nodeType":"Return","src":"3326:23:70"}]},"id":22775,"nodeType":"IfStatement","src":"3108:252:70","trueBody":{"id":22769,"nodeType":"Block","src":"3185:121:70","statements":[{"id":22768,"nodeType":"UncheckedBlock","src":"3199:97:70","statements":[{"expression":{"baseExpression":{"expression":{"id":22761,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"3234:3:70","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":22762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3238:4:70","memberName":"data","nodeType":"MemberAccess","src":"3234:8:70","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22765,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22763,"name":"calldataLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22743,"src":"3244:14:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":22764,"name":"contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22749,"src":"3261:19:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3244:36:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":22766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"3234:47:70","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},"functionReturnParameters":22741,"id":22767,"nodeType":"Return","src":"3227:54:70"}]}]}}]},"documentation":{"id":22736,"nodeType":"StructuredDocumentation","src":"2683:222:70","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":22777,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"2919:8:70","nodeType":"FunctionDefinition","overrides":{"id":22738,"nodeType":"OverrideSpecifier","overrides":[],"src":"2952:8:70"},"parameters":{"id":22737,"nodeType":"ParameterList","parameters":[],"src":"2927:2:70"},"returnParameters":{"id":22741,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22740,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22777,"src":"2970:14:70","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":22739,"name":"bytes","nodeType":"ElementaryTypeName","src":"2970:5:70","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2969:16:70"},"scope":22788,"src":"2910:456:70","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[26788],"body":{"id":22786,"nodeType":"Block","src":"3550:26:70","statements":[{"expression":{"hexValue":"3230","id":22784,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3567:2:70","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"functionReturnParameters":22783,"id":22785,"nodeType":"Return","src":"3560:9:70"}]},"documentation":{"id":22778,"nodeType":"StructuredDocumentation","src":"3372:92:70","text":" @dev ERC-2771 specifies the context as being a single address (20 bytes)."},"id":22787,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"3478:20:70","nodeType":"FunctionDefinition","overrides":{"id":22780,"nodeType":"OverrideSpecifier","overrides":[],"src":"3523:8:70"},"parameters":{"id":22779,"nodeType":"ParameterList","parameters":[],"src":"3498:2:70"},"returnParameters":{"id":22783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22782,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22787,"src":"3541:7:70","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":22781,"name":"uint256","nodeType":"ElementaryTypeName","src":"3541:7:70","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3540:9:70"},"scope":22788,"src":"3469:107:70","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":22789,"src":"969:2609:70","usedErrors":[],"usedEvents":[]}],"src":"109:3470:70"},"id":70},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","exportedSymbols":{"ERC1967Proxy":[22826],"ERC1967Utils":[23120],"Proxy":[23156]},"id":22827,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":22790,"literals":["solidity","^","0.8",".22"],"nodeType":"PragmaDirective","src":"114:24:71"},{"absolutePath":"@openzeppelin/contracts/proxy/Proxy.sol","file":"../Proxy.sol","id":22792,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22827,"sourceUnit":23157,"src":"140:35:71","symbolAliases":[{"foreign":{"id":22791,"name":"Proxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23156,"src":"148:5:71","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol","file":"./ERC1967Utils.sol","id":22794,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":22827,"sourceUnit":23121,"src":"176:48:71","symbolAliases":[{"foreign":{"id":22793,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23120,"src":"184:12:71","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":22796,"name":"Proxy","nameLocations":["625:5:71"],"nodeType":"IdentifierPath","referencedDeclaration":23156,"src":"625:5:71"},"id":22797,"nodeType":"InheritanceSpecifier","src":"625:5:71"}],"canonicalName":"ERC1967Proxy","contractDependencies":[],"contractKind":"contract","documentation":{"id":22795,"nodeType":"StructuredDocumentation","src":"226:373:71","text":" @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an\n implementation address that can be changed. This address is stored in storage in the location specified by\n https://eips.ethereum.org/EIPS/eip-1967[ERC-1967], so that it doesn't conflict with the storage layout of the\n implementation behind the proxy."},"fullyImplemented":true,"id":22826,"linearizedBaseContracts":[22826,23156],"name":"ERC1967Proxy","nameLocation":"609:12:71","nodeType":"ContractDefinition","nodes":[{"body":{"id":22812,"nodeType":"Block","src":"1145:69:71","statements":[{"expression":{"arguments":[{"id":22808,"name":"implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22800,"src":"1185:14:71","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22809,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22802,"src":"1201:5:71","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":22805,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23120,"src":"1155:12:71","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$23120_$","typeString":"type(library ERC1967Utils)"}},"id":22807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1168:16:71","memberName":"upgradeToAndCall","nodeType":"MemberAccess","referencedDeclaration":22935,"src":"1155:29:71","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,bytes memory)"}},"id":22810,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1155:52:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22811,"nodeType":"ExpressionStatement","src":"1155:52:71"}]},"documentation":{"id":22798,"nodeType":"StructuredDocumentation","src":"637:439:71","text":" @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation`.\n If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an\n encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\n Requirements:\n - If `data` is empty, `msg.value` must be zero."},"id":22813,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":22803,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22800,"mutability":"mutable","name":"implementation","nameLocation":"1101:14:71","nodeType":"VariableDeclaration","scope":22813,"src":"1093:22:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22799,"name":"address","nodeType":"ElementaryTypeName","src":"1093:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22802,"mutability":"mutable","name":"_data","nameLocation":"1130:5:71","nodeType":"VariableDeclaration","scope":22813,"src":"1117:18:71","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":22801,"name":"bytes","nodeType":"ElementaryTypeName","src":"1117:5:71","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1092:44:71"},"returnParameters":{"id":22804,"nodeType":"ParameterList","parameters":[],"src":"1145:0:71"},"scope":22826,"src":"1081:133:71","stateMutability":"payable","virtual":false,"visibility":"public"},{"baseFunctions":[23137],"body":{"id":22824,"nodeType":"Block","src":"1659:56:71","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":22820,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23120,"src":"1676:12:71","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$23120_$","typeString":"type(library ERC1967Utils)"}},"id":22821,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1689:17:71","memberName":"getImplementation","nodeType":"MemberAccess","referencedDeclaration":22872,"src":"1676:30:71","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":22822,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1676:32:71","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":22819,"id":22823,"nodeType":"Return","src":"1669:39:71"}]},"documentation":{"id":22814,"nodeType":"StructuredDocumentation","src":"1220:358:71","text":" @dev Returns the current implementation address.\n TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`"},"id":22825,"implemented":true,"kind":"function","modifiers":[],"name":"_implementation","nameLocation":"1592:15:71","nodeType":"FunctionDefinition","overrides":{"id":22816,"nodeType":"OverrideSpecifier","overrides":[],"src":"1632:8:71"},"parameters":{"id":22815,"nodeType":"ParameterList","parameters":[],"src":"1607:2:71"},"returnParameters":{"id":22819,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22818,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22825,"src":"1650:7:71","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22817,"name":"address","nodeType":"ElementaryTypeName","src":"1650:7:71","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1649:9:71"},"scope":22826,"src":"1583:132:71","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":22827,"src":"600:1117:71","usedErrors":[22846,22859,25668,26802],"usedEvents":[22272]}],"src":"114:1604:71"},"id":71},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol","exportedSymbols":{"Address":[26046],"ERC1967Utils":[23120],"IBeacon":[23166],"IERC1967":[22285],"StorageSlot":[31234]},"id":23121,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":22828,"literals":["solidity","^","0.8",".21"],"nodeType":"PragmaDirective","src":"114:24:72"},{"absolutePath":"@openzeppelin/contracts/proxy/beacon/IBeacon.sol","file":"../beacon/IBeacon.sol","id":22830,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":23121,"sourceUnit":23167,"src":"140:46:72","symbolAliases":[{"foreign":{"id":22829,"name":"IBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23166,"src":"148:7:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1967.sol","file":"../../interfaces/IERC1967.sol","id":22832,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":23121,"sourceUnit":22286,"src":"187:55:72","symbolAliases":[{"foreign":{"id":22831,"name":"IERC1967","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22285,"src":"195:8:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"../../utils/Address.sol","id":22834,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":23121,"sourceUnit":26047,"src":"243:48:72","symbolAliases":[{"foreign":{"id":22833,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26046,"src":"251:7:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","file":"../../utils/StorageSlot.sol","id":22836,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":23121,"sourceUnit":31235,"src":"292:56:72","symbolAliases":[{"foreign":{"id":22835,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31234,"src":"300:11:72","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"ERC1967Utils","contractDependencies":[],"contractKind":"library","documentation":{"id":22837,"nodeType":"StructuredDocumentation","src":"350:145:72","text":" @dev This library provides getters and event emitting update functions for\n https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots."},"fullyImplemented":true,"id":23120,"linearizedBaseContracts":[23120],"name":"ERC1967Utils","nameLocation":"504:12:72","nodeType":"ContractDefinition","nodes":[{"constant":true,"documentation":{"id":22838,"nodeType":"StructuredDocumentation","src":"523:170:72","text":" @dev Storage slot with the address of the current implementation.\n This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1."},"id":22841,"mutability":"constant","name":"IMPLEMENTATION_SLOT","nameLocation":"789:19:72","nodeType":"VariableDeclaration","scope":23120,"src":"763:114:72","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":22839,"name":"bytes32","nodeType":"ElementaryTypeName","src":"763:7:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307833363038393461313362613161333231303636376338323834393264623938646361336532303736636333373335613932306133636135303564333832626263","id":22840,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"811:66:72","typeDescriptions":{"typeIdentifier":"t_rational_24440054405305269366569402256811496959409073762505157381672968839269610695612_by_1","typeString":"int_const 2444...(69 digits omitted)...5612"},"value":"0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc"},"visibility":"internal"},{"documentation":{"id":22842,"nodeType":"StructuredDocumentation","src":"884:69:72","text":" @dev The `implementation` of the proxy is invalid."},"errorSelector":"4c9c8ce3","id":22846,"name":"ERC1967InvalidImplementation","nameLocation":"964:28:72","nodeType":"ErrorDefinition","parameters":{"id":22845,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22844,"mutability":"mutable","name":"implementation","nameLocation":"1001:14:72","nodeType":"VariableDeclaration","scope":22846,"src":"993:22:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22843,"name":"address","nodeType":"ElementaryTypeName","src":"993:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"992:24:72"},"src":"958:59:72"},{"documentation":{"id":22847,"nodeType":"StructuredDocumentation","src":"1023:60:72","text":" @dev The `admin` of the proxy is invalid."},"errorSelector":"62e77ba2","id":22851,"name":"ERC1967InvalidAdmin","nameLocation":"1094:19:72","nodeType":"ErrorDefinition","parameters":{"id":22850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22849,"mutability":"mutable","name":"admin","nameLocation":"1122:5:72","nodeType":"VariableDeclaration","scope":22851,"src":"1114:13:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22848,"name":"address","nodeType":"ElementaryTypeName","src":"1114:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1113:15:72"},"src":"1088:41:72"},{"documentation":{"id":22852,"nodeType":"StructuredDocumentation","src":"1135:61:72","text":" @dev The `beacon` of the proxy is invalid."},"errorSelector":"64ced0ec","id":22856,"name":"ERC1967InvalidBeacon","nameLocation":"1207:20:72","nodeType":"ErrorDefinition","parameters":{"id":22855,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22854,"mutability":"mutable","name":"beacon","nameLocation":"1236:6:72","nodeType":"VariableDeclaration","scope":22856,"src":"1228:14:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22853,"name":"address","nodeType":"ElementaryTypeName","src":"1228:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1227:16:72"},"src":"1201:43:72"},{"documentation":{"id":22857,"nodeType":"StructuredDocumentation","src":"1250:82:72","text":" @dev An upgrade function sees `msg.value > 0` that may be lost."},"errorSelector":"b398979f","id":22859,"name":"ERC1967NonPayable","nameLocation":"1343:17:72","nodeType":"ErrorDefinition","parameters":{"id":22858,"nodeType":"ParameterList","parameters":[],"src":"1360:2:72"},"src":"1337:26:72"},{"body":{"id":22871,"nodeType":"Block","src":"1502:77:72","statements":[{"expression":{"expression":{"arguments":[{"id":22867,"name":"IMPLEMENTATION_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22841,"src":"1546:19:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":22865,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31234,"src":"1519:11:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$31234_$","typeString":"type(library StorageSlot)"}},"id":22866,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1531:14:72","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":31145,"src":"1519:26:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$31116_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":22868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1519:47:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$31116_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":22869,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1567:5:72","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":31115,"src":"1519:53:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":22864,"id":22870,"nodeType":"Return","src":"1512:60:72"}]},"documentation":{"id":22860,"nodeType":"StructuredDocumentation","src":"1369:67:72","text":" @dev Returns the current implementation address."},"id":22872,"implemented":true,"kind":"function","modifiers":[],"name":"getImplementation","nameLocation":"1450:17:72","nodeType":"FunctionDefinition","parameters":{"id":22861,"nodeType":"ParameterList","parameters":[],"src":"1467:2:72"},"returnParameters":{"id":22864,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22863,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22872,"src":"1493:7:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22862,"name":"address","nodeType":"ElementaryTypeName","src":"1493:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1492:9:72"},"scope":23120,"src":"1441:138:72","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":22898,"nodeType":"Block","src":"1734:218:72","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":22878,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22875,"src":"1748:17:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":22879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1766:4:72","memberName":"code","nodeType":"MemberAccess","src":"1748:22:72","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":22880,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1771:6:72","memberName":"length","nodeType":"MemberAccess","src":"1748:29:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":22881,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1781:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1748:34:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":22888,"nodeType":"IfStatement","src":"1744:119:72","trueBody":{"id":22887,"nodeType":"Block","src":"1784:79:72","statements":[{"errorCall":{"arguments":[{"id":22884,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22875,"src":"1834:17:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":22883,"name":"ERC1967InvalidImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22846,"src":"1805:28:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":22885,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1805:47:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":22886,"nodeType":"RevertStatement","src":"1798:54:72"}]}},{"expression":{"id":22896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":22892,"name":"IMPLEMENTATION_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22841,"src":"1899:19:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":22889,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31234,"src":"1872:11:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$31234_$","typeString":"type(library StorageSlot)"}},"id":22891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1884:14:72","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":31145,"src":"1872:26:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$31116_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":22893,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1872:47:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$31116_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":22894,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"1920:5:72","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":31115,"src":"1872:53:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":22895,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22875,"src":"1928:17:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1872:73:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":22897,"nodeType":"ExpressionStatement","src":"1872:73:72"}]},"documentation":{"id":22873,"nodeType":"StructuredDocumentation","src":"1585:81:72","text":" @dev Stores a new address in the ERC-1967 implementation slot."},"id":22899,"implemented":true,"kind":"function","modifiers":[],"name":"_setImplementation","nameLocation":"1680:18:72","nodeType":"FunctionDefinition","parameters":{"id":22876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22875,"mutability":"mutable","name":"newImplementation","nameLocation":"1707:17:72","nodeType":"VariableDeclaration","scope":22899,"src":"1699:25:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22874,"name":"address","nodeType":"ElementaryTypeName","src":"1699:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1698:27:72"},"returnParameters":{"id":22877,"nodeType":"ParameterList","parameters":[],"src":"1734:0:72"},"scope":23120,"src":"1671:281:72","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":22934,"nodeType":"Block","src":"2345:263:72","statements":[{"expression":{"arguments":[{"id":22908,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22902,"src":"2374:17:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":22907,"name":"_setImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22899,"src":"2355:18:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":22909,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2355:37:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22910,"nodeType":"ExpressionStatement","src":"2355:37:72"},{"eventCall":{"arguments":[{"id":22914,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22902,"src":"2425:17:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":22911,"name":"IERC1967","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22285,"src":"2407:8:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1967_$22285_$","typeString":"type(contract IERC1967)"}},"id":22913,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2416:8:72","memberName":"Upgraded","nodeType":"MemberAccess","referencedDeclaration":22272,"src":"2407:17:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":22915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2407:36:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22916,"nodeType":"EmitStatement","src":"2402:41:72"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":22920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":22917,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22904,"src":"2458:4:72","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":22918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2463:6:72","memberName":"length","nodeType":"MemberAccess","src":"2458:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":22919,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2472:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2458:15:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":22932,"nodeType":"Block","src":"2559:43:72","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":22929,"name":"_checkNonPayable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23119,"src":"2573:16:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":22930,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2573:18:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22931,"nodeType":"ExpressionStatement","src":"2573:18:72"}]},"id":22933,"nodeType":"IfStatement","src":"2454:148:72","trueBody":{"id":22928,"nodeType":"Block","src":"2475:78:72","statements":[{"expression":{"arguments":[{"id":22924,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22902,"src":"2518:17:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22925,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22904,"src":"2537:4:72","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":22921,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26046,"src":"2489:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$26046_$","typeString":"type(library Address)"}},"id":22923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2497:20:72","memberName":"functionDelegateCall","nodeType":"MemberAccess","referencedDeclaration":25956,"src":"2489:28:72","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":22926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2489:53:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":22927,"nodeType":"ExpressionStatement","src":"2489:53:72"}]}}]},"documentation":{"id":22900,"nodeType":"StructuredDocumentation","src":"1958:301:72","text":" @dev Performs implementation upgrade with additional setup call if data is nonempty.\n This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n to avoid stuck value in the contract.\n Emits an {IERC1967-Upgraded} event."},"id":22935,"implemented":true,"kind":"function","modifiers":[],"name":"upgradeToAndCall","nameLocation":"2273:16:72","nodeType":"FunctionDefinition","parameters":{"id":22905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22902,"mutability":"mutable","name":"newImplementation","nameLocation":"2298:17:72","nodeType":"VariableDeclaration","scope":22935,"src":"2290:25:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22901,"name":"address","nodeType":"ElementaryTypeName","src":"2290:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":22904,"mutability":"mutable","name":"data","nameLocation":"2330:4:72","nodeType":"VariableDeclaration","scope":22935,"src":"2317:17:72","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":22903,"name":"bytes","nodeType":"ElementaryTypeName","src":"2317:5:72","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2289:46:72"},"returnParameters":{"id":22906,"nodeType":"ParameterList","parameters":[],"src":"2345:0:72"},"scope":23120,"src":"2264:344:72","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"constant":true,"documentation":{"id":22936,"nodeType":"StructuredDocumentation","src":"2614:145:72","text":" @dev Storage slot with the admin of the contract.\n This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1."},"id":22939,"mutability":"constant","name":"ADMIN_SLOT","nameLocation":"2855:10:72","nodeType":"VariableDeclaration","scope":23120,"src":"2829:105:72","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":22937,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2829:7:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307862353331323736383461353638623331373361653133623966386136303136653234336536336236653865653131373864366137313738353062356436313033","id":22938,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2868:66:72","typeDescriptions":{"typeIdentifier":"t_rational_81955473079516046949633743016697847541294818689821282749996681496272635257091_by_1","typeString":"int_const 8195...(69 digits omitted)...7091"},"value":"0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103"},"visibility":"internal"},{"body":{"id":22951,"nodeType":"Block","src":"3339:68:72","statements":[{"expression":{"expression":{"arguments":[{"id":22947,"name":"ADMIN_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22939,"src":"3383:10:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":22945,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31234,"src":"3356:11:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$31234_$","typeString":"type(library StorageSlot)"}},"id":22946,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3368:14:72","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":31145,"src":"3356:26:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$31116_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":22948,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3356:38:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$31116_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":22949,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3395:5:72","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":31115,"src":"3356:44:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":22944,"id":22950,"nodeType":"Return","src":"3349:51:72"}]},"documentation":{"id":22940,"nodeType":"StructuredDocumentation","src":"2941:341:72","text":" @dev Returns the current admin.\n TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`"},"id":22952,"implemented":true,"kind":"function","modifiers":[],"name":"getAdmin","nameLocation":"3296:8:72","nodeType":"FunctionDefinition","parameters":{"id":22941,"nodeType":"ParameterList","parameters":[],"src":"3304:2:72"},"returnParameters":{"id":22944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22943,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":22952,"src":"3330:7:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22942,"name":"address","nodeType":"ElementaryTypeName","src":"3330:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3329:9:72"},"scope":23120,"src":"3287:120:72","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":22982,"nodeType":"Block","src":"3535:172:72","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":22963,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":22958,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22955,"src":"3549:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":22961,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3569:1:72","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":22960,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3561:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":22959,"name":"address","nodeType":"ElementaryTypeName","src":"3561:7:72","typeDescriptions":{}}},"id":22962,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3561:10:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3549:22:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":22972,"nodeType":"IfStatement","src":"3545:91:72","trueBody":{"id":22971,"nodeType":"Block","src":"3573:63:72","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":22967,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3622:1:72","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":22966,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3614:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":22965,"name":"address","nodeType":"ElementaryTypeName","src":"3614:7:72","typeDescriptions":{}}},"id":22968,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3614:10:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":22964,"name":"ERC1967InvalidAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22851,"src":"3594:19:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":22969,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3594:31:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":22970,"nodeType":"RevertStatement","src":"3587:38:72"}]}},{"expression":{"id":22980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":22976,"name":"ADMIN_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22939,"src":"3672:10:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":22973,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31234,"src":"3645:11:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$31234_$","typeString":"type(library StorageSlot)"}},"id":22975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3657:14:72","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":31145,"src":"3645:26:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$31116_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":22977,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3645:38:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$31116_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":22978,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3684:5:72","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":31115,"src":"3645:44:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":22979,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22955,"src":"3692:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3645:55:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":22981,"nodeType":"ExpressionStatement","src":"3645:55:72"}]},"documentation":{"id":22953,"nodeType":"StructuredDocumentation","src":"3413:72:72","text":" @dev Stores a new address in the ERC-1967 admin slot."},"id":22983,"implemented":true,"kind":"function","modifiers":[],"name":"_setAdmin","nameLocation":"3499:9:72","nodeType":"FunctionDefinition","parameters":{"id":22956,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22955,"mutability":"mutable","name":"newAdmin","nameLocation":"3517:8:72","nodeType":"VariableDeclaration","scope":22983,"src":"3509:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22954,"name":"address","nodeType":"ElementaryTypeName","src":"3509:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3508:18:72"},"returnParameters":{"id":22957,"nodeType":"ParameterList","parameters":[],"src":"3535:0:72"},"scope":23120,"src":"3490:217:72","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":23001,"nodeType":"Block","src":"3875:94:72","statements":[{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":22992,"name":"getAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22952,"src":"3912:8:72","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":22993,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3912:10:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":22994,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22986,"src":"3924:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":22989,"name":"IERC1967","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22285,"src":"3890:8:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1967_$22285_$","typeString":"type(contract IERC1967)"}},"id":22991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3899:12:72","memberName":"AdminChanged","nodeType":"MemberAccess","referencedDeclaration":22279,"src":"3890:21:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":22995,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3890:43:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":22996,"nodeType":"EmitStatement","src":"3885:48:72"},{"expression":{"arguments":[{"id":22998,"name":"newAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22986,"src":"3953:8:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":22997,"name":"_setAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22983,"src":"3943:9:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":22999,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3943:19:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23000,"nodeType":"ExpressionStatement","src":"3943:19:72"}]},"documentation":{"id":22984,"nodeType":"StructuredDocumentation","src":"3713:109:72","text":" @dev Changes the admin of the proxy.\n Emits an {IERC1967-AdminChanged} event."},"id":23002,"implemented":true,"kind":"function","modifiers":[],"name":"changeAdmin","nameLocation":"3836:11:72","nodeType":"FunctionDefinition","parameters":{"id":22987,"nodeType":"ParameterList","parameters":[{"constant":false,"id":22986,"mutability":"mutable","name":"newAdmin","nameLocation":"3856:8:72","nodeType":"VariableDeclaration","scope":23002,"src":"3848:16:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22985,"name":"address","nodeType":"ElementaryTypeName","src":"3848:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3847:18:72"},"returnParameters":{"id":22988,"nodeType":"ParameterList","parameters":[],"src":"3875:0:72"},"scope":23120,"src":"3827:142:72","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"constant":true,"documentation":{"id":23003,"nodeType":"StructuredDocumentation","src":"3975:201:72","text":" @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.\n This is the keccak-256 hash of \"eip1967.proxy.beacon\" subtracted by 1."},"id":23006,"mutability":"constant","name":"BEACON_SLOT","nameLocation":"4272:11:72","nodeType":"VariableDeclaration","scope":23120,"src":"4246:106:72","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":23004,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4246:7:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307861336630616437346535343233616562666438306433656634333436353738333335613961373261656165653539666636636233353832623335313333643530","id":23005,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4286:66:72","typeDescriptions":{"typeIdentifier":"t_rational_74152234768234802001998023604048924213078445070507226371336425913862612794704_by_1","typeString":"int_const 7415...(69 digits omitted)...4704"},"value":"0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50"},"visibility":"internal"},{"body":{"id":23018,"nodeType":"Block","src":"4468:69:72","statements":[{"expression":{"expression":{"arguments":[{"id":23014,"name":"BEACON_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23006,"src":"4512:11:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":23012,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31234,"src":"4485:11:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$31234_$","typeString":"type(library StorageSlot)"}},"id":23013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4497:14:72","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":31145,"src":"4485:26:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$31116_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":23015,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4485:39:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$31116_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":23016,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4525:5:72","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":31115,"src":"4485:45:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":23011,"id":23017,"nodeType":"Return","src":"4478:52:72"}]},"documentation":{"id":23007,"nodeType":"StructuredDocumentation","src":"4359:51:72","text":" @dev Returns the current beacon."},"id":23019,"implemented":true,"kind":"function","modifiers":[],"name":"getBeacon","nameLocation":"4424:9:72","nodeType":"FunctionDefinition","parameters":{"id":23008,"nodeType":"ParameterList","parameters":[],"src":"4433:2:72"},"returnParameters":{"id":23011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23010,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23019,"src":"4459:7:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23009,"name":"address","nodeType":"ElementaryTypeName","src":"4459:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4458:9:72"},"scope":23120,"src":"4415:122:72","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":23064,"nodeType":"Block","src":"4667:390:72","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":23025,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23022,"src":"4681:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":23026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4691:4:72","memberName":"code","nodeType":"MemberAccess","src":"4681:14:72","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":23027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4696:6:72","memberName":"length","nodeType":"MemberAccess","src":"4681:21:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":23028,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4706:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4681:26:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23035,"nodeType":"IfStatement","src":"4677:95:72","trueBody":{"id":23034,"nodeType":"Block","src":"4709:63:72","statements":[{"errorCall":{"arguments":[{"id":23031,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23022,"src":"4751:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23030,"name":"ERC1967InvalidBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22856,"src":"4730:20:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":23032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4730:31:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23033,"nodeType":"RevertStatement","src":"4723:38:72"}]}},{"expression":{"id":23043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":23039,"name":"BEACON_SLOT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23006,"src":"4809:11:72","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":23036,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31234,"src":"4782:11:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$31234_$","typeString":"type(library StorageSlot)"}},"id":23038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4794:14:72","memberName":"getAddressSlot","nodeType":"MemberAccess","referencedDeclaration":31145,"src":"4782:26:72","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_AddressSlot_$31116_storage_ptr_$","typeString":"function (bytes32) pure returns (struct StorageSlot.AddressSlot storage pointer)"}},"id":23040,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4782:39:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$31116_storage_ptr","typeString":"struct StorageSlot.AddressSlot storage pointer"}},"id":23041,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4822:5:72","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":31115,"src":"4782:45:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":23042,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23022,"src":"4830:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4782:57:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":23044,"nodeType":"ExpressionStatement","src":"4782:57:72"},{"assignments":[23046],"declarations":[{"constant":false,"id":23046,"mutability":"mutable","name":"beaconImplementation","nameLocation":"4858:20:72","nodeType":"VariableDeclaration","scope":23064,"src":"4850:28:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23045,"name":"address","nodeType":"ElementaryTypeName","src":"4850:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":23052,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":23048,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23022,"src":"4889:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23047,"name":"IBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23166,"src":"4881:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IBeacon_$23166_$","typeString":"type(contract IBeacon)"}},"id":23049,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4881:18:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IBeacon_$23166","typeString":"contract IBeacon"}},"id":23050,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4900:14:72","memberName":"implementation","nodeType":"MemberAccess","referencedDeclaration":23165,"src":"4881:33:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":23051,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4881:35:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4850:66:72"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":23053,"name":"beaconImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23046,"src":"4930:20:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":23054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4951:4:72","memberName":"code","nodeType":"MemberAccess","src":"4930:25:72","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":23055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4956:6:72","memberName":"length","nodeType":"MemberAccess","src":"4930:32:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":23056,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4966:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4930:37:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23063,"nodeType":"IfStatement","src":"4926:125:72","trueBody":{"id":23062,"nodeType":"Block","src":"4969:82:72","statements":[{"errorCall":{"arguments":[{"id":23059,"name":"beaconImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23046,"src":"5019:20:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23058,"name":"ERC1967InvalidImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22846,"src":"4990:28:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":23060,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4990:50:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23061,"nodeType":"RevertStatement","src":"4983:57:72"}]}}]},"documentation":{"id":23020,"nodeType":"StructuredDocumentation","src":"4543:72:72","text":" @dev Stores a new beacon in the ERC-1967 beacon slot."},"id":23065,"implemented":true,"kind":"function","modifiers":[],"name":"_setBeacon","nameLocation":"4629:10:72","nodeType":"FunctionDefinition","parameters":{"id":23023,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23022,"mutability":"mutable","name":"newBeacon","nameLocation":"4648:9:72","nodeType":"VariableDeclaration","scope":23065,"src":"4640:17:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23021,"name":"address","nodeType":"ElementaryTypeName","src":"4640:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4639:19:72"},"returnParameters":{"id":23024,"nodeType":"ParameterList","parameters":[],"src":"4667:0:72"},"scope":23120,"src":"4620:437:72","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":23104,"nodeType":"Block","src":"5661:263:72","statements":[{"expression":{"arguments":[{"id":23074,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23068,"src":"5682:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23073,"name":"_setBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23065,"src":"5671:10:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":23075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5671:21:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23076,"nodeType":"ExpressionStatement","src":"5671:21:72"},{"eventCall":{"arguments":[{"id":23080,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23068,"src":"5731:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":23077,"name":"IERC1967","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22285,"src":"5707:8:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1967_$22285_$","typeString":"type(contract IERC1967)"}},"id":23079,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5716:14:72","memberName":"BeaconUpgraded","nodeType":"MemberAccess","referencedDeclaration":22284,"src":"5707:23:72","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":23081,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5707:34:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23082,"nodeType":"EmitStatement","src":"5702:39:72"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23086,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23083,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23070,"src":"5756:4:72","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":23084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5761:6:72","memberName":"length","nodeType":"MemberAccess","src":"5756:11:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":23085,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5770:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5756:15:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":23102,"nodeType":"Block","src":"5875:43:72","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":23099,"name":"_checkNonPayable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23119,"src":"5889:16:72","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":23100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5889:18:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23101,"nodeType":"ExpressionStatement","src":"5889:18:72"}]},"id":23103,"nodeType":"IfStatement","src":"5752:166:72","trueBody":{"id":23098,"nodeType":"Block","src":"5773:96:72","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":23091,"name":"newBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23068,"src":"5824:9:72","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23090,"name":"IBeacon","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23166,"src":"5816:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IBeacon_$23166_$","typeString":"type(contract IBeacon)"}},"id":23092,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5816:18:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IBeacon_$23166","typeString":"contract IBeacon"}},"id":23093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5835:14:72","memberName":"implementation","nodeType":"MemberAccess","referencedDeclaration":23165,"src":"5816:33:72","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":23094,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5816:35:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23095,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23070,"src":"5853:4:72","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":23087,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26046,"src":"5787:7:72","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$26046_$","typeString":"type(library Address)"}},"id":23089,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5795:20:72","memberName":"functionDelegateCall","nodeType":"MemberAccess","referencedDeclaration":25956,"src":"5787:28:72","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":23096,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5787:71:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":23097,"nodeType":"ExpressionStatement","src":"5787:71:72"}]}}]},"documentation":{"id":23066,"nodeType":"StructuredDocumentation","src":"5063:514:72","text":" @dev Change the beacon and trigger a setup call if data is nonempty.\n This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n to avoid stuck value in the contract.\n Emits an {IERC1967-BeaconUpgraded} event.\n CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since\n it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for\n efficiency."},"id":23105,"implemented":true,"kind":"function","modifiers":[],"name":"upgradeBeaconToAndCall","nameLocation":"5591:22:72","nodeType":"FunctionDefinition","parameters":{"id":23071,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23068,"mutability":"mutable","name":"newBeacon","nameLocation":"5622:9:72","nodeType":"VariableDeclaration","scope":23105,"src":"5614:17:72","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23067,"name":"address","nodeType":"ElementaryTypeName","src":"5614:7:72","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23070,"mutability":"mutable","name":"data","nameLocation":"5646:4:72","nodeType":"VariableDeclaration","scope":23105,"src":"5633:17:72","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":23069,"name":"bytes","nodeType":"ElementaryTypeName","src":"5633:5:72","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5613:38:72"},"returnParameters":{"id":23072,"nodeType":"ParameterList","parameters":[],"src":"5661:0:72"},"scope":23120,"src":"5582:342:72","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":23118,"nodeType":"Block","src":"6149:86:72","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23112,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23109,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6163:3:72","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":23110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6167:5:72","memberName":"value","nodeType":"MemberAccess","src":"6163:9:72","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":23111,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6175:1:72","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6163:13:72","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23117,"nodeType":"IfStatement","src":"6159:70:72","trueBody":{"id":23116,"nodeType":"Block","src":"6178:51:72","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23113,"name":"ERC1967NonPayable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22859,"src":"6199:17:72","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6199:19:72","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23115,"nodeType":"RevertStatement","src":"6192:26:72"}]}}]},"documentation":{"id":23106,"nodeType":"StructuredDocumentation","src":"5930:178:72","text":" @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract\n if an upgrade doesn't perform an initialization call."},"id":23119,"implemented":true,"kind":"function","modifiers":[],"name":"_checkNonPayable","nameLocation":"6122:16:72","nodeType":"FunctionDefinition","parameters":{"id":23107,"nodeType":"ParameterList","parameters":[],"src":"6138:2:72"},"returnParameters":{"id":23108,"nodeType":"ParameterList","parameters":[],"src":"6149:0:72"},"scope":23120,"src":"6113:122:72","stateMutability":"nonpayable","virtual":false,"visibility":"private"}],"scope":23121,"src":"496:5741:72","usedErrors":[22846,22851,22856,22859],"usedEvents":[]}],"src":"114:6124:72"},"id":72},"@openzeppelin/contracts/proxy/Proxy.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/Proxy.sol","exportedSymbols":{"Proxy":[23156]},"id":23157,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":23122,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:73"},{"abstract":true,"baseContracts":[],"canonicalName":"Proxy","contractDependencies":[],"contractKind":"contract","documentation":{"id":23123,"nodeType":"StructuredDocumentation","src":"125:598:73","text":" @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM\n instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to\n be specified by overriding the virtual {_implementation} function.\n Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a\n different contract through the {_delegate} function.\n The success and return data of the delegated call will be returned back to the caller of the proxy."},"fullyImplemented":false,"id":23156,"linearizedBaseContracts":[23156],"name":"Proxy","nameLocation":"742:5:73","nodeType":"ContractDefinition","nodes":[{"body":{"id":23130,"nodeType":"Block","src":"1009:862:73","statements":[{"AST":{"nativeSrc":"1028:837:73","nodeType":"YulBlock","src":"1028:837:73","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1281:4:73","nodeType":"YulLiteral","src":"1281:4:73","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1287:4:73","nodeType":"YulLiteral","src":"1287:4:73","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"1293:12:73","nodeType":"YulIdentifier","src":"1293:12:73"},"nativeSrc":"1293:14:73","nodeType":"YulFunctionCall","src":"1293:14:73"}],"functionName":{"name":"calldatacopy","nativeSrc":"1268:12:73","nodeType":"YulIdentifier","src":"1268:12:73"},"nativeSrc":"1268:40:73","nodeType":"YulFunctionCall","src":"1268:40:73"},"nativeSrc":"1268:40:73","nodeType":"YulExpressionStatement","src":"1268:40:73"},{"nativeSrc":"1435:83:73","nodeType":"YulVariableDeclaration","src":"1435:83:73","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"1462:3:73","nodeType":"YulIdentifier","src":"1462:3:73"},"nativeSrc":"1462:5:73","nodeType":"YulFunctionCall","src":"1462:5:73"},{"name":"implementation","nativeSrc":"1469:14:73","nodeType":"YulIdentifier","src":"1469:14:73"},{"kind":"number","nativeSrc":"1485:4:73","nodeType":"YulLiteral","src":"1485:4:73","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"1491:12:73","nodeType":"YulIdentifier","src":"1491:12:73"},"nativeSrc":"1491:14:73","nodeType":"YulFunctionCall","src":"1491:14:73"},{"kind":"number","nativeSrc":"1507:4:73","nodeType":"YulLiteral","src":"1507:4:73","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1513:4:73","nodeType":"YulLiteral","src":"1513:4:73","type":"","value":"0x00"}],"functionName":{"name":"delegatecall","nativeSrc":"1449:12:73","nodeType":"YulIdentifier","src":"1449:12:73"},"nativeSrc":"1449:69:73","nodeType":"YulFunctionCall","src":"1449:69:73"},"variables":[{"name":"result","nativeSrc":"1439:6:73","nodeType":"YulTypedName","src":"1439:6:73","type":""}]},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1586:4:73","nodeType":"YulLiteral","src":"1586:4:73","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1592:4:73","nodeType":"YulLiteral","src":"1592:4:73","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"1598:14:73","nodeType":"YulIdentifier","src":"1598:14:73"},"nativeSrc":"1598:16:73","nodeType":"YulFunctionCall","src":"1598:16:73"}],"functionName":{"name":"returndatacopy","nativeSrc":"1571:14:73","nodeType":"YulIdentifier","src":"1571:14:73"},"nativeSrc":"1571:44:73","nodeType":"YulFunctionCall","src":"1571:44:73"},"nativeSrc":"1571:44:73","nodeType":"YulExpressionStatement","src":"1571:44:73"},{"cases":[{"body":{"nativeSrc":"1710:62:73","nodeType":"YulBlock","src":"1710:62:73","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1735:4:73","nodeType":"YulLiteral","src":"1735:4:73","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"1741:14:73","nodeType":"YulIdentifier","src":"1741:14:73"},"nativeSrc":"1741:16:73","nodeType":"YulFunctionCall","src":"1741:16:73"}],"functionName":{"name":"revert","nativeSrc":"1728:6:73","nodeType":"YulIdentifier","src":"1728:6:73"},"nativeSrc":"1728:30:73","nodeType":"YulFunctionCall","src":"1728:30:73"},"nativeSrc":"1728:30:73","nodeType":"YulExpressionStatement","src":"1728:30:73"}]},"nativeSrc":"1703:69:73","nodeType":"YulCase","src":"1703:69:73","value":{"kind":"number","nativeSrc":"1708:1:73","nodeType":"YulLiteral","src":"1708:1:73","type":"","value":"0"}},{"body":{"nativeSrc":"1793:62:73","nodeType":"YulBlock","src":"1793:62:73","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1818:4:73","nodeType":"YulLiteral","src":"1818:4:73","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"1824:14:73","nodeType":"YulIdentifier","src":"1824:14:73"},"nativeSrc":"1824:16:73","nodeType":"YulFunctionCall","src":"1824:16:73"}],"functionName":{"name":"return","nativeSrc":"1811:6:73","nodeType":"YulIdentifier","src":"1811:6:73"},"nativeSrc":"1811:30:73","nodeType":"YulFunctionCall","src":"1811:30:73"},"nativeSrc":"1811:30:73","nodeType":"YulExpressionStatement","src":"1811:30:73"}]},"nativeSrc":"1785:70:73","nodeType":"YulCase","src":"1785:70:73","value":"default"}],"expression":{"name":"result","nativeSrc":"1636:6:73","nodeType":"YulIdentifier","src":"1636:6:73"},"nativeSrc":"1629:226:73","nodeType":"YulSwitch","src":"1629:226:73"}]},"evmVersion":"prague","externalReferences":[{"declaration":23126,"isOffset":false,"isSlot":false,"src":"1469:14:73","valueSize":1}],"id":23129,"nodeType":"InlineAssembly","src":"1019:846:73"}]},"documentation":{"id":23124,"nodeType":"StructuredDocumentation","src":"754:190:73","text":" @dev Delegates the current call to `implementation`.\n This function does not return to its internal call site, it will return directly to the external caller."},"id":23131,"implemented":true,"kind":"function","modifiers":[],"name":"_delegate","nameLocation":"958:9:73","nodeType":"FunctionDefinition","parameters":{"id":23127,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23126,"mutability":"mutable","name":"implementation","nameLocation":"976:14:73","nodeType":"VariableDeclaration","scope":23131,"src":"968:22:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23125,"name":"address","nodeType":"ElementaryTypeName","src":"968:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"967:24:73"},"returnParameters":{"id":23128,"nodeType":"ParameterList","parameters":[],"src":"1009:0:73"},"scope":23156,"src":"949:922:73","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"documentation":{"id":23132,"nodeType":"StructuredDocumentation","src":"1877:173:73","text":" @dev This is a virtual function that should be overridden so it returns the address to which the fallback\n function and {_fallback} should delegate."},"id":23137,"implemented":false,"kind":"function","modifiers":[],"name":"_implementation","nameLocation":"2064:15:73","nodeType":"FunctionDefinition","parameters":{"id":23133,"nodeType":"ParameterList","parameters":[],"src":"2079:2:73"},"returnParameters":{"id":23136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23135,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23137,"src":"2113:7:73","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23134,"name":"address","nodeType":"ElementaryTypeName","src":"2113:7:73","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2112:9:73"},"scope":23156,"src":"2055:67:73","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":23146,"nodeType":"Block","src":"2388:45:73","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":23142,"name":"_implementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23137,"src":"2408:15:73","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":23143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2408:17:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23141,"name":"_delegate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23131,"src":"2398:9:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":23144,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2398:28:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23145,"nodeType":"ExpressionStatement","src":"2398:28:73"}]},"documentation":{"id":23138,"nodeType":"StructuredDocumentation","src":"2128:217:73","text":" @dev Delegates the current call to the address returned by `_implementation()`.\n This function does not return to its internal call site, it will return directly to the external caller."},"id":23147,"implemented":true,"kind":"function","modifiers":[],"name":"_fallback","nameLocation":"2359:9:73","nodeType":"FunctionDefinition","parameters":{"id":23139,"nodeType":"ParameterList","parameters":[],"src":"2368:2:73"},"returnParameters":{"id":23140,"nodeType":"ParameterList","parameters":[],"src":"2388:0:73"},"scope":23156,"src":"2350:83:73","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":23154,"nodeType":"Block","src":"2666:28:73","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":23151,"name":"_fallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23147,"src":"2676:9:73","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":23152,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2676:11:73","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23153,"nodeType":"ExpressionStatement","src":"2676:11:73"}]},"documentation":{"id":23148,"nodeType":"StructuredDocumentation","src":"2439:186:73","text":" @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other\n function in the contract matches the call data."},"id":23155,"implemented":true,"kind":"fallback","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":23149,"nodeType":"ParameterList","parameters":[],"src":"2638:2:73"},"returnParameters":{"id":23150,"nodeType":"ParameterList","parameters":[],"src":"2666:0:73"},"scope":23156,"src":"2630:64:73","stateMutability":"payable","virtual":true,"visibility":"external"}],"scope":23157,"src":"724:1972:73","usedErrors":[],"usedEvents":[]}],"src":"99:2598:73"},"id":73},"@openzeppelin/contracts/proxy/beacon/IBeacon.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/beacon/IBeacon.sol","exportedSymbols":{"IBeacon":[23166]},"id":23167,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":23158,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"108:25:74"},{"abstract":false,"baseContracts":[],"canonicalName":"IBeacon","contractDependencies":[],"contractKind":"interface","documentation":{"id":23159,"nodeType":"StructuredDocumentation","src":"135:79:74","text":" @dev This is the interface that {BeaconProxy} expects of its beacon."},"fullyImplemented":false,"id":23166,"linearizedBaseContracts":[23166],"name":"IBeacon","nameLocation":"225:7:74","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":23160,"nodeType":"StructuredDocumentation","src":"239:168:74","text":" @dev Must return an address that can be used as a delegate call target.\n {UpgradeableBeacon} will check that this address is a contract."},"functionSelector":"5c60da1b","id":23165,"implemented":false,"kind":"function","modifiers":[],"name":"implementation","nameLocation":"421:14:74","nodeType":"FunctionDefinition","parameters":{"id":23161,"nodeType":"ParameterList","parameters":[],"src":"435:2:74"},"returnParameters":{"id":23164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23163,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23165,"src":"461:7:74","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23162,"name":"address","nodeType":"ElementaryTypeName","src":"461:7:74","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"460:9:74"},"scope":23166,"src":"412:58:74","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":23167,"src":"215:257:74","usedErrors":[],"usedEvents":[]}],"src":"108:365:74"},"id":74},"@openzeppelin/contracts/proxy/utils/Initializable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","exportedSymbols":{"Initializable":[23434]},"id":23435,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":23168,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"113:24:75"},{"abstract":true,"baseContracts":[],"canonicalName":"Initializable","contractDependencies":[],"contractKind":"contract","documentation":{"id":23169,"nodeType":"StructuredDocumentation","src":"139:2209:75","text":" @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n case an upgrade adds a module that needs to be initialized.\n For example:\n [.hljs-theme-light.nopadding]\n ```solidity\n contract MyToken is ERC20Upgradeable {\n     function initialize() initializer public {\n         __ERC20_init(\"MyToken\", \"MTK\");\n     }\n }\n contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n     function initializeV2() reinitializer(2) public {\n         __ERC20Permit_init(\"MyToken\");\n     }\n }\n ```\n TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n [CAUTION]\n ====\n Avoid leaving a contract uninitialized.\n An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n [.hljs-theme-light.nopadding]\n ```\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor() {\n     _disableInitializers();\n }\n ```\n ===="},"fullyImplemented":true,"id":23434,"linearizedBaseContracts":[23434],"name":"Initializable","nameLocation":"2367:13:75","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Initializable.InitializableStorage","documentation":{"id":23170,"nodeType":"StructuredDocumentation","src":"2387:293:75","text":" @dev Storage of the initializable contract.\n It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions\n when using with upgradeable contracts.\n @custom:storage-location erc7201:openzeppelin.storage.Initializable"},"id":23177,"members":[{"constant":false,"id":23173,"mutability":"mutable","name":"_initialized","nameLocation":"2820:12:75","nodeType":"VariableDeclaration","scope":23177,"src":"2813:19:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":23172,"name":"uint64","nodeType":"ElementaryTypeName","src":"2813:6:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":23176,"mutability":"mutable","name":"_initializing","nameLocation":"2955:13:75","nodeType":"VariableDeclaration","scope":23177,"src":"2950:18:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":23175,"name":"bool","nodeType":"ElementaryTypeName","src":"2950:4:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"InitializableStorage","nameLocation":"2692:20:75","nodeType":"StructDefinition","scope":23434,"src":"2685:290:75","visibility":"public"},{"constant":true,"id":23180,"mutability":"constant","name":"INITIALIZABLE_STORAGE","nameLocation":"3123:21:75","nodeType":"VariableDeclaration","scope":23434,"src":"3098:115:75","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":23178,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3098:7:75","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307866306335376531363834306466303430663135303838646332663831666533393163333932336265633733653233613936363265666339633232396336613030","id":23179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3147:66:75","typeDescriptions":{"typeIdentifier":"t_rational_108904022758810753673719992590105913556127789646572562039383141376366747609600_by_1","typeString":"int_const 1089...(70 digits omitted)...9600"},"value":"0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00"},"visibility":"private"},{"documentation":{"id":23181,"nodeType":"StructuredDocumentation","src":"3220:60:75","text":" @dev The contract is already initialized."},"errorSelector":"f92ee8a9","id":23183,"name":"InvalidInitialization","nameLocation":"3291:21:75","nodeType":"ErrorDefinition","parameters":{"id":23182,"nodeType":"ParameterList","parameters":[],"src":"3312:2:75"},"src":"3285:30:75"},{"documentation":{"id":23184,"nodeType":"StructuredDocumentation","src":"3321:57:75","text":" @dev The contract is not initializing."},"errorSelector":"d7e6bcf8","id":23186,"name":"NotInitializing","nameLocation":"3389:15:75","nodeType":"ErrorDefinition","parameters":{"id":23185,"nodeType":"ParameterList","parameters":[],"src":"3404:2:75"},"src":"3383:24:75"},{"anonymous":false,"documentation":{"id":23187,"nodeType":"StructuredDocumentation","src":"3413:90:75","text":" @dev Triggered when the contract has been initialized or reinitialized."},"eventSelector":"c7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2","id":23191,"name":"Initialized","nameLocation":"3514:11:75","nodeType":"EventDefinition","parameters":{"id":23190,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23189,"indexed":false,"mutability":"mutable","name":"version","nameLocation":"3533:7:75","nodeType":"VariableDeclaration","scope":23191,"src":"3526:14:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":23188,"name":"uint64","nodeType":"ElementaryTypeName","src":"3526:6:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"3525:16:75"},"src":"3508:34:75"},{"body":{"id":23273,"nodeType":"Block","src":"4092:1079:75","statements":[{"assignments":[23196],"declarations":[{"constant":false,"id":23196,"mutability":"mutable","name":"$","nameLocation":"4187:1:75","nodeType":"VariableDeclaration","scope":23273,"src":"4158:30:75","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":23195,"nodeType":"UserDefinedTypeName","pathNode":{"id":23194,"name":"InitializableStorage","nameLocations":["4158:20:75"],"nodeType":"IdentifierPath","referencedDeclaration":23177,"src":"4158:20:75"},"referencedDeclaration":23177,"src":"4158:20:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"id":23199,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23197,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23433,"src":"4191:24:75","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$23177_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":23198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4191:26:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"4158:59:75"},{"assignments":[23201],"declarations":[{"constant":false,"id":23201,"mutability":"mutable","name":"isTopLevelCall","nameLocation":"4284:14:75","nodeType":"VariableDeclaration","scope":23273,"src":"4279:19:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":23200,"name":"bool","nodeType":"ElementaryTypeName","src":"4279:4:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":23205,"initialValue":{"id":23204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4301:16:75","subExpression":{"expression":{"id":23202,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23196,"src":"4302:1:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":23203,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4304:13:75","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":23176,"src":"4302:15:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4279:38:75"},{"assignments":[23207],"declarations":[{"constant":false,"id":23207,"mutability":"mutable","name":"initialized","nameLocation":"4334:11:75","nodeType":"VariableDeclaration","scope":23273,"src":"4327:18:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":23206,"name":"uint64","nodeType":"ElementaryTypeName","src":"4327:6:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":23210,"initialValue":{"expression":{"id":23208,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23196,"src":"4348:1:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":23209,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4350:12:75","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":23173,"src":"4348:14:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"4327:35:75"},{"assignments":[23212],"declarations":[{"constant":false,"id":23212,"mutability":"mutable","name":"initialSetup","nameLocation":"4709:12:75","nodeType":"VariableDeclaration","scope":23273,"src":"4704:17:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":23211,"name":"bool","nodeType":"ElementaryTypeName","src":"4704:4:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":23218,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23217,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":23215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23213,"name":"initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23207,"src":"4724:11:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":23214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4739:1:75","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4724:16:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":23216,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23201,"src":"4744:14:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4724:34:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4704:54:75"},{"assignments":[23220],"declarations":[{"constant":false,"id":23220,"mutability":"mutable","name":"construction","nameLocation":"4773:12:75","nodeType":"VariableDeclaration","scope":23273,"src":"4768:17:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":23219,"name":"bool","nodeType":"ElementaryTypeName","src":"4768:4:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":23233,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":23223,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23221,"name":"initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23207,"src":"4788:11:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":23222,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4803:1:75","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4788:16:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"arguments":[{"id":23226,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4816:4:75","typeDescriptions":{"typeIdentifier":"t_contract$_Initializable_$23434","typeString":"contract Initializable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Initializable_$23434","typeString":"contract Initializable"}],"id":23225,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4808:7:75","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23224,"name":"address","nodeType":"ElementaryTypeName","src":"4808:7:75","typeDescriptions":{}}},"id":23227,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4808:13:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":23228,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4822:4:75","memberName":"code","nodeType":"MemberAccess","src":"4808:18:75","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":23229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4827:6:75","memberName":"length","nodeType":"MemberAccess","src":"4808:25:75","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":23230,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4837:1:75","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4808:30:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4788:50:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4768:70:75"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23238,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4853:13:75","subExpression":{"id":23234,"name":"initialSetup","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23212,"src":"4854:12:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":23237,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4870:13:75","subExpression":{"id":23236,"name":"construction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23220,"src":"4871:12:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4853:30:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23243,"nodeType":"IfStatement","src":"4849:91:75","trueBody":{"id":23242,"nodeType":"Block","src":"4885:55:75","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23239,"name":"InvalidInitialization","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23183,"src":"4906:21:75","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23240,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4906:23:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23241,"nodeType":"RevertStatement","src":"4899:30:75"}]}},{"expression":{"id":23248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":23244,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23196,"src":"4949:1:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":23246,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4951:12:75","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":23173,"src":"4949:14:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"31","id":23247,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4966:1:75","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4949:18:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":23249,"nodeType":"ExpressionStatement","src":"4949:18:75"},{"condition":{"id":23250,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23201,"src":"4981:14:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23258,"nodeType":"IfStatement","src":"4977:67:75","trueBody":{"id":23257,"nodeType":"Block","src":"4997:47:75","statements":[{"expression":{"id":23255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":23251,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23196,"src":"5011:1:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":23253,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5013:13:75","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":23176,"src":"5011:15:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":23254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5029:4:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"5011:22:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23256,"nodeType":"ExpressionStatement","src":"5011:22:75"}]}},{"id":23259,"nodeType":"PlaceholderStatement","src":"5053:1:75"},{"condition":{"id":23260,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23201,"src":"5068:14:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23272,"nodeType":"IfStatement","src":"5064:101:75","trueBody":{"id":23271,"nodeType":"Block","src":"5084:81:75","statements":[{"expression":{"id":23265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":23261,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23196,"src":"5098:1:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":23263,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5100:13:75","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":23176,"src":"5098:15:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":23264,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5116:5:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"5098:23:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23266,"nodeType":"ExpressionStatement","src":"5098:23:75"},{"eventCall":{"arguments":[{"hexValue":"31","id":23268,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5152:1:75","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":23267,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23191,"src":"5140:11:75","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$returns$__$","typeString":"function (uint64)"}},"id":23269,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5140:14:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23270,"nodeType":"EmitStatement","src":"5135:19:75"}]}}]},"documentation":{"id":23192,"nodeType":"StructuredDocumentation","src":"3548:516:75","text":" @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n `onlyInitializing` functions can be used to initialize parent contracts.\n Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any\n number of times. This behavior in the constructor can be useful during testing and is not expected to be used in\n production.\n Emits an {Initialized} event."},"id":23274,"name":"initializer","nameLocation":"4078:11:75","nodeType":"ModifierDefinition","parameters":{"id":23193,"nodeType":"ParameterList","parameters":[],"src":"4089:2:75"},"src":"4069:1102:75","virtual":false,"visibility":"internal"},{"body":{"id":23320,"nodeType":"Block","src":"6289:392:75","statements":[{"assignments":[23281],"declarations":[{"constant":false,"id":23281,"mutability":"mutable","name":"$","nameLocation":"6384:1:75","nodeType":"VariableDeclaration","scope":23320,"src":"6355:30:75","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":23280,"nodeType":"UserDefinedTypeName","pathNode":{"id":23279,"name":"InitializableStorage","nameLocations":["6355:20:75"],"nodeType":"IdentifierPath","referencedDeclaration":23177,"src":"6355:20:75"},"referencedDeclaration":23177,"src":"6355:20:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"id":23284,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23282,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23433,"src":"6388:24:75","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$23177_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":23283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6388:26:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"6355:59:75"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23285,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23281,"src":"6429:1:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":23286,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6431:13:75","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":23176,"src":"6429:15:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":23290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23287,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23281,"src":"6448:1:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":23288,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6450:12:75","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":23173,"src":"6448:14:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":23289,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23277,"src":"6466:7:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"6448:25:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6429:44:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23296,"nodeType":"IfStatement","src":"6425:105:75","trueBody":{"id":23295,"nodeType":"Block","src":"6475:55:75","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23292,"name":"InvalidInitialization","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23183,"src":"6496:21:75","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23293,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6496:23:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23294,"nodeType":"RevertStatement","src":"6489:30:75"}]}},{"expression":{"id":23301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":23297,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23281,"src":"6539:1:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":23299,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6541:12:75","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":23173,"src":"6539:14:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":23300,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23277,"src":"6556:7:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"6539:24:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":23302,"nodeType":"ExpressionStatement","src":"6539:24:75"},{"expression":{"id":23307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":23303,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23281,"src":"6573:1:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":23305,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6575:13:75","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":23176,"src":"6573:15:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":23306,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6591:4:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6573:22:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23308,"nodeType":"ExpressionStatement","src":"6573:22:75"},{"id":23309,"nodeType":"PlaceholderStatement","src":"6605:1:75"},{"expression":{"id":23314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":23310,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23281,"src":"6616:1:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":23312,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6618:13:75","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":23176,"src":"6616:15:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":23313,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6634:5:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"6616:23:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23315,"nodeType":"ExpressionStatement","src":"6616:23:75"},{"eventCall":{"arguments":[{"id":23317,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23277,"src":"6666:7:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":23316,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23191,"src":"6654:11:75","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$returns$__$","typeString":"function (uint64)"}},"id":23318,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6654:20:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23319,"nodeType":"EmitStatement","src":"6649:25:75"}]},"documentation":{"id":23275,"nodeType":"StructuredDocumentation","src":"5177:1068:75","text":" @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n used to initialize parent contracts.\n A reinitializer may be used after the original initialization step. This is essential to configure modules that\n are added through upgrades and that require initialization.\n When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n cannot be nested. If one is invoked in the context of another, execution will revert.\n Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n a contract, executing them in the right order is up to the developer or operator.\n WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.\n Emits an {Initialized} event."},"id":23321,"name":"reinitializer","nameLocation":"6259:13:75","nodeType":"ModifierDefinition","parameters":{"id":23278,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23277,"mutability":"mutable","name":"version","nameLocation":"6280:7:75","nodeType":"VariableDeclaration","scope":23321,"src":"6273:14:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":23276,"name":"uint64","nodeType":"ElementaryTypeName","src":"6273:6:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6272:16:75"},"src":"6250:431:75","virtual":false,"visibility":"internal"},{"body":{"id":23328,"nodeType":"Block","src":"6919:48:75","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":23324,"name":"_checkInitializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23342,"src":"6929:18:75","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":23325,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6929:20:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23326,"nodeType":"ExpressionStatement","src":"6929:20:75"},{"id":23327,"nodeType":"PlaceholderStatement","src":"6959:1:75"}]},"documentation":{"id":23322,"nodeType":"StructuredDocumentation","src":"6687:199:75","text":" @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n {initializer} and {reinitializer} modifiers, directly or indirectly."},"id":23329,"name":"onlyInitializing","nameLocation":"6900:16:75","nodeType":"ModifierDefinition","parameters":{"id":23323,"nodeType":"ParameterList","parameters":[],"src":"6916:2:75"},"src":"6891:76:75","virtual":false,"visibility":"internal"},{"body":{"id":23341,"nodeType":"Block","src":"7134:89:75","statements":[{"condition":{"id":23335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7148:18:75","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":23333,"name":"_isInitializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23410,"src":"7149:15:75","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":23334,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7149:17:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23340,"nodeType":"IfStatement","src":"7144:73:75","trueBody":{"id":23339,"nodeType":"Block","src":"7168:49:75","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23336,"name":"NotInitializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23186,"src":"7189:15:75","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23337,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7189:17:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23338,"nodeType":"RevertStatement","src":"7182:24:75"}]}}]},"documentation":{"id":23330,"nodeType":"StructuredDocumentation","src":"6973:104:75","text":" @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}."},"id":23342,"implemented":true,"kind":"function","modifiers":[],"name":"_checkInitializing","nameLocation":"7091:18:75","nodeType":"FunctionDefinition","parameters":{"id":23331,"nodeType":"ParameterList","parameters":[],"src":"7109:2:75"},"returnParameters":{"id":23332,"nodeType":"ParameterList","parameters":[],"src":"7134:0:75"},"scope":23434,"src":"7082:141:75","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":23387,"nodeType":"Block","src":"7758:373:75","statements":[{"assignments":[23348],"declarations":[{"constant":false,"id":23348,"mutability":"mutable","name":"$","nameLocation":"7853:1:75","nodeType":"VariableDeclaration","scope":23387,"src":"7824:30:75","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":23347,"nodeType":"UserDefinedTypeName","pathNode":{"id":23346,"name":"InitializableStorage","nameLocations":["7824:20:75"],"nodeType":"IdentifierPath","referencedDeclaration":23177,"src":"7824:20:75"},"referencedDeclaration":23177,"src":"7824:20:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"id":23351,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23349,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23433,"src":"7857:24:75","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$23177_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":23350,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7857:26:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"7824:59:75"},{"condition":{"expression":{"id":23352,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23348,"src":"7898:1:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":23353,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7900:13:75","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":23176,"src":"7898:15:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23358,"nodeType":"IfStatement","src":"7894:76:75","trueBody":{"id":23357,"nodeType":"Block","src":"7915:55:75","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23354,"name":"InvalidInitialization","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23183,"src":"7936:21:75","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23355,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7936:23:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23356,"nodeType":"RevertStatement","src":"7929:30:75"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":23366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":23359,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23348,"src":"7983:1:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":23360,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7985:12:75","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":23173,"src":"7983:14:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":23363,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8006:6:75","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":23362,"name":"uint64","nodeType":"ElementaryTypeName","src":"8006:6:75","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":23361,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8001:4:75","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":23364,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8001:12:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":23365,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8014:3:75","memberName":"max","nodeType":"MemberAccess","src":"8001:16:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"7983:34:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23386,"nodeType":"IfStatement","src":"7979:146:75","trueBody":{"id":23385,"nodeType":"Block","src":"8019:106:75","statements":[{"expression":{"id":23375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":23367,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23348,"src":"8033:1:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":23369,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8035:12:75","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":23173,"src":"8033:14:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"arguments":[{"id":23372,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8055:6:75","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":23371,"name":"uint64","nodeType":"ElementaryTypeName","src":"8055:6:75","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":23370,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8050:4:75","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":23373,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8050:12:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":23374,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8063:3:75","memberName":"max","nodeType":"MemberAccess","src":"8050:16:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"8033:33:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":23376,"nodeType":"ExpressionStatement","src":"8033:33:75"},{"eventCall":{"arguments":[{"expression":{"arguments":[{"id":23380,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8102:6:75","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":23379,"name":"uint64","nodeType":"ElementaryTypeName","src":"8102:6:75","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":23378,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8097:4:75","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":23381,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8097:12:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":23382,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8110:3:75","memberName":"max","nodeType":"MemberAccess","src":"8097:16:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":23377,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23191,"src":"8085:11:75","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$returns$__$","typeString":"function (uint64)"}},"id":23383,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8085:29:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23384,"nodeType":"EmitStatement","src":"8080:34:75"}]}}]},"documentation":{"id":23343,"nodeType":"StructuredDocumentation","src":"7229:475:75","text":" @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n through proxies.\n Emits an {Initialized} event the first time it is successfully executed."},"id":23388,"implemented":true,"kind":"function","modifiers":[],"name":"_disableInitializers","nameLocation":"7718:20:75","nodeType":"FunctionDefinition","parameters":{"id":23344,"nodeType":"ParameterList","parameters":[],"src":"7738:2:75"},"returnParameters":{"id":23345,"nodeType":"ParameterList","parameters":[],"src":"7758:0:75"},"scope":23434,"src":"7709:422:75","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":23398,"nodeType":"Block","src":"8306:63:75","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":23394,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23433,"src":"8323:24:75","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$23177_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":23395,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8323:26:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":23396,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8350:12:75","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":23173,"src":"8323:39:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":23393,"id":23397,"nodeType":"Return","src":"8316:46:75"}]},"documentation":{"id":23389,"nodeType":"StructuredDocumentation","src":"8137:99:75","text":" @dev Returns the highest version that has been initialized. See {reinitializer}."},"id":23399,"implemented":true,"kind":"function","modifiers":[],"name":"_getInitializedVersion","nameLocation":"8250:22:75","nodeType":"FunctionDefinition","parameters":{"id":23390,"nodeType":"ParameterList","parameters":[],"src":"8272:2:75"},"returnParameters":{"id":23393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23392,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23399,"src":"8298:6:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":23391,"name":"uint64","nodeType":"ElementaryTypeName","src":"8298:6:75","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8297:8:75"},"scope":23434,"src":"8241:128:75","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":23409,"nodeType":"Block","src":"8541:64:75","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":23405,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23433,"src":"8558:24:75","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$23177_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":23406,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8558:26:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":23407,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8585:13:75","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":23176,"src":"8558:40:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":23404,"id":23408,"nodeType":"Return","src":"8551:47:75"}]},"documentation":{"id":23400,"nodeType":"StructuredDocumentation","src":"8375:105:75","text":" @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}."},"id":23410,"implemented":true,"kind":"function","modifiers":[],"name":"_isInitializing","nameLocation":"8494:15:75","nodeType":"FunctionDefinition","parameters":{"id":23401,"nodeType":"ParameterList","parameters":[],"src":"8509:2:75"},"returnParameters":{"id":23404,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23403,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23410,"src":"8535:4:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":23402,"name":"bool","nodeType":"ElementaryTypeName","src":"8535:4:75","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8534:6:75"},"scope":23434,"src":"8485:120:75","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":23418,"nodeType":"Block","src":"8896:45:75","statements":[{"expression":{"id":23416,"name":"INITIALIZABLE_STORAGE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23180,"src":"8913:21:75","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":23415,"id":23417,"nodeType":"Return","src":"8906:28:75"}]},"documentation":{"id":23411,"nodeType":"StructuredDocumentation","src":"8611:203:75","text":" @dev Pointer to storage slot. Allows integrators to override it with a custom storage location.\n NOTE: Consider following the ERC-7201 formula to derive storage locations."},"id":23419,"implemented":true,"kind":"function","modifiers":[],"name":"_initializableStorageSlot","nameLocation":"8828:25:75","nodeType":"FunctionDefinition","parameters":{"id":23412,"nodeType":"ParameterList","parameters":[],"src":"8853:2:75"},"returnParameters":{"id":23415,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23414,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23419,"src":"8887:7:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":23413,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8887:7:75","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8886:9:75"},"scope":23434,"src":"8819:122:75","stateMutability":"pure","virtual":true,"visibility":"internal"},{"body":{"id":23432,"nodeType":"Block","src":"9161:115:75","statements":[{"assignments":[23427],"declarations":[{"constant":false,"id":23427,"mutability":"mutable","name":"slot","nameLocation":"9179:4:75","nodeType":"VariableDeclaration","scope":23432,"src":"9171:12:75","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":23426,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9171:7:75","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":23430,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23428,"name":"_initializableStorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23419,"src":"9186:25:75","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_bytes32_$","typeString":"function () pure returns (bytes32)"}},"id":23429,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9186:27:75","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"9171:42:75"},{"AST":{"nativeSrc":"9232:38:75","nodeType":"YulBlock","src":"9232:38:75","statements":[{"nativeSrc":"9246:14:75","nodeType":"YulAssignment","src":"9246:14:75","value":{"name":"slot","nativeSrc":"9256:4:75","nodeType":"YulIdentifier","src":"9256:4:75"},"variableNames":[{"name":"$.slot","nativeSrc":"9246:6:75","nodeType":"YulIdentifier","src":"9246:6:75"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":23424,"isOffset":false,"isSlot":true,"src":"9246:6:75","suffix":"slot","valueSize":1},{"declaration":23427,"isOffset":false,"isSlot":false,"src":"9256:4:75","valueSize":1}],"id":23431,"nodeType":"InlineAssembly","src":"9223:47:75"}]},"documentation":{"id":23420,"nodeType":"StructuredDocumentation","src":"8947:67:75","text":" @dev Returns a pointer to the storage namespace."},"id":23433,"implemented":true,"kind":"function","modifiers":[],"name":"_getInitializableStorage","nameLocation":"9080:24:75","nodeType":"FunctionDefinition","parameters":{"id":23421,"nodeType":"ParameterList","parameters":[],"src":"9104:2:75"},"returnParameters":{"id":23425,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23424,"mutability":"mutable","name":"$","nameLocation":"9158:1:75","nodeType":"VariableDeclaration","scope":23433,"src":"9129:30:75","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":23423,"nodeType":"UserDefinedTypeName","pathNode":{"id":23422,"name":"InitializableStorage","nameLocations":["9129:20:75"],"nodeType":"IdentifierPath","referencedDeclaration":23177,"src":"9129:20:75"},"referencedDeclaration":23177,"src":"9129:20:75","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$23177_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"src":"9128:32:75"},"scope":23434,"src":"9071:205:75","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":23435,"src":"2349:6929:75","usedErrors":[23183,23186],"usedEvents":[23191]}],"src":"113:9166:75"},"id":75},"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol","exportedSymbols":{"ERC1967Utils":[23120],"IERC1822Proxiable":[22506],"UUPSUpgradeable":[23600]},"id":23601,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":23436,"literals":["solidity","^","0.8",".22"],"nodeType":"PragmaDirective","src":"115:24:76"},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC1822.sol","file":"../../interfaces/draft-IERC1822.sol","id":23438,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":23601,"sourceUnit":22507,"src":"141:70:76","symbolAliases":[{"foreign":{"id":23437,"name":"IERC1822Proxiable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22506,"src":"149:17:76","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol","file":"../ERC1967/ERC1967Utils.sol","id":23440,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":23601,"sourceUnit":23121,"src":"212:57:76","symbolAliases":[{"foreign":{"id":23439,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23120,"src":"220:12:76","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":23442,"name":"IERC1822Proxiable","nameLocations":["951:17:76"],"nodeType":"IdentifierPath","referencedDeclaration":22506,"src":"951:17:76"},"id":23443,"nodeType":"InheritanceSpecifier","src":"951:17:76"}],"canonicalName":"UUPSUpgradeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":23441,"nodeType":"StructuredDocumentation","src":"271:642:76","text":" @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an\n {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.\n A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is\n reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing\n `UUPSUpgradeable` with a custom implementation of upgrades.\n The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.\n @custom:stateless"},"fullyImplemented":false,"id":23600,"linearizedBaseContracts":[23600,22506],"name":"UUPSUpgradeable","nameLocation":"932:15:76","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":23444,"nodeType":"StructuredDocumentation","src":"975:61:76","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":23450,"mutability":"immutable","name":"__self","nameLocation":"1067:6:76","nodeType":"VariableDeclaration","scope":23600,"src":"1041:48:76","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23445,"name":"address","nodeType":"ElementaryTypeName","src":"1041:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"value":{"arguments":[{"id":23448,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1084:4:76","typeDescriptions":{"typeIdentifier":"t_contract$_UUPSUpgradeable_$23600","typeString":"contract UUPSUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_UUPSUpgradeable_$23600","typeString":"contract UUPSUpgradeable"}],"id":23447,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1076:7:76","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23446,"name":"address","nodeType":"ElementaryTypeName","src":"1076:7:76","typeDescriptions":{}}},"id":23449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1076:13:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"constant":true,"documentation":{"id":23451,"nodeType":"StructuredDocumentation","src":"1096:631:76","text":" @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)`\n and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called,\n while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string.\n If the getter returns `\"5.0.0\"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must\n be the empty byte string if no function should be called, making it impossible to invoke the `receive` function\n during an upgrade."},"functionSelector":"ad3cb1cc","id":23454,"mutability":"constant","name":"UPGRADE_INTERFACE_VERSION","nameLocation":"1755:25:76","nodeType":"VariableDeclaration","scope":23600,"src":"1732:58:76","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":23452,"name":"string","nodeType":"ElementaryTypeName","src":"1732:6:76","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"value":{"hexValue":"352e302e30","id":23453,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1783:7:76","typeDescriptions":{"typeIdentifier":"t_stringliteral_2ade050ecfcf8ae20ae1d10a23573f9d7e0bad85e74a2cf8338a65401e64558c","typeString":"literal_string \"5.0.0\""},"value":"5.0.0"},"visibility":"public"},{"documentation":{"id":23455,"nodeType":"StructuredDocumentation","src":"1797:65:76","text":" @dev The call is from an unauthorized context."},"errorSelector":"e07c8dba","id":23457,"name":"UUPSUnauthorizedCallContext","nameLocation":"1873:27:76","nodeType":"ErrorDefinition","parameters":{"id":23456,"nodeType":"ParameterList","parameters":[],"src":"1900:2:76"},"src":"1867:36:76"},{"documentation":{"id":23458,"nodeType":"StructuredDocumentation","src":"1909:68:76","text":" @dev The storage `slot` is unsupported as a UUID."},"errorSelector":"aa1d49a4","id":23462,"name":"UUPSUnsupportedProxiableUUID","nameLocation":"1988:28:76","nodeType":"ErrorDefinition","parameters":{"id":23461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23460,"mutability":"mutable","name":"slot","nameLocation":"2025:4:76","nodeType":"VariableDeclaration","scope":23462,"src":"2017:12:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":23459,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2017:7:76","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2016:14:76"},"src":"1982:49:76"},{"body":{"id":23469,"nodeType":"Block","src":"2558:41:76","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":23465,"name":"_checkProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23532,"src":"2568:11:76","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":23466,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2568:13:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23467,"nodeType":"ExpressionStatement","src":"2568:13:76"},{"id":23468,"nodeType":"PlaceholderStatement","src":"2591:1:76"}]},"documentation":{"id":23463,"nodeType":"StructuredDocumentation","src":"2037:495:76","text":" @dev Check that the execution is being performed through a delegatecall call and that the execution context is\n a proxy contract with an implementation (as defined in ERC-1967) pointing to self. This should only be the case\n for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a\n function through ERC-1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to\n fail."},"id":23470,"name":"onlyProxy","nameLocation":"2546:9:76","nodeType":"ModifierDefinition","parameters":{"id":23464,"nodeType":"ParameterList","parameters":[],"src":"2555:2:76"},"src":"2537:62:76","virtual":false,"visibility":"internal"},{"body":{"id":23477,"nodeType":"Block","src":"2829:48:76","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":23473,"name":"_checkNotDelegated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23548,"src":"2839:18:76","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":23474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2839:20:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23475,"nodeType":"ExpressionStatement","src":"2839:20:76"},{"id":23476,"nodeType":"PlaceholderStatement","src":"2869:1:76"}]},"documentation":{"id":23471,"nodeType":"StructuredDocumentation","src":"2605:195:76","text":" @dev Check that the execution is not being performed through a delegate call. This allows a function to be\n callable on the implementing contract but not through proxies."},"id":23478,"name":"notDelegated","nameLocation":"2814:12:76","nodeType":"ModifierDefinition","parameters":{"id":23472,"nodeType":"ParameterList","parameters":[],"src":"2826:2:76"},"src":"2805:72:76","virtual":false,"visibility":"internal"},{"baseFunctions":[22505],"body":{"id":23489,"nodeType":"Block","src":"3536:56:76","statements":[{"expression":{"expression":{"id":23486,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23120,"src":"3553:12:76","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$23120_$","typeString":"type(library ERC1967Utils)"}},"id":23487,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3566:19:76","memberName":"IMPLEMENTATION_SLOT","nodeType":"MemberAccess","referencedDeclaration":22841,"src":"3553:32:76","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":23485,"id":23488,"nodeType":"Return","src":"3546:39:76"}]},"documentation":{"id":23479,"nodeType":"StructuredDocumentation","src":"2883:578:76","text":" @dev Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the\n implementation. It is used to validate the implementation's compatibility when performing an upgrade.\n IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier."},"functionSelector":"52d1902d","id":23490,"implemented":true,"kind":"function","modifiers":[{"id":23482,"kind":"modifierInvocation","modifierName":{"id":23481,"name":"notDelegated","nameLocations":["3505:12:76"],"nodeType":"IdentifierPath","referencedDeclaration":23478,"src":"3505:12:76"},"nodeType":"ModifierInvocation","src":"3505:12:76"}],"name":"proxiableUUID","nameLocation":"3475:13:76","nodeType":"FunctionDefinition","parameters":{"id":23480,"nodeType":"ParameterList","parameters":[],"src":"3488:2:76"},"returnParameters":{"id":23485,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23484,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23490,"src":"3527:7:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":23483,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3527:7:76","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3526:9:76"},"scope":23600,"src":"3466:126:76","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":23509,"nodeType":"Block","src":"4016:109:76","statements":[{"expression":{"arguments":[{"id":23501,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23493,"src":"4044:17:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23500,"name":"_authorizeUpgrade","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23554,"src":"4026:17:76","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":23502,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4026:36:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23503,"nodeType":"ExpressionStatement","src":"4026:36:76"},{"expression":{"arguments":[{"id":23505,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23493,"src":"4094:17:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23506,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23495,"src":"4113:4:76","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":23504,"name":"_upgradeToAndCallUUPS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23599,"src":"4072:21:76","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,bytes memory)"}},"id":23507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4072:46:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23508,"nodeType":"ExpressionStatement","src":"4072:46:76"}]},"documentation":{"id":23491,"nodeType":"StructuredDocumentation","src":"3598:308:76","text":" @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call\n encoded in `data`.\n Calls {_authorizeUpgrade}.\n Emits an {Upgraded} event.\n @custom:oz-upgrades-unsafe-allow-reachable delegatecall"},"functionSelector":"4f1ef286","id":23510,"implemented":true,"kind":"function","modifiers":[{"id":23498,"kind":"modifierInvocation","modifierName":{"id":23497,"name":"onlyProxy","nameLocations":["4006:9:76"],"nodeType":"IdentifierPath","referencedDeclaration":23470,"src":"4006:9:76"},"nodeType":"ModifierInvocation","src":"4006:9:76"}],"name":"upgradeToAndCall","nameLocation":"3920:16:76","nodeType":"FunctionDefinition","parameters":{"id":23496,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23493,"mutability":"mutable","name":"newImplementation","nameLocation":"3945:17:76","nodeType":"VariableDeclaration","scope":23510,"src":"3937:25:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23492,"name":"address","nodeType":"ElementaryTypeName","src":"3937:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23495,"mutability":"mutable","name":"data","nameLocation":"3977:4:76","nodeType":"VariableDeclaration","scope":23510,"src":"3964:17:76","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":23494,"name":"bytes","nodeType":"ElementaryTypeName","src":"3964:5:76","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3936:46:76"},"returnParameters":{"id":23499,"nodeType":"ParameterList","parameters":[],"src":"4016:0:76"},"scope":23600,"src":"3911:214:76","stateMutability":"payable","virtual":true,"visibility":"public"},{"body":{"id":23531,"nodeType":"Block","src":"4373:267:76","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":23525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":23516,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4408:4:76","typeDescriptions":{"typeIdentifier":"t_contract$_UUPSUpgradeable_$23600","typeString":"contract UUPSUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_UUPSUpgradeable_$23600","typeString":"contract UUPSUpgradeable"}],"id":23515,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4400:7:76","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23514,"name":"address","nodeType":"ElementaryTypeName","src":"4400:7:76","typeDescriptions":{}}},"id":23517,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4400:13:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":23518,"name":"__self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23450,"src":"4417:6:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4400:23:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":23520,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23120,"src":"4478:12:76","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$23120_$","typeString":"type(library ERC1967Utils)"}},"id":23521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4491:17:76","memberName":"getImplementation","nodeType":"MemberAccess","referencedDeclaration":22872,"src":"4478:30:76","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":23522,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4478:32:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":23523,"name":"__self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23450,"src":"4514:6:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4478:42:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4400:120:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23530,"nodeType":"IfStatement","src":"4383:251:76","trueBody":{"id":23529,"nodeType":"Block","src":"4573:61:76","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23526,"name":"UUPSUnauthorizedCallContext","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23457,"src":"4594:27:76","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4594:29:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23528,"nodeType":"RevertStatement","src":"4587:36:76"}]}}]},"documentation":{"id":23511,"nodeType":"StructuredDocumentation","src":"4131:192:76","text":" @dev Reverts if the execution is not performed via delegatecall or the execution\n context is not of a proxy with an ERC-1967 compliant implementation pointing to self."},"id":23532,"implemented":true,"kind":"function","modifiers":[],"name":"_checkProxy","nameLocation":"4337:11:76","nodeType":"FunctionDefinition","parameters":{"id":23512,"nodeType":"ParameterList","parameters":[],"src":"4348:2:76"},"returnParameters":{"id":23513,"nodeType":"ParameterList","parameters":[],"src":"4373:0:76"},"scope":23600,"src":"4328:312:76","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":23547,"nodeType":"Block","src":"4809:161:76","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":23538,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4831:4:76","typeDescriptions":{"typeIdentifier":"t_contract$_UUPSUpgradeable_$23600","typeString":"contract UUPSUpgradeable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_UUPSUpgradeable_$23600","typeString":"contract UUPSUpgradeable"}],"id":23537,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4823:7:76","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23536,"name":"address","nodeType":"ElementaryTypeName","src":"4823:7:76","typeDescriptions":{}}},"id":23539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4823:13:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":23540,"name":"__self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23450,"src":"4840:6:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4823:23:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23546,"nodeType":"IfStatement","src":"4819:145:76","trueBody":{"id":23545,"nodeType":"Block","src":"4848:116:76","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":23542,"name":"UUPSUnauthorizedCallContext","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23457,"src":"4924:27:76","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":23543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4924:29:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23544,"nodeType":"RevertStatement","src":"4917:36:76"}]}}]},"documentation":{"id":23533,"nodeType":"StructuredDocumentation","src":"4646:106:76","text":" @dev Reverts if the execution is performed via delegatecall.\n See {notDelegated}."},"id":23548,"implemented":true,"kind":"function","modifiers":[],"name":"_checkNotDelegated","nameLocation":"4766:18:76","nodeType":"FunctionDefinition","parameters":{"id":23534,"nodeType":"ParameterList","parameters":[],"src":"4784:2:76"},"returnParameters":{"id":23535,"nodeType":"ParameterList","parameters":[],"src":"4809:0:76"},"scope":23600,"src":"4757:213:76","stateMutability":"view","virtual":true,"visibility":"internal"},{"documentation":{"id":23549,"nodeType":"StructuredDocumentation","src":"4976:372:76","text":" @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by\n {upgradeToAndCall}.\n Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.\n ```solidity\n function _authorizeUpgrade(address) internal onlyOwner {}\n ```"},"id":23554,"implemented":false,"kind":"function","modifiers":[],"name":"_authorizeUpgrade","nameLocation":"5362:17:76","nodeType":"FunctionDefinition","parameters":{"id":23552,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23551,"mutability":"mutable","name":"newImplementation","nameLocation":"5388:17:76","nodeType":"VariableDeclaration","scope":23554,"src":"5380:25:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23550,"name":"address","nodeType":"ElementaryTypeName","src":"5380:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5379:27:76"},"returnParameters":{"id":23553,"nodeType":"ParameterList","parameters":[],"src":"5423:0:76"},"scope":23600,"src":"5353:71:76","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":23598,"nodeType":"Block","src":"5867:453:76","statements":[{"clauses":[{"block":{"id":23587,"nodeType":"Block","src":"5957:212:76","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":23573,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23570,"name":"slot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23568,"src":"5975:4:76","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":23571,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23120,"src":"5983:12:76","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$23120_$","typeString":"type(library ERC1967Utils)"}},"id":23572,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5996:19:76","memberName":"IMPLEMENTATION_SLOT","nodeType":"MemberAccess","referencedDeclaration":22841,"src":"5983:32:76","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"5975:40:76","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23579,"nodeType":"IfStatement","src":"5971:120:76","trueBody":{"id":23578,"nodeType":"Block","src":"6017:74:76","statements":[{"errorCall":{"arguments":[{"id":23575,"name":"slot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23568,"src":"6071:4:76","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":23574,"name":"UUPSUnsupportedProxiableUUID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23462,"src":"6042:28:76","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":23576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6042:34:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23577,"nodeType":"RevertStatement","src":"6035:41:76"}]}},{"expression":{"arguments":[{"id":23583,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23557,"src":"6134:17:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23584,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23559,"src":"6153:4:76","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":23580,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23120,"src":"6104:12:76","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$23120_$","typeString":"type(library ERC1967Utils)"}},"id":23582,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6117:16:76","memberName":"upgradeToAndCall","nodeType":"MemberAccess","referencedDeclaration":22935,"src":"6104:29:76","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (address,bytes memory)"}},"id":23585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6104:54:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23586,"nodeType":"ExpressionStatement","src":"6104:54:76"}]},"errorName":"","id":23588,"nodeType":"TryCatchClause","parameters":{"id":23569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23568,"mutability":"mutable","name":"slot","nameLocation":"5951:4:76","nodeType":"VariableDeclaration","scope":23588,"src":"5943:12:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":23567,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5943:7:76","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5942:14:76"},"src":"5934:235:76"},{"block":{"id":23595,"nodeType":"Block","src":"6176:138:76","statements":[{"errorCall":{"arguments":[{"id":23592,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23557,"src":"6285:17:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":23589,"name":"ERC1967Utils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23120,"src":"6243:12:76","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC1967Utils_$23120_$","typeString":"type(library ERC1967Utils)"}},"id":23591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6256:28:76","memberName":"ERC1967InvalidImplementation","nodeType":"MemberAccess","referencedDeclaration":22846,"src":"6243:41:76","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":23593,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6243:60:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23594,"nodeType":"RevertStatement","src":"6236:67:76"}]},"errorName":"","id":23596,"nodeType":"TryCatchClause","src":"6170:144:76"}],"externalCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":23563,"name":"newImplementation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23557,"src":"5899:17:76","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23562,"name":"IERC1822Proxiable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22506,"src":"5881:17:76","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC1822Proxiable_$22506_$","typeString":"type(contract IERC1822Proxiable)"}},"id":23564,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5881:36:76","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC1822Proxiable_$22506","typeString":"contract IERC1822Proxiable"}},"id":23565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5918:13:76","memberName":"proxiableUUID","nodeType":"MemberAccess","referencedDeclaration":22505,"src":"5881:50:76","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_bytes32_$","typeString":"function () view external returns (bytes32)"}},"id":23566,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5881:52:76","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":23597,"nodeType":"TryStatement","src":"5877:437:76"}]},"documentation":{"id":23555,"nodeType":"StructuredDocumentation","src":"5430:347:76","text":" @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call.\n As a security check, {proxiableUUID} is invoked in the new implementation, and the return value\n is expected to be the implementation slot in ERC-1967.\n Emits an {IERC1967-Upgraded} event."},"id":23599,"implemented":true,"kind":"function","modifiers":[],"name":"_upgradeToAndCallUUPS","nameLocation":"5791:21:76","nodeType":"FunctionDefinition","parameters":{"id":23560,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23557,"mutability":"mutable","name":"newImplementation","nameLocation":"5821:17:76","nodeType":"VariableDeclaration","scope":23599,"src":"5813:25:76","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23556,"name":"address","nodeType":"ElementaryTypeName","src":"5813:7:76","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23559,"mutability":"mutable","name":"data","nameLocation":"5853:4:76","nodeType":"VariableDeclaration","scope":23599,"src":"5840:17:76","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":23558,"name":"bytes","nodeType":"ElementaryTypeName","src":"5840:5:76","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5812:46:76"},"returnParameters":{"id":23561,"nodeType":"ParameterList","parameters":[],"src":"5867:0:76"},"scope":23600,"src":"5782:538:76","stateMutability":"nonpayable","virtual":false,"visibility":"private"}],"scope":23601,"src":"914:5408:76","usedErrors":[22846,22859,23457,23462,25668,26802],"usedEvents":[22272]}],"src":"115:6208:76"},"id":76},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","exportedSymbols":{"Context":[26789],"ERC20":[24115],"IERC20":[24193],"IERC20Errors":[22548],"IERC20Metadata":[24925]},"id":24116,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":23602,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:77"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"./IERC20.sol","id":23604,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":24116,"sourceUnit":24194,"src":"131:36:77","symbolAliases":[{"foreign":{"id":23603,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"139:6:77","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"./extensions/IERC20Metadata.sol","id":23606,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":24116,"sourceUnit":24926,"src":"168:63:77","symbolAliases":[{"foreign":{"id":23605,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"176:14:77","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":23608,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":24116,"sourceUnit":26790,"src":"232:48:77","symbolAliases":[{"foreign":{"id":23607,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26789,"src":"240:7:77","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"../../interfaces/draft-IERC6093.sol","id":23610,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":24116,"sourceUnit":22644,"src":"281:65:77","symbolAliases":[{"foreign":{"id":23609,"name":"IERC20Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22548,"src":"289:12:77","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":23612,"name":"Context","nameLocations":["1133:7:77"],"nodeType":"IdentifierPath","referencedDeclaration":26789,"src":"1133:7:77"},"id":23613,"nodeType":"InheritanceSpecifier","src":"1133:7:77"},{"baseName":{"id":23614,"name":"IERC20","nameLocations":["1142:6:77"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"1142:6:77"},"id":23615,"nodeType":"InheritanceSpecifier","src":"1142:6:77"},{"baseName":{"id":23616,"name":"IERC20Metadata","nameLocations":["1150:14:77"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"1150:14:77"},"id":23617,"nodeType":"InheritanceSpecifier","src":"1150:14:77"},{"baseName":{"id":23618,"name":"IERC20Errors","nameLocations":["1166:12:77"],"nodeType":"IdentifierPath","referencedDeclaration":22548,"src":"1166:12:77"},"id":23619,"nodeType":"InheritanceSpecifier","src":"1166:12:77"}],"canonicalName":"ERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":23611,"nodeType":"StructuredDocumentation","src":"348:757:77","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":24115,"linearizedBaseContracts":[24115,22548,24925,24193,26789],"name":"ERC20","nameLocation":"1124:5:77","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":23623,"mutability":"mutable","name":"_balances","nameLocation":"1229:9:77","nodeType":"VariableDeclaration","scope":24115,"src":"1185:53:77","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":23622,"keyName":"account","keyNameLocation":"1201:7:77","keyType":{"id":23620,"name":"address","nodeType":"ElementaryTypeName","src":"1193:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1185:35:77","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":23621,"name":"uint256","nodeType":"ElementaryTypeName","src":"1212:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":23629,"mutability":"mutable","name":"_allowances","nameLocation":"1317:11:77","nodeType":"VariableDeclaration","scope":24115,"src":"1245:83:77","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":23628,"keyName":"account","keyNameLocation":"1261:7:77","keyType":{"id":23624,"name":"address","nodeType":"ElementaryTypeName","src":"1253:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1245:63:77","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":23627,"keyName":"spender","keyNameLocation":"1288:7:77","keyType":{"id":23625,"name":"address","nodeType":"ElementaryTypeName","src":"1280:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1272:35:77","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":23626,"name":"uint256","nodeType":"ElementaryTypeName","src":"1299:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":23631,"mutability":"mutable","name":"_totalSupply","nameLocation":"1351:12:77","nodeType":"VariableDeclaration","scope":24115,"src":"1335:28:77","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23630,"name":"uint256","nodeType":"ElementaryTypeName","src":"1335:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":23633,"mutability":"mutable","name":"_name","nameLocation":"1385:5:77","nodeType":"VariableDeclaration","scope":24115,"src":"1370:20:77","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":23632,"name":"string","nodeType":"ElementaryTypeName","src":"1370:6:77","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":23635,"mutability":"mutable","name":"_symbol","nameLocation":"1411:7:77","nodeType":"VariableDeclaration","scope":24115,"src":"1396:22:77","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":23634,"name":"string","nodeType":"ElementaryTypeName","src":"1396:6:77","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":23651,"nodeType":"Block","src":"1638:57:77","statements":[{"expression":{"id":23645,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":23643,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23633,"src":"1648:5:77","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":23644,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23638,"src":"1656:5:77","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1648:13:77","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":23646,"nodeType":"ExpressionStatement","src":"1648:13:77"},{"expression":{"id":23649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":23647,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23635,"src":"1671:7:77","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":23648,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23640,"src":"1681:7:77","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1671:17:77","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":23650,"nodeType":"ExpressionStatement","src":"1671:17:77"}]},"documentation":{"id":23636,"nodeType":"StructuredDocumentation","src":"1425:152:77","text":" @dev Sets the values for {name} and {symbol}.\n Both values are immutable: they can only be set once during construction."},"id":23652,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":23641,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23638,"mutability":"mutable","name":"name_","nameLocation":"1608:5:77","nodeType":"VariableDeclaration","scope":23652,"src":"1594:19:77","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":23637,"name":"string","nodeType":"ElementaryTypeName","src":"1594:6:77","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":23640,"mutability":"mutable","name":"symbol_","nameLocation":"1629:7:77","nodeType":"VariableDeclaration","scope":23652,"src":"1615:21:77","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":23639,"name":"string","nodeType":"ElementaryTypeName","src":"1615:6:77","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1593:44:77"},"returnParameters":{"id":23642,"nodeType":"ParameterList","parameters":[],"src":"1638:0:77"},"scope":24115,"src":"1582:113:77","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[24912],"body":{"id":23660,"nodeType":"Block","src":"1820:29:77","statements":[{"expression":{"id":23658,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23633,"src":"1837:5:77","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":23657,"id":23659,"nodeType":"Return","src":"1830:12:77"}]},"documentation":{"id":23653,"nodeType":"StructuredDocumentation","src":"1701:54:77","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":23661,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"1769:4:77","nodeType":"FunctionDefinition","parameters":{"id":23654,"nodeType":"ParameterList","parameters":[],"src":"1773:2:77"},"returnParameters":{"id":23657,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23656,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23661,"src":"1805:13:77","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":23655,"name":"string","nodeType":"ElementaryTypeName","src":"1805:6:77","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1804:15:77"},"scope":24115,"src":"1760:89:77","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[24918],"body":{"id":23669,"nodeType":"Block","src":"2024:31:77","statements":[{"expression":{"id":23667,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23635,"src":"2041:7:77","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":23666,"id":23668,"nodeType":"Return","src":"2034:14:77"}]},"documentation":{"id":23662,"nodeType":"StructuredDocumentation","src":"1855:102:77","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":23670,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"1971:6:77","nodeType":"FunctionDefinition","parameters":{"id":23663,"nodeType":"ParameterList","parameters":[],"src":"1977:2:77"},"returnParameters":{"id":23666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23665,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23670,"src":"2009:13:77","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":23664,"name":"string","nodeType":"ElementaryTypeName","src":"2009:6:77","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2008:15:77"},"scope":24115,"src":"1962:93:77","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[24924],"body":{"id":23678,"nodeType":"Block","src":"2744:26:77","statements":[{"expression":{"hexValue":"3138","id":23676,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2761:2:77","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":23675,"id":23677,"nodeType":"Return","src":"2754:9:77"}]},"documentation":{"id":23671,"nodeType":"StructuredDocumentation","src":"2061:622:77","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":23679,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"2697:8:77","nodeType":"FunctionDefinition","parameters":{"id":23672,"nodeType":"ParameterList","parameters":[],"src":"2705:2:77"},"returnParameters":{"id":23675,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23674,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23679,"src":"2737:5:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":23673,"name":"uint8","nodeType":"ElementaryTypeName","src":"2737:5:77","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2736:7:77"},"scope":24115,"src":"2688:82:77","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[24142],"body":{"id":23687,"nodeType":"Block","src":"2864:36:77","statements":[{"expression":{"id":23685,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23631,"src":"2881:12:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":23684,"id":23686,"nodeType":"Return","src":"2874:19:77"}]},"documentation":{"id":23680,"nodeType":"StructuredDocumentation","src":"2776:22:77","text":"@inheritdoc IERC20"},"functionSelector":"18160ddd","id":23688,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"2812:11:77","nodeType":"FunctionDefinition","parameters":{"id":23681,"nodeType":"ParameterList","parameters":[],"src":"2823:2:77"},"returnParameters":{"id":23684,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23683,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23688,"src":"2855:7:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23682,"name":"uint256","nodeType":"ElementaryTypeName","src":"2855:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2854:9:77"},"scope":24115,"src":"2803:97:77","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[24150],"body":{"id":23700,"nodeType":"Block","src":"3007:42:77","statements":[{"expression":{"baseExpression":{"id":23696,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23623,"src":"3024:9:77","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":23698,"indexExpression":{"id":23697,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23691,"src":"3034:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3024:18:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":23695,"id":23699,"nodeType":"Return","src":"3017:25:77"}]},"documentation":{"id":23689,"nodeType":"StructuredDocumentation","src":"2906:22:77","text":"@inheritdoc IERC20"},"functionSelector":"70a08231","id":23701,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"2942:9:77","nodeType":"FunctionDefinition","parameters":{"id":23692,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23691,"mutability":"mutable","name":"account","nameLocation":"2960:7:77","nodeType":"VariableDeclaration","scope":23701,"src":"2952:15:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23690,"name":"address","nodeType":"ElementaryTypeName","src":"2952:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2951:17:77"},"returnParameters":{"id":23695,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23694,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23701,"src":"2998:7:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23693,"name":"uint256","nodeType":"ElementaryTypeName","src":"2998:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2997:9:77"},"scope":24115,"src":"2933:116:77","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[24160],"body":{"id":23724,"nodeType":"Block","src":"3319:103:77","statements":[{"assignments":[23712],"declarations":[{"constant":false,"id":23712,"mutability":"mutable","name":"owner","nameLocation":"3337:5:77","nodeType":"VariableDeclaration","scope":23724,"src":"3329:13:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23711,"name":"address","nodeType":"ElementaryTypeName","src":"3329:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":23715,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23713,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"3345:10:77","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":23714,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3345:12:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3329:28:77"},{"expression":{"arguments":[{"id":23717,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23712,"src":"3377:5:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23718,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23704,"src":"3384:2:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23719,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23706,"src":"3388:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23716,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23845,"src":"3367:9:77","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":23720,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3367:27:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23721,"nodeType":"ExpressionStatement","src":"3367:27:77"},{"expression":{"hexValue":"74727565","id":23722,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3411:4:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":23710,"id":23723,"nodeType":"Return","src":"3404:11:77"}]},"documentation":{"id":23702,"nodeType":"StructuredDocumentation","src":"3055:184:77","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":23725,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"3253:8:77","nodeType":"FunctionDefinition","parameters":{"id":23707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23704,"mutability":"mutable","name":"to","nameLocation":"3270:2:77","nodeType":"VariableDeclaration","scope":23725,"src":"3262:10:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23703,"name":"address","nodeType":"ElementaryTypeName","src":"3262:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23706,"mutability":"mutable","name":"value","nameLocation":"3282:5:77","nodeType":"VariableDeclaration","scope":23725,"src":"3274:13:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23705,"name":"uint256","nodeType":"ElementaryTypeName","src":"3274:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3261:27:77"},"returnParameters":{"id":23710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23709,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23725,"src":"3313:4:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":23708,"name":"bool","nodeType":"ElementaryTypeName","src":"3313:4:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3312:6:77"},"scope":24115,"src":"3244:178:77","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[24170],"body":{"id":23741,"nodeType":"Block","src":"3544:51:77","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":23735,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23629,"src":"3561:11:77","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":23737,"indexExpression":{"id":23736,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23728,"src":"3573:5:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3561:18:77","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":23739,"indexExpression":{"id":23738,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23730,"src":"3580:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3561:27:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":23734,"id":23740,"nodeType":"Return","src":"3554:34:77"}]},"documentation":{"id":23726,"nodeType":"StructuredDocumentation","src":"3428:22:77","text":"@inheritdoc IERC20"},"functionSelector":"dd62ed3e","id":23742,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3464:9:77","nodeType":"FunctionDefinition","parameters":{"id":23731,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23728,"mutability":"mutable","name":"owner","nameLocation":"3482:5:77","nodeType":"VariableDeclaration","scope":23742,"src":"3474:13:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23727,"name":"address","nodeType":"ElementaryTypeName","src":"3474:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23730,"mutability":"mutable","name":"spender","nameLocation":"3497:7:77","nodeType":"VariableDeclaration","scope":23742,"src":"3489:15:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23729,"name":"address","nodeType":"ElementaryTypeName","src":"3489:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3473:32:77"},"returnParameters":{"id":23734,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23733,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23742,"src":"3535:7:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23732,"name":"uint256","nodeType":"ElementaryTypeName","src":"3535:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3534:9:77"},"scope":24115,"src":"3455:140:77","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[24180],"body":{"id":23765,"nodeType":"Block","src":"3981:107:77","statements":[{"assignments":[23753],"declarations":[{"constant":false,"id":23753,"mutability":"mutable","name":"owner","nameLocation":"3999:5:77","nodeType":"VariableDeclaration","scope":23765,"src":"3991:13:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23752,"name":"address","nodeType":"ElementaryTypeName","src":"3991:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":23756,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23754,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"4007:10:77","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":23755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4007:12:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3991:28:77"},{"expression":{"arguments":[{"id":23758,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23753,"src":"4038:5:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23759,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23745,"src":"4045:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23760,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23747,"src":"4054:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23757,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[24006,24066],"referencedDeclaration":24006,"src":"4029:8:77","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":23761,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4029:31:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23762,"nodeType":"ExpressionStatement","src":"4029:31:77"},{"expression":{"hexValue":"74727565","id":23763,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4077:4:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":23751,"id":23764,"nodeType":"Return","src":"4070:11:77"}]},"documentation":{"id":23743,"nodeType":"StructuredDocumentation","src":"3601:296:77","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":23766,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"3911:7:77","nodeType":"FunctionDefinition","parameters":{"id":23748,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23745,"mutability":"mutable","name":"spender","nameLocation":"3927:7:77","nodeType":"VariableDeclaration","scope":23766,"src":"3919:15:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23744,"name":"address","nodeType":"ElementaryTypeName","src":"3919:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23747,"mutability":"mutable","name":"value","nameLocation":"3944:5:77","nodeType":"VariableDeclaration","scope":23766,"src":"3936:13:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23746,"name":"uint256","nodeType":"ElementaryTypeName","src":"3936:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3918:32:77"},"returnParameters":{"id":23751,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23750,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23766,"src":"3975:4:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":23749,"name":"bool","nodeType":"ElementaryTypeName","src":"3975:4:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3974:6:77"},"scope":24115,"src":"3902:186:77","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[24192],"body":{"id":23797,"nodeType":"Block","src":"4773:151:77","statements":[{"assignments":[23779],"declarations":[{"constant":false,"id":23779,"mutability":"mutable","name":"spender","nameLocation":"4791:7:77","nodeType":"VariableDeclaration","scope":23797,"src":"4783:15:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23778,"name":"address","nodeType":"ElementaryTypeName","src":"4783:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":23782,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":23780,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"4801:10:77","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":23781,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4801:12:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4783:30:77"},{"expression":{"arguments":[{"id":23784,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23769,"src":"4839:4:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23785,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23779,"src":"4845:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23786,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23773,"src":"4854:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23783,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24114,"src":"4823:15:77","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":23787,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4823:37:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23788,"nodeType":"ExpressionStatement","src":"4823:37:77"},{"expression":{"arguments":[{"id":23790,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23769,"src":"4880:4:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23791,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23771,"src":"4886:2:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23792,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23773,"src":"4890:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23789,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23845,"src":"4870:9:77","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":23793,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4870:26:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23794,"nodeType":"ExpressionStatement","src":"4870:26:77"},{"expression":{"hexValue":"74727565","id":23795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4913:4:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":23777,"id":23796,"nodeType":"Return","src":"4906:11:77"}]},"documentation":{"id":23767,"nodeType":"StructuredDocumentation","src":"4094:581:77","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":23798,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"4689:12:77","nodeType":"FunctionDefinition","parameters":{"id":23774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23769,"mutability":"mutable","name":"from","nameLocation":"4710:4:77","nodeType":"VariableDeclaration","scope":23798,"src":"4702:12:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23768,"name":"address","nodeType":"ElementaryTypeName","src":"4702:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23771,"mutability":"mutable","name":"to","nameLocation":"4724:2:77","nodeType":"VariableDeclaration","scope":23798,"src":"4716:10:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23770,"name":"address","nodeType":"ElementaryTypeName","src":"4716:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23773,"mutability":"mutable","name":"value","nameLocation":"4736:5:77","nodeType":"VariableDeclaration","scope":23798,"src":"4728:13:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23772,"name":"uint256","nodeType":"ElementaryTypeName","src":"4728:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4701:41:77"},"returnParameters":{"id":23777,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23776,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":23798,"src":"4767:4:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":23775,"name":"bool","nodeType":"ElementaryTypeName","src":"4767:4:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4766:6:77"},"scope":24115,"src":"4680:244:77","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":23844,"nodeType":"Block","src":"5366:231:77","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23808,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23801,"src":"5380:4:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":23811,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5396:1:77","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":23810,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5388:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23809,"name":"address","nodeType":"ElementaryTypeName","src":"5388:7:77","typeDescriptions":{}}},"id":23812,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5388:10:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5380:18:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23822,"nodeType":"IfStatement","src":"5376:86:77","trueBody":{"id":23821,"nodeType":"Block","src":"5400:62:77","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":23817,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5448:1:77","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":23816,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5440:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23815,"name":"address","nodeType":"ElementaryTypeName","src":"5440:7:77","typeDescriptions":{}}},"id":23818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5440:10:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23814,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22523,"src":"5421:18:77","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":23819,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5421:30:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23820,"nodeType":"RevertStatement","src":"5414:37:77"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23823,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23803,"src":"5475:2:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":23826,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5489:1:77","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":23825,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5481:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23824,"name":"address","nodeType":"ElementaryTypeName","src":"5481:7:77","typeDescriptions":{}}},"id":23827,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5481:10:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5475:16:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23837,"nodeType":"IfStatement","src":"5471:86:77","trueBody":{"id":23836,"nodeType":"Block","src":"5493:64:77","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":23832,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5543:1:77","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":23831,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5535:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23830,"name":"address","nodeType":"ElementaryTypeName","src":"5535:7:77","typeDescriptions":{}}},"id":23833,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5535:10:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23829,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22528,"src":"5514:20:77","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":23834,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5514:32:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23835,"nodeType":"RevertStatement","src":"5507:39:77"}]}},{"expression":{"arguments":[{"id":23839,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23801,"src":"5574:4:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23840,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23803,"src":"5580:2:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23841,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23805,"src":"5584:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23838,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23922,"src":"5566:7:77","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":23842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5566:24:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23843,"nodeType":"ExpressionStatement","src":"5566:24:77"}]},"documentation":{"id":23799,"nodeType":"StructuredDocumentation","src":"4930:362:77","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":23845,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"5306:9:77","nodeType":"FunctionDefinition","parameters":{"id":23806,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23801,"mutability":"mutable","name":"from","nameLocation":"5324:4:77","nodeType":"VariableDeclaration","scope":23845,"src":"5316:12:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23800,"name":"address","nodeType":"ElementaryTypeName","src":"5316:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23803,"mutability":"mutable","name":"to","nameLocation":"5338:2:77","nodeType":"VariableDeclaration","scope":23845,"src":"5330:10:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23802,"name":"address","nodeType":"ElementaryTypeName","src":"5330:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23805,"mutability":"mutable","name":"value","nameLocation":"5350:5:77","nodeType":"VariableDeclaration","scope":23845,"src":"5342:13:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23804,"name":"uint256","nodeType":"ElementaryTypeName","src":"5342:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5315:41:77"},"returnParameters":{"id":23807,"nodeType":"ParameterList","parameters":[],"src":"5366:0:77"},"scope":24115,"src":"5297:300:77","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":23921,"nodeType":"Block","src":"5987:1032:77","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23855,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23848,"src":"6001:4:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":23858,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6017:1:77","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":23857,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6009:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23856,"name":"address","nodeType":"ElementaryTypeName","src":"6009:7:77","typeDescriptions":{}}},"id":23859,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6009:10:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6001:18:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":23892,"nodeType":"Block","src":"6175:362:77","statements":[{"assignments":[23867],"declarations":[{"constant":false,"id":23867,"mutability":"mutable","name":"fromBalance","nameLocation":"6197:11:77","nodeType":"VariableDeclaration","scope":23892,"src":"6189:19:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23866,"name":"uint256","nodeType":"ElementaryTypeName","src":"6189:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":23871,"initialValue":{"baseExpression":{"id":23868,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23623,"src":"6211:9:77","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":23870,"indexExpression":{"id":23869,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23848,"src":"6221:4:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6211:15:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6189:37:77"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23872,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23867,"src":"6244:11:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":23873,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23852,"src":"6258:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6244:19:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23882,"nodeType":"IfStatement","src":"6240:115:77","trueBody":{"id":23881,"nodeType":"Block","src":"6265:90:77","statements":[{"errorCall":{"arguments":[{"id":23876,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23848,"src":"6315:4:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23877,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23867,"src":"6321:11:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":23878,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23852,"src":"6334:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23875,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22518,"src":"6290:24:77","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":23879,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6290:50:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23880,"nodeType":"RevertStatement","src":"6283:57:77"}]}},{"id":23891,"nodeType":"UncheckedBlock","src":"6368:159:77","statements":[{"expression":{"id":23889,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":23883,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23623,"src":"6475:9:77","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":23885,"indexExpression":{"id":23884,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23848,"src":"6485:4:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6475:15:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":23888,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23886,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23867,"src":"6493:11:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":23887,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23852,"src":"6507:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6493:19:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6475:37:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":23890,"nodeType":"ExpressionStatement","src":"6475:37:77"}]}]},"id":23893,"nodeType":"IfStatement","src":"5997:540:77","trueBody":{"id":23865,"nodeType":"Block","src":"6021:148:77","statements":[{"expression":{"id":23863,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":23861,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23631,"src":"6137:12:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":23862,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23852,"src":"6153:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6137:21:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":23864,"nodeType":"ExpressionStatement","src":"6137:21:77"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23899,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23894,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23850,"src":"6551:2:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":23897,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6565:1:77","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":23896,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6557:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23895,"name":"address","nodeType":"ElementaryTypeName","src":"6557:7:77","typeDescriptions":{}}},"id":23898,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6557:10:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6551:16:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":23913,"nodeType":"Block","src":"6766:206:77","statements":[{"id":23912,"nodeType":"UncheckedBlock","src":"6780:182:77","statements":[{"expression":{"id":23910,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":23906,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23623,"src":"6925:9:77","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":23908,"indexExpression":{"id":23907,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23850,"src":"6935:2:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6925:13:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":23909,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23852,"src":"6942:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6925:22:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":23911,"nodeType":"ExpressionStatement","src":"6925:22:77"}]}]},"id":23914,"nodeType":"IfStatement","src":"6547:425:77","trueBody":{"id":23905,"nodeType":"Block","src":"6569:191:77","statements":[{"id":23904,"nodeType":"UncheckedBlock","src":"6583:167:77","statements":[{"expression":{"id":23902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":23900,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23631,"src":"6714:12:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":23901,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23852,"src":"6730:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6714:21:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":23903,"nodeType":"ExpressionStatement","src":"6714:21:77"}]}]}},{"eventCall":{"arguments":[{"id":23916,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23848,"src":"6996:4:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23917,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23850,"src":"7002:2:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23918,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23852,"src":"7006:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23915,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24127,"src":"6987:8:77","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":23919,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6987:25:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23920,"nodeType":"EmitStatement","src":"6982:30:77"}]},"documentation":{"id":23846,"nodeType":"StructuredDocumentation","src":"5603:304:77","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":23922,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"5921:7:77","nodeType":"FunctionDefinition","parameters":{"id":23853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23848,"mutability":"mutable","name":"from","nameLocation":"5937:4:77","nodeType":"VariableDeclaration","scope":23922,"src":"5929:12:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23847,"name":"address","nodeType":"ElementaryTypeName","src":"5929:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23850,"mutability":"mutable","name":"to","nameLocation":"5951:2:77","nodeType":"VariableDeclaration","scope":23922,"src":"5943:10:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23849,"name":"address","nodeType":"ElementaryTypeName","src":"5943:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23852,"mutability":"mutable","name":"value","nameLocation":"5963:5:77","nodeType":"VariableDeclaration","scope":23922,"src":"5955:13:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23851,"name":"uint256","nodeType":"ElementaryTypeName","src":"5955:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5928:41:77"},"returnParameters":{"id":23854,"nodeType":"ParameterList","parameters":[],"src":"5987:0:77"},"scope":24115,"src":"5912:1107:77","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":23954,"nodeType":"Block","src":"7418:152:77","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23930,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23925,"src":"7432:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":23933,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7451:1:77","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":23932,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7443:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23931,"name":"address","nodeType":"ElementaryTypeName","src":"7443:7:77","typeDescriptions":{}}},"id":23934,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7443:10:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7432:21:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23944,"nodeType":"IfStatement","src":"7428:91:77","trueBody":{"id":23943,"nodeType":"Block","src":"7455:64:77","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":23939,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7505:1:77","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":23938,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7497:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23937,"name":"address","nodeType":"ElementaryTypeName","src":"7497:7:77","typeDescriptions":{}}},"id":23940,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7497:10:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23936,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22528,"src":"7476:20:77","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":23941,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7476:32:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23942,"nodeType":"RevertStatement","src":"7469:39:77"}]}},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":23948,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7544:1:77","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":23947,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7536:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23946,"name":"address","nodeType":"ElementaryTypeName","src":"7536:7:77","typeDescriptions":{}}},"id":23949,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7536:10:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23950,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23925,"src":"7548:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23951,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23927,"src":"7557:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23945,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23922,"src":"7528:7:77","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":23952,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7528:35:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23953,"nodeType":"ExpressionStatement","src":"7528:35:77"}]},"documentation":{"id":23923,"nodeType":"StructuredDocumentation","src":"7025:332:77","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":23955,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"7371:5:77","nodeType":"FunctionDefinition","parameters":{"id":23928,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23925,"mutability":"mutable","name":"account","nameLocation":"7385:7:77","nodeType":"VariableDeclaration","scope":23955,"src":"7377:15:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23924,"name":"address","nodeType":"ElementaryTypeName","src":"7377:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23927,"mutability":"mutable","name":"value","nameLocation":"7402:5:77","nodeType":"VariableDeclaration","scope":23955,"src":"7394:13:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23926,"name":"uint256","nodeType":"ElementaryTypeName","src":"7394:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7376:32:77"},"returnParameters":{"id":23929,"nodeType":"ParameterList","parameters":[],"src":"7418:0:77"},"scope":24115,"src":"7362:208:77","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":23987,"nodeType":"Block","src":"7944:150:77","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":23968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":23963,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23958,"src":"7958:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":23966,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7977:1:77","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":23965,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7969:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23964,"name":"address","nodeType":"ElementaryTypeName","src":"7969:7:77","typeDescriptions":{}}},"id":23967,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7969:10:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7958:21:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":23977,"nodeType":"IfStatement","src":"7954:89:77","trueBody":{"id":23976,"nodeType":"Block","src":"7981:62:77","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":23972,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8029:1:77","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":23971,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8021:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23970,"name":"address","nodeType":"ElementaryTypeName","src":"8021:7:77","typeDescriptions":{}}},"id":23973,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8021:10:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":23969,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22523,"src":"8002:18:77","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":23974,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8002:30:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":23975,"nodeType":"RevertStatement","src":"7995:37:77"}]}},{"expression":{"arguments":[{"id":23979,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23958,"src":"8060:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":23982,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8077:1:77","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":23981,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8069:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":23980,"name":"address","nodeType":"ElementaryTypeName","src":"8069:7:77","typeDescriptions":{}}},"id":23983,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8069:10:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":23984,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23960,"src":"8081:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":23978,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23922,"src":"8052:7:77","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":23985,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8052:35:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":23986,"nodeType":"ExpressionStatement","src":"8052:35:77"}]},"documentation":{"id":23956,"nodeType":"StructuredDocumentation","src":"7576:307:77","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":23988,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"7897:5:77","nodeType":"FunctionDefinition","parameters":{"id":23961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23958,"mutability":"mutable","name":"account","nameLocation":"7911:7:77","nodeType":"VariableDeclaration","scope":23988,"src":"7903:15:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23957,"name":"address","nodeType":"ElementaryTypeName","src":"7903:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23960,"mutability":"mutable","name":"value","nameLocation":"7928:5:77","nodeType":"VariableDeclaration","scope":23988,"src":"7920:13:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23959,"name":"uint256","nodeType":"ElementaryTypeName","src":"7920:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7902:32:77"},"returnParameters":{"id":23962,"nodeType":"ParameterList","parameters":[],"src":"7944:0:77"},"scope":24115,"src":"7888:206:77","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":24005,"nodeType":"Block","src":"8704:54:77","statements":[{"expression":{"arguments":[{"id":23999,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23991,"src":"8723:5:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24000,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23993,"src":"8730:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24001,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23995,"src":"8739:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":24002,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8746:4:77","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":23998,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[24006,24066],"referencedDeclaration":24066,"src":"8714:8:77","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":24003,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8714:37:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24004,"nodeType":"ExpressionStatement","src":"8714:37:77"}]},"documentation":{"id":23989,"nodeType":"StructuredDocumentation","src":"8100:525:77","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":24006,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"8639:8:77","nodeType":"FunctionDefinition","parameters":{"id":23996,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23991,"mutability":"mutable","name":"owner","nameLocation":"8656:5:77","nodeType":"VariableDeclaration","scope":24006,"src":"8648:13:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23990,"name":"address","nodeType":"ElementaryTypeName","src":"8648:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23993,"mutability":"mutable","name":"spender","nameLocation":"8671:7:77","nodeType":"VariableDeclaration","scope":24006,"src":"8663:15:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":23992,"name":"address","nodeType":"ElementaryTypeName","src":"8663:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":23995,"mutability":"mutable","name":"value","nameLocation":"8688:5:77","nodeType":"VariableDeclaration","scope":24006,"src":"8680:13:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23994,"name":"uint256","nodeType":"ElementaryTypeName","src":"8680:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8647:47:77"},"returnParameters":{"id":23997,"nodeType":"ParameterList","parameters":[],"src":"8704:0:77"},"scope":24115,"src":"8630:128:77","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":24065,"nodeType":"Block","src":"9705:334:77","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":24023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24018,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24009,"src":"9719:5:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":24021,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9736:1:77","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":24020,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9728:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24019,"name":"address","nodeType":"ElementaryTypeName","src":"9728:7:77","typeDescriptions":{}}},"id":24022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9728:10:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9719:19:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24032,"nodeType":"IfStatement","src":"9715:89:77","trueBody":{"id":24031,"nodeType":"Block","src":"9740:64:77","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":24027,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9790:1:77","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":24026,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9782:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24025,"name":"address","nodeType":"ElementaryTypeName","src":"9782:7:77","typeDescriptions":{}}},"id":24028,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9782:10:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24024,"name":"ERC20InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22542,"src":"9761:20:77","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":24029,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9761:32:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":24030,"nodeType":"RevertStatement","src":"9754:39:77"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":24038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24033,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24011,"src":"9817:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":24036,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9836:1:77","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":24035,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9828:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24034,"name":"address","nodeType":"ElementaryTypeName","src":"9828:7:77","typeDescriptions":{}}},"id":24037,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9828:10:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9817:21:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24047,"nodeType":"IfStatement","src":"9813:90:77","trueBody":{"id":24046,"nodeType":"Block","src":"9840:63:77","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":24042,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9889:1:77","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":24041,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9881:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24040,"name":"address","nodeType":"ElementaryTypeName","src":"9881:7:77","typeDescriptions":{}}},"id":24043,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9881:10:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24039,"name":"ERC20InvalidSpender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22547,"src":"9861:19:77","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":24044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9861:31:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":24045,"nodeType":"RevertStatement","src":"9854:38:77"}]}},{"expression":{"id":24054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":24048,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23629,"src":"9912:11:77","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":24051,"indexExpression":{"id":24049,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24009,"src":"9924:5:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9912:18:77","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":24052,"indexExpression":{"id":24050,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24011,"src":"9931:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9912:27:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":24053,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24013,"src":"9942:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9912:35:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":24055,"nodeType":"ExpressionStatement","src":"9912:35:77"},{"condition":{"id":24056,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24015,"src":"9961:9:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24064,"nodeType":"IfStatement","src":"9957:76:77","trueBody":{"id":24063,"nodeType":"Block","src":"9972:61:77","statements":[{"eventCall":{"arguments":[{"id":24058,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24009,"src":"10000:5:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24059,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24011,"src":"10007:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24060,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24013,"src":"10016:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24057,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24136,"src":"9991:8:77","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":24061,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9991:31:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24062,"nodeType":"EmitStatement","src":"9986:36:77"}]}}]},"documentation":{"id":24007,"nodeType":"StructuredDocumentation","src":"8764:838:77","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 sets 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":24066,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"9616:8:77","nodeType":"FunctionDefinition","parameters":{"id":24016,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24009,"mutability":"mutable","name":"owner","nameLocation":"9633:5:77","nodeType":"VariableDeclaration","scope":24066,"src":"9625:13:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24008,"name":"address","nodeType":"ElementaryTypeName","src":"9625:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24011,"mutability":"mutable","name":"spender","nameLocation":"9648:7:77","nodeType":"VariableDeclaration","scope":24066,"src":"9640:15:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24010,"name":"address","nodeType":"ElementaryTypeName","src":"9640:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24013,"mutability":"mutable","name":"value","nameLocation":"9665:5:77","nodeType":"VariableDeclaration","scope":24066,"src":"9657:13:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24012,"name":"uint256","nodeType":"ElementaryTypeName","src":"9657:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24015,"mutability":"mutable","name":"emitEvent","nameLocation":"9677:9:77","nodeType":"VariableDeclaration","scope":24066,"src":"9672:14:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":24014,"name":"bool","nodeType":"ElementaryTypeName","src":"9672:4:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9624:63:77"},"returnParameters":{"id":24017,"nodeType":"ParameterList","parameters":[],"src":"9705:0:77"},"scope":24115,"src":"9607:432:77","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":24113,"nodeType":"Block","src":"10410:387:77","statements":[{"assignments":[24077],"declarations":[{"constant":false,"id":24077,"mutability":"mutable","name":"currentAllowance","nameLocation":"10428:16:77","nodeType":"VariableDeclaration","scope":24113,"src":"10420:24:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24076,"name":"uint256","nodeType":"ElementaryTypeName","src":"10420:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":24082,"initialValue":{"arguments":[{"id":24079,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24069,"src":"10457:5:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24080,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24071,"src":"10464:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":24078,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23742,"src":"10447:9:77","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":24081,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10447:25:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10420:52:77"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24089,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24083,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24077,"src":"10486:16:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":24086,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10510:7:77","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":24085,"name":"uint256","nodeType":"ElementaryTypeName","src":"10510:7:77","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":24084,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10505:4:77","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":24087,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10505:13:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":24088,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10519:3:77","memberName":"max","nodeType":"MemberAccess","src":"10505:17:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10486:36:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24112,"nodeType":"IfStatement","src":"10482:309:77","trueBody":{"id":24111,"nodeType":"Block","src":"10524:267:77","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24090,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24077,"src":"10542:16:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":24091,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24073,"src":"10561:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10542:24:77","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24100,"nodeType":"IfStatement","src":"10538:130:77","trueBody":{"id":24099,"nodeType":"Block","src":"10568:100:77","statements":[{"errorCall":{"arguments":[{"id":24094,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24071,"src":"10620:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24095,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24077,"src":"10629:16:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24096,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24073,"src":"10647:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24093,"name":"ERC20InsufficientAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22537,"src":"10593:26:77","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":24097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10593:60:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":24098,"nodeType":"RevertStatement","src":"10586:67:77"}]}},{"id":24110,"nodeType":"UncheckedBlock","src":"10681:100:77","statements":[{"expression":{"arguments":[{"id":24102,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24069,"src":"10718:5:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24103,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24071,"src":"10725:7:77","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24106,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24104,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24077,"src":"10734:16:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":24105,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24073,"src":"10753:5:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10734:24:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":24107,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10760:5:77","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":24101,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[24006,24066],"referencedDeclaration":24066,"src":"10709:8:77","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":24108,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10709:57:77","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24109,"nodeType":"ExpressionStatement","src":"10709:57:77"}]}]}}]},"documentation":{"id":24067,"nodeType":"StructuredDocumentation","src":"10045:271:77","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":24114,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"10330:15:77","nodeType":"FunctionDefinition","parameters":{"id":24074,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24069,"mutability":"mutable","name":"owner","nameLocation":"10354:5:77","nodeType":"VariableDeclaration","scope":24114,"src":"10346:13:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24068,"name":"address","nodeType":"ElementaryTypeName","src":"10346:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24071,"mutability":"mutable","name":"spender","nameLocation":"10369:7:77","nodeType":"VariableDeclaration","scope":24114,"src":"10361:15:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24070,"name":"address","nodeType":"ElementaryTypeName","src":"10361:7:77","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24073,"mutability":"mutable","name":"value","nameLocation":"10386:5:77","nodeType":"VariableDeclaration","scope":24114,"src":"10378:13:77","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24072,"name":"uint256","nodeType":"ElementaryTypeName","src":"10378:7:77","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10345:47:77"},"returnParameters":{"id":24075,"nodeType":"ParameterList","parameters":[],"src":"10410:0:77"},"scope":24115,"src":"10321:476:77","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":24116,"src":"1106:9693:77","usedErrors":[22518,22523,22528,22537,22542,22547],"usedEvents":[24127,24136]}],"src":"105:10695:77"},"id":77},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[24193]},"id":24194,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":24117,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"106:25:78"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":24118,"nodeType":"StructuredDocumentation","src":"133:71:78","text":" @dev Interface of the ERC-20 standard as defined in the ERC."},"fullyImplemented":false,"id":24193,"linearizedBaseContracts":[24193],"name":"IERC20","nameLocation":"215:6:78","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":24119,"nodeType":"StructuredDocumentation","src":"228:158:78","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":24127,"name":"Transfer","nameLocation":"397:8:78","nodeType":"EventDefinition","parameters":{"id":24126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24121,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"422:4:78","nodeType":"VariableDeclaration","scope":24127,"src":"406:20:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24120,"name":"address","nodeType":"ElementaryTypeName","src":"406:7:78","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24123,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"444:2:78","nodeType":"VariableDeclaration","scope":24127,"src":"428:18:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24122,"name":"address","nodeType":"ElementaryTypeName","src":"428:7:78","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24125,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"456:5:78","nodeType":"VariableDeclaration","scope":24127,"src":"448:13:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24124,"name":"uint256","nodeType":"ElementaryTypeName","src":"448:7:78","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"405:57:78"},"src":"391:72:78"},{"anonymous":false,"documentation":{"id":24128,"nodeType":"StructuredDocumentation","src":"469:148:78","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":24136,"name":"Approval","nameLocation":"628:8:78","nodeType":"EventDefinition","parameters":{"id":24135,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24130,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"653:5:78","nodeType":"VariableDeclaration","scope":24136,"src":"637:21:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24129,"name":"address","nodeType":"ElementaryTypeName","src":"637:7:78","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24132,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"676:7:78","nodeType":"VariableDeclaration","scope":24136,"src":"660:23:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24131,"name":"address","nodeType":"ElementaryTypeName","src":"660:7:78","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24134,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"693:5:78","nodeType":"VariableDeclaration","scope":24136,"src":"685:13:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24133,"name":"uint256","nodeType":"ElementaryTypeName","src":"685:7:78","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"636:63:78"},"src":"622:78:78"},{"documentation":{"id":24137,"nodeType":"StructuredDocumentation","src":"706:65:78","text":" @dev Returns the value of tokens in existence."},"functionSelector":"18160ddd","id":24142,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"785:11:78","nodeType":"FunctionDefinition","parameters":{"id":24138,"nodeType":"ParameterList","parameters":[],"src":"796:2:78"},"returnParameters":{"id":24141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24140,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24142,"src":"822:7:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24139,"name":"uint256","nodeType":"ElementaryTypeName","src":"822:7:78","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"821:9:78"},"scope":24193,"src":"776:55:78","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":24143,"nodeType":"StructuredDocumentation","src":"837:71:78","text":" @dev Returns the value of tokens owned by `account`."},"functionSelector":"70a08231","id":24150,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"922:9:78","nodeType":"FunctionDefinition","parameters":{"id":24146,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24145,"mutability":"mutable","name":"account","nameLocation":"940:7:78","nodeType":"VariableDeclaration","scope":24150,"src":"932:15:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24144,"name":"address","nodeType":"ElementaryTypeName","src":"932:7:78","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"931:17:78"},"returnParameters":{"id":24149,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24148,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24150,"src":"972:7:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24147,"name":"uint256","nodeType":"ElementaryTypeName","src":"972:7:78","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"971:9:78"},"scope":24193,"src":"913:68:78","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":24151,"nodeType":"StructuredDocumentation","src":"987:213:78","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":24160,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1214:8:78","nodeType":"FunctionDefinition","parameters":{"id":24156,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24153,"mutability":"mutable","name":"to","nameLocation":"1231:2:78","nodeType":"VariableDeclaration","scope":24160,"src":"1223:10:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24152,"name":"address","nodeType":"ElementaryTypeName","src":"1223:7:78","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24155,"mutability":"mutable","name":"value","nameLocation":"1243:5:78","nodeType":"VariableDeclaration","scope":24160,"src":"1235:13:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24154,"name":"uint256","nodeType":"ElementaryTypeName","src":"1235:7:78","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1222:27:78"},"returnParameters":{"id":24159,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24158,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24160,"src":"1268:4:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":24157,"name":"bool","nodeType":"ElementaryTypeName","src":"1268:4:78","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1267:6:78"},"scope":24193,"src":"1205:69:78","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":24161,"nodeType":"StructuredDocumentation","src":"1280:264:78","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":24170,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1558:9:78","nodeType":"FunctionDefinition","parameters":{"id":24166,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24163,"mutability":"mutable","name":"owner","nameLocation":"1576:5:78","nodeType":"VariableDeclaration","scope":24170,"src":"1568:13:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24162,"name":"address","nodeType":"ElementaryTypeName","src":"1568:7:78","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24165,"mutability":"mutable","name":"spender","nameLocation":"1591:7:78","nodeType":"VariableDeclaration","scope":24170,"src":"1583:15:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24164,"name":"address","nodeType":"ElementaryTypeName","src":"1583:7:78","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1567:32:78"},"returnParameters":{"id":24169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24168,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24170,"src":"1623:7:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24167,"name":"uint256","nodeType":"ElementaryTypeName","src":"1623:7:78","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1622:9:78"},"scope":24193,"src":"1549:83:78","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":24171,"nodeType":"StructuredDocumentation","src":"1638:667:78","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":24180,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2319:7:78","nodeType":"FunctionDefinition","parameters":{"id":24176,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24173,"mutability":"mutable","name":"spender","nameLocation":"2335:7:78","nodeType":"VariableDeclaration","scope":24180,"src":"2327:15:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24172,"name":"address","nodeType":"ElementaryTypeName","src":"2327:7:78","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24175,"mutability":"mutable","name":"value","nameLocation":"2352:5:78","nodeType":"VariableDeclaration","scope":24180,"src":"2344:13:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24174,"name":"uint256","nodeType":"ElementaryTypeName","src":"2344:7:78","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2326:32:78"},"returnParameters":{"id":24179,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24178,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24180,"src":"2377:4:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":24177,"name":"bool","nodeType":"ElementaryTypeName","src":"2377:4:78","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2376:6:78"},"scope":24193,"src":"2310:73:78","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":24181,"nodeType":"StructuredDocumentation","src":"2389:297:78","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":24192,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2700:12:78","nodeType":"FunctionDefinition","parameters":{"id":24188,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24183,"mutability":"mutable","name":"from","nameLocation":"2721:4:78","nodeType":"VariableDeclaration","scope":24192,"src":"2713:12:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24182,"name":"address","nodeType":"ElementaryTypeName","src":"2713:7:78","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24185,"mutability":"mutable","name":"to","nameLocation":"2735:2:78","nodeType":"VariableDeclaration","scope":24192,"src":"2727:10:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24184,"name":"address","nodeType":"ElementaryTypeName","src":"2727:7:78","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24187,"mutability":"mutable","name":"value","nameLocation":"2747:5:78","nodeType":"VariableDeclaration","scope":24192,"src":"2739:13:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24186,"name":"uint256","nodeType":"ElementaryTypeName","src":"2739:7:78","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2712:41:78"},"returnParameters":{"id":24191,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24190,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24192,"src":"2772:4:78","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":24189,"name":"bool","nodeType":"ElementaryTypeName","src":"2772:4:78","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2771:6:78"},"scope":24193,"src":"2691:87:78","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":24194,"src":"205:2575:78","usedErrors":[],"usedEvents":[24127,24136]}],"src":"106:2675:78"},"id":78},"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol","exportedSymbols":{"ERC20":[24115],"ERC4626":[24899],"IERC20":[24193],"IERC20Metadata":[24925],"IERC4626":[22463],"LowLevelCall":[26970],"Math":[35187],"Memory":[27272],"SafeERC20":[25416]},"id":24900,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":24195,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"118:24:79"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"../ERC20.sol","id":24199,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":24900,"sourceUnit":24116,"src":"144:59:79","symbolAliases":[{"foreign":{"id":24196,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"152:6:79","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":24197,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"160:14:79","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":24198,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24115,"src":"176:5:79","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"../utils/SafeERC20.sol","id":24201,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":24900,"sourceUnit":25417,"src":"204:49:79","symbolAliases":[{"foreign":{"id":24200,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25416,"src":"212:9:79","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","file":"../../../interfaces/IERC4626.sol","id":24203,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":24900,"sourceUnit":22464,"src":"254:58:79","symbolAliases":[{"foreign":{"id":24202,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22463,"src":"262:8:79","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/LowLevelCall.sol","file":"../../../utils/LowLevelCall.sol","id":24205,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":24900,"sourceUnit":26971,"src":"313:61:79","symbolAliases":[{"foreign":{"id":24204,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"321:12:79","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Memory.sol","file":"../../../utils/Memory.sol","id":24207,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":24900,"sourceUnit":27273,"src":"375:49:79","symbolAliases":[{"foreign":{"id":24206,"name":"Memory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27272,"src":"383:6:79","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../../../utils/math/Math.sol","id":24209,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":24900,"sourceUnit":35188,"src":"425:50:79","symbolAliases":[{"foreign":{"id":24208,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"433:4:79","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":24211,"name":"ERC20","nameLocations":["4547:5:79"],"nodeType":"IdentifierPath","referencedDeclaration":24115,"src":"4547:5:79"},"id":24212,"nodeType":"InheritanceSpecifier","src":"4547:5:79"},{"baseName":{"id":24213,"name":"IERC4626","nameLocations":["4554:8:79"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"4554:8:79"},"id":24214,"nodeType":"InheritanceSpecifier","src":"4554:8:79"}],"canonicalName":"ERC4626","contractDependencies":[],"contractKind":"contract","documentation":{"id":24210,"nodeType":"StructuredDocumentation","src":"477:4040:79","text":" @dev Implementation of the ERC-4626 \"Tokenized Vault Standard\" as defined in\n https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].\n This extension allows the minting and burning of \"shares\" (represented using the ERC-20 inheritance) in exchange for\n underlying \"assets\" through standardized {deposit}, {mint}, {redeem} and {burn} workflows. This contract extends\n the ERC-20 standard. Any additional extensions included along it would affect the \"shares\" token represented by this\n contract and not the \"assets\" token which is an independent contract.\n [CAUTION]\n ====\n In empty (or nearly empty) ERC-4626 vaults, deposits are at high risk of being stolen through frontrunning\n with a \"donation\" to the vault that inflates the price of a share. This is variously known as a donation or inflation\n attack and is essentially a problem of slippage. Vault deployers can protect against this attack by making an initial\n deposit of a non-trivial amount of the asset, such that price manipulation becomes infeasible. Withdrawals may\n similarly be affected by slippage. Users can protect against this attack as well as unexpected slippage in general by\n verifying the amount received is as expected, using a wrapper that performs these checks such as\n https://github.com/fei-protocol/ERC4626#erc4626router-and-base[ERC4626Router].\n Since v4.9, this implementation introduces configurable virtual assets and shares to help developers mitigate that risk.\n The `_decimalsOffset()` corresponds to an offset in the decimal representation between the underlying asset's decimals\n and the vault decimals. This offset also determines the rate of virtual shares to virtual assets in the vault, which\n itself determines the initial exchange rate. While not fully preventing the attack, analysis shows that the default\n offset (0) makes it non-profitable even if an attacker is able to capture value from multiple user deposits, as a result\n of the value being captured by the virtual shares (out of the attacker's donation) matching the attacker's expected gains.\n With a larger offset, the attack becomes orders of magnitude more expensive than it is profitable. More details about the\n underlying math can be found xref:ROOT:erc4626.adoc#inflation-attack[here].\n The drawback of this approach is that the virtual shares do capture (a very small) part of the value being accrued\n to the vault. Also, if the vault experiences losses, the users try to exit the vault, the virtual shares and assets\n will cause the first user to exit to experience reduced losses in detriment to the last users that will experience\n bigger losses. Developers willing to revert back to the pre-v4.9 behavior just need to override the\n `_convertToShares` and `_convertToAssets` functions.\n To learn more, check out our xref:ROOT:erc4626.adoc[ERC-4626 guide].\n ====\n [NOTE]\n ====\n When overriding this contract, some elements must be considered:\n * When overriding the behavior of the deposit or withdraw mechanisms, it is recommended to override the internal\n functions. Overriding {_deposit} automatically affects both {deposit} and {mint}. Similarly, overriding {_withdraw}\n automatically affects both {withdraw} and {redeem}. Overall it is not recommended to override the public facing\n functions since that could lead to inconsistent behaviors between the {deposit} and {mint} or between {withdraw} and\n {redeem}, which is documented to have lead to loss of funds.\n * Overrides to the deposit or withdraw mechanism must be reflected in the preview functions as well.\n * {maxWithdraw} depends on {maxRedeem}. Therefore, overriding {maxRedeem} only is enough. On the other hand,\n overriding {maxWithdraw} only would have no effect on {maxRedeem}, and could create an inconsistency between the two\n functions.\n * If {previewRedeem} is overridden to revert, {maxWithdraw} must be overridden as necessary to ensure it\n always return successfully.\n ===="},"fullyImplemented":true,"id":24899,"linearizedBaseContracts":[24899,22463,24115,22548,24925,24193,26789],"name":"ERC4626","nameLocation":"4536:7:79","nodeType":"ContractDefinition","nodes":[{"global":false,"id":24217,"libraryName":{"id":24215,"name":"Math","nameLocations":["4575:4:79"],"nodeType":"IdentifierPath","referencedDeclaration":35187,"src":"4575:4:79"},"nodeType":"UsingForDirective","src":"4569:23:79","typeName":{"id":24216,"name":"uint256","nodeType":"ElementaryTypeName","src":"4584:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":false,"id":24220,"mutability":"immutable","name":"_asset","nameLocation":"4623:6:79","nodeType":"VariableDeclaration","scope":24899,"src":"4598:31:79","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":24219,"nodeType":"UserDefinedTypeName","pathNode":{"id":24218,"name":"IERC20","nameLocations":["4598:6:79"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"4598:6:79"},"referencedDeclaration":24193,"src":"4598:6:79","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"private"},{"constant":false,"id":24222,"mutability":"immutable","name":"_underlyingDecimals","nameLocation":"4659:19:79","nodeType":"VariableDeclaration","scope":24899,"src":"4635:43:79","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":24221,"name":"uint8","nodeType":"ElementaryTypeName","src":"4635:5:79","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"private"},{"documentation":{"id":24223,"nodeType":"StructuredDocumentation","src":"4685:92:79","text":" @dev Attempted to deposit more assets than the max amount for `receiver`."},"errorSelector":"79012fb2","id":24231,"name":"ERC4626ExceededMaxDeposit","nameLocation":"4788:25:79","nodeType":"ErrorDefinition","parameters":{"id":24230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24225,"mutability":"mutable","name":"receiver","nameLocation":"4822:8:79","nodeType":"VariableDeclaration","scope":24231,"src":"4814:16:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24224,"name":"address","nodeType":"ElementaryTypeName","src":"4814:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24227,"mutability":"mutable","name":"assets","nameLocation":"4840:6:79","nodeType":"VariableDeclaration","scope":24231,"src":"4832:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24226,"name":"uint256","nodeType":"ElementaryTypeName","src":"4832:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24229,"mutability":"mutable","name":"max","nameLocation":"4856:3:79","nodeType":"VariableDeclaration","scope":24231,"src":"4848:11:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24228,"name":"uint256","nodeType":"ElementaryTypeName","src":"4848:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4813:47:79"},"src":"4782:79:79"},{"documentation":{"id":24232,"nodeType":"StructuredDocumentation","src":"4867:89:79","text":" @dev Attempted to mint more shares than the max amount for `receiver`."},"errorSelector":"284ff667","id":24240,"name":"ERC4626ExceededMaxMint","nameLocation":"4967:22:79","nodeType":"ErrorDefinition","parameters":{"id":24239,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24234,"mutability":"mutable","name":"receiver","nameLocation":"4998:8:79","nodeType":"VariableDeclaration","scope":24240,"src":"4990:16:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24233,"name":"address","nodeType":"ElementaryTypeName","src":"4990:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24236,"mutability":"mutable","name":"shares","nameLocation":"5016:6:79","nodeType":"VariableDeclaration","scope":24240,"src":"5008:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24235,"name":"uint256","nodeType":"ElementaryTypeName","src":"5008:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24238,"mutability":"mutable","name":"max","nameLocation":"5032:3:79","nodeType":"VariableDeclaration","scope":24240,"src":"5024:11:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24237,"name":"uint256","nodeType":"ElementaryTypeName","src":"5024:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4989:47:79"},"src":"4961:76:79"},{"documentation":{"id":24241,"nodeType":"StructuredDocumentation","src":"5043:93:79","text":" @dev Attempted to withdraw more assets than the max amount for `receiver`."},"errorSelector":"fe9cceec","id":24249,"name":"ERC4626ExceededMaxWithdraw","nameLocation":"5147:26:79","nodeType":"ErrorDefinition","parameters":{"id":24248,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24243,"mutability":"mutable","name":"owner","nameLocation":"5182:5:79","nodeType":"VariableDeclaration","scope":24249,"src":"5174:13:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24242,"name":"address","nodeType":"ElementaryTypeName","src":"5174:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24245,"mutability":"mutable","name":"assets","nameLocation":"5197:6:79","nodeType":"VariableDeclaration","scope":24249,"src":"5189:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24244,"name":"uint256","nodeType":"ElementaryTypeName","src":"5189:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24247,"mutability":"mutable","name":"max","nameLocation":"5213:3:79","nodeType":"VariableDeclaration","scope":24249,"src":"5205:11:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24246,"name":"uint256","nodeType":"ElementaryTypeName","src":"5205:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5173:44:79"},"src":"5141:77:79"},{"documentation":{"id":24250,"nodeType":"StructuredDocumentation","src":"5224:91:79","text":" @dev Attempted to redeem more shares than the max amount for `receiver`."},"errorSelector":"b94abeec","id":24258,"name":"ERC4626ExceededMaxRedeem","nameLocation":"5326:24:79","nodeType":"ErrorDefinition","parameters":{"id":24257,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24252,"mutability":"mutable","name":"owner","nameLocation":"5359:5:79","nodeType":"VariableDeclaration","scope":24258,"src":"5351:13:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24251,"name":"address","nodeType":"ElementaryTypeName","src":"5351:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24254,"mutability":"mutable","name":"shares","nameLocation":"5374:6:79","nodeType":"VariableDeclaration","scope":24258,"src":"5366:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24253,"name":"uint256","nodeType":"ElementaryTypeName","src":"5366:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24256,"mutability":"mutable","name":"max","nameLocation":"5390:3:79","nodeType":"VariableDeclaration","scope":24258,"src":"5382:11:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24255,"name":"uint256","nodeType":"ElementaryTypeName","src":"5382:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5350:44:79"},"src":"5320:75:79"},{"body":{"id":24284,"nodeType":"Block","src":"5554:168:79","statements":[{"assignments":[24266,24268],"declarations":[{"constant":false,"id":24266,"mutability":"mutable","name":"success","nameLocation":"5570:7:79","nodeType":"VariableDeclaration","scope":24284,"src":"5565:12:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":24265,"name":"bool","nodeType":"ElementaryTypeName","src":"5565:4:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":24268,"mutability":"mutable","name":"assetDecimals","nameLocation":"5585:13:79","nodeType":"VariableDeclaration","scope":24284,"src":"5579:19:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":24267,"name":"uint8","nodeType":"ElementaryTypeName","src":"5579:5:79","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":24272,"initialValue":{"arguments":[{"id":24270,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24262,"src":"5623:6:79","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}],"id":24269,"name":"_tryGetAssetDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24363,"src":"5602:20:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_contract$_IERC20_$24193_$returns$_t_bool_$_t_uint8_$","typeString":"function (contract IERC20) view returns (bool,uint8)"}},"id":24271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5602:28:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint8_$","typeString":"tuple(bool,uint8)"}},"nodeType":"VariableDeclarationStatement","src":"5564:66:79"},{"expression":{"id":24278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":24273,"name":"_underlyingDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24222,"src":"5640:19:79","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"condition":{"id":24274,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24266,"src":"5662:7:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"3138","id":24276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5688:2:79","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"id":24277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"5662:28:79","trueExpression":{"id":24275,"name":"assetDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24268,"src":"5672:13:79","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"5640:50:79","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":24279,"nodeType":"ExpressionStatement","src":"5640:50:79"},{"expression":{"id":24282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":24280,"name":"_asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24220,"src":"5700:6:79","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":24281,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24262,"src":"5709:6:79","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"src":"5700:15:79","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"id":24283,"nodeType":"ExpressionStatement","src":"5700:15:79"}]},"documentation":{"id":24259,"nodeType":"StructuredDocumentation","src":"5401:121:79","text":" @dev Set the underlying asset contract. This must be an ERC20-compatible contract (ERC-20 or ERC-777)."},"id":24285,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":24263,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24262,"mutability":"mutable","name":"asset_","nameLocation":"5546:6:79","nodeType":"VariableDeclaration","scope":24285,"src":"5539:13:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":24261,"nodeType":"UserDefinedTypeName","pathNode":{"id":24260,"name":"IERC20","nameLocations":["5539:6:79"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"5539:6:79"},"referencedDeclaration":24193,"src":"5539:6:79","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"}],"src":"5538:15:79"},"returnParameters":{"id":24264,"nodeType":"ParameterList","parameters":[],"src":"5554:0:79"},"scope":24899,"src":"5527:195:79","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":24362,"nodeType":"Block","src":"5962:510:79","statements":[{"assignments":[24300],"declarations":[{"constant":false,"id":24300,"mutability":"mutable","name":"ptr","nameLocation":"5987:3:79","nodeType":"VariableDeclaration","scope":24362,"src":"5972:18:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"},"typeName":{"id":24299,"nodeType":"UserDefinedTypeName","pathNode":{"id":24298,"name":"Memory.Pointer","nameLocations":["5972:6:79","5979:7:79"],"nodeType":"IdentifierPath","referencedDeclaration":26979,"src":"5972:14:79"},"referencedDeclaration":26979,"src":"5972:14:79","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"visibility":"internal"}],"id":24304,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24301,"name":"Memory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27272,"src":"5993:6:79","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Memory_$27272_$","typeString":"type(library Memory)"}},"id":24302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6000:20:79","memberName":"getFreeMemoryPointer","nodeType":"MemberAccess","referencedDeclaration":26988,"src":"5993:27:79","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_userDefinedValueType$_Pointer_$26979_$","typeString":"function () pure returns (Memory.Pointer)"}},"id":24303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5993:29:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"nodeType":"VariableDeclarationStatement","src":"5972:50:79"},{"assignments":[24306,24308,null],"declarations":[{"constant":false,"id":24306,"mutability":"mutable","name":"success","nameLocation":"6038:7:79","nodeType":"VariableDeclaration","scope":24362,"src":"6033:12:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":24305,"name":"bool","nodeType":"ElementaryTypeName","src":"6033:4:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":24308,"mutability":"mutable","name":"returnedDecimals","nameLocation":"6055:16:79","nodeType":"VariableDeclaration","scope":24362,"src":"6047:24:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":24307,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6047:7:79","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},null],"id":24322,"initialValue":{"arguments":[{"arguments":[{"id":24313,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24289,"src":"6135:6:79","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}],"id":24312,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6127:7:79","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24311,"name":"address","nodeType":"ElementaryTypeName","src":"6127:7:79","typeDescriptions":{}}},"id":24314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6127:15:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"expression":{"id":24317,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"6171:14:79","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$24925_$","typeString":"type(contract IERC20Metadata)"}},"id":24318,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6186:8:79","memberName":"decimals","nodeType":"MemberAccess","referencedDeclaration":24924,"src":"6171:23:79","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$__$returns$_t_uint8_$","typeString":"function IERC20Metadata.decimals() view returns (uint8)"}},{"components":[],"id":24319,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6196:2:79","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_function_declaration_view$__$returns$_t_uint8_$","typeString":"function IERC20Metadata.decimals() view returns (uint8)"},{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}],"expression":{"id":24315,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"6156:3:79","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":24316,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6160:10:79","memberName":"encodeCall","nodeType":"MemberAccess","src":"6156:14:79","typeDescriptions":{"typeIdentifier":"t_function_abiencodecall_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":24320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6156:43:79","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":24309,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"6077:12:79","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":24310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6090:23:79","memberName":"staticcallReturn64Bytes","nodeType":"MemberAccess","referencedDeclaration":26912,"src":"6077:36:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes32_$_t_bytes32_$","typeString":"function (address,bytes memory) view returns (bool,bytes32,bytes32)"}},"id":24321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6077:132:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes32_$_t_bytes32_$","typeString":"tuple(bool,bytes32,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"6032:177:79"},{"expression":{"arguments":[{"id":24326,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24300,"src":"6247:3:79","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}],"expression":{"id":24323,"name":"Memory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27272,"src":"6219:6:79","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Memory_$27272_$","typeString":"type(library Memory)"}},"id":24325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6226:20:79","memberName":"setFreeMemoryPointer","nodeType":"MemberAccess","referencedDeclaration":26997,"src":"6219:27:79","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Pointer_$26979_$returns$__$","typeString":"function (Memory.Pointer) pure"}},"id":24327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6219:32:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24328,"nodeType":"ExpressionStatement","src":"6219:32:79"},{"expression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24346,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":24335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24329,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24306,"src":"6282:7:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":24330,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"6293:12:79","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":24331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6306:14:79","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":26948,"src":"6293:27:79","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":24332,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6293:29:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3332","id":24333,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6326:2:79","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"6293:35:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6282:46:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24345,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":24338,"name":"returnedDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24308,"src":"6340:16:79","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":24337,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6332:7:79","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":24336,"name":"uint256","nodeType":"ElementaryTypeName","src":"6332:7:79","typeDescriptions":{}}},"id":24339,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6332:25:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":24342,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6366:5:79","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":24341,"name":"uint8","nodeType":"ElementaryTypeName","src":"6366:5:79","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":24340,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6361:4:79","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":24343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6361:11:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":24344,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6373:3:79","memberName":"max","nodeType":"MemberAccess","src":"6361:15:79","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6332:44:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6282:94:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":24347,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6281:96:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"hexValue":"66616c7365","id":24357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6456:5:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":24358,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6463:1:79","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":24359,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6455:10:79","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"id":24360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"6281:184:79","trueExpression":{"components":[{"hexValue":"74727565","id":24348,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6397:4:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"arguments":[{"arguments":[{"id":24353,"name":"returnedDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24308,"src":"6417:16:79","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":24352,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6409:7:79","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":24351,"name":"uint256","nodeType":"ElementaryTypeName","src":"6409:7:79","typeDescriptions":{}}},"id":24354,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6409:25:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24350,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6403:5:79","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":24349,"name":"uint8","nodeType":"ElementaryTypeName","src":"6403:5:79","typeDescriptions":{}}},"id":24355,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6403:32:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":24356,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6396:40:79","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint8_$","typeString":"tuple(bool,uint8)"}},"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint8_$","typeString":"tuple(bool,uint8)"}},"functionReturnParameters":24295,"id":24361,"nodeType":"Return","src":"6262:203:79"}]},"documentation":{"id":24286,"nodeType":"StructuredDocumentation","src":"5728:132:79","text":" @dev Attempts to fetch the asset decimals. A return value of false indicates that the attempt failed in some way."},"id":24363,"implemented":true,"kind":"function","modifiers":[],"name":"_tryGetAssetDecimals","nameLocation":"5874:20:79","nodeType":"FunctionDefinition","parameters":{"id":24290,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24289,"mutability":"mutable","name":"asset_","nameLocation":"5902:6:79","nodeType":"VariableDeclaration","scope":24363,"src":"5895:13:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":24288,"nodeType":"UserDefinedTypeName","pathNode":{"id":24287,"name":"IERC20","nameLocations":["5895:6:79"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"5895:6:79"},"referencedDeclaration":24193,"src":"5895:6:79","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"}],"src":"5894:15:79"},"returnParameters":{"id":24295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24292,"mutability":"mutable","name":"ok","nameLocation":"5937:2:79","nodeType":"VariableDeclaration","scope":24363,"src":"5932:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":24291,"name":"bool","nodeType":"ElementaryTypeName","src":"5932:4:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":24294,"mutability":"mutable","name":"assetDecimals","nameLocation":"5947:13:79","nodeType":"VariableDeclaration","scope":24363,"src":"5941:19:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":24293,"name":"uint8","nodeType":"ElementaryTypeName","src":"5941:5:79","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"5931:30:79"},"scope":24899,"src":"5865:607:79","stateMutability":"view","virtual":false,"visibility":"private"},{"baseFunctions":[23679,24924],"body":{"id":24377,"nodeType":"Block","src":"6965:63:79","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":24375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24372,"name":"_underlyingDecimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24222,"src":"6982:19:79","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":24373,"name":"_decimalsOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24898,"src":"7004:15:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":24374,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7004:17:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6982:39:79","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":24371,"id":24376,"nodeType":"Return","src":"6975:46:79"}]},"documentation":{"id":24364,"nodeType":"StructuredDocumentation","src":"6478:394:79","text":" @dev Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This\n \"original\" value is cached during construction of the vault contract. If this read operation fails (e.g., the\n asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals.\n See {IERC20Metadata-decimals}."},"functionSelector":"313ce567","id":24378,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"6886:8:79","nodeType":"FunctionDefinition","overrides":{"id":24368,"nodeType":"OverrideSpecifier","overrides":[{"id":24366,"name":"IERC20Metadata","nameLocations":["6926:14:79"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"6926:14:79"},{"id":24367,"name":"ERC20","nameLocations":["6942:5:79"],"nodeType":"IdentifierPath","referencedDeclaration":24115,"src":"6942:5:79"}],"src":"6917:31:79"},"parameters":{"id":24365,"nodeType":"ParameterList","parameters":[],"src":"6894:2:79"},"returnParameters":{"id":24371,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24370,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24378,"src":"6958:5:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":24369,"name":"uint8","nodeType":"ElementaryTypeName","src":"6958:5:79","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"6957:7:79"},"scope":24899,"src":"6877:151:79","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22332],"body":{"id":24389,"nodeType":"Block","src":"7118:39:79","statements":[{"expression":{"arguments":[{"id":24386,"name":"_asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24220,"src":"7143:6:79","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}],"id":24385,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7135:7:79","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24384,"name":"address","nodeType":"ElementaryTypeName","src":"7135:7:79","typeDescriptions":{}}},"id":24387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7135:15:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":24383,"id":24388,"nodeType":"Return","src":"7128:22:79"}]},"documentation":{"id":24379,"nodeType":"StructuredDocumentation","src":"7034:24:79","text":"@inheritdoc IERC4626"},"functionSelector":"38d52e0f","id":24390,"implemented":true,"kind":"function","modifiers":[],"name":"asset","nameLocation":"7072:5:79","nodeType":"FunctionDefinition","parameters":{"id":24380,"nodeType":"ParameterList","parameters":[],"src":"7077:2:79"},"returnParameters":{"id":24383,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24382,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24390,"src":"7109:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24381,"name":"address","nodeType":"ElementaryTypeName","src":"7109:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7108:9:79"},"scope":24899,"src":"7063:94:79","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22338],"body":{"id":24407,"nodeType":"Block","src":"7253:64:79","statements":[{"expression":{"arguments":[{"arguments":[{"id":24403,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7304:4:79","typeDescriptions":{"typeIdentifier":"t_contract$_ERC4626_$24899","typeString":"contract ERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC4626_$24899","typeString":"contract ERC4626"}],"id":24402,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7296:7:79","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24401,"name":"address","nodeType":"ElementaryTypeName","src":"7296:7:79","typeDescriptions":{}}},"id":24404,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7296:13:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24397,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24390,"src":"7277:5:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7277:7:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24396,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"7270:6:79","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$24193_$","typeString":"type(contract IERC20)"}},"id":24399,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7270:15:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"id":24400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7286:9:79","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":24150,"src":"7270:25:79","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":24405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7270:40:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24395,"id":24406,"nodeType":"Return","src":"7263:47:79"}]},"documentation":{"id":24391,"nodeType":"StructuredDocumentation","src":"7163:24:79","text":"@inheritdoc IERC4626"},"functionSelector":"01e1d114","id":24408,"implemented":true,"kind":"function","modifiers":[],"name":"totalAssets","nameLocation":"7201:11:79","nodeType":"FunctionDefinition","parameters":{"id":24392,"nodeType":"ParameterList","parameters":[],"src":"7212:2:79"},"returnParameters":{"id":24395,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24394,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24408,"src":"7244:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24393,"name":"uint256","nodeType":"ElementaryTypeName","src":"7244:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7243:9:79"},"scope":24899,"src":"7192:125:79","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22346],"body":{"id":24423,"nodeType":"Block","src":"7431:69:79","statements":[{"expression":{"arguments":[{"id":24417,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24411,"src":"7465:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":24418,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"7473:4:79","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":24419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7478:8:79","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":33557,"src":"7473:13:79","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$33557_$","typeString":"type(enum Math.Rounding)"}},"id":24420,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7487:5:79","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":33553,"src":"7473:19:79","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":24416,"name":"_convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24772,"src":"7448:16:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":24421,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7448:45:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24415,"id":24422,"nodeType":"Return","src":"7441:52:79"}]},"documentation":{"id":24409,"nodeType":"StructuredDocumentation","src":"7323:24:79","text":"@inheritdoc IERC4626"},"functionSelector":"c6e6f592","id":24424,"implemented":true,"kind":"function","modifiers":[],"name":"convertToShares","nameLocation":"7361:15:79","nodeType":"FunctionDefinition","parameters":{"id":24412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24411,"mutability":"mutable","name":"assets","nameLocation":"7385:6:79","nodeType":"VariableDeclaration","scope":24424,"src":"7377:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24410,"name":"uint256","nodeType":"ElementaryTypeName","src":"7377:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7376:16:79"},"returnParameters":{"id":24415,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24414,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24424,"src":"7422:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24413,"name":"uint256","nodeType":"ElementaryTypeName","src":"7422:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7421:9:79"},"scope":24899,"src":"7352:148:79","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22354],"body":{"id":24439,"nodeType":"Block","src":"7614:69:79","statements":[{"expression":{"arguments":[{"id":24433,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24427,"src":"7648:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":24434,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"7656:4:79","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":24435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7661:8:79","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":33557,"src":"7656:13:79","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$33557_$","typeString":"type(enum Math.Rounding)"}},"id":24436,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7670:5:79","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":33553,"src":"7656:19:79","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":24432,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24800,"src":"7631:16:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":24437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7631:45:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24431,"id":24438,"nodeType":"Return","src":"7624:52:79"}]},"documentation":{"id":24425,"nodeType":"StructuredDocumentation","src":"7506:24:79","text":"@inheritdoc IERC4626"},"functionSelector":"07a2d13a","id":24440,"implemented":true,"kind":"function","modifiers":[],"name":"convertToAssets","nameLocation":"7544:15:79","nodeType":"FunctionDefinition","parameters":{"id":24428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24427,"mutability":"mutable","name":"shares","nameLocation":"7568:6:79","nodeType":"VariableDeclaration","scope":24440,"src":"7560:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24426,"name":"uint256","nodeType":"ElementaryTypeName","src":"7560:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7559:16:79"},"returnParameters":{"id":24431,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24430,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24440,"src":"7605:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24429,"name":"uint256","nodeType":"ElementaryTypeName","src":"7605:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7604:9:79"},"scope":24899,"src":"7535:148:79","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22362],"body":{"id":24454,"nodeType":"Block","src":"7785:41:79","statements":[{"expression":{"expression":{"arguments":[{"id":24450,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7807:7:79","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":24449,"name":"uint256","nodeType":"ElementaryTypeName","src":"7807:7:79","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":24448,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7802:4:79","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":24451,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7802:13:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":24452,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7816:3:79","memberName":"max","nodeType":"MemberAccess","src":"7802:17:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24447,"id":24453,"nodeType":"Return","src":"7795:24:79"}]},"documentation":{"id":24441,"nodeType":"StructuredDocumentation","src":"7689:24:79","text":"@inheritdoc IERC4626"},"functionSelector":"402d267d","id":24455,"implemented":true,"kind":"function","modifiers":[],"name":"maxDeposit","nameLocation":"7727:10:79","nodeType":"FunctionDefinition","parameters":{"id":24444,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24443,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24455,"src":"7738:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24442,"name":"address","nodeType":"ElementaryTypeName","src":"7738:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7737:9:79"},"returnParameters":{"id":24447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24446,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24455,"src":"7776:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24445,"name":"uint256","nodeType":"ElementaryTypeName","src":"7776:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7775:9:79"},"scope":24899,"src":"7718:108:79","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22388],"body":{"id":24469,"nodeType":"Block","src":"7925:41:79","statements":[{"expression":{"expression":{"arguments":[{"id":24465,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7947:7:79","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":24464,"name":"uint256","nodeType":"ElementaryTypeName","src":"7947:7:79","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":24463,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7942:4:79","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":24466,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7942:13:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":24467,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7956:3:79","memberName":"max","nodeType":"MemberAccess","src":"7942:17:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24462,"id":24468,"nodeType":"Return","src":"7935:24:79"}]},"documentation":{"id":24456,"nodeType":"StructuredDocumentation","src":"7832:24:79","text":"@inheritdoc IERC4626"},"functionSelector":"c63d75b6","id":24470,"implemented":true,"kind":"function","modifiers":[],"name":"maxMint","nameLocation":"7870:7:79","nodeType":"FunctionDefinition","parameters":{"id":24459,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24458,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24470,"src":"7878:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24457,"name":"address","nodeType":"ElementaryTypeName","src":"7878:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7877:9:79"},"returnParameters":{"id":24462,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24461,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24470,"src":"7916:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24460,"name":"uint256","nodeType":"ElementaryTypeName","src":"7916:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7915:9:79"},"scope":24899,"src":"7861:105:79","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22414],"body":{"id":24484,"nodeType":"Block","src":"8075:55:79","statements":[{"expression":{"arguments":[{"arguments":[{"id":24480,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24473,"src":"8116:5:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24479,"name":"maxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24498,"src":"8106:9:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":24481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8106:16:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24478,"name":"previewRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24562,"src":"8092:13:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":24482,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8092:31:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24477,"id":24483,"nodeType":"Return","src":"8085:38:79"}]},"documentation":{"id":24471,"nodeType":"StructuredDocumentation","src":"7972:24:79","text":"@inheritdoc IERC4626"},"functionSelector":"ce96cb77","id":24485,"implemented":true,"kind":"function","modifiers":[],"name":"maxWithdraw","nameLocation":"8010:11:79","nodeType":"FunctionDefinition","parameters":{"id":24474,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24473,"mutability":"mutable","name":"owner","nameLocation":"8030:5:79","nodeType":"VariableDeclaration","scope":24485,"src":"8022:13:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24472,"name":"address","nodeType":"ElementaryTypeName","src":"8022:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8021:15:79"},"returnParameters":{"id":24477,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24476,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24485,"src":"8066:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24475,"name":"uint256","nodeType":"ElementaryTypeName","src":"8066:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8065:9:79"},"scope":24899,"src":"8001:129:79","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22442],"body":{"id":24497,"nodeType":"Block","src":"8237:40:79","statements":[{"expression":{"arguments":[{"id":24494,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24488,"src":"8264:5:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24493,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23701,"src":"8254:9:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":24495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8254:16:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24492,"id":24496,"nodeType":"Return","src":"8247:23:79"}]},"documentation":{"id":24486,"nodeType":"StructuredDocumentation","src":"8136:24:79","text":"@inheritdoc IERC4626"},"functionSelector":"d905777e","id":24498,"implemented":true,"kind":"function","modifiers":[],"name":"maxRedeem","nameLocation":"8174:9:79","nodeType":"FunctionDefinition","parameters":{"id":24489,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24488,"mutability":"mutable","name":"owner","nameLocation":"8192:5:79","nodeType":"VariableDeclaration","scope":24498,"src":"8184:13:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24487,"name":"address","nodeType":"ElementaryTypeName","src":"8184:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8183:15:79"},"returnParameters":{"id":24492,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24491,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24498,"src":"8228:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24490,"name":"uint256","nodeType":"ElementaryTypeName","src":"8228:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8227:9:79"},"scope":24899,"src":"8165:112:79","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22370],"body":{"id":24513,"nodeType":"Block","src":"8390:69:79","statements":[{"expression":{"arguments":[{"id":24507,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24501,"src":"8424:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":24508,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"8432:4:79","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":24509,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8437:8:79","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":33557,"src":"8432:13:79","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$33557_$","typeString":"type(enum Math.Rounding)"}},"id":24510,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8446:5:79","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":33553,"src":"8432:19:79","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":24506,"name":"_convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24772,"src":"8407:16:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":24511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8407:45:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24505,"id":24512,"nodeType":"Return","src":"8400:52:79"}]},"documentation":{"id":24499,"nodeType":"StructuredDocumentation","src":"8283:24:79","text":"@inheritdoc IERC4626"},"functionSelector":"ef8b30f7","id":24514,"implemented":true,"kind":"function","modifiers":[],"name":"previewDeposit","nameLocation":"8321:14:79","nodeType":"FunctionDefinition","parameters":{"id":24502,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24501,"mutability":"mutable","name":"assets","nameLocation":"8344:6:79","nodeType":"VariableDeclaration","scope":24514,"src":"8336:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24500,"name":"uint256","nodeType":"ElementaryTypeName","src":"8336:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8335:16:79"},"returnParameters":{"id":24505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24504,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24514,"src":"8381:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24503,"name":"uint256","nodeType":"ElementaryTypeName","src":"8381:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8380:9:79"},"scope":24899,"src":"8312:147:79","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22396],"body":{"id":24529,"nodeType":"Block","src":"8569:68:79","statements":[{"expression":{"arguments":[{"id":24523,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24517,"src":"8603:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":24524,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"8611:4:79","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":24525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8616:8:79","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":33557,"src":"8611:13:79","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$33557_$","typeString":"type(enum Math.Rounding)"}},"id":24526,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8625:4:79","memberName":"Ceil","nodeType":"MemberAccess","referencedDeclaration":33554,"src":"8611:18:79","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":24522,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24800,"src":"8586:16:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":24527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8586:44:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24521,"id":24528,"nodeType":"Return","src":"8579:51:79"}]},"documentation":{"id":24515,"nodeType":"StructuredDocumentation","src":"8465:24:79","text":"@inheritdoc IERC4626"},"functionSelector":"b3d7f6b9","id":24530,"implemented":true,"kind":"function","modifiers":[],"name":"previewMint","nameLocation":"8503:11:79","nodeType":"FunctionDefinition","parameters":{"id":24518,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24517,"mutability":"mutable","name":"shares","nameLocation":"8523:6:79","nodeType":"VariableDeclaration","scope":24530,"src":"8515:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24516,"name":"uint256","nodeType":"ElementaryTypeName","src":"8515:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8514:16:79"},"returnParameters":{"id":24521,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24520,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24530,"src":"8560:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24519,"name":"uint256","nodeType":"ElementaryTypeName","src":"8560:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8559:9:79"},"scope":24899,"src":"8494:143:79","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22422],"body":{"id":24545,"nodeType":"Block","src":"8751:68:79","statements":[{"expression":{"arguments":[{"id":24539,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24533,"src":"8785:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":24540,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"8793:4:79","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":24541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8798:8:79","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":33557,"src":"8793:13:79","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$33557_$","typeString":"type(enum Math.Rounding)"}},"id":24542,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8807:4:79","memberName":"Ceil","nodeType":"MemberAccess","referencedDeclaration":33554,"src":"8793:18:79","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":24538,"name":"_convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24772,"src":"8768:16:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":24543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8768:44:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24537,"id":24544,"nodeType":"Return","src":"8761:51:79"}]},"documentation":{"id":24531,"nodeType":"StructuredDocumentation","src":"8643:24:79","text":"@inheritdoc IERC4626"},"functionSelector":"0a28a477","id":24546,"implemented":true,"kind":"function","modifiers":[],"name":"previewWithdraw","nameLocation":"8681:15:79","nodeType":"FunctionDefinition","parameters":{"id":24534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24533,"mutability":"mutable","name":"assets","nameLocation":"8705:6:79","nodeType":"VariableDeclaration","scope":24546,"src":"8697:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24532,"name":"uint256","nodeType":"ElementaryTypeName","src":"8697:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8696:16:79"},"returnParameters":{"id":24537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24536,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24546,"src":"8742:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24535,"name":"uint256","nodeType":"ElementaryTypeName","src":"8742:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8741:9:79"},"scope":24899,"src":"8672:147:79","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22450],"body":{"id":24561,"nodeType":"Block","src":"8931:69:79","statements":[{"expression":{"arguments":[{"id":24555,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24549,"src":"8965:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":24556,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"8973:4:79","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":24557,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8978:8:79","memberName":"Rounding","nodeType":"MemberAccess","referencedDeclaration":33557,"src":"8973:13:79","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_Rounding_$33557_$","typeString":"type(enum Math.Rounding)"}},"id":24558,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8987:5:79","memberName":"Floor","nodeType":"MemberAccess","referencedDeclaration":33553,"src":"8973:19:79","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":24554,"name":"_convertToAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24800,"src":"8948:16:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":24559,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8948:45:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24553,"id":24560,"nodeType":"Return","src":"8941:52:79"}]},"documentation":{"id":24547,"nodeType":"StructuredDocumentation","src":"8825:24:79","text":"@inheritdoc IERC4626"},"functionSelector":"4cdad506","id":24562,"implemented":true,"kind":"function","modifiers":[],"name":"previewRedeem","nameLocation":"8863:13:79","nodeType":"FunctionDefinition","parameters":{"id":24550,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24549,"mutability":"mutable","name":"shares","nameLocation":"8885:6:79","nodeType":"VariableDeclaration","scope":24562,"src":"8877:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24548,"name":"uint256","nodeType":"ElementaryTypeName","src":"8877:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8876:16:79"},"returnParameters":{"id":24553,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24552,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24562,"src":"8922:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24551,"name":"uint256","nodeType":"ElementaryTypeName","src":"8922:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8921:9:79"},"scope":24899,"src":"8854:146:79","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[22380],"body":{"id":24605,"nodeType":"Block","src":"9119:308:79","statements":[{"assignments":[24573],"declarations":[{"constant":false,"id":24573,"mutability":"mutable","name":"maxAssets","nameLocation":"9137:9:79","nodeType":"VariableDeclaration","scope":24605,"src":"9129:17:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24572,"name":"uint256","nodeType":"ElementaryTypeName","src":"9129:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":24577,"initialValue":{"arguments":[{"id":24575,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24567,"src":"9160:8:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24574,"name":"maxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24455,"src":"9149:10:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":24576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9149:20:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9129:40:79"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24580,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24578,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24565,"src":"9183:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":24579,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24573,"src":"9192:9:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9183:18:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24588,"nodeType":"IfStatement","src":"9179:110:79","trueBody":{"id":24587,"nodeType":"Block","src":"9203:86:79","statements":[{"errorCall":{"arguments":[{"id":24582,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24567,"src":"9250:8:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24583,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24565,"src":"9260:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24584,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24573,"src":"9268:9:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24581,"name":"ERC4626ExceededMaxDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24231,"src":"9224:25:79","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":24585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9224:54:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":24586,"nodeType":"RevertStatement","src":"9217:61:79"}]}},{"assignments":[24590],"declarations":[{"constant":false,"id":24590,"mutability":"mutable","name":"shares","nameLocation":"9307:6:79","nodeType":"VariableDeclaration","scope":24605,"src":"9299:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24589,"name":"uint256","nodeType":"ElementaryTypeName","src":"9299:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":24594,"initialValue":{"arguments":[{"id":24592,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24565,"src":"9331:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24591,"name":"previewDeposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24514,"src":"9316:14:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":24593,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9316:22:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9299:39:79"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24596,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"9357:10:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9357:12:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24598,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24567,"src":"9371:8:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24599,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24565,"src":"9381:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24600,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24590,"src":"9389:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24595,"name":"_deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24840,"src":"9348:8:79","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":24601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9348:48:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24602,"nodeType":"ExpressionStatement","src":"9348:48:79"},{"expression":{"id":24603,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24590,"src":"9414:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24571,"id":24604,"nodeType":"Return","src":"9407:13:79"}]},"documentation":{"id":24563,"nodeType":"StructuredDocumentation","src":"9006:24:79","text":"@inheritdoc IERC4626"},"functionSelector":"6e553f65","id":24606,"implemented":true,"kind":"function","modifiers":[],"name":"deposit","nameLocation":"9044:7:79","nodeType":"FunctionDefinition","parameters":{"id":24568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24565,"mutability":"mutable","name":"assets","nameLocation":"9060:6:79","nodeType":"VariableDeclaration","scope":24606,"src":"9052:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24564,"name":"uint256","nodeType":"ElementaryTypeName","src":"9052:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24567,"mutability":"mutable","name":"receiver","nameLocation":"9076:8:79","nodeType":"VariableDeclaration","scope":24606,"src":"9068:16:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24566,"name":"address","nodeType":"ElementaryTypeName","src":"9068:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9051:34:79"},"returnParameters":{"id":24571,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24570,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24606,"src":"9110:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24569,"name":"uint256","nodeType":"ElementaryTypeName","src":"9110:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9109:9:79"},"scope":24899,"src":"9035:392:79","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[22406],"body":{"id":24649,"nodeType":"Block","src":"9543:299:79","statements":[{"assignments":[24617],"declarations":[{"constant":false,"id":24617,"mutability":"mutable","name":"maxShares","nameLocation":"9561:9:79","nodeType":"VariableDeclaration","scope":24649,"src":"9553:17:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24616,"name":"uint256","nodeType":"ElementaryTypeName","src":"9553:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":24621,"initialValue":{"arguments":[{"id":24619,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24611,"src":"9581:8:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24618,"name":"maxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24470,"src":"9573:7:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":24620,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9573:17:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9553:37:79"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24624,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24622,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24609,"src":"9604:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":24623,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24617,"src":"9613:9:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9604:18:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24632,"nodeType":"IfStatement","src":"9600:107:79","trueBody":{"id":24631,"nodeType":"Block","src":"9624:83:79","statements":[{"errorCall":{"arguments":[{"id":24626,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24611,"src":"9668:8:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24627,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24609,"src":"9678:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24628,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24617,"src":"9686:9:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24625,"name":"ERC4626ExceededMaxMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24240,"src":"9645:22:79","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":24629,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9645:51:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":24630,"nodeType":"RevertStatement","src":"9638:58:79"}]}},{"assignments":[24634],"declarations":[{"constant":false,"id":24634,"mutability":"mutable","name":"assets","nameLocation":"9725:6:79","nodeType":"VariableDeclaration","scope":24649,"src":"9717:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24633,"name":"uint256","nodeType":"ElementaryTypeName","src":"9717:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":24638,"initialValue":{"arguments":[{"id":24636,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24609,"src":"9746:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24635,"name":"previewMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24530,"src":"9734:11:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":24637,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9734:19:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9717:36:79"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24640,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"9772:10:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9772:12:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24642,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24611,"src":"9786:8:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24643,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24634,"src":"9796:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24644,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24609,"src":"9804:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24639,"name":"_deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24840,"src":"9763:8:79","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":24645,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9763:48:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24646,"nodeType":"ExpressionStatement","src":"9763:48:79"},{"expression":{"id":24647,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24634,"src":"9829:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24615,"id":24648,"nodeType":"Return","src":"9822:13:79"}]},"documentation":{"id":24607,"nodeType":"StructuredDocumentation","src":"9433:24:79","text":"@inheritdoc IERC4626"},"functionSelector":"94bf804d","id":24650,"implemented":true,"kind":"function","modifiers":[],"name":"mint","nameLocation":"9471:4:79","nodeType":"FunctionDefinition","parameters":{"id":24612,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24609,"mutability":"mutable","name":"shares","nameLocation":"9484:6:79","nodeType":"VariableDeclaration","scope":24650,"src":"9476:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24608,"name":"uint256","nodeType":"ElementaryTypeName","src":"9476:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24611,"mutability":"mutable","name":"receiver","nameLocation":"9500:8:79","nodeType":"VariableDeclaration","scope":24650,"src":"9492:16:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24610,"name":"address","nodeType":"ElementaryTypeName","src":"9492:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9475:34:79"},"returnParameters":{"id":24615,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24614,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24650,"src":"9534:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24613,"name":"uint256","nodeType":"ElementaryTypeName","src":"9534:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9533:9:79"},"scope":24899,"src":"9462:380:79","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[22434],"body":{"id":24696,"nodeType":"Block","src":"9977:313:79","statements":[{"assignments":[24663],"declarations":[{"constant":false,"id":24663,"mutability":"mutable","name":"maxAssets","nameLocation":"9995:9:79","nodeType":"VariableDeclaration","scope":24696,"src":"9987:17:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24662,"name":"uint256","nodeType":"ElementaryTypeName","src":"9987:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":24667,"initialValue":{"arguments":[{"id":24665,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24657,"src":"10019:5:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24664,"name":"maxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24485,"src":"10007:11:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":24666,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10007:18:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9987:38:79"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24668,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24653,"src":"10039:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":24669,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24663,"src":"10048:9:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10039:18:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24678,"nodeType":"IfStatement","src":"10035:108:79","trueBody":{"id":24677,"nodeType":"Block","src":"10059:84:79","statements":[{"errorCall":{"arguments":[{"id":24672,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24657,"src":"10107:5:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24673,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24653,"src":"10114:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24674,"name":"maxAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24663,"src":"10122:9:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24671,"name":"ERC4626ExceededMaxWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24249,"src":"10080:26:79","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":24675,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10080:52:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":24676,"nodeType":"RevertStatement","src":"10073:59:79"}]}},{"assignments":[24680],"declarations":[{"constant":false,"id":24680,"mutability":"mutable","name":"shares","nameLocation":"10161:6:79","nodeType":"VariableDeclaration","scope":24696,"src":"10153:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24679,"name":"uint256","nodeType":"ElementaryTypeName","src":"10153:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":24684,"initialValue":{"arguments":[{"id":24682,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24653,"src":"10186:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24681,"name":"previewWithdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24546,"src":"10170:15:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":24683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10170:23:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10153:40:79"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24686,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"10213:10:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10213:12:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24688,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24655,"src":"10227:8:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24689,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24657,"src":"10237:5:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24690,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24653,"src":"10244:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24691,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24680,"src":"10252:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24685,"name":"_withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24890,"src":"10203:9:79","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":24692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10203:56:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24693,"nodeType":"ExpressionStatement","src":"10203:56:79"},{"expression":{"id":24694,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24680,"src":"10277:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24661,"id":24695,"nodeType":"Return","src":"10270:13:79"}]},"documentation":{"id":24651,"nodeType":"StructuredDocumentation","src":"9848:24:79","text":"@inheritdoc IERC4626"},"functionSelector":"b460af94","id":24697,"implemented":true,"kind":"function","modifiers":[],"name":"withdraw","nameLocation":"9886:8:79","nodeType":"FunctionDefinition","parameters":{"id":24658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24653,"mutability":"mutable","name":"assets","nameLocation":"9903:6:79","nodeType":"VariableDeclaration","scope":24697,"src":"9895:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24652,"name":"uint256","nodeType":"ElementaryTypeName","src":"9895:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24655,"mutability":"mutable","name":"receiver","nameLocation":"9919:8:79","nodeType":"VariableDeclaration","scope":24697,"src":"9911:16:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24654,"name":"address","nodeType":"ElementaryTypeName","src":"9911:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24657,"mutability":"mutable","name":"owner","nameLocation":"9937:5:79","nodeType":"VariableDeclaration","scope":24697,"src":"9929:13:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24656,"name":"address","nodeType":"ElementaryTypeName","src":"9929:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"9894:49:79"},"returnParameters":{"id":24661,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24660,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24697,"src":"9968:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24659,"name":"uint256","nodeType":"ElementaryTypeName","src":"9968:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9967:9:79"},"scope":24899,"src":"9877:413:79","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[22462],"body":{"id":24743,"nodeType":"Block","src":"10423:307:79","statements":[{"assignments":[24710],"declarations":[{"constant":false,"id":24710,"mutability":"mutable","name":"maxShares","nameLocation":"10441:9:79","nodeType":"VariableDeclaration","scope":24743,"src":"10433:17:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24709,"name":"uint256","nodeType":"ElementaryTypeName","src":"10433:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":24714,"initialValue":{"arguments":[{"id":24712,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24704,"src":"10463:5:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24711,"name":"maxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24498,"src":"10453:9:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":24713,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10453:16:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10433:36:79"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24715,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24700,"src":"10483:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":24716,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24710,"src":"10492:9:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10483:18:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24725,"nodeType":"IfStatement","src":"10479:106:79","trueBody":{"id":24724,"nodeType":"Block","src":"10503:82:79","statements":[{"errorCall":{"arguments":[{"id":24719,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24704,"src":"10549:5:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24720,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24700,"src":"10556:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24721,"name":"maxShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24710,"src":"10564:9:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24718,"name":"ERC4626ExceededMaxRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24258,"src":"10524:24:79","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":24722,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10524:50:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":24723,"nodeType":"RevertStatement","src":"10517:57:79"}]}},{"assignments":[24727],"declarations":[{"constant":false,"id":24727,"mutability":"mutable","name":"assets","nameLocation":"10603:6:79","nodeType":"VariableDeclaration","scope":24743,"src":"10595:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24726,"name":"uint256","nodeType":"ElementaryTypeName","src":"10595:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":24731,"initialValue":{"arguments":[{"id":24729,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24700,"src":"10626:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24728,"name":"previewRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24562,"src":"10612:13:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":24730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10612:21:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10595:38:79"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24733,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"10653:10:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24734,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10653:12:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24735,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24702,"src":"10667:8:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24736,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24704,"src":"10677:5:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24737,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24727,"src":"10684:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24738,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24700,"src":"10692:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24732,"name":"_withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24890,"src":"10643:9:79","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":24739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10643:56:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24740,"nodeType":"ExpressionStatement","src":"10643:56:79"},{"expression":{"id":24741,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24727,"src":"10717:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24708,"id":24742,"nodeType":"Return","src":"10710:13:79"}]},"documentation":{"id":24698,"nodeType":"StructuredDocumentation","src":"10296:24:79","text":"@inheritdoc IERC4626"},"functionSelector":"ba087652","id":24744,"implemented":true,"kind":"function","modifiers":[],"name":"redeem","nameLocation":"10334:6:79","nodeType":"FunctionDefinition","parameters":{"id":24705,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24700,"mutability":"mutable","name":"shares","nameLocation":"10349:6:79","nodeType":"VariableDeclaration","scope":24744,"src":"10341:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24699,"name":"uint256","nodeType":"ElementaryTypeName","src":"10341:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24702,"mutability":"mutable","name":"receiver","nameLocation":"10365:8:79","nodeType":"VariableDeclaration","scope":24744,"src":"10357:16:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24701,"name":"address","nodeType":"ElementaryTypeName","src":"10357:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24704,"mutability":"mutable","name":"owner","nameLocation":"10383:5:79","nodeType":"VariableDeclaration","scope":24744,"src":"10375:13:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24703,"name":"address","nodeType":"ElementaryTypeName","src":"10375:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"10340:49:79"},"returnParameters":{"id":24708,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24707,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24744,"src":"10414:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24706,"name":"uint256","nodeType":"ElementaryTypeName","src":"10414:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10413:9:79"},"scope":24899,"src":"10325:405:79","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":24771,"nodeType":"Block","src":"10960:107:79","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24763,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":24757,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23688,"src":"10991:11:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":24758,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10991:13:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":24759,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11007:2:79","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":24760,"name":"_decimalsOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24898,"src":"11013:15:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":24761,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11013:17:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11007:23:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10991:39:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":24764,"name":"totalAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24408,"src":"11032:11:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":24765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11032:13:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":24766,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11048:1:79","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11032:17:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24768,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24750,"src":"11051:8:79","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"expression":{"id":24755,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24747,"src":"10977:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":24756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10984:6:79","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34109,"src":"10977:13:79","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256,enum Math.Rounding) pure returns (uint256)"}},"id":24769,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10977:83:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24754,"id":24770,"nodeType":"Return","src":"10970:90:79"}]},"documentation":{"id":24745,"nodeType":"StructuredDocumentation","src":"10736:113:79","text":" @dev Internal conversion function (from assets to shares) with support for rounding direction."},"id":24772,"implemented":true,"kind":"function","modifiers":[],"name":"_convertToShares","nameLocation":"10863:16:79","nodeType":"FunctionDefinition","parameters":{"id":24751,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24747,"mutability":"mutable","name":"assets","nameLocation":"10888:6:79","nodeType":"VariableDeclaration","scope":24772,"src":"10880:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24746,"name":"uint256","nodeType":"ElementaryTypeName","src":"10880:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24750,"mutability":"mutable","name":"rounding","nameLocation":"10910:8:79","nodeType":"VariableDeclaration","scope":24772,"src":"10896:22:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"},"typeName":{"id":24749,"nodeType":"UserDefinedTypeName","pathNode":{"id":24748,"name":"Math.Rounding","nameLocations":["10896:4:79","10901:8:79"],"nodeType":"IdentifierPath","referencedDeclaration":33557,"src":"10896:13:79"},"referencedDeclaration":33557,"src":"10896:13:79","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"10879:40:79"},"returnParameters":{"id":24754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24753,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24772,"src":"10951:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24752,"name":"uint256","nodeType":"ElementaryTypeName","src":"10951:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10950:9:79"},"scope":24899,"src":"10854:213:79","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":24799,"nodeType":"Block","src":"11297:107:79","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":24785,"name":"totalAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24408,"src":"11328:11:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":24786,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11328:13:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":24787,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11344:1:79","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"11328:17:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":24789,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23688,"src":"11347:11:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":24790,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11347:13:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":24794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":24791,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11363:2:79","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":24792,"name":"_decimalsOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24898,"src":"11369:15:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":24793,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11369:17:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11363:23:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11347:39:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24796,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24778,"src":"11388:8:79","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"expression":{"id":24783,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24775,"src":"11314:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":24784,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11321:6:79","memberName":"mulDiv","nodeType":"MemberAccess","referencedDeclaration":34109,"src":"11314:13:79","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256,uint256,enum Math.Rounding) pure returns (uint256)"}},"id":24797,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11314:83:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":24782,"id":24798,"nodeType":"Return","src":"11307:90:79"}]},"documentation":{"id":24773,"nodeType":"StructuredDocumentation","src":"11073:113:79","text":" @dev Internal conversion function (from shares to assets) with support for rounding direction."},"id":24800,"implemented":true,"kind":"function","modifiers":[],"name":"_convertToAssets","nameLocation":"11200:16:79","nodeType":"FunctionDefinition","parameters":{"id":24779,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24775,"mutability":"mutable","name":"shares","nameLocation":"11225:6:79","nodeType":"VariableDeclaration","scope":24800,"src":"11217:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24774,"name":"uint256","nodeType":"ElementaryTypeName","src":"11217:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24778,"mutability":"mutable","name":"rounding","nameLocation":"11247:8:79","nodeType":"VariableDeclaration","scope":24800,"src":"11233:22:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"},"typeName":{"id":24777,"nodeType":"UserDefinedTypeName","pathNode":{"id":24776,"name":"Math.Rounding","nameLocations":["11233:4:79","11238:8:79"],"nodeType":"IdentifierPath","referencedDeclaration":33557,"src":"11233:13:79"},"referencedDeclaration":33557,"src":"11233:13:79","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"11216:40:79"},"returnParameters":{"id":24782,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24781,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24800,"src":"11288:7:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24780,"name":"uint256","nodeType":"ElementaryTypeName","src":"11288:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11287:9:79"},"scope":24899,"src":"11191:213:79","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":24839,"nodeType":"Block","src":"11569:740:79","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24816,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24390,"src":"12172:5:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12172:7:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24815,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"12165:6:79","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$24193_$","typeString":"type(contract IERC20)"}},"id":24818,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12165:15:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},{"id":24819,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24803,"src":"12182:6:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":24822,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"12198:4:79","typeDescriptions":{"typeIdentifier":"t_contract$_ERC4626_$24899","typeString":"contract ERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_ERC4626_$24899","typeString":"contract ERC4626"}],"id":24821,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12190:7:79","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":24820,"name":"address","nodeType":"ElementaryTypeName","src":"12190:7:79","typeDescriptions":{}}},"id":24823,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12190:13:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24824,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24807,"src":"12205:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":24812,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25416,"src":"12138:9:79","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeERC20_$25416_$","typeString":"type(library SafeERC20)"}},"id":24814,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12148:16:79","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":25041,"src":"12138:26:79","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":24825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12138:74:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24826,"nodeType":"ExpressionStatement","src":"12138:74:79"},{"expression":{"arguments":[{"id":24828,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24805,"src":"12228:8:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24829,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24809,"src":"12238:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24827,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23955,"src":"12222:5:79","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":24830,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12222:23:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24831,"nodeType":"ExpressionStatement","src":"12222:23:79"},{"eventCall":{"arguments":[{"id":24833,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24803,"src":"12269:6:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24834,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24805,"src":"12277:8:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24835,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24807,"src":"12287:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24836,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24809,"src":"12295:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24832,"name":"Deposit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22314,"src":"12261:7:79","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":24837,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12261:41:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24838,"nodeType":"EmitStatement","src":"12256:46:79"}]},"documentation":{"id":24801,"nodeType":"StructuredDocumentation","src":"11410:53:79","text":" @dev Deposit/mint common workflow."},"id":24840,"implemented":true,"kind":"function","modifiers":[],"name":"_deposit","nameLocation":"11477:8:79","nodeType":"FunctionDefinition","parameters":{"id":24810,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24803,"mutability":"mutable","name":"caller","nameLocation":"11494:6:79","nodeType":"VariableDeclaration","scope":24840,"src":"11486:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24802,"name":"address","nodeType":"ElementaryTypeName","src":"11486:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24805,"mutability":"mutable","name":"receiver","nameLocation":"11510:8:79","nodeType":"VariableDeclaration","scope":24840,"src":"11502:16:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24804,"name":"address","nodeType":"ElementaryTypeName","src":"11502:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24807,"mutability":"mutable","name":"assets","nameLocation":"11528:6:79","nodeType":"VariableDeclaration","scope":24840,"src":"11520:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24806,"name":"uint256","nodeType":"ElementaryTypeName","src":"11520:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24809,"mutability":"mutable","name":"shares","nameLocation":"11544:6:79","nodeType":"VariableDeclaration","scope":24840,"src":"11536:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24808,"name":"uint256","nodeType":"ElementaryTypeName","src":"11536:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11485:66:79"},"returnParameters":{"id":24811,"nodeType":"ParameterList","parameters":[],"src":"11569:0:79"},"scope":24899,"src":"11468:841:79","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":24889,"nodeType":"Block","src":"12539:762:79","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":24856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":24854,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24843,"src":"12553:6:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":24855,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24847,"src":"12563:5:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12553:15:79","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":24864,"nodeType":"IfStatement","src":"12549:84:79","trueBody":{"id":24863,"nodeType":"Block","src":"12570:63:79","statements":[{"expression":{"arguments":[{"id":24858,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24847,"src":"12600:5:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24859,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24843,"src":"12607:6:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24860,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24851,"src":"12615:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24857,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24114,"src":"12584:15:79","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":24861,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12584:38:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24862,"nodeType":"ExpressionStatement","src":"12584:38:79"}]}},{"expression":{"arguments":[{"id":24866,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24847,"src":"13148:5:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24867,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24851,"src":"13155:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24865,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23988,"src":"13142:5:79","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":24868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13142:20:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24869,"nodeType":"ExpressionStatement","src":"13142:20:79"},{"expression":{"arguments":[{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":24874,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24390,"src":"13202:5:79","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":24875,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13202:7:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":24873,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"13195:6:79","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$24193_$","typeString":"type(contract IERC20)"}},"id":24876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13195:15:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},{"id":24877,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24845,"src":"13212:8:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24878,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24849,"src":"13222:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":24870,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25416,"src":"13172:9:79","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeERC20_$25416_$","typeString":"type(library SafeERC20)"}},"id":24872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13182:12:79","memberName":"safeTransfer","nodeType":"MemberAccess","referencedDeclaration":25010,"src":"13172:22:79","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":24879,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13172:57:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24880,"nodeType":"ExpressionStatement","src":"13172:57:79"},{"eventCall":{"arguments":[{"id":24882,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24843,"src":"13254:6:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24883,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24845,"src":"13262:8:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24884,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24847,"src":"13272:5:79","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24885,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24849,"src":"13279:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":24886,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24851,"src":"13287:6:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":24881,"name":"Withdraw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22326,"src":"13245:8:79","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":24887,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13245:49:79","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":24888,"nodeType":"EmitStatement","src":"13240:54:79"}]},"documentation":{"id":24841,"nodeType":"StructuredDocumentation","src":"12315:56:79","text":" @dev Withdraw/redeem common workflow."},"id":24890,"implemented":true,"kind":"function","modifiers":[],"name":"_withdraw","nameLocation":"12385:9:79","nodeType":"FunctionDefinition","parameters":{"id":24852,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24843,"mutability":"mutable","name":"caller","nameLocation":"12412:6:79","nodeType":"VariableDeclaration","scope":24890,"src":"12404:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24842,"name":"address","nodeType":"ElementaryTypeName","src":"12404:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24845,"mutability":"mutable","name":"receiver","nameLocation":"12436:8:79","nodeType":"VariableDeclaration","scope":24890,"src":"12428:16:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24844,"name":"address","nodeType":"ElementaryTypeName","src":"12428:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24847,"mutability":"mutable","name":"owner","nameLocation":"12462:5:79","nodeType":"VariableDeclaration","scope":24890,"src":"12454:13:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24846,"name":"address","nodeType":"ElementaryTypeName","src":"12454:7:79","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24849,"mutability":"mutable","name":"assets","nameLocation":"12485:6:79","nodeType":"VariableDeclaration","scope":24890,"src":"12477:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24848,"name":"uint256","nodeType":"ElementaryTypeName","src":"12477:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24851,"mutability":"mutable","name":"shares","nameLocation":"12509:6:79","nodeType":"VariableDeclaration","scope":24890,"src":"12501:14:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24850,"name":"uint256","nodeType":"ElementaryTypeName","src":"12501:7:79","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12394:127:79"},"returnParameters":{"id":24853,"nodeType":"ParameterList","parameters":[],"src":"12539:0:79"},"scope":24899,"src":"12376:925:79","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":24897,"nodeType":"Block","src":"13372:25:79","statements":[{"expression":{"hexValue":"30","id":24895,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13389:1:79","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":24894,"id":24896,"nodeType":"Return","src":"13382:8:79"}]},"id":24898,"implemented":true,"kind":"function","modifiers":[],"name":"_decimalsOffset","nameLocation":"13316:15:79","nodeType":"FunctionDefinition","parameters":{"id":24891,"nodeType":"ParameterList","parameters":[],"src":"13331:2:79"},"returnParameters":{"id":24894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24893,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24898,"src":"13365:5:79","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":24892,"name":"uint8","nodeType":"ElementaryTypeName","src":"13365:5:79","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"13364:7:79"},"scope":24899,"src":"13307:90:79","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":24900,"src":"4518:8881:79","usedErrors":[22518,22523,22528,22537,22542,22547,24231,24240,24249,24258,24973],"usedEvents":[22314,22326,24127,24136]}],"src":"118:13282:79"},"id":79},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","exportedSymbols":{"IERC20":[24193],"IERC20Metadata":[24925]},"id":24926,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":24901,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"125:24:80"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":24903,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":24926,"sourceUnit":24194,"src":"151:37:80","symbolAliases":[{"foreign":{"id":24902,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"159:6:80","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":24905,"name":"IERC20","nameLocations":["306:6:80"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"306:6:80"},"id":24906,"nodeType":"InheritanceSpecifier","src":"306:6:80"}],"canonicalName":"IERC20Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":24904,"nodeType":"StructuredDocumentation","src":"190:87:80","text":" @dev Interface for the optional metadata functions from the ERC-20 standard."},"fullyImplemented":false,"id":24925,"linearizedBaseContracts":[24925,24193],"name":"IERC20Metadata","nameLocation":"288:14:80","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":24907,"nodeType":"StructuredDocumentation","src":"319:54:80","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":24912,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"387:4:80","nodeType":"FunctionDefinition","parameters":{"id":24908,"nodeType":"ParameterList","parameters":[],"src":"391:2:80"},"returnParameters":{"id":24911,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24910,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24912,"src":"417:13:80","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":24909,"name":"string","nodeType":"ElementaryTypeName","src":"417:6:80","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"416:15:80"},"scope":24925,"src":"378:54:80","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":24913,"nodeType":"StructuredDocumentation","src":"438:56:80","text":" @dev Returns the symbol of the token."},"functionSelector":"95d89b41","id":24918,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"508:6:80","nodeType":"FunctionDefinition","parameters":{"id":24914,"nodeType":"ParameterList","parameters":[],"src":"514:2:80"},"returnParameters":{"id":24917,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24916,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24918,"src":"540:13:80","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":24915,"name":"string","nodeType":"ElementaryTypeName","src":"540:6:80","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"539:15:80"},"scope":24925,"src":"499:56:80","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":24919,"nodeType":"StructuredDocumentation","src":"561:65:80","text":" @dev Returns the decimals places of the token."},"functionSelector":"313ce567","id":24924,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"640:8:80","nodeType":"FunctionDefinition","parameters":{"id":24920,"nodeType":"ParameterList","parameters":[],"src":"648:2:80"},"returnParameters":{"id":24923,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24922,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24924,"src":"674:5:80","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":24921,"name":"uint8","nodeType":"ElementaryTypeName","src":"674:5:80","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"673:7:80"},"scope":24925,"src":"631:50:80","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":24926,"src":"278:405:80","usedErrors":[],"usedEvents":[24127,24136]}],"src":"125:559:80"},"id":80},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","exportedSymbols":{"IERC20Permit":[24961]},"id":24962,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":24927,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"123:25:81"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Permit","contractDependencies":[],"contractKind":"interface","documentation":{"id":24928,"nodeType":"StructuredDocumentation","src":"150:1965:81","text":" @dev Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n need to send a transaction, and thus is not required to hold Ether at all.\n ==== Security Considerations\n There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\n expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\n considered as an intention to spend the allowance in any specific way. The second is that because permits have\n built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\n take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\n generally recommended is:\n ```solidity\n function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\n     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\n     doThing(..., value);\n }\n function doThing(..., uint256 value) public {\n     token.safeTransferFrom(msg.sender, address(this), value);\n     ...\n }\n ```\n Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\n `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\n {SafeERC20-safeTransferFrom}).\n Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\n contracts should have entry points that don't rely on permit."},"fullyImplemented":false,"id":24961,"linearizedBaseContracts":[24961],"name":"IERC20Permit","nameLocation":"2126:12:81","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":24929,"nodeType":"StructuredDocumentation","src":"2145:852:81","text":" @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n given ``owner``'s signed approval.\n IMPORTANT: The same issues {IERC20-approve} has related to transaction\n ordering also applies here.\n Emits an {Approval} event.\n Requirements:\n - `spender` cannot be the zero address.\n - `deadline` must be a timestamp in the future.\n - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n over the EIP712-formatted function arguments.\n - the signature must use ``owner``'s current nonce (see {nonces}).\n For more information on the signature format, see the\n https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n section].\n CAUTION: See Security Considerations above."},"functionSelector":"d505accf","id":24946,"implemented":false,"kind":"function","modifiers":[],"name":"permit","nameLocation":"3011:6:81","nodeType":"FunctionDefinition","parameters":{"id":24944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24931,"mutability":"mutable","name":"owner","nameLocation":"3035:5:81","nodeType":"VariableDeclaration","scope":24946,"src":"3027:13:81","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24930,"name":"address","nodeType":"ElementaryTypeName","src":"3027:7:81","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24933,"mutability":"mutable","name":"spender","nameLocation":"3058:7:81","nodeType":"VariableDeclaration","scope":24946,"src":"3050:15:81","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24932,"name":"address","nodeType":"ElementaryTypeName","src":"3050:7:81","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24935,"mutability":"mutable","name":"value","nameLocation":"3083:5:81","nodeType":"VariableDeclaration","scope":24946,"src":"3075:13:81","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24934,"name":"uint256","nodeType":"ElementaryTypeName","src":"3075:7:81","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24937,"mutability":"mutable","name":"deadline","nameLocation":"3106:8:81","nodeType":"VariableDeclaration","scope":24946,"src":"3098:16:81","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24936,"name":"uint256","nodeType":"ElementaryTypeName","src":"3098:7:81","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24939,"mutability":"mutable","name":"v","nameLocation":"3130:1:81","nodeType":"VariableDeclaration","scope":24946,"src":"3124:7:81","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":24938,"name":"uint8","nodeType":"ElementaryTypeName","src":"3124:5:81","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":24941,"mutability":"mutable","name":"r","nameLocation":"3149:1:81","nodeType":"VariableDeclaration","scope":24946,"src":"3141:9:81","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":24940,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3141:7:81","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":24943,"mutability":"mutable","name":"s","nameLocation":"3168:1:81","nodeType":"VariableDeclaration","scope":24946,"src":"3160:9:81","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":24942,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3160:7:81","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3017:158:81"},"returnParameters":{"id":24945,"nodeType":"ParameterList","parameters":[],"src":"3184:0:81"},"scope":24961,"src":"3002:183:81","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":24947,"nodeType":"StructuredDocumentation","src":"3191:294:81","text":" @dev Returns the current nonce for `owner`. This value must be\n included whenever a signature is generated for {permit}.\n Every successful call to {permit} increases ``owner``'s nonce by one. This\n prevents a signature from being used multiple times."},"functionSelector":"7ecebe00","id":24954,"implemented":false,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"3499:6:81","nodeType":"FunctionDefinition","parameters":{"id":24950,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24949,"mutability":"mutable","name":"owner","nameLocation":"3514:5:81","nodeType":"VariableDeclaration","scope":24954,"src":"3506:13:81","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24948,"name":"address","nodeType":"ElementaryTypeName","src":"3506:7:81","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3505:15:81"},"returnParameters":{"id":24953,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24952,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24954,"src":"3544:7:81","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24951,"name":"uint256","nodeType":"ElementaryTypeName","src":"3544:7:81","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3543:9:81"},"scope":24961,"src":"3490:63:81","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":24955,"nodeType":"StructuredDocumentation","src":"3559:128:81","text":" @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}."},"functionSelector":"3644e515","id":24960,"implemented":false,"kind":"function","modifiers":[],"name":"DOMAIN_SEPARATOR","nameLocation":"3754:16:81","nodeType":"FunctionDefinition","parameters":{"id":24956,"nodeType":"ParameterList","parameters":[],"src":"3770:2:81"},"returnParameters":{"id":24959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24958,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":24960,"src":"3796:7:81","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":24957,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3796:7:81","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3795:9:81"},"scope":24961,"src":"3745:60:81","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":24962,"src":"2116:1691:81","usedErrors":[],"usedEvents":[]}],"src":"123:3685:81"},"id":81},"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","exportedSymbols":{"IERC1363":[22260],"IERC20":[24193],"SafeERC20":[25416]},"id":25417,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":24963,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"115:24:82"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":24965,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25417,"sourceUnit":24194,"src":"141:37:82","symbolAliases":[{"foreign":{"id":24964,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"149:6:82","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1363.sol","file":"../../../interfaces/IERC1363.sol","id":24967,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25417,"sourceUnit":22261,"src":"179:58:82","symbolAliases":[{"foreign":{"id":24966,"name":"IERC1363","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22260,"src":"187:8:82","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"SafeERC20","contractDependencies":[],"contractKind":"library","documentation":{"id":24968,"nodeType":"StructuredDocumentation","src":"239:458:82","text":" @title SafeERC20\n @dev Wrappers around ERC-20 operations that throw on failure (when the token\n contract returns false). Tokens that return no value (and instead revert or\n throw on failure) are also supported, non-reverting calls are assumed to be\n successful.\n To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\n which allows you to call the safe operations as `token.safeTransfer(...)`, etc."},"fullyImplemented":true,"id":25416,"linearizedBaseContracts":[25416],"name":"SafeERC20","nameLocation":"706:9:82","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":24969,"nodeType":"StructuredDocumentation","src":"722:65:82","text":" @dev An operation with an ERC-20 token failed."},"errorSelector":"5274afe7","id":24973,"name":"SafeERC20FailedOperation","nameLocation":"798:24:82","nodeType":"ErrorDefinition","parameters":{"id":24972,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24971,"mutability":"mutable","name":"token","nameLocation":"831:5:82","nodeType":"VariableDeclaration","scope":24973,"src":"823:13:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24970,"name":"address","nodeType":"ElementaryTypeName","src":"823:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"822:15:82"},"src":"792:46:82"},{"documentation":{"id":24974,"nodeType":"StructuredDocumentation","src":"844:71:82","text":" @dev Indicates a failed `decreaseAllowance` request."},"errorSelector":"e570110f","id":24982,"name":"SafeERC20FailedDecreaseAllowance","nameLocation":"926:32:82","nodeType":"ErrorDefinition","parameters":{"id":24981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24976,"mutability":"mutable","name":"spender","nameLocation":"967:7:82","nodeType":"VariableDeclaration","scope":24982,"src":"959:15:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24975,"name":"address","nodeType":"ElementaryTypeName","src":"959:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24978,"mutability":"mutable","name":"currentAllowance","nameLocation":"984:16:82","nodeType":"VariableDeclaration","scope":24982,"src":"976:24:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24977,"name":"uint256","nodeType":"ElementaryTypeName","src":"976:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":24980,"mutability":"mutable","name":"requestedDecrease","nameLocation":"1010:17:82","nodeType":"VariableDeclaration","scope":24982,"src":"1002:25:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24979,"name":"uint256","nodeType":"ElementaryTypeName","src":"1002:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"958:70:82"},"src":"920:109:82"},{"body":{"id":25009,"nodeType":"Block","src":"1291:132:82","statements":[{"condition":{"id":24999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1305:38:82","subExpression":{"arguments":[{"id":24994,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24986,"src":"1320:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},{"id":24995,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24988,"src":"1327:2:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":24996,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24990,"src":"1331:5:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":24997,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1338:4:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":24993,"name":"_safeTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25367,"src":"1306:13:82","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_uint256_$_t_bool_$returns$_t_bool_$","typeString":"function (contract IERC20,address,uint256,bool) returns (bool)"}},"id":24998,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1306:37:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25008,"nodeType":"IfStatement","src":"1301:116:82","trueBody":{"id":25007,"nodeType":"Block","src":"1345:72:82","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":25003,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24986,"src":"1399:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}],"id":25002,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1391:7:82","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25001,"name":"address","nodeType":"ElementaryTypeName","src":"1391:7:82","typeDescriptions":{}}},"id":25004,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1391:14:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25000,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24973,"src":"1366:24:82","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":25005,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1366:40:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25006,"nodeType":"RevertStatement","src":"1359:47:82"}]}}]},"documentation":{"id":24983,"nodeType":"StructuredDocumentation","src":"1035:179:82","text":" @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\n non-reverting calls are assumed to be successful."},"id":25010,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransfer","nameLocation":"1228:12:82","nodeType":"FunctionDefinition","parameters":{"id":24991,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24986,"mutability":"mutable","name":"token","nameLocation":"1248:5:82","nodeType":"VariableDeclaration","scope":25010,"src":"1241:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":24985,"nodeType":"UserDefinedTypeName","pathNode":{"id":24984,"name":"IERC20","nameLocations":["1241:6:82"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"1241:6:82"},"referencedDeclaration":24193,"src":"1241:6:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":24988,"mutability":"mutable","name":"to","nameLocation":"1263:2:82","nodeType":"VariableDeclaration","scope":25010,"src":"1255:10:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":24987,"name":"address","nodeType":"ElementaryTypeName","src":"1255:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":24990,"mutability":"mutable","name":"value","nameLocation":"1275:5:82","nodeType":"VariableDeclaration","scope":25010,"src":"1267:13:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24989,"name":"uint256","nodeType":"ElementaryTypeName","src":"1267:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1240:41:82"},"returnParameters":{"id":24992,"nodeType":"ParameterList","parameters":[],"src":"1291:0:82"},"scope":25416,"src":"1219:204:82","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25040,"nodeType":"Block","src":"1752:142:82","statements":[{"condition":{"id":25030,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1766:48:82","subExpression":{"arguments":[{"id":25024,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25014,"src":"1785:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},{"id":25025,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25016,"src":"1792:4:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25026,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25018,"src":"1798:2:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25027,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25020,"src":"1802:5:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":25028,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1809:4:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":25023,"name":"_safeTransferFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25392,"src":"1767:17:82","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$_t_bool_$","typeString":"function (contract IERC20,address,address,uint256,bool) returns (bool)"}},"id":25029,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1767:47:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25039,"nodeType":"IfStatement","src":"1762:126:82","trueBody":{"id":25038,"nodeType":"Block","src":"1816:72:82","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":25034,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25014,"src":"1870:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}],"id":25033,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1862:7:82","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25032,"name":"address","nodeType":"ElementaryTypeName","src":"1862:7:82","typeDescriptions":{}}},"id":25035,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1862:14:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25031,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24973,"src":"1837:24:82","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":25036,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1837:40:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25037,"nodeType":"RevertStatement","src":"1830:47:82"}]}}]},"documentation":{"id":25011,"nodeType":"StructuredDocumentation","src":"1429:228:82","text":" @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\n calling contract. If `token` returns no value, non-reverting calls are assumed to be successful."},"id":25041,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"1671:16:82","nodeType":"FunctionDefinition","parameters":{"id":25021,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25014,"mutability":"mutable","name":"token","nameLocation":"1695:5:82","nodeType":"VariableDeclaration","scope":25041,"src":"1688:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":25013,"nodeType":"UserDefinedTypeName","pathNode":{"id":25012,"name":"IERC20","nameLocations":["1688:6:82"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"1688:6:82"},"referencedDeclaration":24193,"src":"1688:6:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":25016,"mutability":"mutable","name":"from","nameLocation":"1710:4:82","nodeType":"VariableDeclaration","scope":25041,"src":"1702:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25015,"name":"address","nodeType":"ElementaryTypeName","src":"1702:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25018,"mutability":"mutable","name":"to","nameLocation":"1724:2:82","nodeType":"VariableDeclaration","scope":25041,"src":"1716:10:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25017,"name":"address","nodeType":"ElementaryTypeName","src":"1716:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25020,"mutability":"mutable","name":"value","nameLocation":"1736:5:82","nodeType":"VariableDeclaration","scope":25041,"src":"1728:13:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25019,"name":"uint256","nodeType":"ElementaryTypeName","src":"1728:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1687:55:82"},"returnParameters":{"id":25022,"nodeType":"ParameterList","parameters":[],"src":"1752:0:82"},"scope":25416,"src":"1662:232:82","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25061,"nodeType":"Block","src":"2121:62:82","statements":[{"expression":{"arguments":[{"id":25055,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25045,"src":"2152:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},{"id":25056,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25047,"src":"2159:2:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25057,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25049,"src":"2163:5:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":25058,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2170:5:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":25054,"name":"_safeTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25367,"src":"2138:13:82","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_uint256_$_t_bool_$returns$_t_bool_$","typeString":"function (contract IERC20,address,uint256,bool) returns (bool)"}},"id":25059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2138:38:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":25053,"id":25060,"nodeType":"Return","src":"2131:45:82"}]},"documentation":{"id":25042,"nodeType":"StructuredDocumentation","src":"1900:126:82","text":" @dev Variant of {safeTransfer} that returns a bool instead of reverting if the operation is not successful."},"id":25062,"implemented":true,"kind":"function","modifiers":[],"name":"trySafeTransfer","nameLocation":"2040:15:82","nodeType":"FunctionDefinition","parameters":{"id":25050,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25045,"mutability":"mutable","name":"token","nameLocation":"2063:5:82","nodeType":"VariableDeclaration","scope":25062,"src":"2056:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":25044,"nodeType":"UserDefinedTypeName","pathNode":{"id":25043,"name":"IERC20","nameLocations":["2056:6:82"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"2056:6:82"},"referencedDeclaration":24193,"src":"2056:6:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":25047,"mutability":"mutable","name":"to","nameLocation":"2078:2:82","nodeType":"VariableDeclaration","scope":25062,"src":"2070:10:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25046,"name":"address","nodeType":"ElementaryTypeName","src":"2070:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25049,"mutability":"mutable","name":"value","nameLocation":"2090:5:82","nodeType":"VariableDeclaration","scope":25062,"src":"2082:13:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25048,"name":"uint256","nodeType":"ElementaryTypeName","src":"2082:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2055:41:82"},"returnParameters":{"id":25053,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25052,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25062,"src":"2115:4:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25051,"name":"bool","nodeType":"ElementaryTypeName","src":"2115:4:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2114:6:82"},"scope":25416,"src":"2031:152:82","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25085,"nodeType":"Block","src":"2432:72:82","statements":[{"expression":{"arguments":[{"id":25078,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25066,"src":"2467:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},{"id":25079,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25068,"src":"2474:4:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25080,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25070,"src":"2480:2:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25081,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25072,"src":"2484:5:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":25082,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"2491:5:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":25077,"name":"_safeTransferFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25392,"src":"2449:17:82","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$_t_bool_$","typeString":"function (contract IERC20,address,address,uint256,bool) returns (bool)"}},"id":25083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2449:48:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":25076,"id":25084,"nodeType":"Return","src":"2442:55:82"}]},"documentation":{"id":25063,"nodeType":"StructuredDocumentation","src":"2189:130:82","text":" @dev Variant of {safeTransferFrom} that returns a bool instead of reverting if the operation is not successful."},"id":25086,"implemented":true,"kind":"function","modifiers":[],"name":"trySafeTransferFrom","nameLocation":"2333:19:82","nodeType":"FunctionDefinition","parameters":{"id":25073,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25066,"mutability":"mutable","name":"token","nameLocation":"2360:5:82","nodeType":"VariableDeclaration","scope":25086,"src":"2353:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":25065,"nodeType":"UserDefinedTypeName","pathNode":{"id":25064,"name":"IERC20","nameLocations":["2353:6:82"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"2353:6:82"},"referencedDeclaration":24193,"src":"2353:6:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":25068,"mutability":"mutable","name":"from","nameLocation":"2375:4:82","nodeType":"VariableDeclaration","scope":25086,"src":"2367:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25067,"name":"address","nodeType":"ElementaryTypeName","src":"2367:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25070,"mutability":"mutable","name":"to","nameLocation":"2389:2:82","nodeType":"VariableDeclaration","scope":25086,"src":"2381:10:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25069,"name":"address","nodeType":"ElementaryTypeName","src":"2381:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25072,"mutability":"mutable","name":"value","nameLocation":"2401:5:82","nodeType":"VariableDeclaration","scope":25086,"src":"2393:13:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25071,"name":"uint256","nodeType":"ElementaryTypeName","src":"2393:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2352:55:82"},"returnParameters":{"id":25076,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25075,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25086,"src":"2426:4:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25074,"name":"bool","nodeType":"ElementaryTypeName","src":"2426:4:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2425:6:82"},"scope":25416,"src":"2324:180:82","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25116,"nodeType":"Block","src":"3246:139:82","statements":[{"assignments":[25098],"declarations":[{"constant":false,"id":25098,"mutability":"mutable","name":"oldAllowance","nameLocation":"3264:12:82","nodeType":"VariableDeclaration","scope":25116,"src":"3256:20:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25097,"name":"uint256","nodeType":"ElementaryTypeName","src":"3256:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":25107,"initialValue":{"arguments":[{"arguments":[{"id":25103,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3303:4:82","typeDescriptions":{"typeIdentifier":"t_contract$_SafeERC20_$25416","typeString":"library SafeERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_SafeERC20_$25416","typeString":"library SafeERC20"}],"id":25102,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3295:7:82","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25101,"name":"address","nodeType":"ElementaryTypeName","src":"3295:7:82","typeDescriptions":{}}},"id":25104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3295:13:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25105,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25092,"src":"3310:7:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":25099,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25090,"src":"3279:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"id":25100,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3285:9:82","memberName":"allowance","nodeType":"MemberAccess","referencedDeclaration":24170,"src":"3279:15:82","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view external returns (uint256)"}},"id":25106,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3279:39:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3256:62:82"},{"expression":{"arguments":[{"id":25109,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25090,"src":"3341:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},{"id":25110,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25092,"src":"3348:7:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25111,"name":"oldAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25098,"src":"3357:12:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":25112,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25094,"src":"3372:5:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3357:20:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25108,"name":"forceApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25211,"src":"3328:12:82","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":25114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3328:50:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25115,"nodeType":"ExpressionStatement","src":"3328:50:82"}]},"documentation":{"id":25087,"nodeType":"StructuredDocumentation","src":"2510:645:82","text":" @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n non-reverting calls are assumed to be successful.\n IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the \"client\"\n smart contract uses ERC-7674 to set temporary allowances, then the \"client\" smart contract should avoid using\n this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract\n that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior."},"id":25117,"implemented":true,"kind":"function","modifiers":[],"name":"safeIncreaseAllowance","nameLocation":"3169:21:82","nodeType":"FunctionDefinition","parameters":{"id":25095,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25090,"mutability":"mutable","name":"token","nameLocation":"3198:5:82","nodeType":"VariableDeclaration","scope":25117,"src":"3191:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":25089,"nodeType":"UserDefinedTypeName","pathNode":{"id":25088,"name":"IERC20","nameLocations":["3191:6:82"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"3191:6:82"},"referencedDeclaration":24193,"src":"3191:6:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":25092,"mutability":"mutable","name":"spender","nameLocation":"3213:7:82","nodeType":"VariableDeclaration","scope":25117,"src":"3205:15:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25091,"name":"address","nodeType":"ElementaryTypeName","src":"3205:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25094,"mutability":"mutable","name":"value","nameLocation":"3230:5:82","nodeType":"VariableDeclaration","scope":25117,"src":"3222:13:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25093,"name":"uint256","nodeType":"ElementaryTypeName","src":"3222:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3190:46:82"},"returnParameters":{"id":25096,"nodeType":"ParameterList","parameters":[],"src":"3246:0:82"},"scope":25416,"src":"3160:225:82","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25159,"nodeType":"Block","src":"4151:370:82","statements":[{"id":25158,"nodeType":"UncheckedBlock","src":"4161:354:82","statements":[{"assignments":[25129],"declarations":[{"constant":false,"id":25129,"mutability":"mutable","name":"currentAllowance","nameLocation":"4193:16:82","nodeType":"VariableDeclaration","scope":25158,"src":"4185:24:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25128,"name":"uint256","nodeType":"ElementaryTypeName","src":"4185:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":25138,"initialValue":{"arguments":[{"arguments":[{"id":25134,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4236:4:82","typeDescriptions":{"typeIdentifier":"t_contract$_SafeERC20_$25416","typeString":"library SafeERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_SafeERC20_$25416","typeString":"library SafeERC20"}],"id":25133,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4228:7:82","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25132,"name":"address","nodeType":"ElementaryTypeName","src":"4228:7:82","typeDescriptions":{}}},"id":25135,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4228:13:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25136,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25123,"src":"4243:7:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":25130,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25121,"src":"4212:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"id":25131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4218:9:82","memberName":"allowance","nodeType":"MemberAccess","referencedDeclaration":24170,"src":"4212:15:82","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view external returns (uint256)"}},"id":25137,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4212:39:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"4185:66:82"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25139,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25129,"src":"4269:16:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":25140,"name":"requestedDecrease","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25125,"src":"4288:17:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4269:36:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25149,"nodeType":"IfStatement","src":"4265:160:82","trueBody":{"id":25148,"nodeType":"Block","src":"4307:118:82","statements":[{"errorCall":{"arguments":[{"id":25143,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25123,"src":"4365:7:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25144,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25129,"src":"4374:16:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25145,"name":"requestedDecrease","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25125,"src":"4392:17:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25142,"name":"SafeERC20FailedDecreaseAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24982,"src":"4332:32:82","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":25146,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4332:78:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25147,"nodeType":"RevertStatement","src":"4325:85:82"}]}},{"expression":{"arguments":[{"id":25151,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25121,"src":"4451:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},{"id":25152,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25123,"src":"4458:7:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25153,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25129,"src":"4467:16:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":25154,"name":"requestedDecrease","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25125,"src":"4486:17:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4467:36:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25150,"name":"forceApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25211,"src":"4438:12:82","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":25156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4438:66:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25157,"nodeType":"ExpressionStatement","src":"4438:66:82"}]}]},"documentation":{"id":25118,"nodeType":"StructuredDocumentation","src":"3391:657:82","text":" @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no\n value, non-reverting calls are assumed to be successful.\n IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the \"client\"\n smart contract uses ERC-7674 to set temporary allowances, then the \"client\" smart contract should avoid using\n this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract\n that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior."},"id":25160,"implemented":true,"kind":"function","modifiers":[],"name":"safeDecreaseAllowance","nameLocation":"4062:21:82","nodeType":"FunctionDefinition","parameters":{"id":25126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25121,"mutability":"mutable","name":"token","nameLocation":"4091:5:82","nodeType":"VariableDeclaration","scope":25160,"src":"4084:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":25120,"nodeType":"UserDefinedTypeName","pathNode":{"id":25119,"name":"IERC20","nameLocations":["4084:6:82"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"4084:6:82"},"referencedDeclaration":24193,"src":"4084:6:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":25123,"mutability":"mutable","name":"spender","nameLocation":"4106:7:82","nodeType":"VariableDeclaration","scope":25160,"src":"4098:15:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25122,"name":"address","nodeType":"ElementaryTypeName","src":"4098:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25125,"mutability":"mutable","name":"requestedDecrease","nameLocation":"4123:17:82","nodeType":"VariableDeclaration","scope":25160,"src":"4115:25:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25124,"name":"uint256","nodeType":"ElementaryTypeName","src":"4115:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4083:58:82"},"returnParameters":{"id":25127,"nodeType":"ParameterList","parameters":[],"src":"4151:0:82"},"scope":25416,"src":"4053:468:82","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25210,"nodeType":"Block","src":"5175:290:82","statements":[{"condition":{"id":25177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5189:43:82","subExpression":{"arguments":[{"id":25172,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25164,"src":"5203:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},{"id":25173,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25166,"src":"5210:7:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25174,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25168,"src":"5219:5:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":25175,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5226:5:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":25171,"name":"_safeApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25415,"src":"5190:12:82","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_uint256_$_t_bool_$returns$_t_bool_$","typeString":"function (contract IERC20,address,uint256,bool) returns (bool)"}},"id":25176,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5190:42:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25209,"nodeType":"IfStatement","src":"5185:274:82","trueBody":{"id":25208,"nodeType":"Block","src":"5234:225:82","statements":[{"condition":{"id":25184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5252:38:82","subExpression":{"arguments":[{"id":25179,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25164,"src":"5266:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},{"id":25180,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25166,"src":"5273:7:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":25181,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5282:1:82","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"74727565","id":25182,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5285:4:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":25178,"name":"_safeApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25415,"src":"5253:12:82","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_uint256_$_t_bool_$returns$_t_bool_$","typeString":"function (contract IERC20,address,uint256,bool) returns (bool)"}},"id":25183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5253:37:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25192,"nodeType":"IfStatement","src":"5248:91:82","trueBody":{"errorCall":{"arguments":[{"arguments":[{"id":25188,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25164,"src":"5332:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}],"id":25187,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5324:7:82","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25186,"name":"address","nodeType":"ElementaryTypeName","src":"5324:7:82","typeDescriptions":{}}},"id":25189,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5324:14:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25185,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24973,"src":"5299:24:82","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":25190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5299:40:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25191,"nodeType":"RevertStatement","src":"5292:47:82"}},{"condition":{"id":25199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5357:42:82","subExpression":{"arguments":[{"id":25194,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25164,"src":"5371:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},{"id":25195,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25166,"src":"5378:7:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25196,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25168,"src":"5387:5:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":25197,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5394:4:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":25193,"name":"_safeApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25415,"src":"5358:12:82","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_uint256_$_t_bool_$returns$_t_bool_$","typeString":"function (contract IERC20,address,uint256,bool) returns (bool)"}},"id":25198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5358:41:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25207,"nodeType":"IfStatement","src":"5353:95:82","trueBody":{"errorCall":{"arguments":[{"arguments":[{"id":25203,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25164,"src":"5441:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}],"id":25202,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5433:7:82","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25201,"name":"address","nodeType":"ElementaryTypeName","src":"5433:7:82","typeDescriptions":{}}},"id":25204,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5433:14:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25200,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24973,"src":"5408:24:82","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":25205,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5408:40:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25206,"nodeType":"RevertStatement","src":"5401:47:82"}}]}}]},"documentation":{"id":25161,"nodeType":"StructuredDocumentation","src":"4527:566:82","text":" @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\n non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\n to be set to zero before setting it to a non-zero value, such as USDT.\n NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function\n only sets the \"standard\" allowance. Any temporary allowance will remain active, in addition to the value being\n set here."},"id":25211,"implemented":true,"kind":"function","modifiers":[],"name":"forceApprove","nameLocation":"5107:12:82","nodeType":"FunctionDefinition","parameters":{"id":25169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25164,"mutability":"mutable","name":"token","nameLocation":"5127:5:82","nodeType":"VariableDeclaration","scope":25211,"src":"5120:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":25163,"nodeType":"UserDefinedTypeName","pathNode":{"id":25162,"name":"IERC20","nameLocations":["5120:6:82"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"5120:6:82"},"referencedDeclaration":24193,"src":"5120:6:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":25166,"mutability":"mutable","name":"spender","nameLocation":"5142:7:82","nodeType":"VariableDeclaration","scope":25211,"src":"5134:15:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25165,"name":"address","nodeType":"ElementaryTypeName","src":"5134:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25168,"mutability":"mutable","name":"value","nameLocation":"5159:5:82","nodeType":"VariableDeclaration","scope":25211,"src":"5151:13:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25167,"name":"uint256","nodeType":"ElementaryTypeName","src":"5151:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5119:46:82"},"returnParameters":{"id":25170,"nodeType":"ParameterList","parameters":[],"src":"5175:0:82"},"scope":25416,"src":"5098:367:82","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25253,"nodeType":"Block","src":"5914:219:82","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25228,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":25224,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25217,"src":"5928:2:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":25225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5931:4:82","memberName":"code","nodeType":"MemberAccess","src":"5928:7:82","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":25226,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5936:6:82","memberName":"length","nodeType":"MemberAccess","src":"5928:14:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":25227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5946:1:82","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5928:19:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":25242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6014:39:82","subExpression":{"arguments":[{"id":25238,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25217,"src":"6037:2:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25239,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25219,"src":"6041:5:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25240,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25221,"src":"6048:4:82","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":25236,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25215,"src":"6015:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"}},"id":25237,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6021:15:82","memberName":"transferAndCall","nodeType":"MemberAccess","referencedDeclaration":22211,"src":"6015:21:82","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory) external returns (bool)"}},"id":25241,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6015:38:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25251,"nodeType":"IfStatement","src":"6010:117:82","trueBody":{"id":25250,"nodeType":"Block","src":"6055:72:82","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":25246,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25215,"src":"6109:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"}],"id":25245,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6101:7:82","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25244,"name":"address","nodeType":"ElementaryTypeName","src":"6101:7:82","typeDescriptions":{}}},"id":25247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6101:14:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25243,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24973,"src":"6076:24:82","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":25248,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6076:40:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25249,"nodeType":"RevertStatement","src":"6069:47:82"}]}},"id":25252,"nodeType":"IfStatement","src":"5924:203:82","trueBody":{"id":25235,"nodeType":"Block","src":"5949:55:82","statements":[{"expression":{"arguments":[{"id":25230,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25215,"src":"5976:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"}},{"id":25231,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25217,"src":"5983:2:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25232,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25219,"src":"5987:5:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25229,"name":"safeTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25010,"src":"5963:12:82","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":25233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5963:30:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25234,"nodeType":"ExpressionStatement","src":"5963:30:82"}]}}]},"documentation":{"id":25212,"nodeType":"StructuredDocumentation","src":"5471:335:82","text":" @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no\n code. This can be used to implement an {ERC721}-like safe transfer that relies on {ERC1363} checks when\n targeting contracts.\n Reverts if the returned value is other than `true`."},"id":25254,"implemented":true,"kind":"function","modifiers":[],"name":"transferAndCallRelaxed","nameLocation":"5820:22:82","nodeType":"FunctionDefinition","parameters":{"id":25222,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25215,"mutability":"mutable","name":"token","nameLocation":"5852:5:82","nodeType":"VariableDeclaration","scope":25254,"src":"5843:14:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"},"typeName":{"id":25214,"nodeType":"UserDefinedTypeName","pathNode":{"id":25213,"name":"IERC1363","nameLocations":["5843:8:82"],"nodeType":"IdentifierPath","referencedDeclaration":22260,"src":"5843:8:82"},"referencedDeclaration":22260,"src":"5843:8:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"}},"visibility":"internal"},{"constant":false,"id":25217,"mutability":"mutable","name":"to","nameLocation":"5867:2:82","nodeType":"VariableDeclaration","scope":25254,"src":"5859:10:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25216,"name":"address","nodeType":"ElementaryTypeName","src":"5859:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25219,"mutability":"mutable","name":"value","nameLocation":"5879:5:82","nodeType":"VariableDeclaration","scope":25254,"src":"5871:13:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25218,"name":"uint256","nodeType":"ElementaryTypeName","src":"5871:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25221,"mutability":"mutable","name":"data","nameLocation":"5899:4:82","nodeType":"VariableDeclaration","scope":25254,"src":"5886:17:82","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":25220,"name":"bytes","nodeType":"ElementaryTypeName","src":"5886:5:82","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5842:62:82"},"returnParameters":{"id":25223,"nodeType":"ParameterList","parameters":[],"src":"5914:0:82"},"scope":25416,"src":"5811:322:82","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25300,"nodeType":"Block","src":"6654:239:82","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":25269,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25262,"src":"6668:2:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":25270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6671:4:82","memberName":"code","nodeType":"MemberAccess","src":"6668:7:82","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":25271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6676:6:82","memberName":"length","nodeType":"MemberAccess","src":"6668:14:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":25272,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6686:1:82","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6668:19:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":25289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6764:49:82","subExpression":{"arguments":[{"id":25284,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25260,"src":"6791:4:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25285,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25262,"src":"6797:2:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25286,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25264,"src":"6801:5:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25287,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25266,"src":"6808:4:82","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":25282,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25258,"src":"6765:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"}},"id":25283,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6771:19:82","memberName":"transferFromAndCall","nodeType":"MemberAccess","referencedDeclaration":22237,"src":"6765:25:82","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,address,uint256,bytes memory) external returns (bool)"}},"id":25288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6765:48:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25298,"nodeType":"IfStatement","src":"6760:127:82","trueBody":{"id":25297,"nodeType":"Block","src":"6815:72:82","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":25293,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25258,"src":"6869:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"}],"id":25292,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6861:7:82","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25291,"name":"address","nodeType":"ElementaryTypeName","src":"6861:7:82","typeDescriptions":{}}},"id":25294,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6861:14:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25290,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24973,"src":"6836:24:82","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":25295,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6836:40:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25296,"nodeType":"RevertStatement","src":"6829:47:82"}]}},"id":25299,"nodeType":"IfStatement","src":"6664:223:82","trueBody":{"id":25281,"nodeType":"Block","src":"6689:65:82","statements":[{"expression":{"arguments":[{"id":25275,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25258,"src":"6720:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"}},{"id":25276,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25260,"src":"6727:4:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25277,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25262,"src":"6733:2:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25278,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25264,"src":"6737:5:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25274,"name":"safeTransferFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25041,"src":"6703:16:82","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":25279,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6703:40:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25280,"nodeType":"ExpressionStatement","src":"6703:40:82"}]}}]},"documentation":{"id":25255,"nodeType":"StructuredDocumentation","src":"6139:343:82","text":" @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target\n has no code. This can be used to implement an {ERC721}-like safe transfer that relies on {ERC1363} checks when\n targeting contracts.\n Reverts if the returned value is other than `true`."},"id":25301,"implemented":true,"kind":"function","modifiers":[],"name":"transferFromAndCallRelaxed","nameLocation":"6496:26:82","nodeType":"FunctionDefinition","parameters":{"id":25267,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25258,"mutability":"mutable","name":"token","nameLocation":"6541:5:82","nodeType":"VariableDeclaration","scope":25301,"src":"6532:14:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"},"typeName":{"id":25257,"nodeType":"UserDefinedTypeName","pathNode":{"id":25256,"name":"IERC1363","nameLocations":["6532:8:82"],"nodeType":"IdentifierPath","referencedDeclaration":22260,"src":"6532:8:82"},"referencedDeclaration":22260,"src":"6532:8:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"}},"visibility":"internal"},{"constant":false,"id":25260,"mutability":"mutable","name":"from","nameLocation":"6564:4:82","nodeType":"VariableDeclaration","scope":25301,"src":"6556:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25259,"name":"address","nodeType":"ElementaryTypeName","src":"6556:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25262,"mutability":"mutable","name":"to","nameLocation":"6586:2:82","nodeType":"VariableDeclaration","scope":25301,"src":"6578:10:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25261,"name":"address","nodeType":"ElementaryTypeName","src":"6578:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25264,"mutability":"mutable","name":"value","nameLocation":"6606:5:82","nodeType":"VariableDeclaration","scope":25301,"src":"6598:13:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25263,"name":"uint256","nodeType":"ElementaryTypeName","src":"6598:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25266,"mutability":"mutable","name":"data","nameLocation":"6634:4:82","nodeType":"VariableDeclaration","scope":25301,"src":"6621:17:82","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":25265,"name":"bytes","nodeType":"ElementaryTypeName","src":"6621:5:82","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6522:122:82"},"returnParameters":{"id":25268,"nodeType":"ParameterList","parameters":[],"src":"6654:0:82"},"scope":25416,"src":"6487:406:82","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25343,"nodeType":"Block","src":"7661:218:82","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":25314,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25307,"src":"7675:2:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":25315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7678:4:82","memberName":"code","nodeType":"MemberAccess","src":"7675:7:82","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":25316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7683:6:82","memberName":"length","nodeType":"MemberAccess","src":"7675:14:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":25317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7693:1:82","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7675:19:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":25332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7761:38:82","subExpression":{"arguments":[{"id":25328,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25307,"src":"7783:2:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25329,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25309,"src":"7787:5:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25330,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25311,"src":"7794:4:82","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":25326,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25305,"src":"7762:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"}},"id":25327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7768:14:82","memberName":"approveAndCall","nodeType":"MemberAccess","referencedDeclaration":22259,"src":"7762:20:82","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory) external returns (bool)"}},"id":25331,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7762:37:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25341,"nodeType":"IfStatement","src":"7757:116:82","trueBody":{"id":25340,"nodeType":"Block","src":"7801:72:82","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":25336,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25305,"src":"7855:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"}],"id":25335,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7847:7:82","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25334,"name":"address","nodeType":"ElementaryTypeName","src":"7847:7:82","typeDescriptions":{}}},"id":25337,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7847:14:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25333,"name":"SafeERC20FailedOperation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24973,"src":"7822:24:82","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":25338,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7822:40:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25339,"nodeType":"RevertStatement","src":"7815:47:82"}]}},"id":25342,"nodeType":"IfStatement","src":"7671:202:82","trueBody":{"id":25325,"nodeType":"Block","src":"7696:55:82","statements":[{"expression":{"arguments":[{"id":25320,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25305,"src":"7723:5:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"}},{"id":25321,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25307,"src":"7730:2:82","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25322,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25309,"src":"7734:5:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":25319,"name":"forceApprove","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25211,"src":"7710:12:82","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_uint256_$returns$__$","typeString":"function (contract IERC20,address,uint256)"}},"id":25323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7710:30:82","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25324,"nodeType":"ExpressionStatement","src":"7710:30:82"}]}}]},"documentation":{"id":25302,"nodeType":"StructuredDocumentation","src":"6899:655:82","text":" @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no\n code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when\n targeting contracts.\n NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.\n Oppositely, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}\n once without retrying, and relies on the returned value to be true.\n Reverts if the returned value is other than `true`."},"id":25344,"implemented":true,"kind":"function","modifiers":[],"name":"approveAndCallRelaxed","nameLocation":"7568:21:82","nodeType":"FunctionDefinition","parameters":{"id":25312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25305,"mutability":"mutable","name":"token","nameLocation":"7599:5:82","nodeType":"VariableDeclaration","scope":25344,"src":"7590:14:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"},"typeName":{"id":25304,"nodeType":"UserDefinedTypeName","pathNode":{"id":25303,"name":"IERC1363","nameLocations":["7590:8:82"],"nodeType":"IdentifierPath","referencedDeclaration":22260,"src":"7590:8:82"},"referencedDeclaration":22260,"src":"7590:8:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC1363_$22260","typeString":"contract IERC1363"}},"visibility":"internal"},{"constant":false,"id":25307,"mutability":"mutable","name":"to","nameLocation":"7614:2:82","nodeType":"VariableDeclaration","scope":25344,"src":"7606:10:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25306,"name":"address","nodeType":"ElementaryTypeName","src":"7606:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25309,"mutability":"mutable","name":"value","nameLocation":"7626:5:82","nodeType":"VariableDeclaration","scope":25344,"src":"7618:13:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25308,"name":"uint256","nodeType":"ElementaryTypeName","src":"7618:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25311,"mutability":"mutable","name":"data","nameLocation":"7646:4:82","nodeType":"VariableDeclaration","scope":25344,"src":"7633:17:82","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":25310,"name":"bytes","nodeType":"ElementaryTypeName","src":"7633:5:82","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7589:62:82"},"returnParameters":{"id":25313,"nodeType":"ParameterList","parameters":[],"src":"7661:0:82"},"scope":25416,"src":"7559:320:82","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25366,"nodeType":"Block","src":"8481:1136:82","statements":[{"assignments":[25360],"declarations":[{"constant":false,"id":25360,"mutability":"mutable","name":"selector","nameLocation":"8498:8:82","nodeType":"VariableDeclaration","scope":25366,"src":"8491:15:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":25359,"name":"bytes4","nodeType":"ElementaryTypeName","src":"8491:6:82","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":25364,"initialValue":{"expression":{"expression":{"id":25361,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"8509:6:82","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$24193_$","typeString":"type(contract IERC20)"}},"id":25362,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8516:8:82","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":24160,"src":"8509:15:82","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function IERC20.transfer(address,uint256) returns (bool)"}},"id":25363,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8525:8:82","memberName":"selector","nodeType":"MemberAccess","src":"8509:24:82","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"8491:42:82"},{"AST":{"nativeSrc":"8569:1042:82","nodeType":"YulBlock","src":"8569:1042:82","statements":[{"nativeSrc":"8583:22:82","nodeType":"YulVariableDeclaration","src":"8583:22:82","value":{"arguments":[{"kind":"number","nativeSrc":"8600:4:82","nodeType":"YulLiteral","src":"8600:4:82","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"8594:5:82","nodeType":"YulIdentifier","src":"8594:5:82"},"nativeSrc":"8594:11:82","nodeType":"YulFunctionCall","src":"8594:11:82"},"variables":[{"name":"fmp","nativeSrc":"8587:3:82","nodeType":"YulTypedName","src":"8587:3:82","type":""}]},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8625:4:82","nodeType":"YulLiteral","src":"8625:4:82","type":"","value":"0x00"},{"name":"selector","nativeSrc":"8631:8:82","nodeType":"YulIdentifier","src":"8631:8:82"}],"functionName":{"name":"mstore","nativeSrc":"8618:6:82","nodeType":"YulIdentifier","src":"8618:6:82"},"nativeSrc":"8618:22:82","nodeType":"YulFunctionCall","src":"8618:22:82"},"nativeSrc":"8618:22:82","nodeType":"YulExpressionStatement","src":"8618:22:82"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8660:4:82","nodeType":"YulLiteral","src":"8660:4:82","type":"","value":"0x04"},{"arguments":[{"name":"to","nativeSrc":"8670:2:82","nodeType":"YulIdentifier","src":"8670:2:82"},{"arguments":[{"kind":"number","nativeSrc":"8678:2:82","nodeType":"YulLiteral","src":"8678:2:82","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"8686:1:82","nodeType":"YulLiteral","src":"8686:1:82","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"8682:3:82","nodeType":"YulIdentifier","src":"8682:3:82"},"nativeSrc":"8682:6:82","nodeType":"YulFunctionCall","src":"8682:6:82"}],"functionName":{"name":"shr","nativeSrc":"8674:3:82","nodeType":"YulIdentifier","src":"8674:3:82"},"nativeSrc":"8674:15:82","nodeType":"YulFunctionCall","src":"8674:15:82"}],"functionName":{"name":"and","nativeSrc":"8666:3:82","nodeType":"YulIdentifier","src":"8666:3:82"},"nativeSrc":"8666:24:82","nodeType":"YulFunctionCall","src":"8666:24:82"}],"functionName":{"name":"mstore","nativeSrc":"8653:6:82","nodeType":"YulIdentifier","src":"8653:6:82"},"nativeSrc":"8653:38:82","nodeType":"YulFunctionCall","src":"8653:38:82"},"nativeSrc":"8653:38:82","nodeType":"YulExpressionStatement","src":"8653:38:82"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8711:4:82","nodeType":"YulLiteral","src":"8711:4:82","type":"","value":"0x24"},{"name":"value","nativeSrc":"8717:5:82","nodeType":"YulIdentifier","src":"8717:5:82"}],"functionName":{"name":"mstore","nativeSrc":"8704:6:82","nodeType":"YulIdentifier","src":"8704:6:82"},"nativeSrc":"8704:19:82","nodeType":"YulFunctionCall","src":"8704:19:82"},"nativeSrc":"8704:19:82","nodeType":"YulExpressionStatement","src":"8704:19:82"},{"nativeSrc":"8736:56:82","nodeType":"YulAssignment","src":"8736:56:82","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"8752:3:82","nodeType":"YulIdentifier","src":"8752:3:82"},"nativeSrc":"8752:5:82","nodeType":"YulFunctionCall","src":"8752:5:82"},{"name":"token","nativeSrc":"8759:5:82","nodeType":"YulIdentifier","src":"8759:5:82"},{"kind":"number","nativeSrc":"8766:1:82","nodeType":"YulLiteral","src":"8766:1:82","type":"","value":"0"},{"kind":"number","nativeSrc":"8769:4:82","nodeType":"YulLiteral","src":"8769:4:82","type":"","value":"0x00"},{"kind":"number","nativeSrc":"8775:4:82","nodeType":"YulLiteral","src":"8775:4:82","type":"","value":"0x44"},{"kind":"number","nativeSrc":"8781:4:82","nodeType":"YulLiteral","src":"8781:4:82","type":"","value":"0x00"},{"kind":"number","nativeSrc":"8787:4:82","nodeType":"YulLiteral","src":"8787:4:82","type":"","value":"0x20"}],"functionName":{"name":"call","nativeSrc":"8747:4:82","nodeType":"YulIdentifier","src":"8747:4:82"},"nativeSrc":"8747:45:82","nodeType":"YulFunctionCall","src":"8747:45:82"},"variableNames":[{"name":"success","nativeSrc":"8736:7:82","nodeType":"YulIdentifier","src":"8736:7:82"}]},{"body":{"nativeSrc":"9009:562:82","nodeType":"YulBlock","src":"9009:562:82","statements":[{"body":{"nativeSrc":"9144:133:82","nodeType":"YulBlock","src":"9144:133:82","statements":[{"expression":{"arguments":[{"name":"fmp","nativeSrc":"9181:3:82","nodeType":"YulIdentifier","src":"9181:3:82"},{"kind":"number","nativeSrc":"9186:4:82","nodeType":"YulLiteral","src":"9186:4:82","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"9192:14:82","nodeType":"YulIdentifier","src":"9192:14:82"},"nativeSrc":"9192:16:82","nodeType":"YulFunctionCall","src":"9192:16:82"}],"functionName":{"name":"returndatacopy","nativeSrc":"9166:14:82","nodeType":"YulIdentifier","src":"9166:14:82"},"nativeSrc":"9166:43:82","nodeType":"YulFunctionCall","src":"9166:43:82"},"nativeSrc":"9166:43:82","nodeType":"YulExpressionStatement","src":"9166:43:82"},{"expression":{"arguments":[{"name":"fmp","nativeSrc":"9237:3:82","nodeType":"YulIdentifier","src":"9237:3:82"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"9242:14:82","nodeType":"YulIdentifier","src":"9242:14:82"},"nativeSrc":"9242:16:82","nodeType":"YulFunctionCall","src":"9242:16:82"}],"functionName":{"name":"revert","nativeSrc":"9230:6:82","nodeType":"YulIdentifier","src":"9230:6:82"},"nativeSrc":"9230:29:82","nodeType":"YulFunctionCall","src":"9230:29:82"},"nativeSrc":"9230:29:82","nodeType":"YulExpressionStatement","src":"9230:29:82"}]},"condition":{"arguments":[{"arguments":[{"name":"success","nativeSrc":"9126:7:82","nodeType":"YulIdentifier","src":"9126:7:82"}],"functionName":{"name":"iszero","nativeSrc":"9119:6:82","nodeType":"YulIdentifier","src":"9119:6:82"},"nativeSrc":"9119:15:82","nodeType":"YulFunctionCall","src":"9119:15:82"},{"name":"bubble","nativeSrc":"9136:6:82","nodeType":"YulIdentifier","src":"9136:6:82"}],"functionName":{"name":"and","nativeSrc":"9115:3:82","nodeType":"YulIdentifier","src":"9115:3:82"},"nativeSrc":"9115:28:82","nodeType":"YulFunctionCall","src":"9115:28:82"},"nativeSrc":"9112:165:82","nodeType":"YulIf","src":"9112:165:82"},{"nativeSrc":"9476:81:82","nodeType":"YulAssignment","src":"9476:81:82","value":{"arguments":[{"name":"success","nativeSrc":"9491:7:82","nodeType":"YulIdentifier","src":"9491:7:82"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"9511:14:82","nodeType":"YulIdentifier","src":"9511:14:82"},"nativeSrc":"9511:16:82","nodeType":"YulFunctionCall","src":"9511:16:82"}],"functionName":{"name":"iszero","nativeSrc":"9504:6:82","nodeType":"YulIdentifier","src":"9504:6:82"},"nativeSrc":"9504:24:82","nodeType":"YulFunctionCall","src":"9504:24:82"},{"arguments":[{"arguments":[{"name":"token","nativeSrc":"9545:5:82","nodeType":"YulIdentifier","src":"9545:5:82"}],"functionName":{"name":"extcodesize","nativeSrc":"9533:11:82","nodeType":"YulIdentifier","src":"9533:11:82"},"nativeSrc":"9533:18:82","nodeType":"YulFunctionCall","src":"9533:18:82"},{"kind":"number","nativeSrc":"9553:1:82","nodeType":"YulLiteral","src":"9553:1:82","type":"","value":"0"}],"functionName":{"name":"gt","nativeSrc":"9530:2:82","nodeType":"YulIdentifier","src":"9530:2:82"},"nativeSrc":"9530:25:82","nodeType":"YulFunctionCall","src":"9530:25:82"}],"functionName":{"name":"and","nativeSrc":"9500:3:82","nodeType":"YulIdentifier","src":"9500:3:82"},"nativeSrc":"9500:56:82","nodeType":"YulFunctionCall","src":"9500:56:82"}],"functionName":{"name":"and","nativeSrc":"9487:3:82","nodeType":"YulIdentifier","src":"9487:3:82"},"nativeSrc":"9487:70:82","nodeType":"YulFunctionCall","src":"9487:70:82"},"variableNames":[{"name":"success","nativeSrc":"9476:7:82","nodeType":"YulIdentifier","src":"9476:7:82"}]}]},"condition":{"arguments":[{"arguments":[{"name":"success","nativeSrc":"8979:7:82","nodeType":"YulIdentifier","src":"8979:7:82"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"8997:4:82","nodeType":"YulLiteral","src":"8997:4:82","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"8991:5:82","nodeType":"YulIdentifier","src":"8991:5:82"},"nativeSrc":"8991:11:82","nodeType":"YulFunctionCall","src":"8991:11:82"},{"kind":"number","nativeSrc":"9004:1:82","nodeType":"YulLiteral","src":"9004:1:82","type":"","value":"1"}],"functionName":{"name":"eq","nativeSrc":"8988:2:82","nodeType":"YulIdentifier","src":"8988:2:82"},"nativeSrc":"8988:18:82","nodeType":"YulFunctionCall","src":"8988:18:82"}],"functionName":{"name":"and","nativeSrc":"8975:3:82","nodeType":"YulIdentifier","src":"8975:3:82"},"nativeSrc":"8975:32:82","nodeType":"YulFunctionCall","src":"8975:32:82"}],"functionName":{"name":"iszero","nativeSrc":"8968:6:82","nodeType":"YulIdentifier","src":"8968:6:82"},"nativeSrc":"8968:40:82","nodeType":"YulFunctionCall","src":"8968:40:82"},"nativeSrc":"8965:606:82","nodeType":"YulIf","src":"8965:606:82"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9591:4:82","nodeType":"YulLiteral","src":"9591:4:82","type":"","value":"0x40"},{"name":"fmp","nativeSrc":"9597:3:82","nodeType":"YulIdentifier","src":"9597:3:82"}],"functionName":{"name":"mstore","nativeSrc":"9584:6:82","nodeType":"YulIdentifier","src":"9584:6:82"},"nativeSrc":"9584:17:82","nodeType":"YulFunctionCall","src":"9584:17:82"},"nativeSrc":"9584:17:82","nodeType":"YulExpressionStatement","src":"9584:17:82"}]},"evmVersion":"prague","externalReferences":[{"declaration":25354,"isOffset":false,"isSlot":false,"src":"9136:6:82","valueSize":1},{"declaration":25360,"isOffset":false,"isSlot":false,"src":"8631:8:82","valueSize":1},{"declaration":25357,"isOffset":false,"isSlot":false,"src":"8736:7:82","valueSize":1},{"declaration":25357,"isOffset":false,"isSlot":false,"src":"8979:7:82","valueSize":1},{"declaration":25357,"isOffset":false,"isSlot":false,"src":"9126:7:82","valueSize":1},{"declaration":25357,"isOffset":false,"isSlot":false,"src":"9476:7:82","valueSize":1},{"declaration":25357,"isOffset":false,"isSlot":false,"src":"9491:7:82","valueSize":1},{"declaration":25350,"isOffset":false,"isSlot":false,"src":"8670:2:82","valueSize":1},{"declaration":25348,"isOffset":false,"isSlot":false,"src":"8759:5:82","valueSize":1},{"declaration":25348,"isOffset":false,"isSlot":false,"src":"9545:5:82","valueSize":1},{"declaration":25352,"isOffset":false,"isSlot":false,"src":"8717:5:82","valueSize":1}],"flags":["memory-safe"],"id":25365,"nodeType":"InlineAssembly","src":"8544:1067:82"}]},"documentation":{"id":25345,"nodeType":"StructuredDocumentation","src":"7885:483:82","text":" @dev Imitates a Solidity `token.transfer(to, value)` call, relaxing the requirement on the return value: the\n return value is optional (but if data is returned, it must not be false).\n @param token The token targeted by the call.\n @param to The recipient of the tokens\n @param value The amount of token to transfer\n @param bubble Behavior switch if the transfer call reverts: bubble the revert reason or return a false boolean."},"id":25367,"implemented":true,"kind":"function","modifiers":[],"name":"_safeTransfer","nameLocation":"8382:13:82","nodeType":"FunctionDefinition","parameters":{"id":25355,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25348,"mutability":"mutable","name":"token","nameLocation":"8403:5:82","nodeType":"VariableDeclaration","scope":25367,"src":"8396:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":25347,"nodeType":"UserDefinedTypeName","pathNode":{"id":25346,"name":"IERC20","nameLocations":["8396:6:82"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"8396:6:82"},"referencedDeclaration":24193,"src":"8396:6:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":25350,"mutability":"mutable","name":"to","nameLocation":"8418:2:82","nodeType":"VariableDeclaration","scope":25367,"src":"8410:10:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25349,"name":"address","nodeType":"ElementaryTypeName","src":"8410:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25352,"mutability":"mutable","name":"value","nameLocation":"8430:5:82","nodeType":"VariableDeclaration","scope":25367,"src":"8422:13:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25351,"name":"uint256","nodeType":"ElementaryTypeName","src":"8422:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25354,"mutability":"mutable","name":"bubble","nameLocation":"8442:6:82","nodeType":"VariableDeclaration","scope":25367,"src":"8437:11:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25353,"name":"bool","nodeType":"ElementaryTypeName","src":"8437:4:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8395:54:82"},"returnParameters":{"id":25358,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25357,"mutability":"mutable","name":"success","nameLocation":"8472:7:82","nodeType":"VariableDeclaration","scope":25367,"src":"8467:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25356,"name":"bool","nodeType":"ElementaryTypeName","src":"8467:4:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8466:14:82"},"scope":25416,"src":"8373:1244:82","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":25391,"nodeType":"Block","src":"10337:1221:82","statements":[{"assignments":[25385],"declarations":[{"constant":false,"id":25385,"mutability":"mutable","name":"selector","nameLocation":"10354:8:82","nodeType":"VariableDeclaration","scope":25391,"src":"10347:15:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":25384,"name":"bytes4","nodeType":"ElementaryTypeName","src":"10347:6:82","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":25389,"initialValue":{"expression":{"expression":{"id":25386,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"10365:6:82","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$24193_$","typeString":"type(contract IERC20)"}},"id":25387,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10372:12:82","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":24192,"src":"10365:19:82","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function IERC20.transferFrom(address,address,uint256) returns (bool)"}},"id":25388,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10385:8:82","memberName":"selector","nodeType":"MemberAccess","src":"10365:28:82","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"10347:46:82"},{"AST":{"nativeSrc":"10429:1123:82","nodeType":"YulBlock","src":"10429:1123:82","statements":[{"nativeSrc":"10443:22:82","nodeType":"YulVariableDeclaration","src":"10443:22:82","value":{"arguments":[{"kind":"number","nativeSrc":"10460:4:82","nodeType":"YulLiteral","src":"10460:4:82","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"10454:5:82","nodeType":"YulIdentifier","src":"10454:5:82"},"nativeSrc":"10454:11:82","nodeType":"YulFunctionCall","src":"10454:11:82"},"variables":[{"name":"fmp","nativeSrc":"10447:3:82","nodeType":"YulTypedName","src":"10447:3:82","type":""}]},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10485:4:82","nodeType":"YulLiteral","src":"10485:4:82","type":"","value":"0x00"},{"name":"selector","nativeSrc":"10491:8:82","nodeType":"YulIdentifier","src":"10491:8:82"}],"functionName":{"name":"mstore","nativeSrc":"10478:6:82","nodeType":"YulIdentifier","src":"10478:6:82"},"nativeSrc":"10478:22:82","nodeType":"YulFunctionCall","src":"10478:22:82"},"nativeSrc":"10478:22:82","nodeType":"YulExpressionStatement","src":"10478:22:82"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10520:4:82","nodeType":"YulLiteral","src":"10520:4:82","type":"","value":"0x04"},{"arguments":[{"name":"from","nativeSrc":"10530:4:82","nodeType":"YulIdentifier","src":"10530:4:82"},{"arguments":[{"kind":"number","nativeSrc":"10540:2:82","nodeType":"YulLiteral","src":"10540:2:82","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"10548:1:82","nodeType":"YulLiteral","src":"10548:1:82","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10544:3:82","nodeType":"YulIdentifier","src":"10544:3:82"},"nativeSrc":"10544:6:82","nodeType":"YulFunctionCall","src":"10544:6:82"}],"functionName":{"name":"shr","nativeSrc":"10536:3:82","nodeType":"YulIdentifier","src":"10536:3:82"},"nativeSrc":"10536:15:82","nodeType":"YulFunctionCall","src":"10536:15:82"}],"functionName":{"name":"and","nativeSrc":"10526:3:82","nodeType":"YulIdentifier","src":"10526:3:82"},"nativeSrc":"10526:26:82","nodeType":"YulFunctionCall","src":"10526:26:82"}],"functionName":{"name":"mstore","nativeSrc":"10513:6:82","nodeType":"YulIdentifier","src":"10513:6:82"},"nativeSrc":"10513:40:82","nodeType":"YulFunctionCall","src":"10513:40:82"},"nativeSrc":"10513:40:82","nodeType":"YulExpressionStatement","src":"10513:40:82"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10573:4:82","nodeType":"YulLiteral","src":"10573:4:82","type":"","value":"0x24"},{"arguments":[{"name":"to","nativeSrc":"10583:2:82","nodeType":"YulIdentifier","src":"10583:2:82"},{"arguments":[{"kind":"number","nativeSrc":"10591:2:82","nodeType":"YulLiteral","src":"10591:2:82","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"10599:1:82","nodeType":"YulLiteral","src":"10599:1:82","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10595:3:82","nodeType":"YulIdentifier","src":"10595:3:82"},"nativeSrc":"10595:6:82","nodeType":"YulFunctionCall","src":"10595:6:82"}],"functionName":{"name":"shr","nativeSrc":"10587:3:82","nodeType":"YulIdentifier","src":"10587:3:82"},"nativeSrc":"10587:15:82","nodeType":"YulFunctionCall","src":"10587:15:82"}],"functionName":{"name":"and","nativeSrc":"10579:3:82","nodeType":"YulIdentifier","src":"10579:3:82"},"nativeSrc":"10579:24:82","nodeType":"YulFunctionCall","src":"10579:24:82"}],"functionName":{"name":"mstore","nativeSrc":"10566:6:82","nodeType":"YulIdentifier","src":"10566:6:82"},"nativeSrc":"10566:38:82","nodeType":"YulFunctionCall","src":"10566:38:82"},"nativeSrc":"10566:38:82","nodeType":"YulExpressionStatement","src":"10566:38:82"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10624:4:82","nodeType":"YulLiteral","src":"10624:4:82","type":"","value":"0x44"},{"name":"value","nativeSrc":"10630:5:82","nodeType":"YulIdentifier","src":"10630:5:82"}],"functionName":{"name":"mstore","nativeSrc":"10617:6:82","nodeType":"YulIdentifier","src":"10617:6:82"},"nativeSrc":"10617:19:82","nodeType":"YulFunctionCall","src":"10617:19:82"},"nativeSrc":"10617:19:82","nodeType":"YulExpressionStatement","src":"10617:19:82"},{"nativeSrc":"10649:56:82","nodeType":"YulAssignment","src":"10649:56:82","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"10665:3:82","nodeType":"YulIdentifier","src":"10665:3:82"},"nativeSrc":"10665:5:82","nodeType":"YulFunctionCall","src":"10665:5:82"},{"name":"token","nativeSrc":"10672:5:82","nodeType":"YulIdentifier","src":"10672:5:82"},{"kind":"number","nativeSrc":"10679:1:82","nodeType":"YulLiteral","src":"10679:1:82","type":"","value":"0"},{"kind":"number","nativeSrc":"10682:4:82","nodeType":"YulLiteral","src":"10682:4:82","type":"","value":"0x00"},{"kind":"number","nativeSrc":"10688:4:82","nodeType":"YulLiteral","src":"10688:4:82","type":"","value":"0x64"},{"kind":"number","nativeSrc":"10694:4:82","nodeType":"YulLiteral","src":"10694:4:82","type":"","value":"0x00"},{"kind":"number","nativeSrc":"10700:4:82","nodeType":"YulLiteral","src":"10700:4:82","type":"","value":"0x20"}],"functionName":{"name":"call","nativeSrc":"10660:4:82","nodeType":"YulIdentifier","src":"10660:4:82"},"nativeSrc":"10660:45:82","nodeType":"YulFunctionCall","src":"10660:45:82"},"variableNames":[{"name":"success","nativeSrc":"10649:7:82","nodeType":"YulIdentifier","src":"10649:7:82"}]},{"body":{"nativeSrc":"10922:562:82","nodeType":"YulBlock","src":"10922:562:82","statements":[{"body":{"nativeSrc":"11057:133:82","nodeType":"YulBlock","src":"11057:133:82","statements":[{"expression":{"arguments":[{"name":"fmp","nativeSrc":"11094:3:82","nodeType":"YulIdentifier","src":"11094:3:82"},{"kind":"number","nativeSrc":"11099:4:82","nodeType":"YulLiteral","src":"11099:4:82","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"11105:14:82","nodeType":"YulIdentifier","src":"11105:14:82"},"nativeSrc":"11105:16:82","nodeType":"YulFunctionCall","src":"11105:16:82"}],"functionName":{"name":"returndatacopy","nativeSrc":"11079:14:82","nodeType":"YulIdentifier","src":"11079:14:82"},"nativeSrc":"11079:43:82","nodeType":"YulFunctionCall","src":"11079:43:82"},"nativeSrc":"11079:43:82","nodeType":"YulExpressionStatement","src":"11079:43:82"},{"expression":{"arguments":[{"name":"fmp","nativeSrc":"11150:3:82","nodeType":"YulIdentifier","src":"11150:3:82"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"11155:14:82","nodeType":"YulIdentifier","src":"11155:14:82"},"nativeSrc":"11155:16:82","nodeType":"YulFunctionCall","src":"11155:16:82"}],"functionName":{"name":"revert","nativeSrc":"11143:6:82","nodeType":"YulIdentifier","src":"11143:6:82"},"nativeSrc":"11143:29:82","nodeType":"YulFunctionCall","src":"11143:29:82"},"nativeSrc":"11143:29:82","nodeType":"YulExpressionStatement","src":"11143:29:82"}]},"condition":{"arguments":[{"arguments":[{"name":"success","nativeSrc":"11039:7:82","nodeType":"YulIdentifier","src":"11039:7:82"}],"functionName":{"name":"iszero","nativeSrc":"11032:6:82","nodeType":"YulIdentifier","src":"11032:6:82"},"nativeSrc":"11032:15:82","nodeType":"YulFunctionCall","src":"11032:15:82"},{"name":"bubble","nativeSrc":"11049:6:82","nodeType":"YulIdentifier","src":"11049:6:82"}],"functionName":{"name":"and","nativeSrc":"11028:3:82","nodeType":"YulIdentifier","src":"11028:3:82"},"nativeSrc":"11028:28:82","nodeType":"YulFunctionCall","src":"11028:28:82"},"nativeSrc":"11025:165:82","nodeType":"YulIf","src":"11025:165:82"},{"nativeSrc":"11389:81:82","nodeType":"YulAssignment","src":"11389:81:82","value":{"arguments":[{"name":"success","nativeSrc":"11404:7:82","nodeType":"YulIdentifier","src":"11404:7:82"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"11424:14:82","nodeType":"YulIdentifier","src":"11424:14:82"},"nativeSrc":"11424:16:82","nodeType":"YulFunctionCall","src":"11424:16:82"}],"functionName":{"name":"iszero","nativeSrc":"11417:6:82","nodeType":"YulIdentifier","src":"11417:6:82"},"nativeSrc":"11417:24:82","nodeType":"YulFunctionCall","src":"11417:24:82"},{"arguments":[{"arguments":[{"name":"token","nativeSrc":"11458:5:82","nodeType":"YulIdentifier","src":"11458:5:82"}],"functionName":{"name":"extcodesize","nativeSrc":"11446:11:82","nodeType":"YulIdentifier","src":"11446:11:82"},"nativeSrc":"11446:18:82","nodeType":"YulFunctionCall","src":"11446:18:82"},{"kind":"number","nativeSrc":"11466:1:82","nodeType":"YulLiteral","src":"11466:1:82","type":"","value":"0"}],"functionName":{"name":"gt","nativeSrc":"11443:2:82","nodeType":"YulIdentifier","src":"11443:2:82"},"nativeSrc":"11443:25:82","nodeType":"YulFunctionCall","src":"11443:25:82"}],"functionName":{"name":"and","nativeSrc":"11413:3:82","nodeType":"YulIdentifier","src":"11413:3:82"},"nativeSrc":"11413:56:82","nodeType":"YulFunctionCall","src":"11413:56:82"}],"functionName":{"name":"and","nativeSrc":"11400:3:82","nodeType":"YulIdentifier","src":"11400:3:82"},"nativeSrc":"11400:70:82","nodeType":"YulFunctionCall","src":"11400:70:82"},"variableNames":[{"name":"success","nativeSrc":"11389:7:82","nodeType":"YulIdentifier","src":"11389:7:82"}]}]},"condition":{"arguments":[{"arguments":[{"name":"success","nativeSrc":"10892:7:82","nodeType":"YulIdentifier","src":"10892:7:82"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"10910:4:82","nodeType":"YulLiteral","src":"10910:4:82","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"10904:5:82","nodeType":"YulIdentifier","src":"10904:5:82"},"nativeSrc":"10904:11:82","nodeType":"YulFunctionCall","src":"10904:11:82"},{"kind":"number","nativeSrc":"10917:1:82","nodeType":"YulLiteral","src":"10917:1:82","type":"","value":"1"}],"functionName":{"name":"eq","nativeSrc":"10901:2:82","nodeType":"YulIdentifier","src":"10901:2:82"},"nativeSrc":"10901:18:82","nodeType":"YulFunctionCall","src":"10901:18:82"}],"functionName":{"name":"and","nativeSrc":"10888:3:82","nodeType":"YulIdentifier","src":"10888:3:82"},"nativeSrc":"10888:32:82","nodeType":"YulFunctionCall","src":"10888:32:82"}],"functionName":{"name":"iszero","nativeSrc":"10881:6:82","nodeType":"YulIdentifier","src":"10881:6:82"},"nativeSrc":"10881:40:82","nodeType":"YulFunctionCall","src":"10881:40:82"},"nativeSrc":"10878:606:82","nodeType":"YulIf","src":"10878:606:82"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11504:4:82","nodeType":"YulLiteral","src":"11504:4:82","type":"","value":"0x40"},{"name":"fmp","nativeSrc":"11510:3:82","nodeType":"YulIdentifier","src":"11510:3:82"}],"functionName":{"name":"mstore","nativeSrc":"11497:6:82","nodeType":"YulIdentifier","src":"11497:6:82"},"nativeSrc":"11497:17:82","nodeType":"YulFunctionCall","src":"11497:17:82"},"nativeSrc":"11497:17:82","nodeType":"YulExpressionStatement","src":"11497:17:82"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11534:4:82","nodeType":"YulLiteral","src":"11534:4:82","type":"","value":"0x60"},{"kind":"number","nativeSrc":"11540:1:82","nodeType":"YulLiteral","src":"11540:1:82","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"11527:6:82","nodeType":"YulIdentifier","src":"11527:6:82"},"nativeSrc":"11527:15:82","nodeType":"YulFunctionCall","src":"11527:15:82"},"nativeSrc":"11527:15:82","nodeType":"YulExpressionStatement","src":"11527:15:82"}]},"evmVersion":"prague","externalReferences":[{"declaration":25379,"isOffset":false,"isSlot":false,"src":"11049:6:82","valueSize":1},{"declaration":25373,"isOffset":false,"isSlot":false,"src":"10530:4:82","valueSize":1},{"declaration":25385,"isOffset":false,"isSlot":false,"src":"10491:8:82","valueSize":1},{"declaration":25382,"isOffset":false,"isSlot":false,"src":"10649:7:82","valueSize":1},{"declaration":25382,"isOffset":false,"isSlot":false,"src":"10892:7:82","valueSize":1},{"declaration":25382,"isOffset":false,"isSlot":false,"src":"11039:7:82","valueSize":1},{"declaration":25382,"isOffset":false,"isSlot":false,"src":"11389:7:82","valueSize":1},{"declaration":25382,"isOffset":false,"isSlot":false,"src":"11404:7:82","valueSize":1},{"declaration":25375,"isOffset":false,"isSlot":false,"src":"10583:2:82","valueSize":1},{"declaration":25371,"isOffset":false,"isSlot":false,"src":"10672:5:82","valueSize":1},{"declaration":25371,"isOffset":false,"isSlot":false,"src":"11458:5:82","valueSize":1},{"declaration":25377,"isOffset":false,"isSlot":false,"src":"10630:5:82","valueSize":1}],"flags":["memory-safe"],"id":25390,"nodeType":"InlineAssembly","src":"10404:1148:82"}]},"documentation":{"id":25368,"nodeType":"StructuredDocumentation","src":"9623:537:82","text":" @dev Imitates a Solidity `token.transferFrom(from, to, value)` call, relaxing the requirement on the return\n value: the return value is optional (but if data is returned, it must not be false).\n @param token The token targeted by the call.\n @param from The sender of the tokens\n @param to The recipient of the tokens\n @param value The amount of token to transfer\n @param bubble Behavior switch if the transfer call reverts: bubble the revert reason or return a false boolean."},"id":25392,"implemented":true,"kind":"function","modifiers":[],"name":"_safeTransferFrom","nameLocation":"10174:17:82","nodeType":"FunctionDefinition","parameters":{"id":25380,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25371,"mutability":"mutable","name":"token","nameLocation":"10208:5:82","nodeType":"VariableDeclaration","scope":25392,"src":"10201:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":25370,"nodeType":"UserDefinedTypeName","pathNode":{"id":25369,"name":"IERC20","nameLocations":["10201:6:82"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"10201:6:82"},"referencedDeclaration":24193,"src":"10201:6:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":25373,"mutability":"mutable","name":"from","nameLocation":"10231:4:82","nodeType":"VariableDeclaration","scope":25392,"src":"10223:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25372,"name":"address","nodeType":"ElementaryTypeName","src":"10223:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25375,"mutability":"mutable","name":"to","nameLocation":"10253:2:82","nodeType":"VariableDeclaration","scope":25392,"src":"10245:10:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25374,"name":"address","nodeType":"ElementaryTypeName","src":"10245:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25377,"mutability":"mutable","name":"value","nameLocation":"10273:5:82","nodeType":"VariableDeclaration","scope":25392,"src":"10265:13:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25376,"name":"uint256","nodeType":"ElementaryTypeName","src":"10265:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25379,"mutability":"mutable","name":"bubble","nameLocation":"10293:6:82","nodeType":"VariableDeclaration","scope":25392,"src":"10288:11:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25378,"name":"bool","nodeType":"ElementaryTypeName","src":"10288:4:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10191:114:82"},"returnParameters":{"id":25383,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25382,"mutability":"mutable","name":"success","nameLocation":"10328:7:82","nodeType":"VariableDeclaration","scope":25392,"src":"10323:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25381,"name":"bool","nodeType":"ElementaryTypeName","src":"10323:4:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10322:14:82"},"scope":25416,"src":"10165:1393:82","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":25414,"nodeType":"Block","src":"12171:1140:82","statements":[{"assignments":[25408],"declarations":[{"constant":false,"id":25408,"mutability":"mutable","name":"selector","nameLocation":"12188:8:82","nodeType":"VariableDeclaration","scope":25414,"src":"12181:15:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":25407,"name":"bytes4","nodeType":"ElementaryTypeName","src":"12181:6:82","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":25412,"initialValue":{"expression":{"expression":{"id":25409,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"12199:6:82","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$24193_$","typeString":"type(contract IERC20)"}},"id":25410,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12206:7:82","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":24180,"src":"12199:14:82","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function IERC20.approve(address,uint256) returns (bool)"}},"id":25411,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12214:8:82","memberName":"selector","nodeType":"MemberAccess","src":"12199:23:82","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"12181:41:82"},{"AST":{"nativeSrc":"12258:1047:82","nodeType":"YulBlock","src":"12258:1047:82","statements":[{"nativeSrc":"12272:22:82","nodeType":"YulVariableDeclaration","src":"12272:22:82","value":{"arguments":[{"kind":"number","nativeSrc":"12289:4:82","nodeType":"YulLiteral","src":"12289:4:82","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"12283:5:82","nodeType":"YulIdentifier","src":"12283:5:82"},"nativeSrc":"12283:11:82","nodeType":"YulFunctionCall","src":"12283:11:82"},"variables":[{"name":"fmp","nativeSrc":"12276:3:82","nodeType":"YulTypedName","src":"12276:3:82","type":""}]},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12314:4:82","nodeType":"YulLiteral","src":"12314:4:82","type":"","value":"0x00"},{"name":"selector","nativeSrc":"12320:8:82","nodeType":"YulIdentifier","src":"12320:8:82"}],"functionName":{"name":"mstore","nativeSrc":"12307:6:82","nodeType":"YulIdentifier","src":"12307:6:82"},"nativeSrc":"12307:22:82","nodeType":"YulFunctionCall","src":"12307:22:82"},"nativeSrc":"12307:22:82","nodeType":"YulExpressionStatement","src":"12307:22:82"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12349:4:82","nodeType":"YulLiteral","src":"12349:4:82","type":"","value":"0x04"},{"arguments":[{"name":"spender","nativeSrc":"12359:7:82","nodeType":"YulIdentifier","src":"12359:7:82"},{"arguments":[{"kind":"number","nativeSrc":"12372:2:82","nodeType":"YulLiteral","src":"12372:2:82","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"12380:1:82","nodeType":"YulLiteral","src":"12380:1:82","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"12376:3:82","nodeType":"YulIdentifier","src":"12376:3:82"},"nativeSrc":"12376:6:82","nodeType":"YulFunctionCall","src":"12376:6:82"}],"functionName":{"name":"shr","nativeSrc":"12368:3:82","nodeType":"YulIdentifier","src":"12368:3:82"},"nativeSrc":"12368:15:82","nodeType":"YulFunctionCall","src":"12368:15:82"}],"functionName":{"name":"and","nativeSrc":"12355:3:82","nodeType":"YulIdentifier","src":"12355:3:82"},"nativeSrc":"12355:29:82","nodeType":"YulFunctionCall","src":"12355:29:82"}],"functionName":{"name":"mstore","nativeSrc":"12342:6:82","nodeType":"YulIdentifier","src":"12342:6:82"},"nativeSrc":"12342:43:82","nodeType":"YulFunctionCall","src":"12342:43:82"},"nativeSrc":"12342:43:82","nodeType":"YulExpressionStatement","src":"12342:43:82"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12405:4:82","nodeType":"YulLiteral","src":"12405:4:82","type":"","value":"0x24"},{"name":"value","nativeSrc":"12411:5:82","nodeType":"YulIdentifier","src":"12411:5:82"}],"functionName":{"name":"mstore","nativeSrc":"12398:6:82","nodeType":"YulIdentifier","src":"12398:6:82"},"nativeSrc":"12398:19:82","nodeType":"YulFunctionCall","src":"12398:19:82"},"nativeSrc":"12398:19:82","nodeType":"YulExpressionStatement","src":"12398:19:82"},{"nativeSrc":"12430:56:82","nodeType":"YulAssignment","src":"12430:56:82","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"12446:3:82","nodeType":"YulIdentifier","src":"12446:3:82"},"nativeSrc":"12446:5:82","nodeType":"YulFunctionCall","src":"12446:5:82"},{"name":"token","nativeSrc":"12453:5:82","nodeType":"YulIdentifier","src":"12453:5:82"},{"kind":"number","nativeSrc":"12460:1:82","nodeType":"YulLiteral","src":"12460:1:82","type":"","value":"0"},{"kind":"number","nativeSrc":"12463:4:82","nodeType":"YulLiteral","src":"12463:4:82","type":"","value":"0x00"},{"kind":"number","nativeSrc":"12469:4:82","nodeType":"YulLiteral","src":"12469:4:82","type":"","value":"0x44"},{"kind":"number","nativeSrc":"12475:4:82","nodeType":"YulLiteral","src":"12475:4:82","type":"","value":"0x00"},{"kind":"number","nativeSrc":"12481:4:82","nodeType":"YulLiteral","src":"12481:4:82","type":"","value":"0x20"}],"functionName":{"name":"call","nativeSrc":"12441:4:82","nodeType":"YulIdentifier","src":"12441:4:82"},"nativeSrc":"12441:45:82","nodeType":"YulFunctionCall","src":"12441:45:82"},"variableNames":[{"name":"success","nativeSrc":"12430:7:82","nodeType":"YulIdentifier","src":"12430:7:82"}]},{"body":{"nativeSrc":"12703:562:82","nodeType":"YulBlock","src":"12703:562:82","statements":[{"body":{"nativeSrc":"12838:133:82","nodeType":"YulBlock","src":"12838:133:82","statements":[{"expression":{"arguments":[{"name":"fmp","nativeSrc":"12875:3:82","nodeType":"YulIdentifier","src":"12875:3:82"},{"kind":"number","nativeSrc":"12880:4:82","nodeType":"YulLiteral","src":"12880:4:82","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"12886:14:82","nodeType":"YulIdentifier","src":"12886:14:82"},"nativeSrc":"12886:16:82","nodeType":"YulFunctionCall","src":"12886:16:82"}],"functionName":{"name":"returndatacopy","nativeSrc":"12860:14:82","nodeType":"YulIdentifier","src":"12860:14:82"},"nativeSrc":"12860:43:82","nodeType":"YulFunctionCall","src":"12860:43:82"},"nativeSrc":"12860:43:82","nodeType":"YulExpressionStatement","src":"12860:43:82"},{"expression":{"arguments":[{"name":"fmp","nativeSrc":"12931:3:82","nodeType":"YulIdentifier","src":"12931:3:82"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"12936:14:82","nodeType":"YulIdentifier","src":"12936:14:82"},"nativeSrc":"12936:16:82","nodeType":"YulFunctionCall","src":"12936:16:82"}],"functionName":{"name":"revert","nativeSrc":"12924:6:82","nodeType":"YulIdentifier","src":"12924:6:82"},"nativeSrc":"12924:29:82","nodeType":"YulFunctionCall","src":"12924:29:82"},"nativeSrc":"12924:29:82","nodeType":"YulExpressionStatement","src":"12924:29:82"}]},"condition":{"arguments":[{"arguments":[{"name":"success","nativeSrc":"12820:7:82","nodeType":"YulIdentifier","src":"12820:7:82"}],"functionName":{"name":"iszero","nativeSrc":"12813:6:82","nodeType":"YulIdentifier","src":"12813:6:82"},"nativeSrc":"12813:15:82","nodeType":"YulFunctionCall","src":"12813:15:82"},{"name":"bubble","nativeSrc":"12830:6:82","nodeType":"YulIdentifier","src":"12830:6:82"}],"functionName":{"name":"and","nativeSrc":"12809:3:82","nodeType":"YulIdentifier","src":"12809:3:82"},"nativeSrc":"12809:28:82","nodeType":"YulFunctionCall","src":"12809:28:82"},"nativeSrc":"12806:165:82","nodeType":"YulIf","src":"12806:165:82"},{"nativeSrc":"13170:81:82","nodeType":"YulAssignment","src":"13170:81:82","value":{"arguments":[{"name":"success","nativeSrc":"13185:7:82","nodeType":"YulIdentifier","src":"13185:7:82"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"13205:14:82","nodeType":"YulIdentifier","src":"13205:14:82"},"nativeSrc":"13205:16:82","nodeType":"YulFunctionCall","src":"13205:16:82"}],"functionName":{"name":"iszero","nativeSrc":"13198:6:82","nodeType":"YulIdentifier","src":"13198:6:82"},"nativeSrc":"13198:24:82","nodeType":"YulFunctionCall","src":"13198:24:82"},{"arguments":[{"arguments":[{"name":"token","nativeSrc":"13239:5:82","nodeType":"YulIdentifier","src":"13239:5:82"}],"functionName":{"name":"extcodesize","nativeSrc":"13227:11:82","nodeType":"YulIdentifier","src":"13227:11:82"},"nativeSrc":"13227:18:82","nodeType":"YulFunctionCall","src":"13227:18:82"},{"kind":"number","nativeSrc":"13247:1:82","nodeType":"YulLiteral","src":"13247:1:82","type":"","value":"0"}],"functionName":{"name":"gt","nativeSrc":"13224:2:82","nodeType":"YulIdentifier","src":"13224:2:82"},"nativeSrc":"13224:25:82","nodeType":"YulFunctionCall","src":"13224:25:82"}],"functionName":{"name":"and","nativeSrc":"13194:3:82","nodeType":"YulIdentifier","src":"13194:3:82"},"nativeSrc":"13194:56:82","nodeType":"YulFunctionCall","src":"13194:56:82"}],"functionName":{"name":"and","nativeSrc":"13181:3:82","nodeType":"YulIdentifier","src":"13181:3:82"},"nativeSrc":"13181:70:82","nodeType":"YulFunctionCall","src":"13181:70:82"},"variableNames":[{"name":"success","nativeSrc":"13170:7:82","nodeType":"YulIdentifier","src":"13170:7:82"}]}]},"condition":{"arguments":[{"arguments":[{"name":"success","nativeSrc":"12673:7:82","nodeType":"YulIdentifier","src":"12673:7:82"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12691:4:82","nodeType":"YulLiteral","src":"12691:4:82","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"12685:5:82","nodeType":"YulIdentifier","src":"12685:5:82"},"nativeSrc":"12685:11:82","nodeType":"YulFunctionCall","src":"12685:11:82"},{"kind":"number","nativeSrc":"12698:1:82","nodeType":"YulLiteral","src":"12698:1:82","type":"","value":"1"}],"functionName":{"name":"eq","nativeSrc":"12682:2:82","nodeType":"YulIdentifier","src":"12682:2:82"},"nativeSrc":"12682:18:82","nodeType":"YulFunctionCall","src":"12682:18:82"}],"functionName":{"name":"and","nativeSrc":"12669:3:82","nodeType":"YulIdentifier","src":"12669:3:82"},"nativeSrc":"12669:32:82","nodeType":"YulFunctionCall","src":"12669:32:82"}],"functionName":{"name":"iszero","nativeSrc":"12662:6:82","nodeType":"YulIdentifier","src":"12662:6:82"},"nativeSrc":"12662:40:82","nodeType":"YulFunctionCall","src":"12662:40:82"},"nativeSrc":"12659:606:82","nodeType":"YulIf","src":"12659:606:82"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"13285:4:82","nodeType":"YulLiteral","src":"13285:4:82","type":"","value":"0x40"},{"name":"fmp","nativeSrc":"13291:3:82","nodeType":"YulIdentifier","src":"13291:3:82"}],"functionName":{"name":"mstore","nativeSrc":"13278:6:82","nodeType":"YulIdentifier","src":"13278:6:82"},"nativeSrc":"13278:17:82","nodeType":"YulFunctionCall","src":"13278:17:82"},"nativeSrc":"13278:17:82","nodeType":"YulExpressionStatement","src":"13278:17:82"}]},"evmVersion":"prague","externalReferences":[{"declaration":25402,"isOffset":false,"isSlot":false,"src":"12830:6:82","valueSize":1},{"declaration":25408,"isOffset":false,"isSlot":false,"src":"12320:8:82","valueSize":1},{"declaration":25398,"isOffset":false,"isSlot":false,"src":"12359:7:82","valueSize":1},{"declaration":25405,"isOffset":false,"isSlot":false,"src":"12430:7:82","valueSize":1},{"declaration":25405,"isOffset":false,"isSlot":false,"src":"12673:7:82","valueSize":1},{"declaration":25405,"isOffset":false,"isSlot":false,"src":"12820:7:82","valueSize":1},{"declaration":25405,"isOffset":false,"isSlot":false,"src":"13170:7:82","valueSize":1},{"declaration":25405,"isOffset":false,"isSlot":false,"src":"13185:7:82","valueSize":1},{"declaration":25396,"isOffset":false,"isSlot":false,"src":"12453:5:82","valueSize":1},{"declaration":25396,"isOffset":false,"isSlot":false,"src":"13239:5:82","valueSize":1},{"declaration":25400,"isOffset":false,"isSlot":false,"src":"12411:5:82","valueSize":1}],"flags":["memory-safe"],"id":25413,"nodeType":"InlineAssembly","src":"12233:1072:82"}]},"documentation":{"id":25393,"nodeType":"StructuredDocumentation","src":"11564:490:82","text":" @dev Imitates a Solidity `token.approve(spender, value)` call, relaxing the requirement on the return value:\n the return value is optional (but if data is returned, it must not be false).\n @param token The token targeted by the call.\n @param spender The spender of the tokens\n @param value The amount of token to transfer\n @param bubble Behavior switch if the transfer call reverts: bubble the revert reason or return a false boolean."},"id":25415,"implemented":true,"kind":"function","modifiers":[],"name":"_safeApprove","nameLocation":"12068:12:82","nodeType":"FunctionDefinition","parameters":{"id":25403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25396,"mutability":"mutable","name":"token","nameLocation":"12088:5:82","nodeType":"VariableDeclaration","scope":25415,"src":"12081:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":25395,"nodeType":"UserDefinedTypeName","pathNode":{"id":25394,"name":"IERC20","nameLocations":["12081:6:82"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"12081:6:82"},"referencedDeclaration":24193,"src":"12081:6:82","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":25398,"mutability":"mutable","name":"spender","nameLocation":"12103:7:82","nodeType":"VariableDeclaration","scope":25415,"src":"12095:15:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25397,"name":"address","nodeType":"ElementaryTypeName","src":"12095:7:82","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25400,"mutability":"mutable","name":"value","nameLocation":"12120:5:82","nodeType":"VariableDeclaration","scope":25415,"src":"12112:13:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25399,"name":"uint256","nodeType":"ElementaryTypeName","src":"12112:7:82","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25402,"mutability":"mutable","name":"bubble","nameLocation":"12132:6:82","nodeType":"VariableDeclaration","scope":25415,"src":"12127:11:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25401,"name":"bool","nodeType":"ElementaryTypeName","src":"12127:4:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12080:59:82"},"returnParameters":{"id":25406,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25405,"mutability":"mutable","name":"success","nameLocation":"12162:7:82","nodeType":"VariableDeclaration","scope":25415,"src":"12157:12:82","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25404,"name":"bool","nodeType":"ElementaryTypeName","src":"12157:4:82","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12156:14:82"},"scope":25416,"src":"12059:1252:82","stateMutability":"nonpayable","virtual":false,"visibility":"private"}],"scope":25417,"src":"698:12615:82","usedErrors":[24973,24982],"usedEvents":[]}],"src":"115:13199:82"},"id":82},"@openzeppelin/contracts/token/ERC721/IERC721.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","exportedSymbols":{"IERC165":[33545],"IERC721":[25533]},"id":25534,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":25418,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"108:24:83"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"../../utils/introspection/IERC165.sol","id":25420,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25534,"sourceUnit":33546,"src":"134:62:83","symbolAliases":[{"foreign":{"id":25419,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"142:7:83","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":25422,"name":"IERC165","nameLocations":["288:7:83"],"nodeType":"IdentifierPath","referencedDeclaration":33545,"src":"288:7:83"},"id":25423,"nodeType":"InheritanceSpecifier","src":"288:7:83"}],"canonicalName":"IERC721","contractDependencies":[],"contractKind":"interface","documentation":{"id":25421,"nodeType":"StructuredDocumentation","src":"198:68:83","text":" @dev Required interface of an ERC-721 compliant contract."},"fullyImplemented":false,"id":25533,"linearizedBaseContracts":[25533,33545],"name":"IERC721","nameLocation":"277:7:83","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":25424,"nodeType":"StructuredDocumentation","src":"302:88:83","text":" @dev Emitted when `tokenId` token is transferred from `from` to `to`."},"eventSelector":"ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","id":25432,"name":"Transfer","nameLocation":"401:8:83","nodeType":"EventDefinition","parameters":{"id":25431,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25426,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"426:4:83","nodeType":"VariableDeclaration","scope":25432,"src":"410:20:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25425,"name":"address","nodeType":"ElementaryTypeName","src":"410:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25428,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"448:2:83","nodeType":"VariableDeclaration","scope":25432,"src":"432:18:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25427,"name":"address","nodeType":"ElementaryTypeName","src":"432:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25430,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"468:7:83","nodeType":"VariableDeclaration","scope":25432,"src":"452:23:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25429,"name":"uint256","nodeType":"ElementaryTypeName","src":"452:7:83","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"409:67:83"},"src":"395:82:83"},{"anonymous":false,"documentation":{"id":25433,"nodeType":"StructuredDocumentation","src":"483:94:83","text":" @dev Emitted when `owner` enables `approved` to manage the `tokenId` token."},"eventSelector":"8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925","id":25441,"name":"Approval","nameLocation":"588:8:83","nodeType":"EventDefinition","parameters":{"id":25440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25435,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"613:5:83","nodeType":"VariableDeclaration","scope":25441,"src":"597:21:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25434,"name":"address","nodeType":"ElementaryTypeName","src":"597:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25437,"indexed":true,"mutability":"mutable","name":"approved","nameLocation":"636:8:83","nodeType":"VariableDeclaration","scope":25441,"src":"620:24:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25436,"name":"address","nodeType":"ElementaryTypeName","src":"620:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25439,"indexed":true,"mutability":"mutable","name":"tokenId","nameLocation":"662:7:83","nodeType":"VariableDeclaration","scope":25441,"src":"646:23:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25438,"name":"uint256","nodeType":"ElementaryTypeName","src":"646:7:83","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"596:74:83"},"src":"582:89:83"},{"anonymous":false,"documentation":{"id":25442,"nodeType":"StructuredDocumentation","src":"677:117:83","text":" @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets."},"eventSelector":"17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31","id":25450,"name":"ApprovalForAll","nameLocation":"805:14:83","nodeType":"EventDefinition","parameters":{"id":25449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25444,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"836:5:83","nodeType":"VariableDeclaration","scope":25450,"src":"820:21:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25443,"name":"address","nodeType":"ElementaryTypeName","src":"820:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25446,"indexed":true,"mutability":"mutable","name":"operator","nameLocation":"859:8:83","nodeType":"VariableDeclaration","scope":25450,"src":"843:24:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25445,"name":"address","nodeType":"ElementaryTypeName","src":"843:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25448,"indexed":false,"mutability":"mutable","name":"approved","nameLocation":"874:8:83","nodeType":"VariableDeclaration","scope":25450,"src":"869:13:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25447,"name":"bool","nodeType":"ElementaryTypeName","src":"869:4:83","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"819:64:83"},"src":"799:85:83"},{"documentation":{"id":25451,"nodeType":"StructuredDocumentation","src":"890:76:83","text":" @dev Returns the number of tokens in ``owner``'s account."},"functionSelector":"70a08231","id":25458,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"980:9:83","nodeType":"FunctionDefinition","parameters":{"id":25454,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25453,"mutability":"mutable","name":"owner","nameLocation":"998:5:83","nodeType":"VariableDeclaration","scope":25458,"src":"990:13:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25452,"name":"address","nodeType":"ElementaryTypeName","src":"990:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"989:15:83"},"returnParameters":{"id":25457,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25456,"mutability":"mutable","name":"balance","nameLocation":"1036:7:83","nodeType":"VariableDeclaration","scope":25458,"src":"1028:15:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25455,"name":"uint256","nodeType":"ElementaryTypeName","src":"1028:7:83","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1027:17:83"},"scope":25533,"src":"971:74:83","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":25459,"nodeType":"StructuredDocumentation","src":"1051:131:83","text":" @dev Returns the owner of the `tokenId` token.\n Requirements:\n - `tokenId` must exist."},"functionSelector":"6352211e","id":25466,"implemented":false,"kind":"function","modifiers":[],"name":"ownerOf","nameLocation":"1196:7:83","nodeType":"FunctionDefinition","parameters":{"id":25462,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25461,"mutability":"mutable","name":"tokenId","nameLocation":"1212:7:83","nodeType":"VariableDeclaration","scope":25466,"src":"1204:15:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25460,"name":"uint256","nodeType":"ElementaryTypeName","src":"1204:7:83","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1203:17:83"},"returnParameters":{"id":25465,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25464,"mutability":"mutable","name":"owner","nameLocation":"1252:5:83","nodeType":"VariableDeclaration","scope":25466,"src":"1244:13:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25463,"name":"address","nodeType":"ElementaryTypeName","src":"1244:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1243:15:83"},"scope":25533,"src":"1187:72:83","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":25467,"nodeType":"StructuredDocumentation","src":"1265:565:83","text":" @dev Safely transfers `tokenId` token from `from` to `to`.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must exist and be owned by `from`.\n - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon\n   a safe transfer.\n Emits a {Transfer} event."},"functionSelector":"b88d4fde","id":25478,"implemented":false,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"1844:16:83","nodeType":"FunctionDefinition","parameters":{"id":25476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25469,"mutability":"mutable","name":"from","nameLocation":"1869:4:83","nodeType":"VariableDeclaration","scope":25478,"src":"1861:12:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25468,"name":"address","nodeType":"ElementaryTypeName","src":"1861:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25471,"mutability":"mutable","name":"to","nameLocation":"1883:2:83","nodeType":"VariableDeclaration","scope":25478,"src":"1875:10:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25470,"name":"address","nodeType":"ElementaryTypeName","src":"1875:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25473,"mutability":"mutable","name":"tokenId","nameLocation":"1895:7:83","nodeType":"VariableDeclaration","scope":25478,"src":"1887:15:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25472,"name":"uint256","nodeType":"ElementaryTypeName","src":"1887:7:83","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25475,"mutability":"mutable","name":"data","nameLocation":"1919:4:83","nodeType":"VariableDeclaration","scope":25478,"src":"1904:19:83","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":25474,"name":"bytes","nodeType":"ElementaryTypeName","src":"1904:5:83","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1860:64:83"},"returnParameters":{"id":25477,"nodeType":"ParameterList","parameters":[],"src":"1933:0:83"},"scope":25533,"src":"1835:99:83","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":25479,"nodeType":"StructuredDocumentation","src":"1940:706:83","text":" @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n are aware of the ERC-721 protocol to prevent tokens from being forever locked.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must exist and be owned by `from`.\n - If the caller is not `from`, it must have been allowed to move this token by either {approve} or\n   {setApprovalForAll}.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon\n   a safe transfer.\n Emits a {Transfer} event."},"functionSelector":"42842e0e","id":25488,"implemented":false,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"2660:16:83","nodeType":"FunctionDefinition","parameters":{"id":25486,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25481,"mutability":"mutable","name":"from","nameLocation":"2685:4:83","nodeType":"VariableDeclaration","scope":25488,"src":"2677:12:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25480,"name":"address","nodeType":"ElementaryTypeName","src":"2677:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25483,"mutability":"mutable","name":"to","nameLocation":"2699:2:83","nodeType":"VariableDeclaration","scope":25488,"src":"2691:10:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25482,"name":"address","nodeType":"ElementaryTypeName","src":"2691:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25485,"mutability":"mutable","name":"tokenId","nameLocation":"2711:7:83","nodeType":"VariableDeclaration","scope":25488,"src":"2703:15:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25484,"name":"uint256","nodeType":"ElementaryTypeName","src":"2703:7:83","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2676:43:83"},"returnParameters":{"id":25487,"nodeType":"ParameterList","parameters":[],"src":"2728:0:83"},"scope":25533,"src":"2651:78:83","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":25489,"nodeType":"StructuredDocumentation","src":"2735:733:83","text":" @dev Transfers `tokenId` token from `from` to `to`.\n WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721\n or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must\n understand this adds an external call which potentially creates a reentrancy vulnerability.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must be owned by `from`.\n - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n Emits a {Transfer} event."},"functionSelector":"23b872dd","id":25498,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"3482:12:83","nodeType":"FunctionDefinition","parameters":{"id":25496,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25491,"mutability":"mutable","name":"from","nameLocation":"3503:4:83","nodeType":"VariableDeclaration","scope":25498,"src":"3495:12:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25490,"name":"address","nodeType":"ElementaryTypeName","src":"3495:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25493,"mutability":"mutable","name":"to","nameLocation":"3517:2:83","nodeType":"VariableDeclaration","scope":25498,"src":"3509:10:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25492,"name":"address","nodeType":"ElementaryTypeName","src":"3509:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25495,"mutability":"mutable","name":"tokenId","nameLocation":"3529:7:83","nodeType":"VariableDeclaration","scope":25498,"src":"3521:15:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25494,"name":"uint256","nodeType":"ElementaryTypeName","src":"3521:7:83","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3494:43:83"},"returnParameters":{"id":25497,"nodeType":"ParameterList","parameters":[],"src":"3546:0:83"},"scope":25533,"src":"3473:74:83","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":25499,"nodeType":"StructuredDocumentation","src":"3553:452:83","text":" @dev Gives permission to `to` to transfer `tokenId` token to another account.\n The approval is cleared when the token is transferred.\n Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n Requirements:\n - The caller must own the token or be an approved operator.\n - `tokenId` must exist.\n Emits an {Approval} event."},"functionSelector":"095ea7b3","id":25506,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"4019:7:83","nodeType":"FunctionDefinition","parameters":{"id":25504,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25501,"mutability":"mutable","name":"to","nameLocation":"4035:2:83","nodeType":"VariableDeclaration","scope":25506,"src":"4027:10:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25500,"name":"address","nodeType":"ElementaryTypeName","src":"4027:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25503,"mutability":"mutable","name":"tokenId","nameLocation":"4047:7:83","nodeType":"VariableDeclaration","scope":25506,"src":"4039:15:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25502,"name":"uint256","nodeType":"ElementaryTypeName","src":"4039:7:83","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4026:29:83"},"returnParameters":{"id":25505,"nodeType":"ParameterList","parameters":[],"src":"4064:0:83"},"scope":25533,"src":"4010:55:83","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":25507,"nodeType":"StructuredDocumentation","src":"4071:315:83","text":" @dev Approve or remove `operator` as an operator for the caller.\n Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n Requirements:\n - The `operator` cannot be the address zero.\n Emits an {ApprovalForAll} event."},"functionSelector":"a22cb465","id":25514,"implemented":false,"kind":"function","modifiers":[],"name":"setApprovalForAll","nameLocation":"4400:17:83","nodeType":"FunctionDefinition","parameters":{"id":25512,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25509,"mutability":"mutable","name":"operator","nameLocation":"4426:8:83","nodeType":"VariableDeclaration","scope":25514,"src":"4418:16:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25508,"name":"address","nodeType":"ElementaryTypeName","src":"4418:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25511,"mutability":"mutable","name":"approved","nameLocation":"4441:8:83","nodeType":"VariableDeclaration","scope":25514,"src":"4436:13:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25510,"name":"bool","nodeType":"ElementaryTypeName","src":"4436:4:83","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4417:33:83"},"returnParameters":{"id":25513,"nodeType":"ParameterList","parameters":[],"src":"4459:0:83"},"scope":25533,"src":"4391:69:83","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":25515,"nodeType":"StructuredDocumentation","src":"4466:139:83","text":" @dev Returns the account approved for `tokenId` token.\n Requirements:\n - `tokenId` must exist."},"functionSelector":"081812fc","id":25522,"implemented":false,"kind":"function","modifiers":[],"name":"getApproved","nameLocation":"4619:11:83","nodeType":"FunctionDefinition","parameters":{"id":25518,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25517,"mutability":"mutable","name":"tokenId","nameLocation":"4639:7:83","nodeType":"VariableDeclaration","scope":25522,"src":"4631:15:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25516,"name":"uint256","nodeType":"ElementaryTypeName","src":"4631:7:83","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4630:17:83"},"returnParameters":{"id":25521,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25520,"mutability":"mutable","name":"operator","nameLocation":"4679:8:83","nodeType":"VariableDeclaration","scope":25522,"src":"4671:16:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25519,"name":"address","nodeType":"ElementaryTypeName","src":"4671:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4670:18:83"},"scope":25533,"src":"4610:79:83","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":25523,"nodeType":"StructuredDocumentation","src":"4695:138:83","text":" @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n See {setApprovalForAll}"},"functionSelector":"e985e9c5","id":25532,"implemented":false,"kind":"function","modifiers":[],"name":"isApprovedForAll","nameLocation":"4847:16:83","nodeType":"FunctionDefinition","parameters":{"id":25528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25525,"mutability":"mutable","name":"owner","nameLocation":"4872:5:83","nodeType":"VariableDeclaration","scope":25532,"src":"4864:13:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25524,"name":"address","nodeType":"ElementaryTypeName","src":"4864:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25527,"mutability":"mutable","name":"operator","nameLocation":"4887:8:83","nodeType":"VariableDeclaration","scope":25532,"src":"4879:16:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25526,"name":"address","nodeType":"ElementaryTypeName","src":"4879:7:83","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4863:33:83"},"returnParameters":{"id":25531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25530,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25532,"src":"4920:4:83","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25529,"name":"bool","nodeType":"ElementaryTypeName","src":"4920:4:83","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4919:6:83"},"scope":25533,"src":"4838:88:83","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":25534,"src":"267:4661:83","usedErrors":[],"usedEvents":[25432,25441,25450]}],"src":"108:4821:83"},"id":83},"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","exportedSymbols":{"IERC721Receiver":[25551]},"id":25552,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":25535,"literals":["solidity",">=","0.5",".0"],"nodeType":"PragmaDirective","src":"116:24:84"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Receiver","contractDependencies":[],"contractKind":"interface","documentation":{"id":25536,"nodeType":"StructuredDocumentation","src":"142:154:84","text":" @title ERC-721 token receiver interface\n @dev Interface for any contract that wants to support safeTransfers\n from ERC-721 asset contracts."},"fullyImplemented":false,"id":25551,"linearizedBaseContracts":[25551],"name":"IERC721Receiver","nameLocation":"307:15:84","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":25537,"nodeType":"StructuredDocumentation","src":"329:500:84","text":" @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n by `operator` from `from`, this function is called.\n It must return its Solidity selector to confirm the token transfer.\n If any other value is returned or the interface is not implemented by the recipient, the transfer will be\n reverted.\n The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`."},"functionSelector":"150b7a02","id":25550,"implemented":false,"kind":"function","modifiers":[],"name":"onERC721Received","nameLocation":"843:16:84","nodeType":"FunctionDefinition","parameters":{"id":25546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25539,"mutability":"mutable","name":"operator","nameLocation":"877:8:84","nodeType":"VariableDeclaration","scope":25550,"src":"869:16:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25538,"name":"address","nodeType":"ElementaryTypeName","src":"869:7:84","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25541,"mutability":"mutable","name":"from","nameLocation":"903:4:84","nodeType":"VariableDeclaration","scope":25550,"src":"895:12:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25540,"name":"address","nodeType":"ElementaryTypeName","src":"895:7:84","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25543,"mutability":"mutable","name":"tokenId","nameLocation":"925:7:84","nodeType":"VariableDeclaration","scope":25550,"src":"917:15:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25542,"name":"uint256","nodeType":"ElementaryTypeName","src":"917:7:84","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25545,"mutability":"mutable","name":"data","nameLocation":"957:4:84","nodeType":"VariableDeclaration","scope":25550,"src":"942:19:84","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":25544,"name":"bytes","nodeType":"ElementaryTypeName","src":"942:5:84","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"859:108:84"},"returnParameters":{"id":25549,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25548,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25550,"src":"986:6:84","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":25547,"name":"bytes4","nodeType":"ElementaryTypeName","src":"986:6:84","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"985:8:84"},"scope":25551,"src":"834:160:84","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":25552,"src":"297:699:84","usedErrors":[],"usedEvents":[]}],"src":"116:881:84"},"id":84},"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol","exportedSymbols":{"IERC721":[25533],"IERC721Metadata":[25579]},"id":25580,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":25553,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"127:24:85"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","file":"../IERC721.sol","id":25555,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25580,"sourceUnit":25534,"src":"153:39:85","symbolAliases":[{"foreign":{"id":25554,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25533,"src":"161:7:85","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":25557,"name":"IERC721","nameLocations":["357:7:85"],"nodeType":"IdentifierPath","referencedDeclaration":25533,"src":"357:7:85"},"id":25558,"nodeType":"InheritanceSpecifier","src":"357:7:85"}],"canonicalName":"IERC721Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":25556,"nodeType":"StructuredDocumentation","src":"194:133:85","text":" @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n @dev See https://eips.ethereum.org/EIPS/eip-721"},"fullyImplemented":false,"id":25579,"linearizedBaseContracts":[25579,25533,33545],"name":"IERC721Metadata","nameLocation":"338:15:85","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":25559,"nodeType":"StructuredDocumentation","src":"371:58:85","text":" @dev Returns the token collection name."},"functionSelector":"06fdde03","id":25564,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"443:4:85","nodeType":"FunctionDefinition","parameters":{"id":25560,"nodeType":"ParameterList","parameters":[],"src":"447:2:85"},"returnParameters":{"id":25563,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25562,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25564,"src":"473:13:85","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":25561,"name":"string","nodeType":"ElementaryTypeName","src":"473:6:85","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"472:15:85"},"scope":25579,"src":"434:54:85","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":25565,"nodeType":"StructuredDocumentation","src":"494:60:85","text":" @dev Returns the token collection symbol."},"functionSelector":"95d89b41","id":25570,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"568:6:85","nodeType":"FunctionDefinition","parameters":{"id":25566,"nodeType":"ParameterList","parameters":[],"src":"574:2:85"},"returnParameters":{"id":25569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25568,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25570,"src":"600:13:85","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":25567,"name":"string","nodeType":"ElementaryTypeName","src":"600:6:85","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"599:15:85"},"scope":25579,"src":"559:56:85","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":25571,"nodeType":"StructuredDocumentation","src":"621:90:85","text":" @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token."},"functionSelector":"c87b56dd","id":25578,"implemented":false,"kind":"function","modifiers":[],"name":"tokenURI","nameLocation":"725:8:85","nodeType":"FunctionDefinition","parameters":{"id":25574,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25573,"mutability":"mutable","name":"tokenId","nameLocation":"742:7:85","nodeType":"VariableDeclaration","scope":25578,"src":"734:15:85","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25572,"name":"uint256","nodeType":"ElementaryTypeName","src":"734:7:85","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"733:17:85"},"returnParameters":{"id":25577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25576,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25578,"src":"774:13:85","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":25575,"name":"string","nodeType":"ElementaryTypeName","src":"774:6:85","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"773:15:85"},"scope":25579,"src":"716:73:85","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":25580,"src":"328:463:85","usedErrors":[],"usedEvents":[25432,25441,25450]}],"src":"127:665:85"},"id":85},"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol","exportedSymbols":{"ERC721Utils":[25656],"IERC721Errors":[22596],"IERC721Receiver":[25551]},"id":25657,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":25581,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"118:24:86"},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"../IERC721Receiver.sol","id":25583,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25657,"sourceUnit":25552,"src":"144:55:86","symbolAliases":[{"foreign":{"id":25582,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25551,"src":"152:15:86","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"../../../interfaces/draft-IERC6093.sol","id":25585,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":25657,"sourceUnit":22644,"src":"200:69:86","symbolAliases":[{"foreign":{"id":25584,"name":"IERC721Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22596,"src":"208:13:86","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"ERC721Utils","contractDependencies":[],"contractKind":"library","documentation":{"id":25586,"nodeType":"StructuredDocumentation","src":"271:160:86","text":" @dev Library that provides common ERC-721 utility functions.\n See https://eips.ethereum.org/EIPS/eip-721[ERC-721].\n _Available since v5.1._"},"fullyImplemented":true,"id":25656,"linearizedBaseContracts":[25656],"name":"ERC721Utils","nameLocation":"440:11:86","nodeType":"ContractDefinition","nodes":[{"body":{"id":25654,"nodeType":"Block","src":"1160:760:86","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":25600,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25593,"src":"1174:2:86","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":25601,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1177:4:86","memberName":"code","nodeType":"MemberAccess","src":"1174:7:86","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":25602,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1182:6:86","memberName":"length","nodeType":"MemberAccess","src":"1174:14:86","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":25603,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1191:1:86","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1174:18:86","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25653,"nodeType":"IfStatement","src":"1170:744:86","trueBody":{"id":25652,"nodeType":"Block","src":"1194:720:86","statements":[{"clauses":[{"block":{"id":25630,"nodeType":"Block","src":"1304:214:86","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":25621,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25617,"name":"retval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25615,"src":"1326:6:86","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"expression":{"id":25618,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25551,"src":"1336:15:86","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Receiver_$25551_$","typeString":"type(contract IERC721Receiver)"}},"id":25619,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1352:16:86","memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":25550,"src":"1336:32:86","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function IERC721Receiver.onERC721Received(address,address,uint256,bytes calldata) returns (bytes4)"}},"id":25620,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1369:8:86","memberName":"selector","nodeType":"MemberAccess","src":"1336:41:86","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1326:51:86","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25629,"nodeType":"IfStatement","src":"1322:182:86","trueBody":{"id":25628,"nodeType":"Block","src":"1379:125:86","statements":[{"errorCall":{"arguments":[{"id":25625,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25593,"src":"1482:2:86","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":25622,"name":"IERC721Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22596,"src":"1446:13:86","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Errors_$22596_$","typeString":"type(contract IERC721Errors)"}},"id":25624,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1460:21:86","memberName":"ERC721InvalidReceiver","nodeType":"MemberAccess","referencedDeclaration":22578,"src":"1446:35:86","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":25626,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1446:39:86","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25627,"nodeType":"RevertStatement","src":"1439:46:86"}]}}]},"errorName":"","id":25631,"nodeType":"TryCatchClause","parameters":{"id":25616,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25615,"mutability":"mutable","name":"retval","nameLocation":"1296:6:86","nodeType":"VariableDeclaration","scope":25631,"src":"1289:13:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":25614,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1289:6:86","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1288:15:86"},"src":"1280:238:86"},{"block":{"id":25649,"nodeType":"Block","src":"1547:357:86","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":25635,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25633,"src":"1569:6:86","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":25636,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1576:6:86","memberName":"length","nodeType":"MemberAccess","src":"1569:13:86","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":25637,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1586:1:86","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1569:18:86","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":25647,"nodeType":"Block","src":"1737:153:86","statements":[{"AST":{"nativeSrc":"1784:88:86","nodeType":"YulBlock","src":"1784:88:86","statements":[{"expression":{"arguments":[{"arguments":[{"name":"reason","nativeSrc":"1821:6:86","nodeType":"YulIdentifier","src":"1821:6:86"},{"kind":"number","nativeSrc":"1829:4:86","nodeType":"YulLiteral","src":"1829:4:86","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1817:3:86","nodeType":"YulIdentifier","src":"1817:3:86"},"nativeSrc":"1817:17:86","nodeType":"YulFunctionCall","src":"1817:17:86"},{"arguments":[{"name":"reason","nativeSrc":"1842:6:86","nodeType":"YulIdentifier","src":"1842:6:86"}],"functionName":{"name":"mload","nativeSrc":"1836:5:86","nodeType":"YulIdentifier","src":"1836:5:86"},"nativeSrc":"1836:13:86","nodeType":"YulFunctionCall","src":"1836:13:86"}],"functionName":{"name":"revert","nativeSrc":"1810:6:86","nodeType":"YulIdentifier","src":"1810:6:86"},"nativeSrc":"1810:40:86","nodeType":"YulFunctionCall","src":"1810:40:86"},"nativeSrc":"1810:40:86","nodeType":"YulExpressionStatement","src":"1810:40:86"}]},"evmVersion":"prague","externalReferences":[{"declaration":25633,"isOffset":false,"isSlot":false,"src":"1821:6:86","valueSize":1},{"declaration":25633,"isOffset":false,"isSlot":false,"src":"1842:6:86","valueSize":1}],"flags":["memory-safe"],"id":25646,"nodeType":"InlineAssembly","src":"1759:113:86"}]},"id":25648,"nodeType":"IfStatement","src":"1565:325:86","trueBody":{"id":25645,"nodeType":"Block","src":"1589:142:86","statements":[{"errorCall":{"arguments":[{"id":25642,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25593,"src":"1709:2:86","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":25639,"name":"IERC721Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22596,"src":"1673:13:86","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Errors_$22596_$","typeString":"type(contract IERC721Errors)"}},"id":25641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1687:21:86","memberName":"ERC721InvalidReceiver","nodeType":"MemberAccess","referencedDeclaration":22578,"src":"1673:35:86","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":25643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1673:39:86","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25644,"nodeType":"RevertStatement","src":"1666:46:86"}]}}]},"errorName":"","id":25650,"nodeType":"TryCatchClause","parameters":{"id":25634,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25633,"mutability":"mutable","name":"reason","nameLocation":"1539:6:86","nodeType":"VariableDeclaration","scope":25650,"src":"1526:19:86","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":25632,"name":"bytes","nodeType":"ElementaryTypeName","src":"1526:5:86","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1525:21:86"},"src":"1519:385:86"}],"externalCall":{"arguments":[{"id":25609,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25589,"src":"1249:8:86","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25610,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25591,"src":"1259:4:86","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25611,"name":"tokenId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25595,"src":"1265:7:86","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25612,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25597,"src":"1274:4:86","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"arguments":[{"id":25606,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25593,"src":"1228:2:86","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25605,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25551,"src":"1212:15:86","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Receiver_$25551_$","typeString":"type(contract IERC721Receiver)"}},"id":25607,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1212:19:86","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC721Receiver_$25551","typeString":"contract IERC721Receiver"}},"id":25608,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1232:16:86","memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":25550,"src":"1212:36:86","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (address,address,uint256,bytes memory) external returns (bytes4)"}},"id":25613,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1212:67:86","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":25651,"nodeType":"TryStatement","src":"1208:696:86"}]}}]},"documentation":{"id":25587,"nodeType":"StructuredDocumentation","src":"458:531:86","text":" @dev Performs an acceptance check for the provided `operator` by calling {IERC721Receiver-onERC721Received}\n on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`).\n The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA).\n Otherwise, the recipient must implement {IERC721Receiver-onERC721Received} and return the acceptance magic value to accept\n the transfer."},"id":25655,"implemented":true,"kind":"function","modifiers":[],"name":"checkOnERC721Received","nameLocation":"1003:21:86","nodeType":"FunctionDefinition","parameters":{"id":25598,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25589,"mutability":"mutable","name":"operator","nameLocation":"1042:8:86","nodeType":"VariableDeclaration","scope":25655,"src":"1034:16:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25588,"name":"address","nodeType":"ElementaryTypeName","src":"1034:7:86","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25591,"mutability":"mutable","name":"from","nameLocation":"1068:4:86","nodeType":"VariableDeclaration","scope":25655,"src":"1060:12:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25590,"name":"address","nodeType":"ElementaryTypeName","src":"1060:7:86","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25593,"mutability":"mutable","name":"to","nameLocation":"1090:2:86","nodeType":"VariableDeclaration","scope":25655,"src":"1082:10:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25592,"name":"address","nodeType":"ElementaryTypeName","src":"1082:7:86","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25595,"mutability":"mutable","name":"tokenId","nameLocation":"1110:7:86","nodeType":"VariableDeclaration","scope":25655,"src":"1102:15:86","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25594,"name":"uint256","nodeType":"ElementaryTypeName","src":"1102:7:86","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":25597,"mutability":"mutable","name":"data","nameLocation":"1140:4:86","nodeType":"VariableDeclaration","scope":25655,"src":"1127:17:86","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":25596,"name":"bytes","nodeType":"ElementaryTypeName","src":"1127:5:86","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1024:126:86"},"returnParameters":{"id":25599,"nodeType":"ParameterList","parameters":[],"src":"1160:0:86"},"scope":25656,"src":"994:926:86","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":25657,"src":"432:1490:86","usedErrors":[],"usedEvents":[]}],"src":"118:1805:86"},"id":86},"@openzeppelin/contracts/utils/Address.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","exportedSymbols":{"Address":[26046],"Errors":[26811],"LowLevelCall":[26970]},"id":26047,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":25658,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:87"},{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","file":"./Errors.sol","id":25660,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":26047,"sourceUnit":26812,"src":"127:36:87","symbolAliases":[{"foreign":{"id":25659,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26811,"src":"135:6:87","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/LowLevelCall.sol","file":"./LowLevelCall.sol","id":25662,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":26047,"sourceUnit":26971,"src":"164:48:87","symbolAliases":[{"foreign":{"id":25661,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"172:12:87","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Address","contractDependencies":[],"contractKind":"library","documentation":{"id":25663,"nodeType":"StructuredDocumentation","src":"214:67:87","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":26046,"linearizedBaseContracts":[26046],"name":"Address","nameLocation":"290:7:87","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":25664,"nodeType":"StructuredDocumentation","src":"304:75:87","text":" @dev There's no code at `target` (it is not a contract)."},"errorSelector":"9996b315","id":25668,"name":"AddressEmptyCode","nameLocation":"390:16:87","nodeType":"ErrorDefinition","parameters":{"id":25667,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25666,"mutability":"mutable","name":"target","nameLocation":"415:6:87","nodeType":"VariableDeclaration","scope":25668,"src":"407:14:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25665,"name":"address","nodeType":"ElementaryTypeName","src":"407:7:87","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"406:16:87"},"src":"384:39:87"},{"body":{"id":25723,"nodeType":"Block","src":"1410:435:87","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":25678,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1432:4:87","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$26046","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$26046","typeString":"library Address"}],"id":25677,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1424:7:87","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25676,"name":"address","nodeType":"ElementaryTypeName","src":"1424:7:87","typeDescriptions":{}}},"id":25679,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1424:13:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":25680,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1438:7:87","memberName":"balance","nodeType":"MemberAccess","src":"1424:21:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":25681,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"1448:6:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1424:30:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25695,"nodeType":"IfStatement","src":"1420:125:87","trueBody":{"id":25694,"nodeType":"Block","src":"1456:89:87","statements":[{"errorCall":{"arguments":[{"expression":{"arguments":[{"id":25688,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1512:4:87","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$26046","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$26046","typeString":"library Address"}],"id":25687,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1504:7:87","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25686,"name":"address","nodeType":"ElementaryTypeName","src":"1504:7:87","typeDescriptions":{}}},"id":25689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1504:13:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":25690,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1518:7:87","memberName":"balance","nodeType":"MemberAccess","src":"1504:21:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25691,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"1527:6:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":25683,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26811,"src":"1477:6:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$26811_$","typeString":"type(library Errors)"}},"id":25685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1484:19:87","memberName":"InsufficientBalance","nodeType":"MemberAccess","referencedDeclaration":26799,"src":"1477:26:87","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":25692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1477:57:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25693,"nodeType":"RevertStatement","src":"1470:64:87"}]}},{"condition":{"arguments":[{"id":25698,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25671,"src":"1584:9:87","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},{"id":25699,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25673,"src":"1595:6:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"","id":25700,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1603:2:87","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""}],"expression":{"id":25696,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"1558:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1571:12:87","memberName":"callNoReturn","nodeType":"MemberAccess","referencedDeclaration":26845,"src":"1558:25:87","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory) returns (bool)"}},"id":25701,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1558:48:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25704,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"1695:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25705,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1708:14:87","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":26948,"src":"1695:27:87","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":25706,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1695:29:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":25707,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1727:1:87","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1695:33:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":25720,"nodeType":"Block","src":"1788:51:87","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25715,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26811,"src":"1809:6:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$26811_$","typeString":"type(library Errors)"}},"id":25717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1816:10:87","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":26802,"src":"1809:17:87","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":25718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1809:19:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25719,"nodeType":"RevertStatement","src":"1802:26:87"}]},"id":25721,"nodeType":"IfStatement","src":"1691:148:87","trueBody":{"id":25714,"nodeType":"Block","src":"1730:52:87","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25709,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"1744:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1757:12:87","memberName":"bubbleRevert","nodeType":"MemberAccess","referencedDeclaration":26962,"src":"1744:25:87","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$__$","typeString":"function () pure"}},"id":25712,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1744:27:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25713,"nodeType":"ExpressionStatement","src":"1744:27:87"}]}},"id":25722,"nodeType":"IfStatement","src":"1554:285:87","trueBody":{"id":25703,"nodeType":"Block","src":"1608:77:87","statements":[{"functionReturnParameters":25675,"id":25702,"nodeType":"Return","src":"1668:7:87"}]}}]},"documentation":{"id":25669,"nodeType":"StructuredDocumentation","src":"429:905:87","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":25724,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"1348:9:87","nodeType":"FunctionDefinition","parameters":{"id":25674,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25671,"mutability":"mutable","name":"recipient","nameLocation":"1374:9:87","nodeType":"VariableDeclaration","scope":25724,"src":"1358:25:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":25670,"name":"address","nodeType":"ElementaryTypeName","src":"1358:15:87","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":25673,"mutability":"mutable","name":"amount","nameLocation":"1393:6:87","nodeType":"VariableDeclaration","scope":25724,"src":"1385:14:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25672,"name":"uint256","nodeType":"ElementaryTypeName","src":"1385:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1357:43:87"},"returnParameters":{"id":25675,"nodeType":"ParameterList","parameters":[],"src":"1410:0:87"},"scope":26046,"src":"1339:506:87","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25740,"nodeType":"Block","src":"2779:62:87","statements":[{"expression":{"arguments":[{"id":25735,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25727,"src":"2818:6:87","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25736,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25729,"src":"2826:4:87","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":25737,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2832:1:87","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":25734,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25828,"src":"2796:21:87","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":25738,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2796:38:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":25733,"id":25739,"nodeType":"Return","src":"2789:45:87"}]},"documentation":{"id":25725,"nodeType":"StructuredDocumentation","src":"1851:834:87","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":25741,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"2699:12:87","nodeType":"FunctionDefinition","parameters":{"id":25730,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25727,"mutability":"mutable","name":"target","nameLocation":"2720:6:87","nodeType":"VariableDeclaration","scope":25741,"src":"2712:14:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25726,"name":"address","nodeType":"ElementaryTypeName","src":"2712:7:87","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25729,"mutability":"mutable","name":"data","nameLocation":"2741:4:87","nodeType":"VariableDeclaration","scope":25741,"src":"2728:17:87","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":25728,"name":"bytes","nodeType":"ElementaryTypeName","src":"2728:5:87","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2711:35:87"},"returnParameters":{"id":25733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25732,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25741,"src":"2765:12:87","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":25731,"name":"bytes","nodeType":"ElementaryTypeName","src":"2765:5:87","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2764:14:87"},"scope":26046,"src":"2690:151:87","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25827,"nodeType":"Block","src":"3278:583:87","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25759,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":25755,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3300:4:87","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$26046","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$26046","typeString":"library Address"}],"id":25754,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3292:7:87","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25753,"name":"address","nodeType":"ElementaryTypeName","src":"3292:7:87","typeDescriptions":{}}},"id":25756,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3292:13:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":25757,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3306:7:87","memberName":"balance","nodeType":"MemberAccess","src":"3292:21:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":25758,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25748,"src":"3316:5:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3292:29:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":25772,"nodeType":"IfStatement","src":"3288:123:87","trueBody":{"id":25771,"nodeType":"Block","src":"3323:88:87","statements":[{"errorCall":{"arguments":[{"expression":{"arguments":[{"id":25765,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3379:4:87","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$26046","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$26046","typeString":"library Address"}],"id":25764,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3371:7:87","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":25763,"name":"address","nodeType":"ElementaryTypeName","src":"3371:7:87","typeDescriptions":{}}},"id":25766,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3371:13:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":25767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3385:7:87","memberName":"balance","nodeType":"MemberAccess","src":"3371:21:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25768,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25748,"src":"3394:5:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":25760,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26811,"src":"3344:6:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$26811_$","typeString":"type(library Errors)"}},"id":25762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3351:19:87","memberName":"InsufficientBalance","nodeType":"MemberAccess","referencedDeclaration":26799,"src":"3344:26:87","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":25769,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3344:56:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25770,"nodeType":"RevertStatement","src":"3337:63:87"}]}},{"assignments":[25774],"declarations":[{"constant":false,"id":25774,"mutability":"mutable","name":"success","nameLocation":"3425:7:87","nodeType":"VariableDeclaration","scope":25827,"src":"3420:12:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25773,"name":"bool","nodeType":"ElementaryTypeName","src":"3420:4:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":25781,"initialValue":{"arguments":[{"id":25777,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25744,"src":"3461:6:87","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25778,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25748,"src":"3469:5:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":25779,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25746,"src":"3476:4:87","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":25775,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"3435:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25776,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3448:12:87","memberName":"callNoReturn","nodeType":"MemberAccess","referencedDeclaration":26845,"src":"3435:25:87","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory) returns (bool)"}},"id":25780,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3435:46:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"3420:61:87"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":25795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25782,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25774,"src":"3495:7:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":25793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25783,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"3507:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25784,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3520:14:87","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":26948,"src":"3507:27:87","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":25785,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3507:29:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":25786,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3539:1:87","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3507:33:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25792,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":25788,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25744,"src":"3544:6:87","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":25789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3551:4:87","memberName":"code","nodeType":"MemberAccess","src":"3544:11:87","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":25790,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3556:6:87","memberName":"length","nodeType":"MemberAccess","src":"3544:18:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":25791,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3565:1:87","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3544:22:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3507:59:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":25794,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3506:61:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3495:72:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":25801,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25774,"src":"3636:7:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25807,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"3711:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3724:14:87","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":26948,"src":"3711:27:87","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":25809,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3711:29:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":25810,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3743:1:87","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3711:33:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":25823,"nodeType":"Block","src":"3804:51:87","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25818,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26811,"src":"3825:6:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$26811_$","typeString":"type(library Errors)"}},"id":25820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3832:10:87","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":26802,"src":"3825:17:87","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":25821,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3825:19:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25822,"nodeType":"RevertStatement","src":"3818:26:87"}]},"id":25824,"nodeType":"IfStatement","src":"3707:148:87","trueBody":{"id":25817,"nodeType":"Block","src":"3746:52:87","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25812,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"3760:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25814,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3773:12:87","memberName":"bubbleRevert","nodeType":"MemberAccess","referencedDeclaration":26962,"src":"3760:25:87","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$__$","typeString":"function () pure"}},"id":25815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3760:27:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25816,"nodeType":"ExpressionStatement","src":"3760:27:87"}]}},"id":25825,"nodeType":"IfStatement","src":"3632:223:87","trueBody":{"id":25806,"nodeType":"Block","src":"3645:56:87","statements":[{"errorCall":{"arguments":[{"id":25803,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25744,"src":"3683:6:87","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25802,"name":"AddressEmptyCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25668,"src":"3666:16:87","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":25804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3666:24:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25805,"nodeType":"RevertStatement","src":"3659:31:87"}]}},"id":25826,"nodeType":"IfStatement","src":"3491:364:87","trueBody":{"id":25800,"nodeType":"Block","src":"3569:57:87","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25796,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"3590:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3603:10:87","memberName":"returnData","nodeType":"MemberAccess","referencedDeclaration":26956,"src":"3590:23:87","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":25798,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3590:25:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":25752,"id":25799,"nodeType":"Return","src":"3583:32:87"}]}}]},"documentation":{"id":25742,"nodeType":"StructuredDocumentation","src":"2847:313:87","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":25828,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"3174:21:87","nodeType":"FunctionDefinition","parameters":{"id":25749,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25744,"mutability":"mutable","name":"target","nameLocation":"3204:6:87","nodeType":"VariableDeclaration","scope":25828,"src":"3196:14:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25743,"name":"address","nodeType":"ElementaryTypeName","src":"3196:7:87","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25746,"mutability":"mutable","name":"data","nameLocation":"3225:4:87","nodeType":"VariableDeclaration","scope":25828,"src":"3212:17:87","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":25745,"name":"bytes","nodeType":"ElementaryTypeName","src":"3212:5:87","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":25748,"mutability":"mutable","name":"value","nameLocation":"3239:5:87","nodeType":"VariableDeclaration","scope":25828,"src":"3231:13:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":25747,"name":"uint256","nodeType":"ElementaryTypeName","src":"3231:7:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3195:50:87"},"returnParameters":{"id":25752,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25751,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25828,"src":"3264:12:87","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":25750,"name":"bytes","nodeType":"ElementaryTypeName","src":"3264:5:87","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3263:14:87"},"scope":26046,"src":"3165:696:87","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":25891,"nodeType":"Block","src":"4100:450:87","statements":[{"assignments":[25839],"declarations":[{"constant":false,"id":25839,"mutability":"mutable","name":"success","nameLocation":"4115:7:87","nodeType":"VariableDeclaration","scope":25891,"src":"4110:12:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25838,"name":"bool","nodeType":"ElementaryTypeName","src":"4110:4:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":25845,"initialValue":{"arguments":[{"id":25842,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25831,"src":"4157:6:87","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25843,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25833,"src":"4165:4:87","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":25840,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"4125:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25841,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4138:18:87","memberName":"staticcallNoReturn","nodeType":"MemberAccess","referencedDeclaration":26896,"src":"4125:31:87","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,bytes memory) view returns (bool)"}},"id":25844,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4125:45:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4110:60:87"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":25859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25846,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25839,"src":"4184:7:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":25857,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25847,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"4196:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25848,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4209:14:87","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":26948,"src":"4196:27:87","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":25849,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4196:29:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":25850,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4228:1:87","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4196:33:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":25852,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25831,"src":"4233:6:87","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":25853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4240:4:87","memberName":"code","nodeType":"MemberAccess","src":"4233:11:87","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":25854,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4245:6:87","memberName":"length","nodeType":"MemberAccess","src":"4233:18:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":25855,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4254:1:87","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4233:22:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4196:59:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":25858,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4195:61:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4184:72:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":25865,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25839,"src":"4325:7:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25875,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25871,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"4400:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4413:14:87","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":26948,"src":"4400:27:87","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":25873,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4400:29:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":25874,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4432:1:87","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4400:33:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":25887,"nodeType":"Block","src":"4493:51:87","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25882,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26811,"src":"4514:6:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$26811_$","typeString":"type(library Errors)"}},"id":25884,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4521:10:87","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":26802,"src":"4514:17:87","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":25885,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4514:19:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25886,"nodeType":"RevertStatement","src":"4507:26:87"}]},"id":25888,"nodeType":"IfStatement","src":"4396:148:87","trueBody":{"id":25881,"nodeType":"Block","src":"4435:52:87","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25876,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"4449:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25878,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4462:12:87","memberName":"bubbleRevert","nodeType":"MemberAccess","referencedDeclaration":26962,"src":"4449:25:87","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$__$","typeString":"function () pure"}},"id":25879,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4449:27:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25880,"nodeType":"ExpressionStatement","src":"4449:27:87"}]}},"id":25889,"nodeType":"IfStatement","src":"4321:223:87","trueBody":{"id":25870,"nodeType":"Block","src":"4334:56:87","statements":[{"errorCall":{"arguments":[{"id":25867,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25831,"src":"4372:6:87","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25866,"name":"AddressEmptyCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25668,"src":"4355:16:87","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":25868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4355:24:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25869,"nodeType":"RevertStatement","src":"4348:31:87"}]}},"id":25890,"nodeType":"IfStatement","src":"4180:364:87","trueBody":{"id":25864,"nodeType":"Block","src":"4258:57:87","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25860,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"4279:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4292:10:87","memberName":"returnData","nodeType":"MemberAccess","referencedDeclaration":26956,"src":"4279:23:87","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":25862,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4279:25:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":25837,"id":25863,"nodeType":"Return","src":"4272:32:87"}]}}]},"documentation":{"id":25829,"nodeType":"StructuredDocumentation","src":"3867:128:87","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call."},"id":25892,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"4009:18:87","nodeType":"FunctionDefinition","parameters":{"id":25834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25831,"mutability":"mutable","name":"target","nameLocation":"4036:6:87","nodeType":"VariableDeclaration","scope":25892,"src":"4028:14:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25830,"name":"address","nodeType":"ElementaryTypeName","src":"4028:7:87","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25833,"mutability":"mutable","name":"data","nameLocation":"4057:4:87","nodeType":"VariableDeclaration","scope":25892,"src":"4044:17:87","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":25832,"name":"bytes","nodeType":"ElementaryTypeName","src":"4044:5:87","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4027:35:87"},"returnParameters":{"id":25837,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25836,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25892,"src":"4086:12:87","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":25835,"name":"bytes","nodeType":"ElementaryTypeName","src":"4086:5:87","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4085:14:87"},"scope":26046,"src":"4000:550:87","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":25955,"nodeType":"Block","src":"4788:452:87","statements":[{"assignments":[25903],"declarations":[{"constant":false,"id":25903,"mutability":"mutable","name":"success","nameLocation":"4803:7:87","nodeType":"VariableDeclaration","scope":25955,"src":"4798:12:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25902,"name":"bool","nodeType":"ElementaryTypeName","src":"4798:4:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":25909,"initialValue":{"arguments":[{"id":25906,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25895,"src":"4847:6:87","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":25907,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25897,"src":"4855:4:87","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":25904,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"4813:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25905,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4826:20:87","memberName":"delegatecallNoReturn","nodeType":"MemberAccess","referencedDeclaration":26924,"src":"4813:33:87","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,bytes memory) returns (bool)"}},"id":25908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4813:47:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4798:62:87"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":25923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25910,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25903,"src":"4874:7:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":25921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25911,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"4886:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25912,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4899:14:87","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":26948,"src":"4886:27:87","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":25913,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4886:29:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":25914,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4918:1:87","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4886:33:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":25916,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25895,"src":"4923:6:87","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":25917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4930:4:87","memberName":"code","nodeType":"MemberAccess","src":"4923:11:87","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":25918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4935:6:87","memberName":"length","nodeType":"MemberAccess","src":"4923:18:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":25919,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4944:1:87","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4923:22:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4886:59:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":25922,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4885:61:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4874:72:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":25929,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25903,"src":"5015:7:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25939,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25935,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"5090:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5103:14:87","memberName":"returnDataSize","nodeType":"MemberAccess","referencedDeclaration":26948,"src":"5090:27:87","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":25937,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5090:29:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":25938,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5122:1:87","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5090:33:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":25951,"nodeType":"Block","src":"5183:51:87","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25946,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26811,"src":"5204:6:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$26811_$","typeString":"type(library Errors)"}},"id":25948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5211:10:87","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":26802,"src":"5204:17:87","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":25949,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5204:19:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25950,"nodeType":"RevertStatement","src":"5197:26:87"}]},"id":25952,"nodeType":"IfStatement","src":"5086:148:87","trueBody":{"id":25945,"nodeType":"Block","src":"5125:52:87","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25940,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"5139:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5152:12:87","memberName":"bubbleRevert","nodeType":"MemberAccess","referencedDeclaration":26962,"src":"5139:25:87","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$__$","typeString":"function () pure"}},"id":25943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5139:27:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25944,"nodeType":"ExpressionStatement","src":"5139:27:87"}]}},"id":25953,"nodeType":"IfStatement","src":"5011:223:87","trueBody":{"id":25934,"nodeType":"Block","src":"5024:56:87","statements":[{"errorCall":{"arguments":[{"id":25931,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25895,"src":"5062:6:87","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25930,"name":"AddressEmptyCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25668,"src":"5045:16:87","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":25932,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5045:24:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25933,"nodeType":"RevertStatement","src":"5038:31:87"}]}},"id":25954,"nodeType":"IfStatement","src":"4870:364:87","trueBody":{"id":25928,"nodeType":"Block","src":"4948:57:87","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":25924,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"4969:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4982:10:87","memberName":"returnData","nodeType":"MemberAccess","referencedDeclaration":26956,"src":"4969:23:87","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":25926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4969:25:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":25901,"id":25927,"nodeType":"Return","src":"4962:32:87"}]}}]},"documentation":{"id":25893,"nodeType":"StructuredDocumentation","src":"4556:130:87","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call."},"id":25956,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"4700:20:87","nodeType":"FunctionDefinition","parameters":{"id":25898,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25895,"mutability":"mutable","name":"target","nameLocation":"4729:6:87","nodeType":"VariableDeclaration","scope":25956,"src":"4721:14:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25894,"name":"address","nodeType":"ElementaryTypeName","src":"4721:7:87","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25897,"mutability":"mutable","name":"data","nameLocation":"4750:4:87","nodeType":"VariableDeclaration","scope":25956,"src":"4737:17:87","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":25896,"name":"bytes","nodeType":"ElementaryTypeName","src":"4737:5:87","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4720:35:87"},"returnParameters":{"id":25901,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25900,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":25956,"src":"4774:12:87","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":25899,"name":"bytes","nodeType":"ElementaryTypeName","src":"4774:5:87","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4773:14:87"},"scope":26046,"src":"4691:549:87","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":26010,"nodeType":"Block","src":"5760:513:87","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":25980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":25968,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25961,"src":"5936:7:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":25978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":25969,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25963,"src":"5948:10:87","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":25970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5959:6:87","memberName":"length","nodeType":"MemberAccess","src":"5948:17:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":25971,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5968:1:87","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5948:21:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":25973,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25959,"src":"5973:6:87","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":25974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5980:4:87","memberName":"code","nodeType":"MemberAccess","src":"5973:11:87","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":25975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5985:6:87","memberName":"length","nodeType":"MemberAccess","src":"5973:18:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":25976,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5994:1:87","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5973:22:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5948:47:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":25979,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5947:49:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5936:60:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"id":25984,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25961,"src":"6050:7:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":25993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":25990,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25963,"src":"6125:10:87","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":25991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6136:6:87","memberName":"length","nodeType":"MemberAccess","src":"6125:17:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":25992,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6145:1:87","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6125:21:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":26006,"nodeType":"Block","src":"6216:51:87","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":26001,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26811,"src":"6237:6:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$26811_$","typeString":"type(library Errors)"}},"id":26003,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6244:10:87","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":26802,"src":"6237:17:87","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":26004,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6237:19:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":26005,"nodeType":"RevertStatement","src":"6230:26:87"}]},"id":26007,"nodeType":"IfStatement","src":"6121:146:87","trueBody":{"id":26000,"nodeType":"Block","src":"6148:62:87","statements":[{"expression":{"arguments":[{"id":25997,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25963,"src":"6188:10:87","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":25994,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"6162:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":25996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6175:12:87","memberName":"bubbleRevert","nodeType":"MemberAccess","referencedDeclaration":26969,"src":"6162:25:87","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":25998,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6162:37:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":25999,"nodeType":"ExpressionStatement","src":"6162:37:87"}]}},"id":26008,"nodeType":"IfStatement","src":"6046:221:87","trueBody":{"id":25989,"nodeType":"Block","src":"6059:56:87","statements":[{"errorCall":{"arguments":[{"id":25986,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25959,"src":"6097:6:87","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":25985,"name":"AddressEmptyCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25668,"src":"6080:16:87","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":25987,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6080:24:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":25988,"nodeType":"RevertStatement","src":"6073:31:87"}]}},"id":26009,"nodeType":"IfStatement","src":"5932:335:87","trueBody":{"id":25983,"nodeType":"Block","src":"5998:42:87","statements":[{"expression":{"id":25981,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25963,"src":"6019:10:87","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":25967,"id":25982,"nodeType":"Return","src":"6012:17:87"}]}}]},"documentation":{"id":25957,"nodeType":"StructuredDocumentation","src":"5246:351:87","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.\n NOTE: This function is DEPRECATED and may be removed in the next major release."},"id":26011,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResultFromTarget","nameLocation":"5611:26:87","nodeType":"FunctionDefinition","parameters":{"id":25964,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25959,"mutability":"mutable","name":"target","nameLocation":"5655:6:87","nodeType":"VariableDeclaration","scope":26011,"src":"5647:14:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":25958,"name":"address","nodeType":"ElementaryTypeName","src":"5647:7:87","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25961,"mutability":"mutable","name":"success","nameLocation":"5676:7:87","nodeType":"VariableDeclaration","scope":26011,"src":"5671:12:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":25960,"name":"bool","nodeType":"ElementaryTypeName","src":"5671:4:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":25963,"mutability":"mutable","name":"returndata","nameLocation":"5706:10:87","nodeType":"VariableDeclaration","scope":26011,"src":"5693:23:87","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":25962,"name":"bytes","nodeType":"ElementaryTypeName","src":"5693:5:87","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5637:85:87"},"returnParameters":{"id":25967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":25966,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26011,"src":"5746:12:87","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":25965,"name":"bytes","nodeType":"ElementaryTypeName","src":"5746:5:87","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5745:14:87"},"scope":26046,"src":"5602:671:87","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":26044,"nodeType":"Block","src":"6577:223:87","statements":[{"condition":{"id":26021,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26014,"src":"6591:7:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26028,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":26025,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26016,"src":"6652:10:87","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":26026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6663:6:87","memberName":"length","nodeType":"MemberAccess","src":"6652:17:87","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":26027,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6672:1:87","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6652:21:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":26041,"nodeType":"Block","src":"6743:51:87","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":26036,"name":"Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26811,"src":"6764:6:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Errors_$26811_$","typeString":"type(library Errors)"}},"id":26038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6771:10:87","memberName":"FailedCall","nodeType":"MemberAccess","referencedDeclaration":26802,"src":"6764:17:87","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":26039,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6764:19:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":26040,"nodeType":"RevertStatement","src":"6757:26:87"}]},"id":26042,"nodeType":"IfStatement","src":"6648:146:87","trueBody":{"id":26035,"nodeType":"Block","src":"6675:62:87","statements":[{"expression":{"arguments":[{"id":26032,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26016,"src":"6715:10:87","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":26029,"name":"LowLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26970,"src":"6689:12:87","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_LowLevelCall_$26970_$","typeString":"type(library LowLevelCall)"}},"id":26031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6702:12:87","memberName":"bubbleRevert","nodeType":"MemberAccess","referencedDeclaration":26969,"src":"6689:25:87","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory) pure"}},"id":26033,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6689:37:87","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":26034,"nodeType":"ExpressionStatement","src":"6689:37:87"}]}},"id":26043,"nodeType":"IfStatement","src":"6587:207:87","trueBody":{"id":26024,"nodeType":"Block","src":"6600:42:87","statements":[{"expression":{"id":26022,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26016,"src":"6621:10:87","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":26020,"id":26023,"nodeType":"Return","src":"6614:17:87"}]}}]},"documentation":{"id":26012,"nodeType":"StructuredDocumentation","src":"6279:191:87","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":26045,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"6484:16:87","nodeType":"FunctionDefinition","parameters":{"id":26017,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26014,"mutability":"mutable","name":"success","nameLocation":"6506:7:87","nodeType":"VariableDeclaration","scope":26045,"src":"6501:12:87","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":26013,"name":"bool","nodeType":"ElementaryTypeName","src":"6501:4:87","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":26016,"mutability":"mutable","name":"returndata","nameLocation":"6528:10:87","nodeType":"VariableDeclaration","scope":26045,"src":"6515:23:87","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26015,"name":"bytes","nodeType":"ElementaryTypeName","src":"6515:5:87","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6500:39:87"},"returnParameters":{"id":26020,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26019,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26045,"src":"6563:12:87","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26018,"name":"bytes","nodeType":"ElementaryTypeName","src":"6563:5:87","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6562:14:87"},"scope":26046,"src":"6475:325:87","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":26047,"src":"282:6520:87","usedErrors":[25668],"usedEvents":[]}],"src":"101:6702:87"},"id":87},"@openzeppelin/contracts/utils/Bytes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Bytes.sol","exportedSymbols":{"Bytes":[26759],"Math":[35187]},"id":26760,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":26048,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"99:24:88"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"./math/Math.sol","id":26050,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":26760,"sourceUnit":35188,"src":"125:37:88","symbolAliases":[{"foreign":{"id":26049,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"133:4:88","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Bytes","contractDependencies":[],"contractKind":"library","documentation":{"id":26051,"nodeType":"StructuredDocumentation","src":"164:33:88","text":" @dev Bytes operations."},"fullyImplemented":true,"id":26759,"linearizedBaseContracts":[26759],"name":"Bytes","nameLocation":"206:5:88","nodeType":"ContractDefinition","nodes":[{"body":{"id":26067,"nodeType":"Block","src":"687:45:88","statements":[{"expression":{"arguments":[{"id":26062,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26054,"src":"712:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":26063,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26056,"src":"720:1:88","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},{"hexValue":"30","id":26064,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"723:1:88","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes1","typeString":"bytes1"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":26061,"name":"indexOf","nodeType":"Identifier","overloadedDeclarations":[26068,26117],"referencedDeclaration":26117,"src":"704:7:88","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_bytes1_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bytes memory,bytes1,uint256) pure returns (uint256)"}},"id":26065,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"704:21:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26060,"id":26066,"nodeType":"Return","src":"697:28:88"}]},"documentation":{"id":26052,"nodeType":"StructuredDocumentation","src":"218:384:88","text":" @dev Forward search for `s` in `buffer`\n * If `s` is present in the buffer, returns the index of the first instance\n * If `s` is not present in the buffer, returns type(uint256).max\n NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf[Javascript's `Array.indexOf`]"},"id":26068,"implemented":true,"kind":"function","modifiers":[],"name":"indexOf","nameLocation":"616:7:88","nodeType":"FunctionDefinition","parameters":{"id":26057,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26054,"mutability":"mutable","name":"buffer","nameLocation":"637:6:88","nodeType":"VariableDeclaration","scope":26068,"src":"624:19:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26053,"name":"bytes","nodeType":"ElementaryTypeName","src":"624:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":26056,"mutability":"mutable","name":"s","nameLocation":"652:1:88","nodeType":"VariableDeclaration","scope":26068,"src":"645:8:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":26055,"name":"bytes1","nodeType":"ElementaryTypeName","src":"645:6:88","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"623:31:88"},"returnParameters":{"id":26060,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26059,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26068,"src":"678:7:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26058,"name":"uint256","nodeType":"ElementaryTypeName","src":"678:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"677:9:88"},"scope":26759,"src":"607:125:88","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26116,"nodeType":"Block","src":"1286:246:88","statements":[{"assignments":[26081],"declarations":[{"constant":false,"id":26081,"mutability":"mutable","name":"length","nameLocation":"1304:6:88","nodeType":"VariableDeclaration","scope":26116,"src":"1296:14:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26080,"name":"uint256","nodeType":"ElementaryTypeName","src":"1296:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":26084,"initialValue":{"expression":{"id":26082,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26071,"src":"1313:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":26083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1320:6:88","memberName":"length","nodeType":"MemberAccess","src":"1313:13:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1296:30:88"},{"body":{"id":26108,"nodeType":"Block","src":"1375:117:88","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":26103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":26098,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26071,"src":"1423:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":26099,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26086,"src":"1431:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26097,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26758,"src":"1400:22:88","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":26100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1400:33:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":26096,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1393:6:88","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":26095,"name":"bytes1","nodeType":"ElementaryTypeName","src":"1393:6:88","typeDescriptions":{}}},"id":26101,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1393:41:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":26102,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26073,"src":"1438:1:88","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"1393:46:88","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26107,"nodeType":"IfStatement","src":"1389:93:88","trueBody":{"id":26106,"nodeType":"Block","src":"1441:41:88","statements":[{"expression":{"id":26104,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26086,"src":"1466:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26079,"id":26105,"nodeType":"Return","src":"1459:8:88"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26089,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26086,"src":"1358:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":26090,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26081,"src":"1362:6:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1358:10:88","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26109,"initializationExpression":{"assignments":[26086],"declarations":[{"constant":false,"id":26086,"mutability":"mutable","name":"i","nameLocation":"1349:1:88","nodeType":"VariableDeclaration","scope":26109,"src":"1341:9:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26085,"name":"uint256","nodeType":"ElementaryTypeName","src":"1341:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":26088,"initialValue":{"id":26087,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26075,"src":"1353:3:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1341:15:88"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":26093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"1370:3:88","subExpression":{"id":26092,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26086,"src":"1372:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26094,"nodeType":"ExpressionStatement","src":"1370:3:88"},"nodeType":"ForStatement","src":"1336:156:88"},{"expression":{"expression":{"arguments":[{"id":26112,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1513:7:88","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26111,"name":"uint256","nodeType":"ElementaryTypeName","src":"1513:7:88","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":26110,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1508:4:88","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":26113,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1508:13:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":26114,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1522:3:88","memberName":"max","nodeType":"MemberAccess","src":"1508:17:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26079,"id":26115,"nodeType":"Return","src":"1501:24:88"}]},"documentation":{"id":26069,"nodeType":"StructuredDocumentation","src":"738:450:88","text":" @dev Forward search for `s` in `buffer` starting at position `pos`\n * If `s` is present in the buffer (at or after `pos`), returns the index of the next instance\n * If `s` is not present in the buffer (at or after `pos`), returns type(uint256).max\n NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf[Javascript's `Array.indexOf`]"},"id":26117,"implemented":true,"kind":"function","modifiers":[],"name":"indexOf","nameLocation":"1202:7:88","nodeType":"FunctionDefinition","parameters":{"id":26076,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26071,"mutability":"mutable","name":"buffer","nameLocation":"1223:6:88","nodeType":"VariableDeclaration","scope":26117,"src":"1210:19:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26070,"name":"bytes","nodeType":"ElementaryTypeName","src":"1210:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":26073,"mutability":"mutable","name":"s","nameLocation":"1238:1:88","nodeType":"VariableDeclaration","scope":26117,"src":"1231:8:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":26072,"name":"bytes1","nodeType":"ElementaryTypeName","src":"1231:6:88","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":26075,"mutability":"mutable","name":"pos","nameLocation":"1249:3:88","nodeType":"VariableDeclaration","scope":26117,"src":"1241:11:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26074,"name":"uint256","nodeType":"ElementaryTypeName","src":"1241:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1209:44:88"},"returnParameters":{"id":26079,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26078,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26117,"src":"1277:7:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26077,"name":"uint256","nodeType":"ElementaryTypeName","src":"1277:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1276:9:88"},"scope":26759,"src":"1193:339:88","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26137,"nodeType":"Block","src":"2019:65:88","statements":[{"expression":{"arguments":[{"id":26128,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26120,"src":"2048:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":26129,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26122,"src":"2056:1:88","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},{"expression":{"arguments":[{"id":26132,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2064:7:88","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26131,"name":"uint256","nodeType":"ElementaryTypeName","src":"2064:7:88","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":26130,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2059:4:88","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":26133,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2059:13:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":26134,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2073:3:88","memberName":"max","nodeType":"MemberAccess","src":"2059:17:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes1","typeString":"bytes1"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26127,"name":"lastIndexOf","nodeType":"Identifier","overloadedDeclarations":[26138,26200],"referencedDeclaration":26200,"src":"2036:11:88","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_bytes1_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bytes memory,bytes1,uint256) pure returns (uint256)"}},"id":26135,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2036:41:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26126,"id":26136,"nodeType":"Return","src":"2029:48:88"}]},"documentation":{"id":26118,"nodeType":"StructuredDocumentation","src":"1538:392:88","text":" @dev Backward search for `s` in `buffer`\n * If `s` is present in the buffer, returns the index of the last instance\n * If `s` is not present in the buffer, returns type(uint256).max\n NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf[Javascript's `Array.lastIndexOf`]"},"id":26138,"implemented":true,"kind":"function","modifiers":[],"name":"lastIndexOf","nameLocation":"1944:11:88","nodeType":"FunctionDefinition","parameters":{"id":26123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26120,"mutability":"mutable","name":"buffer","nameLocation":"1969:6:88","nodeType":"VariableDeclaration","scope":26138,"src":"1956:19:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26119,"name":"bytes","nodeType":"ElementaryTypeName","src":"1956:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":26122,"mutability":"mutable","name":"s","nameLocation":"1984:1:88","nodeType":"VariableDeclaration","scope":26138,"src":"1977:8:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":26121,"name":"bytes1","nodeType":"ElementaryTypeName","src":"1977:6:88","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"1955:31:88"},"returnParameters":{"id":26126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26125,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26138,"src":"2010:7:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26124,"name":"uint256","nodeType":"ElementaryTypeName","src":"2010:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2009:9:88"},"scope":26759,"src":"1935:149:88","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26199,"nodeType":"Block","src":"2657:348:88","statements":[{"id":26198,"nodeType":"UncheckedBlock","src":"2667:332:88","statements":[{"assignments":[26151],"declarations":[{"constant":false,"id":26151,"mutability":"mutable","name":"length","nameLocation":"2699:6:88","nodeType":"VariableDeclaration","scope":26198,"src":"2691:14:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26150,"name":"uint256","nodeType":"ElementaryTypeName","src":"2691:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":26154,"initialValue":{"expression":{"id":26152,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26141,"src":"2708:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":26153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2715:6:88","memberName":"length","nodeType":"MemberAccess","src":"2708:13:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2691:30:88"},{"body":{"id":26190,"nodeType":"Block","src":"2810:141:88","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":26183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":26176,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26141,"src":"2862:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26177,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26156,"src":"2870:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":26178,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2874:1:88","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2870:5:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26175,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26758,"src":"2839:22:88","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":26180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2839:37:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":26174,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2832:6:88","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":26173,"name":"bytes1","nodeType":"ElementaryTypeName","src":"2832:6:88","typeDescriptions":{}}},"id":26181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2832:45:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":26182,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26143,"src":"2881:1:88","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"2832:50:88","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26189,"nodeType":"IfStatement","src":"2828:109:88","trueBody":{"id":26188,"nodeType":"Block","src":"2884:53:88","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26184,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26156,"src":"2913:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":26185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2917:1:88","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2913:5:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26149,"id":26187,"nodeType":"Return","src":"2906:12:88"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26169,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26167,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26156,"src":"2798:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":26168,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2802:1:88","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2798:5:88","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26191,"initializationExpression":{"assignments":[26156],"declarations":[{"constant":false,"id":26156,"mutability":"mutable","name":"i","nameLocation":"2748:1:88","nodeType":"VariableDeclaration","scope":26191,"src":"2740:9:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26155,"name":"uint256","nodeType":"ElementaryTypeName","src":"2740:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":26166,"initialValue":{"arguments":[{"arguments":[{"id":26161,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26145,"src":"2780:3:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"31","id":26162,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2785:1:88","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"expression":{"id":26159,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"2761:4:88","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":26160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2766:13:88","memberName":"saturatingAdd","nodeType":"MemberAccess","referencedDeclaration":33757,"src":"2761:18:88","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":26163,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2761:26:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26164,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26151,"src":"2789:6:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":26157,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"2752:4:88","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":26158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2757:3:88","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":33872,"src":"2752:8:88","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":26165,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2752:44:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2740:56:88"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":26171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"2805:3:88","subExpression":{"id":26170,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26156,"src":"2807:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26172,"nodeType":"ExpressionStatement","src":"2805:3:88"},"nodeType":"ForStatement","src":"2735:216:88"},{"expression":{"expression":{"arguments":[{"id":26194,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2976:7:88","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26193,"name":"uint256","nodeType":"ElementaryTypeName","src":"2976:7:88","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":26192,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2971:4:88","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":26195,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2971:13:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":26196,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2985:3:88","memberName":"max","nodeType":"MemberAccess","src":"2971:17:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26149,"id":26197,"nodeType":"Return","src":"2964:24:88"}]}]},"documentation":{"id":26139,"nodeType":"StructuredDocumentation","src":"2090:465:88","text":" @dev Backward search for `s` in `buffer` starting at position `pos`\n * If `s` is present in the buffer (at or before `pos`), returns the index of the previous instance\n * If `s` is not present in the buffer (at or before `pos`), returns type(uint256).max\n NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf[Javascript's `Array.lastIndexOf`]"},"id":26200,"implemented":true,"kind":"function","modifiers":[],"name":"lastIndexOf","nameLocation":"2569:11:88","nodeType":"FunctionDefinition","parameters":{"id":26146,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26141,"mutability":"mutable","name":"buffer","nameLocation":"2594:6:88","nodeType":"VariableDeclaration","scope":26200,"src":"2581:19:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26140,"name":"bytes","nodeType":"ElementaryTypeName","src":"2581:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":26143,"mutability":"mutable","name":"s","nameLocation":"2609:1:88","nodeType":"VariableDeclaration","scope":26200,"src":"2602:8:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":26142,"name":"bytes1","nodeType":"ElementaryTypeName","src":"2602:6:88","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":26145,"mutability":"mutable","name":"pos","nameLocation":"2620:3:88","nodeType":"VariableDeclaration","scope":26200,"src":"2612:11:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26144,"name":"uint256","nodeType":"ElementaryTypeName","src":"2612:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2580:44:88"},"returnParameters":{"id":26149,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26148,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26200,"src":"2648:7:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26147,"name":"uint256","nodeType":"ElementaryTypeName","src":"2648:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2647:9:88"},"scope":26759,"src":"2560:445:88","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26217,"nodeType":"Block","src":"3416:59:88","statements":[{"expression":{"arguments":[{"id":26211,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26203,"src":"3439:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":26212,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26205,"src":"3447:5:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":26213,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26203,"src":"3454:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":26214,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3461:6:88","memberName":"length","nodeType":"MemberAccess","src":"3454:13:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26210,"name":"slice","nodeType":"Identifier","overloadedDeclarations":[26218,26260],"referencedDeclaration":26260,"src":"3433:5:88","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (bytes memory,uint256,uint256) pure returns (bytes memory)"}},"id":26215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3433:35:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":26209,"id":26216,"nodeType":"Return","src":"3426:42:88"}]},"documentation":{"id":26201,"nodeType":"StructuredDocumentation","src":"3011:312:88","text":" @dev Copies the content of `buffer`, from `start` (included) to the end of `buffer` into a new bytes object in\n memory.\n NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice[Javascript's `Array.slice`]"},"id":26218,"implemented":true,"kind":"function","modifiers":[],"name":"slice","nameLocation":"3337:5:88","nodeType":"FunctionDefinition","parameters":{"id":26206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26203,"mutability":"mutable","name":"buffer","nameLocation":"3356:6:88","nodeType":"VariableDeclaration","scope":26218,"src":"3343:19:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26202,"name":"bytes","nodeType":"ElementaryTypeName","src":"3343:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":26205,"mutability":"mutable","name":"start","nameLocation":"3372:5:88","nodeType":"VariableDeclaration","scope":26218,"src":"3364:13:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26204,"name":"uint256","nodeType":"ElementaryTypeName","src":"3364:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3342:36:88"},"returnParameters":{"id":26209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26208,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26218,"src":"3402:12:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26207,"name":"bytes","nodeType":"ElementaryTypeName","src":"3402:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3401:14:88"},"scope":26759,"src":"3328:147:88","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26259,"nodeType":"Block","src":"3959:347:88","statements":[{"expression":{"id":26237,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26230,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26225,"src":"3989:3:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":26233,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26225,"src":"4004:3:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":26234,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26221,"src":"4009:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":26235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4016:6:88","memberName":"length","nodeType":"MemberAccess","src":"4009:13:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":26231,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"3995:4:88","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":26232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4000:3:88","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":33872,"src":"3995:8:88","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":26236,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3995:28:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3989:34:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26238,"nodeType":"ExpressionStatement","src":"3989:34:88"},{"expression":{"id":26245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26239,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26223,"src":"4033:5:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":26242,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26223,"src":"4050:5:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26243,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26225,"src":"4057:3:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":26240,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"4041:4:88","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":26241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4046:3:88","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":33872,"src":"4041:8:88","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":26244,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4041:20:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4033:28:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26246,"nodeType":"ExpressionStatement","src":"4033:28:88"},{"assignments":[26248],"declarations":[{"constant":false,"id":26248,"mutability":"mutable","name":"result","nameLocation":"4114:6:88","nodeType":"VariableDeclaration","scope":26259,"src":"4101:19:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26247,"name":"bytes","nodeType":"ElementaryTypeName","src":"4101:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":26255,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26253,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26251,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26225,"src":"4133:3:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":26252,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26223,"src":"4139:5:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4133:11:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26250,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"4123:9:88","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":26249,"name":"bytes","nodeType":"ElementaryTypeName","src":"4127:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":26254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4123:22:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"4101:44:88"},{"AST":{"nativeSrc":"4180:96:88","nodeType":"YulBlock","src":"4180:96:88","statements":[{"expression":{"arguments":[{"arguments":[{"name":"result","nativeSrc":"4204:6:88","nodeType":"YulIdentifier","src":"4204:6:88"},{"kind":"number","nativeSrc":"4212:4:88","nodeType":"YulLiteral","src":"4212:4:88","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4200:3:88","nodeType":"YulIdentifier","src":"4200:3:88"},"nativeSrc":"4200:17:88","nodeType":"YulFunctionCall","src":"4200:17:88"},{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"4227:6:88","nodeType":"YulIdentifier","src":"4227:6:88"},{"kind":"number","nativeSrc":"4235:4:88","nodeType":"YulLiteral","src":"4235:4:88","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4223:3:88","nodeType":"YulIdentifier","src":"4223:3:88"},"nativeSrc":"4223:17:88","nodeType":"YulFunctionCall","src":"4223:17:88"},{"name":"start","nativeSrc":"4242:5:88","nodeType":"YulIdentifier","src":"4242:5:88"}],"functionName":{"name":"add","nativeSrc":"4219:3:88","nodeType":"YulIdentifier","src":"4219:3:88"},"nativeSrc":"4219:29:88","nodeType":"YulFunctionCall","src":"4219:29:88"},{"arguments":[{"name":"end","nativeSrc":"4254:3:88","nodeType":"YulIdentifier","src":"4254:3:88"},{"name":"start","nativeSrc":"4259:5:88","nodeType":"YulIdentifier","src":"4259:5:88"}],"functionName":{"name":"sub","nativeSrc":"4250:3:88","nodeType":"YulIdentifier","src":"4250:3:88"},"nativeSrc":"4250:15:88","nodeType":"YulFunctionCall","src":"4250:15:88"}],"functionName":{"name":"mcopy","nativeSrc":"4194:5:88","nodeType":"YulIdentifier","src":"4194:5:88"},"nativeSrc":"4194:72:88","nodeType":"YulFunctionCall","src":"4194:72:88"},"nativeSrc":"4194:72:88","nodeType":"YulExpressionStatement","src":"4194:72:88"}]},"evmVersion":"prague","externalReferences":[{"declaration":26221,"isOffset":false,"isSlot":false,"src":"4227:6:88","valueSize":1},{"declaration":26225,"isOffset":false,"isSlot":false,"src":"4254:3:88","valueSize":1},{"declaration":26248,"isOffset":false,"isSlot":false,"src":"4204:6:88","valueSize":1},{"declaration":26223,"isOffset":false,"isSlot":false,"src":"4242:5:88","valueSize":1},{"declaration":26223,"isOffset":false,"isSlot":false,"src":"4259:5:88","valueSize":1}],"flags":["memory-safe"],"id":26256,"nodeType":"InlineAssembly","src":"4155:121:88"},{"expression":{"id":26257,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26248,"src":"4293:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":26229,"id":26258,"nodeType":"Return","src":"4286:13:88"}]},"documentation":{"id":26219,"nodeType":"StructuredDocumentation","src":"3481:372:88","text":" @dev Copies the content of `buffer`, from `start` (included) to `end` (excluded) into a new bytes object in\n memory. The `end` argument is truncated to the length of the `buffer`.\n NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/slice[Javascript's `Array.slice`]"},"id":26260,"implemented":true,"kind":"function","modifiers":[],"name":"slice","nameLocation":"3867:5:88","nodeType":"FunctionDefinition","parameters":{"id":26226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26221,"mutability":"mutable","name":"buffer","nameLocation":"3886:6:88","nodeType":"VariableDeclaration","scope":26260,"src":"3873:19:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26220,"name":"bytes","nodeType":"ElementaryTypeName","src":"3873:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":26223,"mutability":"mutable","name":"start","nameLocation":"3902:5:88","nodeType":"VariableDeclaration","scope":26260,"src":"3894:13:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26222,"name":"uint256","nodeType":"ElementaryTypeName","src":"3894:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":26225,"mutability":"mutable","name":"end","nameLocation":"3917:3:88","nodeType":"VariableDeclaration","scope":26260,"src":"3909:11:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26224,"name":"uint256","nodeType":"ElementaryTypeName","src":"3909:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3872:49:88"},"returnParameters":{"id":26229,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26228,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26260,"src":"3945:12:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26227,"name":"bytes","nodeType":"ElementaryTypeName","src":"3945:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3944:14:88"},"scope":26759,"src":"3858:448:88","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26277,"nodeType":"Block","src":"4837:60:88","statements":[{"expression":{"arguments":[{"id":26271,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26263,"src":"4861:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":26272,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26265,"src":"4869:5:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":26273,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26263,"src":"4876:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":26274,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4883:6:88","memberName":"length","nodeType":"MemberAccess","src":"4876:13:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26270,"name":"splice","nodeType":"Identifier","overloadedDeclarations":[26278,26311],"referencedDeclaration":26311,"src":"4854:6:88","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (bytes memory,uint256,uint256) pure returns (bytes memory)"}},"id":26275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4854:36:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":26269,"id":26276,"nodeType":"Return","src":"4847:43:88"}]},"documentation":{"id":26261,"nodeType":"StructuredDocumentation","src":"4312:431:88","text":" @dev Moves the content of `buffer`, from `start` (included) to the end of `buffer` to the start of that buffer.\n NOTE: This function modifies the provided buffer in place. If you need to preserve the original buffer, use {slice} instead\n NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice[Javascript's `Array.splice`]"},"id":26278,"implemented":true,"kind":"function","modifiers":[],"name":"splice","nameLocation":"4757:6:88","nodeType":"FunctionDefinition","parameters":{"id":26266,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26263,"mutability":"mutable","name":"buffer","nameLocation":"4777:6:88","nodeType":"VariableDeclaration","scope":26278,"src":"4764:19:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26262,"name":"bytes","nodeType":"ElementaryTypeName","src":"4764:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":26265,"mutability":"mutable","name":"start","nameLocation":"4793:5:88","nodeType":"VariableDeclaration","scope":26278,"src":"4785:13:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26264,"name":"uint256","nodeType":"ElementaryTypeName","src":"4785:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4763:36:88"},"returnParameters":{"id":26269,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26268,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26278,"src":"4823:12:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26267,"name":"bytes","nodeType":"ElementaryTypeName","src":"4823:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4822:14:88"},"scope":26759,"src":"4748:149:88","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26310,"nodeType":"Block","src":"5506:337:88","statements":[{"expression":{"id":26297,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26290,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26285,"src":"5536:3:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":26293,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26285,"src":"5551:3:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":26294,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26281,"src":"5556:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":26295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5563:6:88","memberName":"length","nodeType":"MemberAccess","src":"5556:13:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":26291,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"5542:4:88","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":26292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5547:3:88","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":33872,"src":"5542:8:88","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":26296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5542:28:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5536:34:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26298,"nodeType":"ExpressionStatement","src":"5536:34:88"},{"expression":{"id":26305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26299,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26283,"src":"5580:5:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":26302,"name":"start","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26283,"src":"5597:5:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":26303,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26285,"src":"5604:3:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":26300,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"5588:4:88","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":26301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5593:3:88","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":33872,"src":"5588:8:88","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":26304,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5588:20:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5580:28:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26306,"nodeType":"ExpressionStatement","src":"5580:28:88"},{"AST":{"nativeSrc":"5673:140:88","nodeType":"YulBlock","src":"5673:140:88","statements":[{"expression":{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"5697:6:88","nodeType":"YulIdentifier","src":"5697:6:88"},{"kind":"number","nativeSrc":"5705:4:88","nodeType":"YulLiteral","src":"5705:4:88","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5693:3:88","nodeType":"YulIdentifier","src":"5693:3:88"},"nativeSrc":"5693:17:88","nodeType":"YulFunctionCall","src":"5693:17:88"},{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"5720:6:88","nodeType":"YulIdentifier","src":"5720:6:88"},{"kind":"number","nativeSrc":"5728:4:88","nodeType":"YulLiteral","src":"5728:4:88","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5716:3:88","nodeType":"YulIdentifier","src":"5716:3:88"},"nativeSrc":"5716:17:88","nodeType":"YulFunctionCall","src":"5716:17:88"},{"name":"start","nativeSrc":"5735:5:88","nodeType":"YulIdentifier","src":"5735:5:88"}],"functionName":{"name":"add","nativeSrc":"5712:3:88","nodeType":"YulIdentifier","src":"5712:3:88"},"nativeSrc":"5712:29:88","nodeType":"YulFunctionCall","src":"5712:29:88"},{"arguments":[{"name":"end","nativeSrc":"5747:3:88","nodeType":"YulIdentifier","src":"5747:3:88"},{"name":"start","nativeSrc":"5752:5:88","nodeType":"YulIdentifier","src":"5752:5:88"}],"functionName":{"name":"sub","nativeSrc":"5743:3:88","nodeType":"YulIdentifier","src":"5743:3:88"},"nativeSrc":"5743:15:88","nodeType":"YulFunctionCall","src":"5743:15:88"}],"functionName":{"name":"mcopy","nativeSrc":"5687:5:88","nodeType":"YulIdentifier","src":"5687:5:88"},"nativeSrc":"5687:72:88","nodeType":"YulFunctionCall","src":"5687:72:88"},"nativeSrc":"5687:72:88","nodeType":"YulExpressionStatement","src":"5687:72:88"},{"expression":{"arguments":[{"name":"buffer","nativeSrc":"5779:6:88","nodeType":"YulIdentifier","src":"5779:6:88"},{"arguments":[{"name":"end","nativeSrc":"5791:3:88","nodeType":"YulIdentifier","src":"5791:3:88"},{"name":"start","nativeSrc":"5796:5:88","nodeType":"YulIdentifier","src":"5796:5:88"}],"functionName":{"name":"sub","nativeSrc":"5787:3:88","nodeType":"YulIdentifier","src":"5787:3:88"},"nativeSrc":"5787:15:88","nodeType":"YulFunctionCall","src":"5787:15:88"}],"functionName":{"name":"mstore","nativeSrc":"5772:6:88","nodeType":"YulIdentifier","src":"5772:6:88"},"nativeSrc":"5772:31:88","nodeType":"YulFunctionCall","src":"5772:31:88"},"nativeSrc":"5772:31:88","nodeType":"YulExpressionStatement","src":"5772:31:88"}]},"evmVersion":"prague","externalReferences":[{"declaration":26281,"isOffset":false,"isSlot":false,"src":"5697:6:88","valueSize":1},{"declaration":26281,"isOffset":false,"isSlot":false,"src":"5720:6:88","valueSize":1},{"declaration":26281,"isOffset":false,"isSlot":false,"src":"5779:6:88","valueSize":1},{"declaration":26285,"isOffset":false,"isSlot":false,"src":"5747:3:88","valueSize":1},{"declaration":26285,"isOffset":false,"isSlot":false,"src":"5791:3:88","valueSize":1},{"declaration":26283,"isOffset":false,"isSlot":false,"src":"5735:5:88","valueSize":1},{"declaration":26283,"isOffset":false,"isSlot":false,"src":"5752:5:88","valueSize":1},{"declaration":26283,"isOffset":false,"isSlot":false,"src":"5796:5:88","valueSize":1}],"flags":["memory-safe"],"id":26307,"nodeType":"InlineAssembly","src":"5648:165:88"},{"expression":{"id":26308,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26281,"src":"5830:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":26289,"id":26309,"nodeType":"Return","src":"5823:13:88"}]},"documentation":{"id":26279,"nodeType":"StructuredDocumentation","src":"4903:496:88","text":" @dev Moves the content of `buffer`, from `start` (included) to end (excluded) to the start of that buffer. The\n `end` argument is truncated to the length of the `buffer`.\n NOTE: This function modifies the provided buffer in place. If you need to preserve the original buffer, use {slice} instead\n NOTE: replicates the behavior of https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice[Javascript's `Array.splice`]"},"id":26311,"implemented":true,"kind":"function","modifiers":[],"name":"splice","nameLocation":"5413:6:88","nodeType":"FunctionDefinition","parameters":{"id":26286,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26281,"mutability":"mutable","name":"buffer","nameLocation":"5433:6:88","nodeType":"VariableDeclaration","scope":26311,"src":"5420:19:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26280,"name":"bytes","nodeType":"ElementaryTypeName","src":"5420:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":26283,"mutability":"mutable","name":"start","nameLocation":"5449:5:88","nodeType":"VariableDeclaration","scope":26311,"src":"5441:13:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26282,"name":"uint256","nodeType":"ElementaryTypeName","src":"5441:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":26285,"mutability":"mutable","name":"end","nameLocation":"5464:3:88","nodeType":"VariableDeclaration","scope":26311,"src":"5456:11:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26284,"name":"uint256","nodeType":"ElementaryTypeName","src":"5456:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5419:49:88"},"returnParameters":{"id":26289,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26288,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26311,"src":"5492:12:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26287,"name":"bytes","nodeType":"ElementaryTypeName","src":"5492:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5491:14:88"},"scope":26759,"src":"5404:439:88","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26383,"nodeType":"Block","src":"6380:563:88","statements":[{"assignments":[26321],"declarations":[{"constant":false,"id":26321,"mutability":"mutable","name":"length","nameLocation":"6398:6:88","nodeType":"VariableDeclaration","scope":26383,"src":"6390:14:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26320,"name":"uint256","nodeType":"ElementaryTypeName","src":"6390:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":26323,"initialValue":{"hexValue":"30","id":26322,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6407:1:88","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6390:18:88"},{"body":{"id":26342,"nodeType":"Block","src":"6463:52:88","statements":[{"expression":{"id":26340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26335,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26321,"src":"6477:6:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"expression":{"baseExpression":{"id":26336,"name":"buffers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26315,"src":"6487:7:88","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":26338,"indexExpression":{"id":26337,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26325,"src":"6495:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6487:10:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":26339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6498:6:88","memberName":"length","nodeType":"MemberAccess","src":"6487:17:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6477:27:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26341,"nodeType":"ExpressionStatement","src":"6477:27:88"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26328,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26325,"src":"6438:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":26329,"name":"buffers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26315,"src":"6442:7:88","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":26330,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6450:6:88","memberName":"length","nodeType":"MemberAccess","src":"6442:14:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6438:18:88","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26343,"initializationExpression":{"assignments":[26325],"declarations":[{"constant":false,"id":26325,"mutability":"mutable","name":"i","nameLocation":"6431:1:88","nodeType":"VariableDeclaration","scope":26343,"src":"6423:9:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26324,"name":"uint256","nodeType":"ElementaryTypeName","src":"6423:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":26327,"initialValue":{"hexValue":"30","id":26326,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6435:1:88","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6423:13:88"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":26333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6458:3:88","subExpression":{"id":26332,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26325,"src":"6460:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26334,"nodeType":"ExpressionStatement","src":"6458:3:88"},"nodeType":"ForStatement","src":"6418:97:88"},{"assignments":[26345],"declarations":[{"constant":false,"id":26345,"mutability":"mutable","name":"result","nameLocation":"6538:6:88","nodeType":"VariableDeclaration","scope":26383,"src":"6525:19:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26344,"name":"bytes","nodeType":"ElementaryTypeName","src":"6525:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":26350,"initialValue":{"arguments":[{"id":26348,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26321,"src":"6557:6:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26347,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"6547:9:88","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":26346,"name":"bytes","nodeType":"ElementaryTypeName","src":"6551:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":26349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6547:17:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"6525:39:88"},{"assignments":[26352],"declarations":[{"constant":false,"id":26352,"mutability":"mutable","name":"offset","nameLocation":"6583:6:88","nodeType":"VariableDeclaration","scope":26383,"src":"6575:14:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26351,"name":"uint256","nodeType":"ElementaryTypeName","src":"6575:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":26354,"initialValue":{"hexValue":"30783230","id":26353,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6592:4:88","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"nodeType":"VariableDeclarationStatement","src":"6575:21:88"},{"body":{"id":26379,"nodeType":"Block","src":"6651:262:88","statements":[{"assignments":[26367],"declarations":[{"constant":false,"id":26367,"mutability":"mutable","name":"input","nameLocation":"6678:5:88","nodeType":"VariableDeclaration","scope":26379,"src":"6665:18:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26366,"name":"bytes","nodeType":"ElementaryTypeName","src":"6665:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":26371,"initialValue":{"baseExpression":{"id":26368,"name":"buffers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26315,"src":"6686:7:88","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":26370,"indexExpression":{"id":26369,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26356,"src":"6694:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6686:10:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"6665:31:88"},{"AST":{"nativeSrc":"6735:90:88","nodeType":"YulBlock","src":"6735:90:88","statements":[{"expression":{"arguments":[{"arguments":[{"name":"result","nativeSrc":"6763:6:88","nodeType":"YulIdentifier","src":"6763:6:88"},{"name":"offset","nativeSrc":"6771:6:88","nodeType":"YulIdentifier","src":"6771:6:88"}],"functionName":{"name":"add","nativeSrc":"6759:3:88","nodeType":"YulIdentifier","src":"6759:3:88"},"nativeSrc":"6759:19:88","nodeType":"YulFunctionCall","src":"6759:19:88"},{"arguments":[{"name":"input","nativeSrc":"6784:5:88","nodeType":"YulIdentifier","src":"6784:5:88"},{"kind":"number","nativeSrc":"6791:4:88","nodeType":"YulLiteral","src":"6791:4:88","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6780:3:88","nodeType":"YulIdentifier","src":"6780:3:88"},"nativeSrc":"6780:16:88","nodeType":"YulFunctionCall","src":"6780:16:88"},{"arguments":[{"name":"input","nativeSrc":"6804:5:88","nodeType":"YulIdentifier","src":"6804:5:88"}],"functionName":{"name":"mload","nativeSrc":"6798:5:88","nodeType":"YulIdentifier","src":"6798:5:88"},"nativeSrc":"6798:12:88","nodeType":"YulFunctionCall","src":"6798:12:88"}],"functionName":{"name":"mcopy","nativeSrc":"6753:5:88","nodeType":"YulIdentifier","src":"6753:5:88"},"nativeSrc":"6753:58:88","nodeType":"YulFunctionCall","src":"6753:58:88"},"nativeSrc":"6753:58:88","nodeType":"YulExpressionStatement","src":"6753:58:88"}]},"evmVersion":"prague","externalReferences":[{"declaration":26367,"isOffset":false,"isSlot":false,"src":"6784:5:88","valueSize":1},{"declaration":26367,"isOffset":false,"isSlot":false,"src":"6804:5:88","valueSize":1},{"declaration":26352,"isOffset":false,"isSlot":false,"src":"6771:6:88","valueSize":1},{"declaration":26345,"isOffset":false,"isSlot":false,"src":"6763:6:88","valueSize":1}],"flags":["memory-safe"],"id":26372,"nodeType":"InlineAssembly","src":"6710:115:88"},{"id":26378,"nodeType":"UncheckedBlock","src":"6838:65:88","statements":[{"expression":{"id":26376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26373,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26352,"src":"6866:6:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"expression":{"id":26374,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26367,"src":"6876:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":26375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6882:6:88","memberName":"length","nodeType":"MemberAccess","src":"6876:12:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6866:22:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26377,"nodeType":"ExpressionStatement","src":"6866:22:88"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26359,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26356,"src":"6626:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":26360,"name":"buffers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26315,"src":"6630:7:88","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":26361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6638:6:88","memberName":"length","nodeType":"MemberAccess","src":"6630:14:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6626:18:88","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26380,"initializationExpression":{"assignments":[26356],"declarations":[{"constant":false,"id":26356,"mutability":"mutable","name":"i","nameLocation":"6619:1:88","nodeType":"VariableDeclaration","scope":26380,"src":"6611:9:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26355,"name":"uint256","nodeType":"ElementaryTypeName","src":"6611:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":26358,"initialValue":{"hexValue":"30","id":26357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6623:1:88","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6611:13:88"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":26364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6646:3:88","subExpression":{"id":26363,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26356,"src":"6648:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26365,"nodeType":"ExpressionStatement","src":"6646:3:88"},"nodeType":"ForStatement","src":"6606:307:88"},{"expression":{"id":26381,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26345,"src":"6930:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":26319,"id":26382,"nodeType":"Return","src":"6923:13:88"}]},"documentation":{"id":26312,"nodeType":"StructuredDocumentation","src":"5849:449:88","text":" @dev Concatenate an array of bytes into a single bytes object.\n For fixed bytes types, we recommend using the solidity built-in `bytes.concat` or (equivalent)\n `abi.encodePacked`.\n NOTE: this could be done in assembly with a single loop that expands starting at the FMP, but that would be\n significantly less readable. It might be worth benchmarking the savings of the full-assembly approach."},"id":26384,"implemented":true,"kind":"function","modifiers":[],"name":"concat","nameLocation":"6312:6:88","nodeType":"FunctionDefinition","parameters":{"id":26316,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26315,"mutability":"mutable","name":"buffers","nameLocation":"6334:7:88","nodeType":"VariableDeclaration","scope":26384,"src":"6319:22:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":26313,"name":"bytes","nodeType":"ElementaryTypeName","src":"6319:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":26314,"nodeType":"ArrayTypeName","src":"6319:7:88","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"6318:24:88"},"returnParameters":{"id":26319,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26318,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26384,"src":"6366:12:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26317,"name":"bytes","nodeType":"ElementaryTypeName","src":"6366:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"6365:14:88"},"scope":26759,"src":"6303:640:88","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26408,"nodeType":"Block","src":"7101:76:88","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":26406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":26394,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26387,"src":"7118:1:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":26395,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7120:6:88","memberName":"length","nodeType":"MemberAccess","src":"7118:8:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":26396,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26389,"src":"7130:1:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":26397,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7132:6:88","memberName":"length","nodeType":"MemberAccess","src":"7130:8:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7118:20:88","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":26400,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26387,"src":"7152:1:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":26399,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"7142:9:88","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":26401,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7142:12:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":26403,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26389,"src":"7168:1:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":26402,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"7158:9:88","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":26404,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7158:12:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"7142:28:88","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7118:52:88","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":26393,"id":26407,"nodeType":"Return","src":"7111:59:88"}]},"documentation":{"id":26385,"nodeType":"StructuredDocumentation","src":"6949:71:88","text":" @dev Returns true if the two byte buffers are equal."},"id":26409,"implemented":true,"kind":"function","modifiers":[],"name":"equal","nameLocation":"7034:5:88","nodeType":"FunctionDefinition","parameters":{"id":26390,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26387,"mutability":"mutable","name":"a","nameLocation":"7053:1:88","nodeType":"VariableDeclaration","scope":26409,"src":"7040:14:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26386,"name":"bytes","nodeType":"ElementaryTypeName","src":"7040:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":26389,"mutability":"mutable","name":"b","nameLocation":"7069:1:88","nodeType":"VariableDeclaration","scope":26409,"src":"7056:14:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26388,"name":"bytes","nodeType":"ElementaryTypeName","src":"7056:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"7039:32:88"},"returnParameters":{"id":26393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26392,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26409,"src":"7095:4:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":26391,"name":"bool","nodeType":"ElementaryTypeName","src":"7095:4:88","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"7094:6:88"},"scope":26759,"src":"7025:152:88","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26499,"nodeType":"Block","src":"7481:1024:88","statements":[{"expression":{"id":26433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26417,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26412,"src":"7491:5:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26418,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26412,"src":"7527:5:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"38","id":26419,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7536:1:88","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"7527:10:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26421,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7526:12:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830304646303046463030464630304646303046463030464630304646303046463030464630304646303046463030464630304646303046463030464630304646","id":26422,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7541:66:88","typeDescriptions":{"typeIdentifier":"t_rational_450552876409790643671482431940419874915447411150352389258589821042463539455_by_1","typeString":"int_const 4505...(67 digits omitted)...9455"},"value":"0x00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF"},"src":"7526:81:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26424,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7525:83:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26430,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26425,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26412,"src":"7625:5:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830304646303046463030464630304646303046463030464630304646303046463030464630304646303046463030464630304646303046463030464630304646","id":26426,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7633:66:88","typeDescriptions":{"typeIdentifier":"t_rational_450552876409790643671482431940419874915447411150352389258589821042463539455_by_1","typeString":"int_const 4505...(67 digits omitted)...9455"},"value":"0x00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF"},"src":"7625:74:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26428,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7624:76:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":26429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7704:1:88","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"7624:81:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26431,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7623:83:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"7525:181:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"7491:215:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":26434,"nodeType":"ExpressionStatement","src":"7491:215:88"},{"expression":{"id":26451,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26435,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26412,"src":"7716:5:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26436,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26412,"src":"7764:5:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3136","id":26437,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7773:2:88","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"7764:11:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26439,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7763:13:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830303030464646463030303046464646303030304646464630303030464646463030303046464646303030304646464630303030464646463030303046464646","id":26440,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7779:66:88","typeDescriptions":{"typeIdentifier":"t_rational_1766820105243087041267848467410591083712559083657179364930612997358944255_by_1","typeString":"int_const 1766...(65 digits omitted)...4255"},"value":"0x0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF"},"src":"7763:82:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26442,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7762:84:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26443,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26412,"src":"7863:5:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830303030464646463030303046464646303030304646464630303030464646463030303046464646303030304646464630303030464646463030303046464646","id":26444,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7871:66:88","typeDescriptions":{"typeIdentifier":"t_rational_1766820105243087041267848467410591083712559083657179364930612997358944255_by_1","typeString":"int_const 1766...(65 digits omitted)...4255"},"value":"0x0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF0000FFFF"},"src":"7863:74:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26446,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7862:76:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":26447,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7942:2:88","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"7862:82:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26449,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7861:84:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"7762:183:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"7716:229:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":26452,"nodeType":"ExpressionStatement","src":"7716:229:88"},{"expression":{"id":26469,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26453,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26412,"src":"7955:5:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26456,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26454,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26412,"src":"8003:5:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":26455,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8012:2:88","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"8003:11:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26457,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8002:13:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830303030303030304646464646464646303030303030303046464646464646463030303030303030464646464646464630303030303030304646464646464646","id":26458,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8018:66:88","typeDescriptions":{"typeIdentifier":"t_rational_26959946660873538060741835960174461801791452538186943042387869433855_by_1","typeString":"int_const 2695...(60 digits omitted)...3855"},"value":"0x00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF"},"src":"8002:82:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26460,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8001:84:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26466,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26461,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26412,"src":"8102:5:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830303030303030304646464646464646303030303030303046464646464646463030303030303030464646464646464630303030303030304646464646464646","id":26462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8110:66:88","typeDescriptions":{"typeIdentifier":"t_rational_26959946660873538060741835960174461801791452538186943042387869433855_by_1","typeString":"int_const 2695...(60 digits omitted)...3855"},"value":"0x00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF00000000FFFFFFFF"},"src":"8102:74:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26464,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8101:76:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":26465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8181:2:88","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"8101:82:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26467,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8100:84:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"8001:183:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"7955:229:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":26470,"nodeType":"ExpressionStatement","src":"7955:229:88"},{"expression":{"id":26487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26471,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26412,"src":"8194:5:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26486,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26477,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26472,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26412,"src":"8242:5:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":26473,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8251:2:88","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"8242:11:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26475,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8241:13:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830303030303030303030303030303030464646464646464646464646464646463030303030303030303030303030303046464646464646464646464646464646","id":26476,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8257:66:88","typeDescriptions":{"typeIdentifier":"t_rational_6277101735386680763495507056286727952657427581105975853055_by_1","typeString":"int_const 6277...(50 digits omitted)...3055"},"value":"0x0000000000000000FFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF"},"src":"8241:82:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26478,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8240:84:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26479,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26412,"src":"8341:5:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830303030303030303030303030303030464646464646464646464646464646463030303030303030303030303030303046464646464646464646464646464646","id":26480,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8349:66:88","typeDescriptions":{"typeIdentifier":"t_rational_6277101735386680763495507056286727952657427581105975853055_by_1","typeString":"int_const 6277...(50 digits omitted)...3055"},"value":"0x0000000000000000FFFFFFFFFFFFFFFF0000000000000000FFFFFFFFFFFFFFFF"},"src":"8341:74:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26482,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8340:76:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":26483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8420:2:88","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"8340:82:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26485,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8339:84:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"8240:183:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"8194:229:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":26488,"nodeType":"ExpressionStatement","src":"8194:229:88"},{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26497,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26489,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26412,"src":"8441:5:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"313238","id":26490,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8450:3:88","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"8441:12:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26492,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8440:14:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26493,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26412,"src":"8458:5:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":26494,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8467:3:88","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"8458:12:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":26496,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8457:14:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"8440:31:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":26416,"id":26498,"nodeType":"Return","src":"8433:38:88"}]},"documentation":{"id":26410,"nodeType":"StructuredDocumentation","src":"7183:222:88","text":" @dev Reverses the byte order of a bytes32 value, converting between little-endian and big-endian.\n Inspired by https://graphics.stanford.edu/~seander/bithacks.html#ReverseParallel[Reverse Parallel]"},"id":26500,"implemented":true,"kind":"function","modifiers":[],"name":"reverseBytes32","nameLocation":"7419:14:88","nodeType":"FunctionDefinition","parameters":{"id":26413,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26412,"mutability":"mutable","name":"value","nameLocation":"7442:5:88","nodeType":"VariableDeclaration","scope":26500,"src":"7434:13:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":26411,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7434:7:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7433:15:88"},"returnParameters":{"id":26416,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26415,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26500,"src":"7472:7:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":26414,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7472:7:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7471:9:88"},"scope":26759,"src":"7410:1095:88","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26572,"nodeType":"Block","src":"8654:590:88","statements":[{"expression":{"id":26524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26508,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26503,"src":"8664:5:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26523,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26509,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26503,"src":"8700:5:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30784646303046463030464630304646303046463030464630304646303046463030","id":26510,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8708:34:88","typeDescriptions":{"typeIdentifier":"t_rational_338958311018522360492699998064329424640_by_1","typeString":"int_const 3389...(31 digits omitted)...4640"},"value":"0xFF00FF00FF00FF00FF00FF00FF00FF00"},"src":"8700:42:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":26512,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8699:44:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"38","id":26513,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8747:1:88","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"8699:49:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":26515,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8698:51:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26516,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26503,"src":"8766:5:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783030464630304646303046463030464630304646303046463030464630304646","id":26517,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8774:34:88","typeDescriptions":{"typeIdentifier":"t_rational_1324055902416102970674609367438786815_by_1","typeString":"int_const 1324...(29 digits omitted)...6815"},"value":"0x00FF00FF00FF00FF00FF00FF00FF00FF"},"src":"8766:42:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":26519,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8765:44:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":26520,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8813:1:88","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"8765:49:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":26522,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8764:51:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"src":"8698:117:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"src":"8664:151:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":26525,"nodeType":"ExpressionStatement","src":"8664:151:88"},{"expression":{"id":26542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26526,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26503,"src":"8825:5:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26532,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26527,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26503,"src":"8873:5:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30784646464630303030464646463030303046464646303030304646464630303030","id":26528,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8881:34:88","typeDescriptions":{"typeIdentifier":"t_rational_340277174703306882242637262502835978240_by_1","typeString":"int_const 3402...(31 digits omitted)...8240"},"value":"0xFFFF0000FFFF0000FFFF0000FFFF0000"},"src":"8873:42:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":26530,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8872:44:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3136","id":26531,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8920:2:88","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"8872:50:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":26533,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8871:52:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26534,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26503,"src":"8940:5:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783030303046464646303030304646464630303030464646463030303046464646","id":26535,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8948:34:88","typeDescriptions":{"typeIdentifier":"t_rational_5192217631581220737344928932233215_by_1","typeString":"int_const 5192...(26 digits omitted)...3215"},"value":"0x0000FFFF0000FFFF0000FFFF0000FFFF"},"src":"8940:42:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":26537,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8939:44:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":26538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8987:2:88","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"8939:50:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":26540,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8938:52:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"src":"8871:119:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"src":"8825:165:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":26543,"nodeType":"ExpressionStatement","src":"8825:165:88"},{"expression":{"id":26560,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26544,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26503,"src":"9000:5:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26559,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26550,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26545,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26503,"src":"9048:5:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30784646464646464646303030303030303046464646464646463030303030303030","id":26546,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9056:34:88","typeDescriptions":{"typeIdentifier":"t_rational_340282366841710300967557013907638845440_by_1","typeString":"int_const 3402...(31 digits omitted)...5440"},"value":"0xFFFFFFFF00000000FFFFFFFF00000000"},"src":"9048:42:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":26548,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9047:44:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":26549,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9095:2:88","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"9047:50:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":26551,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9046:52:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26557,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26552,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26503,"src":"9115:5:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783030303030303030464646464646464630303030303030304646464646464646","id":26553,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9123:34:88","typeDescriptions":{"typeIdentifier":"t_rational_79228162495817593524129366015_by_1","typeString":"int_const 79228162495817593524129366015"},"value":"0x00000000FFFFFFFF00000000FFFFFFFF"},"src":"9115:42:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":26555,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9114:44:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":26556,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9162:2:88","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"9114:50:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":26558,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9113:52:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"src":"9046:119:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"src":"9000:165:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":26561,"nodeType":"ExpressionStatement","src":"9000:165:88"},{"expression":{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26562,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26503,"src":"9183:5:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":26563,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9192:2:88","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"9183:11:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":26565,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9182:13:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"id":26568,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26566,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26503,"src":"9199:5:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":26567,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9208:2:88","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"9199:11:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}}],"id":26569,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9198:13:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"src":"9182:29:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"functionReturnParameters":26507,"id":26571,"nodeType":"Return","src":"9175:36:88"}]},"documentation":{"id":26501,"nodeType":"StructuredDocumentation","src":"8511:67:88","text":"@dev Same as {reverseBytes32} but optimized for 128-bit values."},"id":26573,"implemented":true,"kind":"function","modifiers":[],"name":"reverseBytes16","nameLocation":"8592:14:88","nodeType":"FunctionDefinition","parameters":{"id":26504,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26503,"mutability":"mutable","name":"value","nameLocation":"8615:5:88","nodeType":"VariableDeclaration","scope":26573,"src":"8607:13:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":26502,"name":"bytes16","nodeType":"ElementaryTypeName","src":"8607:7:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"8606:15:88"},"returnParameters":{"id":26507,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26506,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26573,"src":"8645:7:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":26505,"name":"bytes16","nodeType":"ElementaryTypeName","src":"8645:7:88","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"8644:9:88"},"scope":26759,"src":"8583:661:88","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26627,"nodeType":"Block","src":"9389:303:88","statements":[{"expression":{"id":26597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26581,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26576,"src":"9399:5:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":26596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":26587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":26584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26582,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26576,"src":"9409:5:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307846463030464630304646303046463030","id":26583,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9417:18:88","typeDescriptions":{"typeIdentifier":"t_rational_18374966859414961920_by_1","typeString":"int_const 18374966859414961920"},"value":"0xFF00FF00FF00FF00"},"src":"9409:26:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":26585,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9408:28:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"38","id":26586,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9440:1:88","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"9408:33:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":26588,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9407:35:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":26594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":26591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26589,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26576,"src":"9447:5:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830304646303046463030464630304646","id":26590,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9455:18:88","typeDescriptions":{"typeIdentifier":"t_rational_71777214294589695_by_1","typeString":"int_const 71777214294589695"},"value":"0x00FF00FF00FF00FF"},"src":"9447:26:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":26592,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9446:28:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":26593,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9478:1:88","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"9446:33:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":26595,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9445:35:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"src":"9407:73:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"src":"9399:81:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"id":26598,"nodeType":"ExpressionStatement","src":"9399:81:88"},{"expression":{"id":26615,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26599,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26576,"src":"9504:5:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":26614,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":26605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":26602,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26600,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26576,"src":"9514:5:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307846464646303030304646464630303030","id":26601,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9522:18:88","typeDescriptions":{"typeIdentifier":"t_rational_18446462603027742720_by_1","typeString":"int_const 18446462603027742720"},"value":"0xFFFF0000FFFF0000"},"src":"9514:26:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":26603,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9513:28:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3136","id":26604,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9545:2:88","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"9513:34:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":26606,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9512:36:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":26612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":26609,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26607,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26576,"src":"9553:5:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830303030464646463030303046464646","id":26608,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9561:18:88","typeDescriptions":{"typeIdentifier":"t_rational_281470681808895_by_1","typeString":"int_const 281470681808895"},"value":"0x0000FFFF0000FFFF"},"src":"9553:26:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":26610,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9552:28:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":26611,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9584:2:88","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"9552:34:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":26613,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9551:36:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"src":"9512:75:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"src":"9504:83:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"id":26616,"nodeType":"ExpressionStatement","src":"9504:83:88"},{"expression":{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":26625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":26619,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26617,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26576,"src":"9631:5:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":26618,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9640:2:88","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"9631:11:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":26620,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9630:13:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"id":26623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26621,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26576,"src":"9647:5:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":26622,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9656:2:88","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"9647:11:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"id":26624,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9646:13:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"src":"9630:29:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"functionReturnParameters":26580,"id":26626,"nodeType":"Return","src":"9623:36:88"}]},"documentation":{"id":26574,"nodeType":"StructuredDocumentation","src":"9250:66:88","text":"@dev Same as {reverseBytes32} but optimized for 64-bit values."},"id":26628,"implemented":true,"kind":"function","modifiers":[],"name":"reverseBytes8","nameLocation":"9330:13:88","nodeType":"FunctionDefinition","parameters":{"id":26577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26576,"mutability":"mutable","name":"value","nameLocation":"9351:5:88","nodeType":"VariableDeclaration","scope":26628,"src":"9344:12:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":26575,"name":"bytes8","nodeType":"ElementaryTypeName","src":"9344:6:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"9343:14:88"},"returnParameters":{"id":26580,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26579,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26628,"src":"9381:6:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":26578,"name":"bytes8","nodeType":"ElementaryTypeName","src":"9381:6:88","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"9380:8:88"},"scope":26759,"src":"9321:371:88","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26664,"nodeType":"Block","src":"9837:168:88","statements":[{"expression":{"id":26652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26636,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26631,"src":"9847:5:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":26651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":26642,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":26639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26637,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26631,"src":"9857:5:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30784646303046463030","id":26638,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9865:10:88","typeDescriptions":{"typeIdentifier":"t_rational_4278255360_by_1","typeString":"int_const 4278255360"},"value":"0xFF00FF00"},"src":"9857:18:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":26640,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9856:20:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"38","id":26641,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9880:1:88","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"9856:25:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":26643,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9855:27:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":26649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":26646,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26644,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26631,"src":"9887:5:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783030464630304646","id":26645,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9895:10:88","typeDescriptions":{"typeIdentifier":"t_rational_16711935_by_1","typeString":"int_const 16711935"},"value":"0x00FF00FF"},"src":"9887:18:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":26647,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9886:20:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":26648,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9910:1:88","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"9886:25:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":26650,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9885:27:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"9855:57:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"9847:65:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":26653,"nodeType":"ExpressionStatement","src":"9847:65:88"},{"expression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":26662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":26656,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26654,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26631,"src":"9944:5:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3136","id":26655,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9953:2:88","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"9944:11:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":26657,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9943:13:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":26660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26658,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26631,"src":"9960:5:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":26659,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9969:2:88","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"9960:11:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":26661,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9959:13:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"9943:29:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":26635,"id":26663,"nodeType":"Return","src":"9936:36:88"}]},"documentation":{"id":26629,"nodeType":"StructuredDocumentation","src":"9698:66:88","text":"@dev Same as {reverseBytes32} but optimized for 32-bit values."},"id":26665,"implemented":true,"kind":"function","modifiers":[],"name":"reverseBytes4","nameLocation":"9778:13:88","nodeType":"FunctionDefinition","parameters":{"id":26632,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26631,"mutability":"mutable","name":"value","nameLocation":"9799:5:88","nodeType":"VariableDeclaration","scope":26665,"src":"9792:12:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":26630,"name":"bytes4","nodeType":"ElementaryTypeName","src":"9792:6:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"9791:14:88"},"returnParameters":{"id":26635,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26634,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26665,"src":"9829:6:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":26633,"name":"bytes4","nodeType":"ElementaryTypeName","src":"9829:6:88","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"9828:8:88"},"scope":26759,"src":"9769:236:88","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26683,"nodeType":"Block","src":"10150:51:88","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":26681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":26675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26673,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26668,"src":"10168:5:88","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"38","id":26674,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10177:1:88","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"10168:10:88","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}}],"id":26676,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10167:12:88","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":26679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26677,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26668,"src":"10183:5:88","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":26678,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10192:1:88","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"10183:10:88","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}}],"id":26680,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10182:12:88","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"10167:27:88","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"functionReturnParameters":26672,"id":26682,"nodeType":"Return","src":"10160:34:88"}]},"documentation":{"id":26666,"nodeType":"StructuredDocumentation","src":"10011:66:88","text":"@dev Same as {reverseBytes32} but optimized for 16-bit values."},"id":26684,"implemented":true,"kind":"function","modifiers":[],"name":"reverseBytes2","nameLocation":"10091:13:88","nodeType":"FunctionDefinition","parameters":{"id":26669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26668,"mutability":"mutable","name":"value","nameLocation":"10112:5:88","nodeType":"VariableDeclaration","scope":26684,"src":"10105:12:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":26667,"name":"bytes2","nodeType":"ElementaryTypeName","src":"10105:6:88","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"10104:14:88"},"returnParameters":{"id":26672,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26671,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26684,"src":"10142:6:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":26670,"name":"bytes2","nodeType":"ElementaryTypeName","src":"10142:6:88","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"10141:8:88"},"scope":26759,"src":"10082:119:88","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26745,"nodeType":"Block","src":"10418:313:88","statements":[{"body":{"id":26738,"nodeType":"Block","src":"10478:213:88","statements":[{"assignments":[26705],"declarations":[{"constant":false,"id":26705,"mutability":"mutable","name":"chunk","nameLocation":"10500:5:88","nodeType":"VariableDeclaration","scope":26738,"src":"10492:13:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":26704,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10492:7:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":26710,"initialValue":{"arguments":[{"id":26707,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26687,"src":"10531:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":26708,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26693,"src":"10539:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":26706,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26758,"src":"10508:22:88","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":26709,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10508:33:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"10492:49:88"},{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":26716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26711,"name":"chunk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26705,"src":"10559:5:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":26714,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10576:1:88","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":26713,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10568:7:88","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":26712,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10568:7:88","typeDescriptions":{}}},"id":26715,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10568:10:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"10559:19:88","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26737,"nodeType":"IfStatement","src":"10555:126:88","trueBody":{"id":26736,"nodeType":"Block","src":"10580:101:88","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26729,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"38","id":26719,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10614:1:88","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":26720,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26693,"src":"10618:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10614:5:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"arguments":[{"id":26726,"name":"chunk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26705,"src":"10639:5:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":26725,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10631:7:88","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":26724,"name":"uint256","nodeType":"ElementaryTypeName","src":"10631:7:88","typeDescriptions":{}}},"id":26727,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10631:14:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":26722,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"10622:4:88","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":26723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10627:3:88","memberName":"clz","nodeType":"MemberAccess","referencedDeclaration":35186,"src":"10622:8:88","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":26728,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10622:24:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10614:32:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26733,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"38","id":26730,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10648:1:88","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":26731,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26687,"src":"10652:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":26732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10659:6:88","memberName":"length","nodeType":"MemberAccess","src":"10652:13:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10648:17:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":26717,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"10605:4:88","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":26718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10610:3:88","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":33872,"src":"10605:8:88","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":26734,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10605:61:88","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26691,"id":26735,"nodeType":"Return","src":"10598:68:88"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":26696,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26693,"src":"10448:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":26697,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26687,"src":"10452:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":26698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10459:6:88","memberName":"length","nodeType":"MemberAccess","src":"10452:13:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10448:17:88","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":26739,"initializationExpression":{"assignments":[26693],"declarations":[{"constant":false,"id":26693,"mutability":"mutable","name":"i","nameLocation":"10441:1:88","nodeType":"VariableDeclaration","scope":26739,"src":"10433:9:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26692,"name":"uint256","nodeType":"ElementaryTypeName","src":"10433:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":26695,"initialValue":{"hexValue":"30","id":26694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10445:1:88","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10433:13:88"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":26702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":26700,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26693,"src":"10467:1:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"30783230","id":26701,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10472:4:88","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"src":"10467:9:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":26703,"nodeType":"ExpressionStatement","src":"10467:9:88"},"nodeType":"ForStatement","src":"10428:263:88"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":26743,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"38","id":26740,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10707:1:88","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":26741,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26687,"src":"10711:6:88","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":26742,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10718:6:88","memberName":"length","nodeType":"MemberAccess","src":"10711:13:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10707:17:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":26691,"id":26744,"nodeType":"Return","src":"10700:24:88"}]},"documentation":{"id":26685,"nodeType":"StructuredDocumentation","src":"10207:140:88","text":" @dev Counts the number of leading zero bits a bytes array. Returns `8 * buffer.length`\n if the buffer is all zeros."},"id":26746,"implemented":true,"kind":"function","modifiers":[],"name":"clz","nameLocation":"10361:3:88","nodeType":"FunctionDefinition","parameters":{"id":26688,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26687,"mutability":"mutable","name":"buffer","nameLocation":"10378:6:88","nodeType":"VariableDeclaration","scope":26746,"src":"10365:19:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26686,"name":"bytes","nodeType":"ElementaryTypeName","src":"10365:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"10364:21:88"},"returnParameters":{"id":26691,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26690,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26746,"src":"10409:7:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26689,"name":"uint256","nodeType":"ElementaryTypeName","src":"10409:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10408:9:88"},"scope":26759,"src":"10352:379:88","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26757,"nodeType":"Block","src":"11116:225:88","statements":[{"AST":{"nativeSrc":"11265:70:88","nodeType":"YulBlock","src":"11265:70:88","statements":[{"nativeSrc":"11279:46:88","nodeType":"YulAssignment","src":"11279:46:88","value":{"arguments":[{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"11302:6:88","nodeType":"YulIdentifier","src":"11302:6:88"},{"kind":"number","nativeSrc":"11310:4:88","nodeType":"YulLiteral","src":"11310:4:88","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"11298:3:88","nodeType":"YulIdentifier","src":"11298:3:88"},"nativeSrc":"11298:17:88","nodeType":"YulFunctionCall","src":"11298:17:88"},{"name":"offset","nativeSrc":"11317:6:88","nodeType":"YulIdentifier","src":"11317:6:88"}],"functionName":{"name":"add","nativeSrc":"11294:3:88","nodeType":"YulIdentifier","src":"11294:3:88"},"nativeSrc":"11294:30:88","nodeType":"YulFunctionCall","src":"11294:30:88"}],"functionName":{"name":"mload","nativeSrc":"11288:5:88","nodeType":"YulIdentifier","src":"11288:5:88"},"nativeSrc":"11288:37:88","nodeType":"YulFunctionCall","src":"11288:37:88"},"variableNames":[{"name":"value","nativeSrc":"11279:5:88","nodeType":"YulIdentifier","src":"11279:5:88"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":26749,"isOffset":false,"isSlot":false,"src":"11302:6:88","valueSize":1},{"declaration":26751,"isOffset":false,"isSlot":false,"src":"11317:6:88","valueSize":1},{"declaration":26754,"isOffset":false,"isSlot":false,"src":"11279:5:88","valueSize":1}],"flags":["memory-safe"],"id":26756,"nodeType":"InlineAssembly","src":"11240:95:88"}]},"documentation":{"id":26747,"nodeType":"StructuredDocumentation","src":"10737:268:88","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":26758,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeReadBytesOffset","nameLocation":"11019:22:88","nodeType":"FunctionDefinition","parameters":{"id":26752,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26749,"mutability":"mutable","name":"buffer","nameLocation":"11055:6:88","nodeType":"VariableDeclaration","scope":26758,"src":"11042:19:88","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26748,"name":"bytes","nodeType":"ElementaryTypeName","src":"11042:5:88","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":26751,"mutability":"mutable","name":"offset","nameLocation":"11071:6:88","nodeType":"VariableDeclaration","scope":26758,"src":"11063:14:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26750,"name":"uint256","nodeType":"ElementaryTypeName","src":"11063:7:88","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11041:37:88"},"returnParameters":{"id":26755,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26754,"mutability":"mutable","name":"value","nameLocation":"11109:5:88","nodeType":"VariableDeclaration","scope":26758,"src":"11101:13:88","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":26753,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11101:7:88","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"11100:15:88"},"scope":26759,"src":"11010:331:88","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":26760,"src":"198:11145:88","usedErrors":[],"usedEvents":[]}],"src":"99:11245:88"},"id":88},"@openzeppelin/contracts/utils/Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","exportedSymbols":{"Context":[26789]},"id":26790,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":26761,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:89"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":26762,"nodeType":"StructuredDocumentation","src":"127:496:89","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":26789,"linearizedBaseContracts":[26789],"name":"Context","nameLocation":"642:7:89","nodeType":"ContractDefinition","nodes":[{"body":{"id":26770,"nodeType":"Block","src":"718:34:89","statements":[{"expression":{"expression":{"id":26767,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"735:3:89","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":26768,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"739:6:89","memberName":"sender","nodeType":"MemberAccess","src":"735:10:89","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":26766,"id":26769,"nodeType":"Return","src":"728:17:89"}]},"id":26771,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"665:10:89","nodeType":"FunctionDefinition","parameters":{"id":26763,"nodeType":"ParameterList","parameters":[],"src":"675:2:89"},"returnParameters":{"id":26766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26765,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26771,"src":"709:7:89","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":26764,"name":"address","nodeType":"ElementaryTypeName","src":"709:7:89","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"708:9:89"},"scope":26789,"src":"656:96:89","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":26779,"nodeType":"Block","src":"825:32:89","statements":[{"expression":{"expression":{"id":26776,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"842:3:89","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":26777,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"846:4:89","memberName":"data","nodeType":"MemberAccess","src":"842:8:89","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":26775,"id":26778,"nodeType":"Return","src":"835:15:89"}]},"id":26780,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"767:8:89","nodeType":"FunctionDefinition","parameters":{"id":26772,"nodeType":"ParameterList","parameters":[],"src":"775:2:89"},"returnParameters":{"id":26775,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26774,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26780,"src":"809:14:89","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":26773,"name":"bytes","nodeType":"ElementaryTypeName","src":"809:5:89","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"808:16:89"},"scope":26789,"src":"758:99:89","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":26787,"nodeType":"Block","src":"935:25:89","statements":[{"expression":{"hexValue":"30","id":26785,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"952:1:89","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":26784,"id":26786,"nodeType":"Return","src":"945:8:89"}]},"id":26788,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"872:20:89","nodeType":"FunctionDefinition","parameters":{"id":26781,"nodeType":"ParameterList","parameters":[],"src":"892:2:89"},"returnParameters":{"id":26784,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26783,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26788,"src":"926:7:89","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26782,"name":"uint256","nodeType":"ElementaryTypeName","src":"926:7:89","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"925:9:89"},"scope":26789,"src":"863:97:89","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":26790,"src":"624:338:89","usedErrors":[],"usedEvents":[]}],"src":"101:862:89"},"id":89},"@openzeppelin/contracts/utils/Errors.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","exportedSymbols":{"Errors":[26811]},"id":26812,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":26791,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"100:24:90"},{"abstract":false,"baseContracts":[],"canonicalName":"Errors","contractDependencies":[],"contractKind":"library","documentation":{"id":26792,"nodeType":"StructuredDocumentation","src":"126:284:90","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":26811,"linearizedBaseContracts":[26811],"name":"Errors","nameLocation":"419:6:90","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":26793,"nodeType":"StructuredDocumentation","src":"432:94:90","text":" @dev The ETH balance of the account is not enough to perform the operation."},"errorSelector":"cf479181","id":26799,"name":"InsufficientBalance","nameLocation":"537:19:90","nodeType":"ErrorDefinition","parameters":{"id":26798,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26795,"mutability":"mutable","name":"balance","nameLocation":"565:7:90","nodeType":"VariableDeclaration","scope":26799,"src":"557:15:90","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26794,"name":"uint256","nodeType":"ElementaryTypeName","src":"557:7:90","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":26797,"mutability":"mutable","name":"needed","nameLocation":"582:6:90","nodeType":"VariableDeclaration","scope":26799,"src":"574:14:90","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26796,"name":"uint256","nodeType":"ElementaryTypeName","src":"574:7:90","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"556:33:90"},"src":"531:59:90"},{"documentation":{"id":26800,"nodeType":"StructuredDocumentation","src":"596:89:90","text":" @dev A call to an address target failed. The target may have reverted."},"errorSelector":"d6bda275","id":26802,"name":"FailedCall","nameLocation":"696:10:90","nodeType":"ErrorDefinition","parameters":{"id":26801,"nodeType":"ParameterList","parameters":[],"src":"706:2:90"},"src":"690:19:90"},{"documentation":{"id":26803,"nodeType":"StructuredDocumentation","src":"715:46:90","text":" @dev The deployment failed."},"errorSelector":"b06ebf3d","id":26805,"name":"FailedDeployment","nameLocation":"772:16:90","nodeType":"ErrorDefinition","parameters":{"id":26804,"nodeType":"ParameterList","parameters":[],"src":"788:2:90"},"src":"766:25:90"},{"documentation":{"id":26806,"nodeType":"StructuredDocumentation","src":"797:58:90","text":" @dev A necessary precompile is missing."},"errorSelector":"42b01bce","id":26810,"name":"MissingPrecompile","nameLocation":"866:17:90","nodeType":"ErrorDefinition","parameters":{"id":26809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26808,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26810,"src":"884:7:90","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":26807,"name":"address","nodeType":"ElementaryTypeName","src":"884:7:90","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"883:9:90"},"src":"860:33:90"}],"scope":26812,"src":"411:484:90","usedErrors":[26799,26802,26805,26810],"usedEvents":[]}],"src":"100:796:90"},"id":90},"@openzeppelin/contracts/utils/LowLevelCall.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/LowLevelCall.sol","exportedSymbols":{"LowLevelCall":[26970]},"id":26971,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":26813,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:91"},{"abstract":false,"baseContracts":[],"canonicalName":"LowLevelCall","contractDependencies":[],"contractKind":"library","documentation":{"id":26814,"nodeType":"StructuredDocumentation","src":"132:288:91","text":" @dev Library of low level call functions that implement different calling strategies to deal with the return data.\n WARNING: Using this library requires an advanced understanding of Solidity and how the EVM works. It is recommended\n to use the {Address} library instead."},"fullyImplemented":true,"id":26970,"linearizedBaseContracts":[26970],"name":"LowLevelCall","nameLocation":"429:12:91","nodeType":"ContractDefinition","nodes":[{"body":{"id":26830,"nodeType":"Block","src":"639:53:91","statements":[{"expression":{"arguments":[{"id":26825,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26817,"src":"669:6:91","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":26826,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"677:1:91","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":26827,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26819,"src":"680:4:91","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":26824,"name":"callNoReturn","nodeType":"Identifier","overloadedDeclarations":[26831,26845],"referencedDeclaration":26845,"src":"656:12:91","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (address,uint256,bytes memory) returns (bool)"}},"id":26828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"656:29:91","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":26823,"id":26829,"nodeType":"Return","src":"649:36:91"}]},"documentation":{"id":26815,"nodeType":"StructuredDocumentation","src":"448:97:91","text":"@dev Performs a Solidity function call using a low level `call` and ignoring the return data."},"id":26831,"implemented":true,"kind":"function","modifiers":[],"name":"callNoReturn","nameLocation":"559:12:91","nodeType":"FunctionDefinition","parameters":{"id":26820,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26817,"mutability":"mutable","name":"target","nameLocation":"580:6:91","nodeType":"VariableDeclaration","scope":26831,"src":"572:14:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":26816,"name":"address","nodeType":"ElementaryTypeName","src":"572:7:91","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":26819,"mutability":"mutable","name":"data","nameLocation":"601:4:91","nodeType":"VariableDeclaration","scope":26831,"src":"588:17:91","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26818,"name":"bytes","nodeType":"ElementaryTypeName","src":"588:5:91","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"571:35:91"},"returnParameters":{"id":26823,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26822,"mutability":"mutable","name":"success","nameLocation":"630:7:91","nodeType":"VariableDeclaration","scope":26831,"src":"625:12:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":26821,"name":"bool","nodeType":"ElementaryTypeName","src":"625:4:91","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"624:14:91"},"scope":26970,"src":"550:142:91","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":26844,"nodeType":"Block","src":"895:144:91","statements":[{"AST":{"nativeSrc":"930:103:91","nodeType":"YulBlock","src":"930:103:91","statements":[{"nativeSrc":"944:79:91","nodeType":"YulAssignment","src":"944:79:91","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"960:3:91","nodeType":"YulIdentifier","src":"960:3:91"},"nativeSrc":"960:5:91","nodeType":"YulFunctionCall","src":"960:5:91"},{"name":"target","nativeSrc":"967:6:91","nodeType":"YulIdentifier","src":"967:6:91"},{"name":"value","nativeSrc":"975:5:91","nodeType":"YulIdentifier","src":"975:5:91"},{"arguments":[{"name":"data","nativeSrc":"986:4:91","nodeType":"YulIdentifier","src":"986:4:91"},{"kind":"number","nativeSrc":"992:4:91","nodeType":"YulLiteral","src":"992:4:91","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"982:3:91","nodeType":"YulIdentifier","src":"982:3:91"},"nativeSrc":"982:15:91","nodeType":"YulFunctionCall","src":"982:15:91"},{"arguments":[{"name":"data","nativeSrc":"1005:4:91","nodeType":"YulIdentifier","src":"1005:4:91"}],"functionName":{"name":"mload","nativeSrc":"999:5:91","nodeType":"YulIdentifier","src":"999:5:91"},"nativeSrc":"999:11:91","nodeType":"YulFunctionCall","src":"999:11:91"},{"kind":"number","nativeSrc":"1012:4:91","nodeType":"YulLiteral","src":"1012:4:91","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1018:4:91","nodeType":"YulLiteral","src":"1018:4:91","type":"","value":"0x00"}],"functionName":{"name":"call","nativeSrc":"955:4:91","nodeType":"YulIdentifier","src":"955:4:91"},"nativeSrc":"955:68:91","nodeType":"YulFunctionCall","src":"955:68:91"},"variableNames":[{"name":"success","nativeSrc":"944:7:91","nodeType":"YulIdentifier","src":"944:7:91"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":26838,"isOffset":false,"isSlot":false,"src":"1005:4:91","valueSize":1},{"declaration":26838,"isOffset":false,"isSlot":false,"src":"986:4:91","valueSize":1},{"declaration":26841,"isOffset":false,"isSlot":false,"src":"944:7:91","valueSize":1},{"declaration":26834,"isOffset":false,"isSlot":false,"src":"967:6:91","valueSize":1},{"declaration":26836,"isOffset":false,"isSlot":false,"src":"975:5:91","valueSize":1}],"flags":["memory-safe"],"id":26843,"nodeType":"InlineAssembly","src":"905:128:91"}]},"documentation":{"id":26832,"nodeType":"StructuredDocumentation","src":"698:88:91","text":"@dev Same as {callNoReturn}, but allows to specify the value to be sent in the call."},"id":26845,"implemented":true,"kind":"function","modifiers":[],"name":"callNoReturn","nameLocation":"800:12:91","nodeType":"FunctionDefinition","parameters":{"id":26839,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26834,"mutability":"mutable","name":"target","nameLocation":"821:6:91","nodeType":"VariableDeclaration","scope":26845,"src":"813:14:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":26833,"name":"address","nodeType":"ElementaryTypeName","src":"813:7:91","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":26836,"mutability":"mutable","name":"value","nameLocation":"837:5:91","nodeType":"VariableDeclaration","scope":26845,"src":"829:13:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26835,"name":"uint256","nodeType":"ElementaryTypeName","src":"829:7:91","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":26838,"mutability":"mutable","name":"data","nameLocation":"857:4:91","nodeType":"VariableDeclaration","scope":26845,"src":"844:17:91","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26837,"name":"bytes","nodeType":"ElementaryTypeName","src":"844:5:91","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"812:50:91"},"returnParameters":{"id":26842,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26841,"mutability":"mutable","name":"success","nameLocation":"886:7:91","nodeType":"VariableDeclaration","scope":26845,"src":"881:12:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":26840,"name":"bool","nodeType":"ElementaryTypeName","src":"881:4:91","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"880:14:91"},"scope":26970,"src":"791:248:91","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":26865,"nodeType":"Block","src":"1583:58:91","statements":[{"expression":{"arguments":[{"id":26860,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26848,"src":"1618:6:91","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":26861,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1626:1:91","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":26862,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26850,"src":"1629:4:91","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":26859,"name":"callReturn64Bytes","nodeType":"Identifier","overloadedDeclarations":[26866,26884],"referencedDeclaration":26884,"src":"1600:17:91","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes32_$_t_bytes32_$","typeString":"function (address,uint256,bytes memory) returns (bool,bytes32,bytes32)"}},"id":26863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1600:34:91","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes32_$_t_bytes32_$","typeString":"tuple(bool,bytes32,bytes32)"}},"functionReturnParameters":26858,"id":26864,"nodeType":"Return","src":"1593:41:91"}]},"documentation":{"id":26846,"nodeType":"StructuredDocumentation","src":"1045:383:91","text":"@dev Performs a Solidity function call using a low level `call` and returns the first 64 bytes of the result\n in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n and this function doesn't zero it out."},"id":26866,"implemented":true,"kind":"function","modifiers":[],"name":"callReturn64Bytes","nameLocation":"1442:17:91","nodeType":"FunctionDefinition","parameters":{"id":26851,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26848,"mutability":"mutable","name":"target","nameLocation":"1477:6:91","nodeType":"VariableDeclaration","scope":26866,"src":"1469:14:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":26847,"name":"address","nodeType":"ElementaryTypeName","src":"1469:7:91","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":26850,"mutability":"mutable","name":"data","nameLocation":"1506:4:91","nodeType":"VariableDeclaration","scope":26866,"src":"1493:17:91","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26849,"name":"bytes","nodeType":"ElementaryTypeName","src":"1493:5:91","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1459:57:91"},"returnParameters":{"id":26858,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26853,"mutability":"mutable","name":"success","nameLocation":"1540:7:91","nodeType":"VariableDeclaration","scope":26866,"src":"1535:12:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":26852,"name":"bool","nodeType":"ElementaryTypeName","src":"1535:4:91","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":26855,"mutability":"mutable","name":"result1","nameLocation":"1557:7:91","nodeType":"VariableDeclaration","scope":26866,"src":"1549:15:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":26854,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1549:7:91","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":26857,"mutability":"mutable","name":"result2","nameLocation":"1574:7:91","nodeType":"VariableDeclaration","scope":26866,"src":"1566:15:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":26856,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1566:7:91","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1534:48:91"},"scope":26970,"src":"1433:208:91","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":26883,"nodeType":"Block","src":"1922:214:91","statements":[{"AST":{"nativeSrc":"1957:173:91","nodeType":"YulBlock","src":"1957:173:91","statements":[{"nativeSrc":"1971:79:91","nodeType":"YulAssignment","src":"1971:79:91","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"1987:3:91","nodeType":"YulIdentifier","src":"1987:3:91"},"nativeSrc":"1987:5:91","nodeType":"YulFunctionCall","src":"1987:5:91"},{"name":"target","nativeSrc":"1994:6:91","nodeType":"YulIdentifier","src":"1994:6:91"},{"name":"value","nativeSrc":"2002:5:91","nodeType":"YulIdentifier","src":"2002:5:91"},{"arguments":[{"name":"data","nativeSrc":"2013:4:91","nodeType":"YulIdentifier","src":"2013:4:91"},{"kind":"number","nativeSrc":"2019:4:91","nodeType":"YulLiteral","src":"2019:4:91","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2009:3:91","nodeType":"YulIdentifier","src":"2009:3:91"},"nativeSrc":"2009:15:91","nodeType":"YulFunctionCall","src":"2009:15:91"},{"arguments":[{"name":"data","nativeSrc":"2032:4:91","nodeType":"YulIdentifier","src":"2032:4:91"}],"functionName":{"name":"mload","nativeSrc":"2026:5:91","nodeType":"YulIdentifier","src":"2026:5:91"},"nativeSrc":"2026:11:91","nodeType":"YulFunctionCall","src":"2026:11:91"},{"kind":"number","nativeSrc":"2039:4:91","nodeType":"YulLiteral","src":"2039:4:91","type":"","value":"0x00"},{"kind":"number","nativeSrc":"2045:4:91","nodeType":"YulLiteral","src":"2045:4:91","type":"","value":"0x40"}],"functionName":{"name":"call","nativeSrc":"1982:4:91","nodeType":"YulIdentifier","src":"1982:4:91"},"nativeSrc":"1982:68:91","nodeType":"YulFunctionCall","src":"1982:68:91"},"variableNames":[{"name":"success","nativeSrc":"1971:7:91","nodeType":"YulIdentifier","src":"1971:7:91"}]},{"nativeSrc":"2063:22:91","nodeType":"YulAssignment","src":"2063:22:91","value":{"arguments":[{"kind":"number","nativeSrc":"2080:4:91","nodeType":"YulLiteral","src":"2080:4:91","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"2074:5:91","nodeType":"YulIdentifier","src":"2074:5:91"},"nativeSrc":"2074:11:91","nodeType":"YulFunctionCall","src":"2074:11:91"},"variableNames":[{"name":"result1","nativeSrc":"2063:7:91","nodeType":"YulIdentifier","src":"2063:7:91"}]},{"nativeSrc":"2098:22:91","nodeType":"YulAssignment","src":"2098:22:91","value":{"arguments":[{"kind":"number","nativeSrc":"2115:4:91","nodeType":"YulLiteral","src":"2115:4:91","type":"","value":"0x20"}],"functionName":{"name":"mload","nativeSrc":"2109:5:91","nodeType":"YulIdentifier","src":"2109:5:91"},"nativeSrc":"2109:11:91","nodeType":"YulFunctionCall","src":"2109:11:91"},"variableNames":[{"name":"result2","nativeSrc":"2098:7:91","nodeType":"YulIdentifier","src":"2098:7:91"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":26873,"isOffset":false,"isSlot":false,"src":"2013:4:91","valueSize":1},{"declaration":26873,"isOffset":false,"isSlot":false,"src":"2032:4:91","valueSize":1},{"declaration":26878,"isOffset":false,"isSlot":false,"src":"2063:7:91","valueSize":1},{"declaration":26880,"isOffset":false,"isSlot":false,"src":"2098:7:91","valueSize":1},{"declaration":26876,"isOffset":false,"isSlot":false,"src":"1971:7:91","valueSize":1},{"declaration":26869,"isOffset":false,"isSlot":false,"src":"1994:6:91","valueSize":1},{"declaration":26871,"isOffset":false,"isSlot":false,"src":"2002:5:91","valueSize":1}],"flags":["memory-safe"],"id":26882,"nodeType":"InlineAssembly","src":"1932:198:91"}]},"documentation":{"id":26867,"nodeType":"StructuredDocumentation","src":"1647:97:91","text":"@dev Same as {callReturnBytes32Pair}, but allows to specify the value to be sent in the call."},"id":26884,"implemented":true,"kind":"function","modifiers":[],"name":"callReturn64Bytes","nameLocation":"1758:17:91","nodeType":"FunctionDefinition","parameters":{"id":26874,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26869,"mutability":"mutable","name":"target","nameLocation":"1793:6:91","nodeType":"VariableDeclaration","scope":26884,"src":"1785:14:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":26868,"name":"address","nodeType":"ElementaryTypeName","src":"1785:7:91","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":26871,"mutability":"mutable","name":"value","nameLocation":"1817:5:91","nodeType":"VariableDeclaration","scope":26884,"src":"1809:13:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26870,"name":"uint256","nodeType":"ElementaryTypeName","src":"1809:7:91","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":26873,"mutability":"mutable","name":"data","nameLocation":"1845:4:91","nodeType":"VariableDeclaration","scope":26884,"src":"1832:17:91","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26872,"name":"bytes","nodeType":"ElementaryTypeName","src":"1832:5:91","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1775:80:91"},"returnParameters":{"id":26881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26876,"mutability":"mutable","name":"success","nameLocation":"1879:7:91","nodeType":"VariableDeclaration","scope":26884,"src":"1874:12:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":26875,"name":"bool","nodeType":"ElementaryTypeName","src":"1874:4:91","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":26878,"mutability":"mutable","name":"result1","nameLocation":"1896:7:91","nodeType":"VariableDeclaration","scope":26884,"src":"1888:15:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":26877,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1888:7:91","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":26880,"mutability":"mutable","name":"result2","nameLocation":"1913:7:91","nodeType":"VariableDeclaration","scope":26884,"src":"1905:15:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":26879,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1905:7:91","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1873:48:91"},"scope":26970,"src":"1749:387:91","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":26895,"nodeType":"Block","src":"2350:143:91","statements":[{"AST":{"nativeSrc":"2385:102:91","nodeType":"YulBlock","src":"2385:102:91","statements":[{"nativeSrc":"2399:78:91","nodeType":"YulAssignment","src":"2399:78:91","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"2421:3:91","nodeType":"YulIdentifier","src":"2421:3:91"},"nativeSrc":"2421:5:91","nodeType":"YulFunctionCall","src":"2421:5:91"},{"name":"target","nativeSrc":"2428:6:91","nodeType":"YulIdentifier","src":"2428:6:91"},{"arguments":[{"name":"data","nativeSrc":"2440:4:91","nodeType":"YulIdentifier","src":"2440:4:91"},{"kind":"number","nativeSrc":"2446:4:91","nodeType":"YulLiteral","src":"2446:4:91","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2436:3:91","nodeType":"YulIdentifier","src":"2436:3:91"},"nativeSrc":"2436:15:91","nodeType":"YulFunctionCall","src":"2436:15:91"},{"arguments":[{"name":"data","nativeSrc":"2459:4:91","nodeType":"YulIdentifier","src":"2459:4:91"}],"functionName":{"name":"mload","nativeSrc":"2453:5:91","nodeType":"YulIdentifier","src":"2453:5:91"},"nativeSrc":"2453:11:91","nodeType":"YulFunctionCall","src":"2453:11:91"},{"kind":"number","nativeSrc":"2466:4:91","nodeType":"YulLiteral","src":"2466:4:91","type":"","value":"0x00"},{"kind":"number","nativeSrc":"2472:4:91","nodeType":"YulLiteral","src":"2472:4:91","type":"","value":"0x00"}],"functionName":{"name":"staticcall","nativeSrc":"2410:10:91","nodeType":"YulIdentifier","src":"2410:10:91"},"nativeSrc":"2410:67:91","nodeType":"YulFunctionCall","src":"2410:67:91"},"variableNames":[{"name":"success","nativeSrc":"2399:7:91","nodeType":"YulIdentifier","src":"2399:7:91"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":26889,"isOffset":false,"isSlot":false,"src":"2440:4:91","valueSize":1},{"declaration":26889,"isOffset":false,"isSlot":false,"src":"2459:4:91","valueSize":1},{"declaration":26892,"isOffset":false,"isSlot":false,"src":"2399:7:91","valueSize":1},{"declaration":26887,"isOffset":false,"isSlot":false,"src":"2428:6:91","valueSize":1}],"flags":["memory-safe"],"id":26894,"nodeType":"InlineAssembly","src":"2360:127:91"}]},"documentation":{"id":26885,"nodeType":"StructuredDocumentation","src":"2142:103:91","text":"@dev Performs a Solidity function call using a low level `staticcall` and ignoring the return data."},"id":26896,"implemented":true,"kind":"function","modifiers":[],"name":"staticcallNoReturn","nameLocation":"2259:18:91","nodeType":"FunctionDefinition","parameters":{"id":26890,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26887,"mutability":"mutable","name":"target","nameLocation":"2286:6:91","nodeType":"VariableDeclaration","scope":26896,"src":"2278:14:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":26886,"name":"address","nodeType":"ElementaryTypeName","src":"2278:7:91","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":26889,"mutability":"mutable","name":"data","nameLocation":"2307:4:91","nodeType":"VariableDeclaration","scope":26896,"src":"2294:17:91","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26888,"name":"bytes","nodeType":"ElementaryTypeName","src":"2294:5:91","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2277:35:91"},"returnParameters":{"id":26893,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26892,"mutability":"mutable","name":"success","nameLocation":"2341:7:91","nodeType":"VariableDeclaration","scope":26896,"src":"2336:12:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":26891,"name":"bool","nodeType":"ElementaryTypeName","src":"2336:4:91","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2335:14:91"},"scope":26970,"src":"2250:243:91","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":26911,"nodeType":"Block","src":"3054:213:91","statements":[{"AST":{"nativeSrc":"3089:172:91","nodeType":"YulBlock","src":"3089:172:91","statements":[{"nativeSrc":"3103:78:91","nodeType":"YulAssignment","src":"3103:78:91","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"3125:3:91","nodeType":"YulIdentifier","src":"3125:3:91"},"nativeSrc":"3125:5:91","nodeType":"YulFunctionCall","src":"3125:5:91"},{"name":"target","nativeSrc":"3132:6:91","nodeType":"YulIdentifier","src":"3132:6:91"},{"arguments":[{"name":"data","nativeSrc":"3144:4:91","nodeType":"YulIdentifier","src":"3144:4:91"},{"kind":"number","nativeSrc":"3150:4:91","nodeType":"YulLiteral","src":"3150:4:91","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3140:3:91","nodeType":"YulIdentifier","src":"3140:3:91"},"nativeSrc":"3140:15:91","nodeType":"YulFunctionCall","src":"3140:15:91"},{"arguments":[{"name":"data","nativeSrc":"3163:4:91","nodeType":"YulIdentifier","src":"3163:4:91"}],"functionName":{"name":"mload","nativeSrc":"3157:5:91","nodeType":"YulIdentifier","src":"3157:5:91"},"nativeSrc":"3157:11:91","nodeType":"YulFunctionCall","src":"3157:11:91"},{"kind":"number","nativeSrc":"3170:4:91","nodeType":"YulLiteral","src":"3170:4:91","type":"","value":"0x00"},{"kind":"number","nativeSrc":"3176:4:91","nodeType":"YulLiteral","src":"3176:4:91","type":"","value":"0x40"}],"functionName":{"name":"staticcall","nativeSrc":"3114:10:91","nodeType":"YulIdentifier","src":"3114:10:91"},"nativeSrc":"3114:67:91","nodeType":"YulFunctionCall","src":"3114:67:91"},"variableNames":[{"name":"success","nativeSrc":"3103:7:91","nodeType":"YulIdentifier","src":"3103:7:91"}]},{"nativeSrc":"3194:22:91","nodeType":"YulAssignment","src":"3194:22:91","value":{"arguments":[{"kind":"number","nativeSrc":"3211:4:91","nodeType":"YulLiteral","src":"3211:4:91","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"3205:5:91","nodeType":"YulIdentifier","src":"3205:5:91"},"nativeSrc":"3205:11:91","nodeType":"YulFunctionCall","src":"3205:11:91"},"variableNames":[{"name":"result1","nativeSrc":"3194:7:91","nodeType":"YulIdentifier","src":"3194:7:91"}]},{"nativeSrc":"3229:22:91","nodeType":"YulAssignment","src":"3229:22:91","value":{"arguments":[{"kind":"number","nativeSrc":"3246:4:91","nodeType":"YulLiteral","src":"3246:4:91","type":"","value":"0x20"}],"functionName":{"name":"mload","nativeSrc":"3240:5:91","nodeType":"YulIdentifier","src":"3240:5:91"},"nativeSrc":"3240:11:91","nodeType":"YulFunctionCall","src":"3240:11:91"},"variableNames":[{"name":"result2","nativeSrc":"3229:7:91","nodeType":"YulIdentifier","src":"3229:7:91"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":26901,"isOffset":false,"isSlot":false,"src":"3144:4:91","valueSize":1},{"declaration":26901,"isOffset":false,"isSlot":false,"src":"3163:4:91","valueSize":1},{"declaration":26906,"isOffset":false,"isSlot":false,"src":"3194:7:91","valueSize":1},{"declaration":26908,"isOffset":false,"isSlot":false,"src":"3229:7:91","valueSize":1},{"declaration":26904,"isOffset":false,"isSlot":false,"src":"3103:7:91","valueSize":1},{"declaration":26899,"isOffset":false,"isSlot":false,"src":"3132:6:91","valueSize":1}],"flags":["memory-safe"],"id":26910,"nodeType":"InlineAssembly","src":"3064:197:91"}]},"documentation":{"id":26897,"nodeType":"StructuredDocumentation","src":"2499:389:91","text":"@dev Performs a Solidity function call using a low level `staticcall` and returns the first 64 bytes of the result\n in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n and this function doesn't zero it out."},"id":26912,"implemented":true,"kind":"function","modifiers":[],"name":"staticcallReturn64Bytes","nameLocation":"2902:23:91","nodeType":"FunctionDefinition","parameters":{"id":26902,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26899,"mutability":"mutable","name":"target","nameLocation":"2943:6:91","nodeType":"VariableDeclaration","scope":26912,"src":"2935:14:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":26898,"name":"address","nodeType":"ElementaryTypeName","src":"2935:7:91","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":26901,"mutability":"mutable","name":"data","nameLocation":"2972:4:91","nodeType":"VariableDeclaration","scope":26912,"src":"2959:17:91","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26900,"name":"bytes","nodeType":"ElementaryTypeName","src":"2959:5:91","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2925:57:91"},"returnParameters":{"id":26909,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26904,"mutability":"mutable","name":"success","nameLocation":"3011:7:91","nodeType":"VariableDeclaration","scope":26912,"src":"3006:12:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":26903,"name":"bool","nodeType":"ElementaryTypeName","src":"3006:4:91","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":26906,"mutability":"mutable","name":"result1","nameLocation":"3028:7:91","nodeType":"VariableDeclaration","scope":26912,"src":"3020:15:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":26905,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3020:7:91","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":26908,"mutability":"mutable","name":"result2","nameLocation":"3045:7:91","nodeType":"VariableDeclaration","scope":26912,"src":"3037:15:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":26907,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3037:7:91","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3005:48:91"},"scope":26970,"src":"2893:374:91","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":26923,"nodeType":"Block","src":"3480:145:91","statements":[{"AST":{"nativeSrc":"3515:104:91","nodeType":"YulBlock","src":"3515:104:91","statements":[{"nativeSrc":"3529:80:91","nodeType":"YulAssignment","src":"3529:80:91","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"3553:3:91","nodeType":"YulIdentifier","src":"3553:3:91"},"nativeSrc":"3553:5:91","nodeType":"YulFunctionCall","src":"3553:5:91"},{"name":"target","nativeSrc":"3560:6:91","nodeType":"YulIdentifier","src":"3560:6:91"},{"arguments":[{"name":"data","nativeSrc":"3572:4:91","nodeType":"YulIdentifier","src":"3572:4:91"},{"kind":"number","nativeSrc":"3578:4:91","nodeType":"YulLiteral","src":"3578:4:91","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3568:3:91","nodeType":"YulIdentifier","src":"3568:3:91"},"nativeSrc":"3568:15:91","nodeType":"YulFunctionCall","src":"3568:15:91"},{"arguments":[{"name":"data","nativeSrc":"3591:4:91","nodeType":"YulIdentifier","src":"3591:4:91"}],"functionName":{"name":"mload","nativeSrc":"3585:5:91","nodeType":"YulIdentifier","src":"3585:5:91"},"nativeSrc":"3585:11:91","nodeType":"YulFunctionCall","src":"3585:11:91"},{"kind":"number","nativeSrc":"3598:4:91","nodeType":"YulLiteral","src":"3598:4:91","type":"","value":"0x00"},{"kind":"number","nativeSrc":"3604:4:91","nodeType":"YulLiteral","src":"3604:4:91","type":"","value":"0x00"}],"functionName":{"name":"delegatecall","nativeSrc":"3540:12:91","nodeType":"YulIdentifier","src":"3540:12:91"},"nativeSrc":"3540:69:91","nodeType":"YulFunctionCall","src":"3540:69:91"},"variableNames":[{"name":"success","nativeSrc":"3529:7:91","nodeType":"YulIdentifier","src":"3529:7:91"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":26917,"isOffset":false,"isSlot":false,"src":"3572:4:91","valueSize":1},{"declaration":26917,"isOffset":false,"isSlot":false,"src":"3591:4:91","valueSize":1},{"declaration":26920,"isOffset":false,"isSlot":false,"src":"3529:7:91","valueSize":1},{"declaration":26915,"isOffset":false,"isSlot":false,"src":"3560:6:91","valueSize":1}],"flags":["memory-safe"],"id":26922,"nodeType":"InlineAssembly","src":"3490:129:91"}]},"documentation":{"id":26913,"nodeType":"StructuredDocumentation","src":"3273:105:91","text":"@dev Performs a Solidity function call using a low level `delegatecall` and ignoring the return data."},"id":26924,"implemented":true,"kind":"function","modifiers":[],"name":"delegatecallNoReturn","nameLocation":"3392:20:91","nodeType":"FunctionDefinition","parameters":{"id":26918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26915,"mutability":"mutable","name":"target","nameLocation":"3421:6:91","nodeType":"VariableDeclaration","scope":26924,"src":"3413:14:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":26914,"name":"address","nodeType":"ElementaryTypeName","src":"3413:7:91","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":26917,"mutability":"mutable","name":"data","nameLocation":"3442:4:91","nodeType":"VariableDeclaration","scope":26924,"src":"3429:17:91","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26916,"name":"bytes","nodeType":"ElementaryTypeName","src":"3429:5:91","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3412:35:91"},"returnParameters":{"id":26921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26920,"mutability":"mutable","name":"success","nameLocation":"3471:7:91","nodeType":"VariableDeclaration","scope":26924,"src":"3466:12:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":26919,"name":"bool","nodeType":"ElementaryTypeName","src":"3466:4:91","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3465:14:91"},"scope":26970,"src":"3383:242:91","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":26939,"nodeType":"Block","src":"4185:215:91","statements":[{"AST":{"nativeSrc":"4220:174:91","nodeType":"YulBlock","src":"4220:174:91","statements":[{"nativeSrc":"4234:80:91","nodeType":"YulAssignment","src":"4234:80:91","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"4258:3:91","nodeType":"YulIdentifier","src":"4258:3:91"},"nativeSrc":"4258:5:91","nodeType":"YulFunctionCall","src":"4258:5:91"},{"name":"target","nativeSrc":"4265:6:91","nodeType":"YulIdentifier","src":"4265:6:91"},{"arguments":[{"name":"data","nativeSrc":"4277:4:91","nodeType":"YulIdentifier","src":"4277:4:91"},{"kind":"number","nativeSrc":"4283:4:91","nodeType":"YulLiteral","src":"4283:4:91","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4273:3:91","nodeType":"YulIdentifier","src":"4273:3:91"},"nativeSrc":"4273:15:91","nodeType":"YulFunctionCall","src":"4273:15:91"},{"arguments":[{"name":"data","nativeSrc":"4296:4:91","nodeType":"YulIdentifier","src":"4296:4:91"}],"functionName":{"name":"mload","nativeSrc":"4290:5:91","nodeType":"YulIdentifier","src":"4290:5:91"},"nativeSrc":"4290:11:91","nodeType":"YulFunctionCall","src":"4290:11:91"},{"kind":"number","nativeSrc":"4303:4:91","nodeType":"YulLiteral","src":"4303:4:91","type":"","value":"0x00"},{"kind":"number","nativeSrc":"4309:4:91","nodeType":"YulLiteral","src":"4309:4:91","type":"","value":"0x40"}],"functionName":{"name":"delegatecall","nativeSrc":"4245:12:91","nodeType":"YulIdentifier","src":"4245:12:91"},"nativeSrc":"4245:69:91","nodeType":"YulFunctionCall","src":"4245:69:91"},"variableNames":[{"name":"success","nativeSrc":"4234:7:91","nodeType":"YulIdentifier","src":"4234:7:91"}]},{"nativeSrc":"4327:22:91","nodeType":"YulAssignment","src":"4327:22:91","value":{"arguments":[{"kind":"number","nativeSrc":"4344:4:91","nodeType":"YulLiteral","src":"4344:4:91","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"4338:5:91","nodeType":"YulIdentifier","src":"4338:5:91"},"nativeSrc":"4338:11:91","nodeType":"YulFunctionCall","src":"4338:11:91"},"variableNames":[{"name":"result1","nativeSrc":"4327:7:91","nodeType":"YulIdentifier","src":"4327:7:91"}]},{"nativeSrc":"4362:22:91","nodeType":"YulAssignment","src":"4362:22:91","value":{"arguments":[{"kind":"number","nativeSrc":"4379:4:91","nodeType":"YulLiteral","src":"4379:4:91","type":"","value":"0x20"}],"functionName":{"name":"mload","nativeSrc":"4373:5:91","nodeType":"YulIdentifier","src":"4373:5:91"},"nativeSrc":"4373:11:91","nodeType":"YulFunctionCall","src":"4373:11:91"},"variableNames":[{"name":"result2","nativeSrc":"4362:7:91","nodeType":"YulIdentifier","src":"4362:7:91"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":26929,"isOffset":false,"isSlot":false,"src":"4277:4:91","valueSize":1},{"declaration":26929,"isOffset":false,"isSlot":false,"src":"4296:4:91","valueSize":1},{"declaration":26934,"isOffset":false,"isSlot":false,"src":"4327:7:91","valueSize":1},{"declaration":26936,"isOffset":false,"isSlot":false,"src":"4362:7:91","valueSize":1},{"declaration":26932,"isOffset":false,"isSlot":false,"src":"4234:7:91","valueSize":1},{"declaration":26927,"isOffset":false,"isSlot":false,"src":"4265:6:91","valueSize":1}],"flags":["memory-safe"],"id":26938,"nodeType":"InlineAssembly","src":"4195:199:91"}]},"documentation":{"id":26925,"nodeType":"StructuredDocumentation","src":"3631:391:91","text":"@dev Performs a Solidity function call using a low level `delegatecall` and returns the first 64 bytes of the result\n in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n and this function doesn't zero it out."},"id":26940,"implemented":true,"kind":"function","modifiers":[],"name":"delegatecallReturn64Bytes","nameLocation":"4036:25:91","nodeType":"FunctionDefinition","parameters":{"id":26930,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26927,"mutability":"mutable","name":"target","nameLocation":"4079:6:91","nodeType":"VariableDeclaration","scope":26940,"src":"4071:14:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":26926,"name":"address","nodeType":"ElementaryTypeName","src":"4071:7:91","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":26929,"mutability":"mutable","name":"data","nameLocation":"4108:4:91","nodeType":"VariableDeclaration","scope":26940,"src":"4095:17:91","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26928,"name":"bytes","nodeType":"ElementaryTypeName","src":"4095:5:91","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4061:57:91"},"returnParameters":{"id":26937,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26932,"mutability":"mutable","name":"success","nameLocation":"4142:7:91","nodeType":"VariableDeclaration","scope":26940,"src":"4137:12:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":26931,"name":"bool","nodeType":"ElementaryTypeName","src":"4137:4:91","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":26934,"mutability":"mutable","name":"result1","nameLocation":"4159:7:91","nodeType":"VariableDeclaration","scope":26940,"src":"4151:15:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":26933,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4151:7:91","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":26936,"mutability":"mutable","name":"result2","nameLocation":"4176:7:91","nodeType":"VariableDeclaration","scope":26940,"src":"4168:15:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":26935,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4168:7:91","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4136:48:91"},"scope":26970,"src":"4027:373:91","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":26947,"nodeType":"Block","src":"4526:89:91","statements":[{"AST":{"nativeSrc":"4561:48:91","nodeType":"YulBlock","src":"4561:48:91","statements":[{"nativeSrc":"4575:24:91","nodeType":"YulAssignment","src":"4575:24:91","value":{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"4583:14:91","nodeType":"YulIdentifier","src":"4583:14:91"},"nativeSrc":"4583:16:91","nodeType":"YulFunctionCall","src":"4583:16:91"},"variableNames":[{"name":"size","nativeSrc":"4575:4:91","nodeType":"YulIdentifier","src":"4575:4:91"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":26944,"isOffset":false,"isSlot":false,"src":"4575:4:91","valueSize":1}],"flags":["memory-safe"],"id":26946,"nodeType":"InlineAssembly","src":"4536:73:91"}]},"documentation":{"id":26941,"nodeType":"StructuredDocumentation","src":"4406:52:91","text":"@dev Returns the size of the return data buffer."},"id":26948,"implemented":true,"kind":"function","modifiers":[],"name":"returnDataSize","nameLocation":"4472:14:91","nodeType":"FunctionDefinition","parameters":{"id":26942,"nodeType":"ParameterList","parameters":[],"src":"4486:2:91"},"returnParameters":{"id":26945,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26944,"mutability":"mutable","name":"size","nameLocation":"4520:4:91","nodeType":"VariableDeclaration","scope":26948,"src":"4512:12:91","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":26943,"name":"uint256","nodeType":"ElementaryTypeName","src":"4512:7:91","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4511:14:91"},"scope":26970,"src":"4463:152:91","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26955,"nodeType":"Block","src":"4764:268:91","statements":[{"AST":{"nativeSrc":"4799:227:91","nodeType":"YulBlock","src":"4799:227:91","statements":[{"nativeSrc":"4813:21:91","nodeType":"YulAssignment","src":"4813:21:91","value":{"arguments":[{"kind":"number","nativeSrc":"4829:4:91","nodeType":"YulLiteral","src":"4829:4:91","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"4823:5:91","nodeType":"YulIdentifier","src":"4823:5:91"},"nativeSrc":"4823:11:91","nodeType":"YulFunctionCall","src":"4823:11:91"},"variableNames":[{"name":"result","nativeSrc":"4813:6:91","nodeType":"YulIdentifier","src":"4813:6:91"}]},{"expression":{"arguments":[{"name":"result","nativeSrc":"4854:6:91","nodeType":"YulIdentifier","src":"4854:6:91"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"4862:14:91","nodeType":"YulIdentifier","src":"4862:14:91"},"nativeSrc":"4862:16:91","nodeType":"YulFunctionCall","src":"4862:16:91"}],"functionName":{"name":"mstore","nativeSrc":"4847:6:91","nodeType":"YulIdentifier","src":"4847:6:91"},"nativeSrc":"4847:32:91","nodeType":"YulFunctionCall","src":"4847:32:91"},"nativeSrc":"4847:32:91","nodeType":"YulExpressionStatement","src":"4847:32:91"},{"expression":{"arguments":[{"arguments":[{"name":"result","nativeSrc":"4911:6:91","nodeType":"YulIdentifier","src":"4911:6:91"},{"kind":"number","nativeSrc":"4919:4:91","nodeType":"YulLiteral","src":"4919:4:91","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4907:3:91","nodeType":"YulIdentifier","src":"4907:3:91"},"nativeSrc":"4907:17:91","nodeType":"YulFunctionCall","src":"4907:17:91"},{"kind":"number","nativeSrc":"4926:4:91","nodeType":"YulLiteral","src":"4926:4:91","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"4932:14:91","nodeType":"YulIdentifier","src":"4932:14:91"},"nativeSrc":"4932:16:91","nodeType":"YulFunctionCall","src":"4932:16:91"}],"functionName":{"name":"returndatacopy","nativeSrc":"4892:14:91","nodeType":"YulIdentifier","src":"4892:14:91"},"nativeSrc":"4892:57:91","nodeType":"YulFunctionCall","src":"4892:57:91"},"nativeSrc":"4892:57:91","nodeType":"YulExpressionStatement","src":"4892:57:91"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4969:4:91","nodeType":"YulLiteral","src":"4969:4:91","type":"","value":"0x40"},{"arguments":[{"name":"result","nativeSrc":"4979:6:91","nodeType":"YulIdentifier","src":"4979:6:91"},{"arguments":[{"kind":"number","nativeSrc":"4991:4:91","nodeType":"YulLiteral","src":"4991:4:91","type":"","value":"0x20"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"4997:14:91","nodeType":"YulIdentifier","src":"4997:14:91"},"nativeSrc":"4997:16:91","nodeType":"YulFunctionCall","src":"4997:16:91"}],"functionName":{"name":"add","nativeSrc":"4987:3:91","nodeType":"YulIdentifier","src":"4987:3:91"},"nativeSrc":"4987:27:91","nodeType":"YulFunctionCall","src":"4987:27:91"}],"functionName":{"name":"add","nativeSrc":"4975:3:91","nodeType":"YulIdentifier","src":"4975:3:91"},"nativeSrc":"4975:40:91","nodeType":"YulFunctionCall","src":"4975:40:91"}],"functionName":{"name":"mstore","nativeSrc":"4962:6:91","nodeType":"YulIdentifier","src":"4962:6:91"},"nativeSrc":"4962:54:91","nodeType":"YulFunctionCall","src":"4962:54:91"},"nativeSrc":"4962:54:91","nodeType":"YulExpressionStatement","src":"4962:54:91"}]},"evmVersion":"prague","externalReferences":[{"declaration":26952,"isOffset":false,"isSlot":false,"src":"4813:6:91","valueSize":1},{"declaration":26952,"isOffset":false,"isSlot":false,"src":"4854:6:91","valueSize":1},{"declaration":26952,"isOffset":false,"isSlot":false,"src":"4911:6:91","valueSize":1},{"declaration":26952,"isOffset":false,"isSlot":false,"src":"4979:6:91","valueSize":1}],"flags":["memory-safe"],"id":26954,"nodeType":"InlineAssembly","src":"4774:252:91"}]},"documentation":{"id":26949,"nodeType":"StructuredDocumentation","src":"4621:72:91","text":"@dev Returns a buffer containing the return data from the last call."},"id":26956,"implemented":true,"kind":"function","modifiers":[],"name":"returnData","nameLocation":"4707:10:91","nodeType":"FunctionDefinition","parameters":{"id":26950,"nodeType":"ParameterList","parameters":[],"src":"4717:2:91"},"returnParameters":{"id":26953,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26952,"mutability":"mutable","name":"result","nameLocation":"4756:6:91","nodeType":"VariableDeclaration","scope":26956,"src":"4743:19:91","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26951,"name":"bytes","nodeType":"ElementaryTypeName","src":"4743:5:91","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4742:21:91"},"scope":26970,"src":"4698:334:91","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26961,"nodeType":"Block","src":"5137:185:91","statements":[{"AST":{"nativeSrc":"5172:144:91","nodeType":"YulBlock","src":"5172:144:91","statements":[{"nativeSrc":"5186:22:91","nodeType":"YulVariableDeclaration","src":"5186:22:91","value":{"arguments":[{"kind":"number","nativeSrc":"5203:4:91","nodeType":"YulLiteral","src":"5203:4:91","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"5197:5:91","nodeType":"YulIdentifier","src":"5197:5:91"},"nativeSrc":"5197:11:91","nodeType":"YulFunctionCall","src":"5197:11:91"},"variables":[{"name":"fmp","nativeSrc":"5190:3:91","nodeType":"YulTypedName","src":"5190:3:91","type":""}]},{"expression":{"arguments":[{"name":"fmp","nativeSrc":"5236:3:91","nodeType":"YulIdentifier","src":"5236:3:91"},{"kind":"number","nativeSrc":"5241:4:91","nodeType":"YulLiteral","src":"5241:4:91","type":"","value":"0x00"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"5247:14:91","nodeType":"YulIdentifier","src":"5247:14:91"},"nativeSrc":"5247:16:91","nodeType":"YulFunctionCall","src":"5247:16:91"}],"functionName":{"name":"returndatacopy","nativeSrc":"5221:14:91","nodeType":"YulIdentifier","src":"5221:14:91"},"nativeSrc":"5221:43:91","nodeType":"YulFunctionCall","src":"5221:43:91"},"nativeSrc":"5221:43:91","nodeType":"YulExpressionStatement","src":"5221:43:91"},{"expression":{"arguments":[{"name":"fmp","nativeSrc":"5284:3:91","nodeType":"YulIdentifier","src":"5284:3:91"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"5289:14:91","nodeType":"YulIdentifier","src":"5289:14:91"},"nativeSrc":"5289:16:91","nodeType":"YulFunctionCall","src":"5289:16:91"}],"functionName":{"name":"revert","nativeSrc":"5277:6:91","nodeType":"YulIdentifier","src":"5277:6:91"},"nativeSrc":"5277:29:91","nodeType":"YulFunctionCall","src":"5277:29:91"},"nativeSrc":"5277:29:91","nodeType":"YulExpressionStatement","src":"5277:29:91"}]},"evmVersion":"prague","externalReferences":[],"flags":["memory-safe"],"id":26960,"nodeType":"InlineAssembly","src":"5147:169:91"}]},"documentation":{"id":26957,"nodeType":"StructuredDocumentation","src":"5038:56:91","text":"@dev Revert with the return data from the last call."},"id":26962,"implemented":true,"kind":"function","modifiers":[],"name":"bubbleRevert","nameLocation":"5108:12:91","nodeType":"FunctionDefinition","parameters":{"id":26958,"nodeType":"ParameterList","parameters":[],"src":"5120:2:91"},"returnParameters":{"id":26959,"nodeType":"ParameterList","parameters":[],"src":"5137:0:91"},"scope":26970,"src":"5099:223:91","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26968,"nodeType":"Block","src":"5389:113:91","statements":[{"AST":{"nativeSrc":"5424:72:91","nodeType":"YulBlock","src":"5424:72:91","statements":[{"expression":{"arguments":[{"arguments":[{"name":"returndata","nativeSrc":"5449:10:91","nodeType":"YulIdentifier","src":"5449:10:91"},{"kind":"number","nativeSrc":"5461:4:91","nodeType":"YulLiteral","src":"5461:4:91","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5445:3:91","nodeType":"YulIdentifier","src":"5445:3:91"},"nativeSrc":"5445:21:91","nodeType":"YulFunctionCall","src":"5445:21:91"},{"arguments":[{"name":"returndata","nativeSrc":"5474:10:91","nodeType":"YulIdentifier","src":"5474:10:91"}],"functionName":{"name":"mload","nativeSrc":"5468:5:91","nodeType":"YulIdentifier","src":"5468:5:91"},"nativeSrc":"5468:17:91","nodeType":"YulFunctionCall","src":"5468:17:91"}],"functionName":{"name":"revert","nativeSrc":"5438:6:91","nodeType":"YulIdentifier","src":"5438:6:91"},"nativeSrc":"5438:48:91","nodeType":"YulFunctionCall","src":"5438:48:91"},"nativeSrc":"5438:48:91","nodeType":"YulExpressionStatement","src":"5438:48:91"}]},"evmVersion":"prague","externalReferences":[{"declaration":26964,"isOffset":false,"isSlot":false,"src":"5449:10:91","valueSize":1},{"declaration":26964,"isOffset":false,"isSlot":false,"src":"5474:10:91","valueSize":1}],"flags":["memory-safe"],"id":26967,"nodeType":"InlineAssembly","src":"5399:97:91"}]},"id":26969,"implemented":true,"kind":"function","modifiers":[],"name":"bubbleRevert","nameLocation":"5337:12:91","nodeType":"FunctionDefinition","parameters":{"id":26965,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26964,"mutability":"mutable","name":"returndata","nameLocation":"5363:10:91","nodeType":"VariableDeclaration","scope":26969,"src":"5350:23:91","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":26963,"name":"bytes","nodeType":"ElementaryTypeName","src":"5350:5:91","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5349:25:91"},"returnParameters":{"id":26966,"nodeType":"ParameterList","parameters":[],"src":"5389:0:91"},"scope":26970,"src":"5328:174:91","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":26971,"src":"421:5083:91","usedErrors":[],"usedEvents":[]}],"src":"106:5399:91"},"id":91},"@openzeppelin/contracts/utils/Memory.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Memory.sol","exportedSymbols":{"Math":[35187],"Memory":[27272],"Panic":[30997]},"id":27273,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":26972,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"100:24:92"},{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","file":"./Panic.sol","id":26974,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":27273,"sourceUnit":30998,"src":"126:34:92","symbolAliases":[{"foreign":{"id":26973,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"134:5:92","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"./math/Math.sol","id":26976,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":27273,"sourceUnit":35188,"src":"161:37:92","symbolAliases":[{"foreign":{"id":26975,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"169:4:92","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Memory","contractDependencies":[],"contractKind":"library","documentation":{"id":26977,"nodeType":"StructuredDocumentation","src":"200:579:92","text":" @dev Utilities to manipulate memory.\n Memory is a contiguous and dynamic byte array in which Solidity stores non-primitive types.\n This library provides functions to manipulate pointers to this dynamic array and work with slices of it.\n Slices provide a view into a portion of memory without copying data, enabling efficient substring operations.\n WARNING: When manipulating memory pointers or slices, make sure to follow the Solidity documentation\n guidelines for https://docs.soliditylang.org/en/v0.8.20/assembly.html#memory-safety[Memory Safety]."},"fullyImplemented":true,"id":27272,"linearizedBaseContracts":[27272],"name":"Memory","nameLocation":"788:6:92","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Memory.Pointer","id":26979,"name":"Pointer","nameLocation":"806:7:92","nodeType":"UserDefinedValueTypeDefinition","src":"801:24:92","underlyingType":{"id":26978,"name":"bytes32","nodeType":"ElementaryTypeName","src":"817:7:92","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"body":{"id":26987,"nodeType":"Block","src":"963:83:92","statements":[{"AST":{"nativeSrc":"998:42:92","nodeType":"YulBlock","src":"998:42:92","statements":[{"nativeSrc":"1012:18:92","nodeType":"YulAssignment","src":"1012:18:92","value":{"arguments":[{"kind":"number","nativeSrc":"1025:4:92","nodeType":"YulLiteral","src":"1025:4:92","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"1019:5:92","nodeType":"YulIdentifier","src":"1019:5:92"},"nativeSrc":"1019:11:92","nodeType":"YulFunctionCall","src":"1019:11:92"},"variableNames":[{"name":"ptr","nativeSrc":"1012:3:92","nodeType":"YulIdentifier","src":"1012:3:92"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":26984,"isOffset":false,"isSlot":false,"src":"1012:3:92","valueSize":1}],"flags":["memory-safe"],"id":26986,"nodeType":"InlineAssembly","src":"973:67:92"}]},"documentation":{"id":26980,"nodeType":"StructuredDocumentation","src":"831:59:92","text":"@dev Returns a `Pointer` to the current free `Pointer`."},"id":26988,"implemented":true,"kind":"function","modifiers":[],"name":"getFreeMemoryPointer","nameLocation":"904:20:92","nodeType":"FunctionDefinition","parameters":{"id":26981,"nodeType":"ParameterList","parameters":[],"src":"924:2:92"},"returnParameters":{"id":26985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26984,"mutability":"mutable","name":"ptr","nameLocation":"958:3:92","nodeType":"VariableDeclaration","scope":26988,"src":"950:11:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"},"typeName":{"id":26983,"nodeType":"UserDefinedTypeName","pathNode":{"id":26982,"name":"Pointer","nameLocations":["950:7:92"],"nodeType":"IdentifierPath","referencedDeclaration":26979,"src":"950:7:92"},"referencedDeclaration":26979,"src":"950:7:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"visibility":"internal"}],"src":"949:13:92"},"scope":27272,"src":"895:151:92","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":26996,"nodeType":"Block","src":"1255:82:92","statements":[{"AST":{"nativeSrc":"1290:41:92","nodeType":"YulBlock","src":"1290:41:92","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1311:4:92","nodeType":"YulLiteral","src":"1311:4:92","type":"","value":"0x40"},{"name":"ptr","nativeSrc":"1317:3:92","nodeType":"YulIdentifier","src":"1317:3:92"}],"functionName":{"name":"mstore","nativeSrc":"1304:6:92","nodeType":"YulIdentifier","src":"1304:6:92"},"nativeSrc":"1304:17:92","nodeType":"YulFunctionCall","src":"1304:17:92"},"nativeSrc":"1304:17:92","nodeType":"YulExpressionStatement","src":"1304:17:92"}]},"evmVersion":"prague","externalReferences":[{"declaration":26992,"isOffset":false,"isSlot":false,"src":"1317:3:92","valueSize":1}],"flags":["memory-safe"],"id":26995,"nodeType":"InlineAssembly","src":"1265:66:92"}]},"documentation":{"id":26989,"nodeType":"StructuredDocumentation","src":"1052:141:92","text":" @dev Sets the free `Pointer` to a specific value.\n WARNING: Everything after the pointer may be overwritten.*"},"id":26997,"implemented":true,"kind":"function","modifiers":[],"name":"setFreeMemoryPointer","nameLocation":"1207:20:92","nodeType":"FunctionDefinition","parameters":{"id":26993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":26992,"mutability":"mutable","name":"ptr","nameLocation":"1236:3:92","nodeType":"VariableDeclaration","scope":26997,"src":"1228:11:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"},"typeName":{"id":26991,"nodeType":"UserDefinedTypeName","pathNode":{"id":26990,"name":"Pointer","nameLocations":["1228:7:92"],"nodeType":"IdentifierPath","referencedDeclaration":26979,"src":"1228:7:92"},"referencedDeclaration":26979,"src":"1228:7:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"visibility":"internal"}],"src":"1227:13:92"},"returnParameters":{"id":26994,"nodeType":"ParameterList","parameters":[],"src":"1255:0:92"},"scope":27272,"src":"1198:139:92","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27011,"nodeType":"Block","src":"1504:43:92","statements":[{"expression":{"arguments":[{"id":27008,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27001,"src":"1536:3:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}],"expression":{"id":27006,"name":"Pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26979,"src":"1521:7:92","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Pointer_$26979_$","typeString":"type(Memory.Pointer)"}},"id":27007,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1529:6:92","memberName":"unwrap","nodeType":"MemberAccess","src":"1521:14:92","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Pointer_$26979_$returns$_t_bytes32_$","typeString":"function (Memory.Pointer) pure returns (bytes32)"}},"id":27009,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1521:19:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":27005,"id":27010,"nodeType":"Return","src":"1514:26:92"}]},"documentation":{"id":26998,"nodeType":"StructuredDocumentation","src":"1343:92:92","text":"@dev `Pointer` to `bytes32`. Expects a pointer to a properly ABI-encoded `bytes` object."},"id":27012,"implemented":true,"kind":"function","modifiers":[],"name":"asBytes32","nameLocation":"1449:9:92","nodeType":"FunctionDefinition","parameters":{"id":27002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27001,"mutability":"mutable","name":"ptr","nameLocation":"1467:3:92","nodeType":"VariableDeclaration","scope":27012,"src":"1459:11:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"},"typeName":{"id":27000,"nodeType":"UserDefinedTypeName","pathNode":{"id":26999,"name":"Pointer","nameLocations":["1459:7:92"],"nodeType":"IdentifierPath","referencedDeclaration":26979,"src":"1459:7:92"},"referencedDeclaration":26979,"src":"1459:7:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"visibility":"internal"}],"src":"1458:13:92"},"returnParameters":{"id":27005,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27004,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":27012,"src":"1495:7:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":27003,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1495:7:92","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1494:9:92"},"scope":27272,"src":"1440:107:92","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27026,"nodeType":"Block","src":"1716:43:92","statements":[{"expression":{"arguments":[{"id":27023,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27015,"src":"1746:5:92","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":27021,"name":"Pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26979,"src":"1733:7:92","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Pointer_$26979_$","typeString":"type(Memory.Pointer)"}},"id":27022,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1741:4:92","memberName":"wrap","nodeType":"MemberAccess","src":"1733:12:92","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_Pointer_$26979_$","typeString":"function (bytes32) pure returns (Memory.Pointer)"}},"id":27024,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1733:19:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"functionReturnParameters":27020,"id":27025,"nodeType":"Return","src":"1726:26:92"}]},"documentation":{"id":27013,"nodeType":"StructuredDocumentation","src":"1553:92:92","text":"@dev `bytes32` to `Pointer`. Expects a pointer to a properly ABI-encoded `bytes` object."},"id":27027,"implemented":true,"kind":"function","modifiers":[],"name":"asPointer","nameLocation":"1659:9:92","nodeType":"FunctionDefinition","parameters":{"id":27016,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27015,"mutability":"mutable","name":"value","nameLocation":"1677:5:92","nodeType":"VariableDeclaration","scope":27027,"src":"1669:13:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":27014,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1669:7:92","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1668:15:92"},"returnParameters":{"id":27020,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27019,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":27027,"src":"1707:7:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"},"typeName":{"id":27018,"nodeType":"UserDefinedTypeName","pathNode":{"id":27017,"name":"Pointer","nameLocations":["1707:7:92"],"nodeType":"IdentifierPath","referencedDeclaration":26979,"src":"1707:7:92"},"referencedDeclaration":26979,"src":"1707:7:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"visibility":"internal"}],"src":"1706:9:92"},"scope":27272,"src":"1650:109:92","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27055,"nodeType":"Block","src":"1898:84:92","statements":[{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27051,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":27047,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27031,"src":"1959:3:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}],"expression":{"id":27045,"name":"Pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26979,"src":"1944:7:92","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Pointer_$26979_$","typeString":"type(Memory.Pointer)"}},"id":27046,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1952:6:92","memberName":"unwrap","nodeType":"MemberAccess","src":"1944:14:92","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Pointer_$26979_$returns$_t_bytes32_$","typeString":"function (Memory.Pointer) pure returns (bytes32)"}},"id":27048,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1944:19:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":27044,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1936:7:92","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":27043,"name":"uint256","nodeType":"ElementaryTypeName","src":"1936:7:92","typeDescriptions":{}}},"id":27049,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1936:28:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":27050,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27033,"src":"1967:6:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1936:37:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27042,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1928:7:92","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":27041,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1928:7:92","typeDescriptions":{}}},"id":27052,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1928:46:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":27039,"name":"Pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26979,"src":"1915:7:92","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Pointer_$26979_$","typeString":"type(Memory.Pointer)"}},"id":27040,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1923:4:92","memberName":"wrap","nodeType":"MemberAccess","src":"1915:12:92","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_Pointer_$26979_$","typeString":"function (bytes32) pure returns (Memory.Pointer)"}},"id":27053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1915:60:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"functionReturnParameters":27038,"id":27054,"nodeType":"Return","src":"1908:67:92"}]},"documentation":{"id":27028,"nodeType":"StructuredDocumentation","src":"1765:50:92","text":"@dev Move a pointer forward by a given offset."},"id":27056,"implemented":true,"kind":"function","modifiers":[],"name":"forward","nameLocation":"1829:7:92","nodeType":"FunctionDefinition","parameters":{"id":27034,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27031,"mutability":"mutable","name":"ptr","nameLocation":"1845:3:92","nodeType":"VariableDeclaration","scope":27056,"src":"1837:11:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"},"typeName":{"id":27030,"nodeType":"UserDefinedTypeName","pathNode":{"id":27029,"name":"Pointer","nameLocations":["1837:7:92"],"nodeType":"IdentifierPath","referencedDeclaration":26979,"src":"1837:7:92"},"referencedDeclaration":26979,"src":"1837:7:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"visibility":"internal"},{"constant":false,"id":27033,"mutability":"mutable","name":"offset","nameLocation":"1858:6:92","nodeType":"VariableDeclaration","scope":27056,"src":"1850:14:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27032,"name":"uint256","nodeType":"ElementaryTypeName","src":"1850:7:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1836:29:92"},"returnParameters":{"id":27038,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27037,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":27056,"src":"1889:7:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"},"typeName":{"id":27036,"nodeType":"UserDefinedTypeName","pathNode":{"id":27035,"name":"Pointer","nameLocations":["1889:7:92"],"nodeType":"IdentifierPath","referencedDeclaration":26979,"src":"1889:7:92"},"referencedDeclaration":26979,"src":"1889:7:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"visibility":"internal"}],"src":"1888:9:92"},"scope":27272,"src":"1820:162:92","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27078,"nodeType":"Block","src":"2114:68:92","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":27076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":27070,"name":"ptr1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27060,"src":"2146:4:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}],"expression":{"id":27068,"name":"Pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26979,"src":"2131:7:92","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Pointer_$26979_$","typeString":"type(Memory.Pointer)"}},"id":27069,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2139:6:92","memberName":"unwrap","nodeType":"MemberAccess","src":"2131:14:92","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Pointer_$26979_$returns$_t_bytes32_$","typeString":"function (Memory.Pointer) pure returns (bytes32)"}},"id":27071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2131:20:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":27074,"name":"ptr2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27063,"src":"2170:4:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}],"expression":{"id":27072,"name":"Pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26979,"src":"2155:7:92","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Pointer_$26979_$","typeString":"type(Memory.Pointer)"}},"id":27073,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2163:6:92","memberName":"unwrap","nodeType":"MemberAccess","src":"2155:14:92","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Pointer_$26979_$returns$_t_bytes32_$","typeString":"function (Memory.Pointer) pure returns (bytes32)"}},"id":27075,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2155:20:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2131:44:92","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":27067,"id":27077,"nodeType":"Return","src":"2124:51:92"}]},"documentation":{"id":27057,"nodeType":"StructuredDocumentation","src":"1988:49:92","text":"@dev Equality comparator for memory pointers."},"id":27079,"implemented":true,"kind":"function","modifiers":[],"name":"equal","nameLocation":"2051:5:92","nodeType":"FunctionDefinition","parameters":{"id":27064,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27060,"mutability":"mutable","name":"ptr1","nameLocation":"2065:4:92","nodeType":"VariableDeclaration","scope":27079,"src":"2057:12:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"},"typeName":{"id":27059,"nodeType":"UserDefinedTypeName","pathNode":{"id":27058,"name":"Pointer","nameLocations":["2057:7:92"],"nodeType":"IdentifierPath","referencedDeclaration":26979,"src":"2057:7:92"},"referencedDeclaration":26979,"src":"2057:7:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"visibility":"internal"},{"constant":false,"id":27063,"mutability":"mutable","name":"ptr2","nameLocation":"2079:4:92","nodeType":"VariableDeclaration","scope":27079,"src":"2071:12:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"},"typeName":{"id":27062,"nodeType":"UserDefinedTypeName","pathNode":{"id":27061,"name":"Pointer","nameLocations":["2071:7:92"],"nodeType":"IdentifierPath","referencedDeclaration":26979,"src":"2071:7:92"},"referencedDeclaration":26979,"src":"2071:7:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"visibility":"internal"}],"src":"2056:28:92"},"returnParameters":{"id":27067,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27066,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":27079,"src":"2108:4:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":27065,"name":"bool","nodeType":"ElementaryTypeName","src":"2108:4:92","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2107:6:92"},"scope":27272,"src":"2042:140:92","stateMutability":"pure","virtual":false,"visibility":"internal"},{"canonicalName":"Memory.Slice","id":27081,"name":"Slice","nameLocation":"2193:5:92","nodeType":"UserDefinedValueTypeDefinition","src":"2188:22:92","underlyingType":{"id":27080,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2202:7:92","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"body":{"id":27091,"nodeType":"Block","src":"2357:117:92","statements":[{"AST":{"nativeSrc":"2392:76:92","nodeType":"YulBlock","src":"2392:76:92","statements":[{"nativeSrc":"2406:52:92","nodeType":"YulAssignment","src":"2406:52:92","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2423:3:92","nodeType":"YulLiteral","src":"2423:3:92","type":"","value":"128"},{"arguments":[{"name":"self","nativeSrc":"2434:4:92","nodeType":"YulIdentifier","src":"2434:4:92"}],"functionName":{"name":"mload","nativeSrc":"2428:5:92","nodeType":"YulIdentifier","src":"2428:5:92"},"nativeSrc":"2428:11:92","nodeType":"YulFunctionCall","src":"2428:11:92"}],"functionName":{"name":"shl","nativeSrc":"2419:3:92","nodeType":"YulIdentifier","src":"2419:3:92"},"nativeSrc":"2419:21:92","nodeType":"YulFunctionCall","src":"2419:21:92"},{"arguments":[{"name":"self","nativeSrc":"2446:4:92","nodeType":"YulIdentifier","src":"2446:4:92"},{"kind":"number","nativeSrc":"2452:4:92","nodeType":"YulLiteral","src":"2452:4:92","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2442:3:92","nodeType":"YulIdentifier","src":"2442:3:92"},"nativeSrc":"2442:15:92","nodeType":"YulFunctionCall","src":"2442:15:92"}],"functionName":{"name":"or","nativeSrc":"2416:2:92","nodeType":"YulIdentifier","src":"2416:2:92"},"nativeSrc":"2416:42:92","nodeType":"YulFunctionCall","src":"2416:42:92"},"variableNames":[{"name":"result","nativeSrc":"2406:6:92","nodeType":"YulIdentifier","src":"2406:6:92"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27088,"isOffset":false,"isSlot":false,"src":"2406:6:92","valueSize":1},{"declaration":27084,"isOffset":false,"isSlot":false,"src":"2434:4:92","valueSize":1},{"declaration":27084,"isOffset":false,"isSlot":false,"src":"2446:4:92","valueSize":1}],"flags":["memory-safe"],"id":27090,"nodeType":"InlineAssembly","src":"2367:101:92"}]},"documentation":{"id":27082,"nodeType":"StructuredDocumentation","src":"2216:63:92","text":"@dev Get a slice representation of a bytes object in memory"},"id":27092,"implemented":true,"kind":"function","modifiers":[],"name":"asSlice","nameLocation":"2293:7:92","nodeType":"FunctionDefinition","parameters":{"id":27085,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27084,"mutability":"mutable","name":"self","nameLocation":"2314:4:92","nodeType":"VariableDeclaration","scope":27092,"src":"2301:17:92","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":27083,"name":"bytes","nodeType":"ElementaryTypeName","src":"2301:5:92","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2300:19:92"},"returnParameters":{"id":27089,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27088,"mutability":"mutable","name":"result","nameLocation":"2349:6:92","nodeType":"VariableDeclaration","scope":27092,"src":"2343:12:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"},"typeName":{"id":27087,"nodeType":"UserDefinedTypeName","pathNode":{"id":27086,"name":"Slice","nameLocations":["2343:5:92"],"nodeType":"IdentifierPath","referencedDeclaration":27081,"src":"2343:5:92"},"referencedDeclaration":27081,"src":"2343:5:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}},"visibility":"internal"}],"src":"2342:14:92"},"scope":27272,"src":"2284:190:92","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27102,"nodeType":"Block","src":"2639:89:92","statements":[{"AST":{"nativeSrc":"2674:48:92","nodeType":"YulBlock","src":"2674:48:92","statements":[{"nativeSrc":"2688:24:92","nodeType":"YulAssignment","src":"2688:24:92","value":{"arguments":[{"kind":"number","nativeSrc":"2702:3:92","nodeType":"YulLiteral","src":"2702:3:92","type":"","value":"128"},{"name":"self","nativeSrc":"2707:4:92","nodeType":"YulIdentifier","src":"2707:4:92"}],"functionName":{"name":"shr","nativeSrc":"2698:3:92","nodeType":"YulIdentifier","src":"2698:3:92"},"nativeSrc":"2698:14:92","nodeType":"YulFunctionCall","src":"2698:14:92"},"variableNames":[{"name":"result","nativeSrc":"2688:6:92","nodeType":"YulIdentifier","src":"2688:6:92"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27099,"isOffset":false,"isSlot":false,"src":"2688:6:92","valueSize":1},{"declaration":27096,"isOffset":false,"isSlot":false,"src":"2707:4:92","valueSize":1}],"flags":["memory-safe"],"id":27101,"nodeType":"InlineAssembly","src":"2649:73:92"}]},"documentation":{"id":27093,"nodeType":"StructuredDocumentation","src":"2480:87:92","text":"@dev Returns the length of a given slice (equiv to self.length for calldata slices)"},"id":27103,"implemented":true,"kind":"function","modifiers":[],"name":"length","nameLocation":"2581:6:92","nodeType":"FunctionDefinition","parameters":{"id":27097,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27096,"mutability":"mutable","name":"self","nameLocation":"2594:4:92","nodeType":"VariableDeclaration","scope":27103,"src":"2588:10:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"},"typeName":{"id":27095,"nodeType":"UserDefinedTypeName","pathNode":{"id":27094,"name":"Slice","nameLocations":["2588:5:92"],"nodeType":"IdentifierPath","referencedDeclaration":27081,"src":"2588:5:92"},"referencedDeclaration":27081,"src":"2588:5:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}},"visibility":"internal"}],"src":"2587:12:92"},"returnParameters":{"id":27100,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27099,"mutability":"mutable","name":"result","nameLocation":"2631:6:92","nodeType":"VariableDeclaration","scope":27103,"src":"2623:14:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27098,"name":"uint256","nodeType":"ElementaryTypeName","src":"2623:7:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2622:16:92"},"scope":27272,"src":"2572:156:92","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27142,"nodeType":"Block","src":"2891:163:92","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27115,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27109,"src":"2905:6:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"id":27117,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27107,"src":"2921:4:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}],"id":27116,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27103,"src":"2914:6:92","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Slice_$27081_$returns$_t_uint256_$","typeString":"function (Memory.Slice) pure returns (uint256)"}},"id":27118,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2914:12:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2905:21:92","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27127,"nodeType":"IfStatement","src":"2901:65:92","trueBody":{"expression":{"arguments":[{"expression":{"id":27123,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"2940:5:92","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":27124,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2946:19:92","memberName":"ARRAY_OUT_OF_BOUNDS","nodeType":"MemberAccess","referencedDeclaration":30980,"src":"2940:25:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":27120,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"2928:5:92","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":27122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2934:5:92","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":30996,"src":"2928:11:92","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":27125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2928:38:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27126,"nodeType":"ExpressionStatement","src":"2928:38:92"}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27133,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":27130,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27107,"src":"2999:4:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}],"id":27129,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27103,"src":"2992:6:92","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Slice_$27081_$returns$_t_uint256_$","typeString":"function (Memory.Slice) pure returns (uint256)"}},"id":27131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2992:12:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":27132,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27109,"src":"3007:6:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2992:21:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"arguments":[{"id":27136,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27107,"src":"3032:4:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}],"id":27135,"name":"_pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27271,"src":"3023:8:92","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Slice_$27081_$returns$_t_userDefinedValueType$_Pointer_$26979_$","typeString":"function (Memory.Slice) pure returns (Memory.Pointer)"}},"id":27137,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3023:14:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},{"id":27138,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27109,"src":"3039:6:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27134,"name":"forward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27056,"src":"3015:7:92","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Pointer_$26979_$_t_uint256_$returns$_t_userDefinedValueType$_Pointer_$26979_$","typeString":"function (Memory.Pointer,uint256) pure returns (Memory.Pointer)"}},"id":27139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3015:31:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}],"id":27128,"name":"_asSlice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27259,"src":"2983:8:92","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_userDefinedValueType$_Pointer_$26979_$returns$_t_userDefinedValueType$_Slice_$27081_$","typeString":"function (uint256,Memory.Pointer) pure returns (Memory.Slice)"}},"id":27140,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2983:64:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}},"functionReturnParameters":27114,"id":27141,"nodeType":"Return","src":"2976:71:92"}]},"documentation":{"id":27104,"nodeType":"StructuredDocumentation","src":"2734:79:92","text":"@dev Offset a memory slice (equivalent to self[start:] for calldata slices)"},"id":27143,"implemented":true,"kind":"function","modifiers":[],"name":"slice","nameLocation":"2827:5:92","nodeType":"FunctionDefinition","parameters":{"id":27110,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27107,"mutability":"mutable","name":"self","nameLocation":"2839:4:92","nodeType":"VariableDeclaration","scope":27143,"src":"2833:10:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"},"typeName":{"id":27106,"nodeType":"UserDefinedTypeName","pathNode":{"id":27105,"name":"Slice","nameLocations":["2833:5:92"],"nodeType":"IdentifierPath","referencedDeclaration":27081,"src":"2833:5:92"},"referencedDeclaration":27081,"src":"2833:5:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}},"visibility":"internal"},{"constant":false,"id":27109,"mutability":"mutable","name":"offset","nameLocation":"2853:6:92","nodeType":"VariableDeclaration","scope":27143,"src":"2845:14:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27108,"name":"uint256","nodeType":"ElementaryTypeName","src":"2845:7:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2832:28:92"},"returnParameters":{"id":27114,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27113,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":27143,"src":"2884:5:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"},"typeName":{"id":27112,"nodeType":"UserDefinedTypeName","pathNode":{"id":27111,"name":"Slice","nameLocations":["2884:5:92"],"nodeType":"IdentifierPath","referencedDeclaration":27081,"src":"2884:5:92"},"referencedDeclaration":27081,"src":"2884:5:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}},"visibility":"internal"}],"src":"2883:7:92"},"scope":27272,"src":"2818:236:92","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27182,"nodeType":"Block","src":"3243:151:92","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27159,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27157,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27149,"src":"3257:6:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":27158,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27151,"src":"3266:3:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3257:12:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"id":27161,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27147,"src":"3279:4:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}],"id":27160,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27103,"src":"3272:6:92","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Slice_$27081_$returns$_t_uint256_$","typeString":"function (Memory.Slice) pure returns (uint256)"}},"id":27162,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3272:12:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3257:27:92","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27171,"nodeType":"IfStatement","src":"3253:71:92","trueBody":{"expression":{"arguments":[{"expression":{"id":27167,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"3298:5:92","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":27168,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3304:19:92","memberName":"ARRAY_OUT_OF_BOUNDS","nodeType":"MemberAccess","referencedDeclaration":30980,"src":"3298:25:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":27164,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"3286:5:92","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":27166,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3292:5:92","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":30996,"src":"3286:11:92","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":27169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3286:38:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27170,"nodeType":"ExpressionStatement","src":"3286:38:92"}},{"expression":{"arguments":[{"id":27173,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27151,"src":"3350:3:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"arguments":[{"id":27176,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27147,"src":"3372:4:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}],"id":27175,"name":"_pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27271,"src":"3363:8:92","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Slice_$27081_$returns$_t_userDefinedValueType$_Pointer_$26979_$","typeString":"function (Memory.Slice) pure returns (Memory.Pointer)"}},"id":27177,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3363:14:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},{"id":27178,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27149,"src":"3379:6:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27174,"name":"forward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27056,"src":"3355:7:92","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Pointer_$26979_$_t_uint256_$returns$_t_userDefinedValueType$_Pointer_$26979_$","typeString":"function (Memory.Pointer,uint256) pure returns (Memory.Pointer)"}},"id":27179,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3355:31:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}],"id":27172,"name":"_asSlice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27259,"src":"3341:8:92","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_userDefinedValueType$_Pointer_$26979_$returns$_t_userDefinedValueType$_Slice_$27081_$","typeString":"function (uint256,Memory.Pointer) pure returns (Memory.Slice)"}},"id":27180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3341:46:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}},"functionReturnParameters":27156,"id":27181,"nodeType":"Return","src":"3334:53:92"}]},"documentation":{"id":27144,"nodeType":"StructuredDocumentation","src":"3060:92:92","text":"@dev Offset and cut a Slice (equivalent to self[start:start+length] for calldata slices)"},"id":27183,"implemented":true,"kind":"function","modifiers":[],"name":"slice","nameLocation":"3166:5:92","nodeType":"FunctionDefinition","parameters":{"id":27152,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27147,"mutability":"mutable","name":"self","nameLocation":"3178:4:92","nodeType":"VariableDeclaration","scope":27183,"src":"3172:10:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"},"typeName":{"id":27146,"nodeType":"UserDefinedTypeName","pathNode":{"id":27145,"name":"Slice","nameLocations":["3172:5:92"],"nodeType":"IdentifierPath","referencedDeclaration":27081,"src":"3172:5:92"},"referencedDeclaration":27081,"src":"3172:5:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}},"visibility":"internal"},{"constant":false,"id":27149,"mutability":"mutable","name":"offset","nameLocation":"3192:6:92","nodeType":"VariableDeclaration","scope":27183,"src":"3184:14:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27148,"name":"uint256","nodeType":"ElementaryTypeName","src":"3184:7:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":27151,"mutability":"mutable","name":"len","nameLocation":"3208:3:92","nodeType":"VariableDeclaration","scope":27183,"src":"3200:11:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27150,"name":"uint256","nodeType":"ElementaryTypeName","src":"3200:7:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3171:41:92"},"returnParameters":{"id":27156,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27155,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":27183,"src":"3236:5:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"},"typeName":{"id":27154,"nodeType":"UserDefinedTypeName","pathNode":{"id":27153,"name":"Slice","nameLocations":["3236:5:92"],"nodeType":"IdentifierPath","referencedDeclaration":27081,"src":"3236:5:92"},"referencedDeclaration":27081,"src":"3236:5:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}},"visibility":"internal"}],"src":"3235:7:92"},"scope":27272,"src":"3157:237:92","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27218,"nodeType":"Block","src":"3708:324:92","statements":[{"assignments":[27195],"declarations":[{"constant":false,"id":27195,"mutability":"mutable","name":"outOfBoundBytes","nameLocation":"3726:15:92","nodeType":"VariableDeclaration","scope":27218,"src":"3718:23:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27194,"name":"uint256","nodeType":"ElementaryTypeName","src":"3718:7:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":27205,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27200,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"30783230","id":27198,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3763:4:92","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":27199,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27189,"src":"3770:6:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3763:13:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":27202,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27187,"src":"3785:4:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}],"id":27201,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27103,"src":"3778:6:92","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Slice_$27081_$returns$_t_uint256_$","typeString":"function (Memory.Slice) pure returns (uint256)"}},"id":27203,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3778:12:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":27196,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"3744:4:92","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":27197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3749:13:92","memberName":"saturatingSub","nodeType":"MemberAccess","referencedDeclaration":33777,"src":"3744:18:92","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":27204,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3744:47:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3718:73:92"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27206,"name":"outOfBoundBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27195,"src":"3805:15:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30783166","id":27207,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3823:4:92","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"0x1f"},"src":"3805:22:92","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27216,"nodeType":"IfStatement","src":"3801:66:92","trueBody":{"expression":{"arguments":[{"expression":{"id":27212,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"3841:5:92","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":27213,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3847:19:92","memberName":"ARRAY_OUT_OF_BOUNDS","nodeType":"MemberAccess","referencedDeclaration":30980,"src":"3841:25:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":27209,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"3829:5:92","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":27211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3835:5:92","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":30996,"src":"3829:11:92","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":27214,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3829:38:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":27215,"nodeType":"ExpressionStatement","src":"3829:38:92"}},{"AST":{"nativeSrc":"3903:123:92","nodeType":"YulBlock","src":"3903:123:92","statements":[{"nativeSrc":"3917:99:92","nodeType":"YulAssignment","src":"3917:99:92","value":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"self","nativeSrc":"3944:4:92","nodeType":"YulIdentifier","src":"3944:4:92"},{"arguments":[{"kind":"number","nativeSrc":"3954:3:92","nodeType":"YulLiteral","src":"3954:3:92","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"3963:1:92","nodeType":"YulLiteral","src":"3963:1:92","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3959:3:92","nodeType":"YulIdentifier","src":"3959:3:92"},"nativeSrc":"3959:6:92","nodeType":"YulFunctionCall","src":"3959:6:92"}],"functionName":{"name":"shr","nativeSrc":"3950:3:92","nodeType":"YulIdentifier","src":"3950:3:92"},"nativeSrc":"3950:16:92","nodeType":"YulFunctionCall","src":"3950:16:92"}],"functionName":{"name":"and","nativeSrc":"3940:3:92","nodeType":"YulIdentifier","src":"3940:3:92"},"nativeSrc":"3940:27:92","nodeType":"YulFunctionCall","src":"3940:27:92"},{"name":"offset","nativeSrc":"3969:6:92","nodeType":"YulIdentifier","src":"3969:6:92"}],"functionName":{"name":"add","nativeSrc":"3936:3:92","nodeType":"YulIdentifier","src":"3936:3:92"},"nativeSrc":"3936:40:92","nodeType":"YulFunctionCall","src":"3936:40:92"}],"functionName":{"name":"mload","nativeSrc":"3930:5:92","nodeType":"YulIdentifier","src":"3930:5:92"},"nativeSrc":"3930:47:92","nodeType":"YulFunctionCall","src":"3930:47:92"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3987:1:92","nodeType":"YulLiteral","src":"3987:1:92","type":"","value":"8"},{"name":"outOfBoundBytes","nativeSrc":"3990:15:92","nodeType":"YulIdentifier","src":"3990:15:92"}],"functionName":{"name":"mul","nativeSrc":"3983:3:92","nodeType":"YulIdentifier","src":"3983:3:92"},"nativeSrc":"3983:23:92","nodeType":"YulFunctionCall","src":"3983:23:92"},{"arguments":[{"kind":"number","nativeSrc":"4012:1:92","nodeType":"YulLiteral","src":"4012:1:92","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"4008:3:92","nodeType":"YulIdentifier","src":"4008:3:92"},"nativeSrc":"4008:6:92","nodeType":"YulFunctionCall","src":"4008:6:92"}],"functionName":{"name":"shl","nativeSrc":"3979:3:92","nodeType":"YulIdentifier","src":"3979:3:92"},"nativeSrc":"3979:36:92","nodeType":"YulFunctionCall","src":"3979:36:92"}],"functionName":{"name":"and","nativeSrc":"3926:3:92","nodeType":"YulIdentifier","src":"3926:3:92"},"nativeSrc":"3926:90:92","nodeType":"YulFunctionCall","src":"3926:90:92"},"variableNames":[{"name":"value","nativeSrc":"3917:5:92","nodeType":"YulIdentifier","src":"3917:5:92"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27189,"isOffset":false,"isSlot":false,"src":"3969:6:92","valueSize":1},{"declaration":27195,"isOffset":false,"isSlot":false,"src":"3990:15:92","valueSize":1},{"declaration":27187,"isOffset":false,"isSlot":false,"src":"3944:4:92","valueSize":1},{"declaration":27192,"isOffset":false,"isSlot":false,"src":"3917:5:92","valueSize":1}],"flags":["memory-safe"],"id":27217,"nodeType":"InlineAssembly","src":"3878:148:92"}]},"documentation":{"id":27184,"nodeType":"StructuredDocumentation","src":"3400:223:92","text":" @dev Read a bytes32 buffer from a given Slice at a specific offset\n NOTE: If offset > length(slice) - 0x20, part of the return value will be out of bound of the slice. These bytes are zeroed."},"id":27219,"implemented":true,"kind":"function","modifiers":[],"name":"load","nameLocation":"3637:4:92","nodeType":"FunctionDefinition","parameters":{"id":27190,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27187,"mutability":"mutable","name":"self","nameLocation":"3648:4:92","nodeType":"VariableDeclaration","scope":27219,"src":"3642:10:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"},"typeName":{"id":27186,"nodeType":"UserDefinedTypeName","pathNode":{"id":27185,"name":"Slice","nameLocations":["3642:5:92"],"nodeType":"IdentifierPath","referencedDeclaration":27081,"src":"3642:5:92"},"referencedDeclaration":27081,"src":"3642:5:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}},"visibility":"internal"},{"constant":false,"id":27189,"mutability":"mutable","name":"offset","nameLocation":"3662:6:92","nodeType":"VariableDeclaration","scope":27219,"src":"3654:14:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27188,"name":"uint256","nodeType":"ElementaryTypeName","src":"3654:7:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3641:28:92"},"returnParameters":{"id":27193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27192,"mutability":"mutable","name":"value","nameLocation":"3701:5:92","nodeType":"VariableDeclaration","scope":27219,"src":"3693:13:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":27191,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3693:7:92","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3692:15:92"},"scope":27272,"src":"3628:404:92","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27244,"nodeType":"Block","src":"4188:300:92","statements":[{"assignments":[27229],"declarations":[{"constant":false,"id":27229,"mutability":"mutable","name":"len","nameLocation":"4206:3:92","nodeType":"VariableDeclaration","scope":27244,"src":"4198:11:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27228,"name":"uint256","nodeType":"ElementaryTypeName","src":"4198:7:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":27233,"initialValue":{"arguments":[{"id":27231,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27223,"src":"4219:4:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}],"id":27230,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27103,"src":"4212:6:92","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Slice_$27081_$returns$_t_uint256_$","typeString":"function (Memory.Slice) pure returns (uint256)"}},"id":27232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4212:12:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"4198:26:92"},{"assignments":[27238],"declarations":[{"constant":false,"id":27238,"mutability":"mutable","name":"ptr","nameLocation":"4249:3:92","nodeType":"VariableDeclaration","scope":27244,"src":"4234:18:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"},"typeName":{"id":27237,"nodeType":"UserDefinedTypeName","pathNode":{"id":27236,"name":"Memory.Pointer","nameLocations":["4234:6:92","4241:7:92"],"nodeType":"IdentifierPath","referencedDeclaration":26979,"src":"4234:14:92"},"referencedDeclaration":26979,"src":"4234:14:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"visibility":"internal"}],"id":27242,"initialValue":{"arguments":[{"id":27240,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27223,"src":"4264:4:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}],"id":27239,"name":"_pointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27271,"src":"4255:8:92","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Slice_$27081_$returns$_t_userDefinedValueType$_Pointer_$26979_$","typeString":"function (Memory.Slice) pure returns (Memory.Pointer)"}},"id":27241,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4255:14:92","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"nodeType":"VariableDeclarationStatement","src":"4234:35:92"},{"AST":{"nativeSrc":"4304:178:92","nodeType":"YulBlock","src":"4304:178:92","statements":[{"nativeSrc":"4318:21:92","nodeType":"YulAssignment","src":"4318:21:92","value":{"arguments":[{"kind":"number","nativeSrc":"4334:4:92","nodeType":"YulLiteral","src":"4334:4:92","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"4328:5:92","nodeType":"YulIdentifier","src":"4328:5:92"},"nativeSrc":"4328:11:92","nodeType":"YulFunctionCall","src":"4328:11:92"},"variableNames":[{"name":"result","nativeSrc":"4318:6:92","nodeType":"YulIdentifier","src":"4318:6:92"}]},{"expression":{"arguments":[{"name":"result","nativeSrc":"4359:6:92","nodeType":"YulIdentifier","src":"4359:6:92"},{"name":"len","nativeSrc":"4367:3:92","nodeType":"YulIdentifier","src":"4367:3:92"}],"functionName":{"name":"mstore","nativeSrc":"4352:6:92","nodeType":"YulIdentifier","src":"4352:6:92"},"nativeSrc":"4352:19:92","nodeType":"YulFunctionCall","src":"4352:19:92"},"nativeSrc":"4352:19:92","nodeType":"YulExpressionStatement","src":"4352:19:92"},{"expression":{"arguments":[{"arguments":[{"name":"result","nativeSrc":"4394:6:92","nodeType":"YulIdentifier","src":"4394:6:92"},{"kind":"number","nativeSrc":"4402:4:92","nodeType":"YulLiteral","src":"4402:4:92","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4390:3:92","nodeType":"YulIdentifier","src":"4390:3:92"},"nativeSrc":"4390:17:92","nodeType":"YulFunctionCall","src":"4390:17:92"},{"name":"ptr","nativeSrc":"4409:3:92","nodeType":"YulIdentifier","src":"4409:3:92"},{"name":"len","nativeSrc":"4414:3:92","nodeType":"YulIdentifier","src":"4414:3:92"}],"functionName":{"name":"mcopy","nativeSrc":"4384:5:92","nodeType":"YulIdentifier","src":"4384:5:92"},"nativeSrc":"4384:34:92","nodeType":"YulFunctionCall","src":"4384:34:92"},"nativeSrc":"4384:34:92","nodeType":"YulExpressionStatement","src":"4384:34:92"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4438:4:92","nodeType":"YulLiteral","src":"4438:4:92","type":"","value":"0x40"},{"arguments":[{"arguments":[{"name":"result","nativeSrc":"4452:6:92","nodeType":"YulIdentifier","src":"4452:6:92"},{"name":"len","nativeSrc":"4460:3:92","nodeType":"YulIdentifier","src":"4460:3:92"}],"functionName":{"name":"add","nativeSrc":"4448:3:92","nodeType":"YulIdentifier","src":"4448:3:92"},"nativeSrc":"4448:16:92","nodeType":"YulFunctionCall","src":"4448:16:92"},{"kind":"number","nativeSrc":"4466:4:92","nodeType":"YulLiteral","src":"4466:4:92","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4444:3:92","nodeType":"YulIdentifier","src":"4444:3:92"},"nativeSrc":"4444:27:92","nodeType":"YulFunctionCall","src":"4444:27:92"}],"functionName":{"name":"mstore","nativeSrc":"4431:6:92","nodeType":"YulIdentifier","src":"4431:6:92"},"nativeSrc":"4431:41:92","nodeType":"YulFunctionCall","src":"4431:41:92"},"nativeSrc":"4431:41:92","nodeType":"YulExpressionStatement","src":"4431:41:92"}]},"evmVersion":"prague","externalReferences":[{"declaration":27229,"isOffset":false,"isSlot":false,"src":"4367:3:92","valueSize":1},{"declaration":27229,"isOffset":false,"isSlot":false,"src":"4414:3:92","valueSize":1},{"declaration":27229,"isOffset":false,"isSlot":false,"src":"4460:3:92","valueSize":1},{"declaration":27238,"isOffset":false,"isSlot":false,"src":"4409:3:92","valueSize":1},{"declaration":27226,"isOffset":false,"isSlot":false,"src":"4318:6:92","valueSize":1},{"declaration":27226,"isOffset":false,"isSlot":false,"src":"4359:6:92","valueSize":1},{"declaration":27226,"isOffset":false,"isSlot":false,"src":"4394:6:92","valueSize":1},{"declaration":27226,"isOffset":false,"isSlot":false,"src":"4452:6:92","valueSize":1}],"flags":["memory-safe"],"id":27243,"nodeType":"InlineAssembly","src":"4279:203:92"}]},"documentation":{"id":27220,"nodeType":"StructuredDocumentation","src":"4038:72:92","text":"@dev Extract the data corresponding to a Slice (allocate new memory)"},"id":27245,"implemented":true,"kind":"function","modifiers":[],"name":"toBytes","nameLocation":"4124:7:92","nodeType":"FunctionDefinition","parameters":{"id":27224,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27223,"mutability":"mutable","name":"self","nameLocation":"4138:4:92","nodeType":"VariableDeclaration","scope":27245,"src":"4132:10:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"},"typeName":{"id":27222,"nodeType":"UserDefinedTypeName","pathNode":{"id":27221,"name":"Slice","nameLocations":["4132:5:92"],"nodeType":"IdentifierPath","referencedDeclaration":27081,"src":"4132:5:92"},"referencedDeclaration":27081,"src":"4132:5:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}},"visibility":"internal"}],"src":"4131:12:92"},"returnParameters":{"id":27227,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27226,"mutability":"mutable","name":"result","nameLocation":"4180:6:92","nodeType":"VariableDeclaration","scope":27245,"src":"4167:19:92","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":27225,"name":"bytes","nodeType":"ElementaryTypeName","src":"4167:5:92","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4166:21:92"},"scope":27272,"src":"4115:373:92","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27258,"nodeType":"Block","src":"5031:97:92","statements":[{"AST":{"nativeSrc":"5066:56:92","nodeType":"YulBlock","src":"5066:56:92","statements":[{"nativeSrc":"5080:32:92","nodeType":"YulAssignment","src":"5080:32:92","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5097:3:92","nodeType":"YulLiteral","src":"5097:3:92","type":"","value":"128"},{"name":"len","nativeSrc":"5102:3:92","nodeType":"YulIdentifier","src":"5102:3:92"}],"functionName":{"name":"shl","nativeSrc":"5093:3:92","nodeType":"YulIdentifier","src":"5093:3:92"},"nativeSrc":"5093:13:92","nodeType":"YulFunctionCall","src":"5093:13:92"},{"name":"ptr","nativeSrc":"5108:3:92","nodeType":"YulIdentifier","src":"5108:3:92"}],"functionName":{"name":"or","nativeSrc":"5090:2:92","nodeType":"YulIdentifier","src":"5090:2:92"},"nativeSrc":"5090:22:92","nodeType":"YulFunctionCall","src":"5090:22:92"},"variableNames":[{"name":"result","nativeSrc":"5080:6:92","nodeType":"YulIdentifier","src":"5080:6:92"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27248,"isOffset":false,"isSlot":false,"src":"5102:3:92","valueSize":1},{"declaration":27251,"isOffset":false,"isSlot":false,"src":"5108:3:92","valueSize":1},{"declaration":27255,"isOffset":false,"isSlot":false,"src":"5080:6:92","valueSize":1}],"flags":["memory-safe"],"id":27257,"nodeType":"InlineAssembly","src":"5041:81:92"}]},"documentation":{"id":27246,"nodeType":"StructuredDocumentation","src":"4494:445:92","text":" @dev Private helper: create a slice from raw values (length and pointer)\n NOTE: this function MUST NOT be called with `len` or `ptr` that exceed `2**128-1`. This should never be\n the case of slices produced by `asSlice(bytes)`, and function that reduce the scope of slices\n (`slice(Slice,uint256)` and `slice(Slice,uint256, uint256)`) should not cause this issue if the parent slice is\n correct."},"id":27259,"implemented":true,"kind":"function","modifiers":[],"name":"_asSlice","nameLocation":"4953:8:92","nodeType":"FunctionDefinition","parameters":{"id":27252,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27248,"mutability":"mutable","name":"len","nameLocation":"4970:3:92","nodeType":"VariableDeclaration","scope":27259,"src":"4962:11:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27247,"name":"uint256","nodeType":"ElementaryTypeName","src":"4962:7:92","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":27251,"mutability":"mutable","name":"ptr","nameLocation":"4990:3:92","nodeType":"VariableDeclaration","scope":27259,"src":"4975:18:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"},"typeName":{"id":27250,"nodeType":"UserDefinedTypeName","pathNode":{"id":27249,"name":"Memory.Pointer","nameLocations":["4975:6:92","4982:7:92"],"nodeType":"IdentifierPath","referencedDeclaration":26979,"src":"4975:14:92"},"referencedDeclaration":26979,"src":"4975:14:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"visibility":"internal"}],"src":"4961:33:92"},"returnParameters":{"id":27256,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27255,"mutability":"mutable","name":"result","nameLocation":"5023:6:92","nodeType":"VariableDeclaration","scope":27259,"src":"5017:12:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"},"typeName":{"id":27254,"nodeType":"UserDefinedTypeName","pathNode":{"id":27253,"name":"Slice","nameLocations":["5017:5:92"],"nodeType":"IdentifierPath","referencedDeclaration":27081,"src":"5017:5:92"},"referencedDeclaration":27081,"src":"5017:5:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}},"visibility":"internal"}],"src":"5016:14:92"},"scope":27272,"src":"4944:184:92","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":27270,"nodeType":"Block","src":"5310:102:92","statements":[{"AST":{"nativeSrc":"5345:61:92","nodeType":"YulBlock","src":"5345:61:92","statements":[{"nativeSrc":"5359:37:92","nodeType":"YulAssignment","src":"5359:37:92","value":{"arguments":[{"name":"self","nativeSrc":"5373:4:92","nodeType":"YulIdentifier","src":"5373:4:92"},{"arguments":[{"kind":"number","nativeSrc":"5383:3:92","nodeType":"YulLiteral","src":"5383:3:92","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"5392:1:92","nodeType":"YulLiteral","src":"5392:1:92","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5388:3:92","nodeType":"YulIdentifier","src":"5388:3:92"},"nativeSrc":"5388:6:92","nodeType":"YulFunctionCall","src":"5388:6:92"}],"functionName":{"name":"shr","nativeSrc":"5379:3:92","nodeType":"YulIdentifier","src":"5379:3:92"},"nativeSrc":"5379:16:92","nodeType":"YulFunctionCall","src":"5379:16:92"}],"functionName":{"name":"and","nativeSrc":"5369:3:92","nodeType":"YulIdentifier","src":"5369:3:92"},"nativeSrc":"5369:27:92","nodeType":"YulFunctionCall","src":"5369:27:92"},"variableNames":[{"name":"result","nativeSrc":"5359:6:92","nodeType":"YulIdentifier","src":"5359:6:92"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27267,"isOffset":false,"isSlot":false,"src":"5359:6:92","valueSize":1},{"declaration":27263,"isOffset":false,"isSlot":false,"src":"5373:4:92","valueSize":1}],"flags":["memory-safe"],"id":27269,"nodeType":"InlineAssembly","src":"5320:86:92"}]},"documentation":{"id":27260,"nodeType":"StructuredDocumentation","src":"5134:96:92","text":"@dev Returns the memory location of a given slice (equiv to self.offset for calldata slices)"},"id":27271,"implemented":true,"kind":"function","modifiers":[],"name":"_pointer","nameLocation":"5244:8:92","nodeType":"FunctionDefinition","parameters":{"id":27264,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27263,"mutability":"mutable","name":"self","nameLocation":"5259:4:92","nodeType":"VariableDeclaration","scope":27271,"src":"5253:10:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"},"typeName":{"id":27262,"nodeType":"UserDefinedTypeName","pathNode":{"id":27261,"name":"Slice","nameLocations":["5253:5:92"],"nodeType":"IdentifierPath","referencedDeclaration":27081,"src":"5253:5:92"},"referencedDeclaration":27081,"src":"5253:5:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Slice_$27081","typeString":"Memory.Slice"}},"visibility":"internal"}],"src":"5252:12:92"},"returnParameters":{"id":27268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27267,"mutability":"mutable","name":"result","nameLocation":"5302:6:92","nodeType":"VariableDeclaration","scope":27271,"src":"5287:21:92","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"},"typeName":{"id":27266,"nodeType":"UserDefinedTypeName","pathNode":{"id":27265,"name":"Memory.Pointer","nameLocations":["5287:6:92","5294:7:92"],"nodeType":"IdentifierPath","referencedDeclaration":26979,"src":"5287:14:92"},"referencedDeclaration":26979,"src":"5287:14:92","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Pointer_$26979","typeString":"Memory.Pointer"}},"visibility":"internal"}],"src":"5286:23:92"},"scope":27272,"src":"5235:177:92","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":27273,"src":"780:4634:92","usedErrors":[],"usedEvents":[]}],"src":"100:5315:92"},"id":92},"@openzeppelin/contracts/utils/Multicall.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Multicall.sol","exportedSymbols":{"Address":[26046],"Context":[26789],"Multicall":[27359]},"id":27360,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":27274,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"103:24:93"},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"./Address.sol","id":27276,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":27360,"sourceUnit":26047,"src":"129:38:93","symbolAliases":[{"foreign":{"id":27275,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26046,"src":"137:7:93","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"./Context.sol","id":27278,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":27360,"sourceUnit":26790,"src":"168:38:93","symbolAliases":[{"foreign":{"id":27277,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26789,"src":"176:7:93","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":27280,"name":"Context","nameLocations":["1053:7:93"],"nodeType":"IdentifierPath","referencedDeclaration":26789,"src":"1053:7:93"},"id":27281,"nodeType":"InheritanceSpecifier","src":"1053:7:93"}],"canonicalName":"Multicall","contractDependencies":[],"contractKind":"contract","documentation":{"id":27279,"nodeType":"StructuredDocumentation","src":"208:813:93","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 {Context-_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 {Context-_msgSender} are not propagated to subcalls."},"fullyImplemented":true,"id":27359,"linearizedBaseContracts":[27359,26789],"name":"Multicall","nameLocation":"1040:9:93","nodeType":"ContractDefinition","nodes":[{"body":{"id":27357,"nodeType":"Block","src":"1314:392:93","statements":[{"assignments":[27292],"declarations":[{"constant":false,"id":27292,"mutability":"mutable","name":"context","nameLocation":"1337:7:93","nodeType":"VariableDeclaration","scope":27357,"src":"1324:20:93","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":27291,"name":"bytes","nodeType":"ElementaryTypeName","src":"1324:5:93","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":27312,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":27297,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":27293,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1347:3:93","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":27294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1351:6:93","memberName":"sender","nodeType":"MemberAccess","src":"1347:10:93","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":27295,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26771,"src":"1361:10:93","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":27296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1361:12:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1347:26:93","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"baseExpression":{"expression":{"id":27302,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1415:3:93","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":27303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1419:4:93","memberName":"data","nodeType":"MemberAccess","src":"1415:8:93","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":27310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"1415:51:93","startExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27309,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":27304,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"1424:3:93","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":27305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1428:4:93","memberName":"data","nodeType":"MemberAccess","src":"1424:8:93","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":27306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1433:6:93","memberName":"length","nodeType":"MemberAccess","src":"1424:15:93","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":27307,"name":"_contextSuffixLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26788,"src":"1442:20:93","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":27308,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1442:22:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1424:40:93","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr_slice","typeString":"bytes calldata slice"}},"id":27311,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1347:119:93","trueExpression":{"arguments":[{"hexValue":"30","id":27300,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1398:1:93","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":27299,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1388:9:93","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":27298,"name":"bytes","nodeType":"ElementaryTypeName","src":"1392:5:93","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":27301,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1388:12:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"1324:142:93"},{"expression":{"id":27320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":27313,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27289,"src":"1477:7:93","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":27317,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27285,"src":"1499:4:93","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":27318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1504:6:93","memberName":"length","nodeType":"MemberAccess","src":"1499:11:93","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":27316,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1487:11:93","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":27314,"name":"bytes","nodeType":"ElementaryTypeName","src":"1491:5:93","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":27315,"nodeType":"ArrayTypeName","src":"1491:7:93","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}}},"id":27319,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1487:24:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"src":"1477:34:93","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":27321,"nodeType":"ExpressionStatement","src":"1477:34:93"},{"body":{"id":27353,"nodeType":"Block","src":"1563:113:93","statements":[{"expression":{"id":27351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":27333,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27289,"src":"1577:7:93","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":27335,"indexExpression":{"id":27334,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27323,"src":"1585:1:93","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1577:10:93","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":27340,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"1627:4:93","typeDescriptions":{"typeIdentifier":"t_contract$_Multicall_$27359","typeString":"contract Multicall"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Multicall_$27359","typeString":"contract Multicall"}],"id":27339,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1619:7:93","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":27338,"name":"address","nodeType":"ElementaryTypeName","src":"1619:7:93","typeDescriptions":{}}},"id":27341,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1619:13:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"baseExpression":{"id":27345,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27285,"src":"1647:4:93","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":27347,"indexExpression":{"id":27346,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27323,"src":"1652:1:93","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"1647:7:93","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":27348,"name":"context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27292,"src":"1656:7:93","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":27343,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1634:5:93","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":27342,"name":"bytes","nodeType":"ElementaryTypeName","src":"1634:5:93","typeDescriptions":{}}},"id":27344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1640:6:93","memberName":"concat","nodeType":"MemberAccess","src":"1634:12:93","typeDescriptions":{"typeIdentifier":"t_function_bytesconcat_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":27349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1634:30:93","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":27336,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26046,"src":"1590:7:93","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Address_$26046_$","typeString":"type(library Address)"}},"id":27337,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1598:20:93","memberName":"functionDelegateCall","nodeType":"MemberAccess","referencedDeclaration":25956,"src":"1590:28:93","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":27350,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1590:75:93","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"1577:88:93","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":27352,"nodeType":"ExpressionStatement","src":"1577:88:93"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":27329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27326,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27323,"src":"1541:1:93","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":27327,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27285,"src":"1545:4:93","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":27328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1550:6:93","memberName":"length","nodeType":"MemberAccess","src":"1545:11:93","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1541:15:93","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27354,"initializationExpression":{"assignments":[27323],"declarations":[{"constant":false,"id":27323,"mutability":"mutable","name":"i","nameLocation":"1534:1:93","nodeType":"VariableDeclaration","scope":27354,"src":"1526:9:93","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":27322,"name":"uint256","nodeType":"ElementaryTypeName","src":"1526:7:93","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":27325,"initialValue":{"hexValue":"30","id":27324,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1538:1:93","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"1526:13:93"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":27331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1558:3:93","subExpression":{"id":27330,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27323,"src":"1558:1:93","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":27332,"nodeType":"ExpressionStatement","src":"1558:3:93"},"nodeType":"ForStatement","src":"1521:155:93"},{"expression":{"id":27355,"name":"results","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27289,"src":"1692:7:93","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"functionReturnParameters":27290,"id":27356,"nodeType":"Return","src":"1685:14:93"}]},"documentation":{"id":27282,"nodeType":"StructuredDocumentation","src":"1067:152:93","text":" @dev Receives and executes a batch of function calls on this contract.\n @custom:oz-upgrades-unsafe-allow-reachable delegatecall"},"functionSelector":"ac9650d8","id":27358,"implemented":true,"kind":"function","modifiers":[],"name":"multicall","nameLocation":"1233:9:93","nodeType":"FunctionDefinition","parameters":{"id":27286,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27285,"mutability":"mutable","name":"data","nameLocation":"1260:4:93","nodeType":"VariableDeclaration","scope":27358,"src":"1243:21:93","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":27283,"name":"bytes","nodeType":"ElementaryTypeName","src":"1243:5:93","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":27284,"nodeType":"ArrayTypeName","src":"1243:7:93","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"1242:23:93"},"returnParameters":{"id":27290,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27289,"mutability":"mutable","name":"results","nameLocation":"1305:7:93","nodeType":"VariableDeclaration","scope":27358,"src":"1290:22:93","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":27287,"name":"bytes","nodeType":"ElementaryTypeName","src":"1290:5:93","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":27288,"nodeType":"ArrayTypeName","src":"1290:7:93","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"1289:24:93"},"scope":27359,"src":"1224:482:93","stateMutability":"nonpayable","virtual":true,"visibility":"public"}],"scope":27360,"src":"1022:686:93","usedErrors":[25668,26802],"usedEvents":[]}],"src":"103:1606:93"},"id":93},"@openzeppelin/contracts/utils/Packing.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Packing.sol","exportedSymbols":{"Packing":[30945]},"id":30946,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":27361,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"185:24:94"},{"abstract":false,"baseContracts":[],"canonicalName":"Packing","contractDependencies":[],"contractKind":"library","documentation":{"id":27362,"nodeType":"StructuredDocumentation","src":"211:852:94","text":" @dev Helper library packing and unpacking multiple values into bytesXX.\n Example usage:\n ```solidity\n library MyPacker {\n     type MyType is bytes32;\n     function _pack(address account, bytes4 selector, uint64 period) external pure returns (MyType) {\n         bytes12 subpack = Packing.pack_4_8(selector, bytes8(period));\n         bytes32 pack = Packing.pack_20_12(bytes20(account), subpack);\n         return MyType.wrap(pack);\n     }\n     function _unpack(MyType self) external pure returns (address, bytes4, uint64) {\n         bytes32 pack = MyType.unwrap(self);\n         return (\n             address(Packing.extract_32_20(pack, 0)),\n             Packing.extract_32_4(pack, 20),\n             uint64(Packing.extract_32_8(pack, 24))\n         );\n     }\n }\n ```\n _Available since v5.1._"},"fullyImplemented":true,"id":30945,"linearizedBaseContracts":[30945],"name":"Packing","nameLocation":"1111:7:94","nodeType":"ContractDefinition","nodes":[{"errorSelector":"3ba97636","id":27364,"name":"OutOfRangeAccess","nameLocation":"1131:16:94","nodeType":"ErrorDefinition","parameters":{"id":27363,"nodeType":"ParameterList","parameters":[],"src":"1147:2:94"},"src":"1125:25:94"},{"body":{"id":27374,"nodeType":"Block","src":"1239:196:94","statements":[{"AST":{"nativeSrc":"1274:155:94","nodeType":"YulBlock","src":"1274:155:94","statements":[{"nativeSrc":"1288:35:94","nodeType":"YulAssignment","src":"1288:35:94","value":{"arguments":[{"name":"left","nativeSrc":"1300:4:94","nodeType":"YulIdentifier","src":"1300:4:94"},{"arguments":[{"kind":"number","nativeSrc":"1310:3:94","nodeType":"YulLiteral","src":"1310:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"1319:1:94","nodeType":"YulLiteral","src":"1319:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"1315:3:94","nodeType":"YulIdentifier","src":"1315:3:94"},"nativeSrc":"1315:6:94","nodeType":"YulFunctionCall","src":"1315:6:94"}],"functionName":{"name":"shl","nativeSrc":"1306:3:94","nodeType":"YulIdentifier","src":"1306:3:94"},"nativeSrc":"1306:16:94","nodeType":"YulFunctionCall","src":"1306:16:94"}],"functionName":{"name":"and","nativeSrc":"1296:3:94","nodeType":"YulIdentifier","src":"1296:3:94"},"nativeSrc":"1296:27:94","nodeType":"YulFunctionCall","src":"1296:27:94"},"variableNames":[{"name":"left","nativeSrc":"1288:4:94","nodeType":"YulIdentifier","src":"1288:4:94"}]},{"nativeSrc":"1336:37:94","nodeType":"YulAssignment","src":"1336:37:94","value":{"arguments":[{"name":"right","nativeSrc":"1349:5:94","nodeType":"YulIdentifier","src":"1349:5:94"},{"arguments":[{"kind":"number","nativeSrc":"1360:3:94","nodeType":"YulLiteral","src":"1360:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"1369:1:94","nodeType":"YulLiteral","src":"1369:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"1365:3:94","nodeType":"YulIdentifier","src":"1365:3:94"},"nativeSrc":"1365:6:94","nodeType":"YulFunctionCall","src":"1365:6:94"}],"functionName":{"name":"shl","nativeSrc":"1356:3:94","nodeType":"YulIdentifier","src":"1356:3:94"},"nativeSrc":"1356:16:94","nodeType":"YulFunctionCall","src":"1356:16:94"}],"functionName":{"name":"and","nativeSrc":"1345:3:94","nodeType":"YulIdentifier","src":"1345:3:94"},"nativeSrc":"1345:28:94","nodeType":"YulFunctionCall","src":"1345:28:94"},"variableNames":[{"name":"right","nativeSrc":"1336:5:94","nodeType":"YulIdentifier","src":"1336:5:94"}]},{"nativeSrc":"1386:33:94","nodeType":"YulAssignment","src":"1386:33:94","value":{"arguments":[{"name":"left","nativeSrc":"1399:4:94","nodeType":"YulIdentifier","src":"1399:4:94"},{"arguments":[{"kind":"number","nativeSrc":"1409:1:94","nodeType":"YulLiteral","src":"1409:1:94","type":"","value":"8"},{"name":"right","nativeSrc":"1412:5:94","nodeType":"YulIdentifier","src":"1412:5:94"}],"functionName":{"name":"shr","nativeSrc":"1405:3:94","nodeType":"YulIdentifier","src":"1405:3:94"},"nativeSrc":"1405:13:94","nodeType":"YulFunctionCall","src":"1405:13:94"}],"functionName":{"name":"or","nativeSrc":"1396:2:94","nodeType":"YulIdentifier","src":"1396:2:94"},"nativeSrc":"1396:23:94","nodeType":"YulFunctionCall","src":"1396:23:94"},"variableNames":[{"name":"result","nativeSrc":"1386:6:94","nodeType":"YulIdentifier","src":"1386:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27366,"isOffset":false,"isSlot":false,"src":"1288:4:94","valueSize":1},{"declaration":27366,"isOffset":false,"isSlot":false,"src":"1300:4:94","valueSize":1},{"declaration":27366,"isOffset":false,"isSlot":false,"src":"1399:4:94","valueSize":1},{"declaration":27371,"isOffset":false,"isSlot":false,"src":"1386:6:94","valueSize":1},{"declaration":27368,"isOffset":false,"isSlot":false,"src":"1336:5:94","valueSize":1},{"declaration":27368,"isOffset":false,"isSlot":false,"src":"1349:5:94","valueSize":1},{"declaration":27368,"isOffset":false,"isSlot":false,"src":"1412:5:94","valueSize":1}],"flags":["memory-safe"],"id":27373,"nodeType":"InlineAssembly","src":"1249:180:94"}]},"id":27375,"implemented":true,"kind":"function","modifiers":[],"name":"pack_1_1","nameLocation":"1165:8:94","nodeType":"FunctionDefinition","parameters":{"id":27369,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27366,"mutability":"mutable","name":"left","nameLocation":"1181:4:94","nodeType":"VariableDeclaration","scope":27375,"src":"1174:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":27365,"name":"bytes1","nodeType":"ElementaryTypeName","src":"1174:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":27368,"mutability":"mutable","name":"right","nameLocation":"1194:5:94","nodeType":"VariableDeclaration","scope":27375,"src":"1187:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":27367,"name":"bytes1","nodeType":"ElementaryTypeName","src":"1187:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"1173:27:94"},"returnParameters":{"id":27372,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27371,"mutability":"mutable","name":"result","nameLocation":"1231:6:94","nodeType":"VariableDeclaration","scope":27375,"src":"1224:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27370,"name":"bytes2","nodeType":"ElementaryTypeName","src":"1224:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"1223:15:94"},"scope":30945,"src":"1156:279:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27385,"nodeType":"Block","src":"1524:197:94","statements":[{"AST":{"nativeSrc":"1559:156:94","nodeType":"YulBlock","src":"1559:156:94","statements":[{"nativeSrc":"1573:35:94","nodeType":"YulAssignment","src":"1573:35:94","value":{"arguments":[{"name":"left","nativeSrc":"1585:4:94","nodeType":"YulIdentifier","src":"1585:4:94"},{"arguments":[{"kind":"number","nativeSrc":"1595:3:94","nodeType":"YulLiteral","src":"1595:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"1604:1:94","nodeType":"YulLiteral","src":"1604:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"1600:3:94","nodeType":"YulIdentifier","src":"1600:3:94"},"nativeSrc":"1600:6:94","nodeType":"YulFunctionCall","src":"1600:6:94"}],"functionName":{"name":"shl","nativeSrc":"1591:3:94","nodeType":"YulIdentifier","src":"1591:3:94"},"nativeSrc":"1591:16:94","nodeType":"YulFunctionCall","src":"1591:16:94"}],"functionName":{"name":"and","nativeSrc":"1581:3:94","nodeType":"YulIdentifier","src":"1581:3:94"},"nativeSrc":"1581:27:94","nodeType":"YulFunctionCall","src":"1581:27:94"},"variableNames":[{"name":"left","nativeSrc":"1573:4:94","nodeType":"YulIdentifier","src":"1573:4:94"}]},{"nativeSrc":"1621:37:94","nodeType":"YulAssignment","src":"1621:37:94","value":{"arguments":[{"name":"right","nativeSrc":"1634:5:94","nodeType":"YulIdentifier","src":"1634:5:94"},{"arguments":[{"kind":"number","nativeSrc":"1645:3:94","nodeType":"YulLiteral","src":"1645:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"1654:1:94","nodeType":"YulLiteral","src":"1654:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"1650:3:94","nodeType":"YulIdentifier","src":"1650:3:94"},"nativeSrc":"1650:6:94","nodeType":"YulFunctionCall","src":"1650:6:94"}],"functionName":{"name":"shl","nativeSrc":"1641:3:94","nodeType":"YulIdentifier","src":"1641:3:94"},"nativeSrc":"1641:16:94","nodeType":"YulFunctionCall","src":"1641:16:94"}],"functionName":{"name":"and","nativeSrc":"1630:3:94","nodeType":"YulIdentifier","src":"1630:3:94"},"nativeSrc":"1630:28:94","nodeType":"YulFunctionCall","src":"1630:28:94"},"variableNames":[{"name":"right","nativeSrc":"1621:5:94","nodeType":"YulIdentifier","src":"1621:5:94"}]},{"nativeSrc":"1671:34:94","nodeType":"YulAssignment","src":"1671:34:94","value":{"arguments":[{"name":"left","nativeSrc":"1684:4:94","nodeType":"YulIdentifier","src":"1684:4:94"},{"arguments":[{"kind":"number","nativeSrc":"1694:2:94","nodeType":"YulLiteral","src":"1694:2:94","type":"","value":"16"},{"name":"right","nativeSrc":"1698:5:94","nodeType":"YulIdentifier","src":"1698:5:94"}],"functionName":{"name":"shr","nativeSrc":"1690:3:94","nodeType":"YulIdentifier","src":"1690:3:94"},"nativeSrc":"1690:14:94","nodeType":"YulFunctionCall","src":"1690:14:94"}],"functionName":{"name":"or","nativeSrc":"1681:2:94","nodeType":"YulIdentifier","src":"1681:2:94"},"nativeSrc":"1681:24:94","nodeType":"YulFunctionCall","src":"1681:24:94"},"variableNames":[{"name":"result","nativeSrc":"1671:6:94","nodeType":"YulIdentifier","src":"1671:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27377,"isOffset":false,"isSlot":false,"src":"1573:4:94","valueSize":1},{"declaration":27377,"isOffset":false,"isSlot":false,"src":"1585:4:94","valueSize":1},{"declaration":27377,"isOffset":false,"isSlot":false,"src":"1684:4:94","valueSize":1},{"declaration":27382,"isOffset":false,"isSlot":false,"src":"1671:6:94","valueSize":1},{"declaration":27379,"isOffset":false,"isSlot":false,"src":"1621:5:94","valueSize":1},{"declaration":27379,"isOffset":false,"isSlot":false,"src":"1634:5:94","valueSize":1},{"declaration":27379,"isOffset":false,"isSlot":false,"src":"1698:5:94","valueSize":1}],"flags":["memory-safe"],"id":27384,"nodeType":"InlineAssembly","src":"1534:181:94"}]},"id":27386,"implemented":true,"kind":"function","modifiers":[],"name":"pack_2_2","nameLocation":"1450:8:94","nodeType":"FunctionDefinition","parameters":{"id":27380,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27377,"mutability":"mutable","name":"left","nameLocation":"1466:4:94","nodeType":"VariableDeclaration","scope":27386,"src":"1459:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27376,"name":"bytes2","nodeType":"ElementaryTypeName","src":"1459:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":27379,"mutability":"mutable","name":"right","nameLocation":"1479:5:94","nodeType":"VariableDeclaration","scope":27386,"src":"1472:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27378,"name":"bytes2","nodeType":"ElementaryTypeName","src":"1472:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"1458:27:94"},"returnParameters":{"id":27383,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27382,"mutability":"mutable","name":"result","nameLocation":"1516:6:94","nodeType":"VariableDeclaration","scope":27386,"src":"1509:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27381,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1509:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1508:15:94"},"scope":30945,"src":"1441:280:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27396,"nodeType":"Block","src":"1810:197:94","statements":[{"AST":{"nativeSrc":"1845:156:94","nodeType":"YulBlock","src":"1845:156:94","statements":[{"nativeSrc":"1859:35:94","nodeType":"YulAssignment","src":"1859:35:94","value":{"arguments":[{"name":"left","nativeSrc":"1871:4:94","nodeType":"YulIdentifier","src":"1871:4:94"},{"arguments":[{"kind":"number","nativeSrc":"1881:3:94","nodeType":"YulLiteral","src":"1881:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"1890:1:94","nodeType":"YulLiteral","src":"1890:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"1886:3:94","nodeType":"YulIdentifier","src":"1886:3:94"},"nativeSrc":"1886:6:94","nodeType":"YulFunctionCall","src":"1886:6:94"}],"functionName":{"name":"shl","nativeSrc":"1877:3:94","nodeType":"YulIdentifier","src":"1877:3:94"},"nativeSrc":"1877:16:94","nodeType":"YulFunctionCall","src":"1877:16:94"}],"functionName":{"name":"and","nativeSrc":"1867:3:94","nodeType":"YulIdentifier","src":"1867:3:94"},"nativeSrc":"1867:27:94","nodeType":"YulFunctionCall","src":"1867:27:94"},"variableNames":[{"name":"left","nativeSrc":"1859:4:94","nodeType":"YulIdentifier","src":"1859:4:94"}]},{"nativeSrc":"1907:37:94","nodeType":"YulAssignment","src":"1907:37:94","value":{"arguments":[{"name":"right","nativeSrc":"1920:5:94","nodeType":"YulIdentifier","src":"1920:5:94"},{"arguments":[{"kind":"number","nativeSrc":"1931:3:94","nodeType":"YulLiteral","src":"1931:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"1940:1:94","nodeType":"YulLiteral","src":"1940:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"1936:3:94","nodeType":"YulIdentifier","src":"1936:3:94"},"nativeSrc":"1936:6:94","nodeType":"YulFunctionCall","src":"1936:6:94"}],"functionName":{"name":"shl","nativeSrc":"1927:3:94","nodeType":"YulIdentifier","src":"1927:3:94"},"nativeSrc":"1927:16:94","nodeType":"YulFunctionCall","src":"1927:16:94"}],"functionName":{"name":"and","nativeSrc":"1916:3:94","nodeType":"YulIdentifier","src":"1916:3:94"},"nativeSrc":"1916:28:94","nodeType":"YulFunctionCall","src":"1916:28:94"},"variableNames":[{"name":"right","nativeSrc":"1907:5:94","nodeType":"YulIdentifier","src":"1907:5:94"}]},{"nativeSrc":"1957:34:94","nodeType":"YulAssignment","src":"1957:34:94","value":{"arguments":[{"name":"left","nativeSrc":"1970:4:94","nodeType":"YulIdentifier","src":"1970:4:94"},{"arguments":[{"kind":"number","nativeSrc":"1980:2:94","nodeType":"YulLiteral","src":"1980:2:94","type":"","value":"16"},{"name":"right","nativeSrc":"1984:5:94","nodeType":"YulIdentifier","src":"1984:5:94"}],"functionName":{"name":"shr","nativeSrc":"1976:3:94","nodeType":"YulIdentifier","src":"1976:3:94"},"nativeSrc":"1976:14:94","nodeType":"YulFunctionCall","src":"1976:14:94"}],"functionName":{"name":"or","nativeSrc":"1967:2:94","nodeType":"YulIdentifier","src":"1967:2:94"},"nativeSrc":"1967:24:94","nodeType":"YulFunctionCall","src":"1967:24:94"},"variableNames":[{"name":"result","nativeSrc":"1957:6:94","nodeType":"YulIdentifier","src":"1957:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27388,"isOffset":false,"isSlot":false,"src":"1859:4:94","valueSize":1},{"declaration":27388,"isOffset":false,"isSlot":false,"src":"1871:4:94","valueSize":1},{"declaration":27388,"isOffset":false,"isSlot":false,"src":"1970:4:94","valueSize":1},{"declaration":27393,"isOffset":false,"isSlot":false,"src":"1957:6:94","valueSize":1},{"declaration":27390,"isOffset":false,"isSlot":false,"src":"1907:5:94","valueSize":1},{"declaration":27390,"isOffset":false,"isSlot":false,"src":"1920:5:94","valueSize":1},{"declaration":27390,"isOffset":false,"isSlot":false,"src":"1984:5:94","valueSize":1}],"flags":["memory-safe"],"id":27395,"nodeType":"InlineAssembly","src":"1820:181:94"}]},"id":27397,"implemented":true,"kind":"function","modifiers":[],"name":"pack_2_4","nameLocation":"1736:8:94","nodeType":"FunctionDefinition","parameters":{"id":27391,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27388,"mutability":"mutable","name":"left","nameLocation":"1752:4:94","nodeType":"VariableDeclaration","scope":27397,"src":"1745:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27387,"name":"bytes2","nodeType":"ElementaryTypeName","src":"1745:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":27390,"mutability":"mutable","name":"right","nameLocation":"1765:5:94","nodeType":"VariableDeclaration","scope":27397,"src":"1758:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27389,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1758:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1744:27:94"},"returnParameters":{"id":27394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27393,"mutability":"mutable","name":"result","nameLocation":"1802:6:94","nodeType":"VariableDeclaration","scope":27397,"src":"1795:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":27392,"name":"bytes6","nodeType":"ElementaryTypeName","src":"1795:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"1794:15:94"},"scope":30945,"src":"1727:280:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27407,"nodeType":"Block","src":"2096:197:94","statements":[{"AST":{"nativeSrc":"2131:156:94","nodeType":"YulBlock","src":"2131:156:94","statements":[{"nativeSrc":"2145:35:94","nodeType":"YulAssignment","src":"2145:35:94","value":{"arguments":[{"name":"left","nativeSrc":"2157:4:94","nodeType":"YulIdentifier","src":"2157:4:94"},{"arguments":[{"kind":"number","nativeSrc":"2167:3:94","nodeType":"YulLiteral","src":"2167:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"2176:1:94","nodeType":"YulLiteral","src":"2176:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2172:3:94","nodeType":"YulIdentifier","src":"2172:3:94"},"nativeSrc":"2172:6:94","nodeType":"YulFunctionCall","src":"2172:6:94"}],"functionName":{"name":"shl","nativeSrc":"2163:3:94","nodeType":"YulIdentifier","src":"2163:3:94"},"nativeSrc":"2163:16:94","nodeType":"YulFunctionCall","src":"2163:16:94"}],"functionName":{"name":"and","nativeSrc":"2153:3:94","nodeType":"YulIdentifier","src":"2153:3:94"},"nativeSrc":"2153:27:94","nodeType":"YulFunctionCall","src":"2153:27:94"},"variableNames":[{"name":"left","nativeSrc":"2145:4:94","nodeType":"YulIdentifier","src":"2145:4:94"}]},{"nativeSrc":"2193:37:94","nodeType":"YulAssignment","src":"2193:37:94","value":{"arguments":[{"name":"right","nativeSrc":"2206:5:94","nodeType":"YulIdentifier","src":"2206:5:94"},{"arguments":[{"kind":"number","nativeSrc":"2217:3:94","nodeType":"YulLiteral","src":"2217:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"2226:1:94","nodeType":"YulLiteral","src":"2226:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2222:3:94","nodeType":"YulIdentifier","src":"2222:3:94"},"nativeSrc":"2222:6:94","nodeType":"YulFunctionCall","src":"2222:6:94"}],"functionName":{"name":"shl","nativeSrc":"2213:3:94","nodeType":"YulIdentifier","src":"2213:3:94"},"nativeSrc":"2213:16:94","nodeType":"YulFunctionCall","src":"2213:16:94"}],"functionName":{"name":"and","nativeSrc":"2202:3:94","nodeType":"YulIdentifier","src":"2202:3:94"},"nativeSrc":"2202:28:94","nodeType":"YulFunctionCall","src":"2202:28:94"},"variableNames":[{"name":"right","nativeSrc":"2193:5:94","nodeType":"YulIdentifier","src":"2193:5:94"}]},{"nativeSrc":"2243:34:94","nodeType":"YulAssignment","src":"2243:34:94","value":{"arguments":[{"name":"left","nativeSrc":"2256:4:94","nodeType":"YulIdentifier","src":"2256:4:94"},{"arguments":[{"kind":"number","nativeSrc":"2266:2:94","nodeType":"YulLiteral","src":"2266:2:94","type":"","value":"16"},{"name":"right","nativeSrc":"2270:5:94","nodeType":"YulIdentifier","src":"2270:5:94"}],"functionName":{"name":"shr","nativeSrc":"2262:3:94","nodeType":"YulIdentifier","src":"2262:3:94"},"nativeSrc":"2262:14:94","nodeType":"YulFunctionCall","src":"2262:14:94"}],"functionName":{"name":"or","nativeSrc":"2253:2:94","nodeType":"YulIdentifier","src":"2253:2:94"},"nativeSrc":"2253:24:94","nodeType":"YulFunctionCall","src":"2253:24:94"},"variableNames":[{"name":"result","nativeSrc":"2243:6:94","nodeType":"YulIdentifier","src":"2243:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27399,"isOffset":false,"isSlot":false,"src":"2145:4:94","valueSize":1},{"declaration":27399,"isOffset":false,"isSlot":false,"src":"2157:4:94","valueSize":1},{"declaration":27399,"isOffset":false,"isSlot":false,"src":"2256:4:94","valueSize":1},{"declaration":27404,"isOffset":false,"isSlot":false,"src":"2243:6:94","valueSize":1},{"declaration":27401,"isOffset":false,"isSlot":false,"src":"2193:5:94","valueSize":1},{"declaration":27401,"isOffset":false,"isSlot":false,"src":"2206:5:94","valueSize":1},{"declaration":27401,"isOffset":false,"isSlot":false,"src":"2270:5:94","valueSize":1}],"flags":["memory-safe"],"id":27406,"nodeType":"InlineAssembly","src":"2106:181:94"}]},"id":27408,"implemented":true,"kind":"function","modifiers":[],"name":"pack_2_6","nameLocation":"2022:8:94","nodeType":"FunctionDefinition","parameters":{"id":27402,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27399,"mutability":"mutable","name":"left","nameLocation":"2038:4:94","nodeType":"VariableDeclaration","scope":27408,"src":"2031:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27398,"name":"bytes2","nodeType":"ElementaryTypeName","src":"2031:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":27401,"mutability":"mutable","name":"right","nameLocation":"2051:5:94","nodeType":"VariableDeclaration","scope":27408,"src":"2044:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":27400,"name":"bytes6","nodeType":"ElementaryTypeName","src":"2044:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"2030:27:94"},"returnParameters":{"id":27405,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27404,"mutability":"mutable","name":"result","nameLocation":"2088:6:94","nodeType":"VariableDeclaration","scope":27408,"src":"2081:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27403,"name":"bytes8","nodeType":"ElementaryTypeName","src":"2081:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"2080:15:94"},"scope":30945,"src":"2013:280:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27418,"nodeType":"Block","src":"2383:197:94","statements":[{"AST":{"nativeSrc":"2418:156:94","nodeType":"YulBlock","src":"2418:156:94","statements":[{"nativeSrc":"2432:35:94","nodeType":"YulAssignment","src":"2432:35:94","value":{"arguments":[{"name":"left","nativeSrc":"2444:4:94","nodeType":"YulIdentifier","src":"2444:4:94"},{"arguments":[{"kind":"number","nativeSrc":"2454:3:94","nodeType":"YulLiteral","src":"2454:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"2463:1:94","nodeType":"YulLiteral","src":"2463:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2459:3:94","nodeType":"YulIdentifier","src":"2459:3:94"},"nativeSrc":"2459:6:94","nodeType":"YulFunctionCall","src":"2459:6:94"}],"functionName":{"name":"shl","nativeSrc":"2450:3:94","nodeType":"YulIdentifier","src":"2450:3:94"},"nativeSrc":"2450:16:94","nodeType":"YulFunctionCall","src":"2450:16:94"}],"functionName":{"name":"and","nativeSrc":"2440:3:94","nodeType":"YulIdentifier","src":"2440:3:94"},"nativeSrc":"2440:27:94","nodeType":"YulFunctionCall","src":"2440:27:94"},"variableNames":[{"name":"left","nativeSrc":"2432:4:94","nodeType":"YulIdentifier","src":"2432:4:94"}]},{"nativeSrc":"2480:37:94","nodeType":"YulAssignment","src":"2480:37:94","value":{"arguments":[{"name":"right","nativeSrc":"2493:5:94","nodeType":"YulIdentifier","src":"2493:5:94"},{"arguments":[{"kind":"number","nativeSrc":"2504:3:94","nodeType":"YulLiteral","src":"2504:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"2513:1:94","nodeType":"YulLiteral","src":"2513:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2509:3:94","nodeType":"YulIdentifier","src":"2509:3:94"},"nativeSrc":"2509:6:94","nodeType":"YulFunctionCall","src":"2509:6:94"}],"functionName":{"name":"shl","nativeSrc":"2500:3:94","nodeType":"YulIdentifier","src":"2500:3:94"},"nativeSrc":"2500:16:94","nodeType":"YulFunctionCall","src":"2500:16:94"}],"functionName":{"name":"and","nativeSrc":"2489:3:94","nodeType":"YulIdentifier","src":"2489:3:94"},"nativeSrc":"2489:28:94","nodeType":"YulFunctionCall","src":"2489:28:94"},"variableNames":[{"name":"right","nativeSrc":"2480:5:94","nodeType":"YulIdentifier","src":"2480:5:94"}]},{"nativeSrc":"2530:34:94","nodeType":"YulAssignment","src":"2530:34:94","value":{"arguments":[{"name":"left","nativeSrc":"2543:4:94","nodeType":"YulIdentifier","src":"2543:4:94"},{"arguments":[{"kind":"number","nativeSrc":"2553:2:94","nodeType":"YulLiteral","src":"2553:2:94","type":"","value":"16"},{"name":"right","nativeSrc":"2557:5:94","nodeType":"YulIdentifier","src":"2557:5:94"}],"functionName":{"name":"shr","nativeSrc":"2549:3:94","nodeType":"YulIdentifier","src":"2549:3:94"},"nativeSrc":"2549:14:94","nodeType":"YulFunctionCall","src":"2549:14:94"}],"functionName":{"name":"or","nativeSrc":"2540:2:94","nodeType":"YulIdentifier","src":"2540:2:94"},"nativeSrc":"2540:24:94","nodeType":"YulFunctionCall","src":"2540:24:94"},"variableNames":[{"name":"result","nativeSrc":"2530:6:94","nodeType":"YulIdentifier","src":"2530:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27410,"isOffset":false,"isSlot":false,"src":"2432:4:94","valueSize":1},{"declaration":27410,"isOffset":false,"isSlot":false,"src":"2444:4:94","valueSize":1},{"declaration":27410,"isOffset":false,"isSlot":false,"src":"2543:4:94","valueSize":1},{"declaration":27415,"isOffset":false,"isSlot":false,"src":"2530:6:94","valueSize":1},{"declaration":27412,"isOffset":false,"isSlot":false,"src":"2480:5:94","valueSize":1},{"declaration":27412,"isOffset":false,"isSlot":false,"src":"2493:5:94","valueSize":1},{"declaration":27412,"isOffset":false,"isSlot":false,"src":"2557:5:94","valueSize":1}],"flags":["memory-safe"],"id":27417,"nodeType":"InlineAssembly","src":"2393:181:94"}]},"id":27419,"implemented":true,"kind":"function","modifiers":[],"name":"pack_2_8","nameLocation":"2308:8:94","nodeType":"FunctionDefinition","parameters":{"id":27413,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27410,"mutability":"mutable","name":"left","nameLocation":"2324:4:94","nodeType":"VariableDeclaration","scope":27419,"src":"2317:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27409,"name":"bytes2","nodeType":"ElementaryTypeName","src":"2317:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":27412,"mutability":"mutable","name":"right","nameLocation":"2337:5:94","nodeType":"VariableDeclaration","scope":27419,"src":"2330:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27411,"name":"bytes8","nodeType":"ElementaryTypeName","src":"2330:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"2316:27:94"},"returnParameters":{"id":27416,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27415,"mutability":"mutable","name":"result","nameLocation":"2375:6:94","nodeType":"VariableDeclaration","scope":27419,"src":"2367:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":27414,"name":"bytes10","nodeType":"ElementaryTypeName","src":"2367:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"2366:16:94"},"scope":30945,"src":"2299:281:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27429,"nodeType":"Block","src":"2672:197:94","statements":[{"AST":{"nativeSrc":"2707:156:94","nodeType":"YulBlock","src":"2707:156:94","statements":[{"nativeSrc":"2721:35:94","nodeType":"YulAssignment","src":"2721:35:94","value":{"arguments":[{"name":"left","nativeSrc":"2733:4:94","nodeType":"YulIdentifier","src":"2733:4:94"},{"arguments":[{"kind":"number","nativeSrc":"2743:3:94","nodeType":"YulLiteral","src":"2743:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"2752:1:94","nodeType":"YulLiteral","src":"2752:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2748:3:94","nodeType":"YulIdentifier","src":"2748:3:94"},"nativeSrc":"2748:6:94","nodeType":"YulFunctionCall","src":"2748:6:94"}],"functionName":{"name":"shl","nativeSrc":"2739:3:94","nodeType":"YulIdentifier","src":"2739:3:94"},"nativeSrc":"2739:16:94","nodeType":"YulFunctionCall","src":"2739:16:94"}],"functionName":{"name":"and","nativeSrc":"2729:3:94","nodeType":"YulIdentifier","src":"2729:3:94"},"nativeSrc":"2729:27:94","nodeType":"YulFunctionCall","src":"2729:27:94"},"variableNames":[{"name":"left","nativeSrc":"2721:4:94","nodeType":"YulIdentifier","src":"2721:4:94"}]},{"nativeSrc":"2769:37:94","nodeType":"YulAssignment","src":"2769:37:94","value":{"arguments":[{"name":"right","nativeSrc":"2782:5:94","nodeType":"YulIdentifier","src":"2782:5:94"},{"arguments":[{"kind":"number","nativeSrc":"2793:3:94","nodeType":"YulLiteral","src":"2793:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"2802:1:94","nodeType":"YulLiteral","src":"2802:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2798:3:94","nodeType":"YulIdentifier","src":"2798:3:94"},"nativeSrc":"2798:6:94","nodeType":"YulFunctionCall","src":"2798:6:94"}],"functionName":{"name":"shl","nativeSrc":"2789:3:94","nodeType":"YulIdentifier","src":"2789:3:94"},"nativeSrc":"2789:16:94","nodeType":"YulFunctionCall","src":"2789:16:94"}],"functionName":{"name":"and","nativeSrc":"2778:3:94","nodeType":"YulIdentifier","src":"2778:3:94"},"nativeSrc":"2778:28:94","nodeType":"YulFunctionCall","src":"2778:28:94"},"variableNames":[{"name":"right","nativeSrc":"2769:5:94","nodeType":"YulIdentifier","src":"2769:5:94"}]},{"nativeSrc":"2819:34:94","nodeType":"YulAssignment","src":"2819:34:94","value":{"arguments":[{"name":"left","nativeSrc":"2832:4:94","nodeType":"YulIdentifier","src":"2832:4:94"},{"arguments":[{"kind":"number","nativeSrc":"2842:2:94","nodeType":"YulLiteral","src":"2842:2:94","type":"","value":"16"},{"name":"right","nativeSrc":"2846:5:94","nodeType":"YulIdentifier","src":"2846:5:94"}],"functionName":{"name":"shr","nativeSrc":"2838:3:94","nodeType":"YulIdentifier","src":"2838:3:94"},"nativeSrc":"2838:14:94","nodeType":"YulFunctionCall","src":"2838:14:94"}],"functionName":{"name":"or","nativeSrc":"2829:2:94","nodeType":"YulIdentifier","src":"2829:2:94"},"nativeSrc":"2829:24:94","nodeType":"YulFunctionCall","src":"2829:24:94"},"variableNames":[{"name":"result","nativeSrc":"2819:6:94","nodeType":"YulIdentifier","src":"2819:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27421,"isOffset":false,"isSlot":false,"src":"2721:4:94","valueSize":1},{"declaration":27421,"isOffset":false,"isSlot":false,"src":"2733:4:94","valueSize":1},{"declaration":27421,"isOffset":false,"isSlot":false,"src":"2832:4:94","valueSize":1},{"declaration":27426,"isOffset":false,"isSlot":false,"src":"2819:6:94","valueSize":1},{"declaration":27423,"isOffset":false,"isSlot":false,"src":"2769:5:94","valueSize":1},{"declaration":27423,"isOffset":false,"isSlot":false,"src":"2782:5:94","valueSize":1},{"declaration":27423,"isOffset":false,"isSlot":false,"src":"2846:5:94","valueSize":1}],"flags":["memory-safe"],"id":27428,"nodeType":"InlineAssembly","src":"2682:181:94"}]},"id":27430,"implemented":true,"kind":"function","modifiers":[],"name":"pack_2_10","nameLocation":"2595:9:94","nodeType":"FunctionDefinition","parameters":{"id":27424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27421,"mutability":"mutable","name":"left","nameLocation":"2612:4:94","nodeType":"VariableDeclaration","scope":27430,"src":"2605:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27420,"name":"bytes2","nodeType":"ElementaryTypeName","src":"2605:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":27423,"mutability":"mutable","name":"right","nameLocation":"2626:5:94","nodeType":"VariableDeclaration","scope":27430,"src":"2618:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":27422,"name":"bytes10","nodeType":"ElementaryTypeName","src":"2618:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"2604:28:94"},"returnParameters":{"id":27427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27426,"mutability":"mutable","name":"result","nameLocation":"2664:6:94","nodeType":"VariableDeclaration","scope":27430,"src":"2656:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27425,"name":"bytes12","nodeType":"ElementaryTypeName","src":"2656:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"2655:16:94"},"scope":30945,"src":"2586:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27440,"nodeType":"Block","src":"2961:196:94","statements":[{"AST":{"nativeSrc":"2996:155:94","nodeType":"YulBlock","src":"2996:155:94","statements":[{"nativeSrc":"3010:35:94","nodeType":"YulAssignment","src":"3010:35:94","value":{"arguments":[{"name":"left","nativeSrc":"3022:4:94","nodeType":"YulIdentifier","src":"3022:4:94"},{"arguments":[{"kind":"number","nativeSrc":"3032:3:94","nodeType":"YulLiteral","src":"3032:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"3041:1:94","nodeType":"YulLiteral","src":"3041:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3037:3:94","nodeType":"YulIdentifier","src":"3037:3:94"},"nativeSrc":"3037:6:94","nodeType":"YulFunctionCall","src":"3037:6:94"}],"functionName":{"name":"shl","nativeSrc":"3028:3:94","nodeType":"YulIdentifier","src":"3028:3:94"},"nativeSrc":"3028:16:94","nodeType":"YulFunctionCall","src":"3028:16:94"}],"functionName":{"name":"and","nativeSrc":"3018:3:94","nodeType":"YulIdentifier","src":"3018:3:94"},"nativeSrc":"3018:27:94","nodeType":"YulFunctionCall","src":"3018:27:94"},"variableNames":[{"name":"left","nativeSrc":"3010:4:94","nodeType":"YulIdentifier","src":"3010:4:94"}]},{"nativeSrc":"3058:36:94","nodeType":"YulAssignment","src":"3058:36:94","value":{"arguments":[{"name":"right","nativeSrc":"3071:5:94","nodeType":"YulIdentifier","src":"3071:5:94"},{"arguments":[{"kind":"number","nativeSrc":"3082:2:94","nodeType":"YulLiteral","src":"3082:2:94","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"3090:1:94","nodeType":"YulLiteral","src":"3090:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3086:3:94","nodeType":"YulIdentifier","src":"3086:3:94"},"nativeSrc":"3086:6:94","nodeType":"YulFunctionCall","src":"3086:6:94"}],"functionName":{"name":"shl","nativeSrc":"3078:3:94","nodeType":"YulIdentifier","src":"3078:3:94"},"nativeSrc":"3078:15:94","nodeType":"YulFunctionCall","src":"3078:15:94"}],"functionName":{"name":"and","nativeSrc":"3067:3:94","nodeType":"YulIdentifier","src":"3067:3:94"},"nativeSrc":"3067:27:94","nodeType":"YulFunctionCall","src":"3067:27:94"},"variableNames":[{"name":"right","nativeSrc":"3058:5:94","nodeType":"YulIdentifier","src":"3058:5:94"}]},{"nativeSrc":"3107:34:94","nodeType":"YulAssignment","src":"3107:34:94","value":{"arguments":[{"name":"left","nativeSrc":"3120:4:94","nodeType":"YulIdentifier","src":"3120:4:94"},{"arguments":[{"kind":"number","nativeSrc":"3130:2:94","nodeType":"YulLiteral","src":"3130:2:94","type":"","value":"16"},{"name":"right","nativeSrc":"3134:5:94","nodeType":"YulIdentifier","src":"3134:5:94"}],"functionName":{"name":"shr","nativeSrc":"3126:3:94","nodeType":"YulIdentifier","src":"3126:3:94"},"nativeSrc":"3126:14:94","nodeType":"YulFunctionCall","src":"3126:14:94"}],"functionName":{"name":"or","nativeSrc":"3117:2:94","nodeType":"YulIdentifier","src":"3117:2:94"},"nativeSrc":"3117:24:94","nodeType":"YulFunctionCall","src":"3117:24:94"},"variableNames":[{"name":"result","nativeSrc":"3107:6:94","nodeType":"YulIdentifier","src":"3107:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27432,"isOffset":false,"isSlot":false,"src":"3010:4:94","valueSize":1},{"declaration":27432,"isOffset":false,"isSlot":false,"src":"3022:4:94","valueSize":1},{"declaration":27432,"isOffset":false,"isSlot":false,"src":"3120:4:94","valueSize":1},{"declaration":27437,"isOffset":false,"isSlot":false,"src":"3107:6:94","valueSize":1},{"declaration":27434,"isOffset":false,"isSlot":false,"src":"3058:5:94","valueSize":1},{"declaration":27434,"isOffset":false,"isSlot":false,"src":"3071:5:94","valueSize":1},{"declaration":27434,"isOffset":false,"isSlot":false,"src":"3134:5:94","valueSize":1}],"flags":["memory-safe"],"id":27439,"nodeType":"InlineAssembly","src":"2971:180:94"}]},"id":27441,"implemented":true,"kind":"function","modifiers":[],"name":"pack_2_20","nameLocation":"2884:9:94","nodeType":"FunctionDefinition","parameters":{"id":27435,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27432,"mutability":"mutable","name":"left","nameLocation":"2901:4:94","nodeType":"VariableDeclaration","scope":27441,"src":"2894:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27431,"name":"bytes2","nodeType":"ElementaryTypeName","src":"2894:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":27434,"mutability":"mutable","name":"right","nameLocation":"2915:5:94","nodeType":"VariableDeclaration","scope":27441,"src":"2907:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":27433,"name":"bytes20","nodeType":"ElementaryTypeName","src":"2907:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"2893:28:94"},"returnParameters":{"id":27438,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27437,"mutability":"mutable","name":"result","nameLocation":"2953:6:94","nodeType":"VariableDeclaration","scope":27441,"src":"2945:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":27436,"name":"bytes22","nodeType":"ElementaryTypeName","src":"2945:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"2944:16:94"},"scope":30945,"src":"2875:282:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27451,"nodeType":"Block","src":"3249:196:94","statements":[{"AST":{"nativeSrc":"3284:155:94","nodeType":"YulBlock","src":"3284:155:94","statements":[{"nativeSrc":"3298:35:94","nodeType":"YulAssignment","src":"3298:35:94","value":{"arguments":[{"name":"left","nativeSrc":"3310:4:94","nodeType":"YulIdentifier","src":"3310:4:94"},{"arguments":[{"kind":"number","nativeSrc":"3320:3:94","nodeType":"YulLiteral","src":"3320:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"3329:1:94","nodeType":"YulLiteral","src":"3329:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3325:3:94","nodeType":"YulIdentifier","src":"3325:3:94"},"nativeSrc":"3325:6:94","nodeType":"YulFunctionCall","src":"3325:6:94"}],"functionName":{"name":"shl","nativeSrc":"3316:3:94","nodeType":"YulIdentifier","src":"3316:3:94"},"nativeSrc":"3316:16:94","nodeType":"YulFunctionCall","src":"3316:16:94"}],"functionName":{"name":"and","nativeSrc":"3306:3:94","nodeType":"YulIdentifier","src":"3306:3:94"},"nativeSrc":"3306:27:94","nodeType":"YulFunctionCall","src":"3306:27:94"},"variableNames":[{"name":"left","nativeSrc":"3298:4:94","nodeType":"YulIdentifier","src":"3298:4:94"}]},{"nativeSrc":"3346:36:94","nodeType":"YulAssignment","src":"3346:36:94","value":{"arguments":[{"name":"right","nativeSrc":"3359:5:94","nodeType":"YulIdentifier","src":"3359:5:94"},{"arguments":[{"kind":"number","nativeSrc":"3370:2:94","nodeType":"YulLiteral","src":"3370:2:94","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"3378:1:94","nodeType":"YulLiteral","src":"3378:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3374:3:94","nodeType":"YulIdentifier","src":"3374:3:94"},"nativeSrc":"3374:6:94","nodeType":"YulFunctionCall","src":"3374:6:94"}],"functionName":{"name":"shl","nativeSrc":"3366:3:94","nodeType":"YulIdentifier","src":"3366:3:94"},"nativeSrc":"3366:15:94","nodeType":"YulFunctionCall","src":"3366:15:94"}],"functionName":{"name":"and","nativeSrc":"3355:3:94","nodeType":"YulIdentifier","src":"3355:3:94"},"nativeSrc":"3355:27:94","nodeType":"YulFunctionCall","src":"3355:27:94"},"variableNames":[{"name":"right","nativeSrc":"3346:5:94","nodeType":"YulIdentifier","src":"3346:5:94"}]},{"nativeSrc":"3395:34:94","nodeType":"YulAssignment","src":"3395:34:94","value":{"arguments":[{"name":"left","nativeSrc":"3408:4:94","nodeType":"YulIdentifier","src":"3408:4:94"},{"arguments":[{"kind":"number","nativeSrc":"3418:2:94","nodeType":"YulLiteral","src":"3418:2:94","type":"","value":"16"},{"name":"right","nativeSrc":"3422:5:94","nodeType":"YulIdentifier","src":"3422:5:94"}],"functionName":{"name":"shr","nativeSrc":"3414:3:94","nodeType":"YulIdentifier","src":"3414:3:94"},"nativeSrc":"3414:14:94","nodeType":"YulFunctionCall","src":"3414:14:94"}],"functionName":{"name":"or","nativeSrc":"3405:2:94","nodeType":"YulIdentifier","src":"3405:2:94"},"nativeSrc":"3405:24:94","nodeType":"YulFunctionCall","src":"3405:24:94"},"variableNames":[{"name":"result","nativeSrc":"3395:6:94","nodeType":"YulIdentifier","src":"3395:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27443,"isOffset":false,"isSlot":false,"src":"3298:4:94","valueSize":1},{"declaration":27443,"isOffset":false,"isSlot":false,"src":"3310:4:94","valueSize":1},{"declaration":27443,"isOffset":false,"isSlot":false,"src":"3408:4:94","valueSize":1},{"declaration":27448,"isOffset":false,"isSlot":false,"src":"3395:6:94","valueSize":1},{"declaration":27445,"isOffset":false,"isSlot":false,"src":"3346:5:94","valueSize":1},{"declaration":27445,"isOffset":false,"isSlot":false,"src":"3359:5:94","valueSize":1},{"declaration":27445,"isOffset":false,"isSlot":false,"src":"3422:5:94","valueSize":1}],"flags":["memory-safe"],"id":27450,"nodeType":"InlineAssembly","src":"3259:180:94"}]},"id":27452,"implemented":true,"kind":"function","modifiers":[],"name":"pack_2_22","nameLocation":"3172:9:94","nodeType":"FunctionDefinition","parameters":{"id":27446,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27443,"mutability":"mutable","name":"left","nameLocation":"3189:4:94","nodeType":"VariableDeclaration","scope":27452,"src":"3182:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27442,"name":"bytes2","nodeType":"ElementaryTypeName","src":"3182:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":27445,"mutability":"mutable","name":"right","nameLocation":"3203:5:94","nodeType":"VariableDeclaration","scope":27452,"src":"3195:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":27444,"name":"bytes22","nodeType":"ElementaryTypeName","src":"3195:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"3181:28:94"},"returnParameters":{"id":27449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27448,"mutability":"mutable","name":"result","nameLocation":"3241:6:94","nodeType":"VariableDeclaration","scope":27452,"src":"3233:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":27447,"name":"bytes24","nodeType":"ElementaryTypeName","src":"3233:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"3232:16:94"},"scope":30945,"src":"3163:282:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27462,"nodeType":"Block","src":"3534:197:94","statements":[{"AST":{"nativeSrc":"3569:156:94","nodeType":"YulBlock","src":"3569:156:94","statements":[{"nativeSrc":"3583:35:94","nodeType":"YulAssignment","src":"3583:35:94","value":{"arguments":[{"name":"left","nativeSrc":"3595:4:94","nodeType":"YulIdentifier","src":"3595:4:94"},{"arguments":[{"kind":"number","nativeSrc":"3605:3:94","nodeType":"YulLiteral","src":"3605:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"3614:1:94","nodeType":"YulLiteral","src":"3614:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3610:3:94","nodeType":"YulIdentifier","src":"3610:3:94"},"nativeSrc":"3610:6:94","nodeType":"YulFunctionCall","src":"3610:6:94"}],"functionName":{"name":"shl","nativeSrc":"3601:3:94","nodeType":"YulIdentifier","src":"3601:3:94"},"nativeSrc":"3601:16:94","nodeType":"YulFunctionCall","src":"3601:16:94"}],"functionName":{"name":"and","nativeSrc":"3591:3:94","nodeType":"YulIdentifier","src":"3591:3:94"},"nativeSrc":"3591:27:94","nodeType":"YulFunctionCall","src":"3591:27:94"},"variableNames":[{"name":"left","nativeSrc":"3583:4:94","nodeType":"YulIdentifier","src":"3583:4:94"}]},{"nativeSrc":"3631:37:94","nodeType":"YulAssignment","src":"3631:37:94","value":{"arguments":[{"name":"right","nativeSrc":"3644:5:94","nodeType":"YulIdentifier","src":"3644:5:94"},{"arguments":[{"kind":"number","nativeSrc":"3655:3:94","nodeType":"YulLiteral","src":"3655:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"3664:1:94","nodeType":"YulLiteral","src":"3664:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3660:3:94","nodeType":"YulIdentifier","src":"3660:3:94"},"nativeSrc":"3660:6:94","nodeType":"YulFunctionCall","src":"3660:6:94"}],"functionName":{"name":"shl","nativeSrc":"3651:3:94","nodeType":"YulIdentifier","src":"3651:3:94"},"nativeSrc":"3651:16:94","nodeType":"YulFunctionCall","src":"3651:16:94"}],"functionName":{"name":"and","nativeSrc":"3640:3:94","nodeType":"YulIdentifier","src":"3640:3:94"},"nativeSrc":"3640:28:94","nodeType":"YulFunctionCall","src":"3640:28:94"},"variableNames":[{"name":"right","nativeSrc":"3631:5:94","nodeType":"YulIdentifier","src":"3631:5:94"}]},{"nativeSrc":"3681:34:94","nodeType":"YulAssignment","src":"3681:34:94","value":{"arguments":[{"name":"left","nativeSrc":"3694:4:94","nodeType":"YulIdentifier","src":"3694:4:94"},{"arguments":[{"kind":"number","nativeSrc":"3704:2:94","nodeType":"YulLiteral","src":"3704:2:94","type":"","value":"32"},{"name":"right","nativeSrc":"3708:5:94","nodeType":"YulIdentifier","src":"3708:5:94"}],"functionName":{"name":"shr","nativeSrc":"3700:3:94","nodeType":"YulIdentifier","src":"3700:3:94"},"nativeSrc":"3700:14:94","nodeType":"YulFunctionCall","src":"3700:14:94"}],"functionName":{"name":"or","nativeSrc":"3691:2:94","nodeType":"YulIdentifier","src":"3691:2:94"},"nativeSrc":"3691:24:94","nodeType":"YulFunctionCall","src":"3691:24:94"},"variableNames":[{"name":"result","nativeSrc":"3681:6:94","nodeType":"YulIdentifier","src":"3681:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27454,"isOffset":false,"isSlot":false,"src":"3583:4:94","valueSize":1},{"declaration":27454,"isOffset":false,"isSlot":false,"src":"3595:4:94","valueSize":1},{"declaration":27454,"isOffset":false,"isSlot":false,"src":"3694:4:94","valueSize":1},{"declaration":27459,"isOffset":false,"isSlot":false,"src":"3681:6:94","valueSize":1},{"declaration":27456,"isOffset":false,"isSlot":false,"src":"3631:5:94","valueSize":1},{"declaration":27456,"isOffset":false,"isSlot":false,"src":"3644:5:94","valueSize":1},{"declaration":27456,"isOffset":false,"isSlot":false,"src":"3708:5:94","valueSize":1}],"flags":["memory-safe"],"id":27461,"nodeType":"InlineAssembly","src":"3544:181:94"}]},"id":27463,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_2","nameLocation":"3460:8:94","nodeType":"FunctionDefinition","parameters":{"id":27457,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27454,"mutability":"mutable","name":"left","nameLocation":"3476:4:94","nodeType":"VariableDeclaration","scope":27463,"src":"3469:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27453,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3469:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":27456,"mutability":"mutable","name":"right","nameLocation":"3489:5:94","nodeType":"VariableDeclaration","scope":27463,"src":"3482:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27455,"name":"bytes2","nodeType":"ElementaryTypeName","src":"3482:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"3468:27:94"},"returnParameters":{"id":27460,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27459,"mutability":"mutable","name":"result","nameLocation":"3526:6:94","nodeType":"VariableDeclaration","scope":27463,"src":"3519:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":27458,"name":"bytes6","nodeType":"ElementaryTypeName","src":"3519:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"3518:15:94"},"scope":30945,"src":"3451:280:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27473,"nodeType":"Block","src":"3820:197:94","statements":[{"AST":{"nativeSrc":"3855:156:94","nodeType":"YulBlock","src":"3855:156:94","statements":[{"nativeSrc":"3869:35:94","nodeType":"YulAssignment","src":"3869:35:94","value":{"arguments":[{"name":"left","nativeSrc":"3881:4:94","nodeType":"YulIdentifier","src":"3881:4:94"},{"arguments":[{"kind":"number","nativeSrc":"3891:3:94","nodeType":"YulLiteral","src":"3891:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"3900:1:94","nodeType":"YulLiteral","src":"3900:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3896:3:94","nodeType":"YulIdentifier","src":"3896:3:94"},"nativeSrc":"3896:6:94","nodeType":"YulFunctionCall","src":"3896:6:94"}],"functionName":{"name":"shl","nativeSrc":"3887:3:94","nodeType":"YulIdentifier","src":"3887:3:94"},"nativeSrc":"3887:16:94","nodeType":"YulFunctionCall","src":"3887:16:94"}],"functionName":{"name":"and","nativeSrc":"3877:3:94","nodeType":"YulIdentifier","src":"3877:3:94"},"nativeSrc":"3877:27:94","nodeType":"YulFunctionCall","src":"3877:27:94"},"variableNames":[{"name":"left","nativeSrc":"3869:4:94","nodeType":"YulIdentifier","src":"3869:4:94"}]},{"nativeSrc":"3917:37:94","nodeType":"YulAssignment","src":"3917:37:94","value":{"arguments":[{"name":"right","nativeSrc":"3930:5:94","nodeType":"YulIdentifier","src":"3930:5:94"},{"arguments":[{"kind":"number","nativeSrc":"3941:3:94","nodeType":"YulLiteral","src":"3941:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"3950:1:94","nodeType":"YulLiteral","src":"3950:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3946:3:94","nodeType":"YulIdentifier","src":"3946:3:94"},"nativeSrc":"3946:6:94","nodeType":"YulFunctionCall","src":"3946:6:94"}],"functionName":{"name":"shl","nativeSrc":"3937:3:94","nodeType":"YulIdentifier","src":"3937:3:94"},"nativeSrc":"3937:16:94","nodeType":"YulFunctionCall","src":"3937:16:94"}],"functionName":{"name":"and","nativeSrc":"3926:3:94","nodeType":"YulIdentifier","src":"3926:3:94"},"nativeSrc":"3926:28:94","nodeType":"YulFunctionCall","src":"3926:28:94"},"variableNames":[{"name":"right","nativeSrc":"3917:5:94","nodeType":"YulIdentifier","src":"3917:5:94"}]},{"nativeSrc":"3967:34:94","nodeType":"YulAssignment","src":"3967:34:94","value":{"arguments":[{"name":"left","nativeSrc":"3980:4:94","nodeType":"YulIdentifier","src":"3980:4:94"},{"arguments":[{"kind":"number","nativeSrc":"3990:2:94","nodeType":"YulLiteral","src":"3990:2:94","type":"","value":"32"},{"name":"right","nativeSrc":"3994:5:94","nodeType":"YulIdentifier","src":"3994:5:94"}],"functionName":{"name":"shr","nativeSrc":"3986:3:94","nodeType":"YulIdentifier","src":"3986:3:94"},"nativeSrc":"3986:14:94","nodeType":"YulFunctionCall","src":"3986:14:94"}],"functionName":{"name":"or","nativeSrc":"3977:2:94","nodeType":"YulIdentifier","src":"3977:2:94"},"nativeSrc":"3977:24:94","nodeType":"YulFunctionCall","src":"3977:24:94"},"variableNames":[{"name":"result","nativeSrc":"3967:6:94","nodeType":"YulIdentifier","src":"3967:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27465,"isOffset":false,"isSlot":false,"src":"3869:4:94","valueSize":1},{"declaration":27465,"isOffset":false,"isSlot":false,"src":"3881:4:94","valueSize":1},{"declaration":27465,"isOffset":false,"isSlot":false,"src":"3980:4:94","valueSize":1},{"declaration":27470,"isOffset":false,"isSlot":false,"src":"3967:6:94","valueSize":1},{"declaration":27467,"isOffset":false,"isSlot":false,"src":"3917:5:94","valueSize":1},{"declaration":27467,"isOffset":false,"isSlot":false,"src":"3930:5:94","valueSize":1},{"declaration":27467,"isOffset":false,"isSlot":false,"src":"3994:5:94","valueSize":1}],"flags":["memory-safe"],"id":27472,"nodeType":"InlineAssembly","src":"3830:181:94"}]},"id":27474,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_4","nameLocation":"3746:8:94","nodeType":"FunctionDefinition","parameters":{"id":27468,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27465,"mutability":"mutable","name":"left","nameLocation":"3762:4:94","nodeType":"VariableDeclaration","scope":27474,"src":"3755:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27464,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3755:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":27467,"mutability":"mutable","name":"right","nameLocation":"3775:5:94","nodeType":"VariableDeclaration","scope":27474,"src":"3768:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27466,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3768:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"3754:27:94"},"returnParameters":{"id":27471,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27470,"mutability":"mutable","name":"result","nameLocation":"3812:6:94","nodeType":"VariableDeclaration","scope":27474,"src":"3805:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27469,"name":"bytes8","nodeType":"ElementaryTypeName","src":"3805:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"3804:15:94"},"scope":30945,"src":"3737:280:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27484,"nodeType":"Block","src":"4107:197:94","statements":[{"AST":{"nativeSrc":"4142:156:94","nodeType":"YulBlock","src":"4142:156:94","statements":[{"nativeSrc":"4156:35:94","nodeType":"YulAssignment","src":"4156:35:94","value":{"arguments":[{"name":"left","nativeSrc":"4168:4:94","nodeType":"YulIdentifier","src":"4168:4:94"},{"arguments":[{"kind":"number","nativeSrc":"4178:3:94","nodeType":"YulLiteral","src":"4178:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"4187:1:94","nodeType":"YulLiteral","src":"4187:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"4183:3:94","nodeType":"YulIdentifier","src":"4183:3:94"},"nativeSrc":"4183:6:94","nodeType":"YulFunctionCall","src":"4183:6:94"}],"functionName":{"name":"shl","nativeSrc":"4174:3:94","nodeType":"YulIdentifier","src":"4174:3:94"},"nativeSrc":"4174:16:94","nodeType":"YulFunctionCall","src":"4174:16:94"}],"functionName":{"name":"and","nativeSrc":"4164:3:94","nodeType":"YulIdentifier","src":"4164:3:94"},"nativeSrc":"4164:27:94","nodeType":"YulFunctionCall","src":"4164:27:94"},"variableNames":[{"name":"left","nativeSrc":"4156:4:94","nodeType":"YulIdentifier","src":"4156:4:94"}]},{"nativeSrc":"4204:37:94","nodeType":"YulAssignment","src":"4204:37:94","value":{"arguments":[{"name":"right","nativeSrc":"4217:5:94","nodeType":"YulIdentifier","src":"4217:5:94"},{"arguments":[{"kind":"number","nativeSrc":"4228:3:94","nodeType":"YulLiteral","src":"4228:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"4237:1:94","nodeType":"YulLiteral","src":"4237:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"4233:3:94","nodeType":"YulIdentifier","src":"4233:3:94"},"nativeSrc":"4233:6:94","nodeType":"YulFunctionCall","src":"4233:6:94"}],"functionName":{"name":"shl","nativeSrc":"4224:3:94","nodeType":"YulIdentifier","src":"4224:3:94"},"nativeSrc":"4224:16:94","nodeType":"YulFunctionCall","src":"4224:16:94"}],"functionName":{"name":"and","nativeSrc":"4213:3:94","nodeType":"YulIdentifier","src":"4213:3:94"},"nativeSrc":"4213:28:94","nodeType":"YulFunctionCall","src":"4213:28:94"},"variableNames":[{"name":"right","nativeSrc":"4204:5:94","nodeType":"YulIdentifier","src":"4204:5:94"}]},{"nativeSrc":"4254:34:94","nodeType":"YulAssignment","src":"4254:34:94","value":{"arguments":[{"name":"left","nativeSrc":"4267:4:94","nodeType":"YulIdentifier","src":"4267:4:94"},{"arguments":[{"kind":"number","nativeSrc":"4277:2:94","nodeType":"YulLiteral","src":"4277:2:94","type":"","value":"32"},{"name":"right","nativeSrc":"4281:5:94","nodeType":"YulIdentifier","src":"4281:5:94"}],"functionName":{"name":"shr","nativeSrc":"4273:3:94","nodeType":"YulIdentifier","src":"4273:3:94"},"nativeSrc":"4273:14:94","nodeType":"YulFunctionCall","src":"4273:14:94"}],"functionName":{"name":"or","nativeSrc":"4264:2:94","nodeType":"YulIdentifier","src":"4264:2:94"},"nativeSrc":"4264:24:94","nodeType":"YulFunctionCall","src":"4264:24:94"},"variableNames":[{"name":"result","nativeSrc":"4254:6:94","nodeType":"YulIdentifier","src":"4254:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27476,"isOffset":false,"isSlot":false,"src":"4156:4:94","valueSize":1},{"declaration":27476,"isOffset":false,"isSlot":false,"src":"4168:4:94","valueSize":1},{"declaration":27476,"isOffset":false,"isSlot":false,"src":"4267:4:94","valueSize":1},{"declaration":27481,"isOffset":false,"isSlot":false,"src":"4254:6:94","valueSize":1},{"declaration":27478,"isOffset":false,"isSlot":false,"src":"4204:5:94","valueSize":1},{"declaration":27478,"isOffset":false,"isSlot":false,"src":"4217:5:94","valueSize":1},{"declaration":27478,"isOffset":false,"isSlot":false,"src":"4281:5:94","valueSize":1}],"flags":["memory-safe"],"id":27483,"nodeType":"InlineAssembly","src":"4117:181:94"}]},"id":27485,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_6","nameLocation":"4032:8:94","nodeType":"FunctionDefinition","parameters":{"id":27479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27476,"mutability":"mutable","name":"left","nameLocation":"4048:4:94","nodeType":"VariableDeclaration","scope":27485,"src":"4041:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27475,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4041:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":27478,"mutability":"mutable","name":"right","nameLocation":"4061:5:94","nodeType":"VariableDeclaration","scope":27485,"src":"4054:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":27477,"name":"bytes6","nodeType":"ElementaryTypeName","src":"4054:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"4040:27:94"},"returnParameters":{"id":27482,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27481,"mutability":"mutable","name":"result","nameLocation":"4099:6:94","nodeType":"VariableDeclaration","scope":27485,"src":"4091:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":27480,"name":"bytes10","nodeType":"ElementaryTypeName","src":"4091:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"4090:16:94"},"scope":30945,"src":"4023:281:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27495,"nodeType":"Block","src":"4394:197:94","statements":[{"AST":{"nativeSrc":"4429:156:94","nodeType":"YulBlock","src":"4429:156:94","statements":[{"nativeSrc":"4443:35:94","nodeType":"YulAssignment","src":"4443:35:94","value":{"arguments":[{"name":"left","nativeSrc":"4455:4:94","nodeType":"YulIdentifier","src":"4455:4:94"},{"arguments":[{"kind":"number","nativeSrc":"4465:3:94","nodeType":"YulLiteral","src":"4465:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"4474:1:94","nodeType":"YulLiteral","src":"4474:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"4470:3:94","nodeType":"YulIdentifier","src":"4470:3:94"},"nativeSrc":"4470:6:94","nodeType":"YulFunctionCall","src":"4470:6:94"}],"functionName":{"name":"shl","nativeSrc":"4461:3:94","nodeType":"YulIdentifier","src":"4461:3:94"},"nativeSrc":"4461:16:94","nodeType":"YulFunctionCall","src":"4461:16:94"}],"functionName":{"name":"and","nativeSrc":"4451:3:94","nodeType":"YulIdentifier","src":"4451:3:94"},"nativeSrc":"4451:27:94","nodeType":"YulFunctionCall","src":"4451:27:94"},"variableNames":[{"name":"left","nativeSrc":"4443:4:94","nodeType":"YulIdentifier","src":"4443:4:94"}]},{"nativeSrc":"4491:37:94","nodeType":"YulAssignment","src":"4491:37:94","value":{"arguments":[{"name":"right","nativeSrc":"4504:5:94","nodeType":"YulIdentifier","src":"4504:5:94"},{"arguments":[{"kind":"number","nativeSrc":"4515:3:94","nodeType":"YulLiteral","src":"4515:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"4524:1:94","nodeType":"YulLiteral","src":"4524:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"4520:3:94","nodeType":"YulIdentifier","src":"4520:3:94"},"nativeSrc":"4520:6:94","nodeType":"YulFunctionCall","src":"4520:6:94"}],"functionName":{"name":"shl","nativeSrc":"4511:3:94","nodeType":"YulIdentifier","src":"4511:3:94"},"nativeSrc":"4511:16:94","nodeType":"YulFunctionCall","src":"4511:16:94"}],"functionName":{"name":"and","nativeSrc":"4500:3:94","nodeType":"YulIdentifier","src":"4500:3:94"},"nativeSrc":"4500:28:94","nodeType":"YulFunctionCall","src":"4500:28:94"},"variableNames":[{"name":"right","nativeSrc":"4491:5:94","nodeType":"YulIdentifier","src":"4491:5:94"}]},{"nativeSrc":"4541:34:94","nodeType":"YulAssignment","src":"4541:34:94","value":{"arguments":[{"name":"left","nativeSrc":"4554:4:94","nodeType":"YulIdentifier","src":"4554:4:94"},{"arguments":[{"kind":"number","nativeSrc":"4564:2:94","nodeType":"YulLiteral","src":"4564:2:94","type":"","value":"32"},{"name":"right","nativeSrc":"4568:5:94","nodeType":"YulIdentifier","src":"4568:5:94"}],"functionName":{"name":"shr","nativeSrc":"4560:3:94","nodeType":"YulIdentifier","src":"4560:3:94"},"nativeSrc":"4560:14:94","nodeType":"YulFunctionCall","src":"4560:14:94"}],"functionName":{"name":"or","nativeSrc":"4551:2:94","nodeType":"YulIdentifier","src":"4551:2:94"},"nativeSrc":"4551:24:94","nodeType":"YulFunctionCall","src":"4551:24:94"},"variableNames":[{"name":"result","nativeSrc":"4541:6:94","nodeType":"YulIdentifier","src":"4541:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27487,"isOffset":false,"isSlot":false,"src":"4443:4:94","valueSize":1},{"declaration":27487,"isOffset":false,"isSlot":false,"src":"4455:4:94","valueSize":1},{"declaration":27487,"isOffset":false,"isSlot":false,"src":"4554:4:94","valueSize":1},{"declaration":27492,"isOffset":false,"isSlot":false,"src":"4541:6:94","valueSize":1},{"declaration":27489,"isOffset":false,"isSlot":false,"src":"4491:5:94","valueSize":1},{"declaration":27489,"isOffset":false,"isSlot":false,"src":"4504:5:94","valueSize":1},{"declaration":27489,"isOffset":false,"isSlot":false,"src":"4568:5:94","valueSize":1}],"flags":["memory-safe"],"id":27494,"nodeType":"InlineAssembly","src":"4404:181:94"}]},"id":27496,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_8","nameLocation":"4319:8:94","nodeType":"FunctionDefinition","parameters":{"id":27490,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27487,"mutability":"mutable","name":"left","nameLocation":"4335:4:94","nodeType":"VariableDeclaration","scope":27496,"src":"4328:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27486,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4328:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":27489,"mutability":"mutable","name":"right","nameLocation":"4348:5:94","nodeType":"VariableDeclaration","scope":27496,"src":"4341:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27488,"name":"bytes8","nodeType":"ElementaryTypeName","src":"4341:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"4327:27:94"},"returnParameters":{"id":27493,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27492,"mutability":"mutable","name":"result","nameLocation":"4386:6:94","nodeType":"VariableDeclaration","scope":27496,"src":"4378:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27491,"name":"bytes12","nodeType":"ElementaryTypeName","src":"4378:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"4377:16:94"},"scope":30945,"src":"4310:281:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27506,"nodeType":"Block","src":"4683:197:94","statements":[{"AST":{"nativeSrc":"4718:156:94","nodeType":"YulBlock","src":"4718:156:94","statements":[{"nativeSrc":"4732:35:94","nodeType":"YulAssignment","src":"4732:35:94","value":{"arguments":[{"name":"left","nativeSrc":"4744:4:94","nodeType":"YulIdentifier","src":"4744:4:94"},{"arguments":[{"kind":"number","nativeSrc":"4754:3:94","nodeType":"YulLiteral","src":"4754:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"4763:1:94","nodeType":"YulLiteral","src":"4763:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"4759:3:94","nodeType":"YulIdentifier","src":"4759:3:94"},"nativeSrc":"4759:6:94","nodeType":"YulFunctionCall","src":"4759:6:94"}],"functionName":{"name":"shl","nativeSrc":"4750:3:94","nodeType":"YulIdentifier","src":"4750:3:94"},"nativeSrc":"4750:16:94","nodeType":"YulFunctionCall","src":"4750:16:94"}],"functionName":{"name":"and","nativeSrc":"4740:3:94","nodeType":"YulIdentifier","src":"4740:3:94"},"nativeSrc":"4740:27:94","nodeType":"YulFunctionCall","src":"4740:27:94"},"variableNames":[{"name":"left","nativeSrc":"4732:4:94","nodeType":"YulIdentifier","src":"4732:4:94"}]},{"nativeSrc":"4780:37:94","nodeType":"YulAssignment","src":"4780:37:94","value":{"arguments":[{"name":"right","nativeSrc":"4793:5:94","nodeType":"YulIdentifier","src":"4793:5:94"},{"arguments":[{"kind":"number","nativeSrc":"4804:3:94","nodeType":"YulLiteral","src":"4804:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"4813:1:94","nodeType":"YulLiteral","src":"4813:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"4809:3:94","nodeType":"YulIdentifier","src":"4809:3:94"},"nativeSrc":"4809:6:94","nodeType":"YulFunctionCall","src":"4809:6:94"}],"functionName":{"name":"shl","nativeSrc":"4800:3:94","nodeType":"YulIdentifier","src":"4800:3:94"},"nativeSrc":"4800:16:94","nodeType":"YulFunctionCall","src":"4800:16:94"}],"functionName":{"name":"and","nativeSrc":"4789:3:94","nodeType":"YulIdentifier","src":"4789:3:94"},"nativeSrc":"4789:28:94","nodeType":"YulFunctionCall","src":"4789:28:94"},"variableNames":[{"name":"right","nativeSrc":"4780:5:94","nodeType":"YulIdentifier","src":"4780:5:94"}]},{"nativeSrc":"4830:34:94","nodeType":"YulAssignment","src":"4830:34:94","value":{"arguments":[{"name":"left","nativeSrc":"4843:4:94","nodeType":"YulIdentifier","src":"4843:4:94"},{"arguments":[{"kind":"number","nativeSrc":"4853:2:94","nodeType":"YulLiteral","src":"4853:2:94","type":"","value":"32"},{"name":"right","nativeSrc":"4857:5:94","nodeType":"YulIdentifier","src":"4857:5:94"}],"functionName":{"name":"shr","nativeSrc":"4849:3:94","nodeType":"YulIdentifier","src":"4849:3:94"},"nativeSrc":"4849:14:94","nodeType":"YulFunctionCall","src":"4849:14:94"}],"functionName":{"name":"or","nativeSrc":"4840:2:94","nodeType":"YulIdentifier","src":"4840:2:94"},"nativeSrc":"4840:24:94","nodeType":"YulFunctionCall","src":"4840:24:94"},"variableNames":[{"name":"result","nativeSrc":"4830:6:94","nodeType":"YulIdentifier","src":"4830:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27498,"isOffset":false,"isSlot":false,"src":"4732:4:94","valueSize":1},{"declaration":27498,"isOffset":false,"isSlot":false,"src":"4744:4:94","valueSize":1},{"declaration":27498,"isOffset":false,"isSlot":false,"src":"4843:4:94","valueSize":1},{"declaration":27503,"isOffset":false,"isSlot":false,"src":"4830:6:94","valueSize":1},{"declaration":27500,"isOffset":false,"isSlot":false,"src":"4780:5:94","valueSize":1},{"declaration":27500,"isOffset":false,"isSlot":false,"src":"4793:5:94","valueSize":1},{"declaration":27500,"isOffset":false,"isSlot":false,"src":"4857:5:94","valueSize":1}],"flags":["memory-safe"],"id":27505,"nodeType":"InlineAssembly","src":"4693:181:94"}]},"id":27507,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_12","nameLocation":"4606:9:94","nodeType":"FunctionDefinition","parameters":{"id":27501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27498,"mutability":"mutable","name":"left","nameLocation":"4623:4:94","nodeType":"VariableDeclaration","scope":27507,"src":"4616:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27497,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4616:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":27500,"mutability":"mutable","name":"right","nameLocation":"4637:5:94","nodeType":"VariableDeclaration","scope":27507,"src":"4629:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27499,"name":"bytes12","nodeType":"ElementaryTypeName","src":"4629:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"4615:28:94"},"returnParameters":{"id":27504,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27503,"mutability":"mutable","name":"result","nameLocation":"4675:6:94","nodeType":"VariableDeclaration","scope":27507,"src":"4667:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":27502,"name":"bytes16","nodeType":"ElementaryTypeName","src":"4667:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"4666:16:94"},"scope":30945,"src":"4597:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27517,"nodeType":"Block","src":"4972:197:94","statements":[{"AST":{"nativeSrc":"5007:156:94","nodeType":"YulBlock","src":"5007:156:94","statements":[{"nativeSrc":"5021:35:94","nodeType":"YulAssignment","src":"5021:35:94","value":{"arguments":[{"name":"left","nativeSrc":"5033:4:94","nodeType":"YulIdentifier","src":"5033:4:94"},{"arguments":[{"kind":"number","nativeSrc":"5043:3:94","nodeType":"YulLiteral","src":"5043:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"5052:1:94","nodeType":"YulLiteral","src":"5052:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5048:3:94","nodeType":"YulIdentifier","src":"5048:3:94"},"nativeSrc":"5048:6:94","nodeType":"YulFunctionCall","src":"5048:6:94"}],"functionName":{"name":"shl","nativeSrc":"5039:3:94","nodeType":"YulIdentifier","src":"5039:3:94"},"nativeSrc":"5039:16:94","nodeType":"YulFunctionCall","src":"5039:16:94"}],"functionName":{"name":"and","nativeSrc":"5029:3:94","nodeType":"YulIdentifier","src":"5029:3:94"},"nativeSrc":"5029:27:94","nodeType":"YulFunctionCall","src":"5029:27:94"},"variableNames":[{"name":"left","nativeSrc":"5021:4:94","nodeType":"YulIdentifier","src":"5021:4:94"}]},{"nativeSrc":"5069:37:94","nodeType":"YulAssignment","src":"5069:37:94","value":{"arguments":[{"name":"right","nativeSrc":"5082:5:94","nodeType":"YulIdentifier","src":"5082:5:94"},{"arguments":[{"kind":"number","nativeSrc":"5093:3:94","nodeType":"YulLiteral","src":"5093:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"5102:1:94","nodeType":"YulLiteral","src":"5102:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5098:3:94","nodeType":"YulIdentifier","src":"5098:3:94"},"nativeSrc":"5098:6:94","nodeType":"YulFunctionCall","src":"5098:6:94"}],"functionName":{"name":"shl","nativeSrc":"5089:3:94","nodeType":"YulIdentifier","src":"5089:3:94"},"nativeSrc":"5089:16:94","nodeType":"YulFunctionCall","src":"5089:16:94"}],"functionName":{"name":"and","nativeSrc":"5078:3:94","nodeType":"YulIdentifier","src":"5078:3:94"},"nativeSrc":"5078:28:94","nodeType":"YulFunctionCall","src":"5078:28:94"},"variableNames":[{"name":"right","nativeSrc":"5069:5:94","nodeType":"YulIdentifier","src":"5069:5:94"}]},{"nativeSrc":"5119:34:94","nodeType":"YulAssignment","src":"5119:34:94","value":{"arguments":[{"name":"left","nativeSrc":"5132:4:94","nodeType":"YulIdentifier","src":"5132:4:94"},{"arguments":[{"kind":"number","nativeSrc":"5142:2:94","nodeType":"YulLiteral","src":"5142:2:94","type":"","value":"32"},{"name":"right","nativeSrc":"5146:5:94","nodeType":"YulIdentifier","src":"5146:5:94"}],"functionName":{"name":"shr","nativeSrc":"5138:3:94","nodeType":"YulIdentifier","src":"5138:3:94"},"nativeSrc":"5138:14:94","nodeType":"YulFunctionCall","src":"5138:14:94"}],"functionName":{"name":"or","nativeSrc":"5129:2:94","nodeType":"YulIdentifier","src":"5129:2:94"},"nativeSrc":"5129:24:94","nodeType":"YulFunctionCall","src":"5129:24:94"},"variableNames":[{"name":"result","nativeSrc":"5119:6:94","nodeType":"YulIdentifier","src":"5119:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27509,"isOffset":false,"isSlot":false,"src":"5021:4:94","valueSize":1},{"declaration":27509,"isOffset":false,"isSlot":false,"src":"5033:4:94","valueSize":1},{"declaration":27509,"isOffset":false,"isSlot":false,"src":"5132:4:94","valueSize":1},{"declaration":27514,"isOffset":false,"isSlot":false,"src":"5119:6:94","valueSize":1},{"declaration":27511,"isOffset":false,"isSlot":false,"src":"5069:5:94","valueSize":1},{"declaration":27511,"isOffset":false,"isSlot":false,"src":"5082:5:94","valueSize":1},{"declaration":27511,"isOffset":false,"isSlot":false,"src":"5146:5:94","valueSize":1}],"flags":["memory-safe"],"id":27516,"nodeType":"InlineAssembly","src":"4982:181:94"}]},"id":27518,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_16","nameLocation":"4895:9:94","nodeType":"FunctionDefinition","parameters":{"id":27512,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27509,"mutability":"mutable","name":"left","nameLocation":"4912:4:94","nodeType":"VariableDeclaration","scope":27518,"src":"4905:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27508,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4905:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":27511,"mutability":"mutable","name":"right","nameLocation":"4926:5:94","nodeType":"VariableDeclaration","scope":27518,"src":"4918:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":27510,"name":"bytes16","nodeType":"ElementaryTypeName","src":"4918:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"4904:28:94"},"returnParameters":{"id":27515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27514,"mutability":"mutable","name":"result","nameLocation":"4964:6:94","nodeType":"VariableDeclaration","scope":27518,"src":"4956:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":27513,"name":"bytes20","nodeType":"ElementaryTypeName","src":"4956:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"4955:16:94"},"scope":30945,"src":"4886:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27528,"nodeType":"Block","src":"5261:196:94","statements":[{"AST":{"nativeSrc":"5296:155:94","nodeType":"YulBlock","src":"5296:155:94","statements":[{"nativeSrc":"5310:35:94","nodeType":"YulAssignment","src":"5310:35:94","value":{"arguments":[{"name":"left","nativeSrc":"5322:4:94","nodeType":"YulIdentifier","src":"5322:4:94"},{"arguments":[{"kind":"number","nativeSrc":"5332:3:94","nodeType":"YulLiteral","src":"5332:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"5341:1:94","nodeType":"YulLiteral","src":"5341:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5337:3:94","nodeType":"YulIdentifier","src":"5337:3:94"},"nativeSrc":"5337:6:94","nodeType":"YulFunctionCall","src":"5337:6:94"}],"functionName":{"name":"shl","nativeSrc":"5328:3:94","nodeType":"YulIdentifier","src":"5328:3:94"},"nativeSrc":"5328:16:94","nodeType":"YulFunctionCall","src":"5328:16:94"}],"functionName":{"name":"and","nativeSrc":"5318:3:94","nodeType":"YulIdentifier","src":"5318:3:94"},"nativeSrc":"5318:27:94","nodeType":"YulFunctionCall","src":"5318:27:94"},"variableNames":[{"name":"left","nativeSrc":"5310:4:94","nodeType":"YulIdentifier","src":"5310:4:94"}]},{"nativeSrc":"5358:36:94","nodeType":"YulAssignment","src":"5358:36:94","value":{"arguments":[{"name":"right","nativeSrc":"5371:5:94","nodeType":"YulIdentifier","src":"5371:5:94"},{"arguments":[{"kind":"number","nativeSrc":"5382:2:94","nodeType":"YulLiteral","src":"5382:2:94","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"5390:1:94","nodeType":"YulLiteral","src":"5390:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5386:3:94","nodeType":"YulIdentifier","src":"5386:3:94"},"nativeSrc":"5386:6:94","nodeType":"YulFunctionCall","src":"5386:6:94"}],"functionName":{"name":"shl","nativeSrc":"5378:3:94","nodeType":"YulIdentifier","src":"5378:3:94"},"nativeSrc":"5378:15:94","nodeType":"YulFunctionCall","src":"5378:15:94"}],"functionName":{"name":"and","nativeSrc":"5367:3:94","nodeType":"YulIdentifier","src":"5367:3:94"},"nativeSrc":"5367:27:94","nodeType":"YulFunctionCall","src":"5367:27:94"},"variableNames":[{"name":"right","nativeSrc":"5358:5:94","nodeType":"YulIdentifier","src":"5358:5:94"}]},{"nativeSrc":"5407:34:94","nodeType":"YulAssignment","src":"5407:34:94","value":{"arguments":[{"name":"left","nativeSrc":"5420:4:94","nodeType":"YulIdentifier","src":"5420:4:94"},{"arguments":[{"kind":"number","nativeSrc":"5430:2:94","nodeType":"YulLiteral","src":"5430:2:94","type":"","value":"32"},{"name":"right","nativeSrc":"5434:5:94","nodeType":"YulIdentifier","src":"5434:5:94"}],"functionName":{"name":"shr","nativeSrc":"5426:3:94","nodeType":"YulIdentifier","src":"5426:3:94"},"nativeSrc":"5426:14:94","nodeType":"YulFunctionCall","src":"5426:14:94"}],"functionName":{"name":"or","nativeSrc":"5417:2:94","nodeType":"YulIdentifier","src":"5417:2:94"},"nativeSrc":"5417:24:94","nodeType":"YulFunctionCall","src":"5417:24:94"},"variableNames":[{"name":"result","nativeSrc":"5407:6:94","nodeType":"YulIdentifier","src":"5407:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27520,"isOffset":false,"isSlot":false,"src":"5310:4:94","valueSize":1},{"declaration":27520,"isOffset":false,"isSlot":false,"src":"5322:4:94","valueSize":1},{"declaration":27520,"isOffset":false,"isSlot":false,"src":"5420:4:94","valueSize":1},{"declaration":27525,"isOffset":false,"isSlot":false,"src":"5407:6:94","valueSize":1},{"declaration":27522,"isOffset":false,"isSlot":false,"src":"5358:5:94","valueSize":1},{"declaration":27522,"isOffset":false,"isSlot":false,"src":"5371:5:94","valueSize":1},{"declaration":27522,"isOffset":false,"isSlot":false,"src":"5434:5:94","valueSize":1}],"flags":["memory-safe"],"id":27527,"nodeType":"InlineAssembly","src":"5271:180:94"}]},"id":27529,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_20","nameLocation":"5184:9:94","nodeType":"FunctionDefinition","parameters":{"id":27523,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27520,"mutability":"mutable","name":"left","nameLocation":"5201:4:94","nodeType":"VariableDeclaration","scope":27529,"src":"5194:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27519,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5194:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":27522,"mutability":"mutable","name":"right","nameLocation":"5215:5:94","nodeType":"VariableDeclaration","scope":27529,"src":"5207:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":27521,"name":"bytes20","nodeType":"ElementaryTypeName","src":"5207:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"5193:28:94"},"returnParameters":{"id":27526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27525,"mutability":"mutable","name":"result","nameLocation":"5253:6:94","nodeType":"VariableDeclaration","scope":27529,"src":"5245:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":27524,"name":"bytes24","nodeType":"ElementaryTypeName","src":"5245:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"5244:16:94"},"scope":30945,"src":"5175:282:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27539,"nodeType":"Block","src":"5549:196:94","statements":[{"AST":{"nativeSrc":"5584:155:94","nodeType":"YulBlock","src":"5584:155:94","statements":[{"nativeSrc":"5598:35:94","nodeType":"YulAssignment","src":"5598:35:94","value":{"arguments":[{"name":"left","nativeSrc":"5610:4:94","nodeType":"YulIdentifier","src":"5610:4:94"},{"arguments":[{"kind":"number","nativeSrc":"5620:3:94","nodeType":"YulLiteral","src":"5620:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"5629:1:94","nodeType":"YulLiteral","src":"5629:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5625:3:94","nodeType":"YulIdentifier","src":"5625:3:94"},"nativeSrc":"5625:6:94","nodeType":"YulFunctionCall","src":"5625:6:94"}],"functionName":{"name":"shl","nativeSrc":"5616:3:94","nodeType":"YulIdentifier","src":"5616:3:94"},"nativeSrc":"5616:16:94","nodeType":"YulFunctionCall","src":"5616:16:94"}],"functionName":{"name":"and","nativeSrc":"5606:3:94","nodeType":"YulIdentifier","src":"5606:3:94"},"nativeSrc":"5606:27:94","nodeType":"YulFunctionCall","src":"5606:27:94"},"variableNames":[{"name":"left","nativeSrc":"5598:4:94","nodeType":"YulIdentifier","src":"5598:4:94"}]},{"nativeSrc":"5646:36:94","nodeType":"YulAssignment","src":"5646:36:94","value":{"arguments":[{"name":"right","nativeSrc":"5659:5:94","nodeType":"YulIdentifier","src":"5659:5:94"},{"arguments":[{"kind":"number","nativeSrc":"5670:2:94","nodeType":"YulLiteral","src":"5670:2:94","type":"","value":"64"},{"arguments":[{"kind":"number","nativeSrc":"5678:1:94","nodeType":"YulLiteral","src":"5678:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5674:3:94","nodeType":"YulIdentifier","src":"5674:3:94"},"nativeSrc":"5674:6:94","nodeType":"YulFunctionCall","src":"5674:6:94"}],"functionName":{"name":"shl","nativeSrc":"5666:3:94","nodeType":"YulIdentifier","src":"5666:3:94"},"nativeSrc":"5666:15:94","nodeType":"YulFunctionCall","src":"5666:15:94"}],"functionName":{"name":"and","nativeSrc":"5655:3:94","nodeType":"YulIdentifier","src":"5655:3:94"},"nativeSrc":"5655:27:94","nodeType":"YulFunctionCall","src":"5655:27:94"},"variableNames":[{"name":"right","nativeSrc":"5646:5:94","nodeType":"YulIdentifier","src":"5646:5:94"}]},{"nativeSrc":"5695:34:94","nodeType":"YulAssignment","src":"5695:34:94","value":{"arguments":[{"name":"left","nativeSrc":"5708:4:94","nodeType":"YulIdentifier","src":"5708:4:94"},{"arguments":[{"kind":"number","nativeSrc":"5718:2:94","nodeType":"YulLiteral","src":"5718:2:94","type":"","value":"32"},{"name":"right","nativeSrc":"5722:5:94","nodeType":"YulIdentifier","src":"5722:5:94"}],"functionName":{"name":"shr","nativeSrc":"5714:3:94","nodeType":"YulIdentifier","src":"5714:3:94"},"nativeSrc":"5714:14:94","nodeType":"YulFunctionCall","src":"5714:14:94"}],"functionName":{"name":"or","nativeSrc":"5705:2:94","nodeType":"YulIdentifier","src":"5705:2:94"},"nativeSrc":"5705:24:94","nodeType":"YulFunctionCall","src":"5705:24:94"},"variableNames":[{"name":"result","nativeSrc":"5695:6:94","nodeType":"YulIdentifier","src":"5695:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27531,"isOffset":false,"isSlot":false,"src":"5598:4:94","valueSize":1},{"declaration":27531,"isOffset":false,"isSlot":false,"src":"5610:4:94","valueSize":1},{"declaration":27531,"isOffset":false,"isSlot":false,"src":"5708:4:94","valueSize":1},{"declaration":27536,"isOffset":false,"isSlot":false,"src":"5695:6:94","valueSize":1},{"declaration":27533,"isOffset":false,"isSlot":false,"src":"5646:5:94","valueSize":1},{"declaration":27533,"isOffset":false,"isSlot":false,"src":"5659:5:94","valueSize":1},{"declaration":27533,"isOffset":false,"isSlot":false,"src":"5722:5:94","valueSize":1}],"flags":["memory-safe"],"id":27538,"nodeType":"InlineAssembly","src":"5559:180:94"}]},"id":27540,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_24","nameLocation":"5472:9:94","nodeType":"FunctionDefinition","parameters":{"id":27534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27531,"mutability":"mutable","name":"left","nameLocation":"5489:4:94","nodeType":"VariableDeclaration","scope":27540,"src":"5482:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27530,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5482:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":27533,"mutability":"mutable","name":"right","nameLocation":"5503:5:94","nodeType":"VariableDeclaration","scope":27540,"src":"5495:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":27532,"name":"bytes24","nodeType":"ElementaryTypeName","src":"5495:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"5481:28:94"},"returnParameters":{"id":27537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27536,"mutability":"mutable","name":"result","nameLocation":"5541:6:94","nodeType":"VariableDeclaration","scope":27540,"src":"5533:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":27535,"name":"bytes28","nodeType":"ElementaryTypeName","src":"5533:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"5532:16:94"},"scope":30945,"src":"5463:282:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27550,"nodeType":"Block","src":"5837:196:94","statements":[{"AST":{"nativeSrc":"5872:155:94","nodeType":"YulBlock","src":"5872:155:94","statements":[{"nativeSrc":"5886:35:94","nodeType":"YulAssignment","src":"5886:35:94","value":{"arguments":[{"name":"left","nativeSrc":"5898:4:94","nodeType":"YulIdentifier","src":"5898:4:94"},{"arguments":[{"kind":"number","nativeSrc":"5908:3:94","nodeType":"YulLiteral","src":"5908:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"5917:1:94","nodeType":"YulLiteral","src":"5917:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5913:3:94","nodeType":"YulIdentifier","src":"5913:3:94"},"nativeSrc":"5913:6:94","nodeType":"YulFunctionCall","src":"5913:6:94"}],"functionName":{"name":"shl","nativeSrc":"5904:3:94","nodeType":"YulIdentifier","src":"5904:3:94"},"nativeSrc":"5904:16:94","nodeType":"YulFunctionCall","src":"5904:16:94"}],"functionName":{"name":"and","nativeSrc":"5894:3:94","nodeType":"YulIdentifier","src":"5894:3:94"},"nativeSrc":"5894:27:94","nodeType":"YulFunctionCall","src":"5894:27:94"},"variableNames":[{"name":"left","nativeSrc":"5886:4:94","nodeType":"YulIdentifier","src":"5886:4:94"}]},{"nativeSrc":"5934:36:94","nodeType":"YulAssignment","src":"5934:36:94","value":{"arguments":[{"name":"right","nativeSrc":"5947:5:94","nodeType":"YulIdentifier","src":"5947:5:94"},{"arguments":[{"kind":"number","nativeSrc":"5958:2:94","nodeType":"YulLiteral","src":"5958:2:94","type":"","value":"32"},{"arguments":[{"kind":"number","nativeSrc":"5966:1:94","nodeType":"YulLiteral","src":"5966:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"5962:3:94","nodeType":"YulIdentifier","src":"5962:3:94"},"nativeSrc":"5962:6:94","nodeType":"YulFunctionCall","src":"5962:6:94"}],"functionName":{"name":"shl","nativeSrc":"5954:3:94","nodeType":"YulIdentifier","src":"5954:3:94"},"nativeSrc":"5954:15:94","nodeType":"YulFunctionCall","src":"5954:15:94"}],"functionName":{"name":"and","nativeSrc":"5943:3:94","nodeType":"YulIdentifier","src":"5943:3:94"},"nativeSrc":"5943:27:94","nodeType":"YulFunctionCall","src":"5943:27:94"},"variableNames":[{"name":"right","nativeSrc":"5934:5:94","nodeType":"YulIdentifier","src":"5934:5:94"}]},{"nativeSrc":"5983:34:94","nodeType":"YulAssignment","src":"5983:34:94","value":{"arguments":[{"name":"left","nativeSrc":"5996:4:94","nodeType":"YulIdentifier","src":"5996:4:94"},{"arguments":[{"kind":"number","nativeSrc":"6006:2:94","nodeType":"YulLiteral","src":"6006:2:94","type":"","value":"32"},{"name":"right","nativeSrc":"6010:5:94","nodeType":"YulIdentifier","src":"6010:5:94"}],"functionName":{"name":"shr","nativeSrc":"6002:3:94","nodeType":"YulIdentifier","src":"6002:3:94"},"nativeSrc":"6002:14:94","nodeType":"YulFunctionCall","src":"6002:14:94"}],"functionName":{"name":"or","nativeSrc":"5993:2:94","nodeType":"YulIdentifier","src":"5993:2:94"},"nativeSrc":"5993:24:94","nodeType":"YulFunctionCall","src":"5993:24:94"},"variableNames":[{"name":"result","nativeSrc":"5983:6:94","nodeType":"YulIdentifier","src":"5983:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27542,"isOffset":false,"isSlot":false,"src":"5886:4:94","valueSize":1},{"declaration":27542,"isOffset":false,"isSlot":false,"src":"5898:4:94","valueSize":1},{"declaration":27542,"isOffset":false,"isSlot":false,"src":"5996:4:94","valueSize":1},{"declaration":27547,"isOffset":false,"isSlot":false,"src":"5983:6:94","valueSize":1},{"declaration":27544,"isOffset":false,"isSlot":false,"src":"5934:5:94","valueSize":1},{"declaration":27544,"isOffset":false,"isSlot":false,"src":"5947:5:94","valueSize":1},{"declaration":27544,"isOffset":false,"isSlot":false,"src":"6010:5:94","valueSize":1}],"flags":["memory-safe"],"id":27549,"nodeType":"InlineAssembly","src":"5847:180:94"}]},"id":27551,"implemented":true,"kind":"function","modifiers":[],"name":"pack_4_28","nameLocation":"5760:9:94","nodeType":"FunctionDefinition","parameters":{"id":27545,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27542,"mutability":"mutable","name":"left","nameLocation":"5777:4:94","nodeType":"VariableDeclaration","scope":27551,"src":"5770:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27541,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5770:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":27544,"mutability":"mutable","name":"right","nameLocation":"5791:5:94","nodeType":"VariableDeclaration","scope":27551,"src":"5783:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":27543,"name":"bytes28","nodeType":"ElementaryTypeName","src":"5783:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"5769:28:94"},"returnParameters":{"id":27548,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27547,"mutability":"mutable","name":"result","nameLocation":"5829:6:94","nodeType":"VariableDeclaration","scope":27551,"src":"5821:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":27546,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5821:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5820:16:94"},"scope":30945,"src":"5751:282:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27561,"nodeType":"Block","src":"6122:197:94","statements":[{"AST":{"nativeSrc":"6157:156:94","nodeType":"YulBlock","src":"6157:156:94","statements":[{"nativeSrc":"6171:35:94","nodeType":"YulAssignment","src":"6171:35:94","value":{"arguments":[{"name":"left","nativeSrc":"6183:4:94","nodeType":"YulIdentifier","src":"6183:4:94"},{"arguments":[{"kind":"number","nativeSrc":"6193:3:94","nodeType":"YulLiteral","src":"6193:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"6202:1:94","nodeType":"YulLiteral","src":"6202:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"6198:3:94","nodeType":"YulIdentifier","src":"6198:3:94"},"nativeSrc":"6198:6:94","nodeType":"YulFunctionCall","src":"6198:6:94"}],"functionName":{"name":"shl","nativeSrc":"6189:3:94","nodeType":"YulIdentifier","src":"6189:3:94"},"nativeSrc":"6189:16:94","nodeType":"YulFunctionCall","src":"6189:16:94"}],"functionName":{"name":"and","nativeSrc":"6179:3:94","nodeType":"YulIdentifier","src":"6179:3:94"},"nativeSrc":"6179:27:94","nodeType":"YulFunctionCall","src":"6179:27:94"},"variableNames":[{"name":"left","nativeSrc":"6171:4:94","nodeType":"YulIdentifier","src":"6171:4:94"}]},{"nativeSrc":"6219:37:94","nodeType":"YulAssignment","src":"6219:37:94","value":{"arguments":[{"name":"right","nativeSrc":"6232:5:94","nodeType":"YulIdentifier","src":"6232:5:94"},{"arguments":[{"kind":"number","nativeSrc":"6243:3:94","nodeType":"YulLiteral","src":"6243:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"6252:1:94","nodeType":"YulLiteral","src":"6252:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"6248:3:94","nodeType":"YulIdentifier","src":"6248:3:94"},"nativeSrc":"6248:6:94","nodeType":"YulFunctionCall","src":"6248:6:94"}],"functionName":{"name":"shl","nativeSrc":"6239:3:94","nodeType":"YulIdentifier","src":"6239:3:94"},"nativeSrc":"6239:16:94","nodeType":"YulFunctionCall","src":"6239:16:94"}],"functionName":{"name":"and","nativeSrc":"6228:3:94","nodeType":"YulIdentifier","src":"6228:3:94"},"nativeSrc":"6228:28:94","nodeType":"YulFunctionCall","src":"6228:28:94"},"variableNames":[{"name":"right","nativeSrc":"6219:5:94","nodeType":"YulIdentifier","src":"6219:5:94"}]},{"nativeSrc":"6269:34:94","nodeType":"YulAssignment","src":"6269:34:94","value":{"arguments":[{"name":"left","nativeSrc":"6282:4:94","nodeType":"YulIdentifier","src":"6282:4:94"},{"arguments":[{"kind":"number","nativeSrc":"6292:2:94","nodeType":"YulLiteral","src":"6292:2:94","type":"","value":"48"},{"name":"right","nativeSrc":"6296:5:94","nodeType":"YulIdentifier","src":"6296:5:94"}],"functionName":{"name":"shr","nativeSrc":"6288:3:94","nodeType":"YulIdentifier","src":"6288:3:94"},"nativeSrc":"6288:14:94","nodeType":"YulFunctionCall","src":"6288:14:94"}],"functionName":{"name":"or","nativeSrc":"6279:2:94","nodeType":"YulIdentifier","src":"6279:2:94"},"nativeSrc":"6279:24:94","nodeType":"YulFunctionCall","src":"6279:24:94"},"variableNames":[{"name":"result","nativeSrc":"6269:6:94","nodeType":"YulIdentifier","src":"6269:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27553,"isOffset":false,"isSlot":false,"src":"6171:4:94","valueSize":1},{"declaration":27553,"isOffset":false,"isSlot":false,"src":"6183:4:94","valueSize":1},{"declaration":27553,"isOffset":false,"isSlot":false,"src":"6282:4:94","valueSize":1},{"declaration":27558,"isOffset":false,"isSlot":false,"src":"6269:6:94","valueSize":1},{"declaration":27555,"isOffset":false,"isSlot":false,"src":"6219:5:94","valueSize":1},{"declaration":27555,"isOffset":false,"isSlot":false,"src":"6232:5:94","valueSize":1},{"declaration":27555,"isOffset":false,"isSlot":false,"src":"6296:5:94","valueSize":1}],"flags":["memory-safe"],"id":27560,"nodeType":"InlineAssembly","src":"6132:181:94"}]},"id":27562,"implemented":true,"kind":"function","modifiers":[],"name":"pack_6_2","nameLocation":"6048:8:94","nodeType":"FunctionDefinition","parameters":{"id":27556,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27553,"mutability":"mutable","name":"left","nameLocation":"6064:4:94","nodeType":"VariableDeclaration","scope":27562,"src":"6057:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":27552,"name":"bytes6","nodeType":"ElementaryTypeName","src":"6057:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":27555,"mutability":"mutable","name":"right","nameLocation":"6077:5:94","nodeType":"VariableDeclaration","scope":27562,"src":"6070:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27554,"name":"bytes2","nodeType":"ElementaryTypeName","src":"6070:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"6056:27:94"},"returnParameters":{"id":27559,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27558,"mutability":"mutable","name":"result","nameLocation":"6114:6:94","nodeType":"VariableDeclaration","scope":27562,"src":"6107:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27557,"name":"bytes8","nodeType":"ElementaryTypeName","src":"6107:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"6106:15:94"},"scope":30945,"src":"6039:280:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27572,"nodeType":"Block","src":"6409:197:94","statements":[{"AST":{"nativeSrc":"6444:156:94","nodeType":"YulBlock","src":"6444:156:94","statements":[{"nativeSrc":"6458:35:94","nodeType":"YulAssignment","src":"6458:35:94","value":{"arguments":[{"name":"left","nativeSrc":"6470:4:94","nodeType":"YulIdentifier","src":"6470:4:94"},{"arguments":[{"kind":"number","nativeSrc":"6480:3:94","nodeType":"YulLiteral","src":"6480:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"6489:1:94","nodeType":"YulLiteral","src":"6489:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"6485:3:94","nodeType":"YulIdentifier","src":"6485:3:94"},"nativeSrc":"6485:6:94","nodeType":"YulFunctionCall","src":"6485:6:94"}],"functionName":{"name":"shl","nativeSrc":"6476:3:94","nodeType":"YulIdentifier","src":"6476:3:94"},"nativeSrc":"6476:16:94","nodeType":"YulFunctionCall","src":"6476:16:94"}],"functionName":{"name":"and","nativeSrc":"6466:3:94","nodeType":"YulIdentifier","src":"6466:3:94"},"nativeSrc":"6466:27:94","nodeType":"YulFunctionCall","src":"6466:27:94"},"variableNames":[{"name":"left","nativeSrc":"6458:4:94","nodeType":"YulIdentifier","src":"6458:4:94"}]},{"nativeSrc":"6506:37:94","nodeType":"YulAssignment","src":"6506:37:94","value":{"arguments":[{"name":"right","nativeSrc":"6519:5:94","nodeType":"YulIdentifier","src":"6519:5:94"},{"arguments":[{"kind":"number","nativeSrc":"6530:3:94","nodeType":"YulLiteral","src":"6530:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"6539:1:94","nodeType":"YulLiteral","src":"6539:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"6535:3:94","nodeType":"YulIdentifier","src":"6535:3:94"},"nativeSrc":"6535:6:94","nodeType":"YulFunctionCall","src":"6535:6:94"}],"functionName":{"name":"shl","nativeSrc":"6526:3:94","nodeType":"YulIdentifier","src":"6526:3:94"},"nativeSrc":"6526:16:94","nodeType":"YulFunctionCall","src":"6526:16:94"}],"functionName":{"name":"and","nativeSrc":"6515:3:94","nodeType":"YulIdentifier","src":"6515:3:94"},"nativeSrc":"6515:28:94","nodeType":"YulFunctionCall","src":"6515:28:94"},"variableNames":[{"name":"right","nativeSrc":"6506:5:94","nodeType":"YulIdentifier","src":"6506:5:94"}]},{"nativeSrc":"6556:34:94","nodeType":"YulAssignment","src":"6556:34:94","value":{"arguments":[{"name":"left","nativeSrc":"6569:4:94","nodeType":"YulIdentifier","src":"6569:4:94"},{"arguments":[{"kind":"number","nativeSrc":"6579:2:94","nodeType":"YulLiteral","src":"6579:2:94","type":"","value":"48"},{"name":"right","nativeSrc":"6583:5:94","nodeType":"YulIdentifier","src":"6583:5:94"}],"functionName":{"name":"shr","nativeSrc":"6575:3:94","nodeType":"YulIdentifier","src":"6575:3:94"},"nativeSrc":"6575:14:94","nodeType":"YulFunctionCall","src":"6575:14:94"}],"functionName":{"name":"or","nativeSrc":"6566:2:94","nodeType":"YulIdentifier","src":"6566:2:94"},"nativeSrc":"6566:24:94","nodeType":"YulFunctionCall","src":"6566:24:94"},"variableNames":[{"name":"result","nativeSrc":"6556:6:94","nodeType":"YulIdentifier","src":"6556:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27564,"isOffset":false,"isSlot":false,"src":"6458:4:94","valueSize":1},{"declaration":27564,"isOffset":false,"isSlot":false,"src":"6470:4:94","valueSize":1},{"declaration":27564,"isOffset":false,"isSlot":false,"src":"6569:4:94","valueSize":1},{"declaration":27569,"isOffset":false,"isSlot":false,"src":"6556:6:94","valueSize":1},{"declaration":27566,"isOffset":false,"isSlot":false,"src":"6506:5:94","valueSize":1},{"declaration":27566,"isOffset":false,"isSlot":false,"src":"6519:5:94","valueSize":1},{"declaration":27566,"isOffset":false,"isSlot":false,"src":"6583:5:94","valueSize":1}],"flags":["memory-safe"],"id":27571,"nodeType":"InlineAssembly","src":"6419:181:94"}]},"id":27573,"implemented":true,"kind":"function","modifiers":[],"name":"pack_6_4","nameLocation":"6334:8:94","nodeType":"FunctionDefinition","parameters":{"id":27567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27564,"mutability":"mutable","name":"left","nameLocation":"6350:4:94","nodeType":"VariableDeclaration","scope":27573,"src":"6343:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":27563,"name":"bytes6","nodeType":"ElementaryTypeName","src":"6343:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":27566,"mutability":"mutable","name":"right","nameLocation":"6363:5:94","nodeType":"VariableDeclaration","scope":27573,"src":"6356:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27565,"name":"bytes4","nodeType":"ElementaryTypeName","src":"6356:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"6342:27:94"},"returnParameters":{"id":27570,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27569,"mutability":"mutable","name":"result","nameLocation":"6401:6:94","nodeType":"VariableDeclaration","scope":27573,"src":"6393:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":27568,"name":"bytes10","nodeType":"ElementaryTypeName","src":"6393:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"6392:16:94"},"scope":30945,"src":"6325:281:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27583,"nodeType":"Block","src":"6696:197:94","statements":[{"AST":{"nativeSrc":"6731:156:94","nodeType":"YulBlock","src":"6731:156:94","statements":[{"nativeSrc":"6745:35:94","nodeType":"YulAssignment","src":"6745:35:94","value":{"arguments":[{"name":"left","nativeSrc":"6757:4:94","nodeType":"YulIdentifier","src":"6757:4:94"},{"arguments":[{"kind":"number","nativeSrc":"6767:3:94","nodeType":"YulLiteral","src":"6767:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"6776:1:94","nodeType":"YulLiteral","src":"6776:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"6772:3:94","nodeType":"YulIdentifier","src":"6772:3:94"},"nativeSrc":"6772:6:94","nodeType":"YulFunctionCall","src":"6772:6:94"}],"functionName":{"name":"shl","nativeSrc":"6763:3:94","nodeType":"YulIdentifier","src":"6763:3:94"},"nativeSrc":"6763:16:94","nodeType":"YulFunctionCall","src":"6763:16:94"}],"functionName":{"name":"and","nativeSrc":"6753:3:94","nodeType":"YulIdentifier","src":"6753:3:94"},"nativeSrc":"6753:27:94","nodeType":"YulFunctionCall","src":"6753:27:94"},"variableNames":[{"name":"left","nativeSrc":"6745:4:94","nodeType":"YulIdentifier","src":"6745:4:94"}]},{"nativeSrc":"6793:37:94","nodeType":"YulAssignment","src":"6793:37:94","value":{"arguments":[{"name":"right","nativeSrc":"6806:5:94","nodeType":"YulIdentifier","src":"6806:5:94"},{"arguments":[{"kind":"number","nativeSrc":"6817:3:94","nodeType":"YulLiteral","src":"6817:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"6826:1:94","nodeType":"YulLiteral","src":"6826:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"6822:3:94","nodeType":"YulIdentifier","src":"6822:3:94"},"nativeSrc":"6822:6:94","nodeType":"YulFunctionCall","src":"6822:6:94"}],"functionName":{"name":"shl","nativeSrc":"6813:3:94","nodeType":"YulIdentifier","src":"6813:3:94"},"nativeSrc":"6813:16:94","nodeType":"YulFunctionCall","src":"6813:16:94"}],"functionName":{"name":"and","nativeSrc":"6802:3:94","nodeType":"YulIdentifier","src":"6802:3:94"},"nativeSrc":"6802:28:94","nodeType":"YulFunctionCall","src":"6802:28:94"},"variableNames":[{"name":"right","nativeSrc":"6793:5:94","nodeType":"YulIdentifier","src":"6793:5:94"}]},{"nativeSrc":"6843:34:94","nodeType":"YulAssignment","src":"6843:34:94","value":{"arguments":[{"name":"left","nativeSrc":"6856:4:94","nodeType":"YulIdentifier","src":"6856:4:94"},{"arguments":[{"kind":"number","nativeSrc":"6866:2:94","nodeType":"YulLiteral","src":"6866:2:94","type":"","value":"48"},{"name":"right","nativeSrc":"6870:5:94","nodeType":"YulIdentifier","src":"6870:5:94"}],"functionName":{"name":"shr","nativeSrc":"6862:3:94","nodeType":"YulIdentifier","src":"6862:3:94"},"nativeSrc":"6862:14:94","nodeType":"YulFunctionCall","src":"6862:14:94"}],"functionName":{"name":"or","nativeSrc":"6853:2:94","nodeType":"YulIdentifier","src":"6853:2:94"},"nativeSrc":"6853:24:94","nodeType":"YulFunctionCall","src":"6853:24:94"},"variableNames":[{"name":"result","nativeSrc":"6843:6:94","nodeType":"YulIdentifier","src":"6843:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27575,"isOffset":false,"isSlot":false,"src":"6745:4:94","valueSize":1},{"declaration":27575,"isOffset":false,"isSlot":false,"src":"6757:4:94","valueSize":1},{"declaration":27575,"isOffset":false,"isSlot":false,"src":"6856:4:94","valueSize":1},{"declaration":27580,"isOffset":false,"isSlot":false,"src":"6843:6:94","valueSize":1},{"declaration":27577,"isOffset":false,"isSlot":false,"src":"6793:5:94","valueSize":1},{"declaration":27577,"isOffset":false,"isSlot":false,"src":"6806:5:94","valueSize":1},{"declaration":27577,"isOffset":false,"isSlot":false,"src":"6870:5:94","valueSize":1}],"flags":["memory-safe"],"id":27582,"nodeType":"InlineAssembly","src":"6706:181:94"}]},"id":27584,"implemented":true,"kind":"function","modifiers":[],"name":"pack_6_6","nameLocation":"6621:8:94","nodeType":"FunctionDefinition","parameters":{"id":27578,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27575,"mutability":"mutable","name":"left","nameLocation":"6637:4:94","nodeType":"VariableDeclaration","scope":27584,"src":"6630:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":27574,"name":"bytes6","nodeType":"ElementaryTypeName","src":"6630:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":27577,"mutability":"mutable","name":"right","nameLocation":"6650:5:94","nodeType":"VariableDeclaration","scope":27584,"src":"6643:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":27576,"name":"bytes6","nodeType":"ElementaryTypeName","src":"6643:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"6629:27:94"},"returnParameters":{"id":27581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27580,"mutability":"mutable","name":"result","nameLocation":"6688:6:94","nodeType":"VariableDeclaration","scope":27584,"src":"6680:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27579,"name":"bytes12","nodeType":"ElementaryTypeName","src":"6680:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"6679:16:94"},"scope":30945,"src":"6612:281:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27594,"nodeType":"Block","src":"6985:197:94","statements":[{"AST":{"nativeSrc":"7020:156:94","nodeType":"YulBlock","src":"7020:156:94","statements":[{"nativeSrc":"7034:35:94","nodeType":"YulAssignment","src":"7034:35:94","value":{"arguments":[{"name":"left","nativeSrc":"7046:4:94","nodeType":"YulIdentifier","src":"7046:4:94"},{"arguments":[{"kind":"number","nativeSrc":"7056:3:94","nodeType":"YulLiteral","src":"7056:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"7065:1:94","nodeType":"YulLiteral","src":"7065:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7061:3:94","nodeType":"YulIdentifier","src":"7061:3:94"},"nativeSrc":"7061:6:94","nodeType":"YulFunctionCall","src":"7061:6:94"}],"functionName":{"name":"shl","nativeSrc":"7052:3:94","nodeType":"YulIdentifier","src":"7052:3:94"},"nativeSrc":"7052:16:94","nodeType":"YulFunctionCall","src":"7052:16:94"}],"functionName":{"name":"and","nativeSrc":"7042:3:94","nodeType":"YulIdentifier","src":"7042:3:94"},"nativeSrc":"7042:27:94","nodeType":"YulFunctionCall","src":"7042:27:94"},"variableNames":[{"name":"left","nativeSrc":"7034:4:94","nodeType":"YulIdentifier","src":"7034:4:94"}]},{"nativeSrc":"7082:37:94","nodeType":"YulAssignment","src":"7082:37:94","value":{"arguments":[{"name":"right","nativeSrc":"7095:5:94","nodeType":"YulIdentifier","src":"7095:5:94"},{"arguments":[{"kind":"number","nativeSrc":"7106:3:94","nodeType":"YulLiteral","src":"7106:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"7115:1:94","nodeType":"YulLiteral","src":"7115:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7111:3:94","nodeType":"YulIdentifier","src":"7111:3:94"},"nativeSrc":"7111:6:94","nodeType":"YulFunctionCall","src":"7111:6:94"}],"functionName":{"name":"shl","nativeSrc":"7102:3:94","nodeType":"YulIdentifier","src":"7102:3:94"},"nativeSrc":"7102:16:94","nodeType":"YulFunctionCall","src":"7102:16:94"}],"functionName":{"name":"and","nativeSrc":"7091:3:94","nodeType":"YulIdentifier","src":"7091:3:94"},"nativeSrc":"7091:28:94","nodeType":"YulFunctionCall","src":"7091:28:94"},"variableNames":[{"name":"right","nativeSrc":"7082:5:94","nodeType":"YulIdentifier","src":"7082:5:94"}]},{"nativeSrc":"7132:34:94","nodeType":"YulAssignment","src":"7132:34:94","value":{"arguments":[{"name":"left","nativeSrc":"7145:4:94","nodeType":"YulIdentifier","src":"7145:4:94"},{"arguments":[{"kind":"number","nativeSrc":"7155:2:94","nodeType":"YulLiteral","src":"7155:2:94","type":"","value":"48"},{"name":"right","nativeSrc":"7159:5:94","nodeType":"YulIdentifier","src":"7159:5:94"}],"functionName":{"name":"shr","nativeSrc":"7151:3:94","nodeType":"YulIdentifier","src":"7151:3:94"},"nativeSrc":"7151:14:94","nodeType":"YulFunctionCall","src":"7151:14:94"}],"functionName":{"name":"or","nativeSrc":"7142:2:94","nodeType":"YulIdentifier","src":"7142:2:94"},"nativeSrc":"7142:24:94","nodeType":"YulFunctionCall","src":"7142:24:94"},"variableNames":[{"name":"result","nativeSrc":"7132:6:94","nodeType":"YulIdentifier","src":"7132:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27586,"isOffset":false,"isSlot":false,"src":"7034:4:94","valueSize":1},{"declaration":27586,"isOffset":false,"isSlot":false,"src":"7046:4:94","valueSize":1},{"declaration":27586,"isOffset":false,"isSlot":false,"src":"7145:4:94","valueSize":1},{"declaration":27591,"isOffset":false,"isSlot":false,"src":"7132:6:94","valueSize":1},{"declaration":27588,"isOffset":false,"isSlot":false,"src":"7082:5:94","valueSize":1},{"declaration":27588,"isOffset":false,"isSlot":false,"src":"7095:5:94","valueSize":1},{"declaration":27588,"isOffset":false,"isSlot":false,"src":"7159:5:94","valueSize":1}],"flags":["memory-safe"],"id":27593,"nodeType":"InlineAssembly","src":"6995:181:94"}]},"id":27595,"implemented":true,"kind":"function","modifiers":[],"name":"pack_6_10","nameLocation":"6908:9:94","nodeType":"FunctionDefinition","parameters":{"id":27589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27586,"mutability":"mutable","name":"left","nameLocation":"6925:4:94","nodeType":"VariableDeclaration","scope":27595,"src":"6918:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":27585,"name":"bytes6","nodeType":"ElementaryTypeName","src":"6918:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":27588,"mutability":"mutable","name":"right","nameLocation":"6939:5:94","nodeType":"VariableDeclaration","scope":27595,"src":"6931:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":27587,"name":"bytes10","nodeType":"ElementaryTypeName","src":"6931:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"6917:28:94"},"returnParameters":{"id":27592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27591,"mutability":"mutable","name":"result","nameLocation":"6977:6:94","nodeType":"VariableDeclaration","scope":27595,"src":"6969:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":27590,"name":"bytes16","nodeType":"ElementaryTypeName","src":"6969:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"6968:16:94"},"scope":30945,"src":"6899:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27605,"nodeType":"Block","src":"7274:197:94","statements":[{"AST":{"nativeSrc":"7309:156:94","nodeType":"YulBlock","src":"7309:156:94","statements":[{"nativeSrc":"7323:35:94","nodeType":"YulAssignment","src":"7323:35:94","value":{"arguments":[{"name":"left","nativeSrc":"7335:4:94","nodeType":"YulIdentifier","src":"7335:4:94"},{"arguments":[{"kind":"number","nativeSrc":"7345:3:94","nodeType":"YulLiteral","src":"7345:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"7354:1:94","nodeType":"YulLiteral","src":"7354:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7350:3:94","nodeType":"YulIdentifier","src":"7350:3:94"},"nativeSrc":"7350:6:94","nodeType":"YulFunctionCall","src":"7350:6:94"}],"functionName":{"name":"shl","nativeSrc":"7341:3:94","nodeType":"YulIdentifier","src":"7341:3:94"},"nativeSrc":"7341:16:94","nodeType":"YulFunctionCall","src":"7341:16:94"}],"functionName":{"name":"and","nativeSrc":"7331:3:94","nodeType":"YulIdentifier","src":"7331:3:94"},"nativeSrc":"7331:27:94","nodeType":"YulFunctionCall","src":"7331:27:94"},"variableNames":[{"name":"left","nativeSrc":"7323:4:94","nodeType":"YulIdentifier","src":"7323:4:94"}]},{"nativeSrc":"7371:37:94","nodeType":"YulAssignment","src":"7371:37:94","value":{"arguments":[{"name":"right","nativeSrc":"7384:5:94","nodeType":"YulIdentifier","src":"7384:5:94"},{"arguments":[{"kind":"number","nativeSrc":"7395:3:94","nodeType":"YulLiteral","src":"7395:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"7404:1:94","nodeType":"YulLiteral","src":"7404:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7400:3:94","nodeType":"YulIdentifier","src":"7400:3:94"},"nativeSrc":"7400:6:94","nodeType":"YulFunctionCall","src":"7400:6:94"}],"functionName":{"name":"shl","nativeSrc":"7391:3:94","nodeType":"YulIdentifier","src":"7391:3:94"},"nativeSrc":"7391:16:94","nodeType":"YulFunctionCall","src":"7391:16:94"}],"functionName":{"name":"and","nativeSrc":"7380:3:94","nodeType":"YulIdentifier","src":"7380:3:94"},"nativeSrc":"7380:28:94","nodeType":"YulFunctionCall","src":"7380:28:94"},"variableNames":[{"name":"right","nativeSrc":"7371:5:94","nodeType":"YulIdentifier","src":"7371:5:94"}]},{"nativeSrc":"7421:34:94","nodeType":"YulAssignment","src":"7421:34:94","value":{"arguments":[{"name":"left","nativeSrc":"7434:4:94","nodeType":"YulIdentifier","src":"7434:4:94"},{"arguments":[{"kind":"number","nativeSrc":"7444:2:94","nodeType":"YulLiteral","src":"7444:2:94","type":"","value":"48"},{"name":"right","nativeSrc":"7448:5:94","nodeType":"YulIdentifier","src":"7448:5:94"}],"functionName":{"name":"shr","nativeSrc":"7440:3:94","nodeType":"YulIdentifier","src":"7440:3:94"},"nativeSrc":"7440:14:94","nodeType":"YulFunctionCall","src":"7440:14:94"}],"functionName":{"name":"or","nativeSrc":"7431:2:94","nodeType":"YulIdentifier","src":"7431:2:94"},"nativeSrc":"7431:24:94","nodeType":"YulFunctionCall","src":"7431:24:94"},"variableNames":[{"name":"result","nativeSrc":"7421:6:94","nodeType":"YulIdentifier","src":"7421:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27597,"isOffset":false,"isSlot":false,"src":"7323:4:94","valueSize":1},{"declaration":27597,"isOffset":false,"isSlot":false,"src":"7335:4:94","valueSize":1},{"declaration":27597,"isOffset":false,"isSlot":false,"src":"7434:4:94","valueSize":1},{"declaration":27602,"isOffset":false,"isSlot":false,"src":"7421:6:94","valueSize":1},{"declaration":27599,"isOffset":false,"isSlot":false,"src":"7371:5:94","valueSize":1},{"declaration":27599,"isOffset":false,"isSlot":false,"src":"7384:5:94","valueSize":1},{"declaration":27599,"isOffset":false,"isSlot":false,"src":"7448:5:94","valueSize":1}],"flags":["memory-safe"],"id":27604,"nodeType":"InlineAssembly","src":"7284:181:94"}]},"id":27606,"implemented":true,"kind":"function","modifiers":[],"name":"pack_6_16","nameLocation":"7197:9:94","nodeType":"FunctionDefinition","parameters":{"id":27600,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27597,"mutability":"mutable","name":"left","nameLocation":"7214:4:94","nodeType":"VariableDeclaration","scope":27606,"src":"7207:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":27596,"name":"bytes6","nodeType":"ElementaryTypeName","src":"7207:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":27599,"mutability":"mutable","name":"right","nameLocation":"7228:5:94","nodeType":"VariableDeclaration","scope":27606,"src":"7220:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":27598,"name":"bytes16","nodeType":"ElementaryTypeName","src":"7220:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"7206:28:94"},"returnParameters":{"id":27603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27602,"mutability":"mutable","name":"result","nameLocation":"7266:6:94","nodeType":"VariableDeclaration","scope":27606,"src":"7258:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":27601,"name":"bytes22","nodeType":"ElementaryTypeName","src":"7258:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"7257:16:94"},"scope":30945,"src":"7188:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27616,"nodeType":"Block","src":"7563:196:94","statements":[{"AST":{"nativeSrc":"7598:155:94","nodeType":"YulBlock","src":"7598:155:94","statements":[{"nativeSrc":"7612:35:94","nodeType":"YulAssignment","src":"7612:35:94","value":{"arguments":[{"name":"left","nativeSrc":"7624:4:94","nodeType":"YulIdentifier","src":"7624:4:94"},{"arguments":[{"kind":"number","nativeSrc":"7634:3:94","nodeType":"YulLiteral","src":"7634:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"7643:1:94","nodeType":"YulLiteral","src":"7643:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7639:3:94","nodeType":"YulIdentifier","src":"7639:3:94"},"nativeSrc":"7639:6:94","nodeType":"YulFunctionCall","src":"7639:6:94"}],"functionName":{"name":"shl","nativeSrc":"7630:3:94","nodeType":"YulIdentifier","src":"7630:3:94"},"nativeSrc":"7630:16:94","nodeType":"YulFunctionCall","src":"7630:16:94"}],"functionName":{"name":"and","nativeSrc":"7620:3:94","nodeType":"YulIdentifier","src":"7620:3:94"},"nativeSrc":"7620:27:94","nodeType":"YulFunctionCall","src":"7620:27:94"},"variableNames":[{"name":"left","nativeSrc":"7612:4:94","nodeType":"YulIdentifier","src":"7612:4:94"}]},{"nativeSrc":"7660:36:94","nodeType":"YulAssignment","src":"7660:36:94","value":{"arguments":[{"name":"right","nativeSrc":"7673:5:94","nodeType":"YulIdentifier","src":"7673:5:94"},{"arguments":[{"kind":"number","nativeSrc":"7684:2:94","nodeType":"YulLiteral","src":"7684:2:94","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"7692:1:94","nodeType":"YulLiteral","src":"7692:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7688:3:94","nodeType":"YulIdentifier","src":"7688:3:94"},"nativeSrc":"7688:6:94","nodeType":"YulFunctionCall","src":"7688:6:94"}],"functionName":{"name":"shl","nativeSrc":"7680:3:94","nodeType":"YulIdentifier","src":"7680:3:94"},"nativeSrc":"7680:15:94","nodeType":"YulFunctionCall","src":"7680:15:94"}],"functionName":{"name":"and","nativeSrc":"7669:3:94","nodeType":"YulIdentifier","src":"7669:3:94"},"nativeSrc":"7669:27:94","nodeType":"YulFunctionCall","src":"7669:27:94"},"variableNames":[{"name":"right","nativeSrc":"7660:5:94","nodeType":"YulIdentifier","src":"7660:5:94"}]},{"nativeSrc":"7709:34:94","nodeType":"YulAssignment","src":"7709:34:94","value":{"arguments":[{"name":"left","nativeSrc":"7722:4:94","nodeType":"YulIdentifier","src":"7722:4:94"},{"arguments":[{"kind":"number","nativeSrc":"7732:2:94","nodeType":"YulLiteral","src":"7732:2:94","type":"","value":"48"},{"name":"right","nativeSrc":"7736:5:94","nodeType":"YulIdentifier","src":"7736:5:94"}],"functionName":{"name":"shr","nativeSrc":"7728:3:94","nodeType":"YulIdentifier","src":"7728:3:94"},"nativeSrc":"7728:14:94","nodeType":"YulFunctionCall","src":"7728:14:94"}],"functionName":{"name":"or","nativeSrc":"7719:2:94","nodeType":"YulIdentifier","src":"7719:2:94"},"nativeSrc":"7719:24:94","nodeType":"YulFunctionCall","src":"7719:24:94"},"variableNames":[{"name":"result","nativeSrc":"7709:6:94","nodeType":"YulIdentifier","src":"7709:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27608,"isOffset":false,"isSlot":false,"src":"7612:4:94","valueSize":1},{"declaration":27608,"isOffset":false,"isSlot":false,"src":"7624:4:94","valueSize":1},{"declaration":27608,"isOffset":false,"isSlot":false,"src":"7722:4:94","valueSize":1},{"declaration":27613,"isOffset":false,"isSlot":false,"src":"7709:6:94","valueSize":1},{"declaration":27610,"isOffset":false,"isSlot":false,"src":"7660:5:94","valueSize":1},{"declaration":27610,"isOffset":false,"isSlot":false,"src":"7673:5:94","valueSize":1},{"declaration":27610,"isOffset":false,"isSlot":false,"src":"7736:5:94","valueSize":1}],"flags":["memory-safe"],"id":27615,"nodeType":"InlineAssembly","src":"7573:180:94"}]},"id":27617,"implemented":true,"kind":"function","modifiers":[],"name":"pack_6_22","nameLocation":"7486:9:94","nodeType":"FunctionDefinition","parameters":{"id":27611,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27608,"mutability":"mutable","name":"left","nameLocation":"7503:4:94","nodeType":"VariableDeclaration","scope":27617,"src":"7496:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":27607,"name":"bytes6","nodeType":"ElementaryTypeName","src":"7496:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":27610,"mutability":"mutable","name":"right","nameLocation":"7517:5:94","nodeType":"VariableDeclaration","scope":27617,"src":"7509:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":27609,"name":"bytes22","nodeType":"ElementaryTypeName","src":"7509:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"7495:28:94"},"returnParameters":{"id":27614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27613,"mutability":"mutable","name":"result","nameLocation":"7555:6:94","nodeType":"VariableDeclaration","scope":27617,"src":"7547:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":27612,"name":"bytes28","nodeType":"ElementaryTypeName","src":"7547:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"7546:16:94"},"scope":30945,"src":"7477:282:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27627,"nodeType":"Block","src":"7849:197:94","statements":[{"AST":{"nativeSrc":"7884:156:94","nodeType":"YulBlock","src":"7884:156:94","statements":[{"nativeSrc":"7898:35:94","nodeType":"YulAssignment","src":"7898:35:94","value":{"arguments":[{"name":"left","nativeSrc":"7910:4:94","nodeType":"YulIdentifier","src":"7910:4:94"},{"arguments":[{"kind":"number","nativeSrc":"7920:3:94","nodeType":"YulLiteral","src":"7920:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"7929:1:94","nodeType":"YulLiteral","src":"7929:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7925:3:94","nodeType":"YulIdentifier","src":"7925:3:94"},"nativeSrc":"7925:6:94","nodeType":"YulFunctionCall","src":"7925:6:94"}],"functionName":{"name":"shl","nativeSrc":"7916:3:94","nodeType":"YulIdentifier","src":"7916:3:94"},"nativeSrc":"7916:16:94","nodeType":"YulFunctionCall","src":"7916:16:94"}],"functionName":{"name":"and","nativeSrc":"7906:3:94","nodeType":"YulIdentifier","src":"7906:3:94"},"nativeSrc":"7906:27:94","nodeType":"YulFunctionCall","src":"7906:27:94"},"variableNames":[{"name":"left","nativeSrc":"7898:4:94","nodeType":"YulIdentifier","src":"7898:4:94"}]},{"nativeSrc":"7946:37:94","nodeType":"YulAssignment","src":"7946:37:94","value":{"arguments":[{"name":"right","nativeSrc":"7959:5:94","nodeType":"YulIdentifier","src":"7959:5:94"},{"arguments":[{"kind":"number","nativeSrc":"7970:3:94","nodeType":"YulLiteral","src":"7970:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"7979:1:94","nodeType":"YulLiteral","src":"7979:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7975:3:94","nodeType":"YulIdentifier","src":"7975:3:94"},"nativeSrc":"7975:6:94","nodeType":"YulFunctionCall","src":"7975:6:94"}],"functionName":{"name":"shl","nativeSrc":"7966:3:94","nodeType":"YulIdentifier","src":"7966:3:94"},"nativeSrc":"7966:16:94","nodeType":"YulFunctionCall","src":"7966:16:94"}],"functionName":{"name":"and","nativeSrc":"7955:3:94","nodeType":"YulIdentifier","src":"7955:3:94"},"nativeSrc":"7955:28:94","nodeType":"YulFunctionCall","src":"7955:28:94"},"variableNames":[{"name":"right","nativeSrc":"7946:5:94","nodeType":"YulIdentifier","src":"7946:5:94"}]},{"nativeSrc":"7996:34:94","nodeType":"YulAssignment","src":"7996:34:94","value":{"arguments":[{"name":"left","nativeSrc":"8009:4:94","nodeType":"YulIdentifier","src":"8009:4:94"},{"arguments":[{"kind":"number","nativeSrc":"8019:2:94","nodeType":"YulLiteral","src":"8019:2:94","type":"","value":"64"},{"name":"right","nativeSrc":"8023:5:94","nodeType":"YulIdentifier","src":"8023:5:94"}],"functionName":{"name":"shr","nativeSrc":"8015:3:94","nodeType":"YulIdentifier","src":"8015:3:94"},"nativeSrc":"8015:14:94","nodeType":"YulFunctionCall","src":"8015:14:94"}],"functionName":{"name":"or","nativeSrc":"8006:2:94","nodeType":"YulIdentifier","src":"8006:2:94"},"nativeSrc":"8006:24:94","nodeType":"YulFunctionCall","src":"8006:24:94"},"variableNames":[{"name":"result","nativeSrc":"7996:6:94","nodeType":"YulIdentifier","src":"7996:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27619,"isOffset":false,"isSlot":false,"src":"7898:4:94","valueSize":1},{"declaration":27619,"isOffset":false,"isSlot":false,"src":"7910:4:94","valueSize":1},{"declaration":27619,"isOffset":false,"isSlot":false,"src":"8009:4:94","valueSize":1},{"declaration":27624,"isOffset":false,"isSlot":false,"src":"7996:6:94","valueSize":1},{"declaration":27621,"isOffset":false,"isSlot":false,"src":"7946:5:94","valueSize":1},{"declaration":27621,"isOffset":false,"isSlot":false,"src":"7959:5:94","valueSize":1},{"declaration":27621,"isOffset":false,"isSlot":false,"src":"8023:5:94","valueSize":1}],"flags":["memory-safe"],"id":27626,"nodeType":"InlineAssembly","src":"7859:181:94"}]},"id":27628,"implemented":true,"kind":"function","modifiers":[],"name":"pack_8_2","nameLocation":"7774:8:94","nodeType":"FunctionDefinition","parameters":{"id":27622,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27619,"mutability":"mutable","name":"left","nameLocation":"7790:4:94","nodeType":"VariableDeclaration","scope":27628,"src":"7783:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27618,"name":"bytes8","nodeType":"ElementaryTypeName","src":"7783:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":27621,"mutability":"mutable","name":"right","nameLocation":"7803:5:94","nodeType":"VariableDeclaration","scope":27628,"src":"7796:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27620,"name":"bytes2","nodeType":"ElementaryTypeName","src":"7796:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"7782:27:94"},"returnParameters":{"id":27625,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27624,"mutability":"mutable","name":"result","nameLocation":"7841:6:94","nodeType":"VariableDeclaration","scope":27628,"src":"7833:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":27623,"name":"bytes10","nodeType":"ElementaryTypeName","src":"7833:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"7832:16:94"},"scope":30945,"src":"7765:281:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27638,"nodeType":"Block","src":"8136:197:94","statements":[{"AST":{"nativeSrc":"8171:156:94","nodeType":"YulBlock","src":"8171:156:94","statements":[{"nativeSrc":"8185:35:94","nodeType":"YulAssignment","src":"8185:35:94","value":{"arguments":[{"name":"left","nativeSrc":"8197:4:94","nodeType":"YulIdentifier","src":"8197:4:94"},{"arguments":[{"kind":"number","nativeSrc":"8207:3:94","nodeType":"YulLiteral","src":"8207:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"8216:1:94","nodeType":"YulLiteral","src":"8216:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"8212:3:94","nodeType":"YulIdentifier","src":"8212:3:94"},"nativeSrc":"8212:6:94","nodeType":"YulFunctionCall","src":"8212:6:94"}],"functionName":{"name":"shl","nativeSrc":"8203:3:94","nodeType":"YulIdentifier","src":"8203:3:94"},"nativeSrc":"8203:16:94","nodeType":"YulFunctionCall","src":"8203:16:94"}],"functionName":{"name":"and","nativeSrc":"8193:3:94","nodeType":"YulIdentifier","src":"8193:3:94"},"nativeSrc":"8193:27:94","nodeType":"YulFunctionCall","src":"8193:27:94"},"variableNames":[{"name":"left","nativeSrc":"8185:4:94","nodeType":"YulIdentifier","src":"8185:4:94"}]},{"nativeSrc":"8233:37:94","nodeType":"YulAssignment","src":"8233:37:94","value":{"arguments":[{"name":"right","nativeSrc":"8246:5:94","nodeType":"YulIdentifier","src":"8246:5:94"},{"arguments":[{"kind":"number","nativeSrc":"8257:3:94","nodeType":"YulLiteral","src":"8257:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"8266:1:94","nodeType":"YulLiteral","src":"8266:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"8262:3:94","nodeType":"YulIdentifier","src":"8262:3:94"},"nativeSrc":"8262:6:94","nodeType":"YulFunctionCall","src":"8262:6:94"}],"functionName":{"name":"shl","nativeSrc":"8253:3:94","nodeType":"YulIdentifier","src":"8253:3:94"},"nativeSrc":"8253:16:94","nodeType":"YulFunctionCall","src":"8253:16:94"}],"functionName":{"name":"and","nativeSrc":"8242:3:94","nodeType":"YulIdentifier","src":"8242:3:94"},"nativeSrc":"8242:28:94","nodeType":"YulFunctionCall","src":"8242:28:94"},"variableNames":[{"name":"right","nativeSrc":"8233:5:94","nodeType":"YulIdentifier","src":"8233:5:94"}]},{"nativeSrc":"8283:34:94","nodeType":"YulAssignment","src":"8283:34:94","value":{"arguments":[{"name":"left","nativeSrc":"8296:4:94","nodeType":"YulIdentifier","src":"8296:4:94"},{"arguments":[{"kind":"number","nativeSrc":"8306:2:94","nodeType":"YulLiteral","src":"8306:2:94","type":"","value":"64"},{"name":"right","nativeSrc":"8310:5:94","nodeType":"YulIdentifier","src":"8310:5:94"}],"functionName":{"name":"shr","nativeSrc":"8302:3:94","nodeType":"YulIdentifier","src":"8302:3:94"},"nativeSrc":"8302:14:94","nodeType":"YulFunctionCall","src":"8302:14:94"}],"functionName":{"name":"or","nativeSrc":"8293:2:94","nodeType":"YulIdentifier","src":"8293:2:94"},"nativeSrc":"8293:24:94","nodeType":"YulFunctionCall","src":"8293:24:94"},"variableNames":[{"name":"result","nativeSrc":"8283:6:94","nodeType":"YulIdentifier","src":"8283:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27630,"isOffset":false,"isSlot":false,"src":"8185:4:94","valueSize":1},{"declaration":27630,"isOffset":false,"isSlot":false,"src":"8197:4:94","valueSize":1},{"declaration":27630,"isOffset":false,"isSlot":false,"src":"8296:4:94","valueSize":1},{"declaration":27635,"isOffset":false,"isSlot":false,"src":"8283:6:94","valueSize":1},{"declaration":27632,"isOffset":false,"isSlot":false,"src":"8233:5:94","valueSize":1},{"declaration":27632,"isOffset":false,"isSlot":false,"src":"8246:5:94","valueSize":1},{"declaration":27632,"isOffset":false,"isSlot":false,"src":"8310:5:94","valueSize":1}],"flags":["memory-safe"],"id":27637,"nodeType":"InlineAssembly","src":"8146:181:94"}]},"id":27639,"implemented":true,"kind":"function","modifiers":[],"name":"pack_8_4","nameLocation":"8061:8:94","nodeType":"FunctionDefinition","parameters":{"id":27633,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27630,"mutability":"mutable","name":"left","nameLocation":"8077:4:94","nodeType":"VariableDeclaration","scope":27639,"src":"8070:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27629,"name":"bytes8","nodeType":"ElementaryTypeName","src":"8070:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":27632,"mutability":"mutable","name":"right","nameLocation":"8090:5:94","nodeType":"VariableDeclaration","scope":27639,"src":"8083:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27631,"name":"bytes4","nodeType":"ElementaryTypeName","src":"8083:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"8069:27:94"},"returnParameters":{"id":27636,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27635,"mutability":"mutable","name":"result","nameLocation":"8128:6:94","nodeType":"VariableDeclaration","scope":27639,"src":"8120:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27634,"name":"bytes12","nodeType":"ElementaryTypeName","src":"8120:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"8119:16:94"},"scope":30945,"src":"8052:281:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27649,"nodeType":"Block","src":"8423:197:94","statements":[{"AST":{"nativeSrc":"8458:156:94","nodeType":"YulBlock","src":"8458:156:94","statements":[{"nativeSrc":"8472:35:94","nodeType":"YulAssignment","src":"8472:35:94","value":{"arguments":[{"name":"left","nativeSrc":"8484:4:94","nodeType":"YulIdentifier","src":"8484:4:94"},{"arguments":[{"kind":"number","nativeSrc":"8494:3:94","nodeType":"YulLiteral","src":"8494:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"8503:1:94","nodeType":"YulLiteral","src":"8503:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"8499:3:94","nodeType":"YulIdentifier","src":"8499:3:94"},"nativeSrc":"8499:6:94","nodeType":"YulFunctionCall","src":"8499:6:94"}],"functionName":{"name":"shl","nativeSrc":"8490:3:94","nodeType":"YulIdentifier","src":"8490:3:94"},"nativeSrc":"8490:16:94","nodeType":"YulFunctionCall","src":"8490:16:94"}],"functionName":{"name":"and","nativeSrc":"8480:3:94","nodeType":"YulIdentifier","src":"8480:3:94"},"nativeSrc":"8480:27:94","nodeType":"YulFunctionCall","src":"8480:27:94"},"variableNames":[{"name":"left","nativeSrc":"8472:4:94","nodeType":"YulIdentifier","src":"8472:4:94"}]},{"nativeSrc":"8520:37:94","nodeType":"YulAssignment","src":"8520:37:94","value":{"arguments":[{"name":"right","nativeSrc":"8533:5:94","nodeType":"YulIdentifier","src":"8533:5:94"},{"arguments":[{"kind":"number","nativeSrc":"8544:3:94","nodeType":"YulLiteral","src":"8544:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"8553:1:94","nodeType":"YulLiteral","src":"8553:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"8549:3:94","nodeType":"YulIdentifier","src":"8549:3:94"},"nativeSrc":"8549:6:94","nodeType":"YulFunctionCall","src":"8549:6:94"}],"functionName":{"name":"shl","nativeSrc":"8540:3:94","nodeType":"YulIdentifier","src":"8540:3:94"},"nativeSrc":"8540:16:94","nodeType":"YulFunctionCall","src":"8540:16:94"}],"functionName":{"name":"and","nativeSrc":"8529:3:94","nodeType":"YulIdentifier","src":"8529:3:94"},"nativeSrc":"8529:28:94","nodeType":"YulFunctionCall","src":"8529:28:94"},"variableNames":[{"name":"right","nativeSrc":"8520:5:94","nodeType":"YulIdentifier","src":"8520:5:94"}]},{"nativeSrc":"8570:34:94","nodeType":"YulAssignment","src":"8570:34:94","value":{"arguments":[{"name":"left","nativeSrc":"8583:4:94","nodeType":"YulIdentifier","src":"8583:4:94"},{"arguments":[{"kind":"number","nativeSrc":"8593:2:94","nodeType":"YulLiteral","src":"8593:2:94","type":"","value":"64"},{"name":"right","nativeSrc":"8597:5:94","nodeType":"YulIdentifier","src":"8597:5:94"}],"functionName":{"name":"shr","nativeSrc":"8589:3:94","nodeType":"YulIdentifier","src":"8589:3:94"},"nativeSrc":"8589:14:94","nodeType":"YulFunctionCall","src":"8589:14:94"}],"functionName":{"name":"or","nativeSrc":"8580:2:94","nodeType":"YulIdentifier","src":"8580:2:94"},"nativeSrc":"8580:24:94","nodeType":"YulFunctionCall","src":"8580:24:94"},"variableNames":[{"name":"result","nativeSrc":"8570:6:94","nodeType":"YulIdentifier","src":"8570:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27641,"isOffset":false,"isSlot":false,"src":"8472:4:94","valueSize":1},{"declaration":27641,"isOffset":false,"isSlot":false,"src":"8484:4:94","valueSize":1},{"declaration":27641,"isOffset":false,"isSlot":false,"src":"8583:4:94","valueSize":1},{"declaration":27646,"isOffset":false,"isSlot":false,"src":"8570:6:94","valueSize":1},{"declaration":27643,"isOffset":false,"isSlot":false,"src":"8520:5:94","valueSize":1},{"declaration":27643,"isOffset":false,"isSlot":false,"src":"8533:5:94","valueSize":1},{"declaration":27643,"isOffset":false,"isSlot":false,"src":"8597:5:94","valueSize":1}],"flags":["memory-safe"],"id":27648,"nodeType":"InlineAssembly","src":"8433:181:94"}]},"id":27650,"implemented":true,"kind":"function","modifiers":[],"name":"pack_8_8","nameLocation":"8348:8:94","nodeType":"FunctionDefinition","parameters":{"id":27644,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27641,"mutability":"mutable","name":"left","nameLocation":"8364:4:94","nodeType":"VariableDeclaration","scope":27650,"src":"8357:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27640,"name":"bytes8","nodeType":"ElementaryTypeName","src":"8357:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":27643,"mutability":"mutable","name":"right","nameLocation":"8377:5:94","nodeType":"VariableDeclaration","scope":27650,"src":"8370:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27642,"name":"bytes8","nodeType":"ElementaryTypeName","src":"8370:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"8356:27:94"},"returnParameters":{"id":27647,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27646,"mutability":"mutable","name":"result","nameLocation":"8415:6:94","nodeType":"VariableDeclaration","scope":27650,"src":"8407:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":27645,"name":"bytes16","nodeType":"ElementaryTypeName","src":"8407:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"8406:16:94"},"scope":30945,"src":"8339:281:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27660,"nodeType":"Block","src":"8712:197:94","statements":[{"AST":{"nativeSrc":"8747:156:94","nodeType":"YulBlock","src":"8747:156:94","statements":[{"nativeSrc":"8761:35:94","nodeType":"YulAssignment","src":"8761:35:94","value":{"arguments":[{"name":"left","nativeSrc":"8773:4:94","nodeType":"YulIdentifier","src":"8773:4:94"},{"arguments":[{"kind":"number","nativeSrc":"8783:3:94","nodeType":"YulLiteral","src":"8783:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"8792:1:94","nodeType":"YulLiteral","src":"8792:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"8788:3:94","nodeType":"YulIdentifier","src":"8788:3:94"},"nativeSrc":"8788:6:94","nodeType":"YulFunctionCall","src":"8788:6:94"}],"functionName":{"name":"shl","nativeSrc":"8779:3:94","nodeType":"YulIdentifier","src":"8779:3:94"},"nativeSrc":"8779:16:94","nodeType":"YulFunctionCall","src":"8779:16:94"}],"functionName":{"name":"and","nativeSrc":"8769:3:94","nodeType":"YulIdentifier","src":"8769:3:94"},"nativeSrc":"8769:27:94","nodeType":"YulFunctionCall","src":"8769:27:94"},"variableNames":[{"name":"left","nativeSrc":"8761:4:94","nodeType":"YulIdentifier","src":"8761:4:94"}]},{"nativeSrc":"8809:37:94","nodeType":"YulAssignment","src":"8809:37:94","value":{"arguments":[{"name":"right","nativeSrc":"8822:5:94","nodeType":"YulIdentifier","src":"8822:5:94"},{"arguments":[{"kind":"number","nativeSrc":"8833:3:94","nodeType":"YulLiteral","src":"8833:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"8842:1:94","nodeType":"YulLiteral","src":"8842:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"8838:3:94","nodeType":"YulIdentifier","src":"8838:3:94"},"nativeSrc":"8838:6:94","nodeType":"YulFunctionCall","src":"8838:6:94"}],"functionName":{"name":"shl","nativeSrc":"8829:3:94","nodeType":"YulIdentifier","src":"8829:3:94"},"nativeSrc":"8829:16:94","nodeType":"YulFunctionCall","src":"8829:16:94"}],"functionName":{"name":"and","nativeSrc":"8818:3:94","nodeType":"YulIdentifier","src":"8818:3:94"},"nativeSrc":"8818:28:94","nodeType":"YulFunctionCall","src":"8818:28:94"},"variableNames":[{"name":"right","nativeSrc":"8809:5:94","nodeType":"YulIdentifier","src":"8809:5:94"}]},{"nativeSrc":"8859:34:94","nodeType":"YulAssignment","src":"8859:34:94","value":{"arguments":[{"name":"left","nativeSrc":"8872:4:94","nodeType":"YulIdentifier","src":"8872:4:94"},{"arguments":[{"kind":"number","nativeSrc":"8882:2:94","nodeType":"YulLiteral","src":"8882:2:94","type":"","value":"64"},{"name":"right","nativeSrc":"8886:5:94","nodeType":"YulIdentifier","src":"8886:5:94"}],"functionName":{"name":"shr","nativeSrc":"8878:3:94","nodeType":"YulIdentifier","src":"8878:3:94"},"nativeSrc":"8878:14:94","nodeType":"YulFunctionCall","src":"8878:14:94"}],"functionName":{"name":"or","nativeSrc":"8869:2:94","nodeType":"YulIdentifier","src":"8869:2:94"},"nativeSrc":"8869:24:94","nodeType":"YulFunctionCall","src":"8869:24:94"},"variableNames":[{"name":"result","nativeSrc":"8859:6:94","nodeType":"YulIdentifier","src":"8859:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27652,"isOffset":false,"isSlot":false,"src":"8761:4:94","valueSize":1},{"declaration":27652,"isOffset":false,"isSlot":false,"src":"8773:4:94","valueSize":1},{"declaration":27652,"isOffset":false,"isSlot":false,"src":"8872:4:94","valueSize":1},{"declaration":27657,"isOffset":false,"isSlot":false,"src":"8859:6:94","valueSize":1},{"declaration":27654,"isOffset":false,"isSlot":false,"src":"8809:5:94","valueSize":1},{"declaration":27654,"isOffset":false,"isSlot":false,"src":"8822:5:94","valueSize":1},{"declaration":27654,"isOffset":false,"isSlot":false,"src":"8886:5:94","valueSize":1}],"flags":["memory-safe"],"id":27659,"nodeType":"InlineAssembly","src":"8722:181:94"}]},"id":27661,"implemented":true,"kind":"function","modifiers":[],"name":"pack_8_12","nameLocation":"8635:9:94","nodeType":"FunctionDefinition","parameters":{"id":27655,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27652,"mutability":"mutable","name":"left","nameLocation":"8652:4:94","nodeType":"VariableDeclaration","scope":27661,"src":"8645:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27651,"name":"bytes8","nodeType":"ElementaryTypeName","src":"8645:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":27654,"mutability":"mutable","name":"right","nameLocation":"8666:5:94","nodeType":"VariableDeclaration","scope":27661,"src":"8658:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27653,"name":"bytes12","nodeType":"ElementaryTypeName","src":"8658:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"8644:28:94"},"returnParameters":{"id":27658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27657,"mutability":"mutable","name":"result","nameLocation":"8704:6:94","nodeType":"VariableDeclaration","scope":27661,"src":"8696:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":27656,"name":"bytes20","nodeType":"ElementaryTypeName","src":"8696:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"8695:16:94"},"scope":30945,"src":"8626:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27671,"nodeType":"Block","src":"9001:197:94","statements":[{"AST":{"nativeSrc":"9036:156:94","nodeType":"YulBlock","src":"9036:156:94","statements":[{"nativeSrc":"9050:35:94","nodeType":"YulAssignment","src":"9050:35:94","value":{"arguments":[{"name":"left","nativeSrc":"9062:4:94","nodeType":"YulIdentifier","src":"9062:4:94"},{"arguments":[{"kind":"number","nativeSrc":"9072:3:94","nodeType":"YulLiteral","src":"9072:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"9081:1:94","nodeType":"YulLiteral","src":"9081:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9077:3:94","nodeType":"YulIdentifier","src":"9077:3:94"},"nativeSrc":"9077:6:94","nodeType":"YulFunctionCall","src":"9077:6:94"}],"functionName":{"name":"shl","nativeSrc":"9068:3:94","nodeType":"YulIdentifier","src":"9068:3:94"},"nativeSrc":"9068:16:94","nodeType":"YulFunctionCall","src":"9068:16:94"}],"functionName":{"name":"and","nativeSrc":"9058:3:94","nodeType":"YulIdentifier","src":"9058:3:94"},"nativeSrc":"9058:27:94","nodeType":"YulFunctionCall","src":"9058:27:94"},"variableNames":[{"name":"left","nativeSrc":"9050:4:94","nodeType":"YulIdentifier","src":"9050:4:94"}]},{"nativeSrc":"9098:37:94","nodeType":"YulAssignment","src":"9098:37:94","value":{"arguments":[{"name":"right","nativeSrc":"9111:5:94","nodeType":"YulIdentifier","src":"9111:5:94"},{"arguments":[{"kind":"number","nativeSrc":"9122:3:94","nodeType":"YulLiteral","src":"9122:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"9131:1:94","nodeType":"YulLiteral","src":"9131:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9127:3:94","nodeType":"YulIdentifier","src":"9127:3:94"},"nativeSrc":"9127:6:94","nodeType":"YulFunctionCall","src":"9127:6:94"}],"functionName":{"name":"shl","nativeSrc":"9118:3:94","nodeType":"YulIdentifier","src":"9118:3:94"},"nativeSrc":"9118:16:94","nodeType":"YulFunctionCall","src":"9118:16:94"}],"functionName":{"name":"and","nativeSrc":"9107:3:94","nodeType":"YulIdentifier","src":"9107:3:94"},"nativeSrc":"9107:28:94","nodeType":"YulFunctionCall","src":"9107:28:94"},"variableNames":[{"name":"right","nativeSrc":"9098:5:94","nodeType":"YulIdentifier","src":"9098:5:94"}]},{"nativeSrc":"9148:34:94","nodeType":"YulAssignment","src":"9148:34:94","value":{"arguments":[{"name":"left","nativeSrc":"9161:4:94","nodeType":"YulIdentifier","src":"9161:4:94"},{"arguments":[{"kind":"number","nativeSrc":"9171:2:94","nodeType":"YulLiteral","src":"9171:2:94","type":"","value":"64"},{"name":"right","nativeSrc":"9175:5:94","nodeType":"YulIdentifier","src":"9175:5:94"}],"functionName":{"name":"shr","nativeSrc":"9167:3:94","nodeType":"YulIdentifier","src":"9167:3:94"},"nativeSrc":"9167:14:94","nodeType":"YulFunctionCall","src":"9167:14:94"}],"functionName":{"name":"or","nativeSrc":"9158:2:94","nodeType":"YulIdentifier","src":"9158:2:94"},"nativeSrc":"9158:24:94","nodeType":"YulFunctionCall","src":"9158:24:94"},"variableNames":[{"name":"result","nativeSrc":"9148:6:94","nodeType":"YulIdentifier","src":"9148:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27663,"isOffset":false,"isSlot":false,"src":"9050:4:94","valueSize":1},{"declaration":27663,"isOffset":false,"isSlot":false,"src":"9062:4:94","valueSize":1},{"declaration":27663,"isOffset":false,"isSlot":false,"src":"9161:4:94","valueSize":1},{"declaration":27668,"isOffset":false,"isSlot":false,"src":"9148:6:94","valueSize":1},{"declaration":27665,"isOffset":false,"isSlot":false,"src":"9098:5:94","valueSize":1},{"declaration":27665,"isOffset":false,"isSlot":false,"src":"9111:5:94","valueSize":1},{"declaration":27665,"isOffset":false,"isSlot":false,"src":"9175:5:94","valueSize":1}],"flags":["memory-safe"],"id":27670,"nodeType":"InlineAssembly","src":"9011:181:94"}]},"id":27672,"implemented":true,"kind":"function","modifiers":[],"name":"pack_8_16","nameLocation":"8924:9:94","nodeType":"FunctionDefinition","parameters":{"id":27666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27663,"mutability":"mutable","name":"left","nameLocation":"8941:4:94","nodeType":"VariableDeclaration","scope":27672,"src":"8934:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27662,"name":"bytes8","nodeType":"ElementaryTypeName","src":"8934:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":27665,"mutability":"mutable","name":"right","nameLocation":"8955:5:94","nodeType":"VariableDeclaration","scope":27672,"src":"8947:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":27664,"name":"bytes16","nodeType":"ElementaryTypeName","src":"8947:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"8933:28:94"},"returnParameters":{"id":27669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27668,"mutability":"mutable","name":"result","nameLocation":"8993:6:94","nodeType":"VariableDeclaration","scope":27672,"src":"8985:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":27667,"name":"bytes24","nodeType":"ElementaryTypeName","src":"8985:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"8984:16:94"},"scope":30945,"src":"8915:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27682,"nodeType":"Block","src":"9290:196:94","statements":[{"AST":{"nativeSrc":"9325:155:94","nodeType":"YulBlock","src":"9325:155:94","statements":[{"nativeSrc":"9339:35:94","nodeType":"YulAssignment","src":"9339:35:94","value":{"arguments":[{"name":"left","nativeSrc":"9351:4:94","nodeType":"YulIdentifier","src":"9351:4:94"},{"arguments":[{"kind":"number","nativeSrc":"9361:3:94","nodeType":"YulLiteral","src":"9361:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"9370:1:94","nodeType":"YulLiteral","src":"9370:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9366:3:94","nodeType":"YulIdentifier","src":"9366:3:94"},"nativeSrc":"9366:6:94","nodeType":"YulFunctionCall","src":"9366:6:94"}],"functionName":{"name":"shl","nativeSrc":"9357:3:94","nodeType":"YulIdentifier","src":"9357:3:94"},"nativeSrc":"9357:16:94","nodeType":"YulFunctionCall","src":"9357:16:94"}],"functionName":{"name":"and","nativeSrc":"9347:3:94","nodeType":"YulIdentifier","src":"9347:3:94"},"nativeSrc":"9347:27:94","nodeType":"YulFunctionCall","src":"9347:27:94"},"variableNames":[{"name":"left","nativeSrc":"9339:4:94","nodeType":"YulIdentifier","src":"9339:4:94"}]},{"nativeSrc":"9387:36:94","nodeType":"YulAssignment","src":"9387:36:94","value":{"arguments":[{"name":"right","nativeSrc":"9400:5:94","nodeType":"YulIdentifier","src":"9400:5:94"},{"arguments":[{"kind":"number","nativeSrc":"9411:2:94","nodeType":"YulLiteral","src":"9411:2:94","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"9419:1:94","nodeType":"YulLiteral","src":"9419:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9415:3:94","nodeType":"YulIdentifier","src":"9415:3:94"},"nativeSrc":"9415:6:94","nodeType":"YulFunctionCall","src":"9415:6:94"}],"functionName":{"name":"shl","nativeSrc":"9407:3:94","nodeType":"YulIdentifier","src":"9407:3:94"},"nativeSrc":"9407:15:94","nodeType":"YulFunctionCall","src":"9407:15:94"}],"functionName":{"name":"and","nativeSrc":"9396:3:94","nodeType":"YulIdentifier","src":"9396:3:94"},"nativeSrc":"9396:27:94","nodeType":"YulFunctionCall","src":"9396:27:94"},"variableNames":[{"name":"right","nativeSrc":"9387:5:94","nodeType":"YulIdentifier","src":"9387:5:94"}]},{"nativeSrc":"9436:34:94","nodeType":"YulAssignment","src":"9436:34:94","value":{"arguments":[{"name":"left","nativeSrc":"9449:4:94","nodeType":"YulIdentifier","src":"9449:4:94"},{"arguments":[{"kind":"number","nativeSrc":"9459:2:94","nodeType":"YulLiteral","src":"9459:2:94","type":"","value":"64"},{"name":"right","nativeSrc":"9463:5:94","nodeType":"YulIdentifier","src":"9463:5:94"}],"functionName":{"name":"shr","nativeSrc":"9455:3:94","nodeType":"YulIdentifier","src":"9455:3:94"},"nativeSrc":"9455:14:94","nodeType":"YulFunctionCall","src":"9455:14:94"}],"functionName":{"name":"or","nativeSrc":"9446:2:94","nodeType":"YulIdentifier","src":"9446:2:94"},"nativeSrc":"9446:24:94","nodeType":"YulFunctionCall","src":"9446:24:94"},"variableNames":[{"name":"result","nativeSrc":"9436:6:94","nodeType":"YulIdentifier","src":"9436:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27674,"isOffset":false,"isSlot":false,"src":"9339:4:94","valueSize":1},{"declaration":27674,"isOffset":false,"isSlot":false,"src":"9351:4:94","valueSize":1},{"declaration":27674,"isOffset":false,"isSlot":false,"src":"9449:4:94","valueSize":1},{"declaration":27679,"isOffset":false,"isSlot":false,"src":"9436:6:94","valueSize":1},{"declaration":27676,"isOffset":false,"isSlot":false,"src":"9387:5:94","valueSize":1},{"declaration":27676,"isOffset":false,"isSlot":false,"src":"9400:5:94","valueSize":1},{"declaration":27676,"isOffset":false,"isSlot":false,"src":"9463:5:94","valueSize":1}],"flags":["memory-safe"],"id":27681,"nodeType":"InlineAssembly","src":"9300:180:94"}]},"id":27683,"implemented":true,"kind":"function","modifiers":[],"name":"pack_8_20","nameLocation":"9213:9:94","nodeType":"FunctionDefinition","parameters":{"id":27677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27674,"mutability":"mutable","name":"left","nameLocation":"9230:4:94","nodeType":"VariableDeclaration","scope":27683,"src":"9223:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27673,"name":"bytes8","nodeType":"ElementaryTypeName","src":"9223:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":27676,"mutability":"mutable","name":"right","nameLocation":"9244:5:94","nodeType":"VariableDeclaration","scope":27683,"src":"9236:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":27675,"name":"bytes20","nodeType":"ElementaryTypeName","src":"9236:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"9222:28:94"},"returnParameters":{"id":27680,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27679,"mutability":"mutable","name":"result","nameLocation":"9282:6:94","nodeType":"VariableDeclaration","scope":27683,"src":"9274:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":27678,"name":"bytes28","nodeType":"ElementaryTypeName","src":"9274:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"9273:16:94"},"scope":30945,"src":"9204:282:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27693,"nodeType":"Block","src":"9578:196:94","statements":[{"AST":{"nativeSrc":"9613:155:94","nodeType":"YulBlock","src":"9613:155:94","statements":[{"nativeSrc":"9627:35:94","nodeType":"YulAssignment","src":"9627:35:94","value":{"arguments":[{"name":"left","nativeSrc":"9639:4:94","nodeType":"YulIdentifier","src":"9639:4:94"},{"arguments":[{"kind":"number","nativeSrc":"9649:3:94","nodeType":"YulLiteral","src":"9649:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"9658:1:94","nodeType":"YulLiteral","src":"9658:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9654:3:94","nodeType":"YulIdentifier","src":"9654:3:94"},"nativeSrc":"9654:6:94","nodeType":"YulFunctionCall","src":"9654:6:94"}],"functionName":{"name":"shl","nativeSrc":"9645:3:94","nodeType":"YulIdentifier","src":"9645:3:94"},"nativeSrc":"9645:16:94","nodeType":"YulFunctionCall","src":"9645:16:94"}],"functionName":{"name":"and","nativeSrc":"9635:3:94","nodeType":"YulIdentifier","src":"9635:3:94"},"nativeSrc":"9635:27:94","nodeType":"YulFunctionCall","src":"9635:27:94"},"variableNames":[{"name":"left","nativeSrc":"9627:4:94","nodeType":"YulIdentifier","src":"9627:4:94"}]},{"nativeSrc":"9675:36:94","nodeType":"YulAssignment","src":"9675:36:94","value":{"arguments":[{"name":"right","nativeSrc":"9688:5:94","nodeType":"YulIdentifier","src":"9688:5:94"},{"arguments":[{"kind":"number","nativeSrc":"9699:2:94","nodeType":"YulLiteral","src":"9699:2:94","type":"","value":"64"},{"arguments":[{"kind":"number","nativeSrc":"9707:1:94","nodeType":"YulLiteral","src":"9707:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9703:3:94","nodeType":"YulIdentifier","src":"9703:3:94"},"nativeSrc":"9703:6:94","nodeType":"YulFunctionCall","src":"9703:6:94"}],"functionName":{"name":"shl","nativeSrc":"9695:3:94","nodeType":"YulIdentifier","src":"9695:3:94"},"nativeSrc":"9695:15:94","nodeType":"YulFunctionCall","src":"9695:15:94"}],"functionName":{"name":"and","nativeSrc":"9684:3:94","nodeType":"YulIdentifier","src":"9684:3:94"},"nativeSrc":"9684:27:94","nodeType":"YulFunctionCall","src":"9684:27:94"},"variableNames":[{"name":"right","nativeSrc":"9675:5:94","nodeType":"YulIdentifier","src":"9675:5:94"}]},{"nativeSrc":"9724:34:94","nodeType":"YulAssignment","src":"9724:34:94","value":{"arguments":[{"name":"left","nativeSrc":"9737:4:94","nodeType":"YulIdentifier","src":"9737:4:94"},{"arguments":[{"kind":"number","nativeSrc":"9747:2:94","nodeType":"YulLiteral","src":"9747:2:94","type":"","value":"64"},{"name":"right","nativeSrc":"9751:5:94","nodeType":"YulIdentifier","src":"9751:5:94"}],"functionName":{"name":"shr","nativeSrc":"9743:3:94","nodeType":"YulIdentifier","src":"9743:3:94"},"nativeSrc":"9743:14:94","nodeType":"YulFunctionCall","src":"9743:14:94"}],"functionName":{"name":"or","nativeSrc":"9734:2:94","nodeType":"YulIdentifier","src":"9734:2:94"},"nativeSrc":"9734:24:94","nodeType":"YulFunctionCall","src":"9734:24:94"},"variableNames":[{"name":"result","nativeSrc":"9724:6:94","nodeType":"YulIdentifier","src":"9724:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27685,"isOffset":false,"isSlot":false,"src":"9627:4:94","valueSize":1},{"declaration":27685,"isOffset":false,"isSlot":false,"src":"9639:4:94","valueSize":1},{"declaration":27685,"isOffset":false,"isSlot":false,"src":"9737:4:94","valueSize":1},{"declaration":27690,"isOffset":false,"isSlot":false,"src":"9724:6:94","valueSize":1},{"declaration":27687,"isOffset":false,"isSlot":false,"src":"9675:5:94","valueSize":1},{"declaration":27687,"isOffset":false,"isSlot":false,"src":"9688:5:94","valueSize":1},{"declaration":27687,"isOffset":false,"isSlot":false,"src":"9751:5:94","valueSize":1}],"flags":["memory-safe"],"id":27692,"nodeType":"InlineAssembly","src":"9588:180:94"}]},"id":27694,"implemented":true,"kind":"function","modifiers":[],"name":"pack_8_24","nameLocation":"9501:9:94","nodeType":"FunctionDefinition","parameters":{"id":27688,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27685,"mutability":"mutable","name":"left","nameLocation":"9518:4:94","nodeType":"VariableDeclaration","scope":27694,"src":"9511:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27684,"name":"bytes8","nodeType":"ElementaryTypeName","src":"9511:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":27687,"mutability":"mutable","name":"right","nameLocation":"9532:5:94","nodeType":"VariableDeclaration","scope":27694,"src":"9524:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":27686,"name":"bytes24","nodeType":"ElementaryTypeName","src":"9524:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"9510:28:94"},"returnParameters":{"id":27691,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27690,"mutability":"mutable","name":"result","nameLocation":"9570:6:94","nodeType":"VariableDeclaration","scope":27694,"src":"9562:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":27689,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9562:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"9561:16:94"},"scope":30945,"src":"9492:282:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27704,"nodeType":"Block","src":"9866:197:94","statements":[{"AST":{"nativeSrc":"9901:156:94","nodeType":"YulBlock","src":"9901:156:94","statements":[{"nativeSrc":"9915:35:94","nodeType":"YulAssignment","src":"9915:35:94","value":{"arguments":[{"name":"left","nativeSrc":"9927:4:94","nodeType":"YulIdentifier","src":"9927:4:94"},{"arguments":[{"kind":"number","nativeSrc":"9937:3:94","nodeType":"YulLiteral","src":"9937:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"9946:1:94","nodeType":"YulLiteral","src":"9946:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9942:3:94","nodeType":"YulIdentifier","src":"9942:3:94"},"nativeSrc":"9942:6:94","nodeType":"YulFunctionCall","src":"9942:6:94"}],"functionName":{"name":"shl","nativeSrc":"9933:3:94","nodeType":"YulIdentifier","src":"9933:3:94"},"nativeSrc":"9933:16:94","nodeType":"YulFunctionCall","src":"9933:16:94"}],"functionName":{"name":"and","nativeSrc":"9923:3:94","nodeType":"YulIdentifier","src":"9923:3:94"},"nativeSrc":"9923:27:94","nodeType":"YulFunctionCall","src":"9923:27:94"},"variableNames":[{"name":"left","nativeSrc":"9915:4:94","nodeType":"YulIdentifier","src":"9915:4:94"}]},{"nativeSrc":"9963:37:94","nodeType":"YulAssignment","src":"9963:37:94","value":{"arguments":[{"name":"right","nativeSrc":"9976:5:94","nodeType":"YulIdentifier","src":"9976:5:94"},{"arguments":[{"kind":"number","nativeSrc":"9987:3:94","nodeType":"YulLiteral","src":"9987:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"9996:1:94","nodeType":"YulLiteral","src":"9996:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9992:3:94","nodeType":"YulIdentifier","src":"9992:3:94"},"nativeSrc":"9992:6:94","nodeType":"YulFunctionCall","src":"9992:6:94"}],"functionName":{"name":"shl","nativeSrc":"9983:3:94","nodeType":"YulIdentifier","src":"9983:3:94"},"nativeSrc":"9983:16:94","nodeType":"YulFunctionCall","src":"9983:16:94"}],"functionName":{"name":"and","nativeSrc":"9972:3:94","nodeType":"YulIdentifier","src":"9972:3:94"},"nativeSrc":"9972:28:94","nodeType":"YulFunctionCall","src":"9972:28:94"},"variableNames":[{"name":"right","nativeSrc":"9963:5:94","nodeType":"YulIdentifier","src":"9963:5:94"}]},{"nativeSrc":"10013:34:94","nodeType":"YulAssignment","src":"10013:34:94","value":{"arguments":[{"name":"left","nativeSrc":"10026:4:94","nodeType":"YulIdentifier","src":"10026:4:94"},{"arguments":[{"kind":"number","nativeSrc":"10036:2:94","nodeType":"YulLiteral","src":"10036:2:94","type":"","value":"80"},{"name":"right","nativeSrc":"10040:5:94","nodeType":"YulIdentifier","src":"10040:5:94"}],"functionName":{"name":"shr","nativeSrc":"10032:3:94","nodeType":"YulIdentifier","src":"10032:3:94"},"nativeSrc":"10032:14:94","nodeType":"YulFunctionCall","src":"10032:14:94"}],"functionName":{"name":"or","nativeSrc":"10023:2:94","nodeType":"YulIdentifier","src":"10023:2:94"},"nativeSrc":"10023:24:94","nodeType":"YulFunctionCall","src":"10023:24:94"},"variableNames":[{"name":"result","nativeSrc":"10013:6:94","nodeType":"YulIdentifier","src":"10013:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27696,"isOffset":false,"isSlot":false,"src":"10026:4:94","valueSize":1},{"declaration":27696,"isOffset":false,"isSlot":false,"src":"9915:4:94","valueSize":1},{"declaration":27696,"isOffset":false,"isSlot":false,"src":"9927:4:94","valueSize":1},{"declaration":27701,"isOffset":false,"isSlot":false,"src":"10013:6:94","valueSize":1},{"declaration":27698,"isOffset":false,"isSlot":false,"src":"10040:5:94","valueSize":1},{"declaration":27698,"isOffset":false,"isSlot":false,"src":"9963:5:94","valueSize":1},{"declaration":27698,"isOffset":false,"isSlot":false,"src":"9976:5:94","valueSize":1}],"flags":["memory-safe"],"id":27703,"nodeType":"InlineAssembly","src":"9876:181:94"}]},"id":27705,"implemented":true,"kind":"function","modifiers":[],"name":"pack_10_2","nameLocation":"9789:9:94","nodeType":"FunctionDefinition","parameters":{"id":27699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27696,"mutability":"mutable","name":"left","nameLocation":"9807:4:94","nodeType":"VariableDeclaration","scope":27705,"src":"9799:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":27695,"name":"bytes10","nodeType":"ElementaryTypeName","src":"9799:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":27698,"mutability":"mutable","name":"right","nameLocation":"9820:5:94","nodeType":"VariableDeclaration","scope":27705,"src":"9813:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27697,"name":"bytes2","nodeType":"ElementaryTypeName","src":"9813:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"9798:28:94"},"returnParameters":{"id":27702,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27701,"mutability":"mutable","name":"result","nameLocation":"9858:6:94","nodeType":"VariableDeclaration","scope":27705,"src":"9850:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27700,"name":"bytes12","nodeType":"ElementaryTypeName","src":"9850:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"9849:16:94"},"scope":30945,"src":"9780:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27715,"nodeType":"Block","src":"10155:197:94","statements":[{"AST":{"nativeSrc":"10190:156:94","nodeType":"YulBlock","src":"10190:156:94","statements":[{"nativeSrc":"10204:35:94","nodeType":"YulAssignment","src":"10204:35:94","value":{"arguments":[{"name":"left","nativeSrc":"10216:4:94","nodeType":"YulIdentifier","src":"10216:4:94"},{"arguments":[{"kind":"number","nativeSrc":"10226:3:94","nodeType":"YulLiteral","src":"10226:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"10235:1:94","nodeType":"YulLiteral","src":"10235:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10231:3:94","nodeType":"YulIdentifier","src":"10231:3:94"},"nativeSrc":"10231:6:94","nodeType":"YulFunctionCall","src":"10231:6:94"}],"functionName":{"name":"shl","nativeSrc":"10222:3:94","nodeType":"YulIdentifier","src":"10222:3:94"},"nativeSrc":"10222:16:94","nodeType":"YulFunctionCall","src":"10222:16:94"}],"functionName":{"name":"and","nativeSrc":"10212:3:94","nodeType":"YulIdentifier","src":"10212:3:94"},"nativeSrc":"10212:27:94","nodeType":"YulFunctionCall","src":"10212:27:94"},"variableNames":[{"name":"left","nativeSrc":"10204:4:94","nodeType":"YulIdentifier","src":"10204:4:94"}]},{"nativeSrc":"10252:37:94","nodeType":"YulAssignment","src":"10252:37:94","value":{"arguments":[{"name":"right","nativeSrc":"10265:5:94","nodeType":"YulIdentifier","src":"10265:5:94"},{"arguments":[{"kind":"number","nativeSrc":"10276:3:94","nodeType":"YulLiteral","src":"10276:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"10285:1:94","nodeType":"YulLiteral","src":"10285:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10281:3:94","nodeType":"YulIdentifier","src":"10281:3:94"},"nativeSrc":"10281:6:94","nodeType":"YulFunctionCall","src":"10281:6:94"}],"functionName":{"name":"shl","nativeSrc":"10272:3:94","nodeType":"YulIdentifier","src":"10272:3:94"},"nativeSrc":"10272:16:94","nodeType":"YulFunctionCall","src":"10272:16:94"}],"functionName":{"name":"and","nativeSrc":"10261:3:94","nodeType":"YulIdentifier","src":"10261:3:94"},"nativeSrc":"10261:28:94","nodeType":"YulFunctionCall","src":"10261:28:94"},"variableNames":[{"name":"right","nativeSrc":"10252:5:94","nodeType":"YulIdentifier","src":"10252:5:94"}]},{"nativeSrc":"10302:34:94","nodeType":"YulAssignment","src":"10302:34:94","value":{"arguments":[{"name":"left","nativeSrc":"10315:4:94","nodeType":"YulIdentifier","src":"10315:4:94"},{"arguments":[{"kind":"number","nativeSrc":"10325:2:94","nodeType":"YulLiteral","src":"10325:2:94","type":"","value":"80"},{"name":"right","nativeSrc":"10329:5:94","nodeType":"YulIdentifier","src":"10329:5:94"}],"functionName":{"name":"shr","nativeSrc":"10321:3:94","nodeType":"YulIdentifier","src":"10321:3:94"},"nativeSrc":"10321:14:94","nodeType":"YulFunctionCall","src":"10321:14:94"}],"functionName":{"name":"or","nativeSrc":"10312:2:94","nodeType":"YulIdentifier","src":"10312:2:94"},"nativeSrc":"10312:24:94","nodeType":"YulFunctionCall","src":"10312:24:94"},"variableNames":[{"name":"result","nativeSrc":"10302:6:94","nodeType":"YulIdentifier","src":"10302:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27707,"isOffset":false,"isSlot":false,"src":"10204:4:94","valueSize":1},{"declaration":27707,"isOffset":false,"isSlot":false,"src":"10216:4:94","valueSize":1},{"declaration":27707,"isOffset":false,"isSlot":false,"src":"10315:4:94","valueSize":1},{"declaration":27712,"isOffset":false,"isSlot":false,"src":"10302:6:94","valueSize":1},{"declaration":27709,"isOffset":false,"isSlot":false,"src":"10252:5:94","valueSize":1},{"declaration":27709,"isOffset":false,"isSlot":false,"src":"10265:5:94","valueSize":1},{"declaration":27709,"isOffset":false,"isSlot":false,"src":"10329:5:94","valueSize":1}],"flags":["memory-safe"],"id":27714,"nodeType":"InlineAssembly","src":"10165:181:94"}]},"id":27716,"implemented":true,"kind":"function","modifiers":[],"name":"pack_10_6","nameLocation":"10078:9:94","nodeType":"FunctionDefinition","parameters":{"id":27710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27707,"mutability":"mutable","name":"left","nameLocation":"10096:4:94","nodeType":"VariableDeclaration","scope":27716,"src":"10088:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":27706,"name":"bytes10","nodeType":"ElementaryTypeName","src":"10088:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":27709,"mutability":"mutable","name":"right","nameLocation":"10109:5:94","nodeType":"VariableDeclaration","scope":27716,"src":"10102:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":27708,"name":"bytes6","nodeType":"ElementaryTypeName","src":"10102:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"10087:28:94"},"returnParameters":{"id":27713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27712,"mutability":"mutable","name":"result","nameLocation":"10147:6:94","nodeType":"VariableDeclaration","scope":27716,"src":"10139:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":27711,"name":"bytes16","nodeType":"ElementaryTypeName","src":"10139:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"10138:16:94"},"scope":30945,"src":"10069:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27726,"nodeType":"Block","src":"10446:197:94","statements":[{"AST":{"nativeSrc":"10481:156:94","nodeType":"YulBlock","src":"10481:156:94","statements":[{"nativeSrc":"10495:35:94","nodeType":"YulAssignment","src":"10495:35:94","value":{"arguments":[{"name":"left","nativeSrc":"10507:4:94","nodeType":"YulIdentifier","src":"10507:4:94"},{"arguments":[{"kind":"number","nativeSrc":"10517:3:94","nodeType":"YulLiteral","src":"10517:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"10526:1:94","nodeType":"YulLiteral","src":"10526:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10522:3:94","nodeType":"YulIdentifier","src":"10522:3:94"},"nativeSrc":"10522:6:94","nodeType":"YulFunctionCall","src":"10522:6:94"}],"functionName":{"name":"shl","nativeSrc":"10513:3:94","nodeType":"YulIdentifier","src":"10513:3:94"},"nativeSrc":"10513:16:94","nodeType":"YulFunctionCall","src":"10513:16:94"}],"functionName":{"name":"and","nativeSrc":"10503:3:94","nodeType":"YulIdentifier","src":"10503:3:94"},"nativeSrc":"10503:27:94","nodeType":"YulFunctionCall","src":"10503:27:94"},"variableNames":[{"name":"left","nativeSrc":"10495:4:94","nodeType":"YulIdentifier","src":"10495:4:94"}]},{"nativeSrc":"10543:37:94","nodeType":"YulAssignment","src":"10543:37:94","value":{"arguments":[{"name":"right","nativeSrc":"10556:5:94","nodeType":"YulIdentifier","src":"10556:5:94"},{"arguments":[{"kind":"number","nativeSrc":"10567:3:94","nodeType":"YulLiteral","src":"10567:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"10576:1:94","nodeType":"YulLiteral","src":"10576:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10572:3:94","nodeType":"YulIdentifier","src":"10572:3:94"},"nativeSrc":"10572:6:94","nodeType":"YulFunctionCall","src":"10572:6:94"}],"functionName":{"name":"shl","nativeSrc":"10563:3:94","nodeType":"YulIdentifier","src":"10563:3:94"},"nativeSrc":"10563:16:94","nodeType":"YulFunctionCall","src":"10563:16:94"}],"functionName":{"name":"and","nativeSrc":"10552:3:94","nodeType":"YulIdentifier","src":"10552:3:94"},"nativeSrc":"10552:28:94","nodeType":"YulFunctionCall","src":"10552:28:94"},"variableNames":[{"name":"right","nativeSrc":"10543:5:94","nodeType":"YulIdentifier","src":"10543:5:94"}]},{"nativeSrc":"10593:34:94","nodeType":"YulAssignment","src":"10593:34:94","value":{"arguments":[{"name":"left","nativeSrc":"10606:4:94","nodeType":"YulIdentifier","src":"10606:4:94"},{"arguments":[{"kind":"number","nativeSrc":"10616:2:94","nodeType":"YulLiteral","src":"10616:2:94","type":"","value":"80"},{"name":"right","nativeSrc":"10620:5:94","nodeType":"YulIdentifier","src":"10620:5:94"}],"functionName":{"name":"shr","nativeSrc":"10612:3:94","nodeType":"YulIdentifier","src":"10612:3:94"},"nativeSrc":"10612:14:94","nodeType":"YulFunctionCall","src":"10612:14:94"}],"functionName":{"name":"or","nativeSrc":"10603:2:94","nodeType":"YulIdentifier","src":"10603:2:94"},"nativeSrc":"10603:24:94","nodeType":"YulFunctionCall","src":"10603:24:94"},"variableNames":[{"name":"result","nativeSrc":"10593:6:94","nodeType":"YulIdentifier","src":"10593:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27718,"isOffset":false,"isSlot":false,"src":"10495:4:94","valueSize":1},{"declaration":27718,"isOffset":false,"isSlot":false,"src":"10507:4:94","valueSize":1},{"declaration":27718,"isOffset":false,"isSlot":false,"src":"10606:4:94","valueSize":1},{"declaration":27723,"isOffset":false,"isSlot":false,"src":"10593:6:94","valueSize":1},{"declaration":27720,"isOffset":false,"isSlot":false,"src":"10543:5:94","valueSize":1},{"declaration":27720,"isOffset":false,"isSlot":false,"src":"10556:5:94","valueSize":1},{"declaration":27720,"isOffset":false,"isSlot":false,"src":"10620:5:94","valueSize":1}],"flags":["memory-safe"],"id":27725,"nodeType":"InlineAssembly","src":"10456:181:94"}]},"id":27727,"implemented":true,"kind":"function","modifiers":[],"name":"pack_10_10","nameLocation":"10367:10:94","nodeType":"FunctionDefinition","parameters":{"id":27721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27718,"mutability":"mutable","name":"left","nameLocation":"10386:4:94","nodeType":"VariableDeclaration","scope":27727,"src":"10378:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":27717,"name":"bytes10","nodeType":"ElementaryTypeName","src":"10378:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":27720,"mutability":"mutable","name":"right","nameLocation":"10400:5:94","nodeType":"VariableDeclaration","scope":27727,"src":"10392:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":27719,"name":"bytes10","nodeType":"ElementaryTypeName","src":"10392:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"10377:29:94"},"returnParameters":{"id":27724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27723,"mutability":"mutable","name":"result","nameLocation":"10438:6:94","nodeType":"VariableDeclaration","scope":27727,"src":"10430:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":27722,"name":"bytes20","nodeType":"ElementaryTypeName","src":"10430:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"10429:16:94"},"scope":30945,"src":"10358:285:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27737,"nodeType":"Block","src":"10737:197:94","statements":[{"AST":{"nativeSrc":"10772:156:94","nodeType":"YulBlock","src":"10772:156:94","statements":[{"nativeSrc":"10786:35:94","nodeType":"YulAssignment","src":"10786:35:94","value":{"arguments":[{"name":"left","nativeSrc":"10798:4:94","nodeType":"YulIdentifier","src":"10798:4:94"},{"arguments":[{"kind":"number","nativeSrc":"10808:3:94","nodeType":"YulLiteral","src":"10808:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"10817:1:94","nodeType":"YulLiteral","src":"10817:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10813:3:94","nodeType":"YulIdentifier","src":"10813:3:94"},"nativeSrc":"10813:6:94","nodeType":"YulFunctionCall","src":"10813:6:94"}],"functionName":{"name":"shl","nativeSrc":"10804:3:94","nodeType":"YulIdentifier","src":"10804:3:94"},"nativeSrc":"10804:16:94","nodeType":"YulFunctionCall","src":"10804:16:94"}],"functionName":{"name":"and","nativeSrc":"10794:3:94","nodeType":"YulIdentifier","src":"10794:3:94"},"nativeSrc":"10794:27:94","nodeType":"YulFunctionCall","src":"10794:27:94"},"variableNames":[{"name":"left","nativeSrc":"10786:4:94","nodeType":"YulIdentifier","src":"10786:4:94"}]},{"nativeSrc":"10834:37:94","nodeType":"YulAssignment","src":"10834:37:94","value":{"arguments":[{"name":"right","nativeSrc":"10847:5:94","nodeType":"YulIdentifier","src":"10847:5:94"},{"arguments":[{"kind":"number","nativeSrc":"10858:3:94","nodeType":"YulLiteral","src":"10858:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"10867:1:94","nodeType":"YulLiteral","src":"10867:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10863:3:94","nodeType":"YulIdentifier","src":"10863:3:94"},"nativeSrc":"10863:6:94","nodeType":"YulFunctionCall","src":"10863:6:94"}],"functionName":{"name":"shl","nativeSrc":"10854:3:94","nodeType":"YulIdentifier","src":"10854:3:94"},"nativeSrc":"10854:16:94","nodeType":"YulFunctionCall","src":"10854:16:94"}],"functionName":{"name":"and","nativeSrc":"10843:3:94","nodeType":"YulIdentifier","src":"10843:3:94"},"nativeSrc":"10843:28:94","nodeType":"YulFunctionCall","src":"10843:28:94"},"variableNames":[{"name":"right","nativeSrc":"10834:5:94","nodeType":"YulIdentifier","src":"10834:5:94"}]},{"nativeSrc":"10884:34:94","nodeType":"YulAssignment","src":"10884:34:94","value":{"arguments":[{"name":"left","nativeSrc":"10897:4:94","nodeType":"YulIdentifier","src":"10897:4:94"},{"arguments":[{"kind":"number","nativeSrc":"10907:2:94","nodeType":"YulLiteral","src":"10907:2:94","type":"","value":"80"},{"name":"right","nativeSrc":"10911:5:94","nodeType":"YulIdentifier","src":"10911:5:94"}],"functionName":{"name":"shr","nativeSrc":"10903:3:94","nodeType":"YulIdentifier","src":"10903:3:94"},"nativeSrc":"10903:14:94","nodeType":"YulFunctionCall","src":"10903:14:94"}],"functionName":{"name":"or","nativeSrc":"10894:2:94","nodeType":"YulIdentifier","src":"10894:2:94"},"nativeSrc":"10894:24:94","nodeType":"YulFunctionCall","src":"10894:24:94"},"variableNames":[{"name":"result","nativeSrc":"10884:6:94","nodeType":"YulIdentifier","src":"10884:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27729,"isOffset":false,"isSlot":false,"src":"10786:4:94","valueSize":1},{"declaration":27729,"isOffset":false,"isSlot":false,"src":"10798:4:94","valueSize":1},{"declaration":27729,"isOffset":false,"isSlot":false,"src":"10897:4:94","valueSize":1},{"declaration":27734,"isOffset":false,"isSlot":false,"src":"10884:6:94","valueSize":1},{"declaration":27731,"isOffset":false,"isSlot":false,"src":"10834:5:94","valueSize":1},{"declaration":27731,"isOffset":false,"isSlot":false,"src":"10847:5:94","valueSize":1},{"declaration":27731,"isOffset":false,"isSlot":false,"src":"10911:5:94","valueSize":1}],"flags":["memory-safe"],"id":27736,"nodeType":"InlineAssembly","src":"10747:181:94"}]},"id":27738,"implemented":true,"kind":"function","modifiers":[],"name":"pack_10_12","nameLocation":"10658:10:94","nodeType":"FunctionDefinition","parameters":{"id":27732,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27729,"mutability":"mutable","name":"left","nameLocation":"10677:4:94","nodeType":"VariableDeclaration","scope":27738,"src":"10669:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":27728,"name":"bytes10","nodeType":"ElementaryTypeName","src":"10669:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":27731,"mutability":"mutable","name":"right","nameLocation":"10691:5:94","nodeType":"VariableDeclaration","scope":27738,"src":"10683:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27730,"name":"bytes12","nodeType":"ElementaryTypeName","src":"10683:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"10668:29:94"},"returnParameters":{"id":27735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27734,"mutability":"mutable","name":"result","nameLocation":"10729:6:94","nodeType":"VariableDeclaration","scope":27738,"src":"10721:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":27733,"name":"bytes22","nodeType":"ElementaryTypeName","src":"10721:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"10720:16:94"},"scope":30945,"src":"10649:285:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27748,"nodeType":"Block","src":"11028:196:94","statements":[{"AST":{"nativeSrc":"11063:155:94","nodeType":"YulBlock","src":"11063:155:94","statements":[{"nativeSrc":"11077:35:94","nodeType":"YulAssignment","src":"11077:35:94","value":{"arguments":[{"name":"left","nativeSrc":"11089:4:94","nodeType":"YulIdentifier","src":"11089:4:94"},{"arguments":[{"kind":"number","nativeSrc":"11099:3:94","nodeType":"YulLiteral","src":"11099:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"11108:1:94","nodeType":"YulLiteral","src":"11108:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"11104:3:94","nodeType":"YulIdentifier","src":"11104:3:94"},"nativeSrc":"11104:6:94","nodeType":"YulFunctionCall","src":"11104:6:94"}],"functionName":{"name":"shl","nativeSrc":"11095:3:94","nodeType":"YulIdentifier","src":"11095:3:94"},"nativeSrc":"11095:16:94","nodeType":"YulFunctionCall","src":"11095:16:94"}],"functionName":{"name":"and","nativeSrc":"11085:3:94","nodeType":"YulIdentifier","src":"11085:3:94"},"nativeSrc":"11085:27:94","nodeType":"YulFunctionCall","src":"11085:27:94"},"variableNames":[{"name":"left","nativeSrc":"11077:4:94","nodeType":"YulIdentifier","src":"11077:4:94"}]},{"nativeSrc":"11125:36:94","nodeType":"YulAssignment","src":"11125:36:94","value":{"arguments":[{"name":"right","nativeSrc":"11138:5:94","nodeType":"YulIdentifier","src":"11138:5:94"},{"arguments":[{"kind":"number","nativeSrc":"11149:2:94","nodeType":"YulLiteral","src":"11149:2:94","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"11157:1:94","nodeType":"YulLiteral","src":"11157:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"11153:3:94","nodeType":"YulIdentifier","src":"11153:3:94"},"nativeSrc":"11153:6:94","nodeType":"YulFunctionCall","src":"11153:6:94"}],"functionName":{"name":"shl","nativeSrc":"11145:3:94","nodeType":"YulIdentifier","src":"11145:3:94"},"nativeSrc":"11145:15:94","nodeType":"YulFunctionCall","src":"11145:15:94"}],"functionName":{"name":"and","nativeSrc":"11134:3:94","nodeType":"YulIdentifier","src":"11134:3:94"},"nativeSrc":"11134:27:94","nodeType":"YulFunctionCall","src":"11134:27:94"},"variableNames":[{"name":"right","nativeSrc":"11125:5:94","nodeType":"YulIdentifier","src":"11125:5:94"}]},{"nativeSrc":"11174:34:94","nodeType":"YulAssignment","src":"11174:34:94","value":{"arguments":[{"name":"left","nativeSrc":"11187:4:94","nodeType":"YulIdentifier","src":"11187:4:94"},{"arguments":[{"kind":"number","nativeSrc":"11197:2:94","nodeType":"YulLiteral","src":"11197:2:94","type":"","value":"80"},{"name":"right","nativeSrc":"11201:5:94","nodeType":"YulIdentifier","src":"11201:5:94"}],"functionName":{"name":"shr","nativeSrc":"11193:3:94","nodeType":"YulIdentifier","src":"11193:3:94"},"nativeSrc":"11193:14:94","nodeType":"YulFunctionCall","src":"11193:14:94"}],"functionName":{"name":"or","nativeSrc":"11184:2:94","nodeType":"YulIdentifier","src":"11184:2:94"},"nativeSrc":"11184:24:94","nodeType":"YulFunctionCall","src":"11184:24:94"},"variableNames":[{"name":"result","nativeSrc":"11174:6:94","nodeType":"YulIdentifier","src":"11174:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27740,"isOffset":false,"isSlot":false,"src":"11077:4:94","valueSize":1},{"declaration":27740,"isOffset":false,"isSlot":false,"src":"11089:4:94","valueSize":1},{"declaration":27740,"isOffset":false,"isSlot":false,"src":"11187:4:94","valueSize":1},{"declaration":27745,"isOffset":false,"isSlot":false,"src":"11174:6:94","valueSize":1},{"declaration":27742,"isOffset":false,"isSlot":false,"src":"11125:5:94","valueSize":1},{"declaration":27742,"isOffset":false,"isSlot":false,"src":"11138:5:94","valueSize":1},{"declaration":27742,"isOffset":false,"isSlot":false,"src":"11201:5:94","valueSize":1}],"flags":["memory-safe"],"id":27747,"nodeType":"InlineAssembly","src":"11038:180:94"}]},"id":27749,"implemented":true,"kind":"function","modifiers":[],"name":"pack_10_22","nameLocation":"10949:10:94","nodeType":"FunctionDefinition","parameters":{"id":27743,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27740,"mutability":"mutable","name":"left","nameLocation":"10968:4:94","nodeType":"VariableDeclaration","scope":27749,"src":"10960:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":27739,"name":"bytes10","nodeType":"ElementaryTypeName","src":"10960:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":27742,"mutability":"mutable","name":"right","nameLocation":"10982:5:94","nodeType":"VariableDeclaration","scope":27749,"src":"10974:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":27741,"name":"bytes22","nodeType":"ElementaryTypeName","src":"10974:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"10959:29:94"},"returnParameters":{"id":27746,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27745,"mutability":"mutable","name":"result","nameLocation":"11020:6:94","nodeType":"VariableDeclaration","scope":27749,"src":"11012:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":27744,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11012:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"11011:16:94"},"scope":30945,"src":"10940:284:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27759,"nodeType":"Block","src":"11316:197:94","statements":[{"AST":{"nativeSrc":"11351:156:94","nodeType":"YulBlock","src":"11351:156:94","statements":[{"nativeSrc":"11365:35:94","nodeType":"YulAssignment","src":"11365:35:94","value":{"arguments":[{"name":"left","nativeSrc":"11377:4:94","nodeType":"YulIdentifier","src":"11377:4:94"},{"arguments":[{"kind":"number","nativeSrc":"11387:3:94","nodeType":"YulLiteral","src":"11387:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"11396:1:94","nodeType":"YulLiteral","src":"11396:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"11392:3:94","nodeType":"YulIdentifier","src":"11392:3:94"},"nativeSrc":"11392:6:94","nodeType":"YulFunctionCall","src":"11392:6:94"}],"functionName":{"name":"shl","nativeSrc":"11383:3:94","nodeType":"YulIdentifier","src":"11383:3:94"},"nativeSrc":"11383:16:94","nodeType":"YulFunctionCall","src":"11383:16:94"}],"functionName":{"name":"and","nativeSrc":"11373:3:94","nodeType":"YulIdentifier","src":"11373:3:94"},"nativeSrc":"11373:27:94","nodeType":"YulFunctionCall","src":"11373:27:94"},"variableNames":[{"name":"left","nativeSrc":"11365:4:94","nodeType":"YulIdentifier","src":"11365:4:94"}]},{"nativeSrc":"11413:37:94","nodeType":"YulAssignment","src":"11413:37:94","value":{"arguments":[{"name":"right","nativeSrc":"11426:5:94","nodeType":"YulIdentifier","src":"11426:5:94"},{"arguments":[{"kind":"number","nativeSrc":"11437:3:94","nodeType":"YulLiteral","src":"11437:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"11446:1:94","nodeType":"YulLiteral","src":"11446:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"11442:3:94","nodeType":"YulIdentifier","src":"11442:3:94"},"nativeSrc":"11442:6:94","nodeType":"YulFunctionCall","src":"11442:6:94"}],"functionName":{"name":"shl","nativeSrc":"11433:3:94","nodeType":"YulIdentifier","src":"11433:3:94"},"nativeSrc":"11433:16:94","nodeType":"YulFunctionCall","src":"11433:16:94"}],"functionName":{"name":"and","nativeSrc":"11422:3:94","nodeType":"YulIdentifier","src":"11422:3:94"},"nativeSrc":"11422:28:94","nodeType":"YulFunctionCall","src":"11422:28:94"},"variableNames":[{"name":"right","nativeSrc":"11413:5:94","nodeType":"YulIdentifier","src":"11413:5:94"}]},{"nativeSrc":"11463:34:94","nodeType":"YulAssignment","src":"11463:34:94","value":{"arguments":[{"name":"left","nativeSrc":"11476:4:94","nodeType":"YulIdentifier","src":"11476:4:94"},{"arguments":[{"kind":"number","nativeSrc":"11486:2:94","nodeType":"YulLiteral","src":"11486:2:94","type":"","value":"96"},{"name":"right","nativeSrc":"11490:5:94","nodeType":"YulIdentifier","src":"11490:5:94"}],"functionName":{"name":"shr","nativeSrc":"11482:3:94","nodeType":"YulIdentifier","src":"11482:3:94"},"nativeSrc":"11482:14:94","nodeType":"YulFunctionCall","src":"11482:14:94"}],"functionName":{"name":"or","nativeSrc":"11473:2:94","nodeType":"YulIdentifier","src":"11473:2:94"},"nativeSrc":"11473:24:94","nodeType":"YulFunctionCall","src":"11473:24:94"},"variableNames":[{"name":"result","nativeSrc":"11463:6:94","nodeType":"YulIdentifier","src":"11463:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27751,"isOffset":false,"isSlot":false,"src":"11365:4:94","valueSize":1},{"declaration":27751,"isOffset":false,"isSlot":false,"src":"11377:4:94","valueSize":1},{"declaration":27751,"isOffset":false,"isSlot":false,"src":"11476:4:94","valueSize":1},{"declaration":27756,"isOffset":false,"isSlot":false,"src":"11463:6:94","valueSize":1},{"declaration":27753,"isOffset":false,"isSlot":false,"src":"11413:5:94","valueSize":1},{"declaration":27753,"isOffset":false,"isSlot":false,"src":"11426:5:94","valueSize":1},{"declaration":27753,"isOffset":false,"isSlot":false,"src":"11490:5:94","valueSize":1}],"flags":["memory-safe"],"id":27758,"nodeType":"InlineAssembly","src":"11326:181:94"}]},"id":27760,"implemented":true,"kind":"function","modifiers":[],"name":"pack_12_4","nameLocation":"11239:9:94","nodeType":"FunctionDefinition","parameters":{"id":27754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27751,"mutability":"mutable","name":"left","nameLocation":"11257:4:94","nodeType":"VariableDeclaration","scope":27760,"src":"11249:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27750,"name":"bytes12","nodeType":"ElementaryTypeName","src":"11249:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":27753,"mutability":"mutable","name":"right","nameLocation":"11270:5:94","nodeType":"VariableDeclaration","scope":27760,"src":"11263:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27752,"name":"bytes4","nodeType":"ElementaryTypeName","src":"11263:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"11248:28:94"},"returnParameters":{"id":27757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27756,"mutability":"mutable","name":"result","nameLocation":"11308:6:94","nodeType":"VariableDeclaration","scope":27760,"src":"11300:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":27755,"name":"bytes16","nodeType":"ElementaryTypeName","src":"11300:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"11299:16:94"},"scope":30945,"src":"11230:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27770,"nodeType":"Block","src":"11605:197:94","statements":[{"AST":{"nativeSrc":"11640:156:94","nodeType":"YulBlock","src":"11640:156:94","statements":[{"nativeSrc":"11654:35:94","nodeType":"YulAssignment","src":"11654:35:94","value":{"arguments":[{"name":"left","nativeSrc":"11666:4:94","nodeType":"YulIdentifier","src":"11666:4:94"},{"arguments":[{"kind":"number","nativeSrc":"11676:3:94","nodeType":"YulLiteral","src":"11676:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"11685:1:94","nodeType":"YulLiteral","src":"11685:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"11681:3:94","nodeType":"YulIdentifier","src":"11681:3:94"},"nativeSrc":"11681:6:94","nodeType":"YulFunctionCall","src":"11681:6:94"}],"functionName":{"name":"shl","nativeSrc":"11672:3:94","nodeType":"YulIdentifier","src":"11672:3:94"},"nativeSrc":"11672:16:94","nodeType":"YulFunctionCall","src":"11672:16:94"}],"functionName":{"name":"and","nativeSrc":"11662:3:94","nodeType":"YulIdentifier","src":"11662:3:94"},"nativeSrc":"11662:27:94","nodeType":"YulFunctionCall","src":"11662:27:94"},"variableNames":[{"name":"left","nativeSrc":"11654:4:94","nodeType":"YulIdentifier","src":"11654:4:94"}]},{"nativeSrc":"11702:37:94","nodeType":"YulAssignment","src":"11702:37:94","value":{"arguments":[{"name":"right","nativeSrc":"11715:5:94","nodeType":"YulIdentifier","src":"11715:5:94"},{"arguments":[{"kind":"number","nativeSrc":"11726:3:94","nodeType":"YulLiteral","src":"11726:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"11735:1:94","nodeType":"YulLiteral","src":"11735:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"11731:3:94","nodeType":"YulIdentifier","src":"11731:3:94"},"nativeSrc":"11731:6:94","nodeType":"YulFunctionCall","src":"11731:6:94"}],"functionName":{"name":"shl","nativeSrc":"11722:3:94","nodeType":"YulIdentifier","src":"11722:3:94"},"nativeSrc":"11722:16:94","nodeType":"YulFunctionCall","src":"11722:16:94"}],"functionName":{"name":"and","nativeSrc":"11711:3:94","nodeType":"YulIdentifier","src":"11711:3:94"},"nativeSrc":"11711:28:94","nodeType":"YulFunctionCall","src":"11711:28:94"},"variableNames":[{"name":"right","nativeSrc":"11702:5:94","nodeType":"YulIdentifier","src":"11702:5:94"}]},{"nativeSrc":"11752:34:94","nodeType":"YulAssignment","src":"11752:34:94","value":{"arguments":[{"name":"left","nativeSrc":"11765:4:94","nodeType":"YulIdentifier","src":"11765:4:94"},{"arguments":[{"kind":"number","nativeSrc":"11775:2:94","nodeType":"YulLiteral","src":"11775:2:94","type":"","value":"96"},{"name":"right","nativeSrc":"11779:5:94","nodeType":"YulIdentifier","src":"11779:5:94"}],"functionName":{"name":"shr","nativeSrc":"11771:3:94","nodeType":"YulIdentifier","src":"11771:3:94"},"nativeSrc":"11771:14:94","nodeType":"YulFunctionCall","src":"11771:14:94"}],"functionName":{"name":"or","nativeSrc":"11762:2:94","nodeType":"YulIdentifier","src":"11762:2:94"},"nativeSrc":"11762:24:94","nodeType":"YulFunctionCall","src":"11762:24:94"},"variableNames":[{"name":"result","nativeSrc":"11752:6:94","nodeType":"YulIdentifier","src":"11752:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27762,"isOffset":false,"isSlot":false,"src":"11654:4:94","valueSize":1},{"declaration":27762,"isOffset":false,"isSlot":false,"src":"11666:4:94","valueSize":1},{"declaration":27762,"isOffset":false,"isSlot":false,"src":"11765:4:94","valueSize":1},{"declaration":27767,"isOffset":false,"isSlot":false,"src":"11752:6:94","valueSize":1},{"declaration":27764,"isOffset":false,"isSlot":false,"src":"11702:5:94","valueSize":1},{"declaration":27764,"isOffset":false,"isSlot":false,"src":"11715:5:94","valueSize":1},{"declaration":27764,"isOffset":false,"isSlot":false,"src":"11779:5:94","valueSize":1}],"flags":["memory-safe"],"id":27769,"nodeType":"InlineAssembly","src":"11615:181:94"}]},"id":27771,"implemented":true,"kind":"function","modifiers":[],"name":"pack_12_8","nameLocation":"11528:9:94","nodeType":"FunctionDefinition","parameters":{"id":27765,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27762,"mutability":"mutable","name":"left","nameLocation":"11546:4:94","nodeType":"VariableDeclaration","scope":27771,"src":"11538:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27761,"name":"bytes12","nodeType":"ElementaryTypeName","src":"11538:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":27764,"mutability":"mutable","name":"right","nameLocation":"11559:5:94","nodeType":"VariableDeclaration","scope":27771,"src":"11552:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27763,"name":"bytes8","nodeType":"ElementaryTypeName","src":"11552:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"11537:28:94"},"returnParameters":{"id":27768,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27767,"mutability":"mutable","name":"result","nameLocation":"11597:6:94","nodeType":"VariableDeclaration","scope":27771,"src":"11589:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":27766,"name":"bytes20","nodeType":"ElementaryTypeName","src":"11589:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"11588:16:94"},"scope":30945,"src":"11519:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27781,"nodeType":"Block","src":"11896:197:94","statements":[{"AST":{"nativeSrc":"11931:156:94","nodeType":"YulBlock","src":"11931:156:94","statements":[{"nativeSrc":"11945:35:94","nodeType":"YulAssignment","src":"11945:35:94","value":{"arguments":[{"name":"left","nativeSrc":"11957:4:94","nodeType":"YulIdentifier","src":"11957:4:94"},{"arguments":[{"kind":"number","nativeSrc":"11967:3:94","nodeType":"YulLiteral","src":"11967:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"11976:1:94","nodeType":"YulLiteral","src":"11976:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"11972:3:94","nodeType":"YulIdentifier","src":"11972:3:94"},"nativeSrc":"11972:6:94","nodeType":"YulFunctionCall","src":"11972:6:94"}],"functionName":{"name":"shl","nativeSrc":"11963:3:94","nodeType":"YulIdentifier","src":"11963:3:94"},"nativeSrc":"11963:16:94","nodeType":"YulFunctionCall","src":"11963:16:94"}],"functionName":{"name":"and","nativeSrc":"11953:3:94","nodeType":"YulIdentifier","src":"11953:3:94"},"nativeSrc":"11953:27:94","nodeType":"YulFunctionCall","src":"11953:27:94"},"variableNames":[{"name":"left","nativeSrc":"11945:4:94","nodeType":"YulIdentifier","src":"11945:4:94"}]},{"nativeSrc":"11993:37:94","nodeType":"YulAssignment","src":"11993:37:94","value":{"arguments":[{"name":"right","nativeSrc":"12006:5:94","nodeType":"YulIdentifier","src":"12006:5:94"},{"arguments":[{"kind":"number","nativeSrc":"12017:3:94","nodeType":"YulLiteral","src":"12017:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"12026:1:94","nodeType":"YulLiteral","src":"12026:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"12022:3:94","nodeType":"YulIdentifier","src":"12022:3:94"},"nativeSrc":"12022:6:94","nodeType":"YulFunctionCall","src":"12022:6:94"}],"functionName":{"name":"shl","nativeSrc":"12013:3:94","nodeType":"YulIdentifier","src":"12013:3:94"},"nativeSrc":"12013:16:94","nodeType":"YulFunctionCall","src":"12013:16:94"}],"functionName":{"name":"and","nativeSrc":"12002:3:94","nodeType":"YulIdentifier","src":"12002:3:94"},"nativeSrc":"12002:28:94","nodeType":"YulFunctionCall","src":"12002:28:94"},"variableNames":[{"name":"right","nativeSrc":"11993:5:94","nodeType":"YulIdentifier","src":"11993:5:94"}]},{"nativeSrc":"12043:34:94","nodeType":"YulAssignment","src":"12043:34:94","value":{"arguments":[{"name":"left","nativeSrc":"12056:4:94","nodeType":"YulIdentifier","src":"12056:4:94"},{"arguments":[{"kind":"number","nativeSrc":"12066:2:94","nodeType":"YulLiteral","src":"12066:2:94","type":"","value":"96"},{"name":"right","nativeSrc":"12070:5:94","nodeType":"YulIdentifier","src":"12070:5:94"}],"functionName":{"name":"shr","nativeSrc":"12062:3:94","nodeType":"YulIdentifier","src":"12062:3:94"},"nativeSrc":"12062:14:94","nodeType":"YulFunctionCall","src":"12062:14:94"}],"functionName":{"name":"or","nativeSrc":"12053:2:94","nodeType":"YulIdentifier","src":"12053:2:94"},"nativeSrc":"12053:24:94","nodeType":"YulFunctionCall","src":"12053:24:94"},"variableNames":[{"name":"result","nativeSrc":"12043:6:94","nodeType":"YulIdentifier","src":"12043:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27773,"isOffset":false,"isSlot":false,"src":"11945:4:94","valueSize":1},{"declaration":27773,"isOffset":false,"isSlot":false,"src":"11957:4:94","valueSize":1},{"declaration":27773,"isOffset":false,"isSlot":false,"src":"12056:4:94","valueSize":1},{"declaration":27778,"isOffset":false,"isSlot":false,"src":"12043:6:94","valueSize":1},{"declaration":27775,"isOffset":false,"isSlot":false,"src":"11993:5:94","valueSize":1},{"declaration":27775,"isOffset":false,"isSlot":false,"src":"12006:5:94","valueSize":1},{"declaration":27775,"isOffset":false,"isSlot":false,"src":"12070:5:94","valueSize":1}],"flags":["memory-safe"],"id":27780,"nodeType":"InlineAssembly","src":"11906:181:94"}]},"id":27782,"implemented":true,"kind":"function","modifiers":[],"name":"pack_12_10","nameLocation":"11817:10:94","nodeType":"FunctionDefinition","parameters":{"id":27776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27773,"mutability":"mutable","name":"left","nameLocation":"11836:4:94","nodeType":"VariableDeclaration","scope":27782,"src":"11828:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27772,"name":"bytes12","nodeType":"ElementaryTypeName","src":"11828:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":27775,"mutability":"mutable","name":"right","nameLocation":"11850:5:94","nodeType":"VariableDeclaration","scope":27782,"src":"11842:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":27774,"name":"bytes10","nodeType":"ElementaryTypeName","src":"11842:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"11827:29:94"},"returnParameters":{"id":27779,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27778,"mutability":"mutable","name":"result","nameLocation":"11888:6:94","nodeType":"VariableDeclaration","scope":27782,"src":"11880:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":27777,"name":"bytes22","nodeType":"ElementaryTypeName","src":"11880:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"11879:16:94"},"scope":30945,"src":"11808:285:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27792,"nodeType":"Block","src":"12187:197:94","statements":[{"AST":{"nativeSrc":"12222:156:94","nodeType":"YulBlock","src":"12222:156:94","statements":[{"nativeSrc":"12236:35:94","nodeType":"YulAssignment","src":"12236:35:94","value":{"arguments":[{"name":"left","nativeSrc":"12248:4:94","nodeType":"YulIdentifier","src":"12248:4:94"},{"arguments":[{"kind":"number","nativeSrc":"12258:3:94","nodeType":"YulLiteral","src":"12258:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"12267:1:94","nodeType":"YulLiteral","src":"12267:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"12263:3:94","nodeType":"YulIdentifier","src":"12263:3:94"},"nativeSrc":"12263:6:94","nodeType":"YulFunctionCall","src":"12263:6:94"}],"functionName":{"name":"shl","nativeSrc":"12254:3:94","nodeType":"YulIdentifier","src":"12254:3:94"},"nativeSrc":"12254:16:94","nodeType":"YulFunctionCall","src":"12254:16:94"}],"functionName":{"name":"and","nativeSrc":"12244:3:94","nodeType":"YulIdentifier","src":"12244:3:94"},"nativeSrc":"12244:27:94","nodeType":"YulFunctionCall","src":"12244:27:94"},"variableNames":[{"name":"left","nativeSrc":"12236:4:94","nodeType":"YulIdentifier","src":"12236:4:94"}]},{"nativeSrc":"12284:37:94","nodeType":"YulAssignment","src":"12284:37:94","value":{"arguments":[{"name":"right","nativeSrc":"12297:5:94","nodeType":"YulIdentifier","src":"12297:5:94"},{"arguments":[{"kind":"number","nativeSrc":"12308:3:94","nodeType":"YulLiteral","src":"12308:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"12317:1:94","nodeType":"YulLiteral","src":"12317:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"12313:3:94","nodeType":"YulIdentifier","src":"12313:3:94"},"nativeSrc":"12313:6:94","nodeType":"YulFunctionCall","src":"12313:6:94"}],"functionName":{"name":"shl","nativeSrc":"12304:3:94","nodeType":"YulIdentifier","src":"12304:3:94"},"nativeSrc":"12304:16:94","nodeType":"YulFunctionCall","src":"12304:16:94"}],"functionName":{"name":"and","nativeSrc":"12293:3:94","nodeType":"YulIdentifier","src":"12293:3:94"},"nativeSrc":"12293:28:94","nodeType":"YulFunctionCall","src":"12293:28:94"},"variableNames":[{"name":"right","nativeSrc":"12284:5:94","nodeType":"YulIdentifier","src":"12284:5:94"}]},{"nativeSrc":"12334:34:94","nodeType":"YulAssignment","src":"12334:34:94","value":{"arguments":[{"name":"left","nativeSrc":"12347:4:94","nodeType":"YulIdentifier","src":"12347:4:94"},{"arguments":[{"kind":"number","nativeSrc":"12357:2:94","nodeType":"YulLiteral","src":"12357:2:94","type":"","value":"96"},{"name":"right","nativeSrc":"12361:5:94","nodeType":"YulIdentifier","src":"12361:5:94"}],"functionName":{"name":"shr","nativeSrc":"12353:3:94","nodeType":"YulIdentifier","src":"12353:3:94"},"nativeSrc":"12353:14:94","nodeType":"YulFunctionCall","src":"12353:14:94"}],"functionName":{"name":"or","nativeSrc":"12344:2:94","nodeType":"YulIdentifier","src":"12344:2:94"},"nativeSrc":"12344:24:94","nodeType":"YulFunctionCall","src":"12344:24:94"},"variableNames":[{"name":"result","nativeSrc":"12334:6:94","nodeType":"YulIdentifier","src":"12334:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27784,"isOffset":false,"isSlot":false,"src":"12236:4:94","valueSize":1},{"declaration":27784,"isOffset":false,"isSlot":false,"src":"12248:4:94","valueSize":1},{"declaration":27784,"isOffset":false,"isSlot":false,"src":"12347:4:94","valueSize":1},{"declaration":27789,"isOffset":false,"isSlot":false,"src":"12334:6:94","valueSize":1},{"declaration":27786,"isOffset":false,"isSlot":false,"src":"12284:5:94","valueSize":1},{"declaration":27786,"isOffset":false,"isSlot":false,"src":"12297:5:94","valueSize":1},{"declaration":27786,"isOffset":false,"isSlot":false,"src":"12361:5:94","valueSize":1}],"flags":["memory-safe"],"id":27791,"nodeType":"InlineAssembly","src":"12197:181:94"}]},"id":27793,"implemented":true,"kind":"function","modifiers":[],"name":"pack_12_12","nameLocation":"12108:10:94","nodeType":"FunctionDefinition","parameters":{"id":27787,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27784,"mutability":"mutable","name":"left","nameLocation":"12127:4:94","nodeType":"VariableDeclaration","scope":27793,"src":"12119:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27783,"name":"bytes12","nodeType":"ElementaryTypeName","src":"12119:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":27786,"mutability":"mutable","name":"right","nameLocation":"12141:5:94","nodeType":"VariableDeclaration","scope":27793,"src":"12133:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27785,"name":"bytes12","nodeType":"ElementaryTypeName","src":"12133:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"12118:29:94"},"returnParameters":{"id":27790,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27789,"mutability":"mutable","name":"result","nameLocation":"12179:6:94","nodeType":"VariableDeclaration","scope":27793,"src":"12171:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":27788,"name":"bytes24","nodeType":"ElementaryTypeName","src":"12171:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"12170:16:94"},"scope":30945,"src":"12099:285:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27803,"nodeType":"Block","src":"12478:197:94","statements":[{"AST":{"nativeSrc":"12513:156:94","nodeType":"YulBlock","src":"12513:156:94","statements":[{"nativeSrc":"12527:35:94","nodeType":"YulAssignment","src":"12527:35:94","value":{"arguments":[{"name":"left","nativeSrc":"12539:4:94","nodeType":"YulIdentifier","src":"12539:4:94"},{"arguments":[{"kind":"number","nativeSrc":"12549:3:94","nodeType":"YulLiteral","src":"12549:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"12558:1:94","nodeType":"YulLiteral","src":"12558:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"12554:3:94","nodeType":"YulIdentifier","src":"12554:3:94"},"nativeSrc":"12554:6:94","nodeType":"YulFunctionCall","src":"12554:6:94"}],"functionName":{"name":"shl","nativeSrc":"12545:3:94","nodeType":"YulIdentifier","src":"12545:3:94"},"nativeSrc":"12545:16:94","nodeType":"YulFunctionCall","src":"12545:16:94"}],"functionName":{"name":"and","nativeSrc":"12535:3:94","nodeType":"YulIdentifier","src":"12535:3:94"},"nativeSrc":"12535:27:94","nodeType":"YulFunctionCall","src":"12535:27:94"},"variableNames":[{"name":"left","nativeSrc":"12527:4:94","nodeType":"YulIdentifier","src":"12527:4:94"}]},{"nativeSrc":"12575:37:94","nodeType":"YulAssignment","src":"12575:37:94","value":{"arguments":[{"name":"right","nativeSrc":"12588:5:94","nodeType":"YulIdentifier","src":"12588:5:94"},{"arguments":[{"kind":"number","nativeSrc":"12599:3:94","nodeType":"YulLiteral","src":"12599:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"12608:1:94","nodeType":"YulLiteral","src":"12608:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"12604:3:94","nodeType":"YulIdentifier","src":"12604:3:94"},"nativeSrc":"12604:6:94","nodeType":"YulFunctionCall","src":"12604:6:94"}],"functionName":{"name":"shl","nativeSrc":"12595:3:94","nodeType":"YulIdentifier","src":"12595:3:94"},"nativeSrc":"12595:16:94","nodeType":"YulFunctionCall","src":"12595:16:94"}],"functionName":{"name":"and","nativeSrc":"12584:3:94","nodeType":"YulIdentifier","src":"12584:3:94"},"nativeSrc":"12584:28:94","nodeType":"YulFunctionCall","src":"12584:28:94"},"variableNames":[{"name":"right","nativeSrc":"12575:5:94","nodeType":"YulIdentifier","src":"12575:5:94"}]},{"nativeSrc":"12625:34:94","nodeType":"YulAssignment","src":"12625:34:94","value":{"arguments":[{"name":"left","nativeSrc":"12638:4:94","nodeType":"YulIdentifier","src":"12638:4:94"},{"arguments":[{"kind":"number","nativeSrc":"12648:2:94","nodeType":"YulLiteral","src":"12648:2:94","type":"","value":"96"},{"name":"right","nativeSrc":"12652:5:94","nodeType":"YulIdentifier","src":"12652:5:94"}],"functionName":{"name":"shr","nativeSrc":"12644:3:94","nodeType":"YulIdentifier","src":"12644:3:94"},"nativeSrc":"12644:14:94","nodeType":"YulFunctionCall","src":"12644:14:94"}],"functionName":{"name":"or","nativeSrc":"12635:2:94","nodeType":"YulIdentifier","src":"12635:2:94"},"nativeSrc":"12635:24:94","nodeType":"YulFunctionCall","src":"12635:24:94"},"variableNames":[{"name":"result","nativeSrc":"12625:6:94","nodeType":"YulIdentifier","src":"12625:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27795,"isOffset":false,"isSlot":false,"src":"12527:4:94","valueSize":1},{"declaration":27795,"isOffset":false,"isSlot":false,"src":"12539:4:94","valueSize":1},{"declaration":27795,"isOffset":false,"isSlot":false,"src":"12638:4:94","valueSize":1},{"declaration":27800,"isOffset":false,"isSlot":false,"src":"12625:6:94","valueSize":1},{"declaration":27797,"isOffset":false,"isSlot":false,"src":"12575:5:94","valueSize":1},{"declaration":27797,"isOffset":false,"isSlot":false,"src":"12588:5:94","valueSize":1},{"declaration":27797,"isOffset":false,"isSlot":false,"src":"12652:5:94","valueSize":1}],"flags":["memory-safe"],"id":27802,"nodeType":"InlineAssembly","src":"12488:181:94"}]},"id":27804,"implemented":true,"kind":"function","modifiers":[],"name":"pack_12_16","nameLocation":"12399:10:94","nodeType":"FunctionDefinition","parameters":{"id":27798,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27795,"mutability":"mutable","name":"left","nameLocation":"12418:4:94","nodeType":"VariableDeclaration","scope":27804,"src":"12410:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27794,"name":"bytes12","nodeType":"ElementaryTypeName","src":"12410:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":27797,"mutability":"mutable","name":"right","nameLocation":"12432:5:94","nodeType":"VariableDeclaration","scope":27804,"src":"12424:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":27796,"name":"bytes16","nodeType":"ElementaryTypeName","src":"12424:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"12409:29:94"},"returnParameters":{"id":27801,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27800,"mutability":"mutable","name":"result","nameLocation":"12470:6:94","nodeType":"VariableDeclaration","scope":27804,"src":"12462:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":27799,"name":"bytes28","nodeType":"ElementaryTypeName","src":"12462:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"12461:16:94"},"scope":30945,"src":"12390:285:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27814,"nodeType":"Block","src":"12769:196:94","statements":[{"AST":{"nativeSrc":"12804:155:94","nodeType":"YulBlock","src":"12804:155:94","statements":[{"nativeSrc":"12818:35:94","nodeType":"YulAssignment","src":"12818:35:94","value":{"arguments":[{"name":"left","nativeSrc":"12830:4:94","nodeType":"YulIdentifier","src":"12830:4:94"},{"arguments":[{"kind":"number","nativeSrc":"12840:3:94","nodeType":"YulLiteral","src":"12840:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"12849:1:94","nodeType":"YulLiteral","src":"12849:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"12845:3:94","nodeType":"YulIdentifier","src":"12845:3:94"},"nativeSrc":"12845:6:94","nodeType":"YulFunctionCall","src":"12845:6:94"}],"functionName":{"name":"shl","nativeSrc":"12836:3:94","nodeType":"YulIdentifier","src":"12836:3:94"},"nativeSrc":"12836:16:94","nodeType":"YulFunctionCall","src":"12836:16:94"}],"functionName":{"name":"and","nativeSrc":"12826:3:94","nodeType":"YulIdentifier","src":"12826:3:94"},"nativeSrc":"12826:27:94","nodeType":"YulFunctionCall","src":"12826:27:94"},"variableNames":[{"name":"left","nativeSrc":"12818:4:94","nodeType":"YulIdentifier","src":"12818:4:94"}]},{"nativeSrc":"12866:36:94","nodeType":"YulAssignment","src":"12866:36:94","value":{"arguments":[{"name":"right","nativeSrc":"12879:5:94","nodeType":"YulIdentifier","src":"12879:5:94"},{"arguments":[{"kind":"number","nativeSrc":"12890:2:94","nodeType":"YulLiteral","src":"12890:2:94","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"12898:1:94","nodeType":"YulLiteral","src":"12898:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"12894:3:94","nodeType":"YulIdentifier","src":"12894:3:94"},"nativeSrc":"12894:6:94","nodeType":"YulFunctionCall","src":"12894:6:94"}],"functionName":{"name":"shl","nativeSrc":"12886:3:94","nodeType":"YulIdentifier","src":"12886:3:94"},"nativeSrc":"12886:15:94","nodeType":"YulFunctionCall","src":"12886:15:94"}],"functionName":{"name":"and","nativeSrc":"12875:3:94","nodeType":"YulIdentifier","src":"12875:3:94"},"nativeSrc":"12875:27:94","nodeType":"YulFunctionCall","src":"12875:27:94"},"variableNames":[{"name":"right","nativeSrc":"12866:5:94","nodeType":"YulIdentifier","src":"12866:5:94"}]},{"nativeSrc":"12915:34:94","nodeType":"YulAssignment","src":"12915:34:94","value":{"arguments":[{"name":"left","nativeSrc":"12928:4:94","nodeType":"YulIdentifier","src":"12928:4:94"},{"arguments":[{"kind":"number","nativeSrc":"12938:2:94","nodeType":"YulLiteral","src":"12938:2:94","type":"","value":"96"},{"name":"right","nativeSrc":"12942:5:94","nodeType":"YulIdentifier","src":"12942:5:94"}],"functionName":{"name":"shr","nativeSrc":"12934:3:94","nodeType":"YulIdentifier","src":"12934:3:94"},"nativeSrc":"12934:14:94","nodeType":"YulFunctionCall","src":"12934:14:94"}],"functionName":{"name":"or","nativeSrc":"12925:2:94","nodeType":"YulIdentifier","src":"12925:2:94"},"nativeSrc":"12925:24:94","nodeType":"YulFunctionCall","src":"12925:24:94"},"variableNames":[{"name":"result","nativeSrc":"12915:6:94","nodeType":"YulIdentifier","src":"12915:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27806,"isOffset":false,"isSlot":false,"src":"12818:4:94","valueSize":1},{"declaration":27806,"isOffset":false,"isSlot":false,"src":"12830:4:94","valueSize":1},{"declaration":27806,"isOffset":false,"isSlot":false,"src":"12928:4:94","valueSize":1},{"declaration":27811,"isOffset":false,"isSlot":false,"src":"12915:6:94","valueSize":1},{"declaration":27808,"isOffset":false,"isSlot":false,"src":"12866:5:94","valueSize":1},{"declaration":27808,"isOffset":false,"isSlot":false,"src":"12879:5:94","valueSize":1},{"declaration":27808,"isOffset":false,"isSlot":false,"src":"12942:5:94","valueSize":1}],"flags":["memory-safe"],"id":27813,"nodeType":"InlineAssembly","src":"12779:180:94"}]},"id":27815,"implemented":true,"kind":"function","modifiers":[],"name":"pack_12_20","nameLocation":"12690:10:94","nodeType":"FunctionDefinition","parameters":{"id":27809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27806,"mutability":"mutable","name":"left","nameLocation":"12709:4:94","nodeType":"VariableDeclaration","scope":27815,"src":"12701:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27805,"name":"bytes12","nodeType":"ElementaryTypeName","src":"12701:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":27808,"mutability":"mutable","name":"right","nameLocation":"12723:5:94","nodeType":"VariableDeclaration","scope":27815,"src":"12715:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":27807,"name":"bytes20","nodeType":"ElementaryTypeName","src":"12715:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"12700:29:94"},"returnParameters":{"id":27812,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27811,"mutability":"mutable","name":"result","nameLocation":"12761:6:94","nodeType":"VariableDeclaration","scope":27815,"src":"12753:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":27810,"name":"bytes32","nodeType":"ElementaryTypeName","src":"12753:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"12752:16:94"},"scope":30945,"src":"12681:284:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27825,"nodeType":"Block","src":"13057:198:94","statements":[{"AST":{"nativeSrc":"13092:157:94","nodeType":"YulBlock","src":"13092:157:94","statements":[{"nativeSrc":"13106:35:94","nodeType":"YulAssignment","src":"13106:35:94","value":{"arguments":[{"name":"left","nativeSrc":"13118:4:94","nodeType":"YulIdentifier","src":"13118:4:94"},{"arguments":[{"kind":"number","nativeSrc":"13128:3:94","nodeType":"YulLiteral","src":"13128:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"13137:1:94","nodeType":"YulLiteral","src":"13137:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"13133:3:94","nodeType":"YulIdentifier","src":"13133:3:94"},"nativeSrc":"13133:6:94","nodeType":"YulFunctionCall","src":"13133:6:94"}],"functionName":{"name":"shl","nativeSrc":"13124:3:94","nodeType":"YulIdentifier","src":"13124:3:94"},"nativeSrc":"13124:16:94","nodeType":"YulFunctionCall","src":"13124:16:94"}],"functionName":{"name":"and","nativeSrc":"13114:3:94","nodeType":"YulIdentifier","src":"13114:3:94"},"nativeSrc":"13114:27:94","nodeType":"YulFunctionCall","src":"13114:27:94"},"variableNames":[{"name":"left","nativeSrc":"13106:4:94","nodeType":"YulIdentifier","src":"13106:4:94"}]},{"nativeSrc":"13154:37:94","nodeType":"YulAssignment","src":"13154:37:94","value":{"arguments":[{"name":"right","nativeSrc":"13167:5:94","nodeType":"YulIdentifier","src":"13167:5:94"},{"arguments":[{"kind":"number","nativeSrc":"13178:3:94","nodeType":"YulLiteral","src":"13178:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"13187:1:94","nodeType":"YulLiteral","src":"13187:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"13183:3:94","nodeType":"YulIdentifier","src":"13183:3:94"},"nativeSrc":"13183:6:94","nodeType":"YulFunctionCall","src":"13183:6:94"}],"functionName":{"name":"shl","nativeSrc":"13174:3:94","nodeType":"YulIdentifier","src":"13174:3:94"},"nativeSrc":"13174:16:94","nodeType":"YulFunctionCall","src":"13174:16:94"}],"functionName":{"name":"and","nativeSrc":"13163:3:94","nodeType":"YulIdentifier","src":"13163:3:94"},"nativeSrc":"13163:28:94","nodeType":"YulFunctionCall","src":"13163:28:94"},"variableNames":[{"name":"right","nativeSrc":"13154:5:94","nodeType":"YulIdentifier","src":"13154:5:94"}]},{"nativeSrc":"13204:35:94","nodeType":"YulAssignment","src":"13204:35:94","value":{"arguments":[{"name":"left","nativeSrc":"13217:4:94","nodeType":"YulIdentifier","src":"13217:4:94"},{"arguments":[{"kind":"number","nativeSrc":"13227:3:94","nodeType":"YulLiteral","src":"13227:3:94","type":"","value":"128"},{"name":"right","nativeSrc":"13232:5:94","nodeType":"YulIdentifier","src":"13232:5:94"}],"functionName":{"name":"shr","nativeSrc":"13223:3:94","nodeType":"YulIdentifier","src":"13223:3:94"},"nativeSrc":"13223:15:94","nodeType":"YulFunctionCall","src":"13223:15:94"}],"functionName":{"name":"or","nativeSrc":"13214:2:94","nodeType":"YulIdentifier","src":"13214:2:94"},"nativeSrc":"13214:25:94","nodeType":"YulFunctionCall","src":"13214:25:94"},"variableNames":[{"name":"result","nativeSrc":"13204:6:94","nodeType":"YulIdentifier","src":"13204:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27817,"isOffset":false,"isSlot":false,"src":"13106:4:94","valueSize":1},{"declaration":27817,"isOffset":false,"isSlot":false,"src":"13118:4:94","valueSize":1},{"declaration":27817,"isOffset":false,"isSlot":false,"src":"13217:4:94","valueSize":1},{"declaration":27822,"isOffset":false,"isSlot":false,"src":"13204:6:94","valueSize":1},{"declaration":27819,"isOffset":false,"isSlot":false,"src":"13154:5:94","valueSize":1},{"declaration":27819,"isOffset":false,"isSlot":false,"src":"13167:5:94","valueSize":1},{"declaration":27819,"isOffset":false,"isSlot":false,"src":"13232:5:94","valueSize":1}],"flags":["memory-safe"],"id":27824,"nodeType":"InlineAssembly","src":"13067:182:94"}]},"id":27826,"implemented":true,"kind":"function","modifiers":[],"name":"pack_16_4","nameLocation":"12980:9:94","nodeType":"FunctionDefinition","parameters":{"id":27820,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27817,"mutability":"mutable","name":"left","nameLocation":"12998:4:94","nodeType":"VariableDeclaration","scope":27826,"src":"12990:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":27816,"name":"bytes16","nodeType":"ElementaryTypeName","src":"12990:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":27819,"mutability":"mutable","name":"right","nameLocation":"13011:5:94","nodeType":"VariableDeclaration","scope":27826,"src":"13004:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27818,"name":"bytes4","nodeType":"ElementaryTypeName","src":"13004:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"12989:28:94"},"returnParameters":{"id":27823,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27822,"mutability":"mutable","name":"result","nameLocation":"13049:6:94","nodeType":"VariableDeclaration","scope":27826,"src":"13041:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":27821,"name":"bytes20","nodeType":"ElementaryTypeName","src":"13041:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"13040:16:94"},"scope":30945,"src":"12971:284:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27836,"nodeType":"Block","src":"13347:198:94","statements":[{"AST":{"nativeSrc":"13382:157:94","nodeType":"YulBlock","src":"13382:157:94","statements":[{"nativeSrc":"13396:35:94","nodeType":"YulAssignment","src":"13396:35:94","value":{"arguments":[{"name":"left","nativeSrc":"13408:4:94","nodeType":"YulIdentifier","src":"13408:4:94"},{"arguments":[{"kind":"number","nativeSrc":"13418:3:94","nodeType":"YulLiteral","src":"13418:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"13427:1:94","nodeType":"YulLiteral","src":"13427:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"13423:3:94","nodeType":"YulIdentifier","src":"13423:3:94"},"nativeSrc":"13423:6:94","nodeType":"YulFunctionCall","src":"13423:6:94"}],"functionName":{"name":"shl","nativeSrc":"13414:3:94","nodeType":"YulIdentifier","src":"13414:3:94"},"nativeSrc":"13414:16:94","nodeType":"YulFunctionCall","src":"13414:16:94"}],"functionName":{"name":"and","nativeSrc":"13404:3:94","nodeType":"YulIdentifier","src":"13404:3:94"},"nativeSrc":"13404:27:94","nodeType":"YulFunctionCall","src":"13404:27:94"},"variableNames":[{"name":"left","nativeSrc":"13396:4:94","nodeType":"YulIdentifier","src":"13396:4:94"}]},{"nativeSrc":"13444:37:94","nodeType":"YulAssignment","src":"13444:37:94","value":{"arguments":[{"name":"right","nativeSrc":"13457:5:94","nodeType":"YulIdentifier","src":"13457:5:94"},{"arguments":[{"kind":"number","nativeSrc":"13468:3:94","nodeType":"YulLiteral","src":"13468:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"13477:1:94","nodeType":"YulLiteral","src":"13477:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"13473:3:94","nodeType":"YulIdentifier","src":"13473:3:94"},"nativeSrc":"13473:6:94","nodeType":"YulFunctionCall","src":"13473:6:94"}],"functionName":{"name":"shl","nativeSrc":"13464:3:94","nodeType":"YulIdentifier","src":"13464:3:94"},"nativeSrc":"13464:16:94","nodeType":"YulFunctionCall","src":"13464:16:94"}],"functionName":{"name":"and","nativeSrc":"13453:3:94","nodeType":"YulIdentifier","src":"13453:3:94"},"nativeSrc":"13453:28:94","nodeType":"YulFunctionCall","src":"13453:28:94"},"variableNames":[{"name":"right","nativeSrc":"13444:5:94","nodeType":"YulIdentifier","src":"13444:5:94"}]},{"nativeSrc":"13494:35:94","nodeType":"YulAssignment","src":"13494:35:94","value":{"arguments":[{"name":"left","nativeSrc":"13507:4:94","nodeType":"YulIdentifier","src":"13507:4:94"},{"arguments":[{"kind":"number","nativeSrc":"13517:3:94","nodeType":"YulLiteral","src":"13517:3:94","type":"","value":"128"},{"name":"right","nativeSrc":"13522:5:94","nodeType":"YulIdentifier","src":"13522:5:94"}],"functionName":{"name":"shr","nativeSrc":"13513:3:94","nodeType":"YulIdentifier","src":"13513:3:94"},"nativeSrc":"13513:15:94","nodeType":"YulFunctionCall","src":"13513:15:94"}],"functionName":{"name":"or","nativeSrc":"13504:2:94","nodeType":"YulIdentifier","src":"13504:2:94"},"nativeSrc":"13504:25:94","nodeType":"YulFunctionCall","src":"13504:25:94"},"variableNames":[{"name":"result","nativeSrc":"13494:6:94","nodeType":"YulIdentifier","src":"13494:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27828,"isOffset":false,"isSlot":false,"src":"13396:4:94","valueSize":1},{"declaration":27828,"isOffset":false,"isSlot":false,"src":"13408:4:94","valueSize":1},{"declaration":27828,"isOffset":false,"isSlot":false,"src":"13507:4:94","valueSize":1},{"declaration":27833,"isOffset":false,"isSlot":false,"src":"13494:6:94","valueSize":1},{"declaration":27830,"isOffset":false,"isSlot":false,"src":"13444:5:94","valueSize":1},{"declaration":27830,"isOffset":false,"isSlot":false,"src":"13457:5:94","valueSize":1},{"declaration":27830,"isOffset":false,"isSlot":false,"src":"13522:5:94","valueSize":1}],"flags":["memory-safe"],"id":27835,"nodeType":"InlineAssembly","src":"13357:182:94"}]},"id":27837,"implemented":true,"kind":"function","modifiers":[],"name":"pack_16_6","nameLocation":"13270:9:94","nodeType":"FunctionDefinition","parameters":{"id":27831,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27828,"mutability":"mutable","name":"left","nameLocation":"13288:4:94","nodeType":"VariableDeclaration","scope":27837,"src":"13280:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":27827,"name":"bytes16","nodeType":"ElementaryTypeName","src":"13280:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":27830,"mutability":"mutable","name":"right","nameLocation":"13301:5:94","nodeType":"VariableDeclaration","scope":27837,"src":"13294:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":27829,"name":"bytes6","nodeType":"ElementaryTypeName","src":"13294:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"13279:28:94"},"returnParameters":{"id":27834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27833,"mutability":"mutable","name":"result","nameLocation":"13339:6:94","nodeType":"VariableDeclaration","scope":27837,"src":"13331:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":27832,"name":"bytes22","nodeType":"ElementaryTypeName","src":"13331:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"13330:16:94"},"scope":30945,"src":"13261:284:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27847,"nodeType":"Block","src":"13637:198:94","statements":[{"AST":{"nativeSrc":"13672:157:94","nodeType":"YulBlock","src":"13672:157:94","statements":[{"nativeSrc":"13686:35:94","nodeType":"YulAssignment","src":"13686:35:94","value":{"arguments":[{"name":"left","nativeSrc":"13698:4:94","nodeType":"YulIdentifier","src":"13698:4:94"},{"arguments":[{"kind":"number","nativeSrc":"13708:3:94","nodeType":"YulLiteral","src":"13708:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"13717:1:94","nodeType":"YulLiteral","src":"13717:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"13713:3:94","nodeType":"YulIdentifier","src":"13713:3:94"},"nativeSrc":"13713:6:94","nodeType":"YulFunctionCall","src":"13713:6:94"}],"functionName":{"name":"shl","nativeSrc":"13704:3:94","nodeType":"YulIdentifier","src":"13704:3:94"},"nativeSrc":"13704:16:94","nodeType":"YulFunctionCall","src":"13704:16:94"}],"functionName":{"name":"and","nativeSrc":"13694:3:94","nodeType":"YulIdentifier","src":"13694:3:94"},"nativeSrc":"13694:27:94","nodeType":"YulFunctionCall","src":"13694:27:94"},"variableNames":[{"name":"left","nativeSrc":"13686:4:94","nodeType":"YulIdentifier","src":"13686:4:94"}]},{"nativeSrc":"13734:37:94","nodeType":"YulAssignment","src":"13734:37:94","value":{"arguments":[{"name":"right","nativeSrc":"13747:5:94","nodeType":"YulIdentifier","src":"13747:5:94"},{"arguments":[{"kind":"number","nativeSrc":"13758:3:94","nodeType":"YulLiteral","src":"13758:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"13767:1:94","nodeType":"YulLiteral","src":"13767:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"13763:3:94","nodeType":"YulIdentifier","src":"13763:3:94"},"nativeSrc":"13763:6:94","nodeType":"YulFunctionCall","src":"13763:6:94"}],"functionName":{"name":"shl","nativeSrc":"13754:3:94","nodeType":"YulIdentifier","src":"13754:3:94"},"nativeSrc":"13754:16:94","nodeType":"YulFunctionCall","src":"13754:16:94"}],"functionName":{"name":"and","nativeSrc":"13743:3:94","nodeType":"YulIdentifier","src":"13743:3:94"},"nativeSrc":"13743:28:94","nodeType":"YulFunctionCall","src":"13743:28:94"},"variableNames":[{"name":"right","nativeSrc":"13734:5:94","nodeType":"YulIdentifier","src":"13734:5:94"}]},{"nativeSrc":"13784:35:94","nodeType":"YulAssignment","src":"13784:35:94","value":{"arguments":[{"name":"left","nativeSrc":"13797:4:94","nodeType":"YulIdentifier","src":"13797:4:94"},{"arguments":[{"kind":"number","nativeSrc":"13807:3:94","nodeType":"YulLiteral","src":"13807:3:94","type":"","value":"128"},{"name":"right","nativeSrc":"13812:5:94","nodeType":"YulIdentifier","src":"13812:5:94"}],"functionName":{"name":"shr","nativeSrc":"13803:3:94","nodeType":"YulIdentifier","src":"13803:3:94"},"nativeSrc":"13803:15:94","nodeType":"YulFunctionCall","src":"13803:15:94"}],"functionName":{"name":"or","nativeSrc":"13794:2:94","nodeType":"YulIdentifier","src":"13794:2:94"},"nativeSrc":"13794:25:94","nodeType":"YulFunctionCall","src":"13794:25:94"},"variableNames":[{"name":"result","nativeSrc":"13784:6:94","nodeType":"YulIdentifier","src":"13784:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27839,"isOffset":false,"isSlot":false,"src":"13686:4:94","valueSize":1},{"declaration":27839,"isOffset":false,"isSlot":false,"src":"13698:4:94","valueSize":1},{"declaration":27839,"isOffset":false,"isSlot":false,"src":"13797:4:94","valueSize":1},{"declaration":27844,"isOffset":false,"isSlot":false,"src":"13784:6:94","valueSize":1},{"declaration":27841,"isOffset":false,"isSlot":false,"src":"13734:5:94","valueSize":1},{"declaration":27841,"isOffset":false,"isSlot":false,"src":"13747:5:94","valueSize":1},{"declaration":27841,"isOffset":false,"isSlot":false,"src":"13812:5:94","valueSize":1}],"flags":["memory-safe"],"id":27846,"nodeType":"InlineAssembly","src":"13647:182:94"}]},"id":27848,"implemented":true,"kind":"function","modifiers":[],"name":"pack_16_8","nameLocation":"13560:9:94","nodeType":"FunctionDefinition","parameters":{"id":27842,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27839,"mutability":"mutable","name":"left","nameLocation":"13578:4:94","nodeType":"VariableDeclaration","scope":27848,"src":"13570:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":27838,"name":"bytes16","nodeType":"ElementaryTypeName","src":"13570:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":27841,"mutability":"mutable","name":"right","nameLocation":"13591:5:94","nodeType":"VariableDeclaration","scope":27848,"src":"13584:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27840,"name":"bytes8","nodeType":"ElementaryTypeName","src":"13584:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"13569:28:94"},"returnParameters":{"id":27845,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27844,"mutability":"mutable","name":"result","nameLocation":"13629:6:94","nodeType":"VariableDeclaration","scope":27848,"src":"13621:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":27843,"name":"bytes24","nodeType":"ElementaryTypeName","src":"13621:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"13620:16:94"},"scope":30945,"src":"13551:284:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27858,"nodeType":"Block","src":"13929:198:94","statements":[{"AST":{"nativeSrc":"13964:157:94","nodeType":"YulBlock","src":"13964:157:94","statements":[{"nativeSrc":"13978:35:94","nodeType":"YulAssignment","src":"13978:35:94","value":{"arguments":[{"name":"left","nativeSrc":"13990:4:94","nodeType":"YulIdentifier","src":"13990:4:94"},{"arguments":[{"kind":"number","nativeSrc":"14000:3:94","nodeType":"YulLiteral","src":"14000:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"14009:1:94","nodeType":"YulLiteral","src":"14009:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14005:3:94","nodeType":"YulIdentifier","src":"14005:3:94"},"nativeSrc":"14005:6:94","nodeType":"YulFunctionCall","src":"14005:6:94"}],"functionName":{"name":"shl","nativeSrc":"13996:3:94","nodeType":"YulIdentifier","src":"13996:3:94"},"nativeSrc":"13996:16:94","nodeType":"YulFunctionCall","src":"13996:16:94"}],"functionName":{"name":"and","nativeSrc":"13986:3:94","nodeType":"YulIdentifier","src":"13986:3:94"},"nativeSrc":"13986:27:94","nodeType":"YulFunctionCall","src":"13986:27:94"},"variableNames":[{"name":"left","nativeSrc":"13978:4:94","nodeType":"YulIdentifier","src":"13978:4:94"}]},{"nativeSrc":"14026:37:94","nodeType":"YulAssignment","src":"14026:37:94","value":{"arguments":[{"name":"right","nativeSrc":"14039:5:94","nodeType":"YulIdentifier","src":"14039:5:94"},{"arguments":[{"kind":"number","nativeSrc":"14050:3:94","nodeType":"YulLiteral","src":"14050:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"14059:1:94","nodeType":"YulLiteral","src":"14059:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14055:3:94","nodeType":"YulIdentifier","src":"14055:3:94"},"nativeSrc":"14055:6:94","nodeType":"YulFunctionCall","src":"14055:6:94"}],"functionName":{"name":"shl","nativeSrc":"14046:3:94","nodeType":"YulIdentifier","src":"14046:3:94"},"nativeSrc":"14046:16:94","nodeType":"YulFunctionCall","src":"14046:16:94"}],"functionName":{"name":"and","nativeSrc":"14035:3:94","nodeType":"YulIdentifier","src":"14035:3:94"},"nativeSrc":"14035:28:94","nodeType":"YulFunctionCall","src":"14035:28:94"},"variableNames":[{"name":"right","nativeSrc":"14026:5:94","nodeType":"YulIdentifier","src":"14026:5:94"}]},{"nativeSrc":"14076:35:94","nodeType":"YulAssignment","src":"14076:35:94","value":{"arguments":[{"name":"left","nativeSrc":"14089:4:94","nodeType":"YulIdentifier","src":"14089:4:94"},{"arguments":[{"kind":"number","nativeSrc":"14099:3:94","nodeType":"YulLiteral","src":"14099:3:94","type":"","value":"128"},{"name":"right","nativeSrc":"14104:5:94","nodeType":"YulIdentifier","src":"14104:5:94"}],"functionName":{"name":"shr","nativeSrc":"14095:3:94","nodeType":"YulIdentifier","src":"14095:3:94"},"nativeSrc":"14095:15:94","nodeType":"YulFunctionCall","src":"14095:15:94"}],"functionName":{"name":"or","nativeSrc":"14086:2:94","nodeType":"YulIdentifier","src":"14086:2:94"},"nativeSrc":"14086:25:94","nodeType":"YulFunctionCall","src":"14086:25:94"},"variableNames":[{"name":"result","nativeSrc":"14076:6:94","nodeType":"YulIdentifier","src":"14076:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27850,"isOffset":false,"isSlot":false,"src":"13978:4:94","valueSize":1},{"declaration":27850,"isOffset":false,"isSlot":false,"src":"13990:4:94","valueSize":1},{"declaration":27850,"isOffset":false,"isSlot":false,"src":"14089:4:94","valueSize":1},{"declaration":27855,"isOffset":false,"isSlot":false,"src":"14076:6:94","valueSize":1},{"declaration":27852,"isOffset":false,"isSlot":false,"src":"14026:5:94","valueSize":1},{"declaration":27852,"isOffset":false,"isSlot":false,"src":"14039:5:94","valueSize":1},{"declaration":27852,"isOffset":false,"isSlot":false,"src":"14104:5:94","valueSize":1}],"flags":["memory-safe"],"id":27857,"nodeType":"InlineAssembly","src":"13939:182:94"}]},"id":27859,"implemented":true,"kind":"function","modifiers":[],"name":"pack_16_12","nameLocation":"13850:10:94","nodeType":"FunctionDefinition","parameters":{"id":27853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27850,"mutability":"mutable","name":"left","nameLocation":"13869:4:94","nodeType":"VariableDeclaration","scope":27859,"src":"13861:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":27849,"name":"bytes16","nodeType":"ElementaryTypeName","src":"13861:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":27852,"mutability":"mutable","name":"right","nameLocation":"13883:5:94","nodeType":"VariableDeclaration","scope":27859,"src":"13875:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27851,"name":"bytes12","nodeType":"ElementaryTypeName","src":"13875:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"13860:29:94"},"returnParameters":{"id":27856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27855,"mutability":"mutable","name":"result","nameLocation":"13921:6:94","nodeType":"VariableDeclaration","scope":27859,"src":"13913:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":27854,"name":"bytes28","nodeType":"ElementaryTypeName","src":"13913:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"13912:16:94"},"scope":30945,"src":"13841:286:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27869,"nodeType":"Block","src":"14221:198:94","statements":[{"AST":{"nativeSrc":"14256:157:94","nodeType":"YulBlock","src":"14256:157:94","statements":[{"nativeSrc":"14270:35:94","nodeType":"YulAssignment","src":"14270:35:94","value":{"arguments":[{"name":"left","nativeSrc":"14282:4:94","nodeType":"YulIdentifier","src":"14282:4:94"},{"arguments":[{"kind":"number","nativeSrc":"14292:3:94","nodeType":"YulLiteral","src":"14292:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"14301:1:94","nodeType":"YulLiteral","src":"14301:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14297:3:94","nodeType":"YulIdentifier","src":"14297:3:94"},"nativeSrc":"14297:6:94","nodeType":"YulFunctionCall","src":"14297:6:94"}],"functionName":{"name":"shl","nativeSrc":"14288:3:94","nodeType":"YulIdentifier","src":"14288:3:94"},"nativeSrc":"14288:16:94","nodeType":"YulFunctionCall","src":"14288:16:94"}],"functionName":{"name":"and","nativeSrc":"14278:3:94","nodeType":"YulIdentifier","src":"14278:3:94"},"nativeSrc":"14278:27:94","nodeType":"YulFunctionCall","src":"14278:27:94"},"variableNames":[{"name":"left","nativeSrc":"14270:4:94","nodeType":"YulIdentifier","src":"14270:4:94"}]},{"nativeSrc":"14318:37:94","nodeType":"YulAssignment","src":"14318:37:94","value":{"arguments":[{"name":"right","nativeSrc":"14331:5:94","nodeType":"YulIdentifier","src":"14331:5:94"},{"arguments":[{"kind":"number","nativeSrc":"14342:3:94","nodeType":"YulLiteral","src":"14342:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"14351:1:94","nodeType":"YulLiteral","src":"14351:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14347:3:94","nodeType":"YulIdentifier","src":"14347:3:94"},"nativeSrc":"14347:6:94","nodeType":"YulFunctionCall","src":"14347:6:94"}],"functionName":{"name":"shl","nativeSrc":"14338:3:94","nodeType":"YulIdentifier","src":"14338:3:94"},"nativeSrc":"14338:16:94","nodeType":"YulFunctionCall","src":"14338:16:94"}],"functionName":{"name":"and","nativeSrc":"14327:3:94","nodeType":"YulIdentifier","src":"14327:3:94"},"nativeSrc":"14327:28:94","nodeType":"YulFunctionCall","src":"14327:28:94"},"variableNames":[{"name":"right","nativeSrc":"14318:5:94","nodeType":"YulIdentifier","src":"14318:5:94"}]},{"nativeSrc":"14368:35:94","nodeType":"YulAssignment","src":"14368:35:94","value":{"arguments":[{"name":"left","nativeSrc":"14381:4:94","nodeType":"YulIdentifier","src":"14381:4:94"},{"arguments":[{"kind":"number","nativeSrc":"14391:3:94","nodeType":"YulLiteral","src":"14391:3:94","type":"","value":"128"},{"name":"right","nativeSrc":"14396:5:94","nodeType":"YulIdentifier","src":"14396:5:94"}],"functionName":{"name":"shr","nativeSrc":"14387:3:94","nodeType":"YulIdentifier","src":"14387:3:94"},"nativeSrc":"14387:15:94","nodeType":"YulFunctionCall","src":"14387:15:94"}],"functionName":{"name":"or","nativeSrc":"14378:2:94","nodeType":"YulIdentifier","src":"14378:2:94"},"nativeSrc":"14378:25:94","nodeType":"YulFunctionCall","src":"14378:25:94"},"variableNames":[{"name":"result","nativeSrc":"14368:6:94","nodeType":"YulIdentifier","src":"14368:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27861,"isOffset":false,"isSlot":false,"src":"14270:4:94","valueSize":1},{"declaration":27861,"isOffset":false,"isSlot":false,"src":"14282:4:94","valueSize":1},{"declaration":27861,"isOffset":false,"isSlot":false,"src":"14381:4:94","valueSize":1},{"declaration":27866,"isOffset":false,"isSlot":false,"src":"14368:6:94","valueSize":1},{"declaration":27863,"isOffset":false,"isSlot":false,"src":"14318:5:94","valueSize":1},{"declaration":27863,"isOffset":false,"isSlot":false,"src":"14331:5:94","valueSize":1},{"declaration":27863,"isOffset":false,"isSlot":false,"src":"14396:5:94","valueSize":1}],"flags":["memory-safe"],"id":27868,"nodeType":"InlineAssembly","src":"14231:182:94"}]},"id":27870,"implemented":true,"kind":"function","modifiers":[],"name":"pack_16_16","nameLocation":"14142:10:94","nodeType":"FunctionDefinition","parameters":{"id":27864,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27861,"mutability":"mutable","name":"left","nameLocation":"14161:4:94","nodeType":"VariableDeclaration","scope":27870,"src":"14153:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":27860,"name":"bytes16","nodeType":"ElementaryTypeName","src":"14153:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":27863,"mutability":"mutable","name":"right","nameLocation":"14175:5:94","nodeType":"VariableDeclaration","scope":27870,"src":"14167:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":27862,"name":"bytes16","nodeType":"ElementaryTypeName","src":"14167:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"14152:29:94"},"returnParameters":{"id":27867,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27866,"mutability":"mutable","name":"result","nameLocation":"14213:6:94","nodeType":"VariableDeclaration","scope":27870,"src":"14205:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":27865,"name":"bytes32","nodeType":"ElementaryTypeName","src":"14205:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"14204:16:94"},"scope":30945,"src":"14133:286:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27880,"nodeType":"Block","src":"14511:197:94","statements":[{"AST":{"nativeSrc":"14546:156:94","nodeType":"YulBlock","src":"14546:156:94","statements":[{"nativeSrc":"14560:34:94","nodeType":"YulAssignment","src":"14560:34:94","value":{"arguments":[{"name":"left","nativeSrc":"14572:4:94","nodeType":"YulIdentifier","src":"14572:4:94"},{"arguments":[{"kind":"number","nativeSrc":"14582:2:94","nodeType":"YulLiteral","src":"14582:2:94","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"14590:1:94","nodeType":"YulLiteral","src":"14590:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14586:3:94","nodeType":"YulIdentifier","src":"14586:3:94"},"nativeSrc":"14586:6:94","nodeType":"YulFunctionCall","src":"14586:6:94"}],"functionName":{"name":"shl","nativeSrc":"14578:3:94","nodeType":"YulIdentifier","src":"14578:3:94"},"nativeSrc":"14578:15:94","nodeType":"YulFunctionCall","src":"14578:15:94"}],"functionName":{"name":"and","nativeSrc":"14568:3:94","nodeType":"YulIdentifier","src":"14568:3:94"},"nativeSrc":"14568:26:94","nodeType":"YulFunctionCall","src":"14568:26:94"},"variableNames":[{"name":"left","nativeSrc":"14560:4:94","nodeType":"YulIdentifier","src":"14560:4:94"}]},{"nativeSrc":"14607:37:94","nodeType":"YulAssignment","src":"14607:37:94","value":{"arguments":[{"name":"right","nativeSrc":"14620:5:94","nodeType":"YulIdentifier","src":"14620:5:94"},{"arguments":[{"kind":"number","nativeSrc":"14631:3:94","nodeType":"YulLiteral","src":"14631:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"14640:1:94","nodeType":"YulLiteral","src":"14640:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14636:3:94","nodeType":"YulIdentifier","src":"14636:3:94"},"nativeSrc":"14636:6:94","nodeType":"YulFunctionCall","src":"14636:6:94"}],"functionName":{"name":"shl","nativeSrc":"14627:3:94","nodeType":"YulIdentifier","src":"14627:3:94"},"nativeSrc":"14627:16:94","nodeType":"YulFunctionCall","src":"14627:16:94"}],"functionName":{"name":"and","nativeSrc":"14616:3:94","nodeType":"YulIdentifier","src":"14616:3:94"},"nativeSrc":"14616:28:94","nodeType":"YulFunctionCall","src":"14616:28:94"},"variableNames":[{"name":"right","nativeSrc":"14607:5:94","nodeType":"YulIdentifier","src":"14607:5:94"}]},{"nativeSrc":"14657:35:94","nodeType":"YulAssignment","src":"14657:35:94","value":{"arguments":[{"name":"left","nativeSrc":"14670:4:94","nodeType":"YulIdentifier","src":"14670:4:94"},{"arguments":[{"kind":"number","nativeSrc":"14680:3:94","nodeType":"YulLiteral","src":"14680:3:94","type":"","value":"160"},{"name":"right","nativeSrc":"14685:5:94","nodeType":"YulIdentifier","src":"14685:5:94"}],"functionName":{"name":"shr","nativeSrc":"14676:3:94","nodeType":"YulIdentifier","src":"14676:3:94"},"nativeSrc":"14676:15:94","nodeType":"YulFunctionCall","src":"14676:15:94"}],"functionName":{"name":"or","nativeSrc":"14667:2:94","nodeType":"YulIdentifier","src":"14667:2:94"},"nativeSrc":"14667:25:94","nodeType":"YulFunctionCall","src":"14667:25:94"},"variableNames":[{"name":"result","nativeSrc":"14657:6:94","nodeType":"YulIdentifier","src":"14657:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27872,"isOffset":false,"isSlot":false,"src":"14560:4:94","valueSize":1},{"declaration":27872,"isOffset":false,"isSlot":false,"src":"14572:4:94","valueSize":1},{"declaration":27872,"isOffset":false,"isSlot":false,"src":"14670:4:94","valueSize":1},{"declaration":27877,"isOffset":false,"isSlot":false,"src":"14657:6:94","valueSize":1},{"declaration":27874,"isOffset":false,"isSlot":false,"src":"14607:5:94","valueSize":1},{"declaration":27874,"isOffset":false,"isSlot":false,"src":"14620:5:94","valueSize":1},{"declaration":27874,"isOffset":false,"isSlot":false,"src":"14685:5:94","valueSize":1}],"flags":["memory-safe"],"id":27879,"nodeType":"InlineAssembly","src":"14521:181:94"}]},"id":27881,"implemented":true,"kind":"function","modifiers":[],"name":"pack_20_2","nameLocation":"14434:9:94","nodeType":"FunctionDefinition","parameters":{"id":27875,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27872,"mutability":"mutable","name":"left","nameLocation":"14452:4:94","nodeType":"VariableDeclaration","scope":27881,"src":"14444:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":27871,"name":"bytes20","nodeType":"ElementaryTypeName","src":"14444:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":27874,"mutability":"mutable","name":"right","nameLocation":"14465:5:94","nodeType":"VariableDeclaration","scope":27881,"src":"14458:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27873,"name":"bytes2","nodeType":"ElementaryTypeName","src":"14458:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"14443:28:94"},"returnParameters":{"id":27878,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27877,"mutability":"mutable","name":"result","nameLocation":"14503:6:94","nodeType":"VariableDeclaration","scope":27881,"src":"14495:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":27876,"name":"bytes22","nodeType":"ElementaryTypeName","src":"14495:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"14494:16:94"},"scope":30945,"src":"14425:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27891,"nodeType":"Block","src":"14800:197:94","statements":[{"AST":{"nativeSrc":"14835:156:94","nodeType":"YulBlock","src":"14835:156:94","statements":[{"nativeSrc":"14849:34:94","nodeType":"YulAssignment","src":"14849:34:94","value":{"arguments":[{"name":"left","nativeSrc":"14861:4:94","nodeType":"YulIdentifier","src":"14861:4:94"},{"arguments":[{"kind":"number","nativeSrc":"14871:2:94","nodeType":"YulLiteral","src":"14871:2:94","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"14879:1:94","nodeType":"YulLiteral","src":"14879:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14875:3:94","nodeType":"YulIdentifier","src":"14875:3:94"},"nativeSrc":"14875:6:94","nodeType":"YulFunctionCall","src":"14875:6:94"}],"functionName":{"name":"shl","nativeSrc":"14867:3:94","nodeType":"YulIdentifier","src":"14867:3:94"},"nativeSrc":"14867:15:94","nodeType":"YulFunctionCall","src":"14867:15:94"}],"functionName":{"name":"and","nativeSrc":"14857:3:94","nodeType":"YulIdentifier","src":"14857:3:94"},"nativeSrc":"14857:26:94","nodeType":"YulFunctionCall","src":"14857:26:94"},"variableNames":[{"name":"left","nativeSrc":"14849:4:94","nodeType":"YulIdentifier","src":"14849:4:94"}]},{"nativeSrc":"14896:37:94","nodeType":"YulAssignment","src":"14896:37:94","value":{"arguments":[{"name":"right","nativeSrc":"14909:5:94","nodeType":"YulIdentifier","src":"14909:5:94"},{"arguments":[{"kind":"number","nativeSrc":"14920:3:94","nodeType":"YulLiteral","src":"14920:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"14929:1:94","nodeType":"YulLiteral","src":"14929:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14925:3:94","nodeType":"YulIdentifier","src":"14925:3:94"},"nativeSrc":"14925:6:94","nodeType":"YulFunctionCall","src":"14925:6:94"}],"functionName":{"name":"shl","nativeSrc":"14916:3:94","nodeType":"YulIdentifier","src":"14916:3:94"},"nativeSrc":"14916:16:94","nodeType":"YulFunctionCall","src":"14916:16:94"}],"functionName":{"name":"and","nativeSrc":"14905:3:94","nodeType":"YulIdentifier","src":"14905:3:94"},"nativeSrc":"14905:28:94","nodeType":"YulFunctionCall","src":"14905:28:94"},"variableNames":[{"name":"right","nativeSrc":"14896:5:94","nodeType":"YulIdentifier","src":"14896:5:94"}]},{"nativeSrc":"14946:35:94","nodeType":"YulAssignment","src":"14946:35:94","value":{"arguments":[{"name":"left","nativeSrc":"14959:4:94","nodeType":"YulIdentifier","src":"14959:4:94"},{"arguments":[{"kind":"number","nativeSrc":"14969:3:94","nodeType":"YulLiteral","src":"14969:3:94","type":"","value":"160"},{"name":"right","nativeSrc":"14974:5:94","nodeType":"YulIdentifier","src":"14974:5:94"}],"functionName":{"name":"shr","nativeSrc":"14965:3:94","nodeType":"YulIdentifier","src":"14965:3:94"},"nativeSrc":"14965:15:94","nodeType":"YulFunctionCall","src":"14965:15:94"}],"functionName":{"name":"or","nativeSrc":"14956:2:94","nodeType":"YulIdentifier","src":"14956:2:94"},"nativeSrc":"14956:25:94","nodeType":"YulFunctionCall","src":"14956:25:94"},"variableNames":[{"name":"result","nativeSrc":"14946:6:94","nodeType":"YulIdentifier","src":"14946:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27883,"isOffset":false,"isSlot":false,"src":"14849:4:94","valueSize":1},{"declaration":27883,"isOffset":false,"isSlot":false,"src":"14861:4:94","valueSize":1},{"declaration":27883,"isOffset":false,"isSlot":false,"src":"14959:4:94","valueSize":1},{"declaration":27888,"isOffset":false,"isSlot":false,"src":"14946:6:94","valueSize":1},{"declaration":27885,"isOffset":false,"isSlot":false,"src":"14896:5:94","valueSize":1},{"declaration":27885,"isOffset":false,"isSlot":false,"src":"14909:5:94","valueSize":1},{"declaration":27885,"isOffset":false,"isSlot":false,"src":"14974:5:94","valueSize":1}],"flags":["memory-safe"],"id":27890,"nodeType":"InlineAssembly","src":"14810:181:94"}]},"id":27892,"implemented":true,"kind":"function","modifiers":[],"name":"pack_20_4","nameLocation":"14723:9:94","nodeType":"FunctionDefinition","parameters":{"id":27886,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27883,"mutability":"mutable","name":"left","nameLocation":"14741:4:94","nodeType":"VariableDeclaration","scope":27892,"src":"14733:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":27882,"name":"bytes20","nodeType":"ElementaryTypeName","src":"14733:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":27885,"mutability":"mutable","name":"right","nameLocation":"14754:5:94","nodeType":"VariableDeclaration","scope":27892,"src":"14747:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27884,"name":"bytes4","nodeType":"ElementaryTypeName","src":"14747:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"14732:28:94"},"returnParameters":{"id":27889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27888,"mutability":"mutable","name":"result","nameLocation":"14792:6:94","nodeType":"VariableDeclaration","scope":27892,"src":"14784:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":27887,"name":"bytes24","nodeType":"ElementaryTypeName","src":"14784:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"14783:16:94"},"scope":30945,"src":"14714:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27902,"nodeType":"Block","src":"15089:197:94","statements":[{"AST":{"nativeSrc":"15124:156:94","nodeType":"YulBlock","src":"15124:156:94","statements":[{"nativeSrc":"15138:34:94","nodeType":"YulAssignment","src":"15138:34:94","value":{"arguments":[{"name":"left","nativeSrc":"15150:4:94","nodeType":"YulIdentifier","src":"15150:4:94"},{"arguments":[{"kind":"number","nativeSrc":"15160:2:94","nodeType":"YulLiteral","src":"15160:2:94","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"15168:1:94","nodeType":"YulLiteral","src":"15168:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"15164:3:94","nodeType":"YulIdentifier","src":"15164:3:94"},"nativeSrc":"15164:6:94","nodeType":"YulFunctionCall","src":"15164:6:94"}],"functionName":{"name":"shl","nativeSrc":"15156:3:94","nodeType":"YulIdentifier","src":"15156:3:94"},"nativeSrc":"15156:15:94","nodeType":"YulFunctionCall","src":"15156:15:94"}],"functionName":{"name":"and","nativeSrc":"15146:3:94","nodeType":"YulIdentifier","src":"15146:3:94"},"nativeSrc":"15146:26:94","nodeType":"YulFunctionCall","src":"15146:26:94"},"variableNames":[{"name":"left","nativeSrc":"15138:4:94","nodeType":"YulIdentifier","src":"15138:4:94"}]},{"nativeSrc":"15185:37:94","nodeType":"YulAssignment","src":"15185:37:94","value":{"arguments":[{"name":"right","nativeSrc":"15198:5:94","nodeType":"YulIdentifier","src":"15198:5:94"},{"arguments":[{"kind":"number","nativeSrc":"15209:3:94","nodeType":"YulLiteral","src":"15209:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"15218:1:94","nodeType":"YulLiteral","src":"15218:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"15214:3:94","nodeType":"YulIdentifier","src":"15214:3:94"},"nativeSrc":"15214:6:94","nodeType":"YulFunctionCall","src":"15214:6:94"}],"functionName":{"name":"shl","nativeSrc":"15205:3:94","nodeType":"YulIdentifier","src":"15205:3:94"},"nativeSrc":"15205:16:94","nodeType":"YulFunctionCall","src":"15205:16:94"}],"functionName":{"name":"and","nativeSrc":"15194:3:94","nodeType":"YulIdentifier","src":"15194:3:94"},"nativeSrc":"15194:28:94","nodeType":"YulFunctionCall","src":"15194:28:94"},"variableNames":[{"name":"right","nativeSrc":"15185:5:94","nodeType":"YulIdentifier","src":"15185:5:94"}]},{"nativeSrc":"15235:35:94","nodeType":"YulAssignment","src":"15235:35:94","value":{"arguments":[{"name":"left","nativeSrc":"15248:4:94","nodeType":"YulIdentifier","src":"15248:4:94"},{"arguments":[{"kind":"number","nativeSrc":"15258:3:94","nodeType":"YulLiteral","src":"15258:3:94","type":"","value":"160"},{"name":"right","nativeSrc":"15263:5:94","nodeType":"YulIdentifier","src":"15263:5:94"}],"functionName":{"name":"shr","nativeSrc":"15254:3:94","nodeType":"YulIdentifier","src":"15254:3:94"},"nativeSrc":"15254:15:94","nodeType":"YulFunctionCall","src":"15254:15:94"}],"functionName":{"name":"or","nativeSrc":"15245:2:94","nodeType":"YulIdentifier","src":"15245:2:94"},"nativeSrc":"15245:25:94","nodeType":"YulFunctionCall","src":"15245:25:94"},"variableNames":[{"name":"result","nativeSrc":"15235:6:94","nodeType":"YulIdentifier","src":"15235:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27894,"isOffset":false,"isSlot":false,"src":"15138:4:94","valueSize":1},{"declaration":27894,"isOffset":false,"isSlot":false,"src":"15150:4:94","valueSize":1},{"declaration":27894,"isOffset":false,"isSlot":false,"src":"15248:4:94","valueSize":1},{"declaration":27899,"isOffset":false,"isSlot":false,"src":"15235:6:94","valueSize":1},{"declaration":27896,"isOffset":false,"isSlot":false,"src":"15185:5:94","valueSize":1},{"declaration":27896,"isOffset":false,"isSlot":false,"src":"15198:5:94","valueSize":1},{"declaration":27896,"isOffset":false,"isSlot":false,"src":"15263:5:94","valueSize":1}],"flags":["memory-safe"],"id":27901,"nodeType":"InlineAssembly","src":"15099:181:94"}]},"id":27903,"implemented":true,"kind":"function","modifiers":[],"name":"pack_20_8","nameLocation":"15012:9:94","nodeType":"FunctionDefinition","parameters":{"id":27897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27894,"mutability":"mutable","name":"left","nameLocation":"15030:4:94","nodeType":"VariableDeclaration","scope":27903,"src":"15022:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":27893,"name":"bytes20","nodeType":"ElementaryTypeName","src":"15022:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":27896,"mutability":"mutable","name":"right","nameLocation":"15043:5:94","nodeType":"VariableDeclaration","scope":27903,"src":"15036:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27895,"name":"bytes8","nodeType":"ElementaryTypeName","src":"15036:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"15021:28:94"},"returnParameters":{"id":27900,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27899,"mutability":"mutable","name":"result","nameLocation":"15081:6:94","nodeType":"VariableDeclaration","scope":27903,"src":"15073:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":27898,"name":"bytes28","nodeType":"ElementaryTypeName","src":"15073:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"15072:16:94"},"scope":30945,"src":"15003:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27913,"nodeType":"Block","src":"15380:197:94","statements":[{"AST":{"nativeSrc":"15415:156:94","nodeType":"YulBlock","src":"15415:156:94","statements":[{"nativeSrc":"15429:34:94","nodeType":"YulAssignment","src":"15429:34:94","value":{"arguments":[{"name":"left","nativeSrc":"15441:4:94","nodeType":"YulIdentifier","src":"15441:4:94"},{"arguments":[{"kind":"number","nativeSrc":"15451:2:94","nodeType":"YulLiteral","src":"15451:2:94","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"15459:1:94","nodeType":"YulLiteral","src":"15459:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"15455:3:94","nodeType":"YulIdentifier","src":"15455:3:94"},"nativeSrc":"15455:6:94","nodeType":"YulFunctionCall","src":"15455:6:94"}],"functionName":{"name":"shl","nativeSrc":"15447:3:94","nodeType":"YulIdentifier","src":"15447:3:94"},"nativeSrc":"15447:15:94","nodeType":"YulFunctionCall","src":"15447:15:94"}],"functionName":{"name":"and","nativeSrc":"15437:3:94","nodeType":"YulIdentifier","src":"15437:3:94"},"nativeSrc":"15437:26:94","nodeType":"YulFunctionCall","src":"15437:26:94"},"variableNames":[{"name":"left","nativeSrc":"15429:4:94","nodeType":"YulIdentifier","src":"15429:4:94"}]},{"nativeSrc":"15476:37:94","nodeType":"YulAssignment","src":"15476:37:94","value":{"arguments":[{"name":"right","nativeSrc":"15489:5:94","nodeType":"YulIdentifier","src":"15489:5:94"},{"arguments":[{"kind":"number","nativeSrc":"15500:3:94","nodeType":"YulLiteral","src":"15500:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"15509:1:94","nodeType":"YulLiteral","src":"15509:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"15505:3:94","nodeType":"YulIdentifier","src":"15505:3:94"},"nativeSrc":"15505:6:94","nodeType":"YulFunctionCall","src":"15505:6:94"}],"functionName":{"name":"shl","nativeSrc":"15496:3:94","nodeType":"YulIdentifier","src":"15496:3:94"},"nativeSrc":"15496:16:94","nodeType":"YulFunctionCall","src":"15496:16:94"}],"functionName":{"name":"and","nativeSrc":"15485:3:94","nodeType":"YulIdentifier","src":"15485:3:94"},"nativeSrc":"15485:28:94","nodeType":"YulFunctionCall","src":"15485:28:94"},"variableNames":[{"name":"right","nativeSrc":"15476:5:94","nodeType":"YulIdentifier","src":"15476:5:94"}]},{"nativeSrc":"15526:35:94","nodeType":"YulAssignment","src":"15526:35:94","value":{"arguments":[{"name":"left","nativeSrc":"15539:4:94","nodeType":"YulIdentifier","src":"15539:4:94"},{"arguments":[{"kind":"number","nativeSrc":"15549:3:94","nodeType":"YulLiteral","src":"15549:3:94","type":"","value":"160"},{"name":"right","nativeSrc":"15554:5:94","nodeType":"YulIdentifier","src":"15554:5:94"}],"functionName":{"name":"shr","nativeSrc":"15545:3:94","nodeType":"YulIdentifier","src":"15545:3:94"},"nativeSrc":"15545:15:94","nodeType":"YulFunctionCall","src":"15545:15:94"}],"functionName":{"name":"or","nativeSrc":"15536:2:94","nodeType":"YulIdentifier","src":"15536:2:94"},"nativeSrc":"15536:25:94","nodeType":"YulFunctionCall","src":"15536:25:94"},"variableNames":[{"name":"result","nativeSrc":"15526:6:94","nodeType":"YulIdentifier","src":"15526:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27905,"isOffset":false,"isSlot":false,"src":"15429:4:94","valueSize":1},{"declaration":27905,"isOffset":false,"isSlot":false,"src":"15441:4:94","valueSize":1},{"declaration":27905,"isOffset":false,"isSlot":false,"src":"15539:4:94","valueSize":1},{"declaration":27910,"isOffset":false,"isSlot":false,"src":"15526:6:94","valueSize":1},{"declaration":27907,"isOffset":false,"isSlot":false,"src":"15476:5:94","valueSize":1},{"declaration":27907,"isOffset":false,"isSlot":false,"src":"15489:5:94","valueSize":1},{"declaration":27907,"isOffset":false,"isSlot":false,"src":"15554:5:94","valueSize":1}],"flags":["memory-safe"],"id":27912,"nodeType":"InlineAssembly","src":"15390:181:94"}]},"id":27914,"implemented":true,"kind":"function","modifiers":[],"name":"pack_20_12","nameLocation":"15301:10:94","nodeType":"FunctionDefinition","parameters":{"id":27908,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27905,"mutability":"mutable","name":"left","nameLocation":"15320:4:94","nodeType":"VariableDeclaration","scope":27914,"src":"15312:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":27904,"name":"bytes20","nodeType":"ElementaryTypeName","src":"15312:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":27907,"mutability":"mutable","name":"right","nameLocation":"15334:5:94","nodeType":"VariableDeclaration","scope":27914,"src":"15326:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":27906,"name":"bytes12","nodeType":"ElementaryTypeName","src":"15326:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"15311:29:94"},"returnParameters":{"id":27911,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27910,"mutability":"mutable","name":"result","nameLocation":"15372:6:94","nodeType":"VariableDeclaration","scope":27914,"src":"15364:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":27909,"name":"bytes32","nodeType":"ElementaryTypeName","src":"15364:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"15363:16:94"},"scope":30945,"src":"15292:285:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27924,"nodeType":"Block","src":"15669:197:94","statements":[{"AST":{"nativeSrc":"15704:156:94","nodeType":"YulBlock","src":"15704:156:94","statements":[{"nativeSrc":"15718:34:94","nodeType":"YulAssignment","src":"15718:34:94","value":{"arguments":[{"name":"left","nativeSrc":"15730:4:94","nodeType":"YulIdentifier","src":"15730:4:94"},{"arguments":[{"kind":"number","nativeSrc":"15740:2:94","nodeType":"YulLiteral","src":"15740:2:94","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"15748:1:94","nodeType":"YulLiteral","src":"15748:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"15744:3:94","nodeType":"YulIdentifier","src":"15744:3:94"},"nativeSrc":"15744:6:94","nodeType":"YulFunctionCall","src":"15744:6:94"}],"functionName":{"name":"shl","nativeSrc":"15736:3:94","nodeType":"YulIdentifier","src":"15736:3:94"},"nativeSrc":"15736:15:94","nodeType":"YulFunctionCall","src":"15736:15:94"}],"functionName":{"name":"and","nativeSrc":"15726:3:94","nodeType":"YulIdentifier","src":"15726:3:94"},"nativeSrc":"15726:26:94","nodeType":"YulFunctionCall","src":"15726:26:94"},"variableNames":[{"name":"left","nativeSrc":"15718:4:94","nodeType":"YulIdentifier","src":"15718:4:94"}]},{"nativeSrc":"15765:37:94","nodeType":"YulAssignment","src":"15765:37:94","value":{"arguments":[{"name":"right","nativeSrc":"15778:5:94","nodeType":"YulIdentifier","src":"15778:5:94"},{"arguments":[{"kind":"number","nativeSrc":"15789:3:94","nodeType":"YulLiteral","src":"15789:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"15798:1:94","nodeType":"YulLiteral","src":"15798:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"15794:3:94","nodeType":"YulIdentifier","src":"15794:3:94"},"nativeSrc":"15794:6:94","nodeType":"YulFunctionCall","src":"15794:6:94"}],"functionName":{"name":"shl","nativeSrc":"15785:3:94","nodeType":"YulIdentifier","src":"15785:3:94"},"nativeSrc":"15785:16:94","nodeType":"YulFunctionCall","src":"15785:16:94"}],"functionName":{"name":"and","nativeSrc":"15774:3:94","nodeType":"YulIdentifier","src":"15774:3:94"},"nativeSrc":"15774:28:94","nodeType":"YulFunctionCall","src":"15774:28:94"},"variableNames":[{"name":"right","nativeSrc":"15765:5:94","nodeType":"YulIdentifier","src":"15765:5:94"}]},{"nativeSrc":"15815:35:94","nodeType":"YulAssignment","src":"15815:35:94","value":{"arguments":[{"name":"left","nativeSrc":"15828:4:94","nodeType":"YulIdentifier","src":"15828:4:94"},{"arguments":[{"kind":"number","nativeSrc":"15838:3:94","nodeType":"YulLiteral","src":"15838:3:94","type":"","value":"176"},{"name":"right","nativeSrc":"15843:5:94","nodeType":"YulIdentifier","src":"15843:5:94"}],"functionName":{"name":"shr","nativeSrc":"15834:3:94","nodeType":"YulIdentifier","src":"15834:3:94"},"nativeSrc":"15834:15:94","nodeType":"YulFunctionCall","src":"15834:15:94"}],"functionName":{"name":"or","nativeSrc":"15825:2:94","nodeType":"YulIdentifier","src":"15825:2:94"},"nativeSrc":"15825:25:94","nodeType":"YulFunctionCall","src":"15825:25:94"},"variableNames":[{"name":"result","nativeSrc":"15815:6:94","nodeType":"YulIdentifier","src":"15815:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27916,"isOffset":false,"isSlot":false,"src":"15718:4:94","valueSize":1},{"declaration":27916,"isOffset":false,"isSlot":false,"src":"15730:4:94","valueSize":1},{"declaration":27916,"isOffset":false,"isSlot":false,"src":"15828:4:94","valueSize":1},{"declaration":27921,"isOffset":false,"isSlot":false,"src":"15815:6:94","valueSize":1},{"declaration":27918,"isOffset":false,"isSlot":false,"src":"15765:5:94","valueSize":1},{"declaration":27918,"isOffset":false,"isSlot":false,"src":"15778:5:94","valueSize":1},{"declaration":27918,"isOffset":false,"isSlot":false,"src":"15843:5:94","valueSize":1}],"flags":["memory-safe"],"id":27923,"nodeType":"InlineAssembly","src":"15679:181:94"}]},"id":27925,"implemented":true,"kind":"function","modifiers":[],"name":"pack_22_2","nameLocation":"15592:9:94","nodeType":"FunctionDefinition","parameters":{"id":27919,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27916,"mutability":"mutable","name":"left","nameLocation":"15610:4:94","nodeType":"VariableDeclaration","scope":27925,"src":"15602:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":27915,"name":"bytes22","nodeType":"ElementaryTypeName","src":"15602:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":27918,"mutability":"mutable","name":"right","nameLocation":"15623:5:94","nodeType":"VariableDeclaration","scope":27925,"src":"15616:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27917,"name":"bytes2","nodeType":"ElementaryTypeName","src":"15616:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"15601:28:94"},"returnParameters":{"id":27922,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27921,"mutability":"mutable","name":"result","nameLocation":"15661:6:94","nodeType":"VariableDeclaration","scope":27925,"src":"15653:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":27920,"name":"bytes24","nodeType":"ElementaryTypeName","src":"15653:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"15652:16:94"},"scope":30945,"src":"15583:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27935,"nodeType":"Block","src":"15958:197:94","statements":[{"AST":{"nativeSrc":"15993:156:94","nodeType":"YulBlock","src":"15993:156:94","statements":[{"nativeSrc":"16007:34:94","nodeType":"YulAssignment","src":"16007:34:94","value":{"arguments":[{"name":"left","nativeSrc":"16019:4:94","nodeType":"YulIdentifier","src":"16019:4:94"},{"arguments":[{"kind":"number","nativeSrc":"16029:2:94","nodeType":"YulLiteral","src":"16029:2:94","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"16037:1:94","nodeType":"YulLiteral","src":"16037:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"16033:3:94","nodeType":"YulIdentifier","src":"16033:3:94"},"nativeSrc":"16033:6:94","nodeType":"YulFunctionCall","src":"16033:6:94"}],"functionName":{"name":"shl","nativeSrc":"16025:3:94","nodeType":"YulIdentifier","src":"16025:3:94"},"nativeSrc":"16025:15:94","nodeType":"YulFunctionCall","src":"16025:15:94"}],"functionName":{"name":"and","nativeSrc":"16015:3:94","nodeType":"YulIdentifier","src":"16015:3:94"},"nativeSrc":"16015:26:94","nodeType":"YulFunctionCall","src":"16015:26:94"},"variableNames":[{"name":"left","nativeSrc":"16007:4:94","nodeType":"YulIdentifier","src":"16007:4:94"}]},{"nativeSrc":"16054:37:94","nodeType":"YulAssignment","src":"16054:37:94","value":{"arguments":[{"name":"right","nativeSrc":"16067:5:94","nodeType":"YulIdentifier","src":"16067:5:94"},{"arguments":[{"kind":"number","nativeSrc":"16078:3:94","nodeType":"YulLiteral","src":"16078:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"16087:1:94","nodeType":"YulLiteral","src":"16087:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"16083:3:94","nodeType":"YulIdentifier","src":"16083:3:94"},"nativeSrc":"16083:6:94","nodeType":"YulFunctionCall","src":"16083:6:94"}],"functionName":{"name":"shl","nativeSrc":"16074:3:94","nodeType":"YulIdentifier","src":"16074:3:94"},"nativeSrc":"16074:16:94","nodeType":"YulFunctionCall","src":"16074:16:94"}],"functionName":{"name":"and","nativeSrc":"16063:3:94","nodeType":"YulIdentifier","src":"16063:3:94"},"nativeSrc":"16063:28:94","nodeType":"YulFunctionCall","src":"16063:28:94"},"variableNames":[{"name":"right","nativeSrc":"16054:5:94","nodeType":"YulIdentifier","src":"16054:5:94"}]},{"nativeSrc":"16104:35:94","nodeType":"YulAssignment","src":"16104:35:94","value":{"arguments":[{"name":"left","nativeSrc":"16117:4:94","nodeType":"YulIdentifier","src":"16117:4:94"},{"arguments":[{"kind":"number","nativeSrc":"16127:3:94","nodeType":"YulLiteral","src":"16127:3:94","type":"","value":"176"},{"name":"right","nativeSrc":"16132:5:94","nodeType":"YulIdentifier","src":"16132:5:94"}],"functionName":{"name":"shr","nativeSrc":"16123:3:94","nodeType":"YulIdentifier","src":"16123:3:94"},"nativeSrc":"16123:15:94","nodeType":"YulFunctionCall","src":"16123:15:94"}],"functionName":{"name":"or","nativeSrc":"16114:2:94","nodeType":"YulIdentifier","src":"16114:2:94"},"nativeSrc":"16114:25:94","nodeType":"YulFunctionCall","src":"16114:25:94"},"variableNames":[{"name":"result","nativeSrc":"16104:6:94","nodeType":"YulIdentifier","src":"16104:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27927,"isOffset":false,"isSlot":false,"src":"16007:4:94","valueSize":1},{"declaration":27927,"isOffset":false,"isSlot":false,"src":"16019:4:94","valueSize":1},{"declaration":27927,"isOffset":false,"isSlot":false,"src":"16117:4:94","valueSize":1},{"declaration":27932,"isOffset":false,"isSlot":false,"src":"16104:6:94","valueSize":1},{"declaration":27929,"isOffset":false,"isSlot":false,"src":"16054:5:94","valueSize":1},{"declaration":27929,"isOffset":false,"isSlot":false,"src":"16067:5:94","valueSize":1},{"declaration":27929,"isOffset":false,"isSlot":false,"src":"16132:5:94","valueSize":1}],"flags":["memory-safe"],"id":27934,"nodeType":"InlineAssembly","src":"15968:181:94"}]},"id":27936,"implemented":true,"kind":"function","modifiers":[],"name":"pack_22_6","nameLocation":"15881:9:94","nodeType":"FunctionDefinition","parameters":{"id":27930,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27927,"mutability":"mutable","name":"left","nameLocation":"15899:4:94","nodeType":"VariableDeclaration","scope":27936,"src":"15891:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":27926,"name":"bytes22","nodeType":"ElementaryTypeName","src":"15891:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":27929,"mutability":"mutable","name":"right","nameLocation":"15912:5:94","nodeType":"VariableDeclaration","scope":27936,"src":"15905:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":27928,"name":"bytes6","nodeType":"ElementaryTypeName","src":"15905:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"15890:28:94"},"returnParameters":{"id":27933,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27932,"mutability":"mutable","name":"result","nameLocation":"15950:6:94","nodeType":"VariableDeclaration","scope":27936,"src":"15942:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":27931,"name":"bytes28","nodeType":"ElementaryTypeName","src":"15942:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"15941:16:94"},"scope":30945,"src":"15872:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27946,"nodeType":"Block","src":"16249:197:94","statements":[{"AST":{"nativeSrc":"16284:156:94","nodeType":"YulBlock","src":"16284:156:94","statements":[{"nativeSrc":"16298:34:94","nodeType":"YulAssignment","src":"16298:34:94","value":{"arguments":[{"name":"left","nativeSrc":"16310:4:94","nodeType":"YulIdentifier","src":"16310:4:94"},{"arguments":[{"kind":"number","nativeSrc":"16320:2:94","nodeType":"YulLiteral","src":"16320:2:94","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"16328:1:94","nodeType":"YulLiteral","src":"16328:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"16324:3:94","nodeType":"YulIdentifier","src":"16324:3:94"},"nativeSrc":"16324:6:94","nodeType":"YulFunctionCall","src":"16324:6:94"}],"functionName":{"name":"shl","nativeSrc":"16316:3:94","nodeType":"YulIdentifier","src":"16316:3:94"},"nativeSrc":"16316:15:94","nodeType":"YulFunctionCall","src":"16316:15:94"}],"functionName":{"name":"and","nativeSrc":"16306:3:94","nodeType":"YulIdentifier","src":"16306:3:94"},"nativeSrc":"16306:26:94","nodeType":"YulFunctionCall","src":"16306:26:94"},"variableNames":[{"name":"left","nativeSrc":"16298:4:94","nodeType":"YulIdentifier","src":"16298:4:94"}]},{"nativeSrc":"16345:37:94","nodeType":"YulAssignment","src":"16345:37:94","value":{"arguments":[{"name":"right","nativeSrc":"16358:5:94","nodeType":"YulIdentifier","src":"16358:5:94"},{"arguments":[{"kind":"number","nativeSrc":"16369:3:94","nodeType":"YulLiteral","src":"16369:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"16378:1:94","nodeType":"YulLiteral","src":"16378:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"16374:3:94","nodeType":"YulIdentifier","src":"16374:3:94"},"nativeSrc":"16374:6:94","nodeType":"YulFunctionCall","src":"16374:6:94"}],"functionName":{"name":"shl","nativeSrc":"16365:3:94","nodeType":"YulIdentifier","src":"16365:3:94"},"nativeSrc":"16365:16:94","nodeType":"YulFunctionCall","src":"16365:16:94"}],"functionName":{"name":"and","nativeSrc":"16354:3:94","nodeType":"YulIdentifier","src":"16354:3:94"},"nativeSrc":"16354:28:94","nodeType":"YulFunctionCall","src":"16354:28:94"},"variableNames":[{"name":"right","nativeSrc":"16345:5:94","nodeType":"YulIdentifier","src":"16345:5:94"}]},{"nativeSrc":"16395:35:94","nodeType":"YulAssignment","src":"16395:35:94","value":{"arguments":[{"name":"left","nativeSrc":"16408:4:94","nodeType":"YulIdentifier","src":"16408:4:94"},{"arguments":[{"kind":"number","nativeSrc":"16418:3:94","nodeType":"YulLiteral","src":"16418:3:94","type":"","value":"176"},{"name":"right","nativeSrc":"16423:5:94","nodeType":"YulIdentifier","src":"16423:5:94"}],"functionName":{"name":"shr","nativeSrc":"16414:3:94","nodeType":"YulIdentifier","src":"16414:3:94"},"nativeSrc":"16414:15:94","nodeType":"YulFunctionCall","src":"16414:15:94"}],"functionName":{"name":"or","nativeSrc":"16405:2:94","nodeType":"YulIdentifier","src":"16405:2:94"},"nativeSrc":"16405:25:94","nodeType":"YulFunctionCall","src":"16405:25:94"},"variableNames":[{"name":"result","nativeSrc":"16395:6:94","nodeType":"YulIdentifier","src":"16395:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27938,"isOffset":false,"isSlot":false,"src":"16298:4:94","valueSize":1},{"declaration":27938,"isOffset":false,"isSlot":false,"src":"16310:4:94","valueSize":1},{"declaration":27938,"isOffset":false,"isSlot":false,"src":"16408:4:94","valueSize":1},{"declaration":27943,"isOffset":false,"isSlot":false,"src":"16395:6:94","valueSize":1},{"declaration":27940,"isOffset":false,"isSlot":false,"src":"16345:5:94","valueSize":1},{"declaration":27940,"isOffset":false,"isSlot":false,"src":"16358:5:94","valueSize":1},{"declaration":27940,"isOffset":false,"isSlot":false,"src":"16423:5:94","valueSize":1}],"flags":["memory-safe"],"id":27945,"nodeType":"InlineAssembly","src":"16259:181:94"}]},"id":27947,"implemented":true,"kind":"function","modifiers":[],"name":"pack_22_10","nameLocation":"16170:10:94","nodeType":"FunctionDefinition","parameters":{"id":27941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27938,"mutability":"mutable","name":"left","nameLocation":"16189:4:94","nodeType":"VariableDeclaration","scope":27947,"src":"16181:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":27937,"name":"bytes22","nodeType":"ElementaryTypeName","src":"16181:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":27940,"mutability":"mutable","name":"right","nameLocation":"16203:5:94","nodeType":"VariableDeclaration","scope":27947,"src":"16195:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":27939,"name":"bytes10","nodeType":"ElementaryTypeName","src":"16195:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"16180:29:94"},"returnParameters":{"id":27944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27943,"mutability":"mutable","name":"result","nameLocation":"16241:6:94","nodeType":"VariableDeclaration","scope":27947,"src":"16233:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":27942,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16233:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16232:16:94"},"scope":30945,"src":"16161:285:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27957,"nodeType":"Block","src":"16538:197:94","statements":[{"AST":{"nativeSrc":"16573:156:94","nodeType":"YulBlock","src":"16573:156:94","statements":[{"nativeSrc":"16587:34:94","nodeType":"YulAssignment","src":"16587:34:94","value":{"arguments":[{"name":"left","nativeSrc":"16599:4:94","nodeType":"YulIdentifier","src":"16599:4:94"},{"arguments":[{"kind":"number","nativeSrc":"16609:2:94","nodeType":"YulLiteral","src":"16609:2:94","type":"","value":"64"},{"arguments":[{"kind":"number","nativeSrc":"16617:1:94","nodeType":"YulLiteral","src":"16617:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"16613:3:94","nodeType":"YulIdentifier","src":"16613:3:94"},"nativeSrc":"16613:6:94","nodeType":"YulFunctionCall","src":"16613:6:94"}],"functionName":{"name":"shl","nativeSrc":"16605:3:94","nodeType":"YulIdentifier","src":"16605:3:94"},"nativeSrc":"16605:15:94","nodeType":"YulFunctionCall","src":"16605:15:94"}],"functionName":{"name":"and","nativeSrc":"16595:3:94","nodeType":"YulIdentifier","src":"16595:3:94"},"nativeSrc":"16595:26:94","nodeType":"YulFunctionCall","src":"16595:26:94"},"variableNames":[{"name":"left","nativeSrc":"16587:4:94","nodeType":"YulIdentifier","src":"16587:4:94"}]},{"nativeSrc":"16634:37:94","nodeType":"YulAssignment","src":"16634:37:94","value":{"arguments":[{"name":"right","nativeSrc":"16647:5:94","nodeType":"YulIdentifier","src":"16647:5:94"},{"arguments":[{"kind":"number","nativeSrc":"16658:3:94","nodeType":"YulLiteral","src":"16658:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"16667:1:94","nodeType":"YulLiteral","src":"16667:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"16663:3:94","nodeType":"YulIdentifier","src":"16663:3:94"},"nativeSrc":"16663:6:94","nodeType":"YulFunctionCall","src":"16663:6:94"}],"functionName":{"name":"shl","nativeSrc":"16654:3:94","nodeType":"YulIdentifier","src":"16654:3:94"},"nativeSrc":"16654:16:94","nodeType":"YulFunctionCall","src":"16654:16:94"}],"functionName":{"name":"and","nativeSrc":"16643:3:94","nodeType":"YulIdentifier","src":"16643:3:94"},"nativeSrc":"16643:28:94","nodeType":"YulFunctionCall","src":"16643:28:94"},"variableNames":[{"name":"right","nativeSrc":"16634:5:94","nodeType":"YulIdentifier","src":"16634:5:94"}]},{"nativeSrc":"16684:35:94","nodeType":"YulAssignment","src":"16684:35:94","value":{"arguments":[{"name":"left","nativeSrc":"16697:4:94","nodeType":"YulIdentifier","src":"16697:4:94"},{"arguments":[{"kind":"number","nativeSrc":"16707:3:94","nodeType":"YulLiteral","src":"16707:3:94","type":"","value":"192"},{"name":"right","nativeSrc":"16712:5:94","nodeType":"YulIdentifier","src":"16712:5:94"}],"functionName":{"name":"shr","nativeSrc":"16703:3:94","nodeType":"YulIdentifier","src":"16703:3:94"},"nativeSrc":"16703:15:94","nodeType":"YulFunctionCall","src":"16703:15:94"}],"functionName":{"name":"or","nativeSrc":"16694:2:94","nodeType":"YulIdentifier","src":"16694:2:94"},"nativeSrc":"16694:25:94","nodeType":"YulFunctionCall","src":"16694:25:94"},"variableNames":[{"name":"result","nativeSrc":"16684:6:94","nodeType":"YulIdentifier","src":"16684:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27949,"isOffset":false,"isSlot":false,"src":"16587:4:94","valueSize":1},{"declaration":27949,"isOffset":false,"isSlot":false,"src":"16599:4:94","valueSize":1},{"declaration":27949,"isOffset":false,"isSlot":false,"src":"16697:4:94","valueSize":1},{"declaration":27954,"isOffset":false,"isSlot":false,"src":"16684:6:94","valueSize":1},{"declaration":27951,"isOffset":false,"isSlot":false,"src":"16634:5:94","valueSize":1},{"declaration":27951,"isOffset":false,"isSlot":false,"src":"16647:5:94","valueSize":1},{"declaration":27951,"isOffset":false,"isSlot":false,"src":"16712:5:94","valueSize":1}],"flags":["memory-safe"],"id":27956,"nodeType":"InlineAssembly","src":"16548:181:94"}]},"id":27958,"implemented":true,"kind":"function","modifiers":[],"name":"pack_24_4","nameLocation":"16461:9:94","nodeType":"FunctionDefinition","parameters":{"id":27952,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27949,"mutability":"mutable","name":"left","nameLocation":"16479:4:94","nodeType":"VariableDeclaration","scope":27958,"src":"16471:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":27948,"name":"bytes24","nodeType":"ElementaryTypeName","src":"16471:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":27951,"mutability":"mutable","name":"right","nameLocation":"16492:5:94","nodeType":"VariableDeclaration","scope":27958,"src":"16485:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27950,"name":"bytes4","nodeType":"ElementaryTypeName","src":"16485:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"16470:28:94"},"returnParameters":{"id":27955,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27954,"mutability":"mutable","name":"result","nameLocation":"16530:6:94","nodeType":"VariableDeclaration","scope":27958,"src":"16522:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":27953,"name":"bytes28","nodeType":"ElementaryTypeName","src":"16522:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"16521:16:94"},"scope":30945,"src":"16452:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27968,"nodeType":"Block","src":"16827:197:94","statements":[{"AST":{"nativeSrc":"16862:156:94","nodeType":"YulBlock","src":"16862:156:94","statements":[{"nativeSrc":"16876:34:94","nodeType":"YulAssignment","src":"16876:34:94","value":{"arguments":[{"name":"left","nativeSrc":"16888:4:94","nodeType":"YulIdentifier","src":"16888:4:94"},{"arguments":[{"kind":"number","nativeSrc":"16898:2:94","nodeType":"YulLiteral","src":"16898:2:94","type":"","value":"64"},{"arguments":[{"kind":"number","nativeSrc":"16906:1:94","nodeType":"YulLiteral","src":"16906:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"16902:3:94","nodeType":"YulIdentifier","src":"16902:3:94"},"nativeSrc":"16902:6:94","nodeType":"YulFunctionCall","src":"16902:6:94"}],"functionName":{"name":"shl","nativeSrc":"16894:3:94","nodeType":"YulIdentifier","src":"16894:3:94"},"nativeSrc":"16894:15:94","nodeType":"YulFunctionCall","src":"16894:15:94"}],"functionName":{"name":"and","nativeSrc":"16884:3:94","nodeType":"YulIdentifier","src":"16884:3:94"},"nativeSrc":"16884:26:94","nodeType":"YulFunctionCall","src":"16884:26:94"},"variableNames":[{"name":"left","nativeSrc":"16876:4:94","nodeType":"YulIdentifier","src":"16876:4:94"}]},{"nativeSrc":"16923:37:94","nodeType":"YulAssignment","src":"16923:37:94","value":{"arguments":[{"name":"right","nativeSrc":"16936:5:94","nodeType":"YulIdentifier","src":"16936:5:94"},{"arguments":[{"kind":"number","nativeSrc":"16947:3:94","nodeType":"YulLiteral","src":"16947:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"16956:1:94","nodeType":"YulLiteral","src":"16956:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"16952:3:94","nodeType":"YulIdentifier","src":"16952:3:94"},"nativeSrc":"16952:6:94","nodeType":"YulFunctionCall","src":"16952:6:94"}],"functionName":{"name":"shl","nativeSrc":"16943:3:94","nodeType":"YulIdentifier","src":"16943:3:94"},"nativeSrc":"16943:16:94","nodeType":"YulFunctionCall","src":"16943:16:94"}],"functionName":{"name":"and","nativeSrc":"16932:3:94","nodeType":"YulIdentifier","src":"16932:3:94"},"nativeSrc":"16932:28:94","nodeType":"YulFunctionCall","src":"16932:28:94"},"variableNames":[{"name":"right","nativeSrc":"16923:5:94","nodeType":"YulIdentifier","src":"16923:5:94"}]},{"nativeSrc":"16973:35:94","nodeType":"YulAssignment","src":"16973:35:94","value":{"arguments":[{"name":"left","nativeSrc":"16986:4:94","nodeType":"YulIdentifier","src":"16986:4:94"},{"arguments":[{"kind":"number","nativeSrc":"16996:3:94","nodeType":"YulLiteral","src":"16996:3:94","type":"","value":"192"},{"name":"right","nativeSrc":"17001:5:94","nodeType":"YulIdentifier","src":"17001:5:94"}],"functionName":{"name":"shr","nativeSrc":"16992:3:94","nodeType":"YulIdentifier","src":"16992:3:94"},"nativeSrc":"16992:15:94","nodeType":"YulFunctionCall","src":"16992:15:94"}],"functionName":{"name":"or","nativeSrc":"16983:2:94","nodeType":"YulIdentifier","src":"16983:2:94"},"nativeSrc":"16983:25:94","nodeType":"YulFunctionCall","src":"16983:25:94"},"variableNames":[{"name":"result","nativeSrc":"16973:6:94","nodeType":"YulIdentifier","src":"16973:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27960,"isOffset":false,"isSlot":false,"src":"16876:4:94","valueSize":1},{"declaration":27960,"isOffset":false,"isSlot":false,"src":"16888:4:94","valueSize":1},{"declaration":27960,"isOffset":false,"isSlot":false,"src":"16986:4:94","valueSize":1},{"declaration":27965,"isOffset":false,"isSlot":false,"src":"16973:6:94","valueSize":1},{"declaration":27962,"isOffset":false,"isSlot":false,"src":"16923:5:94","valueSize":1},{"declaration":27962,"isOffset":false,"isSlot":false,"src":"16936:5:94","valueSize":1},{"declaration":27962,"isOffset":false,"isSlot":false,"src":"17001:5:94","valueSize":1}],"flags":["memory-safe"],"id":27967,"nodeType":"InlineAssembly","src":"16837:181:94"}]},"id":27969,"implemented":true,"kind":"function","modifiers":[],"name":"pack_24_8","nameLocation":"16750:9:94","nodeType":"FunctionDefinition","parameters":{"id":27963,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27960,"mutability":"mutable","name":"left","nameLocation":"16768:4:94","nodeType":"VariableDeclaration","scope":27969,"src":"16760:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":27959,"name":"bytes24","nodeType":"ElementaryTypeName","src":"16760:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":27962,"mutability":"mutable","name":"right","nameLocation":"16781:5:94","nodeType":"VariableDeclaration","scope":27969,"src":"16774:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":27961,"name":"bytes8","nodeType":"ElementaryTypeName","src":"16774:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"16759:28:94"},"returnParameters":{"id":27966,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27965,"mutability":"mutable","name":"result","nameLocation":"16819:6:94","nodeType":"VariableDeclaration","scope":27969,"src":"16811:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":27964,"name":"bytes32","nodeType":"ElementaryTypeName","src":"16811:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"16810:16:94"},"scope":30945,"src":"16741:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27979,"nodeType":"Block","src":"17116:197:94","statements":[{"AST":{"nativeSrc":"17151:156:94","nodeType":"YulBlock","src":"17151:156:94","statements":[{"nativeSrc":"17165:34:94","nodeType":"YulAssignment","src":"17165:34:94","value":{"arguments":[{"name":"left","nativeSrc":"17177:4:94","nodeType":"YulIdentifier","src":"17177:4:94"},{"arguments":[{"kind":"number","nativeSrc":"17187:2:94","nodeType":"YulLiteral","src":"17187:2:94","type":"","value":"32"},{"arguments":[{"kind":"number","nativeSrc":"17195:1:94","nodeType":"YulLiteral","src":"17195:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"17191:3:94","nodeType":"YulIdentifier","src":"17191:3:94"},"nativeSrc":"17191:6:94","nodeType":"YulFunctionCall","src":"17191:6:94"}],"functionName":{"name":"shl","nativeSrc":"17183:3:94","nodeType":"YulIdentifier","src":"17183:3:94"},"nativeSrc":"17183:15:94","nodeType":"YulFunctionCall","src":"17183:15:94"}],"functionName":{"name":"and","nativeSrc":"17173:3:94","nodeType":"YulIdentifier","src":"17173:3:94"},"nativeSrc":"17173:26:94","nodeType":"YulFunctionCall","src":"17173:26:94"},"variableNames":[{"name":"left","nativeSrc":"17165:4:94","nodeType":"YulIdentifier","src":"17165:4:94"}]},{"nativeSrc":"17212:37:94","nodeType":"YulAssignment","src":"17212:37:94","value":{"arguments":[{"name":"right","nativeSrc":"17225:5:94","nodeType":"YulIdentifier","src":"17225:5:94"},{"arguments":[{"kind":"number","nativeSrc":"17236:3:94","nodeType":"YulLiteral","src":"17236:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"17245:1:94","nodeType":"YulLiteral","src":"17245:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"17241:3:94","nodeType":"YulIdentifier","src":"17241:3:94"},"nativeSrc":"17241:6:94","nodeType":"YulFunctionCall","src":"17241:6:94"}],"functionName":{"name":"shl","nativeSrc":"17232:3:94","nodeType":"YulIdentifier","src":"17232:3:94"},"nativeSrc":"17232:16:94","nodeType":"YulFunctionCall","src":"17232:16:94"}],"functionName":{"name":"and","nativeSrc":"17221:3:94","nodeType":"YulIdentifier","src":"17221:3:94"},"nativeSrc":"17221:28:94","nodeType":"YulFunctionCall","src":"17221:28:94"},"variableNames":[{"name":"right","nativeSrc":"17212:5:94","nodeType":"YulIdentifier","src":"17212:5:94"}]},{"nativeSrc":"17262:35:94","nodeType":"YulAssignment","src":"17262:35:94","value":{"arguments":[{"name":"left","nativeSrc":"17275:4:94","nodeType":"YulIdentifier","src":"17275:4:94"},{"arguments":[{"kind":"number","nativeSrc":"17285:3:94","nodeType":"YulLiteral","src":"17285:3:94","type":"","value":"224"},{"name":"right","nativeSrc":"17290:5:94","nodeType":"YulIdentifier","src":"17290:5:94"}],"functionName":{"name":"shr","nativeSrc":"17281:3:94","nodeType":"YulIdentifier","src":"17281:3:94"},"nativeSrc":"17281:15:94","nodeType":"YulFunctionCall","src":"17281:15:94"}],"functionName":{"name":"or","nativeSrc":"17272:2:94","nodeType":"YulIdentifier","src":"17272:2:94"},"nativeSrc":"17272:25:94","nodeType":"YulFunctionCall","src":"17272:25:94"},"variableNames":[{"name":"result","nativeSrc":"17262:6:94","nodeType":"YulIdentifier","src":"17262:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27971,"isOffset":false,"isSlot":false,"src":"17165:4:94","valueSize":1},{"declaration":27971,"isOffset":false,"isSlot":false,"src":"17177:4:94","valueSize":1},{"declaration":27971,"isOffset":false,"isSlot":false,"src":"17275:4:94","valueSize":1},{"declaration":27976,"isOffset":false,"isSlot":false,"src":"17262:6:94","valueSize":1},{"declaration":27973,"isOffset":false,"isSlot":false,"src":"17212:5:94","valueSize":1},{"declaration":27973,"isOffset":false,"isSlot":false,"src":"17225:5:94","valueSize":1},{"declaration":27973,"isOffset":false,"isSlot":false,"src":"17290:5:94","valueSize":1}],"flags":["memory-safe"],"id":27978,"nodeType":"InlineAssembly","src":"17126:181:94"}]},"id":27980,"implemented":true,"kind":"function","modifiers":[],"name":"pack_28_4","nameLocation":"17039:9:94","nodeType":"FunctionDefinition","parameters":{"id":27974,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27971,"mutability":"mutable","name":"left","nameLocation":"17057:4:94","nodeType":"VariableDeclaration","scope":27980,"src":"17049:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":27970,"name":"bytes28","nodeType":"ElementaryTypeName","src":"17049:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":27973,"mutability":"mutable","name":"right","nameLocation":"17070:5:94","nodeType":"VariableDeclaration","scope":27980,"src":"17063:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":27972,"name":"bytes4","nodeType":"ElementaryTypeName","src":"17063:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"17048:28:94"},"returnParameters":{"id":27977,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27976,"mutability":"mutable","name":"result","nameLocation":"17108:6:94","nodeType":"VariableDeclaration","scope":27980,"src":"17100:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":27975,"name":"bytes32","nodeType":"ElementaryTypeName","src":"17100:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"17099:16:94"},"scope":30945,"src":"17030:283:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":27997,"nodeType":"Block","src":"17405:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":27991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":27989,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27984,"src":"17419:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":27990,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17428:1:94","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"17419:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":27995,"nodeType":"IfStatement","src":"17415:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":27992,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"17438:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":27993,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17438:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":27994,"nodeType":"RevertStatement","src":"17431:25:94"}},{"AST":{"nativeSrc":"17491:82:94","nodeType":"YulBlock","src":"17491:82:94","statements":[{"nativeSrc":"17505:58:94","nodeType":"YulAssignment","src":"17505:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17527:1:94","nodeType":"YulLiteral","src":"17527:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"17530:6:94","nodeType":"YulIdentifier","src":"17530:6:94"}],"functionName":{"name":"mul","nativeSrc":"17523:3:94","nodeType":"YulIdentifier","src":"17523:3:94"},"nativeSrc":"17523:14:94","nodeType":"YulFunctionCall","src":"17523:14:94"},{"name":"self","nativeSrc":"17539:4:94","nodeType":"YulIdentifier","src":"17539:4:94"}],"functionName":{"name":"shl","nativeSrc":"17519:3:94","nodeType":"YulIdentifier","src":"17519:3:94"},"nativeSrc":"17519:25:94","nodeType":"YulFunctionCall","src":"17519:25:94"},{"arguments":[{"kind":"number","nativeSrc":"17550:3:94","nodeType":"YulLiteral","src":"17550:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"17559:1:94","nodeType":"YulLiteral","src":"17559:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"17555:3:94","nodeType":"YulIdentifier","src":"17555:3:94"},"nativeSrc":"17555:6:94","nodeType":"YulFunctionCall","src":"17555:6:94"}],"functionName":{"name":"shl","nativeSrc":"17546:3:94","nodeType":"YulIdentifier","src":"17546:3:94"},"nativeSrc":"17546:16:94","nodeType":"YulFunctionCall","src":"17546:16:94"}],"functionName":{"name":"and","nativeSrc":"17515:3:94","nodeType":"YulIdentifier","src":"17515:3:94"},"nativeSrc":"17515:48:94","nodeType":"YulFunctionCall","src":"17515:48:94"},"variableNames":[{"name":"result","nativeSrc":"17505:6:94","nodeType":"YulIdentifier","src":"17505:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":27984,"isOffset":false,"isSlot":false,"src":"17530:6:94","valueSize":1},{"declaration":27987,"isOffset":false,"isSlot":false,"src":"17505:6:94","valueSize":1},{"declaration":27982,"isOffset":false,"isSlot":false,"src":"17539:4:94","valueSize":1}],"flags":["memory-safe"],"id":27996,"nodeType":"InlineAssembly","src":"17466:107:94"}]},"id":27998,"implemented":true,"kind":"function","modifiers":[],"name":"extract_2_1","nameLocation":"17328:11:94","nodeType":"FunctionDefinition","parameters":{"id":27985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27982,"mutability":"mutable","name":"self","nameLocation":"17347:4:94","nodeType":"VariableDeclaration","scope":27998,"src":"17340:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27981,"name":"bytes2","nodeType":"ElementaryTypeName","src":"17340:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":27984,"mutability":"mutable","name":"offset","nameLocation":"17359:6:94","nodeType":"VariableDeclaration","scope":27998,"src":"17353:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":27983,"name":"uint8","nodeType":"ElementaryTypeName","src":"17353:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"17339:27:94"},"returnParameters":{"id":27988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27987,"mutability":"mutable","name":"result","nameLocation":"17397:6:94","nodeType":"VariableDeclaration","scope":27998,"src":"17390:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":27986,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17390:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"17389:15:94"},"scope":30945,"src":"17319:260:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28017,"nodeType":"Block","src":"17685:230:94","statements":[{"assignments":[28010],"declarations":[{"constant":false,"id":28010,"mutability":"mutable","name":"oldValue","nameLocation":"17702:8:94","nodeType":"VariableDeclaration","scope":28017,"src":"17695:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28009,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17695:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":28015,"initialValue":{"arguments":[{"id":28012,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28000,"src":"17725:4:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},{"id":28013,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28004,"src":"17731:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes2","typeString":"bytes2"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28011,"name":"extract_2_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27998,"src":"17713:11:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes2_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes2,uint8) pure returns (bytes1)"}},"id":28014,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17713:25:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"17695:43:94"},{"AST":{"nativeSrc":"17773:136:94","nodeType":"YulBlock","src":"17773:136:94","statements":[{"nativeSrc":"17787:37:94","nodeType":"YulAssignment","src":"17787:37:94","value":{"arguments":[{"name":"value","nativeSrc":"17800:5:94","nodeType":"YulIdentifier","src":"17800:5:94"},{"arguments":[{"kind":"number","nativeSrc":"17811:3:94","nodeType":"YulLiteral","src":"17811:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"17820:1:94","nodeType":"YulLiteral","src":"17820:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"17816:3:94","nodeType":"YulIdentifier","src":"17816:3:94"},"nativeSrc":"17816:6:94","nodeType":"YulFunctionCall","src":"17816:6:94"}],"functionName":{"name":"shl","nativeSrc":"17807:3:94","nodeType":"YulIdentifier","src":"17807:3:94"},"nativeSrc":"17807:16:94","nodeType":"YulFunctionCall","src":"17807:16:94"}],"functionName":{"name":"and","nativeSrc":"17796:3:94","nodeType":"YulIdentifier","src":"17796:3:94"},"nativeSrc":"17796:28:94","nodeType":"YulFunctionCall","src":"17796:28:94"},"variableNames":[{"name":"value","nativeSrc":"17787:5:94","nodeType":"YulIdentifier","src":"17787:5:94"}]},{"nativeSrc":"17837:62:94","nodeType":"YulAssignment","src":"17837:62:94","value":{"arguments":[{"name":"self","nativeSrc":"17851:4:94","nodeType":"YulIdentifier","src":"17851:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17865:1:94","nodeType":"YulLiteral","src":"17865:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"17868:6:94","nodeType":"YulIdentifier","src":"17868:6:94"}],"functionName":{"name":"mul","nativeSrc":"17861:3:94","nodeType":"YulIdentifier","src":"17861:3:94"},"nativeSrc":"17861:14:94","nodeType":"YulFunctionCall","src":"17861:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"17881:8:94","nodeType":"YulIdentifier","src":"17881:8:94"},{"name":"value","nativeSrc":"17891:5:94","nodeType":"YulIdentifier","src":"17891:5:94"}],"functionName":{"name":"xor","nativeSrc":"17877:3:94","nodeType":"YulIdentifier","src":"17877:3:94"},"nativeSrc":"17877:20:94","nodeType":"YulFunctionCall","src":"17877:20:94"}],"functionName":{"name":"shr","nativeSrc":"17857:3:94","nodeType":"YulIdentifier","src":"17857:3:94"},"nativeSrc":"17857:41:94","nodeType":"YulFunctionCall","src":"17857:41:94"}],"functionName":{"name":"xor","nativeSrc":"17847:3:94","nodeType":"YulIdentifier","src":"17847:3:94"},"nativeSrc":"17847:52:94","nodeType":"YulFunctionCall","src":"17847:52:94"},"variableNames":[{"name":"result","nativeSrc":"17837:6:94","nodeType":"YulIdentifier","src":"17837:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28004,"isOffset":false,"isSlot":false,"src":"17868:6:94","valueSize":1},{"declaration":28010,"isOffset":false,"isSlot":false,"src":"17881:8:94","valueSize":1},{"declaration":28007,"isOffset":false,"isSlot":false,"src":"17837:6:94","valueSize":1},{"declaration":28000,"isOffset":false,"isSlot":false,"src":"17851:4:94","valueSize":1},{"declaration":28002,"isOffset":false,"isSlot":false,"src":"17787:5:94","valueSize":1},{"declaration":28002,"isOffset":false,"isSlot":false,"src":"17800:5:94","valueSize":1},{"declaration":28002,"isOffset":false,"isSlot":false,"src":"17891:5:94","valueSize":1}],"flags":["memory-safe"],"id":28016,"nodeType":"InlineAssembly","src":"17748:161:94"}]},"id":28018,"implemented":true,"kind":"function","modifiers":[],"name":"replace_2_1","nameLocation":"17594:11:94","nodeType":"FunctionDefinition","parameters":{"id":28005,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28000,"mutability":"mutable","name":"self","nameLocation":"17613:4:94","nodeType":"VariableDeclaration","scope":28018,"src":"17606:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":27999,"name":"bytes2","nodeType":"ElementaryTypeName","src":"17606:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":28002,"mutability":"mutable","name":"value","nameLocation":"17626:5:94","nodeType":"VariableDeclaration","scope":28018,"src":"17619:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28001,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17619:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":28004,"mutability":"mutable","name":"offset","nameLocation":"17639:6:94","nodeType":"VariableDeclaration","scope":28018,"src":"17633:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28003,"name":"uint8","nodeType":"ElementaryTypeName","src":"17633:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"17605:41:94"},"returnParameters":{"id":28008,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28007,"mutability":"mutable","name":"result","nameLocation":"17677:6:94","nodeType":"VariableDeclaration","scope":28018,"src":"17670:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28006,"name":"bytes2","nodeType":"ElementaryTypeName","src":"17670:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"17669:15:94"},"scope":30945,"src":"17585:330:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28035,"nodeType":"Block","src":"18007:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28027,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28022,"src":"18021:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"33","id":28028,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18030:1:94","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"18021:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28033,"nodeType":"IfStatement","src":"18017:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28030,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"18040:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18040:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28032,"nodeType":"RevertStatement","src":"18033:25:94"}},{"AST":{"nativeSrc":"18093:82:94","nodeType":"YulBlock","src":"18093:82:94","statements":[{"nativeSrc":"18107:58:94","nodeType":"YulAssignment","src":"18107:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18129:1:94","nodeType":"YulLiteral","src":"18129:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"18132:6:94","nodeType":"YulIdentifier","src":"18132:6:94"}],"functionName":{"name":"mul","nativeSrc":"18125:3:94","nodeType":"YulIdentifier","src":"18125:3:94"},"nativeSrc":"18125:14:94","nodeType":"YulFunctionCall","src":"18125:14:94"},{"name":"self","nativeSrc":"18141:4:94","nodeType":"YulIdentifier","src":"18141:4:94"}],"functionName":{"name":"shl","nativeSrc":"18121:3:94","nodeType":"YulIdentifier","src":"18121:3:94"},"nativeSrc":"18121:25:94","nodeType":"YulFunctionCall","src":"18121:25:94"},{"arguments":[{"kind":"number","nativeSrc":"18152:3:94","nodeType":"YulLiteral","src":"18152:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"18161:1:94","nodeType":"YulLiteral","src":"18161:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"18157:3:94","nodeType":"YulIdentifier","src":"18157:3:94"},"nativeSrc":"18157:6:94","nodeType":"YulFunctionCall","src":"18157:6:94"}],"functionName":{"name":"shl","nativeSrc":"18148:3:94","nodeType":"YulIdentifier","src":"18148:3:94"},"nativeSrc":"18148:16:94","nodeType":"YulFunctionCall","src":"18148:16:94"}],"functionName":{"name":"and","nativeSrc":"18117:3:94","nodeType":"YulIdentifier","src":"18117:3:94"},"nativeSrc":"18117:48:94","nodeType":"YulFunctionCall","src":"18117:48:94"},"variableNames":[{"name":"result","nativeSrc":"18107:6:94","nodeType":"YulIdentifier","src":"18107:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28022,"isOffset":false,"isSlot":false,"src":"18132:6:94","valueSize":1},{"declaration":28025,"isOffset":false,"isSlot":false,"src":"18107:6:94","valueSize":1},{"declaration":28020,"isOffset":false,"isSlot":false,"src":"18141:4:94","valueSize":1}],"flags":["memory-safe"],"id":28034,"nodeType":"InlineAssembly","src":"18068:107:94"}]},"id":28036,"implemented":true,"kind":"function","modifiers":[],"name":"extract_4_1","nameLocation":"17930:11:94","nodeType":"FunctionDefinition","parameters":{"id":28023,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28020,"mutability":"mutable","name":"self","nameLocation":"17949:4:94","nodeType":"VariableDeclaration","scope":28036,"src":"17942:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28019,"name":"bytes4","nodeType":"ElementaryTypeName","src":"17942:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":28022,"mutability":"mutable","name":"offset","nameLocation":"17961:6:94","nodeType":"VariableDeclaration","scope":28036,"src":"17955:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28021,"name":"uint8","nodeType":"ElementaryTypeName","src":"17955:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"17941:27:94"},"returnParameters":{"id":28026,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28025,"mutability":"mutable","name":"result","nameLocation":"17999:6:94","nodeType":"VariableDeclaration","scope":28036,"src":"17992:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28024,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17992:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"17991:15:94"},"scope":30945,"src":"17921:260:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28055,"nodeType":"Block","src":"18287:230:94","statements":[{"assignments":[28048],"declarations":[{"constant":false,"id":28048,"mutability":"mutable","name":"oldValue","nameLocation":"18304:8:94","nodeType":"VariableDeclaration","scope":28055,"src":"18297:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28047,"name":"bytes1","nodeType":"ElementaryTypeName","src":"18297:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":28053,"initialValue":{"arguments":[{"id":28050,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28038,"src":"18327:4:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":28051,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28042,"src":"18333:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28049,"name":"extract_4_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28036,"src":"18315:11:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes4_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes4,uint8) pure returns (bytes1)"}},"id":28052,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18315:25:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"18297:43:94"},{"AST":{"nativeSrc":"18375:136:94","nodeType":"YulBlock","src":"18375:136:94","statements":[{"nativeSrc":"18389:37:94","nodeType":"YulAssignment","src":"18389:37:94","value":{"arguments":[{"name":"value","nativeSrc":"18402:5:94","nodeType":"YulIdentifier","src":"18402:5:94"},{"arguments":[{"kind":"number","nativeSrc":"18413:3:94","nodeType":"YulLiteral","src":"18413:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"18422:1:94","nodeType":"YulLiteral","src":"18422:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"18418:3:94","nodeType":"YulIdentifier","src":"18418:3:94"},"nativeSrc":"18418:6:94","nodeType":"YulFunctionCall","src":"18418:6:94"}],"functionName":{"name":"shl","nativeSrc":"18409:3:94","nodeType":"YulIdentifier","src":"18409:3:94"},"nativeSrc":"18409:16:94","nodeType":"YulFunctionCall","src":"18409:16:94"}],"functionName":{"name":"and","nativeSrc":"18398:3:94","nodeType":"YulIdentifier","src":"18398:3:94"},"nativeSrc":"18398:28:94","nodeType":"YulFunctionCall","src":"18398:28:94"},"variableNames":[{"name":"value","nativeSrc":"18389:5:94","nodeType":"YulIdentifier","src":"18389:5:94"}]},{"nativeSrc":"18439:62:94","nodeType":"YulAssignment","src":"18439:62:94","value":{"arguments":[{"name":"self","nativeSrc":"18453:4:94","nodeType":"YulIdentifier","src":"18453:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18467:1:94","nodeType":"YulLiteral","src":"18467:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"18470:6:94","nodeType":"YulIdentifier","src":"18470:6:94"}],"functionName":{"name":"mul","nativeSrc":"18463:3:94","nodeType":"YulIdentifier","src":"18463:3:94"},"nativeSrc":"18463:14:94","nodeType":"YulFunctionCall","src":"18463:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"18483:8:94","nodeType":"YulIdentifier","src":"18483:8:94"},{"name":"value","nativeSrc":"18493:5:94","nodeType":"YulIdentifier","src":"18493:5:94"}],"functionName":{"name":"xor","nativeSrc":"18479:3:94","nodeType":"YulIdentifier","src":"18479:3:94"},"nativeSrc":"18479:20:94","nodeType":"YulFunctionCall","src":"18479:20:94"}],"functionName":{"name":"shr","nativeSrc":"18459:3:94","nodeType":"YulIdentifier","src":"18459:3:94"},"nativeSrc":"18459:41:94","nodeType":"YulFunctionCall","src":"18459:41:94"}],"functionName":{"name":"xor","nativeSrc":"18449:3:94","nodeType":"YulIdentifier","src":"18449:3:94"},"nativeSrc":"18449:52:94","nodeType":"YulFunctionCall","src":"18449:52:94"},"variableNames":[{"name":"result","nativeSrc":"18439:6:94","nodeType":"YulIdentifier","src":"18439:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28042,"isOffset":false,"isSlot":false,"src":"18470:6:94","valueSize":1},{"declaration":28048,"isOffset":false,"isSlot":false,"src":"18483:8:94","valueSize":1},{"declaration":28045,"isOffset":false,"isSlot":false,"src":"18439:6:94","valueSize":1},{"declaration":28038,"isOffset":false,"isSlot":false,"src":"18453:4:94","valueSize":1},{"declaration":28040,"isOffset":false,"isSlot":false,"src":"18389:5:94","valueSize":1},{"declaration":28040,"isOffset":false,"isSlot":false,"src":"18402:5:94","valueSize":1},{"declaration":28040,"isOffset":false,"isSlot":false,"src":"18493:5:94","valueSize":1}],"flags":["memory-safe"],"id":28054,"nodeType":"InlineAssembly","src":"18350:161:94"}]},"id":28056,"implemented":true,"kind":"function","modifiers":[],"name":"replace_4_1","nameLocation":"18196:11:94","nodeType":"FunctionDefinition","parameters":{"id":28043,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28038,"mutability":"mutable","name":"self","nameLocation":"18215:4:94","nodeType":"VariableDeclaration","scope":28056,"src":"18208:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28037,"name":"bytes4","nodeType":"ElementaryTypeName","src":"18208:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":28040,"mutability":"mutable","name":"value","nameLocation":"18228:5:94","nodeType":"VariableDeclaration","scope":28056,"src":"18221:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28039,"name":"bytes1","nodeType":"ElementaryTypeName","src":"18221:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":28042,"mutability":"mutable","name":"offset","nameLocation":"18241:6:94","nodeType":"VariableDeclaration","scope":28056,"src":"18235:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28041,"name":"uint8","nodeType":"ElementaryTypeName","src":"18235:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"18207:41:94"},"returnParameters":{"id":28046,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28045,"mutability":"mutable","name":"result","nameLocation":"18279:6:94","nodeType":"VariableDeclaration","scope":28056,"src":"18272:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28044,"name":"bytes4","nodeType":"ElementaryTypeName","src":"18272:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"18271:15:94"},"scope":30945,"src":"18187:330:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28073,"nodeType":"Block","src":"18609:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28067,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28065,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28060,"src":"18623:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"32","id":28066,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18632:1:94","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"18623:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28071,"nodeType":"IfStatement","src":"18619:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28068,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"18642:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28069,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18642:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28070,"nodeType":"RevertStatement","src":"18635:25:94"}},{"AST":{"nativeSrc":"18695:82:94","nodeType":"YulBlock","src":"18695:82:94","statements":[{"nativeSrc":"18709:58:94","nodeType":"YulAssignment","src":"18709:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18731:1:94","nodeType":"YulLiteral","src":"18731:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"18734:6:94","nodeType":"YulIdentifier","src":"18734:6:94"}],"functionName":{"name":"mul","nativeSrc":"18727:3:94","nodeType":"YulIdentifier","src":"18727:3:94"},"nativeSrc":"18727:14:94","nodeType":"YulFunctionCall","src":"18727:14:94"},{"name":"self","nativeSrc":"18743:4:94","nodeType":"YulIdentifier","src":"18743:4:94"}],"functionName":{"name":"shl","nativeSrc":"18723:3:94","nodeType":"YulIdentifier","src":"18723:3:94"},"nativeSrc":"18723:25:94","nodeType":"YulFunctionCall","src":"18723:25:94"},{"arguments":[{"kind":"number","nativeSrc":"18754:3:94","nodeType":"YulLiteral","src":"18754:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"18763:1:94","nodeType":"YulLiteral","src":"18763:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"18759:3:94","nodeType":"YulIdentifier","src":"18759:3:94"},"nativeSrc":"18759:6:94","nodeType":"YulFunctionCall","src":"18759:6:94"}],"functionName":{"name":"shl","nativeSrc":"18750:3:94","nodeType":"YulIdentifier","src":"18750:3:94"},"nativeSrc":"18750:16:94","nodeType":"YulFunctionCall","src":"18750:16:94"}],"functionName":{"name":"and","nativeSrc":"18719:3:94","nodeType":"YulIdentifier","src":"18719:3:94"},"nativeSrc":"18719:48:94","nodeType":"YulFunctionCall","src":"18719:48:94"},"variableNames":[{"name":"result","nativeSrc":"18709:6:94","nodeType":"YulIdentifier","src":"18709:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28060,"isOffset":false,"isSlot":false,"src":"18734:6:94","valueSize":1},{"declaration":28063,"isOffset":false,"isSlot":false,"src":"18709:6:94","valueSize":1},{"declaration":28058,"isOffset":false,"isSlot":false,"src":"18743:4:94","valueSize":1}],"flags":["memory-safe"],"id":28072,"nodeType":"InlineAssembly","src":"18670:107:94"}]},"id":28074,"implemented":true,"kind":"function","modifiers":[],"name":"extract_4_2","nameLocation":"18532:11:94","nodeType":"FunctionDefinition","parameters":{"id":28061,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28058,"mutability":"mutable","name":"self","nameLocation":"18551:4:94","nodeType":"VariableDeclaration","scope":28074,"src":"18544:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28057,"name":"bytes4","nodeType":"ElementaryTypeName","src":"18544:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":28060,"mutability":"mutable","name":"offset","nameLocation":"18563:6:94","nodeType":"VariableDeclaration","scope":28074,"src":"18557:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28059,"name":"uint8","nodeType":"ElementaryTypeName","src":"18557:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"18543:27:94"},"returnParameters":{"id":28064,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28063,"mutability":"mutable","name":"result","nameLocation":"18601:6:94","nodeType":"VariableDeclaration","scope":28074,"src":"18594:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28062,"name":"bytes2","nodeType":"ElementaryTypeName","src":"18594:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"18593:15:94"},"scope":30945,"src":"18523:260:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28093,"nodeType":"Block","src":"18889:230:94","statements":[{"assignments":[28086],"declarations":[{"constant":false,"id":28086,"mutability":"mutable","name":"oldValue","nameLocation":"18906:8:94","nodeType":"VariableDeclaration","scope":28093,"src":"18899:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28085,"name":"bytes2","nodeType":"ElementaryTypeName","src":"18899:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":28091,"initialValue":{"arguments":[{"id":28088,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28076,"src":"18929:4:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":28089,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28080,"src":"18935:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28087,"name":"extract_4_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28074,"src":"18917:11:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes4_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes4,uint8) pure returns (bytes2)"}},"id":28090,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18917:25:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"18899:43:94"},{"AST":{"nativeSrc":"18977:136:94","nodeType":"YulBlock","src":"18977:136:94","statements":[{"nativeSrc":"18991:37:94","nodeType":"YulAssignment","src":"18991:37:94","value":{"arguments":[{"name":"value","nativeSrc":"19004:5:94","nodeType":"YulIdentifier","src":"19004:5:94"},{"arguments":[{"kind":"number","nativeSrc":"19015:3:94","nodeType":"YulLiteral","src":"19015:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"19024:1:94","nodeType":"YulLiteral","src":"19024:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"19020:3:94","nodeType":"YulIdentifier","src":"19020:3:94"},"nativeSrc":"19020:6:94","nodeType":"YulFunctionCall","src":"19020:6:94"}],"functionName":{"name":"shl","nativeSrc":"19011:3:94","nodeType":"YulIdentifier","src":"19011:3:94"},"nativeSrc":"19011:16:94","nodeType":"YulFunctionCall","src":"19011:16:94"}],"functionName":{"name":"and","nativeSrc":"19000:3:94","nodeType":"YulIdentifier","src":"19000:3:94"},"nativeSrc":"19000:28:94","nodeType":"YulFunctionCall","src":"19000:28:94"},"variableNames":[{"name":"value","nativeSrc":"18991:5:94","nodeType":"YulIdentifier","src":"18991:5:94"}]},{"nativeSrc":"19041:62:94","nodeType":"YulAssignment","src":"19041:62:94","value":{"arguments":[{"name":"self","nativeSrc":"19055:4:94","nodeType":"YulIdentifier","src":"19055:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19069:1:94","nodeType":"YulLiteral","src":"19069:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"19072:6:94","nodeType":"YulIdentifier","src":"19072:6:94"}],"functionName":{"name":"mul","nativeSrc":"19065:3:94","nodeType":"YulIdentifier","src":"19065:3:94"},"nativeSrc":"19065:14:94","nodeType":"YulFunctionCall","src":"19065:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"19085:8:94","nodeType":"YulIdentifier","src":"19085:8:94"},{"name":"value","nativeSrc":"19095:5:94","nodeType":"YulIdentifier","src":"19095:5:94"}],"functionName":{"name":"xor","nativeSrc":"19081:3:94","nodeType":"YulIdentifier","src":"19081:3:94"},"nativeSrc":"19081:20:94","nodeType":"YulFunctionCall","src":"19081:20:94"}],"functionName":{"name":"shr","nativeSrc":"19061:3:94","nodeType":"YulIdentifier","src":"19061:3:94"},"nativeSrc":"19061:41:94","nodeType":"YulFunctionCall","src":"19061:41:94"}],"functionName":{"name":"xor","nativeSrc":"19051:3:94","nodeType":"YulIdentifier","src":"19051:3:94"},"nativeSrc":"19051:52:94","nodeType":"YulFunctionCall","src":"19051:52:94"},"variableNames":[{"name":"result","nativeSrc":"19041:6:94","nodeType":"YulIdentifier","src":"19041:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28080,"isOffset":false,"isSlot":false,"src":"19072:6:94","valueSize":1},{"declaration":28086,"isOffset":false,"isSlot":false,"src":"19085:8:94","valueSize":1},{"declaration":28083,"isOffset":false,"isSlot":false,"src":"19041:6:94","valueSize":1},{"declaration":28076,"isOffset":false,"isSlot":false,"src":"19055:4:94","valueSize":1},{"declaration":28078,"isOffset":false,"isSlot":false,"src":"18991:5:94","valueSize":1},{"declaration":28078,"isOffset":false,"isSlot":false,"src":"19004:5:94","valueSize":1},{"declaration":28078,"isOffset":false,"isSlot":false,"src":"19095:5:94","valueSize":1}],"flags":["memory-safe"],"id":28092,"nodeType":"InlineAssembly","src":"18952:161:94"}]},"id":28094,"implemented":true,"kind":"function","modifiers":[],"name":"replace_4_2","nameLocation":"18798:11:94","nodeType":"FunctionDefinition","parameters":{"id":28081,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28076,"mutability":"mutable","name":"self","nameLocation":"18817:4:94","nodeType":"VariableDeclaration","scope":28094,"src":"18810:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28075,"name":"bytes4","nodeType":"ElementaryTypeName","src":"18810:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":28078,"mutability":"mutable","name":"value","nameLocation":"18830:5:94","nodeType":"VariableDeclaration","scope":28094,"src":"18823:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28077,"name":"bytes2","nodeType":"ElementaryTypeName","src":"18823:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":28080,"mutability":"mutable","name":"offset","nameLocation":"18843:6:94","nodeType":"VariableDeclaration","scope":28094,"src":"18837:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28079,"name":"uint8","nodeType":"ElementaryTypeName","src":"18837:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"18809:41:94"},"returnParameters":{"id":28084,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28083,"mutability":"mutable","name":"result","nameLocation":"18881:6:94","nodeType":"VariableDeclaration","scope":28094,"src":"18874:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28082,"name":"bytes4","nodeType":"ElementaryTypeName","src":"18874:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"18873:15:94"},"scope":30945,"src":"18789:330:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28111,"nodeType":"Block","src":"19211:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28103,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28098,"src":"19225:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"35","id":28104,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19234:1:94","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"19225:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28109,"nodeType":"IfStatement","src":"19221:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28106,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"19244:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28107,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19244:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28108,"nodeType":"RevertStatement","src":"19237:25:94"}},{"AST":{"nativeSrc":"19297:82:94","nodeType":"YulBlock","src":"19297:82:94","statements":[{"nativeSrc":"19311:58:94","nodeType":"YulAssignment","src":"19311:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19333:1:94","nodeType":"YulLiteral","src":"19333:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"19336:6:94","nodeType":"YulIdentifier","src":"19336:6:94"}],"functionName":{"name":"mul","nativeSrc":"19329:3:94","nodeType":"YulIdentifier","src":"19329:3:94"},"nativeSrc":"19329:14:94","nodeType":"YulFunctionCall","src":"19329:14:94"},{"name":"self","nativeSrc":"19345:4:94","nodeType":"YulIdentifier","src":"19345:4:94"}],"functionName":{"name":"shl","nativeSrc":"19325:3:94","nodeType":"YulIdentifier","src":"19325:3:94"},"nativeSrc":"19325:25:94","nodeType":"YulFunctionCall","src":"19325:25:94"},{"arguments":[{"kind":"number","nativeSrc":"19356:3:94","nodeType":"YulLiteral","src":"19356:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"19365:1:94","nodeType":"YulLiteral","src":"19365:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"19361:3:94","nodeType":"YulIdentifier","src":"19361:3:94"},"nativeSrc":"19361:6:94","nodeType":"YulFunctionCall","src":"19361:6:94"}],"functionName":{"name":"shl","nativeSrc":"19352:3:94","nodeType":"YulIdentifier","src":"19352:3:94"},"nativeSrc":"19352:16:94","nodeType":"YulFunctionCall","src":"19352:16:94"}],"functionName":{"name":"and","nativeSrc":"19321:3:94","nodeType":"YulIdentifier","src":"19321:3:94"},"nativeSrc":"19321:48:94","nodeType":"YulFunctionCall","src":"19321:48:94"},"variableNames":[{"name":"result","nativeSrc":"19311:6:94","nodeType":"YulIdentifier","src":"19311:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28098,"isOffset":false,"isSlot":false,"src":"19336:6:94","valueSize":1},{"declaration":28101,"isOffset":false,"isSlot":false,"src":"19311:6:94","valueSize":1},{"declaration":28096,"isOffset":false,"isSlot":false,"src":"19345:4:94","valueSize":1}],"flags":["memory-safe"],"id":28110,"nodeType":"InlineAssembly","src":"19272:107:94"}]},"id":28112,"implemented":true,"kind":"function","modifiers":[],"name":"extract_6_1","nameLocation":"19134:11:94","nodeType":"FunctionDefinition","parameters":{"id":28099,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28096,"mutability":"mutable","name":"self","nameLocation":"19153:4:94","nodeType":"VariableDeclaration","scope":28112,"src":"19146:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28095,"name":"bytes6","nodeType":"ElementaryTypeName","src":"19146:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":28098,"mutability":"mutable","name":"offset","nameLocation":"19165:6:94","nodeType":"VariableDeclaration","scope":28112,"src":"19159:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28097,"name":"uint8","nodeType":"ElementaryTypeName","src":"19159:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"19145:27:94"},"returnParameters":{"id":28102,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28101,"mutability":"mutable","name":"result","nameLocation":"19203:6:94","nodeType":"VariableDeclaration","scope":28112,"src":"19196:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28100,"name":"bytes1","nodeType":"ElementaryTypeName","src":"19196:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"19195:15:94"},"scope":30945,"src":"19125:260:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28131,"nodeType":"Block","src":"19491:230:94","statements":[{"assignments":[28124],"declarations":[{"constant":false,"id":28124,"mutability":"mutable","name":"oldValue","nameLocation":"19508:8:94","nodeType":"VariableDeclaration","scope":28131,"src":"19501:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28123,"name":"bytes1","nodeType":"ElementaryTypeName","src":"19501:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":28129,"initialValue":{"arguments":[{"id":28126,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28114,"src":"19531:4:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},{"id":28127,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28118,"src":"19537:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes6","typeString":"bytes6"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28125,"name":"extract_6_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28112,"src":"19519:11:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes6_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes6,uint8) pure returns (bytes1)"}},"id":28128,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19519:25:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"19501:43:94"},{"AST":{"nativeSrc":"19579:136:94","nodeType":"YulBlock","src":"19579:136:94","statements":[{"nativeSrc":"19593:37:94","nodeType":"YulAssignment","src":"19593:37:94","value":{"arguments":[{"name":"value","nativeSrc":"19606:5:94","nodeType":"YulIdentifier","src":"19606:5:94"},{"arguments":[{"kind":"number","nativeSrc":"19617:3:94","nodeType":"YulLiteral","src":"19617:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"19626:1:94","nodeType":"YulLiteral","src":"19626:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"19622:3:94","nodeType":"YulIdentifier","src":"19622:3:94"},"nativeSrc":"19622:6:94","nodeType":"YulFunctionCall","src":"19622:6:94"}],"functionName":{"name":"shl","nativeSrc":"19613:3:94","nodeType":"YulIdentifier","src":"19613:3:94"},"nativeSrc":"19613:16:94","nodeType":"YulFunctionCall","src":"19613:16:94"}],"functionName":{"name":"and","nativeSrc":"19602:3:94","nodeType":"YulIdentifier","src":"19602:3:94"},"nativeSrc":"19602:28:94","nodeType":"YulFunctionCall","src":"19602:28:94"},"variableNames":[{"name":"value","nativeSrc":"19593:5:94","nodeType":"YulIdentifier","src":"19593:5:94"}]},{"nativeSrc":"19643:62:94","nodeType":"YulAssignment","src":"19643:62:94","value":{"arguments":[{"name":"self","nativeSrc":"19657:4:94","nodeType":"YulIdentifier","src":"19657:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19671:1:94","nodeType":"YulLiteral","src":"19671:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"19674:6:94","nodeType":"YulIdentifier","src":"19674:6:94"}],"functionName":{"name":"mul","nativeSrc":"19667:3:94","nodeType":"YulIdentifier","src":"19667:3:94"},"nativeSrc":"19667:14:94","nodeType":"YulFunctionCall","src":"19667:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"19687:8:94","nodeType":"YulIdentifier","src":"19687:8:94"},{"name":"value","nativeSrc":"19697:5:94","nodeType":"YulIdentifier","src":"19697:5:94"}],"functionName":{"name":"xor","nativeSrc":"19683:3:94","nodeType":"YulIdentifier","src":"19683:3:94"},"nativeSrc":"19683:20:94","nodeType":"YulFunctionCall","src":"19683:20:94"}],"functionName":{"name":"shr","nativeSrc":"19663:3:94","nodeType":"YulIdentifier","src":"19663:3:94"},"nativeSrc":"19663:41:94","nodeType":"YulFunctionCall","src":"19663:41:94"}],"functionName":{"name":"xor","nativeSrc":"19653:3:94","nodeType":"YulIdentifier","src":"19653:3:94"},"nativeSrc":"19653:52:94","nodeType":"YulFunctionCall","src":"19653:52:94"},"variableNames":[{"name":"result","nativeSrc":"19643:6:94","nodeType":"YulIdentifier","src":"19643:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28118,"isOffset":false,"isSlot":false,"src":"19674:6:94","valueSize":1},{"declaration":28124,"isOffset":false,"isSlot":false,"src":"19687:8:94","valueSize":1},{"declaration":28121,"isOffset":false,"isSlot":false,"src":"19643:6:94","valueSize":1},{"declaration":28114,"isOffset":false,"isSlot":false,"src":"19657:4:94","valueSize":1},{"declaration":28116,"isOffset":false,"isSlot":false,"src":"19593:5:94","valueSize":1},{"declaration":28116,"isOffset":false,"isSlot":false,"src":"19606:5:94","valueSize":1},{"declaration":28116,"isOffset":false,"isSlot":false,"src":"19697:5:94","valueSize":1}],"flags":["memory-safe"],"id":28130,"nodeType":"InlineAssembly","src":"19554:161:94"}]},"id":28132,"implemented":true,"kind":"function","modifiers":[],"name":"replace_6_1","nameLocation":"19400:11:94","nodeType":"FunctionDefinition","parameters":{"id":28119,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28114,"mutability":"mutable","name":"self","nameLocation":"19419:4:94","nodeType":"VariableDeclaration","scope":28132,"src":"19412:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28113,"name":"bytes6","nodeType":"ElementaryTypeName","src":"19412:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":28116,"mutability":"mutable","name":"value","nameLocation":"19432:5:94","nodeType":"VariableDeclaration","scope":28132,"src":"19425:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28115,"name":"bytes1","nodeType":"ElementaryTypeName","src":"19425:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":28118,"mutability":"mutable","name":"offset","nameLocation":"19445:6:94","nodeType":"VariableDeclaration","scope":28132,"src":"19439:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28117,"name":"uint8","nodeType":"ElementaryTypeName","src":"19439:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"19411:41:94"},"returnParameters":{"id":28122,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28121,"mutability":"mutable","name":"result","nameLocation":"19483:6:94","nodeType":"VariableDeclaration","scope":28132,"src":"19476:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28120,"name":"bytes6","nodeType":"ElementaryTypeName","src":"19476:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"19475:15:94"},"scope":30945,"src":"19391:330:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28149,"nodeType":"Block","src":"19813:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28141,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28136,"src":"19827:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":28142,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19836:1:94","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"19827:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28147,"nodeType":"IfStatement","src":"19823:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28144,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"19846:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19846:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28146,"nodeType":"RevertStatement","src":"19839:25:94"}},{"AST":{"nativeSrc":"19899:82:94","nodeType":"YulBlock","src":"19899:82:94","statements":[{"nativeSrc":"19913:58:94","nodeType":"YulAssignment","src":"19913:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19935:1:94","nodeType":"YulLiteral","src":"19935:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"19938:6:94","nodeType":"YulIdentifier","src":"19938:6:94"}],"functionName":{"name":"mul","nativeSrc":"19931:3:94","nodeType":"YulIdentifier","src":"19931:3:94"},"nativeSrc":"19931:14:94","nodeType":"YulFunctionCall","src":"19931:14:94"},{"name":"self","nativeSrc":"19947:4:94","nodeType":"YulIdentifier","src":"19947:4:94"}],"functionName":{"name":"shl","nativeSrc":"19927:3:94","nodeType":"YulIdentifier","src":"19927:3:94"},"nativeSrc":"19927:25:94","nodeType":"YulFunctionCall","src":"19927:25:94"},{"arguments":[{"kind":"number","nativeSrc":"19958:3:94","nodeType":"YulLiteral","src":"19958:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"19967:1:94","nodeType":"YulLiteral","src":"19967:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"19963:3:94","nodeType":"YulIdentifier","src":"19963:3:94"},"nativeSrc":"19963:6:94","nodeType":"YulFunctionCall","src":"19963:6:94"}],"functionName":{"name":"shl","nativeSrc":"19954:3:94","nodeType":"YulIdentifier","src":"19954:3:94"},"nativeSrc":"19954:16:94","nodeType":"YulFunctionCall","src":"19954:16:94"}],"functionName":{"name":"and","nativeSrc":"19923:3:94","nodeType":"YulIdentifier","src":"19923:3:94"},"nativeSrc":"19923:48:94","nodeType":"YulFunctionCall","src":"19923:48:94"},"variableNames":[{"name":"result","nativeSrc":"19913:6:94","nodeType":"YulIdentifier","src":"19913:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28136,"isOffset":false,"isSlot":false,"src":"19938:6:94","valueSize":1},{"declaration":28139,"isOffset":false,"isSlot":false,"src":"19913:6:94","valueSize":1},{"declaration":28134,"isOffset":false,"isSlot":false,"src":"19947:4:94","valueSize":1}],"flags":["memory-safe"],"id":28148,"nodeType":"InlineAssembly","src":"19874:107:94"}]},"id":28150,"implemented":true,"kind":"function","modifiers":[],"name":"extract_6_2","nameLocation":"19736:11:94","nodeType":"FunctionDefinition","parameters":{"id":28137,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28134,"mutability":"mutable","name":"self","nameLocation":"19755:4:94","nodeType":"VariableDeclaration","scope":28150,"src":"19748:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28133,"name":"bytes6","nodeType":"ElementaryTypeName","src":"19748:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":28136,"mutability":"mutable","name":"offset","nameLocation":"19767:6:94","nodeType":"VariableDeclaration","scope":28150,"src":"19761:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28135,"name":"uint8","nodeType":"ElementaryTypeName","src":"19761:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"19747:27:94"},"returnParameters":{"id":28140,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28139,"mutability":"mutable","name":"result","nameLocation":"19805:6:94","nodeType":"VariableDeclaration","scope":28150,"src":"19798:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28138,"name":"bytes2","nodeType":"ElementaryTypeName","src":"19798:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"19797:15:94"},"scope":30945,"src":"19727:260:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28169,"nodeType":"Block","src":"20093:230:94","statements":[{"assignments":[28162],"declarations":[{"constant":false,"id":28162,"mutability":"mutable","name":"oldValue","nameLocation":"20110:8:94","nodeType":"VariableDeclaration","scope":28169,"src":"20103:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28161,"name":"bytes2","nodeType":"ElementaryTypeName","src":"20103:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":28167,"initialValue":{"arguments":[{"id":28164,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28152,"src":"20133:4:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},{"id":28165,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28156,"src":"20139:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes6","typeString":"bytes6"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28163,"name":"extract_6_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28150,"src":"20121:11:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes6_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes6,uint8) pure returns (bytes2)"}},"id":28166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20121:25:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"20103:43:94"},{"AST":{"nativeSrc":"20181:136:94","nodeType":"YulBlock","src":"20181:136:94","statements":[{"nativeSrc":"20195:37:94","nodeType":"YulAssignment","src":"20195:37:94","value":{"arguments":[{"name":"value","nativeSrc":"20208:5:94","nodeType":"YulIdentifier","src":"20208:5:94"},{"arguments":[{"kind":"number","nativeSrc":"20219:3:94","nodeType":"YulLiteral","src":"20219:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"20228:1:94","nodeType":"YulLiteral","src":"20228:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"20224:3:94","nodeType":"YulIdentifier","src":"20224:3:94"},"nativeSrc":"20224:6:94","nodeType":"YulFunctionCall","src":"20224:6:94"}],"functionName":{"name":"shl","nativeSrc":"20215:3:94","nodeType":"YulIdentifier","src":"20215:3:94"},"nativeSrc":"20215:16:94","nodeType":"YulFunctionCall","src":"20215:16:94"}],"functionName":{"name":"and","nativeSrc":"20204:3:94","nodeType":"YulIdentifier","src":"20204:3:94"},"nativeSrc":"20204:28:94","nodeType":"YulFunctionCall","src":"20204:28:94"},"variableNames":[{"name":"value","nativeSrc":"20195:5:94","nodeType":"YulIdentifier","src":"20195:5:94"}]},{"nativeSrc":"20245:62:94","nodeType":"YulAssignment","src":"20245:62:94","value":{"arguments":[{"name":"self","nativeSrc":"20259:4:94","nodeType":"YulIdentifier","src":"20259:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20273:1:94","nodeType":"YulLiteral","src":"20273:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"20276:6:94","nodeType":"YulIdentifier","src":"20276:6:94"}],"functionName":{"name":"mul","nativeSrc":"20269:3:94","nodeType":"YulIdentifier","src":"20269:3:94"},"nativeSrc":"20269:14:94","nodeType":"YulFunctionCall","src":"20269:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"20289:8:94","nodeType":"YulIdentifier","src":"20289:8:94"},{"name":"value","nativeSrc":"20299:5:94","nodeType":"YulIdentifier","src":"20299:5:94"}],"functionName":{"name":"xor","nativeSrc":"20285:3:94","nodeType":"YulIdentifier","src":"20285:3:94"},"nativeSrc":"20285:20:94","nodeType":"YulFunctionCall","src":"20285:20:94"}],"functionName":{"name":"shr","nativeSrc":"20265:3:94","nodeType":"YulIdentifier","src":"20265:3:94"},"nativeSrc":"20265:41:94","nodeType":"YulFunctionCall","src":"20265:41:94"}],"functionName":{"name":"xor","nativeSrc":"20255:3:94","nodeType":"YulIdentifier","src":"20255:3:94"},"nativeSrc":"20255:52:94","nodeType":"YulFunctionCall","src":"20255:52:94"},"variableNames":[{"name":"result","nativeSrc":"20245:6:94","nodeType":"YulIdentifier","src":"20245:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28156,"isOffset":false,"isSlot":false,"src":"20276:6:94","valueSize":1},{"declaration":28162,"isOffset":false,"isSlot":false,"src":"20289:8:94","valueSize":1},{"declaration":28159,"isOffset":false,"isSlot":false,"src":"20245:6:94","valueSize":1},{"declaration":28152,"isOffset":false,"isSlot":false,"src":"20259:4:94","valueSize":1},{"declaration":28154,"isOffset":false,"isSlot":false,"src":"20195:5:94","valueSize":1},{"declaration":28154,"isOffset":false,"isSlot":false,"src":"20208:5:94","valueSize":1},{"declaration":28154,"isOffset":false,"isSlot":false,"src":"20299:5:94","valueSize":1}],"flags":["memory-safe"],"id":28168,"nodeType":"InlineAssembly","src":"20156:161:94"}]},"id":28170,"implemented":true,"kind":"function","modifiers":[],"name":"replace_6_2","nameLocation":"20002:11:94","nodeType":"FunctionDefinition","parameters":{"id":28157,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28152,"mutability":"mutable","name":"self","nameLocation":"20021:4:94","nodeType":"VariableDeclaration","scope":28170,"src":"20014:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28151,"name":"bytes6","nodeType":"ElementaryTypeName","src":"20014:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":28154,"mutability":"mutable","name":"value","nameLocation":"20034:5:94","nodeType":"VariableDeclaration","scope":28170,"src":"20027:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28153,"name":"bytes2","nodeType":"ElementaryTypeName","src":"20027:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":28156,"mutability":"mutable","name":"offset","nameLocation":"20047:6:94","nodeType":"VariableDeclaration","scope":28170,"src":"20041:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28155,"name":"uint8","nodeType":"ElementaryTypeName","src":"20041:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"20013:41:94"},"returnParameters":{"id":28160,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28159,"mutability":"mutable","name":"result","nameLocation":"20085:6:94","nodeType":"VariableDeclaration","scope":28170,"src":"20078:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28158,"name":"bytes6","nodeType":"ElementaryTypeName","src":"20078:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"20077:15:94"},"scope":30945,"src":"19993:330:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28187,"nodeType":"Block","src":"20415:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28179,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28174,"src":"20429:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"32","id":28180,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20438:1:94","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"20429:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28185,"nodeType":"IfStatement","src":"20425:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28182,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"20448:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20448:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28184,"nodeType":"RevertStatement","src":"20441:25:94"}},{"AST":{"nativeSrc":"20501:82:94","nodeType":"YulBlock","src":"20501:82:94","statements":[{"nativeSrc":"20515:58:94","nodeType":"YulAssignment","src":"20515:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20537:1:94","nodeType":"YulLiteral","src":"20537:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"20540:6:94","nodeType":"YulIdentifier","src":"20540:6:94"}],"functionName":{"name":"mul","nativeSrc":"20533:3:94","nodeType":"YulIdentifier","src":"20533:3:94"},"nativeSrc":"20533:14:94","nodeType":"YulFunctionCall","src":"20533:14:94"},{"name":"self","nativeSrc":"20549:4:94","nodeType":"YulIdentifier","src":"20549:4:94"}],"functionName":{"name":"shl","nativeSrc":"20529:3:94","nodeType":"YulIdentifier","src":"20529:3:94"},"nativeSrc":"20529:25:94","nodeType":"YulFunctionCall","src":"20529:25:94"},{"arguments":[{"kind":"number","nativeSrc":"20560:3:94","nodeType":"YulLiteral","src":"20560:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"20569:1:94","nodeType":"YulLiteral","src":"20569:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"20565:3:94","nodeType":"YulIdentifier","src":"20565:3:94"},"nativeSrc":"20565:6:94","nodeType":"YulFunctionCall","src":"20565:6:94"}],"functionName":{"name":"shl","nativeSrc":"20556:3:94","nodeType":"YulIdentifier","src":"20556:3:94"},"nativeSrc":"20556:16:94","nodeType":"YulFunctionCall","src":"20556:16:94"}],"functionName":{"name":"and","nativeSrc":"20525:3:94","nodeType":"YulIdentifier","src":"20525:3:94"},"nativeSrc":"20525:48:94","nodeType":"YulFunctionCall","src":"20525:48:94"},"variableNames":[{"name":"result","nativeSrc":"20515:6:94","nodeType":"YulIdentifier","src":"20515:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28174,"isOffset":false,"isSlot":false,"src":"20540:6:94","valueSize":1},{"declaration":28177,"isOffset":false,"isSlot":false,"src":"20515:6:94","valueSize":1},{"declaration":28172,"isOffset":false,"isSlot":false,"src":"20549:4:94","valueSize":1}],"flags":["memory-safe"],"id":28186,"nodeType":"InlineAssembly","src":"20476:107:94"}]},"id":28188,"implemented":true,"kind":"function","modifiers":[],"name":"extract_6_4","nameLocation":"20338:11:94","nodeType":"FunctionDefinition","parameters":{"id":28175,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28172,"mutability":"mutable","name":"self","nameLocation":"20357:4:94","nodeType":"VariableDeclaration","scope":28188,"src":"20350:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28171,"name":"bytes6","nodeType":"ElementaryTypeName","src":"20350:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":28174,"mutability":"mutable","name":"offset","nameLocation":"20369:6:94","nodeType":"VariableDeclaration","scope":28188,"src":"20363:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28173,"name":"uint8","nodeType":"ElementaryTypeName","src":"20363:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"20349:27:94"},"returnParameters":{"id":28178,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28177,"mutability":"mutable","name":"result","nameLocation":"20407:6:94","nodeType":"VariableDeclaration","scope":28188,"src":"20400:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28176,"name":"bytes4","nodeType":"ElementaryTypeName","src":"20400:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"20399:15:94"},"scope":30945,"src":"20329:260:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28207,"nodeType":"Block","src":"20695:230:94","statements":[{"assignments":[28200],"declarations":[{"constant":false,"id":28200,"mutability":"mutable","name":"oldValue","nameLocation":"20712:8:94","nodeType":"VariableDeclaration","scope":28207,"src":"20705:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28199,"name":"bytes4","nodeType":"ElementaryTypeName","src":"20705:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":28205,"initialValue":{"arguments":[{"id":28202,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28190,"src":"20735:4:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},{"id":28203,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28194,"src":"20741:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes6","typeString":"bytes6"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28201,"name":"extract_6_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28188,"src":"20723:11:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes6_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes6,uint8) pure returns (bytes4)"}},"id":28204,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20723:25:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"20705:43:94"},{"AST":{"nativeSrc":"20783:136:94","nodeType":"YulBlock","src":"20783:136:94","statements":[{"nativeSrc":"20797:37:94","nodeType":"YulAssignment","src":"20797:37:94","value":{"arguments":[{"name":"value","nativeSrc":"20810:5:94","nodeType":"YulIdentifier","src":"20810:5:94"},{"arguments":[{"kind":"number","nativeSrc":"20821:3:94","nodeType":"YulLiteral","src":"20821:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"20830:1:94","nodeType":"YulLiteral","src":"20830:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"20826:3:94","nodeType":"YulIdentifier","src":"20826:3:94"},"nativeSrc":"20826:6:94","nodeType":"YulFunctionCall","src":"20826:6:94"}],"functionName":{"name":"shl","nativeSrc":"20817:3:94","nodeType":"YulIdentifier","src":"20817:3:94"},"nativeSrc":"20817:16:94","nodeType":"YulFunctionCall","src":"20817:16:94"}],"functionName":{"name":"and","nativeSrc":"20806:3:94","nodeType":"YulIdentifier","src":"20806:3:94"},"nativeSrc":"20806:28:94","nodeType":"YulFunctionCall","src":"20806:28:94"},"variableNames":[{"name":"value","nativeSrc":"20797:5:94","nodeType":"YulIdentifier","src":"20797:5:94"}]},{"nativeSrc":"20847:62:94","nodeType":"YulAssignment","src":"20847:62:94","value":{"arguments":[{"name":"self","nativeSrc":"20861:4:94","nodeType":"YulIdentifier","src":"20861:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20875:1:94","nodeType":"YulLiteral","src":"20875:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"20878:6:94","nodeType":"YulIdentifier","src":"20878:6:94"}],"functionName":{"name":"mul","nativeSrc":"20871:3:94","nodeType":"YulIdentifier","src":"20871:3:94"},"nativeSrc":"20871:14:94","nodeType":"YulFunctionCall","src":"20871:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"20891:8:94","nodeType":"YulIdentifier","src":"20891:8:94"},{"name":"value","nativeSrc":"20901:5:94","nodeType":"YulIdentifier","src":"20901:5:94"}],"functionName":{"name":"xor","nativeSrc":"20887:3:94","nodeType":"YulIdentifier","src":"20887:3:94"},"nativeSrc":"20887:20:94","nodeType":"YulFunctionCall","src":"20887:20:94"}],"functionName":{"name":"shr","nativeSrc":"20867:3:94","nodeType":"YulIdentifier","src":"20867:3:94"},"nativeSrc":"20867:41:94","nodeType":"YulFunctionCall","src":"20867:41:94"}],"functionName":{"name":"xor","nativeSrc":"20857:3:94","nodeType":"YulIdentifier","src":"20857:3:94"},"nativeSrc":"20857:52:94","nodeType":"YulFunctionCall","src":"20857:52:94"},"variableNames":[{"name":"result","nativeSrc":"20847:6:94","nodeType":"YulIdentifier","src":"20847:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28194,"isOffset":false,"isSlot":false,"src":"20878:6:94","valueSize":1},{"declaration":28200,"isOffset":false,"isSlot":false,"src":"20891:8:94","valueSize":1},{"declaration":28197,"isOffset":false,"isSlot":false,"src":"20847:6:94","valueSize":1},{"declaration":28190,"isOffset":false,"isSlot":false,"src":"20861:4:94","valueSize":1},{"declaration":28192,"isOffset":false,"isSlot":false,"src":"20797:5:94","valueSize":1},{"declaration":28192,"isOffset":false,"isSlot":false,"src":"20810:5:94","valueSize":1},{"declaration":28192,"isOffset":false,"isSlot":false,"src":"20901:5:94","valueSize":1}],"flags":["memory-safe"],"id":28206,"nodeType":"InlineAssembly","src":"20758:161:94"}]},"id":28208,"implemented":true,"kind":"function","modifiers":[],"name":"replace_6_4","nameLocation":"20604:11:94","nodeType":"FunctionDefinition","parameters":{"id":28195,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28190,"mutability":"mutable","name":"self","nameLocation":"20623:4:94","nodeType":"VariableDeclaration","scope":28208,"src":"20616:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28189,"name":"bytes6","nodeType":"ElementaryTypeName","src":"20616:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":28192,"mutability":"mutable","name":"value","nameLocation":"20636:5:94","nodeType":"VariableDeclaration","scope":28208,"src":"20629:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28191,"name":"bytes4","nodeType":"ElementaryTypeName","src":"20629:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":28194,"mutability":"mutable","name":"offset","nameLocation":"20649:6:94","nodeType":"VariableDeclaration","scope":28208,"src":"20643:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28193,"name":"uint8","nodeType":"ElementaryTypeName","src":"20643:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"20615:41:94"},"returnParameters":{"id":28198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28197,"mutability":"mutable","name":"result","nameLocation":"20687:6:94","nodeType":"VariableDeclaration","scope":28208,"src":"20680:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28196,"name":"bytes6","nodeType":"ElementaryTypeName","src":"20680:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"20679:15:94"},"scope":30945,"src":"20595:330:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28225,"nodeType":"Block","src":"21017:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28219,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28217,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28212,"src":"21031:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"37","id":28218,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21040:1:94","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"21031:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28223,"nodeType":"IfStatement","src":"21027:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28220,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"21050:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28221,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21050:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28222,"nodeType":"RevertStatement","src":"21043:25:94"}},{"AST":{"nativeSrc":"21103:82:94","nodeType":"YulBlock","src":"21103:82:94","statements":[{"nativeSrc":"21117:58:94","nodeType":"YulAssignment","src":"21117:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21139:1:94","nodeType":"YulLiteral","src":"21139:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"21142:6:94","nodeType":"YulIdentifier","src":"21142:6:94"}],"functionName":{"name":"mul","nativeSrc":"21135:3:94","nodeType":"YulIdentifier","src":"21135:3:94"},"nativeSrc":"21135:14:94","nodeType":"YulFunctionCall","src":"21135:14:94"},{"name":"self","nativeSrc":"21151:4:94","nodeType":"YulIdentifier","src":"21151:4:94"}],"functionName":{"name":"shl","nativeSrc":"21131:3:94","nodeType":"YulIdentifier","src":"21131:3:94"},"nativeSrc":"21131:25:94","nodeType":"YulFunctionCall","src":"21131:25:94"},{"arguments":[{"kind":"number","nativeSrc":"21162:3:94","nodeType":"YulLiteral","src":"21162:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"21171:1:94","nodeType":"YulLiteral","src":"21171:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"21167:3:94","nodeType":"YulIdentifier","src":"21167:3:94"},"nativeSrc":"21167:6:94","nodeType":"YulFunctionCall","src":"21167:6:94"}],"functionName":{"name":"shl","nativeSrc":"21158:3:94","nodeType":"YulIdentifier","src":"21158:3:94"},"nativeSrc":"21158:16:94","nodeType":"YulFunctionCall","src":"21158:16:94"}],"functionName":{"name":"and","nativeSrc":"21127:3:94","nodeType":"YulIdentifier","src":"21127:3:94"},"nativeSrc":"21127:48:94","nodeType":"YulFunctionCall","src":"21127:48:94"},"variableNames":[{"name":"result","nativeSrc":"21117:6:94","nodeType":"YulIdentifier","src":"21117:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28212,"isOffset":false,"isSlot":false,"src":"21142:6:94","valueSize":1},{"declaration":28215,"isOffset":false,"isSlot":false,"src":"21117:6:94","valueSize":1},{"declaration":28210,"isOffset":false,"isSlot":false,"src":"21151:4:94","valueSize":1}],"flags":["memory-safe"],"id":28224,"nodeType":"InlineAssembly","src":"21078:107:94"}]},"id":28226,"implemented":true,"kind":"function","modifiers":[],"name":"extract_8_1","nameLocation":"20940:11:94","nodeType":"FunctionDefinition","parameters":{"id":28213,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28210,"mutability":"mutable","name":"self","nameLocation":"20959:4:94","nodeType":"VariableDeclaration","scope":28226,"src":"20952:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28209,"name":"bytes8","nodeType":"ElementaryTypeName","src":"20952:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":28212,"mutability":"mutable","name":"offset","nameLocation":"20971:6:94","nodeType":"VariableDeclaration","scope":28226,"src":"20965:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28211,"name":"uint8","nodeType":"ElementaryTypeName","src":"20965:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"20951:27:94"},"returnParameters":{"id":28216,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28215,"mutability":"mutable","name":"result","nameLocation":"21009:6:94","nodeType":"VariableDeclaration","scope":28226,"src":"21002:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28214,"name":"bytes1","nodeType":"ElementaryTypeName","src":"21002:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"21001:15:94"},"scope":30945,"src":"20931:260:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28245,"nodeType":"Block","src":"21297:230:94","statements":[{"assignments":[28238],"declarations":[{"constant":false,"id":28238,"mutability":"mutable","name":"oldValue","nameLocation":"21314:8:94","nodeType":"VariableDeclaration","scope":28245,"src":"21307:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28237,"name":"bytes1","nodeType":"ElementaryTypeName","src":"21307:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":28243,"initialValue":{"arguments":[{"id":28240,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28228,"src":"21337:4:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},{"id":28241,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28232,"src":"21343:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes8","typeString":"bytes8"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28239,"name":"extract_8_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28226,"src":"21325:11:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes8_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes8,uint8) pure returns (bytes1)"}},"id":28242,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21325:25:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"21307:43:94"},{"AST":{"nativeSrc":"21385:136:94","nodeType":"YulBlock","src":"21385:136:94","statements":[{"nativeSrc":"21399:37:94","nodeType":"YulAssignment","src":"21399:37:94","value":{"arguments":[{"name":"value","nativeSrc":"21412:5:94","nodeType":"YulIdentifier","src":"21412:5:94"},{"arguments":[{"kind":"number","nativeSrc":"21423:3:94","nodeType":"YulLiteral","src":"21423:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"21432:1:94","nodeType":"YulLiteral","src":"21432:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"21428:3:94","nodeType":"YulIdentifier","src":"21428:3:94"},"nativeSrc":"21428:6:94","nodeType":"YulFunctionCall","src":"21428:6:94"}],"functionName":{"name":"shl","nativeSrc":"21419:3:94","nodeType":"YulIdentifier","src":"21419:3:94"},"nativeSrc":"21419:16:94","nodeType":"YulFunctionCall","src":"21419:16:94"}],"functionName":{"name":"and","nativeSrc":"21408:3:94","nodeType":"YulIdentifier","src":"21408:3:94"},"nativeSrc":"21408:28:94","nodeType":"YulFunctionCall","src":"21408:28:94"},"variableNames":[{"name":"value","nativeSrc":"21399:5:94","nodeType":"YulIdentifier","src":"21399:5:94"}]},{"nativeSrc":"21449:62:94","nodeType":"YulAssignment","src":"21449:62:94","value":{"arguments":[{"name":"self","nativeSrc":"21463:4:94","nodeType":"YulIdentifier","src":"21463:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21477:1:94","nodeType":"YulLiteral","src":"21477:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"21480:6:94","nodeType":"YulIdentifier","src":"21480:6:94"}],"functionName":{"name":"mul","nativeSrc":"21473:3:94","nodeType":"YulIdentifier","src":"21473:3:94"},"nativeSrc":"21473:14:94","nodeType":"YulFunctionCall","src":"21473:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"21493:8:94","nodeType":"YulIdentifier","src":"21493:8:94"},{"name":"value","nativeSrc":"21503:5:94","nodeType":"YulIdentifier","src":"21503:5:94"}],"functionName":{"name":"xor","nativeSrc":"21489:3:94","nodeType":"YulIdentifier","src":"21489:3:94"},"nativeSrc":"21489:20:94","nodeType":"YulFunctionCall","src":"21489:20:94"}],"functionName":{"name":"shr","nativeSrc":"21469:3:94","nodeType":"YulIdentifier","src":"21469:3:94"},"nativeSrc":"21469:41:94","nodeType":"YulFunctionCall","src":"21469:41:94"}],"functionName":{"name":"xor","nativeSrc":"21459:3:94","nodeType":"YulIdentifier","src":"21459:3:94"},"nativeSrc":"21459:52:94","nodeType":"YulFunctionCall","src":"21459:52:94"},"variableNames":[{"name":"result","nativeSrc":"21449:6:94","nodeType":"YulIdentifier","src":"21449:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28232,"isOffset":false,"isSlot":false,"src":"21480:6:94","valueSize":1},{"declaration":28238,"isOffset":false,"isSlot":false,"src":"21493:8:94","valueSize":1},{"declaration":28235,"isOffset":false,"isSlot":false,"src":"21449:6:94","valueSize":1},{"declaration":28228,"isOffset":false,"isSlot":false,"src":"21463:4:94","valueSize":1},{"declaration":28230,"isOffset":false,"isSlot":false,"src":"21399:5:94","valueSize":1},{"declaration":28230,"isOffset":false,"isSlot":false,"src":"21412:5:94","valueSize":1},{"declaration":28230,"isOffset":false,"isSlot":false,"src":"21503:5:94","valueSize":1}],"flags":["memory-safe"],"id":28244,"nodeType":"InlineAssembly","src":"21360:161:94"}]},"id":28246,"implemented":true,"kind":"function","modifiers":[],"name":"replace_8_1","nameLocation":"21206:11:94","nodeType":"FunctionDefinition","parameters":{"id":28233,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28228,"mutability":"mutable","name":"self","nameLocation":"21225:4:94","nodeType":"VariableDeclaration","scope":28246,"src":"21218:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28227,"name":"bytes8","nodeType":"ElementaryTypeName","src":"21218:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":28230,"mutability":"mutable","name":"value","nameLocation":"21238:5:94","nodeType":"VariableDeclaration","scope":28246,"src":"21231:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28229,"name":"bytes1","nodeType":"ElementaryTypeName","src":"21231:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":28232,"mutability":"mutable","name":"offset","nameLocation":"21251:6:94","nodeType":"VariableDeclaration","scope":28246,"src":"21245:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28231,"name":"uint8","nodeType":"ElementaryTypeName","src":"21245:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"21217:41:94"},"returnParameters":{"id":28236,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28235,"mutability":"mutable","name":"result","nameLocation":"21289:6:94","nodeType":"VariableDeclaration","scope":28246,"src":"21282:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28234,"name":"bytes8","nodeType":"ElementaryTypeName","src":"21282:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"21281:15:94"},"scope":30945,"src":"21197:330:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28263,"nodeType":"Block","src":"21619:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28257,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28255,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28250,"src":"21633:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"36","id":28256,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21642:1:94","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"21633:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28261,"nodeType":"IfStatement","src":"21629:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28258,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"21652:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28259,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21652:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28260,"nodeType":"RevertStatement","src":"21645:25:94"}},{"AST":{"nativeSrc":"21705:82:94","nodeType":"YulBlock","src":"21705:82:94","statements":[{"nativeSrc":"21719:58:94","nodeType":"YulAssignment","src":"21719:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21741:1:94","nodeType":"YulLiteral","src":"21741:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"21744:6:94","nodeType":"YulIdentifier","src":"21744:6:94"}],"functionName":{"name":"mul","nativeSrc":"21737:3:94","nodeType":"YulIdentifier","src":"21737:3:94"},"nativeSrc":"21737:14:94","nodeType":"YulFunctionCall","src":"21737:14:94"},{"name":"self","nativeSrc":"21753:4:94","nodeType":"YulIdentifier","src":"21753:4:94"}],"functionName":{"name":"shl","nativeSrc":"21733:3:94","nodeType":"YulIdentifier","src":"21733:3:94"},"nativeSrc":"21733:25:94","nodeType":"YulFunctionCall","src":"21733:25:94"},{"arguments":[{"kind":"number","nativeSrc":"21764:3:94","nodeType":"YulLiteral","src":"21764:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"21773:1:94","nodeType":"YulLiteral","src":"21773:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"21769:3:94","nodeType":"YulIdentifier","src":"21769:3:94"},"nativeSrc":"21769:6:94","nodeType":"YulFunctionCall","src":"21769:6:94"}],"functionName":{"name":"shl","nativeSrc":"21760:3:94","nodeType":"YulIdentifier","src":"21760:3:94"},"nativeSrc":"21760:16:94","nodeType":"YulFunctionCall","src":"21760:16:94"}],"functionName":{"name":"and","nativeSrc":"21729:3:94","nodeType":"YulIdentifier","src":"21729:3:94"},"nativeSrc":"21729:48:94","nodeType":"YulFunctionCall","src":"21729:48:94"},"variableNames":[{"name":"result","nativeSrc":"21719:6:94","nodeType":"YulIdentifier","src":"21719:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28250,"isOffset":false,"isSlot":false,"src":"21744:6:94","valueSize":1},{"declaration":28253,"isOffset":false,"isSlot":false,"src":"21719:6:94","valueSize":1},{"declaration":28248,"isOffset":false,"isSlot":false,"src":"21753:4:94","valueSize":1}],"flags":["memory-safe"],"id":28262,"nodeType":"InlineAssembly","src":"21680:107:94"}]},"id":28264,"implemented":true,"kind":"function","modifiers":[],"name":"extract_8_2","nameLocation":"21542:11:94","nodeType":"FunctionDefinition","parameters":{"id":28251,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28248,"mutability":"mutable","name":"self","nameLocation":"21561:4:94","nodeType":"VariableDeclaration","scope":28264,"src":"21554:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28247,"name":"bytes8","nodeType":"ElementaryTypeName","src":"21554:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":28250,"mutability":"mutable","name":"offset","nameLocation":"21573:6:94","nodeType":"VariableDeclaration","scope":28264,"src":"21567:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28249,"name":"uint8","nodeType":"ElementaryTypeName","src":"21567:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"21553:27:94"},"returnParameters":{"id":28254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28253,"mutability":"mutable","name":"result","nameLocation":"21611:6:94","nodeType":"VariableDeclaration","scope":28264,"src":"21604:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28252,"name":"bytes2","nodeType":"ElementaryTypeName","src":"21604:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"21603:15:94"},"scope":30945,"src":"21533:260:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28283,"nodeType":"Block","src":"21899:230:94","statements":[{"assignments":[28276],"declarations":[{"constant":false,"id":28276,"mutability":"mutable","name":"oldValue","nameLocation":"21916:8:94","nodeType":"VariableDeclaration","scope":28283,"src":"21909:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28275,"name":"bytes2","nodeType":"ElementaryTypeName","src":"21909:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":28281,"initialValue":{"arguments":[{"id":28278,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28266,"src":"21939:4:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},{"id":28279,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28270,"src":"21945:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes8","typeString":"bytes8"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28277,"name":"extract_8_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28264,"src":"21927:11:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes8_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes8,uint8) pure returns (bytes2)"}},"id":28280,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21927:25:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"21909:43:94"},{"AST":{"nativeSrc":"21987:136:94","nodeType":"YulBlock","src":"21987:136:94","statements":[{"nativeSrc":"22001:37:94","nodeType":"YulAssignment","src":"22001:37:94","value":{"arguments":[{"name":"value","nativeSrc":"22014:5:94","nodeType":"YulIdentifier","src":"22014:5:94"},{"arguments":[{"kind":"number","nativeSrc":"22025:3:94","nodeType":"YulLiteral","src":"22025:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"22034:1:94","nodeType":"YulLiteral","src":"22034:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"22030:3:94","nodeType":"YulIdentifier","src":"22030:3:94"},"nativeSrc":"22030:6:94","nodeType":"YulFunctionCall","src":"22030:6:94"}],"functionName":{"name":"shl","nativeSrc":"22021:3:94","nodeType":"YulIdentifier","src":"22021:3:94"},"nativeSrc":"22021:16:94","nodeType":"YulFunctionCall","src":"22021:16:94"}],"functionName":{"name":"and","nativeSrc":"22010:3:94","nodeType":"YulIdentifier","src":"22010:3:94"},"nativeSrc":"22010:28:94","nodeType":"YulFunctionCall","src":"22010:28:94"},"variableNames":[{"name":"value","nativeSrc":"22001:5:94","nodeType":"YulIdentifier","src":"22001:5:94"}]},{"nativeSrc":"22051:62:94","nodeType":"YulAssignment","src":"22051:62:94","value":{"arguments":[{"name":"self","nativeSrc":"22065:4:94","nodeType":"YulIdentifier","src":"22065:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22079:1:94","nodeType":"YulLiteral","src":"22079:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"22082:6:94","nodeType":"YulIdentifier","src":"22082:6:94"}],"functionName":{"name":"mul","nativeSrc":"22075:3:94","nodeType":"YulIdentifier","src":"22075:3:94"},"nativeSrc":"22075:14:94","nodeType":"YulFunctionCall","src":"22075:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"22095:8:94","nodeType":"YulIdentifier","src":"22095:8:94"},{"name":"value","nativeSrc":"22105:5:94","nodeType":"YulIdentifier","src":"22105:5:94"}],"functionName":{"name":"xor","nativeSrc":"22091:3:94","nodeType":"YulIdentifier","src":"22091:3:94"},"nativeSrc":"22091:20:94","nodeType":"YulFunctionCall","src":"22091:20:94"}],"functionName":{"name":"shr","nativeSrc":"22071:3:94","nodeType":"YulIdentifier","src":"22071:3:94"},"nativeSrc":"22071:41:94","nodeType":"YulFunctionCall","src":"22071:41:94"}],"functionName":{"name":"xor","nativeSrc":"22061:3:94","nodeType":"YulIdentifier","src":"22061:3:94"},"nativeSrc":"22061:52:94","nodeType":"YulFunctionCall","src":"22061:52:94"},"variableNames":[{"name":"result","nativeSrc":"22051:6:94","nodeType":"YulIdentifier","src":"22051:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28270,"isOffset":false,"isSlot":false,"src":"22082:6:94","valueSize":1},{"declaration":28276,"isOffset":false,"isSlot":false,"src":"22095:8:94","valueSize":1},{"declaration":28273,"isOffset":false,"isSlot":false,"src":"22051:6:94","valueSize":1},{"declaration":28266,"isOffset":false,"isSlot":false,"src":"22065:4:94","valueSize":1},{"declaration":28268,"isOffset":false,"isSlot":false,"src":"22001:5:94","valueSize":1},{"declaration":28268,"isOffset":false,"isSlot":false,"src":"22014:5:94","valueSize":1},{"declaration":28268,"isOffset":false,"isSlot":false,"src":"22105:5:94","valueSize":1}],"flags":["memory-safe"],"id":28282,"nodeType":"InlineAssembly","src":"21962:161:94"}]},"id":28284,"implemented":true,"kind":"function","modifiers":[],"name":"replace_8_2","nameLocation":"21808:11:94","nodeType":"FunctionDefinition","parameters":{"id":28271,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28266,"mutability":"mutable","name":"self","nameLocation":"21827:4:94","nodeType":"VariableDeclaration","scope":28284,"src":"21820:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28265,"name":"bytes8","nodeType":"ElementaryTypeName","src":"21820:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":28268,"mutability":"mutable","name":"value","nameLocation":"21840:5:94","nodeType":"VariableDeclaration","scope":28284,"src":"21833:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28267,"name":"bytes2","nodeType":"ElementaryTypeName","src":"21833:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":28270,"mutability":"mutable","name":"offset","nameLocation":"21853:6:94","nodeType":"VariableDeclaration","scope":28284,"src":"21847:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28269,"name":"uint8","nodeType":"ElementaryTypeName","src":"21847:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"21819:41:94"},"returnParameters":{"id":28274,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28273,"mutability":"mutable","name":"result","nameLocation":"21891:6:94","nodeType":"VariableDeclaration","scope":28284,"src":"21884:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28272,"name":"bytes8","nodeType":"ElementaryTypeName","src":"21884:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"21883:15:94"},"scope":30945,"src":"21799:330:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28301,"nodeType":"Block","src":"22221:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28293,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28288,"src":"22235:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":28294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22244:1:94","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"22235:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28299,"nodeType":"IfStatement","src":"22231:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28296,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"22254:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28297,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22254:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28298,"nodeType":"RevertStatement","src":"22247:25:94"}},{"AST":{"nativeSrc":"22307:82:94","nodeType":"YulBlock","src":"22307:82:94","statements":[{"nativeSrc":"22321:58:94","nodeType":"YulAssignment","src":"22321:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22343:1:94","nodeType":"YulLiteral","src":"22343:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"22346:6:94","nodeType":"YulIdentifier","src":"22346:6:94"}],"functionName":{"name":"mul","nativeSrc":"22339:3:94","nodeType":"YulIdentifier","src":"22339:3:94"},"nativeSrc":"22339:14:94","nodeType":"YulFunctionCall","src":"22339:14:94"},{"name":"self","nativeSrc":"22355:4:94","nodeType":"YulIdentifier","src":"22355:4:94"}],"functionName":{"name":"shl","nativeSrc":"22335:3:94","nodeType":"YulIdentifier","src":"22335:3:94"},"nativeSrc":"22335:25:94","nodeType":"YulFunctionCall","src":"22335:25:94"},{"arguments":[{"kind":"number","nativeSrc":"22366:3:94","nodeType":"YulLiteral","src":"22366:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"22375:1:94","nodeType":"YulLiteral","src":"22375:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"22371:3:94","nodeType":"YulIdentifier","src":"22371:3:94"},"nativeSrc":"22371:6:94","nodeType":"YulFunctionCall","src":"22371:6:94"}],"functionName":{"name":"shl","nativeSrc":"22362:3:94","nodeType":"YulIdentifier","src":"22362:3:94"},"nativeSrc":"22362:16:94","nodeType":"YulFunctionCall","src":"22362:16:94"}],"functionName":{"name":"and","nativeSrc":"22331:3:94","nodeType":"YulIdentifier","src":"22331:3:94"},"nativeSrc":"22331:48:94","nodeType":"YulFunctionCall","src":"22331:48:94"},"variableNames":[{"name":"result","nativeSrc":"22321:6:94","nodeType":"YulIdentifier","src":"22321:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28288,"isOffset":false,"isSlot":false,"src":"22346:6:94","valueSize":1},{"declaration":28291,"isOffset":false,"isSlot":false,"src":"22321:6:94","valueSize":1},{"declaration":28286,"isOffset":false,"isSlot":false,"src":"22355:4:94","valueSize":1}],"flags":["memory-safe"],"id":28300,"nodeType":"InlineAssembly","src":"22282:107:94"}]},"id":28302,"implemented":true,"kind":"function","modifiers":[],"name":"extract_8_4","nameLocation":"22144:11:94","nodeType":"FunctionDefinition","parameters":{"id":28289,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28286,"mutability":"mutable","name":"self","nameLocation":"22163:4:94","nodeType":"VariableDeclaration","scope":28302,"src":"22156:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28285,"name":"bytes8","nodeType":"ElementaryTypeName","src":"22156:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":28288,"mutability":"mutable","name":"offset","nameLocation":"22175:6:94","nodeType":"VariableDeclaration","scope":28302,"src":"22169:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28287,"name":"uint8","nodeType":"ElementaryTypeName","src":"22169:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"22155:27:94"},"returnParameters":{"id":28292,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28291,"mutability":"mutable","name":"result","nameLocation":"22213:6:94","nodeType":"VariableDeclaration","scope":28302,"src":"22206:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28290,"name":"bytes4","nodeType":"ElementaryTypeName","src":"22206:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"22205:15:94"},"scope":30945,"src":"22135:260:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28321,"nodeType":"Block","src":"22501:230:94","statements":[{"assignments":[28314],"declarations":[{"constant":false,"id":28314,"mutability":"mutable","name":"oldValue","nameLocation":"22518:8:94","nodeType":"VariableDeclaration","scope":28321,"src":"22511:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28313,"name":"bytes4","nodeType":"ElementaryTypeName","src":"22511:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":28319,"initialValue":{"arguments":[{"id":28316,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28304,"src":"22541:4:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},{"id":28317,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28308,"src":"22547:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes8","typeString":"bytes8"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28315,"name":"extract_8_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28302,"src":"22529:11:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes8_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes8,uint8) pure returns (bytes4)"}},"id":28318,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22529:25:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"22511:43:94"},{"AST":{"nativeSrc":"22589:136:94","nodeType":"YulBlock","src":"22589:136:94","statements":[{"nativeSrc":"22603:37:94","nodeType":"YulAssignment","src":"22603:37:94","value":{"arguments":[{"name":"value","nativeSrc":"22616:5:94","nodeType":"YulIdentifier","src":"22616:5:94"},{"arguments":[{"kind":"number","nativeSrc":"22627:3:94","nodeType":"YulLiteral","src":"22627:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"22636:1:94","nodeType":"YulLiteral","src":"22636:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"22632:3:94","nodeType":"YulIdentifier","src":"22632:3:94"},"nativeSrc":"22632:6:94","nodeType":"YulFunctionCall","src":"22632:6:94"}],"functionName":{"name":"shl","nativeSrc":"22623:3:94","nodeType":"YulIdentifier","src":"22623:3:94"},"nativeSrc":"22623:16:94","nodeType":"YulFunctionCall","src":"22623:16:94"}],"functionName":{"name":"and","nativeSrc":"22612:3:94","nodeType":"YulIdentifier","src":"22612:3:94"},"nativeSrc":"22612:28:94","nodeType":"YulFunctionCall","src":"22612:28:94"},"variableNames":[{"name":"value","nativeSrc":"22603:5:94","nodeType":"YulIdentifier","src":"22603:5:94"}]},{"nativeSrc":"22653:62:94","nodeType":"YulAssignment","src":"22653:62:94","value":{"arguments":[{"name":"self","nativeSrc":"22667:4:94","nodeType":"YulIdentifier","src":"22667:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22681:1:94","nodeType":"YulLiteral","src":"22681:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"22684:6:94","nodeType":"YulIdentifier","src":"22684:6:94"}],"functionName":{"name":"mul","nativeSrc":"22677:3:94","nodeType":"YulIdentifier","src":"22677:3:94"},"nativeSrc":"22677:14:94","nodeType":"YulFunctionCall","src":"22677:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"22697:8:94","nodeType":"YulIdentifier","src":"22697:8:94"},{"name":"value","nativeSrc":"22707:5:94","nodeType":"YulIdentifier","src":"22707:5:94"}],"functionName":{"name":"xor","nativeSrc":"22693:3:94","nodeType":"YulIdentifier","src":"22693:3:94"},"nativeSrc":"22693:20:94","nodeType":"YulFunctionCall","src":"22693:20:94"}],"functionName":{"name":"shr","nativeSrc":"22673:3:94","nodeType":"YulIdentifier","src":"22673:3:94"},"nativeSrc":"22673:41:94","nodeType":"YulFunctionCall","src":"22673:41:94"}],"functionName":{"name":"xor","nativeSrc":"22663:3:94","nodeType":"YulIdentifier","src":"22663:3:94"},"nativeSrc":"22663:52:94","nodeType":"YulFunctionCall","src":"22663:52:94"},"variableNames":[{"name":"result","nativeSrc":"22653:6:94","nodeType":"YulIdentifier","src":"22653:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28308,"isOffset":false,"isSlot":false,"src":"22684:6:94","valueSize":1},{"declaration":28314,"isOffset":false,"isSlot":false,"src":"22697:8:94","valueSize":1},{"declaration":28311,"isOffset":false,"isSlot":false,"src":"22653:6:94","valueSize":1},{"declaration":28304,"isOffset":false,"isSlot":false,"src":"22667:4:94","valueSize":1},{"declaration":28306,"isOffset":false,"isSlot":false,"src":"22603:5:94","valueSize":1},{"declaration":28306,"isOffset":false,"isSlot":false,"src":"22616:5:94","valueSize":1},{"declaration":28306,"isOffset":false,"isSlot":false,"src":"22707:5:94","valueSize":1}],"flags":["memory-safe"],"id":28320,"nodeType":"InlineAssembly","src":"22564:161:94"}]},"id":28322,"implemented":true,"kind":"function","modifiers":[],"name":"replace_8_4","nameLocation":"22410:11:94","nodeType":"FunctionDefinition","parameters":{"id":28309,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28304,"mutability":"mutable","name":"self","nameLocation":"22429:4:94","nodeType":"VariableDeclaration","scope":28322,"src":"22422:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28303,"name":"bytes8","nodeType":"ElementaryTypeName","src":"22422:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":28306,"mutability":"mutable","name":"value","nameLocation":"22442:5:94","nodeType":"VariableDeclaration","scope":28322,"src":"22435:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28305,"name":"bytes4","nodeType":"ElementaryTypeName","src":"22435:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":28308,"mutability":"mutable","name":"offset","nameLocation":"22455:6:94","nodeType":"VariableDeclaration","scope":28322,"src":"22449:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28307,"name":"uint8","nodeType":"ElementaryTypeName","src":"22449:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"22421:41:94"},"returnParameters":{"id":28312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28311,"mutability":"mutable","name":"result","nameLocation":"22493:6:94","nodeType":"VariableDeclaration","scope":28322,"src":"22486:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28310,"name":"bytes8","nodeType":"ElementaryTypeName","src":"22486:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"22485:15:94"},"scope":30945,"src":"22401:330:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28339,"nodeType":"Block","src":"22823:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28331,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28326,"src":"22837:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"32","id":28332,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22846:1:94","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"22837:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28337,"nodeType":"IfStatement","src":"22833:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28334,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"22856:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28335,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22856:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28336,"nodeType":"RevertStatement","src":"22849:25:94"}},{"AST":{"nativeSrc":"22909:82:94","nodeType":"YulBlock","src":"22909:82:94","statements":[{"nativeSrc":"22923:58:94","nodeType":"YulAssignment","src":"22923:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22945:1:94","nodeType":"YulLiteral","src":"22945:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"22948:6:94","nodeType":"YulIdentifier","src":"22948:6:94"}],"functionName":{"name":"mul","nativeSrc":"22941:3:94","nodeType":"YulIdentifier","src":"22941:3:94"},"nativeSrc":"22941:14:94","nodeType":"YulFunctionCall","src":"22941:14:94"},{"name":"self","nativeSrc":"22957:4:94","nodeType":"YulIdentifier","src":"22957:4:94"}],"functionName":{"name":"shl","nativeSrc":"22937:3:94","nodeType":"YulIdentifier","src":"22937:3:94"},"nativeSrc":"22937:25:94","nodeType":"YulFunctionCall","src":"22937:25:94"},{"arguments":[{"kind":"number","nativeSrc":"22968:3:94","nodeType":"YulLiteral","src":"22968:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"22977:1:94","nodeType":"YulLiteral","src":"22977:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"22973:3:94","nodeType":"YulIdentifier","src":"22973:3:94"},"nativeSrc":"22973:6:94","nodeType":"YulFunctionCall","src":"22973:6:94"}],"functionName":{"name":"shl","nativeSrc":"22964:3:94","nodeType":"YulIdentifier","src":"22964:3:94"},"nativeSrc":"22964:16:94","nodeType":"YulFunctionCall","src":"22964:16:94"}],"functionName":{"name":"and","nativeSrc":"22933:3:94","nodeType":"YulIdentifier","src":"22933:3:94"},"nativeSrc":"22933:48:94","nodeType":"YulFunctionCall","src":"22933:48:94"},"variableNames":[{"name":"result","nativeSrc":"22923:6:94","nodeType":"YulIdentifier","src":"22923:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28326,"isOffset":false,"isSlot":false,"src":"22948:6:94","valueSize":1},{"declaration":28329,"isOffset":false,"isSlot":false,"src":"22923:6:94","valueSize":1},{"declaration":28324,"isOffset":false,"isSlot":false,"src":"22957:4:94","valueSize":1}],"flags":["memory-safe"],"id":28338,"nodeType":"InlineAssembly","src":"22884:107:94"}]},"id":28340,"implemented":true,"kind":"function","modifiers":[],"name":"extract_8_6","nameLocation":"22746:11:94","nodeType":"FunctionDefinition","parameters":{"id":28327,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28324,"mutability":"mutable","name":"self","nameLocation":"22765:4:94","nodeType":"VariableDeclaration","scope":28340,"src":"22758:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28323,"name":"bytes8","nodeType":"ElementaryTypeName","src":"22758:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":28326,"mutability":"mutable","name":"offset","nameLocation":"22777:6:94","nodeType":"VariableDeclaration","scope":28340,"src":"22771:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28325,"name":"uint8","nodeType":"ElementaryTypeName","src":"22771:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"22757:27:94"},"returnParameters":{"id":28330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28329,"mutability":"mutable","name":"result","nameLocation":"22815:6:94","nodeType":"VariableDeclaration","scope":28340,"src":"22808:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28328,"name":"bytes6","nodeType":"ElementaryTypeName","src":"22808:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"22807:15:94"},"scope":30945,"src":"22737:260:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28359,"nodeType":"Block","src":"23103:230:94","statements":[{"assignments":[28352],"declarations":[{"constant":false,"id":28352,"mutability":"mutable","name":"oldValue","nameLocation":"23120:8:94","nodeType":"VariableDeclaration","scope":28359,"src":"23113:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28351,"name":"bytes6","nodeType":"ElementaryTypeName","src":"23113:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":28357,"initialValue":{"arguments":[{"id":28354,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28342,"src":"23143:4:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},{"id":28355,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28346,"src":"23149:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes8","typeString":"bytes8"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28353,"name":"extract_8_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28340,"src":"23131:11:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes8_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes8,uint8) pure returns (bytes6)"}},"id":28356,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23131:25:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"23113:43:94"},{"AST":{"nativeSrc":"23191:136:94","nodeType":"YulBlock","src":"23191:136:94","statements":[{"nativeSrc":"23205:37:94","nodeType":"YulAssignment","src":"23205:37:94","value":{"arguments":[{"name":"value","nativeSrc":"23218:5:94","nodeType":"YulIdentifier","src":"23218:5:94"},{"arguments":[{"kind":"number","nativeSrc":"23229:3:94","nodeType":"YulLiteral","src":"23229:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"23238:1:94","nodeType":"YulLiteral","src":"23238:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"23234:3:94","nodeType":"YulIdentifier","src":"23234:3:94"},"nativeSrc":"23234:6:94","nodeType":"YulFunctionCall","src":"23234:6:94"}],"functionName":{"name":"shl","nativeSrc":"23225:3:94","nodeType":"YulIdentifier","src":"23225:3:94"},"nativeSrc":"23225:16:94","nodeType":"YulFunctionCall","src":"23225:16:94"}],"functionName":{"name":"and","nativeSrc":"23214:3:94","nodeType":"YulIdentifier","src":"23214:3:94"},"nativeSrc":"23214:28:94","nodeType":"YulFunctionCall","src":"23214:28:94"},"variableNames":[{"name":"value","nativeSrc":"23205:5:94","nodeType":"YulIdentifier","src":"23205:5:94"}]},{"nativeSrc":"23255:62:94","nodeType":"YulAssignment","src":"23255:62:94","value":{"arguments":[{"name":"self","nativeSrc":"23269:4:94","nodeType":"YulIdentifier","src":"23269:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23283:1:94","nodeType":"YulLiteral","src":"23283:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"23286:6:94","nodeType":"YulIdentifier","src":"23286:6:94"}],"functionName":{"name":"mul","nativeSrc":"23279:3:94","nodeType":"YulIdentifier","src":"23279:3:94"},"nativeSrc":"23279:14:94","nodeType":"YulFunctionCall","src":"23279:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"23299:8:94","nodeType":"YulIdentifier","src":"23299:8:94"},{"name":"value","nativeSrc":"23309:5:94","nodeType":"YulIdentifier","src":"23309:5:94"}],"functionName":{"name":"xor","nativeSrc":"23295:3:94","nodeType":"YulIdentifier","src":"23295:3:94"},"nativeSrc":"23295:20:94","nodeType":"YulFunctionCall","src":"23295:20:94"}],"functionName":{"name":"shr","nativeSrc":"23275:3:94","nodeType":"YulIdentifier","src":"23275:3:94"},"nativeSrc":"23275:41:94","nodeType":"YulFunctionCall","src":"23275:41:94"}],"functionName":{"name":"xor","nativeSrc":"23265:3:94","nodeType":"YulIdentifier","src":"23265:3:94"},"nativeSrc":"23265:52:94","nodeType":"YulFunctionCall","src":"23265:52:94"},"variableNames":[{"name":"result","nativeSrc":"23255:6:94","nodeType":"YulIdentifier","src":"23255:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28346,"isOffset":false,"isSlot":false,"src":"23286:6:94","valueSize":1},{"declaration":28352,"isOffset":false,"isSlot":false,"src":"23299:8:94","valueSize":1},{"declaration":28349,"isOffset":false,"isSlot":false,"src":"23255:6:94","valueSize":1},{"declaration":28342,"isOffset":false,"isSlot":false,"src":"23269:4:94","valueSize":1},{"declaration":28344,"isOffset":false,"isSlot":false,"src":"23205:5:94","valueSize":1},{"declaration":28344,"isOffset":false,"isSlot":false,"src":"23218:5:94","valueSize":1},{"declaration":28344,"isOffset":false,"isSlot":false,"src":"23309:5:94","valueSize":1}],"flags":["memory-safe"],"id":28358,"nodeType":"InlineAssembly","src":"23166:161:94"}]},"id":28360,"implemented":true,"kind":"function","modifiers":[],"name":"replace_8_6","nameLocation":"23012:11:94","nodeType":"FunctionDefinition","parameters":{"id":28347,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28342,"mutability":"mutable","name":"self","nameLocation":"23031:4:94","nodeType":"VariableDeclaration","scope":28360,"src":"23024:11:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28341,"name":"bytes8","nodeType":"ElementaryTypeName","src":"23024:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":28344,"mutability":"mutable","name":"value","nameLocation":"23044:5:94","nodeType":"VariableDeclaration","scope":28360,"src":"23037:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28343,"name":"bytes6","nodeType":"ElementaryTypeName","src":"23037:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":28346,"mutability":"mutable","name":"offset","nameLocation":"23057:6:94","nodeType":"VariableDeclaration","scope":28360,"src":"23051:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28345,"name":"uint8","nodeType":"ElementaryTypeName","src":"23051:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"23023:41:94"},"returnParameters":{"id":28350,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28349,"mutability":"mutable","name":"result","nameLocation":"23095:6:94","nodeType":"VariableDeclaration","scope":28360,"src":"23088:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28348,"name":"bytes8","nodeType":"ElementaryTypeName","src":"23088:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"23087:15:94"},"scope":30945,"src":"23003:330:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28377,"nodeType":"Block","src":"23427:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28369,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28364,"src":"23441:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"39","id":28370,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23450:1:94","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"src":"23441:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28375,"nodeType":"IfStatement","src":"23437:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28372,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"23460:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28373,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23460:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28374,"nodeType":"RevertStatement","src":"23453:25:94"}},{"AST":{"nativeSrc":"23513:82:94","nodeType":"YulBlock","src":"23513:82:94","statements":[{"nativeSrc":"23527:58:94","nodeType":"YulAssignment","src":"23527:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23549:1:94","nodeType":"YulLiteral","src":"23549:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"23552:6:94","nodeType":"YulIdentifier","src":"23552:6:94"}],"functionName":{"name":"mul","nativeSrc":"23545:3:94","nodeType":"YulIdentifier","src":"23545:3:94"},"nativeSrc":"23545:14:94","nodeType":"YulFunctionCall","src":"23545:14:94"},{"name":"self","nativeSrc":"23561:4:94","nodeType":"YulIdentifier","src":"23561:4:94"}],"functionName":{"name":"shl","nativeSrc":"23541:3:94","nodeType":"YulIdentifier","src":"23541:3:94"},"nativeSrc":"23541:25:94","nodeType":"YulFunctionCall","src":"23541:25:94"},{"arguments":[{"kind":"number","nativeSrc":"23572:3:94","nodeType":"YulLiteral","src":"23572:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"23581:1:94","nodeType":"YulLiteral","src":"23581:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"23577:3:94","nodeType":"YulIdentifier","src":"23577:3:94"},"nativeSrc":"23577:6:94","nodeType":"YulFunctionCall","src":"23577:6:94"}],"functionName":{"name":"shl","nativeSrc":"23568:3:94","nodeType":"YulIdentifier","src":"23568:3:94"},"nativeSrc":"23568:16:94","nodeType":"YulFunctionCall","src":"23568:16:94"}],"functionName":{"name":"and","nativeSrc":"23537:3:94","nodeType":"YulIdentifier","src":"23537:3:94"},"nativeSrc":"23537:48:94","nodeType":"YulFunctionCall","src":"23537:48:94"},"variableNames":[{"name":"result","nativeSrc":"23527:6:94","nodeType":"YulIdentifier","src":"23527:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28364,"isOffset":false,"isSlot":false,"src":"23552:6:94","valueSize":1},{"declaration":28367,"isOffset":false,"isSlot":false,"src":"23527:6:94","valueSize":1},{"declaration":28362,"isOffset":false,"isSlot":false,"src":"23561:4:94","valueSize":1}],"flags":["memory-safe"],"id":28376,"nodeType":"InlineAssembly","src":"23488:107:94"}]},"id":28378,"implemented":true,"kind":"function","modifiers":[],"name":"extract_10_1","nameLocation":"23348:12:94","nodeType":"FunctionDefinition","parameters":{"id":28365,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28362,"mutability":"mutable","name":"self","nameLocation":"23369:4:94","nodeType":"VariableDeclaration","scope":28378,"src":"23361:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28361,"name":"bytes10","nodeType":"ElementaryTypeName","src":"23361:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":28364,"mutability":"mutable","name":"offset","nameLocation":"23381:6:94","nodeType":"VariableDeclaration","scope":28378,"src":"23375:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28363,"name":"uint8","nodeType":"ElementaryTypeName","src":"23375:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"23360:28:94"},"returnParameters":{"id":28368,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28367,"mutability":"mutable","name":"result","nameLocation":"23419:6:94","nodeType":"VariableDeclaration","scope":28378,"src":"23412:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28366,"name":"bytes1","nodeType":"ElementaryTypeName","src":"23412:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"23411:15:94"},"scope":30945,"src":"23339:262:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28397,"nodeType":"Block","src":"23710:231:94","statements":[{"assignments":[28390],"declarations":[{"constant":false,"id":28390,"mutability":"mutable","name":"oldValue","nameLocation":"23727:8:94","nodeType":"VariableDeclaration","scope":28397,"src":"23720:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28389,"name":"bytes1","nodeType":"ElementaryTypeName","src":"23720:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":28395,"initialValue":{"arguments":[{"id":28392,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28380,"src":"23751:4:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},{"id":28393,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28384,"src":"23757:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes10","typeString":"bytes10"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28391,"name":"extract_10_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28378,"src":"23738:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes10_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes10,uint8) pure returns (bytes1)"}},"id":28394,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23738:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"23720:44:94"},{"AST":{"nativeSrc":"23799:136:94","nodeType":"YulBlock","src":"23799:136:94","statements":[{"nativeSrc":"23813:37:94","nodeType":"YulAssignment","src":"23813:37:94","value":{"arguments":[{"name":"value","nativeSrc":"23826:5:94","nodeType":"YulIdentifier","src":"23826:5:94"},{"arguments":[{"kind":"number","nativeSrc":"23837:3:94","nodeType":"YulLiteral","src":"23837:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"23846:1:94","nodeType":"YulLiteral","src":"23846:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"23842:3:94","nodeType":"YulIdentifier","src":"23842:3:94"},"nativeSrc":"23842:6:94","nodeType":"YulFunctionCall","src":"23842:6:94"}],"functionName":{"name":"shl","nativeSrc":"23833:3:94","nodeType":"YulIdentifier","src":"23833:3:94"},"nativeSrc":"23833:16:94","nodeType":"YulFunctionCall","src":"23833:16:94"}],"functionName":{"name":"and","nativeSrc":"23822:3:94","nodeType":"YulIdentifier","src":"23822:3:94"},"nativeSrc":"23822:28:94","nodeType":"YulFunctionCall","src":"23822:28:94"},"variableNames":[{"name":"value","nativeSrc":"23813:5:94","nodeType":"YulIdentifier","src":"23813:5:94"}]},{"nativeSrc":"23863:62:94","nodeType":"YulAssignment","src":"23863:62:94","value":{"arguments":[{"name":"self","nativeSrc":"23877:4:94","nodeType":"YulIdentifier","src":"23877:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23891:1:94","nodeType":"YulLiteral","src":"23891:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"23894:6:94","nodeType":"YulIdentifier","src":"23894:6:94"}],"functionName":{"name":"mul","nativeSrc":"23887:3:94","nodeType":"YulIdentifier","src":"23887:3:94"},"nativeSrc":"23887:14:94","nodeType":"YulFunctionCall","src":"23887:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"23907:8:94","nodeType":"YulIdentifier","src":"23907:8:94"},{"name":"value","nativeSrc":"23917:5:94","nodeType":"YulIdentifier","src":"23917:5:94"}],"functionName":{"name":"xor","nativeSrc":"23903:3:94","nodeType":"YulIdentifier","src":"23903:3:94"},"nativeSrc":"23903:20:94","nodeType":"YulFunctionCall","src":"23903:20:94"}],"functionName":{"name":"shr","nativeSrc":"23883:3:94","nodeType":"YulIdentifier","src":"23883:3:94"},"nativeSrc":"23883:41:94","nodeType":"YulFunctionCall","src":"23883:41:94"}],"functionName":{"name":"xor","nativeSrc":"23873:3:94","nodeType":"YulIdentifier","src":"23873:3:94"},"nativeSrc":"23873:52:94","nodeType":"YulFunctionCall","src":"23873:52:94"},"variableNames":[{"name":"result","nativeSrc":"23863:6:94","nodeType":"YulIdentifier","src":"23863:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28384,"isOffset":false,"isSlot":false,"src":"23894:6:94","valueSize":1},{"declaration":28390,"isOffset":false,"isSlot":false,"src":"23907:8:94","valueSize":1},{"declaration":28387,"isOffset":false,"isSlot":false,"src":"23863:6:94","valueSize":1},{"declaration":28380,"isOffset":false,"isSlot":false,"src":"23877:4:94","valueSize":1},{"declaration":28382,"isOffset":false,"isSlot":false,"src":"23813:5:94","valueSize":1},{"declaration":28382,"isOffset":false,"isSlot":false,"src":"23826:5:94","valueSize":1},{"declaration":28382,"isOffset":false,"isSlot":false,"src":"23917:5:94","valueSize":1}],"flags":["memory-safe"],"id":28396,"nodeType":"InlineAssembly","src":"23774:161:94"}]},"id":28398,"implemented":true,"kind":"function","modifiers":[],"name":"replace_10_1","nameLocation":"23616:12:94","nodeType":"FunctionDefinition","parameters":{"id":28385,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28380,"mutability":"mutable","name":"self","nameLocation":"23637:4:94","nodeType":"VariableDeclaration","scope":28398,"src":"23629:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28379,"name":"bytes10","nodeType":"ElementaryTypeName","src":"23629:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":28382,"mutability":"mutable","name":"value","nameLocation":"23650:5:94","nodeType":"VariableDeclaration","scope":28398,"src":"23643:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28381,"name":"bytes1","nodeType":"ElementaryTypeName","src":"23643:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":28384,"mutability":"mutable","name":"offset","nameLocation":"23663:6:94","nodeType":"VariableDeclaration","scope":28398,"src":"23657:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28383,"name":"uint8","nodeType":"ElementaryTypeName","src":"23657:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"23628:42:94"},"returnParameters":{"id":28388,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28387,"mutability":"mutable","name":"result","nameLocation":"23702:6:94","nodeType":"VariableDeclaration","scope":28398,"src":"23694:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28386,"name":"bytes10","nodeType":"ElementaryTypeName","src":"23694:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"23693:16:94"},"scope":30945,"src":"23607:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28415,"nodeType":"Block","src":"24035:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28407,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28402,"src":"24049:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"38","id":28408,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24058:1:94","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"24049:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28413,"nodeType":"IfStatement","src":"24045:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28410,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"24068:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28411,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24068:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28412,"nodeType":"RevertStatement","src":"24061:25:94"}},{"AST":{"nativeSrc":"24121:82:94","nodeType":"YulBlock","src":"24121:82:94","statements":[{"nativeSrc":"24135:58:94","nodeType":"YulAssignment","src":"24135:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"24157:1:94","nodeType":"YulLiteral","src":"24157:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"24160:6:94","nodeType":"YulIdentifier","src":"24160:6:94"}],"functionName":{"name":"mul","nativeSrc":"24153:3:94","nodeType":"YulIdentifier","src":"24153:3:94"},"nativeSrc":"24153:14:94","nodeType":"YulFunctionCall","src":"24153:14:94"},{"name":"self","nativeSrc":"24169:4:94","nodeType":"YulIdentifier","src":"24169:4:94"}],"functionName":{"name":"shl","nativeSrc":"24149:3:94","nodeType":"YulIdentifier","src":"24149:3:94"},"nativeSrc":"24149:25:94","nodeType":"YulFunctionCall","src":"24149:25:94"},{"arguments":[{"kind":"number","nativeSrc":"24180:3:94","nodeType":"YulLiteral","src":"24180:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"24189:1:94","nodeType":"YulLiteral","src":"24189:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"24185:3:94","nodeType":"YulIdentifier","src":"24185:3:94"},"nativeSrc":"24185:6:94","nodeType":"YulFunctionCall","src":"24185:6:94"}],"functionName":{"name":"shl","nativeSrc":"24176:3:94","nodeType":"YulIdentifier","src":"24176:3:94"},"nativeSrc":"24176:16:94","nodeType":"YulFunctionCall","src":"24176:16:94"}],"functionName":{"name":"and","nativeSrc":"24145:3:94","nodeType":"YulIdentifier","src":"24145:3:94"},"nativeSrc":"24145:48:94","nodeType":"YulFunctionCall","src":"24145:48:94"},"variableNames":[{"name":"result","nativeSrc":"24135:6:94","nodeType":"YulIdentifier","src":"24135:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28402,"isOffset":false,"isSlot":false,"src":"24160:6:94","valueSize":1},{"declaration":28405,"isOffset":false,"isSlot":false,"src":"24135:6:94","valueSize":1},{"declaration":28400,"isOffset":false,"isSlot":false,"src":"24169:4:94","valueSize":1}],"flags":["memory-safe"],"id":28414,"nodeType":"InlineAssembly","src":"24096:107:94"}]},"id":28416,"implemented":true,"kind":"function","modifiers":[],"name":"extract_10_2","nameLocation":"23956:12:94","nodeType":"FunctionDefinition","parameters":{"id":28403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28400,"mutability":"mutable","name":"self","nameLocation":"23977:4:94","nodeType":"VariableDeclaration","scope":28416,"src":"23969:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28399,"name":"bytes10","nodeType":"ElementaryTypeName","src":"23969:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":28402,"mutability":"mutable","name":"offset","nameLocation":"23989:6:94","nodeType":"VariableDeclaration","scope":28416,"src":"23983:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28401,"name":"uint8","nodeType":"ElementaryTypeName","src":"23983:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"23968:28:94"},"returnParameters":{"id":28406,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28405,"mutability":"mutable","name":"result","nameLocation":"24027:6:94","nodeType":"VariableDeclaration","scope":28416,"src":"24020:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28404,"name":"bytes2","nodeType":"ElementaryTypeName","src":"24020:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"24019:15:94"},"scope":30945,"src":"23947:262:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28435,"nodeType":"Block","src":"24318:231:94","statements":[{"assignments":[28428],"declarations":[{"constant":false,"id":28428,"mutability":"mutable","name":"oldValue","nameLocation":"24335:8:94","nodeType":"VariableDeclaration","scope":28435,"src":"24328:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28427,"name":"bytes2","nodeType":"ElementaryTypeName","src":"24328:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":28433,"initialValue":{"arguments":[{"id":28430,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28418,"src":"24359:4:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},{"id":28431,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28422,"src":"24365:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes10","typeString":"bytes10"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28429,"name":"extract_10_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28416,"src":"24346:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes10_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes10,uint8) pure returns (bytes2)"}},"id":28432,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24346:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"24328:44:94"},{"AST":{"nativeSrc":"24407:136:94","nodeType":"YulBlock","src":"24407:136:94","statements":[{"nativeSrc":"24421:37:94","nodeType":"YulAssignment","src":"24421:37:94","value":{"arguments":[{"name":"value","nativeSrc":"24434:5:94","nodeType":"YulIdentifier","src":"24434:5:94"},{"arguments":[{"kind":"number","nativeSrc":"24445:3:94","nodeType":"YulLiteral","src":"24445:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"24454:1:94","nodeType":"YulLiteral","src":"24454:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"24450:3:94","nodeType":"YulIdentifier","src":"24450:3:94"},"nativeSrc":"24450:6:94","nodeType":"YulFunctionCall","src":"24450:6:94"}],"functionName":{"name":"shl","nativeSrc":"24441:3:94","nodeType":"YulIdentifier","src":"24441:3:94"},"nativeSrc":"24441:16:94","nodeType":"YulFunctionCall","src":"24441:16:94"}],"functionName":{"name":"and","nativeSrc":"24430:3:94","nodeType":"YulIdentifier","src":"24430:3:94"},"nativeSrc":"24430:28:94","nodeType":"YulFunctionCall","src":"24430:28:94"},"variableNames":[{"name":"value","nativeSrc":"24421:5:94","nodeType":"YulIdentifier","src":"24421:5:94"}]},{"nativeSrc":"24471:62:94","nodeType":"YulAssignment","src":"24471:62:94","value":{"arguments":[{"name":"self","nativeSrc":"24485:4:94","nodeType":"YulIdentifier","src":"24485:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"24499:1:94","nodeType":"YulLiteral","src":"24499:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"24502:6:94","nodeType":"YulIdentifier","src":"24502:6:94"}],"functionName":{"name":"mul","nativeSrc":"24495:3:94","nodeType":"YulIdentifier","src":"24495:3:94"},"nativeSrc":"24495:14:94","nodeType":"YulFunctionCall","src":"24495:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"24515:8:94","nodeType":"YulIdentifier","src":"24515:8:94"},{"name":"value","nativeSrc":"24525:5:94","nodeType":"YulIdentifier","src":"24525:5:94"}],"functionName":{"name":"xor","nativeSrc":"24511:3:94","nodeType":"YulIdentifier","src":"24511:3:94"},"nativeSrc":"24511:20:94","nodeType":"YulFunctionCall","src":"24511:20:94"}],"functionName":{"name":"shr","nativeSrc":"24491:3:94","nodeType":"YulIdentifier","src":"24491:3:94"},"nativeSrc":"24491:41:94","nodeType":"YulFunctionCall","src":"24491:41:94"}],"functionName":{"name":"xor","nativeSrc":"24481:3:94","nodeType":"YulIdentifier","src":"24481:3:94"},"nativeSrc":"24481:52:94","nodeType":"YulFunctionCall","src":"24481:52:94"},"variableNames":[{"name":"result","nativeSrc":"24471:6:94","nodeType":"YulIdentifier","src":"24471:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28422,"isOffset":false,"isSlot":false,"src":"24502:6:94","valueSize":1},{"declaration":28428,"isOffset":false,"isSlot":false,"src":"24515:8:94","valueSize":1},{"declaration":28425,"isOffset":false,"isSlot":false,"src":"24471:6:94","valueSize":1},{"declaration":28418,"isOffset":false,"isSlot":false,"src":"24485:4:94","valueSize":1},{"declaration":28420,"isOffset":false,"isSlot":false,"src":"24421:5:94","valueSize":1},{"declaration":28420,"isOffset":false,"isSlot":false,"src":"24434:5:94","valueSize":1},{"declaration":28420,"isOffset":false,"isSlot":false,"src":"24525:5:94","valueSize":1}],"flags":["memory-safe"],"id":28434,"nodeType":"InlineAssembly","src":"24382:161:94"}]},"id":28436,"implemented":true,"kind":"function","modifiers":[],"name":"replace_10_2","nameLocation":"24224:12:94","nodeType":"FunctionDefinition","parameters":{"id":28423,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28418,"mutability":"mutable","name":"self","nameLocation":"24245:4:94","nodeType":"VariableDeclaration","scope":28436,"src":"24237:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28417,"name":"bytes10","nodeType":"ElementaryTypeName","src":"24237:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":28420,"mutability":"mutable","name":"value","nameLocation":"24258:5:94","nodeType":"VariableDeclaration","scope":28436,"src":"24251:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28419,"name":"bytes2","nodeType":"ElementaryTypeName","src":"24251:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":28422,"mutability":"mutable","name":"offset","nameLocation":"24271:6:94","nodeType":"VariableDeclaration","scope":28436,"src":"24265:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28421,"name":"uint8","nodeType":"ElementaryTypeName","src":"24265:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"24236:42:94"},"returnParameters":{"id":28426,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28425,"mutability":"mutable","name":"result","nameLocation":"24310:6:94","nodeType":"VariableDeclaration","scope":28436,"src":"24302:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28424,"name":"bytes10","nodeType":"ElementaryTypeName","src":"24302:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"24301:16:94"},"scope":30945,"src":"24215:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28453,"nodeType":"Block","src":"24643:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28445,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28440,"src":"24657:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"36","id":28446,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24666:1:94","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"24657:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28451,"nodeType":"IfStatement","src":"24653:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28448,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"24676:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24676:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28450,"nodeType":"RevertStatement","src":"24669:25:94"}},{"AST":{"nativeSrc":"24729:82:94","nodeType":"YulBlock","src":"24729:82:94","statements":[{"nativeSrc":"24743:58:94","nodeType":"YulAssignment","src":"24743:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"24765:1:94","nodeType":"YulLiteral","src":"24765:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"24768:6:94","nodeType":"YulIdentifier","src":"24768:6:94"}],"functionName":{"name":"mul","nativeSrc":"24761:3:94","nodeType":"YulIdentifier","src":"24761:3:94"},"nativeSrc":"24761:14:94","nodeType":"YulFunctionCall","src":"24761:14:94"},{"name":"self","nativeSrc":"24777:4:94","nodeType":"YulIdentifier","src":"24777:4:94"}],"functionName":{"name":"shl","nativeSrc":"24757:3:94","nodeType":"YulIdentifier","src":"24757:3:94"},"nativeSrc":"24757:25:94","nodeType":"YulFunctionCall","src":"24757:25:94"},{"arguments":[{"kind":"number","nativeSrc":"24788:3:94","nodeType":"YulLiteral","src":"24788:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"24797:1:94","nodeType":"YulLiteral","src":"24797:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"24793:3:94","nodeType":"YulIdentifier","src":"24793:3:94"},"nativeSrc":"24793:6:94","nodeType":"YulFunctionCall","src":"24793:6:94"}],"functionName":{"name":"shl","nativeSrc":"24784:3:94","nodeType":"YulIdentifier","src":"24784:3:94"},"nativeSrc":"24784:16:94","nodeType":"YulFunctionCall","src":"24784:16:94"}],"functionName":{"name":"and","nativeSrc":"24753:3:94","nodeType":"YulIdentifier","src":"24753:3:94"},"nativeSrc":"24753:48:94","nodeType":"YulFunctionCall","src":"24753:48:94"},"variableNames":[{"name":"result","nativeSrc":"24743:6:94","nodeType":"YulIdentifier","src":"24743:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28440,"isOffset":false,"isSlot":false,"src":"24768:6:94","valueSize":1},{"declaration":28443,"isOffset":false,"isSlot":false,"src":"24743:6:94","valueSize":1},{"declaration":28438,"isOffset":false,"isSlot":false,"src":"24777:4:94","valueSize":1}],"flags":["memory-safe"],"id":28452,"nodeType":"InlineAssembly","src":"24704:107:94"}]},"id":28454,"implemented":true,"kind":"function","modifiers":[],"name":"extract_10_4","nameLocation":"24564:12:94","nodeType":"FunctionDefinition","parameters":{"id":28441,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28438,"mutability":"mutable","name":"self","nameLocation":"24585:4:94","nodeType":"VariableDeclaration","scope":28454,"src":"24577:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28437,"name":"bytes10","nodeType":"ElementaryTypeName","src":"24577:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":28440,"mutability":"mutable","name":"offset","nameLocation":"24597:6:94","nodeType":"VariableDeclaration","scope":28454,"src":"24591:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28439,"name":"uint8","nodeType":"ElementaryTypeName","src":"24591:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"24576:28:94"},"returnParameters":{"id":28444,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28443,"mutability":"mutable","name":"result","nameLocation":"24635:6:94","nodeType":"VariableDeclaration","scope":28454,"src":"24628:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28442,"name":"bytes4","nodeType":"ElementaryTypeName","src":"24628:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"24627:15:94"},"scope":30945,"src":"24555:262:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28473,"nodeType":"Block","src":"24926:231:94","statements":[{"assignments":[28466],"declarations":[{"constant":false,"id":28466,"mutability":"mutable","name":"oldValue","nameLocation":"24943:8:94","nodeType":"VariableDeclaration","scope":28473,"src":"24936:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28465,"name":"bytes4","nodeType":"ElementaryTypeName","src":"24936:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":28471,"initialValue":{"arguments":[{"id":28468,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28456,"src":"24967:4:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},{"id":28469,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28460,"src":"24973:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes10","typeString":"bytes10"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28467,"name":"extract_10_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28454,"src":"24954:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes10_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes10,uint8) pure returns (bytes4)"}},"id":28470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24954:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"24936:44:94"},{"AST":{"nativeSrc":"25015:136:94","nodeType":"YulBlock","src":"25015:136:94","statements":[{"nativeSrc":"25029:37:94","nodeType":"YulAssignment","src":"25029:37:94","value":{"arguments":[{"name":"value","nativeSrc":"25042:5:94","nodeType":"YulIdentifier","src":"25042:5:94"},{"arguments":[{"kind":"number","nativeSrc":"25053:3:94","nodeType":"YulLiteral","src":"25053:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"25062:1:94","nodeType":"YulLiteral","src":"25062:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"25058:3:94","nodeType":"YulIdentifier","src":"25058:3:94"},"nativeSrc":"25058:6:94","nodeType":"YulFunctionCall","src":"25058:6:94"}],"functionName":{"name":"shl","nativeSrc":"25049:3:94","nodeType":"YulIdentifier","src":"25049:3:94"},"nativeSrc":"25049:16:94","nodeType":"YulFunctionCall","src":"25049:16:94"}],"functionName":{"name":"and","nativeSrc":"25038:3:94","nodeType":"YulIdentifier","src":"25038:3:94"},"nativeSrc":"25038:28:94","nodeType":"YulFunctionCall","src":"25038:28:94"},"variableNames":[{"name":"value","nativeSrc":"25029:5:94","nodeType":"YulIdentifier","src":"25029:5:94"}]},{"nativeSrc":"25079:62:94","nodeType":"YulAssignment","src":"25079:62:94","value":{"arguments":[{"name":"self","nativeSrc":"25093:4:94","nodeType":"YulIdentifier","src":"25093:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25107:1:94","nodeType":"YulLiteral","src":"25107:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"25110:6:94","nodeType":"YulIdentifier","src":"25110:6:94"}],"functionName":{"name":"mul","nativeSrc":"25103:3:94","nodeType":"YulIdentifier","src":"25103:3:94"},"nativeSrc":"25103:14:94","nodeType":"YulFunctionCall","src":"25103:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"25123:8:94","nodeType":"YulIdentifier","src":"25123:8:94"},{"name":"value","nativeSrc":"25133:5:94","nodeType":"YulIdentifier","src":"25133:5:94"}],"functionName":{"name":"xor","nativeSrc":"25119:3:94","nodeType":"YulIdentifier","src":"25119:3:94"},"nativeSrc":"25119:20:94","nodeType":"YulFunctionCall","src":"25119:20:94"}],"functionName":{"name":"shr","nativeSrc":"25099:3:94","nodeType":"YulIdentifier","src":"25099:3:94"},"nativeSrc":"25099:41:94","nodeType":"YulFunctionCall","src":"25099:41:94"}],"functionName":{"name":"xor","nativeSrc":"25089:3:94","nodeType":"YulIdentifier","src":"25089:3:94"},"nativeSrc":"25089:52:94","nodeType":"YulFunctionCall","src":"25089:52:94"},"variableNames":[{"name":"result","nativeSrc":"25079:6:94","nodeType":"YulIdentifier","src":"25079:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28460,"isOffset":false,"isSlot":false,"src":"25110:6:94","valueSize":1},{"declaration":28466,"isOffset":false,"isSlot":false,"src":"25123:8:94","valueSize":1},{"declaration":28463,"isOffset":false,"isSlot":false,"src":"25079:6:94","valueSize":1},{"declaration":28456,"isOffset":false,"isSlot":false,"src":"25093:4:94","valueSize":1},{"declaration":28458,"isOffset":false,"isSlot":false,"src":"25029:5:94","valueSize":1},{"declaration":28458,"isOffset":false,"isSlot":false,"src":"25042:5:94","valueSize":1},{"declaration":28458,"isOffset":false,"isSlot":false,"src":"25133:5:94","valueSize":1}],"flags":["memory-safe"],"id":28472,"nodeType":"InlineAssembly","src":"24990:161:94"}]},"id":28474,"implemented":true,"kind":"function","modifiers":[],"name":"replace_10_4","nameLocation":"24832:12:94","nodeType":"FunctionDefinition","parameters":{"id":28461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28456,"mutability":"mutable","name":"self","nameLocation":"24853:4:94","nodeType":"VariableDeclaration","scope":28474,"src":"24845:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28455,"name":"bytes10","nodeType":"ElementaryTypeName","src":"24845:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":28458,"mutability":"mutable","name":"value","nameLocation":"24866:5:94","nodeType":"VariableDeclaration","scope":28474,"src":"24859:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28457,"name":"bytes4","nodeType":"ElementaryTypeName","src":"24859:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":28460,"mutability":"mutable","name":"offset","nameLocation":"24879:6:94","nodeType":"VariableDeclaration","scope":28474,"src":"24873:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28459,"name":"uint8","nodeType":"ElementaryTypeName","src":"24873:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"24844:42:94"},"returnParameters":{"id":28464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28463,"mutability":"mutable","name":"result","nameLocation":"24918:6:94","nodeType":"VariableDeclaration","scope":28474,"src":"24910:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28462,"name":"bytes10","nodeType":"ElementaryTypeName","src":"24910:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"24909:16:94"},"scope":30945,"src":"24823:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28491,"nodeType":"Block","src":"25251:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28483,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28478,"src":"25265:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":28484,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25274:1:94","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"25265:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28489,"nodeType":"IfStatement","src":"25261:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28486,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"25284:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28487,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25284:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28488,"nodeType":"RevertStatement","src":"25277:25:94"}},{"AST":{"nativeSrc":"25337:82:94","nodeType":"YulBlock","src":"25337:82:94","statements":[{"nativeSrc":"25351:58:94","nodeType":"YulAssignment","src":"25351:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25373:1:94","nodeType":"YulLiteral","src":"25373:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"25376:6:94","nodeType":"YulIdentifier","src":"25376:6:94"}],"functionName":{"name":"mul","nativeSrc":"25369:3:94","nodeType":"YulIdentifier","src":"25369:3:94"},"nativeSrc":"25369:14:94","nodeType":"YulFunctionCall","src":"25369:14:94"},{"name":"self","nativeSrc":"25385:4:94","nodeType":"YulIdentifier","src":"25385:4:94"}],"functionName":{"name":"shl","nativeSrc":"25365:3:94","nodeType":"YulIdentifier","src":"25365:3:94"},"nativeSrc":"25365:25:94","nodeType":"YulFunctionCall","src":"25365:25:94"},{"arguments":[{"kind":"number","nativeSrc":"25396:3:94","nodeType":"YulLiteral","src":"25396:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"25405:1:94","nodeType":"YulLiteral","src":"25405:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"25401:3:94","nodeType":"YulIdentifier","src":"25401:3:94"},"nativeSrc":"25401:6:94","nodeType":"YulFunctionCall","src":"25401:6:94"}],"functionName":{"name":"shl","nativeSrc":"25392:3:94","nodeType":"YulIdentifier","src":"25392:3:94"},"nativeSrc":"25392:16:94","nodeType":"YulFunctionCall","src":"25392:16:94"}],"functionName":{"name":"and","nativeSrc":"25361:3:94","nodeType":"YulIdentifier","src":"25361:3:94"},"nativeSrc":"25361:48:94","nodeType":"YulFunctionCall","src":"25361:48:94"},"variableNames":[{"name":"result","nativeSrc":"25351:6:94","nodeType":"YulIdentifier","src":"25351:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28478,"isOffset":false,"isSlot":false,"src":"25376:6:94","valueSize":1},{"declaration":28481,"isOffset":false,"isSlot":false,"src":"25351:6:94","valueSize":1},{"declaration":28476,"isOffset":false,"isSlot":false,"src":"25385:4:94","valueSize":1}],"flags":["memory-safe"],"id":28490,"nodeType":"InlineAssembly","src":"25312:107:94"}]},"id":28492,"implemented":true,"kind":"function","modifiers":[],"name":"extract_10_6","nameLocation":"25172:12:94","nodeType":"FunctionDefinition","parameters":{"id":28479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28476,"mutability":"mutable","name":"self","nameLocation":"25193:4:94","nodeType":"VariableDeclaration","scope":28492,"src":"25185:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28475,"name":"bytes10","nodeType":"ElementaryTypeName","src":"25185:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":28478,"mutability":"mutable","name":"offset","nameLocation":"25205:6:94","nodeType":"VariableDeclaration","scope":28492,"src":"25199:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28477,"name":"uint8","nodeType":"ElementaryTypeName","src":"25199:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"25184:28:94"},"returnParameters":{"id":28482,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28481,"mutability":"mutable","name":"result","nameLocation":"25243:6:94","nodeType":"VariableDeclaration","scope":28492,"src":"25236:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28480,"name":"bytes6","nodeType":"ElementaryTypeName","src":"25236:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"25235:15:94"},"scope":30945,"src":"25163:262:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28511,"nodeType":"Block","src":"25534:231:94","statements":[{"assignments":[28504],"declarations":[{"constant":false,"id":28504,"mutability":"mutable","name":"oldValue","nameLocation":"25551:8:94","nodeType":"VariableDeclaration","scope":28511,"src":"25544:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28503,"name":"bytes6","nodeType":"ElementaryTypeName","src":"25544:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":28509,"initialValue":{"arguments":[{"id":28506,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28494,"src":"25575:4:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},{"id":28507,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28498,"src":"25581:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes10","typeString":"bytes10"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28505,"name":"extract_10_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28492,"src":"25562:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes10_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes10,uint8) pure returns (bytes6)"}},"id":28508,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25562:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"25544:44:94"},{"AST":{"nativeSrc":"25623:136:94","nodeType":"YulBlock","src":"25623:136:94","statements":[{"nativeSrc":"25637:37:94","nodeType":"YulAssignment","src":"25637:37:94","value":{"arguments":[{"name":"value","nativeSrc":"25650:5:94","nodeType":"YulIdentifier","src":"25650:5:94"},{"arguments":[{"kind":"number","nativeSrc":"25661:3:94","nodeType":"YulLiteral","src":"25661:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"25670:1:94","nodeType":"YulLiteral","src":"25670:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"25666:3:94","nodeType":"YulIdentifier","src":"25666:3:94"},"nativeSrc":"25666:6:94","nodeType":"YulFunctionCall","src":"25666:6:94"}],"functionName":{"name":"shl","nativeSrc":"25657:3:94","nodeType":"YulIdentifier","src":"25657:3:94"},"nativeSrc":"25657:16:94","nodeType":"YulFunctionCall","src":"25657:16:94"}],"functionName":{"name":"and","nativeSrc":"25646:3:94","nodeType":"YulIdentifier","src":"25646:3:94"},"nativeSrc":"25646:28:94","nodeType":"YulFunctionCall","src":"25646:28:94"},"variableNames":[{"name":"value","nativeSrc":"25637:5:94","nodeType":"YulIdentifier","src":"25637:5:94"}]},{"nativeSrc":"25687:62:94","nodeType":"YulAssignment","src":"25687:62:94","value":{"arguments":[{"name":"self","nativeSrc":"25701:4:94","nodeType":"YulIdentifier","src":"25701:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25715:1:94","nodeType":"YulLiteral","src":"25715:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"25718:6:94","nodeType":"YulIdentifier","src":"25718:6:94"}],"functionName":{"name":"mul","nativeSrc":"25711:3:94","nodeType":"YulIdentifier","src":"25711:3:94"},"nativeSrc":"25711:14:94","nodeType":"YulFunctionCall","src":"25711:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"25731:8:94","nodeType":"YulIdentifier","src":"25731:8:94"},{"name":"value","nativeSrc":"25741:5:94","nodeType":"YulIdentifier","src":"25741:5:94"}],"functionName":{"name":"xor","nativeSrc":"25727:3:94","nodeType":"YulIdentifier","src":"25727:3:94"},"nativeSrc":"25727:20:94","nodeType":"YulFunctionCall","src":"25727:20:94"}],"functionName":{"name":"shr","nativeSrc":"25707:3:94","nodeType":"YulIdentifier","src":"25707:3:94"},"nativeSrc":"25707:41:94","nodeType":"YulFunctionCall","src":"25707:41:94"}],"functionName":{"name":"xor","nativeSrc":"25697:3:94","nodeType":"YulIdentifier","src":"25697:3:94"},"nativeSrc":"25697:52:94","nodeType":"YulFunctionCall","src":"25697:52:94"},"variableNames":[{"name":"result","nativeSrc":"25687:6:94","nodeType":"YulIdentifier","src":"25687:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28498,"isOffset":false,"isSlot":false,"src":"25718:6:94","valueSize":1},{"declaration":28504,"isOffset":false,"isSlot":false,"src":"25731:8:94","valueSize":1},{"declaration":28501,"isOffset":false,"isSlot":false,"src":"25687:6:94","valueSize":1},{"declaration":28494,"isOffset":false,"isSlot":false,"src":"25701:4:94","valueSize":1},{"declaration":28496,"isOffset":false,"isSlot":false,"src":"25637:5:94","valueSize":1},{"declaration":28496,"isOffset":false,"isSlot":false,"src":"25650:5:94","valueSize":1},{"declaration":28496,"isOffset":false,"isSlot":false,"src":"25741:5:94","valueSize":1}],"flags":["memory-safe"],"id":28510,"nodeType":"InlineAssembly","src":"25598:161:94"}]},"id":28512,"implemented":true,"kind":"function","modifiers":[],"name":"replace_10_6","nameLocation":"25440:12:94","nodeType":"FunctionDefinition","parameters":{"id":28499,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28494,"mutability":"mutable","name":"self","nameLocation":"25461:4:94","nodeType":"VariableDeclaration","scope":28512,"src":"25453:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28493,"name":"bytes10","nodeType":"ElementaryTypeName","src":"25453:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":28496,"mutability":"mutable","name":"value","nameLocation":"25474:5:94","nodeType":"VariableDeclaration","scope":28512,"src":"25467:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28495,"name":"bytes6","nodeType":"ElementaryTypeName","src":"25467:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":28498,"mutability":"mutable","name":"offset","nameLocation":"25487:6:94","nodeType":"VariableDeclaration","scope":28512,"src":"25481:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28497,"name":"uint8","nodeType":"ElementaryTypeName","src":"25481:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"25452:42:94"},"returnParameters":{"id":28502,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28501,"mutability":"mutable","name":"result","nameLocation":"25526:6:94","nodeType":"VariableDeclaration","scope":28512,"src":"25518:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28500,"name":"bytes10","nodeType":"ElementaryTypeName","src":"25518:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"25517:16:94"},"scope":30945,"src":"25431:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28529,"nodeType":"Block","src":"25859:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28523,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28521,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28516,"src":"25873:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"32","id":28522,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25882:1:94","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"25873:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28527,"nodeType":"IfStatement","src":"25869:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28524,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"25892:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25892:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28526,"nodeType":"RevertStatement","src":"25885:25:94"}},{"AST":{"nativeSrc":"25945:82:94","nodeType":"YulBlock","src":"25945:82:94","statements":[{"nativeSrc":"25959:58:94","nodeType":"YulAssignment","src":"25959:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25981:1:94","nodeType":"YulLiteral","src":"25981:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"25984:6:94","nodeType":"YulIdentifier","src":"25984:6:94"}],"functionName":{"name":"mul","nativeSrc":"25977:3:94","nodeType":"YulIdentifier","src":"25977:3:94"},"nativeSrc":"25977:14:94","nodeType":"YulFunctionCall","src":"25977:14:94"},{"name":"self","nativeSrc":"25993:4:94","nodeType":"YulIdentifier","src":"25993:4:94"}],"functionName":{"name":"shl","nativeSrc":"25973:3:94","nodeType":"YulIdentifier","src":"25973:3:94"},"nativeSrc":"25973:25:94","nodeType":"YulFunctionCall","src":"25973:25:94"},{"arguments":[{"kind":"number","nativeSrc":"26004:3:94","nodeType":"YulLiteral","src":"26004:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"26013:1:94","nodeType":"YulLiteral","src":"26013:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"26009:3:94","nodeType":"YulIdentifier","src":"26009:3:94"},"nativeSrc":"26009:6:94","nodeType":"YulFunctionCall","src":"26009:6:94"}],"functionName":{"name":"shl","nativeSrc":"26000:3:94","nodeType":"YulIdentifier","src":"26000:3:94"},"nativeSrc":"26000:16:94","nodeType":"YulFunctionCall","src":"26000:16:94"}],"functionName":{"name":"and","nativeSrc":"25969:3:94","nodeType":"YulIdentifier","src":"25969:3:94"},"nativeSrc":"25969:48:94","nodeType":"YulFunctionCall","src":"25969:48:94"},"variableNames":[{"name":"result","nativeSrc":"25959:6:94","nodeType":"YulIdentifier","src":"25959:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28516,"isOffset":false,"isSlot":false,"src":"25984:6:94","valueSize":1},{"declaration":28519,"isOffset":false,"isSlot":false,"src":"25959:6:94","valueSize":1},{"declaration":28514,"isOffset":false,"isSlot":false,"src":"25993:4:94","valueSize":1}],"flags":["memory-safe"],"id":28528,"nodeType":"InlineAssembly","src":"25920:107:94"}]},"id":28530,"implemented":true,"kind":"function","modifiers":[],"name":"extract_10_8","nameLocation":"25780:12:94","nodeType":"FunctionDefinition","parameters":{"id":28517,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28514,"mutability":"mutable","name":"self","nameLocation":"25801:4:94","nodeType":"VariableDeclaration","scope":28530,"src":"25793:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28513,"name":"bytes10","nodeType":"ElementaryTypeName","src":"25793:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":28516,"mutability":"mutable","name":"offset","nameLocation":"25813:6:94","nodeType":"VariableDeclaration","scope":28530,"src":"25807:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28515,"name":"uint8","nodeType":"ElementaryTypeName","src":"25807:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"25792:28:94"},"returnParameters":{"id":28520,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28519,"mutability":"mutable","name":"result","nameLocation":"25851:6:94","nodeType":"VariableDeclaration","scope":28530,"src":"25844:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28518,"name":"bytes8","nodeType":"ElementaryTypeName","src":"25844:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"25843:15:94"},"scope":30945,"src":"25771:262:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28549,"nodeType":"Block","src":"26142:231:94","statements":[{"assignments":[28542],"declarations":[{"constant":false,"id":28542,"mutability":"mutable","name":"oldValue","nameLocation":"26159:8:94","nodeType":"VariableDeclaration","scope":28549,"src":"26152:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28541,"name":"bytes8","nodeType":"ElementaryTypeName","src":"26152:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"id":28547,"initialValue":{"arguments":[{"id":28544,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28532,"src":"26183:4:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},{"id":28545,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28536,"src":"26189:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes10","typeString":"bytes10"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28543,"name":"extract_10_8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28530,"src":"26170:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes10_$_t_uint8_$returns$_t_bytes8_$","typeString":"function (bytes10,uint8) pure returns (bytes8)"}},"id":28546,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26170:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"VariableDeclarationStatement","src":"26152:44:94"},{"AST":{"nativeSrc":"26231:136:94","nodeType":"YulBlock","src":"26231:136:94","statements":[{"nativeSrc":"26245:37:94","nodeType":"YulAssignment","src":"26245:37:94","value":{"arguments":[{"name":"value","nativeSrc":"26258:5:94","nodeType":"YulIdentifier","src":"26258:5:94"},{"arguments":[{"kind":"number","nativeSrc":"26269:3:94","nodeType":"YulLiteral","src":"26269:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"26278:1:94","nodeType":"YulLiteral","src":"26278:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"26274:3:94","nodeType":"YulIdentifier","src":"26274:3:94"},"nativeSrc":"26274:6:94","nodeType":"YulFunctionCall","src":"26274:6:94"}],"functionName":{"name":"shl","nativeSrc":"26265:3:94","nodeType":"YulIdentifier","src":"26265:3:94"},"nativeSrc":"26265:16:94","nodeType":"YulFunctionCall","src":"26265:16:94"}],"functionName":{"name":"and","nativeSrc":"26254:3:94","nodeType":"YulIdentifier","src":"26254:3:94"},"nativeSrc":"26254:28:94","nodeType":"YulFunctionCall","src":"26254:28:94"},"variableNames":[{"name":"value","nativeSrc":"26245:5:94","nodeType":"YulIdentifier","src":"26245:5:94"}]},{"nativeSrc":"26295:62:94","nodeType":"YulAssignment","src":"26295:62:94","value":{"arguments":[{"name":"self","nativeSrc":"26309:4:94","nodeType":"YulIdentifier","src":"26309:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"26323:1:94","nodeType":"YulLiteral","src":"26323:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"26326:6:94","nodeType":"YulIdentifier","src":"26326:6:94"}],"functionName":{"name":"mul","nativeSrc":"26319:3:94","nodeType":"YulIdentifier","src":"26319:3:94"},"nativeSrc":"26319:14:94","nodeType":"YulFunctionCall","src":"26319:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"26339:8:94","nodeType":"YulIdentifier","src":"26339:8:94"},{"name":"value","nativeSrc":"26349:5:94","nodeType":"YulIdentifier","src":"26349:5:94"}],"functionName":{"name":"xor","nativeSrc":"26335:3:94","nodeType":"YulIdentifier","src":"26335:3:94"},"nativeSrc":"26335:20:94","nodeType":"YulFunctionCall","src":"26335:20:94"}],"functionName":{"name":"shr","nativeSrc":"26315:3:94","nodeType":"YulIdentifier","src":"26315:3:94"},"nativeSrc":"26315:41:94","nodeType":"YulFunctionCall","src":"26315:41:94"}],"functionName":{"name":"xor","nativeSrc":"26305:3:94","nodeType":"YulIdentifier","src":"26305:3:94"},"nativeSrc":"26305:52:94","nodeType":"YulFunctionCall","src":"26305:52:94"},"variableNames":[{"name":"result","nativeSrc":"26295:6:94","nodeType":"YulIdentifier","src":"26295:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28536,"isOffset":false,"isSlot":false,"src":"26326:6:94","valueSize":1},{"declaration":28542,"isOffset":false,"isSlot":false,"src":"26339:8:94","valueSize":1},{"declaration":28539,"isOffset":false,"isSlot":false,"src":"26295:6:94","valueSize":1},{"declaration":28532,"isOffset":false,"isSlot":false,"src":"26309:4:94","valueSize":1},{"declaration":28534,"isOffset":false,"isSlot":false,"src":"26245:5:94","valueSize":1},{"declaration":28534,"isOffset":false,"isSlot":false,"src":"26258:5:94","valueSize":1},{"declaration":28534,"isOffset":false,"isSlot":false,"src":"26349:5:94","valueSize":1}],"flags":["memory-safe"],"id":28548,"nodeType":"InlineAssembly","src":"26206:161:94"}]},"id":28550,"implemented":true,"kind":"function","modifiers":[],"name":"replace_10_8","nameLocation":"26048:12:94","nodeType":"FunctionDefinition","parameters":{"id":28537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28532,"mutability":"mutable","name":"self","nameLocation":"26069:4:94","nodeType":"VariableDeclaration","scope":28550,"src":"26061:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28531,"name":"bytes10","nodeType":"ElementaryTypeName","src":"26061:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":28534,"mutability":"mutable","name":"value","nameLocation":"26082:5:94","nodeType":"VariableDeclaration","scope":28550,"src":"26075:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28533,"name":"bytes8","nodeType":"ElementaryTypeName","src":"26075:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":28536,"mutability":"mutable","name":"offset","nameLocation":"26095:6:94","nodeType":"VariableDeclaration","scope":28550,"src":"26089:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28535,"name":"uint8","nodeType":"ElementaryTypeName","src":"26089:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"26060:42:94"},"returnParameters":{"id":28540,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28539,"mutability":"mutable","name":"result","nameLocation":"26134:6:94","nodeType":"VariableDeclaration","scope":28550,"src":"26126:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28538,"name":"bytes10","nodeType":"ElementaryTypeName","src":"26126:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"26125:16:94"},"scope":30945,"src":"26039:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28567,"nodeType":"Block","src":"26467:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28561,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28559,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28554,"src":"26481:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3131","id":28560,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26490:2:94","typeDescriptions":{"typeIdentifier":"t_rational_11_by_1","typeString":"int_const 11"},"value":"11"},"src":"26481:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28565,"nodeType":"IfStatement","src":"26477:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28562,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"26501:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28563,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26501:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28564,"nodeType":"RevertStatement","src":"26494:25:94"}},{"AST":{"nativeSrc":"26554:82:94","nodeType":"YulBlock","src":"26554:82:94","statements":[{"nativeSrc":"26568:58:94","nodeType":"YulAssignment","src":"26568:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"26590:1:94","nodeType":"YulLiteral","src":"26590:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"26593:6:94","nodeType":"YulIdentifier","src":"26593:6:94"}],"functionName":{"name":"mul","nativeSrc":"26586:3:94","nodeType":"YulIdentifier","src":"26586:3:94"},"nativeSrc":"26586:14:94","nodeType":"YulFunctionCall","src":"26586:14:94"},{"name":"self","nativeSrc":"26602:4:94","nodeType":"YulIdentifier","src":"26602:4:94"}],"functionName":{"name":"shl","nativeSrc":"26582:3:94","nodeType":"YulIdentifier","src":"26582:3:94"},"nativeSrc":"26582:25:94","nodeType":"YulFunctionCall","src":"26582:25:94"},{"arguments":[{"kind":"number","nativeSrc":"26613:3:94","nodeType":"YulLiteral","src":"26613:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"26622:1:94","nodeType":"YulLiteral","src":"26622:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"26618:3:94","nodeType":"YulIdentifier","src":"26618:3:94"},"nativeSrc":"26618:6:94","nodeType":"YulFunctionCall","src":"26618:6:94"}],"functionName":{"name":"shl","nativeSrc":"26609:3:94","nodeType":"YulIdentifier","src":"26609:3:94"},"nativeSrc":"26609:16:94","nodeType":"YulFunctionCall","src":"26609:16:94"}],"functionName":{"name":"and","nativeSrc":"26578:3:94","nodeType":"YulIdentifier","src":"26578:3:94"},"nativeSrc":"26578:48:94","nodeType":"YulFunctionCall","src":"26578:48:94"},"variableNames":[{"name":"result","nativeSrc":"26568:6:94","nodeType":"YulIdentifier","src":"26568:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28554,"isOffset":false,"isSlot":false,"src":"26593:6:94","valueSize":1},{"declaration":28557,"isOffset":false,"isSlot":false,"src":"26568:6:94","valueSize":1},{"declaration":28552,"isOffset":false,"isSlot":false,"src":"26602:4:94","valueSize":1}],"flags":["memory-safe"],"id":28566,"nodeType":"InlineAssembly","src":"26529:107:94"}]},"id":28568,"implemented":true,"kind":"function","modifiers":[],"name":"extract_12_1","nameLocation":"26388:12:94","nodeType":"FunctionDefinition","parameters":{"id":28555,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28552,"mutability":"mutable","name":"self","nameLocation":"26409:4:94","nodeType":"VariableDeclaration","scope":28568,"src":"26401:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28551,"name":"bytes12","nodeType":"ElementaryTypeName","src":"26401:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":28554,"mutability":"mutable","name":"offset","nameLocation":"26421:6:94","nodeType":"VariableDeclaration","scope":28568,"src":"26415:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28553,"name":"uint8","nodeType":"ElementaryTypeName","src":"26415:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"26400:28:94"},"returnParameters":{"id":28558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28557,"mutability":"mutable","name":"result","nameLocation":"26459:6:94","nodeType":"VariableDeclaration","scope":28568,"src":"26452:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28556,"name":"bytes1","nodeType":"ElementaryTypeName","src":"26452:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"26451:15:94"},"scope":30945,"src":"26379:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28587,"nodeType":"Block","src":"26751:231:94","statements":[{"assignments":[28580],"declarations":[{"constant":false,"id":28580,"mutability":"mutable","name":"oldValue","nameLocation":"26768:8:94","nodeType":"VariableDeclaration","scope":28587,"src":"26761:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28579,"name":"bytes1","nodeType":"ElementaryTypeName","src":"26761:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":28585,"initialValue":{"arguments":[{"id":28582,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28570,"src":"26792:4:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},{"id":28583,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28574,"src":"26798:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes12","typeString":"bytes12"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28581,"name":"extract_12_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28568,"src":"26779:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes12_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes12,uint8) pure returns (bytes1)"}},"id":28584,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26779:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"26761:44:94"},{"AST":{"nativeSrc":"26840:136:94","nodeType":"YulBlock","src":"26840:136:94","statements":[{"nativeSrc":"26854:37:94","nodeType":"YulAssignment","src":"26854:37:94","value":{"arguments":[{"name":"value","nativeSrc":"26867:5:94","nodeType":"YulIdentifier","src":"26867:5:94"},{"arguments":[{"kind":"number","nativeSrc":"26878:3:94","nodeType":"YulLiteral","src":"26878:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"26887:1:94","nodeType":"YulLiteral","src":"26887:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"26883:3:94","nodeType":"YulIdentifier","src":"26883:3:94"},"nativeSrc":"26883:6:94","nodeType":"YulFunctionCall","src":"26883:6:94"}],"functionName":{"name":"shl","nativeSrc":"26874:3:94","nodeType":"YulIdentifier","src":"26874:3:94"},"nativeSrc":"26874:16:94","nodeType":"YulFunctionCall","src":"26874:16:94"}],"functionName":{"name":"and","nativeSrc":"26863:3:94","nodeType":"YulIdentifier","src":"26863:3:94"},"nativeSrc":"26863:28:94","nodeType":"YulFunctionCall","src":"26863:28:94"},"variableNames":[{"name":"value","nativeSrc":"26854:5:94","nodeType":"YulIdentifier","src":"26854:5:94"}]},{"nativeSrc":"26904:62:94","nodeType":"YulAssignment","src":"26904:62:94","value":{"arguments":[{"name":"self","nativeSrc":"26918:4:94","nodeType":"YulIdentifier","src":"26918:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"26932:1:94","nodeType":"YulLiteral","src":"26932:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"26935:6:94","nodeType":"YulIdentifier","src":"26935:6:94"}],"functionName":{"name":"mul","nativeSrc":"26928:3:94","nodeType":"YulIdentifier","src":"26928:3:94"},"nativeSrc":"26928:14:94","nodeType":"YulFunctionCall","src":"26928:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"26948:8:94","nodeType":"YulIdentifier","src":"26948:8:94"},{"name":"value","nativeSrc":"26958:5:94","nodeType":"YulIdentifier","src":"26958:5:94"}],"functionName":{"name":"xor","nativeSrc":"26944:3:94","nodeType":"YulIdentifier","src":"26944:3:94"},"nativeSrc":"26944:20:94","nodeType":"YulFunctionCall","src":"26944:20:94"}],"functionName":{"name":"shr","nativeSrc":"26924:3:94","nodeType":"YulIdentifier","src":"26924:3:94"},"nativeSrc":"26924:41:94","nodeType":"YulFunctionCall","src":"26924:41:94"}],"functionName":{"name":"xor","nativeSrc":"26914:3:94","nodeType":"YulIdentifier","src":"26914:3:94"},"nativeSrc":"26914:52:94","nodeType":"YulFunctionCall","src":"26914:52:94"},"variableNames":[{"name":"result","nativeSrc":"26904:6:94","nodeType":"YulIdentifier","src":"26904:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28574,"isOffset":false,"isSlot":false,"src":"26935:6:94","valueSize":1},{"declaration":28580,"isOffset":false,"isSlot":false,"src":"26948:8:94","valueSize":1},{"declaration":28577,"isOffset":false,"isSlot":false,"src":"26904:6:94","valueSize":1},{"declaration":28570,"isOffset":false,"isSlot":false,"src":"26918:4:94","valueSize":1},{"declaration":28572,"isOffset":false,"isSlot":false,"src":"26854:5:94","valueSize":1},{"declaration":28572,"isOffset":false,"isSlot":false,"src":"26867:5:94","valueSize":1},{"declaration":28572,"isOffset":false,"isSlot":false,"src":"26958:5:94","valueSize":1}],"flags":["memory-safe"],"id":28586,"nodeType":"InlineAssembly","src":"26815:161:94"}]},"id":28588,"implemented":true,"kind":"function","modifiers":[],"name":"replace_12_1","nameLocation":"26657:12:94","nodeType":"FunctionDefinition","parameters":{"id":28575,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28570,"mutability":"mutable","name":"self","nameLocation":"26678:4:94","nodeType":"VariableDeclaration","scope":28588,"src":"26670:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28569,"name":"bytes12","nodeType":"ElementaryTypeName","src":"26670:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":28572,"mutability":"mutable","name":"value","nameLocation":"26691:5:94","nodeType":"VariableDeclaration","scope":28588,"src":"26684:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28571,"name":"bytes1","nodeType":"ElementaryTypeName","src":"26684:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":28574,"mutability":"mutable","name":"offset","nameLocation":"26704:6:94","nodeType":"VariableDeclaration","scope":28588,"src":"26698:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28573,"name":"uint8","nodeType":"ElementaryTypeName","src":"26698:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"26669:42:94"},"returnParameters":{"id":28578,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28577,"mutability":"mutable","name":"result","nameLocation":"26743:6:94","nodeType":"VariableDeclaration","scope":28588,"src":"26735:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28576,"name":"bytes12","nodeType":"ElementaryTypeName","src":"26735:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"26734:16:94"},"scope":30945,"src":"26648:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28605,"nodeType":"Block","src":"27076:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28597,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28592,"src":"27090:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3130","id":28598,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27099:2:94","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"27090:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28603,"nodeType":"IfStatement","src":"27086:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28600,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"27110:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27110:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28602,"nodeType":"RevertStatement","src":"27103:25:94"}},{"AST":{"nativeSrc":"27163:82:94","nodeType":"YulBlock","src":"27163:82:94","statements":[{"nativeSrc":"27177:58:94","nodeType":"YulAssignment","src":"27177:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"27199:1:94","nodeType":"YulLiteral","src":"27199:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"27202:6:94","nodeType":"YulIdentifier","src":"27202:6:94"}],"functionName":{"name":"mul","nativeSrc":"27195:3:94","nodeType":"YulIdentifier","src":"27195:3:94"},"nativeSrc":"27195:14:94","nodeType":"YulFunctionCall","src":"27195:14:94"},{"name":"self","nativeSrc":"27211:4:94","nodeType":"YulIdentifier","src":"27211:4:94"}],"functionName":{"name":"shl","nativeSrc":"27191:3:94","nodeType":"YulIdentifier","src":"27191:3:94"},"nativeSrc":"27191:25:94","nodeType":"YulFunctionCall","src":"27191:25:94"},{"arguments":[{"kind":"number","nativeSrc":"27222:3:94","nodeType":"YulLiteral","src":"27222:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"27231:1:94","nodeType":"YulLiteral","src":"27231:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"27227:3:94","nodeType":"YulIdentifier","src":"27227:3:94"},"nativeSrc":"27227:6:94","nodeType":"YulFunctionCall","src":"27227:6:94"}],"functionName":{"name":"shl","nativeSrc":"27218:3:94","nodeType":"YulIdentifier","src":"27218:3:94"},"nativeSrc":"27218:16:94","nodeType":"YulFunctionCall","src":"27218:16:94"}],"functionName":{"name":"and","nativeSrc":"27187:3:94","nodeType":"YulIdentifier","src":"27187:3:94"},"nativeSrc":"27187:48:94","nodeType":"YulFunctionCall","src":"27187:48:94"},"variableNames":[{"name":"result","nativeSrc":"27177:6:94","nodeType":"YulIdentifier","src":"27177:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28592,"isOffset":false,"isSlot":false,"src":"27202:6:94","valueSize":1},{"declaration":28595,"isOffset":false,"isSlot":false,"src":"27177:6:94","valueSize":1},{"declaration":28590,"isOffset":false,"isSlot":false,"src":"27211:4:94","valueSize":1}],"flags":["memory-safe"],"id":28604,"nodeType":"InlineAssembly","src":"27138:107:94"}]},"id":28606,"implemented":true,"kind":"function","modifiers":[],"name":"extract_12_2","nameLocation":"26997:12:94","nodeType":"FunctionDefinition","parameters":{"id":28593,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28590,"mutability":"mutable","name":"self","nameLocation":"27018:4:94","nodeType":"VariableDeclaration","scope":28606,"src":"27010:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28589,"name":"bytes12","nodeType":"ElementaryTypeName","src":"27010:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":28592,"mutability":"mutable","name":"offset","nameLocation":"27030:6:94","nodeType":"VariableDeclaration","scope":28606,"src":"27024:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28591,"name":"uint8","nodeType":"ElementaryTypeName","src":"27024:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"27009:28:94"},"returnParameters":{"id":28596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28595,"mutability":"mutable","name":"result","nameLocation":"27068:6:94","nodeType":"VariableDeclaration","scope":28606,"src":"27061:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28594,"name":"bytes2","nodeType":"ElementaryTypeName","src":"27061:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"27060:15:94"},"scope":30945,"src":"26988:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28625,"nodeType":"Block","src":"27360:231:94","statements":[{"assignments":[28618],"declarations":[{"constant":false,"id":28618,"mutability":"mutable","name":"oldValue","nameLocation":"27377:8:94","nodeType":"VariableDeclaration","scope":28625,"src":"27370:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28617,"name":"bytes2","nodeType":"ElementaryTypeName","src":"27370:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":28623,"initialValue":{"arguments":[{"id":28620,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28608,"src":"27401:4:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},{"id":28621,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28612,"src":"27407:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes12","typeString":"bytes12"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28619,"name":"extract_12_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28606,"src":"27388:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes12_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes12,uint8) pure returns (bytes2)"}},"id":28622,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27388:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"27370:44:94"},{"AST":{"nativeSrc":"27449:136:94","nodeType":"YulBlock","src":"27449:136:94","statements":[{"nativeSrc":"27463:37:94","nodeType":"YulAssignment","src":"27463:37:94","value":{"arguments":[{"name":"value","nativeSrc":"27476:5:94","nodeType":"YulIdentifier","src":"27476:5:94"},{"arguments":[{"kind":"number","nativeSrc":"27487:3:94","nodeType":"YulLiteral","src":"27487:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"27496:1:94","nodeType":"YulLiteral","src":"27496:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"27492:3:94","nodeType":"YulIdentifier","src":"27492:3:94"},"nativeSrc":"27492:6:94","nodeType":"YulFunctionCall","src":"27492:6:94"}],"functionName":{"name":"shl","nativeSrc":"27483:3:94","nodeType":"YulIdentifier","src":"27483:3:94"},"nativeSrc":"27483:16:94","nodeType":"YulFunctionCall","src":"27483:16:94"}],"functionName":{"name":"and","nativeSrc":"27472:3:94","nodeType":"YulIdentifier","src":"27472:3:94"},"nativeSrc":"27472:28:94","nodeType":"YulFunctionCall","src":"27472:28:94"},"variableNames":[{"name":"value","nativeSrc":"27463:5:94","nodeType":"YulIdentifier","src":"27463:5:94"}]},{"nativeSrc":"27513:62:94","nodeType":"YulAssignment","src":"27513:62:94","value":{"arguments":[{"name":"self","nativeSrc":"27527:4:94","nodeType":"YulIdentifier","src":"27527:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"27541:1:94","nodeType":"YulLiteral","src":"27541:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"27544:6:94","nodeType":"YulIdentifier","src":"27544:6:94"}],"functionName":{"name":"mul","nativeSrc":"27537:3:94","nodeType":"YulIdentifier","src":"27537:3:94"},"nativeSrc":"27537:14:94","nodeType":"YulFunctionCall","src":"27537:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"27557:8:94","nodeType":"YulIdentifier","src":"27557:8:94"},{"name":"value","nativeSrc":"27567:5:94","nodeType":"YulIdentifier","src":"27567:5:94"}],"functionName":{"name":"xor","nativeSrc":"27553:3:94","nodeType":"YulIdentifier","src":"27553:3:94"},"nativeSrc":"27553:20:94","nodeType":"YulFunctionCall","src":"27553:20:94"}],"functionName":{"name":"shr","nativeSrc":"27533:3:94","nodeType":"YulIdentifier","src":"27533:3:94"},"nativeSrc":"27533:41:94","nodeType":"YulFunctionCall","src":"27533:41:94"}],"functionName":{"name":"xor","nativeSrc":"27523:3:94","nodeType":"YulIdentifier","src":"27523:3:94"},"nativeSrc":"27523:52:94","nodeType":"YulFunctionCall","src":"27523:52:94"},"variableNames":[{"name":"result","nativeSrc":"27513:6:94","nodeType":"YulIdentifier","src":"27513:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28612,"isOffset":false,"isSlot":false,"src":"27544:6:94","valueSize":1},{"declaration":28618,"isOffset":false,"isSlot":false,"src":"27557:8:94","valueSize":1},{"declaration":28615,"isOffset":false,"isSlot":false,"src":"27513:6:94","valueSize":1},{"declaration":28608,"isOffset":false,"isSlot":false,"src":"27527:4:94","valueSize":1},{"declaration":28610,"isOffset":false,"isSlot":false,"src":"27463:5:94","valueSize":1},{"declaration":28610,"isOffset":false,"isSlot":false,"src":"27476:5:94","valueSize":1},{"declaration":28610,"isOffset":false,"isSlot":false,"src":"27567:5:94","valueSize":1}],"flags":["memory-safe"],"id":28624,"nodeType":"InlineAssembly","src":"27424:161:94"}]},"id":28626,"implemented":true,"kind":"function","modifiers":[],"name":"replace_12_2","nameLocation":"27266:12:94","nodeType":"FunctionDefinition","parameters":{"id":28613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28608,"mutability":"mutable","name":"self","nameLocation":"27287:4:94","nodeType":"VariableDeclaration","scope":28626,"src":"27279:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28607,"name":"bytes12","nodeType":"ElementaryTypeName","src":"27279:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":28610,"mutability":"mutable","name":"value","nameLocation":"27300:5:94","nodeType":"VariableDeclaration","scope":28626,"src":"27293:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28609,"name":"bytes2","nodeType":"ElementaryTypeName","src":"27293:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":28612,"mutability":"mutable","name":"offset","nameLocation":"27313:6:94","nodeType":"VariableDeclaration","scope":28626,"src":"27307:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28611,"name":"uint8","nodeType":"ElementaryTypeName","src":"27307:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"27278:42:94"},"returnParameters":{"id":28616,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28615,"mutability":"mutable","name":"result","nameLocation":"27352:6:94","nodeType":"VariableDeclaration","scope":28626,"src":"27344:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28614,"name":"bytes12","nodeType":"ElementaryTypeName","src":"27344:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"27343:16:94"},"scope":30945,"src":"27257:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28643,"nodeType":"Block","src":"27685:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28635,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28630,"src":"27699:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"38","id":28636,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27708:1:94","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"27699:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28641,"nodeType":"IfStatement","src":"27695:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28638,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"27718:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28639,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27718:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28640,"nodeType":"RevertStatement","src":"27711:25:94"}},{"AST":{"nativeSrc":"27771:82:94","nodeType":"YulBlock","src":"27771:82:94","statements":[{"nativeSrc":"27785:58:94","nodeType":"YulAssignment","src":"27785:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"27807:1:94","nodeType":"YulLiteral","src":"27807:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"27810:6:94","nodeType":"YulIdentifier","src":"27810:6:94"}],"functionName":{"name":"mul","nativeSrc":"27803:3:94","nodeType":"YulIdentifier","src":"27803:3:94"},"nativeSrc":"27803:14:94","nodeType":"YulFunctionCall","src":"27803:14:94"},{"name":"self","nativeSrc":"27819:4:94","nodeType":"YulIdentifier","src":"27819:4:94"}],"functionName":{"name":"shl","nativeSrc":"27799:3:94","nodeType":"YulIdentifier","src":"27799:3:94"},"nativeSrc":"27799:25:94","nodeType":"YulFunctionCall","src":"27799:25:94"},{"arguments":[{"kind":"number","nativeSrc":"27830:3:94","nodeType":"YulLiteral","src":"27830:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"27839:1:94","nodeType":"YulLiteral","src":"27839:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"27835:3:94","nodeType":"YulIdentifier","src":"27835:3:94"},"nativeSrc":"27835:6:94","nodeType":"YulFunctionCall","src":"27835:6:94"}],"functionName":{"name":"shl","nativeSrc":"27826:3:94","nodeType":"YulIdentifier","src":"27826:3:94"},"nativeSrc":"27826:16:94","nodeType":"YulFunctionCall","src":"27826:16:94"}],"functionName":{"name":"and","nativeSrc":"27795:3:94","nodeType":"YulIdentifier","src":"27795:3:94"},"nativeSrc":"27795:48:94","nodeType":"YulFunctionCall","src":"27795:48:94"},"variableNames":[{"name":"result","nativeSrc":"27785:6:94","nodeType":"YulIdentifier","src":"27785:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28630,"isOffset":false,"isSlot":false,"src":"27810:6:94","valueSize":1},{"declaration":28633,"isOffset":false,"isSlot":false,"src":"27785:6:94","valueSize":1},{"declaration":28628,"isOffset":false,"isSlot":false,"src":"27819:4:94","valueSize":1}],"flags":["memory-safe"],"id":28642,"nodeType":"InlineAssembly","src":"27746:107:94"}]},"id":28644,"implemented":true,"kind":"function","modifiers":[],"name":"extract_12_4","nameLocation":"27606:12:94","nodeType":"FunctionDefinition","parameters":{"id":28631,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28628,"mutability":"mutable","name":"self","nameLocation":"27627:4:94","nodeType":"VariableDeclaration","scope":28644,"src":"27619:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28627,"name":"bytes12","nodeType":"ElementaryTypeName","src":"27619:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":28630,"mutability":"mutable","name":"offset","nameLocation":"27639:6:94","nodeType":"VariableDeclaration","scope":28644,"src":"27633:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28629,"name":"uint8","nodeType":"ElementaryTypeName","src":"27633:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"27618:28:94"},"returnParameters":{"id":28634,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28633,"mutability":"mutable","name":"result","nameLocation":"27677:6:94","nodeType":"VariableDeclaration","scope":28644,"src":"27670:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28632,"name":"bytes4","nodeType":"ElementaryTypeName","src":"27670:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"27669:15:94"},"scope":30945,"src":"27597:262:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28663,"nodeType":"Block","src":"27968:231:94","statements":[{"assignments":[28656],"declarations":[{"constant":false,"id":28656,"mutability":"mutable","name":"oldValue","nameLocation":"27985:8:94","nodeType":"VariableDeclaration","scope":28663,"src":"27978:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28655,"name":"bytes4","nodeType":"ElementaryTypeName","src":"27978:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":28661,"initialValue":{"arguments":[{"id":28658,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28646,"src":"28009:4:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},{"id":28659,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28650,"src":"28015:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes12","typeString":"bytes12"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28657,"name":"extract_12_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28644,"src":"27996:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes12_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes12,uint8) pure returns (bytes4)"}},"id":28660,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27996:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"27978:44:94"},{"AST":{"nativeSrc":"28057:136:94","nodeType":"YulBlock","src":"28057:136:94","statements":[{"nativeSrc":"28071:37:94","nodeType":"YulAssignment","src":"28071:37:94","value":{"arguments":[{"name":"value","nativeSrc":"28084:5:94","nodeType":"YulIdentifier","src":"28084:5:94"},{"arguments":[{"kind":"number","nativeSrc":"28095:3:94","nodeType":"YulLiteral","src":"28095:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"28104:1:94","nodeType":"YulLiteral","src":"28104:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"28100:3:94","nodeType":"YulIdentifier","src":"28100:3:94"},"nativeSrc":"28100:6:94","nodeType":"YulFunctionCall","src":"28100:6:94"}],"functionName":{"name":"shl","nativeSrc":"28091:3:94","nodeType":"YulIdentifier","src":"28091:3:94"},"nativeSrc":"28091:16:94","nodeType":"YulFunctionCall","src":"28091:16:94"}],"functionName":{"name":"and","nativeSrc":"28080:3:94","nodeType":"YulIdentifier","src":"28080:3:94"},"nativeSrc":"28080:28:94","nodeType":"YulFunctionCall","src":"28080:28:94"},"variableNames":[{"name":"value","nativeSrc":"28071:5:94","nodeType":"YulIdentifier","src":"28071:5:94"}]},{"nativeSrc":"28121:62:94","nodeType":"YulAssignment","src":"28121:62:94","value":{"arguments":[{"name":"self","nativeSrc":"28135:4:94","nodeType":"YulIdentifier","src":"28135:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28149:1:94","nodeType":"YulLiteral","src":"28149:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"28152:6:94","nodeType":"YulIdentifier","src":"28152:6:94"}],"functionName":{"name":"mul","nativeSrc":"28145:3:94","nodeType":"YulIdentifier","src":"28145:3:94"},"nativeSrc":"28145:14:94","nodeType":"YulFunctionCall","src":"28145:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"28165:8:94","nodeType":"YulIdentifier","src":"28165:8:94"},{"name":"value","nativeSrc":"28175:5:94","nodeType":"YulIdentifier","src":"28175:5:94"}],"functionName":{"name":"xor","nativeSrc":"28161:3:94","nodeType":"YulIdentifier","src":"28161:3:94"},"nativeSrc":"28161:20:94","nodeType":"YulFunctionCall","src":"28161:20:94"}],"functionName":{"name":"shr","nativeSrc":"28141:3:94","nodeType":"YulIdentifier","src":"28141:3:94"},"nativeSrc":"28141:41:94","nodeType":"YulFunctionCall","src":"28141:41:94"}],"functionName":{"name":"xor","nativeSrc":"28131:3:94","nodeType":"YulIdentifier","src":"28131:3:94"},"nativeSrc":"28131:52:94","nodeType":"YulFunctionCall","src":"28131:52:94"},"variableNames":[{"name":"result","nativeSrc":"28121:6:94","nodeType":"YulIdentifier","src":"28121:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28650,"isOffset":false,"isSlot":false,"src":"28152:6:94","valueSize":1},{"declaration":28656,"isOffset":false,"isSlot":false,"src":"28165:8:94","valueSize":1},{"declaration":28653,"isOffset":false,"isSlot":false,"src":"28121:6:94","valueSize":1},{"declaration":28646,"isOffset":false,"isSlot":false,"src":"28135:4:94","valueSize":1},{"declaration":28648,"isOffset":false,"isSlot":false,"src":"28071:5:94","valueSize":1},{"declaration":28648,"isOffset":false,"isSlot":false,"src":"28084:5:94","valueSize":1},{"declaration":28648,"isOffset":false,"isSlot":false,"src":"28175:5:94","valueSize":1}],"flags":["memory-safe"],"id":28662,"nodeType":"InlineAssembly","src":"28032:161:94"}]},"id":28664,"implemented":true,"kind":"function","modifiers":[],"name":"replace_12_4","nameLocation":"27874:12:94","nodeType":"FunctionDefinition","parameters":{"id":28651,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28646,"mutability":"mutable","name":"self","nameLocation":"27895:4:94","nodeType":"VariableDeclaration","scope":28664,"src":"27887:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28645,"name":"bytes12","nodeType":"ElementaryTypeName","src":"27887:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":28648,"mutability":"mutable","name":"value","nameLocation":"27908:5:94","nodeType":"VariableDeclaration","scope":28664,"src":"27901:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28647,"name":"bytes4","nodeType":"ElementaryTypeName","src":"27901:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":28650,"mutability":"mutable","name":"offset","nameLocation":"27921:6:94","nodeType":"VariableDeclaration","scope":28664,"src":"27915:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28649,"name":"uint8","nodeType":"ElementaryTypeName","src":"27915:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"27886:42:94"},"returnParameters":{"id":28654,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28653,"mutability":"mutable","name":"result","nameLocation":"27960:6:94","nodeType":"VariableDeclaration","scope":28664,"src":"27952:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28652,"name":"bytes12","nodeType":"ElementaryTypeName","src":"27952:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"27951:16:94"},"scope":30945,"src":"27865:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28681,"nodeType":"Block","src":"28293:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28673,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28668,"src":"28307:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"36","id":28674,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28316:1:94","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"28307:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28679,"nodeType":"IfStatement","src":"28303:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28676,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"28326:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28677,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28326:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28678,"nodeType":"RevertStatement","src":"28319:25:94"}},{"AST":{"nativeSrc":"28379:82:94","nodeType":"YulBlock","src":"28379:82:94","statements":[{"nativeSrc":"28393:58:94","nodeType":"YulAssignment","src":"28393:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28415:1:94","nodeType":"YulLiteral","src":"28415:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"28418:6:94","nodeType":"YulIdentifier","src":"28418:6:94"}],"functionName":{"name":"mul","nativeSrc":"28411:3:94","nodeType":"YulIdentifier","src":"28411:3:94"},"nativeSrc":"28411:14:94","nodeType":"YulFunctionCall","src":"28411:14:94"},{"name":"self","nativeSrc":"28427:4:94","nodeType":"YulIdentifier","src":"28427:4:94"}],"functionName":{"name":"shl","nativeSrc":"28407:3:94","nodeType":"YulIdentifier","src":"28407:3:94"},"nativeSrc":"28407:25:94","nodeType":"YulFunctionCall","src":"28407:25:94"},{"arguments":[{"kind":"number","nativeSrc":"28438:3:94","nodeType":"YulLiteral","src":"28438:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"28447:1:94","nodeType":"YulLiteral","src":"28447:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"28443:3:94","nodeType":"YulIdentifier","src":"28443:3:94"},"nativeSrc":"28443:6:94","nodeType":"YulFunctionCall","src":"28443:6:94"}],"functionName":{"name":"shl","nativeSrc":"28434:3:94","nodeType":"YulIdentifier","src":"28434:3:94"},"nativeSrc":"28434:16:94","nodeType":"YulFunctionCall","src":"28434:16:94"}],"functionName":{"name":"and","nativeSrc":"28403:3:94","nodeType":"YulIdentifier","src":"28403:3:94"},"nativeSrc":"28403:48:94","nodeType":"YulFunctionCall","src":"28403:48:94"},"variableNames":[{"name":"result","nativeSrc":"28393:6:94","nodeType":"YulIdentifier","src":"28393:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28668,"isOffset":false,"isSlot":false,"src":"28418:6:94","valueSize":1},{"declaration":28671,"isOffset":false,"isSlot":false,"src":"28393:6:94","valueSize":1},{"declaration":28666,"isOffset":false,"isSlot":false,"src":"28427:4:94","valueSize":1}],"flags":["memory-safe"],"id":28680,"nodeType":"InlineAssembly","src":"28354:107:94"}]},"id":28682,"implemented":true,"kind":"function","modifiers":[],"name":"extract_12_6","nameLocation":"28214:12:94","nodeType":"FunctionDefinition","parameters":{"id":28669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28666,"mutability":"mutable","name":"self","nameLocation":"28235:4:94","nodeType":"VariableDeclaration","scope":28682,"src":"28227:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28665,"name":"bytes12","nodeType":"ElementaryTypeName","src":"28227:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":28668,"mutability":"mutable","name":"offset","nameLocation":"28247:6:94","nodeType":"VariableDeclaration","scope":28682,"src":"28241:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28667,"name":"uint8","nodeType":"ElementaryTypeName","src":"28241:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"28226:28:94"},"returnParameters":{"id":28672,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28671,"mutability":"mutable","name":"result","nameLocation":"28285:6:94","nodeType":"VariableDeclaration","scope":28682,"src":"28278:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28670,"name":"bytes6","nodeType":"ElementaryTypeName","src":"28278:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"28277:15:94"},"scope":30945,"src":"28205:262:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28701,"nodeType":"Block","src":"28576:231:94","statements":[{"assignments":[28694],"declarations":[{"constant":false,"id":28694,"mutability":"mutable","name":"oldValue","nameLocation":"28593:8:94","nodeType":"VariableDeclaration","scope":28701,"src":"28586:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28693,"name":"bytes6","nodeType":"ElementaryTypeName","src":"28586:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":28699,"initialValue":{"arguments":[{"id":28696,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28684,"src":"28617:4:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},{"id":28697,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28688,"src":"28623:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes12","typeString":"bytes12"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28695,"name":"extract_12_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28682,"src":"28604:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes12_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes12,uint8) pure returns (bytes6)"}},"id":28698,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28604:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"28586:44:94"},{"AST":{"nativeSrc":"28665:136:94","nodeType":"YulBlock","src":"28665:136:94","statements":[{"nativeSrc":"28679:37:94","nodeType":"YulAssignment","src":"28679:37:94","value":{"arguments":[{"name":"value","nativeSrc":"28692:5:94","nodeType":"YulIdentifier","src":"28692:5:94"},{"arguments":[{"kind":"number","nativeSrc":"28703:3:94","nodeType":"YulLiteral","src":"28703:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"28712:1:94","nodeType":"YulLiteral","src":"28712:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"28708:3:94","nodeType":"YulIdentifier","src":"28708:3:94"},"nativeSrc":"28708:6:94","nodeType":"YulFunctionCall","src":"28708:6:94"}],"functionName":{"name":"shl","nativeSrc":"28699:3:94","nodeType":"YulIdentifier","src":"28699:3:94"},"nativeSrc":"28699:16:94","nodeType":"YulFunctionCall","src":"28699:16:94"}],"functionName":{"name":"and","nativeSrc":"28688:3:94","nodeType":"YulIdentifier","src":"28688:3:94"},"nativeSrc":"28688:28:94","nodeType":"YulFunctionCall","src":"28688:28:94"},"variableNames":[{"name":"value","nativeSrc":"28679:5:94","nodeType":"YulIdentifier","src":"28679:5:94"}]},{"nativeSrc":"28729:62:94","nodeType":"YulAssignment","src":"28729:62:94","value":{"arguments":[{"name":"self","nativeSrc":"28743:4:94","nodeType":"YulIdentifier","src":"28743:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28757:1:94","nodeType":"YulLiteral","src":"28757:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"28760:6:94","nodeType":"YulIdentifier","src":"28760:6:94"}],"functionName":{"name":"mul","nativeSrc":"28753:3:94","nodeType":"YulIdentifier","src":"28753:3:94"},"nativeSrc":"28753:14:94","nodeType":"YulFunctionCall","src":"28753:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"28773:8:94","nodeType":"YulIdentifier","src":"28773:8:94"},{"name":"value","nativeSrc":"28783:5:94","nodeType":"YulIdentifier","src":"28783:5:94"}],"functionName":{"name":"xor","nativeSrc":"28769:3:94","nodeType":"YulIdentifier","src":"28769:3:94"},"nativeSrc":"28769:20:94","nodeType":"YulFunctionCall","src":"28769:20:94"}],"functionName":{"name":"shr","nativeSrc":"28749:3:94","nodeType":"YulIdentifier","src":"28749:3:94"},"nativeSrc":"28749:41:94","nodeType":"YulFunctionCall","src":"28749:41:94"}],"functionName":{"name":"xor","nativeSrc":"28739:3:94","nodeType":"YulIdentifier","src":"28739:3:94"},"nativeSrc":"28739:52:94","nodeType":"YulFunctionCall","src":"28739:52:94"},"variableNames":[{"name":"result","nativeSrc":"28729:6:94","nodeType":"YulIdentifier","src":"28729:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28688,"isOffset":false,"isSlot":false,"src":"28760:6:94","valueSize":1},{"declaration":28694,"isOffset":false,"isSlot":false,"src":"28773:8:94","valueSize":1},{"declaration":28691,"isOffset":false,"isSlot":false,"src":"28729:6:94","valueSize":1},{"declaration":28684,"isOffset":false,"isSlot":false,"src":"28743:4:94","valueSize":1},{"declaration":28686,"isOffset":false,"isSlot":false,"src":"28679:5:94","valueSize":1},{"declaration":28686,"isOffset":false,"isSlot":false,"src":"28692:5:94","valueSize":1},{"declaration":28686,"isOffset":false,"isSlot":false,"src":"28783:5:94","valueSize":1}],"flags":["memory-safe"],"id":28700,"nodeType":"InlineAssembly","src":"28640:161:94"}]},"id":28702,"implemented":true,"kind":"function","modifiers":[],"name":"replace_12_6","nameLocation":"28482:12:94","nodeType":"FunctionDefinition","parameters":{"id":28689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28684,"mutability":"mutable","name":"self","nameLocation":"28503:4:94","nodeType":"VariableDeclaration","scope":28702,"src":"28495:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28683,"name":"bytes12","nodeType":"ElementaryTypeName","src":"28495:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":28686,"mutability":"mutable","name":"value","nameLocation":"28516:5:94","nodeType":"VariableDeclaration","scope":28702,"src":"28509:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28685,"name":"bytes6","nodeType":"ElementaryTypeName","src":"28509:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":28688,"mutability":"mutable","name":"offset","nameLocation":"28529:6:94","nodeType":"VariableDeclaration","scope":28702,"src":"28523:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28687,"name":"uint8","nodeType":"ElementaryTypeName","src":"28523:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"28494:42:94"},"returnParameters":{"id":28692,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28691,"mutability":"mutable","name":"result","nameLocation":"28568:6:94","nodeType":"VariableDeclaration","scope":28702,"src":"28560:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28690,"name":"bytes12","nodeType":"ElementaryTypeName","src":"28560:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"28559:16:94"},"scope":30945,"src":"28473:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28719,"nodeType":"Block","src":"28901:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28713,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28711,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28706,"src":"28915:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":28712,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28924:1:94","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"28915:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28717,"nodeType":"IfStatement","src":"28911:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28714,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"28934:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28934:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28716,"nodeType":"RevertStatement","src":"28927:25:94"}},{"AST":{"nativeSrc":"28987:82:94","nodeType":"YulBlock","src":"28987:82:94","statements":[{"nativeSrc":"29001:58:94","nodeType":"YulAssignment","src":"29001:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29023:1:94","nodeType":"YulLiteral","src":"29023:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"29026:6:94","nodeType":"YulIdentifier","src":"29026:6:94"}],"functionName":{"name":"mul","nativeSrc":"29019:3:94","nodeType":"YulIdentifier","src":"29019:3:94"},"nativeSrc":"29019:14:94","nodeType":"YulFunctionCall","src":"29019:14:94"},{"name":"self","nativeSrc":"29035:4:94","nodeType":"YulIdentifier","src":"29035:4:94"}],"functionName":{"name":"shl","nativeSrc":"29015:3:94","nodeType":"YulIdentifier","src":"29015:3:94"},"nativeSrc":"29015:25:94","nodeType":"YulFunctionCall","src":"29015:25:94"},{"arguments":[{"kind":"number","nativeSrc":"29046:3:94","nodeType":"YulLiteral","src":"29046:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"29055:1:94","nodeType":"YulLiteral","src":"29055:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"29051:3:94","nodeType":"YulIdentifier","src":"29051:3:94"},"nativeSrc":"29051:6:94","nodeType":"YulFunctionCall","src":"29051:6:94"}],"functionName":{"name":"shl","nativeSrc":"29042:3:94","nodeType":"YulIdentifier","src":"29042:3:94"},"nativeSrc":"29042:16:94","nodeType":"YulFunctionCall","src":"29042:16:94"}],"functionName":{"name":"and","nativeSrc":"29011:3:94","nodeType":"YulIdentifier","src":"29011:3:94"},"nativeSrc":"29011:48:94","nodeType":"YulFunctionCall","src":"29011:48:94"},"variableNames":[{"name":"result","nativeSrc":"29001:6:94","nodeType":"YulIdentifier","src":"29001:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28706,"isOffset":false,"isSlot":false,"src":"29026:6:94","valueSize":1},{"declaration":28709,"isOffset":false,"isSlot":false,"src":"29001:6:94","valueSize":1},{"declaration":28704,"isOffset":false,"isSlot":false,"src":"29035:4:94","valueSize":1}],"flags":["memory-safe"],"id":28718,"nodeType":"InlineAssembly","src":"28962:107:94"}]},"id":28720,"implemented":true,"kind":"function","modifiers":[],"name":"extract_12_8","nameLocation":"28822:12:94","nodeType":"FunctionDefinition","parameters":{"id":28707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28704,"mutability":"mutable","name":"self","nameLocation":"28843:4:94","nodeType":"VariableDeclaration","scope":28720,"src":"28835:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28703,"name":"bytes12","nodeType":"ElementaryTypeName","src":"28835:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":28706,"mutability":"mutable","name":"offset","nameLocation":"28855:6:94","nodeType":"VariableDeclaration","scope":28720,"src":"28849:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28705,"name":"uint8","nodeType":"ElementaryTypeName","src":"28849:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"28834:28:94"},"returnParameters":{"id":28710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28709,"mutability":"mutable","name":"result","nameLocation":"28893:6:94","nodeType":"VariableDeclaration","scope":28720,"src":"28886:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28708,"name":"bytes8","nodeType":"ElementaryTypeName","src":"28886:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"28885:15:94"},"scope":30945,"src":"28813:262:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28739,"nodeType":"Block","src":"29184:231:94","statements":[{"assignments":[28732],"declarations":[{"constant":false,"id":28732,"mutability":"mutable","name":"oldValue","nameLocation":"29201:8:94","nodeType":"VariableDeclaration","scope":28739,"src":"29194:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28731,"name":"bytes8","nodeType":"ElementaryTypeName","src":"29194:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"id":28737,"initialValue":{"arguments":[{"id":28734,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28722,"src":"29225:4:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},{"id":28735,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28726,"src":"29231:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes12","typeString":"bytes12"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28733,"name":"extract_12_8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28720,"src":"29212:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes12_$_t_uint8_$returns$_t_bytes8_$","typeString":"function (bytes12,uint8) pure returns (bytes8)"}},"id":28736,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29212:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"VariableDeclarationStatement","src":"29194:44:94"},{"AST":{"nativeSrc":"29273:136:94","nodeType":"YulBlock","src":"29273:136:94","statements":[{"nativeSrc":"29287:37:94","nodeType":"YulAssignment","src":"29287:37:94","value":{"arguments":[{"name":"value","nativeSrc":"29300:5:94","nodeType":"YulIdentifier","src":"29300:5:94"},{"arguments":[{"kind":"number","nativeSrc":"29311:3:94","nodeType":"YulLiteral","src":"29311:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"29320:1:94","nodeType":"YulLiteral","src":"29320:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"29316:3:94","nodeType":"YulIdentifier","src":"29316:3:94"},"nativeSrc":"29316:6:94","nodeType":"YulFunctionCall","src":"29316:6:94"}],"functionName":{"name":"shl","nativeSrc":"29307:3:94","nodeType":"YulIdentifier","src":"29307:3:94"},"nativeSrc":"29307:16:94","nodeType":"YulFunctionCall","src":"29307:16:94"}],"functionName":{"name":"and","nativeSrc":"29296:3:94","nodeType":"YulIdentifier","src":"29296:3:94"},"nativeSrc":"29296:28:94","nodeType":"YulFunctionCall","src":"29296:28:94"},"variableNames":[{"name":"value","nativeSrc":"29287:5:94","nodeType":"YulIdentifier","src":"29287:5:94"}]},{"nativeSrc":"29337:62:94","nodeType":"YulAssignment","src":"29337:62:94","value":{"arguments":[{"name":"self","nativeSrc":"29351:4:94","nodeType":"YulIdentifier","src":"29351:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29365:1:94","nodeType":"YulLiteral","src":"29365:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"29368:6:94","nodeType":"YulIdentifier","src":"29368:6:94"}],"functionName":{"name":"mul","nativeSrc":"29361:3:94","nodeType":"YulIdentifier","src":"29361:3:94"},"nativeSrc":"29361:14:94","nodeType":"YulFunctionCall","src":"29361:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"29381:8:94","nodeType":"YulIdentifier","src":"29381:8:94"},{"name":"value","nativeSrc":"29391:5:94","nodeType":"YulIdentifier","src":"29391:5:94"}],"functionName":{"name":"xor","nativeSrc":"29377:3:94","nodeType":"YulIdentifier","src":"29377:3:94"},"nativeSrc":"29377:20:94","nodeType":"YulFunctionCall","src":"29377:20:94"}],"functionName":{"name":"shr","nativeSrc":"29357:3:94","nodeType":"YulIdentifier","src":"29357:3:94"},"nativeSrc":"29357:41:94","nodeType":"YulFunctionCall","src":"29357:41:94"}],"functionName":{"name":"xor","nativeSrc":"29347:3:94","nodeType":"YulIdentifier","src":"29347:3:94"},"nativeSrc":"29347:52:94","nodeType":"YulFunctionCall","src":"29347:52:94"},"variableNames":[{"name":"result","nativeSrc":"29337:6:94","nodeType":"YulIdentifier","src":"29337:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28726,"isOffset":false,"isSlot":false,"src":"29368:6:94","valueSize":1},{"declaration":28732,"isOffset":false,"isSlot":false,"src":"29381:8:94","valueSize":1},{"declaration":28729,"isOffset":false,"isSlot":false,"src":"29337:6:94","valueSize":1},{"declaration":28722,"isOffset":false,"isSlot":false,"src":"29351:4:94","valueSize":1},{"declaration":28724,"isOffset":false,"isSlot":false,"src":"29287:5:94","valueSize":1},{"declaration":28724,"isOffset":false,"isSlot":false,"src":"29300:5:94","valueSize":1},{"declaration":28724,"isOffset":false,"isSlot":false,"src":"29391:5:94","valueSize":1}],"flags":["memory-safe"],"id":28738,"nodeType":"InlineAssembly","src":"29248:161:94"}]},"id":28740,"implemented":true,"kind":"function","modifiers":[],"name":"replace_12_8","nameLocation":"29090:12:94","nodeType":"FunctionDefinition","parameters":{"id":28727,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28722,"mutability":"mutable","name":"self","nameLocation":"29111:4:94","nodeType":"VariableDeclaration","scope":28740,"src":"29103:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28721,"name":"bytes12","nodeType":"ElementaryTypeName","src":"29103:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":28724,"mutability":"mutable","name":"value","nameLocation":"29124:5:94","nodeType":"VariableDeclaration","scope":28740,"src":"29117:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28723,"name":"bytes8","nodeType":"ElementaryTypeName","src":"29117:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":28726,"mutability":"mutable","name":"offset","nameLocation":"29137:6:94","nodeType":"VariableDeclaration","scope":28740,"src":"29131:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28725,"name":"uint8","nodeType":"ElementaryTypeName","src":"29131:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"29102:42:94"},"returnParameters":{"id":28730,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28729,"mutability":"mutable","name":"result","nameLocation":"29176:6:94","nodeType":"VariableDeclaration","scope":28740,"src":"29168:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28728,"name":"bytes12","nodeType":"ElementaryTypeName","src":"29168:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"29167:16:94"},"scope":30945,"src":"29081:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28757,"nodeType":"Block","src":"29511:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28751,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28749,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28744,"src":"29525:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"32","id":28750,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29534:1:94","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"29525:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28755,"nodeType":"IfStatement","src":"29521:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28752,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"29544:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28753,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29544:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28754,"nodeType":"RevertStatement","src":"29537:25:94"}},{"AST":{"nativeSrc":"29597:82:94","nodeType":"YulBlock","src":"29597:82:94","statements":[{"nativeSrc":"29611:58:94","nodeType":"YulAssignment","src":"29611:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29633:1:94","nodeType":"YulLiteral","src":"29633:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"29636:6:94","nodeType":"YulIdentifier","src":"29636:6:94"}],"functionName":{"name":"mul","nativeSrc":"29629:3:94","nodeType":"YulIdentifier","src":"29629:3:94"},"nativeSrc":"29629:14:94","nodeType":"YulFunctionCall","src":"29629:14:94"},{"name":"self","nativeSrc":"29645:4:94","nodeType":"YulIdentifier","src":"29645:4:94"}],"functionName":{"name":"shl","nativeSrc":"29625:3:94","nodeType":"YulIdentifier","src":"29625:3:94"},"nativeSrc":"29625:25:94","nodeType":"YulFunctionCall","src":"29625:25:94"},{"arguments":[{"kind":"number","nativeSrc":"29656:3:94","nodeType":"YulLiteral","src":"29656:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"29665:1:94","nodeType":"YulLiteral","src":"29665:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"29661:3:94","nodeType":"YulIdentifier","src":"29661:3:94"},"nativeSrc":"29661:6:94","nodeType":"YulFunctionCall","src":"29661:6:94"}],"functionName":{"name":"shl","nativeSrc":"29652:3:94","nodeType":"YulIdentifier","src":"29652:3:94"},"nativeSrc":"29652:16:94","nodeType":"YulFunctionCall","src":"29652:16:94"}],"functionName":{"name":"and","nativeSrc":"29621:3:94","nodeType":"YulIdentifier","src":"29621:3:94"},"nativeSrc":"29621:48:94","nodeType":"YulFunctionCall","src":"29621:48:94"},"variableNames":[{"name":"result","nativeSrc":"29611:6:94","nodeType":"YulIdentifier","src":"29611:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28744,"isOffset":false,"isSlot":false,"src":"29636:6:94","valueSize":1},{"declaration":28747,"isOffset":false,"isSlot":false,"src":"29611:6:94","valueSize":1},{"declaration":28742,"isOffset":false,"isSlot":false,"src":"29645:4:94","valueSize":1}],"flags":["memory-safe"],"id":28756,"nodeType":"InlineAssembly","src":"29572:107:94"}]},"id":28758,"implemented":true,"kind":"function","modifiers":[],"name":"extract_12_10","nameLocation":"29430:13:94","nodeType":"FunctionDefinition","parameters":{"id":28745,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28742,"mutability":"mutable","name":"self","nameLocation":"29452:4:94","nodeType":"VariableDeclaration","scope":28758,"src":"29444:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28741,"name":"bytes12","nodeType":"ElementaryTypeName","src":"29444:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":28744,"mutability":"mutable","name":"offset","nameLocation":"29464:6:94","nodeType":"VariableDeclaration","scope":28758,"src":"29458:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28743,"name":"uint8","nodeType":"ElementaryTypeName","src":"29458:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"29443:28:94"},"returnParameters":{"id":28748,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28747,"mutability":"mutable","name":"result","nameLocation":"29503:6:94","nodeType":"VariableDeclaration","scope":28758,"src":"29495:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28746,"name":"bytes10","nodeType":"ElementaryTypeName","src":"29495:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"29494:16:94"},"scope":30945,"src":"29421:264:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28777,"nodeType":"Block","src":"29796:233:94","statements":[{"assignments":[28770],"declarations":[{"constant":false,"id":28770,"mutability":"mutable","name":"oldValue","nameLocation":"29814:8:94","nodeType":"VariableDeclaration","scope":28777,"src":"29806:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28769,"name":"bytes10","nodeType":"ElementaryTypeName","src":"29806:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":28775,"initialValue":{"arguments":[{"id":28772,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28760,"src":"29839:4:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},{"id":28773,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28764,"src":"29845:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes12","typeString":"bytes12"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28771,"name":"extract_12_10","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28758,"src":"29825:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes12_$_t_uint8_$returns$_t_bytes10_$","typeString":"function (bytes12,uint8) pure returns (bytes10)"}},"id":28774,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29825:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"29806:46:94"},{"AST":{"nativeSrc":"29887:136:94","nodeType":"YulBlock","src":"29887:136:94","statements":[{"nativeSrc":"29901:37:94","nodeType":"YulAssignment","src":"29901:37:94","value":{"arguments":[{"name":"value","nativeSrc":"29914:5:94","nodeType":"YulIdentifier","src":"29914:5:94"},{"arguments":[{"kind":"number","nativeSrc":"29925:3:94","nodeType":"YulLiteral","src":"29925:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"29934:1:94","nodeType":"YulLiteral","src":"29934:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"29930:3:94","nodeType":"YulIdentifier","src":"29930:3:94"},"nativeSrc":"29930:6:94","nodeType":"YulFunctionCall","src":"29930:6:94"}],"functionName":{"name":"shl","nativeSrc":"29921:3:94","nodeType":"YulIdentifier","src":"29921:3:94"},"nativeSrc":"29921:16:94","nodeType":"YulFunctionCall","src":"29921:16:94"}],"functionName":{"name":"and","nativeSrc":"29910:3:94","nodeType":"YulIdentifier","src":"29910:3:94"},"nativeSrc":"29910:28:94","nodeType":"YulFunctionCall","src":"29910:28:94"},"variableNames":[{"name":"value","nativeSrc":"29901:5:94","nodeType":"YulIdentifier","src":"29901:5:94"}]},{"nativeSrc":"29951:62:94","nodeType":"YulAssignment","src":"29951:62:94","value":{"arguments":[{"name":"self","nativeSrc":"29965:4:94","nodeType":"YulIdentifier","src":"29965:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29979:1:94","nodeType":"YulLiteral","src":"29979:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"29982:6:94","nodeType":"YulIdentifier","src":"29982:6:94"}],"functionName":{"name":"mul","nativeSrc":"29975:3:94","nodeType":"YulIdentifier","src":"29975:3:94"},"nativeSrc":"29975:14:94","nodeType":"YulFunctionCall","src":"29975:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"29995:8:94","nodeType":"YulIdentifier","src":"29995:8:94"},{"name":"value","nativeSrc":"30005:5:94","nodeType":"YulIdentifier","src":"30005:5:94"}],"functionName":{"name":"xor","nativeSrc":"29991:3:94","nodeType":"YulIdentifier","src":"29991:3:94"},"nativeSrc":"29991:20:94","nodeType":"YulFunctionCall","src":"29991:20:94"}],"functionName":{"name":"shr","nativeSrc":"29971:3:94","nodeType":"YulIdentifier","src":"29971:3:94"},"nativeSrc":"29971:41:94","nodeType":"YulFunctionCall","src":"29971:41:94"}],"functionName":{"name":"xor","nativeSrc":"29961:3:94","nodeType":"YulIdentifier","src":"29961:3:94"},"nativeSrc":"29961:52:94","nodeType":"YulFunctionCall","src":"29961:52:94"},"variableNames":[{"name":"result","nativeSrc":"29951:6:94","nodeType":"YulIdentifier","src":"29951:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28764,"isOffset":false,"isSlot":false,"src":"29982:6:94","valueSize":1},{"declaration":28770,"isOffset":false,"isSlot":false,"src":"29995:8:94","valueSize":1},{"declaration":28767,"isOffset":false,"isSlot":false,"src":"29951:6:94","valueSize":1},{"declaration":28760,"isOffset":false,"isSlot":false,"src":"29965:4:94","valueSize":1},{"declaration":28762,"isOffset":false,"isSlot":false,"src":"29901:5:94","valueSize":1},{"declaration":28762,"isOffset":false,"isSlot":false,"src":"29914:5:94","valueSize":1},{"declaration":28762,"isOffset":false,"isSlot":false,"src":"30005:5:94","valueSize":1}],"flags":["memory-safe"],"id":28776,"nodeType":"InlineAssembly","src":"29862:161:94"}]},"id":28778,"implemented":true,"kind":"function","modifiers":[],"name":"replace_12_10","nameLocation":"29700:13:94","nodeType":"FunctionDefinition","parameters":{"id":28765,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28760,"mutability":"mutable","name":"self","nameLocation":"29722:4:94","nodeType":"VariableDeclaration","scope":28778,"src":"29714:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28759,"name":"bytes12","nodeType":"ElementaryTypeName","src":"29714:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":28762,"mutability":"mutable","name":"value","nameLocation":"29736:5:94","nodeType":"VariableDeclaration","scope":28778,"src":"29728:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28761,"name":"bytes10","nodeType":"ElementaryTypeName","src":"29728:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":28764,"mutability":"mutable","name":"offset","nameLocation":"29749:6:94","nodeType":"VariableDeclaration","scope":28778,"src":"29743:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28763,"name":"uint8","nodeType":"ElementaryTypeName","src":"29743:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"29713:43:94"},"returnParameters":{"id":28768,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28767,"mutability":"mutable","name":"result","nameLocation":"29788:6:94","nodeType":"VariableDeclaration","scope":28778,"src":"29780:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":28766,"name":"bytes12","nodeType":"ElementaryTypeName","src":"29780:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"29779:16:94"},"scope":30945,"src":"29691:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28795,"nodeType":"Block","src":"30123:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28787,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28782,"src":"30137:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3135","id":28788,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30146:2:94","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"15"},"src":"30137:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28793,"nodeType":"IfStatement","src":"30133:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28790,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"30157:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30157:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28792,"nodeType":"RevertStatement","src":"30150:25:94"}},{"AST":{"nativeSrc":"30210:82:94","nodeType":"YulBlock","src":"30210:82:94","statements":[{"nativeSrc":"30224:58:94","nodeType":"YulAssignment","src":"30224:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30246:1:94","nodeType":"YulLiteral","src":"30246:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"30249:6:94","nodeType":"YulIdentifier","src":"30249:6:94"}],"functionName":{"name":"mul","nativeSrc":"30242:3:94","nodeType":"YulIdentifier","src":"30242:3:94"},"nativeSrc":"30242:14:94","nodeType":"YulFunctionCall","src":"30242:14:94"},{"name":"self","nativeSrc":"30258:4:94","nodeType":"YulIdentifier","src":"30258:4:94"}],"functionName":{"name":"shl","nativeSrc":"30238:3:94","nodeType":"YulIdentifier","src":"30238:3:94"},"nativeSrc":"30238:25:94","nodeType":"YulFunctionCall","src":"30238:25:94"},{"arguments":[{"kind":"number","nativeSrc":"30269:3:94","nodeType":"YulLiteral","src":"30269:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"30278:1:94","nodeType":"YulLiteral","src":"30278:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"30274:3:94","nodeType":"YulIdentifier","src":"30274:3:94"},"nativeSrc":"30274:6:94","nodeType":"YulFunctionCall","src":"30274:6:94"}],"functionName":{"name":"shl","nativeSrc":"30265:3:94","nodeType":"YulIdentifier","src":"30265:3:94"},"nativeSrc":"30265:16:94","nodeType":"YulFunctionCall","src":"30265:16:94"}],"functionName":{"name":"and","nativeSrc":"30234:3:94","nodeType":"YulIdentifier","src":"30234:3:94"},"nativeSrc":"30234:48:94","nodeType":"YulFunctionCall","src":"30234:48:94"},"variableNames":[{"name":"result","nativeSrc":"30224:6:94","nodeType":"YulIdentifier","src":"30224:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28782,"isOffset":false,"isSlot":false,"src":"30249:6:94","valueSize":1},{"declaration":28785,"isOffset":false,"isSlot":false,"src":"30224:6:94","valueSize":1},{"declaration":28780,"isOffset":false,"isSlot":false,"src":"30258:4:94","valueSize":1}],"flags":["memory-safe"],"id":28794,"nodeType":"InlineAssembly","src":"30185:107:94"}]},"id":28796,"implemented":true,"kind":"function","modifiers":[],"name":"extract_16_1","nameLocation":"30044:12:94","nodeType":"FunctionDefinition","parameters":{"id":28783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28780,"mutability":"mutable","name":"self","nameLocation":"30065:4:94","nodeType":"VariableDeclaration","scope":28796,"src":"30057:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28779,"name":"bytes16","nodeType":"ElementaryTypeName","src":"30057:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":28782,"mutability":"mutable","name":"offset","nameLocation":"30077:6:94","nodeType":"VariableDeclaration","scope":28796,"src":"30071:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28781,"name":"uint8","nodeType":"ElementaryTypeName","src":"30071:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"30056:28:94"},"returnParameters":{"id":28786,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28785,"mutability":"mutable","name":"result","nameLocation":"30115:6:94","nodeType":"VariableDeclaration","scope":28796,"src":"30108:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28784,"name":"bytes1","nodeType":"ElementaryTypeName","src":"30108:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"30107:15:94"},"scope":30945,"src":"30035:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28815,"nodeType":"Block","src":"30407:231:94","statements":[{"assignments":[28808],"declarations":[{"constant":false,"id":28808,"mutability":"mutable","name":"oldValue","nameLocation":"30424:8:94","nodeType":"VariableDeclaration","scope":28815,"src":"30417:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28807,"name":"bytes1","nodeType":"ElementaryTypeName","src":"30417:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":28813,"initialValue":{"arguments":[{"id":28810,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28798,"src":"30448:4:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"id":28811,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28802,"src":"30454:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28809,"name":"extract_16_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28796,"src":"30435:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes16_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes16,uint8) pure returns (bytes1)"}},"id":28812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30435:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"30417:44:94"},{"AST":{"nativeSrc":"30496:136:94","nodeType":"YulBlock","src":"30496:136:94","statements":[{"nativeSrc":"30510:37:94","nodeType":"YulAssignment","src":"30510:37:94","value":{"arguments":[{"name":"value","nativeSrc":"30523:5:94","nodeType":"YulIdentifier","src":"30523:5:94"},{"arguments":[{"kind":"number","nativeSrc":"30534:3:94","nodeType":"YulLiteral","src":"30534:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"30543:1:94","nodeType":"YulLiteral","src":"30543:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"30539:3:94","nodeType":"YulIdentifier","src":"30539:3:94"},"nativeSrc":"30539:6:94","nodeType":"YulFunctionCall","src":"30539:6:94"}],"functionName":{"name":"shl","nativeSrc":"30530:3:94","nodeType":"YulIdentifier","src":"30530:3:94"},"nativeSrc":"30530:16:94","nodeType":"YulFunctionCall","src":"30530:16:94"}],"functionName":{"name":"and","nativeSrc":"30519:3:94","nodeType":"YulIdentifier","src":"30519:3:94"},"nativeSrc":"30519:28:94","nodeType":"YulFunctionCall","src":"30519:28:94"},"variableNames":[{"name":"value","nativeSrc":"30510:5:94","nodeType":"YulIdentifier","src":"30510:5:94"}]},{"nativeSrc":"30560:62:94","nodeType":"YulAssignment","src":"30560:62:94","value":{"arguments":[{"name":"self","nativeSrc":"30574:4:94","nodeType":"YulIdentifier","src":"30574:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30588:1:94","nodeType":"YulLiteral","src":"30588:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"30591:6:94","nodeType":"YulIdentifier","src":"30591:6:94"}],"functionName":{"name":"mul","nativeSrc":"30584:3:94","nodeType":"YulIdentifier","src":"30584:3:94"},"nativeSrc":"30584:14:94","nodeType":"YulFunctionCall","src":"30584:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"30604:8:94","nodeType":"YulIdentifier","src":"30604:8:94"},{"name":"value","nativeSrc":"30614:5:94","nodeType":"YulIdentifier","src":"30614:5:94"}],"functionName":{"name":"xor","nativeSrc":"30600:3:94","nodeType":"YulIdentifier","src":"30600:3:94"},"nativeSrc":"30600:20:94","nodeType":"YulFunctionCall","src":"30600:20:94"}],"functionName":{"name":"shr","nativeSrc":"30580:3:94","nodeType":"YulIdentifier","src":"30580:3:94"},"nativeSrc":"30580:41:94","nodeType":"YulFunctionCall","src":"30580:41:94"}],"functionName":{"name":"xor","nativeSrc":"30570:3:94","nodeType":"YulIdentifier","src":"30570:3:94"},"nativeSrc":"30570:52:94","nodeType":"YulFunctionCall","src":"30570:52:94"},"variableNames":[{"name":"result","nativeSrc":"30560:6:94","nodeType":"YulIdentifier","src":"30560:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28802,"isOffset":false,"isSlot":false,"src":"30591:6:94","valueSize":1},{"declaration":28808,"isOffset":false,"isSlot":false,"src":"30604:8:94","valueSize":1},{"declaration":28805,"isOffset":false,"isSlot":false,"src":"30560:6:94","valueSize":1},{"declaration":28798,"isOffset":false,"isSlot":false,"src":"30574:4:94","valueSize":1},{"declaration":28800,"isOffset":false,"isSlot":false,"src":"30510:5:94","valueSize":1},{"declaration":28800,"isOffset":false,"isSlot":false,"src":"30523:5:94","valueSize":1},{"declaration":28800,"isOffset":false,"isSlot":false,"src":"30614:5:94","valueSize":1}],"flags":["memory-safe"],"id":28814,"nodeType":"InlineAssembly","src":"30471:161:94"}]},"id":28816,"implemented":true,"kind":"function","modifiers":[],"name":"replace_16_1","nameLocation":"30313:12:94","nodeType":"FunctionDefinition","parameters":{"id":28803,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28798,"mutability":"mutable","name":"self","nameLocation":"30334:4:94","nodeType":"VariableDeclaration","scope":28816,"src":"30326:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28797,"name":"bytes16","nodeType":"ElementaryTypeName","src":"30326:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":28800,"mutability":"mutable","name":"value","nameLocation":"30347:5:94","nodeType":"VariableDeclaration","scope":28816,"src":"30340:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":28799,"name":"bytes1","nodeType":"ElementaryTypeName","src":"30340:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":28802,"mutability":"mutable","name":"offset","nameLocation":"30360:6:94","nodeType":"VariableDeclaration","scope":28816,"src":"30354:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28801,"name":"uint8","nodeType":"ElementaryTypeName","src":"30354:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"30325:42:94"},"returnParameters":{"id":28806,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28805,"mutability":"mutable","name":"result","nameLocation":"30399:6:94","nodeType":"VariableDeclaration","scope":28816,"src":"30391:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28804,"name":"bytes16","nodeType":"ElementaryTypeName","src":"30391:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"30390:16:94"},"scope":30945,"src":"30304:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28833,"nodeType":"Block","src":"30732:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28827,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28825,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28820,"src":"30746:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3134","id":28826,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30755:2:94","typeDescriptions":{"typeIdentifier":"t_rational_14_by_1","typeString":"int_const 14"},"value":"14"},"src":"30746:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28831,"nodeType":"IfStatement","src":"30742:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28828,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"30766:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28829,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30766:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28830,"nodeType":"RevertStatement","src":"30759:25:94"}},{"AST":{"nativeSrc":"30819:82:94","nodeType":"YulBlock","src":"30819:82:94","statements":[{"nativeSrc":"30833:58:94","nodeType":"YulAssignment","src":"30833:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30855:1:94","nodeType":"YulLiteral","src":"30855:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"30858:6:94","nodeType":"YulIdentifier","src":"30858:6:94"}],"functionName":{"name":"mul","nativeSrc":"30851:3:94","nodeType":"YulIdentifier","src":"30851:3:94"},"nativeSrc":"30851:14:94","nodeType":"YulFunctionCall","src":"30851:14:94"},{"name":"self","nativeSrc":"30867:4:94","nodeType":"YulIdentifier","src":"30867:4:94"}],"functionName":{"name":"shl","nativeSrc":"30847:3:94","nodeType":"YulIdentifier","src":"30847:3:94"},"nativeSrc":"30847:25:94","nodeType":"YulFunctionCall","src":"30847:25:94"},{"arguments":[{"kind":"number","nativeSrc":"30878:3:94","nodeType":"YulLiteral","src":"30878:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"30887:1:94","nodeType":"YulLiteral","src":"30887:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"30883:3:94","nodeType":"YulIdentifier","src":"30883:3:94"},"nativeSrc":"30883:6:94","nodeType":"YulFunctionCall","src":"30883:6:94"}],"functionName":{"name":"shl","nativeSrc":"30874:3:94","nodeType":"YulIdentifier","src":"30874:3:94"},"nativeSrc":"30874:16:94","nodeType":"YulFunctionCall","src":"30874:16:94"}],"functionName":{"name":"and","nativeSrc":"30843:3:94","nodeType":"YulIdentifier","src":"30843:3:94"},"nativeSrc":"30843:48:94","nodeType":"YulFunctionCall","src":"30843:48:94"},"variableNames":[{"name":"result","nativeSrc":"30833:6:94","nodeType":"YulIdentifier","src":"30833:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28820,"isOffset":false,"isSlot":false,"src":"30858:6:94","valueSize":1},{"declaration":28823,"isOffset":false,"isSlot":false,"src":"30833:6:94","valueSize":1},{"declaration":28818,"isOffset":false,"isSlot":false,"src":"30867:4:94","valueSize":1}],"flags":["memory-safe"],"id":28832,"nodeType":"InlineAssembly","src":"30794:107:94"}]},"id":28834,"implemented":true,"kind":"function","modifiers":[],"name":"extract_16_2","nameLocation":"30653:12:94","nodeType":"FunctionDefinition","parameters":{"id":28821,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28818,"mutability":"mutable","name":"self","nameLocation":"30674:4:94","nodeType":"VariableDeclaration","scope":28834,"src":"30666:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28817,"name":"bytes16","nodeType":"ElementaryTypeName","src":"30666:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":28820,"mutability":"mutable","name":"offset","nameLocation":"30686:6:94","nodeType":"VariableDeclaration","scope":28834,"src":"30680:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28819,"name":"uint8","nodeType":"ElementaryTypeName","src":"30680:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"30665:28:94"},"returnParameters":{"id":28824,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28823,"mutability":"mutable","name":"result","nameLocation":"30724:6:94","nodeType":"VariableDeclaration","scope":28834,"src":"30717:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28822,"name":"bytes2","nodeType":"ElementaryTypeName","src":"30717:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"30716:15:94"},"scope":30945,"src":"30644:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28853,"nodeType":"Block","src":"31016:231:94","statements":[{"assignments":[28846],"declarations":[{"constant":false,"id":28846,"mutability":"mutable","name":"oldValue","nameLocation":"31033:8:94","nodeType":"VariableDeclaration","scope":28853,"src":"31026:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28845,"name":"bytes2","nodeType":"ElementaryTypeName","src":"31026:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":28851,"initialValue":{"arguments":[{"id":28848,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28836,"src":"31057:4:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"id":28849,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28840,"src":"31063:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28847,"name":"extract_16_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28834,"src":"31044:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes16_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes16,uint8) pure returns (bytes2)"}},"id":28850,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31044:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"31026:44:94"},{"AST":{"nativeSrc":"31105:136:94","nodeType":"YulBlock","src":"31105:136:94","statements":[{"nativeSrc":"31119:37:94","nodeType":"YulAssignment","src":"31119:37:94","value":{"arguments":[{"name":"value","nativeSrc":"31132:5:94","nodeType":"YulIdentifier","src":"31132:5:94"},{"arguments":[{"kind":"number","nativeSrc":"31143:3:94","nodeType":"YulLiteral","src":"31143:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"31152:1:94","nodeType":"YulLiteral","src":"31152:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"31148:3:94","nodeType":"YulIdentifier","src":"31148:3:94"},"nativeSrc":"31148:6:94","nodeType":"YulFunctionCall","src":"31148:6:94"}],"functionName":{"name":"shl","nativeSrc":"31139:3:94","nodeType":"YulIdentifier","src":"31139:3:94"},"nativeSrc":"31139:16:94","nodeType":"YulFunctionCall","src":"31139:16:94"}],"functionName":{"name":"and","nativeSrc":"31128:3:94","nodeType":"YulIdentifier","src":"31128:3:94"},"nativeSrc":"31128:28:94","nodeType":"YulFunctionCall","src":"31128:28:94"},"variableNames":[{"name":"value","nativeSrc":"31119:5:94","nodeType":"YulIdentifier","src":"31119:5:94"}]},{"nativeSrc":"31169:62:94","nodeType":"YulAssignment","src":"31169:62:94","value":{"arguments":[{"name":"self","nativeSrc":"31183:4:94","nodeType":"YulIdentifier","src":"31183:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"31197:1:94","nodeType":"YulLiteral","src":"31197:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"31200:6:94","nodeType":"YulIdentifier","src":"31200:6:94"}],"functionName":{"name":"mul","nativeSrc":"31193:3:94","nodeType":"YulIdentifier","src":"31193:3:94"},"nativeSrc":"31193:14:94","nodeType":"YulFunctionCall","src":"31193:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"31213:8:94","nodeType":"YulIdentifier","src":"31213:8:94"},{"name":"value","nativeSrc":"31223:5:94","nodeType":"YulIdentifier","src":"31223:5:94"}],"functionName":{"name":"xor","nativeSrc":"31209:3:94","nodeType":"YulIdentifier","src":"31209:3:94"},"nativeSrc":"31209:20:94","nodeType":"YulFunctionCall","src":"31209:20:94"}],"functionName":{"name":"shr","nativeSrc":"31189:3:94","nodeType":"YulIdentifier","src":"31189:3:94"},"nativeSrc":"31189:41:94","nodeType":"YulFunctionCall","src":"31189:41:94"}],"functionName":{"name":"xor","nativeSrc":"31179:3:94","nodeType":"YulIdentifier","src":"31179:3:94"},"nativeSrc":"31179:52:94","nodeType":"YulFunctionCall","src":"31179:52:94"},"variableNames":[{"name":"result","nativeSrc":"31169:6:94","nodeType":"YulIdentifier","src":"31169:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28840,"isOffset":false,"isSlot":false,"src":"31200:6:94","valueSize":1},{"declaration":28846,"isOffset":false,"isSlot":false,"src":"31213:8:94","valueSize":1},{"declaration":28843,"isOffset":false,"isSlot":false,"src":"31169:6:94","valueSize":1},{"declaration":28836,"isOffset":false,"isSlot":false,"src":"31183:4:94","valueSize":1},{"declaration":28838,"isOffset":false,"isSlot":false,"src":"31119:5:94","valueSize":1},{"declaration":28838,"isOffset":false,"isSlot":false,"src":"31132:5:94","valueSize":1},{"declaration":28838,"isOffset":false,"isSlot":false,"src":"31223:5:94","valueSize":1}],"flags":["memory-safe"],"id":28852,"nodeType":"InlineAssembly","src":"31080:161:94"}]},"id":28854,"implemented":true,"kind":"function","modifiers":[],"name":"replace_16_2","nameLocation":"30922:12:94","nodeType":"FunctionDefinition","parameters":{"id":28841,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28836,"mutability":"mutable","name":"self","nameLocation":"30943:4:94","nodeType":"VariableDeclaration","scope":28854,"src":"30935:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28835,"name":"bytes16","nodeType":"ElementaryTypeName","src":"30935:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":28838,"mutability":"mutable","name":"value","nameLocation":"30956:5:94","nodeType":"VariableDeclaration","scope":28854,"src":"30949:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":28837,"name":"bytes2","nodeType":"ElementaryTypeName","src":"30949:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":28840,"mutability":"mutable","name":"offset","nameLocation":"30969:6:94","nodeType":"VariableDeclaration","scope":28854,"src":"30963:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28839,"name":"uint8","nodeType":"ElementaryTypeName","src":"30963:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"30934:42:94"},"returnParameters":{"id":28844,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28843,"mutability":"mutable","name":"result","nameLocation":"31008:6:94","nodeType":"VariableDeclaration","scope":28854,"src":"31000:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28842,"name":"bytes16","nodeType":"ElementaryTypeName","src":"31000:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"30999:16:94"},"scope":30945,"src":"30913:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28871,"nodeType":"Block","src":"31341:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28863,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28858,"src":"31355:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3132","id":28864,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31364:2:94","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"src":"31355:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28869,"nodeType":"IfStatement","src":"31351:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28866,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"31375:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28867,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31375:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28868,"nodeType":"RevertStatement","src":"31368:25:94"}},{"AST":{"nativeSrc":"31428:82:94","nodeType":"YulBlock","src":"31428:82:94","statements":[{"nativeSrc":"31442:58:94","nodeType":"YulAssignment","src":"31442:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"31464:1:94","nodeType":"YulLiteral","src":"31464:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"31467:6:94","nodeType":"YulIdentifier","src":"31467:6:94"}],"functionName":{"name":"mul","nativeSrc":"31460:3:94","nodeType":"YulIdentifier","src":"31460:3:94"},"nativeSrc":"31460:14:94","nodeType":"YulFunctionCall","src":"31460:14:94"},{"name":"self","nativeSrc":"31476:4:94","nodeType":"YulIdentifier","src":"31476:4:94"}],"functionName":{"name":"shl","nativeSrc":"31456:3:94","nodeType":"YulIdentifier","src":"31456:3:94"},"nativeSrc":"31456:25:94","nodeType":"YulFunctionCall","src":"31456:25:94"},{"arguments":[{"kind":"number","nativeSrc":"31487:3:94","nodeType":"YulLiteral","src":"31487:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"31496:1:94","nodeType":"YulLiteral","src":"31496:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"31492:3:94","nodeType":"YulIdentifier","src":"31492:3:94"},"nativeSrc":"31492:6:94","nodeType":"YulFunctionCall","src":"31492:6:94"}],"functionName":{"name":"shl","nativeSrc":"31483:3:94","nodeType":"YulIdentifier","src":"31483:3:94"},"nativeSrc":"31483:16:94","nodeType":"YulFunctionCall","src":"31483:16:94"}],"functionName":{"name":"and","nativeSrc":"31452:3:94","nodeType":"YulIdentifier","src":"31452:3:94"},"nativeSrc":"31452:48:94","nodeType":"YulFunctionCall","src":"31452:48:94"},"variableNames":[{"name":"result","nativeSrc":"31442:6:94","nodeType":"YulIdentifier","src":"31442:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28858,"isOffset":false,"isSlot":false,"src":"31467:6:94","valueSize":1},{"declaration":28861,"isOffset":false,"isSlot":false,"src":"31442:6:94","valueSize":1},{"declaration":28856,"isOffset":false,"isSlot":false,"src":"31476:4:94","valueSize":1}],"flags":["memory-safe"],"id":28870,"nodeType":"InlineAssembly","src":"31403:107:94"}]},"id":28872,"implemented":true,"kind":"function","modifiers":[],"name":"extract_16_4","nameLocation":"31262:12:94","nodeType":"FunctionDefinition","parameters":{"id":28859,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28856,"mutability":"mutable","name":"self","nameLocation":"31283:4:94","nodeType":"VariableDeclaration","scope":28872,"src":"31275:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28855,"name":"bytes16","nodeType":"ElementaryTypeName","src":"31275:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":28858,"mutability":"mutable","name":"offset","nameLocation":"31295:6:94","nodeType":"VariableDeclaration","scope":28872,"src":"31289:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28857,"name":"uint8","nodeType":"ElementaryTypeName","src":"31289:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"31274:28:94"},"returnParameters":{"id":28862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28861,"mutability":"mutable","name":"result","nameLocation":"31333:6:94","nodeType":"VariableDeclaration","scope":28872,"src":"31326:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28860,"name":"bytes4","nodeType":"ElementaryTypeName","src":"31326:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"31325:15:94"},"scope":30945,"src":"31253:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28891,"nodeType":"Block","src":"31625:231:94","statements":[{"assignments":[28884],"declarations":[{"constant":false,"id":28884,"mutability":"mutable","name":"oldValue","nameLocation":"31642:8:94","nodeType":"VariableDeclaration","scope":28891,"src":"31635:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28883,"name":"bytes4","nodeType":"ElementaryTypeName","src":"31635:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":28889,"initialValue":{"arguments":[{"id":28886,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28874,"src":"31666:4:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"id":28887,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28878,"src":"31672:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28885,"name":"extract_16_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28872,"src":"31653:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes16_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes16,uint8) pure returns (bytes4)"}},"id":28888,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31653:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"31635:44:94"},{"AST":{"nativeSrc":"31714:136:94","nodeType":"YulBlock","src":"31714:136:94","statements":[{"nativeSrc":"31728:37:94","nodeType":"YulAssignment","src":"31728:37:94","value":{"arguments":[{"name":"value","nativeSrc":"31741:5:94","nodeType":"YulIdentifier","src":"31741:5:94"},{"arguments":[{"kind":"number","nativeSrc":"31752:3:94","nodeType":"YulLiteral","src":"31752:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"31761:1:94","nodeType":"YulLiteral","src":"31761:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"31757:3:94","nodeType":"YulIdentifier","src":"31757:3:94"},"nativeSrc":"31757:6:94","nodeType":"YulFunctionCall","src":"31757:6:94"}],"functionName":{"name":"shl","nativeSrc":"31748:3:94","nodeType":"YulIdentifier","src":"31748:3:94"},"nativeSrc":"31748:16:94","nodeType":"YulFunctionCall","src":"31748:16:94"}],"functionName":{"name":"and","nativeSrc":"31737:3:94","nodeType":"YulIdentifier","src":"31737:3:94"},"nativeSrc":"31737:28:94","nodeType":"YulFunctionCall","src":"31737:28:94"},"variableNames":[{"name":"value","nativeSrc":"31728:5:94","nodeType":"YulIdentifier","src":"31728:5:94"}]},{"nativeSrc":"31778:62:94","nodeType":"YulAssignment","src":"31778:62:94","value":{"arguments":[{"name":"self","nativeSrc":"31792:4:94","nodeType":"YulIdentifier","src":"31792:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"31806:1:94","nodeType":"YulLiteral","src":"31806:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"31809:6:94","nodeType":"YulIdentifier","src":"31809:6:94"}],"functionName":{"name":"mul","nativeSrc":"31802:3:94","nodeType":"YulIdentifier","src":"31802:3:94"},"nativeSrc":"31802:14:94","nodeType":"YulFunctionCall","src":"31802:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"31822:8:94","nodeType":"YulIdentifier","src":"31822:8:94"},{"name":"value","nativeSrc":"31832:5:94","nodeType":"YulIdentifier","src":"31832:5:94"}],"functionName":{"name":"xor","nativeSrc":"31818:3:94","nodeType":"YulIdentifier","src":"31818:3:94"},"nativeSrc":"31818:20:94","nodeType":"YulFunctionCall","src":"31818:20:94"}],"functionName":{"name":"shr","nativeSrc":"31798:3:94","nodeType":"YulIdentifier","src":"31798:3:94"},"nativeSrc":"31798:41:94","nodeType":"YulFunctionCall","src":"31798:41:94"}],"functionName":{"name":"xor","nativeSrc":"31788:3:94","nodeType":"YulIdentifier","src":"31788:3:94"},"nativeSrc":"31788:52:94","nodeType":"YulFunctionCall","src":"31788:52:94"},"variableNames":[{"name":"result","nativeSrc":"31778:6:94","nodeType":"YulIdentifier","src":"31778:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28878,"isOffset":false,"isSlot":false,"src":"31809:6:94","valueSize":1},{"declaration":28884,"isOffset":false,"isSlot":false,"src":"31822:8:94","valueSize":1},{"declaration":28881,"isOffset":false,"isSlot":false,"src":"31778:6:94","valueSize":1},{"declaration":28874,"isOffset":false,"isSlot":false,"src":"31792:4:94","valueSize":1},{"declaration":28876,"isOffset":false,"isSlot":false,"src":"31728:5:94","valueSize":1},{"declaration":28876,"isOffset":false,"isSlot":false,"src":"31741:5:94","valueSize":1},{"declaration":28876,"isOffset":false,"isSlot":false,"src":"31832:5:94","valueSize":1}],"flags":["memory-safe"],"id":28890,"nodeType":"InlineAssembly","src":"31689:161:94"}]},"id":28892,"implemented":true,"kind":"function","modifiers":[],"name":"replace_16_4","nameLocation":"31531:12:94","nodeType":"FunctionDefinition","parameters":{"id":28879,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28874,"mutability":"mutable","name":"self","nameLocation":"31552:4:94","nodeType":"VariableDeclaration","scope":28892,"src":"31544:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28873,"name":"bytes16","nodeType":"ElementaryTypeName","src":"31544:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":28876,"mutability":"mutable","name":"value","nameLocation":"31565:5:94","nodeType":"VariableDeclaration","scope":28892,"src":"31558:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":28875,"name":"bytes4","nodeType":"ElementaryTypeName","src":"31558:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":28878,"mutability":"mutable","name":"offset","nameLocation":"31578:6:94","nodeType":"VariableDeclaration","scope":28892,"src":"31572:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28877,"name":"uint8","nodeType":"ElementaryTypeName","src":"31572:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"31543:42:94"},"returnParameters":{"id":28882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28881,"mutability":"mutable","name":"result","nameLocation":"31617:6:94","nodeType":"VariableDeclaration","scope":28892,"src":"31609:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28880,"name":"bytes16","nodeType":"ElementaryTypeName","src":"31609:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"31608:16:94"},"scope":30945,"src":"31522:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28909,"nodeType":"Block","src":"31950:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28901,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28896,"src":"31964:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3130","id":28902,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31973:2:94","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"31964:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28907,"nodeType":"IfStatement","src":"31960:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28904,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"31984:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28905,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31984:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28906,"nodeType":"RevertStatement","src":"31977:25:94"}},{"AST":{"nativeSrc":"32037:82:94","nodeType":"YulBlock","src":"32037:82:94","statements":[{"nativeSrc":"32051:58:94","nodeType":"YulAssignment","src":"32051:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"32073:1:94","nodeType":"YulLiteral","src":"32073:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"32076:6:94","nodeType":"YulIdentifier","src":"32076:6:94"}],"functionName":{"name":"mul","nativeSrc":"32069:3:94","nodeType":"YulIdentifier","src":"32069:3:94"},"nativeSrc":"32069:14:94","nodeType":"YulFunctionCall","src":"32069:14:94"},{"name":"self","nativeSrc":"32085:4:94","nodeType":"YulIdentifier","src":"32085:4:94"}],"functionName":{"name":"shl","nativeSrc":"32065:3:94","nodeType":"YulIdentifier","src":"32065:3:94"},"nativeSrc":"32065:25:94","nodeType":"YulFunctionCall","src":"32065:25:94"},{"arguments":[{"kind":"number","nativeSrc":"32096:3:94","nodeType":"YulLiteral","src":"32096:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"32105:1:94","nodeType":"YulLiteral","src":"32105:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"32101:3:94","nodeType":"YulIdentifier","src":"32101:3:94"},"nativeSrc":"32101:6:94","nodeType":"YulFunctionCall","src":"32101:6:94"}],"functionName":{"name":"shl","nativeSrc":"32092:3:94","nodeType":"YulIdentifier","src":"32092:3:94"},"nativeSrc":"32092:16:94","nodeType":"YulFunctionCall","src":"32092:16:94"}],"functionName":{"name":"and","nativeSrc":"32061:3:94","nodeType":"YulIdentifier","src":"32061:3:94"},"nativeSrc":"32061:48:94","nodeType":"YulFunctionCall","src":"32061:48:94"},"variableNames":[{"name":"result","nativeSrc":"32051:6:94","nodeType":"YulIdentifier","src":"32051:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28896,"isOffset":false,"isSlot":false,"src":"32076:6:94","valueSize":1},{"declaration":28899,"isOffset":false,"isSlot":false,"src":"32051:6:94","valueSize":1},{"declaration":28894,"isOffset":false,"isSlot":false,"src":"32085:4:94","valueSize":1}],"flags":["memory-safe"],"id":28908,"nodeType":"InlineAssembly","src":"32012:107:94"}]},"id":28910,"implemented":true,"kind":"function","modifiers":[],"name":"extract_16_6","nameLocation":"31871:12:94","nodeType":"FunctionDefinition","parameters":{"id":28897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28894,"mutability":"mutable","name":"self","nameLocation":"31892:4:94","nodeType":"VariableDeclaration","scope":28910,"src":"31884:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28893,"name":"bytes16","nodeType":"ElementaryTypeName","src":"31884:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":28896,"mutability":"mutable","name":"offset","nameLocation":"31904:6:94","nodeType":"VariableDeclaration","scope":28910,"src":"31898:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28895,"name":"uint8","nodeType":"ElementaryTypeName","src":"31898:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"31883:28:94"},"returnParameters":{"id":28900,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28899,"mutability":"mutable","name":"result","nameLocation":"31942:6:94","nodeType":"VariableDeclaration","scope":28910,"src":"31935:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28898,"name":"bytes6","nodeType":"ElementaryTypeName","src":"31935:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"31934:15:94"},"scope":30945,"src":"31862:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28929,"nodeType":"Block","src":"32234:231:94","statements":[{"assignments":[28922],"declarations":[{"constant":false,"id":28922,"mutability":"mutable","name":"oldValue","nameLocation":"32251:8:94","nodeType":"VariableDeclaration","scope":28929,"src":"32244:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28921,"name":"bytes6","nodeType":"ElementaryTypeName","src":"32244:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":28927,"initialValue":{"arguments":[{"id":28924,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28912,"src":"32275:4:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"id":28925,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28916,"src":"32281:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28923,"name":"extract_16_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28910,"src":"32262:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes16_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes16,uint8) pure returns (bytes6)"}},"id":28926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32262:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"32244:44:94"},{"AST":{"nativeSrc":"32323:136:94","nodeType":"YulBlock","src":"32323:136:94","statements":[{"nativeSrc":"32337:37:94","nodeType":"YulAssignment","src":"32337:37:94","value":{"arguments":[{"name":"value","nativeSrc":"32350:5:94","nodeType":"YulIdentifier","src":"32350:5:94"},{"arguments":[{"kind":"number","nativeSrc":"32361:3:94","nodeType":"YulLiteral","src":"32361:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"32370:1:94","nodeType":"YulLiteral","src":"32370:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"32366:3:94","nodeType":"YulIdentifier","src":"32366:3:94"},"nativeSrc":"32366:6:94","nodeType":"YulFunctionCall","src":"32366:6:94"}],"functionName":{"name":"shl","nativeSrc":"32357:3:94","nodeType":"YulIdentifier","src":"32357:3:94"},"nativeSrc":"32357:16:94","nodeType":"YulFunctionCall","src":"32357:16:94"}],"functionName":{"name":"and","nativeSrc":"32346:3:94","nodeType":"YulIdentifier","src":"32346:3:94"},"nativeSrc":"32346:28:94","nodeType":"YulFunctionCall","src":"32346:28:94"},"variableNames":[{"name":"value","nativeSrc":"32337:5:94","nodeType":"YulIdentifier","src":"32337:5:94"}]},{"nativeSrc":"32387:62:94","nodeType":"YulAssignment","src":"32387:62:94","value":{"arguments":[{"name":"self","nativeSrc":"32401:4:94","nodeType":"YulIdentifier","src":"32401:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"32415:1:94","nodeType":"YulLiteral","src":"32415:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"32418:6:94","nodeType":"YulIdentifier","src":"32418:6:94"}],"functionName":{"name":"mul","nativeSrc":"32411:3:94","nodeType":"YulIdentifier","src":"32411:3:94"},"nativeSrc":"32411:14:94","nodeType":"YulFunctionCall","src":"32411:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"32431:8:94","nodeType":"YulIdentifier","src":"32431:8:94"},{"name":"value","nativeSrc":"32441:5:94","nodeType":"YulIdentifier","src":"32441:5:94"}],"functionName":{"name":"xor","nativeSrc":"32427:3:94","nodeType":"YulIdentifier","src":"32427:3:94"},"nativeSrc":"32427:20:94","nodeType":"YulFunctionCall","src":"32427:20:94"}],"functionName":{"name":"shr","nativeSrc":"32407:3:94","nodeType":"YulIdentifier","src":"32407:3:94"},"nativeSrc":"32407:41:94","nodeType":"YulFunctionCall","src":"32407:41:94"}],"functionName":{"name":"xor","nativeSrc":"32397:3:94","nodeType":"YulIdentifier","src":"32397:3:94"},"nativeSrc":"32397:52:94","nodeType":"YulFunctionCall","src":"32397:52:94"},"variableNames":[{"name":"result","nativeSrc":"32387:6:94","nodeType":"YulIdentifier","src":"32387:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28916,"isOffset":false,"isSlot":false,"src":"32418:6:94","valueSize":1},{"declaration":28922,"isOffset":false,"isSlot":false,"src":"32431:8:94","valueSize":1},{"declaration":28919,"isOffset":false,"isSlot":false,"src":"32387:6:94","valueSize":1},{"declaration":28912,"isOffset":false,"isSlot":false,"src":"32401:4:94","valueSize":1},{"declaration":28914,"isOffset":false,"isSlot":false,"src":"32337:5:94","valueSize":1},{"declaration":28914,"isOffset":false,"isSlot":false,"src":"32350:5:94","valueSize":1},{"declaration":28914,"isOffset":false,"isSlot":false,"src":"32441:5:94","valueSize":1}],"flags":["memory-safe"],"id":28928,"nodeType":"InlineAssembly","src":"32298:161:94"}]},"id":28930,"implemented":true,"kind":"function","modifiers":[],"name":"replace_16_6","nameLocation":"32140:12:94","nodeType":"FunctionDefinition","parameters":{"id":28917,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28912,"mutability":"mutable","name":"self","nameLocation":"32161:4:94","nodeType":"VariableDeclaration","scope":28930,"src":"32153:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28911,"name":"bytes16","nodeType":"ElementaryTypeName","src":"32153:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":28914,"mutability":"mutable","name":"value","nameLocation":"32174:5:94","nodeType":"VariableDeclaration","scope":28930,"src":"32167:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":28913,"name":"bytes6","nodeType":"ElementaryTypeName","src":"32167:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":28916,"mutability":"mutable","name":"offset","nameLocation":"32187:6:94","nodeType":"VariableDeclaration","scope":28930,"src":"32181:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28915,"name":"uint8","nodeType":"ElementaryTypeName","src":"32181:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"32152:42:94"},"returnParameters":{"id":28920,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28919,"mutability":"mutable","name":"result","nameLocation":"32226:6:94","nodeType":"VariableDeclaration","scope":28930,"src":"32218:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28918,"name":"bytes16","nodeType":"ElementaryTypeName","src":"32218:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"32217:16:94"},"scope":30945,"src":"32131:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28947,"nodeType":"Block","src":"32559:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28939,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28934,"src":"32573:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"38","id":28940,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32582:1:94","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"32573:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28945,"nodeType":"IfStatement","src":"32569:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28942,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"32592:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32592:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28944,"nodeType":"RevertStatement","src":"32585:25:94"}},{"AST":{"nativeSrc":"32645:82:94","nodeType":"YulBlock","src":"32645:82:94","statements":[{"nativeSrc":"32659:58:94","nodeType":"YulAssignment","src":"32659:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"32681:1:94","nodeType":"YulLiteral","src":"32681:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"32684:6:94","nodeType":"YulIdentifier","src":"32684:6:94"}],"functionName":{"name":"mul","nativeSrc":"32677:3:94","nodeType":"YulIdentifier","src":"32677:3:94"},"nativeSrc":"32677:14:94","nodeType":"YulFunctionCall","src":"32677:14:94"},{"name":"self","nativeSrc":"32693:4:94","nodeType":"YulIdentifier","src":"32693:4:94"}],"functionName":{"name":"shl","nativeSrc":"32673:3:94","nodeType":"YulIdentifier","src":"32673:3:94"},"nativeSrc":"32673:25:94","nodeType":"YulFunctionCall","src":"32673:25:94"},{"arguments":[{"kind":"number","nativeSrc":"32704:3:94","nodeType":"YulLiteral","src":"32704:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"32713:1:94","nodeType":"YulLiteral","src":"32713:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"32709:3:94","nodeType":"YulIdentifier","src":"32709:3:94"},"nativeSrc":"32709:6:94","nodeType":"YulFunctionCall","src":"32709:6:94"}],"functionName":{"name":"shl","nativeSrc":"32700:3:94","nodeType":"YulIdentifier","src":"32700:3:94"},"nativeSrc":"32700:16:94","nodeType":"YulFunctionCall","src":"32700:16:94"}],"functionName":{"name":"and","nativeSrc":"32669:3:94","nodeType":"YulIdentifier","src":"32669:3:94"},"nativeSrc":"32669:48:94","nodeType":"YulFunctionCall","src":"32669:48:94"},"variableNames":[{"name":"result","nativeSrc":"32659:6:94","nodeType":"YulIdentifier","src":"32659:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28934,"isOffset":false,"isSlot":false,"src":"32684:6:94","valueSize":1},{"declaration":28937,"isOffset":false,"isSlot":false,"src":"32659:6:94","valueSize":1},{"declaration":28932,"isOffset":false,"isSlot":false,"src":"32693:4:94","valueSize":1}],"flags":["memory-safe"],"id":28946,"nodeType":"InlineAssembly","src":"32620:107:94"}]},"id":28948,"implemented":true,"kind":"function","modifiers":[],"name":"extract_16_8","nameLocation":"32480:12:94","nodeType":"FunctionDefinition","parameters":{"id":28935,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28932,"mutability":"mutable","name":"self","nameLocation":"32501:4:94","nodeType":"VariableDeclaration","scope":28948,"src":"32493:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28931,"name":"bytes16","nodeType":"ElementaryTypeName","src":"32493:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":28934,"mutability":"mutable","name":"offset","nameLocation":"32513:6:94","nodeType":"VariableDeclaration","scope":28948,"src":"32507:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28933,"name":"uint8","nodeType":"ElementaryTypeName","src":"32507:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"32492:28:94"},"returnParameters":{"id":28938,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28937,"mutability":"mutable","name":"result","nameLocation":"32551:6:94","nodeType":"VariableDeclaration","scope":28948,"src":"32544:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28936,"name":"bytes8","nodeType":"ElementaryTypeName","src":"32544:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"32543:15:94"},"scope":30945,"src":"32471:262:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28967,"nodeType":"Block","src":"32842:231:94","statements":[{"assignments":[28960],"declarations":[{"constant":false,"id":28960,"mutability":"mutable","name":"oldValue","nameLocation":"32859:8:94","nodeType":"VariableDeclaration","scope":28967,"src":"32852:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28959,"name":"bytes8","nodeType":"ElementaryTypeName","src":"32852:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"id":28965,"initialValue":{"arguments":[{"id":28962,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28950,"src":"32883:4:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"id":28963,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28954,"src":"32889:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28961,"name":"extract_16_8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28948,"src":"32870:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes16_$_t_uint8_$returns$_t_bytes8_$","typeString":"function (bytes16,uint8) pure returns (bytes8)"}},"id":28964,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32870:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"VariableDeclarationStatement","src":"32852:44:94"},{"AST":{"nativeSrc":"32931:136:94","nodeType":"YulBlock","src":"32931:136:94","statements":[{"nativeSrc":"32945:37:94","nodeType":"YulAssignment","src":"32945:37:94","value":{"arguments":[{"name":"value","nativeSrc":"32958:5:94","nodeType":"YulIdentifier","src":"32958:5:94"},{"arguments":[{"kind":"number","nativeSrc":"32969:3:94","nodeType":"YulLiteral","src":"32969:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"32978:1:94","nodeType":"YulLiteral","src":"32978:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"32974:3:94","nodeType":"YulIdentifier","src":"32974:3:94"},"nativeSrc":"32974:6:94","nodeType":"YulFunctionCall","src":"32974:6:94"}],"functionName":{"name":"shl","nativeSrc":"32965:3:94","nodeType":"YulIdentifier","src":"32965:3:94"},"nativeSrc":"32965:16:94","nodeType":"YulFunctionCall","src":"32965:16:94"}],"functionName":{"name":"and","nativeSrc":"32954:3:94","nodeType":"YulIdentifier","src":"32954:3:94"},"nativeSrc":"32954:28:94","nodeType":"YulFunctionCall","src":"32954:28:94"},"variableNames":[{"name":"value","nativeSrc":"32945:5:94","nodeType":"YulIdentifier","src":"32945:5:94"}]},{"nativeSrc":"32995:62:94","nodeType":"YulAssignment","src":"32995:62:94","value":{"arguments":[{"name":"self","nativeSrc":"33009:4:94","nodeType":"YulIdentifier","src":"33009:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"33023:1:94","nodeType":"YulLiteral","src":"33023:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"33026:6:94","nodeType":"YulIdentifier","src":"33026:6:94"}],"functionName":{"name":"mul","nativeSrc":"33019:3:94","nodeType":"YulIdentifier","src":"33019:3:94"},"nativeSrc":"33019:14:94","nodeType":"YulFunctionCall","src":"33019:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"33039:8:94","nodeType":"YulIdentifier","src":"33039:8:94"},{"name":"value","nativeSrc":"33049:5:94","nodeType":"YulIdentifier","src":"33049:5:94"}],"functionName":{"name":"xor","nativeSrc":"33035:3:94","nodeType":"YulIdentifier","src":"33035:3:94"},"nativeSrc":"33035:20:94","nodeType":"YulFunctionCall","src":"33035:20:94"}],"functionName":{"name":"shr","nativeSrc":"33015:3:94","nodeType":"YulIdentifier","src":"33015:3:94"},"nativeSrc":"33015:41:94","nodeType":"YulFunctionCall","src":"33015:41:94"}],"functionName":{"name":"xor","nativeSrc":"33005:3:94","nodeType":"YulIdentifier","src":"33005:3:94"},"nativeSrc":"33005:52:94","nodeType":"YulFunctionCall","src":"33005:52:94"},"variableNames":[{"name":"result","nativeSrc":"32995:6:94","nodeType":"YulIdentifier","src":"32995:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28954,"isOffset":false,"isSlot":false,"src":"33026:6:94","valueSize":1},{"declaration":28960,"isOffset":false,"isSlot":false,"src":"33039:8:94","valueSize":1},{"declaration":28957,"isOffset":false,"isSlot":false,"src":"32995:6:94","valueSize":1},{"declaration":28950,"isOffset":false,"isSlot":false,"src":"33009:4:94","valueSize":1},{"declaration":28952,"isOffset":false,"isSlot":false,"src":"32945:5:94","valueSize":1},{"declaration":28952,"isOffset":false,"isSlot":false,"src":"32958:5:94","valueSize":1},{"declaration":28952,"isOffset":false,"isSlot":false,"src":"33049:5:94","valueSize":1}],"flags":["memory-safe"],"id":28966,"nodeType":"InlineAssembly","src":"32906:161:94"}]},"id":28968,"implemented":true,"kind":"function","modifiers":[],"name":"replace_16_8","nameLocation":"32748:12:94","nodeType":"FunctionDefinition","parameters":{"id":28955,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28950,"mutability":"mutable","name":"self","nameLocation":"32769:4:94","nodeType":"VariableDeclaration","scope":28968,"src":"32761:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28949,"name":"bytes16","nodeType":"ElementaryTypeName","src":"32761:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":28952,"mutability":"mutable","name":"value","nameLocation":"32782:5:94","nodeType":"VariableDeclaration","scope":28968,"src":"32775:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":28951,"name":"bytes8","nodeType":"ElementaryTypeName","src":"32775:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":28954,"mutability":"mutable","name":"offset","nameLocation":"32795:6:94","nodeType":"VariableDeclaration","scope":28968,"src":"32789:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28953,"name":"uint8","nodeType":"ElementaryTypeName","src":"32789:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"32760:42:94"},"returnParameters":{"id":28958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28957,"mutability":"mutable","name":"result","nameLocation":"32834:6:94","nodeType":"VariableDeclaration","scope":28968,"src":"32826:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28956,"name":"bytes16","nodeType":"ElementaryTypeName","src":"32826:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"32825:16:94"},"scope":30945,"src":"32739:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":28985,"nodeType":"Block","src":"33169:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":28979,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":28977,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28972,"src":"33183:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"36","id":28978,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33192:1:94","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"33183:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":28983,"nodeType":"IfStatement","src":"33179:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":28980,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"33202:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":28981,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33202:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":28982,"nodeType":"RevertStatement","src":"33195:25:94"}},{"AST":{"nativeSrc":"33255:82:94","nodeType":"YulBlock","src":"33255:82:94","statements":[{"nativeSrc":"33269:58:94","nodeType":"YulAssignment","src":"33269:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"33291:1:94","nodeType":"YulLiteral","src":"33291:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"33294:6:94","nodeType":"YulIdentifier","src":"33294:6:94"}],"functionName":{"name":"mul","nativeSrc":"33287:3:94","nodeType":"YulIdentifier","src":"33287:3:94"},"nativeSrc":"33287:14:94","nodeType":"YulFunctionCall","src":"33287:14:94"},{"name":"self","nativeSrc":"33303:4:94","nodeType":"YulIdentifier","src":"33303:4:94"}],"functionName":{"name":"shl","nativeSrc":"33283:3:94","nodeType":"YulIdentifier","src":"33283:3:94"},"nativeSrc":"33283:25:94","nodeType":"YulFunctionCall","src":"33283:25:94"},{"arguments":[{"kind":"number","nativeSrc":"33314:3:94","nodeType":"YulLiteral","src":"33314:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"33323:1:94","nodeType":"YulLiteral","src":"33323:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"33319:3:94","nodeType":"YulIdentifier","src":"33319:3:94"},"nativeSrc":"33319:6:94","nodeType":"YulFunctionCall","src":"33319:6:94"}],"functionName":{"name":"shl","nativeSrc":"33310:3:94","nodeType":"YulIdentifier","src":"33310:3:94"},"nativeSrc":"33310:16:94","nodeType":"YulFunctionCall","src":"33310:16:94"}],"functionName":{"name":"and","nativeSrc":"33279:3:94","nodeType":"YulIdentifier","src":"33279:3:94"},"nativeSrc":"33279:48:94","nodeType":"YulFunctionCall","src":"33279:48:94"},"variableNames":[{"name":"result","nativeSrc":"33269:6:94","nodeType":"YulIdentifier","src":"33269:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28972,"isOffset":false,"isSlot":false,"src":"33294:6:94","valueSize":1},{"declaration":28975,"isOffset":false,"isSlot":false,"src":"33269:6:94","valueSize":1},{"declaration":28970,"isOffset":false,"isSlot":false,"src":"33303:4:94","valueSize":1}],"flags":["memory-safe"],"id":28984,"nodeType":"InlineAssembly","src":"33230:107:94"}]},"id":28986,"implemented":true,"kind":"function","modifiers":[],"name":"extract_16_10","nameLocation":"33088:13:94","nodeType":"FunctionDefinition","parameters":{"id":28973,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28970,"mutability":"mutable","name":"self","nameLocation":"33110:4:94","nodeType":"VariableDeclaration","scope":28986,"src":"33102:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28969,"name":"bytes16","nodeType":"ElementaryTypeName","src":"33102:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":28972,"mutability":"mutable","name":"offset","nameLocation":"33122:6:94","nodeType":"VariableDeclaration","scope":28986,"src":"33116:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28971,"name":"uint8","nodeType":"ElementaryTypeName","src":"33116:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"33101:28:94"},"returnParameters":{"id":28976,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28975,"mutability":"mutable","name":"result","nameLocation":"33161:6:94","nodeType":"VariableDeclaration","scope":28986,"src":"33153:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28974,"name":"bytes10","nodeType":"ElementaryTypeName","src":"33153:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"33152:16:94"},"scope":30945,"src":"33079:264:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29005,"nodeType":"Block","src":"33454:233:94","statements":[{"assignments":[28998],"declarations":[{"constant":false,"id":28998,"mutability":"mutable","name":"oldValue","nameLocation":"33472:8:94","nodeType":"VariableDeclaration","scope":29005,"src":"33464:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28997,"name":"bytes10","nodeType":"ElementaryTypeName","src":"33464:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":29003,"initialValue":{"arguments":[{"id":29000,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28988,"src":"33497:4:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"id":29001,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28992,"src":"33503:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":28999,"name":"extract_16_10","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":28986,"src":"33483:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes16_$_t_uint8_$returns$_t_bytes10_$","typeString":"function (bytes16,uint8) pure returns (bytes10)"}},"id":29002,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33483:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"33464:46:94"},{"AST":{"nativeSrc":"33545:136:94","nodeType":"YulBlock","src":"33545:136:94","statements":[{"nativeSrc":"33559:37:94","nodeType":"YulAssignment","src":"33559:37:94","value":{"arguments":[{"name":"value","nativeSrc":"33572:5:94","nodeType":"YulIdentifier","src":"33572:5:94"},{"arguments":[{"kind":"number","nativeSrc":"33583:3:94","nodeType":"YulLiteral","src":"33583:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"33592:1:94","nodeType":"YulLiteral","src":"33592:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"33588:3:94","nodeType":"YulIdentifier","src":"33588:3:94"},"nativeSrc":"33588:6:94","nodeType":"YulFunctionCall","src":"33588:6:94"}],"functionName":{"name":"shl","nativeSrc":"33579:3:94","nodeType":"YulIdentifier","src":"33579:3:94"},"nativeSrc":"33579:16:94","nodeType":"YulFunctionCall","src":"33579:16:94"}],"functionName":{"name":"and","nativeSrc":"33568:3:94","nodeType":"YulIdentifier","src":"33568:3:94"},"nativeSrc":"33568:28:94","nodeType":"YulFunctionCall","src":"33568:28:94"},"variableNames":[{"name":"value","nativeSrc":"33559:5:94","nodeType":"YulIdentifier","src":"33559:5:94"}]},{"nativeSrc":"33609:62:94","nodeType":"YulAssignment","src":"33609:62:94","value":{"arguments":[{"name":"self","nativeSrc":"33623:4:94","nodeType":"YulIdentifier","src":"33623:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"33637:1:94","nodeType":"YulLiteral","src":"33637:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"33640:6:94","nodeType":"YulIdentifier","src":"33640:6:94"}],"functionName":{"name":"mul","nativeSrc":"33633:3:94","nodeType":"YulIdentifier","src":"33633:3:94"},"nativeSrc":"33633:14:94","nodeType":"YulFunctionCall","src":"33633:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"33653:8:94","nodeType":"YulIdentifier","src":"33653:8:94"},{"name":"value","nativeSrc":"33663:5:94","nodeType":"YulIdentifier","src":"33663:5:94"}],"functionName":{"name":"xor","nativeSrc":"33649:3:94","nodeType":"YulIdentifier","src":"33649:3:94"},"nativeSrc":"33649:20:94","nodeType":"YulFunctionCall","src":"33649:20:94"}],"functionName":{"name":"shr","nativeSrc":"33629:3:94","nodeType":"YulIdentifier","src":"33629:3:94"},"nativeSrc":"33629:41:94","nodeType":"YulFunctionCall","src":"33629:41:94"}],"functionName":{"name":"xor","nativeSrc":"33619:3:94","nodeType":"YulIdentifier","src":"33619:3:94"},"nativeSrc":"33619:52:94","nodeType":"YulFunctionCall","src":"33619:52:94"},"variableNames":[{"name":"result","nativeSrc":"33609:6:94","nodeType":"YulIdentifier","src":"33609:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":28992,"isOffset":false,"isSlot":false,"src":"33640:6:94","valueSize":1},{"declaration":28998,"isOffset":false,"isSlot":false,"src":"33653:8:94","valueSize":1},{"declaration":28995,"isOffset":false,"isSlot":false,"src":"33609:6:94","valueSize":1},{"declaration":28988,"isOffset":false,"isSlot":false,"src":"33623:4:94","valueSize":1},{"declaration":28990,"isOffset":false,"isSlot":false,"src":"33559:5:94","valueSize":1},{"declaration":28990,"isOffset":false,"isSlot":false,"src":"33572:5:94","valueSize":1},{"declaration":28990,"isOffset":false,"isSlot":false,"src":"33663:5:94","valueSize":1}],"flags":["memory-safe"],"id":29004,"nodeType":"InlineAssembly","src":"33520:161:94"}]},"id":29006,"implemented":true,"kind":"function","modifiers":[],"name":"replace_16_10","nameLocation":"33358:13:94","nodeType":"FunctionDefinition","parameters":{"id":28993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28988,"mutability":"mutable","name":"self","nameLocation":"33380:4:94","nodeType":"VariableDeclaration","scope":29006,"src":"33372:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28987,"name":"bytes16","nodeType":"ElementaryTypeName","src":"33372:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":28990,"mutability":"mutable","name":"value","nameLocation":"33394:5:94","nodeType":"VariableDeclaration","scope":29006,"src":"33386:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":28989,"name":"bytes10","nodeType":"ElementaryTypeName","src":"33386:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":28992,"mutability":"mutable","name":"offset","nameLocation":"33407:6:94","nodeType":"VariableDeclaration","scope":29006,"src":"33401:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":28991,"name":"uint8","nodeType":"ElementaryTypeName","src":"33401:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"33371:43:94"},"returnParameters":{"id":28996,"nodeType":"ParameterList","parameters":[{"constant":false,"id":28995,"mutability":"mutable","name":"result","nameLocation":"33446:6:94","nodeType":"VariableDeclaration","scope":29006,"src":"33438:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":28994,"name":"bytes16","nodeType":"ElementaryTypeName","src":"33438:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"33437:16:94"},"scope":30945,"src":"33349:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29023,"nodeType":"Block","src":"33783:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29015,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29010,"src":"33797:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":29016,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33806:1:94","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"33797:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29021,"nodeType":"IfStatement","src":"33793:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29018,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"33816:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29019,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33816:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29020,"nodeType":"RevertStatement","src":"33809:25:94"}},{"AST":{"nativeSrc":"33869:82:94","nodeType":"YulBlock","src":"33869:82:94","statements":[{"nativeSrc":"33883:58:94","nodeType":"YulAssignment","src":"33883:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"33905:1:94","nodeType":"YulLiteral","src":"33905:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"33908:6:94","nodeType":"YulIdentifier","src":"33908:6:94"}],"functionName":{"name":"mul","nativeSrc":"33901:3:94","nodeType":"YulIdentifier","src":"33901:3:94"},"nativeSrc":"33901:14:94","nodeType":"YulFunctionCall","src":"33901:14:94"},{"name":"self","nativeSrc":"33917:4:94","nodeType":"YulIdentifier","src":"33917:4:94"}],"functionName":{"name":"shl","nativeSrc":"33897:3:94","nodeType":"YulIdentifier","src":"33897:3:94"},"nativeSrc":"33897:25:94","nodeType":"YulFunctionCall","src":"33897:25:94"},{"arguments":[{"kind":"number","nativeSrc":"33928:3:94","nodeType":"YulLiteral","src":"33928:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"33937:1:94","nodeType":"YulLiteral","src":"33937:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"33933:3:94","nodeType":"YulIdentifier","src":"33933:3:94"},"nativeSrc":"33933:6:94","nodeType":"YulFunctionCall","src":"33933:6:94"}],"functionName":{"name":"shl","nativeSrc":"33924:3:94","nodeType":"YulIdentifier","src":"33924:3:94"},"nativeSrc":"33924:16:94","nodeType":"YulFunctionCall","src":"33924:16:94"}],"functionName":{"name":"and","nativeSrc":"33893:3:94","nodeType":"YulIdentifier","src":"33893:3:94"},"nativeSrc":"33893:48:94","nodeType":"YulFunctionCall","src":"33893:48:94"},"variableNames":[{"name":"result","nativeSrc":"33883:6:94","nodeType":"YulIdentifier","src":"33883:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29010,"isOffset":false,"isSlot":false,"src":"33908:6:94","valueSize":1},{"declaration":29013,"isOffset":false,"isSlot":false,"src":"33883:6:94","valueSize":1},{"declaration":29008,"isOffset":false,"isSlot":false,"src":"33917:4:94","valueSize":1}],"flags":["memory-safe"],"id":29022,"nodeType":"InlineAssembly","src":"33844:107:94"}]},"id":29024,"implemented":true,"kind":"function","modifiers":[],"name":"extract_16_12","nameLocation":"33702:13:94","nodeType":"FunctionDefinition","parameters":{"id":29011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29008,"mutability":"mutable","name":"self","nameLocation":"33724:4:94","nodeType":"VariableDeclaration","scope":29024,"src":"33716:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":29007,"name":"bytes16","nodeType":"ElementaryTypeName","src":"33716:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":29010,"mutability":"mutable","name":"offset","nameLocation":"33736:6:94","nodeType":"VariableDeclaration","scope":29024,"src":"33730:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29009,"name":"uint8","nodeType":"ElementaryTypeName","src":"33730:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"33715:28:94"},"returnParameters":{"id":29014,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29013,"mutability":"mutable","name":"result","nameLocation":"33775:6:94","nodeType":"VariableDeclaration","scope":29024,"src":"33767:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":29012,"name":"bytes12","nodeType":"ElementaryTypeName","src":"33767:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"33766:16:94"},"scope":30945,"src":"33693:264:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29043,"nodeType":"Block","src":"34068:233:94","statements":[{"assignments":[29036],"declarations":[{"constant":false,"id":29036,"mutability":"mutable","name":"oldValue","nameLocation":"34086:8:94","nodeType":"VariableDeclaration","scope":29043,"src":"34078:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":29035,"name":"bytes12","nodeType":"ElementaryTypeName","src":"34078:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"id":29041,"initialValue":{"arguments":[{"id":29038,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29026,"src":"34111:4:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"id":29039,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29030,"src":"34117:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29037,"name":"extract_16_12","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29024,"src":"34097:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes16_$_t_uint8_$returns$_t_bytes12_$","typeString":"function (bytes16,uint8) pure returns (bytes12)"}},"id":29040,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34097:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"nodeType":"VariableDeclarationStatement","src":"34078:46:94"},{"AST":{"nativeSrc":"34159:136:94","nodeType":"YulBlock","src":"34159:136:94","statements":[{"nativeSrc":"34173:37:94","nodeType":"YulAssignment","src":"34173:37:94","value":{"arguments":[{"name":"value","nativeSrc":"34186:5:94","nodeType":"YulIdentifier","src":"34186:5:94"},{"arguments":[{"kind":"number","nativeSrc":"34197:3:94","nodeType":"YulLiteral","src":"34197:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"34206:1:94","nodeType":"YulLiteral","src":"34206:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"34202:3:94","nodeType":"YulIdentifier","src":"34202:3:94"},"nativeSrc":"34202:6:94","nodeType":"YulFunctionCall","src":"34202:6:94"}],"functionName":{"name":"shl","nativeSrc":"34193:3:94","nodeType":"YulIdentifier","src":"34193:3:94"},"nativeSrc":"34193:16:94","nodeType":"YulFunctionCall","src":"34193:16:94"}],"functionName":{"name":"and","nativeSrc":"34182:3:94","nodeType":"YulIdentifier","src":"34182:3:94"},"nativeSrc":"34182:28:94","nodeType":"YulFunctionCall","src":"34182:28:94"},"variableNames":[{"name":"value","nativeSrc":"34173:5:94","nodeType":"YulIdentifier","src":"34173:5:94"}]},{"nativeSrc":"34223:62:94","nodeType":"YulAssignment","src":"34223:62:94","value":{"arguments":[{"name":"self","nativeSrc":"34237:4:94","nodeType":"YulIdentifier","src":"34237:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34251:1:94","nodeType":"YulLiteral","src":"34251:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"34254:6:94","nodeType":"YulIdentifier","src":"34254:6:94"}],"functionName":{"name":"mul","nativeSrc":"34247:3:94","nodeType":"YulIdentifier","src":"34247:3:94"},"nativeSrc":"34247:14:94","nodeType":"YulFunctionCall","src":"34247:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"34267:8:94","nodeType":"YulIdentifier","src":"34267:8:94"},{"name":"value","nativeSrc":"34277:5:94","nodeType":"YulIdentifier","src":"34277:5:94"}],"functionName":{"name":"xor","nativeSrc":"34263:3:94","nodeType":"YulIdentifier","src":"34263:3:94"},"nativeSrc":"34263:20:94","nodeType":"YulFunctionCall","src":"34263:20:94"}],"functionName":{"name":"shr","nativeSrc":"34243:3:94","nodeType":"YulIdentifier","src":"34243:3:94"},"nativeSrc":"34243:41:94","nodeType":"YulFunctionCall","src":"34243:41:94"}],"functionName":{"name":"xor","nativeSrc":"34233:3:94","nodeType":"YulIdentifier","src":"34233:3:94"},"nativeSrc":"34233:52:94","nodeType":"YulFunctionCall","src":"34233:52:94"},"variableNames":[{"name":"result","nativeSrc":"34223:6:94","nodeType":"YulIdentifier","src":"34223:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29030,"isOffset":false,"isSlot":false,"src":"34254:6:94","valueSize":1},{"declaration":29036,"isOffset":false,"isSlot":false,"src":"34267:8:94","valueSize":1},{"declaration":29033,"isOffset":false,"isSlot":false,"src":"34223:6:94","valueSize":1},{"declaration":29026,"isOffset":false,"isSlot":false,"src":"34237:4:94","valueSize":1},{"declaration":29028,"isOffset":false,"isSlot":false,"src":"34173:5:94","valueSize":1},{"declaration":29028,"isOffset":false,"isSlot":false,"src":"34186:5:94","valueSize":1},{"declaration":29028,"isOffset":false,"isSlot":false,"src":"34277:5:94","valueSize":1}],"flags":["memory-safe"],"id":29042,"nodeType":"InlineAssembly","src":"34134:161:94"}]},"id":29044,"implemented":true,"kind":"function","modifiers":[],"name":"replace_16_12","nameLocation":"33972:13:94","nodeType":"FunctionDefinition","parameters":{"id":29031,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29026,"mutability":"mutable","name":"self","nameLocation":"33994:4:94","nodeType":"VariableDeclaration","scope":29044,"src":"33986:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":29025,"name":"bytes16","nodeType":"ElementaryTypeName","src":"33986:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":29028,"mutability":"mutable","name":"value","nameLocation":"34008:5:94","nodeType":"VariableDeclaration","scope":29044,"src":"34000:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":29027,"name":"bytes12","nodeType":"ElementaryTypeName","src":"34000:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":29030,"mutability":"mutable","name":"offset","nameLocation":"34021:6:94","nodeType":"VariableDeclaration","scope":29044,"src":"34015:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29029,"name":"uint8","nodeType":"ElementaryTypeName","src":"34015:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"33985:43:94"},"returnParameters":{"id":29034,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29033,"mutability":"mutable","name":"result","nameLocation":"34060:6:94","nodeType":"VariableDeclaration","scope":29044,"src":"34052:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":29032,"name":"bytes16","nodeType":"ElementaryTypeName","src":"34052:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"34051:16:94"},"scope":30945,"src":"33963:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29061,"nodeType":"Block","src":"34395:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29053,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29048,"src":"34409:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3139","id":29054,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34418:2:94","typeDescriptions":{"typeIdentifier":"t_rational_19_by_1","typeString":"int_const 19"},"value":"19"},"src":"34409:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29059,"nodeType":"IfStatement","src":"34405:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29056,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"34429:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29057,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34429:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29058,"nodeType":"RevertStatement","src":"34422:25:94"}},{"AST":{"nativeSrc":"34482:82:94","nodeType":"YulBlock","src":"34482:82:94","statements":[{"nativeSrc":"34496:58:94","nodeType":"YulAssignment","src":"34496:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34518:1:94","nodeType":"YulLiteral","src":"34518:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"34521:6:94","nodeType":"YulIdentifier","src":"34521:6:94"}],"functionName":{"name":"mul","nativeSrc":"34514:3:94","nodeType":"YulIdentifier","src":"34514:3:94"},"nativeSrc":"34514:14:94","nodeType":"YulFunctionCall","src":"34514:14:94"},{"name":"self","nativeSrc":"34530:4:94","nodeType":"YulIdentifier","src":"34530:4:94"}],"functionName":{"name":"shl","nativeSrc":"34510:3:94","nodeType":"YulIdentifier","src":"34510:3:94"},"nativeSrc":"34510:25:94","nodeType":"YulFunctionCall","src":"34510:25:94"},{"arguments":[{"kind":"number","nativeSrc":"34541:3:94","nodeType":"YulLiteral","src":"34541:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"34550:1:94","nodeType":"YulLiteral","src":"34550:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"34546:3:94","nodeType":"YulIdentifier","src":"34546:3:94"},"nativeSrc":"34546:6:94","nodeType":"YulFunctionCall","src":"34546:6:94"}],"functionName":{"name":"shl","nativeSrc":"34537:3:94","nodeType":"YulIdentifier","src":"34537:3:94"},"nativeSrc":"34537:16:94","nodeType":"YulFunctionCall","src":"34537:16:94"}],"functionName":{"name":"and","nativeSrc":"34506:3:94","nodeType":"YulIdentifier","src":"34506:3:94"},"nativeSrc":"34506:48:94","nodeType":"YulFunctionCall","src":"34506:48:94"},"variableNames":[{"name":"result","nativeSrc":"34496:6:94","nodeType":"YulIdentifier","src":"34496:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29048,"isOffset":false,"isSlot":false,"src":"34521:6:94","valueSize":1},{"declaration":29051,"isOffset":false,"isSlot":false,"src":"34496:6:94","valueSize":1},{"declaration":29046,"isOffset":false,"isSlot":false,"src":"34530:4:94","valueSize":1}],"flags":["memory-safe"],"id":29060,"nodeType":"InlineAssembly","src":"34457:107:94"}]},"id":29062,"implemented":true,"kind":"function","modifiers":[],"name":"extract_20_1","nameLocation":"34316:12:94","nodeType":"FunctionDefinition","parameters":{"id":29049,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29046,"mutability":"mutable","name":"self","nameLocation":"34337:4:94","nodeType":"VariableDeclaration","scope":29062,"src":"34329:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29045,"name":"bytes20","nodeType":"ElementaryTypeName","src":"34329:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29048,"mutability":"mutable","name":"offset","nameLocation":"34349:6:94","nodeType":"VariableDeclaration","scope":29062,"src":"34343:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29047,"name":"uint8","nodeType":"ElementaryTypeName","src":"34343:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"34328:28:94"},"returnParameters":{"id":29052,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29051,"mutability":"mutable","name":"result","nameLocation":"34387:6:94","nodeType":"VariableDeclaration","scope":29062,"src":"34380:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":29050,"name":"bytes1","nodeType":"ElementaryTypeName","src":"34380:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"34379:15:94"},"scope":30945,"src":"34307:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29081,"nodeType":"Block","src":"34679:231:94","statements":[{"assignments":[29074],"declarations":[{"constant":false,"id":29074,"mutability":"mutable","name":"oldValue","nameLocation":"34696:8:94","nodeType":"VariableDeclaration","scope":29081,"src":"34689:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":29073,"name":"bytes1","nodeType":"ElementaryTypeName","src":"34689:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":29079,"initialValue":{"arguments":[{"id":29076,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29064,"src":"34720:4:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"id":29077,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29068,"src":"34726:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29075,"name":"extract_20_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29062,"src":"34707:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes20,uint8) pure returns (bytes1)"}},"id":29078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34707:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"34689:44:94"},{"AST":{"nativeSrc":"34768:136:94","nodeType":"YulBlock","src":"34768:136:94","statements":[{"nativeSrc":"34782:37:94","nodeType":"YulAssignment","src":"34782:37:94","value":{"arguments":[{"name":"value","nativeSrc":"34795:5:94","nodeType":"YulIdentifier","src":"34795:5:94"},{"arguments":[{"kind":"number","nativeSrc":"34806:3:94","nodeType":"YulLiteral","src":"34806:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"34815:1:94","nodeType":"YulLiteral","src":"34815:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"34811:3:94","nodeType":"YulIdentifier","src":"34811:3:94"},"nativeSrc":"34811:6:94","nodeType":"YulFunctionCall","src":"34811:6:94"}],"functionName":{"name":"shl","nativeSrc":"34802:3:94","nodeType":"YulIdentifier","src":"34802:3:94"},"nativeSrc":"34802:16:94","nodeType":"YulFunctionCall","src":"34802:16:94"}],"functionName":{"name":"and","nativeSrc":"34791:3:94","nodeType":"YulIdentifier","src":"34791:3:94"},"nativeSrc":"34791:28:94","nodeType":"YulFunctionCall","src":"34791:28:94"},"variableNames":[{"name":"value","nativeSrc":"34782:5:94","nodeType":"YulIdentifier","src":"34782:5:94"}]},{"nativeSrc":"34832:62:94","nodeType":"YulAssignment","src":"34832:62:94","value":{"arguments":[{"name":"self","nativeSrc":"34846:4:94","nodeType":"YulIdentifier","src":"34846:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34860:1:94","nodeType":"YulLiteral","src":"34860:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"34863:6:94","nodeType":"YulIdentifier","src":"34863:6:94"}],"functionName":{"name":"mul","nativeSrc":"34856:3:94","nodeType":"YulIdentifier","src":"34856:3:94"},"nativeSrc":"34856:14:94","nodeType":"YulFunctionCall","src":"34856:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"34876:8:94","nodeType":"YulIdentifier","src":"34876:8:94"},{"name":"value","nativeSrc":"34886:5:94","nodeType":"YulIdentifier","src":"34886:5:94"}],"functionName":{"name":"xor","nativeSrc":"34872:3:94","nodeType":"YulIdentifier","src":"34872:3:94"},"nativeSrc":"34872:20:94","nodeType":"YulFunctionCall","src":"34872:20:94"}],"functionName":{"name":"shr","nativeSrc":"34852:3:94","nodeType":"YulIdentifier","src":"34852:3:94"},"nativeSrc":"34852:41:94","nodeType":"YulFunctionCall","src":"34852:41:94"}],"functionName":{"name":"xor","nativeSrc":"34842:3:94","nodeType":"YulIdentifier","src":"34842:3:94"},"nativeSrc":"34842:52:94","nodeType":"YulFunctionCall","src":"34842:52:94"},"variableNames":[{"name":"result","nativeSrc":"34832:6:94","nodeType":"YulIdentifier","src":"34832:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29068,"isOffset":false,"isSlot":false,"src":"34863:6:94","valueSize":1},{"declaration":29074,"isOffset":false,"isSlot":false,"src":"34876:8:94","valueSize":1},{"declaration":29071,"isOffset":false,"isSlot":false,"src":"34832:6:94","valueSize":1},{"declaration":29064,"isOffset":false,"isSlot":false,"src":"34846:4:94","valueSize":1},{"declaration":29066,"isOffset":false,"isSlot":false,"src":"34782:5:94","valueSize":1},{"declaration":29066,"isOffset":false,"isSlot":false,"src":"34795:5:94","valueSize":1},{"declaration":29066,"isOffset":false,"isSlot":false,"src":"34886:5:94","valueSize":1}],"flags":["memory-safe"],"id":29080,"nodeType":"InlineAssembly","src":"34743:161:94"}]},"id":29082,"implemented":true,"kind":"function","modifiers":[],"name":"replace_20_1","nameLocation":"34585:12:94","nodeType":"FunctionDefinition","parameters":{"id":29069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29064,"mutability":"mutable","name":"self","nameLocation":"34606:4:94","nodeType":"VariableDeclaration","scope":29082,"src":"34598:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29063,"name":"bytes20","nodeType":"ElementaryTypeName","src":"34598:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29066,"mutability":"mutable","name":"value","nameLocation":"34619:5:94","nodeType":"VariableDeclaration","scope":29082,"src":"34612:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":29065,"name":"bytes1","nodeType":"ElementaryTypeName","src":"34612:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":29068,"mutability":"mutable","name":"offset","nameLocation":"34632:6:94","nodeType":"VariableDeclaration","scope":29082,"src":"34626:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29067,"name":"uint8","nodeType":"ElementaryTypeName","src":"34626:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"34597:42:94"},"returnParameters":{"id":29072,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29071,"mutability":"mutable","name":"result","nameLocation":"34671:6:94","nodeType":"VariableDeclaration","scope":29082,"src":"34663:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29070,"name":"bytes20","nodeType":"ElementaryTypeName","src":"34663:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"34662:16:94"},"scope":30945,"src":"34576:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29099,"nodeType":"Block","src":"35004:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29091,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29086,"src":"35018:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3138","id":29092,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"35027:2:94","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"src":"35018:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29097,"nodeType":"IfStatement","src":"35014:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29094,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"35038:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35038:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29096,"nodeType":"RevertStatement","src":"35031:25:94"}},{"AST":{"nativeSrc":"35091:82:94","nodeType":"YulBlock","src":"35091:82:94","statements":[{"nativeSrc":"35105:58:94","nodeType":"YulAssignment","src":"35105:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35127:1:94","nodeType":"YulLiteral","src":"35127:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"35130:6:94","nodeType":"YulIdentifier","src":"35130:6:94"}],"functionName":{"name":"mul","nativeSrc":"35123:3:94","nodeType":"YulIdentifier","src":"35123:3:94"},"nativeSrc":"35123:14:94","nodeType":"YulFunctionCall","src":"35123:14:94"},{"name":"self","nativeSrc":"35139:4:94","nodeType":"YulIdentifier","src":"35139:4:94"}],"functionName":{"name":"shl","nativeSrc":"35119:3:94","nodeType":"YulIdentifier","src":"35119:3:94"},"nativeSrc":"35119:25:94","nodeType":"YulFunctionCall","src":"35119:25:94"},{"arguments":[{"kind":"number","nativeSrc":"35150:3:94","nodeType":"YulLiteral","src":"35150:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"35159:1:94","nodeType":"YulLiteral","src":"35159:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"35155:3:94","nodeType":"YulIdentifier","src":"35155:3:94"},"nativeSrc":"35155:6:94","nodeType":"YulFunctionCall","src":"35155:6:94"}],"functionName":{"name":"shl","nativeSrc":"35146:3:94","nodeType":"YulIdentifier","src":"35146:3:94"},"nativeSrc":"35146:16:94","nodeType":"YulFunctionCall","src":"35146:16:94"}],"functionName":{"name":"and","nativeSrc":"35115:3:94","nodeType":"YulIdentifier","src":"35115:3:94"},"nativeSrc":"35115:48:94","nodeType":"YulFunctionCall","src":"35115:48:94"},"variableNames":[{"name":"result","nativeSrc":"35105:6:94","nodeType":"YulIdentifier","src":"35105:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29086,"isOffset":false,"isSlot":false,"src":"35130:6:94","valueSize":1},{"declaration":29089,"isOffset":false,"isSlot":false,"src":"35105:6:94","valueSize":1},{"declaration":29084,"isOffset":false,"isSlot":false,"src":"35139:4:94","valueSize":1}],"flags":["memory-safe"],"id":29098,"nodeType":"InlineAssembly","src":"35066:107:94"}]},"id":29100,"implemented":true,"kind":"function","modifiers":[],"name":"extract_20_2","nameLocation":"34925:12:94","nodeType":"FunctionDefinition","parameters":{"id":29087,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29084,"mutability":"mutable","name":"self","nameLocation":"34946:4:94","nodeType":"VariableDeclaration","scope":29100,"src":"34938:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29083,"name":"bytes20","nodeType":"ElementaryTypeName","src":"34938:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29086,"mutability":"mutable","name":"offset","nameLocation":"34958:6:94","nodeType":"VariableDeclaration","scope":29100,"src":"34952:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29085,"name":"uint8","nodeType":"ElementaryTypeName","src":"34952:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"34937:28:94"},"returnParameters":{"id":29090,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29089,"mutability":"mutable","name":"result","nameLocation":"34996:6:94","nodeType":"VariableDeclaration","scope":29100,"src":"34989:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":29088,"name":"bytes2","nodeType":"ElementaryTypeName","src":"34989:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"34988:15:94"},"scope":30945,"src":"34916:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29119,"nodeType":"Block","src":"35288:231:94","statements":[{"assignments":[29112],"declarations":[{"constant":false,"id":29112,"mutability":"mutable","name":"oldValue","nameLocation":"35305:8:94","nodeType":"VariableDeclaration","scope":29119,"src":"35298:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":29111,"name":"bytes2","nodeType":"ElementaryTypeName","src":"35298:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":29117,"initialValue":{"arguments":[{"id":29114,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29102,"src":"35329:4:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"id":29115,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29106,"src":"35335:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29113,"name":"extract_20_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29100,"src":"35316:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes20,uint8) pure returns (bytes2)"}},"id":29116,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35316:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"35298:44:94"},{"AST":{"nativeSrc":"35377:136:94","nodeType":"YulBlock","src":"35377:136:94","statements":[{"nativeSrc":"35391:37:94","nodeType":"YulAssignment","src":"35391:37:94","value":{"arguments":[{"name":"value","nativeSrc":"35404:5:94","nodeType":"YulIdentifier","src":"35404:5:94"},{"arguments":[{"kind":"number","nativeSrc":"35415:3:94","nodeType":"YulLiteral","src":"35415:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"35424:1:94","nodeType":"YulLiteral","src":"35424:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"35420:3:94","nodeType":"YulIdentifier","src":"35420:3:94"},"nativeSrc":"35420:6:94","nodeType":"YulFunctionCall","src":"35420:6:94"}],"functionName":{"name":"shl","nativeSrc":"35411:3:94","nodeType":"YulIdentifier","src":"35411:3:94"},"nativeSrc":"35411:16:94","nodeType":"YulFunctionCall","src":"35411:16:94"}],"functionName":{"name":"and","nativeSrc":"35400:3:94","nodeType":"YulIdentifier","src":"35400:3:94"},"nativeSrc":"35400:28:94","nodeType":"YulFunctionCall","src":"35400:28:94"},"variableNames":[{"name":"value","nativeSrc":"35391:5:94","nodeType":"YulIdentifier","src":"35391:5:94"}]},{"nativeSrc":"35441:62:94","nodeType":"YulAssignment","src":"35441:62:94","value":{"arguments":[{"name":"self","nativeSrc":"35455:4:94","nodeType":"YulIdentifier","src":"35455:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35469:1:94","nodeType":"YulLiteral","src":"35469:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"35472:6:94","nodeType":"YulIdentifier","src":"35472:6:94"}],"functionName":{"name":"mul","nativeSrc":"35465:3:94","nodeType":"YulIdentifier","src":"35465:3:94"},"nativeSrc":"35465:14:94","nodeType":"YulFunctionCall","src":"35465:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"35485:8:94","nodeType":"YulIdentifier","src":"35485:8:94"},{"name":"value","nativeSrc":"35495:5:94","nodeType":"YulIdentifier","src":"35495:5:94"}],"functionName":{"name":"xor","nativeSrc":"35481:3:94","nodeType":"YulIdentifier","src":"35481:3:94"},"nativeSrc":"35481:20:94","nodeType":"YulFunctionCall","src":"35481:20:94"}],"functionName":{"name":"shr","nativeSrc":"35461:3:94","nodeType":"YulIdentifier","src":"35461:3:94"},"nativeSrc":"35461:41:94","nodeType":"YulFunctionCall","src":"35461:41:94"}],"functionName":{"name":"xor","nativeSrc":"35451:3:94","nodeType":"YulIdentifier","src":"35451:3:94"},"nativeSrc":"35451:52:94","nodeType":"YulFunctionCall","src":"35451:52:94"},"variableNames":[{"name":"result","nativeSrc":"35441:6:94","nodeType":"YulIdentifier","src":"35441:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29106,"isOffset":false,"isSlot":false,"src":"35472:6:94","valueSize":1},{"declaration":29112,"isOffset":false,"isSlot":false,"src":"35485:8:94","valueSize":1},{"declaration":29109,"isOffset":false,"isSlot":false,"src":"35441:6:94","valueSize":1},{"declaration":29102,"isOffset":false,"isSlot":false,"src":"35455:4:94","valueSize":1},{"declaration":29104,"isOffset":false,"isSlot":false,"src":"35391:5:94","valueSize":1},{"declaration":29104,"isOffset":false,"isSlot":false,"src":"35404:5:94","valueSize":1},{"declaration":29104,"isOffset":false,"isSlot":false,"src":"35495:5:94","valueSize":1}],"flags":["memory-safe"],"id":29118,"nodeType":"InlineAssembly","src":"35352:161:94"}]},"id":29120,"implemented":true,"kind":"function","modifiers":[],"name":"replace_20_2","nameLocation":"35194:12:94","nodeType":"FunctionDefinition","parameters":{"id":29107,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29102,"mutability":"mutable","name":"self","nameLocation":"35215:4:94","nodeType":"VariableDeclaration","scope":29120,"src":"35207:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29101,"name":"bytes20","nodeType":"ElementaryTypeName","src":"35207:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29104,"mutability":"mutable","name":"value","nameLocation":"35228:5:94","nodeType":"VariableDeclaration","scope":29120,"src":"35221:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":29103,"name":"bytes2","nodeType":"ElementaryTypeName","src":"35221:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":29106,"mutability":"mutable","name":"offset","nameLocation":"35241:6:94","nodeType":"VariableDeclaration","scope":29120,"src":"35235:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29105,"name":"uint8","nodeType":"ElementaryTypeName","src":"35235:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"35206:42:94"},"returnParameters":{"id":29110,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29109,"mutability":"mutable","name":"result","nameLocation":"35280:6:94","nodeType":"VariableDeclaration","scope":29120,"src":"35272:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29108,"name":"bytes20","nodeType":"ElementaryTypeName","src":"35272:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"35271:16:94"},"scope":30945,"src":"35185:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29137,"nodeType":"Block","src":"35613:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29129,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29124,"src":"35627:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3136","id":29130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"35636:2:94","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"35627:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29135,"nodeType":"IfStatement","src":"35623:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29132,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"35647:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29133,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35647:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29134,"nodeType":"RevertStatement","src":"35640:25:94"}},{"AST":{"nativeSrc":"35700:82:94","nodeType":"YulBlock","src":"35700:82:94","statements":[{"nativeSrc":"35714:58:94","nodeType":"YulAssignment","src":"35714:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35736:1:94","nodeType":"YulLiteral","src":"35736:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"35739:6:94","nodeType":"YulIdentifier","src":"35739:6:94"}],"functionName":{"name":"mul","nativeSrc":"35732:3:94","nodeType":"YulIdentifier","src":"35732:3:94"},"nativeSrc":"35732:14:94","nodeType":"YulFunctionCall","src":"35732:14:94"},{"name":"self","nativeSrc":"35748:4:94","nodeType":"YulIdentifier","src":"35748:4:94"}],"functionName":{"name":"shl","nativeSrc":"35728:3:94","nodeType":"YulIdentifier","src":"35728:3:94"},"nativeSrc":"35728:25:94","nodeType":"YulFunctionCall","src":"35728:25:94"},{"arguments":[{"kind":"number","nativeSrc":"35759:3:94","nodeType":"YulLiteral","src":"35759:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"35768:1:94","nodeType":"YulLiteral","src":"35768:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"35764:3:94","nodeType":"YulIdentifier","src":"35764:3:94"},"nativeSrc":"35764:6:94","nodeType":"YulFunctionCall","src":"35764:6:94"}],"functionName":{"name":"shl","nativeSrc":"35755:3:94","nodeType":"YulIdentifier","src":"35755:3:94"},"nativeSrc":"35755:16:94","nodeType":"YulFunctionCall","src":"35755:16:94"}],"functionName":{"name":"and","nativeSrc":"35724:3:94","nodeType":"YulIdentifier","src":"35724:3:94"},"nativeSrc":"35724:48:94","nodeType":"YulFunctionCall","src":"35724:48:94"},"variableNames":[{"name":"result","nativeSrc":"35714:6:94","nodeType":"YulIdentifier","src":"35714:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29124,"isOffset":false,"isSlot":false,"src":"35739:6:94","valueSize":1},{"declaration":29127,"isOffset":false,"isSlot":false,"src":"35714:6:94","valueSize":1},{"declaration":29122,"isOffset":false,"isSlot":false,"src":"35748:4:94","valueSize":1}],"flags":["memory-safe"],"id":29136,"nodeType":"InlineAssembly","src":"35675:107:94"}]},"id":29138,"implemented":true,"kind":"function","modifiers":[],"name":"extract_20_4","nameLocation":"35534:12:94","nodeType":"FunctionDefinition","parameters":{"id":29125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29122,"mutability":"mutable","name":"self","nameLocation":"35555:4:94","nodeType":"VariableDeclaration","scope":29138,"src":"35547:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29121,"name":"bytes20","nodeType":"ElementaryTypeName","src":"35547:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29124,"mutability":"mutable","name":"offset","nameLocation":"35567:6:94","nodeType":"VariableDeclaration","scope":29138,"src":"35561:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29123,"name":"uint8","nodeType":"ElementaryTypeName","src":"35561:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"35546:28:94"},"returnParameters":{"id":29128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29127,"mutability":"mutable","name":"result","nameLocation":"35605:6:94","nodeType":"VariableDeclaration","scope":29138,"src":"35598:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29126,"name":"bytes4","nodeType":"ElementaryTypeName","src":"35598:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"35597:15:94"},"scope":30945,"src":"35525:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29157,"nodeType":"Block","src":"35897:231:94","statements":[{"assignments":[29150],"declarations":[{"constant":false,"id":29150,"mutability":"mutable","name":"oldValue","nameLocation":"35914:8:94","nodeType":"VariableDeclaration","scope":29157,"src":"35907:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29149,"name":"bytes4","nodeType":"ElementaryTypeName","src":"35907:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":29155,"initialValue":{"arguments":[{"id":29152,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29140,"src":"35938:4:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"id":29153,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29144,"src":"35944:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29151,"name":"extract_20_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29138,"src":"35925:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes20,uint8) pure returns (bytes4)"}},"id":29154,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35925:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"35907:44:94"},{"AST":{"nativeSrc":"35986:136:94","nodeType":"YulBlock","src":"35986:136:94","statements":[{"nativeSrc":"36000:37:94","nodeType":"YulAssignment","src":"36000:37:94","value":{"arguments":[{"name":"value","nativeSrc":"36013:5:94","nodeType":"YulIdentifier","src":"36013:5:94"},{"arguments":[{"kind":"number","nativeSrc":"36024:3:94","nodeType":"YulLiteral","src":"36024:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"36033:1:94","nodeType":"YulLiteral","src":"36033:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"36029:3:94","nodeType":"YulIdentifier","src":"36029:3:94"},"nativeSrc":"36029:6:94","nodeType":"YulFunctionCall","src":"36029:6:94"}],"functionName":{"name":"shl","nativeSrc":"36020:3:94","nodeType":"YulIdentifier","src":"36020:3:94"},"nativeSrc":"36020:16:94","nodeType":"YulFunctionCall","src":"36020:16:94"}],"functionName":{"name":"and","nativeSrc":"36009:3:94","nodeType":"YulIdentifier","src":"36009:3:94"},"nativeSrc":"36009:28:94","nodeType":"YulFunctionCall","src":"36009:28:94"},"variableNames":[{"name":"value","nativeSrc":"36000:5:94","nodeType":"YulIdentifier","src":"36000:5:94"}]},{"nativeSrc":"36050:62:94","nodeType":"YulAssignment","src":"36050:62:94","value":{"arguments":[{"name":"self","nativeSrc":"36064:4:94","nodeType":"YulIdentifier","src":"36064:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36078:1:94","nodeType":"YulLiteral","src":"36078:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"36081:6:94","nodeType":"YulIdentifier","src":"36081:6:94"}],"functionName":{"name":"mul","nativeSrc":"36074:3:94","nodeType":"YulIdentifier","src":"36074:3:94"},"nativeSrc":"36074:14:94","nodeType":"YulFunctionCall","src":"36074:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"36094:8:94","nodeType":"YulIdentifier","src":"36094:8:94"},{"name":"value","nativeSrc":"36104:5:94","nodeType":"YulIdentifier","src":"36104:5:94"}],"functionName":{"name":"xor","nativeSrc":"36090:3:94","nodeType":"YulIdentifier","src":"36090:3:94"},"nativeSrc":"36090:20:94","nodeType":"YulFunctionCall","src":"36090:20:94"}],"functionName":{"name":"shr","nativeSrc":"36070:3:94","nodeType":"YulIdentifier","src":"36070:3:94"},"nativeSrc":"36070:41:94","nodeType":"YulFunctionCall","src":"36070:41:94"}],"functionName":{"name":"xor","nativeSrc":"36060:3:94","nodeType":"YulIdentifier","src":"36060:3:94"},"nativeSrc":"36060:52:94","nodeType":"YulFunctionCall","src":"36060:52:94"},"variableNames":[{"name":"result","nativeSrc":"36050:6:94","nodeType":"YulIdentifier","src":"36050:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29144,"isOffset":false,"isSlot":false,"src":"36081:6:94","valueSize":1},{"declaration":29150,"isOffset":false,"isSlot":false,"src":"36094:8:94","valueSize":1},{"declaration":29147,"isOffset":false,"isSlot":false,"src":"36050:6:94","valueSize":1},{"declaration":29140,"isOffset":false,"isSlot":false,"src":"36064:4:94","valueSize":1},{"declaration":29142,"isOffset":false,"isSlot":false,"src":"36000:5:94","valueSize":1},{"declaration":29142,"isOffset":false,"isSlot":false,"src":"36013:5:94","valueSize":1},{"declaration":29142,"isOffset":false,"isSlot":false,"src":"36104:5:94","valueSize":1}],"flags":["memory-safe"],"id":29156,"nodeType":"InlineAssembly","src":"35961:161:94"}]},"id":29158,"implemented":true,"kind":"function","modifiers":[],"name":"replace_20_4","nameLocation":"35803:12:94","nodeType":"FunctionDefinition","parameters":{"id":29145,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29140,"mutability":"mutable","name":"self","nameLocation":"35824:4:94","nodeType":"VariableDeclaration","scope":29158,"src":"35816:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29139,"name":"bytes20","nodeType":"ElementaryTypeName","src":"35816:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29142,"mutability":"mutable","name":"value","nameLocation":"35837:5:94","nodeType":"VariableDeclaration","scope":29158,"src":"35830:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29141,"name":"bytes4","nodeType":"ElementaryTypeName","src":"35830:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":29144,"mutability":"mutable","name":"offset","nameLocation":"35850:6:94","nodeType":"VariableDeclaration","scope":29158,"src":"35844:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29143,"name":"uint8","nodeType":"ElementaryTypeName","src":"35844:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"35815:42:94"},"returnParameters":{"id":29148,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29147,"mutability":"mutable","name":"result","nameLocation":"35889:6:94","nodeType":"VariableDeclaration","scope":29158,"src":"35881:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29146,"name":"bytes20","nodeType":"ElementaryTypeName","src":"35881:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"35880:16:94"},"scope":30945,"src":"35794:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29175,"nodeType":"Block","src":"36222:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29169,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29167,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29162,"src":"36236:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3134","id":29168,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"36245:2:94","typeDescriptions":{"typeIdentifier":"t_rational_14_by_1","typeString":"int_const 14"},"value":"14"},"src":"36236:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29173,"nodeType":"IfStatement","src":"36232:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29170,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"36256:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29171,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36256:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29172,"nodeType":"RevertStatement","src":"36249:25:94"}},{"AST":{"nativeSrc":"36309:82:94","nodeType":"YulBlock","src":"36309:82:94","statements":[{"nativeSrc":"36323:58:94","nodeType":"YulAssignment","src":"36323:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36345:1:94","nodeType":"YulLiteral","src":"36345:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"36348:6:94","nodeType":"YulIdentifier","src":"36348:6:94"}],"functionName":{"name":"mul","nativeSrc":"36341:3:94","nodeType":"YulIdentifier","src":"36341:3:94"},"nativeSrc":"36341:14:94","nodeType":"YulFunctionCall","src":"36341:14:94"},{"name":"self","nativeSrc":"36357:4:94","nodeType":"YulIdentifier","src":"36357:4:94"}],"functionName":{"name":"shl","nativeSrc":"36337:3:94","nodeType":"YulIdentifier","src":"36337:3:94"},"nativeSrc":"36337:25:94","nodeType":"YulFunctionCall","src":"36337:25:94"},{"arguments":[{"kind":"number","nativeSrc":"36368:3:94","nodeType":"YulLiteral","src":"36368:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"36377:1:94","nodeType":"YulLiteral","src":"36377:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"36373:3:94","nodeType":"YulIdentifier","src":"36373:3:94"},"nativeSrc":"36373:6:94","nodeType":"YulFunctionCall","src":"36373:6:94"}],"functionName":{"name":"shl","nativeSrc":"36364:3:94","nodeType":"YulIdentifier","src":"36364:3:94"},"nativeSrc":"36364:16:94","nodeType":"YulFunctionCall","src":"36364:16:94"}],"functionName":{"name":"and","nativeSrc":"36333:3:94","nodeType":"YulIdentifier","src":"36333:3:94"},"nativeSrc":"36333:48:94","nodeType":"YulFunctionCall","src":"36333:48:94"},"variableNames":[{"name":"result","nativeSrc":"36323:6:94","nodeType":"YulIdentifier","src":"36323:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29162,"isOffset":false,"isSlot":false,"src":"36348:6:94","valueSize":1},{"declaration":29165,"isOffset":false,"isSlot":false,"src":"36323:6:94","valueSize":1},{"declaration":29160,"isOffset":false,"isSlot":false,"src":"36357:4:94","valueSize":1}],"flags":["memory-safe"],"id":29174,"nodeType":"InlineAssembly","src":"36284:107:94"}]},"id":29176,"implemented":true,"kind":"function","modifiers":[],"name":"extract_20_6","nameLocation":"36143:12:94","nodeType":"FunctionDefinition","parameters":{"id":29163,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29160,"mutability":"mutable","name":"self","nameLocation":"36164:4:94","nodeType":"VariableDeclaration","scope":29176,"src":"36156:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29159,"name":"bytes20","nodeType":"ElementaryTypeName","src":"36156:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29162,"mutability":"mutable","name":"offset","nameLocation":"36176:6:94","nodeType":"VariableDeclaration","scope":29176,"src":"36170:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29161,"name":"uint8","nodeType":"ElementaryTypeName","src":"36170:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"36155:28:94"},"returnParameters":{"id":29166,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29165,"mutability":"mutable","name":"result","nameLocation":"36214:6:94","nodeType":"VariableDeclaration","scope":29176,"src":"36207:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":29164,"name":"bytes6","nodeType":"ElementaryTypeName","src":"36207:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"36206:15:94"},"scope":30945,"src":"36134:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29195,"nodeType":"Block","src":"36506:231:94","statements":[{"assignments":[29188],"declarations":[{"constant":false,"id":29188,"mutability":"mutable","name":"oldValue","nameLocation":"36523:8:94","nodeType":"VariableDeclaration","scope":29195,"src":"36516:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":29187,"name":"bytes6","nodeType":"ElementaryTypeName","src":"36516:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":29193,"initialValue":{"arguments":[{"id":29190,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29178,"src":"36547:4:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"id":29191,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29182,"src":"36553:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29189,"name":"extract_20_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29176,"src":"36534:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes20,uint8) pure returns (bytes6)"}},"id":29192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36534:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"36516:44:94"},{"AST":{"nativeSrc":"36595:136:94","nodeType":"YulBlock","src":"36595:136:94","statements":[{"nativeSrc":"36609:37:94","nodeType":"YulAssignment","src":"36609:37:94","value":{"arguments":[{"name":"value","nativeSrc":"36622:5:94","nodeType":"YulIdentifier","src":"36622:5:94"},{"arguments":[{"kind":"number","nativeSrc":"36633:3:94","nodeType":"YulLiteral","src":"36633:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"36642:1:94","nodeType":"YulLiteral","src":"36642:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"36638:3:94","nodeType":"YulIdentifier","src":"36638:3:94"},"nativeSrc":"36638:6:94","nodeType":"YulFunctionCall","src":"36638:6:94"}],"functionName":{"name":"shl","nativeSrc":"36629:3:94","nodeType":"YulIdentifier","src":"36629:3:94"},"nativeSrc":"36629:16:94","nodeType":"YulFunctionCall","src":"36629:16:94"}],"functionName":{"name":"and","nativeSrc":"36618:3:94","nodeType":"YulIdentifier","src":"36618:3:94"},"nativeSrc":"36618:28:94","nodeType":"YulFunctionCall","src":"36618:28:94"},"variableNames":[{"name":"value","nativeSrc":"36609:5:94","nodeType":"YulIdentifier","src":"36609:5:94"}]},{"nativeSrc":"36659:62:94","nodeType":"YulAssignment","src":"36659:62:94","value":{"arguments":[{"name":"self","nativeSrc":"36673:4:94","nodeType":"YulIdentifier","src":"36673:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36687:1:94","nodeType":"YulLiteral","src":"36687:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"36690:6:94","nodeType":"YulIdentifier","src":"36690:6:94"}],"functionName":{"name":"mul","nativeSrc":"36683:3:94","nodeType":"YulIdentifier","src":"36683:3:94"},"nativeSrc":"36683:14:94","nodeType":"YulFunctionCall","src":"36683:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"36703:8:94","nodeType":"YulIdentifier","src":"36703:8:94"},{"name":"value","nativeSrc":"36713:5:94","nodeType":"YulIdentifier","src":"36713:5:94"}],"functionName":{"name":"xor","nativeSrc":"36699:3:94","nodeType":"YulIdentifier","src":"36699:3:94"},"nativeSrc":"36699:20:94","nodeType":"YulFunctionCall","src":"36699:20:94"}],"functionName":{"name":"shr","nativeSrc":"36679:3:94","nodeType":"YulIdentifier","src":"36679:3:94"},"nativeSrc":"36679:41:94","nodeType":"YulFunctionCall","src":"36679:41:94"}],"functionName":{"name":"xor","nativeSrc":"36669:3:94","nodeType":"YulIdentifier","src":"36669:3:94"},"nativeSrc":"36669:52:94","nodeType":"YulFunctionCall","src":"36669:52:94"},"variableNames":[{"name":"result","nativeSrc":"36659:6:94","nodeType":"YulIdentifier","src":"36659:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29182,"isOffset":false,"isSlot":false,"src":"36690:6:94","valueSize":1},{"declaration":29188,"isOffset":false,"isSlot":false,"src":"36703:8:94","valueSize":1},{"declaration":29185,"isOffset":false,"isSlot":false,"src":"36659:6:94","valueSize":1},{"declaration":29178,"isOffset":false,"isSlot":false,"src":"36673:4:94","valueSize":1},{"declaration":29180,"isOffset":false,"isSlot":false,"src":"36609:5:94","valueSize":1},{"declaration":29180,"isOffset":false,"isSlot":false,"src":"36622:5:94","valueSize":1},{"declaration":29180,"isOffset":false,"isSlot":false,"src":"36713:5:94","valueSize":1}],"flags":["memory-safe"],"id":29194,"nodeType":"InlineAssembly","src":"36570:161:94"}]},"id":29196,"implemented":true,"kind":"function","modifiers":[],"name":"replace_20_6","nameLocation":"36412:12:94","nodeType":"FunctionDefinition","parameters":{"id":29183,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29178,"mutability":"mutable","name":"self","nameLocation":"36433:4:94","nodeType":"VariableDeclaration","scope":29196,"src":"36425:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29177,"name":"bytes20","nodeType":"ElementaryTypeName","src":"36425:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29180,"mutability":"mutable","name":"value","nameLocation":"36446:5:94","nodeType":"VariableDeclaration","scope":29196,"src":"36439:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":29179,"name":"bytes6","nodeType":"ElementaryTypeName","src":"36439:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":29182,"mutability":"mutable","name":"offset","nameLocation":"36459:6:94","nodeType":"VariableDeclaration","scope":29196,"src":"36453:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29181,"name":"uint8","nodeType":"ElementaryTypeName","src":"36453:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"36424:42:94"},"returnParameters":{"id":29186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29185,"mutability":"mutable","name":"result","nameLocation":"36498:6:94","nodeType":"VariableDeclaration","scope":29196,"src":"36490:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29184,"name":"bytes20","nodeType":"ElementaryTypeName","src":"36490:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"36489:16:94"},"scope":30945,"src":"36403:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29213,"nodeType":"Block","src":"36831:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29205,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29200,"src":"36845:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3132","id":29206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"36854:2:94","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"src":"36845:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29211,"nodeType":"IfStatement","src":"36841:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29208,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"36865:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29209,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36865:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29210,"nodeType":"RevertStatement","src":"36858:25:94"}},{"AST":{"nativeSrc":"36918:82:94","nodeType":"YulBlock","src":"36918:82:94","statements":[{"nativeSrc":"36932:58:94","nodeType":"YulAssignment","src":"36932:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36954:1:94","nodeType":"YulLiteral","src":"36954:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"36957:6:94","nodeType":"YulIdentifier","src":"36957:6:94"}],"functionName":{"name":"mul","nativeSrc":"36950:3:94","nodeType":"YulIdentifier","src":"36950:3:94"},"nativeSrc":"36950:14:94","nodeType":"YulFunctionCall","src":"36950:14:94"},{"name":"self","nativeSrc":"36966:4:94","nodeType":"YulIdentifier","src":"36966:4:94"}],"functionName":{"name":"shl","nativeSrc":"36946:3:94","nodeType":"YulIdentifier","src":"36946:3:94"},"nativeSrc":"36946:25:94","nodeType":"YulFunctionCall","src":"36946:25:94"},{"arguments":[{"kind":"number","nativeSrc":"36977:3:94","nodeType":"YulLiteral","src":"36977:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"36986:1:94","nodeType":"YulLiteral","src":"36986:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"36982:3:94","nodeType":"YulIdentifier","src":"36982:3:94"},"nativeSrc":"36982:6:94","nodeType":"YulFunctionCall","src":"36982:6:94"}],"functionName":{"name":"shl","nativeSrc":"36973:3:94","nodeType":"YulIdentifier","src":"36973:3:94"},"nativeSrc":"36973:16:94","nodeType":"YulFunctionCall","src":"36973:16:94"}],"functionName":{"name":"and","nativeSrc":"36942:3:94","nodeType":"YulIdentifier","src":"36942:3:94"},"nativeSrc":"36942:48:94","nodeType":"YulFunctionCall","src":"36942:48:94"},"variableNames":[{"name":"result","nativeSrc":"36932:6:94","nodeType":"YulIdentifier","src":"36932:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29200,"isOffset":false,"isSlot":false,"src":"36957:6:94","valueSize":1},{"declaration":29203,"isOffset":false,"isSlot":false,"src":"36932:6:94","valueSize":1},{"declaration":29198,"isOffset":false,"isSlot":false,"src":"36966:4:94","valueSize":1}],"flags":["memory-safe"],"id":29212,"nodeType":"InlineAssembly","src":"36893:107:94"}]},"id":29214,"implemented":true,"kind":"function","modifiers":[],"name":"extract_20_8","nameLocation":"36752:12:94","nodeType":"FunctionDefinition","parameters":{"id":29201,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29198,"mutability":"mutable","name":"self","nameLocation":"36773:4:94","nodeType":"VariableDeclaration","scope":29214,"src":"36765:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29197,"name":"bytes20","nodeType":"ElementaryTypeName","src":"36765:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29200,"mutability":"mutable","name":"offset","nameLocation":"36785:6:94","nodeType":"VariableDeclaration","scope":29214,"src":"36779:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29199,"name":"uint8","nodeType":"ElementaryTypeName","src":"36779:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"36764:28:94"},"returnParameters":{"id":29204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29203,"mutability":"mutable","name":"result","nameLocation":"36823:6:94","nodeType":"VariableDeclaration","scope":29214,"src":"36816:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":29202,"name":"bytes8","nodeType":"ElementaryTypeName","src":"36816:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"36815:15:94"},"scope":30945,"src":"36743:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29233,"nodeType":"Block","src":"37115:231:94","statements":[{"assignments":[29226],"declarations":[{"constant":false,"id":29226,"mutability":"mutable","name":"oldValue","nameLocation":"37132:8:94","nodeType":"VariableDeclaration","scope":29233,"src":"37125:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":29225,"name":"bytes8","nodeType":"ElementaryTypeName","src":"37125:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"id":29231,"initialValue":{"arguments":[{"id":29228,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29216,"src":"37156:4:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"id":29229,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29220,"src":"37162:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29227,"name":"extract_20_8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29214,"src":"37143:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_uint8_$returns$_t_bytes8_$","typeString":"function (bytes20,uint8) pure returns (bytes8)"}},"id":29230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37143:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"VariableDeclarationStatement","src":"37125:44:94"},{"AST":{"nativeSrc":"37204:136:94","nodeType":"YulBlock","src":"37204:136:94","statements":[{"nativeSrc":"37218:37:94","nodeType":"YulAssignment","src":"37218:37:94","value":{"arguments":[{"name":"value","nativeSrc":"37231:5:94","nodeType":"YulIdentifier","src":"37231:5:94"},{"arguments":[{"kind":"number","nativeSrc":"37242:3:94","nodeType":"YulLiteral","src":"37242:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"37251:1:94","nodeType":"YulLiteral","src":"37251:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"37247:3:94","nodeType":"YulIdentifier","src":"37247:3:94"},"nativeSrc":"37247:6:94","nodeType":"YulFunctionCall","src":"37247:6:94"}],"functionName":{"name":"shl","nativeSrc":"37238:3:94","nodeType":"YulIdentifier","src":"37238:3:94"},"nativeSrc":"37238:16:94","nodeType":"YulFunctionCall","src":"37238:16:94"}],"functionName":{"name":"and","nativeSrc":"37227:3:94","nodeType":"YulIdentifier","src":"37227:3:94"},"nativeSrc":"37227:28:94","nodeType":"YulFunctionCall","src":"37227:28:94"},"variableNames":[{"name":"value","nativeSrc":"37218:5:94","nodeType":"YulIdentifier","src":"37218:5:94"}]},{"nativeSrc":"37268:62:94","nodeType":"YulAssignment","src":"37268:62:94","value":{"arguments":[{"name":"self","nativeSrc":"37282:4:94","nodeType":"YulIdentifier","src":"37282:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37296:1:94","nodeType":"YulLiteral","src":"37296:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"37299:6:94","nodeType":"YulIdentifier","src":"37299:6:94"}],"functionName":{"name":"mul","nativeSrc":"37292:3:94","nodeType":"YulIdentifier","src":"37292:3:94"},"nativeSrc":"37292:14:94","nodeType":"YulFunctionCall","src":"37292:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"37312:8:94","nodeType":"YulIdentifier","src":"37312:8:94"},{"name":"value","nativeSrc":"37322:5:94","nodeType":"YulIdentifier","src":"37322:5:94"}],"functionName":{"name":"xor","nativeSrc":"37308:3:94","nodeType":"YulIdentifier","src":"37308:3:94"},"nativeSrc":"37308:20:94","nodeType":"YulFunctionCall","src":"37308:20:94"}],"functionName":{"name":"shr","nativeSrc":"37288:3:94","nodeType":"YulIdentifier","src":"37288:3:94"},"nativeSrc":"37288:41:94","nodeType":"YulFunctionCall","src":"37288:41:94"}],"functionName":{"name":"xor","nativeSrc":"37278:3:94","nodeType":"YulIdentifier","src":"37278:3:94"},"nativeSrc":"37278:52:94","nodeType":"YulFunctionCall","src":"37278:52:94"},"variableNames":[{"name":"result","nativeSrc":"37268:6:94","nodeType":"YulIdentifier","src":"37268:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29220,"isOffset":false,"isSlot":false,"src":"37299:6:94","valueSize":1},{"declaration":29226,"isOffset":false,"isSlot":false,"src":"37312:8:94","valueSize":1},{"declaration":29223,"isOffset":false,"isSlot":false,"src":"37268:6:94","valueSize":1},{"declaration":29216,"isOffset":false,"isSlot":false,"src":"37282:4:94","valueSize":1},{"declaration":29218,"isOffset":false,"isSlot":false,"src":"37218:5:94","valueSize":1},{"declaration":29218,"isOffset":false,"isSlot":false,"src":"37231:5:94","valueSize":1},{"declaration":29218,"isOffset":false,"isSlot":false,"src":"37322:5:94","valueSize":1}],"flags":["memory-safe"],"id":29232,"nodeType":"InlineAssembly","src":"37179:161:94"}]},"id":29234,"implemented":true,"kind":"function","modifiers":[],"name":"replace_20_8","nameLocation":"37021:12:94","nodeType":"FunctionDefinition","parameters":{"id":29221,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29216,"mutability":"mutable","name":"self","nameLocation":"37042:4:94","nodeType":"VariableDeclaration","scope":29234,"src":"37034:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29215,"name":"bytes20","nodeType":"ElementaryTypeName","src":"37034:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29218,"mutability":"mutable","name":"value","nameLocation":"37055:5:94","nodeType":"VariableDeclaration","scope":29234,"src":"37048:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":29217,"name":"bytes8","nodeType":"ElementaryTypeName","src":"37048:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":29220,"mutability":"mutable","name":"offset","nameLocation":"37068:6:94","nodeType":"VariableDeclaration","scope":29234,"src":"37062:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29219,"name":"uint8","nodeType":"ElementaryTypeName","src":"37062:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"37033:42:94"},"returnParameters":{"id":29224,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29223,"mutability":"mutable","name":"result","nameLocation":"37107:6:94","nodeType":"VariableDeclaration","scope":29234,"src":"37099:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29222,"name":"bytes20","nodeType":"ElementaryTypeName","src":"37099:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"37098:16:94"},"scope":30945,"src":"37012:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29251,"nodeType":"Block","src":"37442:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29243,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29238,"src":"37456:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3130","id":29244,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"37465:2:94","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"37456:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29249,"nodeType":"IfStatement","src":"37452:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29246,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"37476:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37476:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29248,"nodeType":"RevertStatement","src":"37469:25:94"}},{"AST":{"nativeSrc":"37529:82:94","nodeType":"YulBlock","src":"37529:82:94","statements":[{"nativeSrc":"37543:58:94","nodeType":"YulAssignment","src":"37543:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37565:1:94","nodeType":"YulLiteral","src":"37565:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"37568:6:94","nodeType":"YulIdentifier","src":"37568:6:94"}],"functionName":{"name":"mul","nativeSrc":"37561:3:94","nodeType":"YulIdentifier","src":"37561:3:94"},"nativeSrc":"37561:14:94","nodeType":"YulFunctionCall","src":"37561:14:94"},{"name":"self","nativeSrc":"37577:4:94","nodeType":"YulIdentifier","src":"37577:4:94"}],"functionName":{"name":"shl","nativeSrc":"37557:3:94","nodeType":"YulIdentifier","src":"37557:3:94"},"nativeSrc":"37557:25:94","nodeType":"YulFunctionCall","src":"37557:25:94"},{"arguments":[{"kind":"number","nativeSrc":"37588:3:94","nodeType":"YulLiteral","src":"37588:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"37597:1:94","nodeType":"YulLiteral","src":"37597:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"37593:3:94","nodeType":"YulIdentifier","src":"37593:3:94"},"nativeSrc":"37593:6:94","nodeType":"YulFunctionCall","src":"37593:6:94"}],"functionName":{"name":"shl","nativeSrc":"37584:3:94","nodeType":"YulIdentifier","src":"37584:3:94"},"nativeSrc":"37584:16:94","nodeType":"YulFunctionCall","src":"37584:16:94"}],"functionName":{"name":"and","nativeSrc":"37553:3:94","nodeType":"YulIdentifier","src":"37553:3:94"},"nativeSrc":"37553:48:94","nodeType":"YulFunctionCall","src":"37553:48:94"},"variableNames":[{"name":"result","nativeSrc":"37543:6:94","nodeType":"YulIdentifier","src":"37543:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29238,"isOffset":false,"isSlot":false,"src":"37568:6:94","valueSize":1},{"declaration":29241,"isOffset":false,"isSlot":false,"src":"37543:6:94","valueSize":1},{"declaration":29236,"isOffset":false,"isSlot":false,"src":"37577:4:94","valueSize":1}],"flags":["memory-safe"],"id":29250,"nodeType":"InlineAssembly","src":"37504:107:94"}]},"id":29252,"implemented":true,"kind":"function","modifiers":[],"name":"extract_20_10","nameLocation":"37361:13:94","nodeType":"FunctionDefinition","parameters":{"id":29239,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29236,"mutability":"mutable","name":"self","nameLocation":"37383:4:94","nodeType":"VariableDeclaration","scope":29252,"src":"37375:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29235,"name":"bytes20","nodeType":"ElementaryTypeName","src":"37375:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29238,"mutability":"mutable","name":"offset","nameLocation":"37395:6:94","nodeType":"VariableDeclaration","scope":29252,"src":"37389:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29237,"name":"uint8","nodeType":"ElementaryTypeName","src":"37389:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"37374:28:94"},"returnParameters":{"id":29242,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29241,"mutability":"mutable","name":"result","nameLocation":"37434:6:94","nodeType":"VariableDeclaration","scope":29252,"src":"37426:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":29240,"name":"bytes10","nodeType":"ElementaryTypeName","src":"37426:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"37425:16:94"},"scope":30945,"src":"37352:265:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29271,"nodeType":"Block","src":"37728:233:94","statements":[{"assignments":[29264],"declarations":[{"constant":false,"id":29264,"mutability":"mutable","name":"oldValue","nameLocation":"37746:8:94","nodeType":"VariableDeclaration","scope":29271,"src":"37738:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":29263,"name":"bytes10","nodeType":"ElementaryTypeName","src":"37738:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":29269,"initialValue":{"arguments":[{"id":29266,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29254,"src":"37771:4:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"id":29267,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29258,"src":"37777:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29265,"name":"extract_20_10","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29252,"src":"37757:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_uint8_$returns$_t_bytes10_$","typeString":"function (bytes20,uint8) pure returns (bytes10)"}},"id":29268,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37757:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"37738:46:94"},{"AST":{"nativeSrc":"37819:136:94","nodeType":"YulBlock","src":"37819:136:94","statements":[{"nativeSrc":"37833:37:94","nodeType":"YulAssignment","src":"37833:37:94","value":{"arguments":[{"name":"value","nativeSrc":"37846:5:94","nodeType":"YulIdentifier","src":"37846:5:94"},{"arguments":[{"kind":"number","nativeSrc":"37857:3:94","nodeType":"YulLiteral","src":"37857:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"37866:1:94","nodeType":"YulLiteral","src":"37866:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"37862:3:94","nodeType":"YulIdentifier","src":"37862:3:94"},"nativeSrc":"37862:6:94","nodeType":"YulFunctionCall","src":"37862:6:94"}],"functionName":{"name":"shl","nativeSrc":"37853:3:94","nodeType":"YulIdentifier","src":"37853:3:94"},"nativeSrc":"37853:16:94","nodeType":"YulFunctionCall","src":"37853:16:94"}],"functionName":{"name":"and","nativeSrc":"37842:3:94","nodeType":"YulIdentifier","src":"37842:3:94"},"nativeSrc":"37842:28:94","nodeType":"YulFunctionCall","src":"37842:28:94"},"variableNames":[{"name":"value","nativeSrc":"37833:5:94","nodeType":"YulIdentifier","src":"37833:5:94"}]},{"nativeSrc":"37883:62:94","nodeType":"YulAssignment","src":"37883:62:94","value":{"arguments":[{"name":"self","nativeSrc":"37897:4:94","nodeType":"YulIdentifier","src":"37897:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37911:1:94","nodeType":"YulLiteral","src":"37911:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"37914:6:94","nodeType":"YulIdentifier","src":"37914:6:94"}],"functionName":{"name":"mul","nativeSrc":"37907:3:94","nodeType":"YulIdentifier","src":"37907:3:94"},"nativeSrc":"37907:14:94","nodeType":"YulFunctionCall","src":"37907:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"37927:8:94","nodeType":"YulIdentifier","src":"37927:8:94"},{"name":"value","nativeSrc":"37937:5:94","nodeType":"YulIdentifier","src":"37937:5:94"}],"functionName":{"name":"xor","nativeSrc":"37923:3:94","nodeType":"YulIdentifier","src":"37923:3:94"},"nativeSrc":"37923:20:94","nodeType":"YulFunctionCall","src":"37923:20:94"}],"functionName":{"name":"shr","nativeSrc":"37903:3:94","nodeType":"YulIdentifier","src":"37903:3:94"},"nativeSrc":"37903:41:94","nodeType":"YulFunctionCall","src":"37903:41:94"}],"functionName":{"name":"xor","nativeSrc":"37893:3:94","nodeType":"YulIdentifier","src":"37893:3:94"},"nativeSrc":"37893:52:94","nodeType":"YulFunctionCall","src":"37893:52:94"},"variableNames":[{"name":"result","nativeSrc":"37883:6:94","nodeType":"YulIdentifier","src":"37883:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29258,"isOffset":false,"isSlot":false,"src":"37914:6:94","valueSize":1},{"declaration":29264,"isOffset":false,"isSlot":false,"src":"37927:8:94","valueSize":1},{"declaration":29261,"isOffset":false,"isSlot":false,"src":"37883:6:94","valueSize":1},{"declaration":29254,"isOffset":false,"isSlot":false,"src":"37897:4:94","valueSize":1},{"declaration":29256,"isOffset":false,"isSlot":false,"src":"37833:5:94","valueSize":1},{"declaration":29256,"isOffset":false,"isSlot":false,"src":"37846:5:94","valueSize":1},{"declaration":29256,"isOffset":false,"isSlot":false,"src":"37937:5:94","valueSize":1}],"flags":["memory-safe"],"id":29270,"nodeType":"InlineAssembly","src":"37794:161:94"}]},"id":29272,"implemented":true,"kind":"function","modifiers":[],"name":"replace_20_10","nameLocation":"37632:13:94","nodeType":"FunctionDefinition","parameters":{"id":29259,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29254,"mutability":"mutable","name":"self","nameLocation":"37654:4:94","nodeType":"VariableDeclaration","scope":29272,"src":"37646:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29253,"name":"bytes20","nodeType":"ElementaryTypeName","src":"37646:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29256,"mutability":"mutable","name":"value","nameLocation":"37668:5:94","nodeType":"VariableDeclaration","scope":29272,"src":"37660:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":29255,"name":"bytes10","nodeType":"ElementaryTypeName","src":"37660:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":29258,"mutability":"mutable","name":"offset","nameLocation":"37681:6:94","nodeType":"VariableDeclaration","scope":29272,"src":"37675:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29257,"name":"uint8","nodeType":"ElementaryTypeName","src":"37675:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"37645:43:94"},"returnParameters":{"id":29262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29261,"mutability":"mutable","name":"result","nameLocation":"37720:6:94","nodeType":"VariableDeclaration","scope":29272,"src":"37712:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29260,"name":"bytes20","nodeType":"ElementaryTypeName","src":"37712:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"37711:16:94"},"scope":30945,"src":"37623:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29289,"nodeType":"Block","src":"38057:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29283,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29281,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29276,"src":"38071:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"38","id":29282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38080:1:94","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"38071:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29287,"nodeType":"IfStatement","src":"38067:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29284,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"38090:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38090:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29286,"nodeType":"RevertStatement","src":"38083:25:94"}},{"AST":{"nativeSrc":"38143:82:94","nodeType":"YulBlock","src":"38143:82:94","statements":[{"nativeSrc":"38157:58:94","nodeType":"YulAssignment","src":"38157:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"38179:1:94","nodeType":"YulLiteral","src":"38179:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"38182:6:94","nodeType":"YulIdentifier","src":"38182:6:94"}],"functionName":{"name":"mul","nativeSrc":"38175:3:94","nodeType":"YulIdentifier","src":"38175:3:94"},"nativeSrc":"38175:14:94","nodeType":"YulFunctionCall","src":"38175:14:94"},{"name":"self","nativeSrc":"38191:4:94","nodeType":"YulIdentifier","src":"38191:4:94"}],"functionName":{"name":"shl","nativeSrc":"38171:3:94","nodeType":"YulIdentifier","src":"38171:3:94"},"nativeSrc":"38171:25:94","nodeType":"YulFunctionCall","src":"38171:25:94"},{"arguments":[{"kind":"number","nativeSrc":"38202:3:94","nodeType":"YulLiteral","src":"38202:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"38211:1:94","nodeType":"YulLiteral","src":"38211:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"38207:3:94","nodeType":"YulIdentifier","src":"38207:3:94"},"nativeSrc":"38207:6:94","nodeType":"YulFunctionCall","src":"38207:6:94"}],"functionName":{"name":"shl","nativeSrc":"38198:3:94","nodeType":"YulIdentifier","src":"38198:3:94"},"nativeSrc":"38198:16:94","nodeType":"YulFunctionCall","src":"38198:16:94"}],"functionName":{"name":"and","nativeSrc":"38167:3:94","nodeType":"YulIdentifier","src":"38167:3:94"},"nativeSrc":"38167:48:94","nodeType":"YulFunctionCall","src":"38167:48:94"},"variableNames":[{"name":"result","nativeSrc":"38157:6:94","nodeType":"YulIdentifier","src":"38157:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29276,"isOffset":false,"isSlot":false,"src":"38182:6:94","valueSize":1},{"declaration":29279,"isOffset":false,"isSlot":false,"src":"38157:6:94","valueSize":1},{"declaration":29274,"isOffset":false,"isSlot":false,"src":"38191:4:94","valueSize":1}],"flags":["memory-safe"],"id":29288,"nodeType":"InlineAssembly","src":"38118:107:94"}]},"id":29290,"implemented":true,"kind":"function","modifiers":[],"name":"extract_20_12","nameLocation":"37976:13:94","nodeType":"FunctionDefinition","parameters":{"id":29277,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29274,"mutability":"mutable","name":"self","nameLocation":"37998:4:94","nodeType":"VariableDeclaration","scope":29290,"src":"37990:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29273,"name":"bytes20","nodeType":"ElementaryTypeName","src":"37990:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29276,"mutability":"mutable","name":"offset","nameLocation":"38010:6:94","nodeType":"VariableDeclaration","scope":29290,"src":"38004:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29275,"name":"uint8","nodeType":"ElementaryTypeName","src":"38004:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"37989:28:94"},"returnParameters":{"id":29280,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29279,"mutability":"mutable","name":"result","nameLocation":"38049:6:94","nodeType":"VariableDeclaration","scope":29290,"src":"38041:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":29278,"name":"bytes12","nodeType":"ElementaryTypeName","src":"38041:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"38040:16:94"},"scope":30945,"src":"37967:264:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29309,"nodeType":"Block","src":"38342:233:94","statements":[{"assignments":[29302],"declarations":[{"constant":false,"id":29302,"mutability":"mutable","name":"oldValue","nameLocation":"38360:8:94","nodeType":"VariableDeclaration","scope":29309,"src":"38352:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":29301,"name":"bytes12","nodeType":"ElementaryTypeName","src":"38352:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"id":29307,"initialValue":{"arguments":[{"id":29304,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29292,"src":"38385:4:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"id":29305,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29296,"src":"38391:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29303,"name":"extract_20_12","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29290,"src":"38371:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_uint8_$returns$_t_bytes12_$","typeString":"function (bytes20,uint8) pure returns (bytes12)"}},"id":29306,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38371:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"nodeType":"VariableDeclarationStatement","src":"38352:46:94"},{"AST":{"nativeSrc":"38433:136:94","nodeType":"YulBlock","src":"38433:136:94","statements":[{"nativeSrc":"38447:37:94","nodeType":"YulAssignment","src":"38447:37:94","value":{"arguments":[{"name":"value","nativeSrc":"38460:5:94","nodeType":"YulIdentifier","src":"38460:5:94"},{"arguments":[{"kind":"number","nativeSrc":"38471:3:94","nodeType":"YulLiteral","src":"38471:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"38480:1:94","nodeType":"YulLiteral","src":"38480:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"38476:3:94","nodeType":"YulIdentifier","src":"38476:3:94"},"nativeSrc":"38476:6:94","nodeType":"YulFunctionCall","src":"38476:6:94"}],"functionName":{"name":"shl","nativeSrc":"38467:3:94","nodeType":"YulIdentifier","src":"38467:3:94"},"nativeSrc":"38467:16:94","nodeType":"YulFunctionCall","src":"38467:16:94"}],"functionName":{"name":"and","nativeSrc":"38456:3:94","nodeType":"YulIdentifier","src":"38456:3:94"},"nativeSrc":"38456:28:94","nodeType":"YulFunctionCall","src":"38456:28:94"},"variableNames":[{"name":"value","nativeSrc":"38447:5:94","nodeType":"YulIdentifier","src":"38447:5:94"}]},{"nativeSrc":"38497:62:94","nodeType":"YulAssignment","src":"38497:62:94","value":{"arguments":[{"name":"self","nativeSrc":"38511:4:94","nodeType":"YulIdentifier","src":"38511:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"38525:1:94","nodeType":"YulLiteral","src":"38525:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"38528:6:94","nodeType":"YulIdentifier","src":"38528:6:94"}],"functionName":{"name":"mul","nativeSrc":"38521:3:94","nodeType":"YulIdentifier","src":"38521:3:94"},"nativeSrc":"38521:14:94","nodeType":"YulFunctionCall","src":"38521:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"38541:8:94","nodeType":"YulIdentifier","src":"38541:8:94"},{"name":"value","nativeSrc":"38551:5:94","nodeType":"YulIdentifier","src":"38551:5:94"}],"functionName":{"name":"xor","nativeSrc":"38537:3:94","nodeType":"YulIdentifier","src":"38537:3:94"},"nativeSrc":"38537:20:94","nodeType":"YulFunctionCall","src":"38537:20:94"}],"functionName":{"name":"shr","nativeSrc":"38517:3:94","nodeType":"YulIdentifier","src":"38517:3:94"},"nativeSrc":"38517:41:94","nodeType":"YulFunctionCall","src":"38517:41:94"}],"functionName":{"name":"xor","nativeSrc":"38507:3:94","nodeType":"YulIdentifier","src":"38507:3:94"},"nativeSrc":"38507:52:94","nodeType":"YulFunctionCall","src":"38507:52:94"},"variableNames":[{"name":"result","nativeSrc":"38497:6:94","nodeType":"YulIdentifier","src":"38497:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29296,"isOffset":false,"isSlot":false,"src":"38528:6:94","valueSize":1},{"declaration":29302,"isOffset":false,"isSlot":false,"src":"38541:8:94","valueSize":1},{"declaration":29299,"isOffset":false,"isSlot":false,"src":"38497:6:94","valueSize":1},{"declaration":29292,"isOffset":false,"isSlot":false,"src":"38511:4:94","valueSize":1},{"declaration":29294,"isOffset":false,"isSlot":false,"src":"38447:5:94","valueSize":1},{"declaration":29294,"isOffset":false,"isSlot":false,"src":"38460:5:94","valueSize":1},{"declaration":29294,"isOffset":false,"isSlot":false,"src":"38551:5:94","valueSize":1}],"flags":["memory-safe"],"id":29308,"nodeType":"InlineAssembly","src":"38408:161:94"}]},"id":29310,"implemented":true,"kind":"function","modifiers":[],"name":"replace_20_12","nameLocation":"38246:13:94","nodeType":"FunctionDefinition","parameters":{"id":29297,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29292,"mutability":"mutable","name":"self","nameLocation":"38268:4:94","nodeType":"VariableDeclaration","scope":29310,"src":"38260:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29291,"name":"bytes20","nodeType":"ElementaryTypeName","src":"38260:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29294,"mutability":"mutable","name":"value","nameLocation":"38282:5:94","nodeType":"VariableDeclaration","scope":29310,"src":"38274:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":29293,"name":"bytes12","nodeType":"ElementaryTypeName","src":"38274:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":29296,"mutability":"mutable","name":"offset","nameLocation":"38295:6:94","nodeType":"VariableDeclaration","scope":29310,"src":"38289:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29295,"name":"uint8","nodeType":"ElementaryTypeName","src":"38289:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"38259:43:94"},"returnParameters":{"id":29300,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29299,"mutability":"mutable","name":"result","nameLocation":"38334:6:94","nodeType":"VariableDeclaration","scope":29310,"src":"38326:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29298,"name":"bytes20","nodeType":"ElementaryTypeName","src":"38326:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"38325:16:94"},"scope":30945,"src":"38237:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29327,"nodeType":"Block","src":"38671:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29319,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29314,"src":"38685:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":29320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38694:1:94","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"38685:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29325,"nodeType":"IfStatement","src":"38681:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29322,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"38704:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38704:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29324,"nodeType":"RevertStatement","src":"38697:25:94"}},{"AST":{"nativeSrc":"38757:82:94","nodeType":"YulBlock","src":"38757:82:94","statements":[{"nativeSrc":"38771:58:94","nodeType":"YulAssignment","src":"38771:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"38793:1:94","nodeType":"YulLiteral","src":"38793:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"38796:6:94","nodeType":"YulIdentifier","src":"38796:6:94"}],"functionName":{"name":"mul","nativeSrc":"38789:3:94","nodeType":"YulIdentifier","src":"38789:3:94"},"nativeSrc":"38789:14:94","nodeType":"YulFunctionCall","src":"38789:14:94"},{"name":"self","nativeSrc":"38805:4:94","nodeType":"YulIdentifier","src":"38805:4:94"}],"functionName":{"name":"shl","nativeSrc":"38785:3:94","nodeType":"YulIdentifier","src":"38785:3:94"},"nativeSrc":"38785:25:94","nodeType":"YulFunctionCall","src":"38785:25:94"},{"arguments":[{"kind":"number","nativeSrc":"38816:3:94","nodeType":"YulLiteral","src":"38816:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"38825:1:94","nodeType":"YulLiteral","src":"38825:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"38821:3:94","nodeType":"YulIdentifier","src":"38821:3:94"},"nativeSrc":"38821:6:94","nodeType":"YulFunctionCall","src":"38821:6:94"}],"functionName":{"name":"shl","nativeSrc":"38812:3:94","nodeType":"YulIdentifier","src":"38812:3:94"},"nativeSrc":"38812:16:94","nodeType":"YulFunctionCall","src":"38812:16:94"}],"functionName":{"name":"and","nativeSrc":"38781:3:94","nodeType":"YulIdentifier","src":"38781:3:94"},"nativeSrc":"38781:48:94","nodeType":"YulFunctionCall","src":"38781:48:94"},"variableNames":[{"name":"result","nativeSrc":"38771:6:94","nodeType":"YulIdentifier","src":"38771:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29314,"isOffset":false,"isSlot":false,"src":"38796:6:94","valueSize":1},{"declaration":29317,"isOffset":false,"isSlot":false,"src":"38771:6:94","valueSize":1},{"declaration":29312,"isOffset":false,"isSlot":false,"src":"38805:4:94","valueSize":1}],"flags":["memory-safe"],"id":29326,"nodeType":"InlineAssembly","src":"38732:107:94"}]},"id":29328,"implemented":true,"kind":"function","modifiers":[],"name":"extract_20_16","nameLocation":"38590:13:94","nodeType":"FunctionDefinition","parameters":{"id":29315,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29312,"mutability":"mutable","name":"self","nameLocation":"38612:4:94","nodeType":"VariableDeclaration","scope":29328,"src":"38604:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29311,"name":"bytes20","nodeType":"ElementaryTypeName","src":"38604:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29314,"mutability":"mutable","name":"offset","nameLocation":"38624:6:94","nodeType":"VariableDeclaration","scope":29328,"src":"38618:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29313,"name":"uint8","nodeType":"ElementaryTypeName","src":"38618:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"38603:28:94"},"returnParameters":{"id":29318,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29317,"mutability":"mutable","name":"result","nameLocation":"38663:6:94","nodeType":"VariableDeclaration","scope":29328,"src":"38655:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":29316,"name":"bytes16","nodeType":"ElementaryTypeName","src":"38655:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"38654:16:94"},"scope":30945,"src":"38581:264:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29347,"nodeType":"Block","src":"38956:233:94","statements":[{"assignments":[29340],"declarations":[{"constant":false,"id":29340,"mutability":"mutable","name":"oldValue","nameLocation":"38974:8:94","nodeType":"VariableDeclaration","scope":29347,"src":"38966:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":29339,"name":"bytes16","nodeType":"ElementaryTypeName","src":"38966:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"id":29345,"initialValue":{"arguments":[{"id":29342,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29330,"src":"38999:4:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"id":29343,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29334,"src":"39005:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29341,"name":"extract_20_16","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29328,"src":"38985:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_uint8_$returns$_t_bytes16_$","typeString":"function (bytes20,uint8) pure returns (bytes16)"}},"id":29344,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38985:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"VariableDeclarationStatement","src":"38966:46:94"},{"AST":{"nativeSrc":"39047:136:94","nodeType":"YulBlock","src":"39047:136:94","statements":[{"nativeSrc":"39061:37:94","nodeType":"YulAssignment","src":"39061:37:94","value":{"arguments":[{"name":"value","nativeSrc":"39074:5:94","nodeType":"YulIdentifier","src":"39074:5:94"},{"arguments":[{"kind":"number","nativeSrc":"39085:3:94","nodeType":"YulLiteral","src":"39085:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"39094:1:94","nodeType":"YulLiteral","src":"39094:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"39090:3:94","nodeType":"YulIdentifier","src":"39090:3:94"},"nativeSrc":"39090:6:94","nodeType":"YulFunctionCall","src":"39090:6:94"}],"functionName":{"name":"shl","nativeSrc":"39081:3:94","nodeType":"YulIdentifier","src":"39081:3:94"},"nativeSrc":"39081:16:94","nodeType":"YulFunctionCall","src":"39081:16:94"}],"functionName":{"name":"and","nativeSrc":"39070:3:94","nodeType":"YulIdentifier","src":"39070:3:94"},"nativeSrc":"39070:28:94","nodeType":"YulFunctionCall","src":"39070:28:94"},"variableNames":[{"name":"value","nativeSrc":"39061:5:94","nodeType":"YulIdentifier","src":"39061:5:94"}]},{"nativeSrc":"39111:62:94","nodeType":"YulAssignment","src":"39111:62:94","value":{"arguments":[{"name":"self","nativeSrc":"39125:4:94","nodeType":"YulIdentifier","src":"39125:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"39139:1:94","nodeType":"YulLiteral","src":"39139:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"39142:6:94","nodeType":"YulIdentifier","src":"39142:6:94"}],"functionName":{"name":"mul","nativeSrc":"39135:3:94","nodeType":"YulIdentifier","src":"39135:3:94"},"nativeSrc":"39135:14:94","nodeType":"YulFunctionCall","src":"39135:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"39155:8:94","nodeType":"YulIdentifier","src":"39155:8:94"},{"name":"value","nativeSrc":"39165:5:94","nodeType":"YulIdentifier","src":"39165:5:94"}],"functionName":{"name":"xor","nativeSrc":"39151:3:94","nodeType":"YulIdentifier","src":"39151:3:94"},"nativeSrc":"39151:20:94","nodeType":"YulFunctionCall","src":"39151:20:94"}],"functionName":{"name":"shr","nativeSrc":"39131:3:94","nodeType":"YulIdentifier","src":"39131:3:94"},"nativeSrc":"39131:41:94","nodeType":"YulFunctionCall","src":"39131:41:94"}],"functionName":{"name":"xor","nativeSrc":"39121:3:94","nodeType":"YulIdentifier","src":"39121:3:94"},"nativeSrc":"39121:52:94","nodeType":"YulFunctionCall","src":"39121:52:94"},"variableNames":[{"name":"result","nativeSrc":"39111:6:94","nodeType":"YulIdentifier","src":"39111:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29334,"isOffset":false,"isSlot":false,"src":"39142:6:94","valueSize":1},{"declaration":29340,"isOffset":false,"isSlot":false,"src":"39155:8:94","valueSize":1},{"declaration":29337,"isOffset":false,"isSlot":false,"src":"39111:6:94","valueSize":1},{"declaration":29330,"isOffset":false,"isSlot":false,"src":"39125:4:94","valueSize":1},{"declaration":29332,"isOffset":false,"isSlot":false,"src":"39061:5:94","valueSize":1},{"declaration":29332,"isOffset":false,"isSlot":false,"src":"39074:5:94","valueSize":1},{"declaration":29332,"isOffset":false,"isSlot":false,"src":"39165:5:94","valueSize":1}],"flags":["memory-safe"],"id":29346,"nodeType":"InlineAssembly","src":"39022:161:94"}]},"id":29348,"implemented":true,"kind":"function","modifiers":[],"name":"replace_20_16","nameLocation":"38860:13:94","nodeType":"FunctionDefinition","parameters":{"id":29335,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29330,"mutability":"mutable","name":"self","nameLocation":"38882:4:94","nodeType":"VariableDeclaration","scope":29348,"src":"38874:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29329,"name":"bytes20","nodeType":"ElementaryTypeName","src":"38874:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29332,"mutability":"mutable","name":"value","nameLocation":"38896:5:94","nodeType":"VariableDeclaration","scope":29348,"src":"38888:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":29331,"name":"bytes16","nodeType":"ElementaryTypeName","src":"38888:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":29334,"mutability":"mutable","name":"offset","nameLocation":"38909:6:94","nodeType":"VariableDeclaration","scope":29348,"src":"38903:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29333,"name":"uint8","nodeType":"ElementaryTypeName","src":"38903:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"38873:43:94"},"returnParameters":{"id":29338,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29337,"mutability":"mutable","name":"result","nameLocation":"38948:6:94","nodeType":"VariableDeclaration","scope":29348,"src":"38940:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29336,"name":"bytes20","nodeType":"ElementaryTypeName","src":"38940:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"38939:16:94"},"scope":30945,"src":"38851:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29365,"nodeType":"Block","src":"39283:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29357,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29352,"src":"39297:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3231","id":29358,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39306:2:94","typeDescriptions":{"typeIdentifier":"t_rational_21_by_1","typeString":"int_const 21"},"value":"21"},"src":"39297:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29363,"nodeType":"IfStatement","src":"39293:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29360,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"39317:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39317:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29362,"nodeType":"RevertStatement","src":"39310:25:94"}},{"AST":{"nativeSrc":"39370:82:94","nodeType":"YulBlock","src":"39370:82:94","statements":[{"nativeSrc":"39384:58:94","nodeType":"YulAssignment","src":"39384:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"39406:1:94","nodeType":"YulLiteral","src":"39406:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"39409:6:94","nodeType":"YulIdentifier","src":"39409:6:94"}],"functionName":{"name":"mul","nativeSrc":"39402:3:94","nodeType":"YulIdentifier","src":"39402:3:94"},"nativeSrc":"39402:14:94","nodeType":"YulFunctionCall","src":"39402:14:94"},{"name":"self","nativeSrc":"39418:4:94","nodeType":"YulIdentifier","src":"39418:4:94"}],"functionName":{"name":"shl","nativeSrc":"39398:3:94","nodeType":"YulIdentifier","src":"39398:3:94"},"nativeSrc":"39398:25:94","nodeType":"YulFunctionCall","src":"39398:25:94"},{"arguments":[{"kind":"number","nativeSrc":"39429:3:94","nodeType":"YulLiteral","src":"39429:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"39438:1:94","nodeType":"YulLiteral","src":"39438:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"39434:3:94","nodeType":"YulIdentifier","src":"39434:3:94"},"nativeSrc":"39434:6:94","nodeType":"YulFunctionCall","src":"39434:6:94"}],"functionName":{"name":"shl","nativeSrc":"39425:3:94","nodeType":"YulIdentifier","src":"39425:3:94"},"nativeSrc":"39425:16:94","nodeType":"YulFunctionCall","src":"39425:16:94"}],"functionName":{"name":"and","nativeSrc":"39394:3:94","nodeType":"YulIdentifier","src":"39394:3:94"},"nativeSrc":"39394:48:94","nodeType":"YulFunctionCall","src":"39394:48:94"},"variableNames":[{"name":"result","nativeSrc":"39384:6:94","nodeType":"YulIdentifier","src":"39384:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29352,"isOffset":false,"isSlot":false,"src":"39409:6:94","valueSize":1},{"declaration":29355,"isOffset":false,"isSlot":false,"src":"39384:6:94","valueSize":1},{"declaration":29350,"isOffset":false,"isSlot":false,"src":"39418:4:94","valueSize":1}],"flags":["memory-safe"],"id":29364,"nodeType":"InlineAssembly","src":"39345:107:94"}]},"id":29366,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_1","nameLocation":"39204:12:94","nodeType":"FunctionDefinition","parameters":{"id":29353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29350,"mutability":"mutable","name":"self","nameLocation":"39225:4:94","nodeType":"VariableDeclaration","scope":29366,"src":"39217:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29349,"name":"bytes22","nodeType":"ElementaryTypeName","src":"39217:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29352,"mutability":"mutable","name":"offset","nameLocation":"39237:6:94","nodeType":"VariableDeclaration","scope":29366,"src":"39231:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29351,"name":"uint8","nodeType":"ElementaryTypeName","src":"39231:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"39216:28:94"},"returnParameters":{"id":29356,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29355,"mutability":"mutable","name":"result","nameLocation":"39275:6:94","nodeType":"VariableDeclaration","scope":29366,"src":"39268:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":29354,"name":"bytes1","nodeType":"ElementaryTypeName","src":"39268:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"39267:15:94"},"scope":30945,"src":"39195:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29385,"nodeType":"Block","src":"39567:231:94","statements":[{"assignments":[29378],"declarations":[{"constant":false,"id":29378,"mutability":"mutable","name":"oldValue","nameLocation":"39584:8:94","nodeType":"VariableDeclaration","scope":29385,"src":"39577:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":29377,"name":"bytes1","nodeType":"ElementaryTypeName","src":"39577:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":29383,"initialValue":{"arguments":[{"id":29380,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29368,"src":"39608:4:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":29381,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29372,"src":"39614:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29379,"name":"extract_22_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29366,"src":"39595:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes22,uint8) pure returns (bytes1)"}},"id":29382,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39595:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"39577:44:94"},{"AST":{"nativeSrc":"39656:136:94","nodeType":"YulBlock","src":"39656:136:94","statements":[{"nativeSrc":"39670:37:94","nodeType":"YulAssignment","src":"39670:37:94","value":{"arguments":[{"name":"value","nativeSrc":"39683:5:94","nodeType":"YulIdentifier","src":"39683:5:94"},{"arguments":[{"kind":"number","nativeSrc":"39694:3:94","nodeType":"YulLiteral","src":"39694:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"39703:1:94","nodeType":"YulLiteral","src":"39703:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"39699:3:94","nodeType":"YulIdentifier","src":"39699:3:94"},"nativeSrc":"39699:6:94","nodeType":"YulFunctionCall","src":"39699:6:94"}],"functionName":{"name":"shl","nativeSrc":"39690:3:94","nodeType":"YulIdentifier","src":"39690:3:94"},"nativeSrc":"39690:16:94","nodeType":"YulFunctionCall","src":"39690:16:94"}],"functionName":{"name":"and","nativeSrc":"39679:3:94","nodeType":"YulIdentifier","src":"39679:3:94"},"nativeSrc":"39679:28:94","nodeType":"YulFunctionCall","src":"39679:28:94"},"variableNames":[{"name":"value","nativeSrc":"39670:5:94","nodeType":"YulIdentifier","src":"39670:5:94"}]},{"nativeSrc":"39720:62:94","nodeType":"YulAssignment","src":"39720:62:94","value":{"arguments":[{"name":"self","nativeSrc":"39734:4:94","nodeType":"YulIdentifier","src":"39734:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"39748:1:94","nodeType":"YulLiteral","src":"39748:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"39751:6:94","nodeType":"YulIdentifier","src":"39751:6:94"}],"functionName":{"name":"mul","nativeSrc":"39744:3:94","nodeType":"YulIdentifier","src":"39744:3:94"},"nativeSrc":"39744:14:94","nodeType":"YulFunctionCall","src":"39744:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"39764:8:94","nodeType":"YulIdentifier","src":"39764:8:94"},{"name":"value","nativeSrc":"39774:5:94","nodeType":"YulIdentifier","src":"39774:5:94"}],"functionName":{"name":"xor","nativeSrc":"39760:3:94","nodeType":"YulIdentifier","src":"39760:3:94"},"nativeSrc":"39760:20:94","nodeType":"YulFunctionCall","src":"39760:20:94"}],"functionName":{"name":"shr","nativeSrc":"39740:3:94","nodeType":"YulIdentifier","src":"39740:3:94"},"nativeSrc":"39740:41:94","nodeType":"YulFunctionCall","src":"39740:41:94"}],"functionName":{"name":"xor","nativeSrc":"39730:3:94","nodeType":"YulIdentifier","src":"39730:3:94"},"nativeSrc":"39730:52:94","nodeType":"YulFunctionCall","src":"39730:52:94"},"variableNames":[{"name":"result","nativeSrc":"39720:6:94","nodeType":"YulIdentifier","src":"39720:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29372,"isOffset":false,"isSlot":false,"src":"39751:6:94","valueSize":1},{"declaration":29378,"isOffset":false,"isSlot":false,"src":"39764:8:94","valueSize":1},{"declaration":29375,"isOffset":false,"isSlot":false,"src":"39720:6:94","valueSize":1},{"declaration":29368,"isOffset":false,"isSlot":false,"src":"39734:4:94","valueSize":1},{"declaration":29370,"isOffset":false,"isSlot":false,"src":"39670:5:94","valueSize":1},{"declaration":29370,"isOffset":false,"isSlot":false,"src":"39683:5:94","valueSize":1},{"declaration":29370,"isOffset":false,"isSlot":false,"src":"39774:5:94","valueSize":1}],"flags":["memory-safe"],"id":29384,"nodeType":"InlineAssembly","src":"39631:161:94"}]},"id":29386,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_1","nameLocation":"39473:12:94","nodeType":"FunctionDefinition","parameters":{"id":29373,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29368,"mutability":"mutable","name":"self","nameLocation":"39494:4:94","nodeType":"VariableDeclaration","scope":29386,"src":"39486:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29367,"name":"bytes22","nodeType":"ElementaryTypeName","src":"39486:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29370,"mutability":"mutable","name":"value","nameLocation":"39507:5:94","nodeType":"VariableDeclaration","scope":29386,"src":"39500:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":29369,"name":"bytes1","nodeType":"ElementaryTypeName","src":"39500:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":29372,"mutability":"mutable","name":"offset","nameLocation":"39520:6:94","nodeType":"VariableDeclaration","scope":29386,"src":"39514:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29371,"name":"uint8","nodeType":"ElementaryTypeName","src":"39514:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"39485:42:94"},"returnParameters":{"id":29376,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29375,"mutability":"mutable","name":"result","nameLocation":"39559:6:94","nodeType":"VariableDeclaration","scope":29386,"src":"39551:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29374,"name":"bytes22","nodeType":"ElementaryTypeName","src":"39551:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"39550:16:94"},"scope":30945,"src":"39464:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29403,"nodeType":"Block","src":"39892:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29397,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29395,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29390,"src":"39906:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3230","id":29396,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39915:2:94","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"src":"39906:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29401,"nodeType":"IfStatement","src":"39902:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29398,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"39926:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29399,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39926:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29400,"nodeType":"RevertStatement","src":"39919:25:94"}},{"AST":{"nativeSrc":"39979:82:94","nodeType":"YulBlock","src":"39979:82:94","statements":[{"nativeSrc":"39993:58:94","nodeType":"YulAssignment","src":"39993:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40015:1:94","nodeType":"YulLiteral","src":"40015:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"40018:6:94","nodeType":"YulIdentifier","src":"40018:6:94"}],"functionName":{"name":"mul","nativeSrc":"40011:3:94","nodeType":"YulIdentifier","src":"40011:3:94"},"nativeSrc":"40011:14:94","nodeType":"YulFunctionCall","src":"40011:14:94"},{"name":"self","nativeSrc":"40027:4:94","nodeType":"YulIdentifier","src":"40027:4:94"}],"functionName":{"name":"shl","nativeSrc":"40007:3:94","nodeType":"YulIdentifier","src":"40007:3:94"},"nativeSrc":"40007:25:94","nodeType":"YulFunctionCall","src":"40007:25:94"},{"arguments":[{"kind":"number","nativeSrc":"40038:3:94","nodeType":"YulLiteral","src":"40038:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"40047:1:94","nodeType":"YulLiteral","src":"40047:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"40043:3:94","nodeType":"YulIdentifier","src":"40043:3:94"},"nativeSrc":"40043:6:94","nodeType":"YulFunctionCall","src":"40043:6:94"}],"functionName":{"name":"shl","nativeSrc":"40034:3:94","nodeType":"YulIdentifier","src":"40034:3:94"},"nativeSrc":"40034:16:94","nodeType":"YulFunctionCall","src":"40034:16:94"}],"functionName":{"name":"and","nativeSrc":"40003:3:94","nodeType":"YulIdentifier","src":"40003:3:94"},"nativeSrc":"40003:48:94","nodeType":"YulFunctionCall","src":"40003:48:94"},"variableNames":[{"name":"result","nativeSrc":"39993:6:94","nodeType":"YulIdentifier","src":"39993:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29390,"isOffset":false,"isSlot":false,"src":"40018:6:94","valueSize":1},{"declaration":29393,"isOffset":false,"isSlot":false,"src":"39993:6:94","valueSize":1},{"declaration":29388,"isOffset":false,"isSlot":false,"src":"40027:4:94","valueSize":1}],"flags":["memory-safe"],"id":29402,"nodeType":"InlineAssembly","src":"39954:107:94"}]},"id":29404,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_2","nameLocation":"39813:12:94","nodeType":"FunctionDefinition","parameters":{"id":29391,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29388,"mutability":"mutable","name":"self","nameLocation":"39834:4:94","nodeType":"VariableDeclaration","scope":29404,"src":"39826:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29387,"name":"bytes22","nodeType":"ElementaryTypeName","src":"39826:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29390,"mutability":"mutable","name":"offset","nameLocation":"39846:6:94","nodeType":"VariableDeclaration","scope":29404,"src":"39840:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29389,"name":"uint8","nodeType":"ElementaryTypeName","src":"39840:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"39825:28:94"},"returnParameters":{"id":29394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29393,"mutability":"mutable","name":"result","nameLocation":"39884:6:94","nodeType":"VariableDeclaration","scope":29404,"src":"39877:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":29392,"name":"bytes2","nodeType":"ElementaryTypeName","src":"39877:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"39876:15:94"},"scope":30945,"src":"39804:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29423,"nodeType":"Block","src":"40176:231:94","statements":[{"assignments":[29416],"declarations":[{"constant":false,"id":29416,"mutability":"mutable","name":"oldValue","nameLocation":"40193:8:94","nodeType":"VariableDeclaration","scope":29423,"src":"40186:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":29415,"name":"bytes2","nodeType":"ElementaryTypeName","src":"40186:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":29421,"initialValue":{"arguments":[{"id":29418,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29406,"src":"40217:4:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":29419,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29410,"src":"40223:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29417,"name":"extract_22_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29404,"src":"40204:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes22,uint8) pure returns (bytes2)"}},"id":29420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40204:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"40186:44:94"},{"AST":{"nativeSrc":"40265:136:94","nodeType":"YulBlock","src":"40265:136:94","statements":[{"nativeSrc":"40279:37:94","nodeType":"YulAssignment","src":"40279:37:94","value":{"arguments":[{"name":"value","nativeSrc":"40292:5:94","nodeType":"YulIdentifier","src":"40292:5:94"},{"arguments":[{"kind":"number","nativeSrc":"40303:3:94","nodeType":"YulLiteral","src":"40303:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"40312:1:94","nodeType":"YulLiteral","src":"40312:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"40308:3:94","nodeType":"YulIdentifier","src":"40308:3:94"},"nativeSrc":"40308:6:94","nodeType":"YulFunctionCall","src":"40308:6:94"}],"functionName":{"name":"shl","nativeSrc":"40299:3:94","nodeType":"YulIdentifier","src":"40299:3:94"},"nativeSrc":"40299:16:94","nodeType":"YulFunctionCall","src":"40299:16:94"}],"functionName":{"name":"and","nativeSrc":"40288:3:94","nodeType":"YulIdentifier","src":"40288:3:94"},"nativeSrc":"40288:28:94","nodeType":"YulFunctionCall","src":"40288:28:94"},"variableNames":[{"name":"value","nativeSrc":"40279:5:94","nodeType":"YulIdentifier","src":"40279:5:94"}]},{"nativeSrc":"40329:62:94","nodeType":"YulAssignment","src":"40329:62:94","value":{"arguments":[{"name":"self","nativeSrc":"40343:4:94","nodeType":"YulIdentifier","src":"40343:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40357:1:94","nodeType":"YulLiteral","src":"40357:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"40360:6:94","nodeType":"YulIdentifier","src":"40360:6:94"}],"functionName":{"name":"mul","nativeSrc":"40353:3:94","nodeType":"YulIdentifier","src":"40353:3:94"},"nativeSrc":"40353:14:94","nodeType":"YulFunctionCall","src":"40353:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"40373:8:94","nodeType":"YulIdentifier","src":"40373:8:94"},{"name":"value","nativeSrc":"40383:5:94","nodeType":"YulIdentifier","src":"40383:5:94"}],"functionName":{"name":"xor","nativeSrc":"40369:3:94","nodeType":"YulIdentifier","src":"40369:3:94"},"nativeSrc":"40369:20:94","nodeType":"YulFunctionCall","src":"40369:20:94"}],"functionName":{"name":"shr","nativeSrc":"40349:3:94","nodeType":"YulIdentifier","src":"40349:3:94"},"nativeSrc":"40349:41:94","nodeType":"YulFunctionCall","src":"40349:41:94"}],"functionName":{"name":"xor","nativeSrc":"40339:3:94","nodeType":"YulIdentifier","src":"40339:3:94"},"nativeSrc":"40339:52:94","nodeType":"YulFunctionCall","src":"40339:52:94"},"variableNames":[{"name":"result","nativeSrc":"40329:6:94","nodeType":"YulIdentifier","src":"40329:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29410,"isOffset":false,"isSlot":false,"src":"40360:6:94","valueSize":1},{"declaration":29416,"isOffset":false,"isSlot":false,"src":"40373:8:94","valueSize":1},{"declaration":29413,"isOffset":false,"isSlot":false,"src":"40329:6:94","valueSize":1},{"declaration":29406,"isOffset":false,"isSlot":false,"src":"40343:4:94","valueSize":1},{"declaration":29408,"isOffset":false,"isSlot":false,"src":"40279:5:94","valueSize":1},{"declaration":29408,"isOffset":false,"isSlot":false,"src":"40292:5:94","valueSize":1},{"declaration":29408,"isOffset":false,"isSlot":false,"src":"40383:5:94","valueSize":1}],"flags":["memory-safe"],"id":29422,"nodeType":"InlineAssembly","src":"40240:161:94"}]},"id":29424,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_2","nameLocation":"40082:12:94","nodeType":"FunctionDefinition","parameters":{"id":29411,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29406,"mutability":"mutable","name":"self","nameLocation":"40103:4:94","nodeType":"VariableDeclaration","scope":29424,"src":"40095:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29405,"name":"bytes22","nodeType":"ElementaryTypeName","src":"40095:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29408,"mutability":"mutable","name":"value","nameLocation":"40116:5:94","nodeType":"VariableDeclaration","scope":29424,"src":"40109:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":29407,"name":"bytes2","nodeType":"ElementaryTypeName","src":"40109:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":29410,"mutability":"mutable","name":"offset","nameLocation":"40129:6:94","nodeType":"VariableDeclaration","scope":29424,"src":"40123:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29409,"name":"uint8","nodeType":"ElementaryTypeName","src":"40123:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"40094:42:94"},"returnParameters":{"id":29414,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29413,"mutability":"mutable","name":"result","nameLocation":"40168:6:94","nodeType":"VariableDeclaration","scope":29424,"src":"40160:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29412,"name":"bytes22","nodeType":"ElementaryTypeName","src":"40160:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"40159:16:94"},"scope":30945,"src":"40073:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29441,"nodeType":"Block","src":"40501:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29433,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29428,"src":"40515:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3138","id":29434,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"40524:2:94","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"src":"40515:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29439,"nodeType":"IfStatement","src":"40511:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29436,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"40535:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40535:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29438,"nodeType":"RevertStatement","src":"40528:25:94"}},{"AST":{"nativeSrc":"40588:82:94","nodeType":"YulBlock","src":"40588:82:94","statements":[{"nativeSrc":"40602:58:94","nodeType":"YulAssignment","src":"40602:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40624:1:94","nodeType":"YulLiteral","src":"40624:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"40627:6:94","nodeType":"YulIdentifier","src":"40627:6:94"}],"functionName":{"name":"mul","nativeSrc":"40620:3:94","nodeType":"YulIdentifier","src":"40620:3:94"},"nativeSrc":"40620:14:94","nodeType":"YulFunctionCall","src":"40620:14:94"},{"name":"self","nativeSrc":"40636:4:94","nodeType":"YulIdentifier","src":"40636:4:94"}],"functionName":{"name":"shl","nativeSrc":"40616:3:94","nodeType":"YulIdentifier","src":"40616:3:94"},"nativeSrc":"40616:25:94","nodeType":"YulFunctionCall","src":"40616:25:94"},{"arguments":[{"kind":"number","nativeSrc":"40647:3:94","nodeType":"YulLiteral","src":"40647:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"40656:1:94","nodeType":"YulLiteral","src":"40656:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"40652:3:94","nodeType":"YulIdentifier","src":"40652:3:94"},"nativeSrc":"40652:6:94","nodeType":"YulFunctionCall","src":"40652:6:94"}],"functionName":{"name":"shl","nativeSrc":"40643:3:94","nodeType":"YulIdentifier","src":"40643:3:94"},"nativeSrc":"40643:16:94","nodeType":"YulFunctionCall","src":"40643:16:94"}],"functionName":{"name":"and","nativeSrc":"40612:3:94","nodeType":"YulIdentifier","src":"40612:3:94"},"nativeSrc":"40612:48:94","nodeType":"YulFunctionCall","src":"40612:48:94"},"variableNames":[{"name":"result","nativeSrc":"40602:6:94","nodeType":"YulIdentifier","src":"40602:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29428,"isOffset":false,"isSlot":false,"src":"40627:6:94","valueSize":1},{"declaration":29431,"isOffset":false,"isSlot":false,"src":"40602:6:94","valueSize":1},{"declaration":29426,"isOffset":false,"isSlot":false,"src":"40636:4:94","valueSize":1}],"flags":["memory-safe"],"id":29440,"nodeType":"InlineAssembly","src":"40563:107:94"}]},"id":29442,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_4","nameLocation":"40422:12:94","nodeType":"FunctionDefinition","parameters":{"id":29429,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29426,"mutability":"mutable","name":"self","nameLocation":"40443:4:94","nodeType":"VariableDeclaration","scope":29442,"src":"40435:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29425,"name":"bytes22","nodeType":"ElementaryTypeName","src":"40435:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29428,"mutability":"mutable","name":"offset","nameLocation":"40455:6:94","nodeType":"VariableDeclaration","scope":29442,"src":"40449:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29427,"name":"uint8","nodeType":"ElementaryTypeName","src":"40449:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"40434:28:94"},"returnParameters":{"id":29432,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29431,"mutability":"mutable","name":"result","nameLocation":"40493:6:94","nodeType":"VariableDeclaration","scope":29442,"src":"40486:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29430,"name":"bytes4","nodeType":"ElementaryTypeName","src":"40486:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"40485:15:94"},"scope":30945,"src":"40413:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29461,"nodeType":"Block","src":"40785:231:94","statements":[{"assignments":[29454],"declarations":[{"constant":false,"id":29454,"mutability":"mutable","name":"oldValue","nameLocation":"40802:8:94","nodeType":"VariableDeclaration","scope":29461,"src":"40795:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29453,"name":"bytes4","nodeType":"ElementaryTypeName","src":"40795:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":29459,"initialValue":{"arguments":[{"id":29456,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29444,"src":"40826:4:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":29457,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29448,"src":"40832:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29455,"name":"extract_22_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29442,"src":"40813:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes22,uint8) pure returns (bytes4)"}},"id":29458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40813:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"40795:44:94"},{"AST":{"nativeSrc":"40874:136:94","nodeType":"YulBlock","src":"40874:136:94","statements":[{"nativeSrc":"40888:37:94","nodeType":"YulAssignment","src":"40888:37:94","value":{"arguments":[{"name":"value","nativeSrc":"40901:5:94","nodeType":"YulIdentifier","src":"40901:5:94"},{"arguments":[{"kind":"number","nativeSrc":"40912:3:94","nodeType":"YulLiteral","src":"40912:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"40921:1:94","nodeType":"YulLiteral","src":"40921:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"40917:3:94","nodeType":"YulIdentifier","src":"40917:3:94"},"nativeSrc":"40917:6:94","nodeType":"YulFunctionCall","src":"40917:6:94"}],"functionName":{"name":"shl","nativeSrc":"40908:3:94","nodeType":"YulIdentifier","src":"40908:3:94"},"nativeSrc":"40908:16:94","nodeType":"YulFunctionCall","src":"40908:16:94"}],"functionName":{"name":"and","nativeSrc":"40897:3:94","nodeType":"YulIdentifier","src":"40897:3:94"},"nativeSrc":"40897:28:94","nodeType":"YulFunctionCall","src":"40897:28:94"},"variableNames":[{"name":"value","nativeSrc":"40888:5:94","nodeType":"YulIdentifier","src":"40888:5:94"}]},{"nativeSrc":"40938:62:94","nodeType":"YulAssignment","src":"40938:62:94","value":{"arguments":[{"name":"self","nativeSrc":"40952:4:94","nodeType":"YulIdentifier","src":"40952:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40966:1:94","nodeType":"YulLiteral","src":"40966:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"40969:6:94","nodeType":"YulIdentifier","src":"40969:6:94"}],"functionName":{"name":"mul","nativeSrc":"40962:3:94","nodeType":"YulIdentifier","src":"40962:3:94"},"nativeSrc":"40962:14:94","nodeType":"YulFunctionCall","src":"40962:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"40982:8:94","nodeType":"YulIdentifier","src":"40982:8:94"},{"name":"value","nativeSrc":"40992:5:94","nodeType":"YulIdentifier","src":"40992:5:94"}],"functionName":{"name":"xor","nativeSrc":"40978:3:94","nodeType":"YulIdentifier","src":"40978:3:94"},"nativeSrc":"40978:20:94","nodeType":"YulFunctionCall","src":"40978:20:94"}],"functionName":{"name":"shr","nativeSrc":"40958:3:94","nodeType":"YulIdentifier","src":"40958:3:94"},"nativeSrc":"40958:41:94","nodeType":"YulFunctionCall","src":"40958:41:94"}],"functionName":{"name":"xor","nativeSrc":"40948:3:94","nodeType":"YulIdentifier","src":"40948:3:94"},"nativeSrc":"40948:52:94","nodeType":"YulFunctionCall","src":"40948:52:94"},"variableNames":[{"name":"result","nativeSrc":"40938:6:94","nodeType":"YulIdentifier","src":"40938:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29448,"isOffset":false,"isSlot":false,"src":"40969:6:94","valueSize":1},{"declaration":29454,"isOffset":false,"isSlot":false,"src":"40982:8:94","valueSize":1},{"declaration":29451,"isOffset":false,"isSlot":false,"src":"40938:6:94","valueSize":1},{"declaration":29444,"isOffset":false,"isSlot":false,"src":"40952:4:94","valueSize":1},{"declaration":29446,"isOffset":false,"isSlot":false,"src":"40888:5:94","valueSize":1},{"declaration":29446,"isOffset":false,"isSlot":false,"src":"40901:5:94","valueSize":1},{"declaration":29446,"isOffset":false,"isSlot":false,"src":"40992:5:94","valueSize":1}],"flags":["memory-safe"],"id":29460,"nodeType":"InlineAssembly","src":"40849:161:94"}]},"id":29462,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_4","nameLocation":"40691:12:94","nodeType":"FunctionDefinition","parameters":{"id":29449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29444,"mutability":"mutable","name":"self","nameLocation":"40712:4:94","nodeType":"VariableDeclaration","scope":29462,"src":"40704:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29443,"name":"bytes22","nodeType":"ElementaryTypeName","src":"40704:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29446,"mutability":"mutable","name":"value","nameLocation":"40725:5:94","nodeType":"VariableDeclaration","scope":29462,"src":"40718:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29445,"name":"bytes4","nodeType":"ElementaryTypeName","src":"40718:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":29448,"mutability":"mutable","name":"offset","nameLocation":"40738:6:94","nodeType":"VariableDeclaration","scope":29462,"src":"40732:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29447,"name":"uint8","nodeType":"ElementaryTypeName","src":"40732:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"40703:42:94"},"returnParameters":{"id":29452,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29451,"mutability":"mutable","name":"result","nameLocation":"40777:6:94","nodeType":"VariableDeclaration","scope":29462,"src":"40769:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29450,"name":"bytes22","nodeType":"ElementaryTypeName","src":"40769:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"40768:16:94"},"scope":30945,"src":"40682:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29479,"nodeType":"Block","src":"41110:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29471,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29466,"src":"41124:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3136","id":29472,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"41133:2:94","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"41124:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29477,"nodeType":"IfStatement","src":"41120:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29474,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"41144:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29475,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41144:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29476,"nodeType":"RevertStatement","src":"41137:25:94"}},{"AST":{"nativeSrc":"41197:82:94","nodeType":"YulBlock","src":"41197:82:94","statements":[{"nativeSrc":"41211:58:94","nodeType":"YulAssignment","src":"41211:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"41233:1:94","nodeType":"YulLiteral","src":"41233:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"41236:6:94","nodeType":"YulIdentifier","src":"41236:6:94"}],"functionName":{"name":"mul","nativeSrc":"41229:3:94","nodeType":"YulIdentifier","src":"41229:3:94"},"nativeSrc":"41229:14:94","nodeType":"YulFunctionCall","src":"41229:14:94"},{"name":"self","nativeSrc":"41245:4:94","nodeType":"YulIdentifier","src":"41245:4:94"}],"functionName":{"name":"shl","nativeSrc":"41225:3:94","nodeType":"YulIdentifier","src":"41225:3:94"},"nativeSrc":"41225:25:94","nodeType":"YulFunctionCall","src":"41225:25:94"},{"arguments":[{"kind":"number","nativeSrc":"41256:3:94","nodeType":"YulLiteral","src":"41256:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"41265:1:94","nodeType":"YulLiteral","src":"41265:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"41261:3:94","nodeType":"YulIdentifier","src":"41261:3:94"},"nativeSrc":"41261:6:94","nodeType":"YulFunctionCall","src":"41261:6:94"}],"functionName":{"name":"shl","nativeSrc":"41252:3:94","nodeType":"YulIdentifier","src":"41252:3:94"},"nativeSrc":"41252:16:94","nodeType":"YulFunctionCall","src":"41252:16:94"}],"functionName":{"name":"and","nativeSrc":"41221:3:94","nodeType":"YulIdentifier","src":"41221:3:94"},"nativeSrc":"41221:48:94","nodeType":"YulFunctionCall","src":"41221:48:94"},"variableNames":[{"name":"result","nativeSrc":"41211:6:94","nodeType":"YulIdentifier","src":"41211:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29466,"isOffset":false,"isSlot":false,"src":"41236:6:94","valueSize":1},{"declaration":29469,"isOffset":false,"isSlot":false,"src":"41211:6:94","valueSize":1},{"declaration":29464,"isOffset":false,"isSlot":false,"src":"41245:4:94","valueSize":1}],"flags":["memory-safe"],"id":29478,"nodeType":"InlineAssembly","src":"41172:107:94"}]},"id":29480,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_6","nameLocation":"41031:12:94","nodeType":"FunctionDefinition","parameters":{"id":29467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29464,"mutability":"mutable","name":"self","nameLocation":"41052:4:94","nodeType":"VariableDeclaration","scope":29480,"src":"41044:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29463,"name":"bytes22","nodeType":"ElementaryTypeName","src":"41044:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29466,"mutability":"mutable","name":"offset","nameLocation":"41064:6:94","nodeType":"VariableDeclaration","scope":29480,"src":"41058:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29465,"name":"uint8","nodeType":"ElementaryTypeName","src":"41058:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"41043:28:94"},"returnParameters":{"id":29470,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29469,"mutability":"mutable","name":"result","nameLocation":"41102:6:94","nodeType":"VariableDeclaration","scope":29480,"src":"41095:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":29468,"name":"bytes6","nodeType":"ElementaryTypeName","src":"41095:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"41094:15:94"},"scope":30945,"src":"41022:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29499,"nodeType":"Block","src":"41394:231:94","statements":[{"assignments":[29492],"declarations":[{"constant":false,"id":29492,"mutability":"mutable","name":"oldValue","nameLocation":"41411:8:94","nodeType":"VariableDeclaration","scope":29499,"src":"41404:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":29491,"name":"bytes6","nodeType":"ElementaryTypeName","src":"41404:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":29497,"initialValue":{"arguments":[{"id":29494,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29482,"src":"41435:4:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":29495,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29486,"src":"41441:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29493,"name":"extract_22_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29480,"src":"41422:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes22,uint8) pure returns (bytes6)"}},"id":29496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41422:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"41404:44:94"},{"AST":{"nativeSrc":"41483:136:94","nodeType":"YulBlock","src":"41483:136:94","statements":[{"nativeSrc":"41497:37:94","nodeType":"YulAssignment","src":"41497:37:94","value":{"arguments":[{"name":"value","nativeSrc":"41510:5:94","nodeType":"YulIdentifier","src":"41510:5:94"},{"arguments":[{"kind":"number","nativeSrc":"41521:3:94","nodeType":"YulLiteral","src":"41521:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"41530:1:94","nodeType":"YulLiteral","src":"41530:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"41526:3:94","nodeType":"YulIdentifier","src":"41526:3:94"},"nativeSrc":"41526:6:94","nodeType":"YulFunctionCall","src":"41526:6:94"}],"functionName":{"name":"shl","nativeSrc":"41517:3:94","nodeType":"YulIdentifier","src":"41517:3:94"},"nativeSrc":"41517:16:94","nodeType":"YulFunctionCall","src":"41517:16:94"}],"functionName":{"name":"and","nativeSrc":"41506:3:94","nodeType":"YulIdentifier","src":"41506:3:94"},"nativeSrc":"41506:28:94","nodeType":"YulFunctionCall","src":"41506:28:94"},"variableNames":[{"name":"value","nativeSrc":"41497:5:94","nodeType":"YulIdentifier","src":"41497:5:94"}]},{"nativeSrc":"41547:62:94","nodeType":"YulAssignment","src":"41547:62:94","value":{"arguments":[{"name":"self","nativeSrc":"41561:4:94","nodeType":"YulIdentifier","src":"41561:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"41575:1:94","nodeType":"YulLiteral","src":"41575:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"41578:6:94","nodeType":"YulIdentifier","src":"41578:6:94"}],"functionName":{"name":"mul","nativeSrc":"41571:3:94","nodeType":"YulIdentifier","src":"41571:3:94"},"nativeSrc":"41571:14:94","nodeType":"YulFunctionCall","src":"41571:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"41591:8:94","nodeType":"YulIdentifier","src":"41591:8:94"},{"name":"value","nativeSrc":"41601:5:94","nodeType":"YulIdentifier","src":"41601:5:94"}],"functionName":{"name":"xor","nativeSrc":"41587:3:94","nodeType":"YulIdentifier","src":"41587:3:94"},"nativeSrc":"41587:20:94","nodeType":"YulFunctionCall","src":"41587:20:94"}],"functionName":{"name":"shr","nativeSrc":"41567:3:94","nodeType":"YulIdentifier","src":"41567:3:94"},"nativeSrc":"41567:41:94","nodeType":"YulFunctionCall","src":"41567:41:94"}],"functionName":{"name":"xor","nativeSrc":"41557:3:94","nodeType":"YulIdentifier","src":"41557:3:94"},"nativeSrc":"41557:52:94","nodeType":"YulFunctionCall","src":"41557:52:94"},"variableNames":[{"name":"result","nativeSrc":"41547:6:94","nodeType":"YulIdentifier","src":"41547:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29486,"isOffset":false,"isSlot":false,"src":"41578:6:94","valueSize":1},{"declaration":29492,"isOffset":false,"isSlot":false,"src":"41591:8:94","valueSize":1},{"declaration":29489,"isOffset":false,"isSlot":false,"src":"41547:6:94","valueSize":1},{"declaration":29482,"isOffset":false,"isSlot":false,"src":"41561:4:94","valueSize":1},{"declaration":29484,"isOffset":false,"isSlot":false,"src":"41497:5:94","valueSize":1},{"declaration":29484,"isOffset":false,"isSlot":false,"src":"41510:5:94","valueSize":1},{"declaration":29484,"isOffset":false,"isSlot":false,"src":"41601:5:94","valueSize":1}],"flags":["memory-safe"],"id":29498,"nodeType":"InlineAssembly","src":"41458:161:94"}]},"id":29500,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_6","nameLocation":"41300:12:94","nodeType":"FunctionDefinition","parameters":{"id":29487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29482,"mutability":"mutable","name":"self","nameLocation":"41321:4:94","nodeType":"VariableDeclaration","scope":29500,"src":"41313:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29481,"name":"bytes22","nodeType":"ElementaryTypeName","src":"41313:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29484,"mutability":"mutable","name":"value","nameLocation":"41334:5:94","nodeType":"VariableDeclaration","scope":29500,"src":"41327:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":29483,"name":"bytes6","nodeType":"ElementaryTypeName","src":"41327:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":29486,"mutability":"mutable","name":"offset","nameLocation":"41347:6:94","nodeType":"VariableDeclaration","scope":29500,"src":"41341:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29485,"name":"uint8","nodeType":"ElementaryTypeName","src":"41341:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"41312:42:94"},"returnParameters":{"id":29490,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29489,"mutability":"mutable","name":"result","nameLocation":"41386:6:94","nodeType":"VariableDeclaration","scope":29500,"src":"41378:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29488,"name":"bytes22","nodeType":"ElementaryTypeName","src":"41378:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"41377:16:94"},"scope":30945,"src":"41291:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29517,"nodeType":"Block","src":"41719:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29509,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29504,"src":"41733:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3134","id":29510,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"41742:2:94","typeDescriptions":{"typeIdentifier":"t_rational_14_by_1","typeString":"int_const 14"},"value":"14"},"src":"41733:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29515,"nodeType":"IfStatement","src":"41729:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29512,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"41753:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29513,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41753:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29514,"nodeType":"RevertStatement","src":"41746:25:94"}},{"AST":{"nativeSrc":"41806:82:94","nodeType":"YulBlock","src":"41806:82:94","statements":[{"nativeSrc":"41820:58:94","nodeType":"YulAssignment","src":"41820:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"41842:1:94","nodeType":"YulLiteral","src":"41842:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"41845:6:94","nodeType":"YulIdentifier","src":"41845:6:94"}],"functionName":{"name":"mul","nativeSrc":"41838:3:94","nodeType":"YulIdentifier","src":"41838:3:94"},"nativeSrc":"41838:14:94","nodeType":"YulFunctionCall","src":"41838:14:94"},{"name":"self","nativeSrc":"41854:4:94","nodeType":"YulIdentifier","src":"41854:4:94"}],"functionName":{"name":"shl","nativeSrc":"41834:3:94","nodeType":"YulIdentifier","src":"41834:3:94"},"nativeSrc":"41834:25:94","nodeType":"YulFunctionCall","src":"41834:25:94"},{"arguments":[{"kind":"number","nativeSrc":"41865:3:94","nodeType":"YulLiteral","src":"41865:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"41874:1:94","nodeType":"YulLiteral","src":"41874:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"41870:3:94","nodeType":"YulIdentifier","src":"41870:3:94"},"nativeSrc":"41870:6:94","nodeType":"YulFunctionCall","src":"41870:6:94"}],"functionName":{"name":"shl","nativeSrc":"41861:3:94","nodeType":"YulIdentifier","src":"41861:3:94"},"nativeSrc":"41861:16:94","nodeType":"YulFunctionCall","src":"41861:16:94"}],"functionName":{"name":"and","nativeSrc":"41830:3:94","nodeType":"YulIdentifier","src":"41830:3:94"},"nativeSrc":"41830:48:94","nodeType":"YulFunctionCall","src":"41830:48:94"},"variableNames":[{"name":"result","nativeSrc":"41820:6:94","nodeType":"YulIdentifier","src":"41820:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29504,"isOffset":false,"isSlot":false,"src":"41845:6:94","valueSize":1},{"declaration":29507,"isOffset":false,"isSlot":false,"src":"41820:6:94","valueSize":1},{"declaration":29502,"isOffset":false,"isSlot":false,"src":"41854:4:94","valueSize":1}],"flags":["memory-safe"],"id":29516,"nodeType":"InlineAssembly","src":"41781:107:94"}]},"id":29518,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_8","nameLocation":"41640:12:94","nodeType":"FunctionDefinition","parameters":{"id":29505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29502,"mutability":"mutable","name":"self","nameLocation":"41661:4:94","nodeType":"VariableDeclaration","scope":29518,"src":"41653:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29501,"name":"bytes22","nodeType":"ElementaryTypeName","src":"41653:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29504,"mutability":"mutable","name":"offset","nameLocation":"41673:6:94","nodeType":"VariableDeclaration","scope":29518,"src":"41667:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29503,"name":"uint8","nodeType":"ElementaryTypeName","src":"41667:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"41652:28:94"},"returnParameters":{"id":29508,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29507,"mutability":"mutable","name":"result","nameLocation":"41711:6:94","nodeType":"VariableDeclaration","scope":29518,"src":"41704:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":29506,"name":"bytes8","nodeType":"ElementaryTypeName","src":"41704:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"41703:15:94"},"scope":30945,"src":"41631:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29537,"nodeType":"Block","src":"42003:231:94","statements":[{"assignments":[29530],"declarations":[{"constant":false,"id":29530,"mutability":"mutable","name":"oldValue","nameLocation":"42020:8:94","nodeType":"VariableDeclaration","scope":29537,"src":"42013:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":29529,"name":"bytes8","nodeType":"ElementaryTypeName","src":"42013:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"id":29535,"initialValue":{"arguments":[{"id":29532,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29520,"src":"42044:4:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":29533,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29524,"src":"42050:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29531,"name":"extract_22_8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29518,"src":"42031:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes8_$","typeString":"function (bytes22,uint8) pure returns (bytes8)"}},"id":29534,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42031:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"VariableDeclarationStatement","src":"42013:44:94"},{"AST":{"nativeSrc":"42092:136:94","nodeType":"YulBlock","src":"42092:136:94","statements":[{"nativeSrc":"42106:37:94","nodeType":"YulAssignment","src":"42106:37:94","value":{"arguments":[{"name":"value","nativeSrc":"42119:5:94","nodeType":"YulIdentifier","src":"42119:5:94"},{"arguments":[{"kind":"number","nativeSrc":"42130:3:94","nodeType":"YulLiteral","src":"42130:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"42139:1:94","nodeType":"YulLiteral","src":"42139:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"42135:3:94","nodeType":"YulIdentifier","src":"42135:3:94"},"nativeSrc":"42135:6:94","nodeType":"YulFunctionCall","src":"42135:6:94"}],"functionName":{"name":"shl","nativeSrc":"42126:3:94","nodeType":"YulIdentifier","src":"42126:3:94"},"nativeSrc":"42126:16:94","nodeType":"YulFunctionCall","src":"42126:16:94"}],"functionName":{"name":"and","nativeSrc":"42115:3:94","nodeType":"YulIdentifier","src":"42115:3:94"},"nativeSrc":"42115:28:94","nodeType":"YulFunctionCall","src":"42115:28:94"},"variableNames":[{"name":"value","nativeSrc":"42106:5:94","nodeType":"YulIdentifier","src":"42106:5:94"}]},{"nativeSrc":"42156:62:94","nodeType":"YulAssignment","src":"42156:62:94","value":{"arguments":[{"name":"self","nativeSrc":"42170:4:94","nodeType":"YulIdentifier","src":"42170:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42184:1:94","nodeType":"YulLiteral","src":"42184:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"42187:6:94","nodeType":"YulIdentifier","src":"42187:6:94"}],"functionName":{"name":"mul","nativeSrc":"42180:3:94","nodeType":"YulIdentifier","src":"42180:3:94"},"nativeSrc":"42180:14:94","nodeType":"YulFunctionCall","src":"42180:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"42200:8:94","nodeType":"YulIdentifier","src":"42200:8:94"},{"name":"value","nativeSrc":"42210:5:94","nodeType":"YulIdentifier","src":"42210:5:94"}],"functionName":{"name":"xor","nativeSrc":"42196:3:94","nodeType":"YulIdentifier","src":"42196:3:94"},"nativeSrc":"42196:20:94","nodeType":"YulFunctionCall","src":"42196:20:94"}],"functionName":{"name":"shr","nativeSrc":"42176:3:94","nodeType":"YulIdentifier","src":"42176:3:94"},"nativeSrc":"42176:41:94","nodeType":"YulFunctionCall","src":"42176:41:94"}],"functionName":{"name":"xor","nativeSrc":"42166:3:94","nodeType":"YulIdentifier","src":"42166:3:94"},"nativeSrc":"42166:52:94","nodeType":"YulFunctionCall","src":"42166:52:94"},"variableNames":[{"name":"result","nativeSrc":"42156:6:94","nodeType":"YulIdentifier","src":"42156:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29524,"isOffset":false,"isSlot":false,"src":"42187:6:94","valueSize":1},{"declaration":29530,"isOffset":false,"isSlot":false,"src":"42200:8:94","valueSize":1},{"declaration":29527,"isOffset":false,"isSlot":false,"src":"42156:6:94","valueSize":1},{"declaration":29520,"isOffset":false,"isSlot":false,"src":"42170:4:94","valueSize":1},{"declaration":29522,"isOffset":false,"isSlot":false,"src":"42106:5:94","valueSize":1},{"declaration":29522,"isOffset":false,"isSlot":false,"src":"42119:5:94","valueSize":1},{"declaration":29522,"isOffset":false,"isSlot":false,"src":"42210:5:94","valueSize":1}],"flags":["memory-safe"],"id":29536,"nodeType":"InlineAssembly","src":"42067:161:94"}]},"id":29538,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_8","nameLocation":"41909:12:94","nodeType":"FunctionDefinition","parameters":{"id":29525,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29520,"mutability":"mutable","name":"self","nameLocation":"41930:4:94","nodeType":"VariableDeclaration","scope":29538,"src":"41922:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29519,"name":"bytes22","nodeType":"ElementaryTypeName","src":"41922:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29522,"mutability":"mutable","name":"value","nameLocation":"41943:5:94","nodeType":"VariableDeclaration","scope":29538,"src":"41936:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":29521,"name":"bytes8","nodeType":"ElementaryTypeName","src":"41936:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":29524,"mutability":"mutable","name":"offset","nameLocation":"41956:6:94","nodeType":"VariableDeclaration","scope":29538,"src":"41950:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29523,"name":"uint8","nodeType":"ElementaryTypeName","src":"41950:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"41921:42:94"},"returnParameters":{"id":29528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29527,"mutability":"mutable","name":"result","nameLocation":"41995:6:94","nodeType":"VariableDeclaration","scope":29538,"src":"41987:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29526,"name":"bytes22","nodeType":"ElementaryTypeName","src":"41987:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"41986:16:94"},"scope":30945,"src":"41900:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29555,"nodeType":"Block","src":"42330:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29547,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29542,"src":"42344:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3132","id":29548,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"42353:2:94","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"src":"42344:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29553,"nodeType":"IfStatement","src":"42340:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29550,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"42364:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42364:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29552,"nodeType":"RevertStatement","src":"42357:25:94"}},{"AST":{"nativeSrc":"42417:82:94","nodeType":"YulBlock","src":"42417:82:94","statements":[{"nativeSrc":"42431:58:94","nodeType":"YulAssignment","src":"42431:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42453:1:94","nodeType":"YulLiteral","src":"42453:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"42456:6:94","nodeType":"YulIdentifier","src":"42456:6:94"}],"functionName":{"name":"mul","nativeSrc":"42449:3:94","nodeType":"YulIdentifier","src":"42449:3:94"},"nativeSrc":"42449:14:94","nodeType":"YulFunctionCall","src":"42449:14:94"},{"name":"self","nativeSrc":"42465:4:94","nodeType":"YulIdentifier","src":"42465:4:94"}],"functionName":{"name":"shl","nativeSrc":"42445:3:94","nodeType":"YulIdentifier","src":"42445:3:94"},"nativeSrc":"42445:25:94","nodeType":"YulFunctionCall","src":"42445:25:94"},{"arguments":[{"kind":"number","nativeSrc":"42476:3:94","nodeType":"YulLiteral","src":"42476:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"42485:1:94","nodeType":"YulLiteral","src":"42485:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"42481:3:94","nodeType":"YulIdentifier","src":"42481:3:94"},"nativeSrc":"42481:6:94","nodeType":"YulFunctionCall","src":"42481:6:94"}],"functionName":{"name":"shl","nativeSrc":"42472:3:94","nodeType":"YulIdentifier","src":"42472:3:94"},"nativeSrc":"42472:16:94","nodeType":"YulFunctionCall","src":"42472:16:94"}],"functionName":{"name":"and","nativeSrc":"42441:3:94","nodeType":"YulIdentifier","src":"42441:3:94"},"nativeSrc":"42441:48:94","nodeType":"YulFunctionCall","src":"42441:48:94"},"variableNames":[{"name":"result","nativeSrc":"42431:6:94","nodeType":"YulIdentifier","src":"42431:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29542,"isOffset":false,"isSlot":false,"src":"42456:6:94","valueSize":1},{"declaration":29545,"isOffset":false,"isSlot":false,"src":"42431:6:94","valueSize":1},{"declaration":29540,"isOffset":false,"isSlot":false,"src":"42465:4:94","valueSize":1}],"flags":["memory-safe"],"id":29554,"nodeType":"InlineAssembly","src":"42392:107:94"}]},"id":29556,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_10","nameLocation":"42249:13:94","nodeType":"FunctionDefinition","parameters":{"id":29543,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29540,"mutability":"mutable","name":"self","nameLocation":"42271:4:94","nodeType":"VariableDeclaration","scope":29556,"src":"42263:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29539,"name":"bytes22","nodeType":"ElementaryTypeName","src":"42263:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29542,"mutability":"mutable","name":"offset","nameLocation":"42283:6:94","nodeType":"VariableDeclaration","scope":29556,"src":"42277:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29541,"name":"uint8","nodeType":"ElementaryTypeName","src":"42277:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"42262:28:94"},"returnParameters":{"id":29546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29545,"mutability":"mutable","name":"result","nameLocation":"42322:6:94","nodeType":"VariableDeclaration","scope":29556,"src":"42314:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":29544,"name":"bytes10","nodeType":"ElementaryTypeName","src":"42314:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"42313:16:94"},"scope":30945,"src":"42240:265:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29575,"nodeType":"Block","src":"42616:233:94","statements":[{"assignments":[29568],"declarations":[{"constant":false,"id":29568,"mutability":"mutable","name":"oldValue","nameLocation":"42634:8:94","nodeType":"VariableDeclaration","scope":29575,"src":"42626:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":29567,"name":"bytes10","nodeType":"ElementaryTypeName","src":"42626:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":29573,"initialValue":{"arguments":[{"id":29570,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29558,"src":"42659:4:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":29571,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29562,"src":"42665:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29569,"name":"extract_22_10","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29556,"src":"42645:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes10_$","typeString":"function (bytes22,uint8) pure returns (bytes10)"}},"id":29572,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42645:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"42626:46:94"},{"AST":{"nativeSrc":"42707:136:94","nodeType":"YulBlock","src":"42707:136:94","statements":[{"nativeSrc":"42721:37:94","nodeType":"YulAssignment","src":"42721:37:94","value":{"arguments":[{"name":"value","nativeSrc":"42734:5:94","nodeType":"YulIdentifier","src":"42734:5:94"},{"arguments":[{"kind":"number","nativeSrc":"42745:3:94","nodeType":"YulLiteral","src":"42745:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"42754:1:94","nodeType":"YulLiteral","src":"42754:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"42750:3:94","nodeType":"YulIdentifier","src":"42750:3:94"},"nativeSrc":"42750:6:94","nodeType":"YulFunctionCall","src":"42750:6:94"}],"functionName":{"name":"shl","nativeSrc":"42741:3:94","nodeType":"YulIdentifier","src":"42741:3:94"},"nativeSrc":"42741:16:94","nodeType":"YulFunctionCall","src":"42741:16:94"}],"functionName":{"name":"and","nativeSrc":"42730:3:94","nodeType":"YulIdentifier","src":"42730:3:94"},"nativeSrc":"42730:28:94","nodeType":"YulFunctionCall","src":"42730:28:94"},"variableNames":[{"name":"value","nativeSrc":"42721:5:94","nodeType":"YulIdentifier","src":"42721:5:94"}]},{"nativeSrc":"42771:62:94","nodeType":"YulAssignment","src":"42771:62:94","value":{"arguments":[{"name":"self","nativeSrc":"42785:4:94","nodeType":"YulIdentifier","src":"42785:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42799:1:94","nodeType":"YulLiteral","src":"42799:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"42802:6:94","nodeType":"YulIdentifier","src":"42802:6:94"}],"functionName":{"name":"mul","nativeSrc":"42795:3:94","nodeType":"YulIdentifier","src":"42795:3:94"},"nativeSrc":"42795:14:94","nodeType":"YulFunctionCall","src":"42795:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"42815:8:94","nodeType":"YulIdentifier","src":"42815:8:94"},{"name":"value","nativeSrc":"42825:5:94","nodeType":"YulIdentifier","src":"42825:5:94"}],"functionName":{"name":"xor","nativeSrc":"42811:3:94","nodeType":"YulIdentifier","src":"42811:3:94"},"nativeSrc":"42811:20:94","nodeType":"YulFunctionCall","src":"42811:20:94"}],"functionName":{"name":"shr","nativeSrc":"42791:3:94","nodeType":"YulIdentifier","src":"42791:3:94"},"nativeSrc":"42791:41:94","nodeType":"YulFunctionCall","src":"42791:41:94"}],"functionName":{"name":"xor","nativeSrc":"42781:3:94","nodeType":"YulIdentifier","src":"42781:3:94"},"nativeSrc":"42781:52:94","nodeType":"YulFunctionCall","src":"42781:52:94"},"variableNames":[{"name":"result","nativeSrc":"42771:6:94","nodeType":"YulIdentifier","src":"42771:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29562,"isOffset":false,"isSlot":false,"src":"42802:6:94","valueSize":1},{"declaration":29568,"isOffset":false,"isSlot":false,"src":"42815:8:94","valueSize":1},{"declaration":29565,"isOffset":false,"isSlot":false,"src":"42771:6:94","valueSize":1},{"declaration":29558,"isOffset":false,"isSlot":false,"src":"42785:4:94","valueSize":1},{"declaration":29560,"isOffset":false,"isSlot":false,"src":"42721:5:94","valueSize":1},{"declaration":29560,"isOffset":false,"isSlot":false,"src":"42734:5:94","valueSize":1},{"declaration":29560,"isOffset":false,"isSlot":false,"src":"42825:5:94","valueSize":1}],"flags":["memory-safe"],"id":29574,"nodeType":"InlineAssembly","src":"42682:161:94"}]},"id":29576,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_10","nameLocation":"42520:13:94","nodeType":"FunctionDefinition","parameters":{"id":29563,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29558,"mutability":"mutable","name":"self","nameLocation":"42542:4:94","nodeType":"VariableDeclaration","scope":29576,"src":"42534:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29557,"name":"bytes22","nodeType":"ElementaryTypeName","src":"42534:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29560,"mutability":"mutable","name":"value","nameLocation":"42556:5:94","nodeType":"VariableDeclaration","scope":29576,"src":"42548:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":29559,"name":"bytes10","nodeType":"ElementaryTypeName","src":"42548:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":29562,"mutability":"mutable","name":"offset","nameLocation":"42569:6:94","nodeType":"VariableDeclaration","scope":29576,"src":"42563:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29561,"name":"uint8","nodeType":"ElementaryTypeName","src":"42563:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"42533:43:94"},"returnParameters":{"id":29566,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29565,"mutability":"mutable","name":"result","nameLocation":"42608:6:94","nodeType":"VariableDeclaration","scope":29576,"src":"42600:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29564,"name":"bytes22","nodeType":"ElementaryTypeName","src":"42600:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"42599:16:94"},"scope":30945,"src":"42511:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29593,"nodeType":"Block","src":"42945:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29585,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29580,"src":"42959:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3130","id":29586,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"42968:2:94","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"42959:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29591,"nodeType":"IfStatement","src":"42955:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29588,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"42979:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29589,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42979:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29590,"nodeType":"RevertStatement","src":"42972:25:94"}},{"AST":{"nativeSrc":"43032:82:94","nodeType":"YulBlock","src":"43032:82:94","statements":[{"nativeSrc":"43046:58:94","nodeType":"YulAssignment","src":"43046:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"43068:1:94","nodeType":"YulLiteral","src":"43068:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"43071:6:94","nodeType":"YulIdentifier","src":"43071:6:94"}],"functionName":{"name":"mul","nativeSrc":"43064:3:94","nodeType":"YulIdentifier","src":"43064:3:94"},"nativeSrc":"43064:14:94","nodeType":"YulFunctionCall","src":"43064:14:94"},{"name":"self","nativeSrc":"43080:4:94","nodeType":"YulIdentifier","src":"43080:4:94"}],"functionName":{"name":"shl","nativeSrc":"43060:3:94","nodeType":"YulIdentifier","src":"43060:3:94"},"nativeSrc":"43060:25:94","nodeType":"YulFunctionCall","src":"43060:25:94"},{"arguments":[{"kind":"number","nativeSrc":"43091:3:94","nodeType":"YulLiteral","src":"43091:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"43100:1:94","nodeType":"YulLiteral","src":"43100:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"43096:3:94","nodeType":"YulIdentifier","src":"43096:3:94"},"nativeSrc":"43096:6:94","nodeType":"YulFunctionCall","src":"43096:6:94"}],"functionName":{"name":"shl","nativeSrc":"43087:3:94","nodeType":"YulIdentifier","src":"43087:3:94"},"nativeSrc":"43087:16:94","nodeType":"YulFunctionCall","src":"43087:16:94"}],"functionName":{"name":"and","nativeSrc":"43056:3:94","nodeType":"YulIdentifier","src":"43056:3:94"},"nativeSrc":"43056:48:94","nodeType":"YulFunctionCall","src":"43056:48:94"},"variableNames":[{"name":"result","nativeSrc":"43046:6:94","nodeType":"YulIdentifier","src":"43046:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29580,"isOffset":false,"isSlot":false,"src":"43071:6:94","valueSize":1},{"declaration":29583,"isOffset":false,"isSlot":false,"src":"43046:6:94","valueSize":1},{"declaration":29578,"isOffset":false,"isSlot":false,"src":"43080:4:94","valueSize":1}],"flags":["memory-safe"],"id":29592,"nodeType":"InlineAssembly","src":"43007:107:94"}]},"id":29594,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_12","nameLocation":"42864:13:94","nodeType":"FunctionDefinition","parameters":{"id":29581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29578,"mutability":"mutable","name":"self","nameLocation":"42886:4:94","nodeType":"VariableDeclaration","scope":29594,"src":"42878:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29577,"name":"bytes22","nodeType":"ElementaryTypeName","src":"42878:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29580,"mutability":"mutable","name":"offset","nameLocation":"42898:6:94","nodeType":"VariableDeclaration","scope":29594,"src":"42892:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29579,"name":"uint8","nodeType":"ElementaryTypeName","src":"42892:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"42877:28:94"},"returnParameters":{"id":29584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29583,"mutability":"mutable","name":"result","nameLocation":"42937:6:94","nodeType":"VariableDeclaration","scope":29594,"src":"42929:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":29582,"name":"bytes12","nodeType":"ElementaryTypeName","src":"42929:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"42928:16:94"},"scope":30945,"src":"42855:265:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29613,"nodeType":"Block","src":"43231:233:94","statements":[{"assignments":[29606],"declarations":[{"constant":false,"id":29606,"mutability":"mutable","name":"oldValue","nameLocation":"43249:8:94","nodeType":"VariableDeclaration","scope":29613,"src":"43241:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":29605,"name":"bytes12","nodeType":"ElementaryTypeName","src":"43241:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"id":29611,"initialValue":{"arguments":[{"id":29608,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29596,"src":"43274:4:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":29609,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29600,"src":"43280:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29607,"name":"extract_22_12","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29594,"src":"43260:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes12_$","typeString":"function (bytes22,uint8) pure returns (bytes12)"}},"id":29610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43260:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"nodeType":"VariableDeclarationStatement","src":"43241:46:94"},{"AST":{"nativeSrc":"43322:136:94","nodeType":"YulBlock","src":"43322:136:94","statements":[{"nativeSrc":"43336:37:94","nodeType":"YulAssignment","src":"43336:37:94","value":{"arguments":[{"name":"value","nativeSrc":"43349:5:94","nodeType":"YulIdentifier","src":"43349:5:94"},{"arguments":[{"kind":"number","nativeSrc":"43360:3:94","nodeType":"YulLiteral","src":"43360:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"43369:1:94","nodeType":"YulLiteral","src":"43369:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"43365:3:94","nodeType":"YulIdentifier","src":"43365:3:94"},"nativeSrc":"43365:6:94","nodeType":"YulFunctionCall","src":"43365:6:94"}],"functionName":{"name":"shl","nativeSrc":"43356:3:94","nodeType":"YulIdentifier","src":"43356:3:94"},"nativeSrc":"43356:16:94","nodeType":"YulFunctionCall","src":"43356:16:94"}],"functionName":{"name":"and","nativeSrc":"43345:3:94","nodeType":"YulIdentifier","src":"43345:3:94"},"nativeSrc":"43345:28:94","nodeType":"YulFunctionCall","src":"43345:28:94"},"variableNames":[{"name":"value","nativeSrc":"43336:5:94","nodeType":"YulIdentifier","src":"43336:5:94"}]},{"nativeSrc":"43386:62:94","nodeType":"YulAssignment","src":"43386:62:94","value":{"arguments":[{"name":"self","nativeSrc":"43400:4:94","nodeType":"YulIdentifier","src":"43400:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"43414:1:94","nodeType":"YulLiteral","src":"43414:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"43417:6:94","nodeType":"YulIdentifier","src":"43417:6:94"}],"functionName":{"name":"mul","nativeSrc":"43410:3:94","nodeType":"YulIdentifier","src":"43410:3:94"},"nativeSrc":"43410:14:94","nodeType":"YulFunctionCall","src":"43410:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"43430:8:94","nodeType":"YulIdentifier","src":"43430:8:94"},{"name":"value","nativeSrc":"43440:5:94","nodeType":"YulIdentifier","src":"43440:5:94"}],"functionName":{"name":"xor","nativeSrc":"43426:3:94","nodeType":"YulIdentifier","src":"43426:3:94"},"nativeSrc":"43426:20:94","nodeType":"YulFunctionCall","src":"43426:20:94"}],"functionName":{"name":"shr","nativeSrc":"43406:3:94","nodeType":"YulIdentifier","src":"43406:3:94"},"nativeSrc":"43406:41:94","nodeType":"YulFunctionCall","src":"43406:41:94"}],"functionName":{"name":"xor","nativeSrc":"43396:3:94","nodeType":"YulIdentifier","src":"43396:3:94"},"nativeSrc":"43396:52:94","nodeType":"YulFunctionCall","src":"43396:52:94"},"variableNames":[{"name":"result","nativeSrc":"43386:6:94","nodeType":"YulIdentifier","src":"43386:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29600,"isOffset":false,"isSlot":false,"src":"43417:6:94","valueSize":1},{"declaration":29606,"isOffset":false,"isSlot":false,"src":"43430:8:94","valueSize":1},{"declaration":29603,"isOffset":false,"isSlot":false,"src":"43386:6:94","valueSize":1},{"declaration":29596,"isOffset":false,"isSlot":false,"src":"43400:4:94","valueSize":1},{"declaration":29598,"isOffset":false,"isSlot":false,"src":"43336:5:94","valueSize":1},{"declaration":29598,"isOffset":false,"isSlot":false,"src":"43349:5:94","valueSize":1},{"declaration":29598,"isOffset":false,"isSlot":false,"src":"43440:5:94","valueSize":1}],"flags":["memory-safe"],"id":29612,"nodeType":"InlineAssembly","src":"43297:161:94"}]},"id":29614,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_12","nameLocation":"43135:13:94","nodeType":"FunctionDefinition","parameters":{"id":29601,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29596,"mutability":"mutable","name":"self","nameLocation":"43157:4:94","nodeType":"VariableDeclaration","scope":29614,"src":"43149:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29595,"name":"bytes22","nodeType":"ElementaryTypeName","src":"43149:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29598,"mutability":"mutable","name":"value","nameLocation":"43171:5:94","nodeType":"VariableDeclaration","scope":29614,"src":"43163:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":29597,"name":"bytes12","nodeType":"ElementaryTypeName","src":"43163:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":29600,"mutability":"mutable","name":"offset","nameLocation":"43184:6:94","nodeType":"VariableDeclaration","scope":29614,"src":"43178:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29599,"name":"uint8","nodeType":"ElementaryTypeName","src":"43178:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"43148:43:94"},"returnParameters":{"id":29604,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29603,"mutability":"mutable","name":"result","nameLocation":"43223:6:94","nodeType":"VariableDeclaration","scope":29614,"src":"43215:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29602,"name":"bytes22","nodeType":"ElementaryTypeName","src":"43215:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"43214:16:94"},"scope":30945,"src":"43126:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29631,"nodeType":"Block","src":"43560:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29623,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29618,"src":"43574:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"36","id":29624,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"43583:1:94","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"43574:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29629,"nodeType":"IfStatement","src":"43570:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29626,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"43593:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29627,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43593:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29628,"nodeType":"RevertStatement","src":"43586:25:94"}},{"AST":{"nativeSrc":"43646:82:94","nodeType":"YulBlock","src":"43646:82:94","statements":[{"nativeSrc":"43660:58:94","nodeType":"YulAssignment","src":"43660:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"43682:1:94","nodeType":"YulLiteral","src":"43682:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"43685:6:94","nodeType":"YulIdentifier","src":"43685:6:94"}],"functionName":{"name":"mul","nativeSrc":"43678:3:94","nodeType":"YulIdentifier","src":"43678:3:94"},"nativeSrc":"43678:14:94","nodeType":"YulFunctionCall","src":"43678:14:94"},{"name":"self","nativeSrc":"43694:4:94","nodeType":"YulIdentifier","src":"43694:4:94"}],"functionName":{"name":"shl","nativeSrc":"43674:3:94","nodeType":"YulIdentifier","src":"43674:3:94"},"nativeSrc":"43674:25:94","nodeType":"YulFunctionCall","src":"43674:25:94"},{"arguments":[{"kind":"number","nativeSrc":"43705:3:94","nodeType":"YulLiteral","src":"43705:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"43714:1:94","nodeType":"YulLiteral","src":"43714:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"43710:3:94","nodeType":"YulIdentifier","src":"43710:3:94"},"nativeSrc":"43710:6:94","nodeType":"YulFunctionCall","src":"43710:6:94"}],"functionName":{"name":"shl","nativeSrc":"43701:3:94","nodeType":"YulIdentifier","src":"43701:3:94"},"nativeSrc":"43701:16:94","nodeType":"YulFunctionCall","src":"43701:16:94"}],"functionName":{"name":"and","nativeSrc":"43670:3:94","nodeType":"YulIdentifier","src":"43670:3:94"},"nativeSrc":"43670:48:94","nodeType":"YulFunctionCall","src":"43670:48:94"},"variableNames":[{"name":"result","nativeSrc":"43660:6:94","nodeType":"YulIdentifier","src":"43660:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29618,"isOffset":false,"isSlot":false,"src":"43685:6:94","valueSize":1},{"declaration":29621,"isOffset":false,"isSlot":false,"src":"43660:6:94","valueSize":1},{"declaration":29616,"isOffset":false,"isSlot":false,"src":"43694:4:94","valueSize":1}],"flags":["memory-safe"],"id":29630,"nodeType":"InlineAssembly","src":"43621:107:94"}]},"id":29632,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_16","nameLocation":"43479:13:94","nodeType":"FunctionDefinition","parameters":{"id":29619,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29616,"mutability":"mutable","name":"self","nameLocation":"43501:4:94","nodeType":"VariableDeclaration","scope":29632,"src":"43493:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29615,"name":"bytes22","nodeType":"ElementaryTypeName","src":"43493:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29618,"mutability":"mutable","name":"offset","nameLocation":"43513:6:94","nodeType":"VariableDeclaration","scope":29632,"src":"43507:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29617,"name":"uint8","nodeType":"ElementaryTypeName","src":"43507:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"43492:28:94"},"returnParameters":{"id":29622,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29621,"mutability":"mutable","name":"result","nameLocation":"43552:6:94","nodeType":"VariableDeclaration","scope":29632,"src":"43544:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":29620,"name":"bytes16","nodeType":"ElementaryTypeName","src":"43544:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"43543:16:94"},"scope":30945,"src":"43470:264:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29651,"nodeType":"Block","src":"43845:233:94","statements":[{"assignments":[29644],"declarations":[{"constant":false,"id":29644,"mutability":"mutable","name":"oldValue","nameLocation":"43863:8:94","nodeType":"VariableDeclaration","scope":29651,"src":"43855:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":29643,"name":"bytes16","nodeType":"ElementaryTypeName","src":"43855:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"id":29649,"initialValue":{"arguments":[{"id":29646,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29634,"src":"43888:4:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":29647,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29638,"src":"43894:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29645,"name":"extract_22_16","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29632,"src":"43874:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes16_$","typeString":"function (bytes22,uint8) pure returns (bytes16)"}},"id":29648,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43874:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"VariableDeclarationStatement","src":"43855:46:94"},{"AST":{"nativeSrc":"43936:136:94","nodeType":"YulBlock","src":"43936:136:94","statements":[{"nativeSrc":"43950:37:94","nodeType":"YulAssignment","src":"43950:37:94","value":{"arguments":[{"name":"value","nativeSrc":"43963:5:94","nodeType":"YulIdentifier","src":"43963:5:94"},{"arguments":[{"kind":"number","nativeSrc":"43974:3:94","nodeType":"YulLiteral","src":"43974:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"43983:1:94","nodeType":"YulLiteral","src":"43983:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"43979:3:94","nodeType":"YulIdentifier","src":"43979:3:94"},"nativeSrc":"43979:6:94","nodeType":"YulFunctionCall","src":"43979:6:94"}],"functionName":{"name":"shl","nativeSrc":"43970:3:94","nodeType":"YulIdentifier","src":"43970:3:94"},"nativeSrc":"43970:16:94","nodeType":"YulFunctionCall","src":"43970:16:94"}],"functionName":{"name":"and","nativeSrc":"43959:3:94","nodeType":"YulIdentifier","src":"43959:3:94"},"nativeSrc":"43959:28:94","nodeType":"YulFunctionCall","src":"43959:28:94"},"variableNames":[{"name":"value","nativeSrc":"43950:5:94","nodeType":"YulIdentifier","src":"43950:5:94"}]},{"nativeSrc":"44000:62:94","nodeType":"YulAssignment","src":"44000:62:94","value":{"arguments":[{"name":"self","nativeSrc":"44014:4:94","nodeType":"YulIdentifier","src":"44014:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"44028:1:94","nodeType":"YulLiteral","src":"44028:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"44031:6:94","nodeType":"YulIdentifier","src":"44031:6:94"}],"functionName":{"name":"mul","nativeSrc":"44024:3:94","nodeType":"YulIdentifier","src":"44024:3:94"},"nativeSrc":"44024:14:94","nodeType":"YulFunctionCall","src":"44024:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"44044:8:94","nodeType":"YulIdentifier","src":"44044:8:94"},{"name":"value","nativeSrc":"44054:5:94","nodeType":"YulIdentifier","src":"44054:5:94"}],"functionName":{"name":"xor","nativeSrc":"44040:3:94","nodeType":"YulIdentifier","src":"44040:3:94"},"nativeSrc":"44040:20:94","nodeType":"YulFunctionCall","src":"44040:20:94"}],"functionName":{"name":"shr","nativeSrc":"44020:3:94","nodeType":"YulIdentifier","src":"44020:3:94"},"nativeSrc":"44020:41:94","nodeType":"YulFunctionCall","src":"44020:41:94"}],"functionName":{"name":"xor","nativeSrc":"44010:3:94","nodeType":"YulIdentifier","src":"44010:3:94"},"nativeSrc":"44010:52:94","nodeType":"YulFunctionCall","src":"44010:52:94"},"variableNames":[{"name":"result","nativeSrc":"44000:6:94","nodeType":"YulIdentifier","src":"44000:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29638,"isOffset":false,"isSlot":false,"src":"44031:6:94","valueSize":1},{"declaration":29644,"isOffset":false,"isSlot":false,"src":"44044:8:94","valueSize":1},{"declaration":29641,"isOffset":false,"isSlot":false,"src":"44000:6:94","valueSize":1},{"declaration":29634,"isOffset":false,"isSlot":false,"src":"44014:4:94","valueSize":1},{"declaration":29636,"isOffset":false,"isSlot":false,"src":"43950:5:94","valueSize":1},{"declaration":29636,"isOffset":false,"isSlot":false,"src":"43963:5:94","valueSize":1},{"declaration":29636,"isOffset":false,"isSlot":false,"src":"44054:5:94","valueSize":1}],"flags":["memory-safe"],"id":29650,"nodeType":"InlineAssembly","src":"43911:161:94"}]},"id":29652,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_16","nameLocation":"43749:13:94","nodeType":"FunctionDefinition","parameters":{"id":29639,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29634,"mutability":"mutable","name":"self","nameLocation":"43771:4:94","nodeType":"VariableDeclaration","scope":29652,"src":"43763:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29633,"name":"bytes22","nodeType":"ElementaryTypeName","src":"43763:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29636,"mutability":"mutable","name":"value","nameLocation":"43785:5:94","nodeType":"VariableDeclaration","scope":29652,"src":"43777:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":29635,"name":"bytes16","nodeType":"ElementaryTypeName","src":"43777:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":29638,"mutability":"mutable","name":"offset","nameLocation":"43798:6:94","nodeType":"VariableDeclaration","scope":29652,"src":"43792:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29637,"name":"uint8","nodeType":"ElementaryTypeName","src":"43792:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"43762:43:94"},"returnParameters":{"id":29642,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29641,"mutability":"mutable","name":"result","nameLocation":"43837:6:94","nodeType":"VariableDeclaration","scope":29652,"src":"43829:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29640,"name":"bytes22","nodeType":"ElementaryTypeName","src":"43829:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"43828:16:94"},"scope":30945,"src":"43740:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29669,"nodeType":"Block","src":"44174:173:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29663,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29661,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29656,"src":"44188:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"32","id":29662,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"44197:1:94","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"44188:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29667,"nodeType":"IfStatement","src":"44184:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29664,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"44207:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29665,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44207:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29666,"nodeType":"RevertStatement","src":"44200:25:94"}},{"AST":{"nativeSrc":"44260:81:94","nodeType":"YulBlock","src":"44260:81:94","statements":[{"nativeSrc":"44274:57:94","nodeType":"YulAssignment","src":"44274:57:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"44296:1:94","nodeType":"YulLiteral","src":"44296:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"44299:6:94","nodeType":"YulIdentifier","src":"44299:6:94"}],"functionName":{"name":"mul","nativeSrc":"44292:3:94","nodeType":"YulIdentifier","src":"44292:3:94"},"nativeSrc":"44292:14:94","nodeType":"YulFunctionCall","src":"44292:14:94"},{"name":"self","nativeSrc":"44308:4:94","nodeType":"YulIdentifier","src":"44308:4:94"}],"functionName":{"name":"shl","nativeSrc":"44288:3:94","nodeType":"YulIdentifier","src":"44288:3:94"},"nativeSrc":"44288:25:94","nodeType":"YulFunctionCall","src":"44288:25:94"},{"arguments":[{"kind":"number","nativeSrc":"44319:2:94","nodeType":"YulLiteral","src":"44319:2:94","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"44327:1:94","nodeType":"YulLiteral","src":"44327:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"44323:3:94","nodeType":"YulIdentifier","src":"44323:3:94"},"nativeSrc":"44323:6:94","nodeType":"YulFunctionCall","src":"44323:6:94"}],"functionName":{"name":"shl","nativeSrc":"44315:3:94","nodeType":"YulIdentifier","src":"44315:3:94"},"nativeSrc":"44315:15:94","nodeType":"YulFunctionCall","src":"44315:15:94"}],"functionName":{"name":"and","nativeSrc":"44284:3:94","nodeType":"YulIdentifier","src":"44284:3:94"},"nativeSrc":"44284:47:94","nodeType":"YulFunctionCall","src":"44284:47:94"},"variableNames":[{"name":"result","nativeSrc":"44274:6:94","nodeType":"YulIdentifier","src":"44274:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29656,"isOffset":false,"isSlot":false,"src":"44299:6:94","valueSize":1},{"declaration":29659,"isOffset":false,"isSlot":false,"src":"44274:6:94","valueSize":1},{"declaration":29654,"isOffset":false,"isSlot":false,"src":"44308:4:94","valueSize":1}],"flags":["memory-safe"],"id":29668,"nodeType":"InlineAssembly","src":"44235:106:94"}]},"id":29670,"implemented":true,"kind":"function","modifiers":[],"name":"extract_22_20","nameLocation":"44093:13:94","nodeType":"FunctionDefinition","parameters":{"id":29657,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29654,"mutability":"mutable","name":"self","nameLocation":"44115:4:94","nodeType":"VariableDeclaration","scope":29670,"src":"44107:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29653,"name":"bytes22","nodeType":"ElementaryTypeName","src":"44107:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29656,"mutability":"mutable","name":"offset","nameLocation":"44127:6:94","nodeType":"VariableDeclaration","scope":29670,"src":"44121:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29655,"name":"uint8","nodeType":"ElementaryTypeName","src":"44121:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"44106:28:94"},"returnParameters":{"id":29660,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29659,"mutability":"mutable","name":"result","nameLocation":"44166:6:94","nodeType":"VariableDeclaration","scope":29670,"src":"44158:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29658,"name":"bytes20","nodeType":"ElementaryTypeName","src":"44158:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"44157:16:94"},"scope":30945,"src":"44084:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29689,"nodeType":"Block","src":"44458:232:94","statements":[{"assignments":[29682],"declarations":[{"constant":false,"id":29682,"mutability":"mutable","name":"oldValue","nameLocation":"44476:8:94","nodeType":"VariableDeclaration","scope":29689,"src":"44468:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29681,"name":"bytes20","nodeType":"ElementaryTypeName","src":"44468:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"id":29687,"initialValue":{"arguments":[{"id":29684,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29672,"src":"44501:4:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},{"id":29685,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29676,"src":"44507:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes22","typeString":"bytes22"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29683,"name":"extract_22_20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29670,"src":"44487:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes22_$_t_uint8_$returns$_t_bytes20_$","typeString":"function (bytes22,uint8) pure returns (bytes20)"}},"id":29686,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44487:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"VariableDeclarationStatement","src":"44468:46:94"},{"AST":{"nativeSrc":"44549:135:94","nodeType":"YulBlock","src":"44549:135:94","statements":[{"nativeSrc":"44563:36:94","nodeType":"YulAssignment","src":"44563:36:94","value":{"arguments":[{"name":"value","nativeSrc":"44576:5:94","nodeType":"YulIdentifier","src":"44576:5:94"},{"arguments":[{"kind":"number","nativeSrc":"44587:2:94","nodeType":"YulLiteral","src":"44587:2:94","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"44595:1:94","nodeType":"YulLiteral","src":"44595:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"44591:3:94","nodeType":"YulIdentifier","src":"44591:3:94"},"nativeSrc":"44591:6:94","nodeType":"YulFunctionCall","src":"44591:6:94"}],"functionName":{"name":"shl","nativeSrc":"44583:3:94","nodeType":"YulIdentifier","src":"44583:3:94"},"nativeSrc":"44583:15:94","nodeType":"YulFunctionCall","src":"44583:15:94"}],"functionName":{"name":"and","nativeSrc":"44572:3:94","nodeType":"YulIdentifier","src":"44572:3:94"},"nativeSrc":"44572:27:94","nodeType":"YulFunctionCall","src":"44572:27:94"},"variableNames":[{"name":"value","nativeSrc":"44563:5:94","nodeType":"YulIdentifier","src":"44563:5:94"}]},{"nativeSrc":"44612:62:94","nodeType":"YulAssignment","src":"44612:62:94","value":{"arguments":[{"name":"self","nativeSrc":"44626:4:94","nodeType":"YulIdentifier","src":"44626:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"44640:1:94","nodeType":"YulLiteral","src":"44640:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"44643:6:94","nodeType":"YulIdentifier","src":"44643:6:94"}],"functionName":{"name":"mul","nativeSrc":"44636:3:94","nodeType":"YulIdentifier","src":"44636:3:94"},"nativeSrc":"44636:14:94","nodeType":"YulFunctionCall","src":"44636:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"44656:8:94","nodeType":"YulIdentifier","src":"44656:8:94"},{"name":"value","nativeSrc":"44666:5:94","nodeType":"YulIdentifier","src":"44666:5:94"}],"functionName":{"name":"xor","nativeSrc":"44652:3:94","nodeType":"YulIdentifier","src":"44652:3:94"},"nativeSrc":"44652:20:94","nodeType":"YulFunctionCall","src":"44652:20:94"}],"functionName":{"name":"shr","nativeSrc":"44632:3:94","nodeType":"YulIdentifier","src":"44632:3:94"},"nativeSrc":"44632:41:94","nodeType":"YulFunctionCall","src":"44632:41:94"}],"functionName":{"name":"xor","nativeSrc":"44622:3:94","nodeType":"YulIdentifier","src":"44622:3:94"},"nativeSrc":"44622:52:94","nodeType":"YulFunctionCall","src":"44622:52:94"},"variableNames":[{"name":"result","nativeSrc":"44612:6:94","nodeType":"YulIdentifier","src":"44612:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29676,"isOffset":false,"isSlot":false,"src":"44643:6:94","valueSize":1},{"declaration":29682,"isOffset":false,"isSlot":false,"src":"44656:8:94","valueSize":1},{"declaration":29679,"isOffset":false,"isSlot":false,"src":"44612:6:94","valueSize":1},{"declaration":29672,"isOffset":false,"isSlot":false,"src":"44626:4:94","valueSize":1},{"declaration":29674,"isOffset":false,"isSlot":false,"src":"44563:5:94","valueSize":1},{"declaration":29674,"isOffset":false,"isSlot":false,"src":"44576:5:94","valueSize":1},{"declaration":29674,"isOffset":false,"isSlot":false,"src":"44666:5:94","valueSize":1}],"flags":["memory-safe"],"id":29688,"nodeType":"InlineAssembly","src":"44524:160:94"}]},"id":29690,"implemented":true,"kind":"function","modifiers":[],"name":"replace_22_20","nameLocation":"44362:13:94","nodeType":"FunctionDefinition","parameters":{"id":29677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29672,"mutability":"mutable","name":"self","nameLocation":"44384:4:94","nodeType":"VariableDeclaration","scope":29690,"src":"44376:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29671,"name":"bytes22","nodeType":"ElementaryTypeName","src":"44376:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":29674,"mutability":"mutable","name":"value","nameLocation":"44398:5:94","nodeType":"VariableDeclaration","scope":29690,"src":"44390:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":29673,"name":"bytes20","nodeType":"ElementaryTypeName","src":"44390:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":29676,"mutability":"mutable","name":"offset","nameLocation":"44411:6:94","nodeType":"VariableDeclaration","scope":29690,"src":"44405:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29675,"name":"uint8","nodeType":"ElementaryTypeName","src":"44405:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"44375:43:94"},"returnParameters":{"id":29680,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29679,"mutability":"mutable","name":"result","nameLocation":"44450:6:94","nodeType":"VariableDeclaration","scope":29690,"src":"44442:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":29678,"name":"bytes22","nodeType":"ElementaryTypeName","src":"44442:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"44441:16:94"},"scope":30945,"src":"44353:337:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29707,"nodeType":"Block","src":"44784:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29699,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29694,"src":"44798:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3233","id":29700,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"44807:2:94","typeDescriptions":{"typeIdentifier":"t_rational_23_by_1","typeString":"int_const 23"},"value":"23"},"src":"44798:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29705,"nodeType":"IfStatement","src":"44794:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29702,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"44818:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29703,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44818:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29704,"nodeType":"RevertStatement","src":"44811:25:94"}},{"AST":{"nativeSrc":"44871:82:94","nodeType":"YulBlock","src":"44871:82:94","statements":[{"nativeSrc":"44885:58:94","nodeType":"YulAssignment","src":"44885:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"44907:1:94","nodeType":"YulLiteral","src":"44907:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"44910:6:94","nodeType":"YulIdentifier","src":"44910:6:94"}],"functionName":{"name":"mul","nativeSrc":"44903:3:94","nodeType":"YulIdentifier","src":"44903:3:94"},"nativeSrc":"44903:14:94","nodeType":"YulFunctionCall","src":"44903:14:94"},{"name":"self","nativeSrc":"44919:4:94","nodeType":"YulIdentifier","src":"44919:4:94"}],"functionName":{"name":"shl","nativeSrc":"44899:3:94","nodeType":"YulIdentifier","src":"44899:3:94"},"nativeSrc":"44899:25:94","nodeType":"YulFunctionCall","src":"44899:25:94"},{"arguments":[{"kind":"number","nativeSrc":"44930:3:94","nodeType":"YulLiteral","src":"44930:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"44939:1:94","nodeType":"YulLiteral","src":"44939:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"44935:3:94","nodeType":"YulIdentifier","src":"44935:3:94"},"nativeSrc":"44935:6:94","nodeType":"YulFunctionCall","src":"44935:6:94"}],"functionName":{"name":"shl","nativeSrc":"44926:3:94","nodeType":"YulIdentifier","src":"44926:3:94"},"nativeSrc":"44926:16:94","nodeType":"YulFunctionCall","src":"44926:16:94"}],"functionName":{"name":"and","nativeSrc":"44895:3:94","nodeType":"YulIdentifier","src":"44895:3:94"},"nativeSrc":"44895:48:94","nodeType":"YulFunctionCall","src":"44895:48:94"},"variableNames":[{"name":"result","nativeSrc":"44885:6:94","nodeType":"YulIdentifier","src":"44885:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29694,"isOffset":false,"isSlot":false,"src":"44910:6:94","valueSize":1},{"declaration":29697,"isOffset":false,"isSlot":false,"src":"44885:6:94","valueSize":1},{"declaration":29692,"isOffset":false,"isSlot":false,"src":"44919:4:94","valueSize":1}],"flags":["memory-safe"],"id":29706,"nodeType":"InlineAssembly","src":"44846:107:94"}]},"id":29708,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_1","nameLocation":"44705:12:94","nodeType":"FunctionDefinition","parameters":{"id":29695,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29692,"mutability":"mutable","name":"self","nameLocation":"44726:4:94","nodeType":"VariableDeclaration","scope":29708,"src":"44718:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29691,"name":"bytes24","nodeType":"ElementaryTypeName","src":"44718:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29694,"mutability":"mutable","name":"offset","nameLocation":"44738:6:94","nodeType":"VariableDeclaration","scope":29708,"src":"44732:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29693,"name":"uint8","nodeType":"ElementaryTypeName","src":"44732:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"44717:28:94"},"returnParameters":{"id":29698,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29697,"mutability":"mutable","name":"result","nameLocation":"44776:6:94","nodeType":"VariableDeclaration","scope":29708,"src":"44769:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":29696,"name":"bytes1","nodeType":"ElementaryTypeName","src":"44769:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"44768:15:94"},"scope":30945,"src":"44696:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29727,"nodeType":"Block","src":"45068:231:94","statements":[{"assignments":[29720],"declarations":[{"constant":false,"id":29720,"mutability":"mutable","name":"oldValue","nameLocation":"45085:8:94","nodeType":"VariableDeclaration","scope":29727,"src":"45078:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":29719,"name":"bytes1","nodeType":"ElementaryTypeName","src":"45078:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":29725,"initialValue":{"arguments":[{"id":29722,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29710,"src":"45109:4:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":29723,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29714,"src":"45115:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29721,"name":"extract_24_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29708,"src":"45096:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes24,uint8) pure returns (bytes1)"}},"id":29724,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45096:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"45078:44:94"},{"AST":{"nativeSrc":"45157:136:94","nodeType":"YulBlock","src":"45157:136:94","statements":[{"nativeSrc":"45171:37:94","nodeType":"YulAssignment","src":"45171:37:94","value":{"arguments":[{"name":"value","nativeSrc":"45184:5:94","nodeType":"YulIdentifier","src":"45184:5:94"},{"arguments":[{"kind":"number","nativeSrc":"45195:3:94","nodeType":"YulLiteral","src":"45195:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"45204:1:94","nodeType":"YulLiteral","src":"45204:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"45200:3:94","nodeType":"YulIdentifier","src":"45200:3:94"},"nativeSrc":"45200:6:94","nodeType":"YulFunctionCall","src":"45200:6:94"}],"functionName":{"name":"shl","nativeSrc":"45191:3:94","nodeType":"YulIdentifier","src":"45191:3:94"},"nativeSrc":"45191:16:94","nodeType":"YulFunctionCall","src":"45191:16:94"}],"functionName":{"name":"and","nativeSrc":"45180:3:94","nodeType":"YulIdentifier","src":"45180:3:94"},"nativeSrc":"45180:28:94","nodeType":"YulFunctionCall","src":"45180:28:94"},"variableNames":[{"name":"value","nativeSrc":"45171:5:94","nodeType":"YulIdentifier","src":"45171:5:94"}]},{"nativeSrc":"45221:62:94","nodeType":"YulAssignment","src":"45221:62:94","value":{"arguments":[{"name":"self","nativeSrc":"45235:4:94","nodeType":"YulIdentifier","src":"45235:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"45249:1:94","nodeType":"YulLiteral","src":"45249:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"45252:6:94","nodeType":"YulIdentifier","src":"45252:6:94"}],"functionName":{"name":"mul","nativeSrc":"45245:3:94","nodeType":"YulIdentifier","src":"45245:3:94"},"nativeSrc":"45245:14:94","nodeType":"YulFunctionCall","src":"45245:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"45265:8:94","nodeType":"YulIdentifier","src":"45265:8:94"},{"name":"value","nativeSrc":"45275:5:94","nodeType":"YulIdentifier","src":"45275:5:94"}],"functionName":{"name":"xor","nativeSrc":"45261:3:94","nodeType":"YulIdentifier","src":"45261:3:94"},"nativeSrc":"45261:20:94","nodeType":"YulFunctionCall","src":"45261:20:94"}],"functionName":{"name":"shr","nativeSrc":"45241:3:94","nodeType":"YulIdentifier","src":"45241:3:94"},"nativeSrc":"45241:41:94","nodeType":"YulFunctionCall","src":"45241:41:94"}],"functionName":{"name":"xor","nativeSrc":"45231:3:94","nodeType":"YulIdentifier","src":"45231:3:94"},"nativeSrc":"45231:52:94","nodeType":"YulFunctionCall","src":"45231:52:94"},"variableNames":[{"name":"result","nativeSrc":"45221:6:94","nodeType":"YulIdentifier","src":"45221:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29714,"isOffset":false,"isSlot":false,"src":"45252:6:94","valueSize":1},{"declaration":29720,"isOffset":false,"isSlot":false,"src":"45265:8:94","valueSize":1},{"declaration":29717,"isOffset":false,"isSlot":false,"src":"45221:6:94","valueSize":1},{"declaration":29710,"isOffset":false,"isSlot":false,"src":"45235:4:94","valueSize":1},{"declaration":29712,"isOffset":false,"isSlot":false,"src":"45171:5:94","valueSize":1},{"declaration":29712,"isOffset":false,"isSlot":false,"src":"45184:5:94","valueSize":1},{"declaration":29712,"isOffset":false,"isSlot":false,"src":"45275:5:94","valueSize":1}],"flags":["memory-safe"],"id":29726,"nodeType":"InlineAssembly","src":"45132:161:94"}]},"id":29728,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_1","nameLocation":"44974:12:94","nodeType":"FunctionDefinition","parameters":{"id":29715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29710,"mutability":"mutable","name":"self","nameLocation":"44995:4:94","nodeType":"VariableDeclaration","scope":29728,"src":"44987:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29709,"name":"bytes24","nodeType":"ElementaryTypeName","src":"44987:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29712,"mutability":"mutable","name":"value","nameLocation":"45008:5:94","nodeType":"VariableDeclaration","scope":29728,"src":"45001:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":29711,"name":"bytes1","nodeType":"ElementaryTypeName","src":"45001:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":29714,"mutability":"mutable","name":"offset","nameLocation":"45021:6:94","nodeType":"VariableDeclaration","scope":29728,"src":"45015:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29713,"name":"uint8","nodeType":"ElementaryTypeName","src":"45015:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"44986:42:94"},"returnParameters":{"id":29718,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29717,"mutability":"mutable","name":"result","nameLocation":"45060:6:94","nodeType":"VariableDeclaration","scope":29728,"src":"45052:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29716,"name":"bytes24","nodeType":"ElementaryTypeName","src":"45052:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"45051:16:94"},"scope":30945,"src":"44965:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29745,"nodeType":"Block","src":"45393:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29737,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29732,"src":"45407:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3232","id":29738,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"45416:2:94","typeDescriptions":{"typeIdentifier":"t_rational_22_by_1","typeString":"int_const 22"},"value":"22"},"src":"45407:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29743,"nodeType":"IfStatement","src":"45403:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29740,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"45427:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29741,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45427:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29742,"nodeType":"RevertStatement","src":"45420:25:94"}},{"AST":{"nativeSrc":"45480:82:94","nodeType":"YulBlock","src":"45480:82:94","statements":[{"nativeSrc":"45494:58:94","nodeType":"YulAssignment","src":"45494:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"45516:1:94","nodeType":"YulLiteral","src":"45516:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"45519:6:94","nodeType":"YulIdentifier","src":"45519:6:94"}],"functionName":{"name":"mul","nativeSrc":"45512:3:94","nodeType":"YulIdentifier","src":"45512:3:94"},"nativeSrc":"45512:14:94","nodeType":"YulFunctionCall","src":"45512:14:94"},{"name":"self","nativeSrc":"45528:4:94","nodeType":"YulIdentifier","src":"45528:4:94"}],"functionName":{"name":"shl","nativeSrc":"45508:3:94","nodeType":"YulIdentifier","src":"45508:3:94"},"nativeSrc":"45508:25:94","nodeType":"YulFunctionCall","src":"45508:25:94"},{"arguments":[{"kind":"number","nativeSrc":"45539:3:94","nodeType":"YulLiteral","src":"45539:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"45548:1:94","nodeType":"YulLiteral","src":"45548:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"45544:3:94","nodeType":"YulIdentifier","src":"45544:3:94"},"nativeSrc":"45544:6:94","nodeType":"YulFunctionCall","src":"45544:6:94"}],"functionName":{"name":"shl","nativeSrc":"45535:3:94","nodeType":"YulIdentifier","src":"45535:3:94"},"nativeSrc":"45535:16:94","nodeType":"YulFunctionCall","src":"45535:16:94"}],"functionName":{"name":"and","nativeSrc":"45504:3:94","nodeType":"YulIdentifier","src":"45504:3:94"},"nativeSrc":"45504:48:94","nodeType":"YulFunctionCall","src":"45504:48:94"},"variableNames":[{"name":"result","nativeSrc":"45494:6:94","nodeType":"YulIdentifier","src":"45494:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29732,"isOffset":false,"isSlot":false,"src":"45519:6:94","valueSize":1},{"declaration":29735,"isOffset":false,"isSlot":false,"src":"45494:6:94","valueSize":1},{"declaration":29730,"isOffset":false,"isSlot":false,"src":"45528:4:94","valueSize":1}],"flags":["memory-safe"],"id":29744,"nodeType":"InlineAssembly","src":"45455:107:94"}]},"id":29746,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_2","nameLocation":"45314:12:94","nodeType":"FunctionDefinition","parameters":{"id":29733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29730,"mutability":"mutable","name":"self","nameLocation":"45335:4:94","nodeType":"VariableDeclaration","scope":29746,"src":"45327:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29729,"name":"bytes24","nodeType":"ElementaryTypeName","src":"45327:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29732,"mutability":"mutable","name":"offset","nameLocation":"45347:6:94","nodeType":"VariableDeclaration","scope":29746,"src":"45341:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29731,"name":"uint8","nodeType":"ElementaryTypeName","src":"45341:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"45326:28:94"},"returnParameters":{"id":29736,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29735,"mutability":"mutable","name":"result","nameLocation":"45385:6:94","nodeType":"VariableDeclaration","scope":29746,"src":"45378:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":29734,"name":"bytes2","nodeType":"ElementaryTypeName","src":"45378:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"45377:15:94"},"scope":30945,"src":"45305:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29765,"nodeType":"Block","src":"45677:231:94","statements":[{"assignments":[29758],"declarations":[{"constant":false,"id":29758,"mutability":"mutable","name":"oldValue","nameLocation":"45694:8:94","nodeType":"VariableDeclaration","scope":29765,"src":"45687:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":29757,"name":"bytes2","nodeType":"ElementaryTypeName","src":"45687:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":29763,"initialValue":{"arguments":[{"id":29760,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29748,"src":"45718:4:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":29761,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29752,"src":"45724:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29759,"name":"extract_24_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29746,"src":"45705:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes24,uint8) pure returns (bytes2)"}},"id":29762,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45705:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"45687:44:94"},{"AST":{"nativeSrc":"45766:136:94","nodeType":"YulBlock","src":"45766:136:94","statements":[{"nativeSrc":"45780:37:94","nodeType":"YulAssignment","src":"45780:37:94","value":{"arguments":[{"name":"value","nativeSrc":"45793:5:94","nodeType":"YulIdentifier","src":"45793:5:94"},{"arguments":[{"kind":"number","nativeSrc":"45804:3:94","nodeType":"YulLiteral","src":"45804:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"45813:1:94","nodeType":"YulLiteral","src":"45813:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"45809:3:94","nodeType":"YulIdentifier","src":"45809:3:94"},"nativeSrc":"45809:6:94","nodeType":"YulFunctionCall","src":"45809:6:94"}],"functionName":{"name":"shl","nativeSrc":"45800:3:94","nodeType":"YulIdentifier","src":"45800:3:94"},"nativeSrc":"45800:16:94","nodeType":"YulFunctionCall","src":"45800:16:94"}],"functionName":{"name":"and","nativeSrc":"45789:3:94","nodeType":"YulIdentifier","src":"45789:3:94"},"nativeSrc":"45789:28:94","nodeType":"YulFunctionCall","src":"45789:28:94"},"variableNames":[{"name":"value","nativeSrc":"45780:5:94","nodeType":"YulIdentifier","src":"45780:5:94"}]},{"nativeSrc":"45830:62:94","nodeType":"YulAssignment","src":"45830:62:94","value":{"arguments":[{"name":"self","nativeSrc":"45844:4:94","nodeType":"YulIdentifier","src":"45844:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"45858:1:94","nodeType":"YulLiteral","src":"45858:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"45861:6:94","nodeType":"YulIdentifier","src":"45861:6:94"}],"functionName":{"name":"mul","nativeSrc":"45854:3:94","nodeType":"YulIdentifier","src":"45854:3:94"},"nativeSrc":"45854:14:94","nodeType":"YulFunctionCall","src":"45854:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"45874:8:94","nodeType":"YulIdentifier","src":"45874:8:94"},{"name":"value","nativeSrc":"45884:5:94","nodeType":"YulIdentifier","src":"45884:5:94"}],"functionName":{"name":"xor","nativeSrc":"45870:3:94","nodeType":"YulIdentifier","src":"45870:3:94"},"nativeSrc":"45870:20:94","nodeType":"YulFunctionCall","src":"45870:20:94"}],"functionName":{"name":"shr","nativeSrc":"45850:3:94","nodeType":"YulIdentifier","src":"45850:3:94"},"nativeSrc":"45850:41:94","nodeType":"YulFunctionCall","src":"45850:41:94"}],"functionName":{"name":"xor","nativeSrc":"45840:3:94","nodeType":"YulIdentifier","src":"45840:3:94"},"nativeSrc":"45840:52:94","nodeType":"YulFunctionCall","src":"45840:52:94"},"variableNames":[{"name":"result","nativeSrc":"45830:6:94","nodeType":"YulIdentifier","src":"45830:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29752,"isOffset":false,"isSlot":false,"src":"45861:6:94","valueSize":1},{"declaration":29758,"isOffset":false,"isSlot":false,"src":"45874:8:94","valueSize":1},{"declaration":29755,"isOffset":false,"isSlot":false,"src":"45830:6:94","valueSize":1},{"declaration":29748,"isOffset":false,"isSlot":false,"src":"45844:4:94","valueSize":1},{"declaration":29750,"isOffset":false,"isSlot":false,"src":"45780:5:94","valueSize":1},{"declaration":29750,"isOffset":false,"isSlot":false,"src":"45793:5:94","valueSize":1},{"declaration":29750,"isOffset":false,"isSlot":false,"src":"45884:5:94","valueSize":1}],"flags":["memory-safe"],"id":29764,"nodeType":"InlineAssembly","src":"45741:161:94"}]},"id":29766,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_2","nameLocation":"45583:12:94","nodeType":"FunctionDefinition","parameters":{"id":29753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29748,"mutability":"mutable","name":"self","nameLocation":"45604:4:94","nodeType":"VariableDeclaration","scope":29766,"src":"45596:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29747,"name":"bytes24","nodeType":"ElementaryTypeName","src":"45596:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29750,"mutability":"mutable","name":"value","nameLocation":"45617:5:94","nodeType":"VariableDeclaration","scope":29766,"src":"45610:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":29749,"name":"bytes2","nodeType":"ElementaryTypeName","src":"45610:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":29752,"mutability":"mutable","name":"offset","nameLocation":"45630:6:94","nodeType":"VariableDeclaration","scope":29766,"src":"45624:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29751,"name":"uint8","nodeType":"ElementaryTypeName","src":"45624:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"45595:42:94"},"returnParameters":{"id":29756,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29755,"mutability":"mutable","name":"result","nameLocation":"45669:6:94","nodeType":"VariableDeclaration","scope":29766,"src":"45661:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29754,"name":"bytes24","nodeType":"ElementaryTypeName","src":"45661:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"45660:16:94"},"scope":30945,"src":"45574:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29783,"nodeType":"Block","src":"46002:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29777,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29775,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29770,"src":"46016:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3230","id":29776,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46025:2:94","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"src":"46016:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29781,"nodeType":"IfStatement","src":"46012:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29778,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"46036:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46036:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29780,"nodeType":"RevertStatement","src":"46029:25:94"}},{"AST":{"nativeSrc":"46089:82:94","nodeType":"YulBlock","src":"46089:82:94","statements":[{"nativeSrc":"46103:58:94","nodeType":"YulAssignment","src":"46103:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"46125:1:94","nodeType":"YulLiteral","src":"46125:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"46128:6:94","nodeType":"YulIdentifier","src":"46128:6:94"}],"functionName":{"name":"mul","nativeSrc":"46121:3:94","nodeType":"YulIdentifier","src":"46121:3:94"},"nativeSrc":"46121:14:94","nodeType":"YulFunctionCall","src":"46121:14:94"},{"name":"self","nativeSrc":"46137:4:94","nodeType":"YulIdentifier","src":"46137:4:94"}],"functionName":{"name":"shl","nativeSrc":"46117:3:94","nodeType":"YulIdentifier","src":"46117:3:94"},"nativeSrc":"46117:25:94","nodeType":"YulFunctionCall","src":"46117:25:94"},{"arguments":[{"kind":"number","nativeSrc":"46148:3:94","nodeType":"YulLiteral","src":"46148:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"46157:1:94","nodeType":"YulLiteral","src":"46157:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"46153:3:94","nodeType":"YulIdentifier","src":"46153:3:94"},"nativeSrc":"46153:6:94","nodeType":"YulFunctionCall","src":"46153:6:94"}],"functionName":{"name":"shl","nativeSrc":"46144:3:94","nodeType":"YulIdentifier","src":"46144:3:94"},"nativeSrc":"46144:16:94","nodeType":"YulFunctionCall","src":"46144:16:94"}],"functionName":{"name":"and","nativeSrc":"46113:3:94","nodeType":"YulIdentifier","src":"46113:3:94"},"nativeSrc":"46113:48:94","nodeType":"YulFunctionCall","src":"46113:48:94"},"variableNames":[{"name":"result","nativeSrc":"46103:6:94","nodeType":"YulIdentifier","src":"46103:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29770,"isOffset":false,"isSlot":false,"src":"46128:6:94","valueSize":1},{"declaration":29773,"isOffset":false,"isSlot":false,"src":"46103:6:94","valueSize":1},{"declaration":29768,"isOffset":false,"isSlot":false,"src":"46137:4:94","valueSize":1}],"flags":["memory-safe"],"id":29782,"nodeType":"InlineAssembly","src":"46064:107:94"}]},"id":29784,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_4","nameLocation":"45923:12:94","nodeType":"FunctionDefinition","parameters":{"id":29771,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29768,"mutability":"mutable","name":"self","nameLocation":"45944:4:94","nodeType":"VariableDeclaration","scope":29784,"src":"45936:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29767,"name":"bytes24","nodeType":"ElementaryTypeName","src":"45936:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29770,"mutability":"mutable","name":"offset","nameLocation":"45956:6:94","nodeType":"VariableDeclaration","scope":29784,"src":"45950:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29769,"name":"uint8","nodeType":"ElementaryTypeName","src":"45950:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"45935:28:94"},"returnParameters":{"id":29774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29773,"mutability":"mutable","name":"result","nameLocation":"45994:6:94","nodeType":"VariableDeclaration","scope":29784,"src":"45987:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29772,"name":"bytes4","nodeType":"ElementaryTypeName","src":"45987:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"45986:15:94"},"scope":30945,"src":"45914:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29803,"nodeType":"Block","src":"46286:231:94","statements":[{"assignments":[29796],"declarations":[{"constant":false,"id":29796,"mutability":"mutable","name":"oldValue","nameLocation":"46303:8:94","nodeType":"VariableDeclaration","scope":29803,"src":"46296:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29795,"name":"bytes4","nodeType":"ElementaryTypeName","src":"46296:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":29801,"initialValue":{"arguments":[{"id":29798,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29786,"src":"46327:4:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":29799,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29790,"src":"46333:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29797,"name":"extract_24_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29784,"src":"46314:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes24,uint8) pure returns (bytes4)"}},"id":29800,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46314:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"46296:44:94"},{"AST":{"nativeSrc":"46375:136:94","nodeType":"YulBlock","src":"46375:136:94","statements":[{"nativeSrc":"46389:37:94","nodeType":"YulAssignment","src":"46389:37:94","value":{"arguments":[{"name":"value","nativeSrc":"46402:5:94","nodeType":"YulIdentifier","src":"46402:5:94"},{"arguments":[{"kind":"number","nativeSrc":"46413:3:94","nodeType":"YulLiteral","src":"46413:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"46422:1:94","nodeType":"YulLiteral","src":"46422:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"46418:3:94","nodeType":"YulIdentifier","src":"46418:3:94"},"nativeSrc":"46418:6:94","nodeType":"YulFunctionCall","src":"46418:6:94"}],"functionName":{"name":"shl","nativeSrc":"46409:3:94","nodeType":"YulIdentifier","src":"46409:3:94"},"nativeSrc":"46409:16:94","nodeType":"YulFunctionCall","src":"46409:16:94"}],"functionName":{"name":"and","nativeSrc":"46398:3:94","nodeType":"YulIdentifier","src":"46398:3:94"},"nativeSrc":"46398:28:94","nodeType":"YulFunctionCall","src":"46398:28:94"},"variableNames":[{"name":"value","nativeSrc":"46389:5:94","nodeType":"YulIdentifier","src":"46389:5:94"}]},{"nativeSrc":"46439:62:94","nodeType":"YulAssignment","src":"46439:62:94","value":{"arguments":[{"name":"self","nativeSrc":"46453:4:94","nodeType":"YulIdentifier","src":"46453:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"46467:1:94","nodeType":"YulLiteral","src":"46467:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"46470:6:94","nodeType":"YulIdentifier","src":"46470:6:94"}],"functionName":{"name":"mul","nativeSrc":"46463:3:94","nodeType":"YulIdentifier","src":"46463:3:94"},"nativeSrc":"46463:14:94","nodeType":"YulFunctionCall","src":"46463:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"46483:8:94","nodeType":"YulIdentifier","src":"46483:8:94"},{"name":"value","nativeSrc":"46493:5:94","nodeType":"YulIdentifier","src":"46493:5:94"}],"functionName":{"name":"xor","nativeSrc":"46479:3:94","nodeType":"YulIdentifier","src":"46479:3:94"},"nativeSrc":"46479:20:94","nodeType":"YulFunctionCall","src":"46479:20:94"}],"functionName":{"name":"shr","nativeSrc":"46459:3:94","nodeType":"YulIdentifier","src":"46459:3:94"},"nativeSrc":"46459:41:94","nodeType":"YulFunctionCall","src":"46459:41:94"}],"functionName":{"name":"xor","nativeSrc":"46449:3:94","nodeType":"YulIdentifier","src":"46449:3:94"},"nativeSrc":"46449:52:94","nodeType":"YulFunctionCall","src":"46449:52:94"},"variableNames":[{"name":"result","nativeSrc":"46439:6:94","nodeType":"YulIdentifier","src":"46439:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29790,"isOffset":false,"isSlot":false,"src":"46470:6:94","valueSize":1},{"declaration":29796,"isOffset":false,"isSlot":false,"src":"46483:8:94","valueSize":1},{"declaration":29793,"isOffset":false,"isSlot":false,"src":"46439:6:94","valueSize":1},{"declaration":29786,"isOffset":false,"isSlot":false,"src":"46453:4:94","valueSize":1},{"declaration":29788,"isOffset":false,"isSlot":false,"src":"46389:5:94","valueSize":1},{"declaration":29788,"isOffset":false,"isSlot":false,"src":"46402:5:94","valueSize":1},{"declaration":29788,"isOffset":false,"isSlot":false,"src":"46493:5:94","valueSize":1}],"flags":["memory-safe"],"id":29802,"nodeType":"InlineAssembly","src":"46350:161:94"}]},"id":29804,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_4","nameLocation":"46192:12:94","nodeType":"FunctionDefinition","parameters":{"id":29791,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29786,"mutability":"mutable","name":"self","nameLocation":"46213:4:94","nodeType":"VariableDeclaration","scope":29804,"src":"46205:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29785,"name":"bytes24","nodeType":"ElementaryTypeName","src":"46205:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29788,"mutability":"mutable","name":"value","nameLocation":"46226:5:94","nodeType":"VariableDeclaration","scope":29804,"src":"46219:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":29787,"name":"bytes4","nodeType":"ElementaryTypeName","src":"46219:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":29790,"mutability":"mutable","name":"offset","nameLocation":"46239:6:94","nodeType":"VariableDeclaration","scope":29804,"src":"46233:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29789,"name":"uint8","nodeType":"ElementaryTypeName","src":"46233:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"46204:42:94"},"returnParameters":{"id":29794,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29793,"mutability":"mutable","name":"result","nameLocation":"46278:6:94","nodeType":"VariableDeclaration","scope":29804,"src":"46270:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29792,"name":"bytes24","nodeType":"ElementaryTypeName","src":"46270:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"46269:16:94"},"scope":30945,"src":"46183:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29821,"nodeType":"Block","src":"46611:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29815,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29813,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29808,"src":"46625:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3138","id":29814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46634:2:94","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"src":"46625:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29819,"nodeType":"IfStatement","src":"46621:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29816,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"46645:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46645:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29818,"nodeType":"RevertStatement","src":"46638:25:94"}},{"AST":{"nativeSrc":"46698:82:94","nodeType":"YulBlock","src":"46698:82:94","statements":[{"nativeSrc":"46712:58:94","nodeType":"YulAssignment","src":"46712:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"46734:1:94","nodeType":"YulLiteral","src":"46734:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"46737:6:94","nodeType":"YulIdentifier","src":"46737:6:94"}],"functionName":{"name":"mul","nativeSrc":"46730:3:94","nodeType":"YulIdentifier","src":"46730:3:94"},"nativeSrc":"46730:14:94","nodeType":"YulFunctionCall","src":"46730:14:94"},{"name":"self","nativeSrc":"46746:4:94","nodeType":"YulIdentifier","src":"46746:4:94"}],"functionName":{"name":"shl","nativeSrc":"46726:3:94","nodeType":"YulIdentifier","src":"46726:3:94"},"nativeSrc":"46726:25:94","nodeType":"YulFunctionCall","src":"46726:25:94"},{"arguments":[{"kind":"number","nativeSrc":"46757:3:94","nodeType":"YulLiteral","src":"46757:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"46766:1:94","nodeType":"YulLiteral","src":"46766:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"46762:3:94","nodeType":"YulIdentifier","src":"46762:3:94"},"nativeSrc":"46762:6:94","nodeType":"YulFunctionCall","src":"46762:6:94"}],"functionName":{"name":"shl","nativeSrc":"46753:3:94","nodeType":"YulIdentifier","src":"46753:3:94"},"nativeSrc":"46753:16:94","nodeType":"YulFunctionCall","src":"46753:16:94"}],"functionName":{"name":"and","nativeSrc":"46722:3:94","nodeType":"YulIdentifier","src":"46722:3:94"},"nativeSrc":"46722:48:94","nodeType":"YulFunctionCall","src":"46722:48:94"},"variableNames":[{"name":"result","nativeSrc":"46712:6:94","nodeType":"YulIdentifier","src":"46712:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29808,"isOffset":false,"isSlot":false,"src":"46737:6:94","valueSize":1},{"declaration":29811,"isOffset":false,"isSlot":false,"src":"46712:6:94","valueSize":1},{"declaration":29806,"isOffset":false,"isSlot":false,"src":"46746:4:94","valueSize":1}],"flags":["memory-safe"],"id":29820,"nodeType":"InlineAssembly","src":"46673:107:94"}]},"id":29822,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_6","nameLocation":"46532:12:94","nodeType":"FunctionDefinition","parameters":{"id":29809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29806,"mutability":"mutable","name":"self","nameLocation":"46553:4:94","nodeType":"VariableDeclaration","scope":29822,"src":"46545:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29805,"name":"bytes24","nodeType":"ElementaryTypeName","src":"46545:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29808,"mutability":"mutable","name":"offset","nameLocation":"46565:6:94","nodeType":"VariableDeclaration","scope":29822,"src":"46559:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29807,"name":"uint8","nodeType":"ElementaryTypeName","src":"46559:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"46544:28:94"},"returnParameters":{"id":29812,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29811,"mutability":"mutable","name":"result","nameLocation":"46603:6:94","nodeType":"VariableDeclaration","scope":29822,"src":"46596:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":29810,"name":"bytes6","nodeType":"ElementaryTypeName","src":"46596:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"46595:15:94"},"scope":30945,"src":"46523:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29841,"nodeType":"Block","src":"46895:231:94","statements":[{"assignments":[29834],"declarations":[{"constant":false,"id":29834,"mutability":"mutable","name":"oldValue","nameLocation":"46912:8:94","nodeType":"VariableDeclaration","scope":29841,"src":"46905:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":29833,"name":"bytes6","nodeType":"ElementaryTypeName","src":"46905:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":29839,"initialValue":{"arguments":[{"id":29836,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29824,"src":"46936:4:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":29837,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29828,"src":"46942:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29835,"name":"extract_24_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29822,"src":"46923:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes24,uint8) pure returns (bytes6)"}},"id":29838,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46923:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"46905:44:94"},{"AST":{"nativeSrc":"46984:136:94","nodeType":"YulBlock","src":"46984:136:94","statements":[{"nativeSrc":"46998:37:94","nodeType":"YulAssignment","src":"46998:37:94","value":{"arguments":[{"name":"value","nativeSrc":"47011:5:94","nodeType":"YulIdentifier","src":"47011:5:94"},{"arguments":[{"kind":"number","nativeSrc":"47022:3:94","nodeType":"YulLiteral","src":"47022:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"47031:1:94","nodeType":"YulLiteral","src":"47031:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"47027:3:94","nodeType":"YulIdentifier","src":"47027:3:94"},"nativeSrc":"47027:6:94","nodeType":"YulFunctionCall","src":"47027:6:94"}],"functionName":{"name":"shl","nativeSrc":"47018:3:94","nodeType":"YulIdentifier","src":"47018:3:94"},"nativeSrc":"47018:16:94","nodeType":"YulFunctionCall","src":"47018:16:94"}],"functionName":{"name":"and","nativeSrc":"47007:3:94","nodeType":"YulIdentifier","src":"47007:3:94"},"nativeSrc":"47007:28:94","nodeType":"YulFunctionCall","src":"47007:28:94"},"variableNames":[{"name":"value","nativeSrc":"46998:5:94","nodeType":"YulIdentifier","src":"46998:5:94"}]},{"nativeSrc":"47048:62:94","nodeType":"YulAssignment","src":"47048:62:94","value":{"arguments":[{"name":"self","nativeSrc":"47062:4:94","nodeType":"YulIdentifier","src":"47062:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"47076:1:94","nodeType":"YulLiteral","src":"47076:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"47079:6:94","nodeType":"YulIdentifier","src":"47079:6:94"}],"functionName":{"name":"mul","nativeSrc":"47072:3:94","nodeType":"YulIdentifier","src":"47072:3:94"},"nativeSrc":"47072:14:94","nodeType":"YulFunctionCall","src":"47072:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"47092:8:94","nodeType":"YulIdentifier","src":"47092:8:94"},{"name":"value","nativeSrc":"47102:5:94","nodeType":"YulIdentifier","src":"47102:5:94"}],"functionName":{"name":"xor","nativeSrc":"47088:3:94","nodeType":"YulIdentifier","src":"47088:3:94"},"nativeSrc":"47088:20:94","nodeType":"YulFunctionCall","src":"47088:20:94"}],"functionName":{"name":"shr","nativeSrc":"47068:3:94","nodeType":"YulIdentifier","src":"47068:3:94"},"nativeSrc":"47068:41:94","nodeType":"YulFunctionCall","src":"47068:41:94"}],"functionName":{"name":"xor","nativeSrc":"47058:3:94","nodeType":"YulIdentifier","src":"47058:3:94"},"nativeSrc":"47058:52:94","nodeType":"YulFunctionCall","src":"47058:52:94"},"variableNames":[{"name":"result","nativeSrc":"47048:6:94","nodeType":"YulIdentifier","src":"47048:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29828,"isOffset":false,"isSlot":false,"src":"47079:6:94","valueSize":1},{"declaration":29834,"isOffset":false,"isSlot":false,"src":"47092:8:94","valueSize":1},{"declaration":29831,"isOffset":false,"isSlot":false,"src":"47048:6:94","valueSize":1},{"declaration":29824,"isOffset":false,"isSlot":false,"src":"47062:4:94","valueSize":1},{"declaration":29826,"isOffset":false,"isSlot":false,"src":"46998:5:94","valueSize":1},{"declaration":29826,"isOffset":false,"isSlot":false,"src":"47011:5:94","valueSize":1},{"declaration":29826,"isOffset":false,"isSlot":false,"src":"47102:5:94","valueSize":1}],"flags":["memory-safe"],"id":29840,"nodeType":"InlineAssembly","src":"46959:161:94"}]},"id":29842,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_6","nameLocation":"46801:12:94","nodeType":"FunctionDefinition","parameters":{"id":29829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29824,"mutability":"mutable","name":"self","nameLocation":"46822:4:94","nodeType":"VariableDeclaration","scope":29842,"src":"46814:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29823,"name":"bytes24","nodeType":"ElementaryTypeName","src":"46814:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29826,"mutability":"mutable","name":"value","nameLocation":"46835:5:94","nodeType":"VariableDeclaration","scope":29842,"src":"46828:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":29825,"name":"bytes6","nodeType":"ElementaryTypeName","src":"46828:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":29828,"mutability":"mutable","name":"offset","nameLocation":"46848:6:94","nodeType":"VariableDeclaration","scope":29842,"src":"46842:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29827,"name":"uint8","nodeType":"ElementaryTypeName","src":"46842:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"46813:42:94"},"returnParameters":{"id":29832,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29831,"mutability":"mutable","name":"result","nameLocation":"46887:6:94","nodeType":"VariableDeclaration","scope":29842,"src":"46879:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29830,"name":"bytes24","nodeType":"ElementaryTypeName","src":"46879:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"46878:16:94"},"scope":30945,"src":"46792:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29859,"nodeType":"Block","src":"47220:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29851,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29846,"src":"47234:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3136","id":29852,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"47243:2:94","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"47234:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29857,"nodeType":"IfStatement","src":"47230:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29854,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"47254:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47254:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29856,"nodeType":"RevertStatement","src":"47247:25:94"}},{"AST":{"nativeSrc":"47307:82:94","nodeType":"YulBlock","src":"47307:82:94","statements":[{"nativeSrc":"47321:58:94","nodeType":"YulAssignment","src":"47321:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"47343:1:94","nodeType":"YulLiteral","src":"47343:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"47346:6:94","nodeType":"YulIdentifier","src":"47346:6:94"}],"functionName":{"name":"mul","nativeSrc":"47339:3:94","nodeType":"YulIdentifier","src":"47339:3:94"},"nativeSrc":"47339:14:94","nodeType":"YulFunctionCall","src":"47339:14:94"},{"name":"self","nativeSrc":"47355:4:94","nodeType":"YulIdentifier","src":"47355:4:94"}],"functionName":{"name":"shl","nativeSrc":"47335:3:94","nodeType":"YulIdentifier","src":"47335:3:94"},"nativeSrc":"47335:25:94","nodeType":"YulFunctionCall","src":"47335:25:94"},{"arguments":[{"kind":"number","nativeSrc":"47366:3:94","nodeType":"YulLiteral","src":"47366:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"47375:1:94","nodeType":"YulLiteral","src":"47375:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"47371:3:94","nodeType":"YulIdentifier","src":"47371:3:94"},"nativeSrc":"47371:6:94","nodeType":"YulFunctionCall","src":"47371:6:94"}],"functionName":{"name":"shl","nativeSrc":"47362:3:94","nodeType":"YulIdentifier","src":"47362:3:94"},"nativeSrc":"47362:16:94","nodeType":"YulFunctionCall","src":"47362:16:94"}],"functionName":{"name":"and","nativeSrc":"47331:3:94","nodeType":"YulIdentifier","src":"47331:3:94"},"nativeSrc":"47331:48:94","nodeType":"YulFunctionCall","src":"47331:48:94"},"variableNames":[{"name":"result","nativeSrc":"47321:6:94","nodeType":"YulIdentifier","src":"47321:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29846,"isOffset":false,"isSlot":false,"src":"47346:6:94","valueSize":1},{"declaration":29849,"isOffset":false,"isSlot":false,"src":"47321:6:94","valueSize":1},{"declaration":29844,"isOffset":false,"isSlot":false,"src":"47355:4:94","valueSize":1}],"flags":["memory-safe"],"id":29858,"nodeType":"InlineAssembly","src":"47282:107:94"}]},"id":29860,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_8","nameLocation":"47141:12:94","nodeType":"FunctionDefinition","parameters":{"id":29847,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29844,"mutability":"mutable","name":"self","nameLocation":"47162:4:94","nodeType":"VariableDeclaration","scope":29860,"src":"47154:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29843,"name":"bytes24","nodeType":"ElementaryTypeName","src":"47154:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29846,"mutability":"mutable","name":"offset","nameLocation":"47174:6:94","nodeType":"VariableDeclaration","scope":29860,"src":"47168:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29845,"name":"uint8","nodeType":"ElementaryTypeName","src":"47168:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"47153:28:94"},"returnParameters":{"id":29850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29849,"mutability":"mutable","name":"result","nameLocation":"47212:6:94","nodeType":"VariableDeclaration","scope":29860,"src":"47205:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":29848,"name":"bytes8","nodeType":"ElementaryTypeName","src":"47205:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"47204:15:94"},"scope":30945,"src":"47132:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29879,"nodeType":"Block","src":"47504:231:94","statements":[{"assignments":[29872],"declarations":[{"constant":false,"id":29872,"mutability":"mutable","name":"oldValue","nameLocation":"47521:8:94","nodeType":"VariableDeclaration","scope":29879,"src":"47514:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":29871,"name":"bytes8","nodeType":"ElementaryTypeName","src":"47514:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"id":29877,"initialValue":{"arguments":[{"id":29874,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29862,"src":"47545:4:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":29875,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29866,"src":"47551:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29873,"name":"extract_24_8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29860,"src":"47532:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes8_$","typeString":"function (bytes24,uint8) pure returns (bytes8)"}},"id":29876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47532:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"VariableDeclarationStatement","src":"47514:44:94"},{"AST":{"nativeSrc":"47593:136:94","nodeType":"YulBlock","src":"47593:136:94","statements":[{"nativeSrc":"47607:37:94","nodeType":"YulAssignment","src":"47607:37:94","value":{"arguments":[{"name":"value","nativeSrc":"47620:5:94","nodeType":"YulIdentifier","src":"47620:5:94"},{"arguments":[{"kind":"number","nativeSrc":"47631:3:94","nodeType":"YulLiteral","src":"47631:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"47640:1:94","nodeType":"YulLiteral","src":"47640:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"47636:3:94","nodeType":"YulIdentifier","src":"47636:3:94"},"nativeSrc":"47636:6:94","nodeType":"YulFunctionCall","src":"47636:6:94"}],"functionName":{"name":"shl","nativeSrc":"47627:3:94","nodeType":"YulIdentifier","src":"47627:3:94"},"nativeSrc":"47627:16:94","nodeType":"YulFunctionCall","src":"47627:16:94"}],"functionName":{"name":"and","nativeSrc":"47616:3:94","nodeType":"YulIdentifier","src":"47616:3:94"},"nativeSrc":"47616:28:94","nodeType":"YulFunctionCall","src":"47616:28:94"},"variableNames":[{"name":"value","nativeSrc":"47607:5:94","nodeType":"YulIdentifier","src":"47607:5:94"}]},{"nativeSrc":"47657:62:94","nodeType":"YulAssignment","src":"47657:62:94","value":{"arguments":[{"name":"self","nativeSrc":"47671:4:94","nodeType":"YulIdentifier","src":"47671:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"47685:1:94","nodeType":"YulLiteral","src":"47685:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"47688:6:94","nodeType":"YulIdentifier","src":"47688:6:94"}],"functionName":{"name":"mul","nativeSrc":"47681:3:94","nodeType":"YulIdentifier","src":"47681:3:94"},"nativeSrc":"47681:14:94","nodeType":"YulFunctionCall","src":"47681:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"47701:8:94","nodeType":"YulIdentifier","src":"47701:8:94"},{"name":"value","nativeSrc":"47711:5:94","nodeType":"YulIdentifier","src":"47711:5:94"}],"functionName":{"name":"xor","nativeSrc":"47697:3:94","nodeType":"YulIdentifier","src":"47697:3:94"},"nativeSrc":"47697:20:94","nodeType":"YulFunctionCall","src":"47697:20:94"}],"functionName":{"name":"shr","nativeSrc":"47677:3:94","nodeType":"YulIdentifier","src":"47677:3:94"},"nativeSrc":"47677:41:94","nodeType":"YulFunctionCall","src":"47677:41:94"}],"functionName":{"name":"xor","nativeSrc":"47667:3:94","nodeType":"YulIdentifier","src":"47667:3:94"},"nativeSrc":"47667:52:94","nodeType":"YulFunctionCall","src":"47667:52:94"},"variableNames":[{"name":"result","nativeSrc":"47657:6:94","nodeType":"YulIdentifier","src":"47657:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29866,"isOffset":false,"isSlot":false,"src":"47688:6:94","valueSize":1},{"declaration":29872,"isOffset":false,"isSlot":false,"src":"47701:8:94","valueSize":1},{"declaration":29869,"isOffset":false,"isSlot":false,"src":"47657:6:94","valueSize":1},{"declaration":29862,"isOffset":false,"isSlot":false,"src":"47671:4:94","valueSize":1},{"declaration":29864,"isOffset":false,"isSlot":false,"src":"47607:5:94","valueSize":1},{"declaration":29864,"isOffset":false,"isSlot":false,"src":"47620:5:94","valueSize":1},{"declaration":29864,"isOffset":false,"isSlot":false,"src":"47711:5:94","valueSize":1}],"flags":["memory-safe"],"id":29878,"nodeType":"InlineAssembly","src":"47568:161:94"}]},"id":29880,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_8","nameLocation":"47410:12:94","nodeType":"FunctionDefinition","parameters":{"id":29867,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29862,"mutability":"mutable","name":"self","nameLocation":"47431:4:94","nodeType":"VariableDeclaration","scope":29880,"src":"47423:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29861,"name":"bytes24","nodeType":"ElementaryTypeName","src":"47423:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29864,"mutability":"mutable","name":"value","nameLocation":"47444:5:94","nodeType":"VariableDeclaration","scope":29880,"src":"47437:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":29863,"name":"bytes8","nodeType":"ElementaryTypeName","src":"47437:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":29866,"mutability":"mutable","name":"offset","nameLocation":"47457:6:94","nodeType":"VariableDeclaration","scope":29880,"src":"47451:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29865,"name":"uint8","nodeType":"ElementaryTypeName","src":"47451:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"47422:42:94"},"returnParameters":{"id":29870,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29869,"mutability":"mutable","name":"result","nameLocation":"47496:6:94","nodeType":"VariableDeclaration","scope":29880,"src":"47488:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29868,"name":"bytes24","nodeType":"ElementaryTypeName","src":"47488:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"47487:16:94"},"scope":30945,"src":"47401:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29897,"nodeType":"Block","src":"47831:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29889,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29884,"src":"47845:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3134","id":29890,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"47854:2:94","typeDescriptions":{"typeIdentifier":"t_rational_14_by_1","typeString":"int_const 14"},"value":"14"},"src":"47845:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29895,"nodeType":"IfStatement","src":"47841:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29892,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"47865:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29893,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47865:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29894,"nodeType":"RevertStatement","src":"47858:25:94"}},{"AST":{"nativeSrc":"47918:82:94","nodeType":"YulBlock","src":"47918:82:94","statements":[{"nativeSrc":"47932:58:94","nodeType":"YulAssignment","src":"47932:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"47954:1:94","nodeType":"YulLiteral","src":"47954:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"47957:6:94","nodeType":"YulIdentifier","src":"47957:6:94"}],"functionName":{"name":"mul","nativeSrc":"47950:3:94","nodeType":"YulIdentifier","src":"47950:3:94"},"nativeSrc":"47950:14:94","nodeType":"YulFunctionCall","src":"47950:14:94"},{"name":"self","nativeSrc":"47966:4:94","nodeType":"YulIdentifier","src":"47966:4:94"}],"functionName":{"name":"shl","nativeSrc":"47946:3:94","nodeType":"YulIdentifier","src":"47946:3:94"},"nativeSrc":"47946:25:94","nodeType":"YulFunctionCall","src":"47946:25:94"},{"arguments":[{"kind":"number","nativeSrc":"47977:3:94","nodeType":"YulLiteral","src":"47977:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"47986:1:94","nodeType":"YulLiteral","src":"47986:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"47982:3:94","nodeType":"YulIdentifier","src":"47982:3:94"},"nativeSrc":"47982:6:94","nodeType":"YulFunctionCall","src":"47982:6:94"}],"functionName":{"name":"shl","nativeSrc":"47973:3:94","nodeType":"YulIdentifier","src":"47973:3:94"},"nativeSrc":"47973:16:94","nodeType":"YulFunctionCall","src":"47973:16:94"}],"functionName":{"name":"and","nativeSrc":"47942:3:94","nodeType":"YulIdentifier","src":"47942:3:94"},"nativeSrc":"47942:48:94","nodeType":"YulFunctionCall","src":"47942:48:94"},"variableNames":[{"name":"result","nativeSrc":"47932:6:94","nodeType":"YulIdentifier","src":"47932:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29884,"isOffset":false,"isSlot":false,"src":"47957:6:94","valueSize":1},{"declaration":29887,"isOffset":false,"isSlot":false,"src":"47932:6:94","valueSize":1},{"declaration":29882,"isOffset":false,"isSlot":false,"src":"47966:4:94","valueSize":1}],"flags":["memory-safe"],"id":29896,"nodeType":"InlineAssembly","src":"47893:107:94"}]},"id":29898,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_10","nameLocation":"47750:13:94","nodeType":"FunctionDefinition","parameters":{"id":29885,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29882,"mutability":"mutable","name":"self","nameLocation":"47772:4:94","nodeType":"VariableDeclaration","scope":29898,"src":"47764:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29881,"name":"bytes24","nodeType":"ElementaryTypeName","src":"47764:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29884,"mutability":"mutable","name":"offset","nameLocation":"47784:6:94","nodeType":"VariableDeclaration","scope":29898,"src":"47778:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29883,"name":"uint8","nodeType":"ElementaryTypeName","src":"47778:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"47763:28:94"},"returnParameters":{"id":29888,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29887,"mutability":"mutable","name":"result","nameLocation":"47823:6:94","nodeType":"VariableDeclaration","scope":29898,"src":"47815:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":29886,"name":"bytes10","nodeType":"ElementaryTypeName","src":"47815:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"47814:16:94"},"scope":30945,"src":"47741:265:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29917,"nodeType":"Block","src":"48117:233:94","statements":[{"assignments":[29910],"declarations":[{"constant":false,"id":29910,"mutability":"mutable","name":"oldValue","nameLocation":"48135:8:94","nodeType":"VariableDeclaration","scope":29917,"src":"48127:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":29909,"name":"bytes10","nodeType":"ElementaryTypeName","src":"48127:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":29915,"initialValue":{"arguments":[{"id":29912,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29900,"src":"48160:4:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":29913,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29904,"src":"48166:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29911,"name":"extract_24_10","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29898,"src":"48146:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes10_$","typeString":"function (bytes24,uint8) pure returns (bytes10)"}},"id":29914,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48146:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"48127:46:94"},{"AST":{"nativeSrc":"48208:136:94","nodeType":"YulBlock","src":"48208:136:94","statements":[{"nativeSrc":"48222:37:94","nodeType":"YulAssignment","src":"48222:37:94","value":{"arguments":[{"name":"value","nativeSrc":"48235:5:94","nodeType":"YulIdentifier","src":"48235:5:94"},{"arguments":[{"kind":"number","nativeSrc":"48246:3:94","nodeType":"YulLiteral","src":"48246:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"48255:1:94","nodeType":"YulLiteral","src":"48255:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"48251:3:94","nodeType":"YulIdentifier","src":"48251:3:94"},"nativeSrc":"48251:6:94","nodeType":"YulFunctionCall","src":"48251:6:94"}],"functionName":{"name":"shl","nativeSrc":"48242:3:94","nodeType":"YulIdentifier","src":"48242:3:94"},"nativeSrc":"48242:16:94","nodeType":"YulFunctionCall","src":"48242:16:94"}],"functionName":{"name":"and","nativeSrc":"48231:3:94","nodeType":"YulIdentifier","src":"48231:3:94"},"nativeSrc":"48231:28:94","nodeType":"YulFunctionCall","src":"48231:28:94"},"variableNames":[{"name":"value","nativeSrc":"48222:5:94","nodeType":"YulIdentifier","src":"48222:5:94"}]},{"nativeSrc":"48272:62:94","nodeType":"YulAssignment","src":"48272:62:94","value":{"arguments":[{"name":"self","nativeSrc":"48286:4:94","nodeType":"YulIdentifier","src":"48286:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"48300:1:94","nodeType":"YulLiteral","src":"48300:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"48303:6:94","nodeType":"YulIdentifier","src":"48303:6:94"}],"functionName":{"name":"mul","nativeSrc":"48296:3:94","nodeType":"YulIdentifier","src":"48296:3:94"},"nativeSrc":"48296:14:94","nodeType":"YulFunctionCall","src":"48296:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"48316:8:94","nodeType":"YulIdentifier","src":"48316:8:94"},{"name":"value","nativeSrc":"48326:5:94","nodeType":"YulIdentifier","src":"48326:5:94"}],"functionName":{"name":"xor","nativeSrc":"48312:3:94","nodeType":"YulIdentifier","src":"48312:3:94"},"nativeSrc":"48312:20:94","nodeType":"YulFunctionCall","src":"48312:20:94"}],"functionName":{"name":"shr","nativeSrc":"48292:3:94","nodeType":"YulIdentifier","src":"48292:3:94"},"nativeSrc":"48292:41:94","nodeType":"YulFunctionCall","src":"48292:41:94"}],"functionName":{"name":"xor","nativeSrc":"48282:3:94","nodeType":"YulIdentifier","src":"48282:3:94"},"nativeSrc":"48282:52:94","nodeType":"YulFunctionCall","src":"48282:52:94"},"variableNames":[{"name":"result","nativeSrc":"48272:6:94","nodeType":"YulIdentifier","src":"48272:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29904,"isOffset":false,"isSlot":false,"src":"48303:6:94","valueSize":1},{"declaration":29910,"isOffset":false,"isSlot":false,"src":"48316:8:94","valueSize":1},{"declaration":29907,"isOffset":false,"isSlot":false,"src":"48272:6:94","valueSize":1},{"declaration":29900,"isOffset":false,"isSlot":false,"src":"48286:4:94","valueSize":1},{"declaration":29902,"isOffset":false,"isSlot":false,"src":"48222:5:94","valueSize":1},{"declaration":29902,"isOffset":false,"isSlot":false,"src":"48235:5:94","valueSize":1},{"declaration":29902,"isOffset":false,"isSlot":false,"src":"48326:5:94","valueSize":1}],"flags":["memory-safe"],"id":29916,"nodeType":"InlineAssembly","src":"48183:161:94"}]},"id":29918,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_10","nameLocation":"48021:13:94","nodeType":"FunctionDefinition","parameters":{"id":29905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29900,"mutability":"mutable","name":"self","nameLocation":"48043:4:94","nodeType":"VariableDeclaration","scope":29918,"src":"48035:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29899,"name":"bytes24","nodeType":"ElementaryTypeName","src":"48035:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29902,"mutability":"mutable","name":"value","nameLocation":"48057:5:94","nodeType":"VariableDeclaration","scope":29918,"src":"48049:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":29901,"name":"bytes10","nodeType":"ElementaryTypeName","src":"48049:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":29904,"mutability":"mutable","name":"offset","nameLocation":"48070:6:94","nodeType":"VariableDeclaration","scope":29918,"src":"48064:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29903,"name":"uint8","nodeType":"ElementaryTypeName","src":"48064:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"48034:43:94"},"returnParameters":{"id":29908,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29907,"mutability":"mutable","name":"result","nameLocation":"48109:6:94","nodeType":"VariableDeclaration","scope":29918,"src":"48101:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29906,"name":"bytes24","nodeType":"ElementaryTypeName","src":"48101:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"48100:16:94"},"scope":30945,"src":"48012:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29935,"nodeType":"Block","src":"48446:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29929,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29927,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29922,"src":"48460:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3132","id":29928,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"48469:2:94","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"src":"48460:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29933,"nodeType":"IfStatement","src":"48456:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29930,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"48480:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48480:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29932,"nodeType":"RevertStatement","src":"48473:25:94"}},{"AST":{"nativeSrc":"48533:82:94","nodeType":"YulBlock","src":"48533:82:94","statements":[{"nativeSrc":"48547:58:94","nodeType":"YulAssignment","src":"48547:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"48569:1:94","nodeType":"YulLiteral","src":"48569:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"48572:6:94","nodeType":"YulIdentifier","src":"48572:6:94"}],"functionName":{"name":"mul","nativeSrc":"48565:3:94","nodeType":"YulIdentifier","src":"48565:3:94"},"nativeSrc":"48565:14:94","nodeType":"YulFunctionCall","src":"48565:14:94"},{"name":"self","nativeSrc":"48581:4:94","nodeType":"YulIdentifier","src":"48581:4:94"}],"functionName":{"name":"shl","nativeSrc":"48561:3:94","nodeType":"YulIdentifier","src":"48561:3:94"},"nativeSrc":"48561:25:94","nodeType":"YulFunctionCall","src":"48561:25:94"},{"arguments":[{"kind":"number","nativeSrc":"48592:3:94","nodeType":"YulLiteral","src":"48592:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"48601:1:94","nodeType":"YulLiteral","src":"48601:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"48597:3:94","nodeType":"YulIdentifier","src":"48597:3:94"},"nativeSrc":"48597:6:94","nodeType":"YulFunctionCall","src":"48597:6:94"}],"functionName":{"name":"shl","nativeSrc":"48588:3:94","nodeType":"YulIdentifier","src":"48588:3:94"},"nativeSrc":"48588:16:94","nodeType":"YulFunctionCall","src":"48588:16:94"}],"functionName":{"name":"and","nativeSrc":"48557:3:94","nodeType":"YulIdentifier","src":"48557:3:94"},"nativeSrc":"48557:48:94","nodeType":"YulFunctionCall","src":"48557:48:94"},"variableNames":[{"name":"result","nativeSrc":"48547:6:94","nodeType":"YulIdentifier","src":"48547:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29922,"isOffset":false,"isSlot":false,"src":"48572:6:94","valueSize":1},{"declaration":29925,"isOffset":false,"isSlot":false,"src":"48547:6:94","valueSize":1},{"declaration":29920,"isOffset":false,"isSlot":false,"src":"48581:4:94","valueSize":1}],"flags":["memory-safe"],"id":29934,"nodeType":"InlineAssembly","src":"48508:107:94"}]},"id":29936,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_12","nameLocation":"48365:13:94","nodeType":"FunctionDefinition","parameters":{"id":29923,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29920,"mutability":"mutable","name":"self","nameLocation":"48387:4:94","nodeType":"VariableDeclaration","scope":29936,"src":"48379:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29919,"name":"bytes24","nodeType":"ElementaryTypeName","src":"48379:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29922,"mutability":"mutable","name":"offset","nameLocation":"48399:6:94","nodeType":"VariableDeclaration","scope":29936,"src":"48393:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29921,"name":"uint8","nodeType":"ElementaryTypeName","src":"48393:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"48378:28:94"},"returnParameters":{"id":29926,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29925,"mutability":"mutable","name":"result","nameLocation":"48438:6:94","nodeType":"VariableDeclaration","scope":29936,"src":"48430:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":29924,"name":"bytes12","nodeType":"ElementaryTypeName","src":"48430:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"48429:16:94"},"scope":30945,"src":"48356:265:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29955,"nodeType":"Block","src":"48732:233:94","statements":[{"assignments":[29948],"declarations":[{"constant":false,"id":29948,"mutability":"mutable","name":"oldValue","nameLocation":"48750:8:94","nodeType":"VariableDeclaration","scope":29955,"src":"48742:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":29947,"name":"bytes12","nodeType":"ElementaryTypeName","src":"48742:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"id":29953,"initialValue":{"arguments":[{"id":29950,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29938,"src":"48775:4:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":29951,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29942,"src":"48781:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29949,"name":"extract_24_12","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29936,"src":"48761:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes12_$","typeString":"function (bytes24,uint8) pure returns (bytes12)"}},"id":29952,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48761:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"nodeType":"VariableDeclarationStatement","src":"48742:46:94"},{"AST":{"nativeSrc":"48823:136:94","nodeType":"YulBlock","src":"48823:136:94","statements":[{"nativeSrc":"48837:37:94","nodeType":"YulAssignment","src":"48837:37:94","value":{"arguments":[{"name":"value","nativeSrc":"48850:5:94","nodeType":"YulIdentifier","src":"48850:5:94"},{"arguments":[{"kind":"number","nativeSrc":"48861:3:94","nodeType":"YulLiteral","src":"48861:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"48870:1:94","nodeType":"YulLiteral","src":"48870:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"48866:3:94","nodeType":"YulIdentifier","src":"48866:3:94"},"nativeSrc":"48866:6:94","nodeType":"YulFunctionCall","src":"48866:6:94"}],"functionName":{"name":"shl","nativeSrc":"48857:3:94","nodeType":"YulIdentifier","src":"48857:3:94"},"nativeSrc":"48857:16:94","nodeType":"YulFunctionCall","src":"48857:16:94"}],"functionName":{"name":"and","nativeSrc":"48846:3:94","nodeType":"YulIdentifier","src":"48846:3:94"},"nativeSrc":"48846:28:94","nodeType":"YulFunctionCall","src":"48846:28:94"},"variableNames":[{"name":"value","nativeSrc":"48837:5:94","nodeType":"YulIdentifier","src":"48837:5:94"}]},{"nativeSrc":"48887:62:94","nodeType":"YulAssignment","src":"48887:62:94","value":{"arguments":[{"name":"self","nativeSrc":"48901:4:94","nodeType":"YulIdentifier","src":"48901:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"48915:1:94","nodeType":"YulLiteral","src":"48915:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"48918:6:94","nodeType":"YulIdentifier","src":"48918:6:94"}],"functionName":{"name":"mul","nativeSrc":"48911:3:94","nodeType":"YulIdentifier","src":"48911:3:94"},"nativeSrc":"48911:14:94","nodeType":"YulFunctionCall","src":"48911:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"48931:8:94","nodeType":"YulIdentifier","src":"48931:8:94"},{"name":"value","nativeSrc":"48941:5:94","nodeType":"YulIdentifier","src":"48941:5:94"}],"functionName":{"name":"xor","nativeSrc":"48927:3:94","nodeType":"YulIdentifier","src":"48927:3:94"},"nativeSrc":"48927:20:94","nodeType":"YulFunctionCall","src":"48927:20:94"}],"functionName":{"name":"shr","nativeSrc":"48907:3:94","nodeType":"YulIdentifier","src":"48907:3:94"},"nativeSrc":"48907:41:94","nodeType":"YulFunctionCall","src":"48907:41:94"}],"functionName":{"name":"xor","nativeSrc":"48897:3:94","nodeType":"YulIdentifier","src":"48897:3:94"},"nativeSrc":"48897:52:94","nodeType":"YulFunctionCall","src":"48897:52:94"},"variableNames":[{"name":"result","nativeSrc":"48887:6:94","nodeType":"YulIdentifier","src":"48887:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29942,"isOffset":false,"isSlot":false,"src":"48918:6:94","valueSize":1},{"declaration":29948,"isOffset":false,"isSlot":false,"src":"48931:8:94","valueSize":1},{"declaration":29945,"isOffset":false,"isSlot":false,"src":"48887:6:94","valueSize":1},{"declaration":29938,"isOffset":false,"isSlot":false,"src":"48901:4:94","valueSize":1},{"declaration":29940,"isOffset":false,"isSlot":false,"src":"48837:5:94","valueSize":1},{"declaration":29940,"isOffset":false,"isSlot":false,"src":"48850:5:94","valueSize":1},{"declaration":29940,"isOffset":false,"isSlot":false,"src":"48941:5:94","valueSize":1}],"flags":["memory-safe"],"id":29954,"nodeType":"InlineAssembly","src":"48798:161:94"}]},"id":29956,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_12","nameLocation":"48636:13:94","nodeType":"FunctionDefinition","parameters":{"id":29943,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29938,"mutability":"mutable","name":"self","nameLocation":"48658:4:94","nodeType":"VariableDeclaration","scope":29956,"src":"48650:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29937,"name":"bytes24","nodeType":"ElementaryTypeName","src":"48650:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29940,"mutability":"mutable","name":"value","nameLocation":"48672:5:94","nodeType":"VariableDeclaration","scope":29956,"src":"48664:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":29939,"name":"bytes12","nodeType":"ElementaryTypeName","src":"48664:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":29942,"mutability":"mutable","name":"offset","nameLocation":"48685:6:94","nodeType":"VariableDeclaration","scope":29956,"src":"48679:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29941,"name":"uint8","nodeType":"ElementaryTypeName","src":"48679:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"48649:43:94"},"returnParameters":{"id":29946,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29945,"mutability":"mutable","name":"result","nameLocation":"48724:6:94","nodeType":"VariableDeclaration","scope":29956,"src":"48716:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29944,"name":"bytes24","nodeType":"ElementaryTypeName","src":"48716:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"48715:16:94"},"scope":30945,"src":"48627:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29973,"nodeType":"Block","src":"49061:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":29967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":29965,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29960,"src":"49075:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"38","id":29966,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49084:1:94","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"49075:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":29971,"nodeType":"IfStatement","src":"49071:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":29968,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"49094:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":29969,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49094:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":29970,"nodeType":"RevertStatement","src":"49087:25:94"}},{"AST":{"nativeSrc":"49147:82:94","nodeType":"YulBlock","src":"49147:82:94","statements":[{"nativeSrc":"49161:58:94","nodeType":"YulAssignment","src":"49161:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"49183:1:94","nodeType":"YulLiteral","src":"49183:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"49186:6:94","nodeType":"YulIdentifier","src":"49186:6:94"}],"functionName":{"name":"mul","nativeSrc":"49179:3:94","nodeType":"YulIdentifier","src":"49179:3:94"},"nativeSrc":"49179:14:94","nodeType":"YulFunctionCall","src":"49179:14:94"},{"name":"self","nativeSrc":"49195:4:94","nodeType":"YulIdentifier","src":"49195:4:94"}],"functionName":{"name":"shl","nativeSrc":"49175:3:94","nodeType":"YulIdentifier","src":"49175:3:94"},"nativeSrc":"49175:25:94","nodeType":"YulFunctionCall","src":"49175:25:94"},{"arguments":[{"kind":"number","nativeSrc":"49206:3:94","nodeType":"YulLiteral","src":"49206:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"49215:1:94","nodeType":"YulLiteral","src":"49215:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"49211:3:94","nodeType":"YulIdentifier","src":"49211:3:94"},"nativeSrc":"49211:6:94","nodeType":"YulFunctionCall","src":"49211:6:94"}],"functionName":{"name":"shl","nativeSrc":"49202:3:94","nodeType":"YulIdentifier","src":"49202:3:94"},"nativeSrc":"49202:16:94","nodeType":"YulFunctionCall","src":"49202:16:94"}],"functionName":{"name":"and","nativeSrc":"49171:3:94","nodeType":"YulIdentifier","src":"49171:3:94"},"nativeSrc":"49171:48:94","nodeType":"YulFunctionCall","src":"49171:48:94"},"variableNames":[{"name":"result","nativeSrc":"49161:6:94","nodeType":"YulIdentifier","src":"49161:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29960,"isOffset":false,"isSlot":false,"src":"49186:6:94","valueSize":1},{"declaration":29963,"isOffset":false,"isSlot":false,"src":"49161:6:94","valueSize":1},{"declaration":29958,"isOffset":false,"isSlot":false,"src":"49195:4:94","valueSize":1}],"flags":["memory-safe"],"id":29972,"nodeType":"InlineAssembly","src":"49122:107:94"}]},"id":29974,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_16","nameLocation":"48980:13:94","nodeType":"FunctionDefinition","parameters":{"id":29961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29958,"mutability":"mutable","name":"self","nameLocation":"49002:4:94","nodeType":"VariableDeclaration","scope":29974,"src":"48994:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29957,"name":"bytes24","nodeType":"ElementaryTypeName","src":"48994:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29960,"mutability":"mutable","name":"offset","nameLocation":"49014:6:94","nodeType":"VariableDeclaration","scope":29974,"src":"49008:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29959,"name":"uint8","nodeType":"ElementaryTypeName","src":"49008:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"48993:28:94"},"returnParameters":{"id":29964,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29963,"mutability":"mutable","name":"result","nameLocation":"49053:6:94","nodeType":"VariableDeclaration","scope":29974,"src":"49045:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":29962,"name":"bytes16","nodeType":"ElementaryTypeName","src":"49045:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"49044:16:94"},"scope":30945,"src":"48971:264:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":29993,"nodeType":"Block","src":"49346:233:94","statements":[{"assignments":[29986],"declarations":[{"constant":false,"id":29986,"mutability":"mutable","name":"oldValue","nameLocation":"49364:8:94","nodeType":"VariableDeclaration","scope":29993,"src":"49356:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":29985,"name":"bytes16","nodeType":"ElementaryTypeName","src":"49356:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"id":29991,"initialValue":{"arguments":[{"id":29988,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29976,"src":"49389:4:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":29989,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29980,"src":"49395:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":29987,"name":"extract_24_16","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29974,"src":"49375:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes16_$","typeString":"function (bytes24,uint8) pure returns (bytes16)"}},"id":29990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49375:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"VariableDeclarationStatement","src":"49356:46:94"},{"AST":{"nativeSrc":"49437:136:94","nodeType":"YulBlock","src":"49437:136:94","statements":[{"nativeSrc":"49451:37:94","nodeType":"YulAssignment","src":"49451:37:94","value":{"arguments":[{"name":"value","nativeSrc":"49464:5:94","nodeType":"YulIdentifier","src":"49464:5:94"},{"arguments":[{"kind":"number","nativeSrc":"49475:3:94","nodeType":"YulLiteral","src":"49475:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"49484:1:94","nodeType":"YulLiteral","src":"49484:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"49480:3:94","nodeType":"YulIdentifier","src":"49480:3:94"},"nativeSrc":"49480:6:94","nodeType":"YulFunctionCall","src":"49480:6:94"}],"functionName":{"name":"shl","nativeSrc":"49471:3:94","nodeType":"YulIdentifier","src":"49471:3:94"},"nativeSrc":"49471:16:94","nodeType":"YulFunctionCall","src":"49471:16:94"}],"functionName":{"name":"and","nativeSrc":"49460:3:94","nodeType":"YulIdentifier","src":"49460:3:94"},"nativeSrc":"49460:28:94","nodeType":"YulFunctionCall","src":"49460:28:94"},"variableNames":[{"name":"value","nativeSrc":"49451:5:94","nodeType":"YulIdentifier","src":"49451:5:94"}]},{"nativeSrc":"49501:62:94","nodeType":"YulAssignment","src":"49501:62:94","value":{"arguments":[{"name":"self","nativeSrc":"49515:4:94","nodeType":"YulIdentifier","src":"49515:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"49529:1:94","nodeType":"YulLiteral","src":"49529:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"49532:6:94","nodeType":"YulIdentifier","src":"49532:6:94"}],"functionName":{"name":"mul","nativeSrc":"49525:3:94","nodeType":"YulIdentifier","src":"49525:3:94"},"nativeSrc":"49525:14:94","nodeType":"YulFunctionCall","src":"49525:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"49545:8:94","nodeType":"YulIdentifier","src":"49545:8:94"},{"name":"value","nativeSrc":"49555:5:94","nodeType":"YulIdentifier","src":"49555:5:94"}],"functionName":{"name":"xor","nativeSrc":"49541:3:94","nodeType":"YulIdentifier","src":"49541:3:94"},"nativeSrc":"49541:20:94","nodeType":"YulFunctionCall","src":"49541:20:94"}],"functionName":{"name":"shr","nativeSrc":"49521:3:94","nodeType":"YulIdentifier","src":"49521:3:94"},"nativeSrc":"49521:41:94","nodeType":"YulFunctionCall","src":"49521:41:94"}],"functionName":{"name":"xor","nativeSrc":"49511:3:94","nodeType":"YulIdentifier","src":"49511:3:94"},"nativeSrc":"49511:52:94","nodeType":"YulFunctionCall","src":"49511:52:94"},"variableNames":[{"name":"result","nativeSrc":"49501:6:94","nodeType":"YulIdentifier","src":"49501:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29980,"isOffset":false,"isSlot":false,"src":"49532:6:94","valueSize":1},{"declaration":29986,"isOffset":false,"isSlot":false,"src":"49545:8:94","valueSize":1},{"declaration":29983,"isOffset":false,"isSlot":false,"src":"49501:6:94","valueSize":1},{"declaration":29976,"isOffset":false,"isSlot":false,"src":"49515:4:94","valueSize":1},{"declaration":29978,"isOffset":false,"isSlot":false,"src":"49451:5:94","valueSize":1},{"declaration":29978,"isOffset":false,"isSlot":false,"src":"49464:5:94","valueSize":1},{"declaration":29978,"isOffset":false,"isSlot":false,"src":"49555:5:94","valueSize":1}],"flags":["memory-safe"],"id":29992,"nodeType":"InlineAssembly","src":"49412:161:94"}]},"id":29994,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_16","nameLocation":"49250:13:94","nodeType":"FunctionDefinition","parameters":{"id":29981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29976,"mutability":"mutable","name":"self","nameLocation":"49272:4:94","nodeType":"VariableDeclaration","scope":29994,"src":"49264:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29975,"name":"bytes24","nodeType":"ElementaryTypeName","src":"49264:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29978,"mutability":"mutable","name":"value","nameLocation":"49286:5:94","nodeType":"VariableDeclaration","scope":29994,"src":"49278:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":29977,"name":"bytes16","nodeType":"ElementaryTypeName","src":"49278:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":29980,"mutability":"mutable","name":"offset","nameLocation":"49299:6:94","nodeType":"VariableDeclaration","scope":29994,"src":"49293:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29979,"name":"uint8","nodeType":"ElementaryTypeName","src":"49293:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"49263:43:94"},"returnParameters":{"id":29984,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29983,"mutability":"mutable","name":"result","nameLocation":"49338:6:94","nodeType":"VariableDeclaration","scope":29994,"src":"49330:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29982,"name":"bytes24","nodeType":"ElementaryTypeName","src":"49330:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"49329:16:94"},"scope":30945,"src":"49241:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30011,"nodeType":"Block","src":"49675:173:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30003,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":29998,"src":"49689:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":30004,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49698:1:94","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"49689:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30009,"nodeType":"IfStatement","src":"49685:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30006,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"49708:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30007,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49708:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30008,"nodeType":"RevertStatement","src":"49701:25:94"}},{"AST":{"nativeSrc":"49761:81:94","nodeType":"YulBlock","src":"49761:81:94","statements":[{"nativeSrc":"49775:57:94","nodeType":"YulAssignment","src":"49775:57:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"49797:1:94","nodeType":"YulLiteral","src":"49797:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"49800:6:94","nodeType":"YulIdentifier","src":"49800:6:94"}],"functionName":{"name":"mul","nativeSrc":"49793:3:94","nodeType":"YulIdentifier","src":"49793:3:94"},"nativeSrc":"49793:14:94","nodeType":"YulFunctionCall","src":"49793:14:94"},{"name":"self","nativeSrc":"49809:4:94","nodeType":"YulIdentifier","src":"49809:4:94"}],"functionName":{"name":"shl","nativeSrc":"49789:3:94","nodeType":"YulIdentifier","src":"49789:3:94"},"nativeSrc":"49789:25:94","nodeType":"YulFunctionCall","src":"49789:25:94"},{"arguments":[{"kind":"number","nativeSrc":"49820:2:94","nodeType":"YulLiteral","src":"49820:2:94","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"49828:1:94","nodeType":"YulLiteral","src":"49828:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"49824:3:94","nodeType":"YulIdentifier","src":"49824:3:94"},"nativeSrc":"49824:6:94","nodeType":"YulFunctionCall","src":"49824:6:94"}],"functionName":{"name":"shl","nativeSrc":"49816:3:94","nodeType":"YulIdentifier","src":"49816:3:94"},"nativeSrc":"49816:15:94","nodeType":"YulFunctionCall","src":"49816:15:94"}],"functionName":{"name":"and","nativeSrc":"49785:3:94","nodeType":"YulIdentifier","src":"49785:3:94"},"nativeSrc":"49785:47:94","nodeType":"YulFunctionCall","src":"49785:47:94"},"variableNames":[{"name":"result","nativeSrc":"49775:6:94","nodeType":"YulIdentifier","src":"49775:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":29998,"isOffset":false,"isSlot":false,"src":"49800:6:94","valueSize":1},{"declaration":30001,"isOffset":false,"isSlot":false,"src":"49775:6:94","valueSize":1},{"declaration":29996,"isOffset":false,"isSlot":false,"src":"49809:4:94","valueSize":1}],"flags":["memory-safe"],"id":30010,"nodeType":"InlineAssembly","src":"49736:106:94"}]},"id":30012,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_20","nameLocation":"49594:13:94","nodeType":"FunctionDefinition","parameters":{"id":29999,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29996,"mutability":"mutable","name":"self","nameLocation":"49616:4:94","nodeType":"VariableDeclaration","scope":30012,"src":"49608:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":29995,"name":"bytes24","nodeType":"ElementaryTypeName","src":"49608:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":29998,"mutability":"mutable","name":"offset","nameLocation":"49628:6:94","nodeType":"VariableDeclaration","scope":30012,"src":"49622:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":29997,"name":"uint8","nodeType":"ElementaryTypeName","src":"49622:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"49607:28:94"},"returnParameters":{"id":30002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30001,"mutability":"mutable","name":"result","nameLocation":"49667:6:94","nodeType":"VariableDeclaration","scope":30012,"src":"49659:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":30000,"name":"bytes20","nodeType":"ElementaryTypeName","src":"49659:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"49658:16:94"},"scope":30945,"src":"49585:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30031,"nodeType":"Block","src":"49959:232:94","statements":[{"assignments":[30024],"declarations":[{"constant":false,"id":30024,"mutability":"mutable","name":"oldValue","nameLocation":"49977:8:94","nodeType":"VariableDeclaration","scope":30031,"src":"49969:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":30023,"name":"bytes20","nodeType":"ElementaryTypeName","src":"49969:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"id":30029,"initialValue":{"arguments":[{"id":30026,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30014,"src":"50002:4:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":30027,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30018,"src":"50008:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30025,"name":"extract_24_20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30012,"src":"49988:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes20_$","typeString":"function (bytes24,uint8) pure returns (bytes20)"}},"id":30028,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49988:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"VariableDeclarationStatement","src":"49969:46:94"},{"AST":{"nativeSrc":"50050:135:94","nodeType":"YulBlock","src":"50050:135:94","statements":[{"nativeSrc":"50064:36:94","nodeType":"YulAssignment","src":"50064:36:94","value":{"arguments":[{"name":"value","nativeSrc":"50077:5:94","nodeType":"YulIdentifier","src":"50077:5:94"},{"arguments":[{"kind":"number","nativeSrc":"50088:2:94","nodeType":"YulLiteral","src":"50088:2:94","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"50096:1:94","nodeType":"YulLiteral","src":"50096:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"50092:3:94","nodeType":"YulIdentifier","src":"50092:3:94"},"nativeSrc":"50092:6:94","nodeType":"YulFunctionCall","src":"50092:6:94"}],"functionName":{"name":"shl","nativeSrc":"50084:3:94","nodeType":"YulIdentifier","src":"50084:3:94"},"nativeSrc":"50084:15:94","nodeType":"YulFunctionCall","src":"50084:15:94"}],"functionName":{"name":"and","nativeSrc":"50073:3:94","nodeType":"YulIdentifier","src":"50073:3:94"},"nativeSrc":"50073:27:94","nodeType":"YulFunctionCall","src":"50073:27:94"},"variableNames":[{"name":"value","nativeSrc":"50064:5:94","nodeType":"YulIdentifier","src":"50064:5:94"}]},{"nativeSrc":"50113:62:94","nodeType":"YulAssignment","src":"50113:62:94","value":{"arguments":[{"name":"self","nativeSrc":"50127:4:94","nodeType":"YulIdentifier","src":"50127:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"50141:1:94","nodeType":"YulLiteral","src":"50141:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"50144:6:94","nodeType":"YulIdentifier","src":"50144:6:94"}],"functionName":{"name":"mul","nativeSrc":"50137:3:94","nodeType":"YulIdentifier","src":"50137:3:94"},"nativeSrc":"50137:14:94","nodeType":"YulFunctionCall","src":"50137:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"50157:8:94","nodeType":"YulIdentifier","src":"50157:8:94"},{"name":"value","nativeSrc":"50167:5:94","nodeType":"YulIdentifier","src":"50167:5:94"}],"functionName":{"name":"xor","nativeSrc":"50153:3:94","nodeType":"YulIdentifier","src":"50153:3:94"},"nativeSrc":"50153:20:94","nodeType":"YulFunctionCall","src":"50153:20:94"}],"functionName":{"name":"shr","nativeSrc":"50133:3:94","nodeType":"YulIdentifier","src":"50133:3:94"},"nativeSrc":"50133:41:94","nodeType":"YulFunctionCall","src":"50133:41:94"}],"functionName":{"name":"xor","nativeSrc":"50123:3:94","nodeType":"YulIdentifier","src":"50123:3:94"},"nativeSrc":"50123:52:94","nodeType":"YulFunctionCall","src":"50123:52:94"},"variableNames":[{"name":"result","nativeSrc":"50113:6:94","nodeType":"YulIdentifier","src":"50113:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30018,"isOffset":false,"isSlot":false,"src":"50144:6:94","valueSize":1},{"declaration":30024,"isOffset":false,"isSlot":false,"src":"50157:8:94","valueSize":1},{"declaration":30021,"isOffset":false,"isSlot":false,"src":"50113:6:94","valueSize":1},{"declaration":30014,"isOffset":false,"isSlot":false,"src":"50127:4:94","valueSize":1},{"declaration":30016,"isOffset":false,"isSlot":false,"src":"50064:5:94","valueSize":1},{"declaration":30016,"isOffset":false,"isSlot":false,"src":"50077:5:94","valueSize":1},{"declaration":30016,"isOffset":false,"isSlot":false,"src":"50167:5:94","valueSize":1}],"flags":["memory-safe"],"id":30030,"nodeType":"InlineAssembly","src":"50025:160:94"}]},"id":30032,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_20","nameLocation":"49863:13:94","nodeType":"FunctionDefinition","parameters":{"id":30019,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30014,"mutability":"mutable","name":"self","nameLocation":"49885:4:94","nodeType":"VariableDeclaration","scope":30032,"src":"49877:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":30013,"name":"bytes24","nodeType":"ElementaryTypeName","src":"49877:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":30016,"mutability":"mutable","name":"value","nameLocation":"49899:5:94","nodeType":"VariableDeclaration","scope":30032,"src":"49891:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":30015,"name":"bytes20","nodeType":"ElementaryTypeName","src":"49891:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":30018,"mutability":"mutable","name":"offset","nameLocation":"49912:6:94","nodeType":"VariableDeclaration","scope":30032,"src":"49906:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30017,"name":"uint8","nodeType":"ElementaryTypeName","src":"49906:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"49876:43:94"},"returnParameters":{"id":30022,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30021,"mutability":"mutable","name":"result","nameLocation":"49951:6:94","nodeType":"VariableDeclaration","scope":30032,"src":"49943:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":30020,"name":"bytes24","nodeType":"ElementaryTypeName","src":"49943:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"49942:16:94"},"scope":30945,"src":"49854:337:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30049,"nodeType":"Block","src":"50287:173:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30041,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30036,"src":"50301:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"32","id":30042,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50310:1:94","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"50301:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30047,"nodeType":"IfStatement","src":"50297:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30044,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"50320:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50320:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30046,"nodeType":"RevertStatement","src":"50313:25:94"}},{"AST":{"nativeSrc":"50373:81:94","nodeType":"YulBlock","src":"50373:81:94","statements":[{"nativeSrc":"50387:57:94","nodeType":"YulAssignment","src":"50387:57:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"50409:1:94","nodeType":"YulLiteral","src":"50409:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"50412:6:94","nodeType":"YulIdentifier","src":"50412:6:94"}],"functionName":{"name":"mul","nativeSrc":"50405:3:94","nodeType":"YulIdentifier","src":"50405:3:94"},"nativeSrc":"50405:14:94","nodeType":"YulFunctionCall","src":"50405:14:94"},{"name":"self","nativeSrc":"50421:4:94","nodeType":"YulIdentifier","src":"50421:4:94"}],"functionName":{"name":"shl","nativeSrc":"50401:3:94","nodeType":"YulIdentifier","src":"50401:3:94"},"nativeSrc":"50401:25:94","nodeType":"YulFunctionCall","src":"50401:25:94"},{"arguments":[{"kind":"number","nativeSrc":"50432:2:94","nodeType":"YulLiteral","src":"50432:2:94","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"50440:1:94","nodeType":"YulLiteral","src":"50440:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"50436:3:94","nodeType":"YulIdentifier","src":"50436:3:94"},"nativeSrc":"50436:6:94","nodeType":"YulFunctionCall","src":"50436:6:94"}],"functionName":{"name":"shl","nativeSrc":"50428:3:94","nodeType":"YulIdentifier","src":"50428:3:94"},"nativeSrc":"50428:15:94","nodeType":"YulFunctionCall","src":"50428:15:94"}],"functionName":{"name":"and","nativeSrc":"50397:3:94","nodeType":"YulIdentifier","src":"50397:3:94"},"nativeSrc":"50397:47:94","nodeType":"YulFunctionCall","src":"50397:47:94"},"variableNames":[{"name":"result","nativeSrc":"50387:6:94","nodeType":"YulIdentifier","src":"50387:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30036,"isOffset":false,"isSlot":false,"src":"50412:6:94","valueSize":1},{"declaration":30039,"isOffset":false,"isSlot":false,"src":"50387:6:94","valueSize":1},{"declaration":30034,"isOffset":false,"isSlot":false,"src":"50421:4:94","valueSize":1}],"flags":["memory-safe"],"id":30048,"nodeType":"InlineAssembly","src":"50348:106:94"}]},"id":30050,"implemented":true,"kind":"function","modifiers":[],"name":"extract_24_22","nameLocation":"50206:13:94","nodeType":"FunctionDefinition","parameters":{"id":30037,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30034,"mutability":"mutable","name":"self","nameLocation":"50228:4:94","nodeType":"VariableDeclaration","scope":30050,"src":"50220:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":30033,"name":"bytes24","nodeType":"ElementaryTypeName","src":"50220:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":30036,"mutability":"mutable","name":"offset","nameLocation":"50240:6:94","nodeType":"VariableDeclaration","scope":30050,"src":"50234:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30035,"name":"uint8","nodeType":"ElementaryTypeName","src":"50234:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"50219:28:94"},"returnParameters":{"id":30040,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30039,"mutability":"mutable","name":"result","nameLocation":"50279:6:94","nodeType":"VariableDeclaration","scope":30050,"src":"50271:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":30038,"name":"bytes22","nodeType":"ElementaryTypeName","src":"50271:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"50270:16:94"},"scope":30945,"src":"50197:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30069,"nodeType":"Block","src":"50571:232:94","statements":[{"assignments":[30062],"declarations":[{"constant":false,"id":30062,"mutability":"mutable","name":"oldValue","nameLocation":"50589:8:94","nodeType":"VariableDeclaration","scope":30069,"src":"50581:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":30061,"name":"bytes22","nodeType":"ElementaryTypeName","src":"50581:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"id":30067,"initialValue":{"arguments":[{"id":30064,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30052,"src":"50614:4:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"id":30065,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30056,"src":"50620:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30063,"name":"extract_24_22","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30050,"src":"50600:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes24_$_t_uint8_$returns$_t_bytes22_$","typeString":"function (bytes24,uint8) pure returns (bytes22)"}},"id":30066,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50600:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"nodeType":"VariableDeclarationStatement","src":"50581:46:94"},{"AST":{"nativeSrc":"50662:135:94","nodeType":"YulBlock","src":"50662:135:94","statements":[{"nativeSrc":"50676:36:94","nodeType":"YulAssignment","src":"50676:36:94","value":{"arguments":[{"name":"value","nativeSrc":"50689:5:94","nodeType":"YulIdentifier","src":"50689:5:94"},{"arguments":[{"kind":"number","nativeSrc":"50700:2:94","nodeType":"YulLiteral","src":"50700:2:94","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"50708:1:94","nodeType":"YulLiteral","src":"50708:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"50704:3:94","nodeType":"YulIdentifier","src":"50704:3:94"},"nativeSrc":"50704:6:94","nodeType":"YulFunctionCall","src":"50704:6:94"}],"functionName":{"name":"shl","nativeSrc":"50696:3:94","nodeType":"YulIdentifier","src":"50696:3:94"},"nativeSrc":"50696:15:94","nodeType":"YulFunctionCall","src":"50696:15:94"}],"functionName":{"name":"and","nativeSrc":"50685:3:94","nodeType":"YulIdentifier","src":"50685:3:94"},"nativeSrc":"50685:27:94","nodeType":"YulFunctionCall","src":"50685:27:94"},"variableNames":[{"name":"value","nativeSrc":"50676:5:94","nodeType":"YulIdentifier","src":"50676:5:94"}]},{"nativeSrc":"50725:62:94","nodeType":"YulAssignment","src":"50725:62:94","value":{"arguments":[{"name":"self","nativeSrc":"50739:4:94","nodeType":"YulIdentifier","src":"50739:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"50753:1:94","nodeType":"YulLiteral","src":"50753:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"50756:6:94","nodeType":"YulIdentifier","src":"50756:6:94"}],"functionName":{"name":"mul","nativeSrc":"50749:3:94","nodeType":"YulIdentifier","src":"50749:3:94"},"nativeSrc":"50749:14:94","nodeType":"YulFunctionCall","src":"50749:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"50769:8:94","nodeType":"YulIdentifier","src":"50769:8:94"},{"name":"value","nativeSrc":"50779:5:94","nodeType":"YulIdentifier","src":"50779:5:94"}],"functionName":{"name":"xor","nativeSrc":"50765:3:94","nodeType":"YulIdentifier","src":"50765:3:94"},"nativeSrc":"50765:20:94","nodeType":"YulFunctionCall","src":"50765:20:94"}],"functionName":{"name":"shr","nativeSrc":"50745:3:94","nodeType":"YulIdentifier","src":"50745:3:94"},"nativeSrc":"50745:41:94","nodeType":"YulFunctionCall","src":"50745:41:94"}],"functionName":{"name":"xor","nativeSrc":"50735:3:94","nodeType":"YulIdentifier","src":"50735:3:94"},"nativeSrc":"50735:52:94","nodeType":"YulFunctionCall","src":"50735:52:94"},"variableNames":[{"name":"result","nativeSrc":"50725:6:94","nodeType":"YulIdentifier","src":"50725:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30056,"isOffset":false,"isSlot":false,"src":"50756:6:94","valueSize":1},{"declaration":30062,"isOffset":false,"isSlot":false,"src":"50769:8:94","valueSize":1},{"declaration":30059,"isOffset":false,"isSlot":false,"src":"50725:6:94","valueSize":1},{"declaration":30052,"isOffset":false,"isSlot":false,"src":"50739:4:94","valueSize":1},{"declaration":30054,"isOffset":false,"isSlot":false,"src":"50676:5:94","valueSize":1},{"declaration":30054,"isOffset":false,"isSlot":false,"src":"50689:5:94","valueSize":1},{"declaration":30054,"isOffset":false,"isSlot":false,"src":"50779:5:94","valueSize":1}],"flags":["memory-safe"],"id":30068,"nodeType":"InlineAssembly","src":"50637:160:94"}]},"id":30070,"implemented":true,"kind":"function","modifiers":[],"name":"replace_24_22","nameLocation":"50475:13:94","nodeType":"FunctionDefinition","parameters":{"id":30057,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30052,"mutability":"mutable","name":"self","nameLocation":"50497:4:94","nodeType":"VariableDeclaration","scope":30070,"src":"50489:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":30051,"name":"bytes24","nodeType":"ElementaryTypeName","src":"50489:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":30054,"mutability":"mutable","name":"value","nameLocation":"50511:5:94","nodeType":"VariableDeclaration","scope":30070,"src":"50503:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":30053,"name":"bytes22","nodeType":"ElementaryTypeName","src":"50503:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":30056,"mutability":"mutable","name":"offset","nameLocation":"50524:6:94","nodeType":"VariableDeclaration","scope":30070,"src":"50518:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30055,"name":"uint8","nodeType":"ElementaryTypeName","src":"50518:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"50488:43:94"},"returnParameters":{"id":30060,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30059,"mutability":"mutable","name":"result","nameLocation":"50563:6:94","nodeType":"VariableDeclaration","scope":30070,"src":"50555:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":30058,"name":"bytes24","nodeType":"ElementaryTypeName","src":"50555:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"50554:16:94"},"scope":30945,"src":"50466:337:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30087,"nodeType":"Block","src":"50897:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30079,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30074,"src":"50911:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3237","id":30080,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50920:2:94","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"50911:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30085,"nodeType":"IfStatement","src":"50907:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30082,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"50931:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50931:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30084,"nodeType":"RevertStatement","src":"50924:25:94"}},{"AST":{"nativeSrc":"50984:82:94","nodeType":"YulBlock","src":"50984:82:94","statements":[{"nativeSrc":"50998:58:94","nodeType":"YulAssignment","src":"50998:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"51020:1:94","nodeType":"YulLiteral","src":"51020:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"51023:6:94","nodeType":"YulIdentifier","src":"51023:6:94"}],"functionName":{"name":"mul","nativeSrc":"51016:3:94","nodeType":"YulIdentifier","src":"51016:3:94"},"nativeSrc":"51016:14:94","nodeType":"YulFunctionCall","src":"51016:14:94"},{"name":"self","nativeSrc":"51032:4:94","nodeType":"YulIdentifier","src":"51032:4:94"}],"functionName":{"name":"shl","nativeSrc":"51012:3:94","nodeType":"YulIdentifier","src":"51012:3:94"},"nativeSrc":"51012:25:94","nodeType":"YulFunctionCall","src":"51012:25:94"},{"arguments":[{"kind":"number","nativeSrc":"51043:3:94","nodeType":"YulLiteral","src":"51043:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"51052:1:94","nodeType":"YulLiteral","src":"51052:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"51048:3:94","nodeType":"YulIdentifier","src":"51048:3:94"},"nativeSrc":"51048:6:94","nodeType":"YulFunctionCall","src":"51048:6:94"}],"functionName":{"name":"shl","nativeSrc":"51039:3:94","nodeType":"YulIdentifier","src":"51039:3:94"},"nativeSrc":"51039:16:94","nodeType":"YulFunctionCall","src":"51039:16:94"}],"functionName":{"name":"and","nativeSrc":"51008:3:94","nodeType":"YulIdentifier","src":"51008:3:94"},"nativeSrc":"51008:48:94","nodeType":"YulFunctionCall","src":"51008:48:94"},"variableNames":[{"name":"result","nativeSrc":"50998:6:94","nodeType":"YulIdentifier","src":"50998:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30074,"isOffset":false,"isSlot":false,"src":"51023:6:94","valueSize":1},{"declaration":30077,"isOffset":false,"isSlot":false,"src":"50998:6:94","valueSize":1},{"declaration":30072,"isOffset":false,"isSlot":false,"src":"51032:4:94","valueSize":1}],"flags":["memory-safe"],"id":30086,"nodeType":"InlineAssembly","src":"50959:107:94"}]},"id":30088,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_1","nameLocation":"50818:12:94","nodeType":"FunctionDefinition","parameters":{"id":30075,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30072,"mutability":"mutable","name":"self","nameLocation":"50839:4:94","nodeType":"VariableDeclaration","scope":30088,"src":"50831:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30071,"name":"bytes28","nodeType":"ElementaryTypeName","src":"50831:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30074,"mutability":"mutable","name":"offset","nameLocation":"50851:6:94","nodeType":"VariableDeclaration","scope":30088,"src":"50845:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30073,"name":"uint8","nodeType":"ElementaryTypeName","src":"50845:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"50830:28:94"},"returnParameters":{"id":30078,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30077,"mutability":"mutable","name":"result","nameLocation":"50889:6:94","nodeType":"VariableDeclaration","scope":30088,"src":"50882:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":30076,"name":"bytes1","nodeType":"ElementaryTypeName","src":"50882:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"50881:15:94"},"scope":30945,"src":"50809:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30107,"nodeType":"Block","src":"51181:231:94","statements":[{"assignments":[30100],"declarations":[{"constant":false,"id":30100,"mutability":"mutable","name":"oldValue","nameLocation":"51198:8:94","nodeType":"VariableDeclaration","scope":30107,"src":"51191:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":30099,"name":"bytes1","nodeType":"ElementaryTypeName","src":"51191:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":30105,"initialValue":{"arguments":[{"id":30102,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30090,"src":"51222:4:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":30103,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30094,"src":"51228:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30101,"name":"extract_28_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30088,"src":"51209:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes28,uint8) pure returns (bytes1)"}},"id":30104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"51209:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"51191:44:94"},{"AST":{"nativeSrc":"51270:136:94","nodeType":"YulBlock","src":"51270:136:94","statements":[{"nativeSrc":"51284:37:94","nodeType":"YulAssignment","src":"51284:37:94","value":{"arguments":[{"name":"value","nativeSrc":"51297:5:94","nodeType":"YulIdentifier","src":"51297:5:94"},{"arguments":[{"kind":"number","nativeSrc":"51308:3:94","nodeType":"YulLiteral","src":"51308:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"51317:1:94","nodeType":"YulLiteral","src":"51317:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"51313:3:94","nodeType":"YulIdentifier","src":"51313:3:94"},"nativeSrc":"51313:6:94","nodeType":"YulFunctionCall","src":"51313:6:94"}],"functionName":{"name":"shl","nativeSrc":"51304:3:94","nodeType":"YulIdentifier","src":"51304:3:94"},"nativeSrc":"51304:16:94","nodeType":"YulFunctionCall","src":"51304:16:94"}],"functionName":{"name":"and","nativeSrc":"51293:3:94","nodeType":"YulIdentifier","src":"51293:3:94"},"nativeSrc":"51293:28:94","nodeType":"YulFunctionCall","src":"51293:28:94"},"variableNames":[{"name":"value","nativeSrc":"51284:5:94","nodeType":"YulIdentifier","src":"51284:5:94"}]},{"nativeSrc":"51334:62:94","nodeType":"YulAssignment","src":"51334:62:94","value":{"arguments":[{"name":"self","nativeSrc":"51348:4:94","nodeType":"YulIdentifier","src":"51348:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"51362:1:94","nodeType":"YulLiteral","src":"51362:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"51365:6:94","nodeType":"YulIdentifier","src":"51365:6:94"}],"functionName":{"name":"mul","nativeSrc":"51358:3:94","nodeType":"YulIdentifier","src":"51358:3:94"},"nativeSrc":"51358:14:94","nodeType":"YulFunctionCall","src":"51358:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"51378:8:94","nodeType":"YulIdentifier","src":"51378:8:94"},{"name":"value","nativeSrc":"51388:5:94","nodeType":"YulIdentifier","src":"51388:5:94"}],"functionName":{"name":"xor","nativeSrc":"51374:3:94","nodeType":"YulIdentifier","src":"51374:3:94"},"nativeSrc":"51374:20:94","nodeType":"YulFunctionCall","src":"51374:20:94"}],"functionName":{"name":"shr","nativeSrc":"51354:3:94","nodeType":"YulIdentifier","src":"51354:3:94"},"nativeSrc":"51354:41:94","nodeType":"YulFunctionCall","src":"51354:41:94"}],"functionName":{"name":"xor","nativeSrc":"51344:3:94","nodeType":"YulIdentifier","src":"51344:3:94"},"nativeSrc":"51344:52:94","nodeType":"YulFunctionCall","src":"51344:52:94"},"variableNames":[{"name":"result","nativeSrc":"51334:6:94","nodeType":"YulIdentifier","src":"51334:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30094,"isOffset":false,"isSlot":false,"src":"51365:6:94","valueSize":1},{"declaration":30100,"isOffset":false,"isSlot":false,"src":"51378:8:94","valueSize":1},{"declaration":30097,"isOffset":false,"isSlot":false,"src":"51334:6:94","valueSize":1},{"declaration":30090,"isOffset":false,"isSlot":false,"src":"51348:4:94","valueSize":1},{"declaration":30092,"isOffset":false,"isSlot":false,"src":"51284:5:94","valueSize":1},{"declaration":30092,"isOffset":false,"isSlot":false,"src":"51297:5:94","valueSize":1},{"declaration":30092,"isOffset":false,"isSlot":false,"src":"51388:5:94","valueSize":1}],"flags":["memory-safe"],"id":30106,"nodeType":"InlineAssembly","src":"51245:161:94"}]},"id":30108,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_1","nameLocation":"51087:12:94","nodeType":"FunctionDefinition","parameters":{"id":30095,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30090,"mutability":"mutable","name":"self","nameLocation":"51108:4:94","nodeType":"VariableDeclaration","scope":30108,"src":"51100:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30089,"name":"bytes28","nodeType":"ElementaryTypeName","src":"51100:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30092,"mutability":"mutable","name":"value","nameLocation":"51121:5:94","nodeType":"VariableDeclaration","scope":30108,"src":"51114:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":30091,"name":"bytes1","nodeType":"ElementaryTypeName","src":"51114:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":30094,"mutability":"mutable","name":"offset","nameLocation":"51134:6:94","nodeType":"VariableDeclaration","scope":30108,"src":"51128:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30093,"name":"uint8","nodeType":"ElementaryTypeName","src":"51128:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"51099:42:94"},"returnParameters":{"id":30098,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30097,"mutability":"mutable","name":"result","nameLocation":"51173:6:94","nodeType":"VariableDeclaration","scope":30108,"src":"51165:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30096,"name":"bytes28","nodeType":"ElementaryTypeName","src":"51165:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"51164:16:94"},"scope":30945,"src":"51078:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30125,"nodeType":"Block","src":"51506:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30117,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30112,"src":"51520:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3236","id":30118,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51529:2:94","typeDescriptions":{"typeIdentifier":"t_rational_26_by_1","typeString":"int_const 26"},"value":"26"},"src":"51520:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30123,"nodeType":"IfStatement","src":"51516:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30120,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"51540:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30121,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"51540:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30122,"nodeType":"RevertStatement","src":"51533:25:94"}},{"AST":{"nativeSrc":"51593:82:94","nodeType":"YulBlock","src":"51593:82:94","statements":[{"nativeSrc":"51607:58:94","nodeType":"YulAssignment","src":"51607:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"51629:1:94","nodeType":"YulLiteral","src":"51629:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"51632:6:94","nodeType":"YulIdentifier","src":"51632:6:94"}],"functionName":{"name":"mul","nativeSrc":"51625:3:94","nodeType":"YulIdentifier","src":"51625:3:94"},"nativeSrc":"51625:14:94","nodeType":"YulFunctionCall","src":"51625:14:94"},{"name":"self","nativeSrc":"51641:4:94","nodeType":"YulIdentifier","src":"51641:4:94"}],"functionName":{"name":"shl","nativeSrc":"51621:3:94","nodeType":"YulIdentifier","src":"51621:3:94"},"nativeSrc":"51621:25:94","nodeType":"YulFunctionCall","src":"51621:25:94"},{"arguments":[{"kind":"number","nativeSrc":"51652:3:94","nodeType":"YulLiteral","src":"51652:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"51661:1:94","nodeType":"YulLiteral","src":"51661:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"51657:3:94","nodeType":"YulIdentifier","src":"51657:3:94"},"nativeSrc":"51657:6:94","nodeType":"YulFunctionCall","src":"51657:6:94"}],"functionName":{"name":"shl","nativeSrc":"51648:3:94","nodeType":"YulIdentifier","src":"51648:3:94"},"nativeSrc":"51648:16:94","nodeType":"YulFunctionCall","src":"51648:16:94"}],"functionName":{"name":"and","nativeSrc":"51617:3:94","nodeType":"YulIdentifier","src":"51617:3:94"},"nativeSrc":"51617:48:94","nodeType":"YulFunctionCall","src":"51617:48:94"},"variableNames":[{"name":"result","nativeSrc":"51607:6:94","nodeType":"YulIdentifier","src":"51607:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30112,"isOffset":false,"isSlot":false,"src":"51632:6:94","valueSize":1},{"declaration":30115,"isOffset":false,"isSlot":false,"src":"51607:6:94","valueSize":1},{"declaration":30110,"isOffset":false,"isSlot":false,"src":"51641:4:94","valueSize":1}],"flags":["memory-safe"],"id":30124,"nodeType":"InlineAssembly","src":"51568:107:94"}]},"id":30126,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_2","nameLocation":"51427:12:94","nodeType":"FunctionDefinition","parameters":{"id":30113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30110,"mutability":"mutable","name":"self","nameLocation":"51448:4:94","nodeType":"VariableDeclaration","scope":30126,"src":"51440:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30109,"name":"bytes28","nodeType":"ElementaryTypeName","src":"51440:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30112,"mutability":"mutable","name":"offset","nameLocation":"51460:6:94","nodeType":"VariableDeclaration","scope":30126,"src":"51454:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30111,"name":"uint8","nodeType":"ElementaryTypeName","src":"51454:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"51439:28:94"},"returnParameters":{"id":30116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30115,"mutability":"mutable","name":"result","nameLocation":"51498:6:94","nodeType":"VariableDeclaration","scope":30126,"src":"51491:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":30114,"name":"bytes2","nodeType":"ElementaryTypeName","src":"51491:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"51490:15:94"},"scope":30945,"src":"51418:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30145,"nodeType":"Block","src":"51790:231:94","statements":[{"assignments":[30138],"declarations":[{"constant":false,"id":30138,"mutability":"mutable","name":"oldValue","nameLocation":"51807:8:94","nodeType":"VariableDeclaration","scope":30145,"src":"51800:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":30137,"name":"bytes2","nodeType":"ElementaryTypeName","src":"51800:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":30143,"initialValue":{"arguments":[{"id":30140,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30128,"src":"51831:4:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":30141,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30132,"src":"51837:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30139,"name":"extract_28_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30126,"src":"51818:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes28,uint8) pure returns (bytes2)"}},"id":30142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"51818:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"51800:44:94"},{"AST":{"nativeSrc":"51879:136:94","nodeType":"YulBlock","src":"51879:136:94","statements":[{"nativeSrc":"51893:37:94","nodeType":"YulAssignment","src":"51893:37:94","value":{"arguments":[{"name":"value","nativeSrc":"51906:5:94","nodeType":"YulIdentifier","src":"51906:5:94"},{"arguments":[{"kind":"number","nativeSrc":"51917:3:94","nodeType":"YulLiteral","src":"51917:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"51926:1:94","nodeType":"YulLiteral","src":"51926:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"51922:3:94","nodeType":"YulIdentifier","src":"51922:3:94"},"nativeSrc":"51922:6:94","nodeType":"YulFunctionCall","src":"51922:6:94"}],"functionName":{"name":"shl","nativeSrc":"51913:3:94","nodeType":"YulIdentifier","src":"51913:3:94"},"nativeSrc":"51913:16:94","nodeType":"YulFunctionCall","src":"51913:16:94"}],"functionName":{"name":"and","nativeSrc":"51902:3:94","nodeType":"YulIdentifier","src":"51902:3:94"},"nativeSrc":"51902:28:94","nodeType":"YulFunctionCall","src":"51902:28:94"},"variableNames":[{"name":"value","nativeSrc":"51893:5:94","nodeType":"YulIdentifier","src":"51893:5:94"}]},{"nativeSrc":"51943:62:94","nodeType":"YulAssignment","src":"51943:62:94","value":{"arguments":[{"name":"self","nativeSrc":"51957:4:94","nodeType":"YulIdentifier","src":"51957:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"51971:1:94","nodeType":"YulLiteral","src":"51971:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"51974:6:94","nodeType":"YulIdentifier","src":"51974:6:94"}],"functionName":{"name":"mul","nativeSrc":"51967:3:94","nodeType":"YulIdentifier","src":"51967:3:94"},"nativeSrc":"51967:14:94","nodeType":"YulFunctionCall","src":"51967:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"51987:8:94","nodeType":"YulIdentifier","src":"51987:8:94"},{"name":"value","nativeSrc":"51997:5:94","nodeType":"YulIdentifier","src":"51997:5:94"}],"functionName":{"name":"xor","nativeSrc":"51983:3:94","nodeType":"YulIdentifier","src":"51983:3:94"},"nativeSrc":"51983:20:94","nodeType":"YulFunctionCall","src":"51983:20:94"}],"functionName":{"name":"shr","nativeSrc":"51963:3:94","nodeType":"YulIdentifier","src":"51963:3:94"},"nativeSrc":"51963:41:94","nodeType":"YulFunctionCall","src":"51963:41:94"}],"functionName":{"name":"xor","nativeSrc":"51953:3:94","nodeType":"YulIdentifier","src":"51953:3:94"},"nativeSrc":"51953:52:94","nodeType":"YulFunctionCall","src":"51953:52:94"},"variableNames":[{"name":"result","nativeSrc":"51943:6:94","nodeType":"YulIdentifier","src":"51943:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30132,"isOffset":false,"isSlot":false,"src":"51974:6:94","valueSize":1},{"declaration":30138,"isOffset":false,"isSlot":false,"src":"51987:8:94","valueSize":1},{"declaration":30135,"isOffset":false,"isSlot":false,"src":"51943:6:94","valueSize":1},{"declaration":30128,"isOffset":false,"isSlot":false,"src":"51957:4:94","valueSize":1},{"declaration":30130,"isOffset":false,"isSlot":false,"src":"51893:5:94","valueSize":1},{"declaration":30130,"isOffset":false,"isSlot":false,"src":"51906:5:94","valueSize":1},{"declaration":30130,"isOffset":false,"isSlot":false,"src":"51997:5:94","valueSize":1}],"flags":["memory-safe"],"id":30144,"nodeType":"InlineAssembly","src":"51854:161:94"}]},"id":30146,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_2","nameLocation":"51696:12:94","nodeType":"FunctionDefinition","parameters":{"id":30133,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30128,"mutability":"mutable","name":"self","nameLocation":"51717:4:94","nodeType":"VariableDeclaration","scope":30146,"src":"51709:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30127,"name":"bytes28","nodeType":"ElementaryTypeName","src":"51709:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30130,"mutability":"mutable","name":"value","nameLocation":"51730:5:94","nodeType":"VariableDeclaration","scope":30146,"src":"51723:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":30129,"name":"bytes2","nodeType":"ElementaryTypeName","src":"51723:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":30132,"mutability":"mutable","name":"offset","nameLocation":"51743:6:94","nodeType":"VariableDeclaration","scope":30146,"src":"51737:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30131,"name":"uint8","nodeType":"ElementaryTypeName","src":"51737:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"51708:42:94"},"returnParameters":{"id":30136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30135,"mutability":"mutable","name":"result","nameLocation":"51782:6:94","nodeType":"VariableDeclaration","scope":30146,"src":"51774:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30134,"name":"bytes28","nodeType":"ElementaryTypeName","src":"51774:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"51773:16:94"},"scope":30945,"src":"51687:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30163,"nodeType":"Block","src":"52115:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30157,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30155,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30150,"src":"52129:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3234","id":30156,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"52138:2:94","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},"src":"52129:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30161,"nodeType":"IfStatement","src":"52125:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30158,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"52149:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30159,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"52149:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30160,"nodeType":"RevertStatement","src":"52142:25:94"}},{"AST":{"nativeSrc":"52202:82:94","nodeType":"YulBlock","src":"52202:82:94","statements":[{"nativeSrc":"52216:58:94","nodeType":"YulAssignment","src":"52216:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"52238:1:94","nodeType":"YulLiteral","src":"52238:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"52241:6:94","nodeType":"YulIdentifier","src":"52241:6:94"}],"functionName":{"name":"mul","nativeSrc":"52234:3:94","nodeType":"YulIdentifier","src":"52234:3:94"},"nativeSrc":"52234:14:94","nodeType":"YulFunctionCall","src":"52234:14:94"},{"name":"self","nativeSrc":"52250:4:94","nodeType":"YulIdentifier","src":"52250:4:94"}],"functionName":{"name":"shl","nativeSrc":"52230:3:94","nodeType":"YulIdentifier","src":"52230:3:94"},"nativeSrc":"52230:25:94","nodeType":"YulFunctionCall","src":"52230:25:94"},{"arguments":[{"kind":"number","nativeSrc":"52261:3:94","nodeType":"YulLiteral","src":"52261:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"52270:1:94","nodeType":"YulLiteral","src":"52270:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"52266:3:94","nodeType":"YulIdentifier","src":"52266:3:94"},"nativeSrc":"52266:6:94","nodeType":"YulFunctionCall","src":"52266:6:94"}],"functionName":{"name":"shl","nativeSrc":"52257:3:94","nodeType":"YulIdentifier","src":"52257:3:94"},"nativeSrc":"52257:16:94","nodeType":"YulFunctionCall","src":"52257:16:94"}],"functionName":{"name":"and","nativeSrc":"52226:3:94","nodeType":"YulIdentifier","src":"52226:3:94"},"nativeSrc":"52226:48:94","nodeType":"YulFunctionCall","src":"52226:48:94"},"variableNames":[{"name":"result","nativeSrc":"52216:6:94","nodeType":"YulIdentifier","src":"52216:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30150,"isOffset":false,"isSlot":false,"src":"52241:6:94","valueSize":1},{"declaration":30153,"isOffset":false,"isSlot":false,"src":"52216:6:94","valueSize":1},{"declaration":30148,"isOffset":false,"isSlot":false,"src":"52250:4:94","valueSize":1}],"flags":["memory-safe"],"id":30162,"nodeType":"InlineAssembly","src":"52177:107:94"}]},"id":30164,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_4","nameLocation":"52036:12:94","nodeType":"FunctionDefinition","parameters":{"id":30151,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30148,"mutability":"mutable","name":"self","nameLocation":"52057:4:94","nodeType":"VariableDeclaration","scope":30164,"src":"52049:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30147,"name":"bytes28","nodeType":"ElementaryTypeName","src":"52049:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30150,"mutability":"mutable","name":"offset","nameLocation":"52069:6:94","nodeType":"VariableDeclaration","scope":30164,"src":"52063:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30149,"name":"uint8","nodeType":"ElementaryTypeName","src":"52063:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"52048:28:94"},"returnParameters":{"id":30154,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30153,"mutability":"mutable","name":"result","nameLocation":"52107:6:94","nodeType":"VariableDeclaration","scope":30164,"src":"52100:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":30152,"name":"bytes4","nodeType":"ElementaryTypeName","src":"52100:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"52099:15:94"},"scope":30945,"src":"52027:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30183,"nodeType":"Block","src":"52399:231:94","statements":[{"assignments":[30176],"declarations":[{"constant":false,"id":30176,"mutability":"mutable","name":"oldValue","nameLocation":"52416:8:94","nodeType":"VariableDeclaration","scope":30183,"src":"52409:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":30175,"name":"bytes4","nodeType":"ElementaryTypeName","src":"52409:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":30181,"initialValue":{"arguments":[{"id":30178,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30166,"src":"52440:4:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":30179,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30170,"src":"52446:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30177,"name":"extract_28_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30164,"src":"52427:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes28,uint8) pure returns (bytes4)"}},"id":30180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"52427:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"52409:44:94"},{"AST":{"nativeSrc":"52488:136:94","nodeType":"YulBlock","src":"52488:136:94","statements":[{"nativeSrc":"52502:37:94","nodeType":"YulAssignment","src":"52502:37:94","value":{"arguments":[{"name":"value","nativeSrc":"52515:5:94","nodeType":"YulIdentifier","src":"52515:5:94"},{"arguments":[{"kind":"number","nativeSrc":"52526:3:94","nodeType":"YulLiteral","src":"52526:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"52535:1:94","nodeType":"YulLiteral","src":"52535:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"52531:3:94","nodeType":"YulIdentifier","src":"52531:3:94"},"nativeSrc":"52531:6:94","nodeType":"YulFunctionCall","src":"52531:6:94"}],"functionName":{"name":"shl","nativeSrc":"52522:3:94","nodeType":"YulIdentifier","src":"52522:3:94"},"nativeSrc":"52522:16:94","nodeType":"YulFunctionCall","src":"52522:16:94"}],"functionName":{"name":"and","nativeSrc":"52511:3:94","nodeType":"YulIdentifier","src":"52511:3:94"},"nativeSrc":"52511:28:94","nodeType":"YulFunctionCall","src":"52511:28:94"},"variableNames":[{"name":"value","nativeSrc":"52502:5:94","nodeType":"YulIdentifier","src":"52502:5:94"}]},{"nativeSrc":"52552:62:94","nodeType":"YulAssignment","src":"52552:62:94","value":{"arguments":[{"name":"self","nativeSrc":"52566:4:94","nodeType":"YulIdentifier","src":"52566:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"52580:1:94","nodeType":"YulLiteral","src":"52580:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"52583:6:94","nodeType":"YulIdentifier","src":"52583:6:94"}],"functionName":{"name":"mul","nativeSrc":"52576:3:94","nodeType":"YulIdentifier","src":"52576:3:94"},"nativeSrc":"52576:14:94","nodeType":"YulFunctionCall","src":"52576:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"52596:8:94","nodeType":"YulIdentifier","src":"52596:8:94"},{"name":"value","nativeSrc":"52606:5:94","nodeType":"YulIdentifier","src":"52606:5:94"}],"functionName":{"name":"xor","nativeSrc":"52592:3:94","nodeType":"YulIdentifier","src":"52592:3:94"},"nativeSrc":"52592:20:94","nodeType":"YulFunctionCall","src":"52592:20:94"}],"functionName":{"name":"shr","nativeSrc":"52572:3:94","nodeType":"YulIdentifier","src":"52572:3:94"},"nativeSrc":"52572:41:94","nodeType":"YulFunctionCall","src":"52572:41:94"}],"functionName":{"name":"xor","nativeSrc":"52562:3:94","nodeType":"YulIdentifier","src":"52562:3:94"},"nativeSrc":"52562:52:94","nodeType":"YulFunctionCall","src":"52562:52:94"},"variableNames":[{"name":"result","nativeSrc":"52552:6:94","nodeType":"YulIdentifier","src":"52552:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30170,"isOffset":false,"isSlot":false,"src":"52583:6:94","valueSize":1},{"declaration":30176,"isOffset":false,"isSlot":false,"src":"52596:8:94","valueSize":1},{"declaration":30173,"isOffset":false,"isSlot":false,"src":"52552:6:94","valueSize":1},{"declaration":30166,"isOffset":false,"isSlot":false,"src":"52566:4:94","valueSize":1},{"declaration":30168,"isOffset":false,"isSlot":false,"src":"52502:5:94","valueSize":1},{"declaration":30168,"isOffset":false,"isSlot":false,"src":"52515:5:94","valueSize":1},{"declaration":30168,"isOffset":false,"isSlot":false,"src":"52606:5:94","valueSize":1}],"flags":["memory-safe"],"id":30182,"nodeType":"InlineAssembly","src":"52463:161:94"}]},"id":30184,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_4","nameLocation":"52305:12:94","nodeType":"FunctionDefinition","parameters":{"id":30171,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30166,"mutability":"mutable","name":"self","nameLocation":"52326:4:94","nodeType":"VariableDeclaration","scope":30184,"src":"52318:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30165,"name":"bytes28","nodeType":"ElementaryTypeName","src":"52318:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30168,"mutability":"mutable","name":"value","nameLocation":"52339:5:94","nodeType":"VariableDeclaration","scope":30184,"src":"52332:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":30167,"name":"bytes4","nodeType":"ElementaryTypeName","src":"52332:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":30170,"mutability":"mutable","name":"offset","nameLocation":"52352:6:94","nodeType":"VariableDeclaration","scope":30184,"src":"52346:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30169,"name":"uint8","nodeType":"ElementaryTypeName","src":"52346:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"52317:42:94"},"returnParameters":{"id":30174,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30173,"mutability":"mutable","name":"result","nameLocation":"52391:6:94","nodeType":"VariableDeclaration","scope":30184,"src":"52383:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30172,"name":"bytes28","nodeType":"ElementaryTypeName","src":"52383:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"52382:16:94"},"scope":30945,"src":"52296:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30201,"nodeType":"Block","src":"52724:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30195,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30193,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30188,"src":"52738:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3232","id":30194,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"52747:2:94","typeDescriptions":{"typeIdentifier":"t_rational_22_by_1","typeString":"int_const 22"},"value":"22"},"src":"52738:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30199,"nodeType":"IfStatement","src":"52734:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30196,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"52758:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30197,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"52758:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30198,"nodeType":"RevertStatement","src":"52751:25:94"}},{"AST":{"nativeSrc":"52811:82:94","nodeType":"YulBlock","src":"52811:82:94","statements":[{"nativeSrc":"52825:58:94","nodeType":"YulAssignment","src":"52825:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"52847:1:94","nodeType":"YulLiteral","src":"52847:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"52850:6:94","nodeType":"YulIdentifier","src":"52850:6:94"}],"functionName":{"name":"mul","nativeSrc":"52843:3:94","nodeType":"YulIdentifier","src":"52843:3:94"},"nativeSrc":"52843:14:94","nodeType":"YulFunctionCall","src":"52843:14:94"},{"name":"self","nativeSrc":"52859:4:94","nodeType":"YulIdentifier","src":"52859:4:94"}],"functionName":{"name":"shl","nativeSrc":"52839:3:94","nodeType":"YulIdentifier","src":"52839:3:94"},"nativeSrc":"52839:25:94","nodeType":"YulFunctionCall","src":"52839:25:94"},{"arguments":[{"kind":"number","nativeSrc":"52870:3:94","nodeType":"YulLiteral","src":"52870:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"52879:1:94","nodeType":"YulLiteral","src":"52879:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"52875:3:94","nodeType":"YulIdentifier","src":"52875:3:94"},"nativeSrc":"52875:6:94","nodeType":"YulFunctionCall","src":"52875:6:94"}],"functionName":{"name":"shl","nativeSrc":"52866:3:94","nodeType":"YulIdentifier","src":"52866:3:94"},"nativeSrc":"52866:16:94","nodeType":"YulFunctionCall","src":"52866:16:94"}],"functionName":{"name":"and","nativeSrc":"52835:3:94","nodeType":"YulIdentifier","src":"52835:3:94"},"nativeSrc":"52835:48:94","nodeType":"YulFunctionCall","src":"52835:48:94"},"variableNames":[{"name":"result","nativeSrc":"52825:6:94","nodeType":"YulIdentifier","src":"52825:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30188,"isOffset":false,"isSlot":false,"src":"52850:6:94","valueSize":1},{"declaration":30191,"isOffset":false,"isSlot":false,"src":"52825:6:94","valueSize":1},{"declaration":30186,"isOffset":false,"isSlot":false,"src":"52859:4:94","valueSize":1}],"flags":["memory-safe"],"id":30200,"nodeType":"InlineAssembly","src":"52786:107:94"}]},"id":30202,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_6","nameLocation":"52645:12:94","nodeType":"FunctionDefinition","parameters":{"id":30189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30186,"mutability":"mutable","name":"self","nameLocation":"52666:4:94","nodeType":"VariableDeclaration","scope":30202,"src":"52658:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30185,"name":"bytes28","nodeType":"ElementaryTypeName","src":"52658:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30188,"mutability":"mutable","name":"offset","nameLocation":"52678:6:94","nodeType":"VariableDeclaration","scope":30202,"src":"52672:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30187,"name":"uint8","nodeType":"ElementaryTypeName","src":"52672:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"52657:28:94"},"returnParameters":{"id":30192,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30191,"mutability":"mutable","name":"result","nameLocation":"52716:6:94","nodeType":"VariableDeclaration","scope":30202,"src":"52709:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":30190,"name":"bytes6","nodeType":"ElementaryTypeName","src":"52709:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"52708:15:94"},"scope":30945,"src":"52636:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30221,"nodeType":"Block","src":"53008:231:94","statements":[{"assignments":[30214],"declarations":[{"constant":false,"id":30214,"mutability":"mutable","name":"oldValue","nameLocation":"53025:8:94","nodeType":"VariableDeclaration","scope":30221,"src":"53018:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":30213,"name":"bytes6","nodeType":"ElementaryTypeName","src":"53018:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":30219,"initialValue":{"arguments":[{"id":30216,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30204,"src":"53049:4:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":30217,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30208,"src":"53055:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30215,"name":"extract_28_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30202,"src":"53036:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes28,uint8) pure returns (bytes6)"}},"id":30218,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"53036:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"53018:44:94"},{"AST":{"nativeSrc":"53097:136:94","nodeType":"YulBlock","src":"53097:136:94","statements":[{"nativeSrc":"53111:37:94","nodeType":"YulAssignment","src":"53111:37:94","value":{"arguments":[{"name":"value","nativeSrc":"53124:5:94","nodeType":"YulIdentifier","src":"53124:5:94"},{"arguments":[{"kind":"number","nativeSrc":"53135:3:94","nodeType":"YulLiteral","src":"53135:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"53144:1:94","nodeType":"YulLiteral","src":"53144:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"53140:3:94","nodeType":"YulIdentifier","src":"53140:3:94"},"nativeSrc":"53140:6:94","nodeType":"YulFunctionCall","src":"53140:6:94"}],"functionName":{"name":"shl","nativeSrc":"53131:3:94","nodeType":"YulIdentifier","src":"53131:3:94"},"nativeSrc":"53131:16:94","nodeType":"YulFunctionCall","src":"53131:16:94"}],"functionName":{"name":"and","nativeSrc":"53120:3:94","nodeType":"YulIdentifier","src":"53120:3:94"},"nativeSrc":"53120:28:94","nodeType":"YulFunctionCall","src":"53120:28:94"},"variableNames":[{"name":"value","nativeSrc":"53111:5:94","nodeType":"YulIdentifier","src":"53111:5:94"}]},{"nativeSrc":"53161:62:94","nodeType":"YulAssignment","src":"53161:62:94","value":{"arguments":[{"name":"self","nativeSrc":"53175:4:94","nodeType":"YulIdentifier","src":"53175:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"53189:1:94","nodeType":"YulLiteral","src":"53189:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"53192:6:94","nodeType":"YulIdentifier","src":"53192:6:94"}],"functionName":{"name":"mul","nativeSrc":"53185:3:94","nodeType":"YulIdentifier","src":"53185:3:94"},"nativeSrc":"53185:14:94","nodeType":"YulFunctionCall","src":"53185:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"53205:8:94","nodeType":"YulIdentifier","src":"53205:8:94"},{"name":"value","nativeSrc":"53215:5:94","nodeType":"YulIdentifier","src":"53215:5:94"}],"functionName":{"name":"xor","nativeSrc":"53201:3:94","nodeType":"YulIdentifier","src":"53201:3:94"},"nativeSrc":"53201:20:94","nodeType":"YulFunctionCall","src":"53201:20:94"}],"functionName":{"name":"shr","nativeSrc":"53181:3:94","nodeType":"YulIdentifier","src":"53181:3:94"},"nativeSrc":"53181:41:94","nodeType":"YulFunctionCall","src":"53181:41:94"}],"functionName":{"name":"xor","nativeSrc":"53171:3:94","nodeType":"YulIdentifier","src":"53171:3:94"},"nativeSrc":"53171:52:94","nodeType":"YulFunctionCall","src":"53171:52:94"},"variableNames":[{"name":"result","nativeSrc":"53161:6:94","nodeType":"YulIdentifier","src":"53161:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30208,"isOffset":false,"isSlot":false,"src":"53192:6:94","valueSize":1},{"declaration":30214,"isOffset":false,"isSlot":false,"src":"53205:8:94","valueSize":1},{"declaration":30211,"isOffset":false,"isSlot":false,"src":"53161:6:94","valueSize":1},{"declaration":30204,"isOffset":false,"isSlot":false,"src":"53175:4:94","valueSize":1},{"declaration":30206,"isOffset":false,"isSlot":false,"src":"53111:5:94","valueSize":1},{"declaration":30206,"isOffset":false,"isSlot":false,"src":"53124:5:94","valueSize":1},{"declaration":30206,"isOffset":false,"isSlot":false,"src":"53215:5:94","valueSize":1}],"flags":["memory-safe"],"id":30220,"nodeType":"InlineAssembly","src":"53072:161:94"}]},"id":30222,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_6","nameLocation":"52914:12:94","nodeType":"FunctionDefinition","parameters":{"id":30209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30204,"mutability":"mutable","name":"self","nameLocation":"52935:4:94","nodeType":"VariableDeclaration","scope":30222,"src":"52927:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30203,"name":"bytes28","nodeType":"ElementaryTypeName","src":"52927:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30206,"mutability":"mutable","name":"value","nameLocation":"52948:5:94","nodeType":"VariableDeclaration","scope":30222,"src":"52941:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":30205,"name":"bytes6","nodeType":"ElementaryTypeName","src":"52941:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":30208,"mutability":"mutable","name":"offset","nameLocation":"52961:6:94","nodeType":"VariableDeclaration","scope":30222,"src":"52955:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30207,"name":"uint8","nodeType":"ElementaryTypeName","src":"52955:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"52926:42:94"},"returnParameters":{"id":30212,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30211,"mutability":"mutable","name":"result","nameLocation":"53000:6:94","nodeType":"VariableDeclaration","scope":30222,"src":"52992:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30210,"name":"bytes28","nodeType":"ElementaryTypeName","src":"52992:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"52991:16:94"},"scope":30945,"src":"52905:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30239,"nodeType":"Block","src":"53333:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30233,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30231,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30226,"src":"53347:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3230","id":30232,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"53356:2:94","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"src":"53347:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30237,"nodeType":"IfStatement","src":"53343:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30234,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"53367:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30235,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"53367:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30236,"nodeType":"RevertStatement","src":"53360:25:94"}},{"AST":{"nativeSrc":"53420:82:94","nodeType":"YulBlock","src":"53420:82:94","statements":[{"nativeSrc":"53434:58:94","nodeType":"YulAssignment","src":"53434:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"53456:1:94","nodeType":"YulLiteral","src":"53456:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"53459:6:94","nodeType":"YulIdentifier","src":"53459:6:94"}],"functionName":{"name":"mul","nativeSrc":"53452:3:94","nodeType":"YulIdentifier","src":"53452:3:94"},"nativeSrc":"53452:14:94","nodeType":"YulFunctionCall","src":"53452:14:94"},{"name":"self","nativeSrc":"53468:4:94","nodeType":"YulIdentifier","src":"53468:4:94"}],"functionName":{"name":"shl","nativeSrc":"53448:3:94","nodeType":"YulIdentifier","src":"53448:3:94"},"nativeSrc":"53448:25:94","nodeType":"YulFunctionCall","src":"53448:25:94"},{"arguments":[{"kind":"number","nativeSrc":"53479:3:94","nodeType":"YulLiteral","src":"53479:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"53488:1:94","nodeType":"YulLiteral","src":"53488:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"53484:3:94","nodeType":"YulIdentifier","src":"53484:3:94"},"nativeSrc":"53484:6:94","nodeType":"YulFunctionCall","src":"53484:6:94"}],"functionName":{"name":"shl","nativeSrc":"53475:3:94","nodeType":"YulIdentifier","src":"53475:3:94"},"nativeSrc":"53475:16:94","nodeType":"YulFunctionCall","src":"53475:16:94"}],"functionName":{"name":"and","nativeSrc":"53444:3:94","nodeType":"YulIdentifier","src":"53444:3:94"},"nativeSrc":"53444:48:94","nodeType":"YulFunctionCall","src":"53444:48:94"},"variableNames":[{"name":"result","nativeSrc":"53434:6:94","nodeType":"YulIdentifier","src":"53434:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30226,"isOffset":false,"isSlot":false,"src":"53459:6:94","valueSize":1},{"declaration":30229,"isOffset":false,"isSlot":false,"src":"53434:6:94","valueSize":1},{"declaration":30224,"isOffset":false,"isSlot":false,"src":"53468:4:94","valueSize":1}],"flags":["memory-safe"],"id":30238,"nodeType":"InlineAssembly","src":"53395:107:94"}]},"id":30240,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_8","nameLocation":"53254:12:94","nodeType":"FunctionDefinition","parameters":{"id":30227,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30224,"mutability":"mutable","name":"self","nameLocation":"53275:4:94","nodeType":"VariableDeclaration","scope":30240,"src":"53267:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30223,"name":"bytes28","nodeType":"ElementaryTypeName","src":"53267:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30226,"mutability":"mutable","name":"offset","nameLocation":"53287:6:94","nodeType":"VariableDeclaration","scope":30240,"src":"53281:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30225,"name":"uint8","nodeType":"ElementaryTypeName","src":"53281:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"53266:28:94"},"returnParameters":{"id":30230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30229,"mutability":"mutable","name":"result","nameLocation":"53325:6:94","nodeType":"VariableDeclaration","scope":30240,"src":"53318:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":30228,"name":"bytes8","nodeType":"ElementaryTypeName","src":"53318:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"53317:15:94"},"scope":30945,"src":"53245:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30259,"nodeType":"Block","src":"53617:231:94","statements":[{"assignments":[30252],"declarations":[{"constant":false,"id":30252,"mutability":"mutable","name":"oldValue","nameLocation":"53634:8:94","nodeType":"VariableDeclaration","scope":30259,"src":"53627:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":30251,"name":"bytes8","nodeType":"ElementaryTypeName","src":"53627:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"id":30257,"initialValue":{"arguments":[{"id":30254,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30242,"src":"53658:4:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":30255,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30246,"src":"53664:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30253,"name":"extract_28_8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30240,"src":"53645:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes8_$","typeString":"function (bytes28,uint8) pure returns (bytes8)"}},"id":30256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"53645:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"VariableDeclarationStatement","src":"53627:44:94"},{"AST":{"nativeSrc":"53706:136:94","nodeType":"YulBlock","src":"53706:136:94","statements":[{"nativeSrc":"53720:37:94","nodeType":"YulAssignment","src":"53720:37:94","value":{"arguments":[{"name":"value","nativeSrc":"53733:5:94","nodeType":"YulIdentifier","src":"53733:5:94"},{"arguments":[{"kind":"number","nativeSrc":"53744:3:94","nodeType":"YulLiteral","src":"53744:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"53753:1:94","nodeType":"YulLiteral","src":"53753:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"53749:3:94","nodeType":"YulIdentifier","src":"53749:3:94"},"nativeSrc":"53749:6:94","nodeType":"YulFunctionCall","src":"53749:6:94"}],"functionName":{"name":"shl","nativeSrc":"53740:3:94","nodeType":"YulIdentifier","src":"53740:3:94"},"nativeSrc":"53740:16:94","nodeType":"YulFunctionCall","src":"53740:16:94"}],"functionName":{"name":"and","nativeSrc":"53729:3:94","nodeType":"YulIdentifier","src":"53729:3:94"},"nativeSrc":"53729:28:94","nodeType":"YulFunctionCall","src":"53729:28:94"},"variableNames":[{"name":"value","nativeSrc":"53720:5:94","nodeType":"YulIdentifier","src":"53720:5:94"}]},{"nativeSrc":"53770:62:94","nodeType":"YulAssignment","src":"53770:62:94","value":{"arguments":[{"name":"self","nativeSrc":"53784:4:94","nodeType":"YulIdentifier","src":"53784:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"53798:1:94","nodeType":"YulLiteral","src":"53798:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"53801:6:94","nodeType":"YulIdentifier","src":"53801:6:94"}],"functionName":{"name":"mul","nativeSrc":"53794:3:94","nodeType":"YulIdentifier","src":"53794:3:94"},"nativeSrc":"53794:14:94","nodeType":"YulFunctionCall","src":"53794:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"53814:8:94","nodeType":"YulIdentifier","src":"53814:8:94"},{"name":"value","nativeSrc":"53824:5:94","nodeType":"YulIdentifier","src":"53824:5:94"}],"functionName":{"name":"xor","nativeSrc":"53810:3:94","nodeType":"YulIdentifier","src":"53810:3:94"},"nativeSrc":"53810:20:94","nodeType":"YulFunctionCall","src":"53810:20:94"}],"functionName":{"name":"shr","nativeSrc":"53790:3:94","nodeType":"YulIdentifier","src":"53790:3:94"},"nativeSrc":"53790:41:94","nodeType":"YulFunctionCall","src":"53790:41:94"}],"functionName":{"name":"xor","nativeSrc":"53780:3:94","nodeType":"YulIdentifier","src":"53780:3:94"},"nativeSrc":"53780:52:94","nodeType":"YulFunctionCall","src":"53780:52:94"},"variableNames":[{"name":"result","nativeSrc":"53770:6:94","nodeType":"YulIdentifier","src":"53770:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30246,"isOffset":false,"isSlot":false,"src":"53801:6:94","valueSize":1},{"declaration":30252,"isOffset":false,"isSlot":false,"src":"53814:8:94","valueSize":1},{"declaration":30249,"isOffset":false,"isSlot":false,"src":"53770:6:94","valueSize":1},{"declaration":30242,"isOffset":false,"isSlot":false,"src":"53784:4:94","valueSize":1},{"declaration":30244,"isOffset":false,"isSlot":false,"src":"53720:5:94","valueSize":1},{"declaration":30244,"isOffset":false,"isSlot":false,"src":"53733:5:94","valueSize":1},{"declaration":30244,"isOffset":false,"isSlot":false,"src":"53824:5:94","valueSize":1}],"flags":["memory-safe"],"id":30258,"nodeType":"InlineAssembly","src":"53681:161:94"}]},"id":30260,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_8","nameLocation":"53523:12:94","nodeType":"FunctionDefinition","parameters":{"id":30247,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30242,"mutability":"mutable","name":"self","nameLocation":"53544:4:94","nodeType":"VariableDeclaration","scope":30260,"src":"53536:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30241,"name":"bytes28","nodeType":"ElementaryTypeName","src":"53536:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30244,"mutability":"mutable","name":"value","nameLocation":"53557:5:94","nodeType":"VariableDeclaration","scope":30260,"src":"53550:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":30243,"name":"bytes8","nodeType":"ElementaryTypeName","src":"53550:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":30246,"mutability":"mutable","name":"offset","nameLocation":"53570:6:94","nodeType":"VariableDeclaration","scope":30260,"src":"53564:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30245,"name":"uint8","nodeType":"ElementaryTypeName","src":"53564:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"53535:42:94"},"returnParameters":{"id":30250,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30249,"mutability":"mutable","name":"result","nameLocation":"53609:6:94","nodeType":"VariableDeclaration","scope":30260,"src":"53601:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30248,"name":"bytes28","nodeType":"ElementaryTypeName","src":"53601:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"53600:16:94"},"scope":30945,"src":"53514:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30277,"nodeType":"Block","src":"53944:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30269,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30264,"src":"53958:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3138","id":30270,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"53967:2:94","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"src":"53958:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30275,"nodeType":"IfStatement","src":"53954:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30272,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"53978:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"53978:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30274,"nodeType":"RevertStatement","src":"53971:25:94"}},{"AST":{"nativeSrc":"54031:82:94","nodeType":"YulBlock","src":"54031:82:94","statements":[{"nativeSrc":"54045:58:94","nodeType":"YulAssignment","src":"54045:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"54067:1:94","nodeType":"YulLiteral","src":"54067:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"54070:6:94","nodeType":"YulIdentifier","src":"54070:6:94"}],"functionName":{"name":"mul","nativeSrc":"54063:3:94","nodeType":"YulIdentifier","src":"54063:3:94"},"nativeSrc":"54063:14:94","nodeType":"YulFunctionCall","src":"54063:14:94"},{"name":"self","nativeSrc":"54079:4:94","nodeType":"YulIdentifier","src":"54079:4:94"}],"functionName":{"name":"shl","nativeSrc":"54059:3:94","nodeType":"YulIdentifier","src":"54059:3:94"},"nativeSrc":"54059:25:94","nodeType":"YulFunctionCall","src":"54059:25:94"},{"arguments":[{"kind":"number","nativeSrc":"54090:3:94","nodeType":"YulLiteral","src":"54090:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"54099:1:94","nodeType":"YulLiteral","src":"54099:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"54095:3:94","nodeType":"YulIdentifier","src":"54095:3:94"},"nativeSrc":"54095:6:94","nodeType":"YulFunctionCall","src":"54095:6:94"}],"functionName":{"name":"shl","nativeSrc":"54086:3:94","nodeType":"YulIdentifier","src":"54086:3:94"},"nativeSrc":"54086:16:94","nodeType":"YulFunctionCall","src":"54086:16:94"}],"functionName":{"name":"and","nativeSrc":"54055:3:94","nodeType":"YulIdentifier","src":"54055:3:94"},"nativeSrc":"54055:48:94","nodeType":"YulFunctionCall","src":"54055:48:94"},"variableNames":[{"name":"result","nativeSrc":"54045:6:94","nodeType":"YulIdentifier","src":"54045:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30264,"isOffset":false,"isSlot":false,"src":"54070:6:94","valueSize":1},{"declaration":30267,"isOffset":false,"isSlot":false,"src":"54045:6:94","valueSize":1},{"declaration":30262,"isOffset":false,"isSlot":false,"src":"54079:4:94","valueSize":1}],"flags":["memory-safe"],"id":30276,"nodeType":"InlineAssembly","src":"54006:107:94"}]},"id":30278,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_10","nameLocation":"53863:13:94","nodeType":"FunctionDefinition","parameters":{"id":30265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30262,"mutability":"mutable","name":"self","nameLocation":"53885:4:94","nodeType":"VariableDeclaration","scope":30278,"src":"53877:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30261,"name":"bytes28","nodeType":"ElementaryTypeName","src":"53877:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30264,"mutability":"mutable","name":"offset","nameLocation":"53897:6:94","nodeType":"VariableDeclaration","scope":30278,"src":"53891:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30263,"name":"uint8","nodeType":"ElementaryTypeName","src":"53891:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"53876:28:94"},"returnParameters":{"id":30268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30267,"mutability":"mutable","name":"result","nameLocation":"53936:6:94","nodeType":"VariableDeclaration","scope":30278,"src":"53928:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":30266,"name":"bytes10","nodeType":"ElementaryTypeName","src":"53928:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"53927:16:94"},"scope":30945,"src":"53854:265:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30297,"nodeType":"Block","src":"54230:233:94","statements":[{"assignments":[30290],"declarations":[{"constant":false,"id":30290,"mutability":"mutable","name":"oldValue","nameLocation":"54248:8:94","nodeType":"VariableDeclaration","scope":30297,"src":"54240:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":30289,"name":"bytes10","nodeType":"ElementaryTypeName","src":"54240:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":30295,"initialValue":{"arguments":[{"id":30292,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30280,"src":"54273:4:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":30293,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30284,"src":"54279:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30291,"name":"extract_28_10","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30278,"src":"54259:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes10_$","typeString":"function (bytes28,uint8) pure returns (bytes10)"}},"id":30294,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"54259:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"54240:46:94"},{"AST":{"nativeSrc":"54321:136:94","nodeType":"YulBlock","src":"54321:136:94","statements":[{"nativeSrc":"54335:37:94","nodeType":"YulAssignment","src":"54335:37:94","value":{"arguments":[{"name":"value","nativeSrc":"54348:5:94","nodeType":"YulIdentifier","src":"54348:5:94"},{"arguments":[{"kind":"number","nativeSrc":"54359:3:94","nodeType":"YulLiteral","src":"54359:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"54368:1:94","nodeType":"YulLiteral","src":"54368:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"54364:3:94","nodeType":"YulIdentifier","src":"54364:3:94"},"nativeSrc":"54364:6:94","nodeType":"YulFunctionCall","src":"54364:6:94"}],"functionName":{"name":"shl","nativeSrc":"54355:3:94","nodeType":"YulIdentifier","src":"54355:3:94"},"nativeSrc":"54355:16:94","nodeType":"YulFunctionCall","src":"54355:16:94"}],"functionName":{"name":"and","nativeSrc":"54344:3:94","nodeType":"YulIdentifier","src":"54344:3:94"},"nativeSrc":"54344:28:94","nodeType":"YulFunctionCall","src":"54344:28:94"},"variableNames":[{"name":"value","nativeSrc":"54335:5:94","nodeType":"YulIdentifier","src":"54335:5:94"}]},{"nativeSrc":"54385:62:94","nodeType":"YulAssignment","src":"54385:62:94","value":{"arguments":[{"name":"self","nativeSrc":"54399:4:94","nodeType":"YulIdentifier","src":"54399:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"54413:1:94","nodeType":"YulLiteral","src":"54413:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"54416:6:94","nodeType":"YulIdentifier","src":"54416:6:94"}],"functionName":{"name":"mul","nativeSrc":"54409:3:94","nodeType":"YulIdentifier","src":"54409:3:94"},"nativeSrc":"54409:14:94","nodeType":"YulFunctionCall","src":"54409:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"54429:8:94","nodeType":"YulIdentifier","src":"54429:8:94"},{"name":"value","nativeSrc":"54439:5:94","nodeType":"YulIdentifier","src":"54439:5:94"}],"functionName":{"name":"xor","nativeSrc":"54425:3:94","nodeType":"YulIdentifier","src":"54425:3:94"},"nativeSrc":"54425:20:94","nodeType":"YulFunctionCall","src":"54425:20:94"}],"functionName":{"name":"shr","nativeSrc":"54405:3:94","nodeType":"YulIdentifier","src":"54405:3:94"},"nativeSrc":"54405:41:94","nodeType":"YulFunctionCall","src":"54405:41:94"}],"functionName":{"name":"xor","nativeSrc":"54395:3:94","nodeType":"YulIdentifier","src":"54395:3:94"},"nativeSrc":"54395:52:94","nodeType":"YulFunctionCall","src":"54395:52:94"},"variableNames":[{"name":"result","nativeSrc":"54385:6:94","nodeType":"YulIdentifier","src":"54385:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30284,"isOffset":false,"isSlot":false,"src":"54416:6:94","valueSize":1},{"declaration":30290,"isOffset":false,"isSlot":false,"src":"54429:8:94","valueSize":1},{"declaration":30287,"isOffset":false,"isSlot":false,"src":"54385:6:94","valueSize":1},{"declaration":30280,"isOffset":false,"isSlot":false,"src":"54399:4:94","valueSize":1},{"declaration":30282,"isOffset":false,"isSlot":false,"src":"54335:5:94","valueSize":1},{"declaration":30282,"isOffset":false,"isSlot":false,"src":"54348:5:94","valueSize":1},{"declaration":30282,"isOffset":false,"isSlot":false,"src":"54439:5:94","valueSize":1}],"flags":["memory-safe"],"id":30296,"nodeType":"InlineAssembly","src":"54296:161:94"}]},"id":30298,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_10","nameLocation":"54134:13:94","nodeType":"FunctionDefinition","parameters":{"id":30285,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30280,"mutability":"mutable","name":"self","nameLocation":"54156:4:94","nodeType":"VariableDeclaration","scope":30298,"src":"54148:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30279,"name":"bytes28","nodeType":"ElementaryTypeName","src":"54148:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30282,"mutability":"mutable","name":"value","nameLocation":"54170:5:94","nodeType":"VariableDeclaration","scope":30298,"src":"54162:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":30281,"name":"bytes10","nodeType":"ElementaryTypeName","src":"54162:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":30284,"mutability":"mutable","name":"offset","nameLocation":"54183:6:94","nodeType":"VariableDeclaration","scope":30298,"src":"54177:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30283,"name":"uint8","nodeType":"ElementaryTypeName","src":"54177:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"54147:43:94"},"returnParameters":{"id":30288,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30287,"mutability":"mutable","name":"result","nameLocation":"54222:6:94","nodeType":"VariableDeclaration","scope":30298,"src":"54214:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30286,"name":"bytes28","nodeType":"ElementaryTypeName","src":"54214:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"54213:16:94"},"scope":30945,"src":"54125:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30315,"nodeType":"Block","src":"54559:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30309,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30307,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30302,"src":"54573:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3136","id":30308,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"54582:2:94","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"54573:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30313,"nodeType":"IfStatement","src":"54569:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30310,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"54593:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30311,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"54593:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30312,"nodeType":"RevertStatement","src":"54586:25:94"}},{"AST":{"nativeSrc":"54646:82:94","nodeType":"YulBlock","src":"54646:82:94","statements":[{"nativeSrc":"54660:58:94","nodeType":"YulAssignment","src":"54660:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"54682:1:94","nodeType":"YulLiteral","src":"54682:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"54685:6:94","nodeType":"YulIdentifier","src":"54685:6:94"}],"functionName":{"name":"mul","nativeSrc":"54678:3:94","nodeType":"YulIdentifier","src":"54678:3:94"},"nativeSrc":"54678:14:94","nodeType":"YulFunctionCall","src":"54678:14:94"},{"name":"self","nativeSrc":"54694:4:94","nodeType":"YulIdentifier","src":"54694:4:94"}],"functionName":{"name":"shl","nativeSrc":"54674:3:94","nodeType":"YulIdentifier","src":"54674:3:94"},"nativeSrc":"54674:25:94","nodeType":"YulFunctionCall","src":"54674:25:94"},{"arguments":[{"kind":"number","nativeSrc":"54705:3:94","nodeType":"YulLiteral","src":"54705:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"54714:1:94","nodeType":"YulLiteral","src":"54714:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"54710:3:94","nodeType":"YulIdentifier","src":"54710:3:94"},"nativeSrc":"54710:6:94","nodeType":"YulFunctionCall","src":"54710:6:94"}],"functionName":{"name":"shl","nativeSrc":"54701:3:94","nodeType":"YulIdentifier","src":"54701:3:94"},"nativeSrc":"54701:16:94","nodeType":"YulFunctionCall","src":"54701:16:94"}],"functionName":{"name":"and","nativeSrc":"54670:3:94","nodeType":"YulIdentifier","src":"54670:3:94"},"nativeSrc":"54670:48:94","nodeType":"YulFunctionCall","src":"54670:48:94"},"variableNames":[{"name":"result","nativeSrc":"54660:6:94","nodeType":"YulIdentifier","src":"54660:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30302,"isOffset":false,"isSlot":false,"src":"54685:6:94","valueSize":1},{"declaration":30305,"isOffset":false,"isSlot":false,"src":"54660:6:94","valueSize":1},{"declaration":30300,"isOffset":false,"isSlot":false,"src":"54694:4:94","valueSize":1}],"flags":["memory-safe"],"id":30314,"nodeType":"InlineAssembly","src":"54621:107:94"}]},"id":30316,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_12","nameLocation":"54478:13:94","nodeType":"FunctionDefinition","parameters":{"id":30303,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30300,"mutability":"mutable","name":"self","nameLocation":"54500:4:94","nodeType":"VariableDeclaration","scope":30316,"src":"54492:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30299,"name":"bytes28","nodeType":"ElementaryTypeName","src":"54492:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30302,"mutability":"mutable","name":"offset","nameLocation":"54512:6:94","nodeType":"VariableDeclaration","scope":30316,"src":"54506:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30301,"name":"uint8","nodeType":"ElementaryTypeName","src":"54506:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"54491:28:94"},"returnParameters":{"id":30306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30305,"mutability":"mutable","name":"result","nameLocation":"54551:6:94","nodeType":"VariableDeclaration","scope":30316,"src":"54543:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":30304,"name":"bytes12","nodeType":"ElementaryTypeName","src":"54543:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"54542:16:94"},"scope":30945,"src":"54469:265:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30335,"nodeType":"Block","src":"54845:233:94","statements":[{"assignments":[30328],"declarations":[{"constant":false,"id":30328,"mutability":"mutable","name":"oldValue","nameLocation":"54863:8:94","nodeType":"VariableDeclaration","scope":30335,"src":"54855:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":30327,"name":"bytes12","nodeType":"ElementaryTypeName","src":"54855:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"id":30333,"initialValue":{"arguments":[{"id":30330,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30318,"src":"54888:4:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":30331,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30322,"src":"54894:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30329,"name":"extract_28_12","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30316,"src":"54874:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes12_$","typeString":"function (bytes28,uint8) pure returns (bytes12)"}},"id":30332,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"54874:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"nodeType":"VariableDeclarationStatement","src":"54855:46:94"},{"AST":{"nativeSrc":"54936:136:94","nodeType":"YulBlock","src":"54936:136:94","statements":[{"nativeSrc":"54950:37:94","nodeType":"YulAssignment","src":"54950:37:94","value":{"arguments":[{"name":"value","nativeSrc":"54963:5:94","nodeType":"YulIdentifier","src":"54963:5:94"},{"arguments":[{"kind":"number","nativeSrc":"54974:3:94","nodeType":"YulLiteral","src":"54974:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"54983:1:94","nodeType":"YulLiteral","src":"54983:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"54979:3:94","nodeType":"YulIdentifier","src":"54979:3:94"},"nativeSrc":"54979:6:94","nodeType":"YulFunctionCall","src":"54979:6:94"}],"functionName":{"name":"shl","nativeSrc":"54970:3:94","nodeType":"YulIdentifier","src":"54970:3:94"},"nativeSrc":"54970:16:94","nodeType":"YulFunctionCall","src":"54970:16:94"}],"functionName":{"name":"and","nativeSrc":"54959:3:94","nodeType":"YulIdentifier","src":"54959:3:94"},"nativeSrc":"54959:28:94","nodeType":"YulFunctionCall","src":"54959:28:94"},"variableNames":[{"name":"value","nativeSrc":"54950:5:94","nodeType":"YulIdentifier","src":"54950:5:94"}]},{"nativeSrc":"55000:62:94","nodeType":"YulAssignment","src":"55000:62:94","value":{"arguments":[{"name":"self","nativeSrc":"55014:4:94","nodeType":"YulIdentifier","src":"55014:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"55028:1:94","nodeType":"YulLiteral","src":"55028:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"55031:6:94","nodeType":"YulIdentifier","src":"55031:6:94"}],"functionName":{"name":"mul","nativeSrc":"55024:3:94","nodeType":"YulIdentifier","src":"55024:3:94"},"nativeSrc":"55024:14:94","nodeType":"YulFunctionCall","src":"55024:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"55044:8:94","nodeType":"YulIdentifier","src":"55044:8:94"},{"name":"value","nativeSrc":"55054:5:94","nodeType":"YulIdentifier","src":"55054:5:94"}],"functionName":{"name":"xor","nativeSrc":"55040:3:94","nodeType":"YulIdentifier","src":"55040:3:94"},"nativeSrc":"55040:20:94","nodeType":"YulFunctionCall","src":"55040:20:94"}],"functionName":{"name":"shr","nativeSrc":"55020:3:94","nodeType":"YulIdentifier","src":"55020:3:94"},"nativeSrc":"55020:41:94","nodeType":"YulFunctionCall","src":"55020:41:94"}],"functionName":{"name":"xor","nativeSrc":"55010:3:94","nodeType":"YulIdentifier","src":"55010:3:94"},"nativeSrc":"55010:52:94","nodeType":"YulFunctionCall","src":"55010:52:94"},"variableNames":[{"name":"result","nativeSrc":"55000:6:94","nodeType":"YulIdentifier","src":"55000:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30322,"isOffset":false,"isSlot":false,"src":"55031:6:94","valueSize":1},{"declaration":30328,"isOffset":false,"isSlot":false,"src":"55044:8:94","valueSize":1},{"declaration":30325,"isOffset":false,"isSlot":false,"src":"55000:6:94","valueSize":1},{"declaration":30318,"isOffset":false,"isSlot":false,"src":"55014:4:94","valueSize":1},{"declaration":30320,"isOffset":false,"isSlot":false,"src":"54950:5:94","valueSize":1},{"declaration":30320,"isOffset":false,"isSlot":false,"src":"54963:5:94","valueSize":1},{"declaration":30320,"isOffset":false,"isSlot":false,"src":"55054:5:94","valueSize":1}],"flags":["memory-safe"],"id":30334,"nodeType":"InlineAssembly","src":"54911:161:94"}]},"id":30336,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_12","nameLocation":"54749:13:94","nodeType":"FunctionDefinition","parameters":{"id":30323,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30318,"mutability":"mutable","name":"self","nameLocation":"54771:4:94","nodeType":"VariableDeclaration","scope":30336,"src":"54763:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30317,"name":"bytes28","nodeType":"ElementaryTypeName","src":"54763:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30320,"mutability":"mutable","name":"value","nameLocation":"54785:5:94","nodeType":"VariableDeclaration","scope":30336,"src":"54777:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":30319,"name":"bytes12","nodeType":"ElementaryTypeName","src":"54777:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":30322,"mutability":"mutable","name":"offset","nameLocation":"54798:6:94","nodeType":"VariableDeclaration","scope":30336,"src":"54792:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30321,"name":"uint8","nodeType":"ElementaryTypeName","src":"54792:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"54762:43:94"},"returnParameters":{"id":30326,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30325,"mutability":"mutable","name":"result","nameLocation":"54837:6:94","nodeType":"VariableDeclaration","scope":30336,"src":"54829:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30324,"name":"bytes28","nodeType":"ElementaryTypeName","src":"54829:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"54828:16:94"},"scope":30945,"src":"54740:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30353,"nodeType":"Block","src":"55174:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30345,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30340,"src":"55188:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3132","id":30346,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"55197:2:94","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"src":"55188:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30351,"nodeType":"IfStatement","src":"55184:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30348,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"55208:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"55208:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30350,"nodeType":"RevertStatement","src":"55201:25:94"}},{"AST":{"nativeSrc":"55261:82:94","nodeType":"YulBlock","src":"55261:82:94","statements":[{"nativeSrc":"55275:58:94","nodeType":"YulAssignment","src":"55275:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"55297:1:94","nodeType":"YulLiteral","src":"55297:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"55300:6:94","nodeType":"YulIdentifier","src":"55300:6:94"}],"functionName":{"name":"mul","nativeSrc":"55293:3:94","nodeType":"YulIdentifier","src":"55293:3:94"},"nativeSrc":"55293:14:94","nodeType":"YulFunctionCall","src":"55293:14:94"},{"name":"self","nativeSrc":"55309:4:94","nodeType":"YulIdentifier","src":"55309:4:94"}],"functionName":{"name":"shl","nativeSrc":"55289:3:94","nodeType":"YulIdentifier","src":"55289:3:94"},"nativeSrc":"55289:25:94","nodeType":"YulFunctionCall","src":"55289:25:94"},{"arguments":[{"kind":"number","nativeSrc":"55320:3:94","nodeType":"YulLiteral","src":"55320:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"55329:1:94","nodeType":"YulLiteral","src":"55329:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"55325:3:94","nodeType":"YulIdentifier","src":"55325:3:94"},"nativeSrc":"55325:6:94","nodeType":"YulFunctionCall","src":"55325:6:94"}],"functionName":{"name":"shl","nativeSrc":"55316:3:94","nodeType":"YulIdentifier","src":"55316:3:94"},"nativeSrc":"55316:16:94","nodeType":"YulFunctionCall","src":"55316:16:94"}],"functionName":{"name":"and","nativeSrc":"55285:3:94","nodeType":"YulIdentifier","src":"55285:3:94"},"nativeSrc":"55285:48:94","nodeType":"YulFunctionCall","src":"55285:48:94"},"variableNames":[{"name":"result","nativeSrc":"55275:6:94","nodeType":"YulIdentifier","src":"55275:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30340,"isOffset":false,"isSlot":false,"src":"55300:6:94","valueSize":1},{"declaration":30343,"isOffset":false,"isSlot":false,"src":"55275:6:94","valueSize":1},{"declaration":30338,"isOffset":false,"isSlot":false,"src":"55309:4:94","valueSize":1}],"flags":["memory-safe"],"id":30352,"nodeType":"InlineAssembly","src":"55236:107:94"}]},"id":30354,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_16","nameLocation":"55093:13:94","nodeType":"FunctionDefinition","parameters":{"id":30341,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30338,"mutability":"mutable","name":"self","nameLocation":"55115:4:94","nodeType":"VariableDeclaration","scope":30354,"src":"55107:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30337,"name":"bytes28","nodeType":"ElementaryTypeName","src":"55107:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30340,"mutability":"mutable","name":"offset","nameLocation":"55127:6:94","nodeType":"VariableDeclaration","scope":30354,"src":"55121:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30339,"name":"uint8","nodeType":"ElementaryTypeName","src":"55121:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"55106:28:94"},"returnParameters":{"id":30344,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30343,"mutability":"mutable","name":"result","nameLocation":"55166:6:94","nodeType":"VariableDeclaration","scope":30354,"src":"55158:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":30342,"name":"bytes16","nodeType":"ElementaryTypeName","src":"55158:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"55157:16:94"},"scope":30945,"src":"55084:265:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30373,"nodeType":"Block","src":"55460:233:94","statements":[{"assignments":[30366],"declarations":[{"constant":false,"id":30366,"mutability":"mutable","name":"oldValue","nameLocation":"55478:8:94","nodeType":"VariableDeclaration","scope":30373,"src":"55470:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":30365,"name":"bytes16","nodeType":"ElementaryTypeName","src":"55470:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"id":30371,"initialValue":{"arguments":[{"id":30368,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30356,"src":"55503:4:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":30369,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30360,"src":"55509:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30367,"name":"extract_28_16","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30354,"src":"55489:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes16_$","typeString":"function (bytes28,uint8) pure returns (bytes16)"}},"id":30370,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"55489:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"VariableDeclarationStatement","src":"55470:46:94"},{"AST":{"nativeSrc":"55551:136:94","nodeType":"YulBlock","src":"55551:136:94","statements":[{"nativeSrc":"55565:37:94","nodeType":"YulAssignment","src":"55565:37:94","value":{"arguments":[{"name":"value","nativeSrc":"55578:5:94","nodeType":"YulIdentifier","src":"55578:5:94"},{"arguments":[{"kind":"number","nativeSrc":"55589:3:94","nodeType":"YulLiteral","src":"55589:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"55598:1:94","nodeType":"YulLiteral","src":"55598:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"55594:3:94","nodeType":"YulIdentifier","src":"55594:3:94"},"nativeSrc":"55594:6:94","nodeType":"YulFunctionCall","src":"55594:6:94"}],"functionName":{"name":"shl","nativeSrc":"55585:3:94","nodeType":"YulIdentifier","src":"55585:3:94"},"nativeSrc":"55585:16:94","nodeType":"YulFunctionCall","src":"55585:16:94"}],"functionName":{"name":"and","nativeSrc":"55574:3:94","nodeType":"YulIdentifier","src":"55574:3:94"},"nativeSrc":"55574:28:94","nodeType":"YulFunctionCall","src":"55574:28:94"},"variableNames":[{"name":"value","nativeSrc":"55565:5:94","nodeType":"YulIdentifier","src":"55565:5:94"}]},{"nativeSrc":"55615:62:94","nodeType":"YulAssignment","src":"55615:62:94","value":{"arguments":[{"name":"self","nativeSrc":"55629:4:94","nodeType":"YulIdentifier","src":"55629:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"55643:1:94","nodeType":"YulLiteral","src":"55643:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"55646:6:94","nodeType":"YulIdentifier","src":"55646:6:94"}],"functionName":{"name":"mul","nativeSrc":"55639:3:94","nodeType":"YulIdentifier","src":"55639:3:94"},"nativeSrc":"55639:14:94","nodeType":"YulFunctionCall","src":"55639:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"55659:8:94","nodeType":"YulIdentifier","src":"55659:8:94"},{"name":"value","nativeSrc":"55669:5:94","nodeType":"YulIdentifier","src":"55669:5:94"}],"functionName":{"name":"xor","nativeSrc":"55655:3:94","nodeType":"YulIdentifier","src":"55655:3:94"},"nativeSrc":"55655:20:94","nodeType":"YulFunctionCall","src":"55655:20:94"}],"functionName":{"name":"shr","nativeSrc":"55635:3:94","nodeType":"YulIdentifier","src":"55635:3:94"},"nativeSrc":"55635:41:94","nodeType":"YulFunctionCall","src":"55635:41:94"}],"functionName":{"name":"xor","nativeSrc":"55625:3:94","nodeType":"YulIdentifier","src":"55625:3:94"},"nativeSrc":"55625:52:94","nodeType":"YulFunctionCall","src":"55625:52:94"},"variableNames":[{"name":"result","nativeSrc":"55615:6:94","nodeType":"YulIdentifier","src":"55615:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30360,"isOffset":false,"isSlot":false,"src":"55646:6:94","valueSize":1},{"declaration":30366,"isOffset":false,"isSlot":false,"src":"55659:8:94","valueSize":1},{"declaration":30363,"isOffset":false,"isSlot":false,"src":"55615:6:94","valueSize":1},{"declaration":30356,"isOffset":false,"isSlot":false,"src":"55629:4:94","valueSize":1},{"declaration":30358,"isOffset":false,"isSlot":false,"src":"55565:5:94","valueSize":1},{"declaration":30358,"isOffset":false,"isSlot":false,"src":"55578:5:94","valueSize":1},{"declaration":30358,"isOffset":false,"isSlot":false,"src":"55669:5:94","valueSize":1}],"flags":["memory-safe"],"id":30372,"nodeType":"InlineAssembly","src":"55526:161:94"}]},"id":30374,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_16","nameLocation":"55364:13:94","nodeType":"FunctionDefinition","parameters":{"id":30361,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30356,"mutability":"mutable","name":"self","nameLocation":"55386:4:94","nodeType":"VariableDeclaration","scope":30374,"src":"55378:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30355,"name":"bytes28","nodeType":"ElementaryTypeName","src":"55378:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30358,"mutability":"mutable","name":"value","nameLocation":"55400:5:94","nodeType":"VariableDeclaration","scope":30374,"src":"55392:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":30357,"name":"bytes16","nodeType":"ElementaryTypeName","src":"55392:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":30360,"mutability":"mutable","name":"offset","nameLocation":"55413:6:94","nodeType":"VariableDeclaration","scope":30374,"src":"55407:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30359,"name":"uint8","nodeType":"ElementaryTypeName","src":"55407:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"55377:43:94"},"returnParameters":{"id":30364,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30363,"mutability":"mutable","name":"result","nameLocation":"55452:6:94","nodeType":"VariableDeclaration","scope":30374,"src":"55444:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30362,"name":"bytes28","nodeType":"ElementaryTypeName","src":"55444:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"55443:16:94"},"scope":30945,"src":"55355:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30391,"nodeType":"Block","src":"55789:173:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30383,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30378,"src":"55803:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"38","id":30384,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"55812:1:94","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"55803:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30389,"nodeType":"IfStatement","src":"55799:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30386,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"55822:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"55822:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30388,"nodeType":"RevertStatement","src":"55815:25:94"}},{"AST":{"nativeSrc":"55875:81:94","nodeType":"YulBlock","src":"55875:81:94","statements":[{"nativeSrc":"55889:57:94","nodeType":"YulAssignment","src":"55889:57:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"55911:1:94","nodeType":"YulLiteral","src":"55911:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"55914:6:94","nodeType":"YulIdentifier","src":"55914:6:94"}],"functionName":{"name":"mul","nativeSrc":"55907:3:94","nodeType":"YulIdentifier","src":"55907:3:94"},"nativeSrc":"55907:14:94","nodeType":"YulFunctionCall","src":"55907:14:94"},{"name":"self","nativeSrc":"55923:4:94","nodeType":"YulIdentifier","src":"55923:4:94"}],"functionName":{"name":"shl","nativeSrc":"55903:3:94","nodeType":"YulIdentifier","src":"55903:3:94"},"nativeSrc":"55903:25:94","nodeType":"YulFunctionCall","src":"55903:25:94"},{"arguments":[{"kind":"number","nativeSrc":"55934:2:94","nodeType":"YulLiteral","src":"55934:2:94","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"55942:1:94","nodeType":"YulLiteral","src":"55942:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"55938:3:94","nodeType":"YulIdentifier","src":"55938:3:94"},"nativeSrc":"55938:6:94","nodeType":"YulFunctionCall","src":"55938:6:94"}],"functionName":{"name":"shl","nativeSrc":"55930:3:94","nodeType":"YulIdentifier","src":"55930:3:94"},"nativeSrc":"55930:15:94","nodeType":"YulFunctionCall","src":"55930:15:94"}],"functionName":{"name":"and","nativeSrc":"55899:3:94","nodeType":"YulIdentifier","src":"55899:3:94"},"nativeSrc":"55899:47:94","nodeType":"YulFunctionCall","src":"55899:47:94"},"variableNames":[{"name":"result","nativeSrc":"55889:6:94","nodeType":"YulIdentifier","src":"55889:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30378,"isOffset":false,"isSlot":false,"src":"55914:6:94","valueSize":1},{"declaration":30381,"isOffset":false,"isSlot":false,"src":"55889:6:94","valueSize":1},{"declaration":30376,"isOffset":false,"isSlot":false,"src":"55923:4:94","valueSize":1}],"flags":["memory-safe"],"id":30390,"nodeType":"InlineAssembly","src":"55850:106:94"}]},"id":30392,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_20","nameLocation":"55708:13:94","nodeType":"FunctionDefinition","parameters":{"id":30379,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30376,"mutability":"mutable","name":"self","nameLocation":"55730:4:94","nodeType":"VariableDeclaration","scope":30392,"src":"55722:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30375,"name":"bytes28","nodeType":"ElementaryTypeName","src":"55722:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30378,"mutability":"mutable","name":"offset","nameLocation":"55742:6:94","nodeType":"VariableDeclaration","scope":30392,"src":"55736:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30377,"name":"uint8","nodeType":"ElementaryTypeName","src":"55736:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"55721:28:94"},"returnParameters":{"id":30382,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30381,"mutability":"mutable","name":"result","nameLocation":"55781:6:94","nodeType":"VariableDeclaration","scope":30392,"src":"55773:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":30380,"name":"bytes20","nodeType":"ElementaryTypeName","src":"55773:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"55772:16:94"},"scope":30945,"src":"55699:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30411,"nodeType":"Block","src":"56073:232:94","statements":[{"assignments":[30404],"declarations":[{"constant":false,"id":30404,"mutability":"mutable","name":"oldValue","nameLocation":"56091:8:94","nodeType":"VariableDeclaration","scope":30411,"src":"56083:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":30403,"name":"bytes20","nodeType":"ElementaryTypeName","src":"56083:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"id":30409,"initialValue":{"arguments":[{"id":30406,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30394,"src":"56116:4:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":30407,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30398,"src":"56122:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30405,"name":"extract_28_20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30392,"src":"56102:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes20_$","typeString":"function (bytes28,uint8) pure returns (bytes20)"}},"id":30408,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"56102:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"VariableDeclarationStatement","src":"56083:46:94"},{"AST":{"nativeSrc":"56164:135:94","nodeType":"YulBlock","src":"56164:135:94","statements":[{"nativeSrc":"56178:36:94","nodeType":"YulAssignment","src":"56178:36:94","value":{"arguments":[{"name":"value","nativeSrc":"56191:5:94","nodeType":"YulIdentifier","src":"56191:5:94"},{"arguments":[{"kind":"number","nativeSrc":"56202:2:94","nodeType":"YulLiteral","src":"56202:2:94","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"56210:1:94","nodeType":"YulLiteral","src":"56210:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"56206:3:94","nodeType":"YulIdentifier","src":"56206:3:94"},"nativeSrc":"56206:6:94","nodeType":"YulFunctionCall","src":"56206:6:94"}],"functionName":{"name":"shl","nativeSrc":"56198:3:94","nodeType":"YulIdentifier","src":"56198:3:94"},"nativeSrc":"56198:15:94","nodeType":"YulFunctionCall","src":"56198:15:94"}],"functionName":{"name":"and","nativeSrc":"56187:3:94","nodeType":"YulIdentifier","src":"56187:3:94"},"nativeSrc":"56187:27:94","nodeType":"YulFunctionCall","src":"56187:27:94"},"variableNames":[{"name":"value","nativeSrc":"56178:5:94","nodeType":"YulIdentifier","src":"56178:5:94"}]},{"nativeSrc":"56227:62:94","nodeType":"YulAssignment","src":"56227:62:94","value":{"arguments":[{"name":"self","nativeSrc":"56241:4:94","nodeType":"YulIdentifier","src":"56241:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"56255:1:94","nodeType":"YulLiteral","src":"56255:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"56258:6:94","nodeType":"YulIdentifier","src":"56258:6:94"}],"functionName":{"name":"mul","nativeSrc":"56251:3:94","nodeType":"YulIdentifier","src":"56251:3:94"},"nativeSrc":"56251:14:94","nodeType":"YulFunctionCall","src":"56251:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"56271:8:94","nodeType":"YulIdentifier","src":"56271:8:94"},{"name":"value","nativeSrc":"56281:5:94","nodeType":"YulIdentifier","src":"56281:5:94"}],"functionName":{"name":"xor","nativeSrc":"56267:3:94","nodeType":"YulIdentifier","src":"56267:3:94"},"nativeSrc":"56267:20:94","nodeType":"YulFunctionCall","src":"56267:20:94"}],"functionName":{"name":"shr","nativeSrc":"56247:3:94","nodeType":"YulIdentifier","src":"56247:3:94"},"nativeSrc":"56247:41:94","nodeType":"YulFunctionCall","src":"56247:41:94"}],"functionName":{"name":"xor","nativeSrc":"56237:3:94","nodeType":"YulIdentifier","src":"56237:3:94"},"nativeSrc":"56237:52:94","nodeType":"YulFunctionCall","src":"56237:52:94"},"variableNames":[{"name":"result","nativeSrc":"56227:6:94","nodeType":"YulIdentifier","src":"56227:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30398,"isOffset":false,"isSlot":false,"src":"56258:6:94","valueSize":1},{"declaration":30404,"isOffset":false,"isSlot":false,"src":"56271:8:94","valueSize":1},{"declaration":30401,"isOffset":false,"isSlot":false,"src":"56227:6:94","valueSize":1},{"declaration":30394,"isOffset":false,"isSlot":false,"src":"56241:4:94","valueSize":1},{"declaration":30396,"isOffset":false,"isSlot":false,"src":"56178:5:94","valueSize":1},{"declaration":30396,"isOffset":false,"isSlot":false,"src":"56191:5:94","valueSize":1},{"declaration":30396,"isOffset":false,"isSlot":false,"src":"56281:5:94","valueSize":1}],"flags":["memory-safe"],"id":30410,"nodeType":"InlineAssembly","src":"56139:160:94"}]},"id":30412,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_20","nameLocation":"55977:13:94","nodeType":"FunctionDefinition","parameters":{"id":30399,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30394,"mutability":"mutable","name":"self","nameLocation":"55999:4:94","nodeType":"VariableDeclaration","scope":30412,"src":"55991:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30393,"name":"bytes28","nodeType":"ElementaryTypeName","src":"55991:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30396,"mutability":"mutable","name":"value","nameLocation":"56013:5:94","nodeType":"VariableDeclaration","scope":30412,"src":"56005:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":30395,"name":"bytes20","nodeType":"ElementaryTypeName","src":"56005:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":30398,"mutability":"mutable","name":"offset","nameLocation":"56026:6:94","nodeType":"VariableDeclaration","scope":30412,"src":"56020:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30397,"name":"uint8","nodeType":"ElementaryTypeName","src":"56020:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"55990:43:94"},"returnParameters":{"id":30402,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30401,"mutability":"mutable","name":"result","nameLocation":"56065:6:94","nodeType":"VariableDeclaration","scope":30412,"src":"56057:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30400,"name":"bytes28","nodeType":"ElementaryTypeName","src":"56057:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"56056:16:94"},"scope":30945,"src":"55968:337:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30429,"nodeType":"Block","src":"56401:173:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30423,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30421,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30416,"src":"56415:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"36","id":30422,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"56424:1:94","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"56415:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30427,"nodeType":"IfStatement","src":"56411:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30424,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"56434:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30425,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"56434:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30426,"nodeType":"RevertStatement","src":"56427:25:94"}},{"AST":{"nativeSrc":"56487:81:94","nodeType":"YulBlock","src":"56487:81:94","statements":[{"nativeSrc":"56501:57:94","nodeType":"YulAssignment","src":"56501:57:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"56523:1:94","nodeType":"YulLiteral","src":"56523:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"56526:6:94","nodeType":"YulIdentifier","src":"56526:6:94"}],"functionName":{"name":"mul","nativeSrc":"56519:3:94","nodeType":"YulIdentifier","src":"56519:3:94"},"nativeSrc":"56519:14:94","nodeType":"YulFunctionCall","src":"56519:14:94"},{"name":"self","nativeSrc":"56535:4:94","nodeType":"YulIdentifier","src":"56535:4:94"}],"functionName":{"name":"shl","nativeSrc":"56515:3:94","nodeType":"YulIdentifier","src":"56515:3:94"},"nativeSrc":"56515:25:94","nodeType":"YulFunctionCall","src":"56515:25:94"},{"arguments":[{"kind":"number","nativeSrc":"56546:2:94","nodeType":"YulLiteral","src":"56546:2:94","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"56554:1:94","nodeType":"YulLiteral","src":"56554:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"56550:3:94","nodeType":"YulIdentifier","src":"56550:3:94"},"nativeSrc":"56550:6:94","nodeType":"YulFunctionCall","src":"56550:6:94"}],"functionName":{"name":"shl","nativeSrc":"56542:3:94","nodeType":"YulIdentifier","src":"56542:3:94"},"nativeSrc":"56542:15:94","nodeType":"YulFunctionCall","src":"56542:15:94"}],"functionName":{"name":"and","nativeSrc":"56511:3:94","nodeType":"YulIdentifier","src":"56511:3:94"},"nativeSrc":"56511:47:94","nodeType":"YulFunctionCall","src":"56511:47:94"},"variableNames":[{"name":"result","nativeSrc":"56501:6:94","nodeType":"YulIdentifier","src":"56501:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30416,"isOffset":false,"isSlot":false,"src":"56526:6:94","valueSize":1},{"declaration":30419,"isOffset":false,"isSlot":false,"src":"56501:6:94","valueSize":1},{"declaration":30414,"isOffset":false,"isSlot":false,"src":"56535:4:94","valueSize":1}],"flags":["memory-safe"],"id":30428,"nodeType":"InlineAssembly","src":"56462:106:94"}]},"id":30430,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_22","nameLocation":"56320:13:94","nodeType":"FunctionDefinition","parameters":{"id":30417,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30414,"mutability":"mutable","name":"self","nameLocation":"56342:4:94","nodeType":"VariableDeclaration","scope":30430,"src":"56334:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30413,"name":"bytes28","nodeType":"ElementaryTypeName","src":"56334:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30416,"mutability":"mutable","name":"offset","nameLocation":"56354:6:94","nodeType":"VariableDeclaration","scope":30430,"src":"56348:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30415,"name":"uint8","nodeType":"ElementaryTypeName","src":"56348:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"56333:28:94"},"returnParameters":{"id":30420,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30419,"mutability":"mutable","name":"result","nameLocation":"56393:6:94","nodeType":"VariableDeclaration","scope":30430,"src":"56385:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":30418,"name":"bytes22","nodeType":"ElementaryTypeName","src":"56385:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"56384:16:94"},"scope":30945,"src":"56311:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30449,"nodeType":"Block","src":"56685:232:94","statements":[{"assignments":[30442],"declarations":[{"constant":false,"id":30442,"mutability":"mutable","name":"oldValue","nameLocation":"56703:8:94","nodeType":"VariableDeclaration","scope":30449,"src":"56695:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":30441,"name":"bytes22","nodeType":"ElementaryTypeName","src":"56695:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"id":30447,"initialValue":{"arguments":[{"id":30444,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30432,"src":"56728:4:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":30445,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30436,"src":"56734:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30443,"name":"extract_28_22","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30430,"src":"56714:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes22_$","typeString":"function (bytes28,uint8) pure returns (bytes22)"}},"id":30446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"56714:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"nodeType":"VariableDeclarationStatement","src":"56695:46:94"},{"AST":{"nativeSrc":"56776:135:94","nodeType":"YulBlock","src":"56776:135:94","statements":[{"nativeSrc":"56790:36:94","nodeType":"YulAssignment","src":"56790:36:94","value":{"arguments":[{"name":"value","nativeSrc":"56803:5:94","nodeType":"YulIdentifier","src":"56803:5:94"},{"arguments":[{"kind":"number","nativeSrc":"56814:2:94","nodeType":"YulLiteral","src":"56814:2:94","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"56822:1:94","nodeType":"YulLiteral","src":"56822:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"56818:3:94","nodeType":"YulIdentifier","src":"56818:3:94"},"nativeSrc":"56818:6:94","nodeType":"YulFunctionCall","src":"56818:6:94"}],"functionName":{"name":"shl","nativeSrc":"56810:3:94","nodeType":"YulIdentifier","src":"56810:3:94"},"nativeSrc":"56810:15:94","nodeType":"YulFunctionCall","src":"56810:15:94"}],"functionName":{"name":"and","nativeSrc":"56799:3:94","nodeType":"YulIdentifier","src":"56799:3:94"},"nativeSrc":"56799:27:94","nodeType":"YulFunctionCall","src":"56799:27:94"},"variableNames":[{"name":"value","nativeSrc":"56790:5:94","nodeType":"YulIdentifier","src":"56790:5:94"}]},{"nativeSrc":"56839:62:94","nodeType":"YulAssignment","src":"56839:62:94","value":{"arguments":[{"name":"self","nativeSrc":"56853:4:94","nodeType":"YulIdentifier","src":"56853:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"56867:1:94","nodeType":"YulLiteral","src":"56867:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"56870:6:94","nodeType":"YulIdentifier","src":"56870:6:94"}],"functionName":{"name":"mul","nativeSrc":"56863:3:94","nodeType":"YulIdentifier","src":"56863:3:94"},"nativeSrc":"56863:14:94","nodeType":"YulFunctionCall","src":"56863:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"56883:8:94","nodeType":"YulIdentifier","src":"56883:8:94"},{"name":"value","nativeSrc":"56893:5:94","nodeType":"YulIdentifier","src":"56893:5:94"}],"functionName":{"name":"xor","nativeSrc":"56879:3:94","nodeType":"YulIdentifier","src":"56879:3:94"},"nativeSrc":"56879:20:94","nodeType":"YulFunctionCall","src":"56879:20:94"}],"functionName":{"name":"shr","nativeSrc":"56859:3:94","nodeType":"YulIdentifier","src":"56859:3:94"},"nativeSrc":"56859:41:94","nodeType":"YulFunctionCall","src":"56859:41:94"}],"functionName":{"name":"xor","nativeSrc":"56849:3:94","nodeType":"YulIdentifier","src":"56849:3:94"},"nativeSrc":"56849:52:94","nodeType":"YulFunctionCall","src":"56849:52:94"},"variableNames":[{"name":"result","nativeSrc":"56839:6:94","nodeType":"YulIdentifier","src":"56839:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30436,"isOffset":false,"isSlot":false,"src":"56870:6:94","valueSize":1},{"declaration":30442,"isOffset":false,"isSlot":false,"src":"56883:8:94","valueSize":1},{"declaration":30439,"isOffset":false,"isSlot":false,"src":"56839:6:94","valueSize":1},{"declaration":30432,"isOffset":false,"isSlot":false,"src":"56853:4:94","valueSize":1},{"declaration":30434,"isOffset":false,"isSlot":false,"src":"56790:5:94","valueSize":1},{"declaration":30434,"isOffset":false,"isSlot":false,"src":"56803:5:94","valueSize":1},{"declaration":30434,"isOffset":false,"isSlot":false,"src":"56893:5:94","valueSize":1}],"flags":["memory-safe"],"id":30448,"nodeType":"InlineAssembly","src":"56751:160:94"}]},"id":30450,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_22","nameLocation":"56589:13:94","nodeType":"FunctionDefinition","parameters":{"id":30437,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30432,"mutability":"mutable","name":"self","nameLocation":"56611:4:94","nodeType":"VariableDeclaration","scope":30450,"src":"56603:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30431,"name":"bytes28","nodeType":"ElementaryTypeName","src":"56603:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30434,"mutability":"mutable","name":"value","nameLocation":"56625:5:94","nodeType":"VariableDeclaration","scope":30450,"src":"56617:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":30433,"name":"bytes22","nodeType":"ElementaryTypeName","src":"56617:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":30436,"mutability":"mutable","name":"offset","nameLocation":"56638:6:94","nodeType":"VariableDeclaration","scope":30450,"src":"56632:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30435,"name":"uint8","nodeType":"ElementaryTypeName","src":"56632:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"56602:43:94"},"returnParameters":{"id":30440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30439,"mutability":"mutable","name":"result","nameLocation":"56677:6:94","nodeType":"VariableDeclaration","scope":30450,"src":"56669:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30438,"name":"bytes28","nodeType":"ElementaryTypeName","src":"56669:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"56668:16:94"},"scope":30945,"src":"56580:337:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30467,"nodeType":"Block","src":"57013:173:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30461,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30459,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30454,"src":"57027:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":30460,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"57036:1:94","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"57027:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30465,"nodeType":"IfStatement","src":"57023:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30462,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"57046:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30463,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"57046:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30464,"nodeType":"RevertStatement","src":"57039:25:94"}},{"AST":{"nativeSrc":"57099:81:94","nodeType":"YulBlock","src":"57099:81:94","statements":[{"nativeSrc":"57113:57:94","nodeType":"YulAssignment","src":"57113:57:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"57135:1:94","nodeType":"YulLiteral","src":"57135:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"57138:6:94","nodeType":"YulIdentifier","src":"57138:6:94"}],"functionName":{"name":"mul","nativeSrc":"57131:3:94","nodeType":"YulIdentifier","src":"57131:3:94"},"nativeSrc":"57131:14:94","nodeType":"YulFunctionCall","src":"57131:14:94"},{"name":"self","nativeSrc":"57147:4:94","nodeType":"YulIdentifier","src":"57147:4:94"}],"functionName":{"name":"shl","nativeSrc":"57127:3:94","nodeType":"YulIdentifier","src":"57127:3:94"},"nativeSrc":"57127:25:94","nodeType":"YulFunctionCall","src":"57127:25:94"},{"arguments":[{"kind":"number","nativeSrc":"57158:2:94","nodeType":"YulLiteral","src":"57158:2:94","type":"","value":"64"},{"arguments":[{"kind":"number","nativeSrc":"57166:1:94","nodeType":"YulLiteral","src":"57166:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"57162:3:94","nodeType":"YulIdentifier","src":"57162:3:94"},"nativeSrc":"57162:6:94","nodeType":"YulFunctionCall","src":"57162:6:94"}],"functionName":{"name":"shl","nativeSrc":"57154:3:94","nodeType":"YulIdentifier","src":"57154:3:94"},"nativeSrc":"57154:15:94","nodeType":"YulFunctionCall","src":"57154:15:94"}],"functionName":{"name":"and","nativeSrc":"57123:3:94","nodeType":"YulIdentifier","src":"57123:3:94"},"nativeSrc":"57123:47:94","nodeType":"YulFunctionCall","src":"57123:47:94"},"variableNames":[{"name":"result","nativeSrc":"57113:6:94","nodeType":"YulIdentifier","src":"57113:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30454,"isOffset":false,"isSlot":false,"src":"57138:6:94","valueSize":1},{"declaration":30457,"isOffset":false,"isSlot":false,"src":"57113:6:94","valueSize":1},{"declaration":30452,"isOffset":false,"isSlot":false,"src":"57147:4:94","valueSize":1}],"flags":["memory-safe"],"id":30466,"nodeType":"InlineAssembly","src":"57074:106:94"}]},"id":30468,"implemented":true,"kind":"function","modifiers":[],"name":"extract_28_24","nameLocation":"56932:13:94","nodeType":"FunctionDefinition","parameters":{"id":30455,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30452,"mutability":"mutable","name":"self","nameLocation":"56954:4:94","nodeType":"VariableDeclaration","scope":30468,"src":"56946:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30451,"name":"bytes28","nodeType":"ElementaryTypeName","src":"56946:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30454,"mutability":"mutable","name":"offset","nameLocation":"56966:6:94","nodeType":"VariableDeclaration","scope":30468,"src":"56960:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30453,"name":"uint8","nodeType":"ElementaryTypeName","src":"56960:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"56945:28:94"},"returnParameters":{"id":30458,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30457,"mutability":"mutable","name":"result","nameLocation":"57005:6:94","nodeType":"VariableDeclaration","scope":30468,"src":"56997:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":30456,"name":"bytes24","nodeType":"ElementaryTypeName","src":"56997:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"56996:16:94"},"scope":30945,"src":"56923:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30487,"nodeType":"Block","src":"57297:232:94","statements":[{"assignments":[30480],"declarations":[{"constant":false,"id":30480,"mutability":"mutable","name":"oldValue","nameLocation":"57315:8:94","nodeType":"VariableDeclaration","scope":30487,"src":"57307:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":30479,"name":"bytes24","nodeType":"ElementaryTypeName","src":"57307:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"id":30485,"initialValue":{"arguments":[{"id":30482,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30470,"src":"57340:4:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},{"id":30483,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30474,"src":"57346:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30481,"name":"extract_28_24","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30468,"src":"57326:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes28_$_t_uint8_$returns$_t_bytes24_$","typeString":"function (bytes28,uint8) pure returns (bytes24)"}},"id":30484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"57326:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"nodeType":"VariableDeclarationStatement","src":"57307:46:94"},{"AST":{"nativeSrc":"57388:135:94","nodeType":"YulBlock","src":"57388:135:94","statements":[{"nativeSrc":"57402:36:94","nodeType":"YulAssignment","src":"57402:36:94","value":{"arguments":[{"name":"value","nativeSrc":"57415:5:94","nodeType":"YulIdentifier","src":"57415:5:94"},{"arguments":[{"kind":"number","nativeSrc":"57426:2:94","nodeType":"YulLiteral","src":"57426:2:94","type":"","value":"64"},{"arguments":[{"kind":"number","nativeSrc":"57434:1:94","nodeType":"YulLiteral","src":"57434:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"57430:3:94","nodeType":"YulIdentifier","src":"57430:3:94"},"nativeSrc":"57430:6:94","nodeType":"YulFunctionCall","src":"57430:6:94"}],"functionName":{"name":"shl","nativeSrc":"57422:3:94","nodeType":"YulIdentifier","src":"57422:3:94"},"nativeSrc":"57422:15:94","nodeType":"YulFunctionCall","src":"57422:15:94"}],"functionName":{"name":"and","nativeSrc":"57411:3:94","nodeType":"YulIdentifier","src":"57411:3:94"},"nativeSrc":"57411:27:94","nodeType":"YulFunctionCall","src":"57411:27:94"},"variableNames":[{"name":"value","nativeSrc":"57402:5:94","nodeType":"YulIdentifier","src":"57402:5:94"}]},{"nativeSrc":"57451:62:94","nodeType":"YulAssignment","src":"57451:62:94","value":{"arguments":[{"name":"self","nativeSrc":"57465:4:94","nodeType":"YulIdentifier","src":"57465:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"57479:1:94","nodeType":"YulLiteral","src":"57479:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"57482:6:94","nodeType":"YulIdentifier","src":"57482:6:94"}],"functionName":{"name":"mul","nativeSrc":"57475:3:94","nodeType":"YulIdentifier","src":"57475:3:94"},"nativeSrc":"57475:14:94","nodeType":"YulFunctionCall","src":"57475:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"57495:8:94","nodeType":"YulIdentifier","src":"57495:8:94"},{"name":"value","nativeSrc":"57505:5:94","nodeType":"YulIdentifier","src":"57505:5:94"}],"functionName":{"name":"xor","nativeSrc":"57491:3:94","nodeType":"YulIdentifier","src":"57491:3:94"},"nativeSrc":"57491:20:94","nodeType":"YulFunctionCall","src":"57491:20:94"}],"functionName":{"name":"shr","nativeSrc":"57471:3:94","nodeType":"YulIdentifier","src":"57471:3:94"},"nativeSrc":"57471:41:94","nodeType":"YulFunctionCall","src":"57471:41:94"}],"functionName":{"name":"xor","nativeSrc":"57461:3:94","nodeType":"YulIdentifier","src":"57461:3:94"},"nativeSrc":"57461:52:94","nodeType":"YulFunctionCall","src":"57461:52:94"},"variableNames":[{"name":"result","nativeSrc":"57451:6:94","nodeType":"YulIdentifier","src":"57451:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30474,"isOffset":false,"isSlot":false,"src":"57482:6:94","valueSize":1},{"declaration":30480,"isOffset":false,"isSlot":false,"src":"57495:8:94","valueSize":1},{"declaration":30477,"isOffset":false,"isSlot":false,"src":"57451:6:94","valueSize":1},{"declaration":30470,"isOffset":false,"isSlot":false,"src":"57465:4:94","valueSize":1},{"declaration":30472,"isOffset":false,"isSlot":false,"src":"57402:5:94","valueSize":1},{"declaration":30472,"isOffset":false,"isSlot":false,"src":"57415:5:94","valueSize":1},{"declaration":30472,"isOffset":false,"isSlot":false,"src":"57505:5:94","valueSize":1}],"flags":["memory-safe"],"id":30486,"nodeType":"InlineAssembly","src":"57363:160:94"}]},"id":30488,"implemented":true,"kind":"function","modifiers":[],"name":"replace_28_24","nameLocation":"57201:13:94","nodeType":"FunctionDefinition","parameters":{"id":30475,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30470,"mutability":"mutable","name":"self","nameLocation":"57223:4:94","nodeType":"VariableDeclaration","scope":30488,"src":"57215:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30469,"name":"bytes28","nodeType":"ElementaryTypeName","src":"57215:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30472,"mutability":"mutable","name":"value","nameLocation":"57237:5:94","nodeType":"VariableDeclaration","scope":30488,"src":"57229:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":30471,"name":"bytes24","nodeType":"ElementaryTypeName","src":"57229:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":30474,"mutability":"mutable","name":"offset","nameLocation":"57250:6:94","nodeType":"VariableDeclaration","scope":30488,"src":"57244:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30473,"name":"uint8","nodeType":"ElementaryTypeName","src":"57244:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"57214:43:94"},"returnParameters":{"id":30478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30477,"mutability":"mutable","name":"result","nameLocation":"57289:6:94","nodeType":"VariableDeclaration","scope":30488,"src":"57281:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30476,"name":"bytes28","nodeType":"ElementaryTypeName","src":"57281:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"57280:16:94"},"scope":30945,"src":"57192:337:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30505,"nodeType":"Block","src":"57623:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30497,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30492,"src":"57637:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3331","id":30498,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"57646:2:94","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"31"},"src":"57637:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30503,"nodeType":"IfStatement","src":"57633:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30500,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"57657:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30501,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"57657:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30502,"nodeType":"RevertStatement","src":"57650:25:94"}},{"AST":{"nativeSrc":"57710:82:94","nodeType":"YulBlock","src":"57710:82:94","statements":[{"nativeSrc":"57724:58:94","nodeType":"YulAssignment","src":"57724:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"57746:1:94","nodeType":"YulLiteral","src":"57746:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"57749:6:94","nodeType":"YulIdentifier","src":"57749:6:94"}],"functionName":{"name":"mul","nativeSrc":"57742:3:94","nodeType":"YulIdentifier","src":"57742:3:94"},"nativeSrc":"57742:14:94","nodeType":"YulFunctionCall","src":"57742:14:94"},{"name":"self","nativeSrc":"57758:4:94","nodeType":"YulIdentifier","src":"57758:4:94"}],"functionName":{"name":"shl","nativeSrc":"57738:3:94","nodeType":"YulIdentifier","src":"57738:3:94"},"nativeSrc":"57738:25:94","nodeType":"YulFunctionCall","src":"57738:25:94"},{"arguments":[{"kind":"number","nativeSrc":"57769:3:94","nodeType":"YulLiteral","src":"57769:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"57778:1:94","nodeType":"YulLiteral","src":"57778:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"57774:3:94","nodeType":"YulIdentifier","src":"57774:3:94"},"nativeSrc":"57774:6:94","nodeType":"YulFunctionCall","src":"57774:6:94"}],"functionName":{"name":"shl","nativeSrc":"57765:3:94","nodeType":"YulIdentifier","src":"57765:3:94"},"nativeSrc":"57765:16:94","nodeType":"YulFunctionCall","src":"57765:16:94"}],"functionName":{"name":"and","nativeSrc":"57734:3:94","nodeType":"YulIdentifier","src":"57734:3:94"},"nativeSrc":"57734:48:94","nodeType":"YulFunctionCall","src":"57734:48:94"},"variableNames":[{"name":"result","nativeSrc":"57724:6:94","nodeType":"YulIdentifier","src":"57724:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30492,"isOffset":false,"isSlot":false,"src":"57749:6:94","valueSize":1},{"declaration":30495,"isOffset":false,"isSlot":false,"src":"57724:6:94","valueSize":1},{"declaration":30490,"isOffset":false,"isSlot":false,"src":"57758:4:94","valueSize":1}],"flags":["memory-safe"],"id":30504,"nodeType":"InlineAssembly","src":"57685:107:94"}]},"id":30506,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_1","nameLocation":"57544:12:94","nodeType":"FunctionDefinition","parameters":{"id":30493,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30490,"mutability":"mutable","name":"self","nameLocation":"57565:4:94","nodeType":"VariableDeclaration","scope":30506,"src":"57557:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30489,"name":"bytes32","nodeType":"ElementaryTypeName","src":"57557:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30492,"mutability":"mutable","name":"offset","nameLocation":"57577:6:94","nodeType":"VariableDeclaration","scope":30506,"src":"57571:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30491,"name":"uint8","nodeType":"ElementaryTypeName","src":"57571:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"57556:28:94"},"returnParameters":{"id":30496,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30495,"mutability":"mutable","name":"result","nameLocation":"57615:6:94","nodeType":"VariableDeclaration","scope":30506,"src":"57608:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":30494,"name":"bytes1","nodeType":"ElementaryTypeName","src":"57608:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"57607:15:94"},"scope":30945,"src":"57535:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30525,"nodeType":"Block","src":"57907:231:94","statements":[{"assignments":[30518],"declarations":[{"constant":false,"id":30518,"mutability":"mutable","name":"oldValue","nameLocation":"57924:8:94","nodeType":"VariableDeclaration","scope":30525,"src":"57917:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":30517,"name":"bytes1","nodeType":"ElementaryTypeName","src":"57917:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":30523,"initialValue":{"arguments":[{"id":30520,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30508,"src":"57948:4:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":30521,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30512,"src":"57954:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30519,"name":"extract_32_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30506,"src":"57935:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes1_$","typeString":"function (bytes32,uint8) pure returns (bytes1)"}},"id":30522,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"57935:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"57917:44:94"},{"AST":{"nativeSrc":"57996:136:94","nodeType":"YulBlock","src":"57996:136:94","statements":[{"nativeSrc":"58010:37:94","nodeType":"YulAssignment","src":"58010:37:94","value":{"arguments":[{"name":"value","nativeSrc":"58023:5:94","nodeType":"YulIdentifier","src":"58023:5:94"},{"arguments":[{"kind":"number","nativeSrc":"58034:3:94","nodeType":"YulLiteral","src":"58034:3:94","type":"","value":"248"},{"arguments":[{"kind":"number","nativeSrc":"58043:1:94","nodeType":"YulLiteral","src":"58043:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"58039:3:94","nodeType":"YulIdentifier","src":"58039:3:94"},"nativeSrc":"58039:6:94","nodeType":"YulFunctionCall","src":"58039:6:94"}],"functionName":{"name":"shl","nativeSrc":"58030:3:94","nodeType":"YulIdentifier","src":"58030:3:94"},"nativeSrc":"58030:16:94","nodeType":"YulFunctionCall","src":"58030:16:94"}],"functionName":{"name":"and","nativeSrc":"58019:3:94","nodeType":"YulIdentifier","src":"58019:3:94"},"nativeSrc":"58019:28:94","nodeType":"YulFunctionCall","src":"58019:28:94"},"variableNames":[{"name":"value","nativeSrc":"58010:5:94","nodeType":"YulIdentifier","src":"58010:5:94"}]},{"nativeSrc":"58060:62:94","nodeType":"YulAssignment","src":"58060:62:94","value":{"arguments":[{"name":"self","nativeSrc":"58074:4:94","nodeType":"YulIdentifier","src":"58074:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"58088:1:94","nodeType":"YulLiteral","src":"58088:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"58091:6:94","nodeType":"YulIdentifier","src":"58091:6:94"}],"functionName":{"name":"mul","nativeSrc":"58084:3:94","nodeType":"YulIdentifier","src":"58084:3:94"},"nativeSrc":"58084:14:94","nodeType":"YulFunctionCall","src":"58084:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"58104:8:94","nodeType":"YulIdentifier","src":"58104:8:94"},{"name":"value","nativeSrc":"58114:5:94","nodeType":"YulIdentifier","src":"58114:5:94"}],"functionName":{"name":"xor","nativeSrc":"58100:3:94","nodeType":"YulIdentifier","src":"58100:3:94"},"nativeSrc":"58100:20:94","nodeType":"YulFunctionCall","src":"58100:20:94"}],"functionName":{"name":"shr","nativeSrc":"58080:3:94","nodeType":"YulIdentifier","src":"58080:3:94"},"nativeSrc":"58080:41:94","nodeType":"YulFunctionCall","src":"58080:41:94"}],"functionName":{"name":"xor","nativeSrc":"58070:3:94","nodeType":"YulIdentifier","src":"58070:3:94"},"nativeSrc":"58070:52:94","nodeType":"YulFunctionCall","src":"58070:52:94"},"variableNames":[{"name":"result","nativeSrc":"58060:6:94","nodeType":"YulIdentifier","src":"58060:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30512,"isOffset":false,"isSlot":false,"src":"58091:6:94","valueSize":1},{"declaration":30518,"isOffset":false,"isSlot":false,"src":"58104:8:94","valueSize":1},{"declaration":30515,"isOffset":false,"isSlot":false,"src":"58060:6:94","valueSize":1},{"declaration":30508,"isOffset":false,"isSlot":false,"src":"58074:4:94","valueSize":1},{"declaration":30510,"isOffset":false,"isSlot":false,"src":"58010:5:94","valueSize":1},{"declaration":30510,"isOffset":false,"isSlot":false,"src":"58023:5:94","valueSize":1},{"declaration":30510,"isOffset":false,"isSlot":false,"src":"58114:5:94","valueSize":1}],"flags":["memory-safe"],"id":30524,"nodeType":"InlineAssembly","src":"57971:161:94"}]},"id":30526,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_1","nameLocation":"57813:12:94","nodeType":"FunctionDefinition","parameters":{"id":30513,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30508,"mutability":"mutable","name":"self","nameLocation":"57834:4:94","nodeType":"VariableDeclaration","scope":30526,"src":"57826:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30507,"name":"bytes32","nodeType":"ElementaryTypeName","src":"57826:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30510,"mutability":"mutable","name":"value","nameLocation":"57847:5:94","nodeType":"VariableDeclaration","scope":30526,"src":"57840:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":30509,"name":"bytes1","nodeType":"ElementaryTypeName","src":"57840:6:94","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":30512,"mutability":"mutable","name":"offset","nameLocation":"57860:6:94","nodeType":"VariableDeclaration","scope":30526,"src":"57854:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30511,"name":"uint8","nodeType":"ElementaryTypeName","src":"57854:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"57825:42:94"},"returnParameters":{"id":30516,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30515,"mutability":"mutable","name":"result","nameLocation":"57899:6:94","nodeType":"VariableDeclaration","scope":30526,"src":"57891:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30514,"name":"bytes32","nodeType":"ElementaryTypeName","src":"57891:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"57890:16:94"},"scope":30945,"src":"57804:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30543,"nodeType":"Block","src":"58232:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30537,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30535,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30530,"src":"58246:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3330","id":30536,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"58255:2:94","typeDescriptions":{"typeIdentifier":"t_rational_30_by_1","typeString":"int_const 30"},"value":"30"},"src":"58246:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30541,"nodeType":"IfStatement","src":"58242:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30538,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"58266:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30539,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"58266:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30540,"nodeType":"RevertStatement","src":"58259:25:94"}},{"AST":{"nativeSrc":"58319:82:94","nodeType":"YulBlock","src":"58319:82:94","statements":[{"nativeSrc":"58333:58:94","nodeType":"YulAssignment","src":"58333:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"58355:1:94","nodeType":"YulLiteral","src":"58355:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"58358:6:94","nodeType":"YulIdentifier","src":"58358:6:94"}],"functionName":{"name":"mul","nativeSrc":"58351:3:94","nodeType":"YulIdentifier","src":"58351:3:94"},"nativeSrc":"58351:14:94","nodeType":"YulFunctionCall","src":"58351:14:94"},{"name":"self","nativeSrc":"58367:4:94","nodeType":"YulIdentifier","src":"58367:4:94"}],"functionName":{"name":"shl","nativeSrc":"58347:3:94","nodeType":"YulIdentifier","src":"58347:3:94"},"nativeSrc":"58347:25:94","nodeType":"YulFunctionCall","src":"58347:25:94"},{"arguments":[{"kind":"number","nativeSrc":"58378:3:94","nodeType":"YulLiteral","src":"58378:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"58387:1:94","nodeType":"YulLiteral","src":"58387:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"58383:3:94","nodeType":"YulIdentifier","src":"58383:3:94"},"nativeSrc":"58383:6:94","nodeType":"YulFunctionCall","src":"58383:6:94"}],"functionName":{"name":"shl","nativeSrc":"58374:3:94","nodeType":"YulIdentifier","src":"58374:3:94"},"nativeSrc":"58374:16:94","nodeType":"YulFunctionCall","src":"58374:16:94"}],"functionName":{"name":"and","nativeSrc":"58343:3:94","nodeType":"YulIdentifier","src":"58343:3:94"},"nativeSrc":"58343:48:94","nodeType":"YulFunctionCall","src":"58343:48:94"},"variableNames":[{"name":"result","nativeSrc":"58333:6:94","nodeType":"YulIdentifier","src":"58333:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30530,"isOffset":false,"isSlot":false,"src":"58358:6:94","valueSize":1},{"declaration":30533,"isOffset":false,"isSlot":false,"src":"58333:6:94","valueSize":1},{"declaration":30528,"isOffset":false,"isSlot":false,"src":"58367:4:94","valueSize":1}],"flags":["memory-safe"],"id":30542,"nodeType":"InlineAssembly","src":"58294:107:94"}]},"id":30544,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_2","nameLocation":"58153:12:94","nodeType":"FunctionDefinition","parameters":{"id":30531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30528,"mutability":"mutable","name":"self","nameLocation":"58174:4:94","nodeType":"VariableDeclaration","scope":30544,"src":"58166:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30527,"name":"bytes32","nodeType":"ElementaryTypeName","src":"58166:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30530,"mutability":"mutable","name":"offset","nameLocation":"58186:6:94","nodeType":"VariableDeclaration","scope":30544,"src":"58180:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30529,"name":"uint8","nodeType":"ElementaryTypeName","src":"58180:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"58165:28:94"},"returnParameters":{"id":30534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30533,"mutability":"mutable","name":"result","nameLocation":"58224:6:94","nodeType":"VariableDeclaration","scope":30544,"src":"58217:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":30532,"name":"bytes2","nodeType":"ElementaryTypeName","src":"58217:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"src":"58216:15:94"},"scope":30945,"src":"58144:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30563,"nodeType":"Block","src":"58516:231:94","statements":[{"assignments":[30556],"declarations":[{"constant":false,"id":30556,"mutability":"mutable","name":"oldValue","nameLocation":"58533:8:94","nodeType":"VariableDeclaration","scope":30563,"src":"58526:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":30555,"name":"bytes2","nodeType":"ElementaryTypeName","src":"58526:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"}],"id":30561,"initialValue":{"arguments":[{"id":30558,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30546,"src":"58557:4:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":30559,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30550,"src":"58563:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30557,"name":"extract_32_2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30544,"src":"58544:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes2_$","typeString":"function (bytes32,uint8) pure returns (bytes2)"}},"id":30560,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"58544:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"VariableDeclarationStatement","src":"58526:44:94"},{"AST":{"nativeSrc":"58605:136:94","nodeType":"YulBlock","src":"58605:136:94","statements":[{"nativeSrc":"58619:37:94","nodeType":"YulAssignment","src":"58619:37:94","value":{"arguments":[{"name":"value","nativeSrc":"58632:5:94","nodeType":"YulIdentifier","src":"58632:5:94"},{"arguments":[{"kind":"number","nativeSrc":"58643:3:94","nodeType":"YulLiteral","src":"58643:3:94","type":"","value":"240"},{"arguments":[{"kind":"number","nativeSrc":"58652:1:94","nodeType":"YulLiteral","src":"58652:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"58648:3:94","nodeType":"YulIdentifier","src":"58648:3:94"},"nativeSrc":"58648:6:94","nodeType":"YulFunctionCall","src":"58648:6:94"}],"functionName":{"name":"shl","nativeSrc":"58639:3:94","nodeType":"YulIdentifier","src":"58639:3:94"},"nativeSrc":"58639:16:94","nodeType":"YulFunctionCall","src":"58639:16:94"}],"functionName":{"name":"and","nativeSrc":"58628:3:94","nodeType":"YulIdentifier","src":"58628:3:94"},"nativeSrc":"58628:28:94","nodeType":"YulFunctionCall","src":"58628:28:94"},"variableNames":[{"name":"value","nativeSrc":"58619:5:94","nodeType":"YulIdentifier","src":"58619:5:94"}]},{"nativeSrc":"58669:62:94","nodeType":"YulAssignment","src":"58669:62:94","value":{"arguments":[{"name":"self","nativeSrc":"58683:4:94","nodeType":"YulIdentifier","src":"58683:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"58697:1:94","nodeType":"YulLiteral","src":"58697:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"58700:6:94","nodeType":"YulIdentifier","src":"58700:6:94"}],"functionName":{"name":"mul","nativeSrc":"58693:3:94","nodeType":"YulIdentifier","src":"58693:3:94"},"nativeSrc":"58693:14:94","nodeType":"YulFunctionCall","src":"58693:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"58713:8:94","nodeType":"YulIdentifier","src":"58713:8:94"},{"name":"value","nativeSrc":"58723:5:94","nodeType":"YulIdentifier","src":"58723:5:94"}],"functionName":{"name":"xor","nativeSrc":"58709:3:94","nodeType":"YulIdentifier","src":"58709:3:94"},"nativeSrc":"58709:20:94","nodeType":"YulFunctionCall","src":"58709:20:94"}],"functionName":{"name":"shr","nativeSrc":"58689:3:94","nodeType":"YulIdentifier","src":"58689:3:94"},"nativeSrc":"58689:41:94","nodeType":"YulFunctionCall","src":"58689:41:94"}],"functionName":{"name":"xor","nativeSrc":"58679:3:94","nodeType":"YulIdentifier","src":"58679:3:94"},"nativeSrc":"58679:52:94","nodeType":"YulFunctionCall","src":"58679:52:94"},"variableNames":[{"name":"result","nativeSrc":"58669:6:94","nodeType":"YulIdentifier","src":"58669:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30550,"isOffset":false,"isSlot":false,"src":"58700:6:94","valueSize":1},{"declaration":30556,"isOffset":false,"isSlot":false,"src":"58713:8:94","valueSize":1},{"declaration":30553,"isOffset":false,"isSlot":false,"src":"58669:6:94","valueSize":1},{"declaration":30546,"isOffset":false,"isSlot":false,"src":"58683:4:94","valueSize":1},{"declaration":30548,"isOffset":false,"isSlot":false,"src":"58619:5:94","valueSize":1},{"declaration":30548,"isOffset":false,"isSlot":false,"src":"58632:5:94","valueSize":1},{"declaration":30548,"isOffset":false,"isSlot":false,"src":"58723:5:94","valueSize":1}],"flags":["memory-safe"],"id":30562,"nodeType":"InlineAssembly","src":"58580:161:94"}]},"id":30564,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_2","nameLocation":"58422:12:94","nodeType":"FunctionDefinition","parameters":{"id":30551,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30546,"mutability":"mutable","name":"self","nameLocation":"58443:4:94","nodeType":"VariableDeclaration","scope":30564,"src":"58435:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30545,"name":"bytes32","nodeType":"ElementaryTypeName","src":"58435:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30548,"mutability":"mutable","name":"value","nameLocation":"58456:5:94","nodeType":"VariableDeclaration","scope":30564,"src":"58449:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"typeName":{"id":30547,"name":"bytes2","nodeType":"ElementaryTypeName","src":"58449:6:94","typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"visibility":"internal"},{"constant":false,"id":30550,"mutability":"mutable","name":"offset","nameLocation":"58469:6:94","nodeType":"VariableDeclaration","scope":30564,"src":"58463:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30549,"name":"uint8","nodeType":"ElementaryTypeName","src":"58463:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"58434:42:94"},"returnParameters":{"id":30554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30553,"mutability":"mutable","name":"result","nameLocation":"58508:6:94","nodeType":"VariableDeclaration","scope":30564,"src":"58500:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30552,"name":"bytes32","nodeType":"ElementaryTypeName","src":"58500:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"58499:16:94"},"scope":30945,"src":"58413:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30581,"nodeType":"Block","src":"58841:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30575,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30573,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30568,"src":"58855:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3238","id":30574,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"58864:2:94","typeDescriptions":{"typeIdentifier":"t_rational_28_by_1","typeString":"int_const 28"},"value":"28"},"src":"58855:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30579,"nodeType":"IfStatement","src":"58851:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30576,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"58875:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30577,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"58875:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30578,"nodeType":"RevertStatement","src":"58868:25:94"}},{"AST":{"nativeSrc":"58928:82:94","nodeType":"YulBlock","src":"58928:82:94","statements":[{"nativeSrc":"58942:58:94","nodeType":"YulAssignment","src":"58942:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"58964:1:94","nodeType":"YulLiteral","src":"58964:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"58967:6:94","nodeType":"YulIdentifier","src":"58967:6:94"}],"functionName":{"name":"mul","nativeSrc":"58960:3:94","nodeType":"YulIdentifier","src":"58960:3:94"},"nativeSrc":"58960:14:94","nodeType":"YulFunctionCall","src":"58960:14:94"},{"name":"self","nativeSrc":"58976:4:94","nodeType":"YulIdentifier","src":"58976:4:94"}],"functionName":{"name":"shl","nativeSrc":"58956:3:94","nodeType":"YulIdentifier","src":"58956:3:94"},"nativeSrc":"58956:25:94","nodeType":"YulFunctionCall","src":"58956:25:94"},{"arguments":[{"kind":"number","nativeSrc":"58987:3:94","nodeType":"YulLiteral","src":"58987:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"58996:1:94","nodeType":"YulLiteral","src":"58996:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"58992:3:94","nodeType":"YulIdentifier","src":"58992:3:94"},"nativeSrc":"58992:6:94","nodeType":"YulFunctionCall","src":"58992:6:94"}],"functionName":{"name":"shl","nativeSrc":"58983:3:94","nodeType":"YulIdentifier","src":"58983:3:94"},"nativeSrc":"58983:16:94","nodeType":"YulFunctionCall","src":"58983:16:94"}],"functionName":{"name":"and","nativeSrc":"58952:3:94","nodeType":"YulIdentifier","src":"58952:3:94"},"nativeSrc":"58952:48:94","nodeType":"YulFunctionCall","src":"58952:48:94"},"variableNames":[{"name":"result","nativeSrc":"58942:6:94","nodeType":"YulIdentifier","src":"58942:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30568,"isOffset":false,"isSlot":false,"src":"58967:6:94","valueSize":1},{"declaration":30571,"isOffset":false,"isSlot":false,"src":"58942:6:94","valueSize":1},{"declaration":30566,"isOffset":false,"isSlot":false,"src":"58976:4:94","valueSize":1}],"flags":["memory-safe"],"id":30580,"nodeType":"InlineAssembly","src":"58903:107:94"}]},"id":30582,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_4","nameLocation":"58762:12:94","nodeType":"FunctionDefinition","parameters":{"id":30569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30566,"mutability":"mutable","name":"self","nameLocation":"58783:4:94","nodeType":"VariableDeclaration","scope":30582,"src":"58775:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30565,"name":"bytes32","nodeType":"ElementaryTypeName","src":"58775:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30568,"mutability":"mutable","name":"offset","nameLocation":"58795:6:94","nodeType":"VariableDeclaration","scope":30582,"src":"58789:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30567,"name":"uint8","nodeType":"ElementaryTypeName","src":"58789:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"58774:28:94"},"returnParameters":{"id":30572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30571,"mutability":"mutable","name":"result","nameLocation":"58833:6:94","nodeType":"VariableDeclaration","scope":30582,"src":"58826:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":30570,"name":"bytes4","nodeType":"ElementaryTypeName","src":"58826:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"58825:15:94"},"scope":30945,"src":"58753:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30601,"nodeType":"Block","src":"59125:231:94","statements":[{"assignments":[30594],"declarations":[{"constant":false,"id":30594,"mutability":"mutable","name":"oldValue","nameLocation":"59142:8:94","nodeType":"VariableDeclaration","scope":30601,"src":"59135:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":30593,"name":"bytes4","nodeType":"ElementaryTypeName","src":"59135:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":30599,"initialValue":{"arguments":[{"id":30596,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30584,"src":"59166:4:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":30597,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30588,"src":"59172:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30595,"name":"extract_32_4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30582,"src":"59153:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes4_$","typeString":"function (bytes32,uint8) pure returns (bytes4)"}},"id":30598,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"59153:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"59135:44:94"},{"AST":{"nativeSrc":"59214:136:94","nodeType":"YulBlock","src":"59214:136:94","statements":[{"nativeSrc":"59228:37:94","nodeType":"YulAssignment","src":"59228:37:94","value":{"arguments":[{"name":"value","nativeSrc":"59241:5:94","nodeType":"YulIdentifier","src":"59241:5:94"},{"arguments":[{"kind":"number","nativeSrc":"59252:3:94","nodeType":"YulLiteral","src":"59252:3:94","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"59261:1:94","nodeType":"YulLiteral","src":"59261:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"59257:3:94","nodeType":"YulIdentifier","src":"59257:3:94"},"nativeSrc":"59257:6:94","nodeType":"YulFunctionCall","src":"59257:6:94"}],"functionName":{"name":"shl","nativeSrc":"59248:3:94","nodeType":"YulIdentifier","src":"59248:3:94"},"nativeSrc":"59248:16:94","nodeType":"YulFunctionCall","src":"59248:16:94"}],"functionName":{"name":"and","nativeSrc":"59237:3:94","nodeType":"YulIdentifier","src":"59237:3:94"},"nativeSrc":"59237:28:94","nodeType":"YulFunctionCall","src":"59237:28:94"},"variableNames":[{"name":"value","nativeSrc":"59228:5:94","nodeType":"YulIdentifier","src":"59228:5:94"}]},{"nativeSrc":"59278:62:94","nodeType":"YulAssignment","src":"59278:62:94","value":{"arguments":[{"name":"self","nativeSrc":"59292:4:94","nodeType":"YulIdentifier","src":"59292:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"59306:1:94","nodeType":"YulLiteral","src":"59306:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"59309:6:94","nodeType":"YulIdentifier","src":"59309:6:94"}],"functionName":{"name":"mul","nativeSrc":"59302:3:94","nodeType":"YulIdentifier","src":"59302:3:94"},"nativeSrc":"59302:14:94","nodeType":"YulFunctionCall","src":"59302:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"59322:8:94","nodeType":"YulIdentifier","src":"59322:8:94"},{"name":"value","nativeSrc":"59332:5:94","nodeType":"YulIdentifier","src":"59332:5:94"}],"functionName":{"name":"xor","nativeSrc":"59318:3:94","nodeType":"YulIdentifier","src":"59318:3:94"},"nativeSrc":"59318:20:94","nodeType":"YulFunctionCall","src":"59318:20:94"}],"functionName":{"name":"shr","nativeSrc":"59298:3:94","nodeType":"YulIdentifier","src":"59298:3:94"},"nativeSrc":"59298:41:94","nodeType":"YulFunctionCall","src":"59298:41:94"}],"functionName":{"name":"xor","nativeSrc":"59288:3:94","nodeType":"YulIdentifier","src":"59288:3:94"},"nativeSrc":"59288:52:94","nodeType":"YulFunctionCall","src":"59288:52:94"},"variableNames":[{"name":"result","nativeSrc":"59278:6:94","nodeType":"YulIdentifier","src":"59278:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30588,"isOffset":false,"isSlot":false,"src":"59309:6:94","valueSize":1},{"declaration":30594,"isOffset":false,"isSlot":false,"src":"59322:8:94","valueSize":1},{"declaration":30591,"isOffset":false,"isSlot":false,"src":"59278:6:94","valueSize":1},{"declaration":30584,"isOffset":false,"isSlot":false,"src":"59292:4:94","valueSize":1},{"declaration":30586,"isOffset":false,"isSlot":false,"src":"59228:5:94","valueSize":1},{"declaration":30586,"isOffset":false,"isSlot":false,"src":"59241:5:94","valueSize":1},{"declaration":30586,"isOffset":false,"isSlot":false,"src":"59332:5:94","valueSize":1}],"flags":["memory-safe"],"id":30600,"nodeType":"InlineAssembly","src":"59189:161:94"}]},"id":30602,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_4","nameLocation":"59031:12:94","nodeType":"FunctionDefinition","parameters":{"id":30589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30584,"mutability":"mutable","name":"self","nameLocation":"59052:4:94","nodeType":"VariableDeclaration","scope":30602,"src":"59044:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30583,"name":"bytes32","nodeType":"ElementaryTypeName","src":"59044:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30586,"mutability":"mutable","name":"value","nameLocation":"59065:5:94","nodeType":"VariableDeclaration","scope":30602,"src":"59058:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":30585,"name":"bytes4","nodeType":"ElementaryTypeName","src":"59058:6:94","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"},{"constant":false,"id":30588,"mutability":"mutable","name":"offset","nameLocation":"59078:6:94","nodeType":"VariableDeclaration","scope":30602,"src":"59072:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30587,"name":"uint8","nodeType":"ElementaryTypeName","src":"59072:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"59043:42:94"},"returnParameters":{"id":30592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30591,"mutability":"mutable","name":"result","nameLocation":"59117:6:94","nodeType":"VariableDeclaration","scope":30602,"src":"59109:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30590,"name":"bytes32","nodeType":"ElementaryTypeName","src":"59109:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"59108:16:94"},"scope":30945,"src":"59022:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30619,"nodeType":"Block","src":"59450:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30611,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30606,"src":"59464:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3236","id":30612,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"59473:2:94","typeDescriptions":{"typeIdentifier":"t_rational_26_by_1","typeString":"int_const 26"},"value":"26"},"src":"59464:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30617,"nodeType":"IfStatement","src":"59460:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30614,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"59484:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"59484:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30616,"nodeType":"RevertStatement","src":"59477:25:94"}},{"AST":{"nativeSrc":"59537:82:94","nodeType":"YulBlock","src":"59537:82:94","statements":[{"nativeSrc":"59551:58:94","nodeType":"YulAssignment","src":"59551:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"59573:1:94","nodeType":"YulLiteral","src":"59573:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"59576:6:94","nodeType":"YulIdentifier","src":"59576:6:94"}],"functionName":{"name":"mul","nativeSrc":"59569:3:94","nodeType":"YulIdentifier","src":"59569:3:94"},"nativeSrc":"59569:14:94","nodeType":"YulFunctionCall","src":"59569:14:94"},{"name":"self","nativeSrc":"59585:4:94","nodeType":"YulIdentifier","src":"59585:4:94"}],"functionName":{"name":"shl","nativeSrc":"59565:3:94","nodeType":"YulIdentifier","src":"59565:3:94"},"nativeSrc":"59565:25:94","nodeType":"YulFunctionCall","src":"59565:25:94"},{"arguments":[{"kind":"number","nativeSrc":"59596:3:94","nodeType":"YulLiteral","src":"59596:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"59605:1:94","nodeType":"YulLiteral","src":"59605:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"59601:3:94","nodeType":"YulIdentifier","src":"59601:3:94"},"nativeSrc":"59601:6:94","nodeType":"YulFunctionCall","src":"59601:6:94"}],"functionName":{"name":"shl","nativeSrc":"59592:3:94","nodeType":"YulIdentifier","src":"59592:3:94"},"nativeSrc":"59592:16:94","nodeType":"YulFunctionCall","src":"59592:16:94"}],"functionName":{"name":"and","nativeSrc":"59561:3:94","nodeType":"YulIdentifier","src":"59561:3:94"},"nativeSrc":"59561:48:94","nodeType":"YulFunctionCall","src":"59561:48:94"},"variableNames":[{"name":"result","nativeSrc":"59551:6:94","nodeType":"YulIdentifier","src":"59551:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30606,"isOffset":false,"isSlot":false,"src":"59576:6:94","valueSize":1},{"declaration":30609,"isOffset":false,"isSlot":false,"src":"59551:6:94","valueSize":1},{"declaration":30604,"isOffset":false,"isSlot":false,"src":"59585:4:94","valueSize":1}],"flags":["memory-safe"],"id":30618,"nodeType":"InlineAssembly","src":"59512:107:94"}]},"id":30620,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_6","nameLocation":"59371:12:94","nodeType":"FunctionDefinition","parameters":{"id":30607,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30604,"mutability":"mutable","name":"self","nameLocation":"59392:4:94","nodeType":"VariableDeclaration","scope":30620,"src":"59384:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30603,"name":"bytes32","nodeType":"ElementaryTypeName","src":"59384:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30606,"mutability":"mutable","name":"offset","nameLocation":"59404:6:94","nodeType":"VariableDeclaration","scope":30620,"src":"59398:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30605,"name":"uint8","nodeType":"ElementaryTypeName","src":"59398:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"59383:28:94"},"returnParameters":{"id":30610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30609,"mutability":"mutable","name":"result","nameLocation":"59442:6:94","nodeType":"VariableDeclaration","scope":30620,"src":"59435:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":30608,"name":"bytes6","nodeType":"ElementaryTypeName","src":"59435:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"src":"59434:15:94"},"scope":30945,"src":"59362:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30639,"nodeType":"Block","src":"59734:231:94","statements":[{"assignments":[30632],"declarations":[{"constant":false,"id":30632,"mutability":"mutable","name":"oldValue","nameLocation":"59751:8:94","nodeType":"VariableDeclaration","scope":30639,"src":"59744:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":30631,"name":"bytes6","nodeType":"ElementaryTypeName","src":"59744:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"}],"id":30637,"initialValue":{"arguments":[{"id":30634,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30622,"src":"59775:4:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":30635,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30626,"src":"59781:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30633,"name":"extract_32_6","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30620,"src":"59762:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes6_$","typeString":"function (bytes32,uint8) pure returns (bytes6)"}},"id":30636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"59762:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"nodeType":"VariableDeclarationStatement","src":"59744:44:94"},{"AST":{"nativeSrc":"59823:136:94","nodeType":"YulBlock","src":"59823:136:94","statements":[{"nativeSrc":"59837:37:94","nodeType":"YulAssignment","src":"59837:37:94","value":{"arguments":[{"name":"value","nativeSrc":"59850:5:94","nodeType":"YulIdentifier","src":"59850:5:94"},{"arguments":[{"kind":"number","nativeSrc":"59861:3:94","nodeType":"YulLiteral","src":"59861:3:94","type":"","value":"208"},{"arguments":[{"kind":"number","nativeSrc":"59870:1:94","nodeType":"YulLiteral","src":"59870:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"59866:3:94","nodeType":"YulIdentifier","src":"59866:3:94"},"nativeSrc":"59866:6:94","nodeType":"YulFunctionCall","src":"59866:6:94"}],"functionName":{"name":"shl","nativeSrc":"59857:3:94","nodeType":"YulIdentifier","src":"59857:3:94"},"nativeSrc":"59857:16:94","nodeType":"YulFunctionCall","src":"59857:16:94"}],"functionName":{"name":"and","nativeSrc":"59846:3:94","nodeType":"YulIdentifier","src":"59846:3:94"},"nativeSrc":"59846:28:94","nodeType":"YulFunctionCall","src":"59846:28:94"},"variableNames":[{"name":"value","nativeSrc":"59837:5:94","nodeType":"YulIdentifier","src":"59837:5:94"}]},{"nativeSrc":"59887:62:94","nodeType":"YulAssignment","src":"59887:62:94","value":{"arguments":[{"name":"self","nativeSrc":"59901:4:94","nodeType":"YulIdentifier","src":"59901:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"59915:1:94","nodeType":"YulLiteral","src":"59915:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"59918:6:94","nodeType":"YulIdentifier","src":"59918:6:94"}],"functionName":{"name":"mul","nativeSrc":"59911:3:94","nodeType":"YulIdentifier","src":"59911:3:94"},"nativeSrc":"59911:14:94","nodeType":"YulFunctionCall","src":"59911:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"59931:8:94","nodeType":"YulIdentifier","src":"59931:8:94"},{"name":"value","nativeSrc":"59941:5:94","nodeType":"YulIdentifier","src":"59941:5:94"}],"functionName":{"name":"xor","nativeSrc":"59927:3:94","nodeType":"YulIdentifier","src":"59927:3:94"},"nativeSrc":"59927:20:94","nodeType":"YulFunctionCall","src":"59927:20:94"}],"functionName":{"name":"shr","nativeSrc":"59907:3:94","nodeType":"YulIdentifier","src":"59907:3:94"},"nativeSrc":"59907:41:94","nodeType":"YulFunctionCall","src":"59907:41:94"}],"functionName":{"name":"xor","nativeSrc":"59897:3:94","nodeType":"YulIdentifier","src":"59897:3:94"},"nativeSrc":"59897:52:94","nodeType":"YulFunctionCall","src":"59897:52:94"},"variableNames":[{"name":"result","nativeSrc":"59887:6:94","nodeType":"YulIdentifier","src":"59887:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30626,"isOffset":false,"isSlot":false,"src":"59918:6:94","valueSize":1},{"declaration":30632,"isOffset":false,"isSlot":false,"src":"59931:8:94","valueSize":1},{"declaration":30629,"isOffset":false,"isSlot":false,"src":"59887:6:94","valueSize":1},{"declaration":30622,"isOffset":false,"isSlot":false,"src":"59901:4:94","valueSize":1},{"declaration":30624,"isOffset":false,"isSlot":false,"src":"59837:5:94","valueSize":1},{"declaration":30624,"isOffset":false,"isSlot":false,"src":"59850:5:94","valueSize":1},{"declaration":30624,"isOffset":false,"isSlot":false,"src":"59941:5:94","valueSize":1}],"flags":["memory-safe"],"id":30638,"nodeType":"InlineAssembly","src":"59798:161:94"}]},"id":30640,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_6","nameLocation":"59640:12:94","nodeType":"FunctionDefinition","parameters":{"id":30627,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30622,"mutability":"mutable","name":"self","nameLocation":"59661:4:94","nodeType":"VariableDeclaration","scope":30640,"src":"59653:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30621,"name":"bytes32","nodeType":"ElementaryTypeName","src":"59653:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30624,"mutability":"mutable","name":"value","nameLocation":"59674:5:94","nodeType":"VariableDeclaration","scope":30640,"src":"59667:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"},"typeName":{"id":30623,"name":"bytes6","nodeType":"ElementaryTypeName","src":"59667:6:94","typeDescriptions":{"typeIdentifier":"t_bytes6","typeString":"bytes6"}},"visibility":"internal"},{"constant":false,"id":30626,"mutability":"mutable","name":"offset","nameLocation":"59687:6:94","nodeType":"VariableDeclaration","scope":30640,"src":"59681:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30625,"name":"uint8","nodeType":"ElementaryTypeName","src":"59681:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"59652:42:94"},"returnParameters":{"id":30630,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30629,"mutability":"mutable","name":"result","nameLocation":"59726:6:94","nodeType":"VariableDeclaration","scope":30640,"src":"59718:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30628,"name":"bytes32","nodeType":"ElementaryTypeName","src":"59718:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"59717:16:94"},"scope":30945,"src":"59631:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30657,"nodeType":"Block","src":"60059:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30649,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30644,"src":"60073:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3234","id":30650,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"60082:2:94","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},"src":"60073:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30655,"nodeType":"IfStatement","src":"60069:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30652,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"60093:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30653,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"60093:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30654,"nodeType":"RevertStatement","src":"60086:25:94"}},{"AST":{"nativeSrc":"60146:82:94","nodeType":"YulBlock","src":"60146:82:94","statements":[{"nativeSrc":"60160:58:94","nodeType":"YulAssignment","src":"60160:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"60182:1:94","nodeType":"YulLiteral","src":"60182:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"60185:6:94","nodeType":"YulIdentifier","src":"60185:6:94"}],"functionName":{"name":"mul","nativeSrc":"60178:3:94","nodeType":"YulIdentifier","src":"60178:3:94"},"nativeSrc":"60178:14:94","nodeType":"YulFunctionCall","src":"60178:14:94"},{"name":"self","nativeSrc":"60194:4:94","nodeType":"YulIdentifier","src":"60194:4:94"}],"functionName":{"name":"shl","nativeSrc":"60174:3:94","nodeType":"YulIdentifier","src":"60174:3:94"},"nativeSrc":"60174:25:94","nodeType":"YulFunctionCall","src":"60174:25:94"},{"arguments":[{"kind":"number","nativeSrc":"60205:3:94","nodeType":"YulLiteral","src":"60205:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"60214:1:94","nodeType":"YulLiteral","src":"60214:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"60210:3:94","nodeType":"YulIdentifier","src":"60210:3:94"},"nativeSrc":"60210:6:94","nodeType":"YulFunctionCall","src":"60210:6:94"}],"functionName":{"name":"shl","nativeSrc":"60201:3:94","nodeType":"YulIdentifier","src":"60201:3:94"},"nativeSrc":"60201:16:94","nodeType":"YulFunctionCall","src":"60201:16:94"}],"functionName":{"name":"and","nativeSrc":"60170:3:94","nodeType":"YulIdentifier","src":"60170:3:94"},"nativeSrc":"60170:48:94","nodeType":"YulFunctionCall","src":"60170:48:94"},"variableNames":[{"name":"result","nativeSrc":"60160:6:94","nodeType":"YulIdentifier","src":"60160:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30644,"isOffset":false,"isSlot":false,"src":"60185:6:94","valueSize":1},{"declaration":30647,"isOffset":false,"isSlot":false,"src":"60160:6:94","valueSize":1},{"declaration":30642,"isOffset":false,"isSlot":false,"src":"60194:4:94","valueSize":1}],"flags":["memory-safe"],"id":30656,"nodeType":"InlineAssembly","src":"60121:107:94"}]},"id":30658,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_8","nameLocation":"59980:12:94","nodeType":"FunctionDefinition","parameters":{"id":30645,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30642,"mutability":"mutable","name":"self","nameLocation":"60001:4:94","nodeType":"VariableDeclaration","scope":30658,"src":"59993:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30641,"name":"bytes32","nodeType":"ElementaryTypeName","src":"59993:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30644,"mutability":"mutable","name":"offset","nameLocation":"60013:6:94","nodeType":"VariableDeclaration","scope":30658,"src":"60007:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30643,"name":"uint8","nodeType":"ElementaryTypeName","src":"60007:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"59992:28:94"},"returnParameters":{"id":30648,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30647,"mutability":"mutable","name":"result","nameLocation":"60051:6:94","nodeType":"VariableDeclaration","scope":30658,"src":"60044:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":30646,"name":"bytes8","nodeType":"ElementaryTypeName","src":"60044:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"src":"60043:15:94"},"scope":30945,"src":"59971:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30677,"nodeType":"Block","src":"60343:231:94","statements":[{"assignments":[30670],"declarations":[{"constant":false,"id":30670,"mutability":"mutable","name":"oldValue","nameLocation":"60360:8:94","nodeType":"VariableDeclaration","scope":30677,"src":"60353:15:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":30669,"name":"bytes8","nodeType":"ElementaryTypeName","src":"60353:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"}],"id":30675,"initialValue":{"arguments":[{"id":30672,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30660,"src":"60384:4:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":30673,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30664,"src":"60390:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30671,"name":"extract_32_8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30658,"src":"60371:12:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes8_$","typeString":"function (bytes32,uint8) pure returns (bytes8)"}},"id":30674,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"60371:26:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"nodeType":"VariableDeclarationStatement","src":"60353:44:94"},{"AST":{"nativeSrc":"60432:136:94","nodeType":"YulBlock","src":"60432:136:94","statements":[{"nativeSrc":"60446:37:94","nodeType":"YulAssignment","src":"60446:37:94","value":{"arguments":[{"name":"value","nativeSrc":"60459:5:94","nodeType":"YulIdentifier","src":"60459:5:94"},{"arguments":[{"kind":"number","nativeSrc":"60470:3:94","nodeType":"YulLiteral","src":"60470:3:94","type":"","value":"192"},{"arguments":[{"kind":"number","nativeSrc":"60479:1:94","nodeType":"YulLiteral","src":"60479:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"60475:3:94","nodeType":"YulIdentifier","src":"60475:3:94"},"nativeSrc":"60475:6:94","nodeType":"YulFunctionCall","src":"60475:6:94"}],"functionName":{"name":"shl","nativeSrc":"60466:3:94","nodeType":"YulIdentifier","src":"60466:3:94"},"nativeSrc":"60466:16:94","nodeType":"YulFunctionCall","src":"60466:16:94"}],"functionName":{"name":"and","nativeSrc":"60455:3:94","nodeType":"YulIdentifier","src":"60455:3:94"},"nativeSrc":"60455:28:94","nodeType":"YulFunctionCall","src":"60455:28:94"},"variableNames":[{"name":"value","nativeSrc":"60446:5:94","nodeType":"YulIdentifier","src":"60446:5:94"}]},{"nativeSrc":"60496:62:94","nodeType":"YulAssignment","src":"60496:62:94","value":{"arguments":[{"name":"self","nativeSrc":"60510:4:94","nodeType":"YulIdentifier","src":"60510:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"60524:1:94","nodeType":"YulLiteral","src":"60524:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"60527:6:94","nodeType":"YulIdentifier","src":"60527:6:94"}],"functionName":{"name":"mul","nativeSrc":"60520:3:94","nodeType":"YulIdentifier","src":"60520:3:94"},"nativeSrc":"60520:14:94","nodeType":"YulFunctionCall","src":"60520:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"60540:8:94","nodeType":"YulIdentifier","src":"60540:8:94"},{"name":"value","nativeSrc":"60550:5:94","nodeType":"YulIdentifier","src":"60550:5:94"}],"functionName":{"name":"xor","nativeSrc":"60536:3:94","nodeType":"YulIdentifier","src":"60536:3:94"},"nativeSrc":"60536:20:94","nodeType":"YulFunctionCall","src":"60536:20:94"}],"functionName":{"name":"shr","nativeSrc":"60516:3:94","nodeType":"YulIdentifier","src":"60516:3:94"},"nativeSrc":"60516:41:94","nodeType":"YulFunctionCall","src":"60516:41:94"}],"functionName":{"name":"xor","nativeSrc":"60506:3:94","nodeType":"YulIdentifier","src":"60506:3:94"},"nativeSrc":"60506:52:94","nodeType":"YulFunctionCall","src":"60506:52:94"},"variableNames":[{"name":"result","nativeSrc":"60496:6:94","nodeType":"YulIdentifier","src":"60496:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30664,"isOffset":false,"isSlot":false,"src":"60527:6:94","valueSize":1},{"declaration":30670,"isOffset":false,"isSlot":false,"src":"60540:8:94","valueSize":1},{"declaration":30667,"isOffset":false,"isSlot":false,"src":"60496:6:94","valueSize":1},{"declaration":30660,"isOffset":false,"isSlot":false,"src":"60510:4:94","valueSize":1},{"declaration":30662,"isOffset":false,"isSlot":false,"src":"60446:5:94","valueSize":1},{"declaration":30662,"isOffset":false,"isSlot":false,"src":"60459:5:94","valueSize":1},{"declaration":30662,"isOffset":false,"isSlot":false,"src":"60550:5:94","valueSize":1}],"flags":["memory-safe"],"id":30676,"nodeType":"InlineAssembly","src":"60407:161:94"}]},"id":30678,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_8","nameLocation":"60249:12:94","nodeType":"FunctionDefinition","parameters":{"id":30665,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30660,"mutability":"mutable","name":"self","nameLocation":"60270:4:94","nodeType":"VariableDeclaration","scope":30678,"src":"60262:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30659,"name":"bytes32","nodeType":"ElementaryTypeName","src":"60262:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30662,"mutability":"mutable","name":"value","nameLocation":"60283:5:94","nodeType":"VariableDeclaration","scope":30678,"src":"60276:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"},"typeName":{"id":30661,"name":"bytes8","nodeType":"ElementaryTypeName","src":"60276:6:94","typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}},"visibility":"internal"},{"constant":false,"id":30664,"mutability":"mutable","name":"offset","nameLocation":"60296:6:94","nodeType":"VariableDeclaration","scope":30678,"src":"60290:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30663,"name":"uint8","nodeType":"ElementaryTypeName","src":"60290:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"60261:42:94"},"returnParameters":{"id":30668,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30667,"mutability":"mutable","name":"result","nameLocation":"60335:6:94","nodeType":"VariableDeclaration","scope":30678,"src":"60327:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30666,"name":"bytes32","nodeType":"ElementaryTypeName","src":"60327:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"60326:16:94"},"scope":30945,"src":"60240:334:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30695,"nodeType":"Block","src":"60670:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30687,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30682,"src":"60684:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3232","id":30688,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"60693:2:94","typeDescriptions":{"typeIdentifier":"t_rational_22_by_1","typeString":"int_const 22"},"value":"22"},"src":"60684:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30693,"nodeType":"IfStatement","src":"60680:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30690,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"60704:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30691,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"60704:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30692,"nodeType":"RevertStatement","src":"60697:25:94"}},{"AST":{"nativeSrc":"60757:82:94","nodeType":"YulBlock","src":"60757:82:94","statements":[{"nativeSrc":"60771:58:94","nodeType":"YulAssignment","src":"60771:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"60793:1:94","nodeType":"YulLiteral","src":"60793:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"60796:6:94","nodeType":"YulIdentifier","src":"60796:6:94"}],"functionName":{"name":"mul","nativeSrc":"60789:3:94","nodeType":"YulIdentifier","src":"60789:3:94"},"nativeSrc":"60789:14:94","nodeType":"YulFunctionCall","src":"60789:14:94"},{"name":"self","nativeSrc":"60805:4:94","nodeType":"YulIdentifier","src":"60805:4:94"}],"functionName":{"name":"shl","nativeSrc":"60785:3:94","nodeType":"YulIdentifier","src":"60785:3:94"},"nativeSrc":"60785:25:94","nodeType":"YulFunctionCall","src":"60785:25:94"},{"arguments":[{"kind":"number","nativeSrc":"60816:3:94","nodeType":"YulLiteral","src":"60816:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"60825:1:94","nodeType":"YulLiteral","src":"60825:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"60821:3:94","nodeType":"YulIdentifier","src":"60821:3:94"},"nativeSrc":"60821:6:94","nodeType":"YulFunctionCall","src":"60821:6:94"}],"functionName":{"name":"shl","nativeSrc":"60812:3:94","nodeType":"YulIdentifier","src":"60812:3:94"},"nativeSrc":"60812:16:94","nodeType":"YulFunctionCall","src":"60812:16:94"}],"functionName":{"name":"and","nativeSrc":"60781:3:94","nodeType":"YulIdentifier","src":"60781:3:94"},"nativeSrc":"60781:48:94","nodeType":"YulFunctionCall","src":"60781:48:94"},"variableNames":[{"name":"result","nativeSrc":"60771:6:94","nodeType":"YulIdentifier","src":"60771:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30682,"isOffset":false,"isSlot":false,"src":"60796:6:94","valueSize":1},{"declaration":30685,"isOffset":false,"isSlot":false,"src":"60771:6:94","valueSize":1},{"declaration":30680,"isOffset":false,"isSlot":false,"src":"60805:4:94","valueSize":1}],"flags":["memory-safe"],"id":30694,"nodeType":"InlineAssembly","src":"60732:107:94"}]},"id":30696,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_10","nameLocation":"60589:13:94","nodeType":"FunctionDefinition","parameters":{"id":30683,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30680,"mutability":"mutable","name":"self","nameLocation":"60611:4:94","nodeType":"VariableDeclaration","scope":30696,"src":"60603:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30679,"name":"bytes32","nodeType":"ElementaryTypeName","src":"60603:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30682,"mutability":"mutable","name":"offset","nameLocation":"60623:6:94","nodeType":"VariableDeclaration","scope":30696,"src":"60617:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30681,"name":"uint8","nodeType":"ElementaryTypeName","src":"60617:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"60602:28:94"},"returnParameters":{"id":30686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30685,"mutability":"mutable","name":"result","nameLocation":"60662:6:94","nodeType":"VariableDeclaration","scope":30696,"src":"60654:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":30684,"name":"bytes10","nodeType":"ElementaryTypeName","src":"60654:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"src":"60653:16:94"},"scope":30945,"src":"60580:265:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30715,"nodeType":"Block","src":"60956:233:94","statements":[{"assignments":[30708],"declarations":[{"constant":false,"id":30708,"mutability":"mutable","name":"oldValue","nameLocation":"60974:8:94","nodeType":"VariableDeclaration","scope":30715,"src":"60966:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":30707,"name":"bytes10","nodeType":"ElementaryTypeName","src":"60966:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"}],"id":30713,"initialValue":{"arguments":[{"id":30710,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30698,"src":"60999:4:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":30711,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30702,"src":"61005:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30709,"name":"extract_32_10","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30696,"src":"60985:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes10_$","typeString":"function (bytes32,uint8) pure returns (bytes10)"}},"id":30712,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"60985:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"nodeType":"VariableDeclarationStatement","src":"60966:46:94"},{"AST":{"nativeSrc":"61047:136:94","nodeType":"YulBlock","src":"61047:136:94","statements":[{"nativeSrc":"61061:37:94","nodeType":"YulAssignment","src":"61061:37:94","value":{"arguments":[{"name":"value","nativeSrc":"61074:5:94","nodeType":"YulIdentifier","src":"61074:5:94"},{"arguments":[{"kind":"number","nativeSrc":"61085:3:94","nodeType":"YulLiteral","src":"61085:3:94","type":"","value":"176"},{"arguments":[{"kind":"number","nativeSrc":"61094:1:94","nodeType":"YulLiteral","src":"61094:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"61090:3:94","nodeType":"YulIdentifier","src":"61090:3:94"},"nativeSrc":"61090:6:94","nodeType":"YulFunctionCall","src":"61090:6:94"}],"functionName":{"name":"shl","nativeSrc":"61081:3:94","nodeType":"YulIdentifier","src":"61081:3:94"},"nativeSrc":"61081:16:94","nodeType":"YulFunctionCall","src":"61081:16:94"}],"functionName":{"name":"and","nativeSrc":"61070:3:94","nodeType":"YulIdentifier","src":"61070:3:94"},"nativeSrc":"61070:28:94","nodeType":"YulFunctionCall","src":"61070:28:94"},"variableNames":[{"name":"value","nativeSrc":"61061:5:94","nodeType":"YulIdentifier","src":"61061:5:94"}]},{"nativeSrc":"61111:62:94","nodeType":"YulAssignment","src":"61111:62:94","value":{"arguments":[{"name":"self","nativeSrc":"61125:4:94","nodeType":"YulIdentifier","src":"61125:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"61139:1:94","nodeType":"YulLiteral","src":"61139:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"61142:6:94","nodeType":"YulIdentifier","src":"61142:6:94"}],"functionName":{"name":"mul","nativeSrc":"61135:3:94","nodeType":"YulIdentifier","src":"61135:3:94"},"nativeSrc":"61135:14:94","nodeType":"YulFunctionCall","src":"61135:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"61155:8:94","nodeType":"YulIdentifier","src":"61155:8:94"},{"name":"value","nativeSrc":"61165:5:94","nodeType":"YulIdentifier","src":"61165:5:94"}],"functionName":{"name":"xor","nativeSrc":"61151:3:94","nodeType":"YulIdentifier","src":"61151:3:94"},"nativeSrc":"61151:20:94","nodeType":"YulFunctionCall","src":"61151:20:94"}],"functionName":{"name":"shr","nativeSrc":"61131:3:94","nodeType":"YulIdentifier","src":"61131:3:94"},"nativeSrc":"61131:41:94","nodeType":"YulFunctionCall","src":"61131:41:94"}],"functionName":{"name":"xor","nativeSrc":"61121:3:94","nodeType":"YulIdentifier","src":"61121:3:94"},"nativeSrc":"61121:52:94","nodeType":"YulFunctionCall","src":"61121:52:94"},"variableNames":[{"name":"result","nativeSrc":"61111:6:94","nodeType":"YulIdentifier","src":"61111:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30702,"isOffset":false,"isSlot":false,"src":"61142:6:94","valueSize":1},{"declaration":30708,"isOffset":false,"isSlot":false,"src":"61155:8:94","valueSize":1},{"declaration":30705,"isOffset":false,"isSlot":false,"src":"61111:6:94","valueSize":1},{"declaration":30698,"isOffset":false,"isSlot":false,"src":"61125:4:94","valueSize":1},{"declaration":30700,"isOffset":false,"isSlot":false,"src":"61061:5:94","valueSize":1},{"declaration":30700,"isOffset":false,"isSlot":false,"src":"61074:5:94","valueSize":1},{"declaration":30700,"isOffset":false,"isSlot":false,"src":"61165:5:94","valueSize":1}],"flags":["memory-safe"],"id":30714,"nodeType":"InlineAssembly","src":"61022:161:94"}]},"id":30716,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_10","nameLocation":"60860:13:94","nodeType":"FunctionDefinition","parameters":{"id":30703,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30698,"mutability":"mutable","name":"self","nameLocation":"60882:4:94","nodeType":"VariableDeclaration","scope":30716,"src":"60874:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30697,"name":"bytes32","nodeType":"ElementaryTypeName","src":"60874:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30700,"mutability":"mutable","name":"value","nameLocation":"60896:5:94","nodeType":"VariableDeclaration","scope":30716,"src":"60888:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"},"typeName":{"id":30699,"name":"bytes10","nodeType":"ElementaryTypeName","src":"60888:7:94","typeDescriptions":{"typeIdentifier":"t_bytes10","typeString":"bytes10"}},"visibility":"internal"},{"constant":false,"id":30702,"mutability":"mutable","name":"offset","nameLocation":"60909:6:94","nodeType":"VariableDeclaration","scope":30716,"src":"60903:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30701,"name":"uint8","nodeType":"ElementaryTypeName","src":"60903:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"60873:43:94"},"returnParameters":{"id":30706,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30705,"mutability":"mutable","name":"result","nameLocation":"60948:6:94","nodeType":"VariableDeclaration","scope":30716,"src":"60940:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30704,"name":"bytes32","nodeType":"ElementaryTypeName","src":"60940:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"60939:16:94"},"scope":30945,"src":"60851:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30733,"nodeType":"Block","src":"61285:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30725,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30720,"src":"61299:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3230","id":30726,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"61308:2:94","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"src":"61299:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30731,"nodeType":"IfStatement","src":"61295:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30728,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"61319:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30729,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"61319:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30730,"nodeType":"RevertStatement","src":"61312:25:94"}},{"AST":{"nativeSrc":"61372:82:94","nodeType":"YulBlock","src":"61372:82:94","statements":[{"nativeSrc":"61386:58:94","nodeType":"YulAssignment","src":"61386:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"61408:1:94","nodeType":"YulLiteral","src":"61408:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"61411:6:94","nodeType":"YulIdentifier","src":"61411:6:94"}],"functionName":{"name":"mul","nativeSrc":"61404:3:94","nodeType":"YulIdentifier","src":"61404:3:94"},"nativeSrc":"61404:14:94","nodeType":"YulFunctionCall","src":"61404:14:94"},{"name":"self","nativeSrc":"61420:4:94","nodeType":"YulIdentifier","src":"61420:4:94"}],"functionName":{"name":"shl","nativeSrc":"61400:3:94","nodeType":"YulIdentifier","src":"61400:3:94"},"nativeSrc":"61400:25:94","nodeType":"YulFunctionCall","src":"61400:25:94"},{"arguments":[{"kind":"number","nativeSrc":"61431:3:94","nodeType":"YulLiteral","src":"61431:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"61440:1:94","nodeType":"YulLiteral","src":"61440:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"61436:3:94","nodeType":"YulIdentifier","src":"61436:3:94"},"nativeSrc":"61436:6:94","nodeType":"YulFunctionCall","src":"61436:6:94"}],"functionName":{"name":"shl","nativeSrc":"61427:3:94","nodeType":"YulIdentifier","src":"61427:3:94"},"nativeSrc":"61427:16:94","nodeType":"YulFunctionCall","src":"61427:16:94"}],"functionName":{"name":"and","nativeSrc":"61396:3:94","nodeType":"YulIdentifier","src":"61396:3:94"},"nativeSrc":"61396:48:94","nodeType":"YulFunctionCall","src":"61396:48:94"},"variableNames":[{"name":"result","nativeSrc":"61386:6:94","nodeType":"YulIdentifier","src":"61386:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30720,"isOffset":false,"isSlot":false,"src":"61411:6:94","valueSize":1},{"declaration":30723,"isOffset":false,"isSlot":false,"src":"61386:6:94","valueSize":1},{"declaration":30718,"isOffset":false,"isSlot":false,"src":"61420:4:94","valueSize":1}],"flags":["memory-safe"],"id":30732,"nodeType":"InlineAssembly","src":"61347:107:94"}]},"id":30734,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_12","nameLocation":"61204:13:94","nodeType":"FunctionDefinition","parameters":{"id":30721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30718,"mutability":"mutable","name":"self","nameLocation":"61226:4:94","nodeType":"VariableDeclaration","scope":30734,"src":"61218:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30717,"name":"bytes32","nodeType":"ElementaryTypeName","src":"61218:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30720,"mutability":"mutable","name":"offset","nameLocation":"61238:6:94","nodeType":"VariableDeclaration","scope":30734,"src":"61232:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30719,"name":"uint8","nodeType":"ElementaryTypeName","src":"61232:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"61217:28:94"},"returnParameters":{"id":30724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30723,"mutability":"mutable","name":"result","nameLocation":"61277:6:94","nodeType":"VariableDeclaration","scope":30734,"src":"61269:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":30722,"name":"bytes12","nodeType":"ElementaryTypeName","src":"61269:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"src":"61268:16:94"},"scope":30945,"src":"61195:265:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30753,"nodeType":"Block","src":"61571:233:94","statements":[{"assignments":[30746],"declarations":[{"constant":false,"id":30746,"mutability":"mutable","name":"oldValue","nameLocation":"61589:8:94","nodeType":"VariableDeclaration","scope":30753,"src":"61581:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":30745,"name":"bytes12","nodeType":"ElementaryTypeName","src":"61581:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"}],"id":30751,"initialValue":{"arguments":[{"id":30748,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30736,"src":"61614:4:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":30749,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30740,"src":"61620:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30747,"name":"extract_32_12","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30734,"src":"61600:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes12_$","typeString":"function (bytes32,uint8) pure returns (bytes12)"}},"id":30750,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"61600:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"nodeType":"VariableDeclarationStatement","src":"61581:46:94"},{"AST":{"nativeSrc":"61662:136:94","nodeType":"YulBlock","src":"61662:136:94","statements":[{"nativeSrc":"61676:37:94","nodeType":"YulAssignment","src":"61676:37:94","value":{"arguments":[{"name":"value","nativeSrc":"61689:5:94","nodeType":"YulIdentifier","src":"61689:5:94"},{"arguments":[{"kind":"number","nativeSrc":"61700:3:94","nodeType":"YulLiteral","src":"61700:3:94","type":"","value":"160"},{"arguments":[{"kind":"number","nativeSrc":"61709:1:94","nodeType":"YulLiteral","src":"61709:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"61705:3:94","nodeType":"YulIdentifier","src":"61705:3:94"},"nativeSrc":"61705:6:94","nodeType":"YulFunctionCall","src":"61705:6:94"}],"functionName":{"name":"shl","nativeSrc":"61696:3:94","nodeType":"YulIdentifier","src":"61696:3:94"},"nativeSrc":"61696:16:94","nodeType":"YulFunctionCall","src":"61696:16:94"}],"functionName":{"name":"and","nativeSrc":"61685:3:94","nodeType":"YulIdentifier","src":"61685:3:94"},"nativeSrc":"61685:28:94","nodeType":"YulFunctionCall","src":"61685:28:94"},"variableNames":[{"name":"value","nativeSrc":"61676:5:94","nodeType":"YulIdentifier","src":"61676:5:94"}]},{"nativeSrc":"61726:62:94","nodeType":"YulAssignment","src":"61726:62:94","value":{"arguments":[{"name":"self","nativeSrc":"61740:4:94","nodeType":"YulIdentifier","src":"61740:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"61754:1:94","nodeType":"YulLiteral","src":"61754:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"61757:6:94","nodeType":"YulIdentifier","src":"61757:6:94"}],"functionName":{"name":"mul","nativeSrc":"61750:3:94","nodeType":"YulIdentifier","src":"61750:3:94"},"nativeSrc":"61750:14:94","nodeType":"YulFunctionCall","src":"61750:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"61770:8:94","nodeType":"YulIdentifier","src":"61770:8:94"},{"name":"value","nativeSrc":"61780:5:94","nodeType":"YulIdentifier","src":"61780:5:94"}],"functionName":{"name":"xor","nativeSrc":"61766:3:94","nodeType":"YulIdentifier","src":"61766:3:94"},"nativeSrc":"61766:20:94","nodeType":"YulFunctionCall","src":"61766:20:94"}],"functionName":{"name":"shr","nativeSrc":"61746:3:94","nodeType":"YulIdentifier","src":"61746:3:94"},"nativeSrc":"61746:41:94","nodeType":"YulFunctionCall","src":"61746:41:94"}],"functionName":{"name":"xor","nativeSrc":"61736:3:94","nodeType":"YulIdentifier","src":"61736:3:94"},"nativeSrc":"61736:52:94","nodeType":"YulFunctionCall","src":"61736:52:94"},"variableNames":[{"name":"result","nativeSrc":"61726:6:94","nodeType":"YulIdentifier","src":"61726:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30740,"isOffset":false,"isSlot":false,"src":"61757:6:94","valueSize":1},{"declaration":30746,"isOffset":false,"isSlot":false,"src":"61770:8:94","valueSize":1},{"declaration":30743,"isOffset":false,"isSlot":false,"src":"61726:6:94","valueSize":1},{"declaration":30736,"isOffset":false,"isSlot":false,"src":"61740:4:94","valueSize":1},{"declaration":30738,"isOffset":false,"isSlot":false,"src":"61676:5:94","valueSize":1},{"declaration":30738,"isOffset":false,"isSlot":false,"src":"61689:5:94","valueSize":1},{"declaration":30738,"isOffset":false,"isSlot":false,"src":"61780:5:94","valueSize":1}],"flags":["memory-safe"],"id":30752,"nodeType":"InlineAssembly","src":"61637:161:94"}]},"id":30754,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_12","nameLocation":"61475:13:94","nodeType":"FunctionDefinition","parameters":{"id":30741,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30736,"mutability":"mutable","name":"self","nameLocation":"61497:4:94","nodeType":"VariableDeclaration","scope":30754,"src":"61489:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30735,"name":"bytes32","nodeType":"ElementaryTypeName","src":"61489:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30738,"mutability":"mutable","name":"value","nameLocation":"61511:5:94","nodeType":"VariableDeclaration","scope":30754,"src":"61503:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"},"typeName":{"id":30737,"name":"bytes12","nodeType":"ElementaryTypeName","src":"61503:7:94","typeDescriptions":{"typeIdentifier":"t_bytes12","typeString":"bytes12"}},"visibility":"internal"},{"constant":false,"id":30740,"mutability":"mutable","name":"offset","nameLocation":"61524:6:94","nodeType":"VariableDeclaration","scope":30754,"src":"61518:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30739,"name":"uint8","nodeType":"ElementaryTypeName","src":"61518:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"61488:43:94"},"returnParameters":{"id":30744,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30743,"mutability":"mutable","name":"result","nameLocation":"61563:6:94","nodeType":"VariableDeclaration","scope":30754,"src":"61555:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30742,"name":"bytes32","nodeType":"ElementaryTypeName","src":"61555:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"61554:16:94"},"scope":30945,"src":"61466:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30771,"nodeType":"Block","src":"61900:175:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30765,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30763,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30758,"src":"61914:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3136","id":30764,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"61923:2:94","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"61914:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30769,"nodeType":"IfStatement","src":"61910:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30766,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"61934:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30767,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"61934:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30768,"nodeType":"RevertStatement","src":"61927:25:94"}},{"AST":{"nativeSrc":"61987:82:94","nodeType":"YulBlock","src":"61987:82:94","statements":[{"nativeSrc":"62001:58:94","nodeType":"YulAssignment","src":"62001:58:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"62023:1:94","nodeType":"YulLiteral","src":"62023:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"62026:6:94","nodeType":"YulIdentifier","src":"62026:6:94"}],"functionName":{"name":"mul","nativeSrc":"62019:3:94","nodeType":"YulIdentifier","src":"62019:3:94"},"nativeSrc":"62019:14:94","nodeType":"YulFunctionCall","src":"62019:14:94"},{"name":"self","nativeSrc":"62035:4:94","nodeType":"YulIdentifier","src":"62035:4:94"}],"functionName":{"name":"shl","nativeSrc":"62015:3:94","nodeType":"YulIdentifier","src":"62015:3:94"},"nativeSrc":"62015:25:94","nodeType":"YulFunctionCall","src":"62015:25:94"},{"arguments":[{"kind":"number","nativeSrc":"62046:3:94","nodeType":"YulLiteral","src":"62046:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"62055:1:94","nodeType":"YulLiteral","src":"62055:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"62051:3:94","nodeType":"YulIdentifier","src":"62051:3:94"},"nativeSrc":"62051:6:94","nodeType":"YulFunctionCall","src":"62051:6:94"}],"functionName":{"name":"shl","nativeSrc":"62042:3:94","nodeType":"YulIdentifier","src":"62042:3:94"},"nativeSrc":"62042:16:94","nodeType":"YulFunctionCall","src":"62042:16:94"}],"functionName":{"name":"and","nativeSrc":"62011:3:94","nodeType":"YulIdentifier","src":"62011:3:94"},"nativeSrc":"62011:48:94","nodeType":"YulFunctionCall","src":"62011:48:94"},"variableNames":[{"name":"result","nativeSrc":"62001:6:94","nodeType":"YulIdentifier","src":"62001:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30758,"isOffset":false,"isSlot":false,"src":"62026:6:94","valueSize":1},{"declaration":30761,"isOffset":false,"isSlot":false,"src":"62001:6:94","valueSize":1},{"declaration":30756,"isOffset":false,"isSlot":false,"src":"62035:4:94","valueSize":1}],"flags":["memory-safe"],"id":30770,"nodeType":"InlineAssembly","src":"61962:107:94"}]},"id":30772,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_16","nameLocation":"61819:13:94","nodeType":"FunctionDefinition","parameters":{"id":30759,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30756,"mutability":"mutable","name":"self","nameLocation":"61841:4:94","nodeType":"VariableDeclaration","scope":30772,"src":"61833:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30755,"name":"bytes32","nodeType":"ElementaryTypeName","src":"61833:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30758,"mutability":"mutable","name":"offset","nameLocation":"61853:6:94","nodeType":"VariableDeclaration","scope":30772,"src":"61847:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30757,"name":"uint8","nodeType":"ElementaryTypeName","src":"61847:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"61832:28:94"},"returnParameters":{"id":30762,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30761,"mutability":"mutable","name":"result","nameLocation":"61892:6:94","nodeType":"VariableDeclaration","scope":30772,"src":"61884:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":30760,"name":"bytes16","nodeType":"ElementaryTypeName","src":"61884:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"src":"61883:16:94"},"scope":30945,"src":"61810:265:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30791,"nodeType":"Block","src":"62186:233:94","statements":[{"assignments":[30784],"declarations":[{"constant":false,"id":30784,"mutability":"mutable","name":"oldValue","nameLocation":"62204:8:94","nodeType":"VariableDeclaration","scope":30791,"src":"62196:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":30783,"name":"bytes16","nodeType":"ElementaryTypeName","src":"62196:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"}],"id":30789,"initialValue":{"arguments":[{"id":30786,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30774,"src":"62229:4:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":30787,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30778,"src":"62235:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30785,"name":"extract_32_16","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30772,"src":"62215:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes16_$","typeString":"function (bytes32,uint8) pure returns (bytes16)"}},"id":30788,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"62215:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"nodeType":"VariableDeclarationStatement","src":"62196:46:94"},{"AST":{"nativeSrc":"62277:136:94","nodeType":"YulBlock","src":"62277:136:94","statements":[{"nativeSrc":"62291:37:94","nodeType":"YulAssignment","src":"62291:37:94","value":{"arguments":[{"name":"value","nativeSrc":"62304:5:94","nodeType":"YulIdentifier","src":"62304:5:94"},{"arguments":[{"kind":"number","nativeSrc":"62315:3:94","nodeType":"YulLiteral","src":"62315:3:94","type":"","value":"128"},{"arguments":[{"kind":"number","nativeSrc":"62324:1:94","nodeType":"YulLiteral","src":"62324:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"62320:3:94","nodeType":"YulIdentifier","src":"62320:3:94"},"nativeSrc":"62320:6:94","nodeType":"YulFunctionCall","src":"62320:6:94"}],"functionName":{"name":"shl","nativeSrc":"62311:3:94","nodeType":"YulIdentifier","src":"62311:3:94"},"nativeSrc":"62311:16:94","nodeType":"YulFunctionCall","src":"62311:16:94"}],"functionName":{"name":"and","nativeSrc":"62300:3:94","nodeType":"YulIdentifier","src":"62300:3:94"},"nativeSrc":"62300:28:94","nodeType":"YulFunctionCall","src":"62300:28:94"},"variableNames":[{"name":"value","nativeSrc":"62291:5:94","nodeType":"YulIdentifier","src":"62291:5:94"}]},{"nativeSrc":"62341:62:94","nodeType":"YulAssignment","src":"62341:62:94","value":{"arguments":[{"name":"self","nativeSrc":"62355:4:94","nodeType":"YulIdentifier","src":"62355:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"62369:1:94","nodeType":"YulLiteral","src":"62369:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"62372:6:94","nodeType":"YulIdentifier","src":"62372:6:94"}],"functionName":{"name":"mul","nativeSrc":"62365:3:94","nodeType":"YulIdentifier","src":"62365:3:94"},"nativeSrc":"62365:14:94","nodeType":"YulFunctionCall","src":"62365:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"62385:8:94","nodeType":"YulIdentifier","src":"62385:8:94"},{"name":"value","nativeSrc":"62395:5:94","nodeType":"YulIdentifier","src":"62395:5:94"}],"functionName":{"name":"xor","nativeSrc":"62381:3:94","nodeType":"YulIdentifier","src":"62381:3:94"},"nativeSrc":"62381:20:94","nodeType":"YulFunctionCall","src":"62381:20:94"}],"functionName":{"name":"shr","nativeSrc":"62361:3:94","nodeType":"YulIdentifier","src":"62361:3:94"},"nativeSrc":"62361:41:94","nodeType":"YulFunctionCall","src":"62361:41:94"}],"functionName":{"name":"xor","nativeSrc":"62351:3:94","nodeType":"YulIdentifier","src":"62351:3:94"},"nativeSrc":"62351:52:94","nodeType":"YulFunctionCall","src":"62351:52:94"},"variableNames":[{"name":"result","nativeSrc":"62341:6:94","nodeType":"YulIdentifier","src":"62341:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30778,"isOffset":false,"isSlot":false,"src":"62372:6:94","valueSize":1},{"declaration":30784,"isOffset":false,"isSlot":false,"src":"62385:8:94","valueSize":1},{"declaration":30781,"isOffset":false,"isSlot":false,"src":"62341:6:94","valueSize":1},{"declaration":30774,"isOffset":false,"isSlot":false,"src":"62355:4:94","valueSize":1},{"declaration":30776,"isOffset":false,"isSlot":false,"src":"62291:5:94","valueSize":1},{"declaration":30776,"isOffset":false,"isSlot":false,"src":"62304:5:94","valueSize":1},{"declaration":30776,"isOffset":false,"isSlot":false,"src":"62395:5:94","valueSize":1}],"flags":["memory-safe"],"id":30790,"nodeType":"InlineAssembly","src":"62252:161:94"}]},"id":30792,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_16","nameLocation":"62090:13:94","nodeType":"FunctionDefinition","parameters":{"id":30779,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30774,"mutability":"mutable","name":"self","nameLocation":"62112:4:94","nodeType":"VariableDeclaration","scope":30792,"src":"62104:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30773,"name":"bytes32","nodeType":"ElementaryTypeName","src":"62104:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30776,"mutability":"mutable","name":"value","nameLocation":"62126:5:94","nodeType":"VariableDeclaration","scope":30792,"src":"62118:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":30775,"name":"bytes16","nodeType":"ElementaryTypeName","src":"62118:7:94","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":30778,"mutability":"mutable","name":"offset","nameLocation":"62139:6:94","nodeType":"VariableDeclaration","scope":30792,"src":"62133:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30777,"name":"uint8","nodeType":"ElementaryTypeName","src":"62133:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"62103:43:94"},"returnParameters":{"id":30782,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30781,"mutability":"mutable","name":"result","nameLocation":"62178:6:94","nodeType":"VariableDeclaration","scope":30792,"src":"62170:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30780,"name":"bytes32","nodeType":"ElementaryTypeName","src":"62170:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"62169:16:94"},"scope":30945,"src":"62081:338:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30809,"nodeType":"Block","src":"62515:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30801,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30796,"src":"62529:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3132","id":30802,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"62538:2:94","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"src":"62529:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30807,"nodeType":"IfStatement","src":"62525:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30804,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"62549:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30805,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"62549:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30806,"nodeType":"RevertStatement","src":"62542:25:94"}},{"AST":{"nativeSrc":"62602:81:94","nodeType":"YulBlock","src":"62602:81:94","statements":[{"nativeSrc":"62616:57:94","nodeType":"YulAssignment","src":"62616:57:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"62638:1:94","nodeType":"YulLiteral","src":"62638:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"62641:6:94","nodeType":"YulIdentifier","src":"62641:6:94"}],"functionName":{"name":"mul","nativeSrc":"62634:3:94","nodeType":"YulIdentifier","src":"62634:3:94"},"nativeSrc":"62634:14:94","nodeType":"YulFunctionCall","src":"62634:14:94"},{"name":"self","nativeSrc":"62650:4:94","nodeType":"YulIdentifier","src":"62650:4:94"}],"functionName":{"name":"shl","nativeSrc":"62630:3:94","nodeType":"YulIdentifier","src":"62630:3:94"},"nativeSrc":"62630:25:94","nodeType":"YulFunctionCall","src":"62630:25:94"},{"arguments":[{"kind":"number","nativeSrc":"62661:2:94","nodeType":"YulLiteral","src":"62661:2:94","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"62669:1:94","nodeType":"YulLiteral","src":"62669:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"62665:3:94","nodeType":"YulIdentifier","src":"62665:3:94"},"nativeSrc":"62665:6:94","nodeType":"YulFunctionCall","src":"62665:6:94"}],"functionName":{"name":"shl","nativeSrc":"62657:3:94","nodeType":"YulIdentifier","src":"62657:3:94"},"nativeSrc":"62657:15:94","nodeType":"YulFunctionCall","src":"62657:15:94"}],"functionName":{"name":"and","nativeSrc":"62626:3:94","nodeType":"YulIdentifier","src":"62626:3:94"},"nativeSrc":"62626:47:94","nodeType":"YulFunctionCall","src":"62626:47:94"},"variableNames":[{"name":"result","nativeSrc":"62616:6:94","nodeType":"YulIdentifier","src":"62616:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30796,"isOffset":false,"isSlot":false,"src":"62641:6:94","valueSize":1},{"declaration":30799,"isOffset":false,"isSlot":false,"src":"62616:6:94","valueSize":1},{"declaration":30794,"isOffset":false,"isSlot":false,"src":"62650:4:94","valueSize":1}],"flags":["memory-safe"],"id":30808,"nodeType":"InlineAssembly","src":"62577:106:94"}]},"id":30810,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_20","nameLocation":"62434:13:94","nodeType":"FunctionDefinition","parameters":{"id":30797,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30794,"mutability":"mutable","name":"self","nameLocation":"62456:4:94","nodeType":"VariableDeclaration","scope":30810,"src":"62448:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30793,"name":"bytes32","nodeType":"ElementaryTypeName","src":"62448:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30796,"mutability":"mutable","name":"offset","nameLocation":"62468:6:94","nodeType":"VariableDeclaration","scope":30810,"src":"62462:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30795,"name":"uint8","nodeType":"ElementaryTypeName","src":"62462:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"62447:28:94"},"returnParameters":{"id":30800,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30799,"mutability":"mutable","name":"result","nameLocation":"62507:6:94","nodeType":"VariableDeclaration","scope":30810,"src":"62499:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":30798,"name":"bytes20","nodeType":"ElementaryTypeName","src":"62499:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"62498:16:94"},"scope":30945,"src":"62425:264:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30829,"nodeType":"Block","src":"62800:232:94","statements":[{"assignments":[30822],"declarations":[{"constant":false,"id":30822,"mutability":"mutable","name":"oldValue","nameLocation":"62818:8:94","nodeType":"VariableDeclaration","scope":30829,"src":"62810:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":30821,"name":"bytes20","nodeType":"ElementaryTypeName","src":"62810:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"id":30827,"initialValue":{"arguments":[{"id":30824,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30812,"src":"62843:4:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":30825,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30816,"src":"62849:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30823,"name":"extract_32_20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30810,"src":"62829:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes20_$","typeString":"function (bytes32,uint8) pure returns (bytes20)"}},"id":30826,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"62829:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"VariableDeclarationStatement","src":"62810:46:94"},{"AST":{"nativeSrc":"62891:135:94","nodeType":"YulBlock","src":"62891:135:94","statements":[{"nativeSrc":"62905:36:94","nodeType":"YulAssignment","src":"62905:36:94","value":{"arguments":[{"name":"value","nativeSrc":"62918:5:94","nodeType":"YulIdentifier","src":"62918:5:94"},{"arguments":[{"kind":"number","nativeSrc":"62929:2:94","nodeType":"YulLiteral","src":"62929:2:94","type":"","value":"96"},{"arguments":[{"kind":"number","nativeSrc":"62937:1:94","nodeType":"YulLiteral","src":"62937:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"62933:3:94","nodeType":"YulIdentifier","src":"62933:3:94"},"nativeSrc":"62933:6:94","nodeType":"YulFunctionCall","src":"62933:6:94"}],"functionName":{"name":"shl","nativeSrc":"62925:3:94","nodeType":"YulIdentifier","src":"62925:3:94"},"nativeSrc":"62925:15:94","nodeType":"YulFunctionCall","src":"62925:15:94"}],"functionName":{"name":"and","nativeSrc":"62914:3:94","nodeType":"YulIdentifier","src":"62914:3:94"},"nativeSrc":"62914:27:94","nodeType":"YulFunctionCall","src":"62914:27:94"},"variableNames":[{"name":"value","nativeSrc":"62905:5:94","nodeType":"YulIdentifier","src":"62905:5:94"}]},{"nativeSrc":"62954:62:94","nodeType":"YulAssignment","src":"62954:62:94","value":{"arguments":[{"name":"self","nativeSrc":"62968:4:94","nodeType":"YulIdentifier","src":"62968:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"62982:1:94","nodeType":"YulLiteral","src":"62982:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"62985:6:94","nodeType":"YulIdentifier","src":"62985:6:94"}],"functionName":{"name":"mul","nativeSrc":"62978:3:94","nodeType":"YulIdentifier","src":"62978:3:94"},"nativeSrc":"62978:14:94","nodeType":"YulFunctionCall","src":"62978:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"62998:8:94","nodeType":"YulIdentifier","src":"62998:8:94"},{"name":"value","nativeSrc":"63008:5:94","nodeType":"YulIdentifier","src":"63008:5:94"}],"functionName":{"name":"xor","nativeSrc":"62994:3:94","nodeType":"YulIdentifier","src":"62994:3:94"},"nativeSrc":"62994:20:94","nodeType":"YulFunctionCall","src":"62994:20:94"}],"functionName":{"name":"shr","nativeSrc":"62974:3:94","nodeType":"YulIdentifier","src":"62974:3:94"},"nativeSrc":"62974:41:94","nodeType":"YulFunctionCall","src":"62974:41:94"}],"functionName":{"name":"xor","nativeSrc":"62964:3:94","nodeType":"YulIdentifier","src":"62964:3:94"},"nativeSrc":"62964:52:94","nodeType":"YulFunctionCall","src":"62964:52:94"},"variableNames":[{"name":"result","nativeSrc":"62954:6:94","nodeType":"YulIdentifier","src":"62954:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30816,"isOffset":false,"isSlot":false,"src":"62985:6:94","valueSize":1},{"declaration":30822,"isOffset":false,"isSlot":false,"src":"62998:8:94","valueSize":1},{"declaration":30819,"isOffset":false,"isSlot":false,"src":"62954:6:94","valueSize":1},{"declaration":30812,"isOffset":false,"isSlot":false,"src":"62968:4:94","valueSize":1},{"declaration":30814,"isOffset":false,"isSlot":false,"src":"62905:5:94","valueSize":1},{"declaration":30814,"isOffset":false,"isSlot":false,"src":"62918:5:94","valueSize":1},{"declaration":30814,"isOffset":false,"isSlot":false,"src":"63008:5:94","valueSize":1}],"flags":["memory-safe"],"id":30828,"nodeType":"InlineAssembly","src":"62866:160:94"}]},"id":30830,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_20","nameLocation":"62704:13:94","nodeType":"FunctionDefinition","parameters":{"id":30817,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30812,"mutability":"mutable","name":"self","nameLocation":"62726:4:94","nodeType":"VariableDeclaration","scope":30830,"src":"62718:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30811,"name":"bytes32","nodeType":"ElementaryTypeName","src":"62718:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30814,"mutability":"mutable","name":"value","nameLocation":"62740:5:94","nodeType":"VariableDeclaration","scope":30830,"src":"62732:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":30813,"name":"bytes20","nodeType":"ElementaryTypeName","src":"62732:7:94","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"},{"constant":false,"id":30816,"mutability":"mutable","name":"offset","nameLocation":"62753:6:94","nodeType":"VariableDeclaration","scope":30830,"src":"62747:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30815,"name":"uint8","nodeType":"ElementaryTypeName","src":"62747:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"62717:43:94"},"returnParameters":{"id":30820,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30819,"mutability":"mutable","name":"result","nameLocation":"62792:6:94","nodeType":"VariableDeclaration","scope":30830,"src":"62784:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30818,"name":"bytes32","nodeType":"ElementaryTypeName","src":"62784:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"62783:16:94"},"scope":30945,"src":"62695:337:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30847,"nodeType":"Block","src":"63128:174:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30841,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30839,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30834,"src":"63142:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3130","id":30840,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"63151:2:94","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"63142:11:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30845,"nodeType":"IfStatement","src":"63138:42:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30842,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"63162:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30843,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"63162:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30844,"nodeType":"RevertStatement","src":"63155:25:94"}},{"AST":{"nativeSrc":"63215:81:94","nodeType":"YulBlock","src":"63215:81:94","statements":[{"nativeSrc":"63229:57:94","nodeType":"YulAssignment","src":"63229:57:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"63251:1:94","nodeType":"YulLiteral","src":"63251:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"63254:6:94","nodeType":"YulIdentifier","src":"63254:6:94"}],"functionName":{"name":"mul","nativeSrc":"63247:3:94","nodeType":"YulIdentifier","src":"63247:3:94"},"nativeSrc":"63247:14:94","nodeType":"YulFunctionCall","src":"63247:14:94"},{"name":"self","nativeSrc":"63263:4:94","nodeType":"YulIdentifier","src":"63263:4:94"}],"functionName":{"name":"shl","nativeSrc":"63243:3:94","nodeType":"YulIdentifier","src":"63243:3:94"},"nativeSrc":"63243:25:94","nodeType":"YulFunctionCall","src":"63243:25:94"},{"arguments":[{"kind":"number","nativeSrc":"63274:2:94","nodeType":"YulLiteral","src":"63274:2:94","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"63282:1:94","nodeType":"YulLiteral","src":"63282:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"63278:3:94","nodeType":"YulIdentifier","src":"63278:3:94"},"nativeSrc":"63278:6:94","nodeType":"YulFunctionCall","src":"63278:6:94"}],"functionName":{"name":"shl","nativeSrc":"63270:3:94","nodeType":"YulIdentifier","src":"63270:3:94"},"nativeSrc":"63270:15:94","nodeType":"YulFunctionCall","src":"63270:15:94"}],"functionName":{"name":"and","nativeSrc":"63239:3:94","nodeType":"YulIdentifier","src":"63239:3:94"},"nativeSrc":"63239:47:94","nodeType":"YulFunctionCall","src":"63239:47:94"},"variableNames":[{"name":"result","nativeSrc":"63229:6:94","nodeType":"YulIdentifier","src":"63229:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30834,"isOffset":false,"isSlot":false,"src":"63254:6:94","valueSize":1},{"declaration":30837,"isOffset":false,"isSlot":false,"src":"63229:6:94","valueSize":1},{"declaration":30832,"isOffset":false,"isSlot":false,"src":"63263:4:94","valueSize":1}],"flags":["memory-safe"],"id":30846,"nodeType":"InlineAssembly","src":"63190:106:94"}]},"id":30848,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_22","nameLocation":"63047:13:94","nodeType":"FunctionDefinition","parameters":{"id":30835,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30832,"mutability":"mutable","name":"self","nameLocation":"63069:4:94","nodeType":"VariableDeclaration","scope":30848,"src":"63061:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30831,"name":"bytes32","nodeType":"ElementaryTypeName","src":"63061:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30834,"mutability":"mutable","name":"offset","nameLocation":"63081:6:94","nodeType":"VariableDeclaration","scope":30848,"src":"63075:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30833,"name":"uint8","nodeType":"ElementaryTypeName","src":"63075:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"63060:28:94"},"returnParameters":{"id":30838,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30837,"mutability":"mutable","name":"result","nameLocation":"63120:6:94","nodeType":"VariableDeclaration","scope":30848,"src":"63112:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":30836,"name":"bytes22","nodeType":"ElementaryTypeName","src":"63112:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"src":"63111:16:94"},"scope":30945,"src":"63038:264:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30867,"nodeType":"Block","src":"63413:232:94","statements":[{"assignments":[30860],"declarations":[{"constant":false,"id":30860,"mutability":"mutable","name":"oldValue","nameLocation":"63431:8:94","nodeType":"VariableDeclaration","scope":30867,"src":"63423:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":30859,"name":"bytes22","nodeType":"ElementaryTypeName","src":"63423:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"}],"id":30865,"initialValue":{"arguments":[{"id":30862,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30850,"src":"63456:4:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":30863,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30854,"src":"63462:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30861,"name":"extract_32_22","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30848,"src":"63442:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes22_$","typeString":"function (bytes32,uint8) pure returns (bytes22)"}},"id":30864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"63442:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"nodeType":"VariableDeclarationStatement","src":"63423:46:94"},{"AST":{"nativeSrc":"63504:135:94","nodeType":"YulBlock","src":"63504:135:94","statements":[{"nativeSrc":"63518:36:94","nodeType":"YulAssignment","src":"63518:36:94","value":{"arguments":[{"name":"value","nativeSrc":"63531:5:94","nodeType":"YulIdentifier","src":"63531:5:94"},{"arguments":[{"kind":"number","nativeSrc":"63542:2:94","nodeType":"YulLiteral","src":"63542:2:94","type":"","value":"80"},{"arguments":[{"kind":"number","nativeSrc":"63550:1:94","nodeType":"YulLiteral","src":"63550:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"63546:3:94","nodeType":"YulIdentifier","src":"63546:3:94"},"nativeSrc":"63546:6:94","nodeType":"YulFunctionCall","src":"63546:6:94"}],"functionName":{"name":"shl","nativeSrc":"63538:3:94","nodeType":"YulIdentifier","src":"63538:3:94"},"nativeSrc":"63538:15:94","nodeType":"YulFunctionCall","src":"63538:15:94"}],"functionName":{"name":"and","nativeSrc":"63527:3:94","nodeType":"YulIdentifier","src":"63527:3:94"},"nativeSrc":"63527:27:94","nodeType":"YulFunctionCall","src":"63527:27:94"},"variableNames":[{"name":"value","nativeSrc":"63518:5:94","nodeType":"YulIdentifier","src":"63518:5:94"}]},{"nativeSrc":"63567:62:94","nodeType":"YulAssignment","src":"63567:62:94","value":{"arguments":[{"name":"self","nativeSrc":"63581:4:94","nodeType":"YulIdentifier","src":"63581:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"63595:1:94","nodeType":"YulLiteral","src":"63595:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"63598:6:94","nodeType":"YulIdentifier","src":"63598:6:94"}],"functionName":{"name":"mul","nativeSrc":"63591:3:94","nodeType":"YulIdentifier","src":"63591:3:94"},"nativeSrc":"63591:14:94","nodeType":"YulFunctionCall","src":"63591:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"63611:8:94","nodeType":"YulIdentifier","src":"63611:8:94"},{"name":"value","nativeSrc":"63621:5:94","nodeType":"YulIdentifier","src":"63621:5:94"}],"functionName":{"name":"xor","nativeSrc":"63607:3:94","nodeType":"YulIdentifier","src":"63607:3:94"},"nativeSrc":"63607:20:94","nodeType":"YulFunctionCall","src":"63607:20:94"}],"functionName":{"name":"shr","nativeSrc":"63587:3:94","nodeType":"YulIdentifier","src":"63587:3:94"},"nativeSrc":"63587:41:94","nodeType":"YulFunctionCall","src":"63587:41:94"}],"functionName":{"name":"xor","nativeSrc":"63577:3:94","nodeType":"YulIdentifier","src":"63577:3:94"},"nativeSrc":"63577:52:94","nodeType":"YulFunctionCall","src":"63577:52:94"},"variableNames":[{"name":"result","nativeSrc":"63567:6:94","nodeType":"YulIdentifier","src":"63567:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30854,"isOffset":false,"isSlot":false,"src":"63598:6:94","valueSize":1},{"declaration":30860,"isOffset":false,"isSlot":false,"src":"63611:8:94","valueSize":1},{"declaration":30857,"isOffset":false,"isSlot":false,"src":"63567:6:94","valueSize":1},{"declaration":30850,"isOffset":false,"isSlot":false,"src":"63581:4:94","valueSize":1},{"declaration":30852,"isOffset":false,"isSlot":false,"src":"63518:5:94","valueSize":1},{"declaration":30852,"isOffset":false,"isSlot":false,"src":"63531:5:94","valueSize":1},{"declaration":30852,"isOffset":false,"isSlot":false,"src":"63621:5:94","valueSize":1}],"flags":["memory-safe"],"id":30866,"nodeType":"InlineAssembly","src":"63479:160:94"}]},"id":30868,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_22","nameLocation":"63317:13:94","nodeType":"FunctionDefinition","parameters":{"id":30855,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30850,"mutability":"mutable","name":"self","nameLocation":"63339:4:94","nodeType":"VariableDeclaration","scope":30868,"src":"63331:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30849,"name":"bytes32","nodeType":"ElementaryTypeName","src":"63331:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30852,"mutability":"mutable","name":"value","nameLocation":"63353:5:94","nodeType":"VariableDeclaration","scope":30868,"src":"63345:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"},"typeName":{"id":30851,"name":"bytes22","nodeType":"ElementaryTypeName","src":"63345:7:94","typeDescriptions":{"typeIdentifier":"t_bytes22","typeString":"bytes22"}},"visibility":"internal"},{"constant":false,"id":30854,"mutability":"mutable","name":"offset","nameLocation":"63366:6:94","nodeType":"VariableDeclaration","scope":30868,"src":"63360:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30853,"name":"uint8","nodeType":"ElementaryTypeName","src":"63360:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"63330:43:94"},"returnParameters":{"id":30858,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30857,"mutability":"mutable","name":"result","nameLocation":"63405:6:94","nodeType":"VariableDeclaration","scope":30868,"src":"63397:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30856,"name":"bytes32","nodeType":"ElementaryTypeName","src":"63397:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"63396:16:94"},"scope":30945,"src":"63308:337:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30885,"nodeType":"Block","src":"63741:173:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30877,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30872,"src":"63755:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"38","id":30878,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"63764:1:94","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"63755:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30883,"nodeType":"IfStatement","src":"63751:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30880,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"63774:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30881,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"63774:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30882,"nodeType":"RevertStatement","src":"63767:25:94"}},{"AST":{"nativeSrc":"63827:81:94","nodeType":"YulBlock","src":"63827:81:94","statements":[{"nativeSrc":"63841:57:94","nodeType":"YulAssignment","src":"63841:57:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"63863:1:94","nodeType":"YulLiteral","src":"63863:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"63866:6:94","nodeType":"YulIdentifier","src":"63866:6:94"}],"functionName":{"name":"mul","nativeSrc":"63859:3:94","nodeType":"YulIdentifier","src":"63859:3:94"},"nativeSrc":"63859:14:94","nodeType":"YulFunctionCall","src":"63859:14:94"},{"name":"self","nativeSrc":"63875:4:94","nodeType":"YulIdentifier","src":"63875:4:94"}],"functionName":{"name":"shl","nativeSrc":"63855:3:94","nodeType":"YulIdentifier","src":"63855:3:94"},"nativeSrc":"63855:25:94","nodeType":"YulFunctionCall","src":"63855:25:94"},{"arguments":[{"kind":"number","nativeSrc":"63886:2:94","nodeType":"YulLiteral","src":"63886:2:94","type":"","value":"64"},{"arguments":[{"kind":"number","nativeSrc":"63894:1:94","nodeType":"YulLiteral","src":"63894:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"63890:3:94","nodeType":"YulIdentifier","src":"63890:3:94"},"nativeSrc":"63890:6:94","nodeType":"YulFunctionCall","src":"63890:6:94"}],"functionName":{"name":"shl","nativeSrc":"63882:3:94","nodeType":"YulIdentifier","src":"63882:3:94"},"nativeSrc":"63882:15:94","nodeType":"YulFunctionCall","src":"63882:15:94"}],"functionName":{"name":"and","nativeSrc":"63851:3:94","nodeType":"YulIdentifier","src":"63851:3:94"},"nativeSrc":"63851:47:94","nodeType":"YulFunctionCall","src":"63851:47:94"},"variableNames":[{"name":"result","nativeSrc":"63841:6:94","nodeType":"YulIdentifier","src":"63841:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30872,"isOffset":false,"isSlot":false,"src":"63866:6:94","valueSize":1},{"declaration":30875,"isOffset":false,"isSlot":false,"src":"63841:6:94","valueSize":1},{"declaration":30870,"isOffset":false,"isSlot":false,"src":"63875:4:94","valueSize":1}],"flags":["memory-safe"],"id":30884,"nodeType":"InlineAssembly","src":"63802:106:94"}]},"id":30886,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_24","nameLocation":"63660:13:94","nodeType":"FunctionDefinition","parameters":{"id":30873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30870,"mutability":"mutable","name":"self","nameLocation":"63682:4:94","nodeType":"VariableDeclaration","scope":30886,"src":"63674:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30869,"name":"bytes32","nodeType":"ElementaryTypeName","src":"63674:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30872,"mutability":"mutable","name":"offset","nameLocation":"63694:6:94","nodeType":"VariableDeclaration","scope":30886,"src":"63688:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30871,"name":"uint8","nodeType":"ElementaryTypeName","src":"63688:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"63673:28:94"},"returnParameters":{"id":30876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30875,"mutability":"mutable","name":"result","nameLocation":"63733:6:94","nodeType":"VariableDeclaration","scope":30886,"src":"63725:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":30874,"name":"bytes24","nodeType":"ElementaryTypeName","src":"63725:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"63724:16:94"},"scope":30945,"src":"63651:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30905,"nodeType":"Block","src":"64025:232:94","statements":[{"assignments":[30898],"declarations":[{"constant":false,"id":30898,"mutability":"mutable","name":"oldValue","nameLocation":"64043:8:94","nodeType":"VariableDeclaration","scope":30905,"src":"64035:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":30897,"name":"bytes24","nodeType":"ElementaryTypeName","src":"64035:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"id":30903,"initialValue":{"arguments":[{"id":30900,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30888,"src":"64068:4:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":30901,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30892,"src":"64074:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30899,"name":"extract_32_24","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30886,"src":"64054:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes24_$","typeString":"function (bytes32,uint8) pure returns (bytes24)"}},"id":30902,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"64054:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"nodeType":"VariableDeclarationStatement","src":"64035:46:94"},{"AST":{"nativeSrc":"64116:135:94","nodeType":"YulBlock","src":"64116:135:94","statements":[{"nativeSrc":"64130:36:94","nodeType":"YulAssignment","src":"64130:36:94","value":{"arguments":[{"name":"value","nativeSrc":"64143:5:94","nodeType":"YulIdentifier","src":"64143:5:94"},{"arguments":[{"kind":"number","nativeSrc":"64154:2:94","nodeType":"YulLiteral","src":"64154:2:94","type":"","value":"64"},{"arguments":[{"kind":"number","nativeSrc":"64162:1:94","nodeType":"YulLiteral","src":"64162:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"64158:3:94","nodeType":"YulIdentifier","src":"64158:3:94"},"nativeSrc":"64158:6:94","nodeType":"YulFunctionCall","src":"64158:6:94"}],"functionName":{"name":"shl","nativeSrc":"64150:3:94","nodeType":"YulIdentifier","src":"64150:3:94"},"nativeSrc":"64150:15:94","nodeType":"YulFunctionCall","src":"64150:15:94"}],"functionName":{"name":"and","nativeSrc":"64139:3:94","nodeType":"YulIdentifier","src":"64139:3:94"},"nativeSrc":"64139:27:94","nodeType":"YulFunctionCall","src":"64139:27:94"},"variableNames":[{"name":"value","nativeSrc":"64130:5:94","nodeType":"YulIdentifier","src":"64130:5:94"}]},{"nativeSrc":"64179:62:94","nodeType":"YulAssignment","src":"64179:62:94","value":{"arguments":[{"name":"self","nativeSrc":"64193:4:94","nodeType":"YulIdentifier","src":"64193:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"64207:1:94","nodeType":"YulLiteral","src":"64207:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"64210:6:94","nodeType":"YulIdentifier","src":"64210:6:94"}],"functionName":{"name":"mul","nativeSrc":"64203:3:94","nodeType":"YulIdentifier","src":"64203:3:94"},"nativeSrc":"64203:14:94","nodeType":"YulFunctionCall","src":"64203:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"64223:8:94","nodeType":"YulIdentifier","src":"64223:8:94"},{"name":"value","nativeSrc":"64233:5:94","nodeType":"YulIdentifier","src":"64233:5:94"}],"functionName":{"name":"xor","nativeSrc":"64219:3:94","nodeType":"YulIdentifier","src":"64219:3:94"},"nativeSrc":"64219:20:94","nodeType":"YulFunctionCall","src":"64219:20:94"}],"functionName":{"name":"shr","nativeSrc":"64199:3:94","nodeType":"YulIdentifier","src":"64199:3:94"},"nativeSrc":"64199:41:94","nodeType":"YulFunctionCall","src":"64199:41:94"}],"functionName":{"name":"xor","nativeSrc":"64189:3:94","nodeType":"YulIdentifier","src":"64189:3:94"},"nativeSrc":"64189:52:94","nodeType":"YulFunctionCall","src":"64189:52:94"},"variableNames":[{"name":"result","nativeSrc":"64179:6:94","nodeType":"YulIdentifier","src":"64179:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30892,"isOffset":false,"isSlot":false,"src":"64210:6:94","valueSize":1},{"declaration":30898,"isOffset":false,"isSlot":false,"src":"64223:8:94","valueSize":1},{"declaration":30895,"isOffset":false,"isSlot":false,"src":"64179:6:94","valueSize":1},{"declaration":30888,"isOffset":false,"isSlot":false,"src":"64193:4:94","valueSize":1},{"declaration":30890,"isOffset":false,"isSlot":false,"src":"64130:5:94","valueSize":1},{"declaration":30890,"isOffset":false,"isSlot":false,"src":"64143:5:94","valueSize":1},{"declaration":30890,"isOffset":false,"isSlot":false,"src":"64233:5:94","valueSize":1}],"flags":["memory-safe"],"id":30904,"nodeType":"InlineAssembly","src":"64091:160:94"}]},"id":30906,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_24","nameLocation":"63929:13:94","nodeType":"FunctionDefinition","parameters":{"id":30893,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30888,"mutability":"mutable","name":"self","nameLocation":"63951:4:94","nodeType":"VariableDeclaration","scope":30906,"src":"63943:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30887,"name":"bytes32","nodeType":"ElementaryTypeName","src":"63943:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30890,"mutability":"mutable","name":"value","nameLocation":"63965:5:94","nodeType":"VariableDeclaration","scope":30906,"src":"63957:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":30889,"name":"bytes24","nodeType":"ElementaryTypeName","src":"63957:7:94","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":30892,"mutability":"mutable","name":"offset","nameLocation":"63978:6:94","nodeType":"VariableDeclaration","scope":30906,"src":"63972:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30891,"name":"uint8","nodeType":"ElementaryTypeName","src":"63972:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"63942:43:94"},"returnParameters":{"id":30896,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30895,"mutability":"mutable","name":"result","nameLocation":"64017:6:94","nodeType":"VariableDeclaration","scope":30906,"src":"64009:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30894,"name":"bytes32","nodeType":"ElementaryTypeName","src":"64009:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"64008:16:94"},"scope":30945,"src":"63920:337:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30923,"nodeType":"Block","src":"64353:173:94","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":30917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":30915,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30910,"src":"64367:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"34","id":30916,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"64376:1:94","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"64367:10:94","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":30921,"nodeType":"IfStatement","src":"64363:41:94","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":30918,"name":"OutOfRangeAccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":27364,"src":"64386:16:94","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":30919,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"64386:18:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":30920,"nodeType":"RevertStatement","src":"64379:25:94"}},{"AST":{"nativeSrc":"64439:81:94","nodeType":"YulBlock","src":"64439:81:94","statements":[{"nativeSrc":"64453:57:94","nodeType":"YulAssignment","src":"64453:57:94","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"64475:1:94","nodeType":"YulLiteral","src":"64475:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"64478:6:94","nodeType":"YulIdentifier","src":"64478:6:94"}],"functionName":{"name":"mul","nativeSrc":"64471:3:94","nodeType":"YulIdentifier","src":"64471:3:94"},"nativeSrc":"64471:14:94","nodeType":"YulFunctionCall","src":"64471:14:94"},{"name":"self","nativeSrc":"64487:4:94","nodeType":"YulIdentifier","src":"64487:4:94"}],"functionName":{"name":"shl","nativeSrc":"64467:3:94","nodeType":"YulIdentifier","src":"64467:3:94"},"nativeSrc":"64467:25:94","nodeType":"YulFunctionCall","src":"64467:25:94"},{"arguments":[{"kind":"number","nativeSrc":"64498:2:94","nodeType":"YulLiteral","src":"64498:2:94","type":"","value":"32"},{"arguments":[{"kind":"number","nativeSrc":"64506:1:94","nodeType":"YulLiteral","src":"64506:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"64502:3:94","nodeType":"YulIdentifier","src":"64502:3:94"},"nativeSrc":"64502:6:94","nodeType":"YulFunctionCall","src":"64502:6:94"}],"functionName":{"name":"shl","nativeSrc":"64494:3:94","nodeType":"YulIdentifier","src":"64494:3:94"},"nativeSrc":"64494:15:94","nodeType":"YulFunctionCall","src":"64494:15:94"}],"functionName":{"name":"and","nativeSrc":"64463:3:94","nodeType":"YulIdentifier","src":"64463:3:94"},"nativeSrc":"64463:47:94","nodeType":"YulFunctionCall","src":"64463:47:94"},"variableNames":[{"name":"result","nativeSrc":"64453:6:94","nodeType":"YulIdentifier","src":"64453:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30910,"isOffset":false,"isSlot":false,"src":"64478:6:94","valueSize":1},{"declaration":30913,"isOffset":false,"isSlot":false,"src":"64453:6:94","valueSize":1},{"declaration":30908,"isOffset":false,"isSlot":false,"src":"64487:4:94","valueSize":1}],"flags":["memory-safe"],"id":30922,"nodeType":"InlineAssembly","src":"64414:106:94"}]},"id":30924,"implemented":true,"kind":"function","modifiers":[],"name":"extract_32_28","nameLocation":"64272:13:94","nodeType":"FunctionDefinition","parameters":{"id":30911,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30908,"mutability":"mutable","name":"self","nameLocation":"64294:4:94","nodeType":"VariableDeclaration","scope":30924,"src":"64286:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30907,"name":"bytes32","nodeType":"ElementaryTypeName","src":"64286:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30910,"mutability":"mutable","name":"offset","nameLocation":"64306:6:94","nodeType":"VariableDeclaration","scope":30924,"src":"64300:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30909,"name":"uint8","nodeType":"ElementaryTypeName","src":"64300:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"64285:28:94"},"returnParameters":{"id":30914,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30913,"mutability":"mutable","name":"result","nameLocation":"64345:6:94","nodeType":"VariableDeclaration","scope":30924,"src":"64337:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30912,"name":"bytes28","nodeType":"ElementaryTypeName","src":"64337:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"src":"64336:16:94"},"scope":30945,"src":"64263:263:94","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":30943,"nodeType":"Block","src":"64637:232:94","statements":[{"assignments":[30936],"declarations":[{"constant":false,"id":30936,"mutability":"mutable","name":"oldValue","nameLocation":"64655:8:94","nodeType":"VariableDeclaration","scope":30943,"src":"64647:16:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30935,"name":"bytes28","nodeType":"ElementaryTypeName","src":"64647:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"}],"id":30941,"initialValue":{"arguments":[{"id":30938,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30926,"src":"64680:4:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":30939,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30930,"src":"64686:6:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":30937,"name":"extract_32_28","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30924,"src":"64666:13:94","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$returns$_t_bytes28_$","typeString":"function (bytes32,uint8) pure returns (bytes28)"}},"id":30940,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"64666:27:94","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"nodeType":"VariableDeclarationStatement","src":"64647:46:94"},{"AST":{"nativeSrc":"64728:135:94","nodeType":"YulBlock","src":"64728:135:94","statements":[{"nativeSrc":"64742:36:94","nodeType":"YulAssignment","src":"64742:36:94","value":{"arguments":[{"name":"value","nativeSrc":"64755:5:94","nodeType":"YulIdentifier","src":"64755:5:94"},{"arguments":[{"kind":"number","nativeSrc":"64766:2:94","nodeType":"YulLiteral","src":"64766:2:94","type":"","value":"32"},{"arguments":[{"kind":"number","nativeSrc":"64774:1:94","nodeType":"YulLiteral","src":"64774:1:94","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"64770:3:94","nodeType":"YulIdentifier","src":"64770:3:94"},"nativeSrc":"64770:6:94","nodeType":"YulFunctionCall","src":"64770:6:94"}],"functionName":{"name":"shl","nativeSrc":"64762:3:94","nodeType":"YulIdentifier","src":"64762:3:94"},"nativeSrc":"64762:15:94","nodeType":"YulFunctionCall","src":"64762:15:94"}],"functionName":{"name":"and","nativeSrc":"64751:3:94","nodeType":"YulIdentifier","src":"64751:3:94"},"nativeSrc":"64751:27:94","nodeType":"YulFunctionCall","src":"64751:27:94"},"variableNames":[{"name":"value","nativeSrc":"64742:5:94","nodeType":"YulIdentifier","src":"64742:5:94"}]},{"nativeSrc":"64791:62:94","nodeType":"YulAssignment","src":"64791:62:94","value":{"arguments":[{"name":"self","nativeSrc":"64805:4:94","nodeType":"YulIdentifier","src":"64805:4:94"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"64819:1:94","nodeType":"YulLiteral","src":"64819:1:94","type":"","value":"8"},{"name":"offset","nativeSrc":"64822:6:94","nodeType":"YulIdentifier","src":"64822:6:94"}],"functionName":{"name":"mul","nativeSrc":"64815:3:94","nodeType":"YulIdentifier","src":"64815:3:94"},"nativeSrc":"64815:14:94","nodeType":"YulFunctionCall","src":"64815:14:94"},{"arguments":[{"name":"oldValue","nativeSrc":"64835:8:94","nodeType":"YulIdentifier","src":"64835:8:94"},{"name":"value","nativeSrc":"64845:5:94","nodeType":"YulIdentifier","src":"64845:5:94"}],"functionName":{"name":"xor","nativeSrc":"64831:3:94","nodeType":"YulIdentifier","src":"64831:3:94"},"nativeSrc":"64831:20:94","nodeType":"YulFunctionCall","src":"64831:20:94"}],"functionName":{"name":"shr","nativeSrc":"64811:3:94","nodeType":"YulIdentifier","src":"64811:3:94"},"nativeSrc":"64811:41:94","nodeType":"YulFunctionCall","src":"64811:41:94"}],"functionName":{"name":"xor","nativeSrc":"64801:3:94","nodeType":"YulIdentifier","src":"64801:3:94"},"nativeSrc":"64801:52:94","nodeType":"YulFunctionCall","src":"64801:52:94"},"variableNames":[{"name":"result","nativeSrc":"64791:6:94","nodeType":"YulIdentifier","src":"64791:6:94"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":30930,"isOffset":false,"isSlot":false,"src":"64822:6:94","valueSize":1},{"declaration":30936,"isOffset":false,"isSlot":false,"src":"64835:8:94","valueSize":1},{"declaration":30933,"isOffset":false,"isSlot":false,"src":"64791:6:94","valueSize":1},{"declaration":30926,"isOffset":false,"isSlot":false,"src":"64805:4:94","valueSize":1},{"declaration":30928,"isOffset":false,"isSlot":false,"src":"64742:5:94","valueSize":1},{"declaration":30928,"isOffset":false,"isSlot":false,"src":"64755:5:94","valueSize":1},{"declaration":30928,"isOffset":false,"isSlot":false,"src":"64845:5:94","valueSize":1}],"flags":["memory-safe"],"id":30942,"nodeType":"InlineAssembly","src":"64703:160:94"}]},"id":30944,"implemented":true,"kind":"function","modifiers":[],"name":"replace_32_28","nameLocation":"64541:13:94","nodeType":"FunctionDefinition","parameters":{"id":30931,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30926,"mutability":"mutable","name":"self","nameLocation":"64563:4:94","nodeType":"VariableDeclaration","scope":30944,"src":"64555:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30925,"name":"bytes32","nodeType":"ElementaryTypeName","src":"64555:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":30928,"mutability":"mutable","name":"value","nameLocation":"64577:5:94","nodeType":"VariableDeclaration","scope":30944,"src":"64569:13:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"},"typeName":{"id":30927,"name":"bytes28","nodeType":"ElementaryTypeName","src":"64569:7:94","typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}},"visibility":"internal"},{"constant":false,"id":30930,"mutability":"mutable","name":"offset","nameLocation":"64590:6:94","nodeType":"VariableDeclaration","scope":30944,"src":"64584:12:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":30929,"name":"uint8","nodeType":"ElementaryTypeName","src":"64584:5:94","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"64554:43:94"},"returnParameters":{"id":30934,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30933,"mutability":"mutable","name":"result","nameLocation":"64629:6:94","nodeType":"VariableDeclaration","scope":30944,"src":"64621:14:94","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":30932,"name":"bytes32","nodeType":"ElementaryTypeName","src":"64621:7:94","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"64620:16:94"},"scope":30945,"src":"64532:337:94","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":30946,"src":"1103:63768:94","usedErrors":[27364],"usedEvents":[]}],"src":"185:64687:94"},"id":94},"@openzeppelin/contracts/utils/Panic.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","exportedSymbols":{"Panic":[30997]},"id":30998,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":30947,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:95"},{"abstract":false,"baseContracts":[],"canonicalName":"Panic","contractDependencies":[],"contractKind":"library","documentation":{"id":30948,"nodeType":"StructuredDocumentation","src":"125:489:95","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":30997,"linearizedBaseContracts":[30997],"name":"Panic","nameLocation":"665:5:95","nodeType":"ContractDefinition","nodes":[{"constant":true,"documentation":{"id":30949,"nodeType":"StructuredDocumentation","src":"677:36:95","text":"@dev generic / unspecified error"},"id":30952,"mutability":"constant","name":"GENERIC","nameLocation":"744:7:95","nodeType":"VariableDeclaration","scope":30997,"src":"718:40:95","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30950,"name":"uint256","nodeType":"ElementaryTypeName","src":"718:7:95","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783030","id":30951,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"754:4:95","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0x00"},"visibility":"internal"},{"constant":true,"documentation":{"id":30953,"nodeType":"StructuredDocumentation","src":"764:37:95","text":"@dev used by the assert() builtin"},"id":30956,"mutability":"constant","name":"ASSERT","nameLocation":"832:6:95","nodeType":"VariableDeclaration","scope":30997,"src":"806:39:95","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30954,"name":"uint256","nodeType":"ElementaryTypeName","src":"806:7:95","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783031","id":30955,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"841:4:95","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"0x01"},"visibility":"internal"},{"constant":true,"documentation":{"id":30957,"nodeType":"StructuredDocumentation","src":"851:41:95","text":"@dev arithmetic underflow or overflow"},"id":30960,"mutability":"constant","name":"UNDER_OVERFLOW","nameLocation":"923:14:95","nodeType":"VariableDeclaration","scope":30997,"src":"897:47:95","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30958,"name":"uint256","nodeType":"ElementaryTypeName","src":"897:7:95","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783131","id":30959,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"940:4:95","typeDescriptions":{"typeIdentifier":"t_rational_17_by_1","typeString":"int_const 17"},"value":"0x11"},"visibility":"internal"},{"constant":true,"documentation":{"id":30961,"nodeType":"StructuredDocumentation","src":"950:35:95","text":"@dev division or modulo by zero"},"id":30964,"mutability":"constant","name":"DIVISION_BY_ZERO","nameLocation":"1016:16:95","nodeType":"VariableDeclaration","scope":30997,"src":"990:49:95","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30962,"name":"uint256","nodeType":"ElementaryTypeName","src":"990:7:95","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783132","id":30963,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1035:4:95","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"0x12"},"visibility":"internal"},{"constant":true,"documentation":{"id":30965,"nodeType":"StructuredDocumentation","src":"1045:30:95","text":"@dev enum conversion error"},"id":30968,"mutability":"constant","name":"ENUM_CONVERSION_ERROR","nameLocation":"1106:21:95","nodeType":"VariableDeclaration","scope":30997,"src":"1080:54:95","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30966,"name":"uint256","nodeType":"ElementaryTypeName","src":"1080:7:95","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783231","id":30967,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1130:4:95","typeDescriptions":{"typeIdentifier":"t_rational_33_by_1","typeString":"int_const 33"},"value":"0x21"},"visibility":"internal"},{"constant":true,"documentation":{"id":30969,"nodeType":"StructuredDocumentation","src":"1140:36:95","text":"@dev invalid encoding in storage"},"id":30972,"mutability":"constant","name":"STORAGE_ENCODING_ERROR","nameLocation":"1207:22:95","nodeType":"VariableDeclaration","scope":30997,"src":"1181:55:95","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30970,"name":"uint256","nodeType":"ElementaryTypeName","src":"1181:7:95","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783232","id":30971,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1232:4:95","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"visibility":"internal"},{"constant":true,"documentation":{"id":30973,"nodeType":"StructuredDocumentation","src":"1242:24:95","text":"@dev empty array pop"},"id":30976,"mutability":"constant","name":"EMPTY_ARRAY_POP","nameLocation":"1297:15:95","nodeType":"VariableDeclaration","scope":30997,"src":"1271:48:95","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30974,"name":"uint256","nodeType":"ElementaryTypeName","src":"1271:7:95","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783331","id":30975,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1315:4:95","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"0x31"},"visibility":"internal"},{"constant":true,"documentation":{"id":30977,"nodeType":"StructuredDocumentation","src":"1325:35:95","text":"@dev array out of bounds access"},"id":30980,"mutability":"constant","name":"ARRAY_OUT_OF_BOUNDS","nameLocation":"1391:19:95","nodeType":"VariableDeclaration","scope":30997,"src":"1365:52:95","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30978,"name":"uint256","nodeType":"ElementaryTypeName","src":"1365:7:95","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783332","id":30979,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1413:4:95","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"0x32"},"visibility":"internal"},{"constant":true,"documentation":{"id":30981,"nodeType":"StructuredDocumentation","src":"1423:65:95","text":"@dev resource error (too large allocation or too large array)"},"id":30984,"mutability":"constant","name":"RESOURCE_ERROR","nameLocation":"1519:14:95","nodeType":"VariableDeclaration","scope":30997,"src":"1493:47:95","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30982,"name":"uint256","nodeType":"ElementaryTypeName","src":"1493:7:95","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783431","id":30983,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1536:4:95","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"0x41"},"visibility":"internal"},{"constant":true,"documentation":{"id":30985,"nodeType":"StructuredDocumentation","src":"1546:42:95","text":"@dev calling invalid internal function"},"id":30988,"mutability":"constant","name":"INVALID_INTERNAL_FUNCTION","nameLocation":"1619:25:95","nodeType":"VariableDeclaration","scope":30997,"src":"1593:58:95","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30986,"name":"uint256","nodeType":"ElementaryTypeName","src":"1593:7:95","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783531","id":30987,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1647:4:95","typeDescriptions":{"typeIdentifier":"t_rational_81_by_1","typeString":"int_const 81"},"value":"0x51"},"visibility":"internal"},{"body":{"id":30995,"nodeType":"Block","src":"1819:151:95","statements":[{"AST":{"nativeSrc":"1854:110:95","nodeType":"YulBlock","src":"1854:110:95","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1875:4:95","nodeType":"YulLiteral","src":"1875:4:95","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1881:10:95","nodeType":"YulLiteral","src":"1881:10:95","type":"","value":"0x4e487b71"}],"functionName":{"name":"mstore","nativeSrc":"1868:6:95","nodeType":"YulIdentifier","src":"1868:6:95"},"nativeSrc":"1868:24:95","nodeType":"YulFunctionCall","src":"1868:24:95"},"nativeSrc":"1868:24:95","nodeType":"YulExpressionStatement","src":"1868:24:95"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1912:4:95","nodeType":"YulLiteral","src":"1912:4:95","type":"","value":"0x20"},{"name":"code","nativeSrc":"1918:4:95","nodeType":"YulIdentifier","src":"1918:4:95"}],"functionName":{"name":"mstore","nativeSrc":"1905:6:95","nodeType":"YulIdentifier","src":"1905:6:95"},"nativeSrc":"1905:18:95","nodeType":"YulFunctionCall","src":"1905:18:95"},"nativeSrc":"1905:18:95","nodeType":"YulExpressionStatement","src":"1905:18:95"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1943:4:95","nodeType":"YulLiteral","src":"1943:4:95","type":"","value":"0x1c"},{"kind":"number","nativeSrc":"1949:4:95","nodeType":"YulLiteral","src":"1949:4:95","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1936:6:95","nodeType":"YulIdentifier","src":"1936:6:95"},"nativeSrc":"1936:18:95","nodeType":"YulFunctionCall","src":"1936:18:95"},"nativeSrc":"1936:18:95","nodeType":"YulExpressionStatement","src":"1936:18:95"}]},"evmVersion":"prague","externalReferences":[{"declaration":30991,"isOffset":false,"isSlot":false,"src":"1918:4:95","valueSize":1}],"flags":["memory-safe"],"id":30994,"nodeType":"InlineAssembly","src":"1829:135:95"}]},"documentation":{"id":30989,"nodeType":"StructuredDocumentation","src":"1658:113:95","text":"@dev Reverts with a panic code. Recommended to use with\n the internal constants with predefined codes."},"id":30996,"implemented":true,"kind":"function","modifiers":[],"name":"panic","nameLocation":"1785:5:95","nodeType":"FunctionDefinition","parameters":{"id":30992,"nodeType":"ParameterList","parameters":[{"constant":false,"id":30991,"mutability":"mutable","name":"code","nameLocation":"1799:4:95","nodeType":"VariableDeclaration","scope":30996,"src":"1791:12:95","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":30990,"name":"uint256","nodeType":"ElementaryTypeName","src":"1791:7:95","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1790:14:95"},"returnParameters":{"id":30993,"nodeType":"ParameterList","parameters":[],"src":"1819:0:95"},"scope":30997,"src":"1776:194:95","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":30998,"src":"657:1315:95","usedErrors":[],"usedEvents":[]}],"src":"99:1874:95"},"id":95},"@openzeppelin/contracts/utils/ReentrancyGuard.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/ReentrancyGuard.sol","exportedSymbols":{"ReentrancyGuard":[31110],"StorageSlot":[31234]},"id":31111,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":30999,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:96"},{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","file":"./StorageSlot.sol","id":31001,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":31111,"sourceUnit":31235,"src":"135:46:96","symbolAliases":[{"foreign":{"id":31000,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31234,"src":"143:11:96","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[],"canonicalName":"ReentrancyGuard","contractDependencies":[],"contractKind":"contract","documentation":{"id":31002,"nodeType":"StructuredDocumentation","src":"183:1066:96","text":" @dev Contract module that helps prevent reentrant calls to a function.\n Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n available, which can be applied to functions to make sure there are no nested\n (reentrant) calls to them.\n Note that because there is a single `nonReentrant` guard, functions marked as\n `nonReentrant` may not call one another. This can be worked around by making\n those functions `private`, and then adding `external` `nonReentrant` entry\n points to them.\n TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,\n consider using {ReentrancyGuardTransient} instead.\n TIP: If you would like to learn more about reentrancy and alternative ways\n to protect against it, check out our blog post\n https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n IMPORTANT: Deprecated. This storage-based reentrancy guard will be removed and replaced\n by the {ReentrancyGuardTransient} variant in v6.0.\n @custom:stateless"},"fullyImplemented":true,"id":31110,"linearizedBaseContracts":[31110],"name":"ReentrancyGuard","nameLocation":"1268:15:96","nodeType":"ContractDefinition","nodes":[{"global":false,"id":31005,"libraryName":{"id":31003,"name":"StorageSlot","nameLocations":["1296:11:96"],"nodeType":"IdentifierPath","referencedDeclaration":31234,"src":"1296:11:96"},"nodeType":"UsingForDirective","src":"1290:30:96","typeName":{"id":31004,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1312:7:96","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"constant":true,"id":31008,"mutability":"constant","name":"REENTRANCY_GUARD_STORAGE","nameLocation":"1470:24:96","nodeType":"VariableDeclaration","scope":31110,"src":"1445:126:96","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":31006,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1445:7:96","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307839623737396231373432326430646639323232333031386233326234643166613436653037313732336436383137653234383664303033626563633535663030","id":31007,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1505:66:96","typeDescriptions":{"typeIdentifier":"t_rational_70319816728846589445362000750570655803700195216363692647688146666176345628416_by_1","typeString":"int_const 7031...(69 digits omitted)...8416"},"value":"0x9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00"},"visibility":"private"},{"constant":true,"id":31011,"mutability":"constant","name":"NOT_ENTERED","nameLocation":"2351:11:96","nodeType":"VariableDeclaration","scope":31110,"src":"2326:40:96","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31009,"name":"uint256","nodeType":"ElementaryTypeName","src":"2326:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31","id":31010,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2365:1:96","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"visibility":"private"},{"constant":true,"id":31014,"mutability":"constant","name":"ENTERED","nameLocation":"2397:7:96","nodeType":"VariableDeclaration","scope":31110,"src":"2372:36:96","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31012,"name":"uint256","nodeType":"ElementaryTypeName","src":"2372:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"32","id":31013,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2407:1:96","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"visibility":"private"},{"documentation":{"id":31015,"nodeType":"StructuredDocumentation","src":"2415:52:96","text":" @dev Unauthorized reentrant call."},"errorSelector":"3ee5aeb5","id":31017,"name":"ReentrancyGuardReentrantCall","nameLocation":"2478:28:96","nodeType":"ErrorDefinition","parameters":{"id":31016,"nodeType":"ParameterList","parameters":[],"src":"2506:2:96"},"src":"2472:37:96"},{"body":{"id":31028,"nodeType":"Block","src":"2529:83:96","statements":[{"expression":{"id":31026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":31020,"name":"_reentrancyGuardStorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31109,"src":"2539:27:96","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_bytes32_$","typeString":"function () pure returns (bytes32)"}},"id":31021,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2539:29:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":31022,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2569:14:96","memberName":"getUint256Slot","nodeType":"MemberAccess","referencedDeclaration":31178,"src":"2539:44:96","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_Uint256Slot_$31125_storage_ptr_$attached_to$_t_bytes32_$","typeString":"function (bytes32) pure returns (struct StorageSlot.Uint256Slot storage pointer)"}},"id":31023,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2539:46:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$31125_storage_ptr","typeString":"struct StorageSlot.Uint256Slot storage pointer"}},"id":31024,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"2586:5:96","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":31124,"src":"2539:52:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":31025,"name":"NOT_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31011,"src":"2594:11:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2539:66:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31027,"nodeType":"ExpressionStatement","src":"2539:66:96"}]},"id":31029,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":31018,"nodeType":"ParameterList","parameters":[],"src":"2526:2:96"},"returnParameters":{"id":31019,"nodeType":"ParameterList","parameters":[],"src":"2529:0:96"},"scope":31110,"src":"2515:97:96","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":31039,"nodeType":"Block","src":"3013:79:96","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":31032,"name":"_nonReentrantBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31074,"src":"3023:19:96","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":31033,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3023:21:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":31034,"nodeType":"ExpressionStatement","src":"3023:21:96"},{"id":31035,"nodeType":"PlaceholderStatement","src":"3054:1:96"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":31036,"name":"_nonReentrantAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31086,"src":"3065:18:96","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":31037,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3065:20:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":31038,"nodeType":"ExpressionStatement","src":"3065:20:96"}]},"documentation":{"id":31030,"nodeType":"StructuredDocumentation","src":"2618:366:96","text":" @dev Prevents a contract from calling itself, directly or indirectly.\n Calling a `nonReentrant` function from another `nonReentrant`\n function is not supported. It is possible to prevent this from happening\n by making the `nonReentrant` function external, and making it call a\n `private` function that does the actual work."},"id":31040,"name":"nonReentrant","nameLocation":"2998:12:96","nodeType":"ModifierDefinition","parameters":{"id":31031,"nodeType":"ParameterList","parameters":[],"src":"3010:2:96"},"src":"2989:103:96","virtual":false,"visibility":"internal"},{"body":{"id":31047,"nodeType":"Block","src":"3527:53:96","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":31043,"name":"_nonReentrantBeforeView","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31059,"src":"3537:23:96","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":31044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3537:25:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":31045,"nodeType":"ExpressionStatement","src":"3537:25:96"},{"id":31046,"nodeType":"PlaceholderStatement","src":"3572:1:96"}]},"documentation":{"id":31041,"nodeType":"StructuredDocumentation","src":"3098:396:96","text":" @dev A `view` only version of {nonReentrant}. Use to block view functions\n from being called, preventing reading from inconsistent contract state.\n CAUTION: This is a \"view\" modifier and does not change the reentrancy\n status. Use it only on view functions. For payable or non-payable functions,\n use the standard {nonReentrant} modifier instead."},"id":31048,"name":"nonReentrantView","nameLocation":"3508:16:96","nodeType":"ModifierDefinition","parameters":{"id":31042,"nodeType":"ParameterList","parameters":[],"src":"3524:2:96"},"src":"3499:81:96","virtual":false,"visibility":"internal"},{"body":{"id":31058,"nodeType":"Block","src":"3634:109:96","statements":[{"condition":{"arguments":[],"expression":{"argumentTypes":[],"id":31051,"name":"_reentrancyGuardEntered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31101,"src":"3648:23:96","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":31052,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3648:25:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31057,"nodeType":"IfStatement","src":"3644:93:96","trueBody":{"id":31056,"nodeType":"Block","src":"3675:62:96","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":31053,"name":"ReentrancyGuardReentrantCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31017,"src":"3696:28:96","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":31054,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3696:30:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":31055,"nodeType":"RevertStatement","src":"3689:37:96"}]}}]},"id":31059,"implemented":true,"kind":"function","modifiers":[],"name":"_nonReentrantBeforeView","nameLocation":"3595:23:96","nodeType":"FunctionDefinition","parameters":{"id":31049,"nodeType":"ParameterList","parameters":[],"src":"3618:2:96"},"returnParameters":{"id":31050,"nodeType":"ParameterList","parameters":[],"src":"3634:0:96"},"scope":31110,"src":"3586:157:96","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":31073,"nodeType":"Block","src":"3788:253:96","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":31062,"name":"_nonReentrantBeforeView","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31059,"src":"3872:23:96","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":31063,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3872:25:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":31064,"nodeType":"ExpressionStatement","src":"3872:25:96"},{"expression":{"id":31071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":31065,"name":"_reentrancyGuardStorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31109,"src":"3972:27:96","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_bytes32_$","typeString":"function () pure returns (bytes32)"}},"id":31066,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3972:29:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":31067,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4002:14:96","memberName":"getUint256Slot","nodeType":"MemberAccess","referencedDeclaration":31178,"src":"3972:44:96","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_Uint256Slot_$31125_storage_ptr_$attached_to$_t_bytes32_$","typeString":"function (bytes32) pure returns (struct StorageSlot.Uint256Slot storage pointer)"}},"id":31068,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3972:46:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$31125_storage_ptr","typeString":"struct StorageSlot.Uint256Slot storage pointer"}},"id":31069,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4019:5:96","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":31124,"src":"3972:52:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":31070,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31014,"src":"4027:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3972:62:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31072,"nodeType":"ExpressionStatement","src":"3972:62:96"}]},"id":31074,"implemented":true,"kind":"function","modifiers":[],"name":"_nonReentrantBefore","nameLocation":"3758:19:96","nodeType":"FunctionDefinition","parameters":{"id":31060,"nodeType":"ParameterList","parameters":[],"src":"3777:2:96"},"returnParameters":{"id":31061,"nodeType":"ParameterList","parameters":[],"src":"3788:0:96"},"scope":31110,"src":"3749:292:96","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":31085,"nodeType":"Block","src":"4085:215:96","statements":[{"expression":{"id":31083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":31077,"name":"_reentrancyGuardStorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31109,"src":"4227:27:96","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_bytes32_$","typeString":"function () pure returns (bytes32)"}},"id":31078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4227:29:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":31079,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4257:14:96","memberName":"getUint256Slot","nodeType":"MemberAccess","referencedDeclaration":31178,"src":"4227:44:96","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_Uint256Slot_$31125_storage_ptr_$attached_to$_t_bytes32_$","typeString":"function (bytes32) pure returns (struct StorageSlot.Uint256Slot storage pointer)"}},"id":31080,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4227:46:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$31125_storage_ptr","typeString":"struct StorageSlot.Uint256Slot storage pointer"}},"id":31081,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4274:5:96","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":31124,"src":"4227:52:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":31082,"name":"NOT_ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31011,"src":"4282:11:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4227:66:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31084,"nodeType":"ExpressionStatement","src":"4227:66:96"}]},"id":31086,"implemented":true,"kind":"function","modifiers":[],"name":"_nonReentrantAfter","nameLocation":"4056:18:96","nodeType":"FunctionDefinition","parameters":{"id":31075,"nodeType":"ParameterList","parameters":[],"src":"4074:2:96"},"returnParameters":{"id":31076,"nodeType":"ParameterList","parameters":[],"src":"4085:0:96"},"scope":31110,"src":"4047:253:96","stateMutability":"nonpayable","virtual":false,"visibility":"private"},{"body":{"id":31100,"nodeType":"Block","src":"4543:87:96","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":31092,"name":"_reentrancyGuardStorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31109,"src":"4560:27:96","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_bytes32_$","typeString":"function () pure returns (bytes32)"}},"id":31093,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4560:29:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":31094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4590:14:96","memberName":"getUint256Slot","nodeType":"MemberAccess","referencedDeclaration":31178,"src":"4560:44:96","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_struct$_Uint256Slot_$31125_storage_ptr_$attached_to$_t_bytes32_$","typeString":"function (bytes32) pure returns (struct StorageSlot.Uint256Slot storage pointer)"}},"id":31095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4560:46:96","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$31125_storage_ptr","typeString":"struct StorageSlot.Uint256Slot storage pointer"}},"id":31096,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4607:5:96","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":31124,"src":"4560:52:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":31097,"name":"ENTERED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31014,"src":"4616:7:96","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4560:63:96","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":31091,"id":31099,"nodeType":"Return","src":"4553:70:96"}]},"documentation":{"id":31087,"nodeType":"StructuredDocumentation","src":"4306:168:96","text":" @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n `nonReentrant` function in the call stack."},"id":31101,"implemented":true,"kind":"function","modifiers":[],"name":"_reentrancyGuardEntered","nameLocation":"4488:23:96","nodeType":"FunctionDefinition","parameters":{"id":31088,"nodeType":"ParameterList","parameters":[],"src":"4511:2:96"},"returnParameters":{"id":31091,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31090,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31101,"src":"4537:4:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":31089,"name":"bool","nodeType":"ElementaryTypeName","src":"4537:4:96","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4536:6:96"},"scope":31110,"src":"4479:151:96","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":31108,"nodeType":"Block","src":"4715:48:96","statements":[{"expression":{"id":31106,"name":"REENTRANCY_GUARD_STORAGE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31008,"src":"4732:24:96","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":31105,"id":31107,"nodeType":"Return","src":"4725:31:96"}]},"id":31109,"implemented":true,"kind":"function","modifiers":[],"name":"_reentrancyGuardStorageSlot","nameLocation":"4645:27:96","nodeType":"FunctionDefinition","parameters":{"id":31102,"nodeType":"ParameterList","parameters":[],"src":"4672:2:96"},"returnParameters":{"id":31105,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31104,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31109,"src":"4706:7:96","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":31103,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4706:7:96","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4705:9:96"},"scope":31110,"src":"4636:127:96","stateMutability":"pure","virtual":true,"visibility":"internal"}],"scope":31111,"src":"1250:3515:96","usedErrors":[31017],"usedEvents":[]}],"src":"109:4657:96"},"id":96},"@openzeppelin/contracts/utils/StorageSlot.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","exportedSymbols":{"StorageSlot":[31234]},"id":31235,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":31112,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"193:24:97"},{"abstract":false,"baseContracts":[],"canonicalName":"StorageSlot","contractDependencies":[],"contractKind":"library","documentation":{"id":31113,"nodeType":"StructuredDocumentation","src":"219:1187:97","text":" @dev Library for reading and writing primitive types to specific storage slots.\n Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n This library helps with reading and writing to such slots without the need for inline assembly.\n The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n Example usage to set ERC-1967 implementation slot:\n ```solidity\n contract ERC1967 {\n     // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.\n     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n     function _getImplementation() internal view returns (address) {\n         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n     }\n     function _setImplementation(address newImplementation) internal {\n         require(newImplementation.code.length > 0);\n         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n     }\n }\n ```\n TIP: Consider using this library along with {SlotDerivation}."},"fullyImplemented":true,"id":31234,"linearizedBaseContracts":[31234],"name":"StorageSlot","nameLocation":"1415:11:97","nodeType":"ContractDefinition","nodes":[{"canonicalName":"StorageSlot.AddressSlot","id":31116,"members":[{"constant":false,"id":31115,"mutability":"mutable","name":"value","nameLocation":"1470:5:97","nodeType":"VariableDeclaration","scope":31116,"src":"1462:13:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":31114,"name":"address","nodeType":"ElementaryTypeName","src":"1462:7:97","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"AddressSlot","nameLocation":"1440:11:97","nodeType":"StructDefinition","scope":31234,"src":"1433:49:97","visibility":"public"},{"canonicalName":"StorageSlot.BooleanSlot","id":31119,"members":[{"constant":false,"id":31118,"mutability":"mutable","name":"value","nameLocation":"1522:5:97","nodeType":"VariableDeclaration","scope":31119,"src":"1517:10:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":31117,"name":"bool","nodeType":"ElementaryTypeName","src":"1517:4:97","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"BooleanSlot","nameLocation":"1495:11:97","nodeType":"StructDefinition","scope":31234,"src":"1488:46:97","visibility":"public"},{"canonicalName":"StorageSlot.Bytes32Slot","id":31122,"members":[{"constant":false,"id":31121,"mutability":"mutable","name":"value","nameLocation":"1577:5:97","nodeType":"VariableDeclaration","scope":31122,"src":"1569:13:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":31120,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1569:7:97","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"name":"Bytes32Slot","nameLocation":"1547:11:97","nodeType":"StructDefinition","scope":31234,"src":"1540:49:97","visibility":"public"},{"canonicalName":"StorageSlot.Uint256Slot","id":31125,"members":[{"constant":false,"id":31124,"mutability":"mutable","name":"value","nameLocation":"1632:5:97","nodeType":"VariableDeclaration","scope":31125,"src":"1624:13:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31123,"name":"uint256","nodeType":"ElementaryTypeName","src":"1624:7:97","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Uint256Slot","nameLocation":"1602:11:97","nodeType":"StructDefinition","scope":31234,"src":"1595:49:97","visibility":"public"},{"canonicalName":"StorageSlot.Int256Slot","id":31128,"members":[{"constant":false,"id":31127,"mutability":"mutable","name":"value","nameLocation":"1685:5:97","nodeType":"VariableDeclaration","scope":31128,"src":"1678:12:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":31126,"name":"int256","nodeType":"ElementaryTypeName","src":"1678:6:97","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"name":"Int256Slot","nameLocation":"1657:10:97","nodeType":"StructDefinition","scope":31234,"src":"1650:47:97","visibility":"public"},{"canonicalName":"StorageSlot.StringSlot","id":31131,"members":[{"constant":false,"id":31130,"mutability":"mutable","name":"value","nameLocation":"1738:5:97","nodeType":"VariableDeclaration","scope":31131,"src":"1731:12:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":31129,"name":"string","nodeType":"ElementaryTypeName","src":"1731:6:97","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"name":"StringSlot","nameLocation":"1710:10:97","nodeType":"StructDefinition","scope":31234,"src":"1703:47:97","visibility":"public"},{"canonicalName":"StorageSlot.BytesSlot","id":31134,"members":[{"constant":false,"id":31133,"mutability":"mutable","name":"value","nameLocation":"1789:5:97","nodeType":"VariableDeclaration","scope":31134,"src":"1783:11:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":31132,"name":"bytes","nodeType":"ElementaryTypeName","src":"1783:5:97","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"BytesSlot","nameLocation":"1763:9:97","nodeType":"StructDefinition","scope":31234,"src":"1756:45:97","visibility":"public"},{"body":{"id":31144,"nodeType":"Block","src":"1983:79:97","statements":[{"AST":{"nativeSrc":"2018:38:97","nodeType":"YulBlock","src":"2018:38:97","statements":[{"nativeSrc":"2032:14:97","nodeType":"YulAssignment","src":"2032:14:97","value":{"name":"slot","nativeSrc":"2042:4:97","nodeType":"YulIdentifier","src":"2042:4:97"},"variableNames":[{"name":"r.slot","nativeSrc":"2032:6:97","nodeType":"YulIdentifier","src":"2032:6:97"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":31141,"isOffset":false,"isSlot":true,"src":"2032:6:97","suffix":"slot","valueSize":1},{"declaration":31137,"isOffset":false,"isSlot":false,"src":"2042:4:97","valueSize":1}],"flags":["memory-safe"],"id":31143,"nodeType":"InlineAssembly","src":"1993:63:97"}]},"documentation":{"id":31135,"nodeType":"StructuredDocumentation","src":"1807:87:97","text":" @dev Returns an `AddressSlot` with member `value` located at `slot`."},"id":31145,"implemented":true,"kind":"function","modifiers":[],"name":"getAddressSlot","nameLocation":"1908:14:97","nodeType":"FunctionDefinition","parameters":{"id":31138,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31137,"mutability":"mutable","name":"slot","nameLocation":"1931:4:97","nodeType":"VariableDeclaration","scope":31145,"src":"1923:12:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":31136,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1923:7:97","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1922:14:97"},"returnParameters":{"id":31142,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31141,"mutability":"mutable","name":"r","nameLocation":"1980:1:97","nodeType":"VariableDeclaration","scope":31145,"src":"1960:21:97","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$31116_storage_ptr","typeString":"struct StorageSlot.AddressSlot"},"typeName":{"id":31140,"nodeType":"UserDefinedTypeName","pathNode":{"id":31139,"name":"AddressSlot","nameLocations":["1960:11:97"],"nodeType":"IdentifierPath","referencedDeclaration":31116,"src":"1960:11:97"},"referencedDeclaration":31116,"src":"1960:11:97","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$31116_storage_ptr","typeString":"struct StorageSlot.AddressSlot"}},"visibility":"internal"}],"src":"1959:23:97"},"scope":31234,"src":"1899:163:97","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31155,"nodeType":"Block","src":"2243:79:97","statements":[{"AST":{"nativeSrc":"2278:38:97","nodeType":"YulBlock","src":"2278:38:97","statements":[{"nativeSrc":"2292:14:97","nodeType":"YulAssignment","src":"2292:14:97","value":{"name":"slot","nativeSrc":"2302:4:97","nodeType":"YulIdentifier","src":"2302:4:97"},"variableNames":[{"name":"r.slot","nativeSrc":"2292:6:97","nodeType":"YulIdentifier","src":"2292:6:97"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":31152,"isOffset":false,"isSlot":true,"src":"2292:6:97","suffix":"slot","valueSize":1},{"declaration":31148,"isOffset":false,"isSlot":false,"src":"2302:4:97","valueSize":1}],"flags":["memory-safe"],"id":31154,"nodeType":"InlineAssembly","src":"2253:63:97"}]},"documentation":{"id":31146,"nodeType":"StructuredDocumentation","src":"2068:86:97","text":" @dev Returns a `BooleanSlot` with member `value` located at `slot`."},"id":31156,"implemented":true,"kind":"function","modifiers":[],"name":"getBooleanSlot","nameLocation":"2168:14:97","nodeType":"FunctionDefinition","parameters":{"id":31149,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31148,"mutability":"mutable","name":"slot","nameLocation":"2191:4:97","nodeType":"VariableDeclaration","scope":31156,"src":"2183:12:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":31147,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2183:7:97","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2182:14:97"},"returnParameters":{"id":31153,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31152,"mutability":"mutable","name":"r","nameLocation":"2240:1:97","nodeType":"VariableDeclaration","scope":31156,"src":"2220:21:97","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$31119_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"},"typeName":{"id":31151,"nodeType":"UserDefinedTypeName","pathNode":{"id":31150,"name":"BooleanSlot","nameLocations":["2220:11:97"],"nodeType":"IdentifierPath","referencedDeclaration":31119,"src":"2220:11:97"},"referencedDeclaration":31119,"src":"2220:11:97","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$31119_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"}},"visibility":"internal"}],"src":"2219:23:97"},"scope":31234,"src":"2159:163:97","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31166,"nodeType":"Block","src":"2503:79:97","statements":[{"AST":{"nativeSrc":"2538:38:97","nodeType":"YulBlock","src":"2538:38:97","statements":[{"nativeSrc":"2552:14:97","nodeType":"YulAssignment","src":"2552:14:97","value":{"name":"slot","nativeSrc":"2562:4:97","nodeType":"YulIdentifier","src":"2562:4:97"},"variableNames":[{"name":"r.slot","nativeSrc":"2552:6:97","nodeType":"YulIdentifier","src":"2552:6:97"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":31163,"isOffset":false,"isSlot":true,"src":"2552:6:97","suffix":"slot","valueSize":1},{"declaration":31159,"isOffset":false,"isSlot":false,"src":"2562:4:97","valueSize":1}],"flags":["memory-safe"],"id":31165,"nodeType":"InlineAssembly","src":"2513:63:97"}]},"documentation":{"id":31157,"nodeType":"StructuredDocumentation","src":"2328:86:97","text":" @dev Returns a `Bytes32Slot` with member `value` located at `slot`."},"id":31167,"implemented":true,"kind":"function","modifiers":[],"name":"getBytes32Slot","nameLocation":"2428:14:97","nodeType":"FunctionDefinition","parameters":{"id":31160,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31159,"mutability":"mutable","name":"slot","nameLocation":"2451:4:97","nodeType":"VariableDeclaration","scope":31167,"src":"2443:12:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":31158,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2443:7:97","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2442:14:97"},"returnParameters":{"id":31164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31163,"mutability":"mutable","name":"r","nameLocation":"2500:1:97","nodeType":"VariableDeclaration","scope":31167,"src":"2480:21:97","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$31122_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"},"typeName":{"id":31162,"nodeType":"UserDefinedTypeName","pathNode":{"id":31161,"name":"Bytes32Slot","nameLocations":["2480:11:97"],"nodeType":"IdentifierPath","referencedDeclaration":31122,"src":"2480:11:97"},"referencedDeclaration":31122,"src":"2480:11:97","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$31122_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"}},"visibility":"internal"}],"src":"2479:23:97"},"scope":31234,"src":"2419:163:97","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31177,"nodeType":"Block","src":"2763:79:97","statements":[{"AST":{"nativeSrc":"2798:38:97","nodeType":"YulBlock","src":"2798:38:97","statements":[{"nativeSrc":"2812:14:97","nodeType":"YulAssignment","src":"2812:14:97","value":{"name":"slot","nativeSrc":"2822:4:97","nodeType":"YulIdentifier","src":"2822:4:97"},"variableNames":[{"name":"r.slot","nativeSrc":"2812:6:97","nodeType":"YulIdentifier","src":"2812:6:97"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":31174,"isOffset":false,"isSlot":true,"src":"2812:6:97","suffix":"slot","valueSize":1},{"declaration":31170,"isOffset":false,"isSlot":false,"src":"2822:4:97","valueSize":1}],"flags":["memory-safe"],"id":31176,"nodeType":"InlineAssembly","src":"2773:63:97"}]},"documentation":{"id":31168,"nodeType":"StructuredDocumentation","src":"2588:86:97","text":" @dev Returns a `Uint256Slot` with member `value` located at `slot`."},"id":31178,"implemented":true,"kind":"function","modifiers":[],"name":"getUint256Slot","nameLocation":"2688:14:97","nodeType":"FunctionDefinition","parameters":{"id":31171,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31170,"mutability":"mutable","name":"slot","nameLocation":"2711:4:97","nodeType":"VariableDeclaration","scope":31178,"src":"2703:12:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":31169,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2703:7:97","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2702:14:97"},"returnParameters":{"id":31175,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31174,"mutability":"mutable","name":"r","nameLocation":"2760:1:97","nodeType":"VariableDeclaration","scope":31178,"src":"2740:21:97","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$31125_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"},"typeName":{"id":31173,"nodeType":"UserDefinedTypeName","pathNode":{"id":31172,"name":"Uint256Slot","nameLocations":["2740:11:97"],"nodeType":"IdentifierPath","referencedDeclaration":31125,"src":"2740:11:97"},"referencedDeclaration":31125,"src":"2740:11:97","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$31125_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"}},"visibility":"internal"}],"src":"2739:23:97"},"scope":31234,"src":"2679:163:97","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31188,"nodeType":"Block","src":"3020:79:97","statements":[{"AST":{"nativeSrc":"3055:38:97","nodeType":"YulBlock","src":"3055:38:97","statements":[{"nativeSrc":"3069:14:97","nodeType":"YulAssignment","src":"3069:14:97","value":{"name":"slot","nativeSrc":"3079:4:97","nodeType":"YulIdentifier","src":"3079:4:97"},"variableNames":[{"name":"r.slot","nativeSrc":"3069:6:97","nodeType":"YulIdentifier","src":"3069:6:97"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":31185,"isOffset":false,"isSlot":true,"src":"3069:6:97","suffix":"slot","valueSize":1},{"declaration":31181,"isOffset":false,"isSlot":false,"src":"3079:4:97","valueSize":1}],"flags":["memory-safe"],"id":31187,"nodeType":"InlineAssembly","src":"3030:63:97"}]},"documentation":{"id":31179,"nodeType":"StructuredDocumentation","src":"2848:85:97","text":" @dev Returns a `Int256Slot` with member `value` located at `slot`."},"id":31189,"implemented":true,"kind":"function","modifiers":[],"name":"getInt256Slot","nameLocation":"2947:13:97","nodeType":"FunctionDefinition","parameters":{"id":31182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31181,"mutability":"mutable","name":"slot","nameLocation":"2969:4:97","nodeType":"VariableDeclaration","scope":31189,"src":"2961:12:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":31180,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2961:7:97","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2960:14:97"},"returnParameters":{"id":31186,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31185,"mutability":"mutable","name":"r","nameLocation":"3017:1:97","nodeType":"VariableDeclaration","scope":31189,"src":"2998:20:97","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Int256Slot_$31128_storage_ptr","typeString":"struct StorageSlot.Int256Slot"},"typeName":{"id":31184,"nodeType":"UserDefinedTypeName","pathNode":{"id":31183,"name":"Int256Slot","nameLocations":["2998:10:97"],"nodeType":"IdentifierPath","referencedDeclaration":31128,"src":"2998:10:97"},"referencedDeclaration":31128,"src":"2998:10:97","typeDescriptions":{"typeIdentifier":"t_struct$_Int256Slot_$31128_storage_ptr","typeString":"struct StorageSlot.Int256Slot"}},"visibility":"internal"}],"src":"2997:22:97"},"scope":31234,"src":"2938:161:97","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31199,"nodeType":"Block","src":"3277:79:97","statements":[{"AST":{"nativeSrc":"3312:38:97","nodeType":"YulBlock","src":"3312:38:97","statements":[{"nativeSrc":"3326:14:97","nodeType":"YulAssignment","src":"3326:14:97","value":{"name":"slot","nativeSrc":"3336:4:97","nodeType":"YulIdentifier","src":"3336:4:97"},"variableNames":[{"name":"r.slot","nativeSrc":"3326:6:97","nodeType":"YulIdentifier","src":"3326:6:97"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":31196,"isOffset":false,"isSlot":true,"src":"3326:6:97","suffix":"slot","valueSize":1},{"declaration":31192,"isOffset":false,"isSlot":false,"src":"3336:4:97","valueSize":1}],"flags":["memory-safe"],"id":31198,"nodeType":"InlineAssembly","src":"3287:63:97"}]},"documentation":{"id":31190,"nodeType":"StructuredDocumentation","src":"3105:85:97","text":" @dev Returns a `StringSlot` with member `value` located at `slot`."},"id":31200,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3204:13:97","nodeType":"FunctionDefinition","parameters":{"id":31193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31192,"mutability":"mutable","name":"slot","nameLocation":"3226:4:97","nodeType":"VariableDeclaration","scope":31200,"src":"3218:12:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":31191,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3218:7:97","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3217:14:97"},"returnParameters":{"id":31197,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31196,"mutability":"mutable","name":"r","nameLocation":"3274:1:97","nodeType":"VariableDeclaration","scope":31200,"src":"3255:20:97","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$31131_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":31195,"nodeType":"UserDefinedTypeName","pathNode":{"id":31194,"name":"StringSlot","nameLocations":["3255:10:97"],"nodeType":"IdentifierPath","referencedDeclaration":31131,"src":"3255:10:97"},"referencedDeclaration":31131,"src":"3255:10:97","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$31131_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3254:22:97"},"scope":31234,"src":"3195:161:97","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31210,"nodeType":"Block","src":"3558:85:97","statements":[{"AST":{"nativeSrc":"3593:44:97","nodeType":"YulBlock","src":"3593:44:97","statements":[{"nativeSrc":"3607:20:97","nodeType":"YulAssignment","src":"3607:20:97","value":{"name":"store.slot","nativeSrc":"3617:10:97","nodeType":"YulIdentifier","src":"3617:10:97"},"variableNames":[{"name":"r.slot","nativeSrc":"3607:6:97","nodeType":"YulIdentifier","src":"3607:6:97"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":31207,"isOffset":false,"isSlot":true,"src":"3607:6:97","suffix":"slot","valueSize":1},{"declaration":31203,"isOffset":false,"isSlot":true,"src":"3617:10:97","suffix":"slot","valueSize":1}],"flags":["memory-safe"],"id":31209,"nodeType":"InlineAssembly","src":"3568:69:97"}]},"documentation":{"id":31201,"nodeType":"StructuredDocumentation","src":"3362:101:97","text":" @dev Returns an `StringSlot` representation of the string storage pointer `store`."},"id":31211,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3477:13:97","nodeType":"FunctionDefinition","parameters":{"id":31204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31203,"mutability":"mutable","name":"store","nameLocation":"3506:5:97","nodeType":"VariableDeclaration","scope":31211,"src":"3491:20:97","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":31202,"name":"string","nodeType":"ElementaryTypeName","src":"3491:6:97","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3490:22:97"},"returnParameters":{"id":31208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31207,"mutability":"mutable","name":"r","nameLocation":"3555:1:97","nodeType":"VariableDeclaration","scope":31211,"src":"3536:20:97","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$31131_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":31206,"nodeType":"UserDefinedTypeName","pathNode":{"id":31205,"name":"StringSlot","nameLocations":["3536:10:97"],"nodeType":"IdentifierPath","referencedDeclaration":31131,"src":"3536:10:97"},"referencedDeclaration":31131,"src":"3536:10:97","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$31131_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3535:22:97"},"scope":31234,"src":"3468:175:97","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31221,"nodeType":"Block","src":"3818:79:97","statements":[{"AST":{"nativeSrc":"3853:38:97","nodeType":"YulBlock","src":"3853:38:97","statements":[{"nativeSrc":"3867:14:97","nodeType":"YulAssignment","src":"3867:14:97","value":{"name":"slot","nativeSrc":"3877:4:97","nodeType":"YulIdentifier","src":"3877:4:97"},"variableNames":[{"name":"r.slot","nativeSrc":"3867:6:97","nodeType":"YulIdentifier","src":"3867:6:97"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":31218,"isOffset":false,"isSlot":true,"src":"3867:6:97","suffix":"slot","valueSize":1},{"declaration":31214,"isOffset":false,"isSlot":false,"src":"3877:4:97","valueSize":1}],"flags":["memory-safe"],"id":31220,"nodeType":"InlineAssembly","src":"3828:63:97"}]},"documentation":{"id":31212,"nodeType":"StructuredDocumentation","src":"3649:84:97","text":" @dev Returns a `BytesSlot` with member `value` located at `slot`."},"id":31222,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"3747:12:97","nodeType":"FunctionDefinition","parameters":{"id":31215,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31214,"mutability":"mutable","name":"slot","nameLocation":"3768:4:97","nodeType":"VariableDeclaration","scope":31222,"src":"3760:12:97","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":31213,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3760:7:97","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3759:14:97"},"returnParameters":{"id":31219,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31218,"mutability":"mutable","name":"r","nameLocation":"3815:1:97","nodeType":"VariableDeclaration","scope":31222,"src":"3797:19:97","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$31134_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":31217,"nodeType":"UserDefinedTypeName","pathNode":{"id":31216,"name":"BytesSlot","nameLocations":["3797:9:97"],"nodeType":"IdentifierPath","referencedDeclaration":31134,"src":"3797:9:97"},"referencedDeclaration":31134,"src":"3797:9:97","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$31134_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"3796:21:97"},"scope":31234,"src":"3738:159:97","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31232,"nodeType":"Block","src":"4094:85:97","statements":[{"AST":{"nativeSrc":"4129:44:97","nodeType":"YulBlock","src":"4129:44:97","statements":[{"nativeSrc":"4143:20:97","nodeType":"YulAssignment","src":"4143:20:97","value":{"name":"store.slot","nativeSrc":"4153:10:97","nodeType":"YulIdentifier","src":"4153:10:97"},"variableNames":[{"name":"r.slot","nativeSrc":"4143:6:97","nodeType":"YulIdentifier","src":"4143:6:97"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":31229,"isOffset":false,"isSlot":true,"src":"4143:6:97","suffix":"slot","valueSize":1},{"declaration":31225,"isOffset":false,"isSlot":true,"src":"4153:10:97","suffix":"slot","valueSize":1}],"flags":["memory-safe"],"id":31231,"nodeType":"InlineAssembly","src":"4104:69:97"}]},"documentation":{"id":31223,"nodeType":"StructuredDocumentation","src":"3903:99:97","text":" @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`."},"id":31233,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"4016:12:97","nodeType":"FunctionDefinition","parameters":{"id":31226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31225,"mutability":"mutable","name":"store","nameLocation":"4043:5:97","nodeType":"VariableDeclaration","scope":31233,"src":"4029:19:97","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":31224,"name":"bytes","nodeType":"ElementaryTypeName","src":"4029:5:97","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4028:21:97"},"returnParameters":{"id":31230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31229,"mutability":"mutable","name":"r","nameLocation":"4091:1:97","nodeType":"VariableDeclaration","scope":31233,"src":"4073:19:97","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$31134_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":31228,"nodeType":"UserDefinedTypeName","pathNode":{"id":31227,"name":"BytesSlot","nameLocations":["4073:9:97"],"nodeType":"IdentifierPath","referencedDeclaration":31134,"src":"4073:9:97"},"referencedDeclaration":31134,"src":"4073:9:97","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$31134_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"4072:21:97"},"scope":31234,"src":"4007:172:97","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":31235,"src":"1407:2774:97","usedErrors":[],"usedEvents":[]}],"src":"193:3989:97"},"id":97},"@openzeppelin/contracts/utils/Strings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","exportedSymbols":{"Bytes":[26759],"Math":[35187],"SafeCast":[36952],"SignedMath":[37096],"Strings":[32714]},"id":32715,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":31236,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"101:24:98"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"./math/Math.sol","id":31238,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":32715,"sourceUnit":35188,"src":"127:37:98","symbolAliases":[{"foreign":{"id":31237,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"135:4:98","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./math/SafeCast.sol","id":31240,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":32715,"sourceUnit":36953,"src":"165:45:98","symbolAliases":[{"foreign":{"id":31239,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"173:8:98","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","file":"./math/SignedMath.sol","id":31242,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":32715,"sourceUnit":37097,"src":"211:49:98","symbolAliases":[{"foreign":{"id":31241,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37096,"src":"219:10:98","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Bytes.sol","file":"./Bytes.sol","id":31244,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":32715,"sourceUnit":26760,"src":"261:34:98","symbolAliases":[{"foreign":{"id":31243,"name":"Bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26759,"src":"269:5:98","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Strings","contractDependencies":[],"contractKind":"library","documentation":{"id":31245,"nodeType":"StructuredDocumentation","src":"297:34:98","text":" @dev String operations."},"fullyImplemented":true,"id":32714,"linearizedBaseContracts":[32714],"name":"Strings","nameLocation":"340:7:98","nodeType":"ContractDefinition","nodes":[{"global":false,"id":31247,"libraryName":{"id":31246,"name":"SafeCast","nameLocations":["360:8:98"],"nodeType":"IdentifierPath","referencedDeclaration":36952,"src":"360:8:98"},"nodeType":"UsingForDirective","src":"354:21:98"},{"constant":true,"id":31250,"mutability":"constant","name":"HEX_DIGITS","nameLocation":"406:10:98","nodeType":"VariableDeclaration","scope":32714,"src":"381:56:98","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":31248,"name":"bytes16","nodeType":"ElementaryTypeName","src":"381:7:98","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"value":{"hexValue":"30313233343536373839616263646566","id":31249,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"419:18:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb29997ed99ead0db59ce4d12b7d3723198c827273e5796737c926d78019c39f","typeString":"literal_string \"0123456789abcdef\""},"value":"0123456789abcdef"},"visibility":"private"},{"constant":true,"id":31253,"mutability":"constant","name":"ADDRESS_LENGTH","nameLocation":"466:14:98","nodeType":"VariableDeclaration","scope":32714,"src":"443:42:98","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":31251,"name":"uint8","nodeType":"ElementaryTypeName","src":"443:5:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"3230","id":31252,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"483:2:98","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"visibility":"private"},{"constant":true,"id":31289,"mutability":"constant","name":"SPECIAL_CHARS_LOOKUP","nameLocation":"516:20:98","nodeType":"VariableDeclaration","scope":32714,"src":"491:302:98","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31254,"name":"uint256","nodeType":"ElementaryTypeName","src":"491:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_rational_4951760157141521116776380160_by_1","typeString":"int_const 4951760157141521116776380160"},"id":31288,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_17179883264_by_1","typeString":"int_const 17179883264"},"id":31283,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_14080_by_1","typeString":"int_const 14080"},"id":31278,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_5888_by_1","typeString":"int_const 5888"},"id":31273,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_1792_by_1","typeString":"int_const 1792"},"id":31268,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_768_by_1","typeString":"int_const 768"},"id":31263,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":31257,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":31255,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"548:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783038","id":31256,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"553:4:98","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"0x08"},"src":"548:9:98","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":31258,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"547:11:98","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_512_by_1","typeString":"int_const 512"},"id":31261,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":31259,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"587:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783039","id":31260,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"592:4:98","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"0x09"},"src":"587:9:98","typeDescriptions":{"typeIdentifier":"t_rational_512_by_1","typeString":"int_const 512"}}],"id":31262,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"586:11:98","typeDescriptions":{"typeIdentifier":"t_rational_512_by_1","typeString":"int_const 512"}},"src":"547:50:98","typeDescriptions":{"typeIdentifier":"t_rational_768_by_1","typeString":"int_const 768"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_1024_by_1","typeString":"int_const 1024"},"id":31266,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":31264,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"620:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783061","id":31265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"625:4:98","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"0x0a"},"src":"620:9:98","typeDescriptions":{"typeIdentifier":"t_rational_1024_by_1","typeString":"int_const 1024"}}],"id":31267,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"619:11:98","typeDescriptions":{"typeIdentifier":"t_rational_1024_by_1","typeString":"int_const 1024"}},"src":"547:83:98","typeDescriptions":{"typeIdentifier":"t_rational_1792_by_1","typeString":"int_const 1792"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4096_by_1","typeString":"int_const 4096"},"id":31271,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":31269,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"657:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783063","id":31270,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"662:4:98","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"0x0c"},"src":"657:9:98","typeDescriptions":{"typeIdentifier":"t_rational_4096_by_1","typeString":"int_const 4096"}}],"id":31272,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"656:11:98","typeDescriptions":{"typeIdentifier":"t_rational_4096_by_1","typeString":"int_const 4096"}},"src":"547:120:98","typeDescriptions":{"typeIdentifier":"t_rational_5888_by_1","typeString":"int_const 5888"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_8192_by_1","typeString":"int_const 8192"},"id":31276,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":31274,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"696:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783064","id":31275,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"701:4:98","typeDescriptions":{"typeIdentifier":"t_rational_13_by_1","typeString":"int_const 13"},"value":"0x0d"},"src":"696:9:98","typeDescriptions":{"typeIdentifier":"t_rational_8192_by_1","typeString":"int_const 8192"}}],"id":31277,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"695:11:98","typeDescriptions":{"typeIdentifier":"t_rational_8192_by_1","typeString":"int_const 8192"}},"src":"547:159:98","typeDescriptions":{"typeIdentifier":"t_rational_14080_by_1","typeString":"int_const 14080"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_17179869184_by_1","typeString":"int_const 17179869184"},"id":31281,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":31279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"741:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783232","id":31280,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"746:4:98","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"src":"741:9:98","typeDescriptions":{"typeIdentifier":"t_rational_17179869184_by_1","typeString":"int_const 17179869184"}}],"id":31282,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"740:11:98","typeDescriptions":{"typeIdentifier":"t_rational_17179869184_by_1","typeString":"int_const 17179869184"}},"src":"547:204:98","typeDescriptions":{"typeIdentifier":"t_rational_17179883264_by_1","typeString":"int_const 17179883264"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4951760157141521099596496896_by_1","typeString":"int_const 4951760157141521099596496896"},"id":31286,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":31284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"783:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783563","id":31285,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"788:4:98","typeDescriptions":{"typeIdentifier":"t_rational_92_by_1","typeString":"int_const 92"},"value":"0x5c"},"src":"783:9:98","typeDescriptions":{"typeIdentifier":"t_rational_4951760157141521099596496896_by_1","typeString":"int_const 4951760157141521099596496896"}}],"id":31287,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"782:11:98","typeDescriptions":{"typeIdentifier":"t_rational_4951760157141521099596496896_by_1","typeString":"int_const 4951760157141521099596496896"}},"src":"547:246:98","typeDescriptions":{"typeIdentifier":"t_rational_4951760157141521116776380160_by_1","typeString":"int_const 4951760157141521116776380160"}},"visibility":"private"},{"documentation":{"id":31290,"nodeType":"StructuredDocumentation","src":"813:81:98","text":" @dev The `value` string doesn't fit in the specified `length`."},"errorSelector":"e22e27eb","id":31296,"name":"StringsInsufficientHexLength","nameLocation":"905:28:98","nodeType":"ErrorDefinition","parameters":{"id":31295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31292,"mutability":"mutable","name":"value","nameLocation":"942:5:98","nodeType":"VariableDeclaration","scope":31296,"src":"934:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31291,"name":"uint256","nodeType":"ElementaryTypeName","src":"934:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31294,"mutability":"mutable","name":"length","nameLocation":"957:6:98","nodeType":"VariableDeclaration","scope":31296,"src":"949:14:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31293,"name":"uint256","nodeType":"ElementaryTypeName","src":"949:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"933:31:98"},"src":"899:66:98"},{"documentation":{"id":31297,"nodeType":"StructuredDocumentation","src":"971:108:98","text":" @dev The string being parsed contains characters that are not in scope of the given base."},"errorSelector":"94e2737e","id":31299,"name":"StringsInvalidChar","nameLocation":"1090:18:98","nodeType":"ErrorDefinition","parameters":{"id":31298,"nodeType":"ParameterList","parameters":[],"src":"1108:2:98"},"src":"1084:27:98"},{"documentation":{"id":31300,"nodeType":"StructuredDocumentation","src":"1117:84:98","text":" @dev The string being parsed is not a properly formatted address."},"errorSelector":"1d15ae44","id":31302,"name":"StringsInvalidAddressFormat","nameLocation":"1212:27:98","nodeType":"ErrorDefinition","parameters":{"id":31301,"nodeType":"ParameterList","parameters":[],"src":"1239:2:98"},"src":"1206:36:98"},{"body":{"id":31349,"nodeType":"Block","src":"1414:563:98","statements":[{"id":31348,"nodeType":"UncheckedBlock","src":"1424:547:98","statements":[{"assignments":[31311],"declarations":[{"constant":false,"id":31311,"mutability":"mutable","name":"length","nameLocation":"1456:6:98","nodeType":"VariableDeclaration","scope":31348,"src":"1448:14:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31310,"name":"uint256","nodeType":"ElementaryTypeName","src":"1448:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":31318,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":31314,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31305,"src":"1476:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":31312,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"1465:4:98","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":31313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1470:5:98","memberName":"log10","nodeType":"MemberAccess","referencedDeclaration":34998,"src":"1465:10:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":31315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1465:17:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":31316,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1485:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1465:21:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1448:38:98"},{"assignments":[31320],"declarations":[{"constant":false,"id":31320,"mutability":"mutable","name":"buffer","nameLocation":"1514:6:98","nodeType":"VariableDeclaration","scope":31348,"src":"1500:20:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31319,"name":"string","nodeType":"ElementaryTypeName","src":"1500:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":31325,"initialValue":{"arguments":[{"id":31323,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31311,"src":"1534:6:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":31322,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1523:10:98","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"},"typeName":{"id":31321,"name":"string","nodeType":"ElementaryTypeName","src":"1527:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"id":31324,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1523:18:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"1500:41:98"},{"assignments":[31327],"declarations":[{"constant":false,"id":31327,"mutability":"mutable","name":"ptr","nameLocation":"1563:3:98","nodeType":"VariableDeclaration","scope":31348,"src":"1555:11:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31326,"name":"uint256","nodeType":"ElementaryTypeName","src":"1555:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":31328,"nodeType":"VariableDeclarationStatement","src":"1555:11:98"},{"AST":{"nativeSrc":"1605:69:98","nodeType":"YulBlock","src":"1605:69:98","statements":[{"nativeSrc":"1623:37:98","nodeType":"YulAssignment","src":"1623:37:98","value":{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"1638:6:98","nodeType":"YulIdentifier","src":"1638:6:98"},{"kind":"number","nativeSrc":"1646:4:98","nodeType":"YulLiteral","src":"1646:4:98","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1634:3:98","nodeType":"YulIdentifier","src":"1634:3:98"},"nativeSrc":"1634:17:98","nodeType":"YulFunctionCall","src":"1634:17:98"},{"name":"length","nativeSrc":"1653:6:98","nodeType":"YulIdentifier","src":"1653:6:98"}],"functionName":{"name":"add","nativeSrc":"1630:3:98","nodeType":"YulIdentifier","src":"1630:3:98"},"nativeSrc":"1630:30:98","nodeType":"YulFunctionCall","src":"1630:30:98"},"variableNames":[{"name":"ptr","nativeSrc":"1623:3:98","nodeType":"YulIdentifier","src":"1623:3:98"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":31320,"isOffset":false,"isSlot":false,"src":"1638:6:98","valueSize":1},{"declaration":31311,"isOffset":false,"isSlot":false,"src":"1653:6:98","valueSize":1},{"declaration":31327,"isOffset":false,"isSlot":false,"src":"1623:3:98","valueSize":1}],"flags":["memory-safe"],"id":31329,"nodeType":"InlineAssembly","src":"1580:94:98"},{"body":{"id":31344,"nodeType":"Block","src":"1700:234:98","statements":[{"expression":{"id":31332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":false,"src":"1718:5:98","subExpression":{"id":31331,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31327,"src":"1718:3:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31333,"nodeType":"ExpressionStatement","src":"1718:5:98"},{"AST":{"nativeSrc":"1766:86:98","nodeType":"YulBlock","src":"1766:86:98","statements":[{"expression":{"arguments":[{"name":"ptr","nativeSrc":"1796:3:98","nodeType":"YulIdentifier","src":"1796:3:98"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1810:5:98","nodeType":"YulIdentifier","src":"1810:5:98"},{"kind":"number","nativeSrc":"1817:2:98","nodeType":"YulLiteral","src":"1817:2:98","type":"","value":"10"}],"functionName":{"name":"mod","nativeSrc":"1806:3:98","nodeType":"YulIdentifier","src":"1806:3:98"},"nativeSrc":"1806:14:98","nodeType":"YulFunctionCall","src":"1806:14:98"},{"name":"HEX_DIGITS","nativeSrc":"1822:10:98","nodeType":"YulIdentifier","src":"1822:10:98"}],"functionName":{"name":"byte","nativeSrc":"1801:4:98","nodeType":"YulIdentifier","src":"1801:4:98"},"nativeSrc":"1801:32:98","nodeType":"YulFunctionCall","src":"1801:32:98"}],"functionName":{"name":"mstore8","nativeSrc":"1788:7:98","nodeType":"YulIdentifier","src":"1788:7:98"},"nativeSrc":"1788:46:98","nodeType":"YulFunctionCall","src":"1788:46:98"},"nativeSrc":"1788:46:98","nodeType":"YulExpressionStatement","src":"1788:46:98"}]},"evmVersion":"prague","externalReferences":[{"declaration":31250,"isOffset":false,"isSlot":false,"src":"1822:10:98","valueSize":1},{"declaration":31327,"isOffset":false,"isSlot":false,"src":"1796:3:98","valueSize":1},{"declaration":31305,"isOffset":false,"isSlot":false,"src":"1810:5:98","valueSize":1}],"flags":["memory-safe"],"id":31334,"nodeType":"InlineAssembly","src":"1741:111:98"},{"expression":{"id":31337,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":31335,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31305,"src":"1869:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"hexValue":"3130","id":31336,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1878:2:98","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"1869:11:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31338,"nodeType":"ExpressionStatement","src":"1869:11:98"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31339,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31305,"src":"1902:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":31340,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1911:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1902:10:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31343,"nodeType":"IfStatement","src":"1898:21:98","trueBody":{"id":31342,"nodeType":"Break","src":"1914:5:98"}}]},"condition":{"hexValue":"74727565","id":31330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1694:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"id":31345,"nodeType":"WhileStatement","src":"1687:247:98"},{"expression":{"id":31346,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31320,"src":"1954:6:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":31309,"id":31347,"nodeType":"Return","src":"1947:13:98"}]}]},"documentation":{"id":31303,"nodeType":"StructuredDocumentation","src":"1248:90:98","text":" @dev Converts a `uint256` to its ASCII `string` decimal representation."},"id":31350,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"1352:8:98","nodeType":"FunctionDefinition","parameters":{"id":31306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31305,"mutability":"mutable","name":"value","nameLocation":"1369:5:98","nodeType":"VariableDeclaration","scope":31350,"src":"1361:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31304,"name":"uint256","nodeType":"ElementaryTypeName","src":"1361:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1360:15:98"},"returnParameters":{"id":31309,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31308,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31350,"src":"1399:13:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31307,"name":"string","nodeType":"ElementaryTypeName","src":"1399:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1398:15:98"},"scope":32714,"src":"1343:634:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31375,"nodeType":"Block","src":"2153:92:98","statements":[{"expression":{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":31363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31361,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31353,"src":"2184:5:98","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":31362,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2192:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2184:9:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"","id":31365,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2202:2:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":31366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2184:20:98","trueExpression":{"hexValue":"2d","id":31364,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2196:3:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[{"arguments":[{"id":31370,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31353,"src":"2230:5:98","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":31368,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37096,"src":"2215:10:98","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SignedMath_$37096_$","typeString":"type(library SignedMath)"}},"id":31369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2226:3:98","memberName":"abs","nodeType":"MemberAccess","referencedDeclaration":37095,"src":"2215:14:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_int256_$returns$_t_uint256_$","typeString":"function (int256) pure returns (uint256)"}},"id":31371,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2215:21:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":31367,"name":"toString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31350,"src":"2206:8:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":31372,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2206:31:98","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":31359,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2170:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":31358,"name":"string","nodeType":"ElementaryTypeName","src":"2170:6:98","typeDescriptions":{}}},"id":31360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2177:6:98","memberName":"concat","nodeType":"MemberAccess","src":"2170:13:98","typeDescriptions":{"typeIdentifier":"t_function_stringconcat_pure$__$returns$_t_string_memory_ptr_$","typeString":"function () pure returns (string memory)"}},"id":31373,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2170:68:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":31357,"id":31374,"nodeType":"Return","src":"2163:75:98"}]},"documentation":{"id":31351,"nodeType":"StructuredDocumentation","src":"1983:89:98","text":" @dev Converts a `int256` to its ASCII `string` decimal representation."},"id":31376,"implemented":true,"kind":"function","modifiers":[],"name":"toStringSigned","nameLocation":"2086:14:98","nodeType":"FunctionDefinition","parameters":{"id":31354,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31353,"mutability":"mutable","name":"value","nameLocation":"2108:5:98","nodeType":"VariableDeclaration","scope":31376,"src":"2101:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":31352,"name":"int256","nodeType":"ElementaryTypeName","src":"2101:6:98","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"2100:14:98"},"returnParameters":{"id":31357,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31356,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31376,"src":"2138:13:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31355,"name":"string","nodeType":"ElementaryTypeName","src":"2138:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2137:15:98"},"scope":32714,"src":"2077:168:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31395,"nodeType":"Block","src":"2424:100:98","statements":[{"id":31394,"nodeType":"UncheckedBlock","src":"2434:84:98","statements":[{"expression":{"arguments":[{"id":31385,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31379,"src":"2477:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31391,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":31388,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31379,"src":"2496:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":31386,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"2484:4:98","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":31387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2489:6:98","memberName":"log256","nodeType":"MemberAccess","referencedDeclaration":35109,"src":"2484:11:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":31389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2484:18:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":31390,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2505:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2484:22:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":31384,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[31396,31479,31499,31653],"referencedDeclaration":31479,"src":"2465:11:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":31392,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2465:42:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":31383,"id":31393,"nodeType":"Return","src":"2458:49:98"}]}]},"documentation":{"id":31377,"nodeType":"StructuredDocumentation","src":"2251:94:98","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation."},"id":31396,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2359:11:98","nodeType":"FunctionDefinition","parameters":{"id":31380,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31379,"mutability":"mutable","name":"value","nameLocation":"2379:5:98","nodeType":"VariableDeclaration","scope":31396,"src":"2371:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31378,"name":"uint256","nodeType":"ElementaryTypeName","src":"2371:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2370:15:98"},"returnParameters":{"id":31383,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31382,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31396,"src":"2409:13:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31381,"name":"string","nodeType":"ElementaryTypeName","src":"2409:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2408:15:98"},"scope":32714,"src":"2350:174:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31478,"nodeType":"Block","src":"2737:435:98","statements":[{"assignments":[31407],"declarations":[{"constant":false,"id":31407,"mutability":"mutable","name":"localValue","nameLocation":"2755:10:98","nodeType":"VariableDeclaration","scope":31478,"src":"2747:18:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31406,"name":"uint256","nodeType":"ElementaryTypeName","src":"2747:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":31409,"initialValue":{"id":31408,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31399,"src":"2768:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2747:26:98"},{"assignments":[31411],"declarations":[{"constant":false,"id":31411,"mutability":"mutable","name":"buffer","nameLocation":"2796:6:98","nodeType":"VariableDeclaration","scope":31478,"src":"2783:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":31410,"name":"bytes","nodeType":"ElementaryTypeName","src":"2783:5:98","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":31420,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31418,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":31414,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2815:1:98","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":31415,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31401,"src":"2819:6:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2815:10:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":31417,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2828:1:98","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"2815:14:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":31413,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"2805:9:98","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":31412,"name":"bytes","nodeType":"ElementaryTypeName","src":"2809:5:98","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":31419,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2805:25:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"2783:47:98"},{"expression":{"id":31425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":31421,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31411,"src":"2840:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31423,"indexExpression":{"hexValue":"30","id":31422,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2847:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2840:9:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":31424,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2852:3:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"},"src":"2840:15:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":31426,"nodeType":"ExpressionStatement","src":"2840:15:98"},{"expression":{"id":31431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":31427,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31411,"src":"2865:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31429,"indexExpression":{"hexValue":"31","id":31428,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2872:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2865:9:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"78","id":31430,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2877:3:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_7521d1cadbcfa91eec65aa16715b94ffc1c9654ba57ea2ef1a2127bca1127a83","typeString":"literal_string \"x\""},"value":"x"},"src":"2865:15:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":31432,"nodeType":"ExpressionStatement","src":"2865:15:98"},{"body":{"id":31461,"nodeType":"Block","src":"2935:95:98","statements":[{"expression":{"id":31455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":31447,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31411,"src":"2949:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31449,"indexExpression":{"id":31448,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31434,"src":"2956:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2949:9:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":31450,"name":"HEX_DIGITS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31250,"src":"2961:10:98","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":31454,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31451,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31407,"src":"2972:10:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":31452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2985:3:98","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"2972:16:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2961:28:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"2949:40:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":31456,"nodeType":"ExpressionStatement","src":"2949:40:98"},{"expression":{"id":31459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":31457,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31407,"src":"3003:10:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":31458,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3018:1:98","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"3003:16:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31460,"nodeType":"ExpressionStatement","src":"3003:16:98"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31441,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31434,"src":"2923:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":31442,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2927:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2923:5:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31462,"initializationExpression":{"assignments":[31434],"declarations":[{"constant":false,"id":31434,"mutability":"mutable","name":"i","nameLocation":"2903:1:98","nodeType":"VariableDeclaration","scope":31462,"src":"2895:9:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31433,"name":"uint256","nodeType":"ElementaryTypeName","src":"2895:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":31440,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":31435,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2907:1:98","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":31436,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31401,"src":"2911:6:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2907:10:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":31438,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2920:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2907:14:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2895:26:98"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":31445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"2930:3:98","subExpression":{"id":31444,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31434,"src":"2932:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31446,"nodeType":"ExpressionStatement","src":"2930:3:98"},"nodeType":"ForStatement","src":"2890:140:98"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31463,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31407,"src":"3043:10:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":31464,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3057:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3043:15:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31472,"nodeType":"IfStatement","src":"3039:96:98","trueBody":{"id":31471,"nodeType":"Block","src":"3060:75:98","statements":[{"errorCall":{"arguments":[{"id":31467,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31399,"src":"3110:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":31468,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31401,"src":"3117:6:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":31466,"name":"StringsInsufficientHexLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31296,"src":"3081:28:98","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":31469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3081:43:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":31470,"nodeType":"RevertStatement","src":"3074:50:98"}]}},{"expression":{"arguments":[{"id":31475,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31411,"src":"3158:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":31474,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3151:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":31473,"name":"string","nodeType":"ElementaryTypeName","src":"3151:6:98","typeDescriptions":{}}},"id":31476,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3151:14:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":31405,"id":31477,"nodeType":"Return","src":"3144:21:98"}]},"documentation":{"id":31397,"nodeType":"StructuredDocumentation","src":"2530:112:98","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length."},"id":31479,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2656:11:98","nodeType":"FunctionDefinition","parameters":{"id":31402,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31399,"mutability":"mutable","name":"value","nameLocation":"2676:5:98","nodeType":"VariableDeclaration","scope":31479,"src":"2668:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31398,"name":"uint256","nodeType":"ElementaryTypeName","src":"2668:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31401,"mutability":"mutable","name":"length","nameLocation":"2691:6:98","nodeType":"VariableDeclaration","scope":31479,"src":"2683:14:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31400,"name":"uint256","nodeType":"ElementaryTypeName","src":"2683:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2667:31:98"},"returnParameters":{"id":31405,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31404,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31479,"src":"2722:13:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31403,"name":"string","nodeType":"ElementaryTypeName","src":"2722:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2721:15:98"},"scope":32714,"src":"2647:525:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31498,"nodeType":"Block","src":"3404:75:98","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":31492,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31482,"src":"3449:4:98","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":31491,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3441:7:98","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":31490,"name":"uint160","nodeType":"ElementaryTypeName","src":"3441:7:98","typeDescriptions":{}}},"id":31493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3441:13:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":31489,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3433:7:98","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":31488,"name":"uint256","nodeType":"ElementaryTypeName","src":"3433:7:98","typeDescriptions":{}}},"id":31494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3433:22:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":31495,"name":"ADDRESS_LENGTH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31253,"src":"3457:14:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":31487,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[31396,31479,31499,31653],"referencedDeclaration":31479,"src":"3421:11:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":31496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3421:51:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":31486,"id":31497,"nodeType":"Return","src":"3414:58:98"}]},"documentation":{"id":31480,"nodeType":"StructuredDocumentation","src":"3178:148:98","text":" @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal\n representation."},"id":31499,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"3340:11:98","nodeType":"FunctionDefinition","parameters":{"id":31483,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31482,"mutability":"mutable","name":"addr","nameLocation":"3360:4:98","nodeType":"VariableDeclaration","scope":31499,"src":"3352:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":31481,"name":"address","nodeType":"ElementaryTypeName","src":"3352:7:98","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3351:14:98"},"returnParameters":{"id":31486,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31485,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31499,"src":"3389:13:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31484,"name":"string","nodeType":"ElementaryTypeName","src":"3389:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3388:15:98"},"scope":32714,"src":"3331:148:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31563,"nodeType":"Block","src":"3736:642:98","statements":[{"assignments":[31508],"declarations":[{"constant":false,"id":31508,"mutability":"mutable","name":"buffer","nameLocation":"3759:6:98","nodeType":"VariableDeclaration","scope":31563,"src":"3746:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":31507,"name":"bytes","nodeType":"ElementaryTypeName","src":"3746:5:98","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":31515,"initialValue":{"arguments":[{"arguments":[{"id":31512,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31502,"src":"3786:4:98","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":31511,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[31396,31479,31499,31653],"referencedDeclaration":31499,"src":"3774:11:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$returns$_t_string_memory_ptr_$","typeString":"function (address) pure returns (string memory)"}},"id":31513,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3774:17:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":31510,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3768:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":31509,"name":"bytes","nodeType":"ElementaryTypeName","src":"3768:5:98","typeDescriptions":{}}},"id":31514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3768:24:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3746:46:98"},{"assignments":[31517],"declarations":[{"constant":false,"id":31517,"mutability":"mutable","name":"hashValue","nameLocation":"3885:9:98","nodeType":"VariableDeclaration","scope":31563,"src":"3877:17:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31516,"name":"uint256","nodeType":"ElementaryTypeName","src":"3877:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":31518,"nodeType":"VariableDeclarationStatement","src":"3877:17:98"},{"AST":{"nativeSrc":"3929:78:98","nodeType":"YulBlock","src":"3929:78:98","statements":[{"nativeSrc":"3943:54:98","nodeType":"YulAssignment","src":"3943:54:98","value":{"arguments":[{"kind":"number","nativeSrc":"3960:2:98","nodeType":"YulLiteral","src":"3960:2:98","type":"","value":"96"},{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"3978:6:98","nodeType":"YulIdentifier","src":"3978:6:98"},{"kind":"number","nativeSrc":"3986:4:98","nodeType":"YulLiteral","src":"3986:4:98","type":"","value":"0x22"}],"functionName":{"name":"add","nativeSrc":"3974:3:98","nodeType":"YulIdentifier","src":"3974:3:98"},"nativeSrc":"3974:17:98","nodeType":"YulFunctionCall","src":"3974:17:98"},{"kind":"number","nativeSrc":"3993:2:98","nodeType":"YulLiteral","src":"3993:2:98","type":"","value":"40"}],"functionName":{"name":"keccak256","nativeSrc":"3964:9:98","nodeType":"YulIdentifier","src":"3964:9:98"},"nativeSrc":"3964:32:98","nodeType":"YulFunctionCall","src":"3964:32:98"}],"functionName":{"name":"shr","nativeSrc":"3956:3:98","nodeType":"YulIdentifier","src":"3956:3:98"},"nativeSrc":"3956:41:98","nodeType":"YulFunctionCall","src":"3956:41:98"},"variableNames":[{"name":"hashValue","nativeSrc":"3943:9:98","nodeType":"YulIdentifier","src":"3943:9:98"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":31508,"isOffset":false,"isSlot":false,"src":"3978:6:98","valueSize":1},{"declaration":31517,"isOffset":false,"isSlot":false,"src":"3943:9:98","valueSize":1}],"flags":["memory-safe"],"id":31519,"nodeType":"InlineAssembly","src":"3904:103:98"},{"body":{"id":31556,"nodeType":"Block","src":"4050:291:98","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":31543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31532,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31530,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31517,"src":"4156:9:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":31531,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4168:3:98","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"4156:15:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"37","id":31533,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4174:1:98","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"4156:19:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":31542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":31537,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31508,"src":"4185:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31539,"indexExpression":{"id":31538,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31521,"src":"4192:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4185:9:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":31536,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4179:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":31535,"name":"uint8","nodeType":"ElementaryTypeName","src":"4179:5:98","typeDescriptions":{}}},"id":31540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4179:16:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3936","id":31541,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4198:2:98","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"4179:21:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4156:44:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31551,"nodeType":"IfStatement","src":"4152:150:98","trueBody":{"id":31550,"nodeType":"Block","src":"4202:100:98","statements":[{"expression":{"id":31548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":31544,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31508,"src":"4270:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31546,"indexExpression":{"id":31545,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31521,"src":"4277:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4270:9:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"^=","rightHandSide":{"hexValue":"30783230","id":31547,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4283:4:98","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"src":"4270:17:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":31549,"nodeType":"ExpressionStatement","src":"4270:17:98"}]}},{"expression":{"id":31554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":31552,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31517,"src":"4315:9:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":31553,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4329:1:98","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"4315:15:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31555,"nodeType":"ExpressionStatement","src":"4315:15:98"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31524,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31521,"src":"4038:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":31525,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4042:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4038:5:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31557,"initializationExpression":{"assignments":[31521],"declarations":[{"constant":false,"id":31521,"mutability":"mutable","name":"i","nameLocation":"4030:1:98","nodeType":"VariableDeclaration","scope":31557,"src":"4022:9:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31520,"name":"uint256","nodeType":"ElementaryTypeName","src":"4022:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":31523,"initialValue":{"hexValue":"3431","id":31522,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4034:2:98","typeDescriptions":{"typeIdentifier":"t_rational_41_by_1","typeString":"int_const 41"},"value":"41"},"nodeType":"VariableDeclarationStatement","src":"4022:14:98"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":31528,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"4045:3:98","subExpression":{"id":31527,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31521,"src":"4047:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31529,"nodeType":"ExpressionStatement","src":"4045:3:98"},"nodeType":"ForStatement","src":"4017:324:98"},{"expression":{"arguments":[{"id":31560,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31508,"src":"4364:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":31559,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4357:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":31558,"name":"string","nodeType":"ElementaryTypeName","src":"4357:6:98","typeDescriptions":{}}},"id":31561,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4357:14:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":31506,"id":31562,"nodeType":"Return","src":"4350:21:98"}]},"documentation":{"id":31500,"nodeType":"StructuredDocumentation","src":"3485:165:98","text":" @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal\n representation, according to EIP-55."},"id":31564,"implemented":true,"kind":"function","modifiers":[],"name":"toChecksumHexString","nameLocation":"3664:19:98","nodeType":"FunctionDefinition","parameters":{"id":31503,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31502,"mutability":"mutable","name":"addr","nameLocation":"3692:4:98","nodeType":"VariableDeclaration","scope":31564,"src":"3684:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":31501,"name":"address","nodeType":"ElementaryTypeName","src":"3684:7:98","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3683:14:98"},"returnParameters":{"id":31506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31505,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31564,"src":"3721:13:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31504,"name":"string","nodeType":"ElementaryTypeName","src":"3721:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3720:15:98"},"scope":32714,"src":"3655:723:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31652,"nodeType":"Block","src":"4567:424:98","statements":[{"id":31651,"nodeType":"UncheckedBlock","src":"4577:408:98","statements":[{"assignments":[31573],"declarations":[{"constant":false,"id":31573,"mutability":"mutable","name":"buffer","nameLocation":"4614:6:98","nodeType":"VariableDeclaration","scope":31651,"src":"4601:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":31572,"name":"bytes","nodeType":"ElementaryTypeName","src":"4601:5:98","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":31583,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":31576,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4633:1:98","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":31577,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31567,"src":"4637:5:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4643:6:98","memberName":"length","nodeType":"MemberAccess","src":"4637:12:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4633:16:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":31580,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4652:1:98","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"4633:20:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":31575,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"4623:9:98","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":31574,"name":"bytes","nodeType":"ElementaryTypeName","src":"4627:5:98","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":31582,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4623:31:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"4601:53:98"},{"expression":{"id":31588,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":31584,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31573,"src":"4668:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31586,"indexExpression":{"hexValue":"30","id":31585,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4675:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4668:9:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":31587,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4680:3:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"},"src":"4668:15:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":31589,"nodeType":"ExpressionStatement","src":"4668:15:98"},{"expression":{"id":31594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":31590,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31573,"src":"4697:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31592,"indexExpression":{"hexValue":"31","id":31591,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4704:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4697:9:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"78","id":31593,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4709:3:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_7521d1cadbcfa91eec65aa16715b94ffc1c9654ba57ea2ef1a2127bca1127a83","typeString":"literal_string \"x\""},"value":"x"},"src":"4697:15:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":31595,"nodeType":"ExpressionStatement","src":"4697:15:98"},{"body":{"id":31644,"nodeType":"Block","src":"4769:171:98","statements":[{"assignments":[31608],"declarations":[{"constant":false,"id":31608,"mutability":"mutable","name":"v","nameLocation":"4793:1:98","nodeType":"VariableDeclaration","scope":31644,"src":"4787:7:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":31607,"name":"uint8","nodeType":"ElementaryTypeName","src":"4787:5:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":31615,"initialValue":{"arguments":[{"baseExpression":{"id":31611,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31567,"src":"4803:5:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31613,"indexExpression":{"id":31612,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31597,"src":"4809:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4803:8:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":31610,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4797:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":31609,"name":"uint8","nodeType":"ElementaryTypeName","src":"4797:5:98","typeDescriptions":{}}},"id":31614,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4797:15:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"4787:25:98"},{"expression":{"id":31628,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":31616,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31573,"src":"4830:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31622,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31621,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31619,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":31617,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4837:1:98","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":31618,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31597,"src":"4841:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4837:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":31620,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4845:1:98","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"4837:9:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4830:17:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":31623,"name":"HEX_DIGITS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31250,"src":"4850:10:98","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":31627,"indexExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":31626,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31624,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31608,"src":"4861:1:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"34","id":31625,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4866:1:98","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"4861:6:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4850:18:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"4830:38:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":31629,"nodeType":"ExpressionStatement","src":"4830:38:98"},{"expression":{"id":31642,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":31630,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31573,"src":"4886:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31636,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31633,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":31631,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4893:1:98","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":31632,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31597,"src":"4897:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4893:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"33","id":31634,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4901:1:98","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"4893:9:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4886:17:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":31637,"name":"HEX_DIGITS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31250,"src":"4906:10:98","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":31641,"indexExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":31640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31638,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31608,"src":"4917:1:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":31639,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4921:3:98","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"4917:7:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4906:19:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"4886:39:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":31643,"nodeType":"ExpressionStatement","src":"4886:39:98"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31600,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31597,"src":"4746:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":31601,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31567,"src":"4750:5:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31602,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4756:6:98","memberName":"length","nodeType":"MemberAccess","src":"4750:12:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4746:16:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31645,"initializationExpression":{"assignments":[31597],"declarations":[{"constant":false,"id":31597,"mutability":"mutable","name":"i","nameLocation":"4739:1:98","nodeType":"VariableDeclaration","scope":31645,"src":"4731:9:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31596,"name":"uint256","nodeType":"ElementaryTypeName","src":"4731:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":31599,"initialValue":{"hexValue":"30","id":31598,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4743:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"4731:13:98"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":31605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"4764:3:98","subExpression":{"id":31604,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31597,"src":"4766:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31606,"nodeType":"ExpressionStatement","src":"4764:3:98"},"nodeType":"ForStatement","src":"4726:214:98"},{"expression":{"arguments":[{"id":31648,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31573,"src":"4967:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":31647,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4960:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":31646,"name":"string","nodeType":"ElementaryTypeName","src":"4960:6:98","typeDescriptions":{}}},"id":31649,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4960:14:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":31571,"id":31650,"nodeType":"Return","src":"4953:21:98"}]}]},"documentation":{"id":31565,"nodeType":"StructuredDocumentation","src":"4384:99:98","text":" @dev Converts a `bytes` buffer to its ASCII `string` hexadecimal representation."},"id":31653,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"4497:11:98","nodeType":"FunctionDefinition","parameters":{"id":31568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31567,"mutability":"mutable","name":"input","nameLocation":"4522:5:98","nodeType":"VariableDeclaration","scope":31653,"src":"4509:18:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":31566,"name":"bytes","nodeType":"ElementaryTypeName","src":"4509:5:98","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4508:20:98"},"returnParameters":{"id":31571,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31570,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31653,"src":"4552:13:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31569,"name":"string","nodeType":"ElementaryTypeName","src":"4552:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4551:15:98"},"scope":32714,"src":"4488:503:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31675,"nodeType":"Block","src":"5146:55:98","statements":[{"expression":{"arguments":[{"arguments":[{"id":31667,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31656,"src":"5181:1:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":31666,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5175:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":31665,"name":"bytes","nodeType":"ElementaryTypeName","src":"5175:5:98","typeDescriptions":{}}},"id":31668,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5175:8:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"arguments":[{"id":31671,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31658,"src":"5191:1:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":31670,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5185:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":31669,"name":"bytes","nodeType":"ElementaryTypeName","src":"5185:5:98","typeDescriptions":{}}},"id":31672,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5185:8:98","tryCall":false,"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"}],"expression":{"id":31663,"name":"Bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26759,"src":"5163:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Bytes_$26759_$","typeString":"type(library Bytes)"}},"id":31664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5169:5:98","memberName":"equal","nodeType":"MemberAccess","referencedDeclaration":26409,"src":"5163:11:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (bytes memory,bytes memory) pure returns (bool)"}},"id":31673,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5163:31:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":31662,"id":31674,"nodeType":"Return","src":"5156:38:98"}]},"documentation":{"id":31654,"nodeType":"StructuredDocumentation","src":"4997:66:98","text":" @dev Returns true if the two strings are equal."},"id":31676,"implemented":true,"kind":"function","modifiers":[],"name":"equal","nameLocation":"5077:5:98","nodeType":"FunctionDefinition","parameters":{"id":31659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31656,"mutability":"mutable","name":"a","nameLocation":"5097:1:98","nodeType":"VariableDeclaration","scope":31676,"src":"5083:15:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31655,"name":"string","nodeType":"ElementaryTypeName","src":"5083:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":31658,"mutability":"mutable","name":"b","nameLocation":"5114:1:98","nodeType":"VariableDeclaration","scope":31676,"src":"5100:15:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31657,"name":"string","nodeType":"ElementaryTypeName","src":"5100:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5082:34:98"},"returnParameters":{"id":31662,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31661,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31676,"src":"5140:4:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":31660,"name":"bool","nodeType":"ElementaryTypeName","src":"5140:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5139:6:98"},"scope":32714,"src":"5068:133:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31694,"nodeType":"Block","src":"5498:64:98","statements":[{"expression":{"arguments":[{"id":31685,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31679,"src":"5525:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":31686,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5532:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":31689,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31679,"src":"5541:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":31688,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5535:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":31687,"name":"bytes","nodeType":"ElementaryTypeName","src":"5535:5:98","typeDescriptions":{}}},"id":31690,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5535:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5548:6:98","memberName":"length","nodeType":"MemberAccess","src":"5535:19:98","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":31684,"name":"parseUint","nodeType":"Identifier","overloadedDeclarations":[31695,31726],"referencedDeclaration":31726,"src":"5515:9:98","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":31692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5515:40:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":31683,"id":31693,"nodeType":"Return","src":"5508:47:98"}]},"documentation":{"id":31677,"nodeType":"StructuredDocumentation","src":"5207:214:98","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":31695,"implemented":true,"kind":"function","modifiers":[],"name":"parseUint","nameLocation":"5435:9:98","nodeType":"FunctionDefinition","parameters":{"id":31680,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31679,"mutability":"mutable","name":"input","nameLocation":"5459:5:98","nodeType":"VariableDeclaration","scope":31695,"src":"5445:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31678,"name":"string","nodeType":"ElementaryTypeName","src":"5445:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5444:21:98"},"returnParameters":{"id":31683,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31682,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31695,"src":"5489:7:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31681,"name":"uint256","nodeType":"ElementaryTypeName","src":"5489:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5488:9:98"},"scope":32714,"src":"5426:136:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31725,"nodeType":"Block","src":"5967:153:98","statements":[{"assignments":[31708,31710],"declarations":[{"constant":false,"id":31708,"mutability":"mutable","name":"success","nameLocation":"5983:7:98","nodeType":"VariableDeclaration","scope":31725,"src":"5978:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":31707,"name":"bool","nodeType":"ElementaryTypeName","src":"5978:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":31710,"mutability":"mutable","name":"value","nameLocation":"6000:5:98","nodeType":"VariableDeclaration","scope":31725,"src":"5992:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31709,"name":"uint256","nodeType":"ElementaryTypeName","src":"5992:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":31716,"initialValue":{"arguments":[{"id":31712,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31698,"src":"6022:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":31713,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31700,"src":"6029:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":31714,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31702,"src":"6036:3:98","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":31711,"name":"tryParseUint","nodeType":"Identifier","overloadedDeclarations":[31747,31784],"referencedDeclaration":31784,"src":"6009:12:98","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":31715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6009:31:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"5977:63:98"},{"condition":{"id":31718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"6054:8:98","subExpression":{"id":31717,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31708,"src":"6055:7:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31722,"nodeType":"IfStatement","src":"6050:41:98","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":31719,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31299,"src":"6071:18:98","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":31720,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6071:20:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":31721,"nodeType":"RevertStatement","src":"6064:27:98"}},{"expression":{"id":31723,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31710,"src":"6108:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":31706,"id":31724,"nodeType":"Return","src":"6101:12:98"}]},"documentation":{"id":31696,"nodeType":"StructuredDocumentation","src":"5568:294:98","text":" @dev Variant of {parseUint-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 into an `uint256` type"},"id":31726,"implemented":true,"kind":"function","modifiers":[],"name":"parseUint","nameLocation":"5876:9:98","nodeType":"FunctionDefinition","parameters":{"id":31703,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31698,"mutability":"mutable","name":"input","nameLocation":"5900:5:98","nodeType":"VariableDeclaration","scope":31726,"src":"5886:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31697,"name":"string","nodeType":"ElementaryTypeName","src":"5886:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":31700,"mutability":"mutable","name":"begin","nameLocation":"5915:5:98","nodeType":"VariableDeclaration","scope":31726,"src":"5907:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31699,"name":"uint256","nodeType":"ElementaryTypeName","src":"5907:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31702,"mutability":"mutable","name":"end","nameLocation":"5930:3:98","nodeType":"VariableDeclaration","scope":31726,"src":"5922:11:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31701,"name":"uint256","nodeType":"ElementaryTypeName","src":"5922:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5885:49:98"},"returnParameters":{"id":31706,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31705,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31726,"src":"5958:7:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31704,"name":"uint256","nodeType":"ElementaryTypeName","src":"5958:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5957:9:98"},"scope":32714,"src":"5867:253:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31746,"nodeType":"Block","src":"6441:83:98","statements":[{"expression":{"arguments":[{"id":31737,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31729,"src":"6487:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":31738,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6494:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":31741,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31729,"src":"6503:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":31740,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6497:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":31739,"name":"bytes","nodeType":"ElementaryTypeName","src":"6497:5:98","typeDescriptions":{}}},"id":31742,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6497:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31743,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6510:6:98","memberName":"length","nodeType":"MemberAccess","src":"6497:19:98","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":31736,"name":"_tryParseUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31854,"src":"6458:28:98","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":31744,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6458:59:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":31735,"id":31745,"nodeType":"Return","src":"6451:66:98"}]},"documentation":{"id":31727,"nodeType":"StructuredDocumentation","src":"6126:215:98","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":31747,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseUint","nameLocation":"6355:12:98","nodeType":"FunctionDefinition","parameters":{"id":31730,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31729,"mutability":"mutable","name":"input","nameLocation":"6382:5:98","nodeType":"VariableDeclaration","scope":31747,"src":"6368:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31728,"name":"string","nodeType":"ElementaryTypeName","src":"6368:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6367:21:98"},"returnParameters":{"id":31735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31732,"mutability":"mutable","name":"success","nameLocation":"6417:7:98","nodeType":"VariableDeclaration","scope":31747,"src":"6412:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":31731,"name":"bool","nodeType":"ElementaryTypeName","src":"6412:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":31734,"mutability":"mutable","name":"value","nameLocation":"6434:5:98","nodeType":"VariableDeclaration","scope":31747,"src":"6426:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31733,"name":"uint256","nodeType":"ElementaryTypeName","src":"6426:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6411:29:98"},"scope":32714,"src":"6346:178:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31783,"nodeType":"Block","src":"6926:144:98","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":31771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31761,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31754,"src":"6940:3:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":31764,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31750,"src":"6952:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":31763,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6946:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":31762,"name":"bytes","nodeType":"ElementaryTypeName","src":"6946:5:98","typeDescriptions":{}}},"id":31765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6946:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6959:6:98","memberName":"length","nodeType":"MemberAccess","src":"6946:19:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6940:25:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31768,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31752,"src":"6969:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":31769,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31754,"src":"6977:3:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6969:11:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6940:40:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31776,"nodeType":"IfStatement","src":"6936:63:98","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":31772,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6990:5:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":31773,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6997:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":31774,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6989:10:98","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":31760,"id":31775,"nodeType":"Return","src":"6982:17:98"}},{"expression":{"arguments":[{"id":31778,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31750,"src":"7045:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":31779,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31752,"src":"7052:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":31780,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31754,"src":"7059:3:98","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":31777,"name":"_tryParseUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31854,"src":"7016:28:98","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":31781,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7016:47:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":31760,"id":31782,"nodeType":"Return","src":"7009:54:98"}]},"documentation":{"id":31748,"nodeType":"StructuredDocumentation","src":"6530:238:98","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":31784,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseUint","nameLocation":"6782:12:98","nodeType":"FunctionDefinition","parameters":{"id":31755,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31750,"mutability":"mutable","name":"input","nameLocation":"6818:5:98","nodeType":"VariableDeclaration","scope":31784,"src":"6804:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31749,"name":"string","nodeType":"ElementaryTypeName","src":"6804:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":31752,"mutability":"mutable","name":"begin","nameLocation":"6841:5:98","nodeType":"VariableDeclaration","scope":31784,"src":"6833:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31751,"name":"uint256","nodeType":"ElementaryTypeName","src":"6833:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31754,"mutability":"mutable","name":"end","nameLocation":"6864:3:98","nodeType":"VariableDeclaration","scope":31784,"src":"6856:11:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31753,"name":"uint256","nodeType":"ElementaryTypeName","src":"6856:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6794:79:98"},"returnParameters":{"id":31760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31757,"mutability":"mutable","name":"success","nameLocation":"6902:7:98","nodeType":"VariableDeclaration","scope":31784,"src":"6897:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":31756,"name":"bool","nodeType":"ElementaryTypeName","src":"6897:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":31759,"mutability":"mutable","name":"value","nameLocation":"6919:5:98","nodeType":"VariableDeclaration","scope":31784,"src":"6911:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31758,"name":"uint256","nodeType":"ElementaryTypeName","src":"6911:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6896:29:98"},"scope":32714,"src":"6773:297:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31853,"nodeType":"Block","src":"7473:347:98","statements":[{"assignments":[31799],"declarations":[{"constant":false,"id":31799,"mutability":"mutable","name":"buffer","nameLocation":"7496:6:98","nodeType":"VariableDeclaration","scope":31853,"src":"7483:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":31798,"name":"bytes","nodeType":"ElementaryTypeName","src":"7483:5:98","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":31804,"initialValue":{"arguments":[{"id":31802,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31787,"src":"7511:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":31801,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7505:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":31800,"name":"bytes","nodeType":"ElementaryTypeName","src":"7505:5:98","typeDescriptions":{}}},"id":31803,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7505:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"7483:34:98"},{"assignments":[31806],"declarations":[{"constant":false,"id":31806,"mutability":"mutable","name":"result","nameLocation":"7536:6:98","nodeType":"VariableDeclaration","scope":31853,"src":"7528:14:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31805,"name":"uint256","nodeType":"ElementaryTypeName","src":"7528:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":31808,"initialValue":{"hexValue":"30","id":31807,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7545:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"7528:18:98"},{"body":{"id":31847,"nodeType":"Block","src":"7594:189:98","statements":[{"assignments":[31820],"declarations":[{"constant":false,"id":31820,"mutability":"mutable","name":"chr","nameLocation":"7614:3:98","nodeType":"VariableDeclaration","scope":31847,"src":"7608:9:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":31819,"name":"uint8","nodeType":"ElementaryTypeName","src":"7608:5:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":31830,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":31825,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31799,"src":"7663:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":31826,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31810,"src":"7671:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":31824,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32713,"src":"7640:22:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":31827,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7640:33:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":31823,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7633:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":31822,"name":"bytes1","nodeType":"ElementaryTypeName","src":"7633:6:98","typeDescriptions":{}}},"id":31828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7633:41:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":31821,"name":"_tryParseChr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32534,"src":"7620:12:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes1_$returns$_t_uint8_$","typeString":"function (bytes1) pure returns (uint8)"}},"id":31829,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7620:55:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"7608:67:98"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":31833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31831,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31820,"src":"7693:3:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"39","id":31832,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7699:1:98","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"src":"7693:7:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31838,"nodeType":"IfStatement","src":"7689:30:98","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":31834,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7710:5:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":31835,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7717:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":31836,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"7709:10:98","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":31797,"id":31837,"nodeType":"Return","src":"7702:17:98"}},{"expression":{"id":31841,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":31839,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31806,"src":"7733:6:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"hexValue":"3130","id":31840,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7743:2:98","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"7733:12:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31842,"nodeType":"ExpressionStatement","src":"7733:12:98"},{"expression":{"id":31845,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":31843,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31806,"src":"7759:6:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":31844,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31820,"src":"7769:3:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"7759:13:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31846,"nodeType":"ExpressionStatement","src":"7759:13:98"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31815,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31813,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31810,"src":"7580:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":31814,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31791,"src":"7584:3:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7580:7:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31848,"initializationExpression":{"assignments":[31810],"declarations":[{"constant":false,"id":31810,"mutability":"mutable","name":"i","nameLocation":"7569:1:98","nodeType":"VariableDeclaration","scope":31848,"src":"7561:9:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31809,"name":"uint256","nodeType":"ElementaryTypeName","src":"7561:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":31812,"initialValue":{"id":31811,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31789,"src":"7573:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7561:17:98"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":31817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"7589:3:98","subExpression":{"id":31816,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31810,"src":"7591:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":31818,"nodeType":"ExpressionStatement","src":"7589:3:98"},"nodeType":"ForStatement","src":"7556:227:98"},{"expression":{"components":[{"hexValue":"74727565","id":31849,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7800:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":31850,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31806,"src":"7806:6:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":31851,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7799:14:98","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":31797,"id":31852,"nodeType":"Return","src":"7792:21:98"}]},"documentation":{"id":31785,"nodeType":"StructuredDocumentation","src":"7076:224:98","text":" @dev Implementation of {tryParseUint-string-uint256-uint256} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":31854,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseUintUncheckedBounds","nameLocation":"7314:28:98","nodeType":"FunctionDefinition","parameters":{"id":31792,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31787,"mutability":"mutable","name":"input","nameLocation":"7366:5:98","nodeType":"VariableDeclaration","scope":31854,"src":"7352:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31786,"name":"string","nodeType":"ElementaryTypeName","src":"7352:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":31789,"mutability":"mutable","name":"begin","nameLocation":"7389:5:98","nodeType":"VariableDeclaration","scope":31854,"src":"7381:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31788,"name":"uint256","nodeType":"ElementaryTypeName","src":"7381:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31791,"mutability":"mutable","name":"end","nameLocation":"7412:3:98","nodeType":"VariableDeclaration","scope":31854,"src":"7404:11:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31790,"name":"uint256","nodeType":"ElementaryTypeName","src":"7404:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7342:79:98"},"returnParameters":{"id":31797,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31794,"mutability":"mutable","name":"success","nameLocation":"7449:7:98","nodeType":"VariableDeclaration","scope":31854,"src":"7444:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":31793,"name":"bool","nodeType":"ElementaryTypeName","src":"7444:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":31796,"mutability":"mutable","name":"value","nameLocation":"7466:5:98","nodeType":"VariableDeclaration","scope":31854,"src":"7458:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31795,"name":"uint256","nodeType":"ElementaryTypeName","src":"7458:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7443:29:98"},"scope":32714,"src":"7305:515:98","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":31872,"nodeType":"Block","src":"8117:63:98","statements":[{"expression":{"arguments":[{"id":31863,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31857,"src":"8143:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":31864,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8150:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":31867,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31857,"src":"8159:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":31866,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8153:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":31865,"name":"bytes","nodeType":"ElementaryTypeName","src":"8153:5:98","typeDescriptions":{}}},"id":31868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8153:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8166:6:98","memberName":"length","nodeType":"MemberAccess","src":"8153:19:98","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":31862,"name":"parseInt","nodeType":"Identifier","overloadedDeclarations":[31873,31904],"referencedDeclaration":31904,"src":"8134:8:98","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":31870,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8134:39:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":31861,"id":31871,"nodeType":"Return","src":"8127:46:98"}]},"documentation":{"id":31855,"nodeType":"StructuredDocumentation","src":"7826:216:98","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":31873,"implemented":true,"kind":"function","modifiers":[],"name":"parseInt","nameLocation":"8056:8:98","nodeType":"FunctionDefinition","parameters":{"id":31858,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31857,"mutability":"mutable","name":"input","nameLocation":"8079:5:98","nodeType":"VariableDeclaration","scope":31873,"src":"8065:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31856,"name":"string","nodeType":"ElementaryTypeName","src":"8065:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8064:21:98"},"returnParameters":{"id":31861,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31860,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31873,"src":"8109:6:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":31859,"name":"int256","nodeType":"ElementaryTypeName","src":"8109:6:98","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"8108:8:98"},"scope":32714,"src":"8047:133:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31903,"nodeType":"Block","src":"8585:151:98","statements":[{"assignments":[31886,31888],"declarations":[{"constant":false,"id":31886,"mutability":"mutable","name":"success","nameLocation":"8601:7:98","nodeType":"VariableDeclaration","scope":31903,"src":"8596:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":31885,"name":"bool","nodeType":"ElementaryTypeName","src":"8596:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":31888,"mutability":"mutable","name":"value","nameLocation":"8617:5:98","nodeType":"VariableDeclaration","scope":31903,"src":"8610:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":31887,"name":"int256","nodeType":"ElementaryTypeName","src":"8610:6:98","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":31894,"initialValue":{"arguments":[{"id":31890,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31876,"src":"8638:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":31891,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31878,"src":"8645:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":31892,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31880,"src":"8652:3:98","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":31889,"name":"tryParseInt","nodeType":"Identifier","overloadedDeclarations":[31925,31967],"referencedDeclaration":31967,"src":"8626:11:98","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":31893,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8626:30:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"nodeType":"VariableDeclarationStatement","src":"8595:61:98"},{"condition":{"id":31896,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"8670:8:98","subExpression":{"id":31895,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31886,"src":"8671:7:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31900,"nodeType":"IfStatement","src":"8666:41:98","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":31897,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31299,"src":"8687:18:98","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":31898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8687:20:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":31899,"nodeType":"RevertStatement","src":"8680:27:98"}},{"expression":{"id":31901,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31888,"src":"8724:5:98","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":31884,"id":31902,"nodeType":"Return","src":"8717:12:98"}]},"documentation":{"id":31874,"nodeType":"StructuredDocumentation","src":"8186:296:98","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":31904,"implemented":true,"kind":"function","modifiers":[],"name":"parseInt","nameLocation":"8496:8:98","nodeType":"FunctionDefinition","parameters":{"id":31881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31876,"mutability":"mutable","name":"input","nameLocation":"8519:5:98","nodeType":"VariableDeclaration","scope":31904,"src":"8505:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31875,"name":"string","nodeType":"ElementaryTypeName","src":"8505:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":31878,"mutability":"mutable","name":"begin","nameLocation":"8534:5:98","nodeType":"VariableDeclaration","scope":31904,"src":"8526:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31877,"name":"uint256","nodeType":"ElementaryTypeName","src":"8526:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31880,"mutability":"mutable","name":"end","nameLocation":"8549:3:98","nodeType":"VariableDeclaration","scope":31904,"src":"8541:11:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31879,"name":"uint256","nodeType":"ElementaryTypeName","src":"8541:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8504:49:98"},"returnParameters":{"id":31884,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31883,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":31904,"src":"8577:6:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":31882,"name":"int256","nodeType":"ElementaryTypeName","src":"8577:6:98","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"8576:8:98"},"scope":32714,"src":"8487:249:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":31924,"nodeType":"Block","src":"9127:82:98","statements":[{"expression":{"arguments":[{"id":31915,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31907,"src":"9172:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":31916,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9179:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":31919,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31907,"src":"9188:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":31918,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9182:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":31917,"name":"bytes","nodeType":"ElementaryTypeName","src":"9182:5:98","typeDescriptions":{}}},"id":31920,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9182:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9195:6:98","memberName":"length","nodeType":"MemberAccess","src":"9182:19:98","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":31914,"name":"_tryParseIntUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32088,"src":"9144:27:98","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":31922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9144:58:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":31913,"id":31923,"nodeType":"Return","src":"9137:65:98"}]},"documentation":{"id":31905,"nodeType":"StructuredDocumentation","src":"8742:287:98","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":31925,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseInt","nameLocation":"9043:11:98","nodeType":"FunctionDefinition","parameters":{"id":31908,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31907,"mutability":"mutable","name":"input","nameLocation":"9069:5:98","nodeType":"VariableDeclaration","scope":31925,"src":"9055:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31906,"name":"string","nodeType":"ElementaryTypeName","src":"9055:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"9054:21:98"},"returnParameters":{"id":31913,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31910,"mutability":"mutable","name":"success","nameLocation":"9104:7:98","nodeType":"VariableDeclaration","scope":31925,"src":"9099:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":31909,"name":"bool","nodeType":"ElementaryTypeName","src":"9099:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":31912,"mutability":"mutable","name":"value","nameLocation":"9120:5:98","nodeType":"VariableDeclaration","scope":31925,"src":"9113:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":31911,"name":"int256","nodeType":"ElementaryTypeName","src":"9113:6:98","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9098:28:98"},"scope":32714,"src":"9034:175:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"constant":true,"id":31930,"mutability":"constant","name":"ABS_MIN_INT256","nameLocation":"9240:14:98","nodeType":"VariableDeclaration","scope":32714,"src":"9215:50:98","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31926,"name":"uint256","nodeType":"ElementaryTypeName","src":"9215:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"},"id":31929,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":31927,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9257:1:98","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"323535","id":31928,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9262:3:98","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"9257:8:98","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"}},"visibility":"private"},{"body":{"id":31966,"nodeType":"Block","src":"9731:143:98","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":31954,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31944,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31937,"src":"9745:3:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":31947,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31933,"src":"9757:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":31946,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9751:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":31945,"name":"bytes","nodeType":"ElementaryTypeName","src":"9751:5:98","typeDescriptions":{}}},"id":31948,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9751:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":31949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9764:6:98","memberName":"length","nodeType":"MemberAccess","src":"9751:19:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9745:25:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31951,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31935,"src":"9774:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":31952,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31937,"src":"9782:3:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9774:11:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9745:40:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":31959,"nodeType":"IfStatement","src":"9741:63:98","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":31955,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9795:5:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":31956,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9802:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":31957,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"9794:10:98","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":31943,"id":31958,"nodeType":"Return","src":"9787:17:98"}},{"expression":{"arguments":[{"id":31961,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31933,"src":"9849:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":31962,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31935,"src":"9856:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":31963,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31937,"src":"9863:3:98","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":31960,"name":"_tryParseIntUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32088,"src":"9821:27:98","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":31964,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9821:46:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":31943,"id":31965,"nodeType":"Return","src":"9814:53:98"}]},"documentation":{"id":31931,"nodeType":"StructuredDocumentation","src":"9272:303:98","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":31967,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseInt","nameLocation":"9589:11:98","nodeType":"FunctionDefinition","parameters":{"id":31938,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31933,"mutability":"mutable","name":"input","nameLocation":"9624:5:98","nodeType":"VariableDeclaration","scope":31967,"src":"9610:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31932,"name":"string","nodeType":"ElementaryTypeName","src":"9610:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":31935,"mutability":"mutable","name":"begin","nameLocation":"9647:5:98","nodeType":"VariableDeclaration","scope":31967,"src":"9639:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31934,"name":"uint256","nodeType":"ElementaryTypeName","src":"9639:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31937,"mutability":"mutable","name":"end","nameLocation":"9670:3:98","nodeType":"VariableDeclaration","scope":31967,"src":"9662:11:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31936,"name":"uint256","nodeType":"ElementaryTypeName","src":"9662:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9600:79:98"},"returnParameters":{"id":31943,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31940,"mutability":"mutable","name":"success","nameLocation":"9708:7:98","nodeType":"VariableDeclaration","scope":31967,"src":"9703:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":31939,"name":"bool","nodeType":"ElementaryTypeName","src":"9703:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":31942,"mutability":"mutable","name":"value","nameLocation":"9724:5:98","nodeType":"VariableDeclaration","scope":31967,"src":"9717:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":31941,"name":"int256","nodeType":"ElementaryTypeName","src":"9717:6:98","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9702:28:98"},"scope":32714,"src":"9580:294:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":32087,"nodeType":"Block","src":"10274:812:98","statements":[{"assignments":[31982],"declarations":[{"constant":false,"id":31982,"mutability":"mutable","name":"buffer","nameLocation":"10297:6:98","nodeType":"VariableDeclaration","scope":32087,"src":"10284:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":31981,"name":"bytes","nodeType":"ElementaryTypeName","src":"10284:5:98","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":31987,"initialValue":{"arguments":[{"id":31985,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31970,"src":"10312:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":31984,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10306:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":31983,"name":"bytes","nodeType":"ElementaryTypeName","src":"10306:5:98","typeDescriptions":{}}},"id":31986,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10306:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"10284:34:98"},{"assignments":[31989],"declarations":[{"constant":false,"id":31989,"mutability":"mutable","name":"sign","nameLocation":"10382:4:98","nodeType":"VariableDeclaration","scope":32087,"src":"10375:11:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":31988,"name":"bytes1","nodeType":"ElementaryTypeName","src":"10375:6:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":32005,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":31992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":31990,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31972,"src":"10389:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":31991,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31974,"src":"10398:3:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10389:12:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"arguments":[{"id":32000,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31982,"src":"10446:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":32001,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31972,"src":"10454:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":31999,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32713,"src":"10423:22:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":32002,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10423:37:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":31998,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10416:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":31997,"name":"bytes1","nodeType":"ElementaryTypeName","src":"10416:6:98","typeDescriptions":{}}},"id":32003,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10416:45:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":32004,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"10389:72:98","trueExpression":{"arguments":[{"hexValue":"30","id":31995,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10411:1:98","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":31994,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10404:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":31993,"name":"bytes1","nodeType":"ElementaryTypeName","src":"10404:6:98","typeDescriptions":{}}},"id":31996,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10404:9:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"10375:86:98"},{"assignments":[32007],"declarations":[{"constant":false,"id":32007,"mutability":"mutable","name":"positiveSign","nameLocation":"10547:12:98","nodeType":"VariableDeclaration","scope":32087,"src":"10542:17:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":32006,"name":"bool","nodeType":"ElementaryTypeName","src":"10542:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":32014,"initialValue":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":32013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32008,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31989,"src":"10562:4:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"2b","id":32011,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10577:3:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_728b8dbbe730d9acd55e30e768e6a28a04bea0c61b88108287c2c87d79c98bb8","typeString":"literal_string \"+\""},"value":"+"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_728b8dbbe730d9acd55e30e768e6a28a04bea0c61b88108287c2c87d79c98bb8","typeString":"literal_string \"+\""}],"id":32010,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10570:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":32009,"name":"bytes1","nodeType":"ElementaryTypeName","src":"10570:6:98","typeDescriptions":{}}},"id":32012,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10570:11:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"10562:19:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"10542:39:98"},{"assignments":[32016],"declarations":[{"constant":false,"id":32016,"mutability":"mutable","name":"negativeSign","nameLocation":"10596:12:98","nodeType":"VariableDeclaration","scope":32087,"src":"10591:17:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":32015,"name":"bool","nodeType":"ElementaryTypeName","src":"10591:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":32023,"initialValue":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":32022,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32017,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31989,"src":"10611:4:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"2d","id":32020,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10626:3:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""}],"id":32019,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10619:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":32018,"name":"bytes1","nodeType":"ElementaryTypeName","src":"10619:6:98","typeDescriptions":{}}},"id":32021,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10619:11:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"10611:19:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"10591:39:98"},{"assignments":[32025],"declarations":[{"constant":false,"id":32025,"mutability":"mutable","name":"offset","nameLocation":"10648:6:98","nodeType":"VariableDeclaration","scope":32087,"src":"10640:14:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32024,"name":"uint256","nodeType":"ElementaryTypeName","src":"10640:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":32032,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":32028,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32026,"name":"positiveSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32007,"src":"10658:12:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":32027,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32016,"src":"10674:12:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10658:28:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":32029,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10657:30:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":32030,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10688:6:98","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"10657:37:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":32031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10657:39:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10640:56:98"},{"assignments":[32034,32036],"declarations":[{"constant":false,"id":32034,"mutability":"mutable","name":"absSuccess","nameLocation":"10713:10:98","nodeType":"VariableDeclaration","scope":32087,"src":"10708:15:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":32033,"name":"bool","nodeType":"ElementaryTypeName","src":"10708:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":32036,"mutability":"mutable","name":"absValue","nameLocation":"10733:8:98","nodeType":"VariableDeclaration","scope":32087,"src":"10725:16:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32035,"name":"uint256","nodeType":"ElementaryTypeName","src":"10725:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":32044,"initialValue":{"arguments":[{"id":32038,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31970,"src":"10758:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32039,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31972,"src":"10765:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":32040,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32025,"src":"10773:6:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10765:14:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":32042,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31974,"src":"10781:3:98","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":32037,"name":"tryParseUint","nodeType":"Identifier","overloadedDeclarations":[31747,31784],"referencedDeclaration":31784,"src":"10745:12:98","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":32043,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10745:40:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"10707:78:98"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":32049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32045,"name":"absSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32034,"src":"10800:10:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32048,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32046,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32036,"src":"10814:8:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":32047,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31930,"src":"10825:14:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10814:25:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10800:39:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":32071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":32067,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32065,"name":"absSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32034,"src":"10942:10:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":32066,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32016,"src":"10956:12:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10942:26:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32068,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32036,"src":"10972:8:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":32069,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31930,"src":"10984:14:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10972:26:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10942:56:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"components":[{"hexValue":"66616c7365","id":32081,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"11070:5:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":32082,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11077:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":32083,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"11069:10:98","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":31980,"id":32084,"nodeType":"Return","src":"11062:17:98"},"id":32085,"nodeType":"IfStatement","src":"10938:141:98","trueBody":{"id":32080,"nodeType":"Block","src":"11000:56:98","statements":[{"expression":{"components":[{"hexValue":"74727565","id":32072,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"11022:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"arguments":[{"id":32075,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11033:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":32074,"name":"int256","nodeType":"ElementaryTypeName","src":"11033:6:98","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":32073,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11028:4:98","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":32076,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11028:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":32077,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11041:3:98","memberName":"min","nodeType":"MemberAccess","src":"11028:16:98","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":32078,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"11021:24:98","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":31980,"id":32079,"nodeType":"Return","src":"11014:31:98"}]}},"id":32086,"nodeType":"IfStatement","src":"10796:283:98","trueBody":{"id":32064,"nodeType":"Block","src":"10841:91:98","statements":[{"expression":{"components":[{"hexValue":"74727565","id":32050,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10863:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"condition":{"id":32051,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32016,"src":"10869:12:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":32059,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32036,"src":"10911:8:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":32058,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10904:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":32057,"name":"int256","nodeType":"ElementaryTypeName","src":"10904:6:98","typeDescriptions":{}}},"id":32060,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10904:16:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":32061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"10869:51:98","trueExpression":{"id":32056,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"10884:17:98","subExpression":{"arguments":[{"id":32054,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32036,"src":"10892:8:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":32053,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10885:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":32052,"name":"int256","nodeType":"ElementaryTypeName","src":"10885:6:98","typeDescriptions":{}}},"id":32055,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10885:16:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":32062,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10862:59:98","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":31980,"id":32063,"nodeType":"Return","src":"10855:66:98"}]}}]},"documentation":{"id":31968,"nodeType":"StructuredDocumentation","src":"9880:223:98","text":" @dev Implementation of {tryParseInt-string-uint256-uint256} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":32088,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseIntUncheckedBounds","nameLocation":"10117:27:98","nodeType":"FunctionDefinition","parameters":{"id":31975,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31970,"mutability":"mutable","name":"input","nameLocation":"10168:5:98","nodeType":"VariableDeclaration","scope":32088,"src":"10154:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":31969,"name":"string","nodeType":"ElementaryTypeName","src":"10154:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":31972,"mutability":"mutable","name":"begin","nameLocation":"10191:5:98","nodeType":"VariableDeclaration","scope":32088,"src":"10183:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31971,"name":"uint256","nodeType":"ElementaryTypeName","src":"10183:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":31974,"mutability":"mutable","name":"end","nameLocation":"10214:3:98","nodeType":"VariableDeclaration","scope":32088,"src":"10206:11:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31973,"name":"uint256","nodeType":"ElementaryTypeName","src":"10206:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10144:79:98"},"returnParameters":{"id":31980,"nodeType":"ParameterList","parameters":[{"constant":false,"id":31977,"mutability":"mutable","name":"success","nameLocation":"10251:7:98","nodeType":"VariableDeclaration","scope":32088,"src":"10246:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":31976,"name":"bool","nodeType":"ElementaryTypeName","src":"10246:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":31979,"mutability":"mutable","name":"value","nameLocation":"10267:5:98","nodeType":"VariableDeclaration","scope":32088,"src":"10260:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":31978,"name":"int256","nodeType":"ElementaryTypeName","src":"10260:6:98","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"10245:28:98"},"scope":32714,"src":"10108:978:98","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":32106,"nodeType":"Block","src":"11431:67:98","statements":[{"expression":{"arguments":[{"id":32097,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32091,"src":"11461:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":32098,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11468:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":32101,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32091,"src":"11477:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":32100,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11471:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":32099,"name":"bytes","nodeType":"ElementaryTypeName","src":"11471:5:98","typeDescriptions":{}}},"id":32102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11471:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11484:6:98","memberName":"length","nodeType":"MemberAccess","src":"11471:19:98","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":32096,"name":"parseHexUint","nodeType":"Identifier","overloadedDeclarations":[32107,32138],"referencedDeclaration":32138,"src":"11448:12:98","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":32104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11448:43:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":32095,"id":32105,"nodeType":"Return","src":"11441:50:98"}]},"documentation":{"id":32089,"nodeType":"StructuredDocumentation","src":"11092:259:98","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":32107,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexUint","nameLocation":"11365:12:98","nodeType":"FunctionDefinition","parameters":{"id":32092,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32091,"mutability":"mutable","name":"input","nameLocation":"11392:5:98","nodeType":"VariableDeclaration","scope":32107,"src":"11378:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":32090,"name":"string","nodeType":"ElementaryTypeName","src":"11378:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"11377:21:98"},"returnParameters":{"id":32095,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32094,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":32107,"src":"11422:7:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32093,"name":"uint256","nodeType":"ElementaryTypeName","src":"11422:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11421:9:98"},"scope":32714,"src":"11356:142:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":32137,"nodeType":"Block","src":"11919:156:98","statements":[{"assignments":[32120,32122],"declarations":[{"constant":false,"id":32120,"mutability":"mutable","name":"success","nameLocation":"11935:7:98","nodeType":"VariableDeclaration","scope":32137,"src":"11930:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":32119,"name":"bool","nodeType":"ElementaryTypeName","src":"11930:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":32122,"mutability":"mutable","name":"value","nameLocation":"11952:5:98","nodeType":"VariableDeclaration","scope":32137,"src":"11944:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32121,"name":"uint256","nodeType":"ElementaryTypeName","src":"11944:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":32128,"initialValue":{"arguments":[{"id":32124,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32110,"src":"11977:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":32125,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32112,"src":"11984:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":32126,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32114,"src":"11991:3:98","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":32123,"name":"tryParseHexUint","nodeType":"Identifier","overloadedDeclarations":[32159,32196],"referencedDeclaration":32196,"src":"11961:15:98","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":32127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11961:34:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"11929:66:98"},{"condition":{"id":32130,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"12009:8:98","subExpression":{"id":32129,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32120,"src":"12010:7:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":32134,"nodeType":"IfStatement","src":"12005:41:98","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":32131,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31299,"src":"12026:18:98","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":32132,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12026:20:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":32133,"nodeType":"RevertStatement","src":"12019:27:98"}},{"expression":{"id":32135,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32122,"src":"12063:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":32118,"id":32136,"nodeType":"Return","src":"12056:12:98"}]},"documentation":{"id":32108,"nodeType":"StructuredDocumentation","src":"11504:307:98","text":" @dev Variant of {parseHexUint-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 `(0x)?[0-9a-fA-F]*`\n - The result must fit in an `uint256` type."},"id":32138,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexUint","nameLocation":"11825:12:98","nodeType":"FunctionDefinition","parameters":{"id":32115,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32110,"mutability":"mutable","name":"input","nameLocation":"11852:5:98","nodeType":"VariableDeclaration","scope":32138,"src":"11838:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":32109,"name":"string","nodeType":"ElementaryTypeName","src":"11838:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":32112,"mutability":"mutable","name":"begin","nameLocation":"11867:5:98","nodeType":"VariableDeclaration","scope":32138,"src":"11859:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32111,"name":"uint256","nodeType":"ElementaryTypeName","src":"11859:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":32114,"mutability":"mutable","name":"end","nameLocation":"11882:3:98","nodeType":"VariableDeclaration","scope":32138,"src":"11874:11:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32113,"name":"uint256","nodeType":"ElementaryTypeName","src":"11874:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11837:49:98"},"returnParameters":{"id":32118,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32117,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":32138,"src":"11910:7:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32116,"name":"uint256","nodeType":"ElementaryTypeName","src":"11910:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11909:9:98"},"scope":32714,"src":"11816:259:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":32158,"nodeType":"Block","src":"12402:86:98","statements":[{"expression":{"arguments":[{"id":32149,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32141,"src":"12451:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":32150,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12458:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":32153,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32141,"src":"12467:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":32152,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12461:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":32151,"name":"bytes","nodeType":"ElementaryTypeName","src":"12461:5:98","typeDescriptions":{}}},"id":32154,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12461:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12474:6:98","memberName":"length","nodeType":"MemberAccess","src":"12461:19:98","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":32148,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32299,"src":"12419:31:98","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":32156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12419:62:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":32147,"id":32157,"nodeType":"Return","src":"12412:69:98"}]},"documentation":{"id":32139,"nodeType":"StructuredDocumentation","src":"12081:218:98","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":32159,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseHexUint","nameLocation":"12313:15:98","nodeType":"FunctionDefinition","parameters":{"id":32142,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32141,"mutability":"mutable","name":"input","nameLocation":"12343:5:98","nodeType":"VariableDeclaration","scope":32159,"src":"12329:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":32140,"name":"string","nodeType":"ElementaryTypeName","src":"12329:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"12328:21:98"},"returnParameters":{"id":32147,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32144,"mutability":"mutable","name":"success","nameLocation":"12378:7:98","nodeType":"VariableDeclaration","scope":32159,"src":"12373:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":32143,"name":"bool","nodeType":"ElementaryTypeName","src":"12373:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":32146,"mutability":"mutable","name":"value","nameLocation":"12395:5:98","nodeType":"VariableDeclaration","scope":32159,"src":"12387:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32145,"name":"uint256","nodeType":"ElementaryTypeName","src":"12387:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12372:29:98"},"scope":32714,"src":"12304:184:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":32195,"nodeType":"Block","src":"12896:147:98","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":32183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32173,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32166,"src":"12910:3:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":32176,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32162,"src":"12922:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":32175,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12916:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":32174,"name":"bytes","nodeType":"ElementaryTypeName","src":"12916:5:98","typeDescriptions":{}}},"id":32177,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12916:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32178,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12929:6:98","memberName":"length","nodeType":"MemberAccess","src":"12916:19:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12910:25:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32180,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32164,"src":"12939:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":32181,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32166,"src":"12947:3:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12939:11:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12910:40:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":32188,"nodeType":"IfStatement","src":"12906:63:98","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":32184,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"12960:5:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":32185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12967:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":32186,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"12959:10:98","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":32172,"id":32187,"nodeType":"Return","src":"12952:17:98"}},{"expression":{"arguments":[{"id":32190,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32162,"src":"13018:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":32191,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32164,"src":"13025:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":32192,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32166,"src":"13032:3:98","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":32189,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32299,"src":"12986:31:98","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":32193,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12986:50:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":32172,"id":32194,"nodeType":"Return","src":"12979:57:98"}]},"documentation":{"id":32160,"nodeType":"StructuredDocumentation","src":"12494:241:98","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":32196,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseHexUint","nameLocation":"12749:15:98","nodeType":"FunctionDefinition","parameters":{"id":32167,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32162,"mutability":"mutable","name":"input","nameLocation":"12788:5:98","nodeType":"VariableDeclaration","scope":32196,"src":"12774:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":32161,"name":"string","nodeType":"ElementaryTypeName","src":"12774:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":32164,"mutability":"mutable","name":"begin","nameLocation":"12811:5:98","nodeType":"VariableDeclaration","scope":32196,"src":"12803:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32163,"name":"uint256","nodeType":"ElementaryTypeName","src":"12803:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":32166,"mutability":"mutable","name":"end","nameLocation":"12834:3:98","nodeType":"VariableDeclaration","scope":32196,"src":"12826:11:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32165,"name":"uint256","nodeType":"ElementaryTypeName","src":"12826:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12764:79:98"},"returnParameters":{"id":32172,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32169,"mutability":"mutable","name":"success","nameLocation":"12872:7:98","nodeType":"VariableDeclaration","scope":32196,"src":"12867:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":32168,"name":"bool","nodeType":"ElementaryTypeName","src":"12867:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":32171,"mutability":"mutable","name":"value","nameLocation":"12889:5:98","nodeType":"VariableDeclaration","scope":32196,"src":"12881:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32170,"name":"uint256","nodeType":"ElementaryTypeName","src":"12881:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12866:29:98"},"scope":32714,"src":"12740:303:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":32298,"nodeType":"Block","src":"13452:881:98","statements":[{"assignments":[32211],"declarations":[{"constant":false,"id":32211,"mutability":"mutable","name":"buffer","nameLocation":"13475:6:98","nodeType":"VariableDeclaration","scope":32298,"src":"13462:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":32210,"name":"bytes","nodeType":"ElementaryTypeName","src":"13462:5:98","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":32216,"initialValue":{"arguments":[{"id":32214,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32199,"src":"13490:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":32213,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13484:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":32212,"name":"bytes","nodeType":"ElementaryTypeName","src":"13484:5:98","typeDescriptions":{}}},"id":32215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13484:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"13462:34:98"},{"assignments":[32218],"declarations":[{"constant":false,"id":32218,"mutability":"mutable","name":"hasPrefix","nameLocation":"13549:9:98","nodeType":"VariableDeclaration","scope":32298,"src":"13544:14:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":32217,"name":"bool","nodeType":"ElementaryTypeName","src":"13544:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":32238,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":32237,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32223,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32219,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32203,"src":"13562:3:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32222,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32220,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32201,"src":"13568:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":32221,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13576:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"13568:9:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13562:15:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":32224,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13561:17:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":32236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":32228,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32211,"src":"13612:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":32229,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32201,"src":"13620:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":32227,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32713,"src":"13589:22:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":32230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13589:37:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":32226,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13582:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":32225,"name":"bytes2","nodeType":"ElementaryTypeName","src":"13582:6:98","typeDescriptions":{}}},"id":32231,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13582:45:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"3078","id":32234,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13638:4:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""},"value":"0x"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""}],"id":32233,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13631:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":32232,"name":"bytes2","nodeType":"ElementaryTypeName","src":"13631:6:98","typeDescriptions":{}}},"id":32235,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13631:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"13582:61:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"13561:82:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"13544:99:98"},{"assignments":[32240],"declarations":[{"constant":false,"id":32240,"mutability":"mutable","name":"offset","nameLocation":"13732:6:98","nodeType":"VariableDeclaration","scope":32298,"src":"13724:14:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32239,"name":"uint256","nodeType":"ElementaryTypeName","src":"13724:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":32246,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":32241,"name":"hasPrefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32218,"src":"13741:9:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":32242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13751:6:98","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"13741:16:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":32243,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13741:18:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":32244,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13762:1:98","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"13741:22:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13724:39:98"},{"assignments":[32248],"declarations":[{"constant":false,"id":32248,"mutability":"mutable","name":"result","nameLocation":"13782:6:98","nodeType":"VariableDeclaration","scope":32298,"src":"13774:14:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32247,"name":"uint256","nodeType":"ElementaryTypeName","src":"13774:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":32250,"initialValue":{"hexValue":"30","id":32249,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13791:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"13774:18:98"},{"body":{"id":32292,"nodeType":"Block","src":"13849:447:98","statements":[{"assignments":[32264],"declarations":[{"constant":false,"id":32264,"mutability":"mutable","name":"chr","nameLocation":"13869:3:98","nodeType":"VariableDeclaration","scope":32292,"src":"13863:9:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":32263,"name":"uint8","nodeType":"ElementaryTypeName","src":"13863:5:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":32274,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":32269,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32211,"src":"13918:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":32270,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32252,"src":"13926:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":32268,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32713,"src":"13895:22:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":32271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13895:33:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":32267,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13888:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":32266,"name":"bytes1","nodeType":"ElementaryTypeName","src":"13888:6:98","typeDescriptions":{}}},"id":32272,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13888:41:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":32265,"name":"_tryParseChr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32534,"src":"13875:12:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes1_$returns$_t_uint8_$","typeString":"function (bytes1) pure returns (uint8)"}},"id":32273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13875:55:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"13863:67:98"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":32277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32275,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32264,"src":"13948:3:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3135","id":32276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13954:2:98","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"15"},"src":"13948:8:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":32282,"nodeType":"IfStatement","src":"13944:31:98","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":32278,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13966:5:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":32279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13973:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":32280,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"13965:10:98","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":32209,"id":32281,"nodeType":"Return","src":"13958:17:98"}},{"expression":{"id":32285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":32283,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32248,"src":"13989:6:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"hexValue":"3136","id":32284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13999:2:98","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"13989:12:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":32286,"nodeType":"ExpressionStatement","src":"13989:12:98"},{"id":32291,"nodeType":"UncheckedBlock","src":"14015:271:98","statements":[{"expression":{"id":32289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":32287,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32248,"src":"14258:6:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":32288,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32264,"src":"14268:3:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"14258:13:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":32290,"nodeType":"ExpressionStatement","src":"14258:13:98"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32257,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32252,"src":"13835:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":32258,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32203,"src":"13839:3:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13835:7:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":32293,"initializationExpression":{"assignments":[32252],"declarations":[{"constant":false,"id":32252,"mutability":"mutable","name":"i","nameLocation":"13815:1:98","nodeType":"VariableDeclaration","scope":32293,"src":"13807:9:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32251,"name":"uint256","nodeType":"ElementaryTypeName","src":"13807:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":32256,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32253,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32201,"src":"13819:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":32254,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32240,"src":"13827:6:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13819:14:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13807:26:98"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":32261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"13844:3:98","subExpression":{"id":32260,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32252,"src":"13846:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":32262,"nodeType":"ExpressionStatement","src":"13844:3:98"},"nodeType":"ForStatement","src":"13802:494:98"},{"expression":{"components":[{"hexValue":"74727565","id":32294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"14313:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":32295,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32248,"src":"14319:6:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":32296,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"14312:14:98","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":32209,"id":32297,"nodeType":"Return","src":"14305:21:98"}]},"documentation":{"id":32197,"nodeType":"StructuredDocumentation","src":"13049:227:98","text":" @dev Implementation of {tryParseHexUint-string-uint256-uint256} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":32299,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseHexUintUncheckedBounds","nameLocation":"13290:31:98","nodeType":"FunctionDefinition","parameters":{"id":32204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32199,"mutability":"mutable","name":"input","nameLocation":"13345:5:98","nodeType":"VariableDeclaration","scope":32299,"src":"13331:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":32198,"name":"string","nodeType":"ElementaryTypeName","src":"13331:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":32201,"mutability":"mutable","name":"begin","nameLocation":"13368:5:98","nodeType":"VariableDeclaration","scope":32299,"src":"13360:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32200,"name":"uint256","nodeType":"ElementaryTypeName","src":"13360:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":32203,"mutability":"mutable","name":"end","nameLocation":"13391:3:98","nodeType":"VariableDeclaration","scope":32299,"src":"13383:11:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32202,"name":"uint256","nodeType":"ElementaryTypeName","src":"13383:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13321:79:98"},"returnParameters":{"id":32209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32206,"mutability":"mutable","name":"success","nameLocation":"13428:7:98","nodeType":"VariableDeclaration","scope":32299,"src":"13423:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":32205,"name":"bool","nodeType":"ElementaryTypeName","src":"13423:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":32208,"mutability":"mutable","name":"value","nameLocation":"13445:5:98","nodeType":"VariableDeclaration","scope":32299,"src":"13437:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32207,"name":"uint256","nodeType":"ElementaryTypeName","src":"13437:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13422:29:98"},"scope":32714,"src":"13281:1052:98","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":32317,"nodeType":"Block","src":"14631:67:98","statements":[{"expression":{"arguments":[{"id":32308,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32302,"src":"14661:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":32309,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14668:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":32312,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32302,"src":"14677:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":32311,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14671:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":32310,"name":"bytes","nodeType":"ElementaryTypeName","src":"14671:5:98","typeDescriptions":{}}},"id":32313,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14671:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14684:6:98","memberName":"length","nodeType":"MemberAccess","src":"14671:19:98","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":32307,"name":"parseAddress","nodeType":"Identifier","overloadedDeclarations":[32318,32349],"referencedDeclaration":32349,"src":"14648:12:98","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":32315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14648:43:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":32306,"id":32316,"nodeType":"Return","src":"14641:50:98"}]},"documentation":{"id":32300,"nodeType":"StructuredDocumentation","src":"14339:212:98","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":32318,"implemented":true,"kind":"function","modifiers":[],"name":"parseAddress","nameLocation":"14565:12:98","nodeType":"FunctionDefinition","parameters":{"id":32303,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32302,"mutability":"mutable","name":"input","nameLocation":"14592:5:98","nodeType":"VariableDeclaration","scope":32318,"src":"14578:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":32301,"name":"string","nodeType":"ElementaryTypeName","src":"14578:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"14577:21:98"},"returnParameters":{"id":32306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32305,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":32318,"src":"14622:7:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32304,"name":"address","nodeType":"ElementaryTypeName","src":"14622:7:98","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14621:9:98"},"scope":32714,"src":"14556:142:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":32348,"nodeType":"Block","src":"15071:165:98","statements":[{"assignments":[32331,32333],"declarations":[{"constant":false,"id":32331,"mutability":"mutable","name":"success","nameLocation":"15087:7:98","nodeType":"VariableDeclaration","scope":32348,"src":"15082:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":32330,"name":"bool","nodeType":"ElementaryTypeName","src":"15082:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":32333,"mutability":"mutable","name":"value","nameLocation":"15104:5:98","nodeType":"VariableDeclaration","scope":32348,"src":"15096:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32332,"name":"address","nodeType":"ElementaryTypeName","src":"15096:7:98","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":32339,"initialValue":{"arguments":[{"id":32335,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32321,"src":"15129:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":32336,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32323,"src":"15136:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":32337,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32325,"src":"15143:3:98","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":32334,"name":"tryParseAddress","nodeType":"Identifier","overloadedDeclarations":[32370,32474],"referencedDeclaration":32474,"src":"15113:15:98","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":32338,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15113:34:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"nodeType":"VariableDeclarationStatement","src":"15081:66:98"},{"condition":{"id":32341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"15161:8:98","subExpression":{"id":32340,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32331,"src":"15162:7:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":32345,"nodeType":"IfStatement","src":"15157:50:98","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":32342,"name":"StringsInvalidAddressFormat","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31302,"src":"15178:27:98","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":32343,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15178:29:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":32344,"nodeType":"RevertStatement","src":"15171:36:98"}},{"expression":{"id":32346,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32333,"src":"15224:5:98","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":32329,"id":32347,"nodeType":"Return","src":"15217:12:98"}]},"documentation":{"id":32319,"nodeType":"StructuredDocumentation","src":"14704:259:98","text":" @dev Variant of {parseAddress-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 `(0x)?[0-9a-fA-F]{40}`"},"id":32349,"implemented":true,"kind":"function","modifiers":[],"name":"parseAddress","nameLocation":"14977:12:98","nodeType":"FunctionDefinition","parameters":{"id":32326,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32321,"mutability":"mutable","name":"input","nameLocation":"15004:5:98","nodeType":"VariableDeclaration","scope":32349,"src":"14990:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":32320,"name":"string","nodeType":"ElementaryTypeName","src":"14990:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":32323,"mutability":"mutable","name":"begin","nameLocation":"15019:5:98","nodeType":"VariableDeclaration","scope":32349,"src":"15011:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32322,"name":"uint256","nodeType":"ElementaryTypeName","src":"15011:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":32325,"mutability":"mutable","name":"end","nameLocation":"15034:3:98","nodeType":"VariableDeclaration","scope":32349,"src":"15026:11:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32324,"name":"uint256","nodeType":"ElementaryTypeName","src":"15026:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14989:49:98"},"returnParameters":{"id":32329,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32328,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":32349,"src":"15062:7:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32327,"name":"address","nodeType":"ElementaryTypeName","src":"15062:7:98","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15061:9:98"},"scope":32714,"src":"14968:268:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":32369,"nodeType":"Block","src":"15543:70:98","statements":[{"expression":{"arguments":[{"id":32360,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32352,"src":"15576:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":32361,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15583:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":32364,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32352,"src":"15592:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":32363,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15586:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":32362,"name":"bytes","nodeType":"ElementaryTypeName","src":"15586:5:98","typeDescriptions":{}}},"id":32365,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15586:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15599:6:98","memberName":"length","nodeType":"MemberAccess","src":"15586:19:98","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":32359,"name":"tryParseAddress","nodeType":"Identifier","overloadedDeclarations":[32370,32474],"referencedDeclaration":32474,"src":"15560:15:98","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":32367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15560:46:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":32358,"id":32368,"nodeType":"Return","src":"15553:53:98"}]},"documentation":{"id":32350,"nodeType":"StructuredDocumentation","src":"15242:198:98","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-string} requirements."},"id":32370,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseAddress","nameLocation":"15454:15:98","nodeType":"FunctionDefinition","parameters":{"id":32353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32352,"mutability":"mutable","name":"input","nameLocation":"15484:5:98","nodeType":"VariableDeclaration","scope":32370,"src":"15470:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":32351,"name":"string","nodeType":"ElementaryTypeName","src":"15470:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"15469:21:98"},"returnParameters":{"id":32358,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32355,"mutability":"mutable","name":"success","nameLocation":"15519:7:98","nodeType":"VariableDeclaration","scope":32370,"src":"15514:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":32354,"name":"bool","nodeType":"ElementaryTypeName","src":"15514:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":32357,"mutability":"mutable","name":"value","nameLocation":"15536:5:98","nodeType":"VariableDeclaration","scope":32370,"src":"15528:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32356,"name":"address","nodeType":"ElementaryTypeName","src":"15528:7:98","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15513:29:98"},"scope":32714,"src":"15445:168:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":32473,"nodeType":"Block","src":"16006:733:98","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":32394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32390,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32384,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32377,"src":"16020:3:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":32387,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32373,"src":"16032:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":32386,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16026:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":32385,"name":"bytes","nodeType":"ElementaryTypeName","src":"16026:5:98","typeDescriptions":{}}},"id":32388,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16026:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32389,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16039:6:98","memberName":"length","nodeType":"MemberAccess","src":"16026:19:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16020:25:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32391,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32375,"src":"16049:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":32392,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32377,"src":"16057:3:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16049:11:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16020:40:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":32402,"nodeType":"IfStatement","src":"16016:72:98","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":32395,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16070:5:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":32398,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16085:1:98","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":32397,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16077:7:98","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":32396,"name":"address","nodeType":"ElementaryTypeName","src":"16077:7:98","typeDescriptions":{}}},"id":32399,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16077:10:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":32400,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"16069:19:98","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":32383,"id":32401,"nodeType":"Return","src":"16062:26:98"}},{"assignments":[32404],"declarations":[{"constant":false,"id":32404,"mutability":"mutable","name":"hasPrefix","nameLocation":"16104:9:98","nodeType":"VariableDeclaration","scope":32473,"src":"16099:14:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":32403,"name":"bool","nodeType":"ElementaryTypeName","src":"16099:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":32427,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":32426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32405,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32377,"src":"16117:3:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32406,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32375,"src":"16123:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":32407,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16131:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"16123:9:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16117:15:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":32410,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"16116:17:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":32425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"arguments":[{"id":32416,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32373,"src":"16173:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":32415,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16167:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":32414,"name":"bytes","nodeType":"ElementaryTypeName","src":"16167:5:98","typeDescriptions":{}}},"id":32417,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16167:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":32418,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32375,"src":"16181:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":32413,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32713,"src":"16144:22:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":32419,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16144:43:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":32412,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16137:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":32411,"name":"bytes2","nodeType":"ElementaryTypeName","src":"16137:6:98","typeDescriptions":{}}},"id":32420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16137:51:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"3078","id":32423,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16199:4:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""},"value":"0x"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""}],"id":32422,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16192:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":32421,"name":"bytes2","nodeType":"ElementaryTypeName","src":"16192:6:98","typeDescriptions":{}}},"id":32424,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16192:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"16137:67:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16116:88:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"16099:105:98"},{"assignments":[32429],"declarations":[{"constant":false,"id":32429,"mutability":"mutable","name":"expectedLength","nameLocation":"16293:14:98","nodeType":"VariableDeclaration","scope":32473,"src":"16285:22:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32428,"name":"uint256","nodeType":"ElementaryTypeName","src":"16285:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":32437,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32436,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3430","id":32430,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16310:2:98","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":32431,"name":"hasPrefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32404,"src":"16315:9:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":32432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16325:6:98","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"16315:16:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":32433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16315:18:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":32434,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16336:1:98","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"16315:22:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16310:27:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16285:52:98"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32438,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32377,"src":"16402:3:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":32439,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32375,"src":"16408:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16402:11:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":32441,"name":"expectedLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32429,"src":"16417:14:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"16402:29:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":32471,"nodeType":"Block","src":"16682:51:98","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":32464,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16704:5:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":32467,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16719:1:98","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":32466,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16711:7:98","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":32465,"name":"address","nodeType":"ElementaryTypeName","src":"16711:7:98","typeDescriptions":{}}},"id":32468,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16711:10:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":32469,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"16703:19:98","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":32383,"id":32470,"nodeType":"Return","src":"16696:26:98"}]},"id":32472,"nodeType":"IfStatement","src":"16398:335:98","trueBody":{"id":32463,"nodeType":"Block","src":"16433:243:98","statements":[{"assignments":[32444,32446],"declarations":[{"constant":false,"id":32444,"mutability":"mutable","name":"s","nameLocation":"16554:1:98","nodeType":"VariableDeclaration","scope":32463,"src":"16549:6:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":32443,"name":"bool","nodeType":"ElementaryTypeName","src":"16549:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":32446,"mutability":"mutable","name":"v","nameLocation":"16565:1:98","nodeType":"VariableDeclaration","scope":32463,"src":"16557:9:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32445,"name":"uint256","nodeType":"ElementaryTypeName","src":"16557:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":32452,"initialValue":{"arguments":[{"id":32448,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32373,"src":"16602:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":32449,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32375,"src":"16609:5:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":32450,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32377,"src":"16616:3:98","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":32447,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32299,"src":"16570:31:98","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":32451,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16570:50:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"16548:72:98"},{"expression":{"components":[{"id":32453,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32444,"src":"16642:1:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"arguments":[{"id":32458,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32446,"src":"16661:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":32457,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16653:7:98","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":32456,"name":"uint160","nodeType":"ElementaryTypeName","src":"16653:7:98","typeDescriptions":{}}},"id":32459,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16653:10:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":32455,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16645:7:98","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":32454,"name":"address","nodeType":"ElementaryTypeName","src":"16645:7:98","typeDescriptions":{}}},"id":32460,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16645:19:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":32461,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"16641:24:98","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":32383,"id":32462,"nodeType":"Return","src":"16634:31:98"}]}}]},"documentation":{"id":32371,"nodeType":"StructuredDocumentation","src":"15619:226:98","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-string-uint256-uint256} requirements."},"id":32474,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseAddress","nameLocation":"15859:15:98","nodeType":"FunctionDefinition","parameters":{"id":32378,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32373,"mutability":"mutable","name":"input","nameLocation":"15898:5:98","nodeType":"VariableDeclaration","scope":32474,"src":"15884:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":32372,"name":"string","nodeType":"ElementaryTypeName","src":"15884:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":32375,"mutability":"mutable","name":"begin","nameLocation":"15921:5:98","nodeType":"VariableDeclaration","scope":32474,"src":"15913:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32374,"name":"uint256","nodeType":"ElementaryTypeName","src":"15913:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":32377,"mutability":"mutable","name":"end","nameLocation":"15944:3:98","nodeType":"VariableDeclaration","scope":32474,"src":"15936:11:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32376,"name":"uint256","nodeType":"ElementaryTypeName","src":"15936:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15874:79:98"},"returnParameters":{"id":32383,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32380,"mutability":"mutable","name":"success","nameLocation":"15982:7:98","nodeType":"VariableDeclaration","scope":32474,"src":"15977:12:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":32379,"name":"bool","nodeType":"ElementaryTypeName","src":"15977:4:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":32382,"mutability":"mutable","name":"value","nameLocation":"15999:5:98","nodeType":"VariableDeclaration","scope":32474,"src":"15991:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32381,"name":"address","nodeType":"ElementaryTypeName","src":"15991:7:98","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15976:29:98"},"scope":32714,"src":"15850:889:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":32533,"nodeType":"Block","src":"16808:461:98","statements":[{"assignments":[32482],"declarations":[{"constant":false,"id":32482,"mutability":"mutable","name":"value","nameLocation":"16824:5:98","nodeType":"VariableDeclaration","scope":32533,"src":"16818:11:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":32481,"name":"uint8","nodeType":"ElementaryTypeName","src":"16818:5:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":32487,"initialValue":{"arguments":[{"id":32485,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32476,"src":"16838:3:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":32484,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16832:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":32483,"name":"uint8","nodeType":"ElementaryTypeName","src":"16832:5:98","typeDescriptions":{}}},"id":32486,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16832:10:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"16818:24:98"},{"id":32530,"nodeType":"UncheckedBlock","src":"17002:238:98","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":32494,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":32490,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32488,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32482,"src":"17030:5:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3437","id":32489,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17038:2:98","typeDescriptions":{"typeIdentifier":"t_rational_47_by_1","typeString":"int_const 47"},"value":"47"},"src":"17030:10:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":32493,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32491,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32482,"src":"17044:5:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3538","id":32492,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17052:2:98","typeDescriptions":{"typeIdentifier":"t_rational_58_by_1","typeString":"int_const 58"},"value":"58"},"src":"17044:10:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17030:24:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":32505,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":32501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32499,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32482,"src":"17090:5:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3936","id":32500,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17098:2:98","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"17090:10:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":32504,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32502,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32482,"src":"17104:5:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"313033","id":32503,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17112:3:98","typeDescriptions":{"typeIdentifier":"t_rational_103_by_1","typeString":"int_const 103"},"value":"103"},"src":"17104:11:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17090:25:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":32516,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":32512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32510,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32482,"src":"17151:5:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3634","id":32511,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17159:2:98","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"17151:10:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":32515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32513,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32482,"src":"17165:5:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3731","id":32514,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17173:2:98","typeDescriptions":{"typeIdentifier":"t_rational_71_by_1","typeString":"int_const 71"},"value":"71"},"src":"17165:10:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17151:24:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"expression":{"arguments":[{"id":32523,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17219:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":32522,"name":"uint8","nodeType":"ElementaryTypeName","src":"17219:5:98","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":32521,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"17214:4:98","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":32524,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17214:11:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":32525,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17226:3:98","memberName":"max","nodeType":"MemberAccess","src":"17214:15:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":32480,"id":32526,"nodeType":"Return","src":"17207:22:98"},"id":32527,"nodeType":"IfStatement","src":"17147:82:98","trueBody":{"expression":{"id":32519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":32517,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32482,"src":"17177:5:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3535","id":32518,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17186:2:98","typeDescriptions":{"typeIdentifier":"t_rational_55_by_1","typeString":"int_const 55"},"value":"55"},"src":"17177:11:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":32520,"nodeType":"ExpressionStatement","src":"17177:11:98"}},"id":32528,"nodeType":"IfStatement","src":"17086:143:98","trueBody":{"expression":{"id":32508,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":32506,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32482,"src":"17117:5:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3837","id":32507,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17126:2:98","typeDescriptions":{"typeIdentifier":"t_rational_87_by_1","typeString":"int_const 87"},"value":"87"},"src":"17117:11:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":32509,"nodeType":"ExpressionStatement","src":"17117:11:98"}},"id":32529,"nodeType":"IfStatement","src":"17026:203:98","trueBody":{"expression":{"id":32497,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":32495,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32482,"src":"17056:5:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3438","id":32496,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17065:2:98","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"17056:11:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":32498,"nodeType":"ExpressionStatement","src":"17056:11:98"}}]},{"expression":{"id":32531,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32482,"src":"17257:5:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":32480,"id":32532,"nodeType":"Return","src":"17250:12:98"}]},"id":32534,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseChr","nameLocation":"16754:12:98","nodeType":"FunctionDefinition","parameters":{"id":32477,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32476,"mutability":"mutable","name":"chr","nameLocation":"16774:3:98","nodeType":"VariableDeclaration","scope":32534,"src":"16767:10:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":32475,"name":"bytes1","nodeType":"ElementaryTypeName","src":"16767:6:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"16766:12:98"},"returnParameters":{"id":32480,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32479,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":32534,"src":"16801:5:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":32478,"name":"uint8","nodeType":"ElementaryTypeName","src":"16801:5:98","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"16800:7:98"},"scope":32714,"src":"16745:524:98","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":32700,"nodeType":"Block","src":"17935:1335:98","statements":[{"assignments":[32543],"declarations":[{"constant":false,"id":32543,"mutability":"mutable","name":"buffer","nameLocation":"17958:6:98","nodeType":"VariableDeclaration","scope":32700,"src":"17945:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":32542,"name":"bytes","nodeType":"ElementaryTypeName","src":"17945:5:98","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":32548,"initialValue":{"arguments":[{"id":32546,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32537,"src":"17973:5:98","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":32545,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17967:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":32544,"name":"bytes","nodeType":"ElementaryTypeName","src":"17967:5:98","typeDescriptions":{}}},"id":32547,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17967:12:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"17945:34:98"},{"assignments":[32550],"declarations":[{"constant":false,"id":32550,"mutability":"mutable","name":"output","nameLocation":"18002:6:98","nodeType":"VariableDeclaration","scope":32700,"src":"17989:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":32549,"name":"bytes","nodeType":"ElementaryTypeName","src":"17989:5:98","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":32558,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32556,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":32553,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18021:1:98","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":32554,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32543,"src":"18025:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32555,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18032:6:98","memberName":"length","nodeType":"MemberAccess","src":"18025:13:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18021:17:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":32552,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"18011:9:98","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":32551,"name":"bytes","nodeType":"ElementaryTypeName","src":"18015:5:98","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":32557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18011:28:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"17989:50:98"},{"assignments":[32560],"declarations":[{"constant":false,"id":32560,"mutability":"mutable","name":"outputLength","nameLocation":"18080:12:98","nodeType":"VariableDeclaration","scope":32700,"src":"18072:20:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32559,"name":"uint256","nodeType":"ElementaryTypeName","src":"18072:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":32562,"initialValue":{"hexValue":"30","id":32561,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18095:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"18072:24:98"},{"body":{"id":32692,"nodeType":"Block","src":"18151:854:98","statements":[{"assignments":[32575],"declarations":[{"constant":false,"id":32575,"mutability":"mutable","name":"char","nameLocation":"18172:4:98","nodeType":"VariableDeclaration","scope":32692,"src":"18165:11:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":32574,"name":"bytes1","nodeType":"ElementaryTypeName","src":"18165:6:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":32583,"initialValue":{"arguments":[{"arguments":[{"id":32579,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32543,"src":"18209:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":32580,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32564,"src":"18217:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":32578,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32713,"src":"18186:22:98","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":32581,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18186:33:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":32577,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18179:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":32576,"name":"bytes1","nodeType":"ElementaryTypeName","src":"18179:6:98","typeDescriptions":{}}},"id":32582,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18179:41:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"18165:55:98"},{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32595,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32584,"name":"SPECIAL_CHARS_LOOKUP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":31289,"src":"18240:20:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":32585,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18264:1:98","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"arguments":[{"id":32588,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32575,"src":"18275:4:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":32587,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18269:5:98","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":32586,"name":"uint8","nodeType":"ElementaryTypeName","src":"18269:5:98","typeDescriptions":{}}},"id":32589,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18269:11:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"18264:16:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":32591,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"18263:18:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18240:41:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":32593,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"18239:43:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":32594,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18286:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"18239:48:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":32596,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"18238:50:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":32690,"nodeType":"Block","src":"18933:62:98","statements":[{"expression":{"id":32688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":32683,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32550,"src":"18951:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32686,"indexExpression":{"id":32685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18958:14:98","subExpression":{"id":32684,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32560,"src":"18958:12:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18951:22:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":32687,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32575,"src":"18976:4:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"18951:29:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":32689,"nodeType":"ExpressionStatement","src":"18951:29:98"}]},"id":32691,"nodeType":"IfStatement","src":"18234:761:98","trueBody":{"id":32682,"nodeType":"Block","src":"18290:637:98","statements":[{"expression":{"id":32602,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":32597,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32550,"src":"18308:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32600,"indexExpression":{"id":32599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18315:14:98","subExpression":{"id":32598,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32560,"src":"18315:12:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18308:22:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"5c","id":32601,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18333:4:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""},"value":"\\"},"src":"18308:29:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":32603,"nodeType":"ExpressionStatement","src":"18308:29:98"},{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":32606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32604,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32575,"src":"18359:4:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783038","id":32605,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18367:4:98","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"0x08"},"src":"18359:12:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":32616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32614,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32575,"src":"18428:4:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783039","id":32615,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18436:4:98","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"0x09"},"src":"18428:12:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":32626,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32624,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32575,"src":"18497:4:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783061","id":32625,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18505:4:98","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"0x0a"},"src":"18497:12:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":32636,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32634,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32575,"src":"18566:4:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783063","id":32635,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18574:4:98","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"0x0c"},"src":"18566:12:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":32646,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32644,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32575,"src":"18635:4:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783064","id":32645,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18643:4:98","typeDescriptions":{"typeIdentifier":"t_rational_13_by_1","typeString":"int_const 13"},"value":"0x0d"},"src":"18635:12:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":32656,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32654,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32575,"src":"18704:4:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783563","id":32655,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18712:4:98","typeDescriptions":{"typeIdentifier":"t_rational_92_by_1","typeString":"int_const 92"},"value":"0x5c"},"src":"18704:12:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":32666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32664,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32575,"src":"18774:4:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783232","id":32665,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18782:4:98","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"src":"18774:12:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":32675,"nodeType":"IfStatement","src":"18770:143:98","trueBody":{"id":32674,"nodeType":"Block","src":"18788:125:98","statements":[{"expression":{"id":32672,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":32667,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32550,"src":"18866:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32670,"indexExpression":{"id":32669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18873:14:98","subExpression":{"id":32668,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32560,"src":"18873:12:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18866:22:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"22","id":32671,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18891:3:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_6e9f33448a4153023cdaf3eb759f1afdc24aba433a3e18b683f8c04a6eaa69f0","typeString":"literal_string \"\"\""},"value":"\""},"src":"18866:28:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":32673,"nodeType":"ExpressionStatement","src":"18866:28:98"}]}},"id":32676,"nodeType":"IfStatement","src":"18700:213:98","trueBody":{"expression":{"id":32662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":32657,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32550,"src":"18718:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32660,"indexExpression":{"id":32659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18725:14:98","subExpression":{"id":32658,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32560,"src":"18725:12:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18718:22:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"5c","id":32661,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18743:4:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""},"value":"\\"},"src":"18718:29:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":32663,"nodeType":"ExpressionStatement","src":"18718:29:98"}},"id":32677,"nodeType":"IfStatement","src":"18631:282:98","trueBody":{"expression":{"id":32652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":32647,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32550,"src":"18649:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32650,"indexExpression":{"id":32649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18656:14:98","subExpression":{"id":32648,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32560,"src":"18656:12:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18649:22:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"72","id":32651,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18674:3:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_414f72a4d550cad29f17d9d99a4af64b3776ec5538cd440cef0f03fef2e9e010","typeString":"literal_string \"r\""},"value":"r"},"src":"18649:28:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":32653,"nodeType":"ExpressionStatement","src":"18649:28:98"}},"id":32678,"nodeType":"IfStatement","src":"18562:351:98","trueBody":{"expression":{"id":32642,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":32637,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32550,"src":"18580:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32640,"indexExpression":{"id":32639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18587:14:98","subExpression":{"id":32638,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32560,"src":"18587:12:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18580:22:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66","id":32641,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18605:3:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_d1e8aeb79500496ef3dc2e57ba746a8315d048b7a664a2bf948db4fa91960483","typeString":"literal_string \"f\""},"value":"f"},"src":"18580:28:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":32643,"nodeType":"ExpressionStatement","src":"18580:28:98"}},"id":32679,"nodeType":"IfStatement","src":"18493:420:98","trueBody":{"expression":{"id":32632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":32627,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32550,"src":"18511:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32630,"indexExpression":{"id":32629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18518:14:98","subExpression":{"id":32628,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32560,"src":"18518:12:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18511:22:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"6e","id":32631,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18536:3:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_4b4ecedb4964a40fe416b16c7bd8b46092040ec42ef0aa69e59f09872f105cf3","typeString":"literal_string \"n\""},"value":"n"},"src":"18511:28:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":32633,"nodeType":"ExpressionStatement","src":"18511:28:98"}},"id":32680,"nodeType":"IfStatement","src":"18424:489:98","trueBody":{"expression":{"id":32622,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":32617,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32550,"src":"18442:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32620,"indexExpression":{"id":32619,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18449:14:98","subExpression":{"id":32618,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32560,"src":"18449:12:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18442:22:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74","id":32621,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18467:3:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_cac1bb71f0a97c8ac94ca9546b43178a9ad254c7b757ac07433aa6df35cd8089","typeString":"literal_string \"t\""},"value":"t"},"src":"18442:28:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":32623,"nodeType":"ExpressionStatement","src":"18442:28:98"}},"id":32681,"nodeType":"IfStatement","src":"18355:558:98","trueBody":{"expression":{"id":32612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":32607,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32550,"src":"18373:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32610,"indexExpression":{"id":32609,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18380:14:98","subExpression":{"id":32608,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32560,"src":"18380:12:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18373:22:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"62","id":32611,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18398:3:98","typeDescriptions":{"typeIdentifier":"t_stringliteral_b5553de315e0edf504d9150af82dafa5c4667fa618ed0a6f19c69b41166c5510","typeString":"literal_string \"b\""},"value":"b"},"src":"18373:28:98","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":32613,"nodeType":"ExpressionStatement","src":"18373:28:98"}}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32567,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32564,"src":"18127:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":32568,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32543,"src":"18131:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18138:6:98","memberName":"length","nodeType":"MemberAccess","src":"18131:13:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18127:17:98","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":32693,"initializationExpression":{"assignments":[32564],"declarations":[{"constant":false,"id":32564,"mutability":"mutable","name":"i","nameLocation":"18120:1:98","nodeType":"VariableDeclaration","scope":32693,"src":"18112:9:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32563,"name":"uint256","nodeType":"ElementaryTypeName","src":"18112:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":32566,"initialValue":{"hexValue":"30","id":32565,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18124:1:98","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"18112:13:98"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":32572,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"18146:3:98","subExpression":{"id":32571,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32564,"src":"18148:1:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":32573,"nodeType":"ExpressionStatement","src":"18146:3:98"},"nodeType":"ForStatement","src":"18107:898:98"},{"AST":{"nativeSrc":"19103:129:98","nodeType":"YulBlock","src":"19103:129:98","statements":[{"expression":{"arguments":[{"name":"output","nativeSrc":"19124:6:98","nodeType":"YulIdentifier","src":"19124:6:98"},{"name":"outputLength","nativeSrc":"19132:12:98","nodeType":"YulIdentifier","src":"19132:12:98"}],"functionName":{"name":"mstore","nativeSrc":"19117:6:98","nodeType":"YulIdentifier","src":"19117:6:98"},"nativeSrc":"19117:28:98","nodeType":"YulFunctionCall","src":"19117:28:98"},"nativeSrc":"19117:28:98","nodeType":"YulExpressionStatement","src":"19117:28:98"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"19165:4:98","nodeType":"YulLiteral","src":"19165:4:98","type":"","value":"0x40"},{"arguments":[{"name":"output","nativeSrc":"19175:6:98","nodeType":"YulIdentifier","src":"19175:6:98"},{"arguments":[{"kind":"number","nativeSrc":"19187:1:98","nodeType":"YulLiteral","src":"19187:1:98","type":"","value":"5"},{"arguments":[{"kind":"number","nativeSrc":"19194:1:98","nodeType":"YulLiteral","src":"19194:1:98","type":"","value":"5"},{"arguments":[{"name":"outputLength","nativeSrc":"19201:12:98","nodeType":"YulIdentifier","src":"19201:12:98"},{"kind":"number","nativeSrc":"19215:2:98","nodeType":"YulLiteral","src":"19215:2:98","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"19197:3:98","nodeType":"YulIdentifier","src":"19197:3:98"},"nativeSrc":"19197:21:98","nodeType":"YulFunctionCall","src":"19197:21:98"}],"functionName":{"name":"shr","nativeSrc":"19190:3:98","nodeType":"YulIdentifier","src":"19190:3:98"},"nativeSrc":"19190:29:98","nodeType":"YulFunctionCall","src":"19190:29:98"}],"functionName":{"name":"shl","nativeSrc":"19183:3:98","nodeType":"YulIdentifier","src":"19183:3:98"},"nativeSrc":"19183:37:98","nodeType":"YulFunctionCall","src":"19183:37:98"}],"functionName":{"name":"add","nativeSrc":"19171:3:98","nodeType":"YulIdentifier","src":"19171:3:98"},"nativeSrc":"19171:50:98","nodeType":"YulFunctionCall","src":"19171:50:98"}],"functionName":{"name":"mstore","nativeSrc":"19158:6:98","nodeType":"YulIdentifier","src":"19158:6:98"},"nativeSrc":"19158:64:98","nodeType":"YulFunctionCall","src":"19158:64:98"},"nativeSrc":"19158:64:98","nodeType":"YulExpressionStatement","src":"19158:64:98"}]},"evmVersion":"prague","externalReferences":[{"declaration":32550,"isOffset":false,"isSlot":false,"src":"19124:6:98","valueSize":1},{"declaration":32550,"isOffset":false,"isSlot":false,"src":"19175:6:98","valueSize":1},{"declaration":32560,"isOffset":false,"isSlot":false,"src":"19132:12:98","valueSize":1},{"declaration":32560,"isOffset":false,"isSlot":false,"src":"19201:12:98","valueSize":1}],"flags":["memory-safe"],"id":32694,"nodeType":"InlineAssembly","src":"19078:154:98"},{"expression":{"arguments":[{"id":32697,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32550,"src":"19256:6:98","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":32696,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19249:6:98","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":32695,"name":"string","nodeType":"ElementaryTypeName","src":"19249:6:98","typeDescriptions":{}}},"id":32698,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19249:14:98","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":32541,"id":32699,"nodeType":"Return","src":"19242:21:98"}]},"documentation":{"id":32535,"nodeType":"StructuredDocumentation","src":"17275:576:98","text":" @dev Escape special characters in JSON strings. This can be useful to prevent JSON injection in NFT metadata.\n WARNING: This function should only be used in double quoted JSON strings. Single quotes are not escaped.\n NOTE: This function escapes all unicode characters, and not just the ones in ranges defined in section 2.5 of\n RFC-4627 (U+0000 to U+001F, U+0022 and U+005C). ECMAScript's `JSON.parse` does recover escaped unicode\n characters that are not in this range, but other tooling may provide different results."},"id":32701,"implemented":true,"kind":"function","modifiers":[],"name":"escapeJSON","nameLocation":"17865:10:98","nodeType":"FunctionDefinition","parameters":{"id":32538,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32537,"mutability":"mutable","name":"input","nameLocation":"17890:5:98","nodeType":"VariableDeclaration","scope":32701,"src":"17876:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":32536,"name":"string","nodeType":"ElementaryTypeName","src":"17876:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"17875:21:98"},"returnParameters":{"id":32541,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32540,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":32701,"src":"17920:13:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":32539,"name":"string","nodeType":"ElementaryTypeName","src":"17920:6:98","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"17919:15:98"},"scope":32714,"src":"17856:1414:98","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":32712,"nodeType":"Block","src":"19655:225:98","statements":[{"AST":{"nativeSrc":"19804:70:98","nodeType":"YulBlock","src":"19804:70:98","statements":[{"nativeSrc":"19818:46:98","nodeType":"YulAssignment","src":"19818:46:98","value":{"arguments":[{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"19841:6:98","nodeType":"YulIdentifier","src":"19841:6:98"},{"kind":"number","nativeSrc":"19849:4:98","nodeType":"YulLiteral","src":"19849:4:98","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"19837:3:98","nodeType":"YulIdentifier","src":"19837:3:98"},"nativeSrc":"19837:17:98","nodeType":"YulFunctionCall","src":"19837:17:98"},{"name":"offset","nativeSrc":"19856:6:98","nodeType":"YulIdentifier","src":"19856:6:98"}],"functionName":{"name":"add","nativeSrc":"19833:3:98","nodeType":"YulIdentifier","src":"19833:3:98"},"nativeSrc":"19833:30:98","nodeType":"YulFunctionCall","src":"19833:30:98"}],"functionName":{"name":"mload","nativeSrc":"19827:5:98","nodeType":"YulIdentifier","src":"19827:5:98"},"nativeSrc":"19827:37:98","nodeType":"YulFunctionCall","src":"19827:37:98"},"variableNames":[{"name":"value","nativeSrc":"19818:5:98","nodeType":"YulIdentifier","src":"19818:5:98"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":32704,"isOffset":false,"isSlot":false,"src":"19841:6:98","valueSize":1},{"declaration":32706,"isOffset":false,"isSlot":false,"src":"19856:6:98","valueSize":1},{"declaration":32709,"isOffset":false,"isSlot":false,"src":"19818:5:98","valueSize":1}],"flags":["memory-safe"],"id":32711,"nodeType":"InlineAssembly","src":"19779:95:98"}]},"documentation":{"id":32702,"nodeType":"StructuredDocumentation","src":"19276:268:98","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":32713,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeReadBytesOffset","nameLocation":"19558:22:98","nodeType":"FunctionDefinition","parameters":{"id":32707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32704,"mutability":"mutable","name":"buffer","nameLocation":"19594:6:98","nodeType":"VariableDeclaration","scope":32713,"src":"19581:19:98","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":32703,"name":"bytes","nodeType":"ElementaryTypeName","src":"19581:5:98","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":32706,"mutability":"mutable","name":"offset","nameLocation":"19610:6:98","nodeType":"VariableDeclaration","scope":32713,"src":"19602:14:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32705,"name":"uint256","nodeType":"ElementaryTypeName","src":"19602:7:98","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19580:37:98"},"returnParameters":{"id":32710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32709,"mutability":"mutable","name":"value","nameLocation":"19648:5:98","nodeType":"VariableDeclaration","scope":32713,"src":"19640:13:98","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32708,"name":"bytes32","nodeType":"ElementaryTypeName","src":"19640:7:98","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"19639:15:98"},"scope":32714,"src":"19549:331:98","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":32715,"src":"332:19550:98","usedErrors":[31296,31299,31302],"usedEvents":[]}],"src":"101:19782:98"},"id":98},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","exportedSymbols":{"ECDSA":[33173]},"id":33174,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":32716,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"112:24:99"},{"abstract":false,"baseContracts":[],"canonicalName":"ECDSA","contractDependencies":[],"contractKind":"library","documentation":{"id":32717,"nodeType":"StructuredDocumentation","src":"138:205:99","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":33173,"linearizedBaseContracts":[33173],"name":"ECDSA","nameLocation":"352:5:99","nodeType":"ContractDefinition","nodes":[{"canonicalName":"ECDSA.RecoverError","id":32722,"members":[{"id":32718,"name":"NoError","nameLocation":"392:7:99","nodeType":"EnumValue","src":"392:7:99"},{"id":32719,"name":"InvalidSignature","nameLocation":"409:16:99","nodeType":"EnumValue","src":"409:16:99"},{"id":32720,"name":"InvalidSignatureLength","nameLocation":"435:22:99","nodeType":"EnumValue","src":"435:22:99"},{"id":32721,"name":"InvalidSignatureS","nameLocation":"467:17:99","nodeType":"EnumValue","src":"467:17:99"}],"name":"RecoverError","nameLocation":"369:12:99","nodeType":"EnumDefinition","src":"364:126:99"},{"documentation":{"id":32723,"nodeType":"StructuredDocumentation","src":"496:63:99","text":" @dev The signature derives the `address(0)`."},"errorSelector":"f645eedf","id":32725,"name":"ECDSAInvalidSignature","nameLocation":"570:21:99","nodeType":"ErrorDefinition","parameters":{"id":32724,"nodeType":"ParameterList","parameters":[],"src":"591:2:99"},"src":"564:30:99"},{"documentation":{"id":32726,"nodeType":"StructuredDocumentation","src":"600:60:99","text":" @dev The signature has an invalid length."},"errorSelector":"fce698f7","id":32730,"name":"ECDSAInvalidSignatureLength","nameLocation":"671:27:99","nodeType":"ErrorDefinition","parameters":{"id":32729,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32728,"mutability":"mutable","name":"length","nameLocation":"707:6:99","nodeType":"VariableDeclaration","scope":32730,"src":"699:14:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":32727,"name":"uint256","nodeType":"ElementaryTypeName","src":"699:7:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"698:16:99"},"src":"665:50:99"},{"documentation":{"id":32731,"nodeType":"StructuredDocumentation","src":"721:85:99","text":" @dev The signature has an S value that is in the upper half order."},"errorSelector":"d78bce0c","id":32735,"name":"ECDSAInvalidSignatureS","nameLocation":"817:22:99","nodeType":"ErrorDefinition","parameters":{"id":32734,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32733,"mutability":"mutable","name":"s","nameLocation":"848:1:99","nodeType":"VariableDeclaration","scope":32735,"src":"840:9:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32732,"name":"bytes32","nodeType":"ElementaryTypeName","src":"840:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"839:11:99"},"src":"811:40:99"},{"body":{"id":32787,"nodeType":"Block","src":"2589:622:99","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32753,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":32750,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32740,"src":"2603:9:99","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32751,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2613:6:99","memberName":"length","nodeType":"MemberAccess","src":"2603:16:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3635","id":32752,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2623:2:99","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"65"},"src":"2603:22:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":32785,"nodeType":"Block","src":"3097:108:99","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":32774,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3127:1:99","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":32773,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3119:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":32772,"name":"address","nodeType":"ElementaryTypeName","src":"3119:7:99","typeDescriptions":{}}},"id":32775,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3119:10:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":32776,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32722,"src":"3131:12:99","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$32722_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":32777,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3144:22:99","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":32720,"src":"3131:35:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"expression":{"id":32780,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32740,"src":"3176:9:99","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":32781,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3186:6:99","memberName":"length","nodeType":"MemberAccess","src":"3176:16:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":32779,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3168:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":32778,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3168:7:99","typeDescriptions":{}}},"id":32782,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3168:25:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":32783,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3118:76:99","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":32749,"id":32784,"nodeType":"Return","src":"3111:83:99"}]},"id":32786,"nodeType":"IfStatement","src":"2599:606:99","trueBody":{"id":32771,"nodeType":"Block","src":"2627:464:99","statements":[{"assignments":[32755],"declarations":[{"constant":false,"id":32755,"mutability":"mutable","name":"r","nameLocation":"2649:1:99","nodeType":"VariableDeclaration","scope":32771,"src":"2641:9:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32754,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2641:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":32756,"nodeType":"VariableDeclarationStatement","src":"2641:9:99"},{"assignments":[32758],"declarations":[{"constant":false,"id":32758,"mutability":"mutable","name":"s","nameLocation":"2672:1:99","nodeType":"VariableDeclaration","scope":32771,"src":"2664:9:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32757,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2664:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":32759,"nodeType":"VariableDeclarationStatement","src":"2664:9:99"},{"assignments":[32761],"declarations":[{"constant":false,"id":32761,"mutability":"mutable","name":"v","nameLocation":"2693:1:99","nodeType":"VariableDeclaration","scope":32771,"src":"2687:7:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":32760,"name":"uint8","nodeType":"ElementaryTypeName","src":"2687:5:99","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":32762,"nodeType":"VariableDeclarationStatement","src":"2687:7:99"},{"AST":{"nativeSrc":"2864:171:99","nodeType":"YulBlock","src":"2864:171:99","statements":[{"nativeSrc":"2882:32:99","nodeType":"YulAssignment","src":"2882:32:99","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"2897:9:99","nodeType":"YulIdentifier","src":"2897:9:99"},{"kind":"number","nativeSrc":"2908:4:99","nodeType":"YulLiteral","src":"2908:4:99","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2893:3:99","nodeType":"YulIdentifier","src":"2893:3:99"},"nativeSrc":"2893:20:99","nodeType":"YulFunctionCall","src":"2893:20:99"}],"functionName":{"name":"mload","nativeSrc":"2887:5:99","nodeType":"YulIdentifier","src":"2887:5:99"},"nativeSrc":"2887:27:99","nodeType":"YulFunctionCall","src":"2887:27:99"},"variableNames":[{"name":"r","nativeSrc":"2882:1:99","nodeType":"YulIdentifier","src":"2882:1:99"}]},{"nativeSrc":"2931:32:99","nodeType":"YulAssignment","src":"2931:32:99","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"2946:9:99","nodeType":"YulIdentifier","src":"2946:9:99"},{"kind":"number","nativeSrc":"2957:4:99","nodeType":"YulLiteral","src":"2957:4:99","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"2942:3:99","nodeType":"YulIdentifier","src":"2942:3:99"},"nativeSrc":"2942:20:99","nodeType":"YulFunctionCall","src":"2942:20:99"}],"functionName":{"name":"mload","nativeSrc":"2936:5:99","nodeType":"YulIdentifier","src":"2936:5:99"},"nativeSrc":"2936:27:99","nodeType":"YulFunctionCall","src":"2936:27:99"},"variableNames":[{"name":"s","nativeSrc":"2931:1:99","nodeType":"YulIdentifier","src":"2931:1:99"}]},{"nativeSrc":"2980:41:99","nodeType":"YulAssignment","src":"2980:41:99","value":{"arguments":[{"kind":"number","nativeSrc":"2990:1:99","nodeType":"YulLiteral","src":"2990:1:99","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"3003:9:99","nodeType":"YulIdentifier","src":"3003:9:99"},{"kind":"number","nativeSrc":"3014:4:99","nodeType":"YulLiteral","src":"3014:4:99","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"2999:3:99","nodeType":"YulIdentifier","src":"2999:3:99"},"nativeSrc":"2999:20:99","nodeType":"YulFunctionCall","src":"2999:20:99"}],"functionName":{"name":"mload","nativeSrc":"2993:5:99","nodeType":"YulIdentifier","src":"2993:5:99"},"nativeSrc":"2993:27:99","nodeType":"YulFunctionCall","src":"2993:27:99"}],"functionName":{"name":"byte","nativeSrc":"2985:4:99","nodeType":"YulIdentifier","src":"2985:4:99"},"nativeSrc":"2985:36:99","nodeType":"YulFunctionCall","src":"2985:36:99"},"variableNames":[{"name":"v","nativeSrc":"2980:1:99","nodeType":"YulIdentifier","src":"2980:1:99"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":32755,"isOffset":false,"isSlot":false,"src":"2882:1:99","valueSize":1},{"declaration":32758,"isOffset":false,"isSlot":false,"src":"2931:1:99","valueSize":1},{"declaration":32740,"isOffset":false,"isSlot":false,"src":"2897:9:99","valueSize":1},{"declaration":32740,"isOffset":false,"isSlot":false,"src":"2946:9:99","valueSize":1},{"declaration":32740,"isOffset":false,"isSlot":false,"src":"3003:9:99","valueSize":1},{"declaration":32761,"isOffset":false,"isSlot":false,"src":"2980:1:99","valueSize":1}],"flags":["memory-safe"],"id":32763,"nodeType":"InlineAssembly","src":"2839:196:99"},{"expression":{"arguments":[{"id":32765,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32738,"src":"3066:4:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":32766,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32761,"src":"3072:1:99","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":32767,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32755,"src":"3075:1:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":32768,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32758,"src":"3078:1:99","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":32764,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[32788,32951,33059],"referencedDeclaration":33059,"src":"3055:10:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":32769,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3055:25:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":32749,"id":32770,"nodeType":"Return","src":"3048:32:99"}]}}]},"documentation":{"id":32736,"nodeType":"StructuredDocumentation","src":"857:1571:99","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 NOTE: This function only supports 65-byte signatures. ERC-2098 short signatures are rejected. This restriction\n is DEPRECATED and will be removed in v6.0. Developers SHOULD NOT use signatures as unique identifiers; use hash\n invalidation or nonces for replay protection.\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":32788,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"2442:10:99","nodeType":"FunctionDefinition","parameters":{"id":32741,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32738,"mutability":"mutable","name":"hash","nameLocation":"2470:4:99","nodeType":"VariableDeclaration","scope":32788,"src":"2462:12:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32737,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2462:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":32740,"mutability":"mutable","name":"signature","nameLocation":"2497:9:99","nodeType":"VariableDeclaration","scope":32788,"src":"2484:22:99","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":32739,"name":"bytes","nodeType":"ElementaryTypeName","src":"2484:5:99","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2452:60:99"},"returnParameters":{"id":32749,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32743,"mutability":"mutable","name":"recovered","nameLocation":"2544:9:99","nodeType":"VariableDeclaration","scope":32788,"src":"2536:17:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32742,"name":"address","nodeType":"ElementaryTypeName","src":"2536:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":32746,"mutability":"mutable","name":"err","nameLocation":"2568:3:99","nodeType":"VariableDeclaration","scope":32788,"src":"2555:16:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":32745,"nodeType":"UserDefinedTypeName","pathNode":{"id":32744,"name":"RecoverError","nameLocations":["2555:12:99"],"nodeType":"IdentifierPath","referencedDeclaration":32722,"src":"2555:12:99"},"referencedDeclaration":32722,"src":"2555:12:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":32748,"mutability":"mutable","name":"errArg","nameLocation":"2581:6:99","nodeType":"VariableDeclaration","scope":32788,"src":"2573:14:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32747,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2573:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2535:53:99"},"scope":33173,"src":"2433:778:99","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":32840,"nodeType":"Block","src":"3470:716:99","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32806,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":32803,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32793,"src":"3484:9:99","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":32804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3494:6:99","memberName":"length","nodeType":"MemberAccess","src":"3484:16:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3635","id":32805,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3504:2:99","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"65"},"src":"3484:22:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":32838,"nodeType":"Block","src":"4072:108:99","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":32827,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4102:1:99","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":32826,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4094:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":32825,"name":"address","nodeType":"ElementaryTypeName","src":"4094:7:99","typeDescriptions":{}}},"id":32828,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4094:10:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":32829,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32722,"src":"4106:12:99","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$32722_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":32830,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4119:22:99","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":32720,"src":"4106:35:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"expression":{"id":32833,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32793,"src":"4151:9:99","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"id":32834,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4161:6:99","memberName":"length","nodeType":"MemberAccess","src":"4151:16:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":32832,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4143:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":32831,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4143:7:99","typeDescriptions":{}}},"id":32835,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4143:25:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":32836,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4093:76:99","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":32802,"id":32837,"nodeType":"Return","src":"4086:83:99"}]},"id":32839,"nodeType":"IfStatement","src":"3480:700:99","trueBody":{"id":32824,"nodeType":"Block","src":"3508:558:99","statements":[{"assignments":[32808],"declarations":[{"constant":false,"id":32808,"mutability":"mutable","name":"r","nameLocation":"3530:1:99","nodeType":"VariableDeclaration","scope":32824,"src":"3522:9:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32807,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3522:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":32809,"nodeType":"VariableDeclarationStatement","src":"3522:9:99"},{"assignments":[32811],"declarations":[{"constant":false,"id":32811,"mutability":"mutable","name":"s","nameLocation":"3553:1:99","nodeType":"VariableDeclaration","scope":32824,"src":"3545:9:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32810,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3545:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":32812,"nodeType":"VariableDeclarationStatement","src":"3545:9:99"},{"assignments":[32814],"declarations":[{"constant":false,"id":32814,"mutability":"mutable","name":"v","nameLocation":"3574:1:99","nodeType":"VariableDeclaration","scope":32824,"src":"3568:7:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":32813,"name":"uint8","nodeType":"ElementaryTypeName","src":"3568:5:99","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":32815,"nodeType":"VariableDeclarationStatement","src":"3568:7:99"},{"AST":{"nativeSrc":"3808:202:99","nodeType":"YulBlock","src":"3808:202:99","statements":[{"nativeSrc":"3826:35:99","nodeType":"YulAssignment","src":"3826:35:99","value":{"arguments":[{"name":"signature.offset","nativeSrc":"3844:16:99","nodeType":"YulIdentifier","src":"3844:16:99"}],"functionName":{"name":"calldataload","nativeSrc":"3831:12:99","nodeType":"YulIdentifier","src":"3831:12:99"},"nativeSrc":"3831:30:99","nodeType":"YulFunctionCall","src":"3831:30:99"},"variableNames":[{"name":"r","nativeSrc":"3826:1:99","nodeType":"YulIdentifier","src":"3826:1:99"}]},{"nativeSrc":"3878:46:99","nodeType":"YulAssignment","src":"3878:46:99","value":{"arguments":[{"arguments":[{"name":"signature.offset","nativeSrc":"3900:16:99","nodeType":"YulIdentifier","src":"3900:16:99"},{"kind":"number","nativeSrc":"3918:4:99","nodeType":"YulLiteral","src":"3918:4:99","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3896:3:99","nodeType":"YulIdentifier","src":"3896:3:99"},"nativeSrc":"3896:27:99","nodeType":"YulFunctionCall","src":"3896:27:99"}],"functionName":{"name":"calldataload","nativeSrc":"3883:12:99","nodeType":"YulIdentifier","src":"3883:12:99"},"nativeSrc":"3883:41:99","nodeType":"YulFunctionCall","src":"3883:41:99"},"variableNames":[{"name":"s","nativeSrc":"3878:1:99","nodeType":"YulIdentifier","src":"3878:1:99"}]},{"nativeSrc":"3941:55:99","nodeType":"YulAssignment","src":"3941:55:99","value":{"arguments":[{"kind":"number","nativeSrc":"3951:1:99","nodeType":"YulLiteral","src":"3951:1:99","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"signature.offset","nativeSrc":"3971:16:99","nodeType":"YulIdentifier","src":"3971:16:99"},{"kind":"number","nativeSrc":"3989:4:99","nodeType":"YulLiteral","src":"3989:4:99","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"3967:3:99","nodeType":"YulIdentifier","src":"3967:3:99"},"nativeSrc":"3967:27:99","nodeType":"YulFunctionCall","src":"3967:27:99"}],"functionName":{"name":"calldataload","nativeSrc":"3954:12:99","nodeType":"YulIdentifier","src":"3954:12:99"},"nativeSrc":"3954:41:99","nodeType":"YulFunctionCall","src":"3954:41:99"}],"functionName":{"name":"byte","nativeSrc":"3946:4:99","nodeType":"YulIdentifier","src":"3946:4:99"},"nativeSrc":"3946:50:99","nodeType":"YulFunctionCall","src":"3946:50:99"},"variableNames":[{"name":"v","nativeSrc":"3941:1:99","nodeType":"YulIdentifier","src":"3941:1:99"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":32808,"isOffset":false,"isSlot":false,"src":"3826:1:99","valueSize":1},{"declaration":32811,"isOffset":false,"isSlot":false,"src":"3878:1:99","valueSize":1},{"declaration":32793,"isOffset":true,"isSlot":false,"src":"3844:16:99","suffix":"offset","valueSize":1},{"declaration":32793,"isOffset":true,"isSlot":false,"src":"3900:16:99","suffix":"offset","valueSize":1},{"declaration":32793,"isOffset":true,"isSlot":false,"src":"3971:16:99","suffix":"offset","valueSize":1},{"declaration":32814,"isOffset":false,"isSlot":false,"src":"3941:1:99","valueSize":1}],"flags":["memory-safe"],"id":32816,"nodeType":"InlineAssembly","src":"3783:227:99"},{"expression":{"arguments":[{"id":32818,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32791,"src":"4041:4:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":32819,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32814,"src":"4047:1:99","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":32820,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32808,"src":"4050:1:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":32821,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32811,"src":"4053:1:99","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":32817,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[32788,32951,33059],"referencedDeclaration":33059,"src":"4030:10:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":32822,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4030:25:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":32802,"id":32823,"nodeType":"Return","src":"4023:32:99"}]}}]},"documentation":{"id":32789,"nodeType":"StructuredDocumentation","src":"3217:82:99","text":" @dev Variant of {tryRecover} that takes a signature in calldata"},"id":32841,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecoverCalldata","nameLocation":"3313:18:99","nodeType":"FunctionDefinition","parameters":{"id":32794,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32791,"mutability":"mutable","name":"hash","nameLocation":"3349:4:99","nodeType":"VariableDeclaration","scope":32841,"src":"3341:12:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32790,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3341:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":32793,"mutability":"mutable","name":"signature","nameLocation":"3378:9:99","nodeType":"VariableDeclaration","scope":32841,"src":"3363:24:99","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":32792,"name":"bytes","nodeType":"ElementaryTypeName","src":"3363:5:99","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3331:62:99"},"returnParameters":{"id":32802,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32796,"mutability":"mutable","name":"recovered","nameLocation":"3425:9:99","nodeType":"VariableDeclaration","scope":32841,"src":"3417:17:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32795,"name":"address","nodeType":"ElementaryTypeName","src":"3417:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":32799,"mutability":"mutable","name":"err","nameLocation":"3449:3:99","nodeType":"VariableDeclaration","scope":32841,"src":"3436:16:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":32798,"nodeType":"UserDefinedTypeName","pathNode":{"id":32797,"name":"RecoverError","nameLocations":["3436:12:99"],"nodeType":"IdentifierPath","referencedDeclaration":32722,"src":"3436:12:99"},"referencedDeclaration":32722,"src":"3436:12:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":32801,"mutability":"mutable","name":"errArg","nameLocation":"3462:6:99","nodeType":"VariableDeclaration","scope":32841,"src":"3454:14:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32800,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3454:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3416:53:99"},"scope":33173,"src":"3304:882:99","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":32870,"nodeType":"Block","src":"5377:168:99","statements":[{"assignments":[32852,32855,32857],"declarations":[{"constant":false,"id":32852,"mutability":"mutable","name":"recovered","nameLocation":"5396:9:99","nodeType":"VariableDeclaration","scope":32870,"src":"5388:17:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32851,"name":"address","nodeType":"ElementaryTypeName","src":"5388:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":32855,"mutability":"mutable","name":"error","nameLocation":"5420:5:99","nodeType":"VariableDeclaration","scope":32870,"src":"5407:18:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":32854,"nodeType":"UserDefinedTypeName","pathNode":{"id":32853,"name":"RecoverError","nameLocations":["5407:12:99"],"nodeType":"IdentifierPath","referencedDeclaration":32722,"src":"5407:12:99"},"referencedDeclaration":32722,"src":"5407:12:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":32857,"mutability":"mutable","name":"errorArg","nameLocation":"5435:8:99","nodeType":"VariableDeclaration","scope":32870,"src":"5427:16:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32856,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5427:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":32862,"initialValue":{"arguments":[{"id":32859,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32844,"src":"5458:4:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":32860,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32846,"src":"5464:9:99","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":32858,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[32788,32951,33059],"referencedDeclaration":32788,"src":"5447:10:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"function (bytes32,bytes memory) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":32861,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5447:27:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"5387:87:99"},{"expression":{"arguments":[{"id":32864,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32855,"src":"5496:5:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},{"id":32865,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32857,"src":"5503:8:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":32863,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33172,"src":"5484:11:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$32722_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":32866,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5484:28:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":32867,"nodeType":"ExpressionStatement","src":"5484:28:99"},{"expression":{"id":32868,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32852,"src":"5529:9:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":32850,"id":32869,"nodeType":"Return","src":"5522:16:99"}]},"documentation":{"id":32842,"nodeType":"StructuredDocumentation","src":"4192:1093:99","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 NOTE: This function only supports 65-byte signatures. ERC-2098 short signatures are rejected. This restriction\n is DEPRECATED and will be removed in v6.0. Developers SHOULD NOT use signatures as unique identifiers; use hash\n invalidation or nonces for replay protection.\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":32871,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"5299:7:99","nodeType":"FunctionDefinition","parameters":{"id":32847,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32844,"mutability":"mutable","name":"hash","nameLocation":"5315:4:99","nodeType":"VariableDeclaration","scope":32871,"src":"5307:12:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32843,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5307:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":32846,"mutability":"mutable","name":"signature","nameLocation":"5334:9:99","nodeType":"VariableDeclaration","scope":32871,"src":"5321:22:99","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":32845,"name":"bytes","nodeType":"ElementaryTypeName","src":"5321:5:99","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5306:38:99"},"returnParameters":{"id":32850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32849,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":32871,"src":"5368:7:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32848,"name":"address","nodeType":"ElementaryTypeName","src":"5368:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5367:9:99"},"scope":33173,"src":"5290:255:99","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":32900,"nodeType":"Block","src":"5732:176:99","statements":[{"assignments":[32882,32885,32887],"declarations":[{"constant":false,"id":32882,"mutability":"mutable","name":"recovered","nameLocation":"5751:9:99","nodeType":"VariableDeclaration","scope":32900,"src":"5743:17:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32881,"name":"address","nodeType":"ElementaryTypeName","src":"5743:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":32885,"mutability":"mutable","name":"error","nameLocation":"5775:5:99","nodeType":"VariableDeclaration","scope":32900,"src":"5762:18:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":32884,"nodeType":"UserDefinedTypeName","pathNode":{"id":32883,"name":"RecoverError","nameLocations":["5762:12:99"],"nodeType":"IdentifierPath","referencedDeclaration":32722,"src":"5762:12:99"},"referencedDeclaration":32722,"src":"5762:12:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":32887,"mutability":"mutable","name":"errorArg","nameLocation":"5790:8:99","nodeType":"VariableDeclaration","scope":32900,"src":"5782:16:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32886,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5782:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":32892,"initialValue":{"arguments":[{"id":32889,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32874,"src":"5821:4:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":32890,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32876,"src":"5827:9:99","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":32888,"name":"tryRecoverCalldata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32841,"src":"5802:18:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_calldata_ptr_$returns$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"function (bytes32,bytes calldata) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":32891,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5802:35:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"5742:95:99"},{"expression":{"arguments":[{"id":32894,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32885,"src":"5859:5:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},{"id":32895,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32887,"src":"5866:8:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":32893,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33172,"src":"5847:11:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$32722_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":32896,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5847:28:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":32897,"nodeType":"ExpressionStatement","src":"5847:28:99"},{"expression":{"id":32898,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32882,"src":"5892:9:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":32880,"id":32899,"nodeType":"Return","src":"5885:16:99"}]},"documentation":{"id":32872,"nodeType":"StructuredDocumentation","src":"5551:79:99","text":" @dev Variant of {recover} that takes a signature in calldata"},"id":32901,"implemented":true,"kind":"function","modifiers":[],"name":"recoverCalldata","nameLocation":"5644:15:99","nodeType":"FunctionDefinition","parameters":{"id":32877,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32874,"mutability":"mutable","name":"hash","nameLocation":"5668:4:99","nodeType":"VariableDeclaration","scope":32901,"src":"5660:12:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32873,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5660:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":32876,"mutability":"mutable","name":"signature","nameLocation":"5689:9:99","nodeType":"VariableDeclaration","scope":32901,"src":"5674:24:99","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":32875,"name":"bytes","nodeType":"ElementaryTypeName","src":"5674:5:99","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5659:40:99"},"returnParameters":{"id":32880,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32879,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":32901,"src":"5723:7:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32878,"name":"address","nodeType":"ElementaryTypeName","src":"5723:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5722:9:99"},"scope":33173,"src":"5635:273:99","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":32950,"nodeType":"Block","src":"6287:342:99","statements":[{"id":32949,"nodeType":"UncheckedBlock","src":"6297:326:99","statements":[{"assignments":[32919],"declarations":[{"constant":false,"id":32919,"mutability":"mutable","name":"s","nameLocation":"6329:1:99","nodeType":"VariableDeclaration","scope":32949,"src":"6321:9:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32918,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6321:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":32926,"initialValue":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":32925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":32920,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32908,"src":"6333:2:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"arguments":[{"hexValue":"307837666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666","id":32923,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6346:66:99","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":32922,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6338:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":32921,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6338:7:99","typeDescriptions":{}}},"id":32924,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6338:75:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"6333:80:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"6321:92:99"},{"assignments":[32928],"declarations":[{"constant":false,"id":32928,"mutability":"mutable","name":"v","nameLocation":"6530:1:99","nodeType":"VariableDeclaration","scope":32949,"src":"6524:7:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":32927,"name":"uint8","nodeType":"ElementaryTypeName","src":"6524:5:99","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":32941,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32939,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":32936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":32933,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32908,"src":"6549:2:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":32932,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6541:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":32931,"name":"uint256","nodeType":"ElementaryTypeName","src":"6541:7:99","typeDescriptions":{}}},"id":32934,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6541:11:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":32935,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6556:3:99","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"6541:18:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":32937,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6540:20:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3237","id":32938,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6563:2:99","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"6540:25:99","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":32930,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6534:5:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":32929,"name":"uint8","nodeType":"ElementaryTypeName","src":"6534:5:99","typeDescriptions":{}}},"id":32940,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6534:32:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"6524:42:99"},{"expression":{"arguments":[{"id":32943,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32904,"src":"6598:4:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":32944,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32928,"src":"6604:1:99","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":32945,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32906,"src":"6607:1:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":32946,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32919,"src":"6610:1:99","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":32942,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[32788,32951,33059],"referencedDeclaration":33059,"src":"6587:10:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":32947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6587:25:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":32917,"id":32948,"nodeType":"Return","src":"6580:32:99"}]}]},"documentation":{"id":32902,"nodeType":"StructuredDocumentation","src":"5914:205:99","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":32951,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"6133:10:99","nodeType":"FunctionDefinition","parameters":{"id":32909,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32904,"mutability":"mutable","name":"hash","nameLocation":"6161:4:99","nodeType":"VariableDeclaration","scope":32951,"src":"6153:12:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32903,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6153:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":32906,"mutability":"mutable","name":"r","nameLocation":"6183:1:99","nodeType":"VariableDeclaration","scope":32951,"src":"6175:9:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32905,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6175:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":32908,"mutability":"mutable","name":"vs","nameLocation":"6202:2:99","nodeType":"VariableDeclaration","scope":32951,"src":"6194:10:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32907,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6194:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6143:67:99"},"returnParameters":{"id":32917,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32911,"mutability":"mutable","name":"recovered","nameLocation":"6242:9:99","nodeType":"VariableDeclaration","scope":32951,"src":"6234:17:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32910,"name":"address","nodeType":"ElementaryTypeName","src":"6234:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":32914,"mutability":"mutable","name":"err","nameLocation":"6266:3:99","nodeType":"VariableDeclaration","scope":32951,"src":"6253:16:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":32913,"nodeType":"UserDefinedTypeName","pathNode":{"id":32912,"name":"RecoverError","nameLocations":["6253:12:99"],"nodeType":"IdentifierPath","referencedDeclaration":32722,"src":"6253:12:99"},"referencedDeclaration":32722,"src":"6253:12:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":32916,"mutability":"mutable","name":"errArg","nameLocation":"6279:6:99","nodeType":"VariableDeclaration","scope":32951,"src":"6271:14:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32915,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6271:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6233:53:99"},"scope":33173,"src":"6124:505:99","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":32983,"nodeType":"Block","src":"6842:164:99","statements":[{"assignments":[32964,32967,32969],"declarations":[{"constant":false,"id":32964,"mutability":"mutable","name":"recovered","nameLocation":"6861:9:99","nodeType":"VariableDeclaration","scope":32983,"src":"6853:17:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32963,"name":"address","nodeType":"ElementaryTypeName","src":"6853:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":32967,"mutability":"mutable","name":"error","nameLocation":"6885:5:99","nodeType":"VariableDeclaration","scope":32983,"src":"6872:18:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":32966,"nodeType":"UserDefinedTypeName","pathNode":{"id":32965,"name":"RecoverError","nameLocations":["6872:12:99"],"nodeType":"IdentifierPath","referencedDeclaration":32722,"src":"6872:12:99"},"referencedDeclaration":32722,"src":"6872:12:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":32969,"mutability":"mutable","name":"errorArg","nameLocation":"6900:8:99","nodeType":"VariableDeclaration","scope":32983,"src":"6892:16:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32968,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6892:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":32975,"initialValue":{"arguments":[{"id":32971,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32954,"src":"6923:4:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":32972,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32956,"src":"6929:1:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":32973,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32958,"src":"6932:2:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":32970,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[32788,32951,33059],"referencedDeclaration":32951,"src":"6912:10:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"function (bytes32,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":32974,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6912:23:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"6852:83:99"},{"expression":{"arguments":[{"id":32977,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32967,"src":"6957:5:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},{"id":32978,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32969,"src":"6964:8:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":32976,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33172,"src":"6945:11:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$32722_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":32979,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6945:28:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":32980,"nodeType":"ExpressionStatement","src":"6945:28:99"},{"expression":{"id":32981,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32964,"src":"6990:9:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":32962,"id":32982,"nodeType":"Return","src":"6983:16:99"}]},"documentation":{"id":32952,"nodeType":"StructuredDocumentation","src":"6635:116:99","text":" @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately."},"id":32984,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"6765:7:99","nodeType":"FunctionDefinition","parameters":{"id":32959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32954,"mutability":"mutable","name":"hash","nameLocation":"6781:4:99","nodeType":"VariableDeclaration","scope":32984,"src":"6773:12:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32953,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6773:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":32956,"mutability":"mutable","name":"r","nameLocation":"6795:1:99","nodeType":"VariableDeclaration","scope":32984,"src":"6787:9:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32955,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6787:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":32958,"mutability":"mutable","name":"vs","nameLocation":"6806:2:99","nodeType":"VariableDeclaration","scope":32984,"src":"6798:10:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32957,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6798:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6772:37:99"},"returnParameters":{"id":32962,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32961,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":32984,"src":"6833:7:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32960,"name":"address","nodeType":"ElementaryTypeName","src":"6833:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6832:9:99"},"scope":33173,"src":"6756:250:99","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33058,"nodeType":"Block","src":"7321:1372:99","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":33005,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32993,"src":"8217:1:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":33004,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8209:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":33003,"name":"uint256","nodeType":"ElementaryTypeName","src":"8209:7:99","typeDescriptions":{}}},"id":33006,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8209:10:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307837464646464646464646464646464646464646464646464646464646464646463544353736453733353741343530314444464539324634363638314232304130","id":33007,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8222:66:99","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926418782139537452191302581570759080747168_by_1","typeString":"int_const 5789...(69 digits omitted)...7168"},"value":"0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0"},"src":"8209:79:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33019,"nodeType":"IfStatement","src":"8205:164:99","trueBody":{"id":33018,"nodeType":"Block","src":"8290:79:99","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":33011,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8320:1:99","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":33010,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8312:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":33009,"name":"address","nodeType":"ElementaryTypeName","src":"8312:7:99","typeDescriptions":{}}},"id":33012,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8312:10:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":33013,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32722,"src":"8324:12:99","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$32722_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":33014,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8337:17:99","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":32721,"src":"8324:30:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},{"id":33015,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32993,"src":"8356:1:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":33016,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8311:47:99","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":33002,"id":33017,"nodeType":"Return","src":"8304:54:99"}]}},{"assignments":[33021],"declarations":[{"constant":false,"id":33021,"mutability":"mutable","name":"signer","nameLocation":"8471:6:99","nodeType":"VariableDeclaration","scope":33058,"src":"8463:14:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":33020,"name":"address","nodeType":"ElementaryTypeName","src":"8463:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":33028,"initialValue":{"arguments":[{"id":33023,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32987,"src":"8490:4:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":33024,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32989,"src":"8496:1:99","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":33025,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32991,"src":"8499:1:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":33026,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32993,"src":"8502:1:99","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":33022,"name":"ecrecover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-6,"src":"8480:9:99","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":33027,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8480:24:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"8463:41:99"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":33034,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33029,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33021,"src":"8518:6:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":33032,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8536:1:99","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":33031,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8528:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":33030,"name":"address","nodeType":"ElementaryTypeName","src":"8528:7:99","typeDescriptions":{}}},"id":33033,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8528:10:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8518:20:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33048,"nodeType":"IfStatement","src":"8514:113:99","trueBody":{"id":33047,"nodeType":"Block","src":"8540:87:99","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":33037,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8570:1:99","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":33036,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8562:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":33035,"name":"address","nodeType":"ElementaryTypeName","src":"8562:7:99","typeDescriptions":{}}},"id":33038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8562:10:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":33039,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32722,"src":"8574:12:99","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$32722_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":33040,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8587:16:99","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":32719,"src":"8574:29:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"hexValue":"30","id":33043,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8613:1:99","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":33042,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8605:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":33041,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8605:7:99","typeDescriptions":{}}},"id":33044,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8605:10:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":33045,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"8561:55:99","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":33002,"id":33046,"nodeType":"Return","src":"8554:62:99"}]}},{"expression":{"components":[{"id":33049,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33021,"src":"8645:6:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":33050,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32722,"src":"8653:12:99","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$32722_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":33051,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8666:7:99","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":32718,"src":"8653:20:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"hexValue":"30","id":33054,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8683:1:99","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":33053,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8675:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":33052,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8675:7:99","typeDescriptions":{}}},"id":33055,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8675:10:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":33056,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8644:42:99","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":33002,"id":33057,"nodeType":"Return","src":"8637:49:99"}]},"documentation":{"id":32985,"nodeType":"StructuredDocumentation","src":"7012:125:99","text":" @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":33059,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"7151:10:99","nodeType":"FunctionDefinition","parameters":{"id":32994,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32987,"mutability":"mutable","name":"hash","nameLocation":"7179:4:99","nodeType":"VariableDeclaration","scope":33059,"src":"7171:12:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32986,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7171:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":32989,"mutability":"mutable","name":"v","nameLocation":"7199:1:99","nodeType":"VariableDeclaration","scope":33059,"src":"7193:7:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":32988,"name":"uint8","nodeType":"ElementaryTypeName","src":"7193:5:99","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":32991,"mutability":"mutable","name":"r","nameLocation":"7218:1:99","nodeType":"VariableDeclaration","scope":33059,"src":"7210:9:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32990,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7210:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":32993,"mutability":"mutable","name":"s","nameLocation":"7237:1:99","nodeType":"VariableDeclaration","scope":33059,"src":"7229:9:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":32992,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7229:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7161:83:99"},"returnParameters":{"id":33002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32996,"mutability":"mutable","name":"recovered","nameLocation":"7276:9:99","nodeType":"VariableDeclaration","scope":33059,"src":"7268:17:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32995,"name":"address","nodeType":"ElementaryTypeName","src":"7268:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":32999,"mutability":"mutable","name":"err","nameLocation":"7300:3:99","nodeType":"VariableDeclaration","scope":33059,"src":"7287:16:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":32998,"nodeType":"UserDefinedTypeName","pathNode":{"id":32997,"name":"RecoverError","nameLocations":["7287:12:99"],"nodeType":"IdentifierPath","referencedDeclaration":32722,"src":"7287:12:99"},"referencedDeclaration":32722,"src":"7287:12:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":33001,"mutability":"mutable","name":"errArg","nameLocation":"7313:6:99","nodeType":"VariableDeclaration","scope":33059,"src":"7305:14:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33000,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7305:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7267:53:99"},"scope":33173,"src":"7142:1551:99","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33094,"nodeType":"Block","src":"8920:166:99","statements":[{"assignments":[33074,33077,33079],"declarations":[{"constant":false,"id":33074,"mutability":"mutable","name":"recovered","nameLocation":"8939:9:99","nodeType":"VariableDeclaration","scope":33094,"src":"8931:17:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":33073,"name":"address","nodeType":"ElementaryTypeName","src":"8931:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":33077,"mutability":"mutable","name":"error","nameLocation":"8963:5:99","nodeType":"VariableDeclaration","scope":33094,"src":"8950:18:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":33076,"nodeType":"UserDefinedTypeName","pathNode":{"id":33075,"name":"RecoverError","nameLocations":["8950:12:99"],"nodeType":"IdentifierPath","referencedDeclaration":32722,"src":"8950:12:99"},"referencedDeclaration":32722,"src":"8950:12:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":33079,"mutability":"mutable","name":"errorArg","nameLocation":"8978:8:99","nodeType":"VariableDeclaration","scope":33094,"src":"8970:16:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33078,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8970:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":33086,"initialValue":{"arguments":[{"id":33081,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33062,"src":"9001:4:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":33082,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33064,"src":"9007:1:99","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":33083,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33066,"src":"9010:1:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":33084,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33068,"src":"9013:1:99","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":33080,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[32788,32951,33059],"referencedDeclaration":33059,"src":"8990:10:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":33085,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8990:25:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$32722_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"8930:85:99"},{"expression":{"arguments":[{"id":33088,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33077,"src":"9037:5:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},{"id":33089,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33079,"src":"9044:8:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":33087,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33172,"src":"9025:11:99","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$32722_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":33090,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9025:28:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":33091,"nodeType":"ExpressionStatement","src":"9025:28:99"},{"expression":{"id":33092,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33074,"src":"9070:9:99","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":33072,"id":33093,"nodeType":"Return","src":"9063:16:99"}]},"documentation":{"id":33060,"nodeType":"StructuredDocumentation","src":"8699:122:99","text":" @dev Overload of {ECDSA-recover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":33095,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"8835:7:99","nodeType":"FunctionDefinition","parameters":{"id":33069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33062,"mutability":"mutable","name":"hash","nameLocation":"8851:4:99","nodeType":"VariableDeclaration","scope":33095,"src":"8843:12:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33061,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8843:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":33064,"mutability":"mutable","name":"v","nameLocation":"8863:1:99","nodeType":"VariableDeclaration","scope":33095,"src":"8857:7:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":33063,"name":"uint8","nodeType":"ElementaryTypeName","src":"8857:5:99","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":33066,"mutability":"mutable","name":"r","nameLocation":"8874:1:99","nodeType":"VariableDeclaration","scope":33095,"src":"8866:9:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33065,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8866:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":33068,"mutability":"mutable","name":"s","nameLocation":"8885:1:99","nodeType":"VariableDeclaration","scope":33095,"src":"8877:9:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33067,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8877:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8842:45:99"},"returnParameters":{"id":33072,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33071,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33095,"src":"8911:7:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":33070,"name":"address","nodeType":"ElementaryTypeName","src":"8911:7:99","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8910:9:99"},"scope":33173,"src":"8826:260:99","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33108,"nodeType":"Block","src":"9672:793:99","statements":[{"AST":{"nativeSrc":"9707:752:99","nodeType":"YulBlock","src":"9707:752:99","statements":[{"cases":[{"body":{"nativeSrc":"9860:171:99","nodeType":"YulBlock","src":"9860:171:99","statements":[{"nativeSrc":"9878:32:99","nodeType":"YulAssignment","src":"9878:32:99","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"9893:9:99","nodeType":"YulIdentifier","src":"9893:9:99"},{"kind":"number","nativeSrc":"9904:4:99","nodeType":"YulLiteral","src":"9904:4:99","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"9889:3:99","nodeType":"YulIdentifier","src":"9889:3:99"},"nativeSrc":"9889:20:99","nodeType":"YulFunctionCall","src":"9889:20:99"}],"functionName":{"name":"mload","nativeSrc":"9883:5:99","nodeType":"YulIdentifier","src":"9883:5:99"},"nativeSrc":"9883:27:99","nodeType":"YulFunctionCall","src":"9883:27:99"},"variableNames":[{"name":"r","nativeSrc":"9878:1:99","nodeType":"YulIdentifier","src":"9878:1:99"}]},{"nativeSrc":"9927:32:99","nodeType":"YulAssignment","src":"9927:32:99","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"9942:9:99","nodeType":"YulIdentifier","src":"9942:9:99"},{"kind":"number","nativeSrc":"9953:4:99","nodeType":"YulLiteral","src":"9953:4:99","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"9938:3:99","nodeType":"YulIdentifier","src":"9938:3:99"},"nativeSrc":"9938:20:99","nodeType":"YulFunctionCall","src":"9938:20:99"}],"functionName":{"name":"mload","nativeSrc":"9932:5:99","nodeType":"YulIdentifier","src":"9932:5:99"},"nativeSrc":"9932:27:99","nodeType":"YulFunctionCall","src":"9932:27:99"},"variableNames":[{"name":"s","nativeSrc":"9927:1:99","nodeType":"YulIdentifier","src":"9927:1:99"}]},{"nativeSrc":"9976:41:99","nodeType":"YulAssignment","src":"9976:41:99","value":{"arguments":[{"kind":"number","nativeSrc":"9986:1:99","nodeType":"YulLiteral","src":"9986:1:99","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"9999:9:99","nodeType":"YulIdentifier","src":"9999:9:99"},{"kind":"number","nativeSrc":"10010:4:99","nodeType":"YulLiteral","src":"10010:4:99","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"9995:3:99","nodeType":"YulIdentifier","src":"9995:3:99"},"nativeSrc":"9995:20:99","nodeType":"YulFunctionCall","src":"9995:20:99"}],"functionName":{"name":"mload","nativeSrc":"9989:5:99","nodeType":"YulIdentifier","src":"9989:5:99"},"nativeSrc":"9989:27:99","nodeType":"YulFunctionCall","src":"9989:27:99"}],"functionName":{"name":"byte","nativeSrc":"9981:4:99","nodeType":"YulIdentifier","src":"9981:4:99"},"nativeSrc":"9981:36:99","nodeType":"YulFunctionCall","src":"9981:36:99"},"variableNames":[{"name":"v","nativeSrc":"9976:1:99","nodeType":"YulIdentifier","src":"9976:1:99"}]}]},"nativeSrc":"9852:179:99","nodeType":"YulCase","src":"9852:179:99","value":{"kind":"number","nativeSrc":"9857:2:99","nodeType":"YulLiteral","src":"9857:2:99","type":"","value":"65"}},{"body":{"nativeSrc":"10138:206:99","nodeType":"YulBlock","src":"10138:206:99","statements":[{"nativeSrc":"10156:37:99","nodeType":"YulVariableDeclaration","src":"10156:37:99","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"10176:9:99","nodeType":"YulIdentifier","src":"10176:9:99"},{"kind":"number","nativeSrc":"10187:4:99","nodeType":"YulLiteral","src":"10187:4:99","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"10172:3:99","nodeType":"YulIdentifier","src":"10172:3:99"},"nativeSrc":"10172:20:99","nodeType":"YulFunctionCall","src":"10172:20:99"}],"functionName":{"name":"mload","nativeSrc":"10166:5:99","nodeType":"YulIdentifier","src":"10166:5:99"},"nativeSrc":"10166:27:99","nodeType":"YulFunctionCall","src":"10166:27:99"},"variables":[{"name":"vs","nativeSrc":"10160:2:99","nodeType":"YulTypedName","src":"10160:2:99","type":""}]},{"nativeSrc":"10210:32:99","nodeType":"YulAssignment","src":"10210:32:99","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"10225:9:99","nodeType":"YulIdentifier","src":"10225:9:99"},{"kind":"number","nativeSrc":"10236:4:99","nodeType":"YulLiteral","src":"10236:4:99","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"10221:3:99","nodeType":"YulIdentifier","src":"10221:3:99"},"nativeSrc":"10221:20:99","nodeType":"YulFunctionCall","src":"10221:20:99"}],"functionName":{"name":"mload","nativeSrc":"10215:5:99","nodeType":"YulIdentifier","src":"10215:5:99"},"nativeSrc":"10215:27:99","nodeType":"YulFunctionCall","src":"10215:27:99"},"variableNames":[{"name":"r","nativeSrc":"10210:1:99","nodeType":"YulIdentifier","src":"10210:1:99"}]},{"nativeSrc":"10259:28:99","nodeType":"YulAssignment","src":"10259:28:99","value":{"arguments":[{"name":"vs","nativeSrc":"10268:2:99","nodeType":"YulIdentifier","src":"10268:2:99"},{"arguments":[{"kind":"number","nativeSrc":"10276:1:99","nodeType":"YulLiteral","src":"10276:1:99","type":"","value":"1"},{"arguments":[{"kind":"number","nativeSrc":"10283:1:99","nodeType":"YulLiteral","src":"10283:1:99","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"10279:3:99","nodeType":"YulIdentifier","src":"10279:3:99"},"nativeSrc":"10279:6:99","nodeType":"YulFunctionCall","src":"10279:6:99"}],"functionName":{"name":"shr","nativeSrc":"10272:3:99","nodeType":"YulIdentifier","src":"10272:3:99"},"nativeSrc":"10272:14:99","nodeType":"YulFunctionCall","src":"10272:14:99"}],"functionName":{"name":"and","nativeSrc":"10264:3:99","nodeType":"YulIdentifier","src":"10264:3:99"},"nativeSrc":"10264:23:99","nodeType":"YulFunctionCall","src":"10264:23:99"},"variableNames":[{"name":"s","nativeSrc":"10259:1:99","nodeType":"YulIdentifier","src":"10259:1:99"}]},{"nativeSrc":"10304:26:99","nodeType":"YulAssignment","src":"10304:26:99","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"10317:3:99","nodeType":"YulLiteral","src":"10317:3:99","type":"","value":"255"},{"name":"vs","nativeSrc":"10322:2:99","nodeType":"YulIdentifier","src":"10322:2:99"}],"functionName":{"name":"shr","nativeSrc":"10313:3:99","nodeType":"YulIdentifier","src":"10313:3:99"},"nativeSrc":"10313:12:99","nodeType":"YulFunctionCall","src":"10313:12:99"},{"kind":"number","nativeSrc":"10327:2:99","nodeType":"YulLiteral","src":"10327:2:99","type":"","value":"27"}],"functionName":{"name":"add","nativeSrc":"10309:3:99","nodeType":"YulIdentifier","src":"10309:3:99"},"nativeSrc":"10309:21:99","nodeType":"YulFunctionCall","src":"10309:21:99"},"variableNames":[{"name":"v","nativeSrc":"10304:1:99","nodeType":"YulIdentifier","src":"10304:1:99"}]}]},"nativeSrc":"10130:214:99","nodeType":"YulCase","src":"10130:214:99","value":{"kind":"number","nativeSrc":"10135:2:99","nodeType":"YulLiteral","src":"10135:2:99","type":"","value":"64"}},{"body":{"nativeSrc":"10365:84:99","nodeType":"YulBlock","src":"10365:84:99","statements":[{"nativeSrc":"10383:6:99","nodeType":"YulAssignment","src":"10383:6:99","value":{"kind":"number","nativeSrc":"10388:1:99","nodeType":"YulLiteral","src":"10388:1:99","type":"","value":"0"},"variableNames":[{"name":"r","nativeSrc":"10383:1:99","nodeType":"YulIdentifier","src":"10383:1:99"}]},{"nativeSrc":"10406:6:99","nodeType":"YulAssignment","src":"10406:6:99","value":{"kind":"number","nativeSrc":"10411:1:99","nodeType":"YulLiteral","src":"10411:1:99","type":"","value":"0"},"variableNames":[{"name":"s","nativeSrc":"10406:1:99","nodeType":"YulIdentifier","src":"10406:1:99"}]},{"nativeSrc":"10429:6:99","nodeType":"YulAssignment","src":"10429:6:99","value":{"kind":"number","nativeSrc":"10434:1:99","nodeType":"YulLiteral","src":"10434:1:99","type":"","value":"0"},"variableNames":[{"name":"v","nativeSrc":"10429:1:99","nodeType":"YulIdentifier","src":"10429:1:99"}]}]},"nativeSrc":"10357:92:99","nodeType":"YulCase","src":"10357:92:99","value":"default"}],"expression":{"arguments":[{"name":"signature","nativeSrc":"9776:9:99","nodeType":"YulIdentifier","src":"9776:9:99"}],"functionName":{"name":"mload","nativeSrc":"9770:5:99","nodeType":"YulIdentifier","src":"9770:5:99"},"nativeSrc":"9770:16:99","nodeType":"YulFunctionCall","src":"9770:16:99"},"nativeSrc":"9763:686:99","nodeType":"YulSwitch","src":"9763:686:99"}]},"evmVersion":"prague","externalReferences":[{"declaration":33103,"isOffset":false,"isSlot":false,"src":"10210:1:99","valueSize":1},{"declaration":33103,"isOffset":false,"isSlot":false,"src":"10383:1:99","valueSize":1},{"declaration":33103,"isOffset":false,"isSlot":false,"src":"9878:1:99","valueSize":1},{"declaration":33105,"isOffset":false,"isSlot":false,"src":"10259:1:99","valueSize":1},{"declaration":33105,"isOffset":false,"isSlot":false,"src":"10406:1:99","valueSize":1},{"declaration":33105,"isOffset":false,"isSlot":false,"src":"9927:1:99","valueSize":1},{"declaration":33098,"isOffset":false,"isSlot":false,"src":"10176:9:99","valueSize":1},{"declaration":33098,"isOffset":false,"isSlot":false,"src":"10225:9:99","valueSize":1},{"declaration":33098,"isOffset":false,"isSlot":false,"src":"9776:9:99","valueSize":1},{"declaration":33098,"isOffset":false,"isSlot":false,"src":"9893:9:99","valueSize":1},{"declaration":33098,"isOffset":false,"isSlot":false,"src":"9942:9:99","valueSize":1},{"declaration":33098,"isOffset":false,"isSlot":false,"src":"9999:9:99","valueSize":1},{"declaration":33101,"isOffset":false,"isSlot":false,"src":"10304:1:99","valueSize":1},{"declaration":33101,"isOffset":false,"isSlot":false,"src":"10429:1:99","valueSize":1},{"declaration":33101,"isOffset":false,"isSlot":false,"src":"9976:1:99","valueSize":1}],"flags":["memory-safe"],"id":33107,"nodeType":"InlineAssembly","src":"9682:777:99"}]},"documentation":{"id":33096,"nodeType":"StructuredDocumentation","src":"9092:482:99","text":" @dev Parse a signature into its `v`, `r` and `s` components. Supports 65-byte and 64-byte (ERC-2098)\n formats. Returns (0,0,0) for invalid signatures.\n For 64-byte signatures, `v` is automatically normalized to 27 or 28.\n For 65-byte signatures, `v` is returned as-is and MUST already be 27 or 28 for use with ecrecover.\n Consider validating the result before use, or use {tryRecover}/{recover} which perform full validation."},"id":33109,"implemented":true,"kind":"function","modifiers":[],"name":"parse","nameLocation":"9588:5:99","nodeType":"FunctionDefinition","parameters":{"id":33099,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33098,"mutability":"mutable","name":"signature","nameLocation":"9607:9:99","nodeType":"VariableDeclaration","scope":33109,"src":"9594:22:99","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":33097,"name":"bytes","nodeType":"ElementaryTypeName","src":"9594:5:99","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9593:24:99"},"returnParameters":{"id":33106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33101,"mutability":"mutable","name":"v","nameLocation":"9647:1:99","nodeType":"VariableDeclaration","scope":33109,"src":"9641:7:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":33100,"name":"uint8","nodeType":"ElementaryTypeName","src":"9641:5:99","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":33103,"mutability":"mutable","name":"r","nameLocation":"9658:1:99","nodeType":"VariableDeclaration","scope":33109,"src":"9650:9:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33102,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9650:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":33105,"mutability":"mutable","name":"s","nameLocation":"9669:1:99","nodeType":"VariableDeclaration","scope":33109,"src":"9661:9:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33104,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9661:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"9640:31:99"},"scope":33173,"src":"9579:886:99","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33122,"nodeType":"Block","src":"10656:841:99","statements":[{"AST":{"nativeSrc":"10691:800:99","nodeType":"YulBlock","src":"10691:800:99","statements":[{"cases":[{"body":{"nativeSrc":"10844:202:99","nodeType":"YulBlock","src":"10844:202:99","statements":[{"nativeSrc":"10862:35:99","nodeType":"YulAssignment","src":"10862:35:99","value":{"arguments":[{"name":"signature.offset","nativeSrc":"10880:16:99","nodeType":"YulIdentifier","src":"10880:16:99"}],"functionName":{"name":"calldataload","nativeSrc":"10867:12:99","nodeType":"YulIdentifier","src":"10867:12:99"},"nativeSrc":"10867:30:99","nodeType":"YulFunctionCall","src":"10867:30:99"},"variableNames":[{"name":"r","nativeSrc":"10862:1:99","nodeType":"YulIdentifier","src":"10862:1:99"}]},{"nativeSrc":"10914:46:99","nodeType":"YulAssignment","src":"10914:46:99","value":{"arguments":[{"arguments":[{"name":"signature.offset","nativeSrc":"10936:16:99","nodeType":"YulIdentifier","src":"10936:16:99"},{"kind":"number","nativeSrc":"10954:4:99","nodeType":"YulLiteral","src":"10954:4:99","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"10932:3:99","nodeType":"YulIdentifier","src":"10932:3:99"},"nativeSrc":"10932:27:99","nodeType":"YulFunctionCall","src":"10932:27:99"}],"functionName":{"name":"calldataload","nativeSrc":"10919:12:99","nodeType":"YulIdentifier","src":"10919:12:99"},"nativeSrc":"10919:41:99","nodeType":"YulFunctionCall","src":"10919:41:99"},"variableNames":[{"name":"s","nativeSrc":"10914:1:99","nodeType":"YulIdentifier","src":"10914:1:99"}]},{"nativeSrc":"10977:55:99","nodeType":"YulAssignment","src":"10977:55:99","value":{"arguments":[{"kind":"number","nativeSrc":"10987:1:99","nodeType":"YulLiteral","src":"10987:1:99","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"signature.offset","nativeSrc":"11007:16:99","nodeType":"YulIdentifier","src":"11007:16:99"},{"kind":"number","nativeSrc":"11025:4:99","nodeType":"YulLiteral","src":"11025:4:99","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"11003:3:99","nodeType":"YulIdentifier","src":"11003:3:99"},"nativeSrc":"11003:27:99","nodeType":"YulFunctionCall","src":"11003:27:99"}],"functionName":{"name":"calldataload","nativeSrc":"10990:12:99","nodeType":"YulIdentifier","src":"10990:12:99"},"nativeSrc":"10990:41:99","nodeType":"YulFunctionCall","src":"10990:41:99"}],"functionName":{"name":"byte","nativeSrc":"10982:4:99","nodeType":"YulIdentifier","src":"10982:4:99"},"nativeSrc":"10982:50:99","nodeType":"YulFunctionCall","src":"10982:50:99"},"variableNames":[{"name":"v","nativeSrc":"10977:1:99","nodeType":"YulIdentifier","src":"10977:1:99"}]}]},"nativeSrc":"10836:210:99","nodeType":"YulCase","src":"10836:210:99","value":{"kind":"number","nativeSrc":"10841:2:99","nodeType":"YulLiteral","src":"10841:2:99","type":"","value":"65"}},{"body":{"nativeSrc":"11153:223:99","nodeType":"YulBlock","src":"11153:223:99","statements":[{"nativeSrc":"11171:51:99","nodeType":"YulVariableDeclaration","src":"11171:51:99","value":{"arguments":[{"arguments":[{"name":"signature.offset","nativeSrc":"11198:16:99","nodeType":"YulIdentifier","src":"11198:16:99"},{"kind":"number","nativeSrc":"11216:4:99","nodeType":"YulLiteral","src":"11216:4:99","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"11194:3:99","nodeType":"YulIdentifier","src":"11194:3:99"},"nativeSrc":"11194:27:99","nodeType":"YulFunctionCall","src":"11194:27:99"}],"functionName":{"name":"calldataload","nativeSrc":"11181:12:99","nodeType":"YulIdentifier","src":"11181:12:99"},"nativeSrc":"11181:41:99","nodeType":"YulFunctionCall","src":"11181:41:99"},"variables":[{"name":"vs","nativeSrc":"11175:2:99","nodeType":"YulTypedName","src":"11175:2:99","type":""}]},{"nativeSrc":"11239:35:99","nodeType":"YulAssignment","src":"11239:35:99","value":{"arguments":[{"name":"signature.offset","nativeSrc":"11257:16:99","nodeType":"YulIdentifier","src":"11257:16:99"}],"functionName":{"name":"calldataload","nativeSrc":"11244:12:99","nodeType":"YulIdentifier","src":"11244:12:99"},"nativeSrc":"11244:30:99","nodeType":"YulFunctionCall","src":"11244:30:99"},"variableNames":[{"name":"r","nativeSrc":"11239:1:99","nodeType":"YulIdentifier","src":"11239:1:99"}]},{"nativeSrc":"11291:28:99","nodeType":"YulAssignment","src":"11291:28:99","value":{"arguments":[{"name":"vs","nativeSrc":"11300:2:99","nodeType":"YulIdentifier","src":"11300:2:99"},{"arguments":[{"kind":"number","nativeSrc":"11308:1:99","nodeType":"YulLiteral","src":"11308:1:99","type":"","value":"1"},{"arguments":[{"kind":"number","nativeSrc":"11315:1:99","nodeType":"YulLiteral","src":"11315:1:99","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"11311:3:99","nodeType":"YulIdentifier","src":"11311:3:99"},"nativeSrc":"11311:6:99","nodeType":"YulFunctionCall","src":"11311:6:99"}],"functionName":{"name":"shr","nativeSrc":"11304:3:99","nodeType":"YulIdentifier","src":"11304:3:99"},"nativeSrc":"11304:14:99","nodeType":"YulFunctionCall","src":"11304:14:99"}],"functionName":{"name":"and","nativeSrc":"11296:3:99","nodeType":"YulIdentifier","src":"11296:3:99"},"nativeSrc":"11296:23:99","nodeType":"YulFunctionCall","src":"11296:23:99"},"variableNames":[{"name":"s","nativeSrc":"11291:1:99","nodeType":"YulIdentifier","src":"11291:1:99"}]},{"nativeSrc":"11336:26:99","nodeType":"YulAssignment","src":"11336:26:99","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11349:3:99","nodeType":"YulLiteral","src":"11349:3:99","type":"","value":"255"},{"name":"vs","nativeSrc":"11354:2:99","nodeType":"YulIdentifier","src":"11354:2:99"}],"functionName":{"name":"shr","nativeSrc":"11345:3:99","nodeType":"YulIdentifier","src":"11345:3:99"},"nativeSrc":"11345:12:99","nodeType":"YulFunctionCall","src":"11345:12:99"},{"kind":"number","nativeSrc":"11359:2:99","nodeType":"YulLiteral","src":"11359:2:99","type":"","value":"27"}],"functionName":{"name":"add","nativeSrc":"11341:3:99","nodeType":"YulIdentifier","src":"11341:3:99"},"nativeSrc":"11341:21:99","nodeType":"YulFunctionCall","src":"11341:21:99"},"variableNames":[{"name":"v","nativeSrc":"11336:1:99","nodeType":"YulIdentifier","src":"11336:1:99"}]}]},"nativeSrc":"11145:231:99","nodeType":"YulCase","src":"11145:231:99","value":{"kind":"number","nativeSrc":"11150:2:99","nodeType":"YulLiteral","src":"11150:2:99","type":"","value":"64"}},{"body":{"nativeSrc":"11397:84:99","nodeType":"YulBlock","src":"11397:84:99","statements":[{"nativeSrc":"11415:6:99","nodeType":"YulAssignment","src":"11415:6:99","value":{"kind":"number","nativeSrc":"11420:1:99","nodeType":"YulLiteral","src":"11420:1:99","type":"","value":"0"},"variableNames":[{"name":"r","nativeSrc":"11415:1:99","nodeType":"YulIdentifier","src":"11415:1:99"}]},{"nativeSrc":"11438:6:99","nodeType":"YulAssignment","src":"11438:6:99","value":{"kind":"number","nativeSrc":"11443:1:99","nodeType":"YulLiteral","src":"11443:1:99","type":"","value":"0"},"variableNames":[{"name":"s","nativeSrc":"11438:1:99","nodeType":"YulIdentifier","src":"11438:1:99"}]},{"nativeSrc":"11461:6:99","nodeType":"YulAssignment","src":"11461:6:99","value":{"kind":"number","nativeSrc":"11466:1:99","nodeType":"YulLiteral","src":"11466:1:99","type":"","value":"0"},"variableNames":[{"name":"v","nativeSrc":"11461:1:99","nodeType":"YulIdentifier","src":"11461:1:99"}]}]},"nativeSrc":"11389:92:99","nodeType":"YulCase","src":"11389:92:99","value":"default"}],"expression":{"name":"signature.length","nativeSrc":"10754:16:99","nodeType":"YulIdentifier","src":"10754:16:99"},"nativeSrc":"10747:734:99","nodeType":"YulSwitch","src":"10747:734:99"}]},"evmVersion":"prague","externalReferences":[{"declaration":33117,"isOffset":false,"isSlot":false,"src":"10862:1:99","valueSize":1},{"declaration":33117,"isOffset":false,"isSlot":false,"src":"11239:1:99","valueSize":1},{"declaration":33117,"isOffset":false,"isSlot":false,"src":"11415:1:99","valueSize":1},{"declaration":33119,"isOffset":false,"isSlot":false,"src":"10914:1:99","valueSize":1},{"declaration":33119,"isOffset":false,"isSlot":false,"src":"11291:1:99","valueSize":1},{"declaration":33119,"isOffset":false,"isSlot":false,"src":"11438:1:99","valueSize":1},{"declaration":33112,"isOffset":false,"isSlot":false,"src":"10754:16:99","suffix":"length","valueSize":1},{"declaration":33112,"isOffset":true,"isSlot":false,"src":"10880:16:99","suffix":"offset","valueSize":1},{"declaration":33112,"isOffset":true,"isSlot":false,"src":"10936:16:99","suffix":"offset","valueSize":1},{"declaration":33112,"isOffset":true,"isSlot":false,"src":"11007:16:99","suffix":"offset","valueSize":1},{"declaration":33112,"isOffset":true,"isSlot":false,"src":"11198:16:99","suffix":"offset","valueSize":1},{"declaration":33112,"isOffset":true,"isSlot":false,"src":"11257:16:99","suffix":"offset","valueSize":1},{"declaration":33115,"isOffset":false,"isSlot":false,"src":"10977:1:99","valueSize":1},{"declaration":33115,"isOffset":false,"isSlot":false,"src":"11336:1:99","valueSize":1},{"declaration":33115,"isOffset":false,"isSlot":false,"src":"11461:1:99","valueSize":1}],"flags":["memory-safe"],"id":33121,"nodeType":"InlineAssembly","src":"10666:825:99"}]},"documentation":{"id":33110,"nodeType":"StructuredDocumentation","src":"10471:77:99","text":" @dev Variant of {parse} that takes a signature in calldata"},"id":33123,"implemented":true,"kind":"function","modifiers":[],"name":"parseCalldata","nameLocation":"10562:13:99","nodeType":"FunctionDefinition","parameters":{"id":33113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33112,"mutability":"mutable","name":"signature","nameLocation":"10591:9:99","nodeType":"VariableDeclaration","scope":33123,"src":"10576:24:99","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":33111,"name":"bytes","nodeType":"ElementaryTypeName","src":"10576:5:99","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"10575:26:99"},"returnParameters":{"id":33120,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33115,"mutability":"mutable","name":"v","nameLocation":"10631:1:99","nodeType":"VariableDeclaration","scope":33123,"src":"10625:7:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":33114,"name":"uint8","nodeType":"ElementaryTypeName","src":"10625:5:99","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":33117,"mutability":"mutable","name":"r","nameLocation":"10642:1:99","nodeType":"VariableDeclaration","scope":33123,"src":"10634:9:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33116,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10634:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":33119,"mutability":"mutable","name":"s","nameLocation":"10653:1:99","nodeType":"VariableDeclaration","scope":33123,"src":"10645:9:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33118,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10645:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"10624:31:99"},"scope":33173,"src":"10553:944:99","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33171,"nodeType":"Block","src":"11702:460:99","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},"id":33135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33132,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33127,"src":"11716:5:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":33133,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32722,"src":"11725:12:99","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$32722_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":33134,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11738:7:99","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":32718,"src":"11725:20:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"src":"11716:29:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},"id":33141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33138,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33127,"src":"11812:5:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":33139,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32722,"src":"11821:12:99","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$32722_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":33140,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11834:16:99","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":32719,"src":"11821:29:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"src":"11812:38:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},"id":33149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33146,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33127,"src":"11917:5:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":33147,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32722,"src":"11926:12:99","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$32722_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":33148,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11939:22:99","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":32720,"src":"11926:35:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"src":"11917:44:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},"id":33161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33158,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33127,"src":"12051:5:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":33159,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32722,"src":"12060:12:99","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$32722_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":33160,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12073:17:99","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":32721,"src":"12060:30:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"src":"12051:39:99","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33167,"nodeType":"IfStatement","src":"12047:109:99","trueBody":{"id":33166,"nodeType":"Block","src":"12092:64:99","statements":[{"errorCall":{"arguments":[{"id":33163,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33129,"src":"12136:8:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":33162,"name":"ECDSAInvalidSignatureS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32735,"src":"12113:22:99","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":33164,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12113:32:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":33165,"nodeType":"RevertStatement","src":"12106:39:99"}]}},"id":33168,"nodeType":"IfStatement","src":"11913:243:99","trueBody":{"id":33157,"nodeType":"Block","src":"11963:78:99","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":33153,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33129,"src":"12020:8:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":33152,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12012:7:99","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":33151,"name":"uint256","nodeType":"ElementaryTypeName","src":"12012:7:99","typeDescriptions":{}}},"id":33154,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12012:17:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":33150,"name":"ECDSAInvalidSignatureLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32730,"src":"11984:27:99","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":33155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11984:46:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":33156,"nodeType":"RevertStatement","src":"11977:53:99"}]}},"id":33169,"nodeType":"IfStatement","src":"11808:348:99","trueBody":{"id":33145,"nodeType":"Block","src":"11852:55:99","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":33142,"name":"ECDSAInvalidSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32725,"src":"11873:21:99","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":33143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11873:23:99","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":33144,"nodeType":"RevertStatement","src":"11866:30:99"}]}},"id":33170,"nodeType":"IfStatement","src":"11712:444:99","trueBody":{"id":33137,"nodeType":"Block","src":"11747:55:99","statements":[{"functionReturnParameters":33131,"id":33136,"nodeType":"Return","src":"11761:7:99"}]}}]},"documentation":{"id":33124,"nodeType":"StructuredDocumentation","src":"11503:122:99","text":" @dev Optionally reverts with the corresponding custom error according to the `error` argument provided."},"id":33172,"implemented":true,"kind":"function","modifiers":[],"name":"_throwError","nameLocation":"11639:11:99","nodeType":"FunctionDefinition","parameters":{"id":33130,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33127,"mutability":"mutable","name":"error","nameLocation":"11664:5:99","nodeType":"VariableDeclaration","scope":33172,"src":"11651:18:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":33126,"nodeType":"UserDefinedTypeName","pathNode":{"id":33125,"name":"RecoverError","nameLocations":["11651:12:99"],"nodeType":"IdentifierPath","referencedDeclaration":32722,"src":"11651:12:99"},"referencedDeclaration":32722,"src":"11651:12:99","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$32722","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":33129,"mutability":"mutable","name":"errorArg","nameLocation":"11679:8:99","nodeType":"VariableDeclaration","scope":33172,"src":"11671:16:99","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33128,"name":"bytes32","nodeType":"ElementaryTypeName","src":"11671:7:99","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"11650:38:99"},"returnParameters":{"id":33131,"nodeType":"ParameterList","parameters":[],"src":"11702:0:99"},"scope":33173,"src":"11630:532:99","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":33174,"src":"344:11820:99","usedErrors":[32725,32730,32735],"usedEvents":[]}],"src":"112:12053:99"},"id":99},"@openzeppelin/contracts/utils/cryptography/Hashes.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/Hashes.sol","exportedSymbols":{"Hashes":[33213]},"id":33214,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":33175,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"113:24:100"},{"abstract":false,"baseContracts":[],"canonicalName":"Hashes","contractDependencies":[],"contractKind":"library","documentation":{"id":33176,"nodeType":"StructuredDocumentation","src":"139:81:100","text":" @dev Library of standard hash functions.\n _Available since v5.1._"},"fullyImplemented":true,"id":33213,"linearizedBaseContracts":[33213],"name":"Hashes","nameLocation":"229:6:100","nodeType":"ContractDefinition","nodes":[{"body":{"id":33199,"nodeType":"Block","src":"588:83:100","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":33188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33186,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33179,"src":"605:1:100","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":33187,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33181,"src":"609:1:100","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"605:5:100","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":33194,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33181,"src":"659:1:100","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":33195,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33179,"src":"662:1:100","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":33193,"name":"efficientKeccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33212,"src":"640:18:100","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes32) pure returns (bytes32)"}},"id":33196,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"640:24:100","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":33197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"605:59:100","trueExpression":{"arguments":[{"id":33190,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33179,"src":"632:1:100","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":33191,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33181,"src":"635:1:100","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":33189,"name":"efficientKeccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33212,"src":"613:18:100","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes32) pure returns (bytes32)"}},"id":33192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"613:24:100","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":33185,"id":33198,"nodeType":"Return","src":"598:66:100"}]},"documentation":{"id":33177,"nodeType":"StructuredDocumentation","src":"242:257:100","text":" @dev Commutative Keccak256 hash of a sorted pair of bytes32. Frequently used when working with merkle proofs.\n NOTE: Equivalent to the `standardNodeHash` in our https://github.com/OpenZeppelin/merkle-tree[JavaScript library]."},"id":33200,"implemented":true,"kind":"function","modifiers":[],"name":"commutativeKeccak256","nameLocation":"513:20:100","nodeType":"FunctionDefinition","parameters":{"id":33182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33179,"mutability":"mutable","name":"a","nameLocation":"542:1:100","nodeType":"VariableDeclaration","scope":33200,"src":"534:9:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33178,"name":"bytes32","nodeType":"ElementaryTypeName","src":"534:7:100","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":33181,"mutability":"mutable","name":"b","nameLocation":"553:1:100","nodeType":"VariableDeclaration","scope":33200,"src":"545:9:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33180,"name":"bytes32","nodeType":"ElementaryTypeName","src":"545:7:100","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"533:22:100"},"returnParameters":{"id":33185,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33184,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33200,"src":"579:7:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33183,"name":"bytes32","nodeType":"ElementaryTypeName","src":"579:7:100","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"578:9:100"},"scope":33213,"src":"504:167:100","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33211,"nodeType":"Block","src":"879:151:100","statements":[{"AST":{"nativeSrc":"914:110:100","nodeType":"YulBlock","src":"914:110:100","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"935:4:100","nodeType":"YulLiteral","src":"935:4:100","type":"","value":"0x00"},{"name":"a","nativeSrc":"941:1:100","nodeType":"YulIdentifier","src":"941:1:100"}],"functionName":{"name":"mstore","nativeSrc":"928:6:100","nodeType":"YulIdentifier","src":"928:6:100"},"nativeSrc":"928:15:100","nodeType":"YulFunctionCall","src":"928:15:100"},"nativeSrc":"928:15:100","nodeType":"YulExpressionStatement","src":"928:15:100"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"963:4:100","nodeType":"YulLiteral","src":"963:4:100","type":"","value":"0x20"},{"name":"b","nativeSrc":"969:1:100","nodeType":"YulIdentifier","src":"969:1:100"}],"functionName":{"name":"mstore","nativeSrc":"956:6:100","nodeType":"YulIdentifier","src":"956:6:100"},"nativeSrc":"956:15:100","nodeType":"YulFunctionCall","src":"956:15:100"},"nativeSrc":"956:15:100","nodeType":"YulExpressionStatement","src":"956:15:100"},{"nativeSrc":"984:30:100","nodeType":"YulAssignment","src":"984:30:100","value":{"arguments":[{"kind":"number","nativeSrc":"1003:4:100","nodeType":"YulLiteral","src":"1003:4:100","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1009:4:100","nodeType":"YulLiteral","src":"1009:4:100","type":"","value":"0x40"}],"functionName":{"name":"keccak256","nativeSrc":"993:9:100","nodeType":"YulIdentifier","src":"993:9:100"},"nativeSrc":"993:21:100","nodeType":"YulFunctionCall","src":"993:21:100"},"variableNames":[{"name":"value","nativeSrc":"984:5:100","nodeType":"YulIdentifier","src":"984:5:100"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":33203,"isOffset":false,"isSlot":false,"src":"941:1:100","valueSize":1},{"declaration":33205,"isOffset":false,"isSlot":false,"src":"969:1:100","valueSize":1},{"declaration":33208,"isOffset":false,"isSlot":false,"src":"984:5:100","valueSize":1}],"flags":["memory-safe"],"id":33210,"nodeType":"InlineAssembly","src":"889:135:100"}]},"documentation":{"id":33201,"nodeType":"StructuredDocumentation","src":"677:109:100","text":" @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory."},"id":33212,"implemented":true,"kind":"function","modifiers":[],"name":"efficientKeccak256","nameLocation":"800:18:100","nodeType":"FunctionDefinition","parameters":{"id":33206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33203,"mutability":"mutable","name":"a","nameLocation":"827:1:100","nodeType":"VariableDeclaration","scope":33212,"src":"819:9:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33202,"name":"bytes32","nodeType":"ElementaryTypeName","src":"819:7:100","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":33205,"mutability":"mutable","name":"b","nameLocation":"838:1:100","nodeType":"VariableDeclaration","scope":33212,"src":"830:9:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33204,"name":"bytes32","nodeType":"ElementaryTypeName","src":"830:7:100","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"818:22:100"},"returnParameters":{"id":33209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33208,"mutability":"mutable","name":"value","nameLocation":"872:5:100","nodeType":"VariableDeclaration","scope":33212,"src":"864:13:100","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33207,"name":"bytes32","nodeType":"ElementaryTypeName","src":"864:7:100","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"863:15:100"},"scope":33213,"src":"791:239:100","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":33214,"src":"221:811:100","usedErrors":[],"usedEvents":[]}],"src":"113:920:100"},"id":100},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","exportedSymbols":{"MessageHashUtils":[33299],"Strings":[32714]},"id":33300,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":33215,"literals":["solidity","^","0.8",".24"],"nodeType":"PragmaDirective","src":"123:24:101"},{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","file":"../Strings.sol","id":33217,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":33300,"sourceUnit":32715,"src":"149:39:101","symbolAliases":[{"foreign":{"id":33216,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32714,"src":"157:7:101","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"MessageHashUtils","contractDependencies":[],"contractKind":"library","documentation":{"id":33218,"nodeType":"StructuredDocumentation","src":"190:330:101","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":33299,"linearizedBaseContracts":[33299],"name":"MessageHashUtils","nameLocation":"529:16:101","nodeType":"ContractDefinition","nodes":[{"body":{"id":33227,"nodeType":"Block","src":"1339:341:101","statements":[{"AST":{"nativeSrc":"1374:300:101","nodeType":"YulBlock","src":"1374:300:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1395:4:101","nodeType":"YulLiteral","src":"1395:4:101","type":"","value":"0x00"},{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a3332","kind":"string","nativeSrc":"1401:34:101","nodeType":"YulLiteral","src":"1401:34:101","type":"","value":"\u0019Ethereum Signed Message:\n32"}],"functionName":{"name":"mstore","nativeSrc":"1388:6:101","nodeType":"YulIdentifier","src":"1388:6:101"},"nativeSrc":"1388:48:101","nodeType":"YulFunctionCall","src":"1388:48:101"},"nativeSrc":"1388:48:101","nodeType":"YulExpressionStatement","src":"1388:48:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1497:4:101","nodeType":"YulLiteral","src":"1497:4:101","type":"","value":"0x1c"},{"name":"messageHash","nativeSrc":"1503:11:101","nodeType":"YulIdentifier","src":"1503:11:101"}],"functionName":{"name":"mstore","nativeSrc":"1490:6:101","nodeType":"YulIdentifier","src":"1490:6:101"},"nativeSrc":"1490:25:101","nodeType":"YulFunctionCall","src":"1490:25:101"},"nativeSrc":"1490:25:101","nodeType":"YulExpressionStatement","src":"1490:25:101"},{"nativeSrc":"1569:31:101","nodeType":"YulAssignment","src":"1569:31:101","value":{"arguments":[{"kind":"number","nativeSrc":"1589:4:101","nodeType":"YulLiteral","src":"1589:4:101","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1595:4:101","nodeType":"YulLiteral","src":"1595:4:101","type":"","value":"0x3c"}],"functionName":{"name":"keccak256","nativeSrc":"1579:9:101","nodeType":"YulIdentifier","src":"1579:9:101"},"nativeSrc":"1579:21:101","nodeType":"YulFunctionCall","src":"1579:21:101"},"variableNames":[{"name":"digest","nativeSrc":"1569:6:101","nodeType":"YulIdentifier","src":"1569:6:101"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":33224,"isOffset":false,"isSlot":false,"src":"1569:6:101","valueSize":1},{"declaration":33221,"isOffset":false,"isSlot":false,"src":"1503:11:101","valueSize":1}],"flags":["memory-safe"],"id":33226,"nodeType":"InlineAssembly","src":"1349:325:101"}]},"documentation":{"id":33219,"nodeType":"StructuredDocumentation","src":"552:690:101","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://ethereum.org/en/developers/docs/apis/json-rpc/#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":33228,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"1256:22:101","nodeType":"FunctionDefinition","parameters":{"id":33222,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33221,"mutability":"mutable","name":"messageHash","nameLocation":"1287:11:101","nodeType":"VariableDeclaration","scope":33228,"src":"1279:19:101","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33220,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1279:7:101","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1278:21:101"},"returnParameters":{"id":33225,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33224,"mutability":"mutable","name":"digest","nameLocation":"1331:6:101","nodeType":"VariableDeclaration","scope":33228,"src":"1323:14:101","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33223,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1323:7:101","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1322:16:101"},"scope":33299,"src":"1247:433:101","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33253,"nodeType":"Block","src":"2257:143:101","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a","id":33240,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2309:32:101","typeDescriptions":{"typeIdentifier":"t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4","typeString":"literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""},"value":"\u0019Ethereum Signed Message:\n"},{"arguments":[{"arguments":[{"expression":{"id":33245,"name":"message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33231,"src":"2366:7:101","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":33246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2374:6:101","memberName":"length","nodeType":"MemberAccess","src":"2366:14:101","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":33243,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":32714,"src":"2349:7:101","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Strings_$32714_$","typeString":"type(library Strings)"}},"id":33244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2357:8:101","memberName":"toString","nodeType":"MemberAccess","referencedDeclaration":31350,"src":"2349:16:101","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":33247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2349:32:101","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":33242,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2343:5:101","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":33241,"name":"bytes","nodeType":"ElementaryTypeName","src":"2343:5:101","typeDescriptions":{}}},"id":33248,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2343:39:101","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":33249,"name":"message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33231,"src":"2384:7:101","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":33238,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2296:5:101","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":33237,"name":"bytes","nodeType":"ElementaryTypeName","src":"2296:5:101","typeDescriptions":{}}},"id":33239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2302:6:101","memberName":"concat","nodeType":"MemberAccess","src":"2296:12:101","typeDescriptions":{"typeIdentifier":"t_function_bytesconcat_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":33250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2296:96:101","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":33236,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2286:9:101","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":33251,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2286:107:101","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":33235,"id":33252,"nodeType":"Return","src":"2267:126:101"}]},"documentation":{"id":33229,"nodeType":"StructuredDocumentation","src":"1686:480:101","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://ethereum.org/en/developers/docs/apis/json-rpc/#eth_sign[`eth_sign`] JSON-RPC method.\n See {ECDSA-recover}."},"id":33254,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"2180:22:101","nodeType":"FunctionDefinition","parameters":{"id":33232,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33231,"mutability":"mutable","name":"message","nameLocation":"2216:7:101","nodeType":"VariableDeclaration","scope":33254,"src":"2203:20:101","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":33230,"name":"bytes","nodeType":"ElementaryTypeName","src":"2203:5:101","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2202:22:101"},"returnParameters":{"id":33235,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33234,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33254,"src":"2248:7:101","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33233,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2248:7:101","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2247:9:101"},"scope":33299,"src":"2171:229:101","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33273,"nodeType":"Block","src":"2854:80:101","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"1900","id":33267,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"2898:10:101","typeDescriptions":{"typeIdentifier":"t_stringliteral_73fd5d154550a4a103564cb191928cd38898034de1b952dc21b290898b4b697a","typeString":"literal_string hex\"1900\""},"value":"\u0019\u0000"},{"id":33268,"name":"validator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33257,"src":"2910:9:101","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":33269,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33259,"src":"2921:4:101","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":33265,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2881:3:101","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":33266,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2885:12:101","memberName":"encodePacked","nodeType":"MemberAccess","src":"2881:16:101","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":33270,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2881:45:101","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":33264,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2871:9:101","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":33271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2871:56:101","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":33263,"id":33272,"nodeType":"Return","src":"2864:63:101"}]},"documentation":{"id":33255,"nodeType":"StructuredDocumentation","src":"2406:332:101","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":33274,"implemented":true,"kind":"function","modifiers":[],"name":"toDataWithIntendedValidatorHash","nameLocation":"2752:31:101","nodeType":"FunctionDefinition","parameters":{"id":33260,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33257,"mutability":"mutable","name":"validator","nameLocation":"2792:9:101","nodeType":"VariableDeclaration","scope":33274,"src":"2784:17:101","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":33256,"name":"address","nodeType":"ElementaryTypeName","src":"2784:7:101","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":33259,"mutability":"mutable","name":"data","nameLocation":"2816:4:101","nodeType":"VariableDeclaration","scope":33274,"src":"2803:17:101","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":33258,"name":"bytes","nodeType":"ElementaryTypeName","src":"2803:5:101","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2783:38:101"},"returnParameters":{"id":33263,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33262,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33274,"src":"2845:7:101","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33261,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2845:7:101","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2844:9:101"},"scope":33299,"src":"2743:191:101","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33285,"nodeType":"Block","src":"3216:216:101","statements":[{"AST":{"nativeSrc":"3251:175:101","nodeType":"YulBlock","src":"3251:175:101","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3272:4:101","nodeType":"YulLiteral","src":"3272:4:101","type":"","value":"0x00"},{"hexValue":"1900","kind":"string","nativeSrc":"3278:10:101","nodeType":"YulLiteral","src":"3278:10:101","type":"","value":"\u0019\u0000"}],"functionName":{"name":"mstore","nativeSrc":"3265:6:101","nodeType":"YulIdentifier","src":"3265:6:101"},"nativeSrc":"3265:24:101","nodeType":"YulFunctionCall","src":"3265:24:101"},"nativeSrc":"3265:24:101","nodeType":"YulExpressionStatement","src":"3265:24:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3309:4:101","nodeType":"YulLiteral","src":"3309:4:101","type":"","value":"0x02"},{"arguments":[{"kind":"number","nativeSrc":"3319:2:101","nodeType":"YulLiteral","src":"3319:2:101","type":"","value":"96"},{"name":"validator","nativeSrc":"3323:9:101","nodeType":"YulIdentifier","src":"3323:9:101"}],"functionName":{"name":"shl","nativeSrc":"3315:3:101","nodeType":"YulIdentifier","src":"3315:3:101"},"nativeSrc":"3315:18:101","nodeType":"YulFunctionCall","src":"3315:18:101"}],"functionName":{"name":"mstore","nativeSrc":"3302:6:101","nodeType":"YulIdentifier","src":"3302:6:101"},"nativeSrc":"3302:32:101","nodeType":"YulFunctionCall","src":"3302:32:101"},"nativeSrc":"3302:32:101","nodeType":"YulExpressionStatement","src":"3302:32:101"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3354:4:101","nodeType":"YulLiteral","src":"3354:4:101","type":"","value":"0x16"},{"name":"messageHash","nativeSrc":"3360:11:101","nodeType":"YulIdentifier","src":"3360:11:101"}],"functionName":{"name":"mstore","nativeSrc":"3347:6:101","nodeType":"YulIdentifier","src":"3347:6:101"},"nativeSrc":"3347:25:101","nodeType":"YulFunctionCall","src":"3347:25:101"},"nativeSrc":"3347:25:101","nodeType":"YulExpressionStatement","src":"3347:25:101"},{"nativeSrc":"3385:31:101","nodeType":"YulAssignment","src":"3385:31:101","value":{"arguments":[{"kind":"number","nativeSrc":"3405:4:101","nodeType":"YulLiteral","src":"3405:4:101","type":"","value":"0x00"},{"kind":"number","nativeSrc":"3411:4:101","nodeType":"YulLiteral","src":"3411:4:101","type":"","value":"0x36"}],"functionName":{"name":"keccak256","nativeSrc":"3395:9:101","nodeType":"YulIdentifier","src":"3395:9:101"},"nativeSrc":"3395:21:101","nodeType":"YulFunctionCall","src":"3395:21:101"},"variableNames":[{"name":"digest","nativeSrc":"3385:6:101","nodeType":"YulIdentifier","src":"3385:6:101"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":33282,"isOffset":false,"isSlot":false,"src":"3385:6:101","valueSize":1},{"declaration":33279,"isOffset":false,"isSlot":false,"src":"3360:11:101","valueSize":1},{"declaration":33277,"isOffset":false,"isSlot":false,"src":"3323:9:101","valueSize":1}],"flags":["memory-safe"],"id":33284,"nodeType":"InlineAssembly","src":"3226:200:101"}]},"documentation":{"id":33275,"nodeType":"StructuredDocumentation","src":"2940:129:101","text":" @dev Variant of {toDataWithIntendedValidatorHash-address-bytes} optimized for cases where `data` is a bytes32."},"id":33286,"implemented":true,"kind":"function","modifiers":[],"name":"toDataWithIntendedValidatorHash","nameLocation":"3083:31:101","nodeType":"FunctionDefinition","parameters":{"id":33280,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33277,"mutability":"mutable","name":"validator","nameLocation":"3132:9:101","nodeType":"VariableDeclaration","scope":33286,"src":"3124:17:101","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":33276,"name":"address","nodeType":"ElementaryTypeName","src":"3124:7:101","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":33279,"mutability":"mutable","name":"messageHash","nameLocation":"3159:11:101","nodeType":"VariableDeclaration","scope":33286,"src":"3151:19:101","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33278,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3151:7:101","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3114:62:101"},"returnParameters":{"id":33283,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33282,"mutability":"mutable","name":"digest","nameLocation":"3208:6:101","nodeType":"VariableDeclaration","scope":33286,"src":"3200:14:101","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33281,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3200:7:101","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3199:16:101"},"scope":33299,"src":"3074:358:101","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33297,"nodeType":"Block","src":"3983:265:101","statements":[{"AST":{"nativeSrc":"4018:224:101","nodeType":"YulBlock","src":"4018:224:101","statements":[{"nativeSrc":"4032:22:101","nodeType":"YulVariableDeclaration","src":"4032:22:101","value":{"arguments":[{"kind":"number","nativeSrc":"4049:4:101","nodeType":"YulLiteral","src":"4049:4:101","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"4043:5:101","nodeType":"YulIdentifier","src":"4043:5:101"},"nativeSrc":"4043:11:101","nodeType":"YulFunctionCall","src":"4043:11:101"},"variables":[{"name":"ptr","nativeSrc":"4036:3:101","nodeType":"YulTypedName","src":"4036:3:101","type":""}]},{"expression":{"arguments":[{"name":"ptr","nativeSrc":"4074:3:101","nodeType":"YulIdentifier","src":"4074:3:101"},{"hexValue":"1901","kind":"string","nativeSrc":"4079:10:101","nodeType":"YulLiteral","src":"4079:10:101","type":"","value":"\u0019\u0001"}],"functionName":{"name":"mstore","nativeSrc":"4067:6:101","nodeType":"YulIdentifier","src":"4067:6:101"},"nativeSrc":"4067:23:101","nodeType":"YulFunctionCall","src":"4067:23:101"},"nativeSrc":"4067:23:101","nodeType":"YulExpressionStatement","src":"4067:23:101"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"4114:3:101","nodeType":"YulIdentifier","src":"4114:3:101"},{"kind":"number","nativeSrc":"4119:4:101","nodeType":"YulLiteral","src":"4119:4:101","type":"","value":"0x02"}],"functionName":{"name":"add","nativeSrc":"4110:3:101","nodeType":"YulIdentifier","src":"4110:3:101"},"nativeSrc":"4110:14:101","nodeType":"YulFunctionCall","src":"4110:14:101"},{"name":"domainSeparator","nativeSrc":"4126:15:101","nodeType":"YulIdentifier","src":"4126:15:101"}],"functionName":{"name":"mstore","nativeSrc":"4103:6:101","nodeType":"YulIdentifier","src":"4103:6:101"},"nativeSrc":"4103:39:101","nodeType":"YulFunctionCall","src":"4103:39:101"},"nativeSrc":"4103:39:101","nodeType":"YulExpressionStatement","src":"4103:39:101"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"4166:3:101","nodeType":"YulIdentifier","src":"4166:3:101"},{"kind":"number","nativeSrc":"4171:4:101","nodeType":"YulLiteral","src":"4171:4:101","type":"","value":"0x22"}],"functionName":{"name":"add","nativeSrc":"4162:3:101","nodeType":"YulIdentifier","src":"4162:3:101"},"nativeSrc":"4162:14:101","nodeType":"YulFunctionCall","src":"4162:14:101"},{"name":"structHash","nativeSrc":"4178:10:101","nodeType":"YulIdentifier","src":"4178:10:101"}],"functionName":{"name":"mstore","nativeSrc":"4155:6:101","nodeType":"YulIdentifier","src":"4155:6:101"},"nativeSrc":"4155:34:101","nodeType":"YulFunctionCall","src":"4155:34:101"},"nativeSrc":"4155:34:101","nodeType":"YulExpressionStatement","src":"4155:34:101"},{"nativeSrc":"4202:30:101","nodeType":"YulAssignment","src":"4202:30:101","value":{"arguments":[{"name":"ptr","nativeSrc":"4222:3:101","nodeType":"YulIdentifier","src":"4222:3:101"},{"kind":"number","nativeSrc":"4227:4:101","nodeType":"YulLiteral","src":"4227:4:101","type":"","value":"0x42"}],"functionName":{"name":"keccak256","nativeSrc":"4212:9:101","nodeType":"YulIdentifier","src":"4212:9:101"},"nativeSrc":"4212:20:101","nodeType":"YulFunctionCall","src":"4212:20:101"},"variableNames":[{"name":"digest","nativeSrc":"4202:6:101","nodeType":"YulIdentifier","src":"4202:6:101"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":33294,"isOffset":false,"isSlot":false,"src":"4202:6:101","valueSize":1},{"declaration":33289,"isOffset":false,"isSlot":false,"src":"4126:15:101","valueSize":1},{"declaration":33291,"isOffset":false,"isSlot":false,"src":"4178:10:101","valueSize":1}],"flags":["memory-safe"],"id":33296,"nodeType":"InlineAssembly","src":"3993:249:101"}]},"documentation":{"id":33287,"nodeType":"StructuredDocumentation","src":"3438:431:101","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":33298,"implemented":true,"kind":"function","modifiers":[],"name":"toTypedDataHash","nameLocation":"3883:15:101","nodeType":"FunctionDefinition","parameters":{"id":33292,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33289,"mutability":"mutable","name":"domainSeparator","nameLocation":"3907:15:101","nodeType":"VariableDeclaration","scope":33298,"src":"3899:23:101","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33288,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3899:7:101","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":33291,"mutability":"mutable","name":"structHash","nameLocation":"3932:10:101","nodeType":"VariableDeclaration","scope":33298,"src":"3924:18:101","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33290,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3924:7:101","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3898:45:101"},"returnParameters":{"id":33295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33294,"mutability":"mutable","name":"digest","nameLocation":"3975:6:101","nodeType":"VariableDeclaration","scope":33298,"src":"3967:14:101","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":33293,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3967:7:101","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3966:16:101"},"scope":33299,"src":"3874:374:101","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":33300,"src":"521:3729:101","usedErrors":[],"usedEvents":[]}],"src":"123:4128:101"},"id":101},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","exportedSymbols":{"ERC165":[33323],"IERC165":[33545]},"id":33324,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":33301,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"114:24:102"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"./IERC165.sol","id":33303,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":33324,"sourceUnit":33546,"src":"140:38:102","symbolAliases":[{"foreign":{"id":33302,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"148:7:102","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":33305,"name":"IERC165","nameLocations":["688:7:102"],"nodeType":"IdentifierPath","referencedDeclaration":33545,"src":"688:7:102"},"id":33306,"nodeType":"InheritanceSpecifier","src":"688:7:102"}],"canonicalName":"ERC165","contractDependencies":[],"contractKind":"contract","documentation":{"id":33304,"nodeType":"StructuredDocumentation","src":"180:479:102","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":33323,"linearizedBaseContracts":[33323,33545],"name":"ERC165","nameLocation":"678:6:102","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[33544],"body":{"id":33321,"nodeType":"Block","src":"812:64:102","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":33319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33314,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33309,"src":"829:11:102","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":33316,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"849:7:102","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$33545_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$33545_$","typeString":"type(contract IERC165)"}],"id":33315,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"844:4:102","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":33317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"844:13:102","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$33545","typeString":"type(contract IERC165)"}},"id":33318,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"858:11:102","memberName":"interfaceId","nodeType":"MemberAccess","src":"844:25:102","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"829:40:102","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":33313,"id":33320,"nodeType":"Return","src":"822:47:102"}]},"documentation":{"id":33307,"nodeType":"StructuredDocumentation","src":"702:23:102","text":"@inheritdoc IERC165"},"functionSelector":"01ffc9a7","id":33322,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"739:17:102","nodeType":"FunctionDefinition","parameters":{"id":33310,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33309,"mutability":"mutable","name":"interfaceId","nameLocation":"764:11:102","nodeType":"VariableDeclaration","scope":33322,"src":"757:18:102","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":33308,"name":"bytes4","nodeType":"ElementaryTypeName","src":"757:6:102","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"756:20:102"},"returnParameters":{"id":33313,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33312,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33322,"src":"806:4:102","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33311,"name":"bool","nodeType":"ElementaryTypeName","src":"806:4:102","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"805:6:102"},"scope":33323,"src":"730:146:102","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":33324,"src":"660:218:102","usedErrors":[],"usedEvents":[]}],"src":"114:765:102"},"id":102},"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol","exportedSymbols":{"ERC165Checker":[33533],"IERC165":[33545]},"id":33534,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":33325,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"121:24:103"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"./IERC165.sol","id":33327,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":33534,"sourceUnit":33546,"src":"147:38:103","symbolAliases":[{"foreign":{"id":33326,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"155:7:103","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"ERC165Checker","contractDependencies":[],"contractKind":"library","documentation":{"id":33328,"nodeType":"StructuredDocumentation","src":"187:277:103","text":" @dev Library used to query support of an interface declared via {IERC165}.\n Note that these functions return the actual result of the query: they do not\n `revert` if an interface is not supported. It is up to the caller to decide\n what to do in these cases."},"fullyImplemented":true,"id":33533,"linearizedBaseContracts":[33533],"name":"ERC165Checker","nameLocation":"473:13:103","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":33331,"mutability":"constant","name":"INTERFACE_ID_INVALID","nameLocation":"591:20:103","nodeType":"VariableDeclaration","scope":33533,"src":"567:57:103","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":33329,"name":"bytes4","nodeType":"ElementaryTypeName","src":"567:6:103","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"hexValue":"30786666666666666666","id":33330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"614:10:103","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"value":"0xffffffff"},"visibility":"private"},{"body":{"id":33365,"nodeType":"Block","src":"789:458:103","statements":[{"condition":{"arguments":[{"id":33340,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33334,"src":"1009:7:103","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":33342,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"1023:7:103","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$33545_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$33545_$","typeString":"type(contract IERC165)"}],"id":33341,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1018:4:103","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":33343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1018:13:103","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$33545","typeString":"type(contract IERC165)"}},"id":33344,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1032:11:103","memberName":"interfaceId","nodeType":"MemberAccess","src":"1018:25:103","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":33339,"name":"supportsERC165InterfaceUnchecked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33512,"src":"976:32:103","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":33345,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"976:68:103","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":33363,"nodeType":"Block","src":"1204:37:103","statements":[{"expression":{"hexValue":"66616c7365","id":33361,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1225:5:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":33338,"id":33362,"nodeType":"Return","src":"1218:12:103"}]},"id":33364,"nodeType":"IfStatement","src":"972:269:103","trueBody":{"id":33360,"nodeType":"Block","src":"1046:152:103","statements":[{"assignments":[33347,33349],"declarations":[{"constant":false,"id":33347,"mutability":"mutable","name":"success","nameLocation":"1066:7:103","nodeType":"VariableDeclaration","scope":33360,"src":"1061:12:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33346,"name":"bool","nodeType":"ElementaryTypeName","src":"1061:4:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":33349,"mutability":"mutable","name":"supported","nameLocation":"1080:9:103","nodeType":"VariableDeclaration","scope":33360,"src":"1075:14:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33348,"name":"bool","nodeType":"ElementaryTypeName","src":"1075:4:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":33354,"initialValue":{"arguments":[{"id":33351,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33334,"src":"1115:7:103","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":33352,"name":"INTERFACE_ID_INVALID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33331,"src":"1124:20:103","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":33350,"name":"_trySupportsInterface","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33532,"src":"1093:21:103","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$_t_bool_$","typeString":"function (address,bytes4) view returns (bool,bool)"}},"id":33353,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1093:52:103","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bool_$","typeString":"tuple(bool,bool)"}},"nodeType":"VariableDeclarationStatement","src":"1060:85:103"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":33358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33355,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33347,"src":"1166:7:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":33357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"1177:10:103","subExpression":{"id":33356,"name":"supported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33349,"src":"1178:9:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1166:21:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":33338,"id":33359,"nodeType":"Return","src":"1159:28:103"}]}}]},"documentation":{"id":33332,"nodeType":"StructuredDocumentation","src":"631:83:103","text":" @dev Returns true if `account` supports the {IERC165} interface."},"id":33366,"implemented":true,"kind":"function","modifiers":[],"name":"supportsERC165","nameLocation":"728:14:103","nodeType":"FunctionDefinition","parameters":{"id":33335,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33334,"mutability":"mutable","name":"account","nameLocation":"751:7:103","nodeType":"VariableDeclaration","scope":33366,"src":"743:15:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":33333,"name":"address","nodeType":"ElementaryTypeName","src":"743:7:103","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"742:17:103"},"returnParameters":{"id":33338,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33337,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33366,"src":"783:4:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33336,"name":"bool","nodeType":"ElementaryTypeName","src":"783:4:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"782:6:103"},"scope":33533,"src":"719:528:103","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":33385,"nodeType":"Block","src":"1558:190:103","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":33383,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":33377,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33369,"src":"1675:7:103","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":33376,"name":"supportsERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33366,"src":"1660:14:103","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":33378,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1660:23:103","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"arguments":[{"id":33380,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33369,"src":"1720:7:103","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":33381,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33371,"src":"1729:11:103","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":33379,"name":"supportsERC165InterfaceUnchecked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33512,"src":"1687:32:103","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":33382,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1687:54:103","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1660:81:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":33375,"id":33384,"nodeType":"Return","src":"1653:88:103"}]},"documentation":{"id":33367,"nodeType":"StructuredDocumentation","src":"1253:207:103","text":" @dev Returns true if `account` supports the interface defined by\n `interfaceId`. Support for {IERC165} itself is queried automatically.\n See {IERC165-supportsInterface}."},"id":33386,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"1474:17:103","nodeType":"FunctionDefinition","parameters":{"id":33372,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33369,"mutability":"mutable","name":"account","nameLocation":"1500:7:103","nodeType":"VariableDeclaration","scope":33386,"src":"1492:15:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":33368,"name":"address","nodeType":"ElementaryTypeName","src":"1492:7:103","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":33371,"mutability":"mutable","name":"interfaceId","nameLocation":"1516:11:103","nodeType":"VariableDeclaration","scope":33386,"src":"1509:18:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":33370,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1509:6:103","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1491:37:103"},"returnParameters":{"id":33375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33374,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33386,"src":"1552:4:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33373,"name":"bool","nodeType":"ElementaryTypeName","src":"1552:4:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1551:6:103"},"scope":33533,"src":"1465:283:103","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":33441,"nodeType":"Block","src":"2234:561:103","statements":[{"assignments":[33402],"declarations":[{"constant":false,"id":33402,"mutability":"mutable","name":"interfaceIdsSupported","nameLocation":"2357:21:103","nodeType":"VariableDeclaration","scope":33441,"src":"2343:35:103","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bool_$dyn_memory_ptr","typeString":"bool[]"},"typeName":{"baseType":{"id":33400,"name":"bool","nodeType":"ElementaryTypeName","src":"2343:4:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33401,"nodeType":"ArrayTypeName","src":"2343:6:103","typeDescriptions":{"typeIdentifier":"t_array$_t_bool_$dyn_storage_ptr","typeString":"bool[]"}},"visibility":"internal"}],"id":33409,"initialValue":{"arguments":[{"expression":{"id":33406,"name":"interfaceIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33392,"src":"2392:12:103","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":33407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2405:6:103","memberName":"length","nodeType":"MemberAccess","src":"2392:19:103","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":33405,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"2381:10:103","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_bool_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (bool[] memory)"},"typeName":{"baseType":{"id":33403,"name":"bool","nodeType":"ElementaryTypeName","src":"2385:4:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33404,"nodeType":"ArrayTypeName","src":"2385:6:103","typeDescriptions":{"typeIdentifier":"t_array$_t_bool_$dyn_storage_ptr","typeString":"bool[]"}}},"id":33408,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2381:31:103","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bool_$dyn_memory_ptr","typeString":"bool[] memory"}},"nodeType":"VariableDeclarationStatement","src":"2343:69:103"},{"condition":{"arguments":[{"id":33411,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33389,"src":"2485:7:103","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":33410,"name":"supportsERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33366,"src":"2470:14:103","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":33412,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2470:23:103","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33438,"nodeType":"IfStatement","src":"2466:284:103","trueBody":{"id":33437,"nodeType":"Block","src":"2495:255:103","statements":[{"body":{"id":33435,"nodeType":"Block","src":"2622:118:103","statements":[{"expression":{"id":33433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":33424,"name":"interfaceIdsSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33402,"src":"2640:21:103","typeDescriptions":{"typeIdentifier":"t_array$_t_bool_$dyn_memory_ptr","typeString":"bool[] memory"}},"id":33426,"indexExpression":{"id":33425,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33414,"src":"2662:1:103","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2640:24:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":33428,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33389,"src":"2700:7:103","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":33429,"name":"interfaceIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33392,"src":"2709:12:103","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":33431,"indexExpression":{"id":33430,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33414,"src":"2722:1:103","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2709:15:103","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":33427,"name":"supportsERC165InterfaceUnchecked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33512,"src":"2667:32:103","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":33432,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2667:58:103","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2640:85:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33434,"nodeType":"ExpressionStatement","src":"2640:85:103"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33417,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33414,"src":"2592:1:103","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":33418,"name":"interfaceIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33392,"src":"2596:12:103","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":33419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2609:6:103","memberName":"length","nodeType":"MemberAccess","src":"2596:19:103","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2592:23:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33436,"initializationExpression":{"assignments":[33414],"declarations":[{"constant":false,"id":33414,"mutability":"mutable","name":"i","nameLocation":"2585:1:103","nodeType":"VariableDeclaration","scope":33436,"src":"2577:9:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33413,"name":"uint256","nodeType":"ElementaryTypeName","src":"2577:7:103","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":33416,"initialValue":{"hexValue":"30","id":33415,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2589:1:103","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"2577:13:103"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":33422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"2617:3:103","subExpression":{"id":33421,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33414,"src":"2617:1:103","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":33423,"nodeType":"ExpressionStatement","src":"2617:3:103"},"nodeType":"ForStatement","src":"2572:168:103"}]}},{"expression":{"id":33439,"name":"interfaceIdsSupported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33402,"src":"2767:21:103","typeDescriptions":{"typeIdentifier":"t_array$_t_bool_$dyn_memory_ptr","typeString":"bool[] memory"}},"functionReturnParameters":33397,"id":33440,"nodeType":"Return","src":"2760:28:103"}]},"documentation":{"id":33387,"nodeType":"StructuredDocumentation","src":"1754:336:103","text":" @dev Returns a boolean array where each value corresponds to the\n interfaces passed in and whether they're supported or not. This allows\n you to batch check interfaces for a contract where your expectation\n is that some interfaces may not be supported.\n See {IERC165-supportsInterface}."},"id":33442,"implemented":true,"kind":"function","modifiers":[],"name":"getSupportedInterfaces","nameLocation":"2104:22:103","nodeType":"FunctionDefinition","parameters":{"id":33393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33389,"mutability":"mutable","name":"account","nameLocation":"2144:7:103","nodeType":"VariableDeclaration","scope":33442,"src":"2136:15:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":33388,"name":"address","nodeType":"ElementaryTypeName","src":"2136:7:103","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":33392,"mutability":"mutable","name":"interfaceIds","nameLocation":"2177:12:103","nodeType":"VariableDeclaration","scope":33442,"src":"2161:28:103","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":33390,"name":"bytes4","nodeType":"ElementaryTypeName","src":"2161:6:103","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":33391,"nodeType":"ArrayTypeName","src":"2161:8:103","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"src":"2126:69:103"},"returnParameters":{"id":33397,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33396,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33442,"src":"2219:13:103","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bool_$dyn_memory_ptr","typeString":"bool[]"},"typeName":{"baseType":{"id":33394,"name":"bool","nodeType":"ElementaryTypeName","src":"2219:4:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33395,"nodeType":"ArrayTypeName","src":"2219:6:103","typeDescriptions":{"typeIdentifier":"t_array$_t_bool_$dyn_storage_ptr","typeString":"bool[]"}},"visibility":"internal"}],"src":"2218:15:103"},"scope":33533,"src":"2095:700:103","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":33487,"nodeType":"Block","src":"3237:437:103","statements":[{"condition":{"id":33456,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3294:24:103","subExpression":{"arguments":[{"id":33454,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33445,"src":"3310:7:103","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":33453,"name":"supportsERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33366,"src":"3295:14:103","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":33455,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3295:23:103","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33460,"nodeType":"IfStatement","src":"3290:67:103","trueBody":{"id":33459,"nodeType":"Block","src":"3320:37:103","statements":[{"expression":{"hexValue":"66616c7365","id":33457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3341:5:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":33452,"id":33458,"nodeType":"Return","src":"3334:12:103"}]}},{"body":{"id":33483,"nodeType":"Block","src":"3476:134:103","statements":[{"condition":{"id":33478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"3494:59:103","subExpression":{"arguments":[{"id":33473,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33445,"src":"3528:7:103","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":33474,"name":"interfaceIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33448,"src":"3537:12:103","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":33476,"indexExpression":{"id":33475,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33462,"src":"3550:1:103","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3537:15:103","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":33472,"name":"supportsERC165InterfaceUnchecked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33512,"src":"3495:32:103","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$","typeString":"function (address,bytes4) view returns (bool)"}},"id":33477,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3495:58:103","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33482,"nodeType":"IfStatement","src":"3490:110:103","trueBody":{"id":33481,"nodeType":"Block","src":"3555:45:103","statements":[{"expression":{"hexValue":"66616c7365","id":33479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3580:5:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":33452,"id":33480,"nodeType":"Return","src":"3573:12:103"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33465,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33462,"src":"3446:1:103","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":33466,"name":"interfaceIds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33448,"src":"3450:12:103","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[] memory"}},"id":33467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3463:6:103","memberName":"length","nodeType":"MemberAccess","src":"3450:19:103","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3446:23:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33484,"initializationExpression":{"assignments":[33462],"declarations":[{"constant":false,"id":33462,"mutability":"mutable","name":"i","nameLocation":"3439:1:103","nodeType":"VariableDeclaration","scope":33484,"src":"3431:9:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33461,"name":"uint256","nodeType":"ElementaryTypeName","src":"3431:7:103","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":33464,"initialValue":{"hexValue":"30","id":33463,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3443:1:103","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"3431:13:103"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":33470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"3471:3:103","subExpression":{"id":33469,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33462,"src":"3471:1:103","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":33471,"nodeType":"ExpressionStatement","src":"3471:3:103"},"nodeType":"ForStatement","src":"3426:184:103"},{"expression":{"hexValue":"74727565","id":33485,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3663:4:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":33452,"id":33486,"nodeType":"Return","src":"3656:11:103"}]},"documentation":{"id":33443,"nodeType":"StructuredDocumentation","src":"2801:324:103","text":" @dev Returns true if `account` supports all the interfaces defined in\n `interfaceIds`. Support for {IERC165} itself is queried automatically.\n Batch-querying can lead to gas savings by skipping repeated checks for\n {IERC165} support.\n See {IERC165-supportsInterface}."},"id":33488,"implemented":true,"kind":"function","modifiers":[],"name":"supportsAllInterfaces","nameLocation":"3139:21:103","nodeType":"FunctionDefinition","parameters":{"id":33449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33445,"mutability":"mutable","name":"account","nameLocation":"3169:7:103","nodeType":"VariableDeclaration","scope":33488,"src":"3161:15:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":33444,"name":"address","nodeType":"ElementaryTypeName","src":"3161:7:103","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":33448,"mutability":"mutable","name":"interfaceIds","nameLocation":"3194:12:103","nodeType":"VariableDeclaration","scope":33488,"src":"3178:28:103","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_memory_ptr","typeString":"bytes4[]"},"typeName":{"baseType":{"id":33446,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3178:6:103","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":33447,"nodeType":"ArrayTypeName","src":"3178:8:103","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes4_$dyn_storage_ptr","typeString":"bytes4[]"}},"visibility":"internal"}],"src":"3160:47:103"},"returnParameters":{"id":33452,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33451,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33488,"src":"3231:4:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33450,"name":"bool","nodeType":"ElementaryTypeName","src":"3231:4:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3230:6:103"},"scope":33533,"src":"3130:544:103","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":33511,"nodeType":"Block","src":"4612:130:103","statements":[{"assignments":[33499,33501],"declarations":[{"constant":false,"id":33499,"mutability":"mutable","name":"success","nameLocation":"4628:7:103","nodeType":"VariableDeclaration","scope":33511,"src":"4623:12:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33498,"name":"bool","nodeType":"ElementaryTypeName","src":"4623:4:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":33501,"mutability":"mutable","name":"supported","nameLocation":"4642:9:103","nodeType":"VariableDeclaration","scope":33511,"src":"4637:14:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33500,"name":"bool","nodeType":"ElementaryTypeName","src":"4637:4:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":33506,"initialValue":{"arguments":[{"id":33503,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33491,"src":"4677:7:103","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":33504,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33493,"src":"4686:11:103","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":33502,"name":"_trySupportsInterface","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33532,"src":"4655:21:103","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bytes4_$returns$_t_bool_$_t_bool_$","typeString":"function (address,bytes4) view returns (bool,bool)"}},"id":33505,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4655:43:103","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bool_$","typeString":"tuple(bool,bool)"}},"nodeType":"VariableDeclarationStatement","src":"4622:76:103"},{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":33509,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33507,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33499,"src":"4715:7:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":33508,"name":"supported","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33501,"src":"4726:9:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4715:20:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":33497,"id":33510,"nodeType":"Return","src":"4708:27:103"}]},"documentation":{"id":33489,"nodeType":"StructuredDocumentation","src":"3680:819:103","text":" @notice Query if a contract implements an interface, does not check ERC-165 support\n @param account The address of the contract to query for support of an interface\n @param interfaceId The interface identifier, as specified in ERC-165\n @return true if the contract at account indicates support of the interface with\n identifier interfaceId, false otherwise\n @dev Assumes that account contains a contract that supports ERC-165, otherwise\n the behavior of this method is undefined. This precondition can be checked\n with {supportsERC165}.\n Some precompiled contracts will falsely indicate support for a given interface, so caution\n should be exercised when using this function.\n Interface identification is specified in ERC-165."},"id":33512,"implemented":true,"kind":"function","modifiers":[],"name":"supportsERC165InterfaceUnchecked","nameLocation":"4513:32:103","nodeType":"FunctionDefinition","parameters":{"id":33494,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33491,"mutability":"mutable","name":"account","nameLocation":"4554:7:103","nodeType":"VariableDeclaration","scope":33512,"src":"4546:15:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":33490,"name":"address","nodeType":"ElementaryTypeName","src":"4546:7:103","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":33493,"mutability":"mutable","name":"interfaceId","nameLocation":"4570:11:103","nodeType":"VariableDeclaration","scope":33512,"src":"4563:18:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":33492,"name":"bytes4","nodeType":"ElementaryTypeName","src":"4563:6:103","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"4545:37:103"},"returnParameters":{"id":33497,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33496,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33512,"src":"4606:4:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33495,"name":"bool","nodeType":"ElementaryTypeName","src":"4606:4:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4605:6:103"},"scope":33533,"src":"4504:238:103","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":33531,"nodeType":"Block","src":"5359:486:103","statements":[{"assignments":[33525],"declarations":[{"constant":false,"id":33525,"mutability":"mutable","name":"selector","nameLocation":"5376:8:103","nodeType":"VariableDeclaration","scope":33531,"src":"5369:15:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":33524,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5369:6:103","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":33529,"initialValue":{"expression":{"expression":{"id":33526,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33545,"src":"5387:7:103","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$33545_$","typeString":"type(contract IERC165)"}},"id":33527,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5395:17:103","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":33544,"src":"5387:25:103","typeDescriptions":{"typeIdentifier":"t_function_declaration_view$_t_bytes4_$returns$_t_bool_$","typeString":"function IERC165.supportsInterface(bytes4) view returns (bool)"}},"id":33528,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5413:8:103","memberName":"selector","nodeType":"MemberAccess","src":"5387:34:103","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"5369:52:103"},{"AST":{"nativeSrc":"5457:382:103","nodeType":"YulBlock","src":"5457:382:103","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5478:4:103","nodeType":"YulLiteral","src":"5478:4:103","type":"","value":"0x00"},{"name":"selector","nativeSrc":"5484:8:103","nodeType":"YulIdentifier","src":"5484:8:103"}],"functionName":{"name":"mstore","nativeSrc":"5471:6:103","nodeType":"YulIdentifier","src":"5471:6:103"},"nativeSrc":"5471:22:103","nodeType":"YulFunctionCall","src":"5471:22:103"},"nativeSrc":"5471:22:103","nodeType":"YulExpressionStatement","src":"5471:22:103"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5513:4:103","nodeType":"YulLiteral","src":"5513:4:103","type":"","value":"0x04"},{"name":"interfaceId","nativeSrc":"5519:11:103","nodeType":"YulIdentifier","src":"5519:11:103"}],"functionName":{"name":"mstore","nativeSrc":"5506:6:103","nodeType":"YulIdentifier","src":"5506:6:103"},"nativeSrc":"5506:25:103","nodeType":"YulFunctionCall","src":"5506:25:103"},"nativeSrc":"5506:25:103","nodeType":"YulExpressionStatement","src":"5506:25:103"},{"nativeSrc":"5544:61:103","nodeType":"YulAssignment","src":"5544:61:103","value":{"arguments":[{"kind":"number","nativeSrc":"5566:5:103","nodeType":"YulLiteral","src":"5566:5:103","type":"","value":"30000"},{"name":"account","nativeSrc":"5573:7:103","nodeType":"YulIdentifier","src":"5573:7:103"},{"kind":"number","nativeSrc":"5582:4:103","nodeType":"YulLiteral","src":"5582:4:103","type":"","value":"0x00"},{"kind":"number","nativeSrc":"5588:4:103","nodeType":"YulLiteral","src":"5588:4:103","type":"","value":"0x24"},{"kind":"number","nativeSrc":"5594:4:103","nodeType":"YulLiteral","src":"5594:4:103","type":"","value":"0x00"},{"kind":"number","nativeSrc":"5600:4:103","nodeType":"YulLiteral","src":"5600:4:103","type":"","value":"0x20"}],"functionName":{"name":"staticcall","nativeSrc":"5555:10:103","nodeType":"YulIdentifier","src":"5555:10:103"},"nativeSrc":"5555:50:103","nodeType":"YulFunctionCall","src":"5555:50:103"},"variableNames":[{"name":"success","nativeSrc":"5544:7:103","nodeType":"YulIdentifier","src":"5544:7:103"}]},{"nativeSrc":"5618:211:103","nodeType":"YulAssignment","src":"5618:211:103","value":{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"5655:14:103","nodeType":"YulIdentifier","src":"5655:14:103"},"nativeSrc":"5655:16:103","nodeType":"YulFunctionCall","src":"5655:16:103"},{"kind":"number","nativeSrc":"5673:4:103","nodeType":"YulLiteral","src":"5673:4:103","type":"","value":"0x1F"}],"functionName":{"name":"gt","nativeSrc":"5652:2:103","nodeType":"YulIdentifier","src":"5652:2:103"},"nativeSrc":"5652:26:103","nodeType":"YulFunctionCall","src":"5652:26:103"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5759:4:103","nodeType":"YulLiteral","src":"5759:4:103","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"5753:5:103","nodeType":"YulIdentifier","src":"5753:5:103"},"nativeSrc":"5753:11:103","nodeType":"YulFunctionCall","src":"5753:11:103"}],"functionName":{"name":"iszero","nativeSrc":"5746:6:103","nodeType":"YulIdentifier","src":"5746:6:103"},"nativeSrc":"5746:19:103","nodeType":"YulFunctionCall","src":"5746:19:103"}],"functionName":{"name":"iszero","nativeSrc":"5739:6:103","nodeType":"YulIdentifier","src":"5739:6:103"},"nativeSrc":"5739:27:103","nodeType":"YulFunctionCall","src":"5739:27:103"}],"functionName":{"name":"and","nativeSrc":"5631:3:103","nodeType":"YulIdentifier","src":"5631:3:103"},"nativeSrc":"5631:198:103","nodeType":"YulFunctionCall","src":"5631:198:103"},"variableNames":[{"name":"supported","nativeSrc":"5618:9:103","nodeType":"YulIdentifier","src":"5618:9:103"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":33515,"isOffset":false,"isSlot":false,"src":"5573:7:103","valueSize":1},{"declaration":33517,"isOffset":false,"isSlot":false,"src":"5519:11:103","valueSize":1},{"declaration":33525,"isOffset":false,"isSlot":false,"src":"5484:8:103","valueSize":1},{"declaration":33520,"isOffset":false,"isSlot":false,"src":"5544:7:103","valueSize":1},{"declaration":33522,"isOffset":false,"isSlot":false,"src":"5618:9:103","valueSize":1}],"flags":["memory-safe"],"id":33530,"nodeType":"InlineAssembly","src":"5432:407:103"}]},"documentation":{"id":33513,"nodeType":"StructuredDocumentation","src":"4748:464:103","text":" @dev Attempts to call `supportsInterface` on a contract and returns both the call\n success status and the interface support result.\n This function performs a low-level static call to the contract's `supportsInterface`\n function. It returns:\n * `success`: true if the call didn't revert, false if it did\n * `supported`: true if the call succeeded AND returned data indicating the interface is supported"},"id":33532,"implemented":true,"kind":"function","modifiers":[],"name":"_trySupportsInterface","nameLocation":"5226:21:103","nodeType":"FunctionDefinition","parameters":{"id":33518,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33515,"mutability":"mutable","name":"account","nameLocation":"5265:7:103","nodeType":"VariableDeclaration","scope":33532,"src":"5257:15:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":33514,"name":"address","nodeType":"ElementaryTypeName","src":"5257:7:103","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":33517,"mutability":"mutable","name":"interfaceId","nameLocation":"5289:11:103","nodeType":"VariableDeclaration","scope":33532,"src":"5282:18:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":33516,"name":"bytes4","nodeType":"ElementaryTypeName","src":"5282:6:103","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"5247:59:103"},"returnParameters":{"id":33523,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33520,"mutability":"mutable","name":"success","nameLocation":"5334:7:103","nodeType":"VariableDeclaration","scope":33532,"src":"5329:12:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33519,"name":"bool","nodeType":"ElementaryTypeName","src":"5329:4:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":33522,"mutability":"mutable","name":"supported","nameLocation":"5348:9:103","nodeType":"VariableDeclaration","scope":33532,"src":"5343:14:103","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33521,"name":"bool","nodeType":"ElementaryTypeName","src":"5343:4:103","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5328:30:103"},"scope":33533,"src":"5217:628:103","stateMutability":"view","virtual":false,"visibility":"private"}],"scope":33534,"src":"465:5382:103","usedErrors":[],"usedEvents":[]}],"src":"121:5727:103"},"id":103},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","exportedSymbols":{"IERC165":[33545]},"id":33546,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":33535,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"115:25:104"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC165","contractDependencies":[],"contractKind":"interface","documentation":{"id":33536,"nodeType":"StructuredDocumentation","src":"142:280:104","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":33545,"linearizedBaseContracts":[33545],"name":"IERC165","nameLocation":"433:7:104","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":33537,"nodeType":"StructuredDocumentation","src":"447:340:104","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":33544,"implemented":false,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"801:17:104","nodeType":"FunctionDefinition","parameters":{"id":33540,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33539,"mutability":"mutable","name":"interfaceId","nameLocation":"826:11:104","nodeType":"VariableDeclaration","scope":33544,"src":"819:18:104","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":33538,"name":"bytes4","nodeType":"ElementaryTypeName","src":"819:6:104","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"818:20:104"},"returnParameters":{"id":33543,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33542,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33544,"src":"862:4:104","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33541,"name":"bool","nodeType":"ElementaryTypeName","src":"862:4:104","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"861:6:104"},"scope":33545,"src":"792:76:104","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":33546,"src":"423:447:104","usedErrors":[],"usedEvents":[]}],"src":"115:756:104"},"id":104},"@openzeppelin/contracts/utils/math/Math.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","exportedSymbols":{"Math":[35187],"Panic":[30997],"SafeCast":[36952]},"id":35188,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":33547,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"103:24:105"},{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","file":"../Panic.sol","id":33549,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":35188,"sourceUnit":30998,"src":"129:35:105","symbolAliases":[{"foreign":{"id":33548,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"137:5:105","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./SafeCast.sol","id":33551,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":35188,"sourceUnit":36953,"src":"165:40:105","symbolAliases":[{"foreign":{"id":33550,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"173:8:105","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Math","contractDependencies":[],"contractKind":"library","documentation":{"id":33552,"nodeType":"StructuredDocumentation","src":"207:73:105","text":" @dev Standard math utilities missing in the Solidity language."},"fullyImplemented":true,"id":35187,"linearizedBaseContracts":[35187],"name":"Math","nameLocation":"289:4:105","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Math.Rounding","id":33557,"members":[{"id":33553,"name":"Floor","nameLocation":"324:5:105","nodeType":"EnumValue","src":"324:5:105"},{"id":33554,"name":"Ceil","nameLocation":"367:4:105","nodeType":"EnumValue","src":"367:4:105"},{"id":33555,"name":"Trunc","nameLocation":"409:5:105","nodeType":"EnumValue","src":"409:5:105"},{"id":33556,"name":"Expand","nameLocation":"439:6:105","nodeType":"EnumValue","src":"439:6:105"}],"name":"Rounding","nameLocation":"305:8:105","nodeType":"EnumDefinition","src":"300:169:105"},{"body":{"id":33570,"nodeType":"Block","src":"731:112:105","statements":[{"AST":{"nativeSrc":"766:71:105","nodeType":"YulBlock","src":"766:71:105","statements":[{"nativeSrc":"780:16:105","nodeType":"YulAssignment","src":"780:16:105","value":{"arguments":[{"name":"a","nativeSrc":"791:1:105","nodeType":"YulIdentifier","src":"791:1:105"},{"name":"b","nativeSrc":"794:1:105","nodeType":"YulIdentifier","src":"794:1:105"}],"functionName":{"name":"add","nativeSrc":"787:3:105","nodeType":"YulIdentifier","src":"787:3:105"},"nativeSrc":"787:9:105","nodeType":"YulFunctionCall","src":"787:9:105"},"variableNames":[{"name":"low","nativeSrc":"780:3:105","nodeType":"YulIdentifier","src":"780:3:105"}]},{"nativeSrc":"809:18:105","nodeType":"YulAssignment","src":"809:18:105","value":{"arguments":[{"name":"low","nativeSrc":"820:3:105","nodeType":"YulIdentifier","src":"820:3:105"},{"name":"a","nativeSrc":"825:1:105","nodeType":"YulIdentifier","src":"825:1:105"}],"functionName":{"name":"lt","nativeSrc":"817:2:105","nodeType":"YulIdentifier","src":"817:2:105"},"nativeSrc":"817:10:105","nodeType":"YulFunctionCall","src":"817:10:105"},"variableNames":[{"name":"high","nativeSrc":"809:4:105","nodeType":"YulIdentifier","src":"809:4:105"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":33560,"isOffset":false,"isSlot":false,"src":"791:1:105","valueSize":1},{"declaration":33560,"isOffset":false,"isSlot":false,"src":"825:1:105","valueSize":1},{"declaration":33562,"isOffset":false,"isSlot":false,"src":"794:1:105","valueSize":1},{"declaration":33565,"isOffset":false,"isSlot":false,"src":"809:4:105","valueSize":1},{"declaration":33567,"isOffset":false,"isSlot":false,"src":"780:3:105","valueSize":1},{"declaration":33567,"isOffset":false,"isSlot":false,"src":"820:3:105","valueSize":1}],"flags":["memory-safe"],"id":33569,"nodeType":"InlineAssembly","src":"741:96:105"}]},"documentation":{"id":33558,"nodeType":"StructuredDocumentation","src":"475:163:105","text":" @dev Return the 512-bit addition of two uint256.\n The result is stored in two 256 variables such that sum = high * 2²⁵⁶ + low."},"id":33571,"implemented":true,"kind":"function","modifiers":[],"name":"add512","nameLocation":"652:6:105","nodeType":"FunctionDefinition","parameters":{"id":33563,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33560,"mutability":"mutable","name":"a","nameLocation":"667:1:105","nodeType":"VariableDeclaration","scope":33571,"src":"659:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33559,"name":"uint256","nodeType":"ElementaryTypeName","src":"659:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33562,"mutability":"mutable","name":"b","nameLocation":"678:1:105","nodeType":"VariableDeclaration","scope":33571,"src":"670:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33561,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"658:22:105"},"returnParameters":{"id":33568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33565,"mutability":"mutable","name":"high","nameLocation":"712:4:105","nodeType":"VariableDeclaration","scope":33571,"src":"704:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33564,"name":"uint256","nodeType":"ElementaryTypeName","src":"704:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33567,"mutability":"mutable","name":"low","nameLocation":"726:3:105","nodeType":"VariableDeclaration","scope":33571,"src":"718:11:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33566,"name":"uint256","nodeType":"ElementaryTypeName","src":"718:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"703:27:105"},"scope":35187,"src":"643:200:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33584,"nodeType":"Block","src":"1115:462:105","statements":[{"AST":{"nativeSrc":"1437:134:105","nodeType":"YulBlock","src":"1437:134:105","statements":[{"nativeSrc":"1451:30:105","nodeType":"YulVariableDeclaration","src":"1451:30:105","value":{"arguments":[{"name":"a","nativeSrc":"1468:1:105","nodeType":"YulIdentifier","src":"1468:1:105"},{"name":"b","nativeSrc":"1471:1:105","nodeType":"YulIdentifier","src":"1471:1:105"},{"arguments":[{"kind":"number","nativeSrc":"1478:1:105","nodeType":"YulLiteral","src":"1478:1:105","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"1474:3:105","nodeType":"YulIdentifier","src":"1474:3:105"},"nativeSrc":"1474:6:105","nodeType":"YulFunctionCall","src":"1474:6:105"}],"functionName":{"name":"mulmod","nativeSrc":"1461:6:105","nodeType":"YulIdentifier","src":"1461:6:105"},"nativeSrc":"1461:20:105","nodeType":"YulFunctionCall","src":"1461:20:105"},"variables":[{"name":"mm","nativeSrc":"1455:2:105","nodeType":"YulTypedName","src":"1455:2:105","type":""}]},{"nativeSrc":"1494:16:105","nodeType":"YulAssignment","src":"1494:16:105","value":{"arguments":[{"name":"a","nativeSrc":"1505:1:105","nodeType":"YulIdentifier","src":"1505:1:105"},{"name":"b","nativeSrc":"1508:1:105","nodeType":"YulIdentifier","src":"1508:1:105"}],"functionName":{"name":"mul","nativeSrc":"1501:3:105","nodeType":"YulIdentifier","src":"1501:3:105"},"nativeSrc":"1501:9:105","nodeType":"YulFunctionCall","src":"1501:9:105"},"variableNames":[{"name":"low","nativeSrc":"1494:3:105","nodeType":"YulIdentifier","src":"1494:3:105"}]},{"nativeSrc":"1523:38:105","nodeType":"YulAssignment","src":"1523:38:105","value":{"arguments":[{"arguments":[{"name":"mm","nativeSrc":"1539:2:105","nodeType":"YulIdentifier","src":"1539:2:105"},{"name":"low","nativeSrc":"1543:3:105","nodeType":"YulIdentifier","src":"1543:3:105"}],"functionName":{"name":"sub","nativeSrc":"1535:3:105","nodeType":"YulIdentifier","src":"1535:3:105"},"nativeSrc":"1535:12:105","nodeType":"YulFunctionCall","src":"1535:12:105"},{"arguments":[{"name":"mm","nativeSrc":"1552:2:105","nodeType":"YulIdentifier","src":"1552:2:105"},{"name":"low","nativeSrc":"1556:3:105","nodeType":"YulIdentifier","src":"1556:3:105"}],"functionName":{"name":"lt","nativeSrc":"1549:2:105","nodeType":"YulIdentifier","src":"1549:2:105"},"nativeSrc":"1549:11:105","nodeType":"YulFunctionCall","src":"1549:11:105"}],"functionName":{"name":"sub","nativeSrc":"1531:3:105","nodeType":"YulIdentifier","src":"1531:3:105"},"nativeSrc":"1531:30:105","nodeType":"YulFunctionCall","src":"1531:30:105"},"variableNames":[{"name":"high","nativeSrc":"1523:4:105","nodeType":"YulIdentifier","src":"1523:4:105"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":33574,"isOffset":false,"isSlot":false,"src":"1468:1:105","valueSize":1},{"declaration":33574,"isOffset":false,"isSlot":false,"src":"1505:1:105","valueSize":1},{"declaration":33576,"isOffset":false,"isSlot":false,"src":"1471:1:105","valueSize":1},{"declaration":33576,"isOffset":false,"isSlot":false,"src":"1508:1:105","valueSize":1},{"declaration":33579,"isOffset":false,"isSlot":false,"src":"1523:4:105","valueSize":1},{"declaration":33581,"isOffset":false,"isSlot":false,"src":"1494:3:105","valueSize":1},{"declaration":33581,"isOffset":false,"isSlot":false,"src":"1543:3:105","valueSize":1},{"declaration":33581,"isOffset":false,"isSlot":false,"src":"1556:3:105","valueSize":1}],"flags":["memory-safe"],"id":33583,"nodeType":"InlineAssembly","src":"1412:159:105"}]},"documentation":{"id":33572,"nodeType":"StructuredDocumentation","src":"849:173:105","text":" @dev Return the 512-bit multiplication of two uint256.\n The result is stored in two 256 variables such that product = high * 2²⁵⁶ + low."},"id":33585,"implemented":true,"kind":"function","modifiers":[],"name":"mul512","nameLocation":"1036:6:105","nodeType":"FunctionDefinition","parameters":{"id":33577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33574,"mutability":"mutable","name":"a","nameLocation":"1051:1:105","nodeType":"VariableDeclaration","scope":33585,"src":"1043:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33573,"name":"uint256","nodeType":"ElementaryTypeName","src":"1043:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33576,"mutability":"mutable","name":"b","nameLocation":"1062:1:105","nodeType":"VariableDeclaration","scope":33585,"src":"1054:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33575,"name":"uint256","nodeType":"ElementaryTypeName","src":"1054:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1042:22:105"},"returnParameters":{"id":33582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33579,"mutability":"mutable","name":"high","nameLocation":"1096:4:105","nodeType":"VariableDeclaration","scope":33585,"src":"1088:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33578,"name":"uint256","nodeType":"ElementaryTypeName","src":"1088:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33581,"mutability":"mutable","name":"low","nameLocation":"1110:3:105","nodeType":"VariableDeclaration","scope":33585,"src":"1102:11:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33580,"name":"uint256","nodeType":"ElementaryTypeName","src":"1102:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1087:27:105"},"scope":35187,"src":"1027:550:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33619,"nodeType":"Block","src":"1784:149:105","statements":[{"id":33618,"nodeType":"UncheckedBlock","src":"1794:133:105","statements":[{"assignments":[33598],"declarations":[{"constant":false,"id":33598,"mutability":"mutable","name":"c","nameLocation":"1826:1:105","nodeType":"VariableDeclaration","scope":33618,"src":"1818:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33597,"name":"uint256","nodeType":"ElementaryTypeName","src":"1818:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":33602,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33601,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33599,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33588,"src":"1830:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":33600,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33590,"src":"1834:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1830:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1818:17:105"},{"expression":{"id":33607,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":33603,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33593,"src":"1849:7:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33604,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33598,"src":"1859:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":33605,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33588,"src":"1864:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1859:6:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1849:16:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33608,"nodeType":"ExpressionStatement","src":"1849:16:105"},{"expression":{"id":33616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":33609,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33595,"src":"1879:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33615,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33610,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33598,"src":"1888:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":33613,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33593,"src":"1908:7:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":33611,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"1892:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":33612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1901:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"1892:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":33614,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1892:24:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1888:28:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1879:37:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":33617,"nodeType":"ExpressionStatement","src":"1879:37:105"}]}]},"documentation":{"id":33586,"nodeType":"StructuredDocumentation","src":"1583:105:105","text":" @dev Returns the addition of two unsigned integers, with a success flag (no overflow)."},"id":33620,"implemented":true,"kind":"function","modifiers":[],"name":"tryAdd","nameLocation":"1702:6:105","nodeType":"FunctionDefinition","parameters":{"id":33591,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33588,"mutability":"mutable","name":"a","nameLocation":"1717:1:105","nodeType":"VariableDeclaration","scope":33620,"src":"1709:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33587,"name":"uint256","nodeType":"ElementaryTypeName","src":"1709:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33590,"mutability":"mutable","name":"b","nameLocation":"1728:1:105","nodeType":"VariableDeclaration","scope":33620,"src":"1720:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33589,"name":"uint256","nodeType":"ElementaryTypeName","src":"1720:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1708:22:105"},"returnParameters":{"id":33596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33593,"mutability":"mutable","name":"success","nameLocation":"1759:7:105","nodeType":"VariableDeclaration","scope":33620,"src":"1754:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33592,"name":"bool","nodeType":"ElementaryTypeName","src":"1754:4:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":33595,"mutability":"mutable","name":"result","nameLocation":"1776:6:105","nodeType":"VariableDeclaration","scope":33620,"src":"1768:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33594,"name":"uint256","nodeType":"ElementaryTypeName","src":"1768:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1753:30:105"},"scope":35187,"src":"1693:240:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33654,"nodeType":"Block","src":"2143:149:105","statements":[{"id":33653,"nodeType":"UncheckedBlock","src":"2153:133:105","statements":[{"assignments":[33633],"declarations":[{"constant":false,"id":33633,"mutability":"mutable","name":"c","nameLocation":"2185:1:105","nodeType":"VariableDeclaration","scope":33653,"src":"2177:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33632,"name":"uint256","nodeType":"ElementaryTypeName","src":"2177:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":33637,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33636,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33634,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33623,"src":"2189:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":33635,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33625,"src":"2193:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2189:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2177:17:105"},{"expression":{"id":33642,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":33638,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33628,"src":"2208:7:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33639,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33633,"src":"2218:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":33640,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33623,"src":"2223:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2218:6:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2208:16:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33643,"nodeType":"ExpressionStatement","src":"2208:16:105"},{"expression":{"id":33651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":33644,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33630,"src":"2238:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33650,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33645,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33633,"src":"2247:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":33648,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33628,"src":"2267:7:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":33646,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"2251:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":33647,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2260:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"2251:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":33649,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2251:24:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2247:28:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2238:37:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":33652,"nodeType":"ExpressionStatement","src":"2238:37:105"}]}]},"documentation":{"id":33621,"nodeType":"StructuredDocumentation","src":"1939:108:105","text":" @dev Returns the subtraction of two unsigned integers, with a success flag (no overflow)."},"id":33655,"implemented":true,"kind":"function","modifiers":[],"name":"trySub","nameLocation":"2061:6:105","nodeType":"FunctionDefinition","parameters":{"id":33626,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33623,"mutability":"mutable","name":"a","nameLocation":"2076:1:105","nodeType":"VariableDeclaration","scope":33655,"src":"2068:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33622,"name":"uint256","nodeType":"ElementaryTypeName","src":"2068:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33625,"mutability":"mutable","name":"b","nameLocation":"2087:1:105","nodeType":"VariableDeclaration","scope":33655,"src":"2079:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33624,"name":"uint256","nodeType":"ElementaryTypeName","src":"2079:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2067:22:105"},"returnParameters":{"id":33631,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33628,"mutability":"mutable","name":"success","nameLocation":"2118:7:105","nodeType":"VariableDeclaration","scope":33655,"src":"2113:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33627,"name":"bool","nodeType":"ElementaryTypeName","src":"2113:4:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":33630,"mutability":"mutable","name":"result","nameLocation":"2135:6:105","nodeType":"VariableDeclaration","scope":33655,"src":"2127:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33629,"name":"uint256","nodeType":"ElementaryTypeName","src":"2127:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2112:30:105"},"scope":35187,"src":"2052:240:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33684,"nodeType":"Block","src":"2505:391:105","statements":[{"id":33683,"nodeType":"UncheckedBlock","src":"2515:375:105","statements":[{"assignments":[33668],"declarations":[{"constant":false,"id":33668,"mutability":"mutable","name":"c","nameLocation":"2547:1:105","nodeType":"VariableDeclaration","scope":33683,"src":"2539:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33667,"name":"uint256","nodeType":"ElementaryTypeName","src":"2539:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":33672,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33671,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33669,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33658,"src":"2551:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":33670,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33660,"src":"2555:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2551:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2539:17:105"},{"AST":{"nativeSrc":"2595:188:105","nodeType":"YulBlock","src":"2595:188:105","statements":[{"nativeSrc":"2727:42:105","nodeType":"YulAssignment","src":"2727:42:105","value":{"arguments":[{"arguments":[{"arguments":[{"name":"c","nativeSrc":"2748:1:105","nodeType":"YulIdentifier","src":"2748:1:105"},{"name":"a","nativeSrc":"2751:1:105","nodeType":"YulIdentifier","src":"2751:1:105"}],"functionName":{"name":"div","nativeSrc":"2744:3:105","nodeType":"YulIdentifier","src":"2744:3:105"},"nativeSrc":"2744:9:105","nodeType":"YulFunctionCall","src":"2744:9:105"},{"name":"b","nativeSrc":"2755:1:105","nodeType":"YulIdentifier","src":"2755:1:105"}],"functionName":{"name":"eq","nativeSrc":"2741:2:105","nodeType":"YulIdentifier","src":"2741:2:105"},"nativeSrc":"2741:16:105","nodeType":"YulFunctionCall","src":"2741:16:105"},{"arguments":[{"name":"a","nativeSrc":"2766:1:105","nodeType":"YulIdentifier","src":"2766:1:105"}],"functionName":{"name":"iszero","nativeSrc":"2759:6:105","nodeType":"YulIdentifier","src":"2759:6:105"},"nativeSrc":"2759:9:105","nodeType":"YulFunctionCall","src":"2759:9:105"}],"functionName":{"name":"or","nativeSrc":"2738:2:105","nodeType":"YulIdentifier","src":"2738:2:105"},"nativeSrc":"2738:31:105","nodeType":"YulFunctionCall","src":"2738:31:105"},"variableNames":[{"name":"success","nativeSrc":"2727:7:105","nodeType":"YulIdentifier","src":"2727:7:105"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":33658,"isOffset":false,"isSlot":false,"src":"2751:1:105","valueSize":1},{"declaration":33658,"isOffset":false,"isSlot":false,"src":"2766:1:105","valueSize":1},{"declaration":33660,"isOffset":false,"isSlot":false,"src":"2755:1:105","valueSize":1},{"declaration":33668,"isOffset":false,"isSlot":false,"src":"2748:1:105","valueSize":1},{"declaration":33663,"isOffset":false,"isSlot":false,"src":"2727:7:105","valueSize":1}],"flags":["memory-safe"],"id":33673,"nodeType":"InlineAssembly","src":"2570:213:105"},{"expression":{"id":33681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":33674,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33665,"src":"2842:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33680,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33675,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33668,"src":"2851:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":33678,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33663,"src":"2871:7:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":33676,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"2855:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":33677,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2864:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"2855:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":33679,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2855:24:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2851:28:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2842:37:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":33682,"nodeType":"ExpressionStatement","src":"2842:37:105"}]}]},"documentation":{"id":33656,"nodeType":"StructuredDocumentation","src":"2298:111:105","text":" @dev Returns the multiplication of two unsigned integers, with a success flag (no overflow)."},"id":33685,"implemented":true,"kind":"function","modifiers":[],"name":"tryMul","nameLocation":"2423:6:105","nodeType":"FunctionDefinition","parameters":{"id":33661,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33658,"mutability":"mutable","name":"a","nameLocation":"2438:1:105","nodeType":"VariableDeclaration","scope":33685,"src":"2430:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33657,"name":"uint256","nodeType":"ElementaryTypeName","src":"2430:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33660,"mutability":"mutable","name":"b","nameLocation":"2449:1:105","nodeType":"VariableDeclaration","scope":33685,"src":"2441:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33659,"name":"uint256","nodeType":"ElementaryTypeName","src":"2441:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2429:22:105"},"returnParameters":{"id":33666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33663,"mutability":"mutable","name":"success","nameLocation":"2480:7:105","nodeType":"VariableDeclaration","scope":33685,"src":"2475:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33662,"name":"bool","nodeType":"ElementaryTypeName","src":"2475:4:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":33665,"mutability":"mutable","name":"result","nameLocation":"2497:6:105","nodeType":"VariableDeclaration","scope":33685,"src":"2489:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33664,"name":"uint256","nodeType":"ElementaryTypeName","src":"2489:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2474:30:105"},"scope":35187,"src":"2414:482:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33705,"nodeType":"Block","src":"3111:231:105","statements":[{"id":33704,"nodeType":"UncheckedBlock","src":"3121:215:105","statements":[{"expression":{"id":33701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":33697,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33693,"src":"3145:7:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33698,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33690,"src":"3155:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":33699,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3159:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3155:5:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3145:15:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33702,"nodeType":"ExpressionStatement","src":"3145:15:105"},{"AST":{"nativeSrc":"3199:127:105","nodeType":"YulBlock","src":"3199:127:105","statements":[{"nativeSrc":"3293:19:105","nodeType":"YulAssignment","src":"3293:19:105","value":{"arguments":[{"name":"a","nativeSrc":"3307:1:105","nodeType":"YulIdentifier","src":"3307:1:105"},{"name":"b","nativeSrc":"3310:1:105","nodeType":"YulIdentifier","src":"3310:1:105"}],"functionName":{"name":"div","nativeSrc":"3303:3:105","nodeType":"YulIdentifier","src":"3303:3:105"},"nativeSrc":"3303:9:105","nodeType":"YulFunctionCall","src":"3303:9:105"},"variableNames":[{"name":"result","nativeSrc":"3293:6:105","nodeType":"YulIdentifier","src":"3293:6:105"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":33688,"isOffset":false,"isSlot":false,"src":"3307:1:105","valueSize":1},{"declaration":33690,"isOffset":false,"isSlot":false,"src":"3310:1:105","valueSize":1},{"declaration":33695,"isOffset":false,"isSlot":false,"src":"3293:6:105","valueSize":1}],"flags":["memory-safe"],"id":33703,"nodeType":"InlineAssembly","src":"3174:152:105"}]}]},"documentation":{"id":33686,"nodeType":"StructuredDocumentation","src":"2902:113:105","text":" @dev Returns the division of two unsigned integers, with a success flag (no division by zero)."},"id":33706,"implemented":true,"kind":"function","modifiers":[],"name":"tryDiv","nameLocation":"3029:6:105","nodeType":"FunctionDefinition","parameters":{"id":33691,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33688,"mutability":"mutable","name":"a","nameLocation":"3044:1:105","nodeType":"VariableDeclaration","scope":33706,"src":"3036:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33687,"name":"uint256","nodeType":"ElementaryTypeName","src":"3036:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33690,"mutability":"mutable","name":"b","nameLocation":"3055:1:105","nodeType":"VariableDeclaration","scope":33706,"src":"3047:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33689,"name":"uint256","nodeType":"ElementaryTypeName","src":"3047:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3035:22:105"},"returnParameters":{"id":33696,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33693,"mutability":"mutable","name":"success","nameLocation":"3086:7:105","nodeType":"VariableDeclaration","scope":33706,"src":"3081:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33692,"name":"bool","nodeType":"ElementaryTypeName","src":"3081:4:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":33695,"mutability":"mutable","name":"result","nameLocation":"3103:6:105","nodeType":"VariableDeclaration","scope":33706,"src":"3095:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33694,"name":"uint256","nodeType":"ElementaryTypeName","src":"3095:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3080:30:105"},"scope":35187,"src":"3020:322:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33726,"nodeType":"Block","src":"3567:231:105","statements":[{"id":33725,"nodeType":"UncheckedBlock","src":"3577:215:105","statements":[{"expression":{"id":33722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":33718,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33714,"src":"3601:7:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33719,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33711,"src":"3611:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":33720,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3615:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3611:5:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3601:15:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33723,"nodeType":"ExpressionStatement","src":"3601:15:105"},{"AST":{"nativeSrc":"3655:127:105","nodeType":"YulBlock","src":"3655:127:105","statements":[{"nativeSrc":"3749:19:105","nodeType":"YulAssignment","src":"3749:19:105","value":{"arguments":[{"name":"a","nativeSrc":"3763:1:105","nodeType":"YulIdentifier","src":"3763:1:105"},{"name":"b","nativeSrc":"3766:1:105","nodeType":"YulIdentifier","src":"3766:1:105"}],"functionName":{"name":"mod","nativeSrc":"3759:3:105","nodeType":"YulIdentifier","src":"3759:3:105"},"nativeSrc":"3759:9:105","nodeType":"YulFunctionCall","src":"3759:9:105"},"variableNames":[{"name":"result","nativeSrc":"3749:6:105","nodeType":"YulIdentifier","src":"3749:6:105"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":33709,"isOffset":false,"isSlot":false,"src":"3763:1:105","valueSize":1},{"declaration":33711,"isOffset":false,"isSlot":false,"src":"3766:1:105","valueSize":1},{"declaration":33716,"isOffset":false,"isSlot":false,"src":"3749:6:105","valueSize":1}],"flags":["memory-safe"],"id":33724,"nodeType":"InlineAssembly","src":"3630:152:105"}]}]},"documentation":{"id":33707,"nodeType":"StructuredDocumentation","src":"3348:123:105","text":" @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero)."},"id":33727,"implemented":true,"kind":"function","modifiers":[],"name":"tryMod","nameLocation":"3485:6:105","nodeType":"FunctionDefinition","parameters":{"id":33712,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33709,"mutability":"mutable","name":"a","nameLocation":"3500:1:105","nodeType":"VariableDeclaration","scope":33727,"src":"3492:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33708,"name":"uint256","nodeType":"ElementaryTypeName","src":"3492:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33711,"mutability":"mutable","name":"b","nameLocation":"3511:1:105","nodeType":"VariableDeclaration","scope":33727,"src":"3503:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33710,"name":"uint256","nodeType":"ElementaryTypeName","src":"3503:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3491:22:105"},"returnParameters":{"id":33717,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33714,"mutability":"mutable","name":"success","nameLocation":"3542:7:105","nodeType":"VariableDeclaration","scope":33727,"src":"3537:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33713,"name":"bool","nodeType":"ElementaryTypeName","src":"3537:4:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":33716,"mutability":"mutable","name":"result","nameLocation":"3559:6:105","nodeType":"VariableDeclaration","scope":33727,"src":"3551:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33715,"name":"uint256","nodeType":"ElementaryTypeName","src":"3551:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3536:30:105"},"scope":35187,"src":"3476:322:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33756,"nodeType":"Block","src":"3989:122:105","statements":[{"assignments":[33738,33740],"declarations":[{"constant":false,"id":33738,"mutability":"mutable","name":"success","nameLocation":"4005:7:105","nodeType":"VariableDeclaration","scope":33756,"src":"4000:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33737,"name":"bool","nodeType":"ElementaryTypeName","src":"4000:4:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":33740,"mutability":"mutable","name":"result","nameLocation":"4022:6:105","nodeType":"VariableDeclaration","scope":33756,"src":"4014:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33739,"name":"uint256","nodeType":"ElementaryTypeName","src":"4014:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":33745,"initialValue":{"arguments":[{"id":33742,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33730,"src":"4039:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":33743,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33732,"src":"4042:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":33741,"name":"tryAdd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33620,"src":"4032:6:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (bool,uint256)"}},"id":33744,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4032:12:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"3999:45:105"},{"expression":{"arguments":[{"id":33747,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33738,"src":"4069:7:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":33748,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33740,"src":"4078:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"arguments":[{"id":33751,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4091:7:105","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":33750,"name":"uint256","nodeType":"ElementaryTypeName","src":"4091:7:105","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":33749,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4086:4:105","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":33752,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4086:13:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":33753,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4100:3:105","memberName":"max","nodeType":"MemberAccess","src":"4086:17:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":33746,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33834,"src":"4061:7:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":33754,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4061:43:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":33736,"id":33755,"nodeType":"Return","src":"4054:50:105"}]},"documentation":{"id":33728,"nodeType":"StructuredDocumentation","src":"3804:103:105","text":" @dev Unsigned saturating addition, bounds to `2²⁵⁶ - 1` instead of overflowing."},"id":33757,"implemented":true,"kind":"function","modifiers":[],"name":"saturatingAdd","nameLocation":"3921:13:105","nodeType":"FunctionDefinition","parameters":{"id":33733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33730,"mutability":"mutable","name":"a","nameLocation":"3943:1:105","nodeType":"VariableDeclaration","scope":33757,"src":"3935:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33729,"name":"uint256","nodeType":"ElementaryTypeName","src":"3935:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33732,"mutability":"mutable","name":"b","nameLocation":"3954:1:105","nodeType":"VariableDeclaration","scope":33757,"src":"3946:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33731,"name":"uint256","nodeType":"ElementaryTypeName","src":"3946:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3934:22:105"},"returnParameters":{"id":33736,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33735,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33757,"src":"3980:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33734,"name":"uint256","nodeType":"ElementaryTypeName","src":"3980:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3979:9:105"},"scope":35187,"src":"3912:199:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33776,"nodeType":"Block","src":"4294:73:105","statements":[{"assignments":[null,33768],"declarations":[null,{"constant":false,"id":33768,"mutability":"mutable","name":"result","nameLocation":"4315:6:105","nodeType":"VariableDeclaration","scope":33776,"src":"4307:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33767,"name":"uint256","nodeType":"ElementaryTypeName","src":"4307:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":33773,"initialValue":{"arguments":[{"id":33770,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33760,"src":"4332:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":33771,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33762,"src":"4335:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":33769,"name":"trySub","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33655,"src":"4325:6:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (bool,uint256)"}},"id":33772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4325:12:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"4304:33:105"},{"expression":{"id":33774,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33768,"src":"4354:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":33766,"id":33775,"nodeType":"Return","src":"4347:13:105"}]},"documentation":{"id":33758,"nodeType":"StructuredDocumentation","src":"4117:95:105","text":" @dev Unsigned saturating subtraction, bounds to zero instead of overflowing."},"id":33777,"implemented":true,"kind":"function","modifiers":[],"name":"saturatingSub","nameLocation":"4226:13:105","nodeType":"FunctionDefinition","parameters":{"id":33763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33760,"mutability":"mutable","name":"a","nameLocation":"4248:1:105","nodeType":"VariableDeclaration","scope":33777,"src":"4240:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33759,"name":"uint256","nodeType":"ElementaryTypeName","src":"4240:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33762,"mutability":"mutable","name":"b","nameLocation":"4259:1:105","nodeType":"VariableDeclaration","scope":33777,"src":"4251:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33761,"name":"uint256","nodeType":"ElementaryTypeName","src":"4251:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4239:22:105"},"returnParameters":{"id":33766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33765,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33777,"src":"4285:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33764,"name":"uint256","nodeType":"ElementaryTypeName","src":"4285:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4284:9:105"},"scope":35187,"src":"4217:150:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33806,"nodeType":"Block","src":"4564:122:105","statements":[{"assignments":[33788,33790],"declarations":[{"constant":false,"id":33788,"mutability":"mutable","name":"success","nameLocation":"4580:7:105","nodeType":"VariableDeclaration","scope":33806,"src":"4575:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33787,"name":"bool","nodeType":"ElementaryTypeName","src":"4575:4:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":33790,"mutability":"mutable","name":"result","nameLocation":"4597:6:105","nodeType":"VariableDeclaration","scope":33806,"src":"4589:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33789,"name":"uint256","nodeType":"ElementaryTypeName","src":"4589:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":33795,"initialValue":{"arguments":[{"id":33792,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33780,"src":"4614:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":33793,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33782,"src":"4617:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":33791,"name":"tryMul","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33685,"src":"4607:6:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (bool,uint256)"}},"id":33794,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4607:12:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"4574:45:105"},{"expression":{"arguments":[{"id":33797,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33788,"src":"4644:7:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":33798,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33790,"src":"4653:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"arguments":[{"id":33801,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4666:7:105","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":33800,"name":"uint256","nodeType":"ElementaryTypeName","src":"4666:7:105","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":33799,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4661:4:105","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":33802,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4661:13:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":33803,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4675:3:105","memberName":"max","nodeType":"MemberAccess","src":"4661:17:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":33796,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33834,"src":"4636:7:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":33804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4636:43:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":33786,"id":33805,"nodeType":"Return","src":"4629:50:105"}]},"documentation":{"id":33778,"nodeType":"StructuredDocumentation","src":"4373:109:105","text":" @dev Unsigned saturating multiplication, bounds to `2²⁵⁶ - 1` instead of overflowing."},"id":33807,"implemented":true,"kind":"function","modifiers":[],"name":"saturatingMul","nameLocation":"4496:13:105","nodeType":"FunctionDefinition","parameters":{"id":33783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33780,"mutability":"mutable","name":"a","nameLocation":"4518:1:105","nodeType":"VariableDeclaration","scope":33807,"src":"4510:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33779,"name":"uint256","nodeType":"ElementaryTypeName","src":"4510:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33782,"mutability":"mutable","name":"b","nameLocation":"4529:1:105","nodeType":"VariableDeclaration","scope":33807,"src":"4521:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33781,"name":"uint256","nodeType":"ElementaryTypeName","src":"4521:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4509:22:105"},"returnParameters":{"id":33786,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33785,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33807,"src":"4555:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33784,"name":"uint256","nodeType":"ElementaryTypeName","src":"4555:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4554:9:105"},"scope":35187,"src":"4487:199:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33833,"nodeType":"Block","src":"5174:207:105","statements":[{"id":33832,"nodeType":"UncheckedBlock","src":"5184:191:105","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33830,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33819,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33814,"src":"5322:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33822,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33820,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33812,"src":"5328:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":33821,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33814,"src":"5332:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5328:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":33823,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5327:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":33826,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33810,"src":"5353:9:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":33824,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"5337:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":33825,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5346:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"5337:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":33827,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5337:26:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5327:36:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":33829,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5326:38:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5322:42:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":33818,"id":33831,"nodeType":"Return","src":"5315:49:105"}]}]},"documentation":{"id":33808,"nodeType":"StructuredDocumentation","src":"4692:390:105","text":" @dev Branchless ternary evaluation for `condition ? a : b`. 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. `condition ? a : b`) to only compute\n one branch when needed, making this function more expensive."},"id":33834,"implemented":true,"kind":"function","modifiers":[],"name":"ternary","nameLocation":"5096:7:105","nodeType":"FunctionDefinition","parameters":{"id":33815,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33810,"mutability":"mutable","name":"condition","nameLocation":"5109:9:105","nodeType":"VariableDeclaration","scope":33834,"src":"5104:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":33809,"name":"bool","nodeType":"ElementaryTypeName","src":"5104:4:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":33812,"mutability":"mutable","name":"a","nameLocation":"5128:1:105","nodeType":"VariableDeclaration","scope":33834,"src":"5120:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33811,"name":"uint256","nodeType":"ElementaryTypeName","src":"5120:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33814,"mutability":"mutable","name":"b","nameLocation":"5139:1:105","nodeType":"VariableDeclaration","scope":33834,"src":"5131:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33813,"name":"uint256","nodeType":"ElementaryTypeName","src":"5131:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5103:38:105"},"returnParameters":{"id":33818,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33817,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33834,"src":"5165:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33816,"name":"uint256","nodeType":"ElementaryTypeName","src":"5165:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5164:9:105"},"scope":35187,"src":"5087:294:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33852,"nodeType":"Block","src":"5518:44:105","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33847,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33845,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33837,"src":"5543:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":33846,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33839,"src":"5547:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5543:5:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":33848,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33837,"src":"5550:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":33849,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33839,"src":"5553:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":33844,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33834,"src":"5535:7:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":33850,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5535:20:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":33843,"id":33851,"nodeType":"Return","src":"5528:27:105"}]},"documentation":{"id":33835,"nodeType":"StructuredDocumentation","src":"5387:59:105","text":" @dev Returns the largest of two numbers."},"id":33853,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"5460:3:105","nodeType":"FunctionDefinition","parameters":{"id":33840,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33837,"mutability":"mutable","name":"a","nameLocation":"5472:1:105","nodeType":"VariableDeclaration","scope":33853,"src":"5464:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33836,"name":"uint256","nodeType":"ElementaryTypeName","src":"5464:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33839,"mutability":"mutable","name":"b","nameLocation":"5483:1:105","nodeType":"VariableDeclaration","scope":33853,"src":"5475:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33838,"name":"uint256","nodeType":"ElementaryTypeName","src":"5475:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5463:22:105"},"returnParameters":{"id":33843,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33842,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33853,"src":"5509:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33841,"name":"uint256","nodeType":"ElementaryTypeName","src":"5509:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5508:9:105"},"scope":35187,"src":"5451:111:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33871,"nodeType":"Block","src":"5700:44:105","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33866,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33864,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33856,"src":"5725:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":33865,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33858,"src":"5729:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5725:5:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":33867,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33856,"src":"5732:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":33868,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33858,"src":"5735:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":33863,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33834,"src":"5717:7:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":33869,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5717:20:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":33862,"id":33870,"nodeType":"Return","src":"5710:27:105"}]},"documentation":{"id":33854,"nodeType":"StructuredDocumentation","src":"5568:60:105","text":" @dev Returns the smallest of two numbers."},"id":33872,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"5642:3:105","nodeType":"FunctionDefinition","parameters":{"id":33859,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33856,"mutability":"mutable","name":"a","nameLocation":"5654:1:105","nodeType":"VariableDeclaration","scope":33872,"src":"5646:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33855,"name":"uint256","nodeType":"ElementaryTypeName","src":"5646:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33858,"mutability":"mutable","name":"b","nameLocation":"5665:1:105","nodeType":"VariableDeclaration","scope":33872,"src":"5657:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33857,"name":"uint256","nodeType":"ElementaryTypeName","src":"5657:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5645:22:105"},"returnParameters":{"id":33862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33861,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33872,"src":"5691:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33860,"name":"uint256","nodeType":"ElementaryTypeName","src":"5691:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5690:9:105"},"scope":35187,"src":"5633:111:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33894,"nodeType":"Block","src":"5928:82:105","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33892,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33884,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33882,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33875,"src":"5983:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":33883,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33877,"src":"5987:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5983:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":33885,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5982:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33888,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33886,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33875,"src":"5993:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":33887,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33877,"src":"5997:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5993:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":33889,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5992:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":33890,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6002:1:105","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"5992:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5982:21:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":33881,"id":33893,"nodeType":"Return","src":"5975:28:105"}]},"documentation":{"id":33873,"nodeType":"StructuredDocumentation","src":"5750:102:105","text":" @dev Returns the average of two numbers. The result is rounded towards\n zero."},"id":33895,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"5866:7:105","nodeType":"FunctionDefinition","parameters":{"id":33878,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33875,"mutability":"mutable","name":"a","nameLocation":"5882:1:105","nodeType":"VariableDeclaration","scope":33895,"src":"5874:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33874,"name":"uint256","nodeType":"ElementaryTypeName","src":"5874:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33877,"mutability":"mutable","name":"b","nameLocation":"5893:1:105","nodeType":"VariableDeclaration","scope":33895,"src":"5885:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33876,"name":"uint256","nodeType":"ElementaryTypeName","src":"5885:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5873:22:105"},"returnParameters":{"id":33881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33880,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33895,"src":"5919:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33879,"name":"uint256","nodeType":"ElementaryTypeName","src":"5919:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5918:9:105"},"scope":35187,"src":"5857:153:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":33935,"nodeType":"Block","src":"6302:633:105","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33907,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33905,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33900,"src":"6316:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":33906,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6321:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6316:6:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33916,"nodeType":"IfStatement","src":"6312:150:105","trueBody":{"id":33915,"nodeType":"Block","src":"6324:138:105","statements":[{"expression":{"arguments":[{"expression":{"id":33911,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"6428:5:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":33912,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6434:16:105","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":30964,"src":"6428:22:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":33908,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"6416:5:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":33910,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6422:5:105","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":30996,"src":"6416:11:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":33913,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6416:35:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":33914,"nodeType":"ExpressionStatement","src":"6416:35:105"}]}},{"id":33934,"nodeType":"UncheckedBlock","src":"6845:84:105","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33932,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33919,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33898,"src":"6892:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":33920,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6896:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6892:5:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":33917,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"6876:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":33918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6885:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"6876:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":33922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6876:22:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33923,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33898,"src":"6903:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":33924,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6907:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6903:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":33926,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6902:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":33927,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33900,"src":"6912:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6902:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":33929,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6916:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6902:15:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":33931,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6901:17:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6876:42:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":33904,"id":33933,"nodeType":"Return","src":"6869:49:105"}]}]},"documentation":{"id":33896,"nodeType":"StructuredDocumentation","src":"6016:210:105","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":33936,"implemented":true,"kind":"function","modifiers":[],"name":"ceilDiv","nameLocation":"6240:7:105","nodeType":"FunctionDefinition","parameters":{"id":33901,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33898,"mutability":"mutable","name":"a","nameLocation":"6256:1:105","nodeType":"VariableDeclaration","scope":33936,"src":"6248:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33897,"name":"uint256","nodeType":"ElementaryTypeName","src":"6248:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33900,"mutability":"mutable","name":"b","nameLocation":"6267:1:105","nodeType":"VariableDeclaration","scope":33936,"src":"6259:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33899,"name":"uint256","nodeType":"ElementaryTypeName","src":"6259:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6247:22:105"},"returnParameters":{"id":33904,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33903,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":33936,"src":"6293:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33902,"name":"uint256","nodeType":"ElementaryTypeName","src":"6293:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6292:9:105"},"scope":35187,"src":"6231:704:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":34071,"nodeType":"Block","src":"7356:3585:105","statements":[{"id":34070,"nodeType":"UncheckedBlock","src":"7366:3569:105","statements":[{"assignments":[33949,33951],"declarations":[{"constant":false,"id":33949,"mutability":"mutable","name":"high","nameLocation":"7399:4:105","nodeType":"VariableDeclaration","scope":34070,"src":"7391:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33948,"name":"uint256","nodeType":"ElementaryTypeName","src":"7391:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33951,"mutability":"mutable","name":"low","nameLocation":"7413:3:105","nodeType":"VariableDeclaration","scope":34070,"src":"7405:11:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33950,"name":"uint256","nodeType":"ElementaryTypeName","src":"7405:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":33956,"initialValue":{"arguments":[{"id":33953,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33939,"src":"7427:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":33954,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33941,"src":"7430:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":33952,"name":"mul512","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33585,"src":"7420:6:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256,uint256)"}},"id":33955,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7420:12:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"7390:42:105"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33957,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33949,"src":"7514:4:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":33958,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7522:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7514:9:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33965,"nodeType":"IfStatement","src":"7510:365:105","trueBody":{"id":33964,"nodeType":"Block","src":"7525:350:105","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33962,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33960,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33951,"src":"7843:3:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":33961,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33943,"src":"7849:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7843:17:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":33947,"id":33963,"nodeType":"Return","src":"7836:24:105"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33966,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33943,"src":"7985:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":33967,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33949,"src":"8000:4:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7985:19:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":33984,"nodeType":"IfStatement","src":"7981:142:105","trueBody":{"id":33983,"nodeType":"Block","src":"8006:117:105","statements":[{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33973,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33943,"src":"8044:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":33974,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8059:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8044:16:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"expression":{"id":33976,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"8062:5:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":33977,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8068:16:105","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":30964,"src":"8062:22:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":33978,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"8086:5:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":33979,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8092:14:105","memberName":"UNDER_OVERFLOW","nodeType":"MemberAccess","referencedDeclaration":30960,"src":"8086:20:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":33972,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33834,"src":"8036:7:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":33980,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8036:71:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":33969,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"8024:5:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":33971,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8030:5:105","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":30996,"src":"8024:11:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":33981,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8024:84:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":33982,"nodeType":"ExpressionStatement","src":"8024:84:105"}]}},{"assignments":[33986],"declarations":[{"constant":false,"id":33986,"mutability":"mutable","name":"remainder","nameLocation":"8383:9:105","nodeType":"VariableDeclaration","scope":34070,"src":"8375:17:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33985,"name":"uint256","nodeType":"ElementaryTypeName","src":"8375:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":33987,"nodeType":"VariableDeclarationStatement","src":"8375:17:105"},{"AST":{"nativeSrc":"8431:283:105","nodeType":"YulBlock","src":"8431:283:105","statements":[{"nativeSrc":"8500:38:105","nodeType":"YulAssignment","src":"8500:38:105","value":{"arguments":[{"name":"x","nativeSrc":"8520:1:105","nodeType":"YulIdentifier","src":"8520:1:105"},{"name":"y","nativeSrc":"8523:1:105","nodeType":"YulIdentifier","src":"8523:1:105"},{"name":"denominator","nativeSrc":"8526:11:105","nodeType":"YulIdentifier","src":"8526:11:105"}],"functionName":{"name":"mulmod","nativeSrc":"8513:6:105","nodeType":"YulIdentifier","src":"8513:6:105"},"nativeSrc":"8513:25:105","nodeType":"YulFunctionCall","src":"8513:25:105"},"variableNames":[{"name":"remainder","nativeSrc":"8500:9:105","nodeType":"YulIdentifier","src":"8500:9:105"}]},{"nativeSrc":"8620:37:105","nodeType":"YulAssignment","src":"8620:37:105","value":{"arguments":[{"name":"high","nativeSrc":"8632:4:105","nodeType":"YulIdentifier","src":"8632:4:105"},{"arguments":[{"name":"remainder","nativeSrc":"8641:9:105","nodeType":"YulIdentifier","src":"8641:9:105"},{"name":"low","nativeSrc":"8652:3:105","nodeType":"YulIdentifier","src":"8652:3:105"}],"functionName":{"name":"gt","nativeSrc":"8638:2:105","nodeType":"YulIdentifier","src":"8638:2:105"},"nativeSrc":"8638:18:105","nodeType":"YulFunctionCall","src":"8638:18:105"}],"functionName":{"name":"sub","nativeSrc":"8628:3:105","nodeType":"YulIdentifier","src":"8628:3:105"},"nativeSrc":"8628:29:105","nodeType":"YulFunctionCall","src":"8628:29:105"},"variableNames":[{"name":"high","nativeSrc":"8620:4:105","nodeType":"YulIdentifier","src":"8620:4:105"}]},{"nativeSrc":"8674:26:105","nodeType":"YulAssignment","src":"8674:26:105","value":{"arguments":[{"name":"low","nativeSrc":"8685:3:105","nodeType":"YulIdentifier","src":"8685:3:105"},{"name":"remainder","nativeSrc":"8690:9:105","nodeType":"YulIdentifier","src":"8690:9:105"}],"functionName":{"name":"sub","nativeSrc":"8681:3:105","nodeType":"YulIdentifier","src":"8681:3:105"},"nativeSrc":"8681:19:105","nodeType":"YulFunctionCall","src":"8681:19:105"},"variableNames":[{"name":"low","nativeSrc":"8674:3:105","nodeType":"YulIdentifier","src":"8674:3:105"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":33943,"isOffset":false,"isSlot":false,"src":"8526:11:105","valueSize":1},{"declaration":33949,"isOffset":false,"isSlot":false,"src":"8620:4:105","valueSize":1},{"declaration":33949,"isOffset":false,"isSlot":false,"src":"8632:4:105","valueSize":1},{"declaration":33951,"isOffset":false,"isSlot":false,"src":"8652:3:105","valueSize":1},{"declaration":33951,"isOffset":false,"isSlot":false,"src":"8674:3:105","valueSize":1},{"declaration":33951,"isOffset":false,"isSlot":false,"src":"8685:3:105","valueSize":1},{"declaration":33986,"isOffset":false,"isSlot":false,"src":"8500:9:105","valueSize":1},{"declaration":33986,"isOffset":false,"isSlot":false,"src":"8641:9:105","valueSize":1},{"declaration":33986,"isOffset":false,"isSlot":false,"src":"8690:9:105","valueSize":1},{"declaration":33939,"isOffset":false,"isSlot":false,"src":"8520:1:105","valueSize":1},{"declaration":33941,"isOffset":false,"isSlot":false,"src":"8523:1:105","valueSize":1}],"flags":["memory-safe"],"id":33988,"nodeType":"InlineAssembly","src":"8406:308:105"},{"assignments":[33990],"declarations":[{"constant":false,"id":33990,"mutability":"mutable","name":"twos","nameLocation":"8926:4:105","nodeType":"VariableDeclaration","scope":34070,"src":"8918:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33989,"name":"uint256","nodeType":"ElementaryTypeName","src":"8918:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":33997,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":33991,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33943,"src":"8933:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":33994,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"30","id":33992,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8948:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":33993,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33943,"src":"8952:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8948:15:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":33995,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8947:17:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8933:31:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8918:46:105"},{"AST":{"nativeSrc":"9003:359:105","nodeType":"YulBlock","src":"9003:359:105","statements":[{"nativeSrc":"9068:37:105","nodeType":"YulAssignment","src":"9068:37:105","value":{"arguments":[{"name":"denominator","nativeSrc":"9087:11:105","nodeType":"YulIdentifier","src":"9087:11:105"},{"name":"twos","nativeSrc":"9100:4:105","nodeType":"YulIdentifier","src":"9100:4:105"}],"functionName":{"name":"div","nativeSrc":"9083:3:105","nodeType":"YulIdentifier","src":"9083:3:105"},"nativeSrc":"9083:22:105","nodeType":"YulFunctionCall","src":"9083:22:105"},"variableNames":[{"name":"denominator","nativeSrc":"9068:11:105","nodeType":"YulIdentifier","src":"9068:11:105"}]},{"nativeSrc":"9169:21:105","nodeType":"YulAssignment","src":"9169:21:105","value":{"arguments":[{"name":"low","nativeSrc":"9180:3:105","nodeType":"YulIdentifier","src":"9180:3:105"},{"name":"twos","nativeSrc":"9185:4:105","nodeType":"YulIdentifier","src":"9185:4:105"}],"functionName":{"name":"div","nativeSrc":"9176:3:105","nodeType":"YulIdentifier","src":"9176:3:105"},"nativeSrc":"9176:14:105","nodeType":"YulFunctionCall","src":"9176:14:105"},"variableNames":[{"name":"low","nativeSrc":"9169:3:105","nodeType":"YulIdentifier","src":"9169:3:105"}]},{"nativeSrc":"9309:39:105","nodeType":"YulAssignment","src":"9309:39:105","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9329:1:105","nodeType":"YulLiteral","src":"9329:1:105","type":"","value":"0"},{"name":"twos","nativeSrc":"9332:4:105","nodeType":"YulIdentifier","src":"9332:4:105"}],"functionName":{"name":"sub","nativeSrc":"9325:3:105","nodeType":"YulIdentifier","src":"9325:3:105"},"nativeSrc":"9325:12:105","nodeType":"YulFunctionCall","src":"9325:12:105"},{"name":"twos","nativeSrc":"9339:4:105","nodeType":"YulIdentifier","src":"9339:4:105"}],"functionName":{"name":"div","nativeSrc":"9321:3:105","nodeType":"YulIdentifier","src":"9321:3:105"},"nativeSrc":"9321:23:105","nodeType":"YulFunctionCall","src":"9321:23:105"},{"kind":"number","nativeSrc":"9346:1:105","nodeType":"YulLiteral","src":"9346:1:105","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"9317:3:105","nodeType":"YulIdentifier","src":"9317:3:105"},"nativeSrc":"9317:31:105","nodeType":"YulFunctionCall","src":"9317:31:105"},"variableNames":[{"name":"twos","nativeSrc":"9309:4:105","nodeType":"YulIdentifier","src":"9309:4:105"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":33943,"isOffset":false,"isSlot":false,"src":"9068:11:105","valueSize":1},{"declaration":33943,"isOffset":false,"isSlot":false,"src":"9087:11:105","valueSize":1},{"declaration":33951,"isOffset":false,"isSlot":false,"src":"9169:3:105","valueSize":1},{"declaration":33951,"isOffset":false,"isSlot":false,"src":"9180:3:105","valueSize":1},{"declaration":33990,"isOffset":false,"isSlot":false,"src":"9100:4:105","valueSize":1},{"declaration":33990,"isOffset":false,"isSlot":false,"src":"9185:4:105","valueSize":1},{"declaration":33990,"isOffset":false,"isSlot":false,"src":"9309:4:105","valueSize":1},{"declaration":33990,"isOffset":false,"isSlot":false,"src":"9332:4:105","valueSize":1},{"declaration":33990,"isOffset":false,"isSlot":false,"src":"9339:4:105","valueSize":1}],"flags":["memory-safe"],"id":33998,"nodeType":"InlineAssembly","src":"8978:384:105"},{"expression":{"id":34003,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":33999,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33951,"src":"9425:3:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34000,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33949,"src":"9432:4:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":34001,"name":"twos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33990,"src":"9439:4:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9432:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9425:18:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34004,"nodeType":"ExpressionStatement","src":"9425:18:105"},{"assignments":[34006],"declarations":[{"constant":false,"id":34006,"mutability":"mutable","name":"inverse","nameLocation":"9786:7:105","nodeType":"VariableDeclaration","scope":34070,"src":"9778:15:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34005,"name":"uint256","nodeType":"ElementaryTypeName","src":"9778:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":34013,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34012,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":34007,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9797:1:105","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":34008,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33943,"src":"9801:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9797:15:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34010,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9796:17:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"hexValue":"32","id":34011,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9816:1:105","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"9796:21:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9778:39:105"},{"expression":{"id":34020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34014,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34006,"src":"10034:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34019,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":34015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10045:1:105","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34018,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34016,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33943,"src":"10049:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":34017,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34006,"src":"10063:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10049:21:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10045:25:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10034:36:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34021,"nodeType":"ExpressionStatement","src":"10034:36:105"},{"expression":{"id":34028,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34022,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34006,"src":"10104:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":34023,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10115:1:105","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34024,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33943,"src":"10119:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":34025,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34006,"src":"10133:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10119:21:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10115:25:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10104:36:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34029,"nodeType":"ExpressionStatement","src":"10104:36:105"},{"expression":{"id":34036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34030,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34006,"src":"10176:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34035,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":34031,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10187:1:105","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34034,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34032,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33943,"src":"10191:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":34033,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34006,"src":"10205:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10191:21:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10187:25:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10176:36:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34037,"nodeType":"ExpressionStatement","src":"10176:36:105"},{"expression":{"id":34044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34038,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34006,"src":"10247:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":34039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10258:1:105","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34040,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33943,"src":"10262:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":34041,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34006,"src":"10276:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10262:21:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10258:25:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10247:36:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34045,"nodeType":"ExpressionStatement","src":"10247:36:105"},{"expression":{"id":34052,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34046,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34006,"src":"10320:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34051,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":34047,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10331:1:105","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34050,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34048,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33943,"src":"10335:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":34049,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34006,"src":"10349:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10335:21:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10331:25:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10320:36:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34053,"nodeType":"ExpressionStatement","src":"10320:36:105"},{"expression":{"id":34060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34054,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34006,"src":"10394:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":34055,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10405:1:105","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34056,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33943,"src":"10409:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":34057,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34006,"src":"10423:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10409:21:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10405:25:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10394:36:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34061,"nodeType":"ExpressionStatement","src":"10394:36:105"},{"expression":{"id":34066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34062,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33946,"src":"10875:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34063,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33951,"src":"10884:3:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":34064,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34006,"src":"10890:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10884:13:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10875:22:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34067,"nodeType":"ExpressionStatement","src":"10875:22:105"},{"expression":{"id":34068,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33946,"src":"10918:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":33947,"id":34069,"nodeType":"Return","src":"10911:13:105"}]}]},"documentation":{"id":33937,"nodeType":"StructuredDocumentation","src":"6941:312:105","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":34072,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"7267:6:105","nodeType":"FunctionDefinition","parameters":{"id":33944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33939,"mutability":"mutable","name":"x","nameLocation":"7282:1:105","nodeType":"VariableDeclaration","scope":34072,"src":"7274:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33938,"name":"uint256","nodeType":"ElementaryTypeName","src":"7274:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33941,"mutability":"mutable","name":"y","nameLocation":"7293:1:105","nodeType":"VariableDeclaration","scope":34072,"src":"7285:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33940,"name":"uint256","nodeType":"ElementaryTypeName","src":"7285:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":33943,"mutability":"mutable","name":"denominator","nameLocation":"7304:11:105","nodeType":"VariableDeclaration","scope":34072,"src":"7296:19:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33942,"name":"uint256","nodeType":"ElementaryTypeName","src":"7296:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7273:43:105"},"returnParameters":{"id":33947,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33946,"mutability":"mutable","name":"result","nameLocation":"7348:6:105","nodeType":"VariableDeclaration","scope":34072,"src":"7340:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":33945,"name":"uint256","nodeType":"ElementaryTypeName","src":"7340:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7339:16:105"},"scope":35187,"src":"7258:3683:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":34108,"nodeType":"Block","src":"11180:128:105","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34106,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":34088,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34075,"src":"11204:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":34089,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34077,"src":"11207:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":34090,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34079,"src":"11210:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":34087,"name":"mulDiv","nodeType":"Identifier","overloadedDeclarations":[34072,34109],"referencedDeclaration":34072,"src":"11197:6:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":34091,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11197:25:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":34104,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":34095,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34082,"src":"11258:8:105","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":34094,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35165,"src":"11241:16:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$33557_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":34096,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11241:26:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":34098,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34075,"src":"11278:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":34099,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34077,"src":"11281:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":34100,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34079,"src":"11284:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":34097,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"11271:6:105","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":34101,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11271:25:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":34102,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11299:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11271:29:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11241:59:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":34092,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"11225:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":34093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11234:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"11225:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":34105,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11225:76:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11197:104:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":34086,"id":34107,"nodeType":"Return","src":"11190:111:105"}]},"documentation":{"id":34073,"nodeType":"StructuredDocumentation","src":"10947:118:105","text":" @dev Calculates x * y / denominator with full precision, following the selected rounding direction."},"id":34109,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"11079:6:105","nodeType":"FunctionDefinition","parameters":{"id":34083,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34075,"mutability":"mutable","name":"x","nameLocation":"11094:1:105","nodeType":"VariableDeclaration","scope":34109,"src":"11086:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34074,"name":"uint256","nodeType":"ElementaryTypeName","src":"11086:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":34077,"mutability":"mutable","name":"y","nameLocation":"11105:1:105","nodeType":"VariableDeclaration","scope":34109,"src":"11097:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34076,"name":"uint256","nodeType":"ElementaryTypeName","src":"11097:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":34079,"mutability":"mutable","name":"denominator","nameLocation":"11116:11:105","nodeType":"VariableDeclaration","scope":34109,"src":"11108:19:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34078,"name":"uint256","nodeType":"ElementaryTypeName","src":"11108:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":34082,"mutability":"mutable","name":"rounding","nameLocation":"11138:8:105","nodeType":"VariableDeclaration","scope":34109,"src":"11129:17:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"},"typeName":{"id":34081,"nodeType":"UserDefinedTypeName","pathNode":{"id":34080,"name":"Rounding","nameLocations":["11129:8:105"],"nodeType":"IdentifierPath","referencedDeclaration":33557,"src":"11129:8:105"},"referencedDeclaration":33557,"src":"11129:8:105","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"11085:62:105"},"returnParameters":{"id":34086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34085,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":34109,"src":"11171:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34084,"name":"uint256","nodeType":"ElementaryTypeName","src":"11171:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11170:9:105"},"scope":35187,"src":"11070:238:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":34158,"nodeType":"Block","src":"11516:245:105","statements":[{"id":34157,"nodeType":"UncheckedBlock","src":"11526:229:105","statements":[{"assignments":[34122,34124],"declarations":[{"constant":false,"id":34122,"mutability":"mutable","name":"high","nameLocation":"11559:4:105","nodeType":"VariableDeclaration","scope":34157,"src":"11551:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34121,"name":"uint256","nodeType":"ElementaryTypeName","src":"11551:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":34124,"mutability":"mutable","name":"low","nameLocation":"11573:3:105","nodeType":"VariableDeclaration","scope":34157,"src":"11565:11:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34123,"name":"uint256","nodeType":"ElementaryTypeName","src":"11565:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":34129,"initialValue":{"arguments":[{"id":34126,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34112,"src":"11587:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":34127,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34114,"src":"11590:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":34125,"name":"mul512","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33585,"src":"11580:6:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256,uint256)"}},"id":34128,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11580:12:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"11550:42:105"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34130,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34122,"src":"11610:4:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34133,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":34131,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11618:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":34132,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34116,"src":"11623:1:105","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11618:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11610:14:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34143,"nodeType":"IfStatement","src":"11606:86:105","trueBody":{"id":34142,"nodeType":"Block","src":"11626:66:105","statements":[{"expression":{"arguments":[{"expression":{"id":34138,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"11656:5:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":34139,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11662:14:105","memberName":"UNDER_OVERFLOW","nodeType":"MemberAccess","referencedDeclaration":30960,"src":"11656:20:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":34135,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"11644:5:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":34137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11650:5:105","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":30996,"src":"11644:11:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":34140,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11644:33:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":34141,"nodeType":"ExpressionStatement","src":"11644:33:105"}]}},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34144,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34122,"src":"11713:4:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":34147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"323536","id":34145,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11722:3:105","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"value":"256"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":34146,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34116,"src":"11728:1:105","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11722:7:105","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"id":34148,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11721:9:105","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"11713:17:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34150,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11712:19:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34151,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34124,"src":"11735:3:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":34152,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34116,"src":"11742:1:105","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11735:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34154,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11734:10:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11712:32:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":34120,"id":34156,"nodeType":"Return","src":"11705:39:105"}]}]},"documentation":{"id":34110,"nodeType":"StructuredDocumentation","src":"11314:111:105","text":" @dev Calculates floor(x * y >> n) with full precision. Throws if result overflows a uint256."},"id":34159,"implemented":true,"kind":"function","modifiers":[],"name":"mulShr","nameLocation":"11439:6:105","nodeType":"FunctionDefinition","parameters":{"id":34117,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34112,"mutability":"mutable","name":"x","nameLocation":"11454:1:105","nodeType":"VariableDeclaration","scope":34159,"src":"11446:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34111,"name":"uint256","nodeType":"ElementaryTypeName","src":"11446:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":34114,"mutability":"mutable","name":"y","nameLocation":"11465:1:105","nodeType":"VariableDeclaration","scope":34159,"src":"11457:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34113,"name":"uint256","nodeType":"ElementaryTypeName","src":"11457:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":34116,"mutability":"mutable","name":"n","nameLocation":"11474:1:105","nodeType":"VariableDeclaration","scope":34159,"src":"11468:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":34115,"name":"uint8","nodeType":"ElementaryTypeName","src":"11468:5:105","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"11445:31:105"},"returnParameters":{"id":34120,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34119,"mutability":"mutable","name":"result","nameLocation":"11508:6:105","nodeType":"VariableDeclaration","scope":34159,"src":"11500:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34118,"name":"uint256","nodeType":"ElementaryTypeName","src":"11500:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11499:16:105"},"scope":35187,"src":"11430:331:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":34197,"nodeType":"Block","src":"11979:113:105","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34195,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":34175,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34162,"src":"12003:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":34176,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34164,"src":"12006:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":34177,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34166,"src":"12009:1:105","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":34174,"name":"mulShr","nodeType":"Identifier","overloadedDeclarations":[34159,34198],"referencedDeclaration":34159,"src":"11996:6:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint8_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint8) pure returns (uint256)"}},"id":34178,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11996:15:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":34193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":34182,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34169,"src":"12047:8:105","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":34181,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35165,"src":"12030:16:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$33557_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":34183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12030:26:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34192,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":34185,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34162,"src":"12067:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":34186,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34164,"src":"12070:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34189,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":34187,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12073:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":34188,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34166,"src":"12078:1:105","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"12073:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":34184,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"12060:6:105","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":34190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12060:20:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":34191,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12083:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12060:24:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12030:54:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":34179,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"12014:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":34180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12023:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"12014:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":34194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12014:71:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11996:89:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":34173,"id":34196,"nodeType":"Return","src":"11989:96:105"}]},"documentation":{"id":34160,"nodeType":"StructuredDocumentation","src":"11767:109:105","text":" @dev Calculates x * y >> n with full precision, following the selected rounding direction."},"id":34198,"implemented":true,"kind":"function","modifiers":[],"name":"mulShr","nameLocation":"11890:6:105","nodeType":"FunctionDefinition","parameters":{"id":34170,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34162,"mutability":"mutable","name":"x","nameLocation":"11905:1:105","nodeType":"VariableDeclaration","scope":34198,"src":"11897:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34161,"name":"uint256","nodeType":"ElementaryTypeName","src":"11897:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":34164,"mutability":"mutable","name":"y","nameLocation":"11916:1:105","nodeType":"VariableDeclaration","scope":34198,"src":"11908:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34163,"name":"uint256","nodeType":"ElementaryTypeName","src":"11908:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":34166,"mutability":"mutable","name":"n","nameLocation":"11925:1:105","nodeType":"VariableDeclaration","scope":34198,"src":"11919:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":34165,"name":"uint8","nodeType":"ElementaryTypeName","src":"11919:5:105","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":34169,"mutability":"mutable","name":"rounding","nameLocation":"11937:8:105","nodeType":"VariableDeclaration","scope":34198,"src":"11928:17:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"},"typeName":{"id":34168,"nodeType":"UserDefinedTypeName","pathNode":{"id":34167,"name":"Rounding","nameLocations":["11928:8:105"],"nodeType":"IdentifierPath","referencedDeclaration":33557,"src":"11928:8:105"},"referencedDeclaration":33557,"src":"11928:8:105","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"11896:50:105"},"returnParameters":{"id":34173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34172,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":34198,"src":"11970:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34171,"name":"uint256","nodeType":"ElementaryTypeName","src":"11970:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11969:9:105"},"scope":35187,"src":"11881:211:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":34294,"nodeType":"Block","src":"12726:1849:105","statements":[{"id":34293,"nodeType":"UncheckedBlock","src":"12736:1833:105","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34208,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34203,"src":"12764:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":34209,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12769:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12764:6:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34213,"nodeType":"IfStatement","src":"12760:20:105","trueBody":{"expression":{"hexValue":"30","id":34211,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12779:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":34207,"id":34212,"nodeType":"Return","src":"12772:8:105"}},{"assignments":[34215],"declarations":[{"constant":false,"id":34215,"mutability":"mutable","name":"remainder","nameLocation":"13259:9:105","nodeType":"VariableDeclaration","scope":34293,"src":"13251:17:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34214,"name":"uint256","nodeType":"ElementaryTypeName","src":"13251:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":34219,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34216,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34201,"src":"13271:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"id":34217,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34203,"src":"13275:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13271:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13251:25:105"},{"assignments":[34221],"declarations":[{"constant":false,"id":34221,"mutability":"mutable","name":"gcd","nameLocation":"13298:3:105","nodeType":"VariableDeclaration","scope":34293,"src":"13290:11:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34220,"name":"uint256","nodeType":"ElementaryTypeName","src":"13290:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":34223,"initialValue":{"id":34222,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34203,"src":"13304:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13290:15:105"},{"assignments":[34225],"declarations":[{"constant":false,"id":34225,"mutability":"mutable","name":"x","nameLocation":"13448:1:105","nodeType":"VariableDeclaration","scope":34293,"src":"13441:8:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":34224,"name":"int256","nodeType":"ElementaryTypeName","src":"13441:6:105","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":34227,"initialValue":{"hexValue":"30","id":34226,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13452:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"13441:12:105"},{"assignments":[34229],"declarations":[{"constant":false,"id":34229,"mutability":"mutable","name":"y","nameLocation":"13474:1:105","nodeType":"VariableDeclaration","scope":34293,"src":"13467:8:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":34228,"name":"int256","nodeType":"ElementaryTypeName","src":"13467:6:105","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":34231,"initialValue":{"hexValue":"31","id":34230,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13478:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"13467:12:105"},{"body":{"id":34268,"nodeType":"Block","src":"13517:882:105","statements":[{"assignments":[34236],"declarations":[{"constant":false,"id":34236,"mutability":"mutable","name":"quotient","nameLocation":"13543:8:105","nodeType":"VariableDeclaration","scope":34268,"src":"13535:16:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34235,"name":"uint256","nodeType":"ElementaryTypeName","src":"13535:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":34240,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34237,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34221,"src":"13554:3:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":34238,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34215,"src":"13560:9:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13554:15:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13535:34:105"},{"expression":{"id":34251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":34241,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34221,"src":"13589:3:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":34242,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34215,"src":"13594:9:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34243,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"13588:16:105","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":34244,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34215,"src":"13694:9:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34249,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34245,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34221,"src":"13939:3:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34246,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34215,"src":"13945:9:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":34247,"name":"quotient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34236,"src":"13957:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13945:20:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13939:26:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34250,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13607:376:105","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"src":"13588:395:105","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":34252,"nodeType":"ExpressionStatement","src":"13588:395:105"},{"expression":{"id":34266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":34253,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34225,"src":"14003:1:105","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":34254,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34229,"src":"14006:1:105","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":34255,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"14002:6:105","typeDescriptions":{"typeIdentifier":"t_tuple$_t_int256_$_t_int256_$","typeString":"tuple(int256,int256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":34256,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34229,"src":"14088:1:105","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":34264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34257,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34225,"src":"14342:1:105","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":34263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34258,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34229,"src":"14346:1:105","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":34261,"name":"quotient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34236,"src":"14357:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":34260,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14350:6:105","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":34259,"name":"int256","nodeType":"ElementaryTypeName","src":"14350:6:105","typeDescriptions":{}}},"id":34262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14350:16:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"14346:20:105","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"14342:24:105","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":34265,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"14011:373:105","typeDescriptions":{"typeIdentifier":"t_tuple$_t_int256_$_t_int256_$","typeString":"tuple(int256,int256)"}},"src":"14002:382:105","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":34267,"nodeType":"ExpressionStatement","src":"14002:382:105"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34232,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34215,"src":"13501:9:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":34233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13514:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13501:14:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34269,"nodeType":"WhileStatement","src":"13494:905:105"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34272,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34270,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34221,"src":"14417:3:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"31","id":34271,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14424:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"14417:8:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34275,"nodeType":"IfStatement","src":"14413:22:105","trueBody":{"expression":{"hexValue":"30","id":34273,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14434:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":34207,"id":34274,"nodeType":"Return","src":"14427:8:105"}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":34279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34277,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34225,"src":"14486:1:105","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":34278,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14490:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14486:5:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34286,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34280,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34203,"src":"14493:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":34284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"14505:2:105","subExpression":{"id":34283,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34225,"src":"14506:1:105","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":34282,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14497:7:105","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":34281,"name":"uint256","nodeType":"ElementaryTypeName","src":"14497:7:105","typeDescriptions":{}}},"id":34285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14497:11:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14493:15:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":34289,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34225,"src":"14518:1:105","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":34288,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14510:7:105","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":34287,"name":"uint256","nodeType":"ElementaryTypeName","src":"14510:7:105","typeDescriptions":{}}},"id":34290,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14510:10:105","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":34276,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33834,"src":"14478:7:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":34291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14478:43:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":34207,"id":34292,"nodeType":"Return","src":"14471:50:105"}]}]},"documentation":{"id":34199,"nodeType":"StructuredDocumentation","src":"12098:553:105","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":34295,"implemented":true,"kind":"function","modifiers":[],"name":"invMod","nameLocation":"12665:6:105","nodeType":"FunctionDefinition","parameters":{"id":34204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34201,"mutability":"mutable","name":"a","nameLocation":"12680:1:105","nodeType":"VariableDeclaration","scope":34295,"src":"12672:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34200,"name":"uint256","nodeType":"ElementaryTypeName","src":"12672:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":34203,"mutability":"mutable","name":"n","nameLocation":"12691:1:105","nodeType":"VariableDeclaration","scope":34295,"src":"12683:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34202,"name":"uint256","nodeType":"ElementaryTypeName","src":"12683:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12671:22:105"},"returnParameters":{"id":34207,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34206,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":34295,"src":"12717:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34205,"name":"uint256","nodeType":"ElementaryTypeName","src":"12717:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12716:9:105"},"scope":35187,"src":"12656:1919:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":34315,"nodeType":"Block","src":"15175:82:105","statements":[{"id":34314,"nodeType":"UncheckedBlock","src":"15185:66:105","statements":[{"expression":{"arguments":[{"id":34307,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34298,"src":"15228:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34308,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34300,"src":"15231:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"32","id":34309,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15235:1:105","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"15231:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":34311,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34300,"src":"15238:1:105","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":34305,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"15216:4:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":34306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15221:6:105","memberName":"modExp","nodeType":"MemberAccess","referencedDeclaration":34352,"src":"15216:11:105","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) view returns (uint256)"}},"id":34312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15216:24:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":34304,"id":34313,"nodeType":"Return","src":"15209:31:105"}]}]},"documentation":{"id":34296,"nodeType":"StructuredDocumentation","src":"14581:514:105","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":34316,"implemented":true,"kind":"function","modifiers":[],"name":"invModPrime","nameLocation":"15109:11:105","nodeType":"FunctionDefinition","parameters":{"id":34301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34298,"mutability":"mutable","name":"a","nameLocation":"15129:1:105","nodeType":"VariableDeclaration","scope":34316,"src":"15121:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34297,"name":"uint256","nodeType":"ElementaryTypeName","src":"15121:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":34300,"mutability":"mutable","name":"p","nameLocation":"15140:1:105","nodeType":"VariableDeclaration","scope":34316,"src":"15132:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34299,"name":"uint256","nodeType":"ElementaryTypeName","src":"15132:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15120:22:105"},"returnParameters":{"id":34304,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34303,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":34316,"src":"15166:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34302,"name":"uint256","nodeType":"ElementaryTypeName","src":"15166:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15165:9:105"},"scope":35187,"src":"15100:157:105","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":34351,"nodeType":"Block","src":"16027:174:105","statements":[{"assignments":[34329,34331],"declarations":[{"constant":false,"id":34329,"mutability":"mutable","name":"success","nameLocation":"16043:7:105","nodeType":"VariableDeclaration","scope":34351,"src":"16038:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":34328,"name":"bool","nodeType":"ElementaryTypeName","src":"16038:4:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":34331,"mutability":"mutable","name":"result","nameLocation":"16060:6:105","nodeType":"VariableDeclaration","scope":34351,"src":"16052:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34330,"name":"uint256","nodeType":"ElementaryTypeName","src":"16052:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":34337,"initialValue":{"arguments":[{"id":34333,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34319,"src":"16080:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":34334,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34321,"src":"16083:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":34335,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34323,"src":"16086:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":34332,"name":"tryModExp","nodeType":"Identifier","overloadedDeclarations":[34376,34458],"referencedDeclaration":34376,"src":"16070:9:105","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":34336,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16070:18:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"16037:51:105"},{"condition":{"id":34339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16102:8:105","subExpression":{"id":34338,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34329,"src":"16103:7:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34348,"nodeType":"IfStatement","src":"16098:74:105","trueBody":{"id":34347,"nodeType":"Block","src":"16112:60:105","statements":[{"expression":{"arguments":[{"expression":{"id":34343,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"16138:5:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":34344,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16144:16:105","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":30964,"src":"16138:22:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":34340,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"16126:5:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":34342,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16132:5:105","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":30996,"src":"16126:11:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":34345,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16126:35:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":34346,"nodeType":"ExpressionStatement","src":"16126:35:105"}]}},{"expression":{"id":34349,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34331,"src":"16188:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":34327,"id":34350,"nodeType":"Return","src":"16181:13:105"}]},"documentation":{"id":34317,"nodeType":"StructuredDocumentation","src":"15263:678:105","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":34352,"implemented":true,"kind":"function","modifiers":[],"name":"modExp","nameLocation":"15955:6:105","nodeType":"FunctionDefinition","parameters":{"id":34324,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34319,"mutability":"mutable","name":"b","nameLocation":"15970:1:105","nodeType":"VariableDeclaration","scope":34352,"src":"15962:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34318,"name":"uint256","nodeType":"ElementaryTypeName","src":"15962:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":34321,"mutability":"mutable","name":"e","nameLocation":"15981:1:105","nodeType":"VariableDeclaration","scope":34352,"src":"15973:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34320,"name":"uint256","nodeType":"ElementaryTypeName","src":"15973:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":34323,"mutability":"mutable","name":"m","nameLocation":"15992:1:105","nodeType":"VariableDeclaration","scope":34352,"src":"15984:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34322,"name":"uint256","nodeType":"ElementaryTypeName","src":"15984:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15961:33:105"},"returnParameters":{"id":34327,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34326,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":34352,"src":"16018:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34325,"name":"uint256","nodeType":"ElementaryTypeName","src":"16018:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16017:9:105"},"scope":35187,"src":"15946:255:105","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":34375,"nodeType":"Block","src":"17055:1493:105","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34366,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34359,"src":"17069:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":34367,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17074:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17069:6:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34373,"nodeType":"IfStatement","src":"17065:29:105","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":34369,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17085:5:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":34370,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17092:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":34371,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"17084:10:105","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":34365,"id":34372,"nodeType":"Return","src":"17077:17:105"}},{"AST":{"nativeSrc":"17129:1413:105","nodeType":"YulBlock","src":"17129:1413:105","statements":[{"nativeSrc":"17143:22:105","nodeType":"YulVariableDeclaration","src":"17143:22:105","value":{"arguments":[{"kind":"number","nativeSrc":"17160:4:105","nodeType":"YulLiteral","src":"17160:4:105","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"17154:5:105","nodeType":"YulIdentifier","src":"17154:5:105"},"nativeSrc":"17154:11:105","nodeType":"YulFunctionCall","src":"17154:11:105"},"variables":[{"name":"ptr","nativeSrc":"17147:3:105","nodeType":"YulTypedName","src":"17147:3:105","type":""}]},{"expression":{"arguments":[{"name":"ptr","nativeSrc":"18073:3:105","nodeType":"YulIdentifier","src":"18073:3:105"},{"kind":"number","nativeSrc":"18078:4:105","nodeType":"YulLiteral","src":"18078:4:105","type":"","value":"0x20"}],"functionName":{"name":"mstore","nativeSrc":"18066:6:105","nodeType":"YulIdentifier","src":"18066:6:105"},"nativeSrc":"18066:17:105","nodeType":"YulFunctionCall","src":"18066:17:105"},"nativeSrc":"18066:17:105","nodeType":"YulExpressionStatement","src":"18066:17:105"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"18107:3:105","nodeType":"YulIdentifier","src":"18107:3:105"},{"kind":"number","nativeSrc":"18112:4:105","nodeType":"YulLiteral","src":"18112:4:105","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"18103:3:105","nodeType":"YulIdentifier","src":"18103:3:105"},"nativeSrc":"18103:14:105","nodeType":"YulFunctionCall","src":"18103:14:105"},{"kind":"number","nativeSrc":"18119:4:105","nodeType":"YulLiteral","src":"18119:4:105","type":"","value":"0x20"}],"functionName":{"name":"mstore","nativeSrc":"18096:6:105","nodeType":"YulIdentifier","src":"18096:6:105"},"nativeSrc":"18096:28:105","nodeType":"YulFunctionCall","src":"18096:28:105"},"nativeSrc":"18096:28:105","nodeType":"YulExpressionStatement","src":"18096:28:105"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"18148:3:105","nodeType":"YulIdentifier","src":"18148:3:105"},{"kind":"number","nativeSrc":"18153:4:105","nodeType":"YulLiteral","src":"18153:4:105","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"18144:3:105","nodeType":"YulIdentifier","src":"18144:3:105"},"nativeSrc":"18144:14:105","nodeType":"YulFunctionCall","src":"18144:14:105"},{"kind":"number","nativeSrc":"18160:4:105","nodeType":"YulLiteral","src":"18160:4:105","type":"","value":"0x20"}],"functionName":{"name":"mstore","nativeSrc":"18137:6:105","nodeType":"YulIdentifier","src":"18137:6:105"},"nativeSrc":"18137:28:105","nodeType":"YulFunctionCall","src":"18137:28:105"},"nativeSrc":"18137:28:105","nodeType":"YulExpressionStatement","src":"18137:28:105"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"18189:3:105","nodeType":"YulIdentifier","src":"18189:3:105"},{"kind":"number","nativeSrc":"18194:4:105","nodeType":"YulLiteral","src":"18194:4:105","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"18185:3:105","nodeType":"YulIdentifier","src":"18185:3:105"},"nativeSrc":"18185:14:105","nodeType":"YulFunctionCall","src":"18185:14:105"},{"name":"b","nativeSrc":"18201:1:105","nodeType":"YulIdentifier","src":"18201:1:105"}],"functionName":{"name":"mstore","nativeSrc":"18178:6:105","nodeType":"YulIdentifier","src":"18178:6:105"},"nativeSrc":"18178:25:105","nodeType":"YulFunctionCall","src":"18178:25:105"},"nativeSrc":"18178:25:105","nodeType":"YulExpressionStatement","src":"18178:25:105"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"18227:3:105","nodeType":"YulIdentifier","src":"18227:3:105"},{"kind":"number","nativeSrc":"18232:4:105","nodeType":"YulLiteral","src":"18232:4:105","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"18223:3:105","nodeType":"YulIdentifier","src":"18223:3:105"},"nativeSrc":"18223:14:105","nodeType":"YulFunctionCall","src":"18223:14:105"},{"name":"e","nativeSrc":"18239:1:105","nodeType":"YulIdentifier","src":"18239:1:105"}],"functionName":{"name":"mstore","nativeSrc":"18216:6:105","nodeType":"YulIdentifier","src":"18216:6:105"},"nativeSrc":"18216:25:105","nodeType":"YulFunctionCall","src":"18216:25:105"},"nativeSrc":"18216:25:105","nodeType":"YulExpressionStatement","src":"18216:25:105"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"18265:3:105","nodeType":"YulIdentifier","src":"18265:3:105"},{"kind":"number","nativeSrc":"18270:4:105","nodeType":"YulLiteral","src":"18270:4:105","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"18261:3:105","nodeType":"YulIdentifier","src":"18261:3:105"},"nativeSrc":"18261:14:105","nodeType":"YulFunctionCall","src":"18261:14:105"},{"name":"m","nativeSrc":"18277:1:105","nodeType":"YulIdentifier","src":"18277:1:105"}],"functionName":{"name":"mstore","nativeSrc":"18254:6:105","nodeType":"YulIdentifier","src":"18254:6:105"},"nativeSrc":"18254:25:105","nodeType":"YulFunctionCall","src":"18254:25:105"},"nativeSrc":"18254:25:105","nodeType":"YulExpressionStatement","src":"18254:25:105"},{"nativeSrc":"18441:57:105","nodeType":"YulAssignment","src":"18441:57:105","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"18463:3:105","nodeType":"YulIdentifier","src":"18463:3:105"},"nativeSrc":"18463:5:105","nodeType":"YulFunctionCall","src":"18463:5:105"},{"kind":"number","nativeSrc":"18470:4:105","nodeType":"YulLiteral","src":"18470:4:105","type":"","value":"0x05"},{"name":"ptr","nativeSrc":"18476:3:105","nodeType":"YulIdentifier","src":"18476:3:105"},{"kind":"number","nativeSrc":"18481:4:105","nodeType":"YulLiteral","src":"18481:4:105","type":"","value":"0xc0"},{"kind":"number","nativeSrc":"18487:4:105","nodeType":"YulLiteral","src":"18487:4:105","type":"","value":"0x00"},{"kind":"number","nativeSrc":"18493:4:105","nodeType":"YulLiteral","src":"18493:4:105","type":"","value":"0x20"}],"functionName":{"name":"staticcall","nativeSrc":"18452:10:105","nodeType":"YulIdentifier","src":"18452:10:105"},"nativeSrc":"18452:46:105","nodeType":"YulFunctionCall","src":"18452:46:105"},"variableNames":[{"name":"success","nativeSrc":"18441:7:105","nodeType":"YulIdentifier","src":"18441:7:105"}]},{"nativeSrc":"18511:21:105","nodeType":"YulAssignment","src":"18511:21:105","value":{"arguments":[{"kind":"number","nativeSrc":"18527:4:105","nodeType":"YulLiteral","src":"18527:4:105","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"18521:5:105","nodeType":"YulIdentifier","src":"18521:5:105"},"nativeSrc":"18521:11:105","nodeType":"YulFunctionCall","src":"18521:11:105"},"variableNames":[{"name":"result","nativeSrc":"18511:6:105","nodeType":"YulIdentifier","src":"18511:6:105"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":34355,"isOffset":false,"isSlot":false,"src":"18201:1:105","valueSize":1},{"declaration":34357,"isOffset":false,"isSlot":false,"src":"18239:1:105","valueSize":1},{"declaration":34359,"isOffset":false,"isSlot":false,"src":"18277:1:105","valueSize":1},{"declaration":34364,"isOffset":false,"isSlot":false,"src":"18511:6:105","valueSize":1},{"declaration":34362,"isOffset":false,"isSlot":false,"src":"18441:7:105","valueSize":1}],"flags":["memory-safe"],"id":34374,"nodeType":"InlineAssembly","src":"17104:1438:105"}]},"documentation":{"id":34353,"nodeType":"StructuredDocumentation","src":"16207:738:105","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":34376,"implemented":true,"kind":"function","modifiers":[],"name":"tryModExp","nameLocation":"16959:9:105","nodeType":"FunctionDefinition","parameters":{"id":34360,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34355,"mutability":"mutable","name":"b","nameLocation":"16977:1:105","nodeType":"VariableDeclaration","scope":34376,"src":"16969:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34354,"name":"uint256","nodeType":"ElementaryTypeName","src":"16969:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":34357,"mutability":"mutable","name":"e","nameLocation":"16988:1:105","nodeType":"VariableDeclaration","scope":34376,"src":"16980:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34356,"name":"uint256","nodeType":"ElementaryTypeName","src":"16980:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":34359,"mutability":"mutable","name":"m","nameLocation":"16999:1:105","nodeType":"VariableDeclaration","scope":34376,"src":"16991:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34358,"name":"uint256","nodeType":"ElementaryTypeName","src":"16991:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16968:33:105"},"returnParameters":{"id":34365,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34362,"mutability":"mutable","name":"success","nameLocation":"17030:7:105","nodeType":"VariableDeclaration","scope":34376,"src":"17025:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":34361,"name":"bool","nodeType":"ElementaryTypeName","src":"17025:4:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":34364,"mutability":"mutable","name":"result","nameLocation":"17047:6:105","nodeType":"VariableDeclaration","scope":34376,"src":"17039:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34363,"name":"uint256","nodeType":"ElementaryTypeName","src":"17039:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17024:30:105"},"scope":35187,"src":"16950:1598:105","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":34411,"nodeType":"Block","src":"18745:179:105","statements":[{"assignments":[34389,34391],"declarations":[{"constant":false,"id":34389,"mutability":"mutable","name":"success","nameLocation":"18761:7:105","nodeType":"VariableDeclaration","scope":34411,"src":"18756:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":34388,"name":"bool","nodeType":"ElementaryTypeName","src":"18756:4:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":34391,"mutability":"mutable","name":"result","nameLocation":"18783:6:105","nodeType":"VariableDeclaration","scope":34411,"src":"18770:19:105","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":34390,"name":"bytes","nodeType":"ElementaryTypeName","src":"18770:5:105","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":34397,"initialValue":{"arguments":[{"id":34393,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34379,"src":"18803:1:105","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":34394,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34381,"src":"18806:1:105","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":34395,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34383,"src":"18809:1:105","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":34392,"name":"tryModExp","nodeType":"Identifier","overloadedDeclarations":[34376,34458],"referencedDeclaration":34458,"src":"18793:9:105","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":34396,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18793:18:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"18755:56:105"},{"condition":{"id":34399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"18825:8:105","subExpression":{"id":34398,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34389,"src":"18826:7:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34408,"nodeType":"IfStatement","src":"18821:74:105","trueBody":{"id":34407,"nodeType":"Block","src":"18835:60:105","statements":[{"expression":{"arguments":[{"expression":{"id":34403,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"18861:5:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":34404,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18867:16:105","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":30964,"src":"18861:22:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":34400,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30997,"src":"18849:5:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$30997_$","typeString":"type(library Panic)"}},"id":34402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18855:5:105","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":30996,"src":"18849:11:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":34405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18849:35:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":34406,"nodeType":"ExpressionStatement","src":"18849:35:105"}]}},{"expression":{"id":34409,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34391,"src":"18911:6:105","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":34387,"id":34410,"nodeType":"Return","src":"18904:13:105"}]},"documentation":{"id":34377,"nodeType":"StructuredDocumentation","src":"18554:85:105","text":" @dev Variant of {modExp} that supports inputs of arbitrary length."},"id":34412,"implemented":true,"kind":"function","modifiers":[],"name":"modExp","nameLocation":"18653:6:105","nodeType":"FunctionDefinition","parameters":{"id":34384,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34379,"mutability":"mutable","name":"b","nameLocation":"18673:1:105","nodeType":"VariableDeclaration","scope":34412,"src":"18660:14:105","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":34378,"name":"bytes","nodeType":"ElementaryTypeName","src":"18660:5:105","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":34381,"mutability":"mutable","name":"e","nameLocation":"18689:1:105","nodeType":"VariableDeclaration","scope":34412,"src":"18676:14:105","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":34380,"name":"bytes","nodeType":"ElementaryTypeName","src":"18676:5:105","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":34383,"mutability":"mutable","name":"m","nameLocation":"18705:1:105","nodeType":"VariableDeclaration","scope":34412,"src":"18692:14:105","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":34382,"name":"bytes","nodeType":"ElementaryTypeName","src":"18692:5:105","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"18659:48:105"},"returnParameters":{"id":34387,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34386,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":34412,"src":"18731:12:105","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":34385,"name":"bytes","nodeType":"ElementaryTypeName","src":"18731:5:105","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"18730:14:105"},"scope":35187,"src":"18644:280:105","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":34457,"nodeType":"Block","src":"19178:771:105","statements":[{"condition":{"arguments":[{"id":34427,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34419,"src":"19203:1:105","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":34426,"name":"_zeroBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34491,"src":"19192:10:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (bytes memory) pure returns (bool)"}},"id":34428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19192:13:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34436,"nodeType":"IfStatement","src":"19188:47:105","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":34429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"19215:5:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":34432,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19232:1:105","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":34431,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"19222:9:105","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":34430,"name":"bytes","nodeType":"ElementaryTypeName","src":"19226:5:105","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":34433,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19222:12:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":34434,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19214:21:105","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"functionReturnParameters":34425,"id":34435,"nodeType":"Return","src":"19207:28:105"}},{"assignments":[34438],"declarations":[{"constant":false,"id":34438,"mutability":"mutable","name":"mLen","nameLocation":"19254:4:105","nodeType":"VariableDeclaration","scope":34457,"src":"19246:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34437,"name":"uint256","nodeType":"ElementaryTypeName","src":"19246:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":34441,"initialValue":{"expression":{"id":34439,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34419,"src":"19261:1:105","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":34440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19263:6:105","memberName":"length","nodeType":"MemberAccess","src":"19261:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19246:23:105"},{"expression":{"id":34454,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34442,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34424,"src":"19351:6:105","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":34445,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34415,"src":"19377:1:105","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":34446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19379:6:105","memberName":"length","nodeType":"MemberAccess","src":"19377:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":34447,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34417,"src":"19387:1:105","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":34448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19389:6:105","memberName":"length","nodeType":"MemberAccess","src":"19387:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":34449,"name":"mLen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34438,"src":"19397:4:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":34450,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34415,"src":"19403:1:105","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":34451,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34417,"src":"19406:1:105","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":34452,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34419,"src":"19409:1:105","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":34443,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"19360:3:105","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":34444,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19364:12:105","memberName":"encodePacked","nodeType":"MemberAccess","src":"19360:16:105","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":34453,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19360:51:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"19351:60:105","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":34455,"nodeType":"ExpressionStatement","src":"19351:60:105"},{"AST":{"nativeSrc":"19447:496:105","nodeType":"YulBlock","src":"19447:496:105","statements":[{"nativeSrc":"19461:32:105","nodeType":"YulVariableDeclaration","src":"19461:32:105","value":{"arguments":[{"name":"result","nativeSrc":"19480:6:105","nodeType":"YulIdentifier","src":"19480:6:105"},{"kind":"number","nativeSrc":"19488:4:105","nodeType":"YulLiteral","src":"19488:4:105","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"19476:3:105","nodeType":"YulIdentifier","src":"19476:3:105"},"nativeSrc":"19476:17:105","nodeType":"YulFunctionCall","src":"19476:17:105"},"variables":[{"name":"dataPtr","nativeSrc":"19465:7:105","nodeType":"YulTypedName","src":"19465:7:105","type":""}]},{"nativeSrc":"19583:73:105","nodeType":"YulAssignment","src":"19583:73:105","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"19605:3:105","nodeType":"YulIdentifier","src":"19605:3:105"},"nativeSrc":"19605:5:105","nodeType":"YulFunctionCall","src":"19605:5:105"},{"kind":"number","nativeSrc":"19612:4:105","nodeType":"YulLiteral","src":"19612:4:105","type":"","value":"0x05"},{"name":"dataPtr","nativeSrc":"19618:7:105","nodeType":"YulIdentifier","src":"19618:7:105"},{"arguments":[{"name":"result","nativeSrc":"19633:6:105","nodeType":"YulIdentifier","src":"19633:6:105"}],"functionName":{"name":"mload","nativeSrc":"19627:5:105","nodeType":"YulIdentifier","src":"19627:5:105"},"nativeSrc":"19627:13:105","nodeType":"YulFunctionCall","src":"19627:13:105"},{"name":"dataPtr","nativeSrc":"19642:7:105","nodeType":"YulIdentifier","src":"19642:7:105"},{"name":"mLen","nativeSrc":"19651:4:105","nodeType":"YulIdentifier","src":"19651:4:105"}],"functionName":{"name":"staticcall","nativeSrc":"19594:10:105","nodeType":"YulIdentifier","src":"19594:10:105"},"nativeSrc":"19594:62:105","nodeType":"YulFunctionCall","src":"19594:62:105"},"variableNames":[{"name":"success","nativeSrc":"19583:7:105","nodeType":"YulIdentifier","src":"19583:7:105"}]},{"expression":{"arguments":[{"name":"result","nativeSrc":"19812:6:105","nodeType":"YulIdentifier","src":"19812:6:105"},{"name":"mLen","nativeSrc":"19820:4:105","nodeType":"YulIdentifier","src":"19820:4:105"}],"functionName":{"name":"mstore","nativeSrc":"19805:6:105","nodeType":"YulIdentifier","src":"19805:6:105"},"nativeSrc":"19805:20:105","nodeType":"YulFunctionCall","src":"19805:20:105"},"nativeSrc":"19805:20:105","nodeType":"YulExpressionStatement","src":"19805:20:105"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"19908:4:105","nodeType":"YulLiteral","src":"19908:4:105","type":"","value":"0x40"},{"arguments":[{"name":"dataPtr","nativeSrc":"19918:7:105","nodeType":"YulIdentifier","src":"19918:7:105"},{"name":"mLen","nativeSrc":"19927:4:105","nodeType":"YulIdentifier","src":"19927:4:105"}],"functionName":{"name":"add","nativeSrc":"19914:3:105","nodeType":"YulIdentifier","src":"19914:3:105"},"nativeSrc":"19914:18:105","nodeType":"YulFunctionCall","src":"19914:18:105"}],"functionName":{"name":"mstore","nativeSrc":"19901:6:105","nodeType":"YulIdentifier","src":"19901:6:105"},"nativeSrc":"19901:32:105","nodeType":"YulFunctionCall","src":"19901:32:105"},"nativeSrc":"19901:32:105","nodeType":"YulExpressionStatement","src":"19901:32:105"}]},"evmVersion":"prague","externalReferences":[{"declaration":34438,"isOffset":false,"isSlot":false,"src":"19651:4:105","valueSize":1},{"declaration":34438,"isOffset":false,"isSlot":false,"src":"19820:4:105","valueSize":1},{"declaration":34438,"isOffset":false,"isSlot":false,"src":"19927:4:105","valueSize":1},{"declaration":34424,"isOffset":false,"isSlot":false,"src":"19480:6:105","valueSize":1},{"declaration":34424,"isOffset":false,"isSlot":false,"src":"19633:6:105","valueSize":1},{"declaration":34424,"isOffset":false,"isSlot":false,"src":"19812:6:105","valueSize":1},{"declaration":34422,"isOffset":false,"isSlot":false,"src":"19583:7:105","valueSize":1}],"flags":["memory-safe"],"id":34456,"nodeType":"InlineAssembly","src":"19422:521:105"}]},"documentation":{"id":34413,"nodeType":"StructuredDocumentation","src":"18930:88:105","text":" @dev Variant of {tryModExp} that supports inputs of arbitrary length."},"id":34458,"implemented":true,"kind":"function","modifiers":[],"name":"tryModExp","nameLocation":"19032:9:105","nodeType":"FunctionDefinition","parameters":{"id":34420,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34415,"mutability":"mutable","name":"b","nameLocation":"19064:1:105","nodeType":"VariableDeclaration","scope":34458,"src":"19051:14:105","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":34414,"name":"bytes","nodeType":"ElementaryTypeName","src":"19051:5:105","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":34417,"mutability":"mutable","name":"e","nameLocation":"19088:1:105","nodeType":"VariableDeclaration","scope":34458,"src":"19075:14:105","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":34416,"name":"bytes","nodeType":"ElementaryTypeName","src":"19075:5:105","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":34419,"mutability":"mutable","name":"m","nameLocation":"19112:1:105","nodeType":"VariableDeclaration","scope":34458,"src":"19099:14:105","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":34418,"name":"bytes","nodeType":"ElementaryTypeName","src":"19099:5:105","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"19041:78:105"},"returnParameters":{"id":34425,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34422,"mutability":"mutable","name":"success","nameLocation":"19148:7:105","nodeType":"VariableDeclaration","scope":34458,"src":"19143:12:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":34421,"name":"bool","nodeType":"ElementaryTypeName","src":"19143:4:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":34424,"mutability":"mutable","name":"result","nameLocation":"19170:6:105","nodeType":"VariableDeclaration","scope":34458,"src":"19157:19:105","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":34423,"name":"bytes","nodeType":"ElementaryTypeName","src":"19157:5:105","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"19142:35:105"},"scope":35187,"src":"19023:926:105","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":34490,"nodeType":"Block","src":"20104:176:105","statements":[{"body":{"id":34486,"nodeType":"Block","src":"20161:92:105","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":34481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":34477,"name":"byteArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34461,"src":"20179:9:105","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":34479,"indexExpression":{"id":34478,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34467,"src":"20189:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20179:12:105","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":34480,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20195:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20179:17:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34485,"nodeType":"IfStatement","src":"20175:68:105","trueBody":{"id":34484,"nodeType":"Block","src":"20198:45:105","statements":[{"expression":{"hexValue":"66616c7365","id":34482,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"20223:5:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":34465,"id":34483,"nodeType":"Return","src":"20216:12:105"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34470,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34467,"src":"20134:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":34471,"name":"byteArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34461,"src":"20138:9:105","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":34472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20148:6:105","memberName":"length","nodeType":"MemberAccess","src":"20138:16:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20134:20:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34487,"initializationExpression":{"assignments":[34467],"declarations":[{"constant":false,"id":34467,"mutability":"mutable","name":"i","nameLocation":"20127:1:105","nodeType":"VariableDeclaration","scope":34487,"src":"20119:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34466,"name":"uint256","nodeType":"ElementaryTypeName","src":"20119:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":34469,"initialValue":{"hexValue":"30","id":34468,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20131:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"20119:13:105"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":34475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"20156:3:105","subExpression":{"id":34474,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34467,"src":"20158:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34476,"nodeType":"ExpressionStatement","src":"20156:3:105"},"nodeType":"ForStatement","src":"20114:139:105"},{"expression":{"hexValue":"74727565","id":34488,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"20269:4:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":34465,"id":34489,"nodeType":"Return","src":"20262:11:105"}]},"documentation":{"id":34459,"nodeType":"StructuredDocumentation","src":"19955:72:105","text":" @dev Returns whether the provided byte array is zero."},"id":34491,"implemented":true,"kind":"function","modifiers":[],"name":"_zeroBytes","nameLocation":"20041:10:105","nodeType":"FunctionDefinition","parameters":{"id":34462,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34461,"mutability":"mutable","name":"byteArray","nameLocation":"20065:9:105","nodeType":"VariableDeclaration","scope":34491,"src":"20052:22:105","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":34460,"name":"bytes","nodeType":"ElementaryTypeName","src":"20052:5:105","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"20051:24:105"},"returnParameters":{"id":34465,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34464,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":34491,"src":"20098:4:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":34463,"name":"bool","nodeType":"ElementaryTypeName","src":"20098:4:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"20097:6:105"},"scope":35187,"src":"20032:248:105","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":34709,"nodeType":"Block","src":"20640:5124:105","statements":[{"id":34708,"nodeType":"UncheckedBlock","src":"20650:5108:105","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34499,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34494,"src":"20744:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"31","id":34500,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20749:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"20744:6:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34505,"nodeType":"IfStatement","src":"20740:53:105","trueBody":{"id":34504,"nodeType":"Block","src":"20752:41:105","statements":[{"expression":{"id":34502,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34494,"src":"20777:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":34498,"id":34503,"nodeType":"Return","src":"20770:8:105"}]}},{"assignments":[34507],"declarations":[{"constant":false,"id":34507,"mutability":"mutable","name":"aa","nameLocation":"21728:2:105","nodeType":"VariableDeclaration","scope":34708,"src":"21720:10:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34506,"name":"uint256","nodeType":"ElementaryTypeName","src":"21720:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":34509,"initialValue":{"id":34508,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34494,"src":"21733:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"21720:14:105"},{"assignments":[34511],"declarations":[{"constant":false,"id":34511,"mutability":"mutable","name":"xn","nameLocation":"21756:2:105","nodeType":"VariableDeclaration","scope":34708,"src":"21748:10:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34510,"name":"uint256","nodeType":"ElementaryTypeName","src":"21748:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":34513,"initialValue":{"hexValue":"31","id":34512,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21761:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"21748:14:105"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34514,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34507,"src":"21781:2:105","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":34517,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":34515,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21788:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":34516,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21793:3:105","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"21788:8:105","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}}],"id":34518,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21787:10:105","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}},"src":"21781:16:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34529,"nodeType":"IfStatement","src":"21777:92:105","trueBody":{"id":34528,"nodeType":"Block","src":"21799:70:105","statements":[{"expression":{"id":34522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34520,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34507,"src":"21817:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"313238","id":34521,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21824:3:105","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"21817:10:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34523,"nodeType":"ExpressionStatement","src":"21817:10:105"},{"expression":{"id":34526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34524,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"21845:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3634","id":34525,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21852:2:105","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"21845:9:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34527,"nodeType":"ExpressionStatement","src":"21845:9:105"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34535,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34530,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34507,"src":"21886:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"},"id":34533,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":34531,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21893:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":34532,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21898:2:105","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"21893:7:105","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}}],"id":34534,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21892:9:105","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}},"src":"21886:15:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34545,"nodeType":"IfStatement","src":"21882:90:105","trueBody":{"id":34544,"nodeType":"Block","src":"21903:69:105","statements":[{"expression":{"id":34538,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34536,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34507,"src":"21921:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3634","id":34537,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21928:2:105","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"21921:9:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34539,"nodeType":"ExpressionStatement","src":"21921:9:105"},{"expression":{"id":34542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34540,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"21948:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3332","id":34541,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21955:2:105","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"21948:9:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34543,"nodeType":"ExpressionStatement","src":"21948:9:105"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34546,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34507,"src":"21989:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"},"id":34549,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":34547,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21996:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":34548,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22001:2:105","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"21996:7:105","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}}],"id":34550,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21995:9:105","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}},"src":"21989:15:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34561,"nodeType":"IfStatement","src":"21985:90:105","trueBody":{"id":34560,"nodeType":"Block","src":"22006:69:105","statements":[{"expression":{"id":34554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34552,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34507,"src":"22024:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3332","id":34553,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22031:2:105","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"22024:9:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34555,"nodeType":"ExpressionStatement","src":"22024:9:105"},{"expression":{"id":34558,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34556,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"22051:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3136","id":34557,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22058:2:105","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"22051:9:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34559,"nodeType":"ExpressionStatement","src":"22051:9:105"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34562,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34507,"src":"22092:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"},"id":34565,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":34563,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22099:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":34564,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22104:2:105","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"22099:7:105","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}}],"id":34566,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22098:9:105","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}},"src":"22092:15:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34577,"nodeType":"IfStatement","src":"22088:89:105","trueBody":{"id":34576,"nodeType":"Block","src":"22109:68:105","statements":[{"expression":{"id":34570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34568,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34507,"src":"22127:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3136","id":34569,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22134:2:105","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"22127:9:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34571,"nodeType":"ExpressionStatement","src":"22127:9:105"},{"expression":{"id":34574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34572,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"22154:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"38","id":34573,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22161:1:105","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"22154:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34575,"nodeType":"ExpressionStatement","src":"22154:8:105"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34578,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34507,"src":"22194:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":34581,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":34579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22201:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":34580,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22206:1:105","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"22201:6:105","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":34582,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22200:8:105","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"src":"22194:14:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34593,"nodeType":"IfStatement","src":"22190:87:105","trueBody":{"id":34592,"nodeType":"Block","src":"22210:67:105","statements":[{"expression":{"id":34586,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34584,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34507,"src":"22228:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"38","id":34585,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22235:1:105","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"22228:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34587,"nodeType":"ExpressionStatement","src":"22228:8:105"},{"expression":{"id":34590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34588,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"22254:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"34","id":34589,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22261:1:105","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"22254:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34591,"nodeType":"ExpressionStatement","src":"22254:8:105"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34594,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34507,"src":"22294:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"id":34597,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":34595,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22301:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":34596,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22306:1:105","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"22301:6:105","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}}],"id":34598,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22300:8:105","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}},"src":"22294:14:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34609,"nodeType":"IfStatement","src":"22290:87:105","trueBody":{"id":34608,"nodeType":"Block","src":"22310:67:105","statements":[{"expression":{"id":34602,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34600,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34507,"src":"22328:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":34601,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22335:1:105","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"22328:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34603,"nodeType":"ExpressionStatement","src":"22328:8:105"},{"expression":{"id":34606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34604,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"22354:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"32","id":34605,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22361:1:105","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"22354:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34607,"nodeType":"ExpressionStatement","src":"22354:8:105"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34615,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34610,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34507,"src":"22394:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"id":34613,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":34611,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22401:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"32","id":34612,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22406:1:105","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"22401:6:105","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}}],"id":34614,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22400:8:105","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}},"src":"22394:14:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34621,"nodeType":"IfStatement","src":"22390:61:105","trueBody":{"id":34620,"nodeType":"Block","src":"22410:41:105","statements":[{"expression":{"id":34618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34616,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"22428:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"31","id":34617,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22435:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22428:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34619,"nodeType":"ExpressionStatement","src":"22428:8:105"}]}},{"expression":{"id":34629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34622,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"22871:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34628,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":34623,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22877:1:105","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":34624,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"22881:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22877:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34626,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22876:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":34627,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22888:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22876:13:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22871:18:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34630,"nodeType":"ExpressionStatement","src":"22871:18:105"},{"expression":{"id":34640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34631,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"24776:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34636,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34632,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"24782:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34633,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34494,"src":"24787:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":34634,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"24791:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24787:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24782:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34637,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"24781:13:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":34638,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24798:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24781:18:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24776:23:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34641,"nodeType":"ExpressionStatement","src":"24776:23:105"},{"expression":{"id":34651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34642,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"24885:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34650,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34647,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34643,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"24891:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34646,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34644,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34494,"src":"24896:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":34645,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"24900:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24896:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24891:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34648,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"24890:13:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":34649,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24907:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24890:18:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24885:23:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34652,"nodeType":"ExpressionStatement","src":"24885:23:105"},{"expression":{"id":34662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34653,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"24996:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34658,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34654,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"25002:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34655,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34494,"src":"25007:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":34656,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"25011:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25007:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25002:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34659,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25001:13:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":34660,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25018:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"25001:18:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24996:23:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34663,"nodeType":"ExpressionStatement","src":"24996:23:105"},{"expression":{"id":34673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34664,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"25105:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34672,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34665,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"25111:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34668,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34666,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34494,"src":"25116:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":34667,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"25120:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25116:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25111:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34670,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25110:13:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":34671,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25127:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"25110:18:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25105:23:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34674,"nodeType":"ExpressionStatement","src":"25105:23:105"},{"expression":{"id":34684,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34675,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"25215:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34680,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34676,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"25221:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34679,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34677,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34494,"src":"25226:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":34678,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"25230:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25226:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25221:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34681,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25220:13:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":34682,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25237:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"25220:18:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25215:23:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34685,"nodeType":"ExpressionStatement","src":"25215:23:105"},{"expression":{"id":34695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34686,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"25325:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34687,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"25331:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34690,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34688,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34494,"src":"25336:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":34689,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"25340:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25336:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25331:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34692,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25330:13:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":34693,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25347:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"25330:18:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25325:23:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34696,"nodeType":"ExpressionStatement","src":"25325:23:105"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34697,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"25714:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34700,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"25735:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34701,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34494,"src":"25740:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":34702,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34511,"src":"25744:2:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25740:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25735:11:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":34698,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"25719:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":34699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25728:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"25719:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":34705,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25719:28:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25714:33:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":34498,"id":34707,"nodeType":"Return","src":"25707:40:105"}]}]},"documentation":{"id":34492,"nodeType":"StructuredDocumentation","src":"20286:292:105","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":34710,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"20592:4:105","nodeType":"FunctionDefinition","parameters":{"id":34495,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34494,"mutability":"mutable","name":"a","nameLocation":"20605:1:105","nodeType":"VariableDeclaration","scope":34710,"src":"20597:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34493,"name":"uint256","nodeType":"ElementaryTypeName","src":"20597:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20596:11:105"},"returnParameters":{"id":34498,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34497,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":34710,"src":"20631:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34496,"name":"uint256","nodeType":"ElementaryTypeName","src":"20631:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20630:9:105"},"scope":35187,"src":"20583:5181:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":34743,"nodeType":"Block","src":"25937:171:105","statements":[{"id":34742,"nodeType":"UncheckedBlock","src":"25947:155:105","statements":[{"assignments":[34722],"declarations":[{"constant":false,"id":34722,"mutability":"mutable","name":"result","nameLocation":"25979:6:105","nodeType":"VariableDeclaration","scope":34742,"src":"25971:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34721,"name":"uint256","nodeType":"ElementaryTypeName","src":"25971:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":34726,"initialValue":{"arguments":[{"id":34724,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34713,"src":"25993:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":34723,"name":"sqrt","nodeType":"Identifier","overloadedDeclarations":[34710,34744],"referencedDeclaration":34710,"src":"25988:4:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":34725,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25988:7:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"25971:24:105"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34740,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34727,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34722,"src":"26016:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":34738,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":34731,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34716,"src":"26058:8:105","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":34730,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35165,"src":"26041:16:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$33557_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":34732,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26041:26:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34733,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34722,"src":"26071:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":34734,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34722,"src":"26080:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26071:15:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":34736,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34713,"src":"26089:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26071:19:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26041:49:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":34728,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"26025:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":34729,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26034:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"26025:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":34739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26025:66:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26016:75:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":34720,"id":34741,"nodeType":"Return","src":"26009:82:105"}]}]},"documentation":{"id":34711,"nodeType":"StructuredDocumentation","src":"25770:86:105","text":" @dev Calculates sqrt(a), following the selected rounding direction."},"id":34744,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"25870:4:105","nodeType":"FunctionDefinition","parameters":{"id":34717,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34713,"mutability":"mutable","name":"a","nameLocation":"25883:1:105","nodeType":"VariableDeclaration","scope":34744,"src":"25875:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34712,"name":"uint256","nodeType":"ElementaryTypeName","src":"25875:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":34716,"mutability":"mutable","name":"rounding","nameLocation":"25895:8:105","nodeType":"VariableDeclaration","scope":34744,"src":"25886:17:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"},"typeName":{"id":34715,"nodeType":"UserDefinedTypeName","pathNode":{"id":34714,"name":"Rounding","nameLocations":["25886:8:105"],"nodeType":"IdentifierPath","referencedDeclaration":33557,"src":"25886:8:105"},"referencedDeclaration":33557,"src":"25886:8:105","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"25874:30:105"},"returnParameters":{"id":34720,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34719,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":34744,"src":"25928:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34718,"name":"uint256","nodeType":"ElementaryTypeName","src":"25928:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25927:9:105"},"scope":35187,"src":"25861:247:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":34834,"nodeType":"Block","src":"26297:2334:105","statements":[{"expression":{"id":34761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34752,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34750,"src":"26379:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34757,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34755,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34747,"src":"26399:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666666666666666666666666666666666666666666666666666666666666666","id":34756,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26403:34:105","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"},"value":"0xffffffffffffffffffffffffffffffff"},"src":"26399:38:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":34753,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"26383:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":34754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26392:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"26383:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":34758,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26383:55:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"37","id":34759,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26442:1:105","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"26383:60:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26379:64:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34762,"nodeType":"ExpressionStatement","src":"26379:64:105"},{"expression":{"id":34775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34763,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34750,"src":"26519:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34768,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34766,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34747,"src":"26541:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":34767,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34750,"src":"26546:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26541:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34769,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26540:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866666666666666666666666666666666","id":34770,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26551:18:105","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"},"value":"0xffffffffffffffff"},"src":"26540:29:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":34764,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"26524:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":34765,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26533:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"26524:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":34772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26524:46:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"36","id":34773,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26574:1:105","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"26524:51:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26519:56:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34776,"nodeType":"ExpressionStatement","src":"26519:56:105"},{"expression":{"id":34789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34777,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34750,"src":"26650:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34785,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34780,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34747,"src":"26672:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":34781,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34750,"src":"26677:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26672:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34783,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26671:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666666666666666","id":34784,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26682:10:105","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"value":"0xffffffff"},"src":"26671:21:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":34778,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"26655:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":34779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26664:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"26655:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":34786,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26655:38:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"35","id":34787,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26697:1:105","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"26655:43:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26650:48:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34790,"nodeType":"ExpressionStatement","src":"26650:48:105"},{"expression":{"id":34803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34791,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34750,"src":"26773:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34802,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34799,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34794,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34747,"src":"26795:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":34795,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34750,"src":"26800:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26795:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34797,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26794:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866666666","id":34798,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26805:6:105","typeDescriptions":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"},"value":"0xffff"},"src":"26794:17:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":34792,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"26778:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":34793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26787:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"26778:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":34800,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26778:34:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":34801,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26816:1:105","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"26778:39:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26773:44:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34804,"nodeType":"ExpressionStatement","src":"26773:44:105"},{"expression":{"id":34817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34805,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34750,"src":"26890:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34810,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34808,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34747,"src":"26912:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":34809,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34750,"src":"26917:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26912:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34811,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26911:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666","id":34812,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26922:4:105","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0xff"},"src":"26911:15:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":34806,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"26895:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":34807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26904:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"26895:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":34814,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26895:32:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"33","id":34815,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26931:1:105","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"26895:37:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26890:42:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34818,"nodeType":"ExpressionStatement","src":"26890:42:105"},{"expression":{"id":34831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34819,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34750,"src":"27004:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34830,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34827,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34822,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34747,"src":"27026:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":34823,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34750,"src":"27031:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27026:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":34825,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"27025:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866","id":34826,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27036:3:105","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"27025:14:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":34820,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"27009:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":34821,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27018:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"27009:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":34828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27009:31:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"32","id":34829,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27044:1:105","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"27009:36:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27004:41:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34832,"nodeType":"ExpressionStatement","src":"27004:41:105"},{"AST":{"nativeSrc":"28506:119:105","nodeType":"YulBlock","src":"28506:119:105","statements":[{"nativeSrc":"28520:95:105","nodeType":"YulAssignment","src":"28520:95:105","value":{"arguments":[{"name":"r","nativeSrc":"28528:1:105","nodeType":"YulIdentifier","src":"28528:1:105"},{"arguments":[{"arguments":[{"name":"r","nativeSrc":"28540:1:105","nodeType":"YulIdentifier","src":"28540:1:105"},{"name":"x","nativeSrc":"28543:1:105","nodeType":"YulIdentifier","src":"28543:1:105"}],"functionName":{"name":"shr","nativeSrc":"28536:3:105","nodeType":"YulIdentifier","src":"28536:3:105"},"nativeSrc":"28536:9:105","nodeType":"YulFunctionCall","src":"28536:9:105"},{"kind":"number","nativeSrc":"28547:66:105","nodeType":"YulLiteral","src":"28547:66:105","type":"","value":"0x0000010102020202030303030303030300000000000000000000000000000000"}],"functionName":{"name":"byte","nativeSrc":"28531:4:105","nodeType":"YulIdentifier","src":"28531:4:105"},"nativeSrc":"28531:83:105","nodeType":"YulFunctionCall","src":"28531:83:105"}],"functionName":{"name":"or","nativeSrc":"28525:2:105","nodeType":"YulIdentifier","src":"28525:2:105"},"nativeSrc":"28525:90:105","nodeType":"YulFunctionCall","src":"28525:90:105"},"variableNames":[{"name":"r","nativeSrc":"28520:1:105","nodeType":"YulIdentifier","src":"28520:1:105"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":34750,"isOffset":false,"isSlot":false,"src":"28520:1:105","valueSize":1},{"declaration":34750,"isOffset":false,"isSlot":false,"src":"28528:1:105","valueSize":1},{"declaration":34750,"isOffset":false,"isSlot":false,"src":"28540:1:105","valueSize":1},{"declaration":34747,"isOffset":false,"isSlot":false,"src":"28543:1:105","valueSize":1}],"flags":["memory-safe"],"id":34833,"nodeType":"InlineAssembly","src":"28481:144:105"}]},"documentation":{"id":34745,"nodeType":"StructuredDocumentation","src":"26114:119:105","text":" @dev Return the log in base 2 of a positive value rounded towards zero.\n Returns 0 if given 0."},"id":34835,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"26247:4:105","nodeType":"FunctionDefinition","parameters":{"id":34748,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34747,"mutability":"mutable","name":"x","nameLocation":"26260:1:105","nodeType":"VariableDeclaration","scope":34835,"src":"26252:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34746,"name":"uint256","nodeType":"ElementaryTypeName","src":"26252:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26251:11:105"},"returnParameters":{"id":34751,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34750,"mutability":"mutable","name":"r","nameLocation":"26294:1:105","nodeType":"VariableDeclaration","scope":34835,"src":"26286:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34749,"name":"uint256","nodeType":"ElementaryTypeName","src":"26286:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26285:11:105"},"scope":35187,"src":"26238:2393:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":34868,"nodeType":"Block","src":"28864:175:105","statements":[{"id":34867,"nodeType":"UncheckedBlock","src":"28874:159:105","statements":[{"assignments":[34847],"declarations":[{"constant":false,"id":34847,"mutability":"mutable","name":"result","nameLocation":"28906:6:105","nodeType":"VariableDeclaration","scope":34867,"src":"28898:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34846,"name":"uint256","nodeType":"ElementaryTypeName","src":"28898:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":34851,"initialValue":{"arguments":[{"id":34849,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34838,"src":"28920:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":34848,"name":"log2","nodeType":"Identifier","overloadedDeclarations":[34835,34869],"referencedDeclaration":34835,"src":"28915:4:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":34850,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28915:11:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28898:28:105"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34852,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34847,"src":"28947:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":34863,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":34856,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34841,"src":"28989:8:105","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":34855,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35165,"src":"28972:16:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$33557_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":34857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28972:26:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":34858,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29002:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":34859,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34847,"src":"29007:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29002:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":34861,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34838,"src":"29016:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"29002:19:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"28972:49:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":34853,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"28956:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":34854,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28965:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"28956:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":34864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28956:66:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28947:75:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":34845,"id":34866,"nodeType":"Return","src":"28940:82:105"}]}]},"documentation":{"id":34836,"nodeType":"StructuredDocumentation","src":"28637:142:105","text":" @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":34869,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"28793:4:105","nodeType":"FunctionDefinition","parameters":{"id":34842,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34838,"mutability":"mutable","name":"value","nameLocation":"28806:5:105","nodeType":"VariableDeclaration","scope":34869,"src":"28798:13:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34837,"name":"uint256","nodeType":"ElementaryTypeName","src":"28798:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":34841,"mutability":"mutable","name":"rounding","nameLocation":"28822:8:105","nodeType":"VariableDeclaration","scope":34869,"src":"28813:17:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"},"typeName":{"id":34840,"nodeType":"UserDefinedTypeName","pathNode":{"id":34839,"name":"Rounding","nameLocations":["28813:8:105"],"nodeType":"IdentifierPath","referencedDeclaration":33557,"src":"28813:8:105"},"referencedDeclaration":33557,"src":"28813:8:105","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"28797:34:105"},"returnParameters":{"id":34845,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34844,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":34869,"src":"28855:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34843,"name":"uint256","nodeType":"ElementaryTypeName","src":"28855:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"28854:9:105"},"scope":35187,"src":"28784:255:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":34997,"nodeType":"Block","src":"29232:854:105","statements":[{"assignments":[34878],"declarations":[{"constant":false,"id":34878,"mutability":"mutable","name":"result","nameLocation":"29250:6:105","nodeType":"VariableDeclaration","scope":34997,"src":"29242:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34877,"name":"uint256","nodeType":"ElementaryTypeName","src":"29242:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":34880,"initialValue":{"hexValue":"30","id":34879,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29259:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"29242:18:105"},{"id":34994,"nodeType":"UncheckedBlock","src":"29270:787:105","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34881,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34872,"src":"29298:5:105","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":34884,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":34882,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29307:2:105","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":34883,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29313:2:105","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"29307:8:105","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"29298:17:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34897,"nodeType":"IfStatement","src":"29294:103:105","trueBody":{"id":34896,"nodeType":"Block","src":"29317:80:105","statements":[{"expression":{"id":34890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34886,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34872,"src":"29335:5:105","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":34889,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":34887,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29344:2:105","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":34888,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29350:2:105","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"29344:8:105","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"29335:17:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34891,"nodeType":"ExpressionStatement","src":"29335:17:105"},{"expression":{"id":34894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34892,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34878,"src":"29370:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3634","id":34893,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29380:2:105","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"29370:12:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34895,"nodeType":"ExpressionStatement","src":"29370:12:105"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34898,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34872,"src":"29414:5:105","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":34901,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":34899,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29423:2:105","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":34900,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29429:2:105","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"29423:8:105","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"29414:17:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34914,"nodeType":"IfStatement","src":"29410:103:105","trueBody":{"id":34913,"nodeType":"Block","src":"29433:80:105","statements":[{"expression":{"id":34907,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34903,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34872,"src":"29451:5:105","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":34906,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":34904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29460:2:105","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":34905,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29466:2:105","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"29460:8:105","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"29451:17:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34908,"nodeType":"ExpressionStatement","src":"29451:17:105"},{"expression":{"id":34911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34909,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34878,"src":"29486:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":34910,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29496:2:105","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"29486:12:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34912,"nodeType":"ExpressionStatement","src":"29486:12:105"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34919,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34915,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34872,"src":"29530:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":34918,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":34916,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29539:2:105","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":34917,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29545:2:105","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"29539:8:105","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"29530:17:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34931,"nodeType":"IfStatement","src":"29526:103:105","trueBody":{"id":34930,"nodeType":"Block","src":"29549:80:105","statements":[{"expression":{"id":34924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34920,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34872,"src":"29567:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":34923,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":34921,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29576:2:105","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":34922,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29582:2:105","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"29576:8:105","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"29567:17:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34925,"nodeType":"ExpressionStatement","src":"29567:17:105"},{"expression":{"id":34928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34926,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34878,"src":"29602:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3136","id":34927,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29612:2:105","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"29602:12:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34929,"nodeType":"ExpressionStatement","src":"29602:12:105"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34932,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34872,"src":"29646:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":34935,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":34933,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29655:2:105","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":34934,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29661:1:105","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"29655:7:105","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"29646:16:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34948,"nodeType":"IfStatement","src":"29642:100:105","trueBody":{"id":34947,"nodeType":"Block","src":"29664:78:105","statements":[{"expression":{"id":34941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34937,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34872,"src":"29682:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":34940,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":34938,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29691:2:105","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":34939,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29697:1:105","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"29691:7:105","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"29682:16:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34942,"nodeType":"ExpressionStatement","src":"29682:16:105"},{"expression":{"id":34945,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34943,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34878,"src":"29716:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"38","id":34944,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29726:1:105","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"29716:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34946,"nodeType":"ExpressionStatement","src":"29716:11:105"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34949,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34872,"src":"29759:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":34952,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":34950,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29768:2:105","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":34951,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29774:1:105","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"29768:7:105","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"29759:16:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34965,"nodeType":"IfStatement","src":"29755:100:105","trueBody":{"id":34964,"nodeType":"Block","src":"29777:78:105","statements":[{"expression":{"id":34958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34954,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34872,"src":"29795:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":34957,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":34955,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29804:2:105","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":34956,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29810:1:105","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"29804:7:105","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"29795:16:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34959,"nodeType":"ExpressionStatement","src":"29795:16:105"},{"expression":{"id":34962,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34960,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34878,"src":"29829:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"34","id":34961,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29839:1:105","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"29829:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34963,"nodeType":"ExpressionStatement","src":"29829:11:105"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34966,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34872,"src":"29872:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":34969,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":34967,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29881:2:105","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":34968,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29887:1:105","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"29881:7:105","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"29872:16:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34982,"nodeType":"IfStatement","src":"29868:100:105","trueBody":{"id":34981,"nodeType":"Block","src":"29890:78:105","statements":[{"expression":{"id":34975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34971,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34872,"src":"29908:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":34974,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":34972,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29917:2:105","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":34973,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29923:1:105","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"29917:7:105","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"29908:16:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34976,"nodeType":"ExpressionStatement","src":"29908:16:105"},{"expression":{"id":34979,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34977,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34878,"src":"29942:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"32","id":34978,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29952:1:105","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"29942:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34980,"nodeType":"ExpressionStatement","src":"29942:11:105"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":34987,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":34983,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34872,"src":"29985:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"id":34986,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":34984,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29994:2:105","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"31","id":34985,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30000:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"29994:7:105","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"}},"src":"29985:16:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":34993,"nodeType":"IfStatement","src":"29981:66:105","trueBody":{"id":34992,"nodeType":"Block","src":"30003:44:105","statements":[{"expression":{"id":34990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":34988,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34878,"src":"30021:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":34989,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30031:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"30021:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":34991,"nodeType":"ExpressionStatement","src":"30021:11:105"}]}}]},{"expression":{"id":34995,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":34878,"src":"30073:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":34876,"id":34996,"nodeType":"Return","src":"30066:13:105"}]},"documentation":{"id":34870,"nodeType":"StructuredDocumentation","src":"29045:120:105","text":" @dev Return the log in base 10 of a positive value rounded towards zero.\n Returns 0 if given 0."},"id":34998,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"29179:5:105","nodeType":"FunctionDefinition","parameters":{"id":34873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34872,"mutability":"mutable","name":"value","nameLocation":"29193:5:105","nodeType":"VariableDeclaration","scope":34998,"src":"29185:13:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34871,"name":"uint256","nodeType":"ElementaryTypeName","src":"29185:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"29184:15:105"},"returnParameters":{"id":34876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":34875,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":34998,"src":"29223:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":34874,"name":"uint256","nodeType":"ElementaryTypeName","src":"29223:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"29222:9:105"},"scope":35187,"src":"29170:916:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35031,"nodeType":"Block","src":"30321:177:105","statements":[{"id":35030,"nodeType":"UncheckedBlock","src":"30331:161:105","statements":[{"assignments":[35010],"declarations":[{"constant":false,"id":35010,"mutability":"mutable","name":"result","nameLocation":"30363:6:105","nodeType":"VariableDeclaration","scope":35030,"src":"30355:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35009,"name":"uint256","nodeType":"ElementaryTypeName","src":"30355:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":35014,"initialValue":{"arguments":[{"id":35012,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35001,"src":"30378:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35011,"name":"log10","nodeType":"Identifier","overloadedDeclarations":[34998,35032],"referencedDeclaration":34998,"src":"30372:5:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":35013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30372:12:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"30355:29:105"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35028,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35015,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35010,"src":"30405:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":35026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":35019,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35004,"src":"30447:8:105","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":35018,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35165,"src":"30430:16:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$33557_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":35020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30430:26:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35025,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":35021,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30460:2:105","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"id":35022,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35010,"src":"30466:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30460:12:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":35024,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35001,"src":"30475:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30460:20:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"30430:50:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":35016,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"30414:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":35017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30423:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"30414:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":35027,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30414:67:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30405:76:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":35008,"id":35029,"nodeType":"Return","src":"30398:83:105"}]}]},"documentation":{"id":34999,"nodeType":"StructuredDocumentation","src":"30092:143:105","text":" @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":35032,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"30249:5:105","nodeType":"FunctionDefinition","parameters":{"id":35005,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35001,"mutability":"mutable","name":"value","nameLocation":"30263:5:105","nodeType":"VariableDeclaration","scope":35032,"src":"30255:13:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35000,"name":"uint256","nodeType":"ElementaryTypeName","src":"30255:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":35004,"mutability":"mutable","name":"rounding","nameLocation":"30279:8:105","nodeType":"VariableDeclaration","scope":35032,"src":"30270:17:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"},"typeName":{"id":35003,"nodeType":"UserDefinedTypeName","pathNode":{"id":35002,"name":"Rounding","nameLocations":["30270:8:105"],"nodeType":"IdentifierPath","referencedDeclaration":33557,"src":"30270:8:105"},"referencedDeclaration":33557,"src":"30270:8:105","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"30254:34:105"},"returnParameters":{"id":35008,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35007,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35032,"src":"30312:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35006,"name":"uint256","nodeType":"ElementaryTypeName","src":"30312:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30311:9:105"},"scope":35187,"src":"30240:258:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35108,"nodeType":"Block","src":"30816:675:105","statements":[{"expression":{"id":35049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":35040,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35038,"src":"30898:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35048,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35043,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35035,"src":"30918:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666666666666666666666666666666666666666666666666666666666666666","id":35044,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30922:34:105","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"},"value":"0xffffffffffffffffffffffffffffffff"},"src":"30918:38:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":35041,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"30902:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":35042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30911:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"30902:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":35046,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30902:55:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"37","id":35047,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30961:1:105","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"30902:60:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30898:64:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":35050,"nodeType":"ExpressionStatement","src":"30898:64:105"},{"expression":{"id":35063,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":35051,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35038,"src":"31038:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35062,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35056,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35054,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35035,"src":"31060:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":35055,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35038,"src":"31065:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31060:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":35057,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31059:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866666666666666666666666666666666","id":35058,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31070:18:105","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"},"value":"0xffffffffffffffff"},"src":"31059:29:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":35052,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"31043:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":35053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31052:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"31043:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":35060,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31043:46:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"36","id":35061,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31093:1:105","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"31043:51:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31038:56:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":35064,"nodeType":"ExpressionStatement","src":"31038:56:105"},{"expression":{"id":35077,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":35065,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35038,"src":"31169:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35068,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35035,"src":"31191:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":35069,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35038,"src":"31196:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31191:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":35071,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31190:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666666666666666","id":35072,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31201:10:105","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"value":"0xffffffff"},"src":"31190:21:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":35066,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"31174:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":35067,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31183:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"31174:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":35074,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31174:38:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"35","id":35075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31216:1:105","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"31174:43:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31169:48:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":35078,"nodeType":"ExpressionStatement","src":"31169:48:105"},{"expression":{"id":35091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":35079,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35038,"src":"31292:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35090,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35082,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35035,"src":"31314:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":35083,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35038,"src":"31319:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31314:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":35085,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31313:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866666666","id":35086,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31324:6:105","typeDescriptions":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"},"value":"0xffff"},"src":"31313:17:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":35080,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"31297:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":35081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31306:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"31297:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":35088,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31297:34:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":35089,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31335:1:105","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"31297:39:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31292:44:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":35092,"nodeType":"ExpressionStatement","src":"31292:44:105"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35106,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35093,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35038,"src":"31442:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"33","id":35094,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31447:1:105","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"31442:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":35096,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31441:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35104,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35101,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35099,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35035,"src":"31469:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":35100,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35038,"src":"31474:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31469:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":35102,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31468:8:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666","id":35103,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31479:4:105","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0xff"},"src":"31468:15:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":35097,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"31452:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":35098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31461:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"31452:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":35105,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31452:32:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31441:43:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":35039,"id":35107,"nodeType":"Return","src":"31434:50:105"}]},"documentation":{"id":35033,"nodeType":"StructuredDocumentation","src":"30504:246:105","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":35109,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"30764:6:105","nodeType":"FunctionDefinition","parameters":{"id":35036,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35035,"mutability":"mutable","name":"x","nameLocation":"30779:1:105","nodeType":"VariableDeclaration","scope":35109,"src":"30771:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35034,"name":"uint256","nodeType":"ElementaryTypeName","src":"30771:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30770:11:105"},"returnParameters":{"id":35039,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35038,"mutability":"mutable","name":"r","nameLocation":"30813:1:105","nodeType":"VariableDeclaration","scope":35109,"src":"30805:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35037,"name":"uint256","nodeType":"ElementaryTypeName","src":"30805:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30804:11:105"},"scope":35187,"src":"30755:736:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35145,"nodeType":"Block","src":"31728:184:105","statements":[{"id":35144,"nodeType":"UncheckedBlock","src":"31738:168:105","statements":[{"assignments":[35121],"declarations":[{"constant":false,"id":35121,"mutability":"mutable","name":"result","nameLocation":"31770:6:105","nodeType":"VariableDeclaration","scope":35144,"src":"31762:14:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35120,"name":"uint256","nodeType":"ElementaryTypeName","src":"31762:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":35125,"initialValue":{"arguments":[{"id":35123,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35112,"src":"31786:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35122,"name":"log256","nodeType":"Identifier","overloadedDeclarations":[35109,35146],"referencedDeclaration":35109,"src":"31779:6:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":35124,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31779:13:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"31762:30:105"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35142,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35126,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35121,"src":"31813:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":35140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":35130,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35115,"src":"31855:8:105","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":35129,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35165,"src":"31838:16:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$33557_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":35131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31838:26:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":35132,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31868:1:105","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":35135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35133,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35121,"src":"31874:6:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"33","id":35134,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31884:1:105","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"31874:11:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":35136,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31873:13:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31868:18:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":35138,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35112,"src":"31889:5:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31868:26:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"31838:56:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":35127,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"31822:8:105","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":35128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31831:6:105","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"31822:15:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":35141,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31822:73:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31813:82:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":35119,"id":35143,"nodeType":"Return","src":"31806:89:105"}]}]},"documentation":{"id":35110,"nodeType":"StructuredDocumentation","src":"31497:144:105","text":" @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":35146,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"31655:6:105","nodeType":"FunctionDefinition","parameters":{"id":35116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35112,"mutability":"mutable","name":"value","nameLocation":"31670:5:105","nodeType":"VariableDeclaration","scope":35146,"src":"31662:13:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35111,"name":"uint256","nodeType":"ElementaryTypeName","src":"31662:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":35115,"mutability":"mutable","name":"rounding","nameLocation":"31686:8:105","nodeType":"VariableDeclaration","scope":35146,"src":"31677:17:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"},"typeName":{"id":35114,"nodeType":"UserDefinedTypeName","pathNode":{"id":35113,"name":"Rounding","nameLocations":["31677:8:105"],"nodeType":"IdentifierPath","referencedDeclaration":33557,"src":"31677:8:105"},"referencedDeclaration":33557,"src":"31677:8:105","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"31661:34:105"},"returnParameters":{"id":35119,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35118,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35146,"src":"31719:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35117,"name":"uint256","nodeType":"ElementaryTypeName","src":"31719:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31718:9:105"},"scope":35187,"src":"31646:266:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35164,"nodeType":"Block","src":"32110:48:105","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":35162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":35160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":35157,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35150,"src":"32133:8:105","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"id":35156,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32127:5:105","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":35155,"name":"uint8","nodeType":"ElementaryTypeName","src":"32127:5:105","typeDescriptions":{}}},"id":35158,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32127:15:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"32","id":35159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32145:1:105","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"32127:19:105","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":35161,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32150:1:105","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"32127:24:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":35154,"id":35163,"nodeType":"Return","src":"32120:31:105"}]},"documentation":{"id":35147,"nodeType":"StructuredDocumentation","src":"31918:113:105","text":" @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers."},"id":35165,"implemented":true,"kind":"function","modifiers":[],"name":"unsignedRoundsUp","nameLocation":"32045:16:105","nodeType":"FunctionDefinition","parameters":{"id":35151,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35150,"mutability":"mutable","name":"rounding","nameLocation":"32071:8:105","nodeType":"VariableDeclaration","scope":35165,"src":"32062:17:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"},"typeName":{"id":35149,"nodeType":"UserDefinedTypeName","pathNode":{"id":35148,"name":"Rounding","nameLocations":["32062:8:105"],"nodeType":"IdentifierPath","referencedDeclaration":33557,"src":"32062:8:105"},"referencedDeclaration":33557,"src":"32062:8:105","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"32061:19:105"},"returnParameters":{"id":35154,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35153,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35165,"src":"32104:4:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":35152,"name":"bool","nodeType":"ElementaryTypeName","src":"32104:4:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"32103:6:105"},"scope":35187,"src":"32036:122:105","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35185,"nodeType":"Block","src":"32301:59:105","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35176,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35174,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35168,"src":"32326:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":35175,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32331:1:105","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"32326:6:105","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"323536","id":35177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32334:3:105","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"value":"256"},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"323535","id":35178,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32339:3:105","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":35180,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35168,"src":"32350:1:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35179,"name":"log2","nodeType":"Identifier","overloadedDeclarations":[34835,34869],"referencedDeclaration":34835,"src":"32345:4:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":35181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32345:7:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32339:13:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35173,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33834,"src":"32318:7:105","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":35183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32318:35:105","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":35172,"id":35184,"nodeType":"Return","src":"32311:42:105"}]},"documentation":{"id":35166,"nodeType":"StructuredDocumentation","src":"32164:76:105","text":" @dev Counts the number of leading zero bits in a uint256."},"id":35186,"implemented":true,"kind":"function","modifiers":[],"name":"clz","nameLocation":"32254:3:105","nodeType":"FunctionDefinition","parameters":{"id":35169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35168,"mutability":"mutable","name":"x","nameLocation":"32266:1:105","nodeType":"VariableDeclaration","scope":35186,"src":"32258:9:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35167,"name":"uint256","nodeType":"ElementaryTypeName","src":"32258:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"32257:11:105"},"returnParameters":{"id":35172,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35171,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35186,"src":"32292:7:105","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35170,"name":"uint256","nodeType":"ElementaryTypeName","src":"32292:7:105","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"32291:9:105"},"scope":35187,"src":"32245:115:105","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":35188,"src":"281:32081:105","usedErrors":[],"usedEvents":[]}],"src":"103:32260:105"},"id":105},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","exportedSymbols":{"SafeCast":[36952]},"id":36953,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":35189,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"192:24:106"},{"abstract":false,"baseContracts":[],"canonicalName":"SafeCast","contractDependencies":[],"contractKind":"library","documentation":{"id":35190,"nodeType":"StructuredDocumentation","src":"218:550:106","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":36952,"linearizedBaseContracts":[36952],"name":"SafeCast","nameLocation":"777:8:106","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":35191,"nodeType":"StructuredDocumentation","src":"792:68:106","text":" @dev Value doesn't fit in an uint of `bits` size."},"errorSelector":"6dfcc650","id":35197,"name":"SafeCastOverflowedUintDowncast","nameLocation":"871:30:106","nodeType":"ErrorDefinition","parameters":{"id":35196,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35193,"mutability":"mutable","name":"bits","nameLocation":"908:4:106","nodeType":"VariableDeclaration","scope":35197,"src":"902:10:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":35192,"name":"uint8","nodeType":"ElementaryTypeName","src":"902:5:106","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":35195,"mutability":"mutable","name":"value","nameLocation":"922:5:106","nodeType":"VariableDeclaration","scope":35197,"src":"914:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35194,"name":"uint256","nodeType":"ElementaryTypeName","src":"914:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"901:27:106"},"src":"865:64:106"},{"documentation":{"id":35198,"nodeType":"StructuredDocumentation","src":"935:75:106","text":" @dev An int value doesn't fit in an uint of `bits` size."},"errorSelector":"a8ce4432","id":35202,"name":"SafeCastOverflowedIntToUint","nameLocation":"1021:27:106","nodeType":"ErrorDefinition","parameters":{"id":35201,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35200,"mutability":"mutable","name":"value","nameLocation":"1056:5:106","nodeType":"VariableDeclaration","scope":35202,"src":"1049:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":35199,"name":"int256","nodeType":"ElementaryTypeName","src":"1049:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1048:14:106"},"src":"1015:48:106"},{"documentation":{"id":35203,"nodeType":"StructuredDocumentation","src":"1069:67:106","text":" @dev Value doesn't fit in an int of `bits` size."},"errorSelector":"327269a7","id":35209,"name":"SafeCastOverflowedIntDowncast","nameLocation":"1147:29:106","nodeType":"ErrorDefinition","parameters":{"id":35208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35205,"mutability":"mutable","name":"bits","nameLocation":"1183:4:106","nodeType":"VariableDeclaration","scope":35209,"src":"1177:10:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":35204,"name":"uint8","nodeType":"ElementaryTypeName","src":"1177:5:106","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":35207,"mutability":"mutable","name":"value","nameLocation":"1196:5:106","nodeType":"VariableDeclaration","scope":35209,"src":"1189:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":35206,"name":"int256","nodeType":"ElementaryTypeName","src":"1189:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1176:26:106"},"src":"1141:62:106"},{"documentation":{"id":35210,"nodeType":"StructuredDocumentation","src":"1209:75:106","text":" @dev An uint value doesn't fit in an int of `bits` size."},"errorSelector":"24775e06","id":35214,"name":"SafeCastOverflowedUintToInt","nameLocation":"1295:27:106","nodeType":"ErrorDefinition","parameters":{"id":35213,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35212,"mutability":"mutable","name":"value","nameLocation":"1331:5:106","nodeType":"VariableDeclaration","scope":35214,"src":"1323:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35211,"name":"uint256","nodeType":"ElementaryTypeName","src":"1323:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1322:15:106"},"src":"1289:49:106"},{"body":{"id":35241,"nodeType":"Block","src":"1695:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35228,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35222,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35217,"src":"1709:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35225,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1722:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":35224,"name":"uint248","nodeType":"ElementaryTypeName","src":"1722:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"}],"id":35223,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1717:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35226,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1717:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint248","typeString":"type(uint248)"}},"id":35227,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1731:3:106","memberName":"max","nodeType":"MemberAccess","src":"1717:17:106","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"src":"1709:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35235,"nodeType":"IfStatement","src":"1705:105:106","trueBody":{"id":35234,"nodeType":"Block","src":"1736:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"323438","id":35230,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1788:3:106","typeDescriptions":{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},"value":"248"},{"id":35231,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35217,"src":"1793:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35229,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"1757:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1757:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35233,"nodeType":"RevertStatement","src":"1750:49:106"}]}},{"expression":{"arguments":[{"id":35238,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35217,"src":"1834:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35237,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1826:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":35236,"name":"uint248","nodeType":"ElementaryTypeName","src":"1826:7:106","typeDescriptions":{}}},"id":35239,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1826:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"functionReturnParameters":35221,"id":35240,"nodeType":"Return","src":"1819:21:106"}]},"documentation":{"id":35215,"nodeType":"StructuredDocumentation","src":"1344:280:106","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":35242,"implemented":true,"kind":"function","modifiers":[],"name":"toUint248","nameLocation":"1638:9:106","nodeType":"FunctionDefinition","parameters":{"id":35218,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35217,"mutability":"mutable","name":"value","nameLocation":"1656:5:106","nodeType":"VariableDeclaration","scope":35242,"src":"1648:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35216,"name":"uint256","nodeType":"ElementaryTypeName","src":"1648:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1647:15:106"},"returnParameters":{"id":35221,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35220,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35242,"src":"1686:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"},"typeName":{"id":35219,"name":"uint248","nodeType":"ElementaryTypeName","src":"1686:7:106","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"visibility":"internal"}],"src":"1685:9:106"},"scope":36952,"src":"1629:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35269,"nodeType":"Block","src":"2204:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35250,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35245,"src":"2218:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35253,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2231:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":35252,"name":"uint240","nodeType":"ElementaryTypeName","src":"2231:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"}],"id":35251,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2226:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2226:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint240","typeString":"type(uint240)"}},"id":35255,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2240:3:106","memberName":"max","nodeType":"MemberAccess","src":"2226:17:106","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"src":"2218:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35263,"nodeType":"IfStatement","src":"2214:105:106","trueBody":{"id":35262,"nodeType":"Block","src":"2245:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"323430","id":35258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2297:3:106","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"240"},{"id":35259,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35245,"src":"2302:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35257,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"2266:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35260,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2266:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35261,"nodeType":"RevertStatement","src":"2259:49:106"}]}},{"expression":{"arguments":[{"id":35266,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35245,"src":"2343:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35265,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2335:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":35264,"name":"uint240","nodeType":"ElementaryTypeName","src":"2335:7:106","typeDescriptions":{}}},"id":35267,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2335:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"functionReturnParameters":35249,"id":35268,"nodeType":"Return","src":"2328:21:106"}]},"documentation":{"id":35243,"nodeType":"StructuredDocumentation","src":"1853:280:106","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":35270,"implemented":true,"kind":"function","modifiers":[],"name":"toUint240","nameLocation":"2147:9:106","nodeType":"FunctionDefinition","parameters":{"id":35246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35245,"mutability":"mutable","name":"value","nameLocation":"2165:5:106","nodeType":"VariableDeclaration","scope":35270,"src":"2157:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35244,"name":"uint256","nodeType":"ElementaryTypeName","src":"2157:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2156:15:106"},"returnParameters":{"id":35249,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35248,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35270,"src":"2195:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"},"typeName":{"id":35247,"name":"uint240","nodeType":"ElementaryTypeName","src":"2195:7:106","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"visibility":"internal"}],"src":"2194:9:106"},"scope":36952,"src":"2138:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35297,"nodeType":"Block","src":"2713:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35278,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35273,"src":"2727:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35281,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2740:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":35280,"name":"uint232","nodeType":"ElementaryTypeName","src":"2740:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"}],"id":35279,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2735:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2735:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint232","typeString":"type(uint232)"}},"id":35283,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2749:3:106","memberName":"max","nodeType":"MemberAccess","src":"2735:17:106","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"src":"2727:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35291,"nodeType":"IfStatement","src":"2723:105:106","trueBody":{"id":35290,"nodeType":"Block","src":"2754:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"323332","id":35286,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2806:3:106","typeDescriptions":{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},"value":"232"},{"id":35287,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35273,"src":"2811:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35285,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"2775:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2775:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35289,"nodeType":"RevertStatement","src":"2768:49:106"}]}},{"expression":{"arguments":[{"id":35294,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35273,"src":"2852:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35293,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2844:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":35292,"name":"uint232","nodeType":"ElementaryTypeName","src":"2844:7:106","typeDescriptions":{}}},"id":35295,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2844:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"functionReturnParameters":35277,"id":35296,"nodeType":"Return","src":"2837:21:106"}]},"documentation":{"id":35271,"nodeType":"StructuredDocumentation","src":"2362:280:106","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":35298,"implemented":true,"kind":"function","modifiers":[],"name":"toUint232","nameLocation":"2656:9:106","nodeType":"FunctionDefinition","parameters":{"id":35274,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35273,"mutability":"mutable","name":"value","nameLocation":"2674:5:106","nodeType":"VariableDeclaration","scope":35298,"src":"2666:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35272,"name":"uint256","nodeType":"ElementaryTypeName","src":"2666:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2665:15:106"},"returnParameters":{"id":35277,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35276,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35298,"src":"2704:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"},"typeName":{"id":35275,"name":"uint232","nodeType":"ElementaryTypeName","src":"2704:7:106","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"visibility":"internal"}],"src":"2703:9:106"},"scope":36952,"src":"2647:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35325,"nodeType":"Block","src":"3222:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35312,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35306,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35301,"src":"3236:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35309,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3249:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":35308,"name":"uint224","nodeType":"ElementaryTypeName","src":"3249:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"}],"id":35307,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3244:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35310,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3244:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint224","typeString":"type(uint224)"}},"id":35311,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3258:3:106","memberName":"max","nodeType":"MemberAccess","src":"3244:17:106","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"src":"3236:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35319,"nodeType":"IfStatement","src":"3232:105:106","trueBody":{"id":35318,"nodeType":"Block","src":"3263:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"323234","id":35314,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3315:3:106","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},{"id":35315,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35301,"src":"3320:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35313,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"3284:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35316,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3284:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35317,"nodeType":"RevertStatement","src":"3277:49:106"}]}},{"expression":{"arguments":[{"id":35322,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35301,"src":"3361:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35321,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3353:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":35320,"name":"uint224","nodeType":"ElementaryTypeName","src":"3353:7:106","typeDescriptions":{}}},"id":35323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3353:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":35305,"id":35324,"nodeType":"Return","src":"3346:21:106"}]},"documentation":{"id":35299,"nodeType":"StructuredDocumentation","src":"2871:280:106","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":35326,"implemented":true,"kind":"function","modifiers":[],"name":"toUint224","nameLocation":"3165:9:106","nodeType":"FunctionDefinition","parameters":{"id":35302,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35301,"mutability":"mutable","name":"value","nameLocation":"3183:5:106","nodeType":"VariableDeclaration","scope":35326,"src":"3175:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35300,"name":"uint256","nodeType":"ElementaryTypeName","src":"3175:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3174:15:106"},"returnParameters":{"id":35305,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35304,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35326,"src":"3213:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":35303,"name":"uint224","nodeType":"ElementaryTypeName","src":"3213:7:106","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"3212:9:106"},"scope":36952,"src":"3156:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35353,"nodeType":"Block","src":"3731:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35334,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35329,"src":"3745:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35337,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3758:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":35336,"name":"uint216","nodeType":"ElementaryTypeName","src":"3758:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"}],"id":35335,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3753:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35338,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3753:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint216","typeString":"type(uint216)"}},"id":35339,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3767:3:106","memberName":"max","nodeType":"MemberAccess","src":"3753:17:106","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"src":"3745:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35347,"nodeType":"IfStatement","src":"3741:105:106","trueBody":{"id":35346,"nodeType":"Block","src":"3772:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"323136","id":35342,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3824:3:106","typeDescriptions":{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},"value":"216"},{"id":35343,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35329,"src":"3829:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35341,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"3793:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35344,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3793:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35345,"nodeType":"RevertStatement","src":"3786:49:106"}]}},{"expression":{"arguments":[{"id":35350,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35329,"src":"3870:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35349,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3862:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":35348,"name":"uint216","nodeType":"ElementaryTypeName","src":"3862:7:106","typeDescriptions":{}}},"id":35351,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3862:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"functionReturnParameters":35333,"id":35352,"nodeType":"Return","src":"3855:21:106"}]},"documentation":{"id":35327,"nodeType":"StructuredDocumentation","src":"3380:280:106","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":35354,"implemented":true,"kind":"function","modifiers":[],"name":"toUint216","nameLocation":"3674:9:106","nodeType":"FunctionDefinition","parameters":{"id":35330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35329,"mutability":"mutable","name":"value","nameLocation":"3692:5:106","nodeType":"VariableDeclaration","scope":35354,"src":"3684:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35328,"name":"uint256","nodeType":"ElementaryTypeName","src":"3684:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3683:15:106"},"returnParameters":{"id":35333,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35332,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35354,"src":"3722:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":35331,"name":"uint216","nodeType":"ElementaryTypeName","src":"3722:7:106","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"3721:9:106"},"scope":36952,"src":"3665:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35381,"nodeType":"Block","src":"4240:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35362,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35357,"src":"4254:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35365,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4267:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":35364,"name":"uint208","nodeType":"ElementaryTypeName","src":"4267:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"}],"id":35363,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4262:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35366,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4262:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint208","typeString":"type(uint208)"}},"id":35367,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4276:3:106","memberName":"max","nodeType":"MemberAccess","src":"4262:17:106","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"4254:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35375,"nodeType":"IfStatement","src":"4250:105:106","trueBody":{"id":35374,"nodeType":"Block","src":"4281:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"323038","id":35370,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4333:3:106","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"value":"208"},{"id":35371,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35357,"src":"4338:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35369,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"4302:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35372,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4302:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35373,"nodeType":"RevertStatement","src":"4295:49:106"}]}},{"expression":{"arguments":[{"id":35378,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35357,"src":"4379:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35377,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4371:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":35376,"name":"uint208","nodeType":"ElementaryTypeName","src":"4371:7:106","typeDescriptions":{}}},"id":35379,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4371:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":35361,"id":35380,"nodeType":"Return","src":"4364:21:106"}]},"documentation":{"id":35355,"nodeType":"StructuredDocumentation","src":"3889:280:106","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":35382,"implemented":true,"kind":"function","modifiers":[],"name":"toUint208","nameLocation":"4183:9:106","nodeType":"FunctionDefinition","parameters":{"id":35358,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35357,"mutability":"mutable","name":"value","nameLocation":"4201:5:106","nodeType":"VariableDeclaration","scope":35382,"src":"4193:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35356,"name":"uint256","nodeType":"ElementaryTypeName","src":"4193:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4192:15:106"},"returnParameters":{"id":35361,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35360,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35382,"src":"4231:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":35359,"name":"uint208","nodeType":"ElementaryTypeName","src":"4231:7:106","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"4230:9:106"},"scope":36952,"src":"4174:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35409,"nodeType":"Block","src":"4749:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35396,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35390,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35385,"src":"4763:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35393,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4776:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":35392,"name":"uint200","nodeType":"ElementaryTypeName","src":"4776:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"}],"id":35391,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4771:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35394,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4771:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint200","typeString":"type(uint200)"}},"id":35395,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4785:3:106","memberName":"max","nodeType":"MemberAccess","src":"4771:17:106","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"src":"4763:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35403,"nodeType":"IfStatement","src":"4759:105:106","trueBody":{"id":35402,"nodeType":"Block","src":"4790:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"323030","id":35398,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4842:3:106","typeDescriptions":{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},"value":"200"},{"id":35399,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35385,"src":"4847:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35397,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"4811:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4811:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35401,"nodeType":"RevertStatement","src":"4804:49:106"}]}},{"expression":{"arguments":[{"id":35406,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35385,"src":"4888:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35405,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4880:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":35404,"name":"uint200","nodeType":"ElementaryTypeName","src":"4880:7:106","typeDescriptions":{}}},"id":35407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4880:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"functionReturnParameters":35389,"id":35408,"nodeType":"Return","src":"4873:21:106"}]},"documentation":{"id":35383,"nodeType":"StructuredDocumentation","src":"4398:280:106","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":35410,"implemented":true,"kind":"function","modifiers":[],"name":"toUint200","nameLocation":"4692:9:106","nodeType":"FunctionDefinition","parameters":{"id":35386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35385,"mutability":"mutable","name":"value","nameLocation":"4710:5:106","nodeType":"VariableDeclaration","scope":35410,"src":"4702:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35384,"name":"uint256","nodeType":"ElementaryTypeName","src":"4702:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4701:15:106"},"returnParameters":{"id":35389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35388,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35410,"src":"4740:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"},"typeName":{"id":35387,"name":"uint200","nodeType":"ElementaryTypeName","src":"4740:7:106","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"visibility":"internal"}],"src":"4739:9:106"},"scope":36952,"src":"4683:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35437,"nodeType":"Block","src":"5258:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35424,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35418,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35413,"src":"5272:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35421,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5285:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":35420,"name":"uint192","nodeType":"ElementaryTypeName","src":"5285:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"}],"id":35419,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5280:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35422,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5280:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint192","typeString":"type(uint192)"}},"id":35423,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5294:3:106","memberName":"max","nodeType":"MemberAccess","src":"5280:17:106","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"src":"5272:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35431,"nodeType":"IfStatement","src":"5268:105:106","trueBody":{"id":35430,"nodeType":"Block","src":"5299:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313932","id":35426,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5351:3:106","typeDescriptions":{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},"value":"192"},{"id":35427,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35413,"src":"5356:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35425,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"5320:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5320:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35429,"nodeType":"RevertStatement","src":"5313:49:106"}]}},{"expression":{"arguments":[{"id":35434,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35413,"src":"5397:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35433,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5389:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":35432,"name":"uint192","nodeType":"ElementaryTypeName","src":"5389:7:106","typeDescriptions":{}}},"id":35435,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5389:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"functionReturnParameters":35417,"id":35436,"nodeType":"Return","src":"5382:21:106"}]},"documentation":{"id":35411,"nodeType":"StructuredDocumentation","src":"4907:280:106","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":35438,"implemented":true,"kind":"function","modifiers":[],"name":"toUint192","nameLocation":"5201:9:106","nodeType":"FunctionDefinition","parameters":{"id":35414,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35413,"mutability":"mutable","name":"value","nameLocation":"5219:5:106","nodeType":"VariableDeclaration","scope":35438,"src":"5211:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35412,"name":"uint256","nodeType":"ElementaryTypeName","src":"5211:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5210:15:106"},"returnParameters":{"id":35417,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35416,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35438,"src":"5249:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":35415,"name":"uint192","nodeType":"ElementaryTypeName","src":"5249:7:106","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"5248:9:106"},"scope":36952,"src":"5192:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35465,"nodeType":"Block","src":"5767:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35446,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35441,"src":"5781:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35449,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5794:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":35448,"name":"uint184","nodeType":"ElementaryTypeName","src":"5794:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"}],"id":35447,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5789:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35450,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5789:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint184","typeString":"type(uint184)"}},"id":35451,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5803:3:106","memberName":"max","nodeType":"MemberAccess","src":"5789:17:106","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"src":"5781:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35459,"nodeType":"IfStatement","src":"5777:105:106","trueBody":{"id":35458,"nodeType":"Block","src":"5808:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313834","id":35454,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5860:3:106","typeDescriptions":{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},"value":"184"},{"id":35455,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35441,"src":"5865:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35453,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"5829:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35456,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5829:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35457,"nodeType":"RevertStatement","src":"5822:49:106"}]}},{"expression":{"arguments":[{"id":35462,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35441,"src":"5906:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35461,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5898:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":35460,"name":"uint184","nodeType":"ElementaryTypeName","src":"5898:7:106","typeDescriptions":{}}},"id":35463,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5898:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"functionReturnParameters":35445,"id":35464,"nodeType":"Return","src":"5891:21:106"}]},"documentation":{"id":35439,"nodeType":"StructuredDocumentation","src":"5416:280:106","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":35466,"implemented":true,"kind":"function","modifiers":[],"name":"toUint184","nameLocation":"5710:9:106","nodeType":"FunctionDefinition","parameters":{"id":35442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35441,"mutability":"mutable","name":"value","nameLocation":"5728:5:106","nodeType":"VariableDeclaration","scope":35466,"src":"5720:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35440,"name":"uint256","nodeType":"ElementaryTypeName","src":"5720:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5719:15:106"},"returnParameters":{"id":35445,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35444,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35466,"src":"5758:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"},"typeName":{"id":35443,"name":"uint184","nodeType":"ElementaryTypeName","src":"5758:7:106","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"visibility":"internal"}],"src":"5757:9:106"},"scope":36952,"src":"5701:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35493,"nodeType":"Block","src":"6276:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35480,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35474,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35469,"src":"6290:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35477,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6303:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":35476,"name":"uint176","nodeType":"ElementaryTypeName","src":"6303:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"}],"id":35475,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6298:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35478,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6298:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint176","typeString":"type(uint176)"}},"id":35479,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6312:3:106","memberName":"max","nodeType":"MemberAccess","src":"6298:17:106","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"src":"6290:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35487,"nodeType":"IfStatement","src":"6286:105:106","trueBody":{"id":35486,"nodeType":"Block","src":"6317:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313736","id":35482,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6369:3:106","typeDescriptions":{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},"value":"176"},{"id":35483,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35469,"src":"6374:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35481,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"6338:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6338:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35485,"nodeType":"RevertStatement","src":"6331:49:106"}]}},{"expression":{"arguments":[{"id":35490,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35469,"src":"6415:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35489,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6407:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":35488,"name":"uint176","nodeType":"ElementaryTypeName","src":"6407:7:106","typeDescriptions":{}}},"id":35491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6407:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"functionReturnParameters":35473,"id":35492,"nodeType":"Return","src":"6400:21:106"}]},"documentation":{"id":35467,"nodeType":"StructuredDocumentation","src":"5925:280:106","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":35494,"implemented":true,"kind":"function","modifiers":[],"name":"toUint176","nameLocation":"6219:9:106","nodeType":"FunctionDefinition","parameters":{"id":35470,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35469,"mutability":"mutable","name":"value","nameLocation":"6237:5:106","nodeType":"VariableDeclaration","scope":35494,"src":"6229:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35468,"name":"uint256","nodeType":"ElementaryTypeName","src":"6229:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6228:15:106"},"returnParameters":{"id":35473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35472,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35494,"src":"6267:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"},"typeName":{"id":35471,"name":"uint176","nodeType":"ElementaryTypeName","src":"6267:7:106","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"visibility":"internal"}],"src":"6266:9:106"},"scope":36952,"src":"6210:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35521,"nodeType":"Block","src":"6785:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35508,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35502,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35497,"src":"6799:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35505,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6812:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":35504,"name":"uint168","nodeType":"ElementaryTypeName","src":"6812:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"}],"id":35503,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6807:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35506,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6807:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint168","typeString":"type(uint168)"}},"id":35507,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6821:3:106","memberName":"max","nodeType":"MemberAccess","src":"6807:17:106","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"src":"6799:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35515,"nodeType":"IfStatement","src":"6795:105:106","trueBody":{"id":35514,"nodeType":"Block","src":"6826:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313638","id":35510,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6878:3:106","typeDescriptions":{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},"value":"168"},{"id":35511,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35497,"src":"6883:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35509,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"6847:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35512,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6847:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35513,"nodeType":"RevertStatement","src":"6840:49:106"}]}},{"expression":{"arguments":[{"id":35518,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35497,"src":"6924:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35517,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6916:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":35516,"name":"uint168","nodeType":"ElementaryTypeName","src":"6916:7:106","typeDescriptions":{}}},"id":35519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6916:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"functionReturnParameters":35501,"id":35520,"nodeType":"Return","src":"6909:21:106"}]},"documentation":{"id":35495,"nodeType":"StructuredDocumentation","src":"6434:280:106","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":35522,"implemented":true,"kind":"function","modifiers":[],"name":"toUint168","nameLocation":"6728:9:106","nodeType":"FunctionDefinition","parameters":{"id":35498,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35497,"mutability":"mutable","name":"value","nameLocation":"6746:5:106","nodeType":"VariableDeclaration","scope":35522,"src":"6738:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35496,"name":"uint256","nodeType":"ElementaryTypeName","src":"6738:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6737:15:106"},"returnParameters":{"id":35501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35500,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35522,"src":"6776:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"},"typeName":{"id":35499,"name":"uint168","nodeType":"ElementaryTypeName","src":"6776:7:106","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"visibility":"internal"}],"src":"6775:9:106"},"scope":36952,"src":"6719:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35549,"nodeType":"Block","src":"7294:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35530,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35525,"src":"7308:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35533,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7321:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":35532,"name":"uint160","nodeType":"ElementaryTypeName","src":"7321:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"}],"id":35531,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7316:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35534,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7316:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint160","typeString":"type(uint160)"}},"id":35535,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7330:3:106","memberName":"max","nodeType":"MemberAccess","src":"7316:17:106","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"src":"7308:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35543,"nodeType":"IfStatement","src":"7304:105:106","trueBody":{"id":35542,"nodeType":"Block","src":"7335:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313630","id":35538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7387:3:106","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},{"id":35539,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35525,"src":"7392:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35537,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"7356:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7356:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35541,"nodeType":"RevertStatement","src":"7349:49:106"}]}},{"expression":{"arguments":[{"id":35546,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35525,"src":"7433:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35545,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7425:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":35544,"name":"uint160","nodeType":"ElementaryTypeName","src":"7425:7:106","typeDescriptions":{}}},"id":35547,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7425:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":35529,"id":35548,"nodeType":"Return","src":"7418:21:106"}]},"documentation":{"id":35523,"nodeType":"StructuredDocumentation","src":"6943:280:106","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":35550,"implemented":true,"kind":"function","modifiers":[],"name":"toUint160","nameLocation":"7237:9:106","nodeType":"FunctionDefinition","parameters":{"id":35526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35525,"mutability":"mutable","name":"value","nameLocation":"7255:5:106","nodeType":"VariableDeclaration","scope":35550,"src":"7247:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35524,"name":"uint256","nodeType":"ElementaryTypeName","src":"7247:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7246:15:106"},"returnParameters":{"id":35529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35528,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35550,"src":"7285:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":35527,"name":"uint160","nodeType":"ElementaryTypeName","src":"7285:7:106","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"7284:9:106"},"scope":36952,"src":"7228:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35577,"nodeType":"Block","src":"7803:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35558,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35553,"src":"7817:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35561,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7830:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":35560,"name":"uint152","nodeType":"ElementaryTypeName","src":"7830:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"}],"id":35559,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7825:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35562,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7825:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint152","typeString":"type(uint152)"}},"id":35563,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7839:3:106","memberName":"max","nodeType":"MemberAccess","src":"7825:17:106","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"src":"7817:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35571,"nodeType":"IfStatement","src":"7813:105:106","trueBody":{"id":35570,"nodeType":"Block","src":"7844:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313532","id":35566,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7896:3:106","typeDescriptions":{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},"value":"152"},{"id":35567,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35553,"src":"7901:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35565,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"7865:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35568,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7865:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35569,"nodeType":"RevertStatement","src":"7858:49:106"}]}},{"expression":{"arguments":[{"id":35574,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35553,"src":"7942:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35573,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7934:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":35572,"name":"uint152","nodeType":"ElementaryTypeName","src":"7934:7:106","typeDescriptions":{}}},"id":35575,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7934:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"functionReturnParameters":35557,"id":35576,"nodeType":"Return","src":"7927:21:106"}]},"documentation":{"id":35551,"nodeType":"StructuredDocumentation","src":"7452:280:106","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":35578,"implemented":true,"kind":"function","modifiers":[],"name":"toUint152","nameLocation":"7746:9:106","nodeType":"FunctionDefinition","parameters":{"id":35554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35553,"mutability":"mutable","name":"value","nameLocation":"7764:5:106","nodeType":"VariableDeclaration","scope":35578,"src":"7756:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35552,"name":"uint256","nodeType":"ElementaryTypeName","src":"7756:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7755:15:106"},"returnParameters":{"id":35557,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35556,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35578,"src":"7794:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"},"typeName":{"id":35555,"name":"uint152","nodeType":"ElementaryTypeName","src":"7794:7:106","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"visibility":"internal"}],"src":"7793:9:106"},"scope":36952,"src":"7737:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35605,"nodeType":"Block","src":"8312:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35586,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35581,"src":"8326:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35589,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8339:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":35588,"name":"uint144","nodeType":"ElementaryTypeName","src":"8339:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"}],"id":35587,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8334:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35590,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8334:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint144","typeString":"type(uint144)"}},"id":35591,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8348:3:106","memberName":"max","nodeType":"MemberAccess","src":"8334:17:106","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"src":"8326:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35599,"nodeType":"IfStatement","src":"8322:105:106","trueBody":{"id":35598,"nodeType":"Block","src":"8353:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313434","id":35594,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8405:3:106","typeDescriptions":{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},"value":"144"},{"id":35595,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35581,"src":"8410:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35593,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"8374:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8374:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35597,"nodeType":"RevertStatement","src":"8367:49:106"}]}},{"expression":{"arguments":[{"id":35602,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35581,"src":"8451:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35601,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8443:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":35600,"name":"uint144","nodeType":"ElementaryTypeName","src":"8443:7:106","typeDescriptions":{}}},"id":35603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8443:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"functionReturnParameters":35585,"id":35604,"nodeType":"Return","src":"8436:21:106"}]},"documentation":{"id":35579,"nodeType":"StructuredDocumentation","src":"7961:280:106","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":35606,"implemented":true,"kind":"function","modifiers":[],"name":"toUint144","nameLocation":"8255:9:106","nodeType":"FunctionDefinition","parameters":{"id":35582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35581,"mutability":"mutable","name":"value","nameLocation":"8273:5:106","nodeType":"VariableDeclaration","scope":35606,"src":"8265:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35580,"name":"uint256","nodeType":"ElementaryTypeName","src":"8265:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8264:15:106"},"returnParameters":{"id":35585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35584,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35606,"src":"8303:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"},"typeName":{"id":35583,"name":"uint144","nodeType":"ElementaryTypeName","src":"8303:7:106","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"visibility":"internal"}],"src":"8302:9:106"},"scope":36952,"src":"8246:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35633,"nodeType":"Block","src":"8821:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35620,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35614,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35609,"src":"8835:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35617,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8848:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":35616,"name":"uint136","nodeType":"ElementaryTypeName","src":"8848:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"}],"id":35615,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8843:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35618,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8843:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint136","typeString":"type(uint136)"}},"id":35619,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8857:3:106","memberName":"max","nodeType":"MemberAccess","src":"8843:17:106","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"src":"8835:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35627,"nodeType":"IfStatement","src":"8831:105:106","trueBody":{"id":35626,"nodeType":"Block","src":"8862:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313336","id":35622,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8914:3:106","typeDescriptions":{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},"value":"136"},{"id":35623,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35609,"src":"8919:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35621,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"8883:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35624,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8883:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35625,"nodeType":"RevertStatement","src":"8876:49:106"}]}},{"expression":{"arguments":[{"id":35630,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35609,"src":"8960:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35629,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8952:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":35628,"name":"uint136","nodeType":"ElementaryTypeName","src":"8952:7:106","typeDescriptions":{}}},"id":35631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8952:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"functionReturnParameters":35613,"id":35632,"nodeType":"Return","src":"8945:21:106"}]},"documentation":{"id":35607,"nodeType":"StructuredDocumentation","src":"8470:280:106","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":35634,"implemented":true,"kind":"function","modifiers":[],"name":"toUint136","nameLocation":"8764:9:106","nodeType":"FunctionDefinition","parameters":{"id":35610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35609,"mutability":"mutable","name":"value","nameLocation":"8782:5:106","nodeType":"VariableDeclaration","scope":35634,"src":"8774:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35608,"name":"uint256","nodeType":"ElementaryTypeName","src":"8774:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8773:15:106"},"returnParameters":{"id":35613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35612,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35634,"src":"8812:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"},"typeName":{"id":35611,"name":"uint136","nodeType":"ElementaryTypeName","src":"8812:7:106","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"visibility":"internal"}],"src":"8811:9:106"},"scope":36952,"src":"8755:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35661,"nodeType":"Block","src":"9330:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35648,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35642,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35637,"src":"9344:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35645,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9357:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":35644,"name":"uint128","nodeType":"ElementaryTypeName","src":"9357:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"}],"id":35643,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9352:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35646,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9352:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint128","typeString":"type(uint128)"}},"id":35647,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9366:3:106","memberName":"max","nodeType":"MemberAccess","src":"9352:17:106","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"9344:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35655,"nodeType":"IfStatement","src":"9340:105:106","trueBody":{"id":35654,"nodeType":"Block","src":"9371:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313238","id":35650,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9423:3:106","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},{"id":35651,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35637,"src":"9428:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35649,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"9392:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35652,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9392:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35653,"nodeType":"RevertStatement","src":"9385:49:106"}]}},{"expression":{"arguments":[{"id":35658,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35637,"src":"9469:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35657,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9461:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":35656,"name":"uint128","nodeType":"ElementaryTypeName","src":"9461:7:106","typeDescriptions":{}}},"id":35659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9461:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":35641,"id":35660,"nodeType":"Return","src":"9454:21:106"}]},"documentation":{"id":35635,"nodeType":"StructuredDocumentation","src":"8979:280:106","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":35662,"implemented":true,"kind":"function","modifiers":[],"name":"toUint128","nameLocation":"9273:9:106","nodeType":"FunctionDefinition","parameters":{"id":35638,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35637,"mutability":"mutable","name":"value","nameLocation":"9291:5:106","nodeType":"VariableDeclaration","scope":35662,"src":"9283:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35636,"name":"uint256","nodeType":"ElementaryTypeName","src":"9283:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9282:15:106"},"returnParameters":{"id":35641,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35640,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35662,"src":"9321:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":35639,"name":"uint128","nodeType":"ElementaryTypeName","src":"9321:7:106","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"9320:9:106"},"scope":36952,"src":"9264:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35689,"nodeType":"Block","src":"9839:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35670,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35665,"src":"9853:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35673,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9866:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":35672,"name":"uint120","nodeType":"ElementaryTypeName","src":"9866:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"}],"id":35671,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9861:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35674,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9861:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint120","typeString":"type(uint120)"}},"id":35675,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9875:3:106","memberName":"max","nodeType":"MemberAccess","src":"9861:17:106","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"src":"9853:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35683,"nodeType":"IfStatement","src":"9849:105:106","trueBody":{"id":35682,"nodeType":"Block","src":"9880:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313230","id":35678,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9932:3:106","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},{"id":35679,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35665,"src":"9937:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35677,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"9901:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9901:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35681,"nodeType":"RevertStatement","src":"9894:49:106"}]}},{"expression":{"arguments":[{"id":35686,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35665,"src":"9978:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35685,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9970:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":35684,"name":"uint120","nodeType":"ElementaryTypeName","src":"9970:7:106","typeDescriptions":{}}},"id":35687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9970:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"functionReturnParameters":35669,"id":35688,"nodeType":"Return","src":"9963:21:106"}]},"documentation":{"id":35663,"nodeType":"StructuredDocumentation","src":"9488:280:106","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":35690,"implemented":true,"kind":"function","modifiers":[],"name":"toUint120","nameLocation":"9782:9:106","nodeType":"FunctionDefinition","parameters":{"id":35666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35665,"mutability":"mutable","name":"value","nameLocation":"9800:5:106","nodeType":"VariableDeclaration","scope":35690,"src":"9792:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35664,"name":"uint256","nodeType":"ElementaryTypeName","src":"9792:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9791:15:106"},"returnParameters":{"id":35669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35668,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35690,"src":"9830:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"},"typeName":{"id":35667,"name":"uint120","nodeType":"ElementaryTypeName","src":"9830:7:106","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"visibility":"internal"}],"src":"9829:9:106"},"scope":36952,"src":"9773:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35717,"nodeType":"Block","src":"10348:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35698,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35693,"src":"10362:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35701,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10375:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":35700,"name":"uint112","nodeType":"ElementaryTypeName","src":"10375:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"}],"id":35699,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10370:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35702,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10370:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint112","typeString":"type(uint112)"}},"id":35703,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10384:3:106","memberName":"max","nodeType":"MemberAccess","src":"10370:17:106","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"10362:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35711,"nodeType":"IfStatement","src":"10358:105:106","trueBody":{"id":35710,"nodeType":"Block","src":"10389:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313132","id":35706,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10441:3:106","typeDescriptions":{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},"value":"112"},{"id":35707,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35693,"src":"10446:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35705,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"10410:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35708,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10410:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35709,"nodeType":"RevertStatement","src":"10403:49:106"}]}},{"expression":{"arguments":[{"id":35714,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35693,"src":"10487:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35713,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10479:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":35712,"name":"uint112","nodeType":"ElementaryTypeName","src":"10479:7:106","typeDescriptions":{}}},"id":35715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10479:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"functionReturnParameters":35697,"id":35716,"nodeType":"Return","src":"10472:21:106"}]},"documentation":{"id":35691,"nodeType":"StructuredDocumentation","src":"9997:280:106","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":35718,"implemented":true,"kind":"function","modifiers":[],"name":"toUint112","nameLocation":"10291:9:106","nodeType":"FunctionDefinition","parameters":{"id":35694,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35693,"mutability":"mutable","name":"value","nameLocation":"10309:5:106","nodeType":"VariableDeclaration","scope":35718,"src":"10301:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35692,"name":"uint256","nodeType":"ElementaryTypeName","src":"10301:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10300:15:106"},"returnParameters":{"id":35697,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35696,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35718,"src":"10339:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":35695,"name":"uint112","nodeType":"ElementaryTypeName","src":"10339:7:106","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"src":"10338:9:106"},"scope":36952,"src":"10282:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35745,"nodeType":"Block","src":"10857:152:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35726,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35721,"src":"10871:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35729,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10884:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":35728,"name":"uint104","nodeType":"ElementaryTypeName","src":"10884:7:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"}],"id":35727,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10879:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35730,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10879:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint104","typeString":"type(uint104)"}},"id":35731,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10893:3:106","memberName":"max","nodeType":"MemberAccess","src":"10879:17:106","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"src":"10871:25:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35739,"nodeType":"IfStatement","src":"10867:105:106","trueBody":{"id":35738,"nodeType":"Block","src":"10898:74:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313034","id":35734,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10950:3:106","typeDescriptions":{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},"value":"104"},{"id":35735,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35721,"src":"10955:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35733,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"10919:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35736,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10919:42:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35737,"nodeType":"RevertStatement","src":"10912:49:106"}]}},{"expression":{"arguments":[{"id":35742,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35721,"src":"10996:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35741,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10988:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":35740,"name":"uint104","nodeType":"ElementaryTypeName","src":"10988:7:106","typeDescriptions":{}}},"id":35743,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10988:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"functionReturnParameters":35725,"id":35744,"nodeType":"Return","src":"10981:21:106"}]},"documentation":{"id":35719,"nodeType":"StructuredDocumentation","src":"10506:280:106","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":35746,"implemented":true,"kind":"function","modifiers":[],"name":"toUint104","nameLocation":"10800:9:106","nodeType":"FunctionDefinition","parameters":{"id":35722,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35721,"mutability":"mutable","name":"value","nameLocation":"10818:5:106","nodeType":"VariableDeclaration","scope":35746,"src":"10810:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35720,"name":"uint256","nodeType":"ElementaryTypeName","src":"10810:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10809:15:106"},"returnParameters":{"id":35725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35724,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35746,"src":"10848:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"},"typeName":{"id":35723,"name":"uint104","nodeType":"ElementaryTypeName","src":"10848:7:106","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"visibility":"internal"}],"src":"10847:9:106"},"scope":36952,"src":"10791:218:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35773,"nodeType":"Block","src":"11360:149:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35754,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35749,"src":"11374:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35757,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11387:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":35756,"name":"uint96","nodeType":"ElementaryTypeName","src":"11387:6:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"}],"id":35755,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11382:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35758,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11382:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint96","typeString":"type(uint96)"}},"id":35759,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11395:3:106","memberName":"max","nodeType":"MemberAccess","src":"11382:16:106","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"11374:24:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35767,"nodeType":"IfStatement","src":"11370:103:106","trueBody":{"id":35766,"nodeType":"Block","src":"11400:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3936","id":35762,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11452:2:106","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},{"id":35763,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35749,"src":"11456:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35761,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"11421:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35764,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11421:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35765,"nodeType":"RevertStatement","src":"11414:48:106"}]}},{"expression":{"arguments":[{"id":35770,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35749,"src":"11496:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35769,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11489:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":35768,"name":"uint96","nodeType":"ElementaryTypeName","src":"11489:6:106","typeDescriptions":{}}},"id":35771,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11489:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"functionReturnParameters":35753,"id":35772,"nodeType":"Return","src":"11482:20:106"}]},"documentation":{"id":35747,"nodeType":"StructuredDocumentation","src":"11015:276:106","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":35774,"implemented":true,"kind":"function","modifiers":[],"name":"toUint96","nameLocation":"11305:8:106","nodeType":"FunctionDefinition","parameters":{"id":35750,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35749,"mutability":"mutable","name":"value","nameLocation":"11322:5:106","nodeType":"VariableDeclaration","scope":35774,"src":"11314:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35748,"name":"uint256","nodeType":"ElementaryTypeName","src":"11314:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11313:15:106"},"returnParameters":{"id":35753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35752,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35774,"src":"11352:6:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":35751,"name":"uint96","nodeType":"ElementaryTypeName","src":"11352:6:106","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"11351:8:106"},"scope":36952,"src":"11296:213:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35801,"nodeType":"Block","src":"11860:149:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35782,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35777,"src":"11874:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35785,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11887:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":35784,"name":"uint88","nodeType":"ElementaryTypeName","src":"11887:6:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"}],"id":35783,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11882:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35786,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11882:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint88","typeString":"type(uint88)"}},"id":35787,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11895:3:106","memberName":"max","nodeType":"MemberAccess","src":"11882:16:106","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"src":"11874:24:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35795,"nodeType":"IfStatement","src":"11870:103:106","trueBody":{"id":35794,"nodeType":"Block","src":"11900:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3838","id":35790,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11952:2:106","typeDescriptions":{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},"value":"88"},{"id":35791,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35777,"src":"11956:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35789,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"11921:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35792,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11921:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35793,"nodeType":"RevertStatement","src":"11914:48:106"}]}},{"expression":{"arguments":[{"id":35798,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35777,"src":"11996:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35797,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11989:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":35796,"name":"uint88","nodeType":"ElementaryTypeName","src":"11989:6:106","typeDescriptions":{}}},"id":35799,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11989:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"functionReturnParameters":35781,"id":35800,"nodeType":"Return","src":"11982:20:106"}]},"documentation":{"id":35775,"nodeType":"StructuredDocumentation","src":"11515:276:106","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":35802,"implemented":true,"kind":"function","modifiers":[],"name":"toUint88","nameLocation":"11805:8:106","nodeType":"FunctionDefinition","parameters":{"id":35778,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35777,"mutability":"mutable","name":"value","nameLocation":"11822:5:106","nodeType":"VariableDeclaration","scope":35802,"src":"11814:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35776,"name":"uint256","nodeType":"ElementaryTypeName","src":"11814:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11813:15:106"},"returnParameters":{"id":35781,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35780,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35802,"src":"11852:6:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"},"typeName":{"id":35779,"name":"uint88","nodeType":"ElementaryTypeName","src":"11852:6:106","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"visibility":"internal"}],"src":"11851:8:106"},"scope":36952,"src":"11796:213:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35829,"nodeType":"Block","src":"12360:149:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35810,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35805,"src":"12374:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35813,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12387:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":35812,"name":"uint80","nodeType":"ElementaryTypeName","src":"12387:6:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"}],"id":35811,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"12382:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12382:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint80","typeString":"type(uint80)"}},"id":35815,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12395:3:106","memberName":"max","nodeType":"MemberAccess","src":"12382:16:106","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"src":"12374:24:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35823,"nodeType":"IfStatement","src":"12370:103:106","trueBody":{"id":35822,"nodeType":"Block","src":"12400:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3830","id":35818,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12452:2:106","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},{"id":35819,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35805,"src":"12456:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35817,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"12421:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35820,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12421:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35821,"nodeType":"RevertStatement","src":"12414:48:106"}]}},{"expression":{"arguments":[{"id":35826,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35805,"src":"12496:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35825,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12489:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":35824,"name":"uint80","nodeType":"ElementaryTypeName","src":"12489:6:106","typeDescriptions":{}}},"id":35827,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12489:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"functionReturnParameters":35809,"id":35828,"nodeType":"Return","src":"12482:20:106"}]},"documentation":{"id":35803,"nodeType":"StructuredDocumentation","src":"12015:276:106","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":35830,"implemented":true,"kind":"function","modifiers":[],"name":"toUint80","nameLocation":"12305:8:106","nodeType":"FunctionDefinition","parameters":{"id":35806,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35805,"mutability":"mutable","name":"value","nameLocation":"12322:5:106","nodeType":"VariableDeclaration","scope":35830,"src":"12314:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35804,"name":"uint256","nodeType":"ElementaryTypeName","src":"12314:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12313:15:106"},"returnParameters":{"id":35809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35808,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35830,"src":"12352:6:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"},"typeName":{"id":35807,"name":"uint80","nodeType":"ElementaryTypeName","src":"12352:6:106","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"visibility":"internal"}],"src":"12351:8:106"},"scope":36952,"src":"12296:213:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35857,"nodeType":"Block","src":"12860:149:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35838,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35833,"src":"12874:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35841,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12887:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":35840,"name":"uint72","nodeType":"ElementaryTypeName","src":"12887:6:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"}],"id":35839,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"12882:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35842,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12882:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint72","typeString":"type(uint72)"}},"id":35843,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12895:3:106","memberName":"max","nodeType":"MemberAccess","src":"12882:16:106","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"src":"12874:24:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35851,"nodeType":"IfStatement","src":"12870:103:106","trueBody":{"id":35850,"nodeType":"Block","src":"12900:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3732","id":35846,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12952:2:106","typeDescriptions":{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},"value":"72"},{"id":35847,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35833,"src":"12956:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35845,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"12921:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35848,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12921:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35849,"nodeType":"RevertStatement","src":"12914:48:106"}]}},{"expression":{"arguments":[{"id":35854,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35833,"src":"12996:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35853,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12989:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":35852,"name":"uint72","nodeType":"ElementaryTypeName","src":"12989:6:106","typeDescriptions":{}}},"id":35855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12989:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"functionReturnParameters":35837,"id":35856,"nodeType":"Return","src":"12982:20:106"}]},"documentation":{"id":35831,"nodeType":"StructuredDocumentation","src":"12515:276:106","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":35858,"implemented":true,"kind":"function","modifiers":[],"name":"toUint72","nameLocation":"12805:8:106","nodeType":"FunctionDefinition","parameters":{"id":35834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35833,"mutability":"mutable","name":"value","nameLocation":"12822:5:106","nodeType":"VariableDeclaration","scope":35858,"src":"12814:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35832,"name":"uint256","nodeType":"ElementaryTypeName","src":"12814:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12813:15:106"},"returnParameters":{"id":35837,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35836,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35858,"src":"12852:6:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"},"typeName":{"id":35835,"name":"uint72","nodeType":"ElementaryTypeName","src":"12852:6:106","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"visibility":"internal"}],"src":"12851:8:106"},"scope":36952,"src":"12796:213:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35885,"nodeType":"Block","src":"13360:149:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35866,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35861,"src":"13374:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35869,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13387:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":35868,"name":"uint64","nodeType":"ElementaryTypeName","src":"13387:6:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":35867,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"13382:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35870,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13382:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":35871,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13395:3:106","memberName":"max","nodeType":"MemberAccess","src":"13382:16:106","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13374:24:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35879,"nodeType":"IfStatement","src":"13370:103:106","trueBody":{"id":35878,"nodeType":"Block","src":"13400:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3634","id":35874,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13452:2:106","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},{"id":35875,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35861,"src":"13456:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35873,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"13421:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13421:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35877,"nodeType":"RevertStatement","src":"13414:48:106"}]}},{"expression":{"arguments":[{"id":35882,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35861,"src":"13496:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35881,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13489:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":35880,"name":"uint64","nodeType":"ElementaryTypeName","src":"13489:6:106","typeDescriptions":{}}},"id":35883,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13489:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":35865,"id":35884,"nodeType":"Return","src":"13482:20:106"}]},"documentation":{"id":35859,"nodeType":"StructuredDocumentation","src":"13015:276:106","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":35886,"implemented":true,"kind":"function","modifiers":[],"name":"toUint64","nameLocation":"13305:8:106","nodeType":"FunctionDefinition","parameters":{"id":35862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35861,"mutability":"mutable","name":"value","nameLocation":"13322:5:106","nodeType":"VariableDeclaration","scope":35886,"src":"13314:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35860,"name":"uint256","nodeType":"ElementaryTypeName","src":"13314:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13313:15:106"},"returnParameters":{"id":35865,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35864,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35886,"src":"13352:6:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":35863,"name":"uint64","nodeType":"ElementaryTypeName","src":"13352:6:106","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"13351:8:106"},"scope":36952,"src":"13296:213:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35913,"nodeType":"Block","src":"13860:149:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35894,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35889,"src":"13874:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35897,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13887:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":35896,"name":"uint56","nodeType":"ElementaryTypeName","src":"13887:6:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"}],"id":35895,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"13882:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35898,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13882:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint56","typeString":"type(uint56)"}},"id":35899,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13895:3:106","memberName":"max","nodeType":"MemberAccess","src":"13882:16:106","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"src":"13874:24:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35907,"nodeType":"IfStatement","src":"13870:103:106","trueBody":{"id":35906,"nodeType":"Block","src":"13900:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3536","id":35902,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13952:2:106","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},{"id":35903,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35889,"src":"13956:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35901,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"13921:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35904,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13921:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35905,"nodeType":"RevertStatement","src":"13914:48:106"}]}},{"expression":{"arguments":[{"id":35910,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35889,"src":"13996:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35909,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13989:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":35908,"name":"uint56","nodeType":"ElementaryTypeName","src":"13989:6:106","typeDescriptions":{}}},"id":35911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13989:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"functionReturnParameters":35893,"id":35912,"nodeType":"Return","src":"13982:20:106"}]},"documentation":{"id":35887,"nodeType":"StructuredDocumentation","src":"13515:276:106","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":35914,"implemented":true,"kind":"function","modifiers":[],"name":"toUint56","nameLocation":"13805:8:106","nodeType":"FunctionDefinition","parameters":{"id":35890,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35889,"mutability":"mutable","name":"value","nameLocation":"13822:5:106","nodeType":"VariableDeclaration","scope":35914,"src":"13814:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35888,"name":"uint256","nodeType":"ElementaryTypeName","src":"13814:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13813:15:106"},"returnParameters":{"id":35893,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35892,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35914,"src":"13852:6:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"},"typeName":{"id":35891,"name":"uint56","nodeType":"ElementaryTypeName","src":"13852:6:106","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"visibility":"internal"}],"src":"13851:8:106"},"scope":36952,"src":"13796:213:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35941,"nodeType":"Block","src":"14360:149:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35922,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35917,"src":"14374:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35925,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14387:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":35924,"name":"uint48","nodeType":"ElementaryTypeName","src":"14387:6:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"}],"id":35923,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14382:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35926,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14382:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint48","typeString":"type(uint48)"}},"id":35927,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14395:3:106","memberName":"max","nodeType":"MemberAccess","src":"14382:16:106","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"14374:24:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35935,"nodeType":"IfStatement","src":"14370:103:106","trueBody":{"id":35934,"nodeType":"Block","src":"14400:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3438","id":35930,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14452:2:106","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},{"id":35931,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35917,"src":"14456:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35929,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"14421:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35932,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14421:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35933,"nodeType":"RevertStatement","src":"14414:48:106"}]}},{"expression":{"arguments":[{"id":35938,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35917,"src":"14496:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35937,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14489:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":35936,"name":"uint48","nodeType":"ElementaryTypeName","src":"14489:6:106","typeDescriptions":{}}},"id":35939,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14489:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":35921,"id":35940,"nodeType":"Return","src":"14482:20:106"}]},"documentation":{"id":35915,"nodeType":"StructuredDocumentation","src":"14015:276:106","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":35942,"implemented":true,"kind":"function","modifiers":[],"name":"toUint48","nameLocation":"14305:8:106","nodeType":"FunctionDefinition","parameters":{"id":35918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35917,"mutability":"mutable","name":"value","nameLocation":"14322:5:106","nodeType":"VariableDeclaration","scope":35942,"src":"14314:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35916,"name":"uint256","nodeType":"ElementaryTypeName","src":"14314:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14313:15:106"},"returnParameters":{"id":35921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35920,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35942,"src":"14352:6:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":35919,"name":"uint48","nodeType":"ElementaryTypeName","src":"14352:6:106","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"14351:8:106"},"scope":36952,"src":"14296:213:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35969,"nodeType":"Block","src":"14860:149:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35956,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35950,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35945,"src":"14874:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35953,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14887:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":35952,"name":"uint40","nodeType":"ElementaryTypeName","src":"14887:6:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"}],"id":35951,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14882:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35954,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14882:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint40","typeString":"type(uint40)"}},"id":35955,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14895:3:106","memberName":"max","nodeType":"MemberAccess","src":"14882:16:106","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"14874:24:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35963,"nodeType":"IfStatement","src":"14870:103:106","trueBody":{"id":35962,"nodeType":"Block","src":"14900:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3430","id":35958,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14952:2:106","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},{"id":35959,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35945,"src":"14956:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35957,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"14921:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14921:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35961,"nodeType":"RevertStatement","src":"14914:48:106"}]}},{"expression":{"arguments":[{"id":35966,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35945,"src":"14996:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35965,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14989:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":35964,"name":"uint40","nodeType":"ElementaryTypeName","src":"14989:6:106","typeDescriptions":{}}},"id":35967,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14989:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"functionReturnParameters":35949,"id":35968,"nodeType":"Return","src":"14982:20:106"}]},"documentation":{"id":35943,"nodeType":"StructuredDocumentation","src":"14515:276:106","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":35970,"implemented":true,"kind":"function","modifiers":[],"name":"toUint40","nameLocation":"14805:8:106","nodeType":"FunctionDefinition","parameters":{"id":35946,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35945,"mutability":"mutable","name":"value","nameLocation":"14822:5:106","nodeType":"VariableDeclaration","scope":35970,"src":"14814:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35944,"name":"uint256","nodeType":"ElementaryTypeName","src":"14814:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14813:15:106"},"returnParameters":{"id":35949,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35948,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35970,"src":"14852:6:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":35947,"name":"uint40","nodeType":"ElementaryTypeName","src":"14852:6:106","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"14851:8:106"},"scope":36952,"src":"14796:213:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":35997,"nodeType":"Block","src":"15360:149:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":35984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":35978,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35973,"src":"15374:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":35981,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15387:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":35980,"name":"uint32","nodeType":"ElementaryTypeName","src":"15387:6:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"}],"id":35979,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15382:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":35982,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15382:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint32","typeString":"type(uint32)"}},"id":35983,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15395:3:106","memberName":"max","nodeType":"MemberAccess","src":"15382:16:106","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"15374:24:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":35991,"nodeType":"IfStatement","src":"15370:103:106","trueBody":{"id":35990,"nodeType":"Block","src":"15400:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3332","id":35986,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15452:2:106","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},{"id":35987,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35973,"src":"15456:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35985,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"15421:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":35988,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15421:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":35989,"nodeType":"RevertStatement","src":"15414:48:106"}]}},{"expression":{"arguments":[{"id":35994,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35973,"src":"15496:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":35993,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15489:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":35992,"name":"uint32","nodeType":"ElementaryTypeName","src":"15489:6:106","typeDescriptions":{}}},"id":35995,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15489:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":35977,"id":35996,"nodeType":"Return","src":"15482:20:106"}]},"documentation":{"id":35971,"nodeType":"StructuredDocumentation","src":"15015:276:106","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":35998,"implemented":true,"kind":"function","modifiers":[],"name":"toUint32","nameLocation":"15305:8:106","nodeType":"FunctionDefinition","parameters":{"id":35974,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35973,"mutability":"mutable","name":"value","nameLocation":"15322:5:106","nodeType":"VariableDeclaration","scope":35998,"src":"15314:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":35972,"name":"uint256","nodeType":"ElementaryTypeName","src":"15314:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15313:15:106"},"returnParameters":{"id":35977,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35976,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":35998,"src":"15352:6:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":35975,"name":"uint32","nodeType":"ElementaryTypeName","src":"15352:6:106","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15351:8:106"},"scope":36952,"src":"15296:213:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36025,"nodeType":"Block","src":"15860:149:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":36012,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36006,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36001,"src":"15874:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":36009,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15887:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":36008,"name":"uint24","nodeType":"ElementaryTypeName","src":"15887:6:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"}],"id":36007,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15882:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":36010,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15882:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint24","typeString":"type(uint24)"}},"id":36011,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15895:3:106","memberName":"max","nodeType":"MemberAccess","src":"15882:16:106","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"src":"15874:24:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36019,"nodeType":"IfStatement","src":"15870:103:106","trueBody":{"id":36018,"nodeType":"Block","src":"15900:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3234","id":36014,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15952:2:106","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},{"id":36015,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36001,"src":"15956:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":36013,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"15921:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":36016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15921:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36017,"nodeType":"RevertStatement","src":"15914:48:106"}]}},{"expression":{"arguments":[{"id":36022,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36001,"src":"15996:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":36021,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15989:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":36020,"name":"uint24","nodeType":"ElementaryTypeName","src":"15989:6:106","typeDescriptions":{}}},"id":36023,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15989:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"functionReturnParameters":36005,"id":36024,"nodeType":"Return","src":"15982:20:106"}]},"documentation":{"id":35999,"nodeType":"StructuredDocumentation","src":"15515:276:106","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":36026,"implemented":true,"kind":"function","modifiers":[],"name":"toUint24","nameLocation":"15805:8:106","nodeType":"FunctionDefinition","parameters":{"id":36002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36001,"mutability":"mutable","name":"value","nameLocation":"15822:5:106","nodeType":"VariableDeclaration","scope":36026,"src":"15814:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":36000,"name":"uint256","nodeType":"ElementaryTypeName","src":"15814:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15813:15:106"},"returnParameters":{"id":36005,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36004,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":36026,"src":"15852:6:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":36003,"name":"uint24","nodeType":"ElementaryTypeName","src":"15852:6:106","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"src":"15851:8:106"},"scope":36952,"src":"15796:213:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36053,"nodeType":"Block","src":"16360:149:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":36040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36034,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36029,"src":"16374:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":36037,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16387:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":36036,"name":"uint16","nodeType":"ElementaryTypeName","src":"16387:6:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"}],"id":36035,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16382:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":36038,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16382:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint16","typeString":"type(uint16)"}},"id":36039,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16395:3:106","memberName":"max","nodeType":"MemberAccess","src":"16382:16:106","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"16374:24:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36047,"nodeType":"IfStatement","src":"16370:103:106","trueBody":{"id":36046,"nodeType":"Block","src":"16400:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3136","id":36042,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16452:2:106","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},{"id":36043,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36029,"src":"16456:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":36041,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"16421:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":36044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16421:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36045,"nodeType":"RevertStatement","src":"16414:48:106"}]}},{"expression":{"arguments":[{"id":36050,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36029,"src":"16496:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":36049,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16489:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":36048,"name":"uint16","nodeType":"ElementaryTypeName","src":"16489:6:106","typeDescriptions":{}}},"id":36051,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16489:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"functionReturnParameters":36033,"id":36052,"nodeType":"Return","src":"16482:20:106"}]},"documentation":{"id":36027,"nodeType":"StructuredDocumentation","src":"16015:276:106","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":36054,"implemented":true,"kind":"function","modifiers":[],"name":"toUint16","nameLocation":"16305:8:106","nodeType":"FunctionDefinition","parameters":{"id":36030,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36029,"mutability":"mutable","name":"value","nameLocation":"16322:5:106","nodeType":"VariableDeclaration","scope":36054,"src":"16314:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":36028,"name":"uint256","nodeType":"ElementaryTypeName","src":"16314:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16313:15:106"},"returnParameters":{"id":36033,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36032,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":36054,"src":"16352:6:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":36031,"name":"uint16","nodeType":"ElementaryTypeName","src":"16352:6:106","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"16351:8:106"},"scope":36952,"src":"16296:213:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36081,"nodeType":"Block","src":"16854:146:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":36068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36062,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36057,"src":"16868:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":36065,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16881:5:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":36064,"name":"uint8","nodeType":"ElementaryTypeName","src":"16881:5:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":36063,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16876:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":36066,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16876:11:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":36067,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16888:3:106","memberName":"max","nodeType":"MemberAccess","src":"16876:15:106","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"16868:23:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36075,"nodeType":"IfStatement","src":"16864:101:106","trueBody":{"id":36074,"nodeType":"Block","src":"16893:72:106","statements":[{"errorCall":{"arguments":[{"hexValue":"38","id":36070,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16945:1:106","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":36071,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36057,"src":"16948:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":36069,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35197,"src":"16914:30:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":36072,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16914:40:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36073,"nodeType":"RevertStatement","src":"16907:47:106"}]}},{"expression":{"arguments":[{"id":36078,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36057,"src":"16987:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":36077,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16981:5:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":36076,"name":"uint8","nodeType":"ElementaryTypeName","src":"16981:5:106","typeDescriptions":{}}},"id":36079,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16981:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":36061,"id":36080,"nodeType":"Return","src":"16974:19:106"}]},"documentation":{"id":36055,"nodeType":"StructuredDocumentation","src":"16515:272:106","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":36082,"implemented":true,"kind":"function","modifiers":[],"name":"toUint8","nameLocation":"16801:7:106","nodeType":"FunctionDefinition","parameters":{"id":36058,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36057,"mutability":"mutable","name":"value","nameLocation":"16817:5:106","nodeType":"VariableDeclaration","scope":36082,"src":"16809:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":36056,"name":"uint256","nodeType":"ElementaryTypeName","src":"16809:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16808:15:106"},"returnParameters":{"id":36061,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36060,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":36082,"src":"16847:5:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":36059,"name":"uint8","nodeType":"ElementaryTypeName","src":"16847:5:106","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"16846:7:106"},"scope":36952,"src":"16792:208:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36104,"nodeType":"Block","src":"17236:128:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36090,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36085,"src":"17250:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":36091,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17258:1:106","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17250:9:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36098,"nodeType":"IfStatement","src":"17246:81:106","trueBody":{"id":36097,"nodeType":"Block","src":"17261:66:106","statements":[{"errorCall":{"arguments":[{"id":36094,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36085,"src":"17310:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36093,"name":"SafeCastOverflowedIntToUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35202,"src":"17282:27:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_int256_$returns$_t_error_$","typeString":"function (int256) pure returns (error)"}},"id":36095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17282:34:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36096,"nodeType":"RevertStatement","src":"17275:41:106"}]}},{"expression":{"arguments":[{"id":36101,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36085,"src":"17351:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36100,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17343:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":36099,"name":"uint256","nodeType":"ElementaryTypeName","src":"17343:7:106","typeDescriptions":{}}},"id":36102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17343:14:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":36089,"id":36103,"nodeType":"Return","src":"17336:21:106"}]},"documentation":{"id":36083,"nodeType":"StructuredDocumentation","src":"17006:160:106","text":" @dev Converts a signed int256 into an unsigned uint256.\n Requirements:\n - input must be greater than or equal to 0."},"id":36105,"implemented":true,"kind":"function","modifiers":[],"name":"toUint256","nameLocation":"17180:9:106","nodeType":"FunctionDefinition","parameters":{"id":36086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36085,"mutability":"mutable","name":"value","nameLocation":"17197:5:106","nodeType":"VariableDeclaration","scope":36105,"src":"17190:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36084,"name":"int256","nodeType":"ElementaryTypeName","src":"17190:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"17189:14:106"},"returnParameters":{"id":36089,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36088,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":36105,"src":"17227:7:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":36087,"name":"uint256","nodeType":"ElementaryTypeName","src":"17227:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17226:9:106"},"scope":36952,"src":"17171:193:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36130,"nodeType":"Block","src":"17761:150:106","statements":[{"expression":{"id":36118,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36113,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36111,"src":"17771:10:106","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36116,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36108,"src":"17791:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36115,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17784:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int248_$","typeString":"type(int248)"},"typeName":{"id":36114,"name":"int248","nodeType":"ElementaryTypeName","src":"17784:6:106","typeDescriptions":{}}},"id":36117,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17784:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"src":"17771:26:106","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"id":36119,"nodeType":"ExpressionStatement","src":"17771:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36120,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36111,"src":"17811:10:106","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36121,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36108,"src":"17825:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"17811:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36129,"nodeType":"IfStatement","src":"17807:98:106","trueBody":{"id":36128,"nodeType":"Block","src":"17832:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"323438","id":36124,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17883:3:106","typeDescriptions":{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},"value":"248"},{"id":36125,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36108,"src":"17888:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36123,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"17853:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36126,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17853:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36127,"nodeType":"RevertStatement","src":"17846:48:106"}]}}]},"documentation":{"id":36106,"nodeType":"StructuredDocumentation","src":"17370:312:106","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":36131,"implemented":true,"kind":"function","modifiers":[],"name":"toInt248","nameLocation":"17696:8:106","nodeType":"FunctionDefinition","parameters":{"id":36109,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36108,"mutability":"mutable","name":"value","nameLocation":"17712:5:106","nodeType":"VariableDeclaration","scope":36131,"src":"17705:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36107,"name":"int256","nodeType":"ElementaryTypeName","src":"17705:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"17704:14:106"},"returnParameters":{"id":36112,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36111,"mutability":"mutable","name":"downcasted","nameLocation":"17749:10:106","nodeType":"VariableDeclaration","scope":36131,"src":"17742:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"},"typeName":{"id":36110,"name":"int248","nodeType":"ElementaryTypeName","src":"17742:6:106","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"visibility":"internal"}],"src":"17741:19:106"},"scope":36952,"src":"17687:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36156,"nodeType":"Block","src":"18308:150:106","statements":[{"expression":{"id":36144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36139,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36137,"src":"18318:10:106","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36142,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36134,"src":"18338:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36141,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18331:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int240_$","typeString":"type(int240)"},"typeName":{"id":36140,"name":"int240","nodeType":"ElementaryTypeName","src":"18331:6:106","typeDescriptions":{}}},"id":36143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18331:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"src":"18318:26:106","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"id":36145,"nodeType":"ExpressionStatement","src":"18318:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36146,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36137,"src":"18358:10:106","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36147,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36134,"src":"18372:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"18358:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36155,"nodeType":"IfStatement","src":"18354:98:106","trueBody":{"id":36154,"nodeType":"Block","src":"18379:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"323430","id":36150,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18430:3:106","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"240"},{"id":36151,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36134,"src":"18435:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36149,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"18400:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36152,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18400:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36153,"nodeType":"RevertStatement","src":"18393:48:106"}]}}]},"documentation":{"id":36132,"nodeType":"StructuredDocumentation","src":"17917:312:106","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":36157,"implemented":true,"kind":"function","modifiers":[],"name":"toInt240","nameLocation":"18243:8:106","nodeType":"FunctionDefinition","parameters":{"id":36135,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36134,"mutability":"mutable","name":"value","nameLocation":"18259:5:106","nodeType":"VariableDeclaration","scope":36157,"src":"18252:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36133,"name":"int256","nodeType":"ElementaryTypeName","src":"18252:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18251:14:106"},"returnParameters":{"id":36138,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36137,"mutability":"mutable","name":"downcasted","nameLocation":"18296:10:106","nodeType":"VariableDeclaration","scope":36157,"src":"18289:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"},"typeName":{"id":36136,"name":"int240","nodeType":"ElementaryTypeName","src":"18289:6:106","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"visibility":"internal"}],"src":"18288:19:106"},"scope":36952,"src":"18234:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36182,"nodeType":"Block","src":"18855:150:106","statements":[{"expression":{"id":36170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36165,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36163,"src":"18865:10:106","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36168,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36160,"src":"18885:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36167,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18878:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int232_$","typeString":"type(int232)"},"typeName":{"id":36166,"name":"int232","nodeType":"ElementaryTypeName","src":"18878:6:106","typeDescriptions":{}}},"id":36169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18878:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"src":"18865:26:106","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"id":36171,"nodeType":"ExpressionStatement","src":"18865:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36174,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36172,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36163,"src":"18905:10:106","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36173,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36160,"src":"18919:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"18905:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36181,"nodeType":"IfStatement","src":"18901:98:106","trueBody":{"id":36180,"nodeType":"Block","src":"18926:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"323332","id":36176,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18977:3:106","typeDescriptions":{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},"value":"232"},{"id":36177,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36160,"src":"18982:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36175,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"18947:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36178,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18947:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36179,"nodeType":"RevertStatement","src":"18940:48:106"}]}}]},"documentation":{"id":36158,"nodeType":"StructuredDocumentation","src":"18464:312:106","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":36183,"implemented":true,"kind":"function","modifiers":[],"name":"toInt232","nameLocation":"18790:8:106","nodeType":"FunctionDefinition","parameters":{"id":36161,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36160,"mutability":"mutable","name":"value","nameLocation":"18806:5:106","nodeType":"VariableDeclaration","scope":36183,"src":"18799:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36159,"name":"int256","nodeType":"ElementaryTypeName","src":"18799:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18798:14:106"},"returnParameters":{"id":36164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36163,"mutability":"mutable","name":"downcasted","nameLocation":"18843:10:106","nodeType":"VariableDeclaration","scope":36183,"src":"18836:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"},"typeName":{"id":36162,"name":"int232","nodeType":"ElementaryTypeName","src":"18836:6:106","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"visibility":"internal"}],"src":"18835:19:106"},"scope":36952,"src":"18781:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36208,"nodeType":"Block","src":"19402:150:106","statements":[{"expression":{"id":36196,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36191,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36189,"src":"19412:10:106","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36194,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36186,"src":"19432:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36193,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19425:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int224_$","typeString":"type(int224)"},"typeName":{"id":36192,"name":"int224","nodeType":"ElementaryTypeName","src":"19425:6:106","typeDescriptions":{}}},"id":36195,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19425:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"src":"19412:26:106","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"id":36197,"nodeType":"ExpressionStatement","src":"19412:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36200,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36198,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36189,"src":"19452:10:106","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36199,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36186,"src":"19466:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19452:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36207,"nodeType":"IfStatement","src":"19448:98:106","trueBody":{"id":36206,"nodeType":"Block","src":"19473:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"323234","id":36202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19524:3:106","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},{"id":36203,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36186,"src":"19529:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36201,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"19494:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36204,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19494:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36205,"nodeType":"RevertStatement","src":"19487:48:106"}]}}]},"documentation":{"id":36184,"nodeType":"StructuredDocumentation","src":"19011:312:106","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":36209,"implemented":true,"kind":"function","modifiers":[],"name":"toInt224","nameLocation":"19337:8:106","nodeType":"FunctionDefinition","parameters":{"id":36187,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36186,"mutability":"mutable","name":"value","nameLocation":"19353:5:106","nodeType":"VariableDeclaration","scope":36209,"src":"19346:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36185,"name":"int256","nodeType":"ElementaryTypeName","src":"19346:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19345:14:106"},"returnParameters":{"id":36190,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36189,"mutability":"mutable","name":"downcasted","nameLocation":"19390:10:106","nodeType":"VariableDeclaration","scope":36209,"src":"19383:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"},"typeName":{"id":36188,"name":"int224","nodeType":"ElementaryTypeName","src":"19383:6:106","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"visibility":"internal"}],"src":"19382:19:106"},"scope":36952,"src":"19328:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36234,"nodeType":"Block","src":"19949:150:106","statements":[{"expression":{"id":36222,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36217,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36215,"src":"19959:10:106","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36220,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36212,"src":"19979:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36219,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19972:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int216_$","typeString":"type(int216)"},"typeName":{"id":36218,"name":"int216","nodeType":"ElementaryTypeName","src":"19972:6:106","typeDescriptions":{}}},"id":36221,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19972:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"src":"19959:26:106","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"id":36223,"nodeType":"ExpressionStatement","src":"19959:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36226,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36224,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36215,"src":"19999:10:106","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36225,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36212,"src":"20013:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19999:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36233,"nodeType":"IfStatement","src":"19995:98:106","trueBody":{"id":36232,"nodeType":"Block","src":"20020:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"323136","id":36228,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20071:3:106","typeDescriptions":{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},"value":"216"},{"id":36229,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36212,"src":"20076:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36227,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"20041:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36230,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20041:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36231,"nodeType":"RevertStatement","src":"20034:48:106"}]}}]},"documentation":{"id":36210,"nodeType":"StructuredDocumentation","src":"19558:312:106","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":36235,"implemented":true,"kind":"function","modifiers":[],"name":"toInt216","nameLocation":"19884:8:106","nodeType":"FunctionDefinition","parameters":{"id":36213,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36212,"mutability":"mutable","name":"value","nameLocation":"19900:5:106","nodeType":"VariableDeclaration","scope":36235,"src":"19893:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36211,"name":"int256","nodeType":"ElementaryTypeName","src":"19893:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19892:14:106"},"returnParameters":{"id":36216,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36215,"mutability":"mutable","name":"downcasted","nameLocation":"19937:10:106","nodeType":"VariableDeclaration","scope":36235,"src":"19930:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"},"typeName":{"id":36214,"name":"int216","nodeType":"ElementaryTypeName","src":"19930:6:106","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"visibility":"internal"}],"src":"19929:19:106"},"scope":36952,"src":"19875:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36260,"nodeType":"Block","src":"20496:150:106","statements":[{"expression":{"id":36248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36243,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36241,"src":"20506:10:106","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36246,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36238,"src":"20526:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36245,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"20519:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int208_$","typeString":"type(int208)"},"typeName":{"id":36244,"name":"int208","nodeType":"ElementaryTypeName","src":"20519:6:106","typeDescriptions":{}}},"id":36247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20519:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"src":"20506:26:106","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"id":36249,"nodeType":"ExpressionStatement","src":"20506:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36252,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36250,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36241,"src":"20546:10:106","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36251,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36238,"src":"20560:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"20546:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36259,"nodeType":"IfStatement","src":"20542:98:106","trueBody":{"id":36258,"nodeType":"Block","src":"20567:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"323038","id":36254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20618:3:106","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"value":"208"},{"id":36255,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36238,"src":"20623:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36253,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"20588:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20588:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36257,"nodeType":"RevertStatement","src":"20581:48:106"}]}}]},"documentation":{"id":36236,"nodeType":"StructuredDocumentation","src":"20105:312:106","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":36261,"implemented":true,"kind":"function","modifiers":[],"name":"toInt208","nameLocation":"20431:8:106","nodeType":"FunctionDefinition","parameters":{"id":36239,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36238,"mutability":"mutable","name":"value","nameLocation":"20447:5:106","nodeType":"VariableDeclaration","scope":36261,"src":"20440:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36237,"name":"int256","nodeType":"ElementaryTypeName","src":"20440:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"20439:14:106"},"returnParameters":{"id":36242,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36241,"mutability":"mutable","name":"downcasted","nameLocation":"20484:10:106","nodeType":"VariableDeclaration","scope":36261,"src":"20477:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"},"typeName":{"id":36240,"name":"int208","nodeType":"ElementaryTypeName","src":"20477:6:106","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"visibility":"internal"}],"src":"20476:19:106"},"scope":36952,"src":"20422:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36286,"nodeType":"Block","src":"21043:150:106","statements":[{"expression":{"id":36274,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36269,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36267,"src":"21053:10:106","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36272,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36264,"src":"21073:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36271,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21066:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int200_$","typeString":"type(int200)"},"typeName":{"id":36270,"name":"int200","nodeType":"ElementaryTypeName","src":"21066:6:106","typeDescriptions":{}}},"id":36273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21066:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"src":"21053:26:106","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"id":36275,"nodeType":"ExpressionStatement","src":"21053:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36276,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36267,"src":"21093:10:106","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36277,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36264,"src":"21107:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21093:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36285,"nodeType":"IfStatement","src":"21089:98:106","trueBody":{"id":36284,"nodeType":"Block","src":"21114:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"323030","id":36280,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21165:3:106","typeDescriptions":{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},"value":"200"},{"id":36281,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36264,"src":"21170:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36279,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"21135:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36282,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21135:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36283,"nodeType":"RevertStatement","src":"21128:48:106"}]}}]},"documentation":{"id":36262,"nodeType":"StructuredDocumentation","src":"20652:312:106","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":36287,"implemented":true,"kind":"function","modifiers":[],"name":"toInt200","nameLocation":"20978:8:106","nodeType":"FunctionDefinition","parameters":{"id":36265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36264,"mutability":"mutable","name":"value","nameLocation":"20994:5:106","nodeType":"VariableDeclaration","scope":36287,"src":"20987:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36263,"name":"int256","nodeType":"ElementaryTypeName","src":"20987:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"20986:14:106"},"returnParameters":{"id":36268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36267,"mutability":"mutable","name":"downcasted","nameLocation":"21031:10:106","nodeType":"VariableDeclaration","scope":36287,"src":"21024:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"},"typeName":{"id":36266,"name":"int200","nodeType":"ElementaryTypeName","src":"21024:6:106","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"visibility":"internal"}],"src":"21023:19:106"},"scope":36952,"src":"20969:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36312,"nodeType":"Block","src":"21590:150:106","statements":[{"expression":{"id":36300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36295,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36293,"src":"21600:10:106","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36298,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36290,"src":"21620:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36297,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21613:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int192_$","typeString":"type(int192)"},"typeName":{"id":36296,"name":"int192","nodeType":"ElementaryTypeName","src":"21613:6:106","typeDescriptions":{}}},"id":36299,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21613:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"src":"21600:26:106","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"id":36301,"nodeType":"ExpressionStatement","src":"21600:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36304,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36302,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36293,"src":"21640:10:106","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36303,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36290,"src":"21654:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21640:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36311,"nodeType":"IfStatement","src":"21636:98:106","trueBody":{"id":36310,"nodeType":"Block","src":"21661:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313932","id":36306,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21712:3:106","typeDescriptions":{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},"value":"192"},{"id":36307,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36290,"src":"21717:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36305,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"21682:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36308,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21682:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36309,"nodeType":"RevertStatement","src":"21675:48:106"}]}}]},"documentation":{"id":36288,"nodeType":"StructuredDocumentation","src":"21199:312:106","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":36313,"implemented":true,"kind":"function","modifiers":[],"name":"toInt192","nameLocation":"21525:8:106","nodeType":"FunctionDefinition","parameters":{"id":36291,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36290,"mutability":"mutable","name":"value","nameLocation":"21541:5:106","nodeType":"VariableDeclaration","scope":36313,"src":"21534:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36289,"name":"int256","nodeType":"ElementaryTypeName","src":"21534:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"21533:14:106"},"returnParameters":{"id":36294,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36293,"mutability":"mutable","name":"downcasted","nameLocation":"21578:10:106","nodeType":"VariableDeclaration","scope":36313,"src":"21571:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"},"typeName":{"id":36292,"name":"int192","nodeType":"ElementaryTypeName","src":"21571:6:106","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"visibility":"internal"}],"src":"21570:19:106"},"scope":36952,"src":"21516:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36338,"nodeType":"Block","src":"22137:150:106","statements":[{"expression":{"id":36326,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36321,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36319,"src":"22147:10:106","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36324,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36316,"src":"22167:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36323,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22160:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int184_$","typeString":"type(int184)"},"typeName":{"id":36322,"name":"int184","nodeType":"ElementaryTypeName","src":"22160:6:106","typeDescriptions":{}}},"id":36325,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22160:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"src":"22147:26:106","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"id":36327,"nodeType":"ExpressionStatement","src":"22147:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36330,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36328,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36319,"src":"22187:10:106","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36329,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36316,"src":"22201:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22187:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36337,"nodeType":"IfStatement","src":"22183:98:106","trueBody":{"id":36336,"nodeType":"Block","src":"22208:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313834","id":36332,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22259:3:106","typeDescriptions":{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},"value":"184"},{"id":36333,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36316,"src":"22264:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36331,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"22229:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36334,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22229:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36335,"nodeType":"RevertStatement","src":"22222:48:106"}]}}]},"documentation":{"id":36314,"nodeType":"StructuredDocumentation","src":"21746:312:106","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":36339,"implemented":true,"kind":"function","modifiers":[],"name":"toInt184","nameLocation":"22072:8:106","nodeType":"FunctionDefinition","parameters":{"id":36317,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36316,"mutability":"mutable","name":"value","nameLocation":"22088:5:106","nodeType":"VariableDeclaration","scope":36339,"src":"22081:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36315,"name":"int256","nodeType":"ElementaryTypeName","src":"22081:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"22080:14:106"},"returnParameters":{"id":36320,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36319,"mutability":"mutable","name":"downcasted","nameLocation":"22125:10:106","nodeType":"VariableDeclaration","scope":36339,"src":"22118:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"},"typeName":{"id":36318,"name":"int184","nodeType":"ElementaryTypeName","src":"22118:6:106","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"visibility":"internal"}],"src":"22117:19:106"},"scope":36952,"src":"22063:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36364,"nodeType":"Block","src":"22684:150:106","statements":[{"expression":{"id":36352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36347,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36345,"src":"22694:10:106","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36350,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36342,"src":"22714:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36349,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22707:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int176_$","typeString":"type(int176)"},"typeName":{"id":36348,"name":"int176","nodeType":"ElementaryTypeName","src":"22707:6:106","typeDescriptions":{}}},"id":36351,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22707:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"src":"22694:26:106","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"id":36353,"nodeType":"ExpressionStatement","src":"22694:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36354,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36345,"src":"22734:10:106","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36355,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36342,"src":"22748:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22734:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36363,"nodeType":"IfStatement","src":"22730:98:106","trueBody":{"id":36362,"nodeType":"Block","src":"22755:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313736","id":36358,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22806:3:106","typeDescriptions":{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},"value":"176"},{"id":36359,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36342,"src":"22811:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36357,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"22776:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36360,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22776:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36361,"nodeType":"RevertStatement","src":"22769:48:106"}]}}]},"documentation":{"id":36340,"nodeType":"StructuredDocumentation","src":"22293:312:106","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":36365,"implemented":true,"kind":"function","modifiers":[],"name":"toInt176","nameLocation":"22619:8:106","nodeType":"FunctionDefinition","parameters":{"id":36343,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36342,"mutability":"mutable","name":"value","nameLocation":"22635:5:106","nodeType":"VariableDeclaration","scope":36365,"src":"22628:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36341,"name":"int256","nodeType":"ElementaryTypeName","src":"22628:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"22627:14:106"},"returnParameters":{"id":36346,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36345,"mutability":"mutable","name":"downcasted","nameLocation":"22672:10:106","nodeType":"VariableDeclaration","scope":36365,"src":"22665:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"},"typeName":{"id":36344,"name":"int176","nodeType":"ElementaryTypeName","src":"22665:6:106","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"visibility":"internal"}],"src":"22664:19:106"},"scope":36952,"src":"22610:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36390,"nodeType":"Block","src":"23231:150:106","statements":[{"expression":{"id":36378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36373,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36371,"src":"23241:10:106","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36376,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36368,"src":"23261:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23254:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int168_$","typeString":"type(int168)"},"typeName":{"id":36374,"name":"int168","nodeType":"ElementaryTypeName","src":"23254:6:106","typeDescriptions":{}}},"id":36377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23254:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"src":"23241:26:106","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"id":36379,"nodeType":"ExpressionStatement","src":"23241:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36380,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36371,"src":"23281:10:106","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36381,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36368,"src":"23295:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23281:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36389,"nodeType":"IfStatement","src":"23277:98:106","trueBody":{"id":36388,"nodeType":"Block","src":"23302:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313638","id":36384,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23353:3:106","typeDescriptions":{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},"value":"168"},{"id":36385,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36368,"src":"23358:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36383,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"23323:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36386,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23323:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36387,"nodeType":"RevertStatement","src":"23316:48:106"}]}}]},"documentation":{"id":36366,"nodeType":"StructuredDocumentation","src":"22840:312:106","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":36391,"implemented":true,"kind":"function","modifiers":[],"name":"toInt168","nameLocation":"23166:8:106","nodeType":"FunctionDefinition","parameters":{"id":36369,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36368,"mutability":"mutable","name":"value","nameLocation":"23182:5:106","nodeType":"VariableDeclaration","scope":36391,"src":"23175:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36367,"name":"int256","nodeType":"ElementaryTypeName","src":"23175:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23174:14:106"},"returnParameters":{"id":36372,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36371,"mutability":"mutable","name":"downcasted","nameLocation":"23219:10:106","nodeType":"VariableDeclaration","scope":36391,"src":"23212:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"},"typeName":{"id":36370,"name":"int168","nodeType":"ElementaryTypeName","src":"23212:6:106","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"visibility":"internal"}],"src":"23211:19:106"},"scope":36952,"src":"23157:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36416,"nodeType":"Block","src":"23778:150:106","statements":[{"expression":{"id":36404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36399,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36397,"src":"23788:10:106","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36402,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36394,"src":"23808:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36401,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23801:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int160_$","typeString":"type(int160)"},"typeName":{"id":36400,"name":"int160","nodeType":"ElementaryTypeName","src":"23801:6:106","typeDescriptions":{}}},"id":36403,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23801:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"src":"23788:26:106","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"id":36405,"nodeType":"ExpressionStatement","src":"23788:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36406,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36397,"src":"23828:10:106","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36407,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36394,"src":"23842:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23828:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36415,"nodeType":"IfStatement","src":"23824:98:106","trueBody":{"id":36414,"nodeType":"Block","src":"23849:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313630","id":36410,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23900:3:106","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},{"id":36411,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36394,"src":"23905:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36409,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"23870:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36412,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23870:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36413,"nodeType":"RevertStatement","src":"23863:48:106"}]}}]},"documentation":{"id":36392,"nodeType":"StructuredDocumentation","src":"23387:312:106","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":36417,"implemented":true,"kind":"function","modifiers":[],"name":"toInt160","nameLocation":"23713:8:106","nodeType":"FunctionDefinition","parameters":{"id":36395,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36394,"mutability":"mutable","name":"value","nameLocation":"23729:5:106","nodeType":"VariableDeclaration","scope":36417,"src":"23722:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36393,"name":"int256","nodeType":"ElementaryTypeName","src":"23722:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23721:14:106"},"returnParameters":{"id":36398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36397,"mutability":"mutable","name":"downcasted","nameLocation":"23766:10:106","nodeType":"VariableDeclaration","scope":36417,"src":"23759:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"},"typeName":{"id":36396,"name":"int160","nodeType":"ElementaryTypeName","src":"23759:6:106","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"visibility":"internal"}],"src":"23758:19:106"},"scope":36952,"src":"23704:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36442,"nodeType":"Block","src":"24325:150:106","statements":[{"expression":{"id":36430,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36425,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36423,"src":"24335:10:106","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36428,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36420,"src":"24355:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36427,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24348:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int152_$","typeString":"type(int152)"},"typeName":{"id":36426,"name":"int152","nodeType":"ElementaryTypeName","src":"24348:6:106","typeDescriptions":{}}},"id":36429,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24348:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"src":"24335:26:106","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"id":36431,"nodeType":"ExpressionStatement","src":"24335:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36434,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36432,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36423,"src":"24375:10:106","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36433,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36420,"src":"24389:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24375:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36441,"nodeType":"IfStatement","src":"24371:98:106","trueBody":{"id":36440,"nodeType":"Block","src":"24396:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313532","id":36436,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24447:3:106","typeDescriptions":{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},"value":"152"},{"id":36437,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36420,"src":"24452:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36435,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"24417:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24417:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36439,"nodeType":"RevertStatement","src":"24410:48:106"}]}}]},"documentation":{"id":36418,"nodeType":"StructuredDocumentation","src":"23934:312:106","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":36443,"implemented":true,"kind":"function","modifiers":[],"name":"toInt152","nameLocation":"24260:8:106","nodeType":"FunctionDefinition","parameters":{"id":36421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36420,"mutability":"mutable","name":"value","nameLocation":"24276:5:106","nodeType":"VariableDeclaration","scope":36443,"src":"24269:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36419,"name":"int256","nodeType":"ElementaryTypeName","src":"24269:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"24268:14:106"},"returnParameters":{"id":36424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36423,"mutability":"mutable","name":"downcasted","nameLocation":"24313:10:106","nodeType":"VariableDeclaration","scope":36443,"src":"24306:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"},"typeName":{"id":36422,"name":"int152","nodeType":"ElementaryTypeName","src":"24306:6:106","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"visibility":"internal"}],"src":"24305:19:106"},"scope":36952,"src":"24251:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36468,"nodeType":"Block","src":"24872:150:106","statements":[{"expression":{"id":36456,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36451,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36449,"src":"24882:10:106","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36454,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36446,"src":"24902:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36453,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24895:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int144_$","typeString":"type(int144)"},"typeName":{"id":36452,"name":"int144","nodeType":"ElementaryTypeName","src":"24895:6:106","typeDescriptions":{}}},"id":36455,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24895:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"src":"24882:26:106","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"id":36457,"nodeType":"ExpressionStatement","src":"24882:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36458,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36449,"src":"24922:10:106","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36459,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36446,"src":"24936:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24922:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36467,"nodeType":"IfStatement","src":"24918:98:106","trueBody":{"id":36466,"nodeType":"Block","src":"24943:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313434","id":36462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24994:3:106","typeDescriptions":{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},"value":"144"},{"id":36463,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36446,"src":"24999:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36461,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"24964:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24964:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36465,"nodeType":"RevertStatement","src":"24957:48:106"}]}}]},"documentation":{"id":36444,"nodeType":"StructuredDocumentation","src":"24481:312:106","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":36469,"implemented":true,"kind":"function","modifiers":[],"name":"toInt144","nameLocation":"24807:8:106","nodeType":"FunctionDefinition","parameters":{"id":36447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36446,"mutability":"mutable","name":"value","nameLocation":"24823:5:106","nodeType":"VariableDeclaration","scope":36469,"src":"24816:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36445,"name":"int256","nodeType":"ElementaryTypeName","src":"24816:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"24815:14:106"},"returnParameters":{"id":36450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36449,"mutability":"mutable","name":"downcasted","nameLocation":"24860:10:106","nodeType":"VariableDeclaration","scope":36469,"src":"24853:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"},"typeName":{"id":36448,"name":"int144","nodeType":"ElementaryTypeName","src":"24853:6:106","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"visibility":"internal"}],"src":"24852:19:106"},"scope":36952,"src":"24798:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36494,"nodeType":"Block","src":"25419:150:106","statements":[{"expression":{"id":36482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36477,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36475,"src":"25429:10:106","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36480,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36472,"src":"25449:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36479,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25442:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int136_$","typeString":"type(int136)"},"typeName":{"id":36478,"name":"int136","nodeType":"ElementaryTypeName","src":"25442:6:106","typeDescriptions":{}}},"id":36481,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25442:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"src":"25429:26:106","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"id":36483,"nodeType":"ExpressionStatement","src":"25429:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36486,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36484,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36475,"src":"25469:10:106","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36485,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36472,"src":"25483:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"25469:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36493,"nodeType":"IfStatement","src":"25465:98:106","trueBody":{"id":36492,"nodeType":"Block","src":"25490:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313336","id":36488,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25541:3:106","typeDescriptions":{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},"value":"136"},{"id":36489,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36472,"src":"25546:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36487,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"25511:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36490,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25511:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36491,"nodeType":"RevertStatement","src":"25504:48:106"}]}}]},"documentation":{"id":36470,"nodeType":"StructuredDocumentation","src":"25028:312:106","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":36495,"implemented":true,"kind":"function","modifiers":[],"name":"toInt136","nameLocation":"25354:8:106","nodeType":"FunctionDefinition","parameters":{"id":36473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36472,"mutability":"mutable","name":"value","nameLocation":"25370:5:106","nodeType":"VariableDeclaration","scope":36495,"src":"25363:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36471,"name":"int256","nodeType":"ElementaryTypeName","src":"25363:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"25362:14:106"},"returnParameters":{"id":36476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36475,"mutability":"mutable","name":"downcasted","nameLocation":"25407:10:106","nodeType":"VariableDeclaration","scope":36495,"src":"25400:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"},"typeName":{"id":36474,"name":"int136","nodeType":"ElementaryTypeName","src":"25400:6:106","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"visibility":"internal"}],"src":"25399:19:106"},"scope":36952,"src":"25345:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36520,"nodeType":"Block","src":"25966:150:106","statements":[{"expression":{"id":36508,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36503,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36501,"src":"25976:10:106","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36506,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36498,"src":"25996:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36505,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25989:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int128_$","typeString":"type(int128)"},"typeName":{"id":36504,"name":"int128","nodeType":"ElementaryTypeName","src":"25989:6:106","typeDescriptions":{}}},"id":36507,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25989:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"src":"25976:26:106","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"id":36509,"nodeType":"ExpressionStatement","src":"25976:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36510,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36501,"src":"26016:10:106","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36511,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36498,"src":"26030:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26016:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36519,"nodeType":"IfStatement","src":"26012:98:106","trueBody":{"id":36518,"nodeType":"Block","src":"26037:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313238","id":36514,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26088:3:106","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},{"id":36515,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36498,"src":"26093:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36513,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"26058:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36516,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26058:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36517,"nodeType":"RevertStatement","src":"26051:48:106"}]}}]},"documentation":{"id":36496,"nodeType":"StructuredDocumentation","src":"25575:312:106","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":36521,"implemented":true,"kind":"function","modifiers":[],"name":"toInt128","nameLocation":"25901:8:106","nodeType":"FunctionDefinition","parameters":{"id":36499,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36498,"mutability":"mutable","name":"value","nameLocation":"25917:5:106","nodeType":"VariableDeclaration","scope":36521,"src":"25910:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36497,"name":"int256","nodeType":"ElementaryTypeName","src":"25910:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"25909:14:106"},"returnParameters":{"id":36502,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36501,"mutability":"mutable","name":"downcasted","nameLocation":"25954:10:106","nodeType":"VariableDeclaration","scope":36521,"src":"25947:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"},"typeName":{"id":36500,"name":"int128","nodeType":"ElementaryTypeName","src":"25947:6:106","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"visibility":"internal"}],"src":"25946:19:106"},"scope":36952,"src":"25892:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36546,"nodeType":"Block","src":"26513:150:106","statements":[{"expression":{"id":36534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36529,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36527,"src":"26523:10:106","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36532,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36524,"src":"26543:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36531,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26536:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int120_$","typeString":"type(int120)"},"typeName":{"id":36530,"name":"int120","nodeType":"ElementaryTypeName","src":"26536:6:106","typeDescriptions":{}}},"id":36533,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26536:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"src":"26523:26:106","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"id":36535,"nodeType":"ExpressionStatement","src":"26523:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36538,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36536,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36527,"src":"26563:10:106","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36537,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36524,"src":"26577:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26563:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36545,"nodeType":"IfStatement","src":"26559:98:106","trueBody":{"id":36544,"nodeType":"Block","src":"26584:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313230","id":36540,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26635:3:106","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},{"id":36541,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36524,"src":"26640:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36539,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"26605:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36542,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26605:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36543,"nodeType":"RevertStatement","src":"26598:48:106"}]}}]},"documentation":{"id":36522,"nodeType":"StructuredDocumentation","src":"26122:312:106","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":36547,"implemented":true,"kind":"function","modifiers":[],"name":"toInt120","nameLocation":"26448:8:106","nodeType":"FunctionDefinition","parameters":{"id":36525,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36524,"mutability":"mutable","name":"value","nameLocation":"26464:5:106","nodeType":"VariableDeclaration","scope":36547,"src":"26457:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36523,"name":"int256","nodeType":"ElementaryTypeName","src":"26457:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"26456:14:106"},"returnParameters":{"id":36528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36527,"mutability":"mutable","name":"downcasted","nameLocation":"26501:10:106","nodeType":"VariableDeclaration","scope":36547,"src":"26494:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"},"typeName":{"id":36526,"name":"int120","nodeType":"ElementaryTypeName","src":"26494:6:106","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"visibility":"internal"}],"src":"26493:19:106"},"scope":36952,"src":"26439:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36572,"nodeType":"Block","src":"27060:150:106","statements":[{"expression":{"id":36560,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36555,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36553,"src":"27070:10:106","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36558,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36550,"src":"27090:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36557,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27083:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int112_$","typeString":"type(int112)"},"typeName":{"id":36556,"name":"int112","nodeType":"ElementaryTypeName","src":"27083:6:106","typeDescriptions":{}}},"id":36559,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27083:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"src":"27070:26:106","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"id":36561,"nodeType":"ExpressionStatement","src":"27070:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36562,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36553,"src":"27110:10:106","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36563,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36550,"src":"27124:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27110:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36571,"nodeType":"IfStatement","src":"27106:98:106","trueBody":{"id":36570,"nodeType":"Block","src":"27131:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313132","id":36566,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27182:3:106","typeDescriptions":{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},"value":"112"},{"id":36567,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36550,"src":"27187:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36565,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"27152:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36568,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27152:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36569,"nodeType":"RevertStatement","src":"27145:48:106"}]}}]},"documentation":{"id":36548,"nodeType":"StructuredDocumentation","src":"26669:312:106","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":36573,"implemented":true,"kind":"function","modifiers":[],"name":"toInt112","nameLocation":"26995:8:106","nodeType":"FunctionDefinition","parameters":{"id":36551,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36550,"mutability":"mutable","name":"value","nameLocation":"27011:5:106","nodeType":"VariableDeclaration","scope":36573,"src":"27004:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36549,"name":"int256","nodeType":"ElementaryTypeName","src":"27004:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"27003:14:106"},"returnParameters":{"id":36554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36553,"mutability":"mutable","name":"downcasted","nameLocation":"27048:10:106","nodeType":"VariableDeclaration","scope":36573,"src":"27041:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"},"typeName":{"id":36552,"name":"int112","nodeType":"ElementaryTypeName","src":"27041:6:106","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"visibility":"internal"}],"src":"27040:19:106"},"scope":36952,"src":"26986:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36598,"nodeType":"Block","src":"27607:150:106","statements":[{"expression":{"id":36586,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36581,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36579,"src":"27617:10:106","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36584,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36576,"src":"27637:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36583,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27630:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int104_$","typeString":"type(int104)"},"typeName":{"id":36582,"name":"int104","nodeType":"ElementaryTypeName","src":"27630:6:106","typeDescriptions":{}}},"id":36585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27630:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"src":"27617:26:106","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"id":36587,"nodeType":"ExpressionStatement","src":"27617:26:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36588,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36579,"src":"27657:10:106","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36589,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36576,"src":"27671:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27657:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36597,"nodeType":"IfStatement","src":"27653:98:106","trueBody":{"id":36596,"nodeType":"Block","src":"27678:73:106","statements":[{"errorCall":{"arguments":[{"hexValue":"313034","id":36592,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27729:3:106","typeDescriptions":{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},"value":"104"},{"id":36593,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36576,"src":"27734:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36591,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"27699:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36594,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27699:41:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36595,"nodeType":"RevertStatement","src":"27692:48:106"}]}}]},"documentation":{"id":36574,"nodeType":"StructuredDocumentation","src":"27216:312:106","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":36599,"implemented":true,"kind":"function","modifiers":[],"name":"toInt104","nameLocation":"27542:8:106","nodeType":"FunctionDefinition","parameters":{"id":36577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36576,"mutability":"mutable","name":"value","nameLocation":"27558:5:106","nodeType":"VariableDeclaration","scope":36599,"src":"27551:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36575,"name":"int256","nodeType":"ElementaryTypeName","src":"27551:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"27550:14:106"},"returnParameters":{"id":36580,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36579,"mutability":"mutable","name":"downcasted","nameLocation":"27595:10:106","nodeType":"VariableDeclaration","scope":36599,"src":"27588:17:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"},"typeName":{"id":36578,"name":"int104","nodeType":"ElementaryTypeName","src":"27588:6:106","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"visibility":"internal"}],"src":"27587:19:106"},"scope":36952,"src":"27533:224:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36624,"nodeType":"Block","src":"28147:148:106","statements":[{"expression":{"id":36612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36607,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36605,"src":"28157:10:106","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36610,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36602,"src":"28176:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36609,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28170:5:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int96_$","typeString":"type(int96)"},"typeName":{"id":36608,"name":"int96","nodeType":"ElementaryTypeName","src":"28170:5:106","typeDescriptions":{}}},"id":36611,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28170:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"src":"28157:25:106","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"id":36613,"nodeType":"ExpressionStatement","src":"28157:25:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36614,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36605,"src":"28196:10:106","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36615,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36602,"src":"28210:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28196:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36623,"nodeType":"IfStatement","src":"28192:97:106","trueBody":{"id":36622,"nodeType":"Block","src":"28217:72:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3936","id":36618,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28268:2:106","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},{"id":36619,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36602,"src":"28272:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36617,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"28238:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36620,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28238:40:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36621,"nodeType":"RevertStatement","src":"28231:47:106"}]}}]},"documentation":{"id":36600,"nodeType":"StructuredDocumentation","src":"27763:307:106","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":36625,"implemented":true,"kind":"function","modifiers":[],"name":"toInt96","nameLocation":"28084:7:106","nodeType":"FunctionDefinition","parameters":{"id":36603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36602,"mutability":"mutable","name":"value","nameLocation":"28099:5:106","nodeType":"VariableDeclaration","scope":36625,"src":"28092:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36601,"name":"int256","nodeType":"ElementaryTypeName","src":"28092:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"28091:14:106"},"returnParameters":{"id":36606,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36605,"mutability":"mutable","name":"downcasted","nameLocation":"28135:10:106","nodeType":"VariableDeclaration","scope":36625,"src":"28129:16:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"},"typeName":{"id":36604,"name":"int96","nodeType":"ElementaryTypeName","src":"28129:5:106","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"visibility":"internal"}],"src":"28128:18:106"},"scope":36952,"src":"28075:220:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36650,"nodeType":"Block","src":"28685:148:106","statements":[{"expression":{"id":36638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36633,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36631,"src":"28695:10:106","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36636,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36628,"src":"28714:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36635,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28708:5:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int88_$","typeString":"type(int88)"},"typeName":{"id":36634,"name":"int88","nodeType":"ElementaryTypeName","src":"28708:5:106","typeDescriptions":{}}},"id":36637,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28708:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"src":"28695:25:106","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"id":36639,"nodeType":"ExpressionStatement","src":"28695:25:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36642,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36640,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36631,"src":"28734:10:106","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36641,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36628,"src":"28748:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28734:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36649,"nodeType":"IfStatement","src":"28730:97:106","trueBody":{"id":36648,"nodeType":"Block","src":"28755:72:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3838","id":36644,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28806:2:106","typeDescriptions":{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},"value":"88"},{"id":36645,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36628,"src":"28810:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36643,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"28776:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28776:40:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36647,"nodeType":"RevertStatement","src":"28769:47:106"}]}}]},"documentation":{"id":36626,"nodeType":"StructuredDocumentation","src":"28301:307:106","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":36651,"implemented":true,"kind":"function","modifiers":[],"name":"toInt88","nameLocation":"28622:7:106","nodeType":"FunctionDefinition","parameters":{"id":36629,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36628,"mutability":"mutable","name":"value","nameLocation":"28637:5:106","nodeType":"VariableDeclaration","scope":36651,"src":"28630:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36627,"name":"int256","nodeType":"ElementaryTypeName","src":"28630:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"28629:14:106"},"returnParameters":{"id":36632,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36631,"mutability":"mutable","name":"downcasted","nameLocation":"28673:10:106","nodeType":"VariableDeclaration","scope":36651,"src":"28667:16:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"},"typeName":{"id":36630,"name":"int88","nodeType":"ElementaryTypeName","src":"28667:5:106","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"visibility":"internal"}],"src":"28666:18:106"},"scope":36952,"src":"28613:220:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36676,"nodeType":"Block","src":"29223:148:106","statements":[{"expression":{"id":36664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36659,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36657,"src":"29233:10:106","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36662,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36654,"src":"29252:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36661,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29246:5:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int80_$","typeString":"type(int80)"},"typeName":{"id":36660,"name":"int80","nodeType":"ElementaryTypeName","src":"29246:5:106","typeDescriptions":{}}},"id":36663,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29246:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"src":"29233:25:106","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"id":36665,"nodeType":"ExpressionStatement","src":"29233:25:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36668,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36666,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36657,"src":"29272:10:106","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36667,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36654,"src":"29286:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"29272:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36675,"nodeType":"IfStatement","src":"29268:97:106","trueBody":{"id":36674,"nodeType":"Block","src":"29293:72:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3830","id":36670,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29344:2:106","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},{"id":36671,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36654,"src":"29348:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36669,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"29314:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36672,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29314:40:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36673,"nodeType":"RevertStatement","src":"29307:47:106"}]}}]},"documentation":{"id":36652,"nodeType":"StructuredDocumentation","src":"28839:307:106","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":36677,"implemented":true,"kind":"function","modifiers":[],"name":"toInt80","nameLocation":"29160:7:106","nodeType":"FunctionDefinition","parameters":{"id":36655,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36654,"mutability":"mutable","name":"value","nameLocation":"29175:5:106","nodeType":"VariableDeclaration","scope":36677,"src":"29168:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36653,"name":"int256","nodeType":"ElementaryTypeName","src":"29168:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"29167:14:106"},"returnParameters":{"id":36658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36657,"mutability":"mutable","name":"downcasted","nameLocation":"29211:10:106","nodeType":"VariableDeclaration","scope":36677,"src":"29205:16:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"},"typeName":{"id":36656,"name":"int80","nodeType":"ElementaryTypeName","src":"29205:5:106","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"visibility":"internal"}],"src":"29204:18:106"},"scope":36952,"src":"29151:220:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36702,"nodeType":"Block","src":"29761:148:106","statements":[{"expression":{"id":36690,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36685,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36683,"src":"29771:10:106","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36688,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36680,"src":"29790:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36687,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29784:5:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int72_$","typeString":"type(int72)"},"typeName":{"id":36686,"name":"int72","nodeType":"ElementaryTypeName","src":"29784:5:106","typeDescriptions":{}}},"id":36689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29784:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"src":"29771:25:106","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"id":36691,"nodeType":"ExpressionStatement","src":"29771:25:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36692,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36683,"src":"29810:10:106","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36693,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36680,"src":"29824:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"29810:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36701,"nodeType":"IfStatement","src":"29806:97:106","trueBody":{"id":36700,"nodeType":"Block","src":"29831:72:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3732","id":36696,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29882:2:106","typeDescriptions":{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},"value":"72"},{"id":36697,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36680,"src":"29886:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36695,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"29852:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36698,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29852:40:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36699,"nodeType":"RevertStatement","src":"29845:47:106"}]}}]},"documentation":{"id":36678,"nodeType":"StructuredDocumentation","src":"29377:307:106","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":36703,"implemented":true,"kind":"function","modifiers":[],"name":"toInt72","nameLocation":"29698:7:106","nodeType":"FunctionDefinition","parameters":{"id":36681,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36680,"mutability":"mutable","name":"value","nameLocation":"29713:5:106","nodeType":"VariableDeclaration","scope":36703,"src":"29706:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36679,"name":"int256","nodeType":"ElementaryTypeName","src":"29706:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"29705:14:106"},"returnParameters":{"id":36684,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36683,"mutability":"mutable","name":"downcasted","nameLocation":"29749:10:106","nodeType":"VariableDeclaration","scope":36703,"src":"29743:16:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"},"typeName":{"id":36682,"name":"int72","nodeType":"ElementaryTypeName","src":"29743:5:106","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"visibility":"internal"}],"src":"29742:18:106"},"scope":36952,"src":"29689:220:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36728,"nodeType":"Block","src":"30299:148:106","statements":[{"expression":{"id":36716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36711,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36709,"src":"30309:10:106","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36714,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36706,"src":"30328:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36713,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30322:5:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int64_$","typeString":"type(int64)"},"typeName":{"id":36712,"name":"int64","nodeType":"ElementaryTypeName","src":"30322:5:106","typeDescriptions":{}}},"id":36715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30322:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"src":"30309:25:106","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"id":36717,"nodeType":"ExpressionStatement","src":"30309:25:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36718,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36709,"src":"30348:10:106","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36719,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36706,"src":"30362:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"30348:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36727,"nodeType":"IfStatement","src":"30344:97:106","trueBody":{"id":36726,"nodeType":"Block","src":"30369:72:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3634","id":36722,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30420:2:106","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},{"id":36723,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36706,"src":"30424:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36721,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"30390:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36724,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30390:40:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36725,"nodeType":"RevertStatement","src":"30383:47:106"}]}}]},"documentation":{"id":36704,"nodeType":"StructuredDocumentation","src":"29915:307:106","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":36729,"implemented":true,"kind":"function","modifiers":[],"name":"toInt64","nameLocation":"30236:7:106","nodeType":"FunctionDefinition","parameters":{"id":36707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36706,"mutability":"mutable","name":"value","nameLocation":"30251:5:106","nodeType":"VariableDeclaration","scope":36729,"src":"30244:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36705,"name":"int256","nodeType":"ElementaryTypeName","src":"30244:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30243:14:106"},"returnParameters":{"id":36710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36709,"mutability":"mutable","name":"downcasted","nameLocation":"30287:10:106","nodeType":"VariableDeclaration","scope":36729,"src":"30281:16:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"},"typeName":{"id":36708,"name":"int64","nodeType":"ElementaryTypeName","src":"30281:5:106","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"visibility":"internal"}],"src":"30280:18:106"},"scope":36952,"src":"30227:220:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36754,"nodeType":"Block","src":"30837:148:106","statements":[{"expression":{"id":36742,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36737,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36735,"src":"30847:10:106","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36740,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36732,"src":"30866:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36739,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30860:5:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int56_$","typeString":"type(int56)"},"typeName":{"id":36738,"name":"int56","nodeType":"ElementaryTypeName","src":"30860:5:106","typeDescriptions":{}}},"id":36741,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30860:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"src":"30847:25:106","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"id":36743,"nodeType":"ExpressionStatement","src":"30847:25:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36744,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36735,"src":"30886:10:106","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36745,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36732,"src":"30900:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"30886:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36753,"nodeType":"IfStatement","src":"30882:97:106","trueBody":{"id":36752,"nodeType":"Block","src":"30907:72:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3536","id":36748,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30958:2:106","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},{"id":36749,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36732,"src":"30962:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36747,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"30928:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36750,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30928:40:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36751,"nodeType":"RevertStatement","src":"30921:47:106"}]}}]},"documentation":{"id":36730,"nodeType":"StructuredDocumentation","src":"30453:307:106","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":36755,"implemented":true,"kind":"function","modifiers":[],"name":"toInt56","nameLocation":"30774:7:106","nodeType":"FunctionDefinition","parameters":{"id":36733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36732,"mutability":"mutable","name":"value","nameLocation":"30789:5:106","nodeType":"VariableDeclaration","scope":36755,"src":"30782:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36731,"name":"int256","nodeType":"ElementaryTypeName","src":"30782:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30781:14:106"},"returnParameters":{"id":36736,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36735,"mutability":"mutable","name":"downcasted","nameLocation":"30825:10:106","nodeType":"VariableDeclaration","scope":36755,"src":"30819:16:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"},"typeName":{"id":36734,"name":"int56","nodeType":"ElementaryTypeName","src":"30819:5:106","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"visibility":"internal"}],"src":"30818:18:106"},"scope":36952,"src":"30765:220:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36780,"nodeType":"Block","src":"31375:148:106","statements":[{"expression":{"id":36768,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36763,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36761,"src":"31385:10:106","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36766,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36758,"src":"31404:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36765,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31398:5:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int48_$","typeString":"type(int48)"},"typeName":{"id":36764,"name":"int48","nodeType":"ElementaryTypeName","src":"31398:5:106","typeDescriptions":{}}},"id":36767,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31398:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"src":"31385:25:106","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"id":36769,"nodeType":"ExpressionStatement","src":"31385:25:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36772,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36770,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36761,"src":"31424:10:106","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36771,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36758,"src":"31438:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"31424:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36779,"nodeType":"IfStatement","src":"31420:97:106","trueBody":{"id":36778,"nodeType":"Block","src":"31445:72:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3438","id":36774,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31496:2:106","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},{"id":36775,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36758,"src":"31500:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36773,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"31466:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36776,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31466:40:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36777,"nodeType":"RevertStatement","src":"31459:47:106"}]}}]},"documentation":{"id":36756,"nodeType":"StructuredDocumentation","src":"30991:307:106","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":36781,"implemented":true,"kind":"function","modifiers":[],"name":"toInt48","nameLocation":"31312:7:106","nodeType":"FunctionDefinition","parameters":{"id":36759,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36758,"mutability":"mutable","name":"value","nameLocation":"31327:5:106","nodeType":"VariableDeclaration","scope":36781,"src":"31320:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36757,"name":"int256","nodeType":"ElementaryTypeName","src":"31320:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31319:14:106"},"returnParameters":{"id":36762,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36761,"mutability":"mutable","name":"downcasted","nameLocation":"31363:10:106","nodeType":"VariableDeclaration","scope":36781,"src":"31357:16:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"},"typeName":{"id":36760,"name":"int48","nodeType":"ElementaryTypeName","src":"31357:5:106","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"visibility":"internal"}],"src":"31356:18:106"},"scope":36952,"src":"31303:220:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36806,"nodeType":"Block","src":"31913:148:106","statements":[{"expression":{"id":36794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36789,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36787,"src":"31923:10:106","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36792,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36784,"src":"31942:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36791,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31936:5:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int40_$","typeString":"type(int40)"},"typeName":{"id":36790,"name":"int40","nodeType":"ElementaryTypeName","src":"31936:5:106","typeDescriptions":{}}},"id":36793,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31936:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"src":"31923:25:106","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"id":36795,"nodeType":"ExpressionStatement","src":"31923:25:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36796,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36787,"src":"31962:10:106","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36797,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36784,"src":"31976:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"31962:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36805,"nodeType":"IfStatement","src":"31958:97:106","trueBody":{"id":36804,"nodeType":"Block","src":"31983:72:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3430","id":36800,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32034:2:106","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},{"id":36801,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36784,"src":"32038:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36799,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"32004:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32004:40:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36803,"nodeType":"RevertStatement","src":"31997:47:106"}]}}]},"documentation":{"id":36782,"nodeType":"StructuredDocumentation","src":"31529:307:106","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":36807,"implemented":true,"kind":"function","modifiers":[],"name":"toInt40","nameLocation":"31850:7:106","nodeType":"FunctionDefinition","parameters":{"id":36785,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36784,"mutability":"mutable","name":"value","nameLocation":"31865:5:106","nodeType":"VariableDeclaration","scope":36807,"src":"31858:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36783,"name":"int256","nodeType":"ElementaryTypeName","src":"31858:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31857:14:106"},"returnParameters":{"id":36788,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36787,"mutability":"mutable","name":"downcasted","nameLocation":"31901:10:106","nodeType":"VariableDeclaration","scope":36807,"src":"31895:16:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"},"typeName":{"id":36786,"name":"int40","nodeType":"ElementaryTypeName","src":"31895:5:106","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"visibility":"internal"}],"src":"31894:18:106"},"scope":36952,"src":"31841:220:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36832,"nodeType":"Block","src":"32451:148:106","statements":[{"expression":{"id":36820,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36815,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36813,"src":"32461:10:106","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36818,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36810,"src":"32480:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36817,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32474:5:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int32_$","typeString":"type(int32)"},"typeName":{"id":36816,"name":"int32","nodeType":"ElementaryTypeName","src":"32474:5:106","typeDescriptions":{}}},"id":36819,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32474:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"src":"32461:25:106","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":36821,"nodeType":"ExpressionStatement","src":"32461:25:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36822,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36813,"src":"32500:10:106","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36823,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36810,"src":"32514:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"32500:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36831,"nodeType":"IfStatement","src":"32496:97:106","trueBody":{"id":36830,"nodeType":"Block","src":"32521:72:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3332","id":36826,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32572:2:106","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},{"id":36827,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36810,"src":"32576:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36825,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"32542:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32542:40:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36829,"nodeType":"RevertStatement","src":"32535:47:106"}]}}]},"documentation":{"id":36808,"nodeType":"StructuredDocumentation","src":"32067:307:106","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":36833,"implemented":true,"kind":"function","modifiers":[],"name":"toInt32","nameLocation":"32388:7:106","nodeType":"FunctionDefinition","parameters":{"id":36811,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36810,"mutability":"mutable","name":"value","nameLocation":"32403:5:106","nodeType":"VariableDeclaration","scope":36833,"src":"32396:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36809,"name":"int256","nodeType":"ElementaryTypeName","src":"32396:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"32395:14:106"},"returnParameters":{"id":36814,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36813,"mutability":"mutable","name":"downcasted","nameLocation":"32439:10:106","nodeType":"VariableDeclaration","scope":36833,"src":"32433:16:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":36812,"name":"int32","nodeType":"ElementaryTypeName","src":"32433:5:106","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"src":"32432:18:106"},"scope":36952,"src":"32379:220:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36858,"nodeType":"Block","src":"32989:148:106","statements":[{"expression":{"id":36846,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36841,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36839,"src":"32999:10:106","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36844,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36836,"src":"33018:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36843,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33012:5:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int24_$","typeString":"type(int24)"},"typeName":{"id":36842,"name":"int24","nodeType":"ElementaryTypeName","src":"33012:5:106","typeDescriptions":{}}},"id":36845,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33012:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"src":"32999:25:106","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"id":36847,"nodeType":"ExpressionStatement","src":"32999:25:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36850,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36848,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36839,"src":"33038:10:106","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36849,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36836,"src":"33052:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"33038:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36857,"nodeType":"IfStatement","src":"33034:97:106","trueBody":{"id":36856,"nodeType":"Block","src":"33059:72:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3234","id":36852,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33110:2:106","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},{"id":36853,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36836,"src":"33114:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36851,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"33080:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36854,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33080:40:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36855,"nodeType":"RevertStatement","src":"33073:47:106"}]}}]},"documentation":{"id":36834,"nodeType":"StructuredDocumentation","src":"32605:307:106","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":36859,"implemented":true,"kind":"function","modifiers":[],"name":"toInt24","nameLocation":"32926:7:106","nodeType":"FunctionDefinition","parameters":{"id":36837,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36836,"mutability":"mutable","name":"value","nameLocation":"32941:5:106","nodeType":"VariableDeclaration","scope":36859,"src":"32934:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36835,"name":"int256","nodeType":"ElementaryTypeName","src":"32934:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"32933:14:106"},"returnParameters":{"id":36840,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36839,"mutability":"mutable","name":"downcasted","nameLocation":"32977:10:106","nodeType":"VariableDeclaration","scope":36859,"src":"32971:16:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":36838,"name":"int24","nodeType":"ElementaryTypeName","src":"32971:5:106","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"32970:18:106"},"scope":36952,"src":"32917:220:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36884,"nodeType":"Block","src":"33527:148:106","statements":[{"expression":{"id":36872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36867,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36865,"src":"33537:10:106","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36870,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36862,"src":"33556:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36869,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33550:5:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int16_$","typeString":"type(int16)"},"typeName":{"id":36868,"name":"int16","nodeType":"ElementaryTypeName","src":"33550:5:106","typeDescriptions":{}}},"id":36871,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33550:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"src":"33537:25:106","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"id":36873,"nodeType":"ExpressionStatement","src":"33537:25:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36874,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36865,"src":"33576:10:106","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36875,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36862,"src":"33590:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"33576:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36883,"nodeType":"IfStatement","src":"33572:97:106","trueBody":{"id":36882,"nodeType":"Block","src":"33597:72:106","statements":[{"errorCall":{"arguments":[{"hexValue":"3136","id":36878,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33648:2:106","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},{"id":36879,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36862,"src":"33652:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36877,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"33618:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33618:40:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36881,"nodeType":"RevertStatement","src":"33611:47:106"}]}}]},"documentation":{"id":36860,"nodeType":"StructuredDocumentation","src":"33143:307:106","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":36885,"implemented":true,"kind":"function","modifiers":[],"name":"toInt16","nameLocation":"33464:7:106","nodeType":"FunctionDefinition","parameters":{"id":36863,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36862,"mutability":"mutable","name":"value","nameLocation":"33479:5:106","nodeType":"VariableDeclaration","scope":36885,"src":"33472:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36861,"name":"int256","nodeType":"ElementaryTypeName","src":"33472:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"33471:14:106"},"returnParameters":{"id":36866,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36865,"mutability":"mutable","name":"downcasted","nameLocation":"33515:10:106","nodeType":"VariableDeclaration","scope":36885,"src":"33509:16:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"},"typeName":{"id":36864,"name":"int16","nodeType":"ElementaryTypeName","src":"33509:5:106","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"visibility":"internal"}],"src":"33508:18:106"},"scope":36952,"src":"33455:220:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36910,"nodeType":"Block","src":"34058:146:106","statements":[{"expression":{"id":36898,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":36893,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36891,"src":"34068:10:106","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":36896,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36888,"src":"34086:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36895,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34081:4:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int8_$","typeString":"type(int8)"},"typeName":{"id":36894,"name":"int8","nodeType":"ElementaryTypeName","src":"34081:4:106","typeDescriptions":{}}},"id":36897,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34081:11:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"src":"34068:24:106","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"id":36899,"nodeType":"ExpressionStatement","src":"34068:24:106"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36900,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36891,"src":"34106:10:106","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":36901,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36888,"src":"34120:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"34106:19:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36909,"nodeType":"IfStatement","src":"34102:96:106","trueBody":{"id":36908,"nodeType":"Block","src":"34127:71:106","statements":[{"errorCall":{"arguments":[{"hexValue":"38","id":36904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34178:1:106","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":36905,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36888,"src":"34181:5:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36903,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35209,"src":"34148:29:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":36906,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34148:39:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36907,"nodeType":"RevertStatement","src":"34141:46:106"}]}}]},"documentation":{"id":36886,"nodeType":"StructuredDocumentation","src":"33681:302:106","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":36911,"implemented":true,"kind":"function","modifiers":[],"name":"toInt8","nameLocation":"33997:6:106","nodeType":"FunctionDefinition","parameters":{"id":36889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36888,"mutability":"mutable","name":"value","nameLocation":"34011:5:106","nodeType":"VariableDeclaration","scope":36911,"src":"34004:12:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36887,"name":"int256","nodeType":"ElementaryTypeName","src":"34004:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"34003:14:106"},"returnParameters":{"id":36892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36891,"mutability":"mutable","name":"downcasted","nameLocation":"34046:10:106","nodeType":"VariableDeclaration","scope":36911,"src":"34041:15:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"},"typeName":{"id":36890,"name":"int8","nodeType":"ElementaryTypeName","src":"34041:4:106","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"visibility":"internal"}],"src":"34040:17:106"},"scope":36952,"src":"33988:216:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36940,"nodeType":"Block","src":"34444:250:106","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":36928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36919,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36914,"src":"34557:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"expression":{"arguments":[{"id":36924,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34578:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":36923,"name":"int256","nodeType":"ElementaryTypeName","src":"34578:6:106","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":36922,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"34573:4:106","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":36925,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34573:12:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":36926,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"34586:3:106","memberName":"max","nodeType":"MemberAccess","src":"34573:16:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36921,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34565:7:106","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":36920,"name":"uint256","nodeType":"ElementaryTypeName","src":"34565:7:106","typeDescriptions":{}}},"id":36927,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34565:25:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34557:33:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":36934,"nodeType":"IfStatement","src":"34553:105:106","trueBody":{"id":36933,"nodeType":"Block","src":"34592:66:106","statements":[{"errorCall":{"arguments":[{"id":36930,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36914,"src":"34641:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":36929,"name":"SafeCastOverflowedUintToInt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35214,"src":"34613:27:106","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":36931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34613:34:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":36932,"nodeType":"RevertStatement","src":"34606:41:106"}]}},{"expression":{"arguments":[{"id":36937,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36914,"src":"34681:5:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":36936,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34674:6:106","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":36935,"name":"int256","nodeType":"ElementaryTypeName","src":"34674:6:106","typeDescriptions":{}}},"id":36938,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34674:13:106","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":36918,"id":36939,"nodeType":"Return","src":"34667:20:106"}]},"documentation":{"id":36912,"nodeType":"StructuredDocumentation","src":"34210:165:106","text":" @dev Converts an unsigned uint256 into a signed int256.\n Requirements:\n - input must be less than or equal to maxInt256."},"id":36941,"implemented":true,"kind":"function","modifiers":[],"name":"toInt256","nameLocation":"34389:8:106","nodeType":"FunctionDefinition","parameters":{"id":36915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36914,"mutability":"mutable","name":"value","nameLocation":"34406:5:106","nodeType":"VariableDeclaration","scope":36941,"src":"34398:13:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":36913,"name":"uint256","nodeType":"ElementaryTypeName","src":"34398:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34397:15:106"},"returnParameters":{"id":36918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36917,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":36941,"src":"34436:6:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36916,"name":"int256","nodeType":"ElementaryTypeName","src":"34436:6:106","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"34435:8:106"},"scope":36952,"src":"34380:314:106","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":36950,"nodeType":"Block","src":"34853:87:106","statements":[{"AST":{"nativeSrc":"34888:46:106","nodeType":"YulBlock","src":"34888:46:106","statements":[{"nativeSrc":"34902:22:106","nodeType":"YulAssignment","src":"34902:22:106","value":{"arguments":[{"arguments":[{"name":"b","nativeSrc":"34921:1:106","nodeType":"YulIdentifier","src":"34921:1:106"}],"functionName":{"name":"iszero","nativeSrc":"34914:6:106","nodeType":"YulIdentifier","src":"34914:6:106"},"nativeSrc":"34914:9:106","nodeType":"YulFunctionCall","src":"34914:9:106"}],"functionName":{"name":"iszero","nativeSrc":"34907:6:106","nodeType":"YulIdentifier","src":"34907:6:106"},"nativeSrc":"34907:17:106","nodeType":"YulFunctionCall","src":"34907:17:106"},"variableNames":[{"name":"u","nativeSrc":"34902:1:106","nodeType":"YulIdentifier","src":"34902:1:106"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":36944,"isOffset":false,"isSlot":false,"src":"34921:1:106","valueSize":1},{"declaration":36947,"isOffset":false,"isSlot":false,"src":"34902:1:106","valueSize":1}],"flags":["memory-safe"],"id":36949,"nodeType":"InlineAssembly","src":"34863:71:106"}]},"documentation":{"id":36942,"nodeType":"StructuredDocumentation","src":"34700:90:106","text":" @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump."},"id":36951,"implemented":true,"kind":"function","modifiers":[],"name":"toUint","nameLocation":"34804:6:106","nodeType":"FunctionDefinition","parameters":{"id":36945,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36944,"mutability":"mutable","name":"b","nameLocation":"34816:1:106","nodeType":"VariableDeclaration","scope":36951,"src":"34811:6:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":36943,"name":"bool","nodeType":"ElementaryTypeName","src":"34811:4:106","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"34810:8:106"},"returnParameters":{"id":36948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36947,"mutability":"mutable","name":"u","nameLocation":"34850:1:106","nodeType":"VariableDeclaration","scope":36951,"src":"34842:9:106","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":36946,"name":"uint256","nodeType":"ElementaryTypeName","src":"34842:7:106","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34841:11:106"},"scope":36952,"src":"34795:145:106","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":36953,"src":"769:34173:106","usedErrors":[35197,35202,35209,35214],"usedEvents":[]}],"src":"192:34751:106"},"id":106},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","exportedSymbols":{"SafeCast":[36952],"SignedMath":[37096]},"id":37097,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":36954,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:107"},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./SafeCast.sol","id":36956,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":37097,"sourceUnit":36953,"src":"135:40:107","symbolAliases":[{"foreign":{"id":36955,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"143:8:107","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"SignedMath","contractDependencies":[],"contractKind":"library","documentation":{"id":36957,"nodeType":"StructuredDocumentation","src":"177:80:107","text":" @dev Standard signed math utilities missing in the Solidity language."},"fullyImplemented":true,"id":37096,"linearizedBaseContracts":[37096],"name":"SignedMath","nameLocation":"266:10:107","nodeType":"ContractDefinition","nodes":[{"body":{"id":36986,"nodeType":"Block","src":"746:215:107","statements":[{"id":36985,"nodeType":"UncheckedBlock","src":"756:199:107","statements":[{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36969,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36964,"src":"894:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36981,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":36972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36970,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36962,"src":"900:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":36971,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36964,"src":"904:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"900:5:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":36973,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"899:7:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"arguments":[{"id":36978,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36960,"src":"932:9:107","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":36976,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"916:8:107","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":36977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"925:6:107","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":36951,"src":"916:15:107","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":36979,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"916:26:107","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":36975,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"909:6:107","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":36974,"name":"int256","nodeType":"ElementaryTypeName","src":"909:6:107","typeDescriptions":{}}},"id":36980,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"909:34:107","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"899:44:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":36982,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"898:46:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"894:50:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":36968,"id":36984,"nodeType":"Return","src":"887:57:107"}]}]},"documentation":{"id":36958,"nodeType":"StructuredDocumentation","src":"283:374:107","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":36987,"implemented":true,"kind":"function","modifiers":[],"name":"ternary","nameLocation":"671:7:107","nodeType":"FunctionDefinition","parameters":{"id":36965,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36960,"mutability":"mutable","name":"condition","nameLocation":"684:9:107","nodeType":"VariableDeclaration","scope":36987,"src":"679:14:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":36959,"name":"bool","nodeType":"ElementaryTypeName","src":"679:4:107","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":36962,"mutability":"mutable","name":"a","nameLocation":"702:1:107","nodeType":"VariableDeclaration","scope":36987,"src":"695:8:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36961,"name":"int256","nodeType":"ElementaryTypeName","src":"695:6:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":36964,"mutability":"mutable","name":"b","nameLocation":"712:1:107","nodeType":"VariableDeclaration","scope":36987,"src":"705:8:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36963,"name":"int256","nodeType":"ElementaryTypeName","src":"705:6:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"678:36:107"},"returnParameters":{"id":36968,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36967,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":36987,"src":"738:6:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36966,"name":"int256","nodeType":"ElementaryTypeName","src":"738:6:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"737:8:107"},"scope":37096,"src":"662:299:107","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":37005,"nodeType":"Block","src":"1102:44:107","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":37000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":36998,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36990,"src":"1127:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":36999,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36992,"src":"1131:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1127:5:107","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":37001,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36990,"src":"1134:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":37002,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36992,"src":"1137:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":36997,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36987,"src":"1119:7:107","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (bool,int256,int256) pure returns (int256)"}},"id":37003,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1119:20:107","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":36996,"id":37004,"nodeType":"Return","src":"1112:27:107"}]},"documentation":{"id":36988,"nodeType":"StructuredDocumentation","src":"967:66:107","text":" @dev Returns the largest of two signed numbers."},"id":37006,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"1047:3:107","nodeType":"FunctionDefinition","parameters":{"id":36993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36990,"mutability":"mutable","name":"a","nameLocation":"1058:1:107","nodeType":"VariableDeclaration","scope":37006,"src":"1051:8:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36989,"name":"int256","nodeType":"ElementaryTypeName","src":"1051:6:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":36992,"mutability":"mutable","name":"b","nameLocation":"1068:1:107","nodeType":"VariableDeclaration","scope":37006,"src":"1061:8:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36991,"name":"int256","nodeType":"ElementaryTypeName","src":"1061:6:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1050:20:107"},"returnParameters":{"id":36996,"nodeType":"ParameterList","parameters":[{"constant":false,"id":36995,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":37006,"src":"1094:6:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":36994,"name":"int256","nodeType":"ElementaryTypeName","src":"1094:6:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1093:8:107"},"scope":37096,"src":"1038:108:107","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":37024,"nodeType":"Block","src":"1288:44:107","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":37019,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":37017,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37009,"src":"1313:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":37018,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37011,"src":"1317:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1313:5:107","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":37020,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37009,"src":"1320:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":37021,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37011,"src":"1323:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":37016,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36987,"src":"1305:7:107","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (bool,int256,int256) pure returns (int256)"}},"id":37022,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1305:20:107","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":37015,"id":37023,"nodeType":"Return","src":"1298:27:107"}]},"documentation":{"id":37007,"nodeType":"StructuredDocumentation","src":"1152:67:107","text":" @dev Returns the smallest of two signed numbers."},"id":37025,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"1233:3:107","nodeType":"FunctionDefinition","parameters":{"id":37012,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37009,"mutability":"mutable","name":"a","nameLocation":"1244:1:107","nodeType":"VariableDeclaration","scope":37025,"src":"1237:8:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":37008,"name":"int256","nodeType":"ElementaryTypeName","src":"1237:6:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":37011,"mutability":"mutable","name":"b","nameLocation":"1254:1:107","nodeType":"VariableDeclaration","scope":37025,"src":"1247:8:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":37010,"name":"int256","nodeType":"ElementaryTypeName","src":"1247:6:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1236:20:107"},"returnParameters":{"id":37015,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37014,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":37025,"src":"1280:6:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":37013,"name":"int256","nodeType":"ElementaryTypeName","src":"1280:6:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1279:8:107"},"scope":37096,"src":"1224:108:107","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":37068,"nodeType":"Block","src":"1537:162:107","statements":[{"assignments":[37036],"declarations":[{"constant":false,"id":37036,"mutability":"mutable","name":"x","nameLocation":"1606:1:107","nodeType":"VariableDeclaration","scope":37068,"src":"1599:8:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":37035,"name":"int256","nodeType":"ElementaryTypeName","src":"1599:6:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":37049,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":37048,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":37039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":37037,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37028,"src":"1611:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":37038,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37030,"src":"1615:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1611:5:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":37040,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1610:7:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":37046,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":37043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":37041,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37028,"src":"1622:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":37042,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37030,"src":"1626:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1622:5:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":37044,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1621:7:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":37045,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1632:1:107","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1621:12:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":37047,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1620:14:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1610:24:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"1599:35:107"},{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":37066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":37050,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37036,"src":"1651:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":37064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":37058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":37055,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37036,"src":"1671:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":37054,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1663:7:107","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":37053,"name":"uint256","nodeType":"ElementaryTypeName","src":"1663:7:107","typeDescriptions":{}}},"id":37056,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1663:10:107","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":37057,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1677:3:107","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"1663:17:107","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":37052,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1656:6:107","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":37051,"name":"int256","nodeType":"ElementaryTypeName","src":"1656:6:107","typeDescriptions":{}}},"id":37059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1656:25:107","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":37062,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":37060,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37028,"src":"1685:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":37061,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37030,"src":"1689:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1685:5:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":37063,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1684:7:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1656:35:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":37065,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1655:37:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1651:41:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":37034,"id":37067,"nodeType":"Return","src":"1644:48:107"}]},"documentation":{"id":37026,"nodeType":"StructuredDocumentation","src":"1338:126:107","text":" @dev Returns the average of two signed numbers without overflow.\n The result is rounded towards zero."},"id":37069,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"1478:7:107","nodeType":"FunctionDefinition","parameters":{"id":37031,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37028,"mutability":"mutable","name":"a","nameLocation":"1493:1:107","nodeType":"VariableDeclaration","scope":37069,"src":"1486:8:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":37027,"name":"int256","nodeType":"ElementaryTypeName","src":"1486:6:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":37030,"mutability":"mutable","name":"b","nameLocation":"1503:1:107","nodeType":"VariableDeclaration","scope":37069,"src":"1496:8:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":37029,"name":"int256","nodeType":"ElementaryTypeName","src":"1496:6:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1485:20:107"},"returnParameters":{"id":37034,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37033,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":37069,"src":"1529:6:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":37032,"name":"int256","nodeType":"ElementaryTypeName","src":"1529:6:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1528:8:107"},"scope":37096,"src":"1469:230:107","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":37094,"nodeType":"Block","src":"1843:767:107","statements":[{"id":37093,"nodeType":"UncheckedBlock","src":"1853:751:107","statements":[{"assignments":[37078],"declarations":[{"constant":false,"id":37078,"mutability":"mutable","name":"mask","nameLocation":"2424:4:107","nodeType":"VariableDeclaration","scope":37093,"src":"2417:11:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":37077,"name":"int256","nodeType":"ElementaryTypeName","src":"2417:6:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":37082,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":37081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":37079,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37072,"src":"2431:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":37080,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2436:3:107","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"2431:8:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"2417:22:107"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":37090,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":37087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":37085,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37072,"src":"2576:1:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":37086,"name":"mask","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37078,"src":"2580:4:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2576:8:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":37088,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2575:10:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":37089,"name":"mask","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37078,"src":"2588:4:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2575:17:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":37084,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2567:7:107","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":37083,"name":"uint256","nodeType":"ElementaryTypeName","src":"2567:7:107","typeDescriptions":{}}},"id":37091,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2567:26:107","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":37076,"id":37092,"nodeType":"Return","src":"2560:33:107"}]}]},"documentation":{"id":37070,"nodeType":"StructuredDocumentation","src":"1705:78:107","text":" @dev Returns the absolute unsigned value of a signed value."},"id":37095,"implemented":true,"kind":"function","modifiers":[],"name":"abs","nameLocation":"1797:3:107","nodeType":"FunctionDefinition","parameters":{"id":37073,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37072,"mutability":"mutable","name":"n","nameLocation":"1808:1:107","nodeType":"VariableDeclaration","scope":37095,"src":"1801:8:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":37071,"name":"int256","nodeType":"ElementaryTypeName","src":"1801:6:107","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1800:10:107"},"returnParameters":{"id":37076,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37075,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":37095,"src":"1834:7:107","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37074,"name":"uint256","nodeType":"ElementaryTypeName","src":"1834:7:107","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1833:9:107"},"scope":37096,"src":"1788:822:107","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":37097,"src":"258:2354:107","usedErrors":[],"usedEvents":[]}],"src":"109:2504:107"},"id":107},"@openzeppelin/contracts/utils/types/Time.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/types/Time.sol","exportedSymbols":{"Math":[35187],"SafeCast":[36952],"Time":[37370]},"id":37371,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":37098,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"104:24:108"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"../math/Math.sol","id":37100,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":37371,"sourceUnit":35188,"src":"130:38:108","symbolAliases":[{"foreign":{"id":37099,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"138:4:108","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"../math/SafeCast.sol","id":37102,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":37371,"sourceUnit":36953,"src":"169:46:108","symbolAliases":[{"foreign":{"id":37101,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"177:8:108","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Time","contractDependencies":[],"contractKind":"library","documentation":{"id":37103,"nodeType":"StructuredDocumentation","src":"217:422:108","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":37370,"linearizedBaseContracts":[37370],"name":"Time","nameLocation":"648:4:108","nodeType":"ContractDefinition","nodes":[{"global":false,"id":37105,"libraryName":{"id":37104,"name":"Time","nameLocations":["665:4:108"],"nodeType":"IdentifierPath","referencedDeclaration":37370,"src":"665:4:108"},"nodeType":"UsingForDirective","src":"659:17:108"},{"body":{"id":37117,"nodeType":"Block","src":"802:58:108","statements":[{"expression":{"arguments":[{"expression":{"id":37113,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"837:5:108","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":37114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"843:9:108","memberName":"timestamp","nodeType":"MemberAccess","src":"837:15:108","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":37111,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"819:8:108","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":37112,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"828:8:108","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":35942,"src":"819:17:108","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":37115,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"819:34:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":37110,"id":37116,"nodeType":"Return","src":"812:41:108"}]},"documentation":{"id":37106,"nodeType":"StructuredDocumentation","src":"682:63:108","text":" @dev Get the block timestamp as a Timepoint."},"id":37118,"implemented":true,"kind":"function","modifiers":[],"name":"timestamp","nameLocation":"759:9:108","nodeType":"FunctionDefinition","parameters":{"id":37107,"nodeType":"ParameterList","parameters":[],"src":"768:2:108"},"returnParameters":{"id":37110,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37109,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":37118,"src":"794:6:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":37108,"name":"uint48","nodeType":"ElementaryTypeName","src":"794:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"793:8:108"},"scope":37370,"src":"750:110:108","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":37130,"nodeType":"Block","src":"985:55:108","statements":[{"expression":{"arguments":[{"expression":{"id":37126,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"1020:5:108","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":37127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1026:6:108","memberName":"number","nodeType":"MemberAccess","src":"1020:12:108","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":37124,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"1002:8:108","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$36952_$","typeString":"type(library SafeCast)"}},"id":37125,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1011:8:108","memberName":"toUint48","nodeType":"MemberAccess","referencedDeclaration":35942,"src":"1002:17:108","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint48_$","typeString":"function (uint256) pure returns (uint48)"}},"id":37128,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1002:31:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":37123,"id":37129,"nodeType":"Return","src":"995:38:108"}]},"documentation":{"id":37119,"nodeType":"StructuredDocumentation","src":"866:60:108","text":" @dev Get the block number as a Timepoint."},"id":37131,"implemented":true,"kind":"function","modifiers":[],"name":"blockNumber","nameLocation":"940:11:108","nodeType":"FunctionDefinition","parameters":{"id":37120,"nodeType":"ParameterList","parameters":[],"src":"951:2:108"},"returnParameters":{"id":37123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37122,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":37131,"src":"977:6:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":37121,"name":"uint48","nodeType":"ElementaryTypeName","src":"977:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"976:8:108"},"scope":37370,"src":"931:109:108","stateMutability":"view","virtual":false,"visibility":"internal"},{"canonicalName":"Time.Delay","id":37133,"name":"Delay","nameLocation":"2376:5:108","nodeType":"UserDefinedValueTypeDefinition","src":"2371:22:108","underlyingType":{"id":37132,"name":"uint112","nodeType":"ElementaryTypeName","src":"2385:7:108","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}},{"body":{"id":37147,"nodeType":"Block","src":"2571:44:108","statements":[{"expression":{"arguments":[{"id":37144,"name":"duration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37136,"src":"2599:8:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":37142,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37133,"src":"2588:5:108","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$37133_$","typeString":"type(Time.Delay)"}},"id":37143,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2594:4:108","memberName":"wrap","nodeType":"MemberAccess","src":"2588:10:108","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$37133_$","typeString":"function (uint112) pure returns (Time.Delay)"}},"id":37145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2588:20:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"functionReturnParameters":37141,"id":37146,"nodeType":"Return","src":"2581:27:108"}]},"documentation":{"id":37134,"nodeType":"StructuredDocumentation","src":"2399:103:108","text":" @dev Wrap a duration into a Delay to add the one-step \"update in the future\" feature"},"id":37148,"implemented":true,"kind":"function","modifiers":[],"name":"toDelay","nameLocation":"2516:7:108","nodeType":"FunctionDefinition","parameters":{"id":37137,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37136,"mutability":"mutable","name":"duration","nameLocation":"2531:8:108","nodeType":"VariableDeclaration","scope":37148,"src":"2524:15:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37135,"name":"uint32","nodeType":"ElementaryTypeName","src":"2524:6:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"2523:17:108"},"returnParameters":{"id":37141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37140,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":37148,"src":"2564:5:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"},"typeName":{"id":37139,"nodeType":"UserDefinedTypeName","pathNode":{"id":37138,"name":"Delay","nameLocations":["2564:5:108"],"nodeType":"IdentifierPath","referencedDeclaration":37133,"src":"2564:5:108"},"referencedDeclaration":37133,"src":"2564:5:108","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"2563:7:108"},"scope":37370,"src":"2507:108:108","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":37185,"nodeType":"Block","src":"3015:159:108","statements":[{"expression":{"id":37170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":37163,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37157,"src":"3026:11:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":37164,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37159,"src":"3039:10:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":37165,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37161,"src":"3051:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":37166,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"3025:33:108","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":37167,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37152,"src":"3061:4:108","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"id":37168,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3066:6:108","memberName":"unpack","nodeType":"MemberAccess","referencedDeclaration":37331,"src":"3061:11:108","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$37133_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$37133_$","typeString":"function (Time.Delay) pure returns (uint32,uint32,uint48)"}},"id":37169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3061:13:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"src":"3025:49:108","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37171,"nodeType":"ExpressionStatement","src":"3025:49:108"},{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":37174,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":37172,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37161,"src":"3091:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":37173,"name":"timepoint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37154,"src":"3101:9:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"3091:19:108","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"components":[{"id":37179,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37157,"src":"3135:11:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":37180,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37159,"src":"3148:10:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":37181,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37161,"src":"3160:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":37182,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3134:33:108","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"id":37183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"3091:76:108","trueExpression":{"components":[{"id":37175,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37159,"src":"3114:10:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"hexValue":"30","id":37176,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3126:1:108","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":37177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3129:1:108","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":37178,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3113:18:108","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":37162,"id":37184,"nodeType":"Return","src":"3084:83:108"}]},"documentation":{"id":37149,"nodeType":"StructuredDocumentation","src":"2621:241:108","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":37186,"implemented":true,"kind":"function","modifiers":[],"name":"_getFullAt","nameLocation":"2876:10:108","nodeType":"FunctionDefinition","parameters":{"id":37155,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37152,"mutability":"mutable","name":"self","nameLocation":"2902:4:108","nodeType":"VariableDeclaration","scope":37186,"src":"2896:10:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"},"typeName":{"id":37151,"nodeType":"UserDefinedTypeName","pathNode":{"id":37150,"name":"Delay","nameLocations":["2896:5:108"],"nodeType":"IdentifierPath","referencedDeclaration":37133,"src":"2896:5:108"},"referencedDeclaration":37133,"src":"2896:5:108","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":37154,"mutability":"mutable","name":"timepoint","nameLocation":"2923:9:108","nodeType":"VariableDeclaration","scope":37186,"src":"2916:16:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":37153,"name":"uint48","nodeType":"ElementaryTypeName","src":"2916:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2886:52:108"},"returnParameters":{"id":37162,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37157,"mutability":"mutable","name":"valueBefore","nameLocation":"2968:11:108","nodeType":"VariableDeclaration","scope":37186,"src":"2961:18:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37156,"name":"uint32","nodeType":"ElementaryTypeName","src":"2961:6:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":37159,"mutability":"mutable","name":"valueAfter","nameLocation":"2988:10:108","nodeType":"VariableDeclaration","scope":37186,"src":"2981:17:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37158,"name":"uint32","nodeType":"ElementaryTypeName","src":"2981:6:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":37161,"mutability":"mutable","name":"effect","nameLocation":"3007:6:108","nodeType":"VariableDeclaration","scope":37186,"src":"3000:13:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":37160,"name":"uint48","nodeType":"ElementaryTypeName","src":"3000:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"2960:54:108"},"scope":37370,"src":"2867:307:108","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":37205,"nodeType":"Block","src":"3498:53:108","statements":[{"expression":{"arguments":[{"id":37200,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37190,"src":"3526:4:108","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},{"arguments":[],"expression":{"argumentTypes":[],"id":37201,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37118,"src":"3532:9:108","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":37202,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3532:11:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":37199,"name":"_getFullAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37186,"src":"3515:10:108","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Delay_$37133_$_t_uint48_$returns$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"function (Time.Delay,uint48) pure returns (uint32,uint32,uint48)"}},"id":37203,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3515:29:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":37198,"id":37204,"nodeType":"Return","src":"3508:36:108"}]},"documentation":{"id":37187,"nodeType":"StructuredDocumentation","src":"3180:207:108","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":37206,"implemented":true,"kind":"function","modifiers":[],"name":"getFull","nameLocation":"3401:7:108","nodeType":"FunctionDefinition","parameters":{"id":37191,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37190,"mutability":"mutable","name":"self","nameLocation":"3415:4:108","nodeType":"VariableDeclaration","scope":37206,"src":"3409:10:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"},"typeName":{"id":37189,"nodeType":"UserDefinedTypeName","pathNode":{"id":37188,"name":"Delay","nameLocations":["3409:5:108"],"nodeType":"IdentifierPath","referencedDeclaration":37133,"src":"3409:5:108"},"referencedDeclaration":37133,"src":"3409:5:108","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"3408:12:108"},"returnParameters":{"id":37198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37193,"mutability":"mutable","name":"valueBefore","nameLocation":"3451:11:108","nodeType":"VariableDeclaration","scope":37206,"src":"3444:18:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37192,"name":"uint32","nodeType":"ElementaryTypeName","src":"3444:6:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":37195,"mutability":"mutable","name":"valueAfter","nameLocation":"3471:10:108","nodeType":"VariableDeclaration","scope":37206,"src":"3464:17:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37194,"name":"uint32","nodeType":"ElementaryTypeName","src":"3464:6:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":37197,"mutability":"mutable","name":"effect","nameLocation":"3490:6:108","nodeType":"VariableDeclaration","scope":37206,"src":"3483:13:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":37196,"name":"uint48","nodeType":"ElementaryTypeName","src":"3483:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"3443:54:108"},"scope":37370,"src":"3392:159:108","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":37223,"nodeType":"Block","src":"3664:74:108","statements":[{"assignments":[37216,null,null],"declarations":[{"constant":false,"id":37216,"mutability":"mutable","name":"delay","nameLocation":"3682:5:108","nodeType":"VariableDeclaration","scope":37223,"src":"3675:12:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37215,"name":"uint32","nodeType":"ElementaryTypeName","src":"3675:6:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},null,null],"id":37220,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":37217,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37210,"src":"3695:4:108","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"id":37218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3700:7:108","memberName":"getFull","nodeType":"MemberAccess","referencedDeclaration":37206,"src":"3695:12:108","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$37133_$returns$_t_uint32_$_t_uint32_$_t_uint48_$attached_to$_t_userDefinedValueType$_Delay_$37133_$","typeString":"function (Time.Delay) view returns (uint32,uint32,uint48)"}},"id":37219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3695:14:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"nodeType":"VariableDeclarationStatement","src":"3674:35:108"},{"expression":{"id":37221,"name":"delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37216,"src":"3726:5:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":37214,"id":37222,"nodeType":"Return","src":"3719:12:108"}]},"documentation":{"id":37207,"nodeType":"StructuredDocumentation","src":"3557:46:108","text":" @dev Get the current value."},"id":37224,"implemented":true,"kind":"function","modifiers":[],"name":"get","nameLocation":"3617:3:108","nodeType":"FunctionDefinition","parameters":{"id":37211,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37210,"mutability":"mutable","name":"self","nameLocation":"3627:4:108","nodeType":"VariableDeclaration","scope":37224,"src":"3621:10:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"},"typeName":{"id":37209,"nodeType":"UserDefinedTypeName","pathNode":{"id":37208,"name":"Delay","nameLocations":["3621:5:108"],"nodeType":"IdentifierPath","referencedDeclaration":37133,"src":"3621:5:108"},"referencedDeclaration":37133,"src":"3621:5:108","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"3620:12:108"},"returnParameters":{"id":37214,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37213,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":37224,"src":"3656:6:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37212,"name":"uint32","nodeType":"ElementaryTypeName","src":"3656:6:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"3655:8:108"},"scope":37370,"src":"3608:130:108","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":37279,"nodeType":"Block","src":"4188:234:108","statements":[{"assignments":[37241],"declarations":[{"constant":false,"id":37241,"mutability":"mutable","name":"value","nameLocation":"4205:5:108","nodeType":"VariableDeclaration","scope":37279,"src":"4198:12:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37240,"name":"uint32","nodeType":"ElementaryTypeName","src":"4198:6:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":37245,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":37242,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37228,"src":"4213:4:108","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"id":37243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4218:3:108","memberName":"get","nodeType":"MemberAccess","referencedDeclaration":37224,"src":"4213:8:108","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_Delay_$37133_$returns$_t_uint32_$attached_to$_t_userDefinedValueType$_Delay_$37133_$","typeString":"function (Time.Delay) view returns (uint32)"}},"id":37244,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4213:10:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"4198:25:108"},{"assignments":[37247],"declarations":[{"constant":false,"id":37247,"mutability":"mutable","name":"setback","nameLocation":"4240:7:108","nodeType":"VariableDeclaration","scope":37279,"src":"4233:14:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37246,"name":"uint32","nodeType":"ElementaryTypeName","src":"4233:6:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":37263,"initialValue":{"arguments":[{"arguments":[{"id":37252,"name":"minSetback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37232,"src":"4266:10:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":37255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":37253,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37241,"src":"4278:5:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":37254,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37230,"src":"4286:8:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4278:16:108","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"30","id":37259,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4316:1:108","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"id":37260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"4278:39:108","trueExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":37258,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":37256,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37241,"src":"4297:5:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":37257,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37230,"src":"4305:8:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4297:16:108","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":37250,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"4257:4:108","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":37251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4262:3:108","memberName":"max","nodeType":"MemberAccess","referencedDeclaration":33853,"src":"4257:8:108","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":37261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4257:61:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":37249,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4250:6:108","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":37248,"name":"uint32","nodeType":"ElementaryTypeName","src":"4250:6:108","typeDescriptions":{}}},"id":37262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4250:69:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"4233:86:108"},{"expression":{"id":37269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":37264,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37238,"src":"4329:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint48","typeString":"uint48"},"id":37268,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":37265,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37118,"src":"4338:9:108","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint48_$","typeString":"function () view returns (uint48)"}},"id":37266,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4338:11:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":37267,"name":"setback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37247,"src":"4352:7:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4338:21:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"4329:30:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":37270,"nodeType":"ExpressionStatement","src":"4329:30:108"},{"expression":{"components":[{"arguments":[{"id":37272,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37241,"src":"4382:5:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":37273,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37230,"src":"4389:8:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":37274,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37238,"src":"4399:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":37271,"name":"pack","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37369,"src":"4377:4:108","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$_t_uint32_$_t_uint48_$returns$_t_userDefinedValueType$_Delay_$37133_$","typeString":"function (uint32,uint32,uint48) pure returns (Time.Delay)"}},"id":37275,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4377:29:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},{"id":37276,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37238,"src":"4408:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":37277,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4376:39:108","typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_Delay_$37133_$_t_uint48_$","typeString":"tuple(Time.Delay,uint48)"}},"functionReturnParameters":37239,"id":37278,"nodeType":"Return","src":"4369:46:108"}]},"documentation":{"id":37225,"nodeType":"StructuredDocumentation","src":"3744:283:108","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":37280,"implemented":true,"kind":"function","modifiers":[],"name":"withUpdate","nameLocation":"4041:10:108","nodeType":"FunctionDefinition","parameters":{"id":37233,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37228,"mutability":"mutable","name":"self","nameLocation":"4067:4:108","nodeType":"VariableDeclaration","scope":37280,"src":"4061:10:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"},"typeName":{"id":37227,"nodeType":"UserDefinedTypeName","pathNode":{"id":37226,"name":"Delay","nameLocations":["4061:5:108"],"nodeType":"IdentifierPath","referencedDeclaration":37133,"src":"4061:5:108"},"referencedDeclaration":37133,"src":"4061:5:108","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":37230,"mutability":"mutable","name":"newValue","nameLocation":"4088:8:108","nodeType":"VariableDeclaration","scope":37280,"src":"4081:15:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37229,"name":"uint32","nodeType":"ElementaryTypeName","src":"4081:6:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":37232,"mutability":"mutable","name":"minSetback","nameLocation":"4113:10:108","nodeType":"VariableDeclaration","scope":37280,"src":"4106:17:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37231,"name":"uint32","nodeType":"ElementaryTypeName","src":"4106:6:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4051:78:108"},"returnParameters":{"id":37239,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37236,"mutability":"mutable","name":"updatedDelay","nameLocation":"4159:12:108","nodeType":"VariableDeclaration","scope":37280,"src":"4153:18:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"},"typeName":{"id":37235,"nodeType":"UserDefinedTypeName","pathNode":{"id":37234,"name":"Delay","nameLocations":["4153:5:108"],"nodeType":"IdentifierPath","referencedDeclaration":37133,"src":"4153:5:108"},"referencedDeclaration":37133,"src":"4153:5:108","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"visibility":"internal"},{"constant":false,"id":37238,"mutability":"mutable","name":"effect","nameLocation":"4180:6:108","nodeType":"VariableDeclaration","scope":37280,"src":"4173:13:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":37237,"name":"uint48","nodeType":"ElementaryTypeName","src":"4173:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4152:35:108"},"scope":37370,"src":"4032:390:108","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":37330,"nodeType":"Block","src":"4655:212:108","statements":[{"assignments":[37294],"declarations":[{"constant":false,"id":37294,"mutability":"mutable","name":"raw","nameLocation":"4673:3:108","nodeType":"VariableDeclaration","scope":37330,"src":"4665:11:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":37293,"name":"uint112","nodeType":"ElementaryTypeName","src":"4665:7:108","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"id":37299,"initialValue":{"arguments":[{"id":37297,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37284,"src":"4692:4:108","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}],"expression":{"id":37295,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37133,"src":"4679:5:108","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$37133_$","typeString":"type(Time.Delay)"}},"id":37296,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4685:6:108","memberName":"unwrap","nodeType":"MemberAccess","src":"4679:12:108","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Delay_$37133_$returns$_t_uint112_$","typeString":"function (Time.Delay) pure returns (uint112)"}},"id":37298,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4679:18:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"VariableDeclarationStatement","src":"4665:32:108"},{"expression":{"id":37305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":37300,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37289,"src":"4708:10:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":37303,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37294,"src":"4728:3:108","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":37302,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4721:6:108","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":37301,"name":"uint32","nodeType":"ElementaryTypeName","src":"4721:6:108","typeDescriptions":{}}},"id":37304,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4721:11:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4708:24:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":37306,"nodeType":"ExpressionStatement","src":"4708:24:108"},{"expression":{"id":37314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":37307,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37287,"src":"4742:11:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":37312,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":37310,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37294,"src":"4763:3:108","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3332","id":37311,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4770:2:108","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"4763:9:108","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":37309,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4756:6:108","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":37308,"name":"uint32","nodeType":"ElementaryTypeName","src":"4756:6:108","typeDescriptions":{}}},"id":37313,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4756:17:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"4742:31:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":37315,"nodeType":"ExpressionStatement","src":"4742:31:108"},{"expression":{"id":37323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":37316,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37291,"src":"4783:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":37321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":37319,"name":"raw","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37294,"src":"4799:3:108","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3634","id":37320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4806:2:108","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"4799:9:108","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"id":37318,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4792:6:108","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":37317,"name":"uint48","nodeType":"ElementaryTypeName","src":"4792:6:108","typeDescriptions":{}}},"id":37322,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4792:17:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"4783:26:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"id":37324,"nodeType":"ExpressionStatement","src":"4783:26:108"},{"expression":{"components":[{"id":37325,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37287,"src":"4828:11:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":37326,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37289,"src":"4841:10:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":37327,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37291,"src":"4853:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"id":37328,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4827:33:108","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint32_$_t_uint32_$_t_uint48_$","typeString":"tuple(uint32,uint32,uint48)"}},"functionReturnParameters":37292,"id":37329,"nodeType":"Return","src":"4820:40:108"}]},"documentation":{"id":37281,"nodeType":"StructuredDocumentation","src":"4428:117:108","text":" @dev Split a delay into its components: valueBefore, valueAfter and effect (transition timepoint)."},"id":37331,"implemented":true,"kind":"function","modifiers":[],"name":"unpack","nameLocation":"4559:6:108","nodeType":"FunctionDefinition","parameters":{"id":37285,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37284,"mutability":"mutable","name":"self","nameLocation":"4572:4:108","nodeType":"VariableDeclaration","scope":37331,"src":"4566:10:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"},"typeName":{"id":37283,"nodeType":"UserDefinedTypeName","pathNode":{"id":37282,"name":"Delay","nameLocations":["4566:5:108"],"nodeType":"IdentifierPath","referencedDeclaration":37133,"src":"4566:5:108"},"referencedDeclaration":37133,"src":"4566:5:108","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"4565:12:108"},"returnParameters":{"id":37292,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37287,"mutability":"mutable","name":"valueBefore","nameLocation":"4608:11:108","nodeType":"VariableDeclaration","scope":37331,"src":"4601:18:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37286,"name":"uint32","nodeType":"ElementaryTypeName","src":"4601:6:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":37289,"mutability":"mutable","name":"valueAfter","nameLocation":"4628:10:108","nodeType":"VariableDeclaration","scope":37331,"src":"4621:17:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37288,"name":"uint32","nodeType":"ElementaryTypeName","src":"4621:6:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":37291,"mutability":"mutable","name":"effect","nameLocation":"4647:6:108","nodeType":"VariableDeclaration","scope":37331,"src":"4640:13:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":37290,"name":"uint48","nodeType":"ElementaryTypeName","src":"4640:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4600:54:108"},"scope":37370,"src":"4550:317:108","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":37368,"nodeType":"Block","src":"5040:112:108","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":37365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":37360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":37351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":37348,"name":"effect","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37338,"src":"5077:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint48","typeString":"uint48"}],"id":37347,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5069:7:108","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":37346,"name":"uint112","nodeType":"ElementaryTypeName","src":"5069:7:108","typeDescriptions":{}}},"id":37349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5069:15:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":37350,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5088:2:108","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"5069:21:108","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"id":37352,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5068:23:108","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint112","typeString":"uint112"},"id":37358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":37355,"name":"valueBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37334,"src":"5103:11:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":37354,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5095:7:108","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":37353,"name":"uint112","nodeType":"ElementaryTypeName","src":"5095:7:108","typeDescriptions":{}}},"id":37356,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5095:20:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":37357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5119:2:108","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"5095:26:108","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"id":37359,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5094:28:108","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"5068:54:108","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"id":37363,"name":"valueAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37336,"src":"5133:10:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":37362,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5125:7:108","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":37361,"name":"uint112","nodeType":"ElementaryTypeName","src":"5125:7:108","typeDescriptions":{}}},"id":37364,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5125:19:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"5068:76:108","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint112","typeString":"uint112"}],"expression":{"id":37344,"name":"Delay","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37133,"src":"5057:5:108","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Delay_$37133_$","typeString":"type(Time.Delay)"}},"id":37345,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5063:4:108","memberName":"wrap","nodeType":"MemberAccess","src":"5057:10:108","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint112_$returns$_t_userDefinedValueType$_Delay_$37133_$","typeString":"function (uint112) pure returns (Time.Delay)"}},"id":37366,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5057:88:108","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"functionReturnParameters":37343,"id":37367,"nodeType":"Return","src":"5050:95:108"}]},"documentation":{"id":37332,"nodeType":"StructuredDocumentation","src":"4873:64:108","text":" @dev pack the components into a Delay object."},"id":37369,"implemented":true,"kind":"function","modifiers":[],"name":"pack","nameLocation":"4951:4:108","nodeType":"FunctionDefinition","parameters":{"id":37339,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37334,"mutability":"mutable","name":"valueBefore","nameLocation":"4963:11:108","nodeType":"VariableDeclaration","scope":37369,"src":"4956:18:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37333,"name":"uint32","nodeType":"ElementaryTypeName","src":"4956:6:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":37336,"mutability":"mutable","name":"valueAfter","nameLocation":"4983:10:108","nodeType":"VariableDeclaration","scope":37369,"src":"4976:17:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37335,"name":"uint32","nodeType":"ElementaryTypeName","src":"4976:6:108","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":37338,"mutability":"mutable","name":"effect","nameLocation":"5002:6:108","nodeType":"VariableDeclaration","scope":37369,"src":"4995:13:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":37337,"name":"uint48","nodeType":"ElementaryTypeName","src":"4995:6:108","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"4955:54:108"},"returnParameters":{"id":37343,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37342,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":37369,"src":"5033:5:108","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"},"typeName":{"id":37341,"nodeType":"UserDefinedTypeName","pathNode":{"id":37340,"name":"Delay","nameLocations":["5033:5:108"],"nodeType":"IdentifierPath","referencedDeclaration":37133,"src":"5033:5:108"},"referencedDeclaration":37133,"src":"5033:5:108","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Delay_$37133","typeString":"Time.Delay"}},"visibility":"internal"}],"src":"5032:7:108"},"scope":37370,"src":"4942:210:108","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":37371,"src":"640:4514:108","usedErrors":[],"usedEvents":[]}],"src":"104:5051:108"},"id":108},"contracts-exposed/CashFlowLender.sol":{"ast":{"absolutePath":"contracts-exposed/CashFlowLender.sol","exportedSymbols":{"$CashFlowLender":[38231],"AMPUtils":[4080],"AccessManagedProxy":[4170],"AccessManagedProxyBase":[4283],"Address":[26046],"CashFlowLender":[40840],"ContextUpgradeable":[18672],"ERC165":[33323],"ERC1967Proxy":[22826],"ERC1967Utils":[23120],"ERC20Upgradeable":[16613],"ERC2771ContextUpgradeable":[15992],"ERC4626Upgradeable":[17546],"Errors":[26811],"IAccessManagedProxy":[4328],"IAccessManager":[22178],"IBeacon":[23166],"IERC1155Errors":[22643],"IERC1363":[22260],"IERC165":[33545],"IERC1822Proxiable":[22506],"IERC1967":[22285],"IERC20":[24193],"IERC20Errors":[22548],"IERC20Metadata":[24925],"IERC4626":[22463],"IERC721":[25533],"IERC721Errors":[22596],"IERC721Receiver":[25551],"IPolicyHolder":[14449],"IPolicyPool":[40853],"IRiskModule":[40879],"Initializable":[23434],"LowLevelCall":[26970],"Math":[35187],"Memory":[27272],"Packing":[30945],"Panic":[30997],"Policy":[8314],"Proxy":[23156],"SafeCast":[36952],"SafeERC20":[25416],"StorageSlot":[31234],"UUPSUpgradeable":[23600]},"id":38232,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":37372,"literals":["solidity",">=","0.6",".0"],"nodeType":"PragmaDirective","src":"40:24:109"},{"absolutePath":"contracts/CashFlowLender.sol","file":"../contracts/CashFlowLender.sol","id":37373,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":40841,"src":"66:41:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"@openzeppelin/contracts/utils/introspection/ERC165.sol","id":37374,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":33324,"src":"108:64:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":37375,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":33546,"src":"173:65:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyHolder.sol","file":"@ensuro/core/contracts/interfaces/IPolicyHolder.sol","id":37376,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":14450,"src":"239:61:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","id":37377,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":25552,"src":"301:66:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol","file":"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol","id":37378,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":17547,"src":"368:91:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","file":"@openzeppelin/contracts/interfaces/IERC4626.sol","id":37379,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":22464,"src":"460:57:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol","file":"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol","id":37380,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":16614,"src":"518:78:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","id":37381,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":22644,"src":"597:63:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":37382,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":24926,"src":"661:75:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"@openzeppelin/contracts/token/ERC20/IERC20.sol","id":37383,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":24194,"src":"737:56:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol","file":"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol","id":37384,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":23601,"src":"794:65:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC1822.sol","file":"@openzeppelin/contracts/interfaces/draft-IERC1822.sol","id":37385,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":22507,"src":"860:63:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol","id":37386,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":15993,"src":"924:82:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","id":37387,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":18673,"src":"1007:74:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts/proxy/utils/Initializable.sol","id":37388,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":23435,"src":"1082:63:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20Metadata.sol","file":"@openzeppelin/contracts/interfaces/IERC20Metadata.sol","id":37389,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":22294,"src":"1146:63:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","file":"@openzeppelin/contracts/interfaces/IERC20.sol","id":37390,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":22290,"src":"1210:55:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC721.sol","file":"@openzeppelin/contracts/interfaces/IERC721.sol","id":37391,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":22493,"src":"1266:56:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC721Receiver.sol","file":"@openzeppelin/contracts/interfaces/IERC721Receiver.sol","id":37392,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":22497,"src":"1323:64:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Packing.sol","file":"@openzeppelin/contracts/utils/Packing.sol","id":37393,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":30946,"src":"1388:51:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"@openzeppelin/contracts/utils/Address.sol","id":37394,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":26047,"src":"1440:51:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":37395,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":35188,"src":"1492:53:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":37396,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":36953,"src":"1546:57:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":37397,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":25417,"src":"1604:65:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol","id":37398,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":15997,"src":"1670:77:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"contracts/dependencies/IPolicyPool.sol","file":"../contracts/dependencies/IPolicyPool.sol","id":37399,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":40854,"src":"1748:51:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"contracts/dependencies/IRiskModule.sol","file":"../contracts/dependencies/IRiskModule.sol","id":37400,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":40880,"src":"1800:51:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/Policy.sol","file":"@ensuro/core/contracts/Policy.sol","id":37401,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":8315,"src":"1852:43:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol","file":"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol","id":37402,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":4171,"src":"1896:71:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/AMPUtils.sol","file":"@ensuro/access-managed-proxy/contracts/AMPUtils.sol","id":37403,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":4081,"src":"1968:61:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/LowLevelCall.sol","file":"@openzeppelin/contracts/utils/LowLevelCall.sol","id":37404,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":26971,"src":"2030:56:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Memory.sol","file":"@openzeppelin/contracts/utils/Memory.sol","id":37405,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":27273,"src":"2087:50:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol","file":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol","id":37406,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":23121,"src":"2138:64:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721.sol","file":"@openzeppelin/contracts/token/ERC721/IERC721.sol","id":37407,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":25534,"src":"2203:58:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Errors.sol","file":"@openzeppelin/contracts/utils/Errors.sol","id":37408,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":26812,"src":"2262:50:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","file":"@openzeppelin/contracts/utils/Panic.sol","id":37409,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":30998,"src":"2313:49:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1363.sol","file":"@openzeppelin/contracts/interfaces/IERC1363.sol","id":37410,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":22261,"src":"2363:57:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/access/manager/IAccessManager.sol","file":"@openzeppelin/contracts/access/manager/IAccessManager.sol","id":37411,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":22179,"src":"2421:67:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol","file":"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol","id":37412,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":4329,"src":"2489:83:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol","file":"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol","id":37413,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":4284,"src":"2573:75:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/beacon/IBeacon.sol","file":"@openzeppelin/contracts/proxy/beacon/IBeacon.sol","id":37414,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":23167,"src":"2649:58:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC1967.sol","file":"@openzeppelin/contracts/interfaces/IERC1967.sol","id":37415,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":22286,"src":"2708:57:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","file":"@openzeppelin/contracts/utils/StorageSlot.sol","id":37416,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":31235,"src":"2766:55:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC165.sol","file":"@openzeppelin/contracts/interfaces/IERC165.sol","id":37417,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":22265,"src":"2822:56:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","file":"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol","id":37418,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":22827,"src":"2879:64:109","symbolAliases":[],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/proxy/Proxy.sol","file":"@openzeppelin/contracts/proxy/Proxy.sol","id":37419,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":38232,"sourceUnit":23157,"src":"2944:49:109","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":37420,"name":"CashFlowLender","nameLocations":["3023:14:109"],"nodeType":"IdentifierPath","referencedDeclaration":40840,"src":"3023:14:109"},"id":37421,"nodeType":"InheritanceSpecifier","src":"3023:14:109"}],"canonicalName":"$CashFlowLender","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":38231,"linearizedBaseContracts":[38231,40840,33323,33545,14449,25551,17546,22463,16613,22548,24925,24193,23600,22506,15992,18672,23434],"name":"$CashFlowLender","nameLocation":"3004:15:109","nodeType":"ContractDefinition","nodes":[{"constant":true,"functionSelector":"342db739","id":37424,"mutability":"constant","name":"__hh_exposed_bytecode_marker","nameLocation":"3068:28:109","nodeType":"VariableDeclaration","scope":38231,"src":"3044:72:109","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":37422,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3044:7:109","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"686172646861742d6578706f736564","id":37423,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3099:17:109","typeDescriptions":{"typeIdentifier":"t_stringliteral_f6a960c8758adbe877a4de74a2b9831e34e005089a44b7540377aa49607070ac","typeString":"literal_string \"hardhat-exposed\""},"value":"hardhat-exposed"},"visibility":"public"},{"constant":false,"id":37429,"mutability":"mutable","name":"$v_TargetConfig","nameLocation":"3165:15:109","nodeType":"VariableDeclaration","scope":38231,"src":"3123:57:109","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_TargetConfig_$38340_storage_$","typeString":"mapping(uint256 => struct CashFlowLender.TargetConfig)"},"typeName":{"id":37428,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":37425,"name":"uint256","nodeType":"ElementaryTypeName","src":"3131:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"3123:32:109","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_TargetConfig_$38340_storage_$","typeString":"mapping(uint256 => struct CashFlowLender.TargetConfig)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":37427,"nodeType":"UserDefinedTypeName","pathNode":{"id":37426,"name":"TargetConfig","nameLocations":["3142:12:109"],"nodeType":"IdentifierPath","referencedDeclaration":38340,"src":"3142:12:109"},"referencedDeclaration":38340,"src":"3142:12:109","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}}},"visibility":"internal"},{"anonymous":false,"eventSelector":"3a221b9176b65b4a4850e63cd182357e93d2ad08e8951daa0904244dc82df460","id":37433,"name":"return$_deinvest","nameLocation":"3193:16:109","nodeType":"EventDefinition","parameters":{"id":37432,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37431,"indexed":false,"mutability":"mutable","name":"deinvested","nameLocation":"3218:10:109","nodeType":"VariableDeclaration","scope":37433,"src":"3210:18:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37430,"name":"uint256","nodeType":"ElementaryTypeName","src":"3210:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3209:20:109"},"src":"3187:43:109"},{"anonymous":false,"eventSelector":"7281c4a6d49c3bb62269fed398306788c6b3b4fce8789168aa0ab94ec0dd9ec9","id":37437,"name":"return$_changeDebt","nameLocation":"3242:18:109","nodeType":"EventDefinition","parameters":{"id":37436,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37435,"indexed":false,"mutability":"mutable","name":"currentDebt_","nameLocation":"3268:12:109","nodeType":"VariableDeclaration","scope":37437,"src":"3261:19:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":37434,"name":"int256","nodeType":"ElementaryTypeName","src":"3261:6:109","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"3260:21:109"},"src":"3236:46:109"},{"anonymous":false,"eventSelector":"dc71a294d999569df48c717917073844771891d2646489d0133f026c945d0481","id":37441,"name":"return$_ensureLiquidBalance","nameLocation":"3294:27:109","nodeType":"EventDefinition","parameters":{"id":37440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37439,"indexed":false,"mutability":"mutable","name":"balanceBefore","nameLocation":"3330:13:109","nodeType":"VariableDeclaration","scope":37441,"src":"3322:21:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37438,"name":"uint256","nodeType":"ElementaryTypeName","src":"3322:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3321:23:109"},"src":"3288:57:109"},{"body":{"id":37453,"nodeType":"Block","src":"3470:7:109","statements":[]},"id":37454,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":37449,"name":"trustedForwarder_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37443,"src":"3430:17:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":37450,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37446,"src":"3449:11:109","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}}],"id":37451,"kind":"baseConstructorSpecifier","modifierName":{"id":37448,"name":"CashFlowLender","nameLocations":["3415:14:109"],"nodeType":"IdentifierPath","referencedDeclaration":40840,"src":"3415:14:109"},"nodeType":"ModifierInvocation","src":"3415:46:109"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":37447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37443,"mutability":"mutable","name":"trustedForwarder_","nameLocation":"3371:17:109","nodeType":"VariableDeclaration","scope":37454,"src":"3363:25:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37442,"name":"address","nodeType":"ElementaryTypeName","src":"3363:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":37446,"mutability":"mutable","name":"policyPool_","nameLocation":"3402:11:109","nodeType":"VariableDeclaration","scope":37454,"src":"3390:23:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"},"typeName":{"id":37445,"nodeType":"UserDefinedTypeName","pathNode":{"id":37444,"name":"IPolicyPool","nameLocations":["3390:11:109"],"nodeType":"IdentifierPath","referencedDeclaration":40853,"src":"3390:11:109"},"referencedDeclaration":40853,"src":"3390:11:109","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"3362:52:109"},"returnParameters":{"id":37452,"nodeType":"ParameterList","parameters":[],"src":"3470:0:109"},"scope":38231,"src":"3351:126:109","stateMutability":"payable","virtual":false,"visibility":"public"},{"body":{"id":37461,"nodeType":"Block","src":"3540:36:109","statements":[{"expression":{"id":37459,"name":"JAN_1ST_2025","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38315,"src":"3557:12:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":37458,"id":37460,"nodeType":"Return","src":"3550:19:109"}]},"functionSelector":"025ca58e","id":37462,"implemented":true,"kind":"function","modifiers":[],"name":"$JAN_1ST_2025","nameLocation":"3492:13:109","nodeType":"FunctionDefinition","parameters":{"id":37455,"nodeType":"ParameterList","parameters":[],"src":"3505:2:109"},"returnParameters":{"id":37458,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37457,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":37462,"src":"3531:7:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37456,"name":"uint256","nodeType":"ElementaryTypeName","src":"3531:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3530:9:109"},"scope":38231,"src":"3483:93:109","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":37469,"nodeType":"Block","src":"3642:39:109","statements":[{"expression":{"id":37467,"name":"SECONDS_PER_DAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38318,"src":"3659:15:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":37466,"id":37468,"nodeType":"Return","src":"3652:22:109"}]},"functionSelector":"53c42f88","id":37470,"implemented":true,"kind":"function","modifiers":[],"name":"$SECONDS_PER_DAY","nameLocation":"3591:16:109","nodeType":"FunctionDefinition","parameters":{"id":37463,"nodeType":"ParameterList","parameters":[],"src":"3607:2:109"},"returnParameters":{"id":37466,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37465,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":37470,"src":"3633:7:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37464,"name":"uint256","nodeType":"ElementaryTypeName","src":"3633:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3632:9:109"},"scope":38231,"src":"3582:99:109","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":37478,"nodeType":"Block","src":"3747:35:109","statements":[{"expression":{"id":37476,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38322,"src":"3764:11:109","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}},"functionReturnParameters":37475,"id":37477,"nodeType":"Return","src":"3757:18:109"}]},"functionSelector":"33f965ce","id":37479,"implemented":true,"kind":"function","modifiers":[],"name":"$_policyPool","nameLocation":"3696:12:109","nodeType":"FunctionDefinition","parameters":{"id":37471,"nodeType":"ParameterList","parameters":[],"src":"3708:2:109"},"returnParameters":{"id":37475,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37474,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":37479,"src":"3734:11:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"},"typeName":{"id":37473,"nodeType":"UserDefinedTypeName","pathNode":{"id":37472,"name":"IPolicyPool","nameLocations":["3734:11:109"],"nodeType":"IdentifierPath","referencedDeclaration":40853,"src":"3734:11:109"},"referencedDeclaration":40853,"src":"3734:11:109","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"3733:13:109"},"scope":38231,"src":"3687:95:109","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":37486,"nodeType":"Block","src":"3862:53:109","statements":[{"expression":{"id":37484,"name":"CashFlowLenderStorageLocation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38360,"src":"3879:29:109","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":37483,"id":37485,"nodeType":"Return","src":"3872:36:109"}]},"functionSelector":"0cabf231","id":37487,"implemented":true,"kind":"function","modifiers":[],"name":"$CashFlowLenderStorageLocation","nameLocation":"3797:30:109","nodeType":"FunctionDefinition","parameters":{"id":37480,"nodeType":"ParameterList","parameters":[],"src":"3827:2:109"},"returnParameters":{"id":37483,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37482,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":37487,"src":"3853:7:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":37481,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3853:7:109","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3852:9:109"},"scope":38231,"src":"3788:127:109","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":37492,"nodeType":"Block","src":"3982:2:109","statements":[]},"functionSelector":"f14b624b","id":37493,"implemented":true,"kind":"function","modifiers":[{"arguments":[],"id":37490,"kind":"modifierInvocation","modifierName":{"id":37489,"name":"onlyPolicyPool","nameLocations":["3965:14:109"],"nodeType":"IdentifierPath","referencedDeclaration":38532,"src":"3965:14:109"},"nodeType":"ModifierInvocation","src":"3965:16:109"}],"name":"$onlyPolicyPool","nameLocation":"3930:15:109","nodeType":"FunctionDefinition","parameters":{"id":37488,"nodeType":"ParameterList","parameters":[],"src":"3945:2:109"},"returnParameters":{"id":37491,"nodeType":"ParameterList","parameters":[],"src":"3982:0:109"},"scope":38231,"src":"3921:63:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37501,"nodeType":"Block","src":"4089:2:109","statements":[]},"functionSelector":"9db0391f","id":37502,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":37498,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37495,"src":"4081:6:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":37499,"kind":"modifierInvocation","modifierName":{"id":37497,"name":"forwardNewPolicyWrapper","nameLocations":["4057:23:109"],"nodeType":"IdentifierPath","referencedDeclaration":38570,"src":"4057:23:109"},"nodeType":"ModifierInvocation","src":"4057:31:109"}],"name":"$forwardNewPolicyWrapper","nameLocation":"3999:24:109","nodeType":"FunctionDefinition","parameters":{"id":37496,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37495,"mutability":"mutable","name":"target","nameLocation":"4032:6:109","nodeType":"VariableDeclaration","scope":37502,"src":"4024:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37494,"name":"address","nodeType":"ElementaryTypeName","src":"4024:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4023:16:109"},"returnParameters":{"id":37500,"nodeType":"ParameterList","parameters":[],"src":"4089:0:109"},"scope":38231,"src":"3990:101:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37510,"nodeType":"Block","src":"4204:2:109","statements":[]},"functionSelector":"2f9cf0aa","id":37511,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":37507,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37504,"src":"4196:6:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":37508,"kind":"modifierInvocation","modifierName":{"id":37506,"name":"forwardResolvePolicyWrapper","nameLocations":["4168:27:109"],"nodeType":"IdentifierPath","referencedDeclaration":38623,"src":"4168:27:109"},"nodeType":"ModifierInvocation","src":"4168:35:109"}],"name":"$forwardResolvePolicyWrapper","nameLocation":"4106:28:109","nodeType":"FunctionDefinition","parameters":{"id":37505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37504,"mutability":"mutable","name":"target","nameLocation":"4143:6:109","nodeType":"VariableDeclaration","scope":37511,"src":"4135:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37503,"name":"address","nodeType":"ElementaryTypeName","src":"4135:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4134:16:109"},"returnParameters":{"id":37509,"nodeType":"ParameterList","parameters":[],"src":"4204:0:109"},"scope":38231,"src":"4097:109:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37516,"nodeType":"Block","src":"4263:2:109","statements":[]},"functionSelector":"657ab2b3","id":37517,"implemented":true,"kind":"function","modifiers":[{"arguments":[],"id":37514,"kind":"modifierInvocation","modifierName":{"id":37513,"name":"onlyProxy","nameLocations":["4251:9:109"],"nodeType":"IdentifierPath","referencedDeclaration":23470,"src":"4251:9:109"},"nodeType":"ModifierInvocation","src":"4251:11:109"}],"name":"$onlyProxy","nameLocation":"4221:10:109","nodeType":"FunctionDefinition","parameters":{"id":37512,"nodeType":"ParameterList","parameters":[],"src":"4231:2:109"},"returnParameters":{"id":37515,"nodeType":"ParameterList","parameters":[],"src":"4263:0:109"},"scope":38231,"src":"4212:53:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37522,"nodeType":"Block","src":"4328:2:109","statements":[]},"functionSelector":"818f5673","id":37523,"implemented":true,"kind":"function","modifiers":[{"arguments":[],"id":37520,"kind":"modifierInvocation","modifierName":{"id":37519,"name":"notDelegated","nameLocations":["4313:12:109"],"nodeType":"IdentifierPath","referencedDeclaration":23478,"src":"4313:12:109"},"nodeType":"ModifierInvocation","src":"4313:14:109"}],"name":"$notDelegated","nameLocation":"4280:13:109","nodeType":"FunctionDefinition","parameters":{"id":37518,"nodeType":"ParameterList","parameters":[],"src":"4293:2:109"},"returnParameters":{"id":37521,"nodeType":"ParameterList","parameters":[],"src":"4328:0:109"},"scope":38231,"src":"4271:59:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37528,"nodeType":"Block","src":"4391:2:109","statements":[]},"functionSelector":"401022ef","id":37529,"implemented":true,"kind":"function","modifiers":[{"arguments":[],"id":37526,"kind":"modifierInvocation","modifierName":{"id":37525,"name":"initializer","nameLocations":["4377:11:109"],"nodeType":"IdentifierPath","referencedDeclaration":23274,"src":"4377:11:109"},"nodeType":"ModifierInvocation","src":"4377:13:109"}],"name":"$initializer","nameLocation":"4345:12:109","nodeType":"FunctionDefinition","parameters":{"id":37524,"nodeType":"ParameterList","parameters":[],"src":"4357:2:109"},"returnParameters":{"id":37527,"nodeType":"ParameterList","parameters":[],"src":"4391:0:109"},"scope":38231,"src":"4336:57:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37537,"nodeType":"Block","src":"4479:2:109","statements":[]},"functionSelector":"833d816d","id":37538,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":37534,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37531,"src":"4470:7:109","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"id":37535,"kind":"modifierInvocation","modifierName":{"id":37533,"name":"reinitializer","nameLocations":["4456:13:109"],"nodeType":"IdentifierPath","referencedDeclaration":23321,"src":"4456:13:109"},"nodeType":"ModifierInvocation","src":"4456:22:109"}],"name":"$reinitializer","nameLocation":"4408:14:109","nodeType":"FunctionDefinition","parameters":{"id":37532,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37531,"mutability":"mutable","name":"version","nameLocation":"4430:7:109","nodeType":"VariableDeclaration","scope":37538,"src":"4423:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":37530,"name":"uint64","nodeType":"ElementaryTypeName","src":"4423:6:109","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"4422:16:109"},"returnParameters":{"id":37536,"nodeType":"ParameterList","parameters":[],"src":"4479:0:109"},"scope":38231,"src":"4399:82:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37543,"nodeType":"Block","src":"4552:2:109","statements":[]},"functionSelector":"8963227f","id":37544,"implemented":true,"kind":"function","modifiers":[{"arguments":[],"id":37541,"kind":"modifierInvocation","modifierName":{"id":37540,"name":"onlyInitializing","nameLocations":["4533:16:109"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"4533:16:109"},"nodeType":"ModifierInvocation","src":"4533:18:109"}],"name":"$onlyInitializing","nameLocation":"4496:17:109","nodeType":"FunctionDefinition","parameters":{"id":37539,"nodeType":"ParameterList","parameters":[],"src":"4513:2:109"},"returnParameters":{"id":37542,"nodeType":"ParameterList","parameters":[],"src":"4552:0:109"},"scope":38231,"src":"4487:67:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37562,"nodeType":"Block","src":"4677:71:109","statements":[{"expression":{"arguments":[{"id":37557,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37546,"src":"4715:5:109","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"id":37558,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37548,"src":"4721:7:109","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"id":37559,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37551,"src":"4729:11:109","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"},{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"expression":{"id":37554,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"4687:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37556,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4693:21:109","memberName":"__CashFlowLender_init","nodeType":"MemberAccess","referencedDeclaration":38700,"src":"4687:27:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_contract$_IERC4626_$22463_$returns$__$","typeString":"function (string memory,string memory,contract IERC4626)"}},"id":37560,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4687:54:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37561,"nodeType":"ExpressionStatement","src":"4687:54:109"}]},"functionSelector":"97f8423e","id":37563,"implemented":true,"kind":"function","modifiers":[],"name":"$__CashFlowLender_init","nameLocation":"4569:22:109","nodeType":"FunctionDefinition","parameters":{"id":37552,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37546,"mutability":"mutable","name":"name_","nameLocation":"4608:5:109","nodeType":"VariableDeclaration","scope":37563,"src":"4592:21:109","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":37545,"name":"string","nodeType":"ElementaryTypeName","src":"4592:6:109","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":37548,"mutability":"mutable","name":"symbol_","nameLocation":"4630:7:109","nodeType":"VariableDeclaration","scope":37563,"src":"4614:23:109","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":37547,"name":"string","nodeType":"ElementaryTypeName","src":"4614:6:109","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":37551,"mutability":"mutable","name":"yieldVault_","nameLocation":"4647:11:109","nodeType":"VariableDeclaration","scope":37563,"src":"4638:20:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":37550,"nodeType":"UserDefinedTypeName","pathNode":{"id":37549,"name":"IERC4626","nameLocations":["4638:8:109"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"4638:8:109"},"referencedDeclaration":22463,"src":"4638:8:109","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"4591:68:109"},"returnParameters":{"id":37553,"nodeType":"ParameterList","parameters":[],"src":"4677:0:109"},"scope":38231,"src":"4560:188:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37575,"nodeType":"Block","src":"4835:67:109","statements":[{"expression":{"arguments":[{"id":37572,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37566,"src":"4883:11:109","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"expression":{"id":37569,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"4845:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37571,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4851:31:109","memberName":"__CashFlowLender_init_unchained","nodeType":"MemberAccess","referencedDeclaration":38729,"src":"4845:37:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$22463_$returns$__$","typeString":"function (contract IERC4626)"}},"id":37573,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4845:50:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37574,"nodeType":"ExpressionStatement","src":"4845:50:109"}]},"functionSelector":"80da0a1c","id":37576,"implemented":true,"kind":"function","modifiers":[],"name":"$__CashFlowLender_init_unchained","nameLocation":"4763:32:109","nodeType":"FunctionDefinition","parameters":{"id":37567,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37566,"mutability":"mutable","name":"yieldVault_","nameLocation":"4805:11:109","nodeType":"VariableDeclaration","scope":37576,"src":"4796:20:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":37565,"nodeType":"UserDefinedTypeName","pathNode":{"id":37564,"name":"IERC4626","nameLocations":["4796:8:109"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"4796:8:109"},"referencedDeclaration":22463,"src":"4796:8:109","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"4795:22:109"},"returnParameters":{"id":37568,"nodeType":"ParameterList","parameters":[],"src":"4835:0:109"},"scope":38231,"src":"4754:148:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37588,"nodeType":"Block","src":"4972:50:109","statements":[{"expression":{"arguments":[{"id":37585,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37579,"src":"5003:11:109","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"expression":{"id":37582,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"4982:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4988:14:109","memberName":"_setYieldVault","nodeType":"MemberAccess","referencedDeclaration":38811,"src":"4982:20:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$22463_$returns$__$","typeString":"function (contract IERC4626)"}},"id":37586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4982:33:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37587,"nodeType":"ExpressionStatement","src":"4982:33:109"}]},"functionSelector":"8d94d575","id":37589,"implemented":true,"kind":"function","modifiers":[],"name":"$_setYieldVault","nameLocation":"4917:15:109","nodeType":"FunctionDefinition","parameters":{"id":37580,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37579,"mutability":"mutable","name":"yieldVault_","nameLocation":"4942:11:109","nodeType":"VariableDeclaration","scope":37589,"src":"4933:20:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":37578,"nodeType":"UserDefinedTypeName","pathNode":{"id":37577,"name":"IERC4626","nameLocations":["4933:8:109"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"4933:8:109"},"referencedDeclaration":22463,"src":"4933:8:109","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"4932:22:109"},"returnParameters":{"id":37581,"nodeType":"ParameterList","parameters":[],"src":"4972:0:109"},"scope":38231,"src":"4908:114:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37605,"nodeType":"Block","src":"5128:64:109","statements":[{"expression":{"id":37603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":37597,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37595,"src":"5139:12:109","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_memory_ptr","typeString":"struct CashFlowLender.TargetConfig memory"}}],"id":37598,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"5138:14:109","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_memory_ptr","typeString":"struct CashFlowLender.TargetConfig memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":37601,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37591,"src":"5178:6:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":37599,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5155:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5161:16:109","memberName":"_getTargetConfig","nodeType":"MemberAccess","referencedDeclaration":38911,"src":"5155:22:109","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$38340_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":37602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5155:30:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"src":"5138:47:109","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_memory_ptr","typeString":"struct CashFlowLender.TargetConfig memory"}},"id":37604,"nodeType":"ExpressionStatement","src":"5138:47:109"}]},"functionSelector":"8f792465","id":37606,"implemented":true,"kind":"function","modifiers":[],"name":"$_getTargetConfig","nameLocation":"5037:17:109","nodeType":"FunctionDefinition","parameters":{"id":37592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37591,"mutability":"mutable","name":"target","nameLocation":"5063:6:109","nodeType":"VariableDeclaration","scope":37606,"src":"5055:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37590,"name":"address","nodeType":"ElementaryTypeName","src":"5055:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5054:16:109"},"returnParameters":{"id":37596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37595,"mutability":"mutable","name":"targetConfig","nameLocation":"5114:12:109","nodeType":"VariableDeclaration","scope":37606,"src":"5094:32:109","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_memory_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":37594,"nodeType":"UserDefinedTypeName","pathNode":{"id":37593,"name":"TargetConfig","nameLocations":["5094:12:109"],"nodeType":"IdentifierPath","referencedDeclaration":38340,"src":"5094:12:109"},"referencedDeclaration":38340,"src":"5094:12:109","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"src":"5093:34:109"},"scope":38231,"src":"5028:164:109","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":37617,"nodeType":"Block","src":"5257:49:109","statements":[{"expression":{"arguments":[{"id":37614,"name":"newImpl","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37608,"src":"5291:7:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":37611,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5267:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5273:17:109","memberName":"_authorizeUpgrade","nodeType":"MemberAccess","referencedDeclaration":39177,"src":"5267:23:109","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$__$","typeString":"function (address) view"}},"id":37615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5267:32:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37616,"nodeType":"ExpressionStatement","src":"5267:32:109"}]},"functionSelector":"fbf9c9ce","id":37618,"implemented":true,"kind":"function","modifiers":[],"name":"$_authorizeUpgrade","nameLocation":"5207:18:109","nodeType":"FunctionDefinition","parameters":{"id":37609,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37608,"mutability":"mutable","name":"newImpl","nameLocation":"5234:7:109","nodeType":"VariableDeclaration","scope":37618,"src":"5226:15:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37607,"name":"address","nodeType":"ElementaryTypeName","src":"5226:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5225:17:109"},"returnParameters":{"id":37610,"nodeType":"ParameterList","parameters":[],"src":"5257:0:109"},"scope":38231,"src":"5198:108:109","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":37630,"nodeType":"Block","src":"5382:54:109","statements":[{"expression":{"id":37628,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":37623,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37621,"src":"5393:4:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":37624,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"5392:6:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":37625,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5401:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37626,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5407:20:109","memberName":"_contextSuffixLength","nodeType":"MemberAccess","referencedDeclaration":39395,"src":"5401:26:109","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":37627,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5401:28:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5392:37:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":37629,"nodeType":"ExpressionStatement","src":"5392:37:109"}]},"functionSelector":"67354a84","id":37631,"implemented":true,"kind":"function","modifiers":[],"name":"$_contextSuffixLength","nameLocation":"5321:21:109","nodeType":"FunctionDefinition","parameters":{"id":37619,"nodeType":"ParameterList","parameters":[],"src":"5342:2:109"},"returnParameters":{"id":37622,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37621,"mutability":"mutable","name":"ret0","nameLocation":"5376:4:109","nodeType":"VariableDeclaration","scope":37631,"src":"5368:12:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37620,"name":"uint256","nodeType":"ElementaryTypeName","src":"5368:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5367:14:109"},"scope":38231,"src":"5312:124:109","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":37643,"nodeType":"Block","src":"5502:44:109","statements":[{"expression":{"id":37641,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":37636,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37634,"src":"5513:4:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":37637,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"5512:6:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":37638,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5521:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5527:10:109","memberName":"_msgSender","nodeType":"MemberAccess","referencedDeclaration":39409,"src":"5521:16:109","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":37640,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5521:18:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5512:27:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":37642,"nodeType":"ExpressionStatement","src":"5512:27:109"}]},"functionSelector":"2904df29","id":37644,"implemented":true,"kind":"function","modifiers":[],"name":"$_msgSender","nameLocation":"5451:11:109","nodeType":"FunctionDefinition","parameters":{"id":37632,"nodeType":"ParameterList","parameters":[],"src":"5462:2:109"},"returnParameters":{"id":37635,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37634,"mutability":"mutable","name":"ret0","nameLocation":"5496:4:109","nodeType":"VariableDeclaration","scope":37644,"src":"5488:12:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37633,"name":"address","nodeType":"ElementaryTypeName","src":"5488:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5487:14:109"},"scope":38231,"src":"5442:104:109","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":37656,"nodeType":"Block","src":"5615:42:109","statements":[{"expression":{"id":37654,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":37649,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37647,"src":"5626:4:109","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":37650,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"5625:6:109","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":37651,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5634:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5640:8:109","memberName":"_msgData","nodeType":"MemberAccess","referencedDeclaration":39423,"src":"5634:14:109","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":37653,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5634:16:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"src":"5625:25:109","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":37655,"nodeType":"ExpressionStatement","src":"5625:25:109"}]},"functionSelector":"32cadf3c","id":37657,"implemented":true,"kind":"function","modifiers":[],"name":"$_msgData","nameLocation":"5561:9:109","nodeType":"FunctionDefinition","parameters":{"id":37645,"nodeType":"ParameterList","parameters":[],"src":"5570:2:109"},"returnParameters":{"id":37648,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37647,"mutability":"mutable","name":"ret0","nameLocation":"5609:4:109","nodeType":"VariableDeclaration","scope":37657,"src":"5596:17:109","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":37646,"name":"bytes","nodeType":"ElementaryTypeName","src":"5596:5:109","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5595:19:109"},"scope":38231,"src":"5552:105:109","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":37669,"nodeType":"Block","src":"5721:42:109","statements":[{"expression":{"id":37667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":37662,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37660,"src":"5732:4:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":37663,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"5731:6:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":37664,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5740:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5746:8:109","memberName":"_balance","nodeType":"MemberAccess","referencedDeclaration":39440,"src":"5740:14:109","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":37666,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5740:16:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5731:25:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":37668,"nodeType":"ExpressionStatement","src":"5731:25:109"}]},"functionSelector":"aeabd329","id":37670,"implemented":true,"kind":"function","modifiers":[],"name":"$_balance","nameLocation":"5672:9:109","nodeType":"FunctionDefinition","parameters":{"id":37658,"nodeType":"ParameterList","parameters":[],"src":"5681:2:109"},"returnParameters":{"id":37661,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37660,"mutability":"mutable","name":"ret0","nameLocation":"5715:4:109","nodeType":"VariableDeclaration","scope":37670,"src":"5707:12:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37659,"name":"uint256","nodeType":"ElementaryTypeName","src":"5707:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5706:14:109"},"scope":38231,"src":"5663:100:109","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":37688,"nodeType":"Block","src":"5857:59:109","statements":[{"expression":{"id":37686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":37679,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37677,"src":"5868:4:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":37680,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"5867:6:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":37683,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37672,"src":"5892:9:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":37684,"name":"isLeap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37674,"src":"5902:6:109","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":37681,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"5876:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5882:9:109","memberName":"_getMonth","nodeType":"MemberAccess","referencedDeclaration":39531,"src":"5876:15:109","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_bool_$returns$_t_uint256_$","typeString":"function (uint256,bool) pure returns (uint256)"}},"id":37685,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5876:33:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5867:42:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":37687,"nodeType":"ExpressionStatement","src":"5867:42:109"}]},"functionSelector":"c3ba11f5","id":37689,"implemented":true,"kind":"function","modifiers":[],"name":"$_getMonth","nameLocation":"5778:10:109","nodeType":"FunctionDefinition","parameters":{"id":37675,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37672,"mutability":"mutable","name":"dayInYear","nameLocation":"5797:9:109","nodeType":"VariableDeclaration","scope":37689,"src":"5789:17:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37671,"name":"uint256","nodeType":"ElementaryTypeName","src":"5789:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":37674,"mutability":"mutable","name":"isLeap","nameLocation":"5812:6:109","nodeType":"VariableDeclaration","scope":37689,"src":"5807:11:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":37673,"name":"bool","nodeType":"ElementaryTypeName","src":"5807:4:109","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"5788:31:109"},"returnParameters":{"id":37678,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37677,"mutability":"mutable","name":"ret0","nameLocation":"5851:4:109","nodeType":"VariableDeclaration","scope":37689,"src":"5843:12:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37676,"name":"uint256","nodeType":"ElementaryTypeName","src":"5843:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5842:14:109"},"scope":38231,"src":"5769:147:109","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":37704,"nodeType":"Block","src":"6014:69:109","statements":[{"expression":{"id":37702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":37696,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37694,"src":"6025:9:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":37697,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"6024:11:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":37700,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37691,"src":"6066:9:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":37698,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"6038:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6044:21:109","memberName":"_computeCalendarMonth","nodeType":"MemberAccess","referencedDeclaration":39607,"src":"6038:27:109","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint256) pure returns (uint32)"}},"id":37701,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6038:38:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"6024:52:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":37703,"nodeType":"ExpressionStatement","src":"6024:52:109"}]},"functionSelector":"4092b0c1","id":37705,"implemented":true,"kind":"function","modifiers":[],"name":"$_computeCalendarMonth","nameLocation":"5931:22:109","nodeType":"FunctionDefinition","parameters":{"id":37692,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37691,"mutability":"mutable","name":"timestamp","nameLocation":"5962:9:109","nodeType":"VariableDeclaration","scope":37705,"src":"5954:17:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37690,"name":"uint256","nodeType":"ElementaryTypeName","src":"5954:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5953:19:109"},"returnParameters":{"id":37695,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37694,"mutability":"mutable","name":"slotIndex","nameLocation":"6003:9:109","nodeType":"VariableDeclaration","scope":37705,"src":"5996:16:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37693,"name":"uint32","nodeType":"ElementaryTypeName","src":"5996:6:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"5995:18:109"},"scope":38231,"src":"5922:161:109","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":37723,"nodeType":"Block","src":"6190:71:109","statements":[{"expression":{"id":37721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":37714,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37712,"src":"6201:9:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":37715,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"6200:11:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":37718,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37707,"src":"6235:8:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":37719,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37709,"src":"6244:9:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":37716,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"6214:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6220:14:109","memberName":"_makeSlotIndex","nodeType":"MemberAccess","referencedDeclaration":39632,"src":"6214:20:109","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint32,uint256) pure returns (uint32)"}},"id":37720,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6214:40:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"6200:54:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":37722,"nodeType":"ExpressionStatement","src":"6200:54:109"}]},"functionSelector":"1c93944f","id":37724,"implemented":true,"kind":"function","modifiers":[],"name":"$_makeSlotIndex","nameLocation":"6098:15:109","nodeType":"FunctionDefinition","parameters":{"id":37710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37707,"mutability":"mutable","name":"slotSize","nameLocation":"6121:8:109","nodeType":"VariableDeclaration","scope":37724,"src":"6114:15:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37706,"name":"uint32","nodeType":"ElementaryTypeName","src":"6114:6:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":37709,"mutability":"mutable","name":"timestamp","nameLocation":"6138:9:109","nodeType":"VariableDeclaration","scope":37724,"src":"6130:17:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37708,"name":"uint256","nodeType":"ElementaryTypeName","src":"6130:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6113:35:109"},"returnParameters":{"id":37713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37712,"mutability":"mutable","name":"slotIndex","nameLocation":"6179:9:109","nodeType":"VariableDeclaration","scope":37724,"src":"6172:16:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37711,"name":"uint32","nodeType":"ElementaryTypeName","src":"6172:6:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"6171:18:109"},"scope":38231,"src":"6089:172:109","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":37746,"nodeType":"Block","src":"6382:74:109","statements":[{"expression":{"id":37744,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":37736,"name":"slot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37734,"src":"6393:4:109","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$38324","typeString":"CashFlowLender.TargetSlot"}}],"id":37737,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"6392:6:109","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$38324","typeString":"CashFlowLender.TargetSlot"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":37740,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37726,"src":"6423:6:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":37741,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37728,"src":"6430:8:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":37742,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37730,"src":"6439:9:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"id":37738,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"6401:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6407:15:109","memberName":"_makeTargetSlot","nodeType":"MemberAccess","referencedDeclaration":39667,"src":"6401:21:109","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_TargetSlot_$38324_$","typeString":"function (address,uint32,uint32) pure returns (CashFlowLender.TargetSlot)"}},"id":37743,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6401:48:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$38324","typeString":"CashFlowLender.TargetSlot"}},"src":"6392:57:109","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$38324","typeString":"CashFlowLender.TargetSlot"}},"id":37745,"nodeType":"ExpressionStatement","src":"6392:57:109"}]},"functionSelector":"3e15a357","id":37747,"implemented":true,"kind":"function","modifiers":[],"name":"$_makeTargetSlot","nameLocation":"6276:16:109","nodeType":"FunctionDefinition","parameters":{"id":37731,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37726,"mutability":"mutable","name":"target","nameLocation":"6301:6:109","nodeType":"VariableDeclaration","scope":37747,"src":"6293:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37725,"name":"address","nodeType":"ElementaryTypeName","src":"6293:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":37728,"mutability":"mutable","name":"slotSize","nameLocation":"6315:8:109","nodeType":"VariableDeclaration","scope":37747,"src":"6308:15:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37727,"name":"uint32","nodeType":"ElementaryTypeName","src":"6308:6:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":37730,"mutability":"mutable","name":"slotIndex","nameLocation":"6331:9:109","nodeType":"VariableDeclaration","scope":37747,"src":"6324:16:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37729,"name":"uint32","nodeType":"ElementaryTypeName","src":"6324:6:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"6292:49:109"},"returnParameters":{"id":37735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37734,"mutability":"mutable","name":"slot","nameLocation":"6376:4:109","nodeType":"VariableDeclaration","scope":37747,"src":"6365:15:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$38324","typeString":"CashFlowLender.TargetSlot"},"typeName":{"id":37733,"nodeType":"UserDefinedTypeName","pathNode":{"id":37732,"name":"TargetSlot","nameLocations":["6365:10:109"],"nodeType":"IdentifierPath","referencedDeclaration":38324,"src":"6365:10:109"},"referencedDeclaration":38324,"src":"6365:10:109","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$38324","typeString":"CashFlowLender.TargetSlot"}},"visibility":"internal"}],"src":"6364:17:109"},"scope":38231,"src":"6267:189:109","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":37766,"nodeType":"Block","src":"6544:98:109","statements":[{"expression":{"id":37760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":37754,"name":"deinvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37752,"src":"6555:10:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":37755,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"6554:12:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":37758,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37749,"src":"6585:6:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":37756,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"6569:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37757,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6575:9:109","memberName":"_deinvest","nodeType":"MemberAccess","referencedDeclaration":39712,"src":"6569:15:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) returns (uint256)"}},"id":37759,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6569:23:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6554:38:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":37761,"nodeType":"ExpressionStatement","src":"6554:38:109"},{"eventCall":{"arguments":[{"id":37763,"name":"deinvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37752,"src":"6624:10:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":37762,"name":"return$_deinvest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37433,"src":"6607:16:109","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":37764,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6607:28:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37765,"nodeType":"EmitStatement","src":"6602:33:109"}]},"functionSelector":"811eecf5","id":37767,"implemented":true,"kind":"function","modifiers":[],"name":"$_deinvest","nameLocation":"6471:10:109","nodeType":"FunctionDefinition","parameters":{"id":37750,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37749,"mutability":"mutable","name":"amount","nameLocation":"6490:6:109","nodeType":"VariableDeclaration","scope":37767,"src":"6482:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37748,"name":"uint256","nodeType":"ElementaryTypeName","src":"6482:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6481:16:109"},"returnParameters":{"id":37753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37752,"mutability":"mutable","name":"deinvested","nameLocation":"6532:10:109","nodeType":"VariableDeclaration","scope":37767,"src":"6524:18:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37751,"name":"uint256","nodeType":"ElementaryTypeName","src":"6524:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6523:20:109"},"scope":38231,"src":"6462:180:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37795,"nodeType":"Block","src":"6780:132:109","statements":[{"expression":{"id":37789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":37780,"name":"currentDebt_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37778,"src":"6791:12:109","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":37781,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"6790:14:109","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":37784,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37769,"src":"6825:6:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":37785,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37771,"src":"6832:8:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":37786,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37773,"src":"6841:9:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":37787,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37775,"src":"6851:6:109","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":37782,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"6807:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6813:11:109","memberName":"_changeDebt","nodeType":"MemberAccess","referencedDeclaration":39772,"src":"6807:17:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_int256_$returns$_t_int256_$","typeString":"function (address,uint32,uint32,int256) returns (int256)"}},"id":37788,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6807:51:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"6790:68:109","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":37790,"nodeType":"ExpressionStatement","src":"6790:68:109"},{"eventCall":{"arguments":[{"id":37792,"name":"currentDebt_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37778,"src":"6892:12:109","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":37791,"name":"return$_changeDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37437,"src":"6873:18:109","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_int256_$returns$__$","typeString":"function (int256)"}},"id":37793,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6873:32:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37794,"nodeType":"EmitStatement","src":"6868:37:109"}]},"functionSelector":"d2e26fe4","id":37796,"implemented":true,"kind":"function","modifiers":[],"name":"$_changeDebt","nameLocation":"6657:12:109","nodeType":"FunctionDefinition","parameters":{"id":37776,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37769,"mutability":"mutable","name":"target","nameLocation":"6678:6:109","nodeType":"VariableDeclaration","scope":37796,"src":"6670:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37768,"name":"address","nodeType":"ElementaryTypeName","src":"6670:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":37771,"mutability":"mutable","name":"slotSize","nameLocation":"6692:8:109","nodeType":"VariableDeclaration","scope":37796,"src":"6685:15:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37770,"name":"uint32","nodeType":"ElementaryTypeName","src":"6685:6:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":37773,"mutability":"mutable","name":"slotIndex","nameLocation":"6708:9:109","nodeType":"VariableDeclaration","scope":37796,"src":"6701:16:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":37772,"name":"uint32","nodeType":"ElementaryTypeName","src":"6701:6:109","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":37775,"mutability":"mutable","name":"amount","nameLocation":"6725:6:109","nodeType":"VariableDeclaration","scope":37796,"src":"6718:13:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":37774,"name":"int256","nodeType":"ElementaryTypeName","src":"6718:6:109","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"6669:63:109"},"returnParameters":{"id":37779,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37778,"mutability":"mutable","name":"currentDebt_","nameLocation":"6766:12:109","nodeType":"VariableDeclaration","scope":37796,"src":"6759:19:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":37777,"name":"int256","nodeType":"ElementaryTypeName","src":"6759:6:109","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"6758:21:109"},"scope":38231,"src":"6648:264:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37817,"nodeType":"Block","src":"7020:149:109","statements":[{"expression":{"id":37811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":37803,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37801,"src":"7031:13:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":37804,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"7030:15:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":37807,"name":"$v_TargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37429,"src":"7075:15:109","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_TargetConfig_$38340_storage_$","typeString":"mapping(uint256 => struct CashFlowLender.TargetConfig storage ref)"}},"id":37809,"indexExpression":{"id":37808,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37798,"src":"7091:12:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7075:29:109","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage","typeString":"struct CashFlowLender.TargetConfig storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage","typeString":"struct CashFlowLender.TargetConfig storage ref"}],"expression":{"id":37805,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7048:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37806,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7054:20:109","memberName":"_ensureLiquidBalance","nodeType":"MemberAccess","referencedDeclaration":39830,"src":"7048:26:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_TargetConfig_$38340_storage_ptr_$returns$_t_uint256_$","typeString":"function (struct CashFlowLender.TargetConfig storage pointer) returns (uint256)"}},"id":37810,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7048:57:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7030:75:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":37812,"nodeType":"ExpressionStatement","src":"7030:75:109"},{"eventCall":{"arguments":[{"id":37814,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37801,"src":"7148:13:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":37813,"name":"return$_ensureLiquidBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37441,"src":"7120:27:109","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":37815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7120:42:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37816,"nodeType":"EmitStatement","src":"7115:47:109"}]},"functionSelector":"ae6aaa62","id":37818,"implemented":true,"kind":"function","modifiers":[],"name":"$_ensureLiquidBalance","nameLocation":"6927:21:109","nodeType":"FunctionDefinition","parameters":{"id":37799,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37798,"mutability":"mutable","name":"targetConfig","nameLocation":"6957:12:109","nodeType":"VariableDeclaration","scope":37818,"src":"6949:20:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37797,"name":"uint256","nodeType":"ElementaryTypeName","src":"6949:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6948:22:109"},"returnParameters":{"id":37802,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37801,"mutability":"mutable","name":"balanceBefore","nameLocation":"7005:13:109","nodeType":"VariableDeclaration","scope":37818,"src":"6997:21:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37800,"name":"uint256","nodeType":"ElementaryTypeName","src":"6997:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6996:23:109"},"scope":38231,"src":"6918:251:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37837,"nodeType":"Block","src":"7289:102:109","statements":[{"expression":{"arguments":[{"id":37830,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37820,"src":"7333:6:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":37831,"name":"$v_TargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37429,"src":"7340:15:109","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_TargetConfig_$38340_storage_$","typeString":"mapping(uint256 => struct CashFlowLender.TargetConfig storage ref)"}},"id":37833,"indexExpression":{"id":37832,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37822,"src":"7356:12:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7340:29:109","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage","typeString":"struct CashFlowLender.TargetConfig storage ref"}},{"id":37834,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37824,"src":"7370:13:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage","typeString":"struct CashFlowLender.TargetConfig storage ref"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":37827,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7299:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37829,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7305:27:109","memberName":"_increaseDebtAfterNewPolicy","nodeType":"MemberAccess","referencedDeclaration":39889,"src":"7299:33:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_struct$_TargetConfig_$38340_storage_ptr_$_t_uint256_$returns$__$","typeString":"function (address,struct CashFlowLender.TargetConfig storage pointer,uint256)"}},"id":37835,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7299:85:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37836,"nodeType":"ExpressionStatement","src":"7299:85:109"}]},"functionSelector":"9c5baeaa","id":37838,"implemented":true,"kind":"function","modifiers":[],"name":"$_increaseDebtAfterNewPolicy","nameLocation":"7184:28:109","nodeType":"FunctionDefinition","parameters":{"id":37825,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37820,"mutability":"mutable","name":"target","nameLocation":"7221:6:109","nodeType":"VariableDeclaration","scope":37838,"src":"7213:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37819,"name":"address","nodeType":"ElementaryTypeName","src":"7213:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":37822,"mutability":"mutable","name":"targetConfig","nameLocation":"7236:12:109","nodeType":"VariableDeclaration","scope":37838,"src":"7228:20:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37821,"name":"uint256","nodeType":"ElementaryTypeName","src":"7228:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":37824,"mutability":"mutable","name":"balanceBefore","nameLocation":"7257:13:109","nodeType":"VariableDeclaration","scope":37838,"src":"7249:21:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37823,"name":"uint256","nodeType":"ElementaryTypeName","src":"7249:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7212:59:109"},"returnParameters":{"id":37826,"nodeType":"ParameterList","parameters":[],"src":"7289:0:109"},"scope":38231,"src":"7175:216:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37855,"nodeType":"Block","src":"7485:63:109","statements":[{"expression":{"arguments":[{"id":37850,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37840,"src":"7518:6:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":37851,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37842,"src":"7525:6:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":37852,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37844,"src":"7532:8:109","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":37847,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7495:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37849,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7501:16:109","memberName":"_checkCanForward","nodeType":"MemberAccess","referencedDeclaration":39937,"src":"7495:22:109","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":37853,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7495:46:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37854,"nodeType":"ExpressionStatement","src":"7495:46:109"}]},"functionSelector":"e483b6e1","id":37856,"implemented":true,"kind":"function","modifiers":[],"name":"$_checkCanForward","nameLocation":"7406:17:109","nodeType":"FunctionDefinition","parameters":{"id":37845,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37840,"mutability":"mutable","name":"caller","nameLocation":"7432:6:109","nodeType":"VariableDeclaration","scope":37856,"src":"7424:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37839,"name":"address","nodeType":"ElementaryTypeName","src":"7424:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":37842,"mutability":"mutable","name":"target","nameLocation":"7447:6:109","nodeType":"VariableDeclaration","scope":37856,"src":"7439:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37841,"name":"address","nodeType":"ElementaryTypeName","src":"7439:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":37844,"mutability":"mutable","name":"selector","nameLocation":"7461:8:109","nodeType":"VariableDeclaration","scope":37856,"src":"7454:15:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":37843,"name":"bytes4","nodeType":"ElementaryTypeName","src":"7454:6:109","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"7423:47:109"},"returnParameters":{"id":37846,"nodeType":"ParameterList","parameters":[],"src":"7485:0:109"},"scope":38231,"src":"7397:151:109","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":37879,"nodeType":"Block","src":"7668:69:109","statements":[{"expression":{"arguments":[{"id":37872,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37858,"src":"7694:6:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":37873,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37860,"src":"7701:8:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":37874,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37862,"src":"7710:5:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":37875,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37864,"src":"7716:6:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":37876,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37866,"src":"7723:6:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":37869,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7678:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37871,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7684:9:109","memberName":"_withdraw","nodeType":"MemberAccess","referencedDeclaration":40601,"src":"7678:15:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":37877,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7678:52:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37878,"nodeType":"ExpressionStatement","src":"7678:52:109"}]},"functionSelector":"83b95579","id":37880,"implemented":true,"kind":"function","modifiers":[],"name":"$_withdraw","nameLocation":"7563:10:109","nodeType":"FunctionDefinition","parameters":{"id":37867,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37858,"mutability":"mutable","name":"caller","nameLocation":"7582:6:109","nodeType":"VariableDeclaration","scope":37880,"src":"7574:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37857,"name":"address","nodeType":"ElementaryTypeName","src":"7574:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":37860,"mutability":"mutable","name":"receiver","nameLocation":"7597:8:109","nodeType":"VariableDeclaration","scope":37880,"src":"7589:16:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37859,"name":"address","nodeType":"ElementaryTypeName","src":"7589:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":37862,"mutability":"mutable","name":"owner","nameLocation":"7614:5:109","nodeType":"VariableDeclaration","scope":37880,"src":"7606:13:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37861,"name":"address","nodeType":"ElementaryTypeName","src":"7606:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":37864,"mutability":"mutable","name":"assets","nameLocation":"7628:6:109","nodeType":"VariableDeclaration","scope":37880,"src":"7620:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37863,"name":"uint256","nodeType":"ElementaryTypeName","src":"7620:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":37866,"mutability":"mutable","name":"shares","nameLocation":"7643:6:109","nodeType":"VariableDeclaration","scope":37880,"src":"7635:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37865,"name":"uint256","nodeType":"ElementaryTypeName","src":"7635:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7573:77:109"},"returnParameters":{"id":37868,"nodeType":"ParameterList","parameters":[],"src":"7668:0:109"},"scope":38231,"src":"7554:183:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37892,"nodeType":"Block","src":"7800:45:109","statements":[{"expression":{"arguments":[{"id":37889,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37883,"src":"7831:6:109","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}],"expression":{"id":37886,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7810:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37888,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7816:14:109","memberName":"__ERC4626_init","nodeType":"MemberAccess","referencedDeclaration":16880,"src":"7810:20:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$returns$__$","typeString":"function (contract IERC20)"}},"id":37890,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7810:28:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37891,"nodeType":"ExpressionStatement","src":"7810:28:109"}]},"functionSelector":"75b58c95","id":37893,"implemented":true,"kind":"function","modifiers":[],"name":"$__ERC4626_init","nameLocation":"7752:15:109","nodeType":"FunctionDefinition","parameters":{"id":37884,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37883,"mutability":"mutable","name":"asset_","nameLocation":"7775:6:109","nodeType":"VariableDeclaration","scope":37893,"src":"7768:13:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":37882,"nodeType":"UserDefinedTypeName","pathNode":{"id":37881,"name":"IERC20","nameLocations":["7768:6:109"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"7768:6:109"},"referencedDeclaration":24193,"src":"7768:6:109","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"}],"src":"7767:15:109"},"returnParameters":{"id":37885,"nodeType":"ParameterList","parameters":[],"src":"7800:0:109"},"scope":38231,"src":"7743:102:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37905,"nodeType":"Block","src":"7918:55:109","statements":[{"expression":{"arguments":[{"id":37902,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37896,"src":"7959:6:109","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}],"expression":{"id":37899,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"7928:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7934:24:109","memberName":"__ERC4626_init_unchained","nodeType":"MemberAccess","referencedDeclaration":16918,"src":"7928:30:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$returns$__$","typeString":"function (contract IERC20)"}},"id":37903,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7928:38:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37904,"nodeType":"ExpressionStatement","src":"7928:38:109"}]},"functionSelector":"48798720","id":37906,"implemented":true,"kind":"function","modifiers":[],"name":"$__ERC4626_init_unchained","nameLocation":"7860:25:109","nodeType":"FunctionDefinition","parameters":{"id":37897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37896,"mutability":"mutable","name":"asset_","nameLocation":"7893:6:109","nodeType":"VariableDeclaration","scope":37906,"src":"7886:13:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"},"typeName":{"id":37895,"nodeType":"UserDefinedTypeName","pathNode":{"id":37894,"name":"IERC20","nameLocations":["7886:6:109"],"nodeType":"IdentifierPath","referencedDeclaration":24193,"src":"7886:6:109"},"referencedDeclaration":24193,"src":"7886:6:109","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}},"visibility":"internal"}],"src":"7885:15:109"},"returnParameters":{"id":37898,"nodeType":"ParameterList","parameters":[],"src":"7918:0:109"},"scope":38231,"src":"7851:122:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37925,"nodeType":"Block","src":"8082:65:109","statements":[{"expression":{"id":37923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":37916,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37914,"src":"8093:4:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":37917,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"8092:6:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":37920,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37908,"src":"8124:6:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":37921,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37911,"src":"8131:8:109","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"expression":{"id":37918,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8101:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37919,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8107:16:109","memberName":"_convertToShares","nodeType":"MemberAccess","referencedDeclaration":17419,"src":"8101:22:109","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":37922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8101:39:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8092:48:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":37924,"nodeType":"ExpressionStatement","src":"8092:48:109"}]},"functionSelector":"8b4e914a","id":37926,"implemented":true,"kind":"function","modifiers":[],"name":"$_convertToShares","nameLocation":"7988:17:109","nodeType":"FunctionDefinition","parameters":{"id":37912,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37908,"mutability":"mutable","name":"assets","nameLocation":"8014:6:109","nodeType":"VariableDeclaration","scope":37926,"src":"8006:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37907,"name":"uint256","nodeType":"ElementaryTypeName","src":"8006:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":37911,"mutability":"mutable","name":"rounding","nameLocation":"8035:8:109","nodeType":"VariableDeclaration","scope":37926,"src":"8021:22:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"},"typeName":{"id":37910,"nodeType":"UserDefinedTypeName","pathNode":{"id":37909,"name":"Math.Rounding","nameLocations":["8021:4:109","8026:8:109"],"nodeType":"IdentifierPath","referencedDeclaration":33557,"src":"8021:13:109"},"referencedDeclaration":33557,"src":"8021:13:109","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"8005:39:109"},"returnParameters":{"id":37915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37914,"mutability":"mutable","name":"ret0","nameLocation":"8076:4:109","nodeType":"VariableDeclaration","scope":37926,"src":"8068:12:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37913,"name":"uint256","nodeType":"ElementaryTypeName","src":"8068:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8067:14:109"},"scope":38231,"src":"7979:168:109","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":37945,"nodeType":"Block","src":"8256:65:109","statements":[{"expression":{"id":37943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":37936,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37934,"src":"8267:4:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":37937,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"8266:6:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":37940,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37928,"src":"8298:6:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":37941,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37931,"src":"8305:8:109","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}],"expression":{"id":37938,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8275:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37939,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8281:16:109","memberName":"_convertToAssets","nodeType":"MemberAccess","referencedDeclaration":17447,"src":"8275:22:109","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_enum$_Rounding_$33557_$returns$_t_uint256_$","typeString":"function (uint256,enum Math.Rounding) view returns (uint256)"}},"id":37942,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8275:39:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8266:48:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":37944,"nodeType":"ExpressionStatement","src":"8266:48:109"}]},"functionSelector":"ca10eca0","id":37946,"implemented":true,"kind":"function","modifiers":[],"name":"$_convertToAssets","nameLocation":"8162:17:109","nodeType":"FunctionDefinition","parameters":{"id":37932,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37928,"mutability":"mutable","name":"shares","nameLocation":"8188:6:109","nodeType":"VariableDeclaration","scope":37946,"src":"8180:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37927,"name":"uint256","nodeType":"ElementaryTypeName","src":"8180:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":37931,"mutability":"mutable","name":"rounding","nameLocation":"8209:8:109","nodeType":"VariableDeclaration","scope":37946,"src":"8195:22:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"},"typeName":{"id":37930,"nodeType":"UserDefinedTypeName","pathNode":{"id":37929,"name":"Math.Rounding","nameLocations":["8195:4:109","8200:8:109"],"nodeType":"IdentifierPath","referencedDeclaration":33557,"src":"8195:13:109"},"referencedDeclaration":33557,"src":"8195:13:109","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$33557","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"8179:39:109"},"returnParameters":{"id":37935,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37934,"mutability":"mutable","name":"ret0","nameLocation":"8250:4:109","nodeType":"VariableDeclaration","scope":37946,"src":"8242:12:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37933,"name":"uint256","nodeType":"ElementaryTypeName","src":"8242:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8241:14:109"},"scope":38231,"src":"8153:168:109","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":37966,"nodeType":"Block","src":"8426:62:109","statements":[{"expression":{"arguments":[{"id":37960,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37948,"src":"8451:6:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":37961,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37950,"src":"8458:8:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":37962,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37952,"src":"8467:6:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":37963,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37954,"src":"8474:6:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":37957,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8436:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8442:8:109","memberName":"_deposit","nodeType":"MemberAccess","referencedDeclaration":17487,"src":"8436:14:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":37964,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8436:45:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37965,"nodeType":"ExpressionStatement","src":"8436:45:109"}]},"functionSelector":"9c0b90c7","id":37967,"implemented":true,"kind":"function","modifiers":[],"name":"$_deposit","nameLocation":"8336:9:109","nodeType":"FunctionDefinition","parameters":{"id":37955,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37948,"mutability":"mutable","name":"caller","nameLocation":"8354:6:109","nodeType":"VariableDeclaration","scope":37967,"src":"8346:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37947,"name":"address","nodeType":"ElementaryTypeName","src":"8346:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":37950,"mutability":"mutable","name":"receiver","nameLocation":"8369:8:109","nodeType":"VariableDeclaration","scope":37967,"src":"8361:16:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":37949,"name":"address","nodeType":"ElementaryTypeName","src":"8361:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":37952,"mutability":"mutable","name":"assets","nameLocation":"8386:6:109","nodeType":"VariableDeclaration","scope":37967,"src":"8378:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37951,"name":"uint256","nodeType":"ElementaryTypeName","src":"8378:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":37954,"mutability":"mutable","name":"shares","nameLocation":"8401:6:109","nodeType":"VariableDeclaration","scope":37967,"src":"8393:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":37953,"name":"uint256","nodeType":"ElementaryTypeName","src":"8393:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8345:63:109"},"returnParameters":{"id":37956,"nodeType":"ParameterList","parameters":[],"src":"8426:0:109"},"scope":38231,"src":"8327:161:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":37979,"nodeType":"Block","src":"8557:49:109","statements":[{"expression":{"id":37977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":37972,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37970,"src":"8568:4:109","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":37973,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"8567:6:109","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":37974,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8576:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8582:15:109","memberName":"_decimalsOffset","nodeType":"MemberAccess","referencedDeclaration":17545,"src":"8576:21:109","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint8_$","typeString":"function () view returns (uint8)"}},"id":37976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8576:23:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"8567:32:109","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":37978,"nodeType":"ExpressionStatement","src":"8567:32:109"}]},"functionSelector":"ef4f78d1","id":37980,"implemented":true,"kind":"function","modifiers":[],"name":"$_decimalsOffset","nameLocation":"8503:16:109","nodeType":"FunctionDefinition","parameters":{"id":37968,"nodeType":"ParameterList","parameters":[],"src":"8519:2:109"},"returnParameters":{"id":37971,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37970,"mutability":"mutable","name":"ret0","nameLocation":"8551:4:109","nodeType":"VariableDeclaration","scope":37980,"src":"8545:10:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":37969,"name":"uint8","nodeType":"ElementaryTypeName","src":"8545:5:109","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"8544:12:109"},"scope":38231,"src":"8494:112:109","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":37994,"nodeType":"Block","src":"8699:50:109","statements":[{"expression":{"arguments":[{"id":37990,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37982,"src":"8728:5:109","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"id":37991,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37984,"src":"8734:7:109","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"expression":{"id":37987,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8709:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":37989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8715:12:109","memberName":"__ERC20_init","nodeType":"MemberAccess","referencedDeclaration":16064,"src":"8709:18:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":37992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8709:33:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":37993,"nodeType":"ExpressionStatement","src":"8709:33:109"}]},"functionSelector":"b7e44f4e","id":37995,"implemented":true,"kind":"function","modifiers":[],"name":"$__ERC20_init","nameLocation":"8621:13:109","nodeType":"FunctionDefinition","parameters":{"id":37985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37982,"mutability":"mutable","name":"name_","nameLocation":"8651:5:109","nodeType":"VariableDeclaration","scope":37995,"src":"8635:21:109","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":37981,"name":"string","nodeType":"ElementaryTypeName","src":"8635:6:109","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":37984,"mutability":"mutable","name":"symbol_","nameLocation":"8673:7:109","nodeType":"VariableDeclaration","scope":37995,"src":"8657:23:109","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":37983,"name":"string","nodeType":"ElementaryTypeName","src":"8657:6:109","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8634:47:109"},"returnParameters":{"id":37986,"nodeType":"ParameterList","parameters":[],"src":"8699:0:109"},"scope":38231,"src":"8612:137:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":38009,"nodeType":"Block","src":"8852:60:109","statements":[{"expression":{"arguments":[{"id":38005,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37997,"src":"8891:5:109","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"id":38006,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":37999,"src":"8897:7:109","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"expression":{"id":38002,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"8862:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38004,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8868:22:109","memberName":"__ERC20_init_unchained","nodeType":"MemberAccess","referencedDeclaration":16092,"src":"8862:28:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":38007,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8862:43:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38008,"nodeType":"ExpressionStatement","src":"8862:43:109"}]},"functionSelector":"fa3045d0","id":38010,"implemented":true,"kind":"function","modifiers":[],"name":"$__ERC20_init_unchained","nameLocation":"8764:23:109","nodeType":"FunctionDefinition","parameters":{"id":38000,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37997,"mutability":"mutable","name":"name_","nameLocation":"8804:5:109","nodeType":"VariableDeclaration","scope":38010,"src":"8788:21:109","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":37996,"name":"string","nodeType":"ElementaryTypeName","src":"8788:6:109","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":37999,"mutability":"mutable","name":"symbol_","nameLocation":"8826:7:109","nodeType":"VariableDeclaration","scope":38010,"src":"8810:23:109","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":37998,"name":"string","nodeType":"ElementaryTypeName","src":"8810:6:109","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8787:47:109"},"returnParameters":{"id":38001,"nodeType":"ParameterList","parameters":[],"src":"8852:0:109"},"scope":38231,"src":"8755:157:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":38027,"nodeType":"Block","src":"8994:47:109","statements":[{"expression":{"arguments":[{"id":38022,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38012,"src":"9020:4:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":38023,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38014,"src":"9025:2:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":38024,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38016,"src":"9028:5:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":38019,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9004:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9010:9:109","memberName":"_transfer","nodeType":"MemberAccess","referencedDeclaration":16320,"src":"9004:15:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":38025,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9004:30:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38026,"nodeType":"ExpressionStatement","src":"9004:30:109"}]},"functionSelector":"efb43b07","id":38028,"implemented":true,"kind":"function","modifiers":[],"name":"$_transfer","nameLocation":"8927:10:109","nodeType":"FunctionDefinition","parameters":{"id":38017,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38012,"mutability":"mutable","name":"from","nameLocation":"8946:4:109","nodeType":"VariableDeclaration","scope":38028,"src":"8938:12:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38011,"name":"address","nodeType":"ElementaryTypeName","src":"8938:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38014,"mutability":"mutable","name":"to","nameLocation":"8959:2:109","nodeType":"VariableDeclaration","scope":38028,"src":"8951:10:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38013,"name":"address","nodeType":"ElementaryTypeName","src":"8951:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38016,"mutability":"mutable","name":"value","nameLocation":"8970:5:109","nodeType":"VariableDeclaration","scope":38028,"src":"8962:13:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38015,"name":"uint256","nodeType":"ElementaryTypeName","src":"8962:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8937:39:109"},"returnParameters":{"id":38018,"nodeType":"ParameterList","parameters":[],"src":"8994:0:109"},"scope":38231,"src":"8918:123:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":38045,"nodeType":"Block","src":"9121:45:109","statements":[{"expression":{"arguments":[{"id":38040,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38030,"src":"9145:4:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":38041,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38032,"src":"9150:2:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":38042,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38034,"src":"9153:5:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":38037,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9131:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9137:7:109","memberName":"_update","nodeType":"MemberAccess","referencedDeclaration":16412,"src":"9131:13:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":38043,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9131:28:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38044,"nodeType":"ExpressionStatement","src":"9131:28:109"}]},"functionSelector":"6855a178","id":38046,"implemented":true,"kind":"function","modifiers":[],"name":"$_update","nameLocation":"9056:8:109","nodeType":"FunctionDefinition","parameters":{"id":38035,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38030,"mutability":"mutable","name":"from","nameLocation":"9073:4:109","nodeType":"VariableDeclaration","scope":38046,"src":"9065:12:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38029,"name":"address","nodeType":"ElementaryTypeName","src":"9065:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38032,"mutability":"mutable","name":"to","nameLocation":"9086:2:109","nodeType":"VariableDeclaration","scope":38046,"src":"9078:10:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38031,"name":"address","nodeType":"ElementaryTypeName","src":"9078:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38034,"mutability":"mutable","name":"value","nameLocation":"9097:5:109","nodeType":"VariableDeclaration","scope":38046,"src":"9089:13:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38033,"name":"uint256","nodeType":"ElementaryTypeName","src":"9089:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9064:39:109"},"returnParameters":{"id":38036,"nodeType":"ParameterList","parameters":[],"src":"9121:0:109"},"scope":38231,"src":"9047:119:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":38060,"nodeType":"Block","src":"9236:43:109","statements":[{"expression":{"arguments":[{"id":38056,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38048,"src":"9258:7:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":38057,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38050,"src":"9266:5:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":38053,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9246:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9252:5:109","memberName":"_mint","nodeType":"MemberAccess","referencedDeclaration":16445,"src":"9246:11:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":38058,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9246:26:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38059,"nodeType":"ExpressionStatement","src":"9246:26:109"}]},"functionSelector":"cc461d62","id":38061,"implemented":true,"kind":"function","modifiers":[],"name":"$_mint","nameLocation":"9181:6:109","nodeType":"FunctionDefinition","parameters":{"id":38051,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38048,"mutability":"mutable","name":"account","nameLocation":"9196:7:109","nodeType":"VariableDeclaration","scope":38061,"src":"9188:15:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38047,"name":"address","nodeType":"ElementaryTypeName","src":"9188:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38050,"mutability":"mutable","name":"value","nameLocation":"9212:5:109","nodeType":"VariableDeclaration","scope":38061,"src":"9204:13:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38049,"name":"uint256","nodeType":"ElementaryTypeName","src":"9204:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9187:31:109"},"returnParameters":{"id":38052,"nodeType":"ParameterList","parameters":[],"src":"9236:0:109"},"scope":38231,"src":"9172:107:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":38075,"nodeType":"Block","src":"9349:43:109","statements":[{"expression":{"arguments":[{"id":38071,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38063,"src":"9371:7:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":38072,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38065,"src":"9379:5:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":38068,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9359:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9365:5:109","memberName":"_burn","nodeType":"MemberAccess","referencedDeclaration":16478,"src":"9359:11:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":38073,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9359:26:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38074,"nodeType":"ExpressionStatement","src":"9359:26:109"}]},"functionSelector":"e047838d","id":38076,"implemented":true,"kind":"function","modifiers":[],"name":"$_burn","nameLocation":"9294:6:109","nodeType":"FunctionDefinition","parameters":{"id":38066,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38063,"mutability":"mutable","name":"account","nameLocation":"9309:7:109","nodeType":"VariableDeclaration","scope":38076,"src":"9301:15:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38062,"name":"address","nodeType":"ElementaryTypeName","src":"9301:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38065,"mutability":"mutable","name":"value","nameLocation":"9325:5:109","nodeType":"VariableDeclaration","scope":38076,"src":"9317:13:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38064,"name":"uint256","nodeType":"ElementaryTypeName","src":"9317:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9300:31:109"},"returnParameters":{"id":38067,"nodeType":"ParameterList","parameters":[],"src":"9349:0:109"},"scope":38231,"src":"9285:107:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":38093,"nodeType":"Block","src":"9479:52:109","statements":[{"expression":{"arguments":[{"id":38088,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38078,"src":"9504:5:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":38089,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38080,"src":"9510:7:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":38090,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38082,"src":"9518:5:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":38085,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9489:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9495:8:109","memberName":"_approve","nodeType":"MemberAccess","referencedDeclaration":16496,"src":"9489:14:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":38091,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9489:35:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38092,"nodeType":"ExpressionStatement","src":"9489:35:109"}]},"functionSelector":"861e3d3d","id":38094,"implemented":true,"kind":"function","modifiers":[],"name":"$_approve","nameLocation":"9407:9:109","nodeType":"FunctionDefinition","parameters":{"id":38083,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38078,"mutability":"mutable","name":"owner","nameLocation":"9425:5:109","nodeType":"VariableDeclaration","scope":38094,"src":"9417:13:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38077,"name":"address","nodeType":"ElementaryTypeName","src":"9417:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38080,"mutability":"mutable","name":"spender","nameLocation":"9439:7:109","nodeType":"VariableDeclaration","scope":38094,"src":"9431:15:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38079,"name":"address","nodeType":"ElementaryTypeName","src":"9431:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38082,"mutability":"mutable","name":"value","nameLocation":"9455:5:109","nodeType":"VariableDeclaration","scope":38094,"src":"9447:13:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38081,"name":"uint256","nodeType":"ElementaryTypeName","src":"9447:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9416:45:109"},"returnParameters":{"id":38084,"nodeType":"ParameterList","parameters":[],"src":"9479:0:109"},"scope":38231,"src":"9398:133:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":38114,"nodeType":"Block","src":"9633:62:109","statements":[{"expression":{"arguments":[{"id":38108,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38096,"src":"9658:5:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":38109,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38098,"src":"9664:7:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":38110,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38100,"src":"9672:5:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":38111,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38102,"src":"9678:9:109","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":38105,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9643:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38107,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9649:8:109","memberName":"_approve","nodeType":"MemberAccess","referencedDeclaration":16564,"src":"9643:14:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":38112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9643:45:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38113,"nodeType":"ExpressionStatement","src":"9643:45:109"}]},"functionSelector":"32bc74aa","id":38115,"implemented":true,"kind":"function","modifiers":[],"name":"$_approve","nameLocation":"9546:9:109","nodeType":"FunctionDefinition","parameters":{"id":38103,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38096,"mutability":"mutable","name":"owner","nameLocation":"9564:5:109","nodeType":"VariableDeclaration","scope":38115,"src":"9556:13:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38095,"name":"address","nodeType":"ElementaryTypeName","src":"9556:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38098,"mutability":"mutable","name":"spender","nameLocation":"9578:7:109","nodeType":"VariableDeclaration","scope":38115,"src":"9570:15:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38097,"name":"address","nodeType":"ElementaryTypeName","src":"9570:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38100,"mutability":"mutable","name":"value","nameLocation":"9594:5:109","nodeType":"VariableDeclaration","scope":38115,"src":"9586:13:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38099,"name":"uint256","nodeType":"ElementaryTypeName","src":"9586:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":38102,"mutability":"mutable","name":"emitEvent","nameLocation":"9605:9:109","nodeType":"VariableDeclaration","scope":38115,"src":"9600:14:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":38101,"name":"bool","nodeType":"ElementaryTypeName","src":"9600:4:109","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9555:60:109"},"returnParameters":{"id":38104,"nodeType":"ParameterList","parameters":[],"src":"9633:0:109"},"scope":38231,"src":"9537:158:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":38132,"nodeType":"Block","src":"9789:59:109","statements":[{"expression":{"arguments":[{"id":38127,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38117,"src":"9821:5:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":38128,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38119,"src":"9827:7:109","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":38129,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38121,"src":"9835:5:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":38124,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9799:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9805:15:109","memberName":"_spendAllowance","nodeType":"MemberAccess","referencedDeclaration":16612,"src":"9799:21:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":38130,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9799:42:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38131,"nodeType":"ExpressionStatement","src":"9799:42:109"}]},"functionSelector":"b2331d7d","id":38133,"implemented":true,"kind":"function","modifiers":[],"name":"$_spendAllowance","nameLocation":"9710:16:109","nodeType":"FunctionDefinition","parameters":{"id":38122,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38117,"mutability":"mutable","name":"owner","nameLocation":"9735:5:109","nodeType":"VariableDeclaration","scope":38133,"src":"9727:13:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38116,"name":"address","nodeType":"ElementaryTypeName","src":"9727:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38119,"mutability":"mutable","name":"spender","nameLocation":"9749:7:109","nodeType":"VariableDeclaration","scope":38133,"src":"9741:15:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38118,"name":"address","nodeType":"ElementaryTypeName","src":"9741:7:109","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38121,"mutability":"mutable","name":"value","nameLocation":"9765:5:109","nodeType":"VariableDeclaration","scope":38133,"src":"9757:13:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38120,"name":"uint256","nodeType":"ElementaryTypeName","src":"9757:7:109","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9726:45:109"},"returnParameters":{"id":38123,"nodeType":"ParameterList","parameters":[],"src":"9789:0:109"},"scope":38231,"src":"9701:147:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":38141,"nodeType":"Block","src":"9892:36:109","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":38136,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9902:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9908:11:109","memberName":"_checkProxy","nodeType":"MemberAccess","referencedDeclaration":23532,"src":"9902:17:109","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":38139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9902:19:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38140,"nodeType":"ExpressionStatement","src":"9902:19:109"}]},"functionSelector":"1a7e8014","id":38142,"implemented":true,"kind":"function","modifiers":[],"name":"$_checkProxy","nameLocation":"9863:12:109","nodeType":"FunctionDefinition","parameters":{"id":38134,"nodeType":"ParameterList","parameters":[],"src":"9875:2:109"},"returnParameters":{"id":38135,"nodeType":"ParameterList","parameters":[],"src":"9892:0:109"},"scope":38231,"src":"9854:74:109","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":38150,"nodeType":"Block","src":"9979:43:109","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":38145,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"9989:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9995:18:109","memberName":"_checkNotDelegated","nodeType":"MemberAccess","referencedDeclaration":23548,"src":"9989:24:109","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":38148,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9989:26:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38149,"nodeType":"ExpressionStatement","src":"9989:26:109"}]},"functionSelector":"0aecc093","id":38151,"implemented":true,"kind":"function","modifiers":[],"name":"$_checkNotDelegated","nameLocation":"9943:19:109","nodeType":"FunctionDefinition","parameters":{"id":38143,"nodeType":"ParameterList","parameters":[],"src":"9962:2:109"},"returnParameters":{"id":38144,"nodeType":"ParameterList","parameters":[],"src":"9979:0:109"},"scope":38231,"src":"9934:88:109","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":38159,"nodeType":"Block","src":"10072:39:109","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":38154,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"10082:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10088:14:109","memberName":"__Context_init","nodeType":"MemberAccess","referencedDeclaration":18639,"src":"10082:20:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":38157,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10082:22:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38158,"nodeType":"ExpressionStatement","src":"10082:22:109"}]},"functionSelector":"adfdfe2e","id":38160,"implemented":true,"kind":"function","modifiers":[],"name":"$__Context_init","nameLocation":"10037:15:109","nodeType":"FunctionDefinition","parameters":{"id":38152,"nodeType":"ParameterList","parameters":[],"src":"10052:2:109"},"returnParameters":{"id":38153,"nodeType":"ParameterList","parameters":[],"src":"10072:0:109"},"scope":38231,"src":"10028:83:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":38168,"nodeType":"Block","src":"10171:49:109","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":38163,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"10181:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10187:24:109","memberName":"__Context_init_unchained","nodeType":"MemberAccess","referencedDeclaration":18645,"src":"10181:30:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":38166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10181:32:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38167,"nodeType":"ExpressionStatement","src":"10181:32:109"}]},"functionSelector":"f15476a2","id":38169,"implemented":true,"kind":"function","modifiers":[],"name":"$__Context_init_unchained","nameLocation":"10126:25:109","nodeType":"FunctionDefinition","parameters":{"id":38161,"nodeType":"ParameterList","parameters":[],"src":"10151:2:109"},"returnParameters":{"id":38162,"nodeType":"ParameterList","parameters":[],"src":"10171:0:109"},"scope":38231,"src":"10117:103:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":38177,"nodeType":"Block","src":"10271:43:109","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":38172,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"10281:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38174,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10287:18:109","memberName":"_checkInitializing","nodeType":"MemberAccess","referencedDeclaration":23342,"src":"10281:24:109","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":38175,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10281:26:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38176,"nodeType":"ExpressionStatement","src":"10281:26:109"}]},"functionSelector":"fa171c92","id":38178,"implemented":true,"kind":"function","modifiers":[],"name":"$_checkInitializing","nameLocation":"10235:19:109","nodeType":"FunctionDefinition","parameters":{"id":38170,"nodeType":"ParameterList","parameters":[],"src":"10254:2:109"},"returnParameters":{"id":38171,"nodeType":"ParameterList","parameters":[],"src":"10271:0:109"},"scope":38231,"src":"10226:88:109","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":38186,"nodeType":"Block","src":"10370:45:109","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":38181,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"10380:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10386:20:109","memberName":"_disableInitializers","nodeType":"MemberAccess","referencedDeclaration":23388,"src":"10380:26:109","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":38184,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10380:28:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38185,"nodeType":"ExpressionStatement","src":"10380:28:109"}]},"functionSelector":"f5f1bec0","id":38187,"implemented":true,"kind":"function","modifiers":[],"name":"$_disableInitializers","nameLocation":"10329:21:109","nodeType":"FunctionDefinition","parameters":{"id":38179,"nodeType":"ParameterList","parameters":[],"src":"10350:2:109"},"returnParameters":{"id":38180,"nodeType":"ParameterList","parameters":[],"src":"10370:0:109"},"scope":38231,"src":"10320:95:109","stateMutability":"payable","virtual":false,"visibility":"external"},{"body":{"id":38199,"nodeType":"Block","src":"10492:56:109","statements":[{"expression":{"id":38197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":38192,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38190,"src":"10503:4:109","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"id":38193,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"10502:6:109","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":38194,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"10511:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38195,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10517:22:109","memberName":"_getInitializedVersion","nodeType":"MemberAccess","referencedDeclaration":23399,"src":"10511:28:109","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint64_$","typeString":"function () view returns (uint64)"}},"id":38196,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10511:30:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"10502:39:109","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":38198,"nodeType":"ExpressionStatement","src":"10502:39:109"}]},"functionSelector":"4fd5303d","id":38200,"implemented":true,"kind":"function","modifiers":[],"name":"$_getInitializedVersion","nameLocation":"10430:23:109","nodeType":"FunctionDefinition","parameters":{"id":38188,"nodeType":"ParameterList","parameters":[],"src":"10453:2:109"},"returnParameters":{"id":38191,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38190,"mutability":"mutable","name":"ret0","nameLocation":"10486:4:109","nodeType":"VariableDeclaration","scope":38200,"src":"10479:11:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":38189,"name":"uint64","nodeType":"ElementaryTypeName","src":"10479:6:109","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"10478:13:109"},"scope":38231,"src":"10421:127:109","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":38212,"nodeType":"Block","src":"10616:49:109","statements":[{"expression":{"id":38210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":38205,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38203,"src":"10627:4:109","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":38206,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"10626:6:109","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":38207,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"10635:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10641:15:109","memberName":"_isInitializing","nodeType":"MemberAccess","referencedDeclaration":23410,"src":"10635:21:109","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":38209,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10635:23:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10626:32:109","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":38211,"nodeType":"ExpressionStatement","src":"10626:32:109"}]},"functionSelector":"c9eb0571","id":38213,"implemented":true,"kind":"function","modifiers":[],"name":"$_isInitializing","nameLocation":"10563:16:109","nodeType":"FunctionDefinition","parameters":{"id":38201,"nodeType":"ParameterList","parameters":[],"src":"10579:2:109"},"returnParameters":{"id":38204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38203,"mutability":"mutable","name":"ret0","nameLocation":"10610:4:109","nodeType":"VariableDeclaration","scope":38213,"src":"10605:9:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":38202,"name":"bool","nodeType":"ElementaryTypeName","src":"10605:4:109","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10604:11:109"},"scope":38231,"src":"10554:111:109","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":38225,"nodeType":"Block","src":"10746:59:109","statements":[{"expression":{"id":38223,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":38218,"name":"ret0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38216,"src":"10757:4:109","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":38219,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"10756:6:109","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":38220,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"10765:5:109","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_$$$CashFlowLender_$38231_$","typeString":"type(contract super $CashFlowLender)"}},"id":38221,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10771:25:109","memberName":"_initializableStorageSlot","nodeType":"MemberAccess","referencedDeclaration":23419,"src":"10765:31:109","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_bytes32_$","typeString":"function () pure returns (bytes32)"}},"id":38222,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10765:33:109","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"10756:42:109","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":38224,"nodeType":"ExpressionStatement","src":"10756:42:109"}]},"functionSelector":"1a034afb","id":38226,"implemented":true,"kind":"function","modifiers":[],"name":"$_initializableStorageSlot","nameLocation":"10680:26:109","nodeType":"FunctionDefinition","parameters":{"id":38214,"nodeType":"ParameterList","parameters":[],"src":"10706:2:109"},"returnParameters":{"id":38217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38216,"mutability":"mutable","name":"ret0","nameLocation":"10740:4:109","nodeType":"VariableDeclaration","scope":38226,"src":"10732:12:109","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":38215,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10732:7:109","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"10731:14:109"},"scope":38231,"src":"10671:134:109","stateMutability":"pure","virtual":false,"visibility":"external"},{"body":{"id":38229,"nodeType":"Block","src":"10838:2:109","statements":[]},"id":38230,"implemented":true,"kind":"receive","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":38227,"nodeType":"ParameterList","parameters":[],"src":"10818:2:109"},"returnParameters":{"id":38228,"nodeType":"ParameterList","parameters":[],"src":"10838:0:109"},"scope":38231,"src":"10811:29:109","stateMutability":"payable","virtual":false,"visibility":"external"}],"scope":38232,"src":"2995:7847:109","usedErrors":[16839,16848,16857,16866,22518,22523,22528,22537,22542,22547,22846,22859,23183,23186,23457,23462,24973,25668,26799,26802,35197,35214,38457,38461,38468,38470,38472,38474,38480,38488,38492,38494,38496,38500,38506,38512,38514],"usedEvents":[22272,22314,22326,23191,24127,24136,37433,37437,37441,38376,38390,38404,38418,38425,38437,38447,38455]}],"src":"40:10803:109"},"id":109},"contracts/CashFlowLender.sol":{"ast":{"absolutePath":"contracts/CashFlowLender.sol","exportedSymbols":{"AMPUtils":[4080],"AccessManagedProxy":[4170],"Address":[26046],"CashFlowLender":[40840],"ContextUpgradeable":[18672],"ERC165":[33323],"ERC2771ContextUpgradeable":[15992],"ERC4626Upgradeable":[17546],"IERC20":[24193],"IERC20Metadata":[24925],"IERC4626":[22463],"IERC721":[25533],"IERC721Receiver":[25551],"IPolicyHolder":[14449],"IPolicyPool":[40853],"IRiskModule":[40879],"Math":[35187],"Packing":[30945],"Policy":[8314],"SafeCast":[36952],"SafeERC20":[25416],"UUPSUpgradeable":[23600]},"id":40841,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":38233,"literals":["solidity","^","0.8",".16"],"nodeType":"PragmaDirective","src":"39:24:110"},{"absolutePath":"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol","file":"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol","id":38235,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":17547,"src":"65:117:110","symbolAliases":[{"foreign":{"id":38234,"name":"ERC4626Upgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17546,"src":"73:18:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol","id":38237,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":15993,"src":"183:115:110","symbolAliases":[{"foreign":{"id":38236,"name":"ERC2771ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15992,"src":"191:25:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol","id":38239,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":18673,"src":"299:100:110","symbolAliases":[{"foreign":{"id":38238,"name":"ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18672,"src":"307:18:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20Metadata.sol","file":"@openzeppelin/contracts/interfaces/IERC20Metadata.sol","id":38241,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":22294,"src":"400:85:110","symbolAliases":[{"foreign":{"id":38240,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"408:14:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC20.sol","file":"@openzeppelin/contracts/interfaces/IERC20.sol","id":38243,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":22290,"src":"486:69:110","symbolAliases":[{"foreign":{"id":38242,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"494:6:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC721.sol","file":"@openzeppelin/contracts/interfaces/IERC721.sol","id":38245,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":22493,"src":"556:71:110","symbolAliases":[{"foreign":{"id":38244,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25533,"src":"564:7:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC721Receiver.sol","file":"@openzeppelin/contracts/interfaces/IERC721Receiver.sol","id":38247,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":22497,"src":"628:87:110","symbolAliases":[{"foreign":{"id":38246,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25551,"src":"636:15:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC4626.sol","file":"@openzeppelin/contracts/interfaces/IERC4626.sol","id":38249,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":22464,"src":"716:73:110","symbolAliases":[{"foreign":{"id":38248,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22463,"src":"724:8:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Packing.sol","file":"@openzeppelin/contracts/utils/Packing.sol","id":38251,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":30946,"src":"790:66:110","symbolAliases":[{"foreign":{"id":38250,"name":"Packing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30945,"src":"798:7:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Address.sol","file":"@openzeppelin/contracts/utils/Address.sol","id":38253,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":26047,"src":"857:66:110","symbolAliases":[{"foreign":{"id":38252,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":26046,"src":"865:7:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","file":"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol","id":38255,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":25552,"src":"924:89:110","symbolAliases":[{"foreign":{"id":38254,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25551,"src":"932:15:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"@openzeppelin/contracts/utils/math/Math.sol","id":38257,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":35188,"src":"1014:65:110","symbolAliases":[{"foreign":{"id":38256,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"1022:4:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"@openzeppelin/contracts/utils/math/SafeCast.sol","id":38259,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":36953,"src":"1080:73:110","symbolAliases":[{"foreign":{"id":38258,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":36952,"src":"1088:8:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","file":"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol","id":38261,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":25417,"src":"1154:82:110","symbolAliases":[{"foreign":{"id":38260,"name":"SafeERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25416,"src":"1162:9:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol","file":"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol","id":38263,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":15997,"src":"1237:100:110","symbolAliases":[{"foreign":{"id":38262,"name":"UUPSUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23600,"src":"1245:15:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"@openzeppelin/contracts/utils/introspection/ERC165.sol","id":38265,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":33324,"src":"1338:78:110","symbolAliases":[{"foreign":{"id":38264,"name":"ERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":33323,"src":"1346:6:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/dependencies/IPolicyPool.sol","file":"./dependencies/IPolicyPool.sol","id":38267,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":40854,"src":"1417:59:110","symbolAliases":[{"foreign":{"id":38266,"name":"IPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40853,"src":"1425:11:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/dependencies/IRiskModule.sol","file":"./dependencies/IRiskModule.sol","id":38269,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":40880,"src":"1477:59:110","symbolAliases":[{"foreign":{"id":38268,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40879,"src":"1485:11:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyHolder.sol","file":"@ensuro/core/contracts/interfaces/IPolicyHolder.sol","id":38271,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":14450,"src":"1537:82:110","symbolAliases":[{"foreign":{"id":38270,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"1545:13:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/core/contracts/Policy.sol","file":"@ensuro/core/contracts/Policy.sol","id":38273,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":8315,"src":"1620:57:110","symbolAliases":[{"foreign":{"id":38272,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"1628:6:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol","file":"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol","id":38275,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":4171,"src":"1678:97:110","symbolAliases":[{"foreign":{"id":38274,"name":"AccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4170,"src":"1686:18:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@ensuro/access-managed-proxy/contracts/AMPUtils.sol","file":"@ensuro/access-managed-proxy/contracts/AMPUtils.sol","id":38277,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40841,"sourceUnit":4081,"src":"1776:77:110","symbolAliases":[{"foreign":{"id":38276,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4080,"src":"1784:8:110","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":38279,"name":"ERC2771ContextUpgradeable","nameLocations":["3426:25:110"],"nodeType":"IdentifierPath","referencedDeclaration":15992,"src":"3426:25:110"},"id":38280,"nodeType":"InheritanceSpecifier","src":"3426:25:110"},{"baseName":{"id":38281,"name":"UUPSUpgradeable","nameLocations":["3453:15:110"],"nodeType":"IdentifierPath","referencedDeclaration":23600,"src":"3453:15:110"},"id":38282,"nodeType":"InheritanceSpecifier","src":"3453:15:110"},{"baseName":{"id":38283,"name":"ERC4626Upgradeable","nameLocations":["3470:18:110"],"nodeType":"IdentifierPath","referencedDeclaration":17546,"src":"3470:18:110"},"id":38284,"nodeType":"InheritanceSpecifier","src":"3470:18:110"},{"baseName":{"id":38285,"name":"IPolicyHolder","nameLocations":["3490:13:110"],"nodeType":"IdentifierPath","referencedDeclaration":14449,"src":"3490:13:110"},"id":38286,"nodeType":"InheritanceSpecifier","src":"3490:13:110"},{"baseName":{"id":38287,"name":"ERC165","nameLocations":["3505:6:110"],"nodeType":"IdentifierPath","referencedDeclaration":33323,"src":"3505:6:110"},"id":38288,"nodeType":"InheritanceSpecifier","src":"3505:6:110"}],"canonicalName":"CashFlowLender","contractDependencies":[],"contractKind":"contract","documentation":{"id":38278,"nodeType":"StructuredDocumentation","src":"1855:1543:110","text":" @title CashFlow Lender Module that tracks ownership\n @dev Implements the ERC-4626 standard tracking how much liquidity was provided by each LP.\n      The assets managed by the vault are a mix of liquid USDC + the $._totalDebt tracked by the CFL.\n      The debt is tracked as a global number, but also for each target and period (month for example). If the debt\n      is negative, it means Ensuro owes to the customer.\n      The funds can also be sent to a $._yieldVault to generate yields on the idle funds.\n      The contract forwards the calls to the targets (Ensuro risk modules), but it has two variants for doing that\n      a. forwardNewPolicy (and the batch variant): this method tracks the balance reduction caused by paying the\n         premiums, and in base of that number increases the debt.\n      b. forwardResolvePolicy (and the batch variant): this method just forwards the call (after doing access\n         validations). The debt will be reduced when the policies are resolved and the PolicyPool calls\n         `onPayoutReceived(...)`\n      The contract is a UUPSUpgradeable contract but MUST NOT be used with a plain ERC1967 proxy, but instead with\n      an `AccessManagedProxy` that executes the access control. The contract DOESN'T IMPLEMENT ACCESS CONTROL\n      validations on the critical methods. It's assumed it will be deployed behind an AccessManagedProxy with\n      the proper access control setup.\n @custom:security-contact security@ensuro.co\n @author Ensuro"},"fullyImplemented":true,"id":40840,"linearizedBaseContracts":[40840,33323,33545,14449,25551,17546,22463,16613,22548,24925,24193,23600,22506,15992,18672,23434],"name":"CashFlowLender","nameLocation":"3408:14:110","nodeType":"ContractDefinition","nodes":[{"global":false,"id":38292,"libraryName":{"id":38289,"name":"SafeERC20","nameLocations":["3522:9:110"],"nodeType":"IdentifierPath","referencedDeclaration":25416,"src":"3522:9:110"},"nodeType":"UsingForDirective","src":"3516:35:110","typeName":{"id":38291,"nodeType":"UserDefinedTypeName","pathNode":{"id":38290,"name":"IERC20Metadata","nameLocations":["3536:14:110"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"3536:14:110"},"referencedDeclaration":24925,"src":"3536:14:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}}},{"global":false,"id":38295,"libraryName":{"id":38293,"name":"SafeCast","nameLocations":["3560:8:110"],"nodeType":"IdentifierPath","referencedDeclaration":36952,"src":"3560:8:110"},"nodeType":"UsingForDirective","src":"3554:27:110","typeName":{"id":38294,"name":"uint256","nodeType":"ElementaryTypeName","src":"3573:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"global":false,"id":38298,"libraryName":{"id":38296,"name":"SafeCast","nameLocations":["3590:8:110"],"nodeType":"IdentifierPath","referencedDeclaration":36952,"src":"3590:8:110"},"nodeType":"UsingForDirective","src":"3584:26:110","typeName":{"id":38297,"name":"int256","nodeType":"ElementaryTypeName","src":"3603:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}},{"global":false,"id":38301,"libraryName":{"id":38299,"name":"Address","nameLocations":["3619:7:110"],"nodeType":"IdentifierPath","referencedDeclaration":26046,"src":"3619:7:110"},"nodeType":"UsingForDirective","src":"3613:26:110","typeName":{"id":38300,"name":"address","nodeType":"ElementaryTypeName","src":"3631:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},{"constant":true,"functionSelector":"a9ed1487","id":38304,"mutability":"constant","name":"OWN_POLICY_SELECTOR","nameLocation":"3666:19:110","nodeType":"VariableDeclaration","scope":40840,"src":"3643:55:110","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":38302,"name":"bytes4","nodeType":"ElementaryTypeName","src":"3643:6:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"value":{"hexValue":"30786666666666666666","id":38303,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3688:10:110","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"value":"0xffffffff"},"visibility":"public"},{"constant":true,"documentation":{"id":38305,"nodeType":"StructuredDocumentation","src":"3703:130:110","text":" @dev Slot size used to indicate the slots use calendar months.\n      Only years from 2025 to 2099 are supported"},"functionSelector":"3edeb257","id":38312,"mutability":"constant","name":"SLOTSIZE_CALENDAR_MONTH","nameLocation":"3859:23:110","nodeType":"VariableDeclaration","scope":40840,"src":"3836:65:110","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":38306,"name":"uint32","nodeType":"ElementaryTypeName","src":"3836:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"expression":{"arguments":[{"id":38309,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3890:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":38308,"name":"uint32","nodeType":"ElementaryTypeName","src":"3890:6:110","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"}],"id":38307,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3885:4:110","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":38310,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3885:12:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint32","typeString":"type(uint32)"}},"id":38311,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3898:3:110","memberName":"max","nodeType":"MemberAccess","src":"3885:16:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"public"},{"constant":true,"id":38315,"mutability":"constant","name":"JAN_1ST_2025","nameLocation":"3932:12:110","nodeType":"VariableDeclaration","scope":40840,"src":"3906:51:110","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38313,"name":"uint256","nodeType":"ElementaryTypeName","src":"3906:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31373335363839363030","id":38314,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3947:10:110","typeDescriptions":{"typeIdentifier":"t_rational_1735689600_by_1","typeString":"int_const 1735689600"},"value":"1735689600"},"visibility":"internal"},{"constant":true,"id":38318,"mutability":"constant","name":"SECONDS_PER_DAY","nameLocation":"3987:15:110","nodeType":"VariableDeclaration","scope":40840,"src":"3961:49:110","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38316,"name":"uint256","nodeType":"ElementaryTypeName","src":"3961:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3836343030","id":38317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4005:5:110","typeDescriptions":{"typeIdentifier":"t_rational_86400_by_1","typeString":"int_const 86400"},"value":"86400"},"visibility":"internal"},{"constant":false,"documentation":{"id":38319,"nodeType":"StructuredDocumentation","src":"4015:61:110","text":"@custom:oz-upgrades-unsafe-allow state-variable-immutable"},"id":38322,"mutability":"immutable","name":"_policyPool","nameLocation":"4110:11:110","nodeType":"VariableDeclaration","scope":40840,"src":"4079:42:110","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"},"typeName":{"id":38321,"nodeType":"UserDefinedTypeName","pathNode":{"id":38320,"name":"IPolicyPool","nameLocations":["4079:11:110"],"nodeType":"IdentifierPath","referencedDeclaration":40853,"src":"4079:11:110"},"referencedDeclaration":40853,"src":"4079:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}},"visibility":"internal"},{"canonicalName":"CashFlowLender.TargetSlot","id":38324,"name":"TargetSlot","nameLocation":"4456:10:110","nodeType":"UserDefinedValueTypeDefinition","src":"4451:27:110","underlyingType":{"id":38323,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4470:7:110","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"canonicalName":"CashFlowLender.TargetStatus","documentation":{"id":38325,"nodeType":"StructuredDocumentation","src":"4558:94:110","text":" @dev This status defines what kind of operations are enabled for a given target"},"id":38330,"members":[{"id":38326,"name":"inactive","nameLocation":"4679:8:110","nodeType":"EnumValue","src":"4679:8:110"},{"id":38327,"name":"active","nameLocation":"4713:6:110","nodeType":"EnumValue","src":"4713:6:110"},{"id":38328,"name":"deprecated","nameLocation":"4748:10:110","nodeType":"EnumValue","src":"4748:10:110"},{"id":38329,"name":"suspended","nameLocation":"4793:9:110","nodeType":"EnumValue","src":"4793:9:110"}],"name":"TargetStatus","nameLocation":"4660:12:110","nodeType":"EnumDefinition","src":"4655:171:110"},{"canonicalName":"CashFlowLender.TargetConfig","id":38340,"members":[{"constant":false,"id":38332,"mutability":"mutable","name":"slotSize","nameLocation":"4863:8:110","nodeType":"VariableDeclaration","scope":38340,"src":"4856:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":38331,"name":"uint32","nodeType":"ElementaryTypeName","src":"4856:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":38335,"mutability":"mutable","name":"status","nameLocation":"4890:6:110","nodeType":"VariableDeclaration","scope":38340,"src":"4877:19:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},"typeName":{"id":38334,"nodeType":"UserDefinedTypeName","pathNode":{"id":38333,"name":"TargetStatus","nameLocations":["4877:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38330,"src":"4877:12:110"},"referencedDeclaration":38330,"src":"4877:12:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"visibility":"internal"},{"constant":false,"id":38337,"mutability":"mutable","name":"debtLimit","nameLocation":"4909:9:110","nodeType":"VariableDeclaration","scope":38340,"src":"4902:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":38336,"name":"uint96","nodeType":"ElementaryTypeName","src":"4902:6:110","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"},{"constant":false,"id":38339,"mutability":"mutable","name":"minLiquidity","nameLocation":"4961:12:110","nodeType":"VariableDeclaration","scope":38340,"src":"4954:19:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":38338,"name":"uint96","nodeType":"ElementaryTypeName","src":"4954:6:110","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"name":"TargetConfig","nameLocation":"4837:12:110","nodeType":"StructDefinition","scope":40840,"src":"4830:204:110","visibility":"public"},{"canonicalName":"CashFlowLender.CashFlowLenderStorage","documentation":{"id":38341,"nodeType":"StructuredDocumentation","src":"5038:66:110","text":"@custom:storage-location erc7201:ensuro.storage.CashFlowLender"},"id":38357,"members":[{"constant":false,"id":38344,"mutability":"mutable","name":"_yieldVault","nameLocation":"5151:11:110","nodeType":"VariableDeclaration","scope":38357,"src":"5142:20:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":38343,"nodeType":"UserDefinedTypeName","pathNode":{"id":38342,"name":"IERC4626","nameLocations":["5142:8:110"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"5142:8:110"},"referencedDeclaration":22463,"src":"5142:8:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":38346,"mutability":"mutable","name":"_totalDebt","nameLocation":"5174:10:110","nodeType":"VariableDeclaration","scope":38357,"src":"5168:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"},"typeName":{"id":38345,"name":"int96","nodeType":"ElementaryTypeName","src":"5168:5:110","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"visibility":"internal"},{"constant":false,"id":38351,"mutability":"mutable","name":"_targets","nameLocation":"5223:8:110","nodeType":"VariableDeclaration","scope":38357,"src":"5190:41:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$38340_storage_$","typeString":"mapping(address => struct CashFlowLender.TargetConfig)"},"typeName":{"id":38350,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":38347,"name":"address","nodeType":"ElementaryTypeName","src":"5198:7:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"5190:32:110","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$38340_storage_$","typeString":"mapping(address => struct CashFlowLender.TargetConfig)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":38349,"nodeType":"UserDefinedTypeName","pathNode":{"id":38348,"name":"TargetConfig","nameLocations":["5209:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38340,"src":"5209:12:110"},"referencedDeclaration":38340,"src":"5209:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}}},"visibility":"internal"},{"constant":false,"id":38356,"mutability":"mutable","name":"_debtByPeriod","nameLocation":"5267:13:110","nodeType":"VariableDeclaration","scope":38357,"src":"5237:43:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TargetSlot_$38324_$_t_int256_$","typeString":"mapping(CashFlowLender.TargetSlot => int256)"},"typeName":{"id":38355,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":38353,"nodeType":"UserDefinedTypeName","pathNode":{"id":38352,"name":"TargetSlot","nameLocations":["5245:10:110"],"nodeType":"IdentifierPath","referencedDeclaration":38324,"src":"5245:10:110"},"referencedDeclaration":38324,"src":"5245:10:110","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$38324","typeString":"CashFlowLender.TargetSlot"}},"nodeType":"Mapping","src":"5237:29:110","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TargetSlot_$38324_$_t_int256_$","typeString":"mapping(CashFlowLender.TargetSlot => int256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":38354,"name":"int256","nodeType":"ElementaryTypeName","src":"5259:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}},"visibility":"internal"}],"name":"CashFlowLenderStorage","nameLocation":"5114:21:110","nodeType":"StructDefinition","scope":40840,"src":"5107:178:110","visibility":"public"},{"constant":true,"id":38360,"mutability":"constant","name":"CashFlowLenderStorageLocation","nameLocation":"5477:29:110","nodeType":"VariableDeclaration","scope":40840,"src":"5451:128:110","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":38358,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5451:7:110","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307830646666363630633730356563343930333833666661666339653865336162343731343535396639656338353637633533383064346164326466663561663030","id":38359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5513:66:110","typeDescriptions":{"typeIdentifier":"t_rational_6331317346581645585324972847313897437492051154648158542213559898182209875712_by_1","typeString":"int_const 6331...(68 digits omitted)...5712"},"value":"0x0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af00"},"visibility":"internal"},{"body":{"id":38367,"nodeType":"Block","src":"5677:124:110","statements":[{"AST":{"nativeSrc":"5744:53:110","nodeType":"YulBlock","src":"5744:53:110","statements":[{"nativeSrc":"5752:39:110","nodeType":"YulAssignment","src":"5752:39:110","value":{"name":"CashFlowLenderStorageLocation","nativeSrc":"5762:29:110","nodeType":"YulIdentifier","src":"5762:29:110"},"variableNames":[{"name":"$.slot","nativeSrc":"5752:6:110","nodeType":"YulIdentifier","src":"5752:6:110"}]}]},"evmVersion":"prague","externalReferences":[{"declaration":38364,"isOffset":false,"isSlot":true,"src":"5752:6:110","suffix":"slot","valueSize":1},{"declaration":38360,"isOffset":false,"isSlot":false,"src":"5762:29:110","valueSize":1}],"id":38366,"nodeType":"InlineAssembly","src":"5735:62:110"}]},"id":38368,"implemented":true,"kind":"function","modifiers":[],"name":"_getCashFlowLenderStorage","nameLocation":"5593:25:110","nodeType":"FunctionDefinition","parameters":{"id":38361,"nodeType":"ParameterList","parameters":[],"src":"5618:2:110"},"returnParameters":{"id":38365,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38364,"mutability":"mutable","name":"$","nameLocation":"5674:1:110","nodeType":"VariableDeclaration","scope":38368,"src":"5644:31:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":38363,"nodeType":"UserDefinedTypeName","pathNode":{"id":38362,"name":"CashFlowLenderStorage","nameLocations":["5644:21:110"],"nodeType":"IdentifierPath","referencedDeclaration":38357,"src":"5644:21:110"},"referencedDeclaration":38357,"src":"5644:21:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"src":"5643:33:110"},"scope":40840,"src":"5584:217:110","stateMutability":"pure","virtual":false,"visibility":"internal"},{"anonymous":false,"eventSelector":"9baaddad37a65ca0df0360563fca87a13c1ce354be76d7ec35eac48bd766332a","id":38376,"name":"YieldVaultChanged","nameLocation":"5811:17:110","nodeType":"EventDefinition","parameters":{"id":38375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38371,"indexed":false,"mutability":"mutable","name":"oldVault","nameLocation":"5838:8:110","nodeType":"VariableDeclaration","scope":38376,"src":"5829:17:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":38370,"nodeType":"UserDefinedTypeName","pathNode":{"id":38369,"name":"IERC4626","nameLocations":["5829:8:110"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"5829:8:110"},"referencedDeclaration":22463,"src":"5829:8:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":38374,"indexed":false,"mutability":"mutable","name":"newVault","nameLocation":"5857:8:110","nodeType":"VariableDeclaration","scope":38376,"src":"5848:17:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":38373,"nodeType":"UserDefinedTypeName","pathNode":{"id":38372,"name":"IERC4626","nameLocations":["5848:8:110"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"5848:8:110"},"referencedDeclaration":22463,"src":"5848:8:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"5828:38:110"},"src":"5805:62:110"},{"anonymous":false,"eventSelector":"bc0ff1d27e119160a9a107d0725b9ed31b90773cf47e89332a35a8c1a319eaee","id":38390,"name":"DebtChanged","nameLocation":"5876:11:110","nodeType":"EventDefinition","parameters":{"id":38389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38378,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"5909:6:110","nodeType":"VariableDeclaration","scope":38390,"src":"5893:22:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38377,"name":"address","nodeType":"ElementaryTypeName","src":"5893:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38380,"indexed":false,"mutability":"mutable","name":"slotSize","nameLocation":"5928:8:110","nodeType":"VariableDeclaration","scope":38390,"src":"5921:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":38379,"name":"uint32","nodeType":"ElementaryTypeName","src":"5921:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":38382,"indexed":false,"mutability":"mutable","name":"slotIndex","nameLocation":"5949:9:110","nodeType":"VariableDeclaration","scope":38390,"src":"5942:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":38381,"name":"uint32","nodeType":"ElementaryTypeName","src":"5942:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":38384,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"5971:5:110","nodeType":"VariableDeclaration","scope":38390,"src":"5964:12:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":38383,"name":"int256","nodeType":"ElementaryTypeName","src":"5964:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":38386,"indexed":false,"mutability":"mutable","name":"debtAfterChange","nameLocation":"5989:15:110","nodeType":"VariableDeclaration","scope":38390,"src":"5982:22:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":38385,"name":"int256","nodeType":"ElementaryTypeName","src":"5982:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":38388,"indexed":false,"mutability":"mutable","name":"totalDebtAfterChange","nameLocation":"6017:20:110","nodeType":"VariableDeclaration","scope":38390,"src":"6010:27:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":38387,"name":"int256","nodeType":"ElementaryTypeName","src":"6010:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"5887:154:110"},"src":"5870:172:110"},{"anonymous":false,"eventSelector":"cc010dd322eb2bc19138cf20160ad5643925810f442fc6c5d48b9b4c59b34efe","id":38404,"name":"CashOutPayout","nameLocation":"6051:13:110","nodeType":"EventDefinition","parameters":{"id":38403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38392,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"6086:6:110","nodeType":"VariableDeclaration","scope":38404,"src":"6070:22:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38391,"name":"address","nodeType":"ElementaryTypeName","src":"6070:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38394,"indexed":false,"mutability":"mutable","name":"slotSize","nameLocation":"6105:8:110","nodeType":"VariableDeclaration","scope":38404,"src":"6098:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":38393,"name":"uint32","nodeType":"ElementaryTypeName","src":"6098:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":38396,"indexed":false,"mutability":"mutable","name":"slotIndex","nameLocation":"6126:9:110","nodeType":"VariableDeclaration","scope":38404,"src":"6119:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":38395,"name":"uint32","nodeType":"ElementaryTypeName","src":"6119:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":38398,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"6149:6:110","nodeType":"VariableDeclaration","scope":38404,"src":"6141:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38397,"name":"uint256","nodeType":"ElementaryTypeName","src":"6141:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":38400,"indexed":false,"mutability":"mutable","name":"debtAfterChange","nameLocation":"6168:15:110","nodeType":"VariableDeclaration","scope":38404,"src":"6161:22:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":38399,"name":"int256","nodeType":"ElementaryTypeName","src":"6161:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":38402,"indexed":false,"mutability":"mutable","name":"destination","nameLocation":"6197:11:110","nodeType":"VariableDeclaration","scope":38404,"src":"6189:19:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38401,"name":"address","nodeType":"ElementaryTypeName","src":"6189:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6064:148:110"},"src":"6045:168:110"},{"anonymous":false,"eventSelector":"fe14813540c7709c2d7e702f39b104eeed265dd484f899e9f2f89c801aa6395c","id":38418,"name":"RepayDebt","nameLocation":"6222:9:110","nodeType":"EventDefinition","parameters":{"id":38417,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38406,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"6253:6:110","nodeType":"VariableDeclaration","scope":38418,"src":"6237:22:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38405,"name":"address","nodeType":"ElementaryTypeName","src":"6237:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38408,"indexed":false,"mutability":"mutable","name":"slotSize","nameLocation":"6272:8:110","nodeType":"VariableDeclaration","scope":38418,"src":"6265:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":38407,"name":"uint32","nodeType":"ElementaryTypeName","src":"6265:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":38410,"indexed":false,"mutability":"mutable","name":"slotIndex","nameLocation":"6293:9:110","nodeType":"VariableDeclaration","scope":38418,"src":"6286:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":38409,"name":"uint32","nodeType":"ElementaryTypeName","src":"6286:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":38412,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"6316:6:110","nodeType":"VariableDeclaration","scope":38418,"src":"6308:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38411,"name":"uint256","nodeType":"ElementaryTypeName","src":"6308:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":38414,"indexed":false,"mutability":"mutable","name":"debtAfterChange","nameLocation":"6335:15:110","nodeType":"VariableDeclaration","scope":38418,"src":"6328:22:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":38413,"name":"int256","nodeType":"ElementaryTypeName","src":"6328:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":38416,"indexed":false,"mutability":"mutable","name":"payer","nameLocation":"6364:5:110","nodeType":"VariableDeclaration","scope":38418,"src":"6356:13:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38415,"name":"address","nodeType":"ElementaryTypeName","src":"6356:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6231:142:110"},"src":"6216:158:110"},{"anonymous":false,"eventSelector":"422c963a67d52178b43a807b8c9df3a99468f416b736f9f040b6392cf790752e","id":38425,"name":"TargetAdded","nameLocation":"6383:11:110","nodeType":"EventDefinition","parameters":{"id":38424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38420,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"6411:6:110","nodeType":"VariableDeclaration","scope":38425,"src":"6395:22:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38419,"name":"address","nodeType":"ElementaryTypeName","src":"6395:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38423,"indexed":false,"mutability":"mutable","name":"config","nameLocation":"6432:6:110","nodeType":"VariableDeclaration","scope":38425,"src":"6419:19:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_memory_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":38422,"nodeType":"UserDefinedTypeName","pathNode":{"id":38421,"name":"TargetConfig","nameLocations":["6419:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38340,"src":"6419:12:110"},"referencedDeclaration":38340,"src":"6419:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"src":"6394:45:110"},"src":"6377:63:110"},{"anonymous":false,"eventSelector":"7e293d291e9dd159f2fbde9523c4191674384553a72c0833ba9cf7dcb5381fb7","id":38437,"name":"TargetLimitsChanged","nameLocation":"6449:19:110","nodeType":"EventDefinition","parameters":{"id":38436,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38427,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"6490:6:110","nodeType":"VariableDeclaration","scope":38437,"src":"6474:22:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38426,"name":"address","nodeType":"ElementaryTypeName","src":"6474:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38429,"indexed":false,"mutability":"mutable","name":"oldDebtLimit","nameLocation":"6510:12:110","nodeType":"VariableDeclaration","scope":38437,"src":"6502:20:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38428,"name":"uint256","nodeType":"ElementaryTypeName","src":"6502:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":38431,"indexed":false,"mutability":"mutable","name":"newDebtLimit","nameLocation":"6536:12:110","nodeType":"VariableDeclaration","scope":38437,"src":"6528:20:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38430,"name":"uint256","nodeType":"ElementaryTypeName","src":"6528:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":38433,"indexed":false,"mutability":"mutable","name":"oldMinLiquidity","nameLocation":"6562:15:110","nodeType":"VariableDeclaration","scope":38437,"src":"6554:23:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38432,"name":"uint256","nodeType":"ElementaryTypeName","src":"6554:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":38435,"indexed":false,"mutability":"mutable","name":"newMinLiquidity","nameLocation":"6591:15:110","nodeType":"VariableDeclaration","scope":38437,"src":"6583:23:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38434,"name":"uint256","nodeType":"ElementaryTypeName","src":"6583:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6468:142:110"},"src":"6443:168:110"},{"anonymous":false,"eventSelector":"0638a5c17c348b99c05e7985ee5ee8bc0c41bc7a12265aec4a488d62350c1d24","id":38447,"name":"TargetStatusChanged","nameLocation":"6620:19:110","nodeType":"EventDefinition","parameters":{"id":38446,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38439,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"6656:6:110","nodeType":"VariableDeclaration","scope":38447,"src":"6640:22:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38438,"name":"address","nodeType":"ElementaryTypeName","src":"6640:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38442,"indexed":false,"mutability":"mutable","name":"oldStatus","nameLocation":"6677:9:110","nodeType":"VariableDeclaration","scope":38447,"src":"6664:22:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},"typeName":{"id":38441,"nodeType":"UserDefinedTypeName","pathNode":{"id":38440,"name":"TargetStatus","nameLocations":["6664:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38330,"src":"6664:12:110"},"referencedDeclaration":38330,"src":"6664:12:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"visibility":"internal"},{"constant":false,"id":38445,"indexed":false,"mutability":"mutable","name":"newStatus","nameLocation":"6701:9:110","nodeType":"VariableDeclaration","scope":38447,"src":"6688:22:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},"typeName":{"id":38444,"nodeType":"UserDefinedTypeName","pathNode":{"id":38443,"name":"TargetStatus","nameLocations":["6688:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38330,"src":"6688:12:110"},"referencedDeclaration":38330,"src":"6688:12:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"visibility":"internal"}],"src":"6639:72:110"},"src":"6614:98:110"},{"anonymous":false,"eventSelector":"4345ec61f717774fdb684b701c34934889550330da2b93f2c3a33379db77f817","id":38455,"name":"TargetSlotSizeChanged","nameLocation":"6721:21:110","nodeType":"EventDefinition","parameters":{"id":38454,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38449,"indexed":true,"mutability":"mutable","name":"target","nameLocation":"6759:6:110","nodeType":"VariableDeclaration","scope":38455,"src":"6743:22:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38448,"name":"address","nodeType":"ElementaryTypeName","src":"6743:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38451,"indexed":false,"mutability":"mutable","name":"oldSlotSize","nameLocation":"6774:11:110","nodeType":"VariableDeclaration","scope":38455,"src":"6767:18:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":38450,"name":"uint32","nodeType":"ElementaryTypeName","src":"6767:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":38453,"indexed":false,"mutability":"mutable","name":"newSlotSize","nameLocation":"6794:11:110","nodeType":"VariableDeclaration","scope":38455,"src":"6787:18:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":38452,"name":"uint32","nodeType":"ElementaryTypeName","src":"6787:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"6742:64:110"},"src":"6715:92:110"},{"errorSelector":"c7aa35ca","id":38457,"name":"InvalidPolicyPool","nameLocation":"6817:17:110","nodeType":"ErrorDefinition","parameters":{"id":38456,"nodeType":"ParameterList","parameters":[],"src":"6834:2:110"},"src":"6811:26:110"},{"errorSelector":"950d88bf","id":38461,"name":"OnlyPolicyPool","nameLocation":"6846:14:110","nodeType":"ErrorDefinition","parameters":{"id":38460,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38459,"mutability":"mutable","name":"sender","nameLocation":"6869:6:110","nodeType":"VariableDeclaration","scope":38461,"src":"6861:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38458,"name":"address","nodeType":"ElementaryTypeName","src":"6861:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6860:16:110"},"src":"6840:37:110"},{"errorSelector":"7428e3c8","id":38468,"name":"TargetNotActive","nameLocation":"6886:15:110","nodeType":"ErrorDefinition","parameters":{"id":38467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38463,"mutability":"mutable","name":"target","nameLocation":"6910:6:110","nodeType":"VariableDeclaration","scope":38468,"src":"6902:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38462,"name":"address","nodeType":"ElementaryTypeName","src":"6902:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38466,"mutability":"mutable","name":"status","nameLocation":"6931:6:110","nodeType":"VariableDeclaration","scope":38468,"src":"6918:19:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},"typeName":{"id":38465,"nodeType":"UserDefinedTypeName","pathNode":{"id":38464,"name":"TargetStatus","nameLocations":["6918:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38330,"src":"6918:12:110"},"referencedDeclaration":38330,"src":"6918:12:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"visibility":"internal"}],"src":"6901:37:110"},"src":"6880:59:110"},{"errorSelector":"bcc8a6ca","id":38470,"name":"CannotDeactivateTarget","nameLocation":"6948:22:110","nodeType":"ErrorDefinition","parameters":{"id":38469,"nodeType":"ParameterList","parameters":[],"src":"6970:2:110"},"src":"6942:31:110"},{"errorSelector":"cd43efa1","id":38472,"name":"TargetAlreadyExists","nameLocation":"6982:19:110","nodeType":"ErrorDefinition","parameters":{"id":38471,"nodeType":"ParameterList","parameters":[],"src":"7001:2:110"},"src":"6976:28:110"},{"errorSelector":"a5369b1c","id":38474,"name":"InvalidSlotSize","nameLocation":"7013:15:110","nodeType":"ErrorDefinition","parameters":{"id":38473,"nodeType":"ParameterList","parameters":[],"src":"7028:2:110"},"src":"7007:24:110"},{"errorSelector":"e5464b14","id":38480,"name":"DebtLimitExceeded","nameLocation":"7040:17:110","nodeType":"ErrorDefinition","parameters":{"id":38479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38476,"mutability":"mutable","name":"currentDebt","nameLocation":"7065:11:110","nodeType":"VariableDeclaration","scope":38480,"src":"7058:18:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":38475,"name":"int256","nodeType":"ElementaryTypeName","src":"7058:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":38478,"mutability":"mutable","name":"debtLimit","nameLocation":"7085:9:110","nodeType":"VariableDeclaration","scope":38480,"src":"7078:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":38477,"name":"uint96","nodeType":"ElementaryTypeName","src":"7078:6:110","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"7057:38:110"},"src":"7034:62:110"},{"errorSelector":"c294136d","id":38488,"name":"UnauthorizedForward","nameLocation":"7105:19:110","nodeType":"ErrorDefinition","parameters":{"id":38487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38482,"mutability":"mutable","name":"caller","nameLocation":"7133:6:110","nodeType":"VariableDeclaration","scope":38488,"src":"7125:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38481,"name":"address","nodeType":"ElementaryTypeName","src":"7125:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38484,"mutability":"mutable","name":"target","nameLocation":"7149:6:110","nodeType":"VariableDeclaration","scope":38488,"src":"7141:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38483,"name":"address","nodeType":"ElementaryTypeName","src":"7141:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38486,"mutability":"mutable","name":"requiredSelector","nameLocation":"7164:16:110","nodeType":"VariableDeclaration","scope":38488,"src":"7157:23:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":38485,"name":"bytes4","nodeType":"ElementaryTypeName","src":"7157:6:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"7124:57:110"},"src":"7099:83:110"},{"errorSelector":"a3eb2eea","id":38492,"name":"BalanceDecreasedOnResolve","nameLocation":"7191:25:110","nodeType":"ErrorDefinition","parameters":{"id":38491,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38490,"mutability":"mutable","name":"balanceReduction","nameLocation":"7225:16:110","nodeType":"VariableDeclaration","scope":38492,"src":"7217:24:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38489,"name":"uint256","nodeType":"ElementaryTypeName","src":"7217:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7216:26:110"},"src":"7185:58:110"},{"errorSelector":"47ddf9c7","id":38494,"name":"YieldVaultIsRequired","nameLocation":"7252:20:110","nodeType":"ErrorDefinition","parameters":{"id":38493,"nodeType":"ParameterList","parameters":[],"src":"7272:2:110"},"src":"7246:29:110"},{"errorSelector":"af8075e9","id":38496,"name":"NotEnoughCash","nameLocation":"7284:13:110","nodeType":"ErrorDefinition","parameters":{"id":38495,"nodeType":"ParameterList","parameters":[],"src":"7297:2:110"},"src":"7278:22:110"},{"errorSelector":"2dad9021","id":38500,"name":"TargetNotFound","nameLocation":"7309:14:110","nodeType":"ErrorDefinition","parameters":{"id":38499,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38498,"mutability":"mutable","name":"target","nameLocation":"7332:6:110","nodeType":"VariableDeclaration","scope":38500,"src":"7324:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38497,"name":"address","nodeType":"ElementaryTypeName","src":"7324:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7323:16:110"},"src":"7303:37:110"},{"errorSelector":"c97a6bf0","id":38506,"name":"CashOutExceedsLimit","nameLocation":"7349:19:110","nodeType":"ErrorDefinition","parameters":{"id":38505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38502,"mutability":"mutable","name":"amount","nameLocation":"7377:6:110","nodeType":"VariableDeclaration","scope":38506,"src":"7369:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38501,"name":"uint256","nodeType":"ElementaryTypeName","src":"7369:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":38504,"mutability":"mutable","name":"debtAfter","nameLocation":"7392:9:110","nodeType":"VariableDeclaration","scope":38506,"src":"7385:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":38503,"name":"int256","nodeType":"ElementaryTypeName","src":"7385:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7368:34:110"},"src":"7343:60:110"},{"errorSelector":"473bcae2","id":38512,"name":"RepaymentExceedsLimit","nameLocation":"7412:21:110","nodeType":"ErrorDefinition","parameters":{"id":38511,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38508,"mutability":"mutable","name":"amount","nameLocation":"7442:6:110","nodeType":"VariableDeclaration","scope":38512,"src":"7434:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38507,"name":"uint256","nodeType":"ElementaryTypeName","src":"7434:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":38510,"mutability":"mutable","name":"debtAfter","nameLocation":"7457:9:110","nodeType":"VariableDeclaration","scope":38512,"src":"7450:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":38509,"name":"int256","nodeType":"ElementaryTypeName","src":"7450:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7433:34:110"},"src":"7406:62:110"},{"errorSelector":"525a9896","id":38514,"name":"CannotDeinvestYieldVault","nameLocation":"7477:24:110","nodeType":"ErrorDefinition","parameters":{"id":38513,"nodeType":"ParameterList","parameters":[],"src":"7501:2:110"},"src":"7471:33:110"},{"body":{"id":38531,"nodeType":"Block","src":"7534:218:110","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":38523,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":38517,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7677:3:110","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":38518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7681:6:110","memberName":"sender","nodeType":"MemberAccess","src":"7677:10:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":38521,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38322,"src":"7699:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}],"id":38520,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7691:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":38519,"name":"address","nodeType":"ElementaryTypeName","src":"7691:7:110","typeDescriptions":{}}},"id":38522,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7691:20:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7677:34:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"expression":{"id":38525,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7728:3:110","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":38526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7732:6:110","memberName":"sender","nodeType":"MemberAccess","src":"7728:10:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":38524,"name":"OnlyPolicyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38461,"src":"7713:14:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":38527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7713:26:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":38516,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"7669:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":38528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7669:71:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38529,"nodeType":"ExpressionStatement","src":"7669:71:110"},{"id":38530,"nodeType":"PlaceholderStatement","src":"7746:1:110"}]},"id":38532,"name":"onlyPolicyPool","nameLocation":"7517:14:110","nodeType":"ModifierDefinition","parameters":{"id":38515,"nodeType":"ParameterList","parameters":[],"src":"7531:2:110"},"src":"7508:244:110","virtual":false,"visibility":"internal"},{"body":{"id":38569,"nodeType":"Block","src":"7805:350:110","statements":[{"assignments":[38538],"declarations":[{"constant":false,"id":38538,"mutability":"mutable","name":"targetConfig","nameLocation":"7832:12:110","nodeType":"VariableDeclaration","scope":38569,"src":"7811:33:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":38537,"nodeType":"UserDefinedTypeName","pathNode":{"id":38536,"name":"TargetConfig","nameLocations":["7811:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38340,"src":"7811:12:110"},"referencedDeclaration":38340,"src":"7811:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"id":38542,"initialValue":{"arguments":[{"id":38540,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38534,"src":"7864:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":38539,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38911,"src":"7847:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$38340_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":38541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7847:24:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"7811:60:110"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},"id":38548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":38544,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38538,"src":"7885:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":38545,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7898:6:110","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":38335,"src":"7885:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":38546,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38330,"src":"7908:12:110","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$38330_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":38547,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7921:6:110","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":38327,"src":"7908:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"src":"7885:42:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":38550,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38534,"src":"7945:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":38551,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38538,"src":"7953:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":38552,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7966:6:110","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":38335,"src":"7953:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}],"id":38549,"name":"TargetNotActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38468,"src":"7929:15:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_enum$_TargetStatus_$38330_$returns$_t_error_$","typeString":"function (address,enum CashFlowLender.TargetStatus) pure returns (error)"}},"id":38553,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7929:44:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":38543,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"7877:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":38554,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7877:97:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38555,"nodeType":"ExpressionStatement","src":"7877:97:110"},{"assignments":[38557],"declarations":[{"constant":false,"id":38557,"mutability":"mutable","name":"balanceBefore","nameLocation":"8023:13:110","nodeType":"VariableDeclaration","scope":38569,"src":"8015:21:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38556,"name":"uint256","nodeType":"ElementaryTypeName","src":"8015:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":38561,"initialValue":{"arguments":[{"id":38559,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38538,"src":"8060:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}],"id":38558,"name":"_ensureLiquidBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39830,"src":"8039:20:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_struct$_TargetConfig_$38340_storage_ptr_$returns$_t_uint256_$","typeString":"function (struct CashFlowLender.TargetConfig storage pointer) returns (uint256)"}},"id":38560,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8039:34:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8015:58:110"},{"id":38562,"nodeType":"PlaceholderStatement","src":"8079:1:110"},{"expression":{"arguments":[{"id":38564,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38534,"src":"8114:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":38565,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38538,"src":"8122:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},{"id":38566,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38557,"src":"8136:13:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":38563,"name":"_increaseDebtAfterNewPolicy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39889,"src":"8086:27:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_struct$_TargetConfig_$38340_storage_ptr_$_t_uint256_$returns$__$","typeString":"function (address,struct CashFlowLender.TargetConfig storage pointer,uint256)"}},"id":38567,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8086:64:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38568,"nodeType":"ExpressionStatement","src":"8086:64:110"}]},"id":38570,"name":"forwardNewPolicyWrapper","nameLocation":"7765:23:110","nodeType":"ModifierDefinition","parameters":{"id":38535,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38534,"mutability":"mutable","name":"target","nameLocation":"7797:6:110","nodeType":"VariableDeclaration","scope":38570,"src":"7789:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38533,"name":"address","nodeType":"ElementaryTypeName","src":"7789:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7788:16:110"},"src":"7756:399:110","virtual":false,"visibility":"internal"},{"body":{"id":38622,"nodeType":"Block","src":"8212:510:110","statements":[{"assignments":[38576],"declarations":[{"constant":false,"id":38576,"mutability":"mutable","name":"targetConfig","nameLocation":"8239:12:110","nodeType":"VariableDeclaration","scope":38622,"src":"8218:33:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":38575,"nodeType":"UserDefinedTypeName","pathNode":{"id":38574,"name":"TargetConfig","nameLocations":["8218:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38340,"src":"8218:12:110"},"referencedDeclaration":38340,"src":"8218:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"id":38580,"initialValue":{"arguments":[{"id":38578,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38572,"src":"8271:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":38577,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38911,"src":"8254:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$38340_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":38579,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8254:24:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"8218:60:110"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":38592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},"id":38586,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":38582,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38576,"src":"8299:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":38583,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8312:6:110","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":38335,"src":"8299:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":38584,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38330,"src":"8322:12:110","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$38330_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":38585,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8335:6:110","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":38327,"src":"8322:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"src":"8299:42:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},"id":38591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":38587,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38576,"src":"8345:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":38588,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8358:6:110","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":38335,"src":"8345:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":38589,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38330,"src":"8368:12:110","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$38330_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":38590,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8381:10:110","memberName":"deprecated","nodeType":"MemberAccess","referencedDeclaration":38328,"src":"8368:23:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"src":"8345:46:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"8299:92:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":38594,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38572,"src":"8415:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":38595,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38576,"src":"8423:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":38596,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8436:6:110","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":38335,"src":"8423:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}],"id":38593,"name":"TargetNotActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38468,"src":"8399:15:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_enum$_TargetStatus_$38330_$returns$_t_error_$","typeString":"function (address,enum CashFlowLender.TargetStatus) pure returns (error)"}},"id":38597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8399:44:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":38581,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"8284:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":38598,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8284:165:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38599,"nodeType":"ExpressionStatement","src":"8284:165:110"},{"assignments":[38601],"declarations":[{"constant":false,"id":38601,"mutability":"mutable","name":"balanceBefore","nameLocation":"8528:13:110","nodeType":"VariableDeclaration","scope":38622,"src":"8520:21:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38600,"name":"uint256","nodeType":"ElementaryTypeName","src":"8520:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":38604,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":38602,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39440,"src":"8544:8:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":38603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8544:10:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8520:34:110"},{"id":38605,"nodeType":"PlaceholderStatement","src":"8560:1:110"},{"assignments":[38607],"declarations":[{"constant":false,"id":38607,"mutability":"mutable","name":"balanceAfter","nameLocation":"8575:12:110","nodeType":"VariableDeclaration","scope":38622,"src":"8567:20:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38606,"name":"uint256","nodeType":"ElementaryTypeName","src":"8567:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":38610,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":38608,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39440,"src":"8590:8:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":38609,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8590:10:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8567:33:110"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":38613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":38611,"name":"balanceAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38607,"src":"8611:12:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":38612,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38601,"src":"8626:13:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8611:28:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":38621,"nodeType":"IfStatement","src":"8607:111:110","trueBody":{"id":38620,"nodeType":"Block","src":"8641:77:110","statements":[{"errorCall":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":38617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":38615,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38601,"src":"8682:13:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":38616,"name":"balanceAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38607,"src":"8698:12:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8682:28:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":38614,"name":"BalanceDecreasedOnResolve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38492,"src":"8656:25:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":38618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8656:55:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":38619,"nodeType":"RevertStatement","src":"8649:62:110"}]}}]},"id":38623,"name":"forwardResolvePolicyWrapper","nameLocation":"8168:27:110","nodeType":"ModifierDefinition","parameters":{"id":38573,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38572,"mutability":"mutable","name":"target","nameLocation":"8204:6:110","nodeType":"VariableDeclaration","scope":38623,"src":"8196:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38571,"name":"address","nodeType":"ElementaryTypeName","src":"8196:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"8195:16:110"},"src":"8159:563:110","virtual":false,"visibility":"internal"},{"body":{"id":38642,"nodeType":"Block","src":"8886:64:110","statements":[{"expression":{"id":38637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":38635,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38322,"src":"8892:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":38636,"name":"policyPool_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38629,"src":"8906:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}},"src":"8892:25:110","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}},"id":38638,"nodeType":"ExpressionStatement","src":"8892:25:110"},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":38639,"name":"_disableInitializers","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":23388,"src":"8923:20:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$__$returns$__$","typeString":"function ()"}},"id":38640,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8923:22:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38641,"nodeType":"ExpressionStatement","src":"8923:22:110"}]},"documentation":{"id":38624,"nodeType":"StructuredDocumentation","src":"8726:48:110","text":"@custom:oz-upgrades-unsafe-allow constructor"},"id":38643,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":38632,"name":"trustedForwarder_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38626,"src":"8867:17:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":38633,"kind":"baseConstructorSpecifier","modifierName":{"id":38631,"name":"ERC2771ContextUpgradeable","nameLocations":["8841:25:110"],"nodeType":"IdentifierPath","referencedDeclaration":15992,"src":"8841:25:110"},"nodeType":"ModifierInvocation","src":"8841:44:110"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":38630,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38626,"mutability":"mutable","name":"trustedForwarder_","nameLocation":"8797:17:110","nodeType":"VariableDeclaration","scope":38643,"src":"8789:25:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38625,"name":"address","nodeType":"ElementaryTypeName","src":"8789:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38629,"mutability":"mutable","name":"policyPool_","nameLocation":"8828:11:110","nodeType":"VariableDeclaration","scope":38643,"src":"8816:23:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"},"typeName":{"id":38628,"nodeType":"UserDefinedTypeName","pathNode":{"id":38627,"name":"IPolicyPool","nameLocations":["8816:11:110"],"nodeType":"IdentifierPath","referencedDeclaration":40853,"src":"8816:11:110"},"referencedDeclaration":40853,"src":"8816:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"8788:52:110"},"returnParameters":{"id":38634,"nodeType":"ParameterList","parameters":[],"src":"8886:0:110"},"scope":40840,"src":"8777:173:110","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":38662,"nodeType":"Block","src":"9375:61:110","statements":[{"expression":{"arguments":[{"id":38657,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38646,"src":"9403:5:110","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":38658,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38648,"src":"9410:7:110","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":38659,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38651,"src":"9419:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":38656,"name":"__CashFlowLender_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38700,"src":"9381:21:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_contract$_IERC4626_$22463_$returns$__$","typeString":"function (string memory,string memory,contract IERC4626)"}},"id":38660,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9381:50:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38661,"nodeType":"ExpressionStatement","src":"9381:50:110"}]},"documentation":{"id":38644,"nodeType":"StructuredDocumentation","src":"8954:305:110","text":" @dev Initializes the CashFlowLender\n @param name_ Name of the accounting token (ERC20) for the LPs\n @param symbol_ Symbol of the accounting token (ERC20) for the LPs\n @param yieldVault_ An ERC-4626 vault where funds can be deployed to generate extra yields for the CFL LPs."},"functionSelector":"077f224a","id":38663,"implemented":true,"kind":"function","modifiers":[{"id":38654,"kind":"modifierInvocation","modifierName":{"id":38653,"name":"initializer","nameLocations":["9363:11:110"],"nodeType":"IdentifierPath","referencedDeclaration":23274,"src":"9363:11:110"},"nodeType":"ModifierInvocation","src":"9363:11:110"}],"name":"initialize","nameLocation":"9271:10:110","nodeType":"FunctionDefinition","parameters":{"id":38652,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38646,"mutability":"mutable","name":"name_","nameLocation":"9296:5:110","nodeType":"VariableDeclaration","scope":38663,"src":"9282:19:110","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":38645,"name":"string","nodeType":"ElementaryTypeName","src":"9282:6:110","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":38648,"mutability":"mutable","name":"symbol_","nameLocation":"9317:7:110","nodeType":"VariableDeclaration","scope":38663,"src":"9303:21:110","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":38647,"name":"string","nodeType":"ElementaryTypeName","src":"9303:6:110","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":38651,"mutability":"mutable","name":"yieldVault_","nameLocation":"9335:11:110","nodeType":"VariableDeclaration","scope":38663,"src":"9326:20:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":38650,"nodeType":"UserDefinedTypeName","pathNode":{"id":38649,"name":"IERC4626","nameLocations":["9326:8:110"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"9326:8:110"},"referencedDeclaration":22463,"src":"9326:8:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"9281:66:110"},"returnParameters":{"id":38655,"nodeType":"ParameterList","parameters":[],"src":"9375:0:110"},"scope":40840,"src":"9262:174:110","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":38699,"nodeType":"Block","src":"9630:179:110","statements":[{"assignments":[38676],"declarations":[{"constant":false,"id":38676,"mutability":"mutable","name":"asset_","nameLocation":"9644:6:110","nodeType":"VariableDeclaration","scope":38699,"src":"9636:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38675,"name":"address","nodeType":"ElementaryTypeName","src":"9636:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":38683,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":38679,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38322,"src":"9661:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}},"id":38680,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9673:8:110","memberName":"currency","nodeType":"MemberAccess","referencedDeclaration":40852,"src":"9661:20:110","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IERC20Metadata_$24925_$","typeString":"function () view external returns (contract IERC20Metadata)"}},"id":38681,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9661:22:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}],"id":38678,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9653:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":38677,"name":"address","nodeType":"ElementaryTypeName","src":"9653:7:110","typeDescriptions":{}}},"id":38682,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9653:31:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"9636:48:110"},{"expression":{"arguments":[{"arguments":[{"id":38686,"name":"asset_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38676,"src":"9712:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":38685,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"9705:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$24193_$","typeString":"type(contract IERC20)"}},"id":38687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9705:14:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$24193","typeString":"contract IERC20"}],"id":38684,"name":"__ERC4626_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16880,"src":"9690:14:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$returns$__$","typeString":"function (contract IERC20)"}},"id":38688,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9690:30:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38689,"nodeType":"ExpressionStatement","src":"9690:30:110"},{"expression":{"arguments":[{"id":38691,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38665,"src":"9739:5:110","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":38692,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38667,"src":"9746:7:110","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"}],"id":38690,"name":"__ERC20_init","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16064,"src":"9726:12:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory,string memory)"}},"id":38693,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9726:28:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38694,"nodeType":"ExpressionStatement","src":"9726:28:110"},{"expression":{"arguments":[{"id":38696,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38670,"src":"9792:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":38695,"name":"__CashFlowLender_init_unchained","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38729,"src":"9760:31:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$22463_$returns$__$","typeString":"function (contract IERC4626)"}},"id":38697,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9760:44:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38698,"nodeType":"ExpressionStatement","src":"9760:44:110"}]},"id":38700,"implemented":true,"kind":"function","modifiers":[{"id":38673,"kind":"modifierInvocation","modifierName":{"id":38672,"name":"onlyInitializing","nameLocations":["9613:16:110"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"9613:16:110"},"nodeType":"ModifierInvocation","src":"9613:16:110"}],"name":"__CashFlowLender_init","nameLocation":"9500:21:110","nodeType":"FunctionDefinition","parameters":{"id":38671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38665,"mutability":"mutable","name":"name_","nameLocation":"9541:5:110","nodeType":"VariableDeclaration","scope":38700,"src":"9527:19:110","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":38664,"name":"string","nodeType":"ElementaryTypeName","src":"9527:6:110","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":38667,"mutability":"mutable","name":"symbol_","nameLocation":"9566:7:110","nodeType":"VariableDeclaration","scope":38700,"src":"9552:21:110","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":38666,"name":"string","nodeType":"ElementaryTypeName","src":"9552:6:110","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":38670,"mutability":"mutable","name":"yieldVault_","nameLocation":"9588:11:110","nodeType":"VariableDeclaration","scope":38700,"src":"9579:20:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":38669,"nodeType":"UserDefinedTypeName","pathNode":{"id":38668,"name":"IERC4626","nameLocations":["9579:8:110"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"9579:8:110"},"referencedDeclaration":22463,"src":"9579:8:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"9521:82:110"},"returnParameters":{"id":38674,"nodeType":"ParameterList","parameters":[],"src":"9630:0:110"},"scope":40840,"src":"9491:318:110","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":38728,"nodeType":"Block","src":"9953:178:110","statements":[{"expression":{"arguments":[{"arguments":[{"id":38715,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38322,"src":"10061:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}],"id":38714,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10053:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":38713,"name":"address","nodeType":"ElementaryTypeName","src":"10053:7:110","typeDescriptions":{}}},"id":38716,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10053:20:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":38719,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10080:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":38718,"name":"uint256","nodeType":"ElementaryTypeName","src":"10080:7:110","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":38717,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10075:4:110","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":38720,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10075:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":38721,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10089:3:110","memberName":"max","nodeType":"MemberAccess","src":"10075:17:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":38708,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38322,"src":"10022:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}},"id":38710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10034:8:110","memberName":"currency","nodeType":"MemberAccess","referencedDeclaration":40852,"src":"10022:20:110","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IERC20Metadata_$24925_$","typeString":"function () view external returns (contract IERC20Metadata)"}},"id":38711,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10022:22:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":38712,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10045:7:110","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":24180,"src":"10022:30:110","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":38722,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10022:71:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":38723,"nodeType":"ExpressionStatement","src":"10022:71:110"},{"expression":{"arguments":[{"id":38725,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38703,"src":"10114:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":38724,"name":"_setYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38811,"src":"10099:14:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$22463_$returns$__$","typeString":"function (contract IERC4626)"}},"id":38726,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10099:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38727,"nodeType":"ExpressionStatement","src":"10099:27:110"}]},"id":38729,"implemented":true,"kind":"function","modifiers":[{"id":38706,"kind":"modifierInvocation","modifierName":{"id":38705,"name":"onlyInitializing","nameLocations":["9936:16:110"],"nodeType":"IdentifierPath","referencedDeclaration":23329,"src":"9936:16:110"},"nodeType":"ModifierInvocation","src":"9936:16:110"}],"name":"__CashFlowLender_init_unchained","nameLocation":"9873:31:110","nodeType":"FunctionDefinition","parameters":{"id":38704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38703,"mutability":"mutable","name":"yieldVault_","nameLocation":"9914:11:110","nodeType":"VariableDeclaration","scope":38729,"src":"9905:20:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":38702,"nodeType":"UserDefinedTypeName","pathNode":{"id":38701,"name":"IERC4626","nameLocations":["9905:8:110"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"9905:8:110"},"referencedDeclaration":22463,"src":"9905:8:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"9904:22:110"},"returnParameters":{"id":38707,"nodeType":"ParameterList","parameters":[],"src":"9953:0:110"},"scope":40840,"src":"9864:267:110","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":38810,"nodeType":"Block","src":"10190:690:110","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":38744,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":38738,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38732,"src":"10212:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":38737,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10204:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":38736,"name":"address","nodeType":"ElementaryTypeName","src":"10204:7:110","typeDescriptions":{}}},"id":38739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10204:20:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":38742,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10236:1:110","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":38741,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10228:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":38740,"name":"address","nodeType":"ElementaryTypeName","src":"10228:7:110","typeDescriptions":{}}},"id":38743,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10228:10:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10204:34:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":38745,"name":"YieldVaultIsRequired","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38494,"src":"10240:20:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":38746,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10240:22:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":38735,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"10196:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":38747,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10196:67:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38748,"nodeType":"ExpressionStatement","src":"10196:67:110"},{"assignments":[38751],"declarations":[{"constant":false,"id":38751,"mutability":"mutable","name":"$","nameLocation":"10547:1:110","nodeType":"VariableDeclaration","scope":38810,"src":"10517:31:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":38750,"nodeType":"UserDefinedTypeName","pathNode":{"id":38749,"name":"CashFlowLenderStorage","nameLocations":["10517:21:110"],"nodeType":"IdentifierPath","referencedDeclaration":38357,"src":"10517:21:110"},"referencedDeclaration":38357,"src":"10517:21:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":38754,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":38752,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38368,"src":"10551:25:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$38357_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":38753,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10551:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"10517:61:110"},{"assignments":[38757],"declarations":[{"constant":false,"id":38757,"mutability":"mutable","name":"oldVault","nameLocation":"10593:8:110","nodeType":"VariableDeclaration","scope":38810,"src":"10584:17:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":38756,"nodeType":"UserDefinedTypeName","pathNode":{"id":38755,"name":"IERC4626","nameLocations":["10584:8:110"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"10584:8:110"},"referencedDeclaration":22463,"src":"10584:8:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"id":38760,"initialValue":{"expression":{"id":38758,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38751,"src":"10604:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":38759,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10606:11:110","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":38344,"src":"10604:13:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"nodeType":"VariableDeclarationStatement","src":"10584:33:110"},{"expression":{"id":38765,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":38761,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38751,"src":"10623:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":38763,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"10625:11:110","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":38344,"src":"10623:13:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":38764,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38732,"src":"10639:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"src":"10623:27:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":38766,"nodeType":"ExpressionStatement","src":"10623:27:110"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":38775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":38769,"name":"oldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38757,"src":"10668:8:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":38768,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10660:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":38767,"name":"address","nodeType":"ElementaryTypeName","src":"10660:7:110","typeDescriptions":{}}},"id":38770,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10660:17:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":38773,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10689:1:110","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":38772,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10681:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":38771,"name":"address","nodeType":"ElementaryTypeName","src":"10681:7:110","typeDescriptions":{}}},"id":38774,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10681:10:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"10660:31:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":38788,"nodeType":"IfStatement","src":"10656:90:110","trueBody":{"expression":{"arguments":[{"arguments":[{"id":38783,"name":"oldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38757,"src":"10733:8:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":38782,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10725:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":38781,"name":"address","nodeType":"ElementaryTypeName","src":"10725:7:110","typeDescriptions":{}}},"id":38784,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10725:17:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"30","id":38785,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10744:1:110","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":[{"arguments":[],"expression":{"argumentTypes":[],"id":38777,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17037,"src":"10708:5:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":38778,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10708:7:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":38776,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"10693:14:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$24925_$","typeString":"type(contract IERC20Metadata)"}},"id":38779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10693:23:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":38780,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10717:7:110","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":24180,"src":"10693:31:110","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":38786,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10693:53:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":38787,"nodeType":"ExpressionStatement","src":"10693:53:110"}},{"expression":{"arguments":[{"arguments":[{"id":38796,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38732,"src":"10792:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":38795,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10784:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":38794,"name":"address","nodeType":"ElementaryTypeName","src":"10784:7:110","typeDescriptions":{}}},"id":38797,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10784:20:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":38800,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10811:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":38799,"name":"uint256","nodeType":"ElementaryTypeName","src":"10811:7:110","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":38798,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10806:4:110","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":38801,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10806:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":38802,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10820:3:110","memberName":"max","nodeType":"MemberAccess","src":"10806:17:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":38790,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17037,"src":"10767:5:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":38791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10767:7:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":38789,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"10752:14:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$24925_$","typeString":"type(contract IERC20Metadata)"}},"id":38792,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10752:23:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":38793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10776:7:110","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":24180,"src":"10752:31:110","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":38803,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10752:72:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":38804,"nodeType":"ExpressionStatement","src":"10752:72:110"},{"eventCall":{"arguments":[{"id":38806,"name":"oldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38757,"src":"10853:8:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},{"id":38807,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38732,"src":"10863:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":38805,"name":"YieldVaultChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38376,"src":"10835:17:110","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_contract$_IERC4626_$22463_$_t_contract$_IERC4626_$22463_$returns$__$","typeString":"function (contract IERC4626,contract IERC4626)"}},"id":38808,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10835:40:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38809,"nodeType":"EmitStatement","src":"10830:45:110"}]},"id":38811,"implemented":true,"kind":"function","modifiers":[],"name":"_setYieldVault","nameLocation":"10144:14:110","nodeType":"FunctionDefinition","parameters":{"id":38733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38732,"mutability":"mutable","name":"yieldVault_","nameLocation":"10168:11:110","nodeType":"VariableDeclaration","scope":38811,"src":"10159:20:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":38731,"nodeType":"UserDefinedTypeName","pathNode":{"id":38730,"name":"IERC4626","nameLocations":["10159:8:110"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"10159:8:110"},"referencedDeclaration":22463,"src":"10159:8:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"10158:22:110"},"returnParameters":{"id":38734,"nodeType":"ParameterList","parameters":[],"src":"10190:0:110"},"scope":40840,"src":"10135:745:110","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":38857,"nodeType":"Block","src":"11302:291:110","statements":[{"assignments":[38822],"declarations":[{"constant":false,"id":38822,"mutability":"mutable","name":"$","nameLocation":"11338:1:110","nodeType":"VariableDeclaration","scope":38857,"src":"11308:31:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":38821,"nodeType":"UserDefinedTypeName","pathNode":{"id":38820,"name":"CashFlowLenderStorage","nameLocations":["11308:21:110"],"nodeType":"IdentifierPath","referencedDeclaration":38357,"src":"11308:21:110"},"referencedDeclaration":38357,"src":"11308:21:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":38825,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":38823,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38368,"src":"11342:25:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$38357_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":38824,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11342:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"11308:61:110"},{"assignments":[38827],"declarations":[{"constant":false,"id":38827,"mutability":"mutable","name":"yieldAssets","nameLocation":"11383:11:110","nodeType":"VariableDeclaration","scope":38857,"src":"11375:19:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38826,"name":"uint256","nodeType":"ElementaryTypeName","src":"11375:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":38840,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":38836,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"11459:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":38835,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11451:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":38834,"name":"address","nodeType":"ElementaryTypeName","src":"11451:7:110","typeDescriptions":{}}},"id":38837,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11451:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":38831,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38822,"src":"11427:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":38832,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11429:11:110","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":38344,"src":"11427:13:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":38833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11441:9:110","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":24150,"src":"11427:23:110","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":38838,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11427:38:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":38828,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38822,"src":"11397:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":38829,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11399:11:110","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":38344,"src":"11397:13:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":38830,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11411:15:110","memberName":"convertToAssets","nodeType":"MemberAccess","referencedDeclaration":22354,"src":"11397:29:110","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view external returns (uint256)"}},"id":38839,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11397:69:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11375:91:110"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":38848,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":38846,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":38843,"name":"yieldAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38827,"src":"11490:11:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":38842,"name":"_deinvest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39712,"src":"11480:9:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) returns (uint256)"}},"id":38844,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11480:22:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":38845,"name":"yieldAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38827,"src":"11506:11:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11480:37:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":38847,"name":"force","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38817,"src":"11521:5:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11480:46:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":38849,"name":"CannotDeinvestYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38514,"src":"11528:24:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":38850,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11528:26:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":38841,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"11472:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":38851,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11472:83:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38852,"nodeType":"ExpressionStatement","src":"11472:83:110"},{"expression":{"arguments":[{"id":38854,"name":"yieldVault_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38815,"src":"11576:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}],"id":38853,"name":"_setYieldVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38811,"src":"11561:14:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC4626_$22463_$returns$__$","typeString":"function (contract IERC4626)"}},"id":38855,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11561:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38856,"nodeType":"ExpressionStatement","src":"11561:27:110"}]},"documentation":{"id":38812,"nodeType":"StructuredDocumentation","src":"10884:349:110","text":" @dev Changes the Yield Vault, deinvesting all the funds before doing it.\n @param yieldVault_ An ERC-4626 vault where funds can be deployed to generate extra yields for the CFL LPs.\n @param force If true, it continues the operation even if some of the funds aren't withdrawable.\n Emits a {YieldVaultChanged} event"},"functionSelector":"194448e5","id":38858,"implemented":true,"kind":"function","modifiers":[],"name":"setYieldVault","nameLocation":"11245:13:110","nodeType":"FunctionDefinition","parameters":{"id":38818,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38815,"mutability":"mutable","name":"yieldVault_","nameLocation":"11268:11:110","nodeType":"VariableDeclaration","scope":38858,"src":"11259:20:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":38814,"nodeType":"UserDefinedTypeName","pathNode":{"id":38813,"name":"IERC4626","nameLocations":["11259:8:110"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"11259:8:110"},"referencedDeclaration":22463,"src":"11259:8:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"},{"constant":false,"id":38817,"mutability":"mutable","name":"force","nameLocation":"11286:5:110","nodeType":"VariableDeclaration","scope":38858,"src":"11281:10:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":38816,"name":"bool","nodeType":"ElementaryTypeName","src":"11281:4:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"11258:34:110"},"returnParameters":{"id":38819,"nodeType":"ParameterList","parameters":[],"src":"11302:0:110"},"scope":40840,"src":"11236:357:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":38868,"nodeType":"Block","src":"11652:57:110","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":38864,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38368,"src":"11665:25:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$38357_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":38865,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11665:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":38866,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11693:11:110","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":38344,"src":"11665:39:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"functionReturnParameters":38863,"id":38867,"nodeType":"Return","src":"11658:46:110"}]},"functionSelector":"a7f8a5e2","id":38869,"implemented":true,"kind":"function","modifiers":[],"name":"yieldVault","nameLocation":"11606:10:110","nodeType":"FunctionDefinition","parameters":{"id":38859,"nodeType":"ParameterList","parameters":[],"src":"11616:2:110"},"returnParameters":{"id":38863,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38862,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":38869,"src":"11642:8:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"},"typeName":{"id":38861,"nodeType":"UserDefinedTypeName","pathNode":{"id":38860,"name":"IERC4626","nameLocations":["11642:8:110"],"nodeType":"IdentifierPath","referencedDeclaration":22463,"src":"11642:8:110"},"referencedDeclaration":22463,"src":"11642:8:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"visibility":"internal"}],"src":"11641:10:110"},"scope":40840,"src":"11597:112:110","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":38877,"nodeType":"Block","src":"11771:29:110","statements":[{"expression":{"id":38875,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38322,"src":"11784:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}},"functionReturnParameters":38874,"id":38876,"nodeType":"Return","src":"11777:18:110"}]},"functionSelector":"4d15eb03","id":38878,"implemented":true,"kind":"function","modifiers":[],"name":"policyPool","nameLocation":"11722:10:110","nodeType":"FunctionDefinition","parameters":{"id":38870,"nodeType":"ParameterList","parameters":[],"src":"11732:2:110"},"returnParameters":{"id":38874,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38873,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":38878,"src":"11758:11:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"},"typeName":{"id":38872,"nodeType":"UserDefinedTypeName","pathNode":{"id":38871,"name":"IPolicyPool","nameLocations":["11758:11:110"],"nodeType":"IdentifierPath","referencedDeclaration":40853,"src":"11758:11:110"},"referencedDeclaration":40853,"src":"11758:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}},"visibility":"internal"}],"src":"11757:13:110"},"scope":40840,"src":"11713:87:110","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":38910,"nodeType":"Block","src":"11904:194:110","statements":[{"assignments":[38888],"declarations":[{"constant":false,"id":38888,"mutability":"mutable","name":"$","nameLocation":"11940:1:110","nodeType":"VariableDeclaration","scope":38910,"src":"11910:31:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":38887,"nodeType":"UserDefinedTypeName","pathNode":{"id":38886,"name":"CashFlowLenderStorage","nameLocations":["11910:21:110"],"nodeType":"IdentifierPath","referencedDeclaration":38357,"src":"11910:21:110"},"referencedDeclaration":38357,"src":"11910:21:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":38891,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":38889,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38368,"src":"11944:25:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$38357_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":38890,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11944:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"11910:61:110"},{"expression":{"id":38897,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":38892,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38884,"src":"11977:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"expression":{"id":38893,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38888,"src":"11992:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":38894,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11994:8:110","memberName":"_targets","nodeType":"MemberAccess","referencedDeclaration":38351,"src":"11992:10:110","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$38340_storage_$","typeString":"mapping(address => struct CashFlowLender.TargetConfig storage ref)"}},"id":38896,"indexExpression":{"id":38895,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38880,"src":"12003:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11992:18:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage","typeString":"struct CashFlowLender.TargetConfig storage ref"}},"src":"11977:33:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":38898,"nodeType":"ExpressionStatement","src":"11977:33:110"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},"id":38904,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":38900,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38884,"src":"12024:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":38901,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12037:6:110","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":38335,"src":"12024:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":38902,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38330,"src":"12047:12:110","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$38330_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":38903,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12060:8:110","memberName":"inactive","nodeType":"MemberAccess","referencedDeclaration":38326,"src":"12047:21:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"src":"12024:44:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":38906,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38880,"src":"12085:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":38905,"name":"TargetNotFound","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38500,"src":"12070:14:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":38907,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12070:22:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":38899,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"12016:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":38908,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12016:77:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38909,"nodeType":"ExpressionStatement","src":"12016:77:110"}]},"id":38911,"implemented":true,"kind":"function","modifiers":[],"name":"_getTargetConfig","nameLocation":"11813:16:110","nodeType":"FunctionDefinition","parameters":{"id":38881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38880,"mutability":"mutable","name":"target","nameLocation":"11838:6:110","nodeType":"VariableDeclaration","scope":38911,"src":"11830:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38879,"name":"address","nodeType":"ElementaryTypeName","src":"11830:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11829:16:110"},"returnParameters":{"id":38885,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38884,"mutability":"mutable","name":"targetConfig","nameLocation":"11890:12:110","nodeType":"VariableDeclaration","scope":38911,"src":"11869:33:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":38883,"nodeType":"UserDefinedTypeName","pathNode":{"id":38882,"name":"TargetConfig","nameLocations":["11869:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38340,"src":"11869:12:110"},"referencedDeclaration":38340,"src":"11869:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"src":"11868:35:110"},"scope":40840,"src":"11804:294:110","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":38978,"nodeType":"Block","src":"12855:497:110","statements":[{"assignments":[38925],"declarations":[{"constant":false,"id":38925,"mutability":"mutable","name":"$","nameLocation":"12891:1:110","nodeType":"VariableDeclaration","scope":38978,"src":"12861:31:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":38924,"nodeType":"UserDefinedTypeName","pathNode":{"id":38923,"name":"CashFlowLenderStorage","nameLocations":["12861:21:110"],"nodeType":"IdentifierPath","referencedDeclaration":38357,"src":"12861:21:110"},"referencedDeclaration":38357,"src":"12861:21:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":38928,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":38926,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38368,"src":"12895:25:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$38357_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":38927,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12895:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"12861:61:110"},{"assignments":[38931],"declarations":[{"constant":false,"id":38931,"mutability":"mutable","name":"targetConfig","nameLocation":"12949:12:110","nodeType":"VariableDeclaration","scope":38978,"src":"12928:33:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":38930,"nodeType":"UserDefinedTypeName","pathNode":{"id":38929,"name":"TargetConfig","nameLocations":["12928:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38340,"src":"12928:12:110"},"referencedDeclaration":38340,"src":"12928:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"id":38936,"initialValue":{"baseExpression":{"expression":{"id":38932,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38925,"src":"12964:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":38933,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12966:8:110","memberName":"_targets","nodeType":"MemberAccess","referencedDeclaration":38351,"src":"12964:10:110","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$38340_storage_$","typeString":"mapping(address => struct CashFlowLender.TargetConfig storage ref)"}},"id":38935,"indexExpression":{"id":38934,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38914,"src":"12975:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12964:18:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage","typeString":"struct CashFlowLender.TargetConfig storage ref"}},"nodeType":"VariableDeclarationStatement","src":"12928:54:110"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},"id":38942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":38938,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38931,"src":"12996:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":38939,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13009:6:110","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":38335,"src":"12996:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":38940,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38330,"src":"13019:12:110","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$38330_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":38941,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13032:8:110","memberName":"inactive","nodeType":"MemberAccess","referencedDeclaration":38326,"src":"13019:21:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"src":"12996:44:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":38943,"name":"TargetAlreadyExists","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38472,"src":"13042:19:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":38944,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13042:21:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":38937,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"12988:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":38945,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12988:76:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38946,"nodeType":"ExpressionStatement","src":"12988:76:110"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":38950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":38948,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38916,"src":"13078:8:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":38949,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13090:1:110","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13078:13:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":38951,"name":"InvalidSlotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38474,"src":"13093:15:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":38952,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13093:17:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":38947,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"13070:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":38953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13070:41:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38954,"nodeType":"ExpressionStatement","src":"13070:41:110"},{"expression":{"id":38971,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":38955,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38925,"src":"13117:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":38958,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13119:8:110","memberName":"_targets","nodeType":"MemberAccess","referencedDeclaration":38351,"src":"13117:10:110","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$38340_storage_$","typeString":"mapping(address => struct CashFlowLender.TargetConfig storage ref)"}},"id":38959,"indexExpression":{"id":38957,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38914,"src":"13128:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"13117:18:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage","typeString":"struct CashFlowLender.TargetConfig storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":38961,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38330,"src":"13167:12:110","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$38330_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":38962,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13180:6:110","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":38327,"src":"13167:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},{"id":38963,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38916,"src":"13204:8:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":38964,"name":"debtLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38918,"src":"13231:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":38965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13241:8:110","memberName":"toUint96","nodeType":"MemberAccess","referencedDeclaration":35774,"src":"13231:18:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint96)"}},"id":38966,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13231:20:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":38967,"name":"minLiquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38920,"src":"13273:12:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":38968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13286:8:110","memberName":"toUint96","nodeType":"MemberAccess","referencedDeclaration":35774,"src":"13273:21:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint96)"}},"id":38969,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13273:23:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint96","typeString":"uint96"}],"id":38960,"name":"TargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38340,"src":"13138:12:110","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_TargetConfig_$38340_storage_ptr_$","typeString":"type(struct CashFlowLender.TargetConfig storage pointer)"}},"id":38970,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["13159:6:110","13194:8:110","13220:9:110","13259:12:110"],"names":["status","slotSize","debtLimit","minLiquidity"],"nodeType":"FunctionCall","src":"13138:165:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_memory_ptr","typeString":"struct CashFlowLender.TargetConfig memory"}},"src":"13117:186:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage","typeString":"struct CashFlowLender.TargetConfig storage ref"}},"id":38972,"nodeType":"ExpressionStatement","src":"13117:186:110"},{"eventCall":{"arguments":[{"id":38974,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38914,"src":"13326:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":38975,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38931,"src":"13334:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}],"id":38973,"name":"TargetAdded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38425,"src":"13314:11:110","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_struct$_TargetConfig_$38340_memory_ptr_$returns$__$","typeString":"function (address,struct CashFlowLender.TargetConfig memory)"}},"id":38976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13314:33:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":38977,"nodeType":"EmitStatement","src":"13309:38:110"}]},"documentation":{"id":38912,"nodeType":"StructuredDocumentation","src":"12102:648:110","text":" @dev Adds a new target that can be used later to forward policies and track the debt.\n @param target Address of the target contract. It should be an Ensuro's RiskModule\n @param slotSize Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\n @param debtLimit Limit of the debt in a given period for the target.\n @param minLiquidity Minimum liquidity tried to achieve before forwardNewPolicy. If cash (see `_balance()`) is\n                     lower than this amount, it will try to deinvest the funds to leave _balance() = minLiquidity\n Emits a {TargetAdded} event"},"functionSelector":"bfdb20da","id":38979,"implemented":true,"kind":"function","modifiers":[],"name":"addTarget","nameLocation":"12762:9:110","nodeType":"FunctionDefinition","parameters":{"id":38921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38914,"mutability":"mutable","name":"target","nameLocation":"12780:6:110","nodeType":"VariableDeclaration","scope":38979,"src":"12772:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38913,"name":"address","nodeType":"ElementaryTypeName","src":"12772:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38916,"mutability":"mutable","name":"slotSize","nameLocation":"12795:8:110","nodeType":"VariableDeclaration","scope":38979,"src":"12788:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":38915,"name":"uint32","nodeType":"ElementaryTypeName","src":"12788:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":38918,"mutability":"mutable","name":"debtLimit","nameLocation":"12813:9:110","nodeType":"VariableDeclaration","scope":38979,"src":"12805:17:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38917,"name":"uint256","nodeType":"ElementaryTypeName","src":"12805:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":38920,"mutability":"mutable","name":"minLiquidity","nameLocation":"12832:12:110","nodeType":"VariableDeclaration","scope":38979,"src":"12824:20:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38919,"name":"uint256","nodeType":"ElementaryTypeName","src":"12824:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12771:74:110"},"returnParameters":{"id":38922,"nodeType":"ParameterList","parameters":[],"src":"12855:0:110"},"scope":40840,"src":"12753:599:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":39022,"nodeType":"Block","src":"13987:293:110","statements":[{"assignments":[38991],"declarations":[{"constant":false,"id":38991,"mutability":"mutable","name":"targetConfig","nameLocation":"14014:12:110","nodeType":"VariableDeclaration","scope":39022,"src":"13993:33:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":38990,"nodeType":"UserDefinedTypeName","pathNode":{"id":38989,"name":"TargetConfig","nameLocations":["13993:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38340,"src":"13993:12:110"},"referencedDeclaration":38340,"src":"13993:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"id":38995,"initialValue":{"arguments":[{"id":38993,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38982,"src":"14046:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":38992,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38911,"src":"14029:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$38340_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":38994,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14029:24:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"13993:60:110"},{"eventCall":{"arguments":[{"id":38997,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38982,"src":"14084:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":38998,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38991,"src":"14092:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":38999,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14105:9:110","memberName":"debtLimit","nodeType":"MemberAccess","referencedDeclaration":38337,"src":"14092:22:110","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":39000,"name":"debtLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38984,"src":"14116:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":39001,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38991,"src":"14127:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39002,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14140:12:110","memberName":"minLiquidity","nodeType":"MemberAccess","referencedDeclaration":38339,"src":"14127:25:110","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},{"id":39003,"name":"minLiquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38986,"src":"14154:12:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint96","typeString":"uint96"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":38996,"name":"TargetLimitsChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38437,"src":"14064:19:110","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,uint256,uint256,uint256,uint256)"}},"id":39004,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14064:103:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":39005,"nodeType":"EmitStatement","src":"14059:108:110"},{"expression":{"id":39012,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":39006,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38991,"src":"14173:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39008,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14186:9:110","memberName":"debtLimit","nodeType":"MemberAccess","referencedDeclaration":38337,"src":"14173:22:110","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":39009,"name":"debtLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38984,"src":"14198:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":39010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14208:8:110","memberName":"toUint96","nodeType":"MemberAccess","referencedDeclaration":35774,"src":"14198:18:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint96)"}},"id":39011,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14198:20:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"14173:45:110","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":39013,"nodeType":"ExpressionStatement","src":"14173:45:110"},{"expression":{"id":39020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":39014,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38991,"src":"14224:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39016,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14237:12:110","memberName":"minLiquidity","nodeType":"MemberAccess","referencedDeclaration":38339,"src":"14224:25:110","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":39017,"name":"minLiquidity","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38986,"src":"14252:12:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":39018,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14265:8:110","memberName":"toUint96","nodeType":"MemberAccess","referencedDeclaration":35774,"src":"14252:21:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint96_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint96)"}},"id":39019,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14252:23:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"14224:51:110","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"id":39021,"nodeType":"ExpressionStatement","src":"14224:51:110"}]},"documentation":{"id":38980,"nodeType":"StructuredDocumentation","src":"13356:537:110","text":" @dev Changes debtLimit and minLiquidity for a given target.\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param debtLimit New limit of the debt in a given period for the target.\n @param minLiquidity Minimum liquidity tried to achieve before forwardNewPolicy. If cash (see `_balance()`) is\n                     lower than this amount, it will try to deinvest the funds to leave _balance() = minLiquidity\n Emits a {TargetLimitsChanged} event"},"functionSelector":"bdb5371d","id":39023,"implemented":true,"kind":"function","modifiers":[],"name":"setTargetLimits","nameLocation":"13905:15:110","nodeType":"FunctionDefinition","parameters":{"id":38987,"nodeType":"ParameterList","parameters":[{"constant":false,"id":38982,"mutability":"mutable","name":"target","nameLocation":"13929:6:110","nodeType":"VariableDeclaration","scope":39023,"src":"13921:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":38981,"name":"address","nodeType":"ElementaryTypeName","src":"13921:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":38984,"mutability":"mutable","name":"debtLimit","nameLocation":"13945:9:110","nodeType":"VariableDeclaration","scope":39023,"src":"13937:17:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38983,"name":"uint256","nodeType":"ElementaryTypeName","src":"13937:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":38986,"mutability":"mutable","name":"minLiquidity","nameLocation":"13964:12:110","nodeType":"VariableDeclaration","scope":39023,"src":"13956:20:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38985,"name":"uint256","nodeType":"ElementaryTypeName","src":"13956:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13920:57:110"},"returnParameters":{"id":38988,"nodeType":"ParameterList","parameters":[],"src":"13987:0:110"},"scope":40840,"src":"13896:384:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":39061,"nodeType":"Block","src":"14639:347:110","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},"id":39036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39033,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39029,"src":"14747:9:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":39034,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38330,"src":"14760:12:110","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$38330_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":39035,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14773:8:110","memberName":"inactive","nodeType":"MemberAccess","referencedDeclaration":38326,"src":"14760:21:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"src":"14747:34:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":39037,"name":"CannotDeactivateTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38470,"src":"14783:22:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":39038,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14783:24:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":39032,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"14739:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":39039,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14739:69:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":39040,"nodeType":"ExpressionStatement","src":"14739:69:110"},{"assignments":[39043],"declarations":[{"constant":false,"id":39043,"mutability":"mutable","name":"targetConfig","nameLocation":"14835:12:110","nodeType":"VariableDeclaration","scope":39061,"src":"14814:33:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":39042,"nodeType":"UserDefinedTypeName","pathNode":{"id":39041,"name":"TargetConfig","nameLocations":["14814:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38340,"src":"14814:12:110"},"referencedDeclaration":38340,"src":"14814:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"id":39047,"initialValue":{"arguments":[{"id":39045,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39026,"src":"14867:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":39044,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38911,"src":"14850:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$38340_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":39046,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14850:24:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"14814:60:110"},{"eventCall":{"arguments":[{"id":39049,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39026,"src":"14905:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":39050,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39043,"src":"14913:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39051,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14926:6:110","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":38335,"src":"14913:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},{"id":39052,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39029,"src":"14934:9:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}],"id":39048,"name":"TargetStatusChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38447,"src":"14885:19:110","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_enum$_TargetStatus_$38330_$_t_enum$_TargetStatus_$38330_$returns$__$","typeString":"function (address,enum CashFlowLender.TargetStatus,enum CashFlowLender.TargetStatus)"}},"id":39053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14885:59:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":39054,"nodeType":"EmitStatement","src":"14880:64:110"},{"expression":{"id":39059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":39055,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39043,"src":"14950:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39057,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14963:6:110","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":38335,"src":"14950:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":39058,"name":"newStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39029,"src":"14972:9:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"src":"14950:31:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"id":39060,"nodeType":"ExpressionStatement","src":"14950:31:110"}]},"documentation":{"id":39024,"nodeType":"StructuredDocumentation","src":"14284:278:110","text":" @dev Changes status of a given target. See {TargetStatus}.\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param newStatus The new status of the contract\n Emits a {TargetStatusChanged} event"},"functionSelector":"f7a39333","id":39062,"implemented":true,"kind":"function","modifiers":[],"name":"setTargetStatus","nameLocation":"14574:15:110","nodeType":"FunctionDefinition","parameters":{"id":39030,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39026,"mutability":"mutable","name":"target","nameLocation":"14598:6:110","nodeType":"VariableDeclaration","scope":39062,"src":"14590:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39025,"name":"address","nodeType":"ElementaryTypeName","src":"14590:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39029,"mutability":"mutable","name":"newStatus","nameLocation":"14619:9:110","nodeType":"VariableDeclaration","scope":39062,"src":"14606:22:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},"typeName":{"id":39028,"nodeType":"UserDefinedTypeName","pathNode":{"id":39027,"name":"TargetStatus","nameLocations":["14606:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38330,"src":"14606:12:110"},"referencedDeclaration":38330,"src":"14606:12:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"visibility":"internal"}],"src":"14589:40:110"},"returnParameters":{"id":39031,"nodeType":"ParameterList","parameters":[],"src":"14639:0:110"},"scope":40840,"src":"14565:421:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":39082,"nodeType":"Block","src":"15068:110:110","statements":[{"assignments":[39072],"declarations":[{"constant":false,"id":39072,"mutability":"mutable","name":"$","nameLocation":"15104:1:110","nodeType":"VariableDeclaration","scope":39082,"src":"15074:31:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":39071,"nodeType":"UserDefinedTypeName","pathNode":{"id":39070,"name":"CashFlowLenderStorage","nameLocations":["15074:21:110"],"nodeType":"IdentifierPath","referencedDeclaration":38357,"src":"15074:21:110"},"referencedDeclaration":38357,"src":"15074:21:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":39075,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":39073,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38368,"src":"15108:25:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$38357_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":39074,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15108:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"15074:61:110"},{"expression":{"expression":{"baseExpression":{"expression":{"id":39076,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39072,"src":"15148:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":39077,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15150:8:110","memberName":"_targets","nodeType":"MemberAccess","referencedDeclaration":38351,"src":"15148:10:110","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_TargetConfig_$38340_storage_$","typeString":"mapping(address => struct CashFlowLender.TargetConfig storage ref)"}},"id":39079,"indexExpression":{"id":39078,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39064,"src":"15159:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"15148:18:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage","typeString":"struct CashFlowLender.TargetConfig storage ref"}},"id":39080,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15167:6:110","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":38335,"src":"15148:25:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"functionReturnParameters":39069,"id":39081,"nodeType":"Return","src":"15141:32:110"}]},"functionSelector":"091ea8a6","id":39083,"implemented":true,"kind":"function","modifiers":[],"name":"getTargetStatus","nameLocation":"14999:15:110","nodeType":"FunctionDefinition","parameters":{"id":39065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39064,"mutability":"mutable","name":"target","nameLocation":"15023:6:110","nodeType":"VariableDeclaration","scope":39083,"src":"15015:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39063,"name":"address","nodeType":"ElementaryTypeName","src":"15015:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15014:16:110"},"returnParameters":{"id":39069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39068,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39083,"src":"15054:12:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},"typeName":{"id":39067,"nodeType":"UserDefinedTypeName","pathNode":{"id":39066,"name":"TargetStatus","nameLocations":["15054:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38330,"src":"15054:12:110"},"referencedDeclaration":38330,"src":"15054:12:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"visibility":"internal"}],"src":"15053:14:110"},"scope":40840,"src":"14990:188:110","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":39119,"nodeType":"Block","src":"15586:238:110","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":39094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39092,"name":"newSlotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39088,"src":"15600:11:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":39093,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15615:1:110","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"15600:16:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":39095,"name":"InvalidSlotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38474,"src":"15618:15:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":39096,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15618:17:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":39091,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"15592:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":39097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15592:44:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":39098,"nodeType":"ExpressionStatement","src":"15592:44:110"},{"assignments":[39101],"declarations":[{"constant":false,"id":39101,"mutability":"mutable","name":"targetConfig","nameLocation":"15663:12:110","nodeType":"VariableDeclaration","scope":39119,"src":"15642:33:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":39100,"nodeType":"UserDefinedTypeName","pathNode":{"id":39099,"name":"TargetConfig","nameLocations":["15642:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38340,"src":"15642:12:110"},"referencedDeclaration":38340,"src":"15642:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"id":39105,"initialValue":{"arguments":[{"id":39103,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39086,"src":"15695:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":39102,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38911,"src":"15678:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$38340_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":39104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15678:24:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"15642:60:110"},{"eventCall":{"arguments":[{"id":39107,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39086,"src":"15735:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":39108,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39101,"src":"15743:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39109,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15756:8:110","memberName":"slotSize","nodeType":"MemberAccess","referencedDeclaration":38332,"src":"15743:21:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":39110,"name":"newSlotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39088,"src":"15766:11:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":39106,"name":"TargetSlotSizeChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38455,"src":"15713:21:110","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint32_$_t_uint32_$returns$__$","typeString":"function (address,uint32,uint32)"}},"id":39111,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15713:65:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":39112,"nodeType":"EmitStatement","src":"15708:70:110"},{"expression":{"id":39117,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":39113,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39101,"src":"15784:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39115,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"15797:8:110","memberName":"slotSize","nodeType":"MemberAccess","referencedDeclaration":38332,"src":"15784:21:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":39116,"name":"newSlotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39088,"src":"15808:11:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"15784:35:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":39118,"nodeType":"ExpressionStatement","src":"15784:35:110"}]},"documentation":{"id":39084,"nodeType":"StructuredDocumentation","src":"15182:329:110","text":" @dev Changes the slotSize of a given target.\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param newSlotSize New duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\n Emits a {TargetStatusChanged} event"},"functionSelector":"08742d90","id":39120,"implemented":true,"kind":"function","modifiers":[],"name":"setTargetSlotSize","nameLocation":"15523:17:110","nodeType":"FunctionDefinition","parameters":{"id":39089,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39086,"mutability":"mutable","name":"target","nameLocation":"15549:6:110","nodeType":"VariableDeclaration","scope":39120,"src":"15541:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39085,"name":"address","nodeType":"ElementaryTypeName","src":"15541:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39088,"mutability":"mutable","name":"newSlotSize","nameLocation":"15564:11:110","nodeType":"VariableDeclaration","scope":39120,"src":"15557:18:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":39087,"name":"uint32","nodeType":"ElementaryTypeName","src":"15557:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15540:36:110"},"returnParameters":{"id":39090,"nodeType":"ParameterList","parameters":[],"src":"15586:0:110"},"scope":40840,"src":"15514:310:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[33322],"body":{"id":39169,"nodeType":"Block","src":"15944:331:110","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":39167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":39162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":39155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":39148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":39141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":39134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39129,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39123,"src":"15963:11:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":39131,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25551,"src":"15983:15:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Receiver_$25551_$","typeString":"type(contract IERC721Receiver)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC721Receiver_$25551_$","typeString":"type(contract IERC721Receiver)"}],"id":39130,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15978:4:110","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":39132,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15978:21:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC721Receiver_$25551","typeString":"type(contract IERC721Receiver)"}},"id":39133,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16000:11:110","memberName":"interfaceId","nodeType":"MemberAccess","src":"15978:33:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"15963:48:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":39140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39135,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39123,"src":"16021:11:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":39137,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"16041:13:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}],"id":39136,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16036:4:110","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":39138,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16036:19:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IPolicyHolder_$14449","typeString":"type(contract IPolicyHolder)"}},"id":39139,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16056:11:110","memberName":"interfaceId","nodeType":"MemberAccess","src":"16036:31:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"16021:46:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15963:104:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":39147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39142,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39123,"src":"16077:11:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":39144,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24193,"src":"16097:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$24193_$","typeString":"type(contract IERC20)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC20_$24193_$","typeString":"type(contract IERC20)"}],"id":39143,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16092:4:110","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":39145,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16092:12:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC20_$24193","typeString":"type(contract IERC20)"}},"id":39146,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16105:11:110","memberName":"interfaceId","nodeType":"MemberAccess","src":"16092:24:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"16077:39:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15963:153:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":39154,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39149,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39123,"src":"16126:11:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":39151,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"16146:14:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$24925_$","typeString":"type(contract IERC20Metadata)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$24925_$","typeString":"type(contract IERC20Metadata)"}],"id":39150,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16141:4:110","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":39152,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16141:20:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC20Metadata_$24925","typeString":"type(contract IERC20Metadata)"}},"id":39153,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16162:11:110","memberName":"interfaceId","nodeType":"MemberAccess","src":"16141:32:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"16126:47:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15963:210:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":39161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39156,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39123,"src":"16183:11:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":39158,"name":"IERC4626","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":22463,"src":"16203:8:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC4626_$22463_$","typeString":"type(contract IERC4626)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC4626_$22463_$","typeString":"type(contract IERC4626)"}],"id":39157,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16198:4:110","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":39159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16198:14:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC4626_$22463","typeString":"type(contract IERC4626)"}},"id":39160,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16213:11:110","memberName":"interfaceId","nodeType":"MemberAccess","src":"16198:26:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"16183:41:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15963:261:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":39165,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39123,"src":"16258:11:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":39163,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"16234:5:110","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_CashFlowLender_$40840_$","typeString":"type(contract super CashFlowLender)"}},"id":39164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16240:17:110","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":33322,"src":"16234:23:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":39166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16234:36:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15963:307:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":39128,"id":39168,"nodeType":"Return","src":"15950:320:110"}]},"documentation":{"id":39121,"nodeType":"StructuredDocumentation","src":"15828:22:110","text":"@inheritdoc ERC165"},"functionSelector":"01ffc9a7","id":39170,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"15862:17:110","nodeType":"FunctionDefinition","overrides":{"id":39125,"nodeType":"OverrideSpecifier","overrides":[],"src":"15920:8:110"},"parameters":{"id":39124,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39123,"mutability":"mutable","name":"interfaceId","nameLocation":"15887:11:110","nodeType":"VariableDeclaration","scope":39170,"src":"15880:18:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":39122,"name":"bytes4","nodeType":"ElementaryTypeName","src":"15880:6:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"15879:20:110"},"returnParameters":{"id":39128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39127,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39170,"src":"15938:4:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":39126,"name":"bool","nodeType":"ElementaryTypeName","src":"15938:4:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"15937:6:110"},"scope":40840,"src":"15853:422:110","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[23554],"body":{"id":39176,"nodeType":"Block","src":"16393:2:110","statements":[]},"id":39177,"implemented":true,"kind":"function","modifiers":[],"name":"_authorizeUpgrade","nameLocation":"16335:17:110","nodeType":"FunctionDefinition","overrides":{"id":39174,"nodeType":"OverrideSpecifier","overrides":[],"src":"16384:8:110"},"parameters":{"id":39173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39172,"mutability":"mutable","name":"newImpl","nameLocation":"16361:7:110","nodeType":"VariableDeclaration","scope":39177,"src":"16353:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39171,"name":"address","nodeType":"ElementaryTypeName","src":"16353:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"16352:17:110"},"returnParameters":{"id":39175,"nodeType":"ParameterList","parameters":[],"src":"16393:0:110"},"scope":40840,"src":"16326:69:110","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[25550],"body":{"id":39198,"nodeType":"Block","src":"16577:59:110","statements":[{"expression":{"expression":{"expression":{"id":39194,"name":"IERC721Receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25551,"src":"16590:15:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721Receiver_$25551_$","typeString":"type(contract IERC721Receiver)"}},"id":39195,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16606:16:110","memberName":"onERC721Received","nodeType":"MemberAccess","referencedDeclaration":25550,"src":"16590:32:110","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bytes_calldata_ptr_$returns$_t_bytes4_$","typeString":"function IERC721Receiver.onERC721Received(address,address,uint256,bytes calldata) returns (bytes4)"}},"id":39196,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16623:8:110","memberName":"selector","nodeType":"MemberAccess","src":"16590:41:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":39193,"id":39197,"nodeType":"Return","src":"16583:48:110"}]},"documentation":{"id":39178,"nodeType":"StructuredDocumentation","src":"16399:31:110","text":"@inheritdoc IERC721Receiver"},"functionSelector":"150b7a02","id":39199,"implemented":true,"kind":"function","modifiers":[{"id":39190,"kind":"modifierInvocation","modifierName":{"id":39189,"name":"onlyPolicyPool","nameLocations":["16545:14:110"],"nodeType":"IdentifierPath","referencedDeclaration":38532,"src":"16545:14:110"},"nodeType":"ModifierInvocation","src":"16545:14:110"}],"name":"onERC721Received","nameLocation":"16442:16:110","nodeType":"FunctionDefinition","overrides":{"id":39188,"nodeType":"OverrideSpecifier","overrides":[],"src":"16536:8:110"},"parameters":{"id":39187,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39180,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39199,"src":"16464:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39179,"name":"address","nodeType":"ElementaryTypeName","src":"16464:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39182,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39199,"src":"16477:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39181,"name":"address","nodeType":"ElementaryTypeName","src":"16477:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39184,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39199,"src":"16490:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39183,"name":"uint256","nodeType":"ElementaryTypeName","src":"16490:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":39186,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39199,"src":"16503:14:110","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":39185,"name":"bytes","nodeType":"ElementaryTypeName","src":"16503:5:110","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16458:63:110"},"returnParameters":{"id":39193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39192,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39199,"src":"16569:6:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":39191,"name":"bytes4","nodeType":"ElementaryTypeName","src":"16569:6:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"16568:8:110"},"scope":40840,"src":"16433:203:110","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[14402],"body":{"id":39218,"nodeType":"Block","src":"16779:56:110","statements":[{"expression":{"expression":{"expression":{"id":39214,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"16792:13:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}},"id":39215,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16806:15:110","memberName":"onPolicyExpired","nodeType":"MemberAccess","referencedDeclaration":14402,"src":"16792:29:110","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolder.onPolicyExpired(address,address,uint256) returns (bytes4)"}},"id":39216,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16822:8:110","memberName":"selector","nodeType":"MemberAccess","src":"16792:38:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":39213,"id":39217,"nodeType":"Return","src":"16785:45:110"}]},"documentation":{"id":39200,"nodeType":"StructuredDocumentation","src":"16640:29:110","text":"@inheritdoc IPolicyHolder"},"functionSelector":"e8e617b7","id":39219,"implemented":true,"kind":"function","modifiers":[{"id":39210,"kind":"modifierInvocation","modifierName":{"id":39209,"name":"onlyPolicyPool","nameLocations":["16747:14:110"],"nodeType":"IdentifierPath","referencedDeclaration":38532,"src":"16747:14:110"},"nodeType":"ModifierInvocation","src":"16747:14:110"}],"name":"onPolicyExpired","nameLocation":"16681:15:110","nodeType":"FunctionDefinition","overrides":{"id":39208,"nodeType":"OverrideSpecifier","overrides":[],"src":"16738:8:110"},"parameters":{"id":39207,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39202,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39219,"src":"16697:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39201,"name":"address","nodeType":"ElementaryTypeName","src":"16697:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39204,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39219,"src":"16706:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39203,"name":"address","nodeType":"ElementaryTypeName","src":"16706:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39206,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39219,"src":"16715:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39205,"name":"uint256","nodeType":"ElementaryTypeName","src":"16715:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16696:27:110"},"returnParameters":{"id":39213,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39212,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39219,"src":"16771:6:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":39211,"name":"bytes4","nodeType":"ElementaryTypeName","src":"16771:6:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"16770:8:110"},"scope":40840,"src":"16672:163:110","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[14416],"body":{"id":39282,"nodeType":"Block","src":"17019:606:110","statements":[{"assignments":[39238],"declarations":[{"constant":false,"id":39238,"mutability":"mutable","name":"targetConfig","nameLocation":"17198:12:110","nodeType":"VariableDeclaration","scope":39282,"src":"17177:33:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":39237,"nodeType":"UserDefinedTypeName","pathNode":{"id":39236,"name":"TargetConfig","nameLocations":["17177:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38340,"src":"17177:12:110"},"referencedDeclaration":38340,"src":"17177:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"id":39242,"initialValue":{"arguments":[{"id":39240,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39222,"src":"17230:8:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":39239,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38911,"src":"17213:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$38340_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":39241,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17213:26:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"17177:62:110"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":39254,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},"id":39248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":39244,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39238,"src":"17260:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39245,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17273:6:110","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":38335,"src":"17260:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":39246,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38330,"src":"17283:12:110","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$38330_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":39247,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17296:6:110","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":38327,"src":"17283:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"src":"17260:42:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},"id":39253,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":39249,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39238,"src":"17306:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39250,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17319:6:110","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":38335,"src":"17306:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":39251,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38330,"src":"17329:12:110","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$38330_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":39252,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17342:10:110","memberName":"deprecated","nodeType":"MemberAccess","referencedDeclaration":38328,"src":"17329:23:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"src":"17306:46:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17260:92:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":39256,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39222,"src":"17376:8:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":39257,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39238,"src":"17386:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39258,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17399:6:110","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":38335,"src":"17386:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}],"id":39255,"name":"TargetNotActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38468,"src":"17360:15:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_enum$_TargetStatus_$38330_$returns$_t_error_$","typeString":"function (address,enum CashFlowLender.TargetStatus) pure returns (error)"}},"id":39259,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17360:46:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":39243,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"17245:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":39260,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17245:167:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":39261,"nodeType":"ExpressionStatement","src":"17245:167:110"},{"expression":{"arguments":[{"id":39263,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39222,"src":"17437:8:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":39264,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39238,"src":"17453:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39265,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17466:8:110","memberName":"slotSize","nodeType":"MemberAccess","referencedDeclaration":38332,"src":"17453:21:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[{"expression":{"id":39267,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39238,"src":"17497:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39268,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17510:8:110","memberName":"slotSize","nodeType":"MemberAccess","referencedDeclaration":38332,"src":"17497:21:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":39269,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"17520:5:110","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":39270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17526:9:110","memberName":"timestamp","nodeType":"MemberAccess","src":"17520:15:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":39266,"name":"_makeSlotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39632,"src":"17482:14:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint32,uint256) pure returns (uint32)"}},"id":39271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17482:54:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":39275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"17544:18:110","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":39272,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39228,"src":"17545:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":39273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17552:8:110","memberName":"toInt256","nodeType":"MemberAccess","referencedDeclaration":36941,"src":"17545:15:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_int256_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (int256)"}},"id":39274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17545:17:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":39262,"name":"_changeDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39772,"src":"17418:11:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_int256_$returns$_t_int256_$","typeString":"function (address,uint32,uint32,int256) returns (int256)"}},"id":39276,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17418:150:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":39277,"nodeType":"ExpressionStatement","src":"17418:150:110"},{"expression":{"expression":{"expression":{"id":39278,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"17581:13:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}},"id":39279,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17595:16:110","memberName":"onPayoutReceived","nodeType":"MemberAccess","referencedDeclaration":14416,"src":"17581:30:110","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolder.onPayoutReceived(address,address,uint256,uint256) returns (bytes4)"}},"id":39280,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17612:8:110","memberName":"selector","nodeType":"MemberAccess","src":"17581:39:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":39235,"id":39281,"nodeType":"Return","src":"17574:46:110"}]},"documentation":{"id":39220,"nodeType":"StructuredDocumentation","src":"16839:29:110","text":"@inheritdoc IPolicyHolder"},"functionSelector":"d6281d3e","id":39283,"implemented":true,"kind":"function","modifiers":[{"id":39232,"kind":"modifierInvocation","modifierName":{"id":39231,"name":"onlyPolicyPool","nameLocations":["16987:14:110"],"nodeType":"IdentifierPath","referencedDeclaration":38532,"src":"16987:14:110"},"nodeType":"ModifierInvocation","src":"16987:14:110"}],"name":"onPayoutReceived","nameLocation":"16880:16:110","nodeType":"FunctionDefinition","overrides":{"id":39230,"nodeType":"OverrideSpecifier","overrides":[],"src":"16978:8:110"},"parameters":{"id":39229,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39222,"mutability":"mutable","name":"operator","nameLocation":"16910:8:110","nodeType":"VariableDeclaration","scope":39283,"src":"16902:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39221,"name":"address","nodeType":"ElementaryTypeName","src":"16902:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39224,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39283,"src":"16924:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39223,"name":"address","nodeType":"ElementaryTypeName","src":"16924:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39226,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39283,"src":"16937:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39225,"name":"uint256","nodeType":"ElementaryTypeName","src":"16937:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":39228,"mutability":"mutable","name":"amount","nameLocation":"16958:6:110","nodeType":"VariableDeclaration","scope":39283,"src":"16950:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39227,"name":"uint256","nodeType":"ElementaryTypeName","src":"16950:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16896:72:110"},"returnParameters":{"id":39235,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39234,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39283,"src":"17011:6:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":39233,"name":"bytes4","nodeType":"ElementaryTypeName","src":"17011:6:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"17010:8:110"},"scope":40840,"src":"16871:754:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[14430],"body":{"id":39304,"nodeType":"Block","src":"17778:57:110","statements":[{"expression":{"expression":{"expression":{"id":39300,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"17791:13:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}},"id":39301,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17805:16:110","memberName":"onPolicyReplaced","nodeType":"MemberAccess","referencedDeclaration":14430,"src":"17791:30:110","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolder.onPolicyReplaced(address,address,uint256,uint256) returns (bytes4)"}},"id":39302,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"17822:8:110","memberName":"selector","nodeType":"MemberAccess","src":"17791:39:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":39299,"id":39303,"nodeType":"Return","src":"17784:46:110"}]},"documentation":{"id":39284,"nodeType":"StructuredDocumentation","src":"17629:29:110","text":"@inheritdoc IPolicyHolder"},"functionSelector":"5ee0c7dd","id":39305,"implemented":true,"kind":"function","modifiers":[{"id":39296,"kind":"modifierInvocation","modifierName":{"id":39295,"name":"onlyPolicyPool","nameLocations":["17746:14:110"],"nodeType":"IdentifierPath","referencedDeclaration":38532,"src":"17746:14:110"},"nodeType":"ModifierInvocation","src":"17746:14:110"}],"name":"onPolicyReplaced","nameLocation":"17670:16:110","nodeType":"FunctionDefinition","overrides":{"id":39294,"nodeType":"OverrideSpecifier","overrides":[],"src":"17737:8:110"},"parameters":{"id":39293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39286,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39305,"src":"17687:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39285,"name":"address","nodeType":"ElementaryTypeName","src":"17687:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39288,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39305,"src":"17696:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39287,"name":"address","nodeType":"ElementaryTypeName","src":"17696:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39290,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39305,"src":"17705:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39289,"name":"uint256","nodeType":"ElementaryTypeName","src":"17705:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":39292,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39305,"src":"17714:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39291,"name":"uint256","nodeType":"ElementaryTypeName","src":"17714:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17686:36:110"},"returnParameters":{"id":39299,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39298,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39305,"src":"17770:6:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":39297,"name":"bytes4","nodeType":"ElementaryTypeName","src":"17770:6:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"17769:8:110"},"scope":40840,"src":"17661:174:110","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[14448],"body":{"id":39380,"nodeType":"Block","src":"18081:685:110","statements":[{"assignments":[39328],"declarations":[{"constant":false,"id":39328,"mutability":"mutable","name":"targetConfig","nameLocation":"18260:12:110","nodeType":"VariableDeclaration","scope":39380,"src":"18239:33:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":39327,"nodeType":"UserDefinedTypeName","pathNode":{"id":39326,"name":"TargetConfig","nameLocations":["18239:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38340,"src":"18239:12:110"},"referencedDeclaration":38340,"src":"18239:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"id":39332,"initialValue":{"arguments":[{"id":39330,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39308,"src":"18292:8:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":39329,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38911,"src":"18275:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$38340_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":39331,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18275:26:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"18239:62:110"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":39344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},"id":39338,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":39334,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39328,"src":"18322:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39335,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18335:6:110","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":38335,"src":"18322:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":39336,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38330,"src":"18345:12:110","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$38330_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":39337,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18358:6:110","memberName":"active","nodeType":"MemberAccess","referencedDeclaration":38327,"src":"18345:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"src":"18322:42:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"},"id":39343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":39339,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39328,"src":"18368:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39340,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18381:6:110","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":38335,"src":"18368:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":39341,"name":"TargetStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38330,"src":"18391:12:110","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_TargetStatus_$38330_$","typeString":"type(enum CashFlowLender.TargetStatus)"}},"id":39342,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18404:10:110","memberName":"deprecated","nodeType":"MemberAccess","referencedDeclaration":38328,"src":"18391:23:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}},"src":"18368:46:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"18322:92:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":39346,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39308,"src":"18438:8:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":39347,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39328,"src":"18448:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39348,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18461:6:110","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":38335,"src":"18448:19:110","typeDescriptions":{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_TargetStatus_$38330","typeString":"enum CashFlowLender.TargetStatus"}],"id":39345,"name":"TargetNotActive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38468,"src":"18422:15:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_enum$_TargetStatus_$38330_$returns$_t_error_$","typeString":"function (address,enum CashFlowLender.TargetStatus) pure returns (error)"}},"id":39349,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18422:46:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":39333,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"18307:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":39350,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18307:167:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":39351,"nodeType":"ExpressionStatement","src":"18307:167:110"},{"assignments":[39353],"declarations":[{"constant":false,"id":39353,"mutability":"mutable","name":"totalRefund","nameLocation":"18488:11:110","nodeType":"VariableDeclaration","scope":39380,"src":"18480:19:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39352,"name":"uint256","nodeType":"ElementaryTypeName","src":"18480:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":39359,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39354,"name":"purePremiumRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39314,"src":"18502:17:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":39355,"name":"jrCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39316,"src":"18522:11:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18502:31:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":39357,"name":"srCocRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39318,"src":"18536:11:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18502:45:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18480:67:110"},{"expression":{"arguments":[{"id":39361,"name":"operator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39308,"src":"18572:8:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":39362,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39328,"src":"18588:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39363,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18601:8:110","memberName":"slotSize","nodeType":"MemberAccess","referencedDeclaration":38332,"src":"18588:21:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[{"expression":{"id":39365,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39328,"src":"18632:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39366,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18645:8:110","memberName":"slotSize","nodeType":"MemberAccess","referencedDeclaration":38332,"src":"18632:21:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":39367,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"18655:5:110","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":39368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18661:9:110","memberName":"timestamp","nodeType":"MemberAccess","src":"18655:15:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":39364,"name":"_makeSlotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39632,"src":"18617:14:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint32,uint256) pure returns (uint32)"}},"id":39369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18617:54:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":39373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"18679:23:110","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":39370,"name":"totalRefund","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39353,"src":"18680:11:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":39371,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18692:8:110","memberName":"toInt256","nodeType":"MemberAccess","referencedDeclaration":36941,"src":"18680:20:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_int256_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (int256)"}},"id":39372,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18680:22:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":39360,"name":"_changeDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39772,"src":"18553:11:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_int256_$returns$_t_int256_$","typeString":"function (address,uint32,uint32,int256) returns (int256)"}},"id":39374,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18553:155:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":39375,"nodeType":"ExpressionStatement","src":"18553:155:110"},{"expression":{"expression":{"expression":{"id":39376,"name":"IPolicyHolder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14449,"src":"18721:13:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IPolicyHolder_$14449_$","typeString":"type(contract IPolicyHolder)"}},"id":39377,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18735:17:110","memberName":"onPolicyCancelled","nodeType":"MemberAccess","referencedDeclaration":14448,"src":"18721:31:110","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_bytes4_$","typeString":"function IPolicyHolder.onPolicyCancelled(address,address,uint256,uint256,uint256,uint256) returns (bytes4)"}},"id":39378,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18753:8:110","memberName":"selector","nodeType":"MemberAccess","src":"18721:40:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":39325,"id":39379,"nodeType":"Return","src":"18714:47:110"}]},"documentation":{"id":39306,"nodeType":"StructuredDocumentation","src":"17839:29:110","text":"@inheritdoc IPolicyHolder"},"functionSelector":"62eb345e","id":39381,"implemented":true,"kind":"function","modifiers":[{"id":39322,"kind":"modifierInvocation","modifierName":{"id":39321,"name":"onlyPolicyPool","nameLocations":["18049:14:110"],"nodeType":"IdentifierPath","referencedDeclaration":38532,"src":"18049:14:110"},"nodeType":"ModifierInvocation","src":"18049:14:110"}],"name":"onPolicyCancelled","nameLocation":"17880:17:110","nodeType":"FunctionDefinition","overrides":{"id":39320,"nodeType":"OverrideSpecifier","overrides":[],"src":"18040:8:110"},"parameters":{"id":39319,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39308,"mutability":"mutable","name":"operator","nameLocation":"17911:8:110","nodeType":"VariableDeclaration","scope":39381,"src":"17903:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39307,"name":"address","nodeType":"ElementaryTypeName","src":"17903:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39310,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39381,"src":"17925:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39309,"name":"address","nodeType":"ElementaryTypeName","src":"17925:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39312,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39381,"src":"17938:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39311,"name":"uint256","nodeType":"ElementaryTypeName","src":"17938:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":39314,"mutability":"mutable","name":"purePremiumRefund","nameLocation":"17959:17:110","nodeType":"VariableDeclaration","scope":39381,"src":"17951:25:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39313,"name":"uint256","nodeType":"ElementaryTypeName","src":"17951:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":39316,"mutability":"mutable","name":"jrCocRefund","nameLocation":"17990:11:110","nodeType":"VariableDeclaration","scope":39381,"src":"17982:19:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39315,"name":"uint256","nodeType":"ElementaryTypeName","src":"17982:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":39318,"mutability":"mutable","name":"srCocRefund","nameLocation":"18015:11:110","nodeType":"VariableDeclaration","scope":39381,"src":"18007:19:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39317,"name":"uint256","nodeType":"ElementaryTypeName","src":"18007:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17897:133:110"},"returnParameters":{"id":39325,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39324,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39381,"src":"18073:6:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":39323,"name":"bytes4","nodeType":"ElementaryTypeName","src":"18073:6:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"18072:8:110"},"scope":40840,"src":"17871:895:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[15991,18671],"body":{"id":39394,"nodeType":"Block","src":"18995:66:110","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":39390,"name":"ERC2771ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15992,"src":"19008:25:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC2771ContextUpgradeable_$15992_$","typeString":"type(contract ERC2771ContextUpgradeable)"}},"id":39391,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19034:20:110","memberName":"_contextSuffixLength","nodeType":"MemberAccess","referencedDeclaration":15991,"src":"19008:46:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":39392,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19008:48:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":39389,"id":39393,"nodeType":"Return","src":"19001:55:110"}]},"documentation":{"id":39382,"nodeType":"StructuredDocumentation","src":"18813:41:110","text":"@inheritdoc ERC2771ContextUpgradeable"},"id":39395,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"18866:20:110","nodeType":"FunctionDefinition","overrides":{"id":39386,"nodeType":"OverrideSpecifier","overrides":[{"id":39384,"name":"ContextUpgradeable","nameLocations":["18924:18:110"],"nodeType":"IdentifierPath","referencedDeclaration":18672,"src":"18924:18:110"},{"id":39385,"name":"ERC2771ContextUpgradeable","nameLocations":["18944:25:110"],"nodeType":"IdentifierPath","referencedDeclaration":15992,"src":"18944:25:110"}],"src":"18915:55:110"},"parameters":{"id":39383,"nodeType":"ParameterList","parameters":[],"src":"18886:2:110"},"returnParameters":{"id":39389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39388,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39395,"src":"18984:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39387,"name":"uint256","nodeType":"ElementaryTypeName","src":"18984:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18983:9:110"},"scope":40840,"src":"18857:204:110","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[15939,18654],"body":{"id":39408,"nodeType":"Block","src":"19219:56:110","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":39404,"name":"ERC2771ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15992,"src":"19232:25:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC2771ContextUpgradeable_$15992_$","typeString":"type(contract ERC2771ContextUpgradeable)"}},"id":39405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19258:10:110","memberName":"_msgSender","nodeType":"MemberAccess","referencedDeclaration":15939,"src":"19232:36:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":39406,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19232:38:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":39403,"id":39407,"nodeType":"Return","src":"19225:45:110"}]},"documentation":{"id":39396,"nodeType":"StructuredDocumentation","src":"19065:41:110","text":"@inheritdoc ERC2771ContextUpgradeable"},"id":39409,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"19118:10:110","nodeType":"FunctionDefinition","overrides":{"id":39400,"nodeType":"OverrideSpecifier","overrides":[{"id":39398,"name":"ContextUpgradeable","nameLocations":["19154:18:110"],"nodeType":"IdentifierPath","referencedDeclaration":18672,"src":"19154:18:110"},{"id":39399,"name":"ERC2771ContextUpgradeable","nameLocations":["19174:25:110"],"nodeType":"IdentifierPath","referencedDeclaration":15992,"src":"19174:25:110"}],"src":"19145:55:110"},"parameters":{"id":39397,"nodeType":"ParameterList","parameters":[],"src":"19128:2:110"},"returnParameters":{"id":39403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39402,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39409,"src":"19210:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39401,"name":"address","nodeType":"ElementaryTypeName","src":"19210:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"19209:9:110"},"scope":40840,"src":"19109:166:110","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[15981,18663],"body":{"id":39422,"nodeType":"Block","src":"19438:54:110","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":39418,"name":"ERC2771ContextUpgradeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15992,"src":"19451:25:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ERC2771ContextUpgradeable_$15992_$","typeString":"type(contract ERC2771ContextUpgradeable)"}},"id":39419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19477:8:110","memberName":"_msgData","nodeType":"MemberAccess","referencedDeclaration":15981,"src":"19451:34:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes_calldata_ptr_$","typeString":"function () view returns (bytes calldata)"}},"id":39420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19451:36:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":39417,"id":39421,"nodeType":"Return","src":"19444:43:110"}]},"documentation":{"id":39410,"nodeType":"StructuredDocumentation","src":"19279:41:110","text":"@inheritdoc ERC2771ContextUpgradeable"},"id":39423,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"19332:8:110","nodeType":"FunctionDefinition","overrides":{"id":39414,"nodeType":"OverrideSpecifier","overrides":[{"id":39412,"name":"ContextUpgradeable","nameLocations":["19366:18:110"],"nodeType":"IdentifierPath","referencedDeclaration":18672,"src":"19366:18:110"},{"id":39413,"name":"ERC2771ContextUpgradeable","nameLocations":["19386:25:110"],"nodeType":"IdentifierPath","referencedDeclaration":15992,"src":"19386:25:110"}],"src":"19357:55:110"},"parameters":{"id":39411,"nodeType":"ParameterList","parameters":[],"src":"19340:2:110"},"returnParameters":{"id":39417,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39416,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39423,"src":"19422:14:110","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":39415,"name":"bytes","nodeType":"ElementaryTypeName","src":"19422:5:110","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"19421:16:110"},"scope":40840,"src":"19323:169:110","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":39439,"nodeType":"Block","src":"19548:66:110","statements":[{"expression":{"arguments":[{"arguments":[{"id":39435,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"19603:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":39434,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19595:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":39433,"name":"address","nodeType":"ElementaryTypeName","src":"19595:7:110","typeDescriptions":{}}},"id":39436,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19595:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":39429,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17037,"src":"19576:5:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":39430,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19576:7:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":39428,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"19561:14:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$24925_$","typeString":"type(contract IERC20Metadata)"}},"id":39431,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19561:23:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":39432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19585:9:110","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":24150,"src":"19561:33:110","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":39437,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19561:48:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":39427,"id":39438,"nodeType":"Return","src":"19554:55:110"}]},"id":39440,"implemented":true,"kind":"function","modifiers":[],"name":"_balance","nameLocation":"19505:8:110","nodeType":"FunctionDefinition","parameters":{"id":39424,"nodeType":"ParameterList","parameters":[],"src":"19513:2:110"},"returnParameters":{"id":39427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39426,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39440,"src":"19539:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39425,"name":"uint256","nodeType":"ElementaryTypeName","src":"19539:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19538:9:110"},"scope":40840,"src":"19496:118:110","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":39530,"nodeType":"Block","src":"19701:803:110","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39451,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39449,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39442,"src":"19821:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3331","id":39450,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19833:2:110","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"31"},"src":"19821:14:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":39454,"nodeType":"IfStatement","src":"19817:28:110","trueBody":{"expression":{"hexValue":"31","id":39452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19844:1:110","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"functionReturnParameters":39448,"id":39453,"nodeType":"Return","src":"19837:8:110"}},{"condition":{"id":39455,"name":"isLeap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39444,"src":"19855:6:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":39472,"nodeType":"Block","src":"19931:43:110","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39466,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39442,"src":"19943:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3539","id":39467,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19955:2:110","typeDescriptions":{"typeIdentifier":"t_rational_59_by_1","typeString":"int_const 59"},"value":"59"},"src":"19943:14:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":39471,"nodeType":"IfStatement","src":"19939:28:110","trueBody":{"expression":{"hexValue":"32","id":39469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19966:1:110","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"functionReturnParameters":39448,"id":39470,"nodeType":"Return","src":"19959:8:110"}}]},"id":39473,"nodeType":"IfStatement","src":"19851:123:110","trueBody":{"id":39465,"nodeType":"Block","src":"19863:62:110","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39456,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39442,"src":"19875:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3630","id":39457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19887:2:110","typeDescriptions":{"typeIdentifier":"t_rational_60_by_1","typeString":"int_const 60"},"value":"60"},"src":"19875:14:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":39461,"nodeType":"IfStatement","src":"19871:28:110","trueBody":{"expression":{"hexValue":"32","id":39459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19898:1:110","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"functionReturnParameters":39448,"id":39460,"nodeType":"Return","src":"19891:8:110"}},{"expression":{"id":39463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":false,"src":"19907:11:110","subExpression":{"id":39462,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39442,"src":"19907:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":39464,"nodeType":"ExpressionStatement","src":"19907:11:110"}]}},{"expression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39474,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39442,"src":"19993:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3930","id":39475,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20005:2:110","typeDescriptions":{"typeIdentifier":"t_rational_90_by_1","typeString":"int_const 90"},"value":"90"},"src":"19993:14:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":39477,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"19992:16:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39479,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39442,"src":"20032:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"313230","id":39480,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20044:3:110","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},"src":"20032:15:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":39482,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20031:17:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39486,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39484,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39442,"src":"20076:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"313531","id":39485,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20088:3:110","typeDescriptions":{"typeIdentifier":"t_rational_151_by_1","typeString":"int_const 151"},"value":"151"},"src":"20076:15:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":39487,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20075:17:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39489,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39442,"src":"20124:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"313831","id":39490,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20136:3:110","typeDescriptions":{"typeIdentifier":"t_rational_181_by_1","typeString":"int_const 181"},"value":"181"},"src":"20124:15:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":39492,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20123:17:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39496,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39494,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39442,"src":"20176:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"323132","id":39495,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20188:3:110","typeDescriptions":{"typeIdentifier":"t_rational_212_by_1","typeString":"int_const 212"},"value":"212"},"src":"20176:15:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":39497,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20175:17:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39499,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39442,"src":"20232:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"323433","id":39500,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20244:3:110","typeDescriptions":{"typeIdentifier":"t_rational_243_by_1","typeString":"int_const 243"},"value":"243"},"src":"20232:15:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":39502,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20231:17:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39506,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39504,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39442,"src":"20292:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"323733","id":39505,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20304:3:110","typeDescriptions":{"typeIdentifier":"t_rational_273_by_1","typeString":"int_const 273"},"value":"273"},"src":"20292:15:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":39507,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20291:17:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39509,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39442,"src":"20356:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"333034","id":39510,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20368:3:110","typeDescriptions":{"typeIdentifier":"t_rational_304_by_1","typeString":"int_const 304"},"value":"304"},"src":"20356:15:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":39512,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20355:17:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39516,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39514,"name":"dayInYear","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39442,"src":"20425:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"333334","id":39515,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20437:3:110","typeDescriptions":{"typeIdentifier":"t_rational_334_by_1","typeString":"int_const 334"},"value":"334"},"src":"20425:15:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":39517,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20424:17:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"3132","id":39519,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20497:2:110","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"id":39520,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"20424:75:110","trueExpression":{"hexValue":"3131","id":39518,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20468:2:110","typeDescriptions":{"typeIdentifier":"t_rational_11_by_1","typeString":"int_const 11"},"value":"11"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":39521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"20355:144:110","trueExpression":{"hexValue":"3130","id":39513,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20397:2:110","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":39522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"20291:208:110","trueExpression":{"hexValue":"39","id":39508,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20331:1:110","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":39523,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"20231:268:110","trueExpression":{"hexValue":"38","id":39503,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20269:1:110","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":39524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"20175:324:110","trueExpression":{"hexValue":"37","id":39498,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20211:1:110","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":39525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"20123:376:110","trueExpression":{"hexValue":"36","id":39493,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20157:1:110","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":39526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"20075:424:110","trueExpression":{"hexValue":"35","id":39488,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20107:1:110","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":39527,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"20031:468:110","trueExpression":{"hexValue":"34","id":39483,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20061:1:110","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":39528,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"19992:507:110","trueExpression":{"hexValue":"33","id":39478,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20019:1:110","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":39448,"id":39529,"nodeType":"Return","src":"19979:520:110"}]},"id":39531,"implemented":true,"kind":"function","modifiers":[],"name":"_getMonth","nameLocation":"19627:9:110","nodeType":"FunctionDefinition","parameters":{"id":39445,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39442,"mutability":"mutable","name":"dayInYear","nameLocation":"19645:9:110","nodeType":"VariableDeclaration","scope":39531,"src":"19637:17:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39441,"name":"uint256","nodeType":"ElementaryTypeName","src":"19637:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":39444,"mutability":"mutable","name":"isLeap","nameLocation":"19661:6:110","nodeType":"VariableDeclaration","scope":39531,"src":"19656:11:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":39443,"name":"bool","nodeType":"ElementaryTypeName","src":"19656:4:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"19636:32:110"},"returnParameters":{"id":39448,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39447,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39531,"src":"19692:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39446,"name":"uint256","nodeType":"ElementaryTypeName","src":"19692:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19691:9:110"},"scope":40840,"src":"19618:886:110","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":39606,"nodeType":"Block","src":"20599:449:110","statements":[{"assignments":[39539],"declarations":[{"constant":false,"id":39539,"mutability":"mutable","name":"isLeap","nameLocation":"20610:6:110","nodeType":"VariableDeclaration","scope":39606,"src":"20605:11:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":39538,"name":"bool","nodeType":"ElementaryTypeName","src":"20605:4:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":39540,"nodeType":"VariableDeclarationStatement","src":"20605:11:110"},{"expression":{"id":39543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":39541,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39536,"src":"20622:9:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"32303235","id":39542,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20634:4:110","typeDescriptions":{"typeIdentifier":"t_rational_2025_by_1","typeString":"int_const 2025"},"value":"2025"},"src":"20622:16:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":39544,"nodeType":"ExpressionStatement","src":"20622:16:110"},{"assignments":[39546],"declarations":[{"constant":false,"id":39546,"mutability":"mutable","name":"daysRemaining","nameLocation":"20652:13:110","nodeType":"VariableDeclaration","scope":39606,"src":"20644:21:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39545,"name":"uint256","nodeType":"ElementaryTypeName","src":"20644:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":39553,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39547,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39533,"src":"20669:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":39548,"name":"JAN_1ST_2025","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38315,"src":"20681:12:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20669:24:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":39550,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20668:26:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":39551,"name":"SECONDS_PER_DAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38318,"src":"20697:15:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20668:44:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"20644:68:110"},{"body":{"id":39592,"nodeType":"Block","src":"20819:154:110","statements":[{"expression":{"id":39566,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":39561,"name":"daysRemaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39546,"src":"20827:13:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"condition":{"id":39562,"name":"isLeap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39539,"src":"20844:6:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"333635","id":39564,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20859:3:110","typeDescriptions":{"typeIdentifier":"t_rational_365_by_1","typeString":"int_const 365"},"value":"365"},"id":39565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"20844:18:110","trueExpression":{"hexValue":"333636","id":39563,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20853:3:110","typeDescriptions":{"typeIdentifier":"t_rational_366_by_1","typeString":"int_const 366"},"value":"366"},"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"20827:35:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":39567,"nodeType":"ExpressionStatement","src":"20827:35:110"},{"expression":{"id":39569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"20870:11:110","subExpression":{"id":39568,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39536,"src":"20872:9:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":39570,"nodeType":"ExpressionStatement","src":"20870:11:110"},{"expression":{"id":39590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":39571,"name":"isLeap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39539,"src":"20889:6:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":39589,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":39576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":39574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39572,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39536,"src":"20898:9:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"34","id":39573,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20910:1:110","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"20898:13:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":39575,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20915:1:110","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20898:18:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":39587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":39581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":39579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39577,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39536,"src":"20921:9:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"313030","id":39578,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20933:3:110","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"20921:15:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":39580,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20940:1:110","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20921:20:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":39586,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":39584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39582,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39536,"src":"20945:9:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"343030","id":39583,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20957:3:110","typeDescriptions":{"typeIdentifier":"t_rational_400_by_1","typeString":"int_const 400"},"value":"400"},"src":"20945:15:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":39585,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20964:1:110","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20945:20:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"20921:44:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":39588,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20920:46:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"20898:68:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"20889:77:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":39591,"nodeType":"ExpressionStatement","src":"20889:77:110"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39560,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39554,"name":"daysRemaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39546,"src":"20780:13:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"condition":{"id":39555,"name":"isLeap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39539,"src":"20798:6:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"333635","id":39557,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20813:3:110","typeDescriptions":{"typeIdentifier":"t_rational_365_by_1","typeString":"int_const 365"},"value":"365"},"id":39558,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"20798:18:110","trueExpression":{"hexValue":"333636","id":39556,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20807:3:110","typeDescriptions":{"typeIdentifier":"t_rational_366_by_1","typeString":"int_const 366"},"value":"366"},"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"id":39559,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20797:20:110","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"20780:37:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":39593,"nodeType":"WhileStatement","src":"20773:200:110"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":39598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39596,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39536,"src":"20992:9:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"313030","id":39597,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21004:3:110","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"20992:15:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"id":39600,"name":"daysRemaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39546,"src":"21020:13:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":39601,"name":"isLeap","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39539,"src":"21035:6:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":39599,"name":"_getMonth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39531,"src":"21010:9:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_bool_$returns$_t_uint256_$","typeString":"function (uint256,bool) pure returns (uint256)"}},"id":39602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21010:32:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20992:50:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":39595,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"20985:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":39594,"name":"uint32","nodeType":"ElementaryTypeName","src":"20985:6:110","typeDescriptions":{}}},"id":39604,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20985:58:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":39537,"id":39605,"nodeType":"Return","src":"20978:65:110"}]},"id":39607,"implemented":true,"kind":"function","modifiers":[],"name":"_computeCalendarMonth","nameLocation":"20517:21:110","nodeType":"FunctionDefinition","parameters":{"id":39534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39533,"mutability":"mutable","name":"timestamp","nameLocation":"20547:9:110","nodeType":"VariableDeclaration","scope":39607,"src":"20539:17:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39532,"name":"uint256","nodeType":"ElementaryTypeName","src":"20539:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20538:19:110"},"returnParameters":{"id":39537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39536,"mutability":"mutable","name":"slotIndex","nameLocation":"20588:9:110","nodeType":"VariableDeclaration","scope":39607,"src":"20581:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":39535,"name":"uint32","nodeType":"ElementaryTypeName","src":"20581:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"20580:18:110"},"scope":40840,"src":"20508:540:110","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":39631,"nodeType":"Block","src":"21153:121:110","statements":[{"expression":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":39618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39616,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39609,"src":"21167:8:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":39617,"name":"SLOTSIZE_CALENDAR_MONTH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38312,"src":"21179:23:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"21167:35:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":39619,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"21166:37:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39625,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39611,"src":"21248:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":39626,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39609,"src":"21260:8:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"21248:20:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":39624,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21241:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":39623,"name":"uint32","nodeType":"ElementaryTypeName","src":"21241:6:110","typeDescriptions":{}}},"id":39628,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21241:28:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":39629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"21166:103:110","trueExpression":{"arguments":[{"id":39621,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39611,"src":"21228:9:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":39620,"name":"_computeCalendarMonth","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39607,"src":"21206:21:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint256) pure returns (uint32)"}},"id":39622,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21206:32:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":39615,"id":39630,"nodeType":"Return","src":"21159:110:110"}]},"id":39632,"implemented":true,"kind":"function","modifiers":[],"name":"_makeSlotIndex","nameLocation":"21061:14:110","nodeType":"FunctionDefinition","parameters":{"id":39612,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39609,"mutability":"mutable","name":"slotSize","nameLocation":"21083:8:110","nodeType":"VariableDeclaration","scope":39632,"src":"21076:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":39608,"name":"uint32","nodeType":"ElementaryTypeName","src":"21076:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":39611,"mutability":"mutable","name":"timestamp","nameLocation":"21101:9:110","nodeType":"VariableDeclaration","scope":39632,"src":"21093:17:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39610,"name":"uint256","nodeType":"ElementaryTypeName","src":"21093:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21075:36:110"},"returnParameters":{"id":39615,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39614,"mutability":"mutable","name":"slotIndex","nameLocation":"21142:9:110","nodeType":"VariableDeclaration","scope":39632,"src":"21135:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":39613,"name":"uint32","nodeType":"ElementaryTypeName","src":"21135:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"21134:18:110"},"scope":40840,"src":"21052:222:110","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":39666,"nodeType":"Block","src":"21394:124:110","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":39650,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39634,"src":"21449:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":39649,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21441:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":39648,"name":"bytes20","nodeType":"ElementaryTypeName","src":"21441:7:110","typeDescriptions":{}}},"id":39651,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21441:15:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},{"arguments":[{"arguments":[{"id":39656,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39636,"src":"21482:8:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":39655,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21475:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":39654,"name":"bytes4","nodeType":"ElementaryTypeName","src":"21475:6:110","typeDescriptions":{}}},"id":39657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21475:16:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"arguments":[{"id":39660,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39638,"src":"21500:9:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":39659,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21493:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":39658,"name":"bytes4","nodeType":"ElementaryTypeName","src":"21493:6:110","typeDescriptions":{}}},"id":39661,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21493:17:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":39652,"name":"Packing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30945,"src":"21458:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Packing_$30945_$","typeString":"type(library Packing)"}},"id":39653,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21466:8:110","memberName":"pack_4_4","nodeType":"MemberAccess","referencedDeclaration":27474,"src":"21458:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes4_$_t_bytes4_$returns$_t_bytes8_$","typeString":"function (bytes4,bytes4) pure returns (bytes8)"}},"id":39662,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21458:53:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes8","typeString":"bytes8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"},{"typeIdentifier":"t_bytes8","typeString":"bytes8"}],"expression":{"id":39646,"name":"Packing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":30945,"src":"21423:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Packing_$30945_$","typeString":"type(library Packing)"}},"id":39647,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21431:9:110","memberName":"pack_20_8","nodeType":"MemberAccess","referencedDeclaration":27903,"src":"21423:17:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes20_$_t_bytes8_$returns$_t_bytes28_$","typeString":"function (bytes20,bytes8) pure returns (bytes28)"}},"id":39663,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21423:89:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes28","typeString":"bytes28"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes28","typeString":"bytes28"}],"expression":{"id":39644,"name":"TargetSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38324,"src":"21407:10:110","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_TargetSlot_$38324_$","typeString":"type(CashFlowLender.TargetSlot)"}},"id":39645,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"21418:4:110","memberName":"wrap","nodeType":"MemberAccess","src":"21407:15:110","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_TargetSlot_$38324_$","typeString":"function (bytes32) pure returns (CashFlowLender.TargetSlot)"}},"id":39664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21407:106:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$38324","typeString":"CashFlowLender.TargetSlot"}},"functionReturnParameters":39643,"id":39665,"nodeType":"Return","src":"21400:113:110"}]},"id":39667,"implemented":true,"kind":"function","modifiers":[],"name":"_makeTargetSlot","nameLocation":"21287:15:110","nodeType":"FunctionDefinition","parameters":{"id":39639,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39634,"mutability":"mutable","name":"target","nameLocation":"21311:6:110","nodeType":"VariableDeclaration","scope":39667,"src":"21303:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39633,"name":"address","nodeType":"ElementaryTypeName","src":"21303:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39636,"mutability":"mutable","name":"slotSize","nameLocation":"21326:8:110","nodeType":"VariableDeclaration","scope":39667,"src":"21319:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":39635,"name":"uint32","nodeType":"ElementaryTypeName","src":"21319:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":39638,"mutability":"mutable","name":"slotIndex","nameLocation":"21343:9:110","nodeType":"VariableDeclaration","scope":39667,"src":"21336:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":39637,"name":"uint32","nodeType":"ElementaryTypeName","src":"21336:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"21302:51:110"},"returnParameters":{"id":39643,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39642,"mutability":"mutable","name":"slot","nameLocation":"21388:4:110","nodeType":"VariableDeclaration","scope":39667,"src":"21377:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$38324","typeString":"CashFlowLender.TargetSlot"},"typeName":{"id":39641,"nodeType":"UserDefinedTypeName","pathNode":{"id":39640,"name":"TargetSlot","nameLocations":["21377:10:110"],"nodeType":"IdentifierPath","referencedDeclaration":38324,"src":"21377:10:110"},"referencedDeclaration":38324,"src":"21377:10:110","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$38324","typeString":"CashFlowLender.TargetSlot"}},"visibility":"internal"}],"src":"21376:17:110"},"scope":40840,"src":"21278:240:110","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":39711,"nodeType":"Block","src":"21595:219:110","statements":[{"assignments":[39676],"declarations":[{"constant":false,"id":39676,"mutability":"mutable","name":"$","nameLocation":"21631:1:110","nodeType":"VariableDeclaration","scope":39711,"src":"21601:31:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":39675,"nodeType":"UserDefinedTypeName","pathNode":{"id":39674,"name":"CashFlowLenderStorage","nameLocations":["21601:21:110"],"nodeType":"IdentifierPath","referencedDeclaration":38357,"src":"21601:21:110"},"referencedDeclaration":38357,"src":"21601:21:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":39679,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":39677,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38368,"src":"21635:25:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$38357_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":39678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21635:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"21601:61:110"},{"expression":{"id":39693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":39680,"name":"deinvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39672,"src":"21668:10:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":39683,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39669,"src":"21690:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"arguments":[{"id":39689,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"21732:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":39688,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21724:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":39687,"name":"address","nodeType":"ElementaryTypeName","src":"21724:7:110","typeDescriptions":{}}},"id":39690,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21724:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":39684,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39676,"src":"21698:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":39685,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21700:11:110","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":38344,"src":"21698:13:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":39686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21712:11:110","memberName":"maxWithdraw","nodeType":"MemberAccess","referencedDeclaration":22414,"src":"21698:25:110","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":39691,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21698:40:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":39681,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"21681:4:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":39682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21686:3:110","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":33872,"src":"21681:8:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":39692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21681:58:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"21668:71:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":39694,"nodeType":"ExpressionStatement","src":"21668:71:110"},{"expression":{"arguments":[{"id":39700,"name":"deinvested","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39672,"src":"21768:10:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":39703,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"21788:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":39702,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21780:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":39701,"name":"address","nodeType":"ElementaryTypeName","src":"21780:7:110","typeDescriptions":{}}},"id":39704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21780:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":39707,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"21803:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":39706,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21795:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":39705,"name":"address","nodeType":"ElementaryTypeName","src":"21795:7:110","typeDescriptions":{}}},"id":39708,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21795:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":39695,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39676,"src":"21745:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":39698,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"21747:11:110","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":38344,"src":"21745:13:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":39699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21759:8:110","memberName":"withdraw","nodeType":"MemberAccess","referencedDeclaration":22434,"src":"21745:22:110","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address,address) external returns (uint256)"}},"id":39709,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21745:64:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":39710,"nodeType":"ExpressionStatement","src":"21745:64:110"}]},"id":39712,"implemented":true,"kind":"function","modifiers":[],"name":"_deinvest","nameLocation":"21531:9:110","nodeType":"FunctionDefinition","parameters":{"id":39670,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39669,"mutability":"mutable","name":"amount","nameLocation":"21549:6:110","nodeType":"VariableDeclaration","scope":39712,"src":"21541:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39668,"name":"uint256","nodeType":"ElementaryTypeName","src":"21541:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21540:16:110"},"returnParameters":{"id":39673,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39672,"mutability":"mutable","name":"deinvested","nameLocation":"21583:10:110","nodeType":"VariableDeclaration","scope":39712,"src":"21575:18:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39671,"name":"uint256","nodeType":"ElementaryTypeName","src":"21575:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21574:20:110"},"scope":40840,"src":"21522:292:110","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":39771,"nodeType":"Block","src":"21964:322:110","statements":[{"assignments":[39727],"declarations":[{"constant":false,"id":39727,"mutability":"mutable","name":"$","nameLocation":"22000:1:110","nodeType":"VariableDeclaration","scope":39771,"src":"21970:31:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":39726,"nodeType":"UserDefinedTypeName","pathNode":{"id":39725,"name":"CashFlowLenderStorage","nameLocations":["21970:21:110"],"nodeType":"IdentifierPath","referencedDeclaration":38357,"src":"21970:21:110"},"referencedDeclaration":38357,"src":"21970:21:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":39730,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":39728,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38368,"src":"22004:25:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$38357_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":39729,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22004:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"21970:61:110"},{"assignments":[39733],"declarations":[{"constant":false,"id":39733,"mutability":"mutable","name":"slot","nameLocation":"22048:4:110","nodeType":"VariableDeclaration","scope":39771,"src":"22037:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$38324","typeString":"CashFlowLender.TargetSlot"},"typeName":{"id":39732,"nodeType":"UserDefinedTypeName","pathNode":{"id":39731,"name":"TargetSlot","nameLocations":["22037:10:110"],"nodeType":"IdentifierPath","referencedDeclaration":38324,"src":"22037:10:110"},"referencedDeclaration":38324,"src":"22037:10:110","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$38324","typeString":"CashFlowLender.TargetSlot"}},"visibility":"internal"}],"id":39739,"initialValue":{"arguments":[{"id":39735,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39714,"src":"22071:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":39736,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39716,"src":"22079:8:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":39737,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39718,"src":"22089:9:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":39734,"name":"_makeTargetSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39667,"src":"22055:15:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_TargetSlot_$38324_$","typeString":"function (address,uint32,uint32) pure returns (CashFlowLender.TargetSlot)"}},"id":39738,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22055:44:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$38324","typeString":"CashFlowLender.TargetSlot"}},"nodeType":"VariableDeclarationStatement","src":"22037:62:110"},{"expression":{"id":39747,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":39740,"name":"currentDebt_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39723,"src":"22105:12:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":39746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":39741,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39727,"src":"22120:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":39742,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22122:13:110","memberName":"_debtByPeriod","nodeType":"MemberAccess","referencedDeclaration":38356,"src":"22120:15:110","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TargetSlot_$38324_$_t_int256_$","typeString":"mapping(CashFlowLender.TargetSlot => int256)"}},"id":39744,"indexExpression":{"id":39743,"name":"slot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39733,"src":"22136:4:110","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$38324","typeString":"CashFlowLender.TargetSlot"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"22120:21:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":39745,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39720,"src":"22145:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22120:31:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22105:46:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":39748,"nodeType":"ExpressionStatement","src":"22105:46:110"},{"expression":{"id":39756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":39749,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39727,"src":"22157:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":39751,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"22159:10:110","memberName":"_totalDebt","nodeType":"MemberAccess","referencedDeclaration":38346,"src":"22157:12:110","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"id":39754,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39720,"src":"22179:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":39753,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22173:5:110","typeDescriptions":{"typeIdentifier":"t_type$_t_int96_$","typeString":"type(int96)"},"typeName":{"id":39752,"name":"int96","nodeType":"ElementaryTypeName","src":"22173:5:110","typeDescriptions":{}}},"id":39755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22173:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"src":"22157:29:110","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"id":39757,"nodeType":"ExpressionStatement","src":"22157:29:110"},{"eventCall":{"arguments":[{"id":39759,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39714,"src":"22209:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":39760,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39716,"src":"22217:8:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":39761,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39718,"src":"22227:9:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[{"id":39764,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39720,"src":"22245:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":39763,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22238:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":39762,"name":"int256","nodeType":"ElementaryTypeName","src":"22238:6:110","typeDescriptions":{}}},"id":39765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22238:14:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":39766,"name":"currentDebt_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39723,"src":"22254:12:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"expression":{"id":39767,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39727,"src":"22268:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":39768,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"22270:10:110","memberName":"_totalDebt","nodeType":"MemberAccess","referencedDeclaration":38346,"src":"22268:12:110","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int96","typeString":"int96"}],"id":39758,"name":"DebtChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38390,"src":"22197:11:110","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_int256_$_t_int256_$_t_int256_$returns$__$","typeString":"function (address,uint32,uint32,int256,int256,int256)"}},"id":39769,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22197:84:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":39770,"nodeType":"EmitStatement","src":"22192:89:110"}]},"id":39772,"implemented":true,"kind":"function","modifiers":[],"name":"_changeDebt","nameLocation":"21827:11:110","nodeType":"FunctionDefinition","parameters":{"id":39721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39714,"mutability":"mutable","name":"target","nameLocation":"21852:6:110","nodeType":"VariableDeclaration","scope":39772,"src":"21844:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39713,"name":"address","nodeType":"ElementaryTypeName","src":"21844:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39716,"mutability":"mutable","name":"slotSize","nameLocation":"21871:8:110","nodeType":"VariableDeclaration","scope":39772,"src":"21864:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":39715,"name":"uint32","nodeType":"ElementaryTypeName","src":"21864:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":39718,"mutability":"mutable","name":"slotIndex","nameLocation":"21892:9:110","nodeType":"VariableDeclaration","scope":39772,"src":"21885:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":39717,"name":"uint32","nodeType":"ElementaryTypeName","src":"21885:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":39720,"mutability":"mutable","name":"amount","nameLocation":"21914:6:110","nodeType":"VariableDeclaration","scope":39772,"src":"21907:13:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":39719,"name":"int256","nodeType":"ElementaryTypeName","src":"21907:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"21838:86:110"},"returnParameters":{"id":39724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39723,"mutability":"mutable","name":"currentDebt_","nameLocation":"21950:12:110","nodeType":"VariableDeclaration","scope":39772,"src":"21943:19:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":39722,"name":"int256","nodeType":"ElementaryTypeName","src":"21943:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"21942:21:110"},"scope":40840,"src":"21818:468:110","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":39791,"nodeType":"Block","src":"22703:75:110","statements":[{"expression":{"arguments":[{"arguments":[{"id":39786,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39775,"src":"22755:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":39787,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39777,"src":"22763:8:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":39784,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"22738:3:110","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":39785,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"22742:12:110","memberName":"encodePacked","nodeType":"MemberAccess","src":"22738:16:110","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":39788,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22738:34:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":39782,"name":"AMPUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4080,"src":"22716:8:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AMPUtils_$4080_$","typeString":"type(library AMPUtils)"}},"id":39783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22725:12:110","memberName":"makeSelector","nodeType":"MemberAccess","referencedDeclaration":4079,"src":"22716:21:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (bytes memory) pure returns (bytes4)"}},"id":39789,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22716:57:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":39781,"id":39790,"nodeType":"Return","src":"22709:64:110"}]},"documentation":{"id":39773,"nodeType":"StructuredDocumentation","src":"22290:322:110","text":" @dev Computes a fake selector used to enable or disable in the AccessManager linked to the contract to enable\n      a given call (selector) to a given target\n @param target Address of the target contract.\n @param selector The 4-bytes method selector of the method to be called in the target"},"functionSelector":"c0c51217","id":39792,"implemented":true,"kind":"function","modifiers":[],"name":"makeFakeSelector","nameLocation":"22624:16:110","nodeType":"FunctionDefinition","parameters":{"id":39778,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39775,"mutability":"mutable","name":"target","nameLocation":"22649:6:110","nodeType":"VariableDeclaration","scope":39792,"src":"22641:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39774,"name":"address","nodeType":"ElementaryTypeName","src":"22641:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39777,"mutability":"mutable","name":"selector","nameLocation":"22664:8:110","nodeType":"VariableDeclaration","scope":39792,"src":"22657:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":39776,"name":"bytes4","nodeType":"ElementaryTypeName","src":"22657:6:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"22640:33:110"},"returnParameters":{"id":39781,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39780,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":39792,"src":"22695:6:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":39779,"name":"bytes4","nodeType":"ElementaryTypeName","src":"22695:6:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"22694:8:110"},"scope":40840,"src":"22615:163:110","stateMutability":"pure","virtual":false,"visibility":"public"},{"body":{"id":39829,"nodeType":"Block","src":"22888:243:110","statements":[{"expression":{"id":39803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":39800,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39798,"src":"22928:13:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":39801,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39440,"src":"22944:8:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":39802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22944:10:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22928:26:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":39804,"nodeType":"ExpressionStatement","src":"22928:26:110"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39805,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39798,"src":"22965:13:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"arguments":[{"expression":{"id":39808,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39795,"src":"22989:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39809,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23002:12:110","memberName":"minLiquidity","nodeType":"MemberAccess","referencedDeclaration":38339,"src":"22989:25:110","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"}],"id":39807,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22981:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":39806,"name":"uint256","nodeType":"ElementaryTypeName","src":"22981:7:110","typeDescriptions":{}}},"id":39810,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22981:34:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22965:50:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":39828,"nodeType":"IfStatement","src":"22961:166:110","trueBody":{"id":39827,"nodeType":"Block","src":"23017:110:110","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39819,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":39815,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39795,"src":"23043:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39816,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23056:12:110","memberName":"minLiquidity","nodeType":"MemberAccess","referencedDeclaration":38339,"src":"23043:25:110","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"}],"id":39814,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23035:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":39813,"name":"uint256","nodeType":"ElementaryTypeName","src":"23035:7:110","typeDescriptions":{}}},"id":39817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23035:34:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":39818,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39798,"src":"23072:13:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23035:50:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":39812,"name":"_deinvest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39712,"src":"23025:9:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) returns (uint256)"}},"id":39820,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23025:61:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":39821,"nodeType":"ExpressionStatement","src":"23025:61:110"},{"expression":{"id":39825,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":39822,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39798,"src":"23094:13:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":39823,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39440,"src":"23110:8:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":39824,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23110:10:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23094:26:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":39826,"nodeType":"ExpressionStatement","src":"23094:26:110"}]}}]},"id":39830,"implemented":true,"kind":"function","modifiers":[],"name":"_ensureLiquidBalance","nameLocation":"22791:20:110","nodeType":"FunctionDefinition","parameters":{"id":39796,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39795,"mutability":"mutable","name":"targetConfig","nameLocation":"22833:12:110","nodeType":"VariableDeclaration","scope":39830,"src":"22812:33:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":39794,"nodeType":"UserDefinedTypeName","pathNode":{"id":39793,"name":"TargetConfig","nameLocations":["22812:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38340,"src":"22812:12:110"},"referencedDeclaration":38340,"src":"22812:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"}],"src":"22811:35:110"},"returnParameters":{"id":39799,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39798,"mutability":"mutable","name":"balanceBefore","nameLocation":"22873:13:110","nodeType":"VariableDeclaration","scope":39830,"src":"22865:21:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39797,"name":"uint256","nodeType":"ElementaryTypeName","src":"22865:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"22864:23:110"},"scope":40840,"src":"22782:349:110","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":39888,"nodeType":"Block","src":"23271:481:110","statements":[{"assignments":[39841],"declarations":[{"constant":false,"id":39841,"mutability":"mutable","name":"balanceAfter","nameLocation":"23285:12:110","nodeType":"VariableDeclaration","scope":39888,"src":"23277:20:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39840,"name":"uint256","nodeType":"ElementaryTypeName","src":"23277:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":39844,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":39842,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39440,"src":"23300:8:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":39843,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23300:10:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23277:33:110"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39847,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39845,"name":"balanceAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39841,"src":"23321:12:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":39846,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39837,"src":"23336:13:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23321:28:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":39887,"nodeType":"IfStatement","src":"23317:431:110","trueBody":{"id":39886,"nodeType":"Block","src":"23351:397:110","statements":[{"assignments":[39849],"declarations":[{"constant":false,"id":39849,"mutability":"mutable","name":"currDebt","nameLocation":"23428:8:110","nodeType":"VariableDeclaration","scope":39886,"src":"23421:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":39848,"name":"int256","nodeType":"ElementaryTypeName","src":"23421:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":39867,"initialValue":{"arguments":[{"id":39851,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39832,"src":"23460:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":39852,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39835,"src":"23476:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39853,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23489:8:110","memberName":"slotSize","nodeType":"MemberAccess","referencedDeclaration":38332,"src":"23476:21:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[{"expression":{"id":39855,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39835,"src":"23522:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39856,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23535:8:110","memberName":"slotSize","nodeType":"MemberAccess","referencedDeclaration":38332,"src":"23522:21:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":39857,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"23545:5:110","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":39858,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23551:9:110","memberName":"timestamp","nodeType":"MemberAccess","src":"23545:15:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":39854,"name":"_makeSlotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39632,"src":"23507:14:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint32_$_t_uint256_$returns$_t_uint32_$","typeString":"function (uint32,uint256) pure returns (uint32)"}},"id":39859,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23507:54:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":39862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39860,"name":"balanceBefore","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39837,"src":"23572:13:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":39861,"name":"balanceAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39841,"src":"23588:12:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23572:28:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":39863,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"23571:30:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":39864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23602:8:110","memberName":"toInt256","nodeType":"MemberAccess","referencedDeclaration":36941,"src":"23571:39:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_int256_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (int256)"}},"id":39865,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23571:41:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":39850,"name":"_changeDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39772,"src":"23439:11:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_int256_$returns$_t_int256_$","typeString":"function (address,uint32,uint32,int256) returns (int256)"}},"id":39866,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23439:181:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"23421:199:110"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":39878,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39869,"name":"currDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39849,"src":"23636:8:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[{"arguments":[{"expression":{"id":39874,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39835,"src":"23663:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39875,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23676:9:110","memberName":"debtLimit","nodeType":"MemberAccess","referencedDeclaration":38337,"src":"23663:22:110","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint96","typeString":"uint96"}],"id":39873,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23655:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":39872,"name":"uint256","nodeType":"ElementaryTypeName","src":"23655:7:110","typeDescriptions":{}}},"id":39876,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23655:31:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":39871,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23648:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":39870,"name":"int256","nodeType":"ElementaryTypeName","src":"23648:6:110","typeDescriptions":{}}},"id":39877,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23648:39:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23636:51:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":39880,"name":"currDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39849,"src":"23707:8:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"expression":{"id":39881,"name":"targetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39835,"src":"23717:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":39882,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"23730:9:110","memberName":"debtLimit","nodeType":"MemberAccess","referencedDeclaration":38337,"src":"23717:22:110","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_uint96","typeString":"uint96"}],"id":39879,"name":"DebtLimitExceeded","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38480,"src":"23689:17:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_int256_$_t_uint96_$returns$_t_error_$","typeString":"function (int256,uint96) pure returns (error)"}},"id":39883,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23689:51:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":39868,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"23628:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":39884,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23628:113:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":39885,"nodeType":"ExpressionStatement","src":"23628:113:110"}]}}]},"id":39889,"implemented":true,"kind":"function","modifiers":[],"name":"_increaseDebtAfterNewPolicy","nameLocation":"23144:27:110","nodeType":"FunctionDefinition","parameters":{"id":39838,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39832,"mutability":"mutable","name":"target","nameLocation":"23185:6:110","nodeType":"VariableDeclaration","scope":39889,"src":"23177:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39831,"name":"address","nodeType":"ElementaryTypeName","src":"23177:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39835,"mutability":"mutable","name":"targetConfig","nameLocation":"23218:12:110","nodeType":"VariableDeclaration","scope":39889,"src":"23197:33:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"},"typeName":{"id":39834,"nodeType":"UserDefinedTypeName","pathNode":{"id":39833,"name":"TargetConfig","nameLocations":["23197:12:110"],"nodeType":"IdentifierPath","referencedDeclaration":38340,"src":"23197:12:110"},"referencedDeclaration":38340,"src":"23197:12:110","typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig"}},"visibility":"internal"},{"constant":false,"id":39837,"mutability":"mutable","name":"balanceBefore","nameLocation":"23244:13:110","nodeType":"VariableDeclaration","scope":39889,"src":"23236:21:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":39836,"name":"uint256","nodeType":"ElementaryTypeName","src":"23236:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23171:90:110"},"returnParameters":{"id":39839,"nodeType":"ParameterList","parameters":[],"src":"23271:0:110"},"scope":40840,"src":"23135:617:110","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":39936,"nodeType":"Block","src":"23845:297:110","statements":[{"assignments":[39899],"declarations":[{"constant":false,"id":39899,"mutability":"mutable","name":"fakeSelector","nameLocation":"23858:12:110","nodeType":"VariableDeclaration","scope":39936,"src":"23851:19:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":39898,"name":"bytes4","nodeType":"ElementaryTypeName","src":"23851:6:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":39904,"initialValue":{"arguments":[{"id":39901,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39893,"src":"23890:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":39902,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39895,"src":"23898:8:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":39900,"name":"makeFakeSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39792,"src":"23873:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_bytes4_$returns$_t_bytes4_$","typeString":"function (address,bytes4) pure returns (bytes4)"}},"id":39903,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23873:34:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"23851:56:110"},{"assignments":[39906,null],"declarations":[{"constant":false,"id":39906,"mutability":"mutable","name":"immediate","nameLocation":"23919:9:110","nodeType":"VariableDeclaration","scope":39936,"src":"23914:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":39905,"name":"bool","nodeType":"ElementaryTypeName","src":"23914:4:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":39926,"initialValue":{"arguments":[{"id":39919,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39891,"src":"24009:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":39922,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"24031:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":39921,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24023:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":39920,"name":"address","nodeType":"ElementaryTypeName","src":"24023:7:110","typeDescriptions":{}}},"id":39923,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24023:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":39924,"name":"fakeSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39899,"src":"24044:12:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"arguments":[{"id":39912,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"23969:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":39911,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23961:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":39910,"name":"address","nodeType":"ElementaryTypeName","src":"23961:7:110","typeDescriptions":{}}},"id":39913,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23961:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":39909,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23953:8:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_payable_$","typeString":"type(address payable)"},"typeName":{"id":39908,"name":"address","nodeType":"ElementaryTypeName","src":"23953:8:110","stateMutability":"payable","typeDescriptions":{}}},"id":39914,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23953:22:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address_payable","typeString":"address payable"}],"id":39907,"name":"AccessManagedProxy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4170,"src":"23934:18:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AccessManagedProxy_$4170_$","typeString":"type(contract AccessManagedProxy)"}},"id":39915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23934:42:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_AccessManagedProxy_$4170","typeString":"contract AccessManagedProxy"}},"id":39916,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23977:14:110","memberName":"ACCESS_MANAGER","nodeType":"MemberAccess","referencedDeclaration":4169,"src":"23934:57:110","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IAccessManager_$22178_$","typeString":"function () view external returns (contract IAccessManager)"}},"id":39917,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23934:59:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IAccessManager_$22178","typeString":"contract IAccessManager"}},"id":39918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23994:7:110","memberName":"canCall","nodeType":"MemberAccess","referencedDeclaration":21922,"src":"23934:67:110","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$_t_bytes4_$returns$_t_bool_$_t_uint32_$","typeString":"function (address,address,bytes4) view external returns (bool,uint32)"}},"id":39925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23934:128:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint32_$","typeString":"tuple(bool,uint32)"}},"nodeType":"VariableDeclarationStatement","src":"23913:149:110"},{"expression":{"arguments":[{"id":39928,"name":"immediate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39906,"src":"24076:9:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":39930,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39891,"src":"24107:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":39931,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39893,"src":"24115:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":39932,"name":"fakeSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39899,"src":"24123:12:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":39929,"name":"UnauthorizedForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38488,"src":"24087:19:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$_t_bytes4_$returns$_t_error_$","typeString":"function (address,address,bytes4) pure returns (error)"}},"id":39933,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24087:49:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":39927,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"24068:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":39934,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24068:69:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":39935,"nodeType":"ExpressionStatement","src":"24068:69:110"}]},"id":39937,"implemented":true,"kind":"function","modifiers":[],"name":"_checkCanForward","nameLocation":"23765:16:110","nodeType":"FunctionDefinition","parameters":{"id":39896,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39891,"mutability":"mutable","name":"caller","nameLocation":"23790:6:110","nodeType":"VariableDeclaration","scope":39937,"src":"23782:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39890,"name":"address","nodeType":"ElementaryTypeName","src":"23782:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39893,"mutability":"mutable","name":"target","nameLocation":"23806:6:110","nodeType":"VariableDeclaration","scope":39937,"src":"23798:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39892,"name":"address","nodeType":"ElementaryTypeName","src":"23798:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39895,"mutability":"mutable","name":"selector","nameLocation":"23821:8:110","nodeType":"VariableDeclaration","scope":39937,"src":"23814:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":39894,"name":"bytes4","nodeType":"ElementaryTypeName","src":"23814:6:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"23781:49:110"},"returnParameters":{"id":39897,"nodeType":"ParameterList","parameters":[],"src":"23845:0:110"},"scope":40840,"src":"23756:386:110","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":39986,"nodeType":"Block","src":"24335:252:110","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":39953,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[39409],"referencedDeclaration":39409,"src":"24358:10:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":39954,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24358:12:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":39955,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39939,"src":"24372:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"expression":{"expression":{"id":39958,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40879,"src":"24387:11:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$40879_$","typeString":"type(contract IRiskModule)"}},"id":39959,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"24399:9:110","memberName":"newPolicy","nodeType":"MemberAccess","referencedDeclaration":40869,"src":"24387:21:110","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_bytes_calldata_ptr_$_t_address_$returns$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function IRiskModule.newPolicy(bytes calldata,address) returns (struct Policy.PolicyData memory)"}},"id":39960,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"24409:8:110","memberName":"selector","nodeType":"MemberAccess","src":"24387:30:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":39957,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24380:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":39956,"name":"bytes4","nodeType":"ElementaryTypeName","src":"24380:6:110","typeDescriptions":{}}},"id":39961,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24380:38:110","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":39952,"name":"_checkCanForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39937,"src":"24341:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":39962,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24341:78:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":39963,"nodeType":"ExpressionStatement","src":"24341:78:110"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":39969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":39964,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39943,"src":"24429:10:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":39967,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"24451:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":39966,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24443:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":39965,"name":"address","nodeType":"ElementaryTypeName","src":"24443:7:110","typeDescriptions":{}}},"id":39968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24443:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"24429:27:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":39977,"nodeType":"IfStatement","src":"24425:92:110","trueBody":{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":39971,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[39409],"referencedDeclaration":39409,"src":"24475:10:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":39972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24475:12:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":39973,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39939,"src":"24489:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":39974,"name":"OWN_POLICY_SELECTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38304,"src":"24497:19:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":39970,"name":"_checkCanForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39937,"src":"24458:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":39975,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24458:59:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":39976,"nodeType":"ExpressionStatement","src":"24458:59:110"}},{"expression":{"arguments":[{"id":39982,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39941,"src":"24560:9:110","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"id":39983,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39943,"src":"24571:10:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"id":39979,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39939,"src":"24542:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":39978,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40879,"src":"24530:11:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$40879_$","typeString":"type(contract IRiskModule)"}},"id":39980,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24530:19:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$40879","typeString":"contract IRiskModule"}},"id":39981,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24550:9:110","memberName":"newPolicy","nodeType":"MemberAccess","referencedDeclaration":40869,"src":"24530:29:110","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_bytes_memory_ptr_$_t_address_$returns$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function (bytes memory,address) external returns (struct Policy.PolicyData memory)"}},"id":39984,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24530:52:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData memory"}},"functionReturnParameters":39951,"id":39985,"nodeType":"Return","src":"24523:59:110"}]},"functionSelector":"d52f99ce","id":39987,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":39946,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39939,"src":"24285:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":39947,"kind":"modifierInvocation","modifierName":{"id":39945,"name":"forwardNewPolicyWrapper","nameLocations":["24261:23:110"],"nodeType":"IdentifierPath","referencedDeclaration":38570,"src":"24261:23:110"},"nodeType":"ModifierInvocation","src":"24261:31:110"}],"name":"forwardNewPolicyV3","nameLocation":"24155:18:110","nodeType":"FunctionDefinition","parameters":{"id":39944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39939,"mutability":"mutable","name":"target","nameLocation":"24187:6:110","nodeType":"VariableDeclaration","scope":39987,"src":"24179:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39938,"name":"address","nodeType":"ElementaryTypeName","src":"24179:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39941,"mutability":"mutable","name":"inputData","nameLocation":"24214:9:110","nodeType":"VariableDeclaration","scope":39987,"src":"24199:24:110","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":39940,"name":"bytes","nodeType":"ElementaryTypeName","src":"24199:5:110","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":39943,"mutability":"mutable","name":"onBehalfOf","nameLocation":"24237:10:110","nodeType":"VariableDeclaration","scope":39987,"src":"24229:18:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39942,"name":"address","nodeType":"ElementaryTypeName","src":"24229:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"24173:78:110"},"returnParameters":{"id":39951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39950,"mutability":"mutable","name":"policy","nameLocation":"24327:6:110","nodeType":"VariableDeclaration","scope":39987,"src":"24302:31:110","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":39949,"nodeType":"UserDefinedTypeName","pathNode":{"id":39948,"name":"Policy.PolicyData","nameLocations":["24302:6:110","24309:10:110"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"24302:17:110"},"referencedDeclaration":7744,"src":"24302:17:110","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"24301:33:110"},"scope":40840,"src":"24146:441:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":40034,"nodeType":"Block","src":"24742:247:110","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":40001,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[39409],"referencedDeclaration":39409,"src":"24765:10:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":40002,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24765:12:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40003,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39989,"src":"24779:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"expression":{"expression":{"id":40006,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40879,"src":"24794:11:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$40879_$","typeString":"type(contract IRiskModule)"}},"id":40007,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"24806:9:110","memberName":"newPolicy","nodeType":"MemberAccess","referencedDeclaration":40869,"src":"24794:21:110","typeDescriptions":{"typeIdentifier":"t_function_declaration_nonpayable$_t_bytes_calldata_ptr_$_t_address_$returns$_t_struct$_PolicyData_$7744_memory_ptr_$","typeString":"function IRiskModule.newPolicy(bytes calldata,address) returns (struct Policy.PolicyData memory)"}},"id":40008,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"24816:8:110","memberName":"selector","nodeType":"MemberAccess","src":"24794:30:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":40005,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24787:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":40004,"name":"bytes4","nodeType":"ElementaryTypeName","src":"24787:6:110","typeDescriptions":{}}},"id":40009,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24787:38:110","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":40000,"name":"_checkCanForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39937,"src":"24748:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":40010,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24748:78:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40011,"nodeType":"ExpressionStatement","src":"24748:78:110"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":40017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40012,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39994,"src":"24836:10:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":40015,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"24858:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":40014,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24850:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":40013,"name":"address","nodeType":"ElementaryTypeName","src":"24850:7:110","typeDescriptions":{}}},"id":40016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24850:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"24836:27:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":40025,"nodeType":"IfStatement","src":"24832:92:110","trueBody":{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":40019,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[39409],"referencedDeclaration":39409,"src":"24882:10:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":40020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24882:12:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40021,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39989,"src":"24896:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40022,"name":"OWN_POLICY_SELECTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38304,"src":"24904:19:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":40018,"name":"_checkCanForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39937,"src":"24865:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":40023,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24865:59:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40024,"nodeType":"ExpressionStatement","src":"24865:59:110"}},{"expression":{"arguments":[{"id":40030,"name":"inputData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39992,"src":"24962:9:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},{"id":40031,"name":"onBehalfOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39994,"src":"24973:10:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"id":40027,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39989,"src":"24942:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":40026,"name":"IRiskModule","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40879,"src":"24930:11:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IRiskModule_$40879_$","typeString":"type(contract IRiskModule)"}},"id":40028,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24930:19:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IRiskModule_$40879","typeString":"contract IRiskModule"}},"id":40029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24950:11:110","memberName":"newPolicies","nodeType":"MemberAccess","referencedDeclaration":40878,"src":"24930:31:110","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$_t_address_$returns$__$","typeString":"function (bytes memory[] memory,address) external"}},"id":40032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24930:54:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40033,"nodeType":"ExpressionStatement","src":"24930:54:110"}]},"functionSelector":"07c2e878","id":40035,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":39997,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39989,"src":"24734:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":39998,"kind":"modifierInvocation","modifierName":{"id":39996,"name":"forwardNewPolicyWrapper","nameLocations":["24710:23:110"],"nodeType":"IdentifierPath","referencedDeclaration":38570,"src":"24710:23:110"},"nodeType":"ModifierInvocation","src":"24710:31:110"}],"name":"forwardNewPoliciesV3","nameLocation":"24600:20:110","nodeType":"FunctionDefinition","parameters":{"id":39995,"nodeType":"ParameterList","parameters":[{"constant":false,"id":39989,"mutability":"mutable","name":"target","nameLocation":"24634:6:110","nodeType":"VariableDeclaration","scope":40035,"src":"24626:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39988,"name":"address","nodeType":"ElementaryTypeName","src":"24626:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39992,"mutability":"mutable","name":"inputData","nameLocation":"24663:9:110","nodeType":"VariableDeclaration","scope":40035,"src":"24646:26:110","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":39990,"name":"bytes","nodeType":"ElementaryTypeName","src":"24646:5:110","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":39991,"nodeType":"ArrayTypeName","src":"24646:7:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":39994,"mutability":"mutable","name":"onBehalfOf","nameLocation":"24686:10:110","nodeType":"VariableDeclaration","scope":40035,"src":"24678:18:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":39993,"name":"address","nodeType":"ElementaryTypeName","src":"24678:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"24620:80:110"},"returnParameters":{"id":39999,"nodeType":"ParameterList","parameters":[],"src":"24742:0:110"},"scope":40840,"src":"24591:398:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":40101,"nodeType":"Block","src":"26285:388:110","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":40049,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[39409],"referencedDeclaration":39409,"src":"26308:10:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":40050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26308:12:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40051,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40038,"src":"26322:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"baseExpression":{"id":40054,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40040,"src":"26337:4:110","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":40056,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26344:1:110","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":40057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"26337:9:110","startExpression":{"hexValue":"30","id":40055,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26342:1:110","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":40053,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26330:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":40052,"name":"bytes4","nodeType":"ElementaryTypeName","src":"26330:6:110","typeDescriptions":{}}},"id":40058,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26330:17:110","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":40048,"name":"_checkCanForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39937,"src":"26291:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":40059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26291:57:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40060,"nodeType":"ExpressionStatement","src":"26291:57:110"},{"expression":{"id":40066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":40061,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40046,"src":"26354:6:110","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":40064,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40040,"src":"26383:4:110","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":40062,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40038,"src":"26363:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":40063,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26370:12:110","memberName":"functionCall","nodeType":"MemberAccess","referencedDeclaration":25741,"src":"26363:19:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_address_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":40065,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26363:25:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"26354:34:110","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":40067,"nodeType":"ExpressionStatement","src":"26354:34:110"},{"assignments":[40069],"declarations":[{"constant":false,"id":40069,"mutability":"mutable","name":"policyId","nameLocation":"26402:8:110","nodeType":"VariableDeclaration","scope":40101,"src":"26394:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":40068,"name":"uint256","nodeType":"ElementaryTypeName","src":"26394:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":40077,"initialValue":{"arguments":[{"id":40072,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40046,"src":"26424:6:110","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":40074,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26433:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":40073,"name":"uint256","nodeType":"ElementaryTypeName","src":"26433:7:110","typeDescriptions":{}}}],"id":40075,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"26432:9:110","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"expression":{"id":40070,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"26413:3:110","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":40071,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26417:6:110","memberName":"decode","nodeType":"MemberAccess","src":"26413:10:110","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":40076,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26413:29:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"26394:48:110"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":40091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":40085,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40069,"src":"26490:8:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[{"id":40081,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38322,"src":"26468:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}],"id":40080,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26460:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":40079,"name":"address","nodeType":"ElementaryTypeName","src":"26460:7:110","typeDescriptions":{}}},"id":40082,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26460:20:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":40078,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25533,"src":"26452:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721_$25533_$","typeString":"type(contract IERC721)"}},"id":40083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26452:29:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC721_$25533","typeString":"contract IERC721"}},"id":40084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26482:7:110","memberName":"ownerOf","nodeType":"MemberAccess","referencedDeclaration":25466,"src":"26452:37:110","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view external returns (address)"}},"id":40086,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26452:47:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":40089,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"26511:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":40088,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26503:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":40087,"name":"address","nodeType":"ElementaryTypeName","src":"26503:7:110","typeDescriptions":{}}},"id":40090,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26503:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"26452:64:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":40100,"nodeType":"IfStatement","src":"26448:221:110","trueBody":{"id":40099,"nodeType":"Block","src":"26518:151:110","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":40093,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[39409],"referencedDeclaration":39409,"src":"26620:10:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":40094,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26620:12:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40095,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40038,"src":"26634:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40096,"name":"OWN_POLICY_SELECTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38304,"src":"26642:19:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":40092,"name":"_checkCanForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39937,"src":"26603:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":40097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26603:59:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40098,"nodeType":"ExpressionStatement","src":"26603:59:110"}]}}]},"documentation":{"id":40036,"nodeType":"StructuredDocumentation","src":"24993:1143:110","text":" @dev Forwards a call to the target contract, previously checking the target is active and tracking the increased\n      debt (in the current time slot).\n      When the `_balance()` is lower than `targetConfig.minLiquidity` it deinvests, but it doesn't fail if can't\n      deinvest all the required funds. If the required premiums are higher than the available balance, then it\n      will fail anyway.\n      If after the operation the debt is higher than targetConfig.debtLimit, it reverts.\n      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\n      Requires the return value of the called function returns the policyId and checks if the resulting policy\n      (a PolicyPool NFT), is owned by the CFL.\n      If it's not, it requires the _msgSender() has permission to call address(this) on\n      `makeFakeSelector(target, OWN_POLICY_SELECTOR)`\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param data The call to execute on the target contract"},"functionSelector":"33bded3c","id":40102,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":40043,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40038,"src":"26247:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":40044,"kind":"modifierInvocation","modifierName":{"id":40042,"name":"forwardNewPolicyWrapper","nameLocations":["26223:23:110"],"nodeType":"IdentifierPath","referencedDeclaration":38570,"src":"26223:23:110"},"nodeType":"ModifierInvocation","src":"26223:31:110"}],"name":"forwardNewPolicy","nameLocation":"26148:16:110","nodeType":"FunctionDefinition","parameters":{"id":40041,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40038,"mutability":"mutable","name":"target","nameLocation":"26178:6:110","nodeType":"VariableDeclaration","scope":40102,"src":"26170:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":40037,"name":"address","nodeType":"ElementaryTypeName","src":"26170:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":40040,"mutability":"mutable","name":"data","nameLocation":"26205:4:110","nodeType":"VariableDeclaration","scope":40102,"src":"26190:19:110","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":40039,"name":"bytes","nodeType":"ElementaryTypeName","src":"26190:5:110","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"26164:49:110"},"returnParameters":{"id":40047,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40046,"mutability":"mutable","name":"result","nameLocation":"26277:6:110","nodeType":"VariableDeclaration","scope":40102,"src":"26264:19:110","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":40045,"name":"bytes","nodeType":"ElementaryTypeName","src":"26264:5:110","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"26263:21:110"},"scope":40840,"src":"26139:534:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":40231,"nodeType":"Block","src":"28021:810:110","statements":[{"assignments":[40118],"declarations":[{"constant":false,"id":40118,"mutability":"mutable","name":"lastSelector","nameLocation":"28034:12:110","nodeType":"VariableDeclaration","scope":40231,"src":"28027:19:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":40117,"name":"bytes4","nodeType":"ElementaryTypeName","src":"28027:6:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":40119,"nodeType":"VariableDeclarationStatement","src":"28027:19:110"},{"assignments":[40121],"declarations":[{"constant":false,"id":40121,"mutability":"mutable","name":"ownOK","nameLocation":"28057:5:110","nodeType":"VariableDeclaration","scope":40231,"src":"28052:10:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":40120,"name":"bool","nodeType":"ElementaryTypeName","src":"28052:4:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":40123,"initialValue":{"hexValue":"66616c7365","id":40122,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"28065:5:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"nodeType":"VariableDeclarationStatement","src":"28052:18:110"},{"expression":{"id":40131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":40124,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40115,"src":"28076:6:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":40128,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40108,"src":"28097:4:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":40129,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28102:6:110","memberName":"length","nodeType":"MemberAccess","src":"28097:11:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":40127,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"28085:11:110","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":40125,"name":"bytes","nodeType":"ElementaryTypeName","src":"28089:5:110","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":40126,"nodeType":"ArrayTypeName","src":"28089:7:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}}},"id":40130,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28085:24:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"src":"28076:33:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":40132,"nodeType":"ExpressionStatement","src":"28076:33:110"},{"body":{"id":40229,"nodeType":"Block","src":"28153:674:110","statements":[{"assignments":[40144],"declarations":[{"constant":false,"id":40144,"mutability":"mutable","name":"selector","nameLocation":"28168:8:110","nodeType":"VariableDeclaration","scope":40229,"src":"28161:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":40143,"name":"bytes4","nodeType":"ElementaryTypeName","src":"28161:6:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":40154,"initialValue":{"arguments":[{"baseExpression":{"baseExpression":{"id":40147,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40108,"src":"28186:4:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":40149,"indexExpression":{"id":40148,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40134,"src":"28191:1:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"28186:7:110","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":40151,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28196:1:110","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":40152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"28186:12:110","startExpression":{"hexValue":"30","id":40150,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28194:1:110","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":40146,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28179:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":40145,"name":"bytes4","nodeType":"ElementaryTypeName","src":"28179:6:110","typeDescriptions":{}}},"id":40153,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28179:20:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"28161:38:110"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":40161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40157,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40155,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40134,"src":"28211:1:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":40156,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28216:1:110","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"28211:6:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":40160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40158,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40144,"src":"28221:8:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":40159,"name":"lastSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40118,"src":"28233:12:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"28221:24:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"28211:34:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":40174,"nodeType":"IfStatement","src":"28207:211:110","trueBody":{"id":40173,"nodeType":"Block","src":"28247:171:110","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":40163,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[39409],"referencedDeclaration":39409,"src":"28345:10:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":40164,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28345:12:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40165,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40105,"src":"28359:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40166,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40144,"src":"28367:8:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":40162,"name":"_checkCanForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39937,"src":"28328:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":40167,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28328:48:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40168,"nodeType":"ExpressionStatement","src":"28328:48:110"},{"expression":{"id":40171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":40169,"name":"lastSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40118,"src":"28386:12:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":40170,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40144,"src":"28401:8:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"28386:23:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":40172,"nodeType":"ExpressionStatement","src":"28386:23:110"}]}},{"expression":{"id":40184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":40175,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40115,"src":"28425:6:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":40177,"indexExpression":{"id":40176,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40134,"src":"28432:1:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"28425:9:110","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":40180,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40108,"src":"28457:4:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":40182,"indexExpression":{"id":40181,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40134,"src":"28462:1:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"28457:7:110","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":40178,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40105,"src":"28437:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":40179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28444:12:110","memberName":"functionCall","nodeType":"MemberAccess","referencedDeclaration":25741,"src":"28437:19:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_address_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":40183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28437:28:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"28425:40:110","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":40185,"nodeType":"ExpressionStatement","src":"28425:40:110"},{"condition":{"id":40187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"28477:6:110","subExpression":{"id":40186,"name":"ownOK","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40121,"src":"28478:5:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":40228,"nodeType":"IfStatement","src":"28473:348:110","trueBody":{"id":40227,"nodeType":"Block","src":"28485:336:110","statements":[{"assignments":[40189],"declarations":[{"constant":false,"id":40189,"mutability":"mutable","name":"policyId","nameLocation":"28503:8:110","nodeType":"VariableDeclaration","scope":40227,"src":"28495:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":40188,"name":"uint256","nodeType":"ElementaryTypeName","src":"28495:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":40199,"initialValue":{"arguments":[{"baseExpression":{"id":40192,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40115,"src":"28525:6:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":40194,"indexExpression":{"id":40193,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40134,"src":"28532:1:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"28525:9:110","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":40196,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28537:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":40195,"name":"uint256","nodeType":"ElementaryTypeName","src":"28537:7:110","typeDescriptions":{}}}],"id":40197,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"28536:9:110","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"expression":{"id":40190,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"28514:3:110","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":40191,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"28518:6:110","memberName":"decode","nodeType":"MemberAccess","src":"28514:10:110","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":40198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28514:32:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28495:51:110"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":40213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":40207,"name":"policyId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40189,"src":"28598:8:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[{"id":40203,"name":"_policyPool","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38322,"src":"28576:11:110","typeDescriptions":{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IPolicyPool_$40853","typeString":"contract IPolicyPool"}],"id":40202,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28568:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":40201,"name":"address","nodeType":"ElementaryTypeName","src":"28568:7:110","typeDescriptions":{}}},"id":40204,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28568:20:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":40200,"name":"IERC721","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":25533,"src":"28560:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC721_$25533_$","typeString":"type(contract IERC721)"}},"id":40205,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28560:29:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC721_$25533","typeString":"contract IERC721"}},"id":40206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28590:7:110","memberName":"ownerOf","nodeType":"MemberAccess","referencedDeclaration":25466,"src":"28560:37:110","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view external returns (address)"}},"id":40208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28560:47:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"id":40211,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"28619:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":40210,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28611:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":40209,"name":"address","nodeType":"ElementaryTypeName","src":"28611:7:110","typeDescriptions":{}}},"id":40212,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28611:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"28560:64:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":40226,"nodeType":"IfStatement","src":"28556:257:110","trueBody":{"id":40225,"nodeType":"Block","src":"28626:187:110","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":40215,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[39409],"referencedDeclaration":39409,"src":"28736:10:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":40216,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28736:12:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40217,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40105,"src":"28750:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40218,"name":"OWN_POLICY_SELECTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38304,"src":"28758:19:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":40214,"name":"_checkCanForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39937,"src":"28719:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":40219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28719:59:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40220,"nodeType":"ExpressionStatement","src":"28719:59:110"},{"expression":{"id":40223,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":40221,"name":"ownOK","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40121,"src":"28790:5:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":40222,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"28798:4:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"28790:12:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":40224,"nodeType":"ExpressionStatement","src":"28790:12:110"}]}}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40136,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40134,"src":"28131:1:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":40137,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40108,"src":"28135:4:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":40138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28140:6:110","memberName":"length","nodeType":"MemberAccess","src":"28135:11:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28131:15:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":40230,"initializationExpression":{"assignments":[40134],"declarations":[{"constant":false,"id":40134,"mutability":"mutable","name":"i","nameLocation":"28128:1:110","nodeType":"VariableDeclaration","scope":40230,"src":"28120:9:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":40133,"name":"uint256","nodeType":"ElementaryTypeName","src":"28120:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":40135,"nodeType":"VariableDeclarationStatement","src":"28120:9:110"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":40141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"28148:3:110","subExpression":{"id":40140,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40134,"src":"28150:1:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":40142,"nodeType":"ExpressionStatement","src":"28148:3:110"},"nodeType":"ForStatement","src":"28115:712:110"}]},"documentation":{"id":40103,"nodeType":"StructuredDocumentation","src":"26677:1186:110","text":" @dev Forwards a call to the target contract, previously checking the target is active and tracking the increased\n      debt (in the current time slot). Batch version (multiple calls at once).\n      When the `_balance()` is lower than `targetConfig.minLiquidity` it deinvests, but it doesn't fail if can't\n      deinvest all the required funds. If the required premiums are higher than the available balance, then it\n      will fail anyway.\n      If after the operation the debt is higher than targetConfig.debtLimit, it reverts.\n      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\n      Requires the return value of the called function returns the policyId and checks if the resulting policy\n      (a PolicyPool NFT), is owned by the CFL.\n      If it's not, it requires the _msgSender() has permission to call address(this) on\n      `makeFakeSelector(target, OWN_POLICY_SELECTOR)`\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param data[] The calls to execute on the target contract"},"functionSelector":"e77659fd","id":40232,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":40111,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40105,"src":"27981:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":40112,"kind":"modifierInvocation","modifierName":{"id":40110,"name":"forwardNewPolicyWrapper","nameLocations":["27957:23:110"],"nodeType":"IdentifierPath","referencedDeclaration":38570,"src":"27957:23:110"},"nodeType":"ModifierInvocation","src":"27957:31:110"}],"name":"forwardNewPolicyBatch","nameLocation":"27875:21:110","nodeType":"FunctionDefinition","parameters":{"id":40109,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40105,"mutability":"mutable","name":"target","nameLocation":"27910:6:110","nodeType":"VariableDeclaration","scope":40232,"src":"27902:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":40104,"name":"address","nodeType":"ElementaryTypeName","src":"27902:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":40108,"mutability":"mutable","name":"data","nameLocation":"27939:4:110","nodeType":"VariableDeclaration","scope":40232,"src":"27922:21:110","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":40106,"name":"bytes","nodeType":"ElementaryTypeName","src":"27922:5:110","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":40107,"nodeType":"ArrayTypeName","src":"27922:7:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"27896:51:110"},"returnParameters":{"id":40116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40115,"mutability":"mutable","name":"result","nameLocation":"28013:6:110","nodeType":"VariableDeclaration","scope":40232,"src":"27998:21:110","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":40113,"name":"bytes","nodeType":"ElementaryTypeName","src":"27998:5:110","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":40114,"nodeType":"ArrayTypeName","src":"27998:7:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"27997:23:110"},"scope":40840,"src":"27866:965:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":40265,"nodeType":"Block","src":"29546:108:110","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":40246,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[39409],"referencedDeclaration":39409,"src":"29569:10:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":40247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29569:12:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40248,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40235,"src":"29583:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"baseExpression":{"id":40251,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40237,"src":"29598:4:110","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":40253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29605:1:110","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":40254,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"29598:9:110","startExpression":{"hexValue":"30","id":40252,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29603:1:110","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":40250,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29591:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":40249,"name":"bytes4","nodeType":"ElementaryTypeName","src":"29591:6:110","typeDescriptions":{}}},"id":40255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29591:17:110","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":40245,"name":"_checkCanForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39937,"src":"29552:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":40256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29552:57:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40257,"nodeType":"ExpressionStatement","src":"29552:57:110"},{"expression":{"id":40263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":40258,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40243,"src":"29615:6:110","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":40261,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40237,"src":"29644:4:110","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":40259,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40235,"src":"29624:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":40260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"29631:12:110","memberName":"functionCall","nodeType":"MemberAccess","referencedDeclaration":25741,"src":"29624:19:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_address_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":40262,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29624:25:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"29615:34:110","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":40264,"nodeType":"ExpressionStatement","src":"29615:34:110"}]},"documentation":{"id":40233,"nodeType":"StructuredDocumentation","src":"28835:554:110","text":" @dev Forwards a call to the target contract, previously checking the target is active (or deprecated). It doesn't\n      track the debt change explicitly, but this should change when policies are resolved and onPayoutReceived\n      is called.\n      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param data The calls to execute on the target contract"},"functionSelector":"86b44083","id":40266,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":40240,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40235,"src":"29508:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":40241,"kind":"modifierInvocation","modifierName":{"id":40239,"name":"forwardResolvePolicyWrapper","nameLocations":["29480:27:110"],"nodeType":"IdentifierPath","referencedDeclaration":38623,"src":"29480:27:110"},"nodeType":"ModifierInvocation","src":"29480:35:110"}],"name":"forwardResolvePolicy","nameLocation":"29401:20:110","nodeType":"FunctionDefinition","parameters":{"id":40238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40235,"mutability":"mutable","name":"target","nameLocation":"29435:6:110","nodeType":"VariableDeclaration","scope":40266,"src":"29427:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":40234,"name":"address","nodeType":"ElementaryTypeName","src":"29427:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":40237,"mutability":"mutable","name":"data","nameLocation":"29462:4:110","nodeType":"VariableDeclaration","scope":40266,"src":"29447:19:110","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":40236,"name":"bytes","nodeType":"ElementaryTypeName","src":"29447:5:110","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"29421:49:110"},"returnParameters":{"id":40244,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40243,"mutability":"mutable","name":"result","nameLocation":"29538:6:110","nodeType":"VariableDeclaration","scope":40266,"src":"29525:19:110","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":40242,"name":"bytes","nodeType":"ElementaryTypeName","src":"29525:5:110","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"29524:21:110"},"scope":40840,"src":"29392:262:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":40348,"nodeType":"Block","src":"30420:431:110","statements":[{"assignments":[40282],"declarations":[{"constant":false,"id":40282,"mutability":"mutable","name":"lastSelector","nameLocation":"30433:12:110","nodeType":"VariableDeclaration","scope":40348,"src":"30426:19:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":40281,"name":"bytes4","nodeType":"ElementaryTypeName","src":"30426:6:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":40283,"nodeType":"VariableDeclarationStatement","src":"30426:19:110"},{"expression":{"id":40291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":40284,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40279,"src":"30451:6:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":40288,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40272,"src":"30472:4:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":40289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30477:6:110","memberName":"length","nodeType":"MemberAccess","src":"30472:11:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":40287,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"30460:11:110","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":40285,"name":"bytes","nodeType":"ElementaryTypeName","src":"30464:5:110","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":40286,"nodeType":"ArrayTypeName","src":"30464:7:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}}},"id":40290,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30460:24:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"src":"30451:33:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":40292,"nodeType":"ExpressionStatement","src":"30451:33:110"},{"body":{"id":40346,"nodeType":"Block","src":"30528:319:110","statements":[{"assignments":[40304],"declarations":[{"constant":false,"id":40304,"mutability":"mutable","name":"selector","nameLocation":"30543:8:110","nodeType":"VariableDeclaration","scope":40346,"src":"30536:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":40303,"name":"bytes4","nodeType":"ElementaryTypeName","src":"30536:6:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"id":40314,"initialValue":{"arguments":[{"baseExpression":{"baseExpression":{"id":40307,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40272,"src":"30561:4:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":40309,"indexExpression":{"id":40308,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40294,"src":"30566:1:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30561:7:110","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"endExpression":{"hexValue":"34","id":40311,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30571:1:110","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"id":40312,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexRangeAccess","src":"30561:12:110","startExpression":{"hexValue":"30","id":40310,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30569:1:110","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":40306,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30554:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":40305,"name":"bytes4","nodeType":"ElementaryTypeName","src":"30554:6:110","typeDescriptions":{}}},"id":40313,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30554:20:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"VariableDeclarationStatement","src":"30536:38:110"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":40321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40315,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40294,"src":"30586:1:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":40316,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30591:1:110","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"30586:6:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":40320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40318,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40304,"src":"30596:8:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":40319,"name":"lastSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40282,"src":"30608:12:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"30596:24:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"30586:34:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":40334,"nodeType":"IfStatement","src":"30582:211:110","trueBody":{"id":40333,"nodeType":"Block","src":"30622:171:110","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":40323,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[39409],"referencedDeclaration":39409,"src":"30720:10:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":40324,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30720:12:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40325,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40269,"src":"30734:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40326,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40304,"src":"30742:8:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"id":40322,"name":"_checkCanForward","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39937,"src":"30703:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$_t_bytes4_$returns$__$","typeString":"function (address,address,bytes4) view"}},"id":40327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30703:48:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40328,"nodeType":"ExpressionStatement","src":"30703:48:110"},{"expression":{"id":40331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":40329,"name":"lastSelector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40282,"src":"30761:12:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":40330,"name":"selector","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40304,"src":"30776:8:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"30761:23:110","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"id":40332,"nodeType":"ExpressionStatement","src":"30761:23:110"}]}},{"expression":{"id":40344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":40335,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40279,"src":"30800:6:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":40337,"indexExpression":{"id":40336,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40294,"src":"30807:1:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"30800:9:110","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":40340,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40272,"src":"30832:4:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":40342,"indexExpression":{"id":40341,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40294,"src":"30837:1:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"30832:7:110","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":40338,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40269,"src":"30812:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":40339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30819:12:110","memberName":"functionCall","nodeType":"MemberAccess","referencedDeclaration":25741,"src":"30812:19:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_address_$","typeString":"function (address,bytes memory) returns (bytes memory)"}},"id":40343,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30812:28:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"30800:40:110","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":40345,"nodeType":"ExpressionStatement","src":"30800:40:110"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40296,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40294,"src":"30506:1:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":40297,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40272,"src":"30510:4:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes calldata[] calldata"}},"id":40298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30515:6:110","memberName":"length","nodeType":"MemberAccess","src":"30510:11:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30506:15:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":40347,"initializationExpression":{"assignments":[40294],"declarations":[{"constant":false,"id":40294,"mutability":"mutable","name":"i","nameLocation":"30503:1:110","nodeType":"VariableDeclaration","scope":40347,"src":"30495:9:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":40293,"name":"uint256","nodeType":"ElementaryTypeName","src":"30495:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":40295,"nodeType":"VariableDeclarationStatement","src":"30495:9:110"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":40301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"30523:3:110","subExpression":{"id":40300,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40294,"src":"30525:1:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":40302,"nodeType":"ExpressionStatement","src":"30523:3:110"},"nodeType":"ForStatement","src":"30490:357:110"}]},"documentation":{"id":40267,"nodeType":"StructuredDocumentation","src":"29658:596:110","text":" @dev Forwards a call to the target contract, previously checking the target is active (or deprecated). It doesn't\n      track the debt change explicitly, but this should change when policies are resolved and onPayoutReceived\n      is called. Batch version (multiple calls at once).\n      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param data[] The calls to execute on the target contract"},"functionSelector":"ee07abbb","id":40349,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":40275,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40269,"src":"30380:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":40276,"kind":"modifierInvocation","modifierName":{"id":40274,"name":"forwardResolvePolicyWrapper","nameLocations":["30352:27:110"],"nodeType":"IdentifierPath","referencedDeclaration":38623,"src":"30352:27:110"},"nodeType":"ModifierInvocation","src":"30352:35:110"}],"name":"forwardResolvePolicyBatch","nameLocation":"30266:25:110","nodeType":"FunctionDefinition","parameters":{"id":40273,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40269,"mutability":"mutable","name":"target","nameLocation":"30305:6:110","nodeType":"VariableDeclaration","scope":40349,"src":"30297:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":40268,"name":"address","nodeType":"ElementaryTypeName","src":"30297:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":40272,"mutability":"mutable","name":"data","nameLocation":"30334:4:110","nodeType":"VariableDeclaration","scope":40349,"src":"30317:21:110","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":40270,"name":"bytes","nodeType":"ElementaryTypeName","src":"30317:5:110","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":40271,"nodeType":"ArrayTypeName","src":"30317:7:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"30291:51:110"},"returnParameters":{"id":40280,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40279,"mutability":"mutable","name":"result","nameLocation":"30412:6:110","nodeType":"VariableDeclaration","scope":40349,"src":"30397:21:110","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":40277,"name":"bytes","nodeType":"ElementaryTypeName","src":"30397:5:110","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":40278,"nodeType":"ArrayTypeName","src":"30397:7:110","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"30396:23:110"},"scope":40840,"src":"30257:594:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":40366,"nodeType":"Block","src":"30909:105:110","statements":[{"assignments":[40356],"declarations":[{"constant":false,"id":40356,"mutability":"mutable","name":"$","nameLocation":"30945:1:110","nodeType":"VariableDeclaration","scope":40366,"src":"30915:31:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":40355,"nodeType":"UserDefinedTypeName","pathNode":{"id":40354,"name":"CashFlowLenderStorage","nameLocations":["30915:21:110"],"nodeType":"IdentifierPath","referencedDeclaration":38357,"src":"30915:21:110"},"referencedDeclaration":38357,"src":"30915:21:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":40359,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":40357,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38368,"src":"30949:25:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$38357_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":40358,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30949:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"30915:61:110"},{"expression":{"arguments":[{"expression":{"id":40362,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40356,"src":"30996:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":40363,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30998:10:110","memberName":"_totalDebt","nodeType":"MemberAccess","referencedDeclaration":38346,"src":"30996:12:110","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int96","typeString":"int96"}],"id":40361,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30989:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":40360,"name":"int256","nodeType":"ElementaryTypeName","src":"30989:6:110","typeDescriptions":{}}},"id":40364,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30989:20:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":40353,"id":40365,"nodeType":"Return","src":"30982:27:110"}]},"functionSelector":"759076e5","id":40367,"implemented":true,"kind":"function","modifiers":[],"name":"currentDebt","nameLocation":"30864:11:110","nodeType":"FunctionDefinition","parameters":{"id":40350,"nodeType":"ParameterList","parameters":[],"src":"30875:2:110"},"returnParameters":{"id":40353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40352,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":40367,"src":"30901:6:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":40351,"name":"int256","nodeType":"ElementaryTypeName","src":"30901:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30900:8:110"},"scope":40840,"src":"30855:159:110","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":40393,"nodeType":"Block","src":"31126:146:110","statements":[{"assignments":[40380],"declarations":[{"constant":false,"id":40380,"mutability":"mutable","name":"$","nameLocation":"31162:1:110","nodeType":"VariableDeclaration","scope":40393,"src":"31132:31:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":40379,"nodeType":"UserDefinedTypeName","pathNode":{"id":40378,"name":"CashFlowLenderStorage","nameLocations":["31132:21:110"],"nodeType":"IdentifierPath","referencedDeclaration":38357,"src":"31132:21:110"},"referencedDeclaration":38357,"src":"31132:21:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":40383,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":40381,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38368,"src":"31166:25:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$38357_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":40382,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31166:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"31132:61:110"},{"expression":{"baseExpression":{"expression":{"id":40384,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40380,"src":"31206:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":40385,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31208:13:110","memberName":"_debtByPeriod","nodeType":"MemberAccess","referencedDeclaration":38356,"src":"31206:15:110","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TargetSlot_$38324_$_t_int256_$","typeString":"mapping(CashFlowLender.TargetSlot => int256)"}},"id":40391,"indexExpression":{"arguments":[{"id":40387,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40369,"src":"31238:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40388,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40371,"src":"31246:8:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":40389,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40373,"src":"31256:9:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":40386,"name":"_makeTargetSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39667,"src":"31222:15:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_uint32_$_t_uint32_$returns$_t_userDefinedValueType$_TargetSlot_$38324_$","typeString":"function (address,uint32,uint32) pure returns (CashFlowLender.TargetSlot)"}},"id":40390,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31222:44:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TargetSlot_$38324","typeString":"CashFlowLender.TargetSlot"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"31206:61:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":40377,"id":40392,"nodeType":"Return","src":"31199:68:110"}]},"functionSelector":"a3ac9390","id":40394,"implemented":true,"kind":"function","modifiers":[],"name":"getDebtForPeriod","nameLocation":"31027:16:110","nodeType":"FunctionDefinition","parameters":{"id":40374,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40369,"mutability":"mutable","name":"target","nameLocation":"31052:6:110","nodeType":"VariableDeclaration","scope":40394,"src":"31044:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":40368,"name":"address","nodeType":"ElementaryTypeName","src":"31044:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":40371,"mutability":"mutable","name":"slotSize","nameLocation":"31067:8:110","nodeType":"VariableDeclaration","scope":40394,"src":"31060:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":40370,"name":"uint32","nodeType":"ElementaryTypeName","src":"31060:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":40373,"mutability":"mutable","name":"slotIndex","nameLocation":"31084:9:110","nodeType":"VariableDeclaration","scope":40394,"src":"31077:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":40372,"name":"uint32","nodeType":"ElementaryTypeName","src":"31077:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"31043:51:110"},"returnParameters":{"id":40377,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40376,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":40394,"src":"31118:6:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":40375,"name":"int256","nodeType":"ElementaryTypeName","src":"31118:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31117:8:110"},"scope":40840,"src":"31018:254:110","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[17055],"body":{"id":40457,"nodeType":"Block","src":"31382:324:110","statements":[{"assignments":[40403],"declarations":[{"constant":false,"id":40403,"mutability":"mutable","name":"$","nameLocation":"31418:1:110","nodeType":"VariableDeclaration","scope":40457,"src":"31388:31:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":40402,"nodeType":"UserDefinedTypeName","pathNode":{"id":40401,"name":"CashFlowLenderStorage","nameLocations":["31388:21:110"],"nodeType":"IdentifierPath","referencedDeclaration":38357,"src":"31388:21:110"},"referencedDeclaration":38357,"src":"31388:21:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":40406,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":40404,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38368,"src":"31422:25:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$38357_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":40405,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31422:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"31388:61:110"},{"expression":{"id":40410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":40407,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40399,"src":"31455:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":40408,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39440,"src":"31464:8:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":40409,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31464:10:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31455:19:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":40411,"nodeType":"ExpressionStatement","src":"31455:19:110"},{"expression":{"id":40425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":40412,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40399,"src":"31480:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"arguments":[{"arguments":[{"id":40421,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"31552:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":40420,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31544:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":40419,"name":"address","nodeType":"ElementaryTypeName","src":"31544:7:110","typeDescriptions":{}}},"id":40422,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31544:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":40416,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40403,"src":"31520:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":40417,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31522:11:110","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":38344,"src":"31520:13:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":40418,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31534:9:110","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":24150,"src":"31520:23:110","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":40423,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31520:38:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"expression":{"id":40413,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40403,"src":"31490:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":40414,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31492:11:110","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":38344,"src":"31490:13:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":40415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31504:15:110","memberName":"convertToAssets","nodeType":"MemberAccess","referencedDeclaration":22354,"src":"31490:29:110","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view external returns (uint256)"}},"id":40424,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31490:69:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31480:79:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":40426,"nodeType":"ExpressionStatement","src":"31480:79:110"},{"condition":{"commonType":{"typeIdentifier":"t_int96","typeString":"int96"},"id":40430,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":40427,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40403,"src":"31569:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":40428,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31571:10:110","memberName":"_totalDebt","nodeType":"MemberAccess","referencedDeclaration":38346,"src":"31569:12:110","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":40429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31584:1:110","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"31569:16:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":40455,"nodeType":"Block","src":"31648:54:110","statements":[{"expression":{"id":40453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":40444,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40399,"src":"31656:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[{"arguments":[{"expression":{"id":40449,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40403,"src":"31681:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":40450,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31683:10:110","memberName":"_totalDebt","nodeType":"MemberAccess","referencedDeclaration":38346,"src":"31681:12:110","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int96","typeString":"int96"}],"id":40448,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31674:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":40447,"name":"int256","nodeType":"ElementaryTypeName","src":"31674:6:110","typeDescriptions":{}}},"id":40451,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31674:20:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":40446,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31666:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":40445,"name":"uint256","nodeType":"ElementaryTypeName","src":"31666:7:110","typeDescriptions":{}}},"id":40452,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31666:29:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31656:39:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":40454,"nodeType":"ExpressionStatement","src":"31656:39:110"}]},"id":40456,"nodeType":"IfStatement","src":"31565:137:110","trueBody":{"id":40443,"nodeType":"Block","src":"31587:55:110","statements":[{"expression":{"id":40441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":40431,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40399,"src":"31595:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"arguments":[{"id":40439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"31613:21:110","subExpression":{"arguments":[{"expression":{"id":40436,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40403,"src":"31621:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":40437,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31623:10:110","memberName":"_totalDebt","nodeType":"MemberAccess","referencedDeclaration":38346,"src":"31621:12:110","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int96","typeString":"int96"}],"id":40435,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31614:6:110","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":40434,"name":"int256","nodeType":"ElementaryTypeName","src":"31614:6:110","typeDescriptions":{}}},"id":40438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31614:20:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":40433,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31605:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":40432,"name":"uint256","nodeType":"ElementaryTypeName","src":"31605:7:110","typeDescriptions":{}}},"id":40440,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31605:30:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31595:40:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":40442,"nodeType":"ExpressionStatement","src":"31595:40:110"}]}}]},"documentation":{"id":40395,"nodeType":"StructuredDocumentation","src":"31276:34:110","text":"@inheritdoc ERC4626Upgradeable"},"functionSelector":"01e1d114","id":40458,"implemented":true,"kind":"function","modifiers":[],"name":"totalAssets","nameLocation":"31322:11:110","nodeType":"FunctionDefinition","overrides":{"id":40397,"nodeType":"OverrideSpecifier","overrides":[],"src":"31348:8:110"},"parameters":{"id":40396,"nodeType":"ParameterList","parameters":[],"src":"31333:2:110"},"returnParameters":{"id":40400,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40399,"mutability":"mutable","name":"assets","nameLocation":"31374:6:110","nodeType":"VariableDeclaration","scope":40458,"src":"31366:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":40398,"name":"uint256","nodeType":"ElementaryTypeName","src":"31366:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31365:16:110"},"scope":40840,"src":"31313:393:110","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":40481,"nodeType":"Block","src":"31768:138:110","statements":[{"assignments":[40465],"declarations":[{"constant":false,"id":40465,"mutability":"mutable","name":"$","nameLocation":"31804:1:110","nodeType":"VariableDeclaration","scope":40481,"src":"31774:31:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":40464,"nodeType":"UserDefinedTypeName","pathNode":{"id":40463,"name":"CashFlowLenderStorage","nameLocations":["31774:21:110"],"nodeType":"IdentifierPath","referencedDeclaration":38357,"src":"31774:21:110"},"referencedDeclaration":38357,"src":"31774:21:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":40468,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":40466,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38368,"src":"31808:25:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$38357_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":40467,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31808:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"31774:61:110"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":40469,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39440,"src":"31848:8:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":40470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31848:10:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"arguments":[{"id":40476,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"31895:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":40475,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31887:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":40474,"name":"address","nodeType":"ElementaryTypeName","src":"31887:7:110","typeDescriptions":{}}},"id":40477,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31887:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":40471,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40465,"src":"31861:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":40472,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31863:11:110","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":38344,"src":"31861:13:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":40473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31875:11:110","memberName":"maxWithdraw","nodeType":"MemberAccess","referencedDeclaration":22414,"src":"31861:25:110","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":40478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31861:40:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31848:53:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":40462,"id":40480,"nodeType":"Return","src":"31841:60:110"}]},"functionSelector":"cc671a18","id":40482,"implemented":true,"kind":"function","modifiers":[],"name":"cashWithdrawable","nameLocation":"31719:16:110","nodeType":"FunctionDefinition","parameters":{"id":40459,"nodeType":"ParameterList","parameters":[],"src":"31735:2:110"},"returnParameters":{"id":40462,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40461,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":40482,"src":"31759:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":40460,"name":"uint256","nodeType":"ElementaryTypeName","src":"31759:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31758:9:110"},"scope":40840,"src":"31710:196:110","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[17145],"body":{"id":40503,"nodeType":"Block","src":"32028:87:110","statements":[{"expression":{"arguments":[{"arguments":[{"id":40495,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40485,"src":"32066:5:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":40493,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"32050:5:110","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_CashFlowLender_$40840_$","typeString":"type(contract super CashFlowLender)"}},"id":40494,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32056:9:110","memberName":"maxRedeem","nodeType":"MemberAccess","referencedDeclaration":17145,"src":"32050:15:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":40496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32050:22:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":40498,"name":"cashWithdrawable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40482,"src":"32090:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":40499,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32090:18:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":40497,"name":"convertToShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17071,"src":"32074:15:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":40500,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32074:35:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":40491,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"32041:4:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":40492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32046:3:110","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":33872,"src":"32041:8:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":40501,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32041:69:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":40490,"id":40502,"nodeType":"Return","src":"32034:76:110"}]},"documentation":{"id":40483,"nodeType":"StructuredDocumentation","src":"31910:34:110","text":"@inheritdoc ERC4626Upgradeable"},"functionSelector":"d905777e","id":40504,"implemented":true,"kind":"function","modifiers":[],"name":"maxRedeem","nameLocation":"31956:9:110","nodeType":"FunctionDefinition","overrides":{"id":40487,"nodeType":"OverrideSpecifier","overrides":[],"src":"32001:8:110"},"parameters":{"id":40486,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40485,"mutability":"mutable","name":"owner","nameLocation":"31974:5:110","nodeType":"VariableDeclaration","scope":40504,"src":"31966:13:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":40484,"name":"address","nodeType":"ElementaryTypeName","src":"31966:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"31965:15:110"},"returnParameters":{"id":40490,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40489,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":40504,"src":"32019:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":40488,"name":"uint256","nodeType":"ElementaryTypeName","src":"32019:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"32018:9:110"},"scope":40840,"src":"31947:168:110","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[17132],"body":{"id":40523,"nodeType":"Block","src":"32239:72:110","statements":[{"expression":{"arguments":[{"arguments":[{"id":40517,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40507,"src":"32279:5:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":40515,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"32261:5:110","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_CashFlowLender_$40840_$","typeString":"type(contract super CashFlowLender)"}},"id":40516,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32267:11:110","memberName":"maxWithdraw","nodeType":"MemberAccess","referencedDeclaration":17132,"src":"32261:17:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":40518,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32261:24:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":40519,"name":"cashWithdrawable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40482,"src":"32287:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":40520,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32287:18:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":40513,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":35187,"src":"32252:4:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$35187_$","typeString":"type(library Math)"}},"id":40514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32257:3:110","memberName":"min","nodeType":"MemberAccess","referencedDeclaration":33872,"src":"32252:8:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":40521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32252:54:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":40512,"id":40522,"nodeType":"Return","src":"32245:61:110"}]},"documentation":{"id":40505,"nodeType":"StructuredDocumentation","src":"32119:34:110","text":"@inheritdoc ERC4626Upgradeable"},"functionSelector":"ce96cb77","id":40524,"implemented":true,"kind":"function","modifiers":[],"name":"maxWithdraw","nameLocation":"32165:11:110","nodeType":"FunctionDefinition","overrides":{"id":40509,"nodeType":"OverrideSpecifier","overrides":[],"src":"32212:8:110"},"parameters":{"id":40508,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40507,"mutability":"mutable","name":"owner","nameLocation":"32185:5:110","nodeType":"VariableDeclaration","scope":40524,"src":"32177:13:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":40506,"name":"address","nodeType":"ElementaryTypeName","src":"32177:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"32176:15:110"},"returnParameters":{"id":40512,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40511,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":40524,"src":"32230:7:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":40510,"name":"uint256","nodeType":"ElementaryTypeName","src":"32230:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"32229:9:110"},"scope":40840,"src":"32156:155:110","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[17537],"body":{"id":40600,"nodeType":"Block","src":"32465:456:110","statements":[{"assignments":[40539],"declarations":[{"constant":false,"id":40539,"mutability":"mutable","name":"balance","nameLocation":"32479:7:110","nodeType":"VariableDeclaration","scope":40600,"src":"32471:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":40538,"name":"uint256","nodeType":"ElementaryTypeName","src":"32471:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":40542,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":40540,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39440,"src":"32489:8:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":40541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32489:10:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"32471:28:110"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40545,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40543,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40539,"src":"32509:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":40544,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40532,"src":"32519:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32509:16:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":40589,"nodeType":"IfStatement","src":"32505:350:110","trueBody":{"id":40588,"nodeType":"Block","src":"32527:328:110","statements":[{"assignments":[40548],"declarations":[{"constant":false,"id":40548,"mutability":"mutable","name":"$","nameLocation":"32643:1:110","nodeType":"VariableDeclaration","scope":40588,"src":"32613:31:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":40547,"nodeType":"UserDefinedTypeName","pathNode":{"id":40546,"name":"CashFlowLenderStorage","nameLocations":["32613:21:110"],"nodeType":"IdentifierPath","referencedDeclaration":38357,"src":"32613:21:110"},"referencedDeclaration":38357,"src":"32613:21:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":40551,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":40549,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38368,"src":"32647:25:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$38357_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":40550,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32647:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"32613:61:110"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40555,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40553,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40532,"src":"32691:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":40554,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40539,"src":"32700:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32691:16:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":40556,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"32690:18:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[{"arguments":[{"id":40562,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"32746:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":40561,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32738:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":40560,"name":"address","nodeType":"ElementaryTypeName","src":"32738:7:110","typeDescriptions":{}}},"id":40563,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32738:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":40557,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40548,"src":"32712:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":40558,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32714:11:110","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":38344,"src":"32712:13:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":40559,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32726:11:110","memberName":"maxWithdraw","nodeType":"MemberAccess","referencedDeclaration":22414,"src":"32712:25:110","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":40564,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32712:40:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32690:62:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":40566,"name":"NotEnoughCash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38496,"src":"32754:13:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":40567,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32754:15:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":40552,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"32682:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":40568,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32682:88:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40569,"nodeType":"ExpressionStatement","src":"32682:88:110"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40577,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40575,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40532,"src":"32801:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":40576,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40539,"src":"32810:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"32801:16:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":40580,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"32827:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":40579,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32819:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":40578,"name":"address","nodeType":"ElementaryTypeName","src":"32819:7:110","typeDescriptions":{}}},"id":40581,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32819:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":40584,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"32842:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":40583,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32834:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":40582,"name":"address","nodeType":"ElementaryTypeName","src":"32834:7:110","typeDescriptions":{}}},"id":40585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32834:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":40570,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40548,"src":"32778:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":40573,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32780:11:110","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":38344,"src":"32778:13:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":40574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32792:8:110","memberName":"withdraw","nodeType":"MemberAccess","referencedDeclaration":22434,"src":"32778:22:110","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address,address) external returns (uint256)"}},"id":40586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32778:70:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":40587,"nodeType":"ExpressionStatement","src":"32778:70:110"}]}},{"expression":{"arguments":[{"id":40593,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40526,"src":"32876:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40594,"name":"receiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40528,"src":"32884:8:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40595,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40530,"src":"32894:5:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40596,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40532,"src":"32901:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":40597,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40534,"src":"32909:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":40590,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"32860:5:110","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_CashFlowLender_$40840_$","typeString":"type(contract super CashFlowLender)"}},"id":40592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32866:9:110","memberName":"_withdraw","nodeType":"MemberAccess","referencedDeclaration":17537,"src":"32860:15:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":40598,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32860:56:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40599,"nodeType":"ExpressionStatement","src":"32860:56:110"}]},"id":40601,"implemented":true,"kind":"function","modifiers":[],"name":"_withdraw","nameLocation":"32324:9:110","nodeType":"FunctionDefinition","overrides":{"id":40536,"nodeType":"OverrideSpecifier","overrides":[],"src":"32456:8:110"},"parameters":{"id":40535,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40526,"mutability":"mutable","name":"caller","nameLocation":"32347:6:110","nodeType":"VariableDeclaration","scope":40601,"src":"32339:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":40525,"name":"address","nodeType":"ElementaryTypeName","src":"32339:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":40528,"mutability":"mutable","name":"receiver","nameLocation":"32367:8:110","nodeType":"VariableDeclaration","scope":40601,"src":"32359:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":40527,"name":"address","nodeType":"ElementaryTypeName","src":"32359:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":40530,"mutability":"mutable","name":"owner","nameLocation":"32389:5:110","nodeType":"VariableDeclaration","scope":40601,"src":"32381:13:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":40529,"name":"address","nodeType":"ElementaryTypeName","src":"32381:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":40532,"mutability":"mutable","name":"assets","nameLocation":"32408:6:110","nodeType":"VariableDeclaration","scope":40601,"src":"32400:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":40531,"name":"uint256","nodeType":"ElementaryTypeName","src":"32400:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":40534,"mutability":"mutable","name":"shares","nameLocation":"32428:6:110","nodeType":"VariableDeclaration","scope":40601,"src":"32420:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":40533,"name":"uint256","nodeType":"ElementaryTypeName","src":"32420:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"32333:105:110"},"returnParameters":{"id":40537,"nodeType":"ParameterList","parameters":[],"src":"32465:0:110"},"scope":40840,"src":"32315:606:110","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":40643,"nodeType":"Block","src":"33227:235:110","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40607,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40604,"src":"33237:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":40610,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33252:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":40609,"name":"uint256","nodeType":"ElementaryTypeName","src":"33252:7:110","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":40608,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"33247:4:110","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":40611,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33247:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":40612,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"33261:3:110","memberName":"max","nodeType":"MemberAccess","src":"33247:17:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"33237:27:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":40632,"nodeType":"IfStatement","src":"33233:166:110","trueBody":{"id":40631,"nodeType":"Block","src":"33266:133:110","statements":[{"assignments":[40616],"declarations":[{"constant":false,"id":40616,"mutability":"mutable","name":"$","nameLocation":"33304:1:110","nodeType":"VariableDeclaration","scope":40631,"src":"33274:31:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":40615,"nodeType":"UserDefinedTypeName","pathNode":{"id":40614,"name":"CashFlowLenderStorage","nameLocations":["33274:21:110"],"nodeType":"IdentifierPath","referencedDeclaration":38357,"src":"33274:21:110"},"referencedDeclaration":38357,"src":"33274:21:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":40619,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":40617,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38368,"src":"33308:25:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$38357_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":40618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33308:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"33274:61:110"},{"expression":{"id":40629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":40620,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40604,"src":"33343:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":40626,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"33386:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":40625,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33378:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":40624,"name":"address","nodeType":"ElementaryTypeName","src":"33378:7:110","typeDescriptions":{}}},"id":40627,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33378:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":40621,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40616,"src":"33352:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":40622,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"33354:11:110","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":38344,"src":"33352:13:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":40623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33366:11:110","memberName":"maxWithdraw","nodeType":"MemberAccess","referencedDeclaration":22414,"src":"33352:25:110","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":40628,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33352:40:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"33343:49:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":40630,"nodeType":"ExpressionStatement","src":"33343:49:110"}]}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":40635,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40604,"src":"33422:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":40634,"name":"_deinvest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39712,"src":"33412:9:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) returns (uint256)"}},"id":40636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33412:17:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":40637,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40604,"src":"33433:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"33412:27:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":40639,"name":"NotEnoughCash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38496,"src":"33441:13:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":40640,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33441:15:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":40633,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"33404:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":40641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33404:53:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40642,"nodeType":"ExpressionStatement","src":"33404:53:110"}]},"documentation":{"id":40602,"nodeType":"StructuredDocumentation","src":"32925:242:110","text":" @dev Deinvest from the vault a given amount.\n      Requires $._yieldVault.maxWithdraw() <= amount\n @param amount Amount to withdraw from the `$._yieldVault`. If equal type(uint256).max, deinvests maxWithdraw()"},"functionSelector":"d336078c","id":40644,"implemented":true,"kind":"function","modifiers":[],"name":"withdrawFromYieldVault","nameLocation":"33179:22:110","nodeType":"FunctionDefinition","parameters":{"id":40605,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40604,"mutability":"mutable","name":"amount","nameLocation":"33210:6:110","nodeType":"VariableDeclaration","scope":40644,"src":"33202:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":40603,"name":"uint256","nodeType":"ElementaryTypeName","src":"33202:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"33201:16:110"},"returnParameters":{"id":40606,"nodeType":"ParameterList","parameters":[],"src":"33227:0:110"},"scope":40840,"src":"33170:292:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":40692,"nodeType":"Block","src":"33788:261:110","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40656,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40650,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40647,"src":"33798:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":40653,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33813:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":40652,"name":"uint256","nodeType":"ElementaryTypeName","src":"33813:7:110","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":40651,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"33808:4:110","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":40654,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33808:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":40655,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"33822:3:110","memberName":"max","nodeType":"MemberAccess","src":"33808:17:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"33798:27:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":40672,"nodeType":"Block","src":"33867:61:110","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40664,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40647,"src":"33883:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":40665,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39440,"src":"33893:8:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":40666,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33893:10:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"33883:20:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":40668,"name":"NotEnoughCash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38496,"src":"33905:13:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":40669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33905:15:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":40663,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"33875:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":40670,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33875:46:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40671,"nodeType":"ExpressionStatement","src":"33875:46:110"}]},"id":40673,"nodeType":"IfStatement","src":"33794:134:110","trueBody":{"id":40662,"nodeType":"Block","src":"33827:34:110","statements":[{"expression":{"id":40660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":40657,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40647,"src":"33835:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":40658,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39440,"src":"33844:8:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":40659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33844:10:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"33835:19:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":40661,"nodeType":"ExpressionStatement","src":"33835:19:110"}]}},{"assignments":[40676],"declarations":[{"constant":false,"id":40676,"mutability":"mutable","name":"$","nameLocation":"33963:1:110","nodeType":"VariableDeclaration","scope":40692,"src":"33933:31:110","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"},"typeName":{"id":40675,"nodeType":"UserDefinedTypeName","pathNode":{"id":40674,"name":"CashFlowLenderStorage","nameLocations":["33933:21:110"],"nodeType":"IdentifierPath","referencedDeclaration":38357,"src":"33933:21:110"},"referencedDeclaration":38357,"src":"33933:21:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage"}},"visibility":"internal"}],"id":40679,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":40677,"name":"_getCashFlowLenderStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38368,"src":"33967:25:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_CashFlowLenderStorage_$38357_storage_ptr_$","typeString":"function () pure returns (struct CashFlowLender.CashFlowLenderStorage storage pointer)"}},"id":40678,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33967:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"33933:61:110"},{"expression":{"arguments":[{"id":40685,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40647,"src":"34022:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":40688,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"34038:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":40687,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34030:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":40686,"name":"address","nodeType":"ElementaryTypeName","src":"34030:7:110","typeDescriptions":{}}},"id":40689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34030:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"expression":{"id":40680,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40676,"src":"34000:1:110","typeDescriptions":{"typeIdentifier":"t_struct$_CashFlowLenderStorage_$38357_storage_ptr","typeString":"struct CashFlowLender.CashFlowLenderStorage storage pointer"}},"id":40683,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34002:11:110","memberName":"_yieldVault","nodeType":"MemberAccess","referencedDeclaration":38344,"src":"34000:13:110","typeDescriptions":{"typeIdentifier":"t_contract$_IERC4626_$22463","typeString":"contract IERC4626"}},"id":40684,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"34014:7:110","memberName":"deposit","nodeType":"MemberAccess","referencedDeclaration":22380,"src":"34000:21:110","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_uint256_$_t_address_$returns$_t_uint256_$","typeString":"function (uint256,address) external returns (uint256)"}},"id":40690,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34000:44:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":40691,"nodeType":"ExpressionStatement","src":"34000:44:110"}]},"documentation":{"id":40645,"nodeType":"StructuredDocumentation","src":"33466:263:110","text":" @dev Moves money that's liquid in the contract to the yield vault, to generate yields\n      Requires _balance() >= amount\n @param amount Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`"},"functionSelector":"ac860f74","id":40693,"implemented":true,"kind":"function","modifiers":[],"name":"depositIntoYieldVault","nameLocation":"33741:21:110","nodeType":"FunctionDefinition","parameters":{"id":40648,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40647,"mutability":"mutable","name":"amount","nameLocation":"33771:6:110","nodeType":"VariableDeclaration","scope":40693,"src":"33763:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":40646,"name":"uint256","nodeType":"ElementaryTypeName","src":"33763:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"33762:16:110"},"returnParameters":{"id":40649,"nodeType":"ParameterList","parameters":[],"src":"33788:0:110"},"scope":40840,"src":"33732:317:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":40775,"nodeType":"Block","src":"34897:558:110","statements":[{"expression":{"arguments":[{"id":40708,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40696,"src":"34920:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":40707,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38911,"src":"34903:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$38340_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":40709,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34903:24:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":40710,"nodeType":"ExpressionStatement","src":"34903:24:110"},{"assignments":[40712],"declarations":[{"constant":false,"id":40712,"mutability":"mutable","name":"debtAfter","nameLocation":"34963:9:110","nodeType":"VariableDeclaration","scope":40775,"src":"34956:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":40711,"name":"int256","nodeType":"ElementaryTypeName","src":"34956:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":40721,"initialValue":{"arguments":[{"id":40714,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40696,"src":"34987:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40715,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40698,"src":"34995:8:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":40716,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40700,"src":"35005:9:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":40717,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40702,"src":"35016:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":40718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35023:8:110","memberName":"toInt256","nodeType":"MemberAccess","referencedDeclaration":36941,"src":"35016:15:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_int256_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (int256)"}},"id":40719,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35016:17:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":40713,"name":"_changeDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39772,"src":"34975:11:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_int256_$returns$_t_int256_$","typeString":"function (address,uint32,uint32,int256) returns (int256)"}},"id":40720,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34975:59:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"34956:78:110"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":40725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40723,"name":"debtAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40712,"src":"35048:9:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"30","id":40724,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"35061:1:110","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"35048:14:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":40727,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40702,"src":"35084:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":40728,"name":"debtAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40712,"src":"35092:9:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":40726,"name":"CashOutExceedsLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38506,"src":"35064:19:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_int256_$returns$_t_error_$","typeString":"function (uint256,int256) pure returns (error)"}},"id":40729,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35064:38:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":40722,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"35040:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":40730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35040:63:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40731,"nodeType":"ExpressionStatement","src":"35040:63:110"},{"assignments":[40733],"declarations":[{"constant":false,"id":40733,"mutability":"mutable","name":"balance","nameLocation":"35165:7:110","nodeType":"VariableDeclaration","scope":40775,"src":"35157:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":40732,"name":"uint256","nodeType":"ElementaryTypeName","src":"35157:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":40736,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":40734,"name":"_balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39440,"src":"35175:8:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":40735,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35175:10:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"35157:28:110"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40737,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40733,"src":"35195:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":40738,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40702,"src":"35205:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"35195:16:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":40756,"nodeType":"IfStatement","src":"35191:112:110","trueBody":{"id":40755,"nodeType":"Block","src":"35213:90:110","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40750,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40744,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40742,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40702,"src":"35239:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":40743,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40733,"src":"35248:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"35239:16:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":40741,"name":"_deinvest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39712,"src":"35229:9:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) returns (uint256)"}},"id":40745,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35229:27:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":40748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40746,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40702,"src":"35261:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":40747,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40733,"src":"35270:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"35261:16:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":40749,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"35260:18:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"35229:49:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":40751,"name":"NotEnoughCash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38496,"src":"35280:13:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":40752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35280:15:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":40740,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"35221:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":40753,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35221:75:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40754,"nodeType":"ExpressionStatement","src":"35221:75:110"}]}},{"expression":{"arguments":[{"id":40762,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40704,"src":"35345:11:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40763,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40702,"src":"35358:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":40758,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17037,"src":"35323:5:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":40759,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35323:7:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":40757,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"35308:14:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$24925_$","typeString":"type(contract IERC20Metadata)"}},"id":40760,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35308:23:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":40761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35332:12:110","memberName":"safeTransfer","nodeType":"MemberAccess","referencedDeclaration":25010,"src":"35308:36:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$24193_$","typeString":"function (contract IERC20,address,uint256)"}},"id":40764,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35308:57:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40765,"nodeType":"ExpressionStatement","src":"35308:57:110"},{"eventCall":{"arguments":[{"id":40767,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40696,"src":"35390:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40768,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40698,"src":"35398:8:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":40769,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40700,"src":"35408:9:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":40770,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40702,"src":"35419:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":40771,"name":"debtAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40712,"src":"35427:9:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":40772,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40704,"src":"35438:11:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":40766,"name":"CashOutPayout","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38404,"src":"35376:13:110","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_uint256_$_t_int256_$_t_address_$returns$__$","typeString":"function (address,uint32,uint32,uint256,int256,address)"}},"id":40773,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35376:74:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40774,"nodeType":"EmitStatement","src":"35371:79:110"}]},"documentation":{"id":40694,"nodeType":"StructuredDocumentation","src":"34053:696:110","text":" @dev Extracts money from the CFL that's owed to the customer, adjusting the debt (from negative to less negative)\n      in a given slot\n      Requires the debt of the slot <= -amount\n      Requires the CFL has enough funds (liquid + invested in the $._yieldVault)\n      emits {CashOutPayout}\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param slotSize Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\n @param slotIndex Current slot time selected\n @param amount Amount to cash out\n @param destination Address that will receive the funds"},"functionSelector":"225c531e","id":40776,"implemented":true,"kind":"function","modifiers":[],"name":"cashOutPayouts","nameLocation":"34761:14:110","nodeType":"FunctionDefinition","parameters":{"id":40705,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40696,"mutability":"mutable","name":"target","nameLocation":"34789:6:110","nodeType":"VariableDeclaration","scope":40776,"src":"34781:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":40695,"name":"address","nodeType":"ElementaryTypeName","src":"34781:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":40698,"mutability":"mutable","name":"slotSize","nameLocation":"34808:8:110","nodeType":"VariableDeclaration","scope":40776,"src":"34801:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":40697,"name":"uint32","nodeType":"ElementaryTypeName","src":"34801:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":40700,"mutability":"mutable","name":"slotIndex","nameLocation":"34829:9:110","nodeType":"VariableDeclaration","scope":40776,"src":"34822:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":40699,"name":"uint32","nodeType":"ElementaryTypeName","src":"34822:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":40702,"mutability":"mutable","name":"amount","nameLocation":"34852:6:110","nodeType":"VariableDeclaration","scope":40776,"src":"34844:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":40701,"name":"uint256","nodeType":"ElementaryTypeName","src":"34844:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":40704,"mutability":"mutable","name":"destination","nameLocation":"34872:11:110","nodeType":"VariableDeclaration","scope":40776,"src":"34864:19:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":40703,"name":"address","nodeType":"ElementaryTypeName","src":"34864:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"34775:112:110"},"returnParameters":{"id":40706,"nodeType":"ParameterList","parameters":[],"src":"34897:0:110"},"scope":40840,"src":"34752:703:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":40838,"nodeType":"Block","src":"36093:381:110","statements":[{"expression":{"arguments":[{"id":40789,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40779,"src":"36116:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":40788,"name":"_getTargetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38911,"src":"36099:16:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_struct$_TargetConfig_$38340_storage_ptr_$","typeString":"function (address) view returns (struct CashFlowLender.TargetConfig storage pointer)"}},"id":40790,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36099:24:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_TargetConfig_$38340_storage_ptr","typeString":"struct CashFlowLender.TargetConfig storage pointer"}},"id":40791,"nodeType":"ExpressionStatement","src":"36099:24:110"},{"assignments":[40793],"declarations":[{"constant":false,"id":40793,"mutability":"mutable","name":"debtAfter","nameLocation":"36160:9:110","nodeType":"VariableDeclaration","scope":40838,"src":"36153:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":40792,"name":"int256","nodeType":"ElementaryTypeName","src":"36153:6:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":40803,"initialValue":{"arguments":[{"id":40795,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40779,"src":"36184:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40796,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40781,"src":"36192:8:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":40797,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40783,"src":"36202:9:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":40801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"36213:18:110","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":40798,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40785,"src":"36214:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":40799,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"36221:8:110","memberName":"toInt256","nodeType":"MemberAccess","referencedDeclaration":36941,"src":"36214:15:110","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_int256_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (int256)"}},"id":40800,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36214:17:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":40794,"name":"_changeDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":39772,"src":"36172:11:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_int256_$returns$_t_int256_$","typeString":"function (address,uint32,uint32,int256) returns (int256)"}},"id":40802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36172:60:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"36153:79:110"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":40807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":40805,"name":"debtAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40793,"src":"36246:9:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":40806,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"36259:1:110","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"36246:14:110","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"id":40809,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40785,"src":"36284:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":40810,"name":"debtAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40793,"src":"36292:9:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":40808,"name":"RepaymentExceedsLimit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38512,"src":"36262:21:110","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_int256_$returns$_t_error_$","typeString":"function (uint256,int256) pure returns (error)"}},"id":40811,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36262:40:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":40804,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"36238:7:110","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":40812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36238:65:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40813,"nodeType":"ExpressionStatement","src":"36238:65:110"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":40819,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[39409],"referencedDeclaration":39409,"src":"36351:10:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":40820,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36351:12:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":40823,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"36373:4:110","typeDescriptions":{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_CashFlowLender_$40840","typeString":"contract CashFlowLender"}],"id":40822,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"36365:7:110","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":40821,"name":"address","nodeType":"ElementaryTypeName","src":"36365:7:110","typeDescriptions":{}}},"id":40824,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36365:13:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40825,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40785,"src":"36380:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":40815,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17037,"src":"36325:5:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":40816,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36325:7:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":40814,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"36310:14:110","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$24925_$","typeString":"type(contract IERC20Metadata)"}},"id":40817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36310:23:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"id":40818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"36334:16:110","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":25041,"src":"36310:40:110","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$24193_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$24193_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":40826,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36310:77:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40827,"nodeType":"ExpressionStatement","src":"36310:77:110"},{"eventCall":{"arguments":[{"id":40829,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40779,"src":"36408:6:110","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":40830,"name":"slotSize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40781,"src":"36416:8:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":40831,"name":"slotIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40783,"src":"36426:9:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":40832,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40785,"src":"36437:6:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":40833,"name":"debtAfter","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":40793,"src":"36445:9:110","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":40834,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[39409],"referencedDeclaration":39409,"src":"36456:10:110","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":40835,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36456:12:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":40828,"name":"RepayDebt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":38418,"src":"36398:9:110","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint32_$_t_uint32_$_t_uint256_$_t_int256_$_t_address_$returns$__$","typeString":"function (address,uint32,uint32,uint256,int256,address)"}},"id":40836,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36398:71:110","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":40837,"nodeType":"EmitStatement","src":"36393:76:110"}]},"documentation":{"id":40777,"nodeType":"StructuredDocumentation","src":"35459:536:110","text":" @dev Repays debt to the CFL that's owed by the customer, adjusting the debt (from positive to less positive)\n      in a given slot\n      Requires the debt of the slot >= amount\n      emits {RepayDebt}\n @param target Address of the target contract. It must be one previously added with {addTarget}.\n @param slotSize Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\n @param slotIndex Current slot time selected\n @param amount Amount to pay"},"functionSelector":"82dbbd71","id":40839,"implemented":true,"kind":"function","modifiers":[],"name":"repayDebt","nameLocation":"36007:9:110","nodeType":"FunctionDefinition","parameters":{"id":40786,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40779,"mutability":"mutable","name":"target","nameLocation":"36025:6:110","nodeType":"VariableDeclaration","scope":40839,"src":"36017:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":40778,"name":"address","nodeType":"ElementaryTypeName","src":"36017:7:110","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":40781,"mutability":"mutable","name":"slotSize","nameLocation":"36040:8:110","nodeType":"VariableDeclaration","scope":40839,"src":"36033:15:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":40780,"name":"uint32","nodeType":"ElementaryTypeName","src":"36033:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":40783,"mutability":"mutable","name":"slotIndex","nameLocation":"36057:9:110","nodeType":"VariableDeclaration","scope":40839,"src":"36050:16:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":40782,"name":"uint32","nodeType":"ElementaryTypeName","src":"36050:6:110","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":40785,"mutability":"mutable","name":"amount","nameLocation":"36076:6:110","nodeType":"VariableDeclaration","scope":40839,"src":"36068:14:110","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":40784,"name":"uint256","nodeType":"ElementaryTypeName","src":"36068:7:110","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"36016:67:110"},"returnParameters":{"id":40787,"nodeType":"ParameterList","parameters":[],"src":"36093:0:110"},"scope":40840,"src":"35998:476:110","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":40841,"src":"3399:33077:110","usedErrors":[16839,16848,16857,16866,22518,22523,22528,22537,22542,22547,22846,22859,23183,23186,23457,23462,24973,25668,26799,26802,35197,35214,38457,38461,38468,38470,38472,38474,38480,38488,38492,38494,38496,38500,38506,38512,38514],"usedEvents":[22272,22314,22326,23191,24127,24136,38376,38390,38404,38418,38425,38437,38447,38455]}],"src":"39:36438:110"},"id":110},"contracts/dependencies/IPolicyPool.sol":{"ast":{"absolutePath":"contracts/dependencies/IPolicyPool.sol","exportedSymbols":{"IERC20Metadata":[24925],"IPolicyPool":[40853]},"id":40854,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":40842,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"39:23:111"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","id":40844,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40854,"sourceUnit":24926,"src":"64:97:111","symbolAliases":[{"foreign":{"id":40843,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24925,"src":"72:14:111","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IPolicyPool","contractDependencies":[],"contractKind":"interface","documentation":{"id":40845,"nodeType":"StructuredDocumentation","src":"163:107:111","text":" @dev Minimalistic version of the IPolicyPool interface, just the methods needed for this project"},"fullyImplemented":false,"id":40853,"linearizedBaseContracts":[40853],"name":"IPolicyPool","nameLocation":"281:11:111","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":40846,"nodeType":"StructuredDocumentation","src":"297:159:111","text":" @dev Reference to the main currency (ERC20) used in the protocol\n @return The address of the currency (e.g. USDC) token used in the protocol"},"functionSelector":"e5a6b10f","id":40852,"implemented":false,"kind":"function","modifiers":[],"name":"currency","nameLocation":"468:8:111","nodeType":"FunctionDefinition","parameters":{"id":40847,"nodeType":"ParameterList","parameters":[],"src":"476:2:111"},"returnParameters":{"id":40851,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40850,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":40852,"src":"502:14:111","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"},"typeName":{"id":40849,"nodeType":"UserDefinedTypeName","pathNode":{"id":40848,"name":"IERC20Metadata","nameLocations":["502:14:111"],"nodeType":"IdentifierPath","referencedDeclaration":24925,"src":"502:14:111"},"referencedDeclaration":24925,"src":"502:14:111","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$24925","typeString":"contract IERC20Metadata"}},"visibility":"internal"}],"src":"501:16:111"},"scope":40853,"src":"459:59:111","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":40854,"src":"271:249:111","usedErrors":[],"usedEvents":[]}],"src":"39:482:111"},"id":111},"contracts/dependencies/IRiskModule.sol":{"ast":{"absolutePath":"contracts/dependencies/IRiskModule.sol","exportedSymbols":{"IRiskModule":[40879],"Policy":[8314]},"id":40880,"license":"Apache-2.0","nodeType":"SourceUnit","nodes":[{"id":40855,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"39:23:112"},{"absolutePath":"@ensuro/core/contracts/Policy.sol","file":"@ensuro/core/contracts/Policy.sol","id":40857,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40880,"sourceUnit":8315,"src":"64:57:112","symbolAliases":[{"foreign":{"id":40856,"name":"Policy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8314,"src":"72:6:112","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IRiskModule","contractDependencies":[],"contractKind":"interface","documentation":{"id":40858,"nodeType":"StructuredDocumentation","src":"123:107:112","text":" @dev Minimalistic version of the IRiskModule interface, just the methods needed for this project"},"fullyImplemented":false,"id":40879,"linearizedBaseContracts":[40879],"name":"IRiskModule","nameLocation":"241:11:112","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":40859,"nodeType":"StructuredDocumentation","src":"257:306:112","text":" @dev Creates a new policy. The premium will paid by msg.sender\n @param inputData Input data that will be decoded by the _underwriter to construct the parameters for the\n                  new policy.\n @param onBehalfOf The address that will be the owner of the created policy"},"functionSelector":"8dab1952","id":40869,"implemented":false,"kind":"function","modifiers":[],"name":"newPolicy","nameLocation":"575:9:112","nodeType":"FunctionDefinition","parameters":{"id":40864,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40861,"mutability":"mutable","name":"inputData","nameLocation":"600:9:112","nodeType":"VariableDeclaration","scope":40869,"src":"585:24:112","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":40860,"name":"bytes","nodeType":"ElementaryTypeName","src":"585:5:112","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":40863,"mutability":"mutable","name":"onBehalfOf","nameLocation":"619:10:112","nodeType":"VariableDeclaration","scope":40869,"src":"611:18:112","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":40862,"name":"address","nodeType":"ElementaryTypeName","src":"611:7:112","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"584:46:112"},"returnParameters":{"id":40868,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40867,"mutability":"mutable","name":"policy","nameLocation":"674:6:112","nodeType":"VariableDeclaration","scope":40869,"src":"649:31:112","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_memory_ptr","typeString":"struct Policy.PolicyData"},"typeName":{"id":40866,"nodeType":"UserDefinedTypeName","pathNode":{"id":40865,"name":"Policy.PolicyData","nameLocations":["649:6:112","656:10:112"],"nodeType":"IdentifierPath","referencedDeclaration":7744,"src":"649:17:112"},"referencedDeclaration":7744,"src":"649:17:112","typeDescriptions":{"typeIdentifier":"t_struct$_PolicyData_$7744_storage_ptr","typeString":"struct Policy.PolicyData"}},"visibility":"internal"}],"src":"648:33:112"},"scope":40879,"src":"566:116:112","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":40870,"nodeType":"StructuredDocumentation","src":"686:336:112","text":" @dev Creates several policies, the premium is paid by msg.sender\n @param inputData Input data that will be decoded by the _underwriter to construct the parameters for the\n                  new policy.\n @param onBehalfOf The address that will be the owner of the created policy (same for all the policies)"},"functionSelector":"1f0f3e18","id":40878,"implemented":false,"kind":"function","modifiers":[],"name":"newPolicies","nameLocation":"1034:11:112","nodeType":"FunctionDefinition","parameters":{"id":40876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":40873,"mutability":"mutable","name":"inputData","nameLocation":"1063:9:112","nodeType":"VariableDeclaration","scope":40878,"src":"1046:26:112","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":40871,"name":"bytes","nodeType":"ElementaryTypeName","src":"1046:5:112","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":40872,"nodeType":"ArrayTypeName","src":"1046:7:112","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"},{"constant":false,"id":40875,"mutability":"mutable","name":"onBehalfOf","nameLocation":"1082:10:112","nodeType":"VariableDeclaration","scope":40878,"src":"1074:18:112","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":40874,"name":"address","nodeType":"ElementaryTypeName","src":"1074:7:112","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1045:48:112"},"returnParameters":{"id":40877,"nodeType":"ParameterList","parameters":[],"src":"1102:0:112"},"scope":40879,"src":"1025:78:112","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":40880,"src":"231:874:112","usedErrors":[],"usedEvents":[]}],"src":"39:1067:112"},"id":112},"contracts/hardhat-dependency-compiler/@account-abstraction/contracts/core/EntryPoint.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@account-abstraction/contracts/core/EntryPoint.sol","exportedSymbols":{"ERC165":[33323],"EntryPoint":[2236],"Exec":[3839],"IAccount":[3335],"IAccountExecute":[3348],"IAggregator":[3382],"IERC165":[33545],"IEntryPoint":[3566],"INonceManager":[3585],"IPaymaster":[3622],"IStakeManager":[3726],"NonceManager":[2506],"PackedUserOperation":[3748],"ReentrancyGuard":[31110],"SIG_VALIDATION_FAILED":[2241],"SIG_VALIDATION_SUCCESS":[2244],"SenderCreator":[2553],"StakeManager":[2961],"StorageSlot":[31234],"UserOperationLib":[3318],"ValidationData":[2252],"_packValidationData":[2349,2387],"_parseValidationData":[2312],"calldataKeccak":[2397],"min":[2415]},"id":40883,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":40881,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:113"},{"absolutePath":"@account-abstraction/contracts/core/EntryPoint.sol","file":"@account-abstraction/contracts/core/EntryPoint.sol","id":40882,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40883,"sourceUnit":2237,"src":"63:60:113","symbolAliases":[],"unitAlias":""}],"src":"39:85:113"},"id":113},"contracts/hardhat-dependency-compiler/@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol","exportedSymbols":{"AccessControl":[19727],"Address":[26046],"BaseAccount":[138],"ECDSA":[33173],"ERC2771Context":[22788],"ERC2771ForwarderAccount":[4776],"IEntryPoint":[3566],"MessageHashUtils":[33299],"PackedUserOperation":[3748],"SIG_VALIDATION_FAILED":[2241],"SIG_VALIDATION_SUCCESS":[2244]},"id":40886,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":40884,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:114"},{"absolutePath":"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol","file":"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol","id":40885,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40886,"sourceUnit":4777,"src":"63:75:114","symbolAliases":[],"unitAlias":""}],"src":"39:100:114"},"id":114},"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/EToken.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/EToken.sol","exportedSymbols":{"ERC20PermitUpgradeable":[16782],"ERC20Upgradeable":[16613],"ETKLib":[5761],"EToken":[7681],"ICooler":[14162],"IERC165":[33545],"IERC20":[24193],"IERC20Metadata":[24925],"IERC4626":[22463],"IEToken":[14336],"ILPWhitelist":[14383],"IPolicyPool":[14638],"IPolicyPoolComponent":[14655],"Math":[35187],"Reserve":[13500],"SafeCast":[36952],"SafeERC20":[25416]},"id":40889,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":40887,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:115"},{"absolutePath":"@ensuro/core/contracts/EToken.sol","file":"@ensuro/core/contracts/EToken.sol","id":40888,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40889,"sourceUnit":7682,"src":"63:43:115","symbolAliases":[],"unitAlias":""}],"src":"39:68:115"},"id":115},"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/PolicyPool.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/PolicyPool.sol","exportedSymbols":{"ERC165Checker":[33533],"ERC721Upgradeable":[18626],"IERC165":[33545],"IERC20Metadata":[24925],"IERC20Permit":[24961],"IEToken":[14336],"IPolicyHolder":[14449],"IPolicyPool":[14638],"IPolicyPoolComponent":[14655],"IPremiumsAccount":[14743],"IRiskModule":[14762],"MulticallUpgradeable":[18775],"PausableUpgradeable":[19046],"Policy":[8314],"PolicyPool":[10934],"SafeCast":[36952],"SafeERC20":[25416],"UUPSUpgradeable":[23600]},"id":40892,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":40890,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:116"},{"absolutePath":"@ensuro/core/contracts/PolicyPool.sol","file":"@ensuro/core/contracts/PolicyPool.sol","id":40891,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40892,"sourceUnit":10935,"src":"63:47:116","symbolAliases":[],"unitAlias":""}],"src":"39:72:116"},"id":116},"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/PremiumsAccount.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/PremiumsAccount.sol","exportedSymbols":{"IERC20Metadata":[24925],"IERC4626":[22463],"IEToken":[14336],"IPolicyPool":[14638],"IPremiumsAccount":[14743],"Math":[35187],"Policy":[8314],"PremiumsAccount":[12847],"Reserve":[13500],"SafeCast":[36952],"SafeERC20":[25416]},"id":40895,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":40893,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:117"},{"absolutePath":"@ensuro/core/contracts/PremiumsAccount.sol","file":"@ensuro/core/contracts/PremiumsAccount.sol","id":40894,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40895,"sourceUnit":12848,"src":"63:52:117","symbolAliases":[],"unitAlias":""}],"src":"39:77:117"},"id":117},"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/RiskModule.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/RiskModule.sol","exportedSymbols":{"IPolicyPool":[14638],"IPremiumsAccount":[14743],"IRiskModule":[14762],"IUnderwriter":[14830],"Policy":[8314],"PolicyPoolComponent":[11094],"RiskModule":[14134],"SafeCast":[36952]},"id":40898,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":40896,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:118"},{"absolutePath":"@ensuro/core/contracts/RiskModule.sol","file":"@ensuro/core/contracts/RiskModule.sol","id":40897,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40898,"sourceUnit":14135,"src":"63:47:118","symbolAliases":[],"unitAlias":""}],"src":"39:72:118"},"id":118},"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/interfaces/IPolicyHolder.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/interfaces/IPolicyHolder.sol","exportedSymbols":{"IERC721Receiver":[25551],"IPolicyHolder":[14449]},"id":40901,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":40899,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:119"},{"absolutePath":"@ensuro/core/contracts/interfaces/IPolicyHolder.sol","file":"@ensuro/core/contracts/interfaces/IPolicyHolder.sol","id":40900,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40901,"sourceUnit":14450,"src":"63:61:119","symbolAliases":[],"unitAlias":""}],"src":"39:86:119"},"id":119},"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/underwriters/FullSignedUW.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/underwriters/FullSignedUW.sol","exportedSymbols":{"AccessManagedProxy":[4170],"ECDSA":[33173],"FullSignedUW":[15265],"IUnderwriter":[14830],"MessageHashUtils":[33299],"Policy":[8314]},"id":40904,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":40902,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:120"},{"absolutePath":"@ensuro/core/contracts/underwriters/FullSignedUW.sol","file":"@ensuro/core/contracts/underwriters/FullSignedUW.sol","id":40903,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40904,"sourceUnit":15266,"src":"63:62:120","symbolAliases":[],"unitAlias":""}],"src":"39:87:120"},"id":120},"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/underwriters/FullTrustedUW.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/core/contracts/underwriters/FullTrustedUW.sol","exportedSymbols":{"FullTrustedUW":[15439],"IUnderwriter":[14830],"Policy":[8314]},"id":40907,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":40905,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:121"},{"absolutePath":"@ensuro/core/contracts/underwriters/FullTrustedUW.sol","file":"@ensuro/core/contracts/underwriters/FullTrustedUW.sol","id":40906,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40907,"sourceUnit":15440,"src":"63:63:121","symbolAliases":[],"unitAlias":""}],"src":"39:88:121"},"id":121},"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestCurrency.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestCurrency.sol","exportedSymbols":{"ERC20":[24115],"TestCurrency":[15509]},"id":40910,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":40908,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:122"},{"absolutePath":"@ensuro/utils/contracts/TestCurrency.sol","file":"@ensuro/utils/contracts/TestCurrency.sol","id":40909,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40910,"sourceUnit":15510,"src":"63:50:122","symbolAliases":[],"unitAlias":""}],"src":"39:75:122"},"id":122},"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestERC4626.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@ensuro/utils/contracts/TestERC4626.sol","exportedSymbols":{"ERC20":[24115],"ERC4626":[24899],"IERC20Metadata":[24925],"IMintable":[15532],"TestERC4626":[15843]},"id":40913,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":40911,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:123"},{"absolutePath":"@ensuro/utils/contracts/TestERC4626.sol","file":"@ensuro/utils/contracts/TestERC4626.sol","id":40912,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40913,"sourceUnit":15844,"src":"63:49:123","symbolAliases":[],"unitAlias":""}],"src":"39:74:123"},"id":123},"contracts/hardhat-dependency-compiler/@openzeppelin/contracts/access/manager/AccessManager.sol":{"ast":{"absolutePath":"contracts/hardhat-dependency-compiler/@openzeppelin/contracts/access/manager/AccessManager.sol","exportedSymbols":{"AccessManager":[21708],"Address":[26046],"Context":[26789],"Hashes":[33213],"IAccessManaged":[21748],"IAccessManager":[22178],"Math":[35187],"Multicall":[27359],"Time":[37370]},"id":40916,"license":"UNLICENSED","nodeType":"SourceUnit","nodes":[{"id":40914,"literals":["solidity",">","0.0",".0"],"nodeType":"PragmaDirective","src":"39:23:124"},{"absolutePath":"@openzeppelin/contracts/access/manager/AccessManager.sol","file":"@openzeppelin/contracts/access/manager/AccessManager.sol","id":40915,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":40916,"sourceUnit":21709,"src":"63:66:124","symbolAliases":[],"unitAlias":""}],"src":"39:91:124"},"id":124}},"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.30+commit.73712a01\"},\"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\":\"prague\",\"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/EntryPoint.sol":{"EntryPoint":{"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":[],"name":"ReentrancyGuardReentrantCall","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":"","type":"address"}],"name":"deposits","outputs":[{"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"}],"stateMutability":"view","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":[{"internalType":"bytes","name":"callData","type":"bytes"},{"components":[{"components":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"verificationGasLimit","type":"uint256"},{"internalType":"uint256","name":"callGasLimit","type":"uint256"},{"internalType":"uint256","name":"paymasterVerificationGasLimit","type":"uint256"},{"internalType":"uint256","name":"paymasterPostOpGasLimit","type":"uint256"},{"internalType":"uint256","name":"preVerificationGas","type":"uint256"},{"internalType":"address","name":"paymaster","type":"address"},{"internalType":"uint256","name":"maxFeePerGas","type":"uint256"},{"internalType":"uint256","name":"maxPriorityFeePerGas","type":"uint256"}],"internalType":"struct EntryPoint.MemoryUserOp","name":"mUserOp","type":"tuple"},{"internalType":"bytes32","name":"userOpHash","type":"bytes32"},{"internalType":"uint256","name":"prefund","type":"uint256"},{"internalType":"uint256","name":"contextOffset","type":"uint256"},{"internalType":"uint256","name":"preOpGas","type":"uint256"}],"internalType":"struct EntryPoint.UserOpInfo","name":"opInfo","type":"tuple"},{"internalType":"bytes","name":"context","type":"bytes"}],"name":"innerHandleOp","outputs":[{"internalType":"uint256","name":"actualGasCost","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint192","name":"","type":"uint192"}],"name":"nonceSequenceNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"@_31029":{"entryPoint":null,"id":31029,"parameterSlots":0,"returnSlots":0},"@_reentrancyGuardStorageSlot_31109":{"entryPoint":null,"id":31109,"parameterSlots":0,"returnSlots":1},"@getUint256Slot_31178":{"entryPoint":null,"id":31178,"parameterSlots":1,"returnSlots":1}},"generatedSources":[],"linkReferences":{},"object":"60a0604052604051600e906066565b604051809103905ff0801580156026573d5f5f3e3d5ffd5b506001600160a01b0316608052348015603d575f5ffd5b5060017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00556073565b610218806137a883390190565b6080516137166100925f395f8181610dec015261275101526137165ff3fe608060405260043610610107575f3560e01c806370a0823111610092578063b760faf911610062578063b760faf914610425578063bb9fe6bf14610438578063c23a5cea1461044c578063dbed18e01461046b578063fc7e286d1461048a575f5ffd5b806370a0823114610394578063765e827f146103c8578063850aaf62146103e75780639b249f6914610406575f5ffd5b80631b2e01b8116100d85780631b2e01b8146101ae578063205c2878146101e457806322cdde4c1461020357806335567e1a146102225780635287ce1214610280575f5ffd5b806242dc531461011b57806301ffc9a71461014d5780630396cb601461017c5780630bd28e3b1461018f575f5ffd5b366101175761011533610530565b005b5f5ffd5b348015610126575f5ffd5b5061013a610135366004612c88565b610584565b6040519081526020015b60405180910390f35b348015610158575f5ffd5b5061016c610167366004612d40565b610702565b6040519015158152602001610144565b61011561018a366004612d67565b610789565b34801561019a575f5ffd5b506101156101a9366004612da0565b610a14565b3480156101b9575f5ffd5b5061013a6101c8366004612db9565b600160209081525f928352604080842090915290825290205481565b3480156101ef575f5ffd5b506101156101fe366004612dec565b610a4a565b34801561020e575f5ffd5b5061013a61021d366004612e16565b610b96565b34801561022d575f5ffd5b5061013a61023c366004612db9565b6001600160a01b0382165f9081526001602090815260408083206001600160c01b038516845290915290819020549082901b67ffffffffffffffff19161792915050565b34801561028b575f5ffd5b5061033a61029a366004612e4d565b6040805160a0810182525f80825260208201819052918101829052606081018290526080810191909152506001600160a01b03165f9081526020818152604091829020825160a0810184528154815260019091015460ff811615159282019290925261010082046001600160701b031692810192909252600160781b810463ffffffff166060830152600160981b900465ffffffffffff16608082015290565b60405161014491905f60a082019050825182526020830151151560208301526001600160701b03604084015116604083015263ffffffff606084015116606083015265ffffffffffff608084015116608083015292915050565b34801561039f575f5ffd5b5061013a6103ae366004612e4d565b6001600160a01b03165f9081526020819052604090205490565b3480156103d3575f5ffd5b506101156103e2366004612ea8565b610bd7565b3480156103f2575f5ffd5b50610115610401366004612efa565b610d58565b348015610411575f5ffd5b50610115610420366004612f4a565b610dd3565b610115610433366004612e4d565b610530565b348015610443575f5ffd5b50610115610e8a565b348015610457575f5ffd5b50610115610466366004612e4d565b610fb4565b348015610476575f5ffd5b50610115610485366004612ea8565b6111d3565b348015610495575f5ffd5b506104ed6104a4366004612e4d565b5f602081905290815260409020805460019091015460ff81169061010081046001600160701b031690600160781b810463ffffffff1690600160981b900465ffffffffffff1685565b6040805195865293151560208601526001600160701b039092169284019290925263ffffffff909116606083015265ffffffffffff16608082015260a001610144565b5f61053b82346115e6565b9050816001600160a01b03167f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c48260405161057891815260200190565b60405180910390a25050565b5f5f5a90503330146105dd5760405162461bcd60e51b815260206004820152601760248201527f4141393220696e7465726e616c2063616c6c206f6e6c7900000000000000000060448201526064015b60405180910390fd5b8451606081015160a082015181016127100160405a603f028161060257610602612f88565b0410156106185763deaddead60e01b5f5260205ffd5b87515f90156106a6575f610631845f01515f8c86611618565b9050806106a4575f61064461080061162e565b80519091501561069e57845f01516001600160a01b03168a602001517f1c4fada7374c0a9ee8841fc38afe82932dc0f8e69012e927f061a8bae611a201876020015184604051610695929190612fca565b60405180910390a35b60019250505b505b5f88608001515a86030190506106f4828a8a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250879250611659915050565b9a9950505050505050505050565b5f6001600160e01b0319821663307e35b760e11b148061073257506001600160e01b0319821663122a0e9b60e31b145b8061074d57506001600160e01b0319821663cf28ef9760e01b145b8061076857506001600160e01b03198216633e84f02160e01b145b8061078357506301ffc9a760e01b6001600160e01b03198316145b92915050565b335f90815260208190526040902063ffffffff82166107ea5760405162461bcd60e51b815260206004820152601a60248201527f6d757374207370656369667920756e7374616b652064656c617900000000000060448201526064016105d4565b600181015463ffffffff600160781b9091048116908316101561084f5760405162461bcd60e51b815260206004820152601c60248201527f63616e6e6f7420646563726561736520756e7374616b652074696d650000000060448201526064016105d4565b60018101545f9061086f90349061010090046001600160701b0316612ff6565b90505f81116108b55760405162461bcd60e51b81526020600482015260126024820152711b9bc81cdd185ad9481cdc1958da599a595960721b60448201526064016105d4565b6001600160701b038111156108fd5760405162461bcd60e51b815260206004820152600e60248201526d7374616b65206f766572666c6f7760901b60448201526064016105d4565b6040805160a08101825283548152600160208083018281526001600160701b0386811685870190815263ffffffff8a8116606088018181525f60808a0181815233808352828a52918c90209a518b55965199909801805494519151965165ffffffffffff16600160981b0265ffffffffffff60981b1997909416600160781b029690961669ffffffffffffffffffff60781b1991909516610100026effffffffffffffffffffffffffff0019991515999099166effffffffffffffffffffffffffffff1990941693909317979097179190911691909117179055835185815290810192909252917fa5ae833d0bb1dcd632d98a8b70973e8516812898e19bf27b70071ebc8dc52c01910160405180910390a2505050565b335f9081526001602090815260408083206001600160c01b03851684529091528120805491610a4283613009565b919050555050565b335f9081526020819052604090208054821115610aa95760405162461bcd60e51b815260206004820152601960248201527f576974686472617720616d6f756e7420746f6f206c617267650000000000000060448201526064016105d4565b8054610ab6908390613021565b8155604080516001600160a01b03851681526020810184905233917fd1c19fbcd4551a5edfb66d43d2e337c04837afda3482b42bdf569a8fccdae5fb910160405180910390a25f836001600160a01b0316836040515f6040518083038185875af1925050503d805f8114610b45576040519150601f19603f3d011682016040523d82523d5f602084013e610b4a565b606091505b5050905080610b905760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b60448201526064016105d4565b50505050565b5f610ba082611811565b6040805160208101929092523090820152466060820152608001604051602081830303815290604052805190602001209050919050565b610bdf611829565b815f816001600160401b03811115610bf957610bf9612a93565b604051908082528060200260200182016040528015610c3257816020015b610c1f612a0c565b815260200190600190039081610c175790505b5090505f5b82811015610ca7575f828281518110610c5257610c52613034565b602002602001015190505f5f610c8c848a8a87818110610c7457610c74613034565b9050602002810190610c869190613048565b85611844565b91509150610c9c8483835f611a46565b505050600101610c37565b506040515f907fbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972908290a15f5b83811015610d2f57610d2381888884818110610cf257610cf2613034565b9050602002810190610d049190613048565b858481518110610d1657610d16613034565b6020026020010151611be0565b90910190600101610cd4565b50610d3a8482611e8e565b505050610d5360015f5160206136c15f395f51905f5255565b505050565b5f5f846001600160a01b03168484604051610d74929190613067565b5f60405180830381855af49150503d805f8114610dac576040519150601f19603f3d011682016040523d82523d5f602084013e610db1565b606091505b50915091508181604051632650415560e21b81526004016105d4929190613076565b604051632b870d1b60e11b81525f906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063570e1a3690610e2390869086906004016130b8565b6020604051808303815f875af1158015610e3f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e6391906130cb565b604051633653dc0360e11b81526001600160a01b03821660048201529091506024016105d4565b335f90815260208190526040812060018101549091600160781b90910463ffffffff169003610ee85760405162461bcd60e51b815260206004820152600a6024820152691b9bdd081cdd185ad95960b21b60448201526064016105d4565b600181015460ff16610f305760405162461bcd60e51b8152602060048201526011602482015270616c726561647920756e7374616b696e6760781b60448201526064016105d4565b60018101545f90610f4e90600160781b900463ffffffff16426130e6565b60018301805460ff65ffffffffffff60981b011916600160981b65ffffffffffff841690810260ff19169190911790915560405190815290915033907ffa9b3c14cc825c412c9ed81b3ba365a5b459439403f18829e572ed53a4180f0a90602001610578565b335f908152602081905260409020600181015461010090046001600160701b0316806110195760405162461bcd60e51b81526020600482015260146024820152734e6f207374616b6520746f20776974686472617760601b60448201526064016105d4565b6001820154600160981b900465ffffffffffff166110795760405162461bcd60e51b815260206004820152601d60248201527f6d7573742063616c6c20756e6c6f636b5374616b65282920666972737400000060448201526064016105d4565b600182015442600160981b90910465ffffffffffff1611156110dd5760405162461bcd60e51b815260206004820152601b60248201527f5374616b65207769746864726177616c206973206e6f7420647565000000000060448201526064016105d4565b600182018054610100600160c81b0319169055604080516001600160a01b03851681526020810183905233917fb7c918e0e249f999e965cafeb6c664271b3f4317d296461500e71da39f0cbda3910160405180910390a25f836001600160a01b0316826040515f6040518083038185875af1925050503d805f811461117d576040519150601f19603f3d011682016040523d82523d5f602084013e611182565b606091505b5050905080610b905760405162461bcd60e51b815260206004820152601860248201527f6661696c656420746f207769746864726177207374616b65000000000000000060448201526064016105d4565b6111db611829565b815f805b8281101561134257368686838181106111fa576111fa613034565b905060200281019061120c9190613104565b9050365f61121a8380613118565b90925090505f6112306040850160208601612e4d565b90505f196001600160a01b0382160161128b5760405162461bcd60e51b815260206004820152601760248201527f4141393620696e76616c69642061676772656761746f7200000000000000000060448201526064016105d4565b6001600160a01b03811615611326576001600160a01b038116632dd8113384846112b8604089018961315d565b6040518563ffffffff1660e01b81526004016112d794939291906132bf565b5f6040518083038186803b1580156112ed575f5ffd5b505afa9250505080156112fe575060015b6113265760405163086a9f7560e41b81526001600160a01b03821660048201526024016105d4565b6113308287612ff6565b955050600190930192506111df915050565b505f816001600160401b0381111561135c5761135c612a93565b60405190808252806020026020018201604052801561139557816020015b611382612a0c565b81526020019060019003908161137a5790505b5090505f805b8481101561146c57368888838181106113b6576113b6613034565b90506020028101906113c89190613104565b9050365f6113d68380613118565b90925090505f6113ec6040850160208601612e4d565b9050815f5b8181101561145a575f89898151811061140c5761140c613034565b602002602001015190505f5f61142e8b898987818110610c7457610c74613034565b9150915061143e84838389611a46565b8a61144881613009565b9b5050600190930192506113f1915050565b50506001909401935061139b92505050565b506040517fbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972905f90a1505f80805b8581101561159657368989838181106114b5576114b5613034565b90506020028101906114c79190613104565b90506114d96040820160208301612e4d565b6001600160a01b03167f575ff3acadd5ab348fe1855e217e0f3678f8d767d7494c9f9fefbee2e17cca4d60405160405180910390a2365f61151a8380613118565b9092509050805f5b81811015611585576115648885858481811061154057611540613034565b90506020028101906115529190613048565b8b8b81518110610d1657610d16613034565b61156e9088612ff6565b96508761157a81613009565b985050600101611522565b50506001909301925061149a915050565b506040515f907f575ff3acadd5ab348fe1855e217e0f3678f8d767d7494c9f9fefbee2e17cca4d908290a26115cb8682611e8e565b5050505050610d5360015f5160206136c15f395f51905f5255565b6001600160a01b0382165f9081526020819052604081208054829061160c908590612ff6565b91829055509392505050565b5f5f5f845160208601878987f195945050505050565b60603d8281111561163c5750815b604051602082018101604052818152815f602083013e9392505050565b5f5f5a85519091505f908161166d82611f83565b60e08301519091506001600160a01b03811661168c5782519350611743565b8093505f8851111561174357868202955060028a60028111156116b1576116b161334a565b146117435760a0830151604051637c627b2160e01b81526001600160a01b03831691637c627b21916116ed908e908d908c90899060040161335e565b5f604051808303815f88803b158015611704575f5ffd5b5087f193505050508015611716575060015b611743575f61172661080061162e565b905080604051632b5e552f60e21b81526004016105d491906133a5565b5a60a0840151606085015160808c015192880399909901980190880380821115611776576064600a828403020498909801975b505060408901518783029650868110156117cf5760028b600281111561179e5761179e61334a565b036117c0578096506117af8a611fb4565b6117bb8a5f898b612003565b611803565b63deadaa5160e01b5f5260205ffd5b8681036117dc86826115e6565b505f808d60028111156117f1576117f161334a565b1490506118008c828b8d612003565b50505b505050505050949350505050565b5f61181b8261207e565b805190602001209050919050565b611831612133565b60025f5160206136c15f395f51905f5255565b5f5f5f5a84519091506118578682612164565b61186086610b96565b6020860152604081015161012082015161010083015160a08401516080850151606086015160c0870151861717171717176effffffffffffffffffffffffffffff8111156118f05760405162461bcd60e51b815260206004820152601860248201527f41413934206761732076616c756573206f766572666c6f77000000000000000060448201526064016105d4565b5f61191e8460c081015160a08201516080830151606084015160408501516101009095015194010101010290565b905061192d8a8a8a8487612270565b9650611940845f01518560200151612401565b6119965789604051631101335b60e11b81526004016105d4918152604060208201819052601a908201527f4141323520696e76616c6964206163636f756e74206e6f6e6365000000000000606082015260800190565b825a860311156119f25789604051631101335b60e11b81526004016105d4918152604060208201819052601e908201527f41413236206f76657220766572696669636174696f6e4761734c696d69740000606082015260800190565b60e08401516060906001600160a01b031615611a1957611a148b8b8b8561244d565b975090505b604089018290528060608a015260a08a01355a870301896080018181525050505050505050935093915050565b5f5f611a5185612604565b91509150816001600160a01b0316836001600160a01b031614611ab75785604051631101335b60e11b81526004016105d49181526040602082018190526014908201527320a0991a1039b4b3b730ba3ab9329032b93937b960611b606082015260800190565b8015611b0f5785604051631101335b60e11b81526004016105d49181526040602082018190526017908201527f414132322065787069726564206f72206e6f7420647565000000000000000000606082015260800190565b5f611b1985612604565b925090506001600160a01b03811615611b755786604051631101335b60e11b81526004016105d49181526040602082018190526014908201527320a0999a1039b4b3b730ba3ab9329032b93937b960611b606082015260800190565b8115611bd75786604051631101335b60e11b81526004016105d49181526040602082018190526021908201527f41413332207061796d61737465722065787069726564206f72206e6f742064756060820152606560f81b608082015260a00190565b50505050505050565b5f5f5a90505f611bf1846060015190565b6040519091505f903682611c0860608a018a61315d565b9150915060605f826003811115611c1e57843591505b506372288ed160e01b6001600160e01b0319821601611ccb575f8b8b60200151604051602401611c4f9291906133b7565b60408051601f198184030181529181526020820180516001600160e01b0316638dd7712f60e01b1790525190915030906242dc5390611c969084908f908d90602401613482565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050925050611d20565b306001600160a01b03166242dc5385858d8b604051602401611cf094939291906134b6565b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505091505b60205f8351602085015f305af195505f51985084604052505050505080611e84575f3d80602003611d555760205f5f3e5f5191505b5063deaddead60e01b8103611da85787604051631101335b60e11b81526004016105d4918152604060208201819052600f908201526e41413935206f7574206f662067617360881b606082015260800190565b63deadaa5160e01b8103611df7575f86608001515a611dc79087613021565b611dd19190612ff6565b6040880151909150611de288611fb4565b611dee885f8385612003565b9550611e829050565b855180516020808901519201516001600160a01b0390911691907ff62676f440ff169a3a9afdbf812e89e7f95975ee8e5c31214ffdef631c5f479290611e3e61080061162e565b604051611e4c929190612fca565b60405180910390a35f86608001515a611e659087613021565b611e6f9190612ff6565b9050611e7e6002888684611659565b9550505b505b5050509392505050565b6001600160a01b038216611ee45760405162461bcd60e51b815260206004820152601860248201527f4141393020696e76616c69642062656e6566696369617279000000000000000060448201526064016105d4565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611f2d576040519150601f19603f3d011682016040523d82523d5f602084013e611f32565b606091505b5050905080610d535760405162461bcd60e51b815260206004820152601f60248201527f41413931206661696c65642073656e6420746f2062656e65666963696172790060448201526064016105d4565b6101008101516101208201515f9190808203611fa0575092915050565b611fac82488301612653565b949350505050565b80518051602080840151928101516040519081526001600160a01b0390921692917f67b4fa9642f42120bf031f3051d1824b0fe25627945b27b8a6a65d5761d5482e910160405180910390a350565b835160e081015181516020808801519301516040516001600160a01b039384169492909316927f49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f916120709189908990899093845291151560208401526040830152606082015260800190565b60405180910390a450505050565b6060813560208301355f61209d612098604087018761315d565b61266a565b90505f6120b0612098606088018861315d565b9050608086013560a087013560c08801355f6120d261209860e08c018c61315d565b604080516001600160a01b039a909a1660208b015289810198909852606089019690965250608087019390935260a086019190915260c085015260e08401526101008084019190915281518084039091018152610120909201905292915050565b5f5160206136c15f395f51905f525460020361216257604051633ee5aeb560e01b815260040160405180910390fd5b565b6121716020830183612e4d565b6001600160a01b03168152602082810135908201526001600160801b036080808401358281166060850152811c604084015260a084013560c0808501919091528401359182166101008401521c610120820152365f6121d360e085018561315d565b9092509050801561225657603481101561222f5760405162461bcd60e51b815260206004820152601d60248201527f4141393320696e76616c6964207061796d6173746572416e644461746100000060448201526064016105d4565b612239828261267c565b60a086015260808501526001600160a01b031660e0840152610b90565b5f60e084018190526080840181905260a084015250505050565b825180515f919061228e888761228960408b018b61315d565b6126e3565b60e08201515f6001600160a01b0382166122cf576001600160a01b0383165f908152602081905260409020548781116122c9578088036122cb565b5f5b9150505b60208801516040516306608bdf60e21b81526001600160a01b038516916319822f7c918991612305918e919087906004016134eb565b6020604051808303815f8887f193505050508015612340575060408051601f3d908101601f1916820190925261233d9181019061350f565b60015b61236b578961235061080061162e565b6040516365c8fd4d60e01b81526004016105d4929190613526565b94506001600160a01b0382166123f4576001600160a01b0383165f9081526020819052604090208054808911156123ee578b604051631101335b60e11b81526004016105d49181526040602082018190526017908201527f41413231206469646e2774207061792070726566756e64000000000000000000606082015260800190565b88900390555b5050505095945050505050565b6001600160a01b0382165f90815260016020908152604080832084821c80855292528220805484916001600160401b03831691908561243f83613009565b909155501495945050505050565b60605f5f5a855160e08101516001600160a01b0381165f90815260208190526040902080549394509192909190878110156124d4578a604051631101335b60e11b81526004016105d4918152604060208201819052601e908201527f41413331207061796d6173746572206465706f73697420746f6f206c6f770000606082015260800190565b878103825f01819055505f84608001519050836001600160a01b03166352b7512c828d8d602001518d6040518563ffffffff1660e01b815260040161251b939291906134eb565b5f604051808303815f8887f19350505050801561255957506040513d5f823e601f3d908101601f191682016040526125569190810190613562565b60015b612584578b61256961080061162e565b6040516365c8fd4d60e01b81526004016105d49291906135da565b9098509650805a870311156125f5578b604051631101335b60e11b81526004016105d49181526040602082018190526027908201527f41413336206f766572207061796d6173746572566572696669636174696f6e47606082015266185cd31a5b5a5d60ca1b608082015260a00190565b50505050505094509492505050565b5f5f825f0361261757505f928392509050565b5f6126218461299d565b9050806040015165ffffffffffff164211806126485750806020015165ffffffffffff1642105b905194909350915050565b5f8183106126615781612663565b825b9392505050565b5f604051828085833790209392505050565b5f808061268c6014828688613616565b6126959161363d565b60601c6126a6602460148789613616565b6126af9161368a565b60801c6126c060346024888a613616565b6126c99161368a565b9194506001600160801b0316925060801c90509250925092565b8015610b90578251516001600160a01b0381163b1561274e5784604051631101335b60e11b81526004016105d4918152604060208201819052601f908201527f414131302073656e64657220616c726561647920636f6e737472756374656400606082015260800190565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663570e1a36865f01516040015186866040518463ffffffff1660e01b81526004016127a59291906130b8565b6020604051808303815f8887f11580156127c1573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906127e691906130cb565b90506001600160a01b0381166128485785604051631101335b60e11b81526004016105d4918152604060208201819052601b908201527f4141313320696e6974436f6465206661696c6564206f72204f4f470000000000606082015260800190565b816001600160a01b0316816001600160a01b0316146128b25785604051631101335b60e11b81526004016105d491815260406020808301829052908201527f4141313420696e6974436f6465206d7573742072657475726e2073656e646572606082015260800190565b806001600160a01b03163b5f036129145785604051631101335b60e11b81526004016105d491815260406020808301829052908201527f4141313520696e6974436f6465206d757374206372656174652073656e646572606082015260800190565b5f6129226014828688613616565b61292b9161363d565b60601c9050826001600160a01b031686602001517fd51a9c61267aa6196961883ecf5ff2da6619c37dac0fa92122513fb32c032d2d83895f015160e0015160405161298c9291906001600160a01b0392831681529116602082015260400190565b60405180910390a350505050505050565b604080516060810182525f80825260208201819052918101919091528160a081901c65ffffffffffff81165f036129d7575065ffffffffffff5b604080516060810182526001600160a01b03909316835260d09490941c602083015265ffffffffffff16928101929092525090565b6040518060a00160405280612a756040518061014001604052805f6001600160a01b031681526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f6001600160a01b031681526020015f81526020015f81525090565b81526020015f81526020015f81526020015f81526020015f81525090565b634e487b7160e01b5f52604160045260245ffd5b60405160a081016001600160401b0381118282101715612ac957612ac9612a93565b60405290565b60405161014081016001600160401b0381118282101715612ac957612ac9612a93565b604051601f8201601f191681016001600160401b0381118282101715612b1a57612b1a612a93565b604052919050565b5f6001600160401b03821115612b3a57612b3a612a93565b50601f01601f191660200190565b6001600160a01b0381168114612b5c575f5ffd5b50565b8035612b6a81612b48565b919050565b5f8183036101c0811215612b81575f5ffd5b612b89612aa7565b9150610140811215612b99575f5ffd5b50612ba2612acf565b612bab83612b5f565b81526020838101359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c08084013590820152612bf560e08401612b5f565b60e08201526101008381013590820152610120808401359082015281526101408201356020820152610160820135604082015261018082013560608201526101a0909101356080820152919050565b5f5f83601f840112612c54575f5ffd5b5081356001600160401b03811115612c6a575f5ffd5b602083019150836020828501011115612c81575f5ffd5b9250929050565b5f5f5f5f6102008587031215612c9c575f5ffd5b84356001600160401b03811115612cb1575f5ffd5b8501601f81018713612cc1575f5ffd5b8035612cd4612ccf82612b22565b612af2565b818152886020838501011115612ce8575f5ffd5b816020840160208301375f60208383010152809650505050612d0d8660208701612b6f565b92506101e08501356001600160401b03811115612d28575f5ffd5b612d3487828801612c44565b95989497509550505050565b5f60208284031215612d50575f5ffd5b81356001600160e01b031981168114612663575f5ffd5b5f60208284031215612d77575f5ffd5b813563ffffffff81168114612663575f5ffd5b80356001600160c01b0381168114612b6a575f5ffd5b5f60208284031215612db0575f5ffd5b61266382612d8a565b5f5f60408385031215612dca575f5ffd5b8235612dd581612b48565b9150612de360208401612d8a565b90509250929050565b5f5f60408385031215612dfd575f5ffd5b8235612e0881612b48565b946020939093013593505050565b5f60208284031215612e26575f5ffd5b81356001600160401b03811115612e3b575f5ffd5b82016101208185031215612663575f5ffd5b5f60208284031215612e5d575f5ffd5b813561266381612b48565b5f5f83601f840112612e78575f5ffd5b5081356001600160401b03811115612e8e575f5ffd5b6020830191508360208260051b8501011115612c81575f5ffd5b5f5f5f60408486031215612eba575f5ffd5b83356001600160401b03811115612ecf575f5ffd5b612edb86828701612e68565b9094509250506020840135612eef81612b48565b809150509250925092565b5f5f5f60408486031215612f0c575f5ffd5b8335612f1781612b48565b925060208401356001600160401b03811115612f31575f5ffd5b612f3d86828701612c44565b9497909650939450505050565b5f5f60208385031215612f5b575f5ffd5b82356001600160401b03811115612f70575f5ffd5b612f7c85828601612c44565b90969095509350505050565b634e487b7160e01b5f52601260045260245ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b828152604060208201525f611fac6040830184612f9c565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561078357610783612fe2565b5f6001820161301a5761301a612fe2565b5060010190565b8181038181111561078357610783612fe2565b634e487b7160e01b5f52603260045260245ffd5b5f823561011e1983360301811261305d575f5ffd5b9190910192915050565b818382375f9101908152919050565b8215158152604060208201525f611fac6040830184612f9c565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f611fac602083018486613090565b5f602082840312156130db575f5ffd5b815161266381612b48565b65ffffffffffff818116838216019081111561078357610783612fe2565b5f8235605e1983360301811261305d575f5ffd5b5f5f8335601e1984360301811261312d575f5ffd5b8301803591506001600160401b03821115613146575f5ffd5b6020019150600581901b3603821315612c81575f5ffd5b5f5f8335601e19843603018112613172575f5ffd5b8301803591506001600160401b0382111561318b575f5ffd5b602001915036819003821315612c81575f5ffd5b5f5f8335601e198436030181126131b4575f5ffd5b83016020810192503590506001600160401b038111156131d2575f5ffd5b803603821315612c81575f5ffd5b6131fa826131ed83612b5f565b6001600160a01b03169052565b602081810135908301525f613212604083018361319f565b610120604086015261322961012086018284613090565b915050613239606084018461319f565b858303606087015261324c838284613090565b6080868101359088015260a0808701359088015260c08087013590880152925061327c91505060e084018461319f565b85830360e087015261328f838284613090565b925050506132a161010084018461319f565b8583036101008701526132b5838284613090565b9695505050505050565b604080825281018490525f6060600586901b83018101908301878361011e1936839003015b8982101561332857868503605f190184528235818112613302575f5ffd5b61330e868d83016131e0565b9550506020830192506020840193506001820191506132e4565b50505050828103602084015261333f818587613090565b979650505050505050565b634e487b7160e01b5f52602160045260245ffd5b5f6003861061337b57634e487b7160e01b5f52602160045260245ffd5b858252608060208301526133926080830186612f9c565b6040830194909452506060015292915050565b602081525f6126636020830184612f9c565b604081525f6133c960408301856131e0565b90508260208301529392505050565b805180516001600160a01b031683526020810151602084015260408101516040840152606081015160608401526080810151608084015260a081015160a084015260c081015160c084015260e081015161343d60e08501826001600160a01b03169052565b5061010081810151908401526101209081015190830152602081015161014083015260408101516101608301526060810151610180830152608001516101a090910152565b61020081525f613496610200830186612f9c565b6134a360208401866133d8565b8281036101e08401526132b58185612f9c565b61020081525f6134cb61020083018688613090565b6134d860208401866133d8565b8281036101e084015261333f8185612f9c565b606081525f6134fd60608301866131e0565b60208301949094525060400152919050565b5f6020828403121561351f575f5ffd5b5051919050565b82815260606020820152600d60608201526c10504c8cc81c995d995c9d1959609a1b608082015260a060408201525f611fac60a0830184612f9c565b5f5f60408385031215613573575f5ffd5b82516001600160401b03811115613588575f5ffd5b8301601f81018513613598575f5ffd5b80516135a6612ccf82612b22565b8181528660208385010111156135ba575f5ffd5b8160208401602083015e5f60209282018301529401519395939450505050565b82815260606020820152600d60608201526c10504cccc81c995d995c9d1959609a1b608082015260a060408201525f611fac60a0830184612f9c565b5f5f85851115613624575f5ffd5b83861115613630575f5ffd5b5050820193919092039150565b80356bffffffffffffffffffffffff198116906014841015613683576bffffffffffffffffffffffff196bffffffffffffffffffffffff198560140360031b1b82161691505b5092915050565b80356001600160801b03198116906010841015613683576001600160801b031960109490940360031b84901b169092169291505056fe9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00a26469706673582212209818eb0cbfb3954a457792fc92a2c775b32e3cd87a4adf133c403eb3aa9a4bcd64736f6c634300081e00336080604052348015600e575f5ffd5b506101fc8061001c5f395ff3fe608060405234801561000f575f5ffd5b5060043610610029575f3560e01c8063570e1a361461002d575b5f5ffd5b61004061003b3660046100e4565b61005c565b6040516001600160a01b03909116815260200160405180910390f35b5f8061006b6014828587610152565b61007491610179565b60601c90505f6100878460148188610152565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92018290525084519495509360209350849250905082850182875af190505f519350806100db575f93505b50505092915050565b5f5f602083850312156100f5575f5ffd5b823567ffffffffffffffff81111561010b575f5ffd5b8301601f8101851361011b575f5ffd5b803567ffffffffffffffff811115610131575f5ffd5b856020828401011115610142575f5ffd5b6020919091019590945092505050565b5f5f85851115610160575f5ffd5b8386111561016c575f5ffd5b5050820193919092039150565b80356bffffffffffffffffffffffff1981169060148410156101bf576bffffffffffffffffffffffff196bffffffffffffffffffffffff198560140360031b1b82161691505b509291505056fea26469706673582212209938c009b357043baf7aff0313dd20f9875403ca336f40b0f4f820e50a3a41f564736f6c634300081e0033","opcodes":"PUSH1 0xA0 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH1 0xE SWAP1 PUSH1 0x66 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH1 0x26 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0x3D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x1 PUSH32 0x9B779B17422D0DF92223018B32B4D1FA46E071723D6817E2486D003BECC55F00 SSTORE PUSH1 0x73 JUMP JUMPDEST PUSH2 0x218 DUP1 PUSH2 0x37A8 DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH2 0x3716 PUSH2 0x92 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0xDEC ADD MSTORE PUSH2 0x2751 ADD MSTORE PUSH2 0x3716 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x107 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xB760FAF9 GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xB760FAF9 EQ PUSH2 0x425 JUMPI DUP1 PUSH4 0xBB9FE6BF EQ PUSH2 0x438 JUMPI DUP1 PUSH4 0xC23A5CEA EQ PUSH2 0x44C JUMPI DUP1 PUSH4 0xDBED18E0 EQ PUSH2 0x46B JUMPI DUP1 PUSH4 0xFC7E286D EQ PUSH2 0x48A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x394 JUMPI DUP1 PUSH4 0x765E827F EQ PUSH2 0x3C8 JUMPI DUP1 PUSH4 0x850AAF62 EQ PUSH2 0x3E7 JUMPI DUP1 PUSH4 0x9B249F69 EQ PUSH2 0x406 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1B2E01B8 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0x1B2E01B8 EQ PUSH2 0x1AE JUMPI DUP1 PUSH4 0x205C2878 EQ PUSH2 0x1E4 JUMPI DUP1 PUSH4 0x22CDDE4C EQ PUSH2 0x203 JUMPI DUP1 PUSH4 0x35567E1A EQ PUSH2 0x222 JUMPI DUP1 PUSH4 0x5287CE12 EQ PUSH2 0x280 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH3 0x42DC53 EQ PUSH2 0x11B JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x14D JUMPI DUP1 PUSH4 0x396CB60 EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0xBD28E3B EQ PUSH2 0x18F JUMPI PUSH0 PUSH0 REVERT JUMPDEST CALLDATASIZE PUSH2 0x117 JUMPI PUSH2 0x115 CALLER PUSH2 0x530 JUMP JUMPDEST STOP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x126 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x135 CALLDATASIZE PUSH1 0x4 PUSH2 0x2C88 JUMP JUMPDEST PUSH2 0x584 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x158 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16C PUSH2 0x167 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D40 JUMP JUMPDEST PUSH2 0x702 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x144 JUMP JUMPDEST PUSH2 0x115 PUSH2 0x18A CALLDATASIZE PUSH1 0x4 PUSH2 0x2D67 JUMP JUMPDEST PUSH2 0x789 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x19A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x1A9 CALLDATASIZE PUSH1 0x4 PUSH2 0x2DA0 JUMP JUMPDEST PUSH2 0xA14 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x1C8 CALLDATASIZE PUSH1 0x4 PUSH2 0x2DB9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH0 SWAP3 DUP4 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 SWAP1 SWAP2 MSTORE SWAP1 DUP3 MSTORE SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x1FE CALLDATASIZE PUSH1 0x4 PUSH2 0x2DEC JUMP JUMPDEST PUSH2 0xA4A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x20E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x21D CALLDATASIZE PUSH1 0x4 PUSH2 0x2E16 JUMP JUMPDEST PUSH2 0xB96 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x22D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x23C CALLDATASIZE PUSH1 0x4 PUSH2 0x2DB9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 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 0xC0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 DUP2 SWAP1 KECCAK256 SLOAD SWAP1 DUP3 SWAP1 SHL PUSH8 0xFFFFFFFFFFFFFFFF NOT AND OR SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33A PUSH2 0x29A CALLDATASIZE PUSH1 0x4 PUSH2 0x2E4D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0xA0 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0xFF DUP2 AND ISZERO ISZERO SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH2 0x100 DUP3 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x78 SHL DUP2 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x98 SHL SWAP1 DIV PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x80 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x144 SWAP2 SWAP1 PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP DUP3 MLOAD DUP3 MSTORE PUSH1 0x20 DUP4 ADD MLOAD ISZERO ISZERO PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB PUSH1 0x40 DUP5 ADD MLOAD AND PUSH1 0x40 DUP4 ADD MSTORE PUSH4 0xFFFFFFFF PUSH1 0x60 DUP5 ADD MLOAD AND PUSH1 0x60 DUP4 ADD MSTORE PUSH6 0xFFFFFFFFFFFF PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP4 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x39F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x3AE CALLDATASIZE PUSH1 0x4 PUSH2 0x2E4D 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 CALLVALUE DUP1 ISZERO PUSH2 0x3D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x3E2 CALLDATASIZE PUSH1 0x4 PUSH2 0x2EA8 JUMP JUMPDEST PUSH2 0xBD7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x401 CALLDATASIZE PUSH1 0x4 PUSH2 0x2EFA JUMP JUMPDEST PUSH2 0xD58 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x411 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x420 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F4A JUMP JUMPDEST PUSH2 0xDD3 JUMP JUMPDEST PUSH2 0x115 PUSH2 0x433 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E4D JUMP JUMPDEST PUSH2 0x530 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x443 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0xE8A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x457 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x466 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E4D JUMP JUMPDEST PUSH2 0xFB4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x476 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x485 CALLDATASIZE PUSH1 0x4 PUSH2 0x2EA8 JUMP JUMPDEST PUSH2 0x11D3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x495 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x4ED PUSH2 0x4A4 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E4D JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP2 SWAP1 MSTORE SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0xFF DUP2 AND SWAP1 PUSH2 0x100 DUP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 PUSH1 0x1 PUSH1 0x78 SHL DUP2 DIV PUSH4 0xFFFFFFFF AND SWAP1 PUSH1 0x1 PUSH1 0x98 SHL SWAP1 DIV PUSH6 0xFFFFFFFFFFFF AND DUP6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP6 DUP7 MSTORE SWAP4 ISZERO ISZERO PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP3 AND SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD PUSH2 0x144 JUMP JUMPDEST PUSH0 PUSH2 0x53B DUP3 CALLVALUE PUSH2 0x15E6 JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x2DA466A7B24304F47E87FA2E1E5A81B9831CE54FEC19055CE277CA2F39BA42C4 DUP3 PUSH1 0x40 MLOAD PUSH2 0x578 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 PUSH0 GAS SWAP1 POP CALLER ADDRESS EQ PUSH2 0x5DD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4141393220696E7465726E616C2063616C6C206F6E6C79000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 MLOAD PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0xA0 DUP3 ADD MLOAD DUP2 ADD PUSH2 0x2710 ADD PUSH1 0x40 GAS PUSH1 0x3F MUL DUP2 PUSH2 0x602 JUMPI PUSH2 0x602 PUSH2 0x2F88 JUMP JUMPDEST DIV LT ISZERO PUSH2 0x618 JUMPI PUSH4 0xDEADDEAD PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x20 PUSH0 REVERT JUMPDEST DUP8 MLOAD PUSH0 SWAP1 ISZERO PUSH2 0x6A6 JUMPI PUSH0 PUSH2 0x631 DUP5 PUSH0 ADD MLOAD PUSH0 DUP13 DUP7 PUSH2 0x1618 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x6A4 JUMPI PUSH0 PUSH2 0x644 PUSH2 0x800 PUSH2 0x162E JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x69E JUMPI DUP5 PUSH0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP11 PUSH1 0x20 ADD MLOAD PUSH32 0x1C4FADA7374C0A9EE8841FC38AFE82932DC0F8E69012E927F061A8BAE611A201 DUP8 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x40 MLOAD PUSH2 0x695 SWAP3 SWAP2 SWAP1 PUSH2 0x2FCA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST PUSH1 0x1 SWAP3 POP POP JUMPDEST POP JUMPDEST PUSH0 DUP9 PUSH1 0x80 ADD MLOAD GAS DUP7 SUB ADD SWAP1 POP PUSH2 0x6F4 DUP3 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 DUP8 SWAP3 POP PUSH2 0x1659 SWAP2 POP POP JUMP JUMPDEST SWAP11 SWAP10 POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x307E35B7 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x732 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x122A0E9B PUSH1 0xE3 SHL EQ JUMPDEST DUP1 PUSH2 0x74D JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xCF28EF97 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x768 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x3E84F021 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x783 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 CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH4 0xFFFFFFFF DUP3 AND PUSH2 0x7EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6D757374207370656369667920756E7374616B652064656C6179000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SLOAD PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0x78 SHL SWAP1 SWAP2 DIV DUP2 AND SWAP1 DUP4 AND LT ISZERO PUSH2 0x84F 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 0x63616E6E6F7420646563726561736520756E7374616B652074696D6500000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SLOAD PUSH0 SWAP1 PUSH2 0x86F SWAP1 CALLVALUE SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x2FF6 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 GT PUSH2 0x8B5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH18 0x1B9BC81CDD185AD9481CDC1958DA599A5959 PUSH1 0x72 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP2 GT ISZERO PUSH2 0x8FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x7374616B65206F766572666C6F77 PUSH1 0x90 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE DUP4 SLOAD DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP1 DUP4 ADD DUP3 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP7 DUP2 AND DUP6 DUP8 ADD SWAP1 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP11 DUP2 AND PUSH1 0x60 DUP9 ADD DUP2 DUP2 MSTORE PUSH0 PUSH1 0x80 DUP11 ADD DUP2 DUP2 MSTORE CALLER DUP1 DUP4 MSTORE DUP3 DUP11 MSTORE SWAP2 DUP13 SWAP1 KECCAK256 SWAP11 MLOAD DUP12 SSTORE SWAP7 MLOAD SWAP10 SWAP1 SWAP9 ADD DUP1 SLOAD SWAP5 MLOAD SWAP2 MLOAD SWAP7 MLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0x98 SHL MUL PUSH6 0xFFFFFFFFFFFF PUSH1 0x98 SHL NOT SWAP8 SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x78 SHL MUL SWAP7 SWAP1 SWAP7 AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF PUSH1 0x78 SHL NOT SWAP2 SWAP1 SWAP6 AND PUSH2 0x100 MUL PUSH15 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 NOT SWAP10 ISZERO ISZERO SWAP10 SWAP1 SWAP10 AND PUSH15 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP8 SWAP1 SWAP8 OR SWAP2 SWAP1 SWAP2 AND SWAP2 SWAP1 SWAP2 OR OR SWAP1 SSTORE DUP4 MLOAD DUP6 DUP2 MSTORE SWAP1 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP2 PUSH32 0xA5AE833D0BB1DCD632D98A8B70973E8516812898E19BF27B70071EBC8DC52C01 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xC0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 DUP1 SLOAD SWAP2 PUSH2 0xA42 DUP4 PUSH2 0x3009 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 GT ISZERO PUSH2 0xAA9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x576974686472617720616D6F756E7420746F6F206C6172676500000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST DUP1 SLOAD PUSH2 0xAB6 SWAP1 DUP4 SWAP1 PUSH2 0x3021 JUMP JUMPDEST DUP2 SSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 SWAP1 MSTORE CALLER SWAP2 PUSH32 0xD1C19FBCD4551A5EDFB66D43D2E337C04837AFDA3482B42BDF569A8FCCDAE5FB SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x40 MLOAD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xB45 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 0xB4A JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xB90 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH18 0x6661696C656420746F207769746864726177 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xBA0 DUP3 PUSH2 0x1811 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADDRESS SWAP1 DUP3 ADD MSTORE CHAINID PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBDF PUSH2 0x1829 JUMP JUMPDEST DUP2 PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xBF9 JUMPI PUSH2 0xBF9 PUSH2 0x2A93 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xC32 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0xC1F PUSH2 0x2A0C JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xC17 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xCA7 JUMPI PUSH0 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xC52 JUMPI PUSH2 0xC52 PUSH2 0x3034 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH0 PUSH0 PUSH2 0xC8C DUP5 DUP11 DUP11 DUP8 DUP2 DUP2 LT PUSH2 0xC74 JUMPI PUSH2 0xC74 PUSH2 0x3034 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xC86 SWAP2 SWAP1 PUSH2 0x3048 JUMP JUMPDEST DUP6 PUSH2 0x1844 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0xC9C DUP5 DUP4 DUP4 PUSH0 PUSH2 0x1A46 JUMP JUMPDEST POP POP POP PUSH1 0x1 ADD PUSH2 0xC37 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH0 SWAP1 PUSH32 0xBB47EE3E183A558B1A2FF0874B079F3FC5478B7454EACF2BFC5AF2FF5878F972 SWAP1 DUP3 SWAP1 LOG1 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xD2F JUMPI PUSH2 0xD23 DUP2 DUP9 DUP9 DUP5 DUP2 DUP2 LT PUSH2 0xCF2 JUMPI PUSH2 0xCF2 PUSH2 0x3034 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xD04 SWAP2 SWAP1 PUSH2 0x3048 JUMP JUMPDEST DUP6 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xD16 JUMPI PUSH2 0xD16 PUSH2 0x3034 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x1BE0 JUMP JUMPDEST SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0xCD4 JUMP JUMPDEST POP PUSH2 0xD3A DUP5 DUP3 PUSH2 0x1E8E JUMP JUMPDEST POP POP POP PUSH2 0xD53 PUSH1 0x1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x36C1 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SSTORE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0xD74 SWAP3 SWAP2 SWAP1 PUSH2 0x3067 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xDAC 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 0xDB1 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP2 PUSH1 0x40 MLOAD PUSH4 0x26504155 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP3 SWAP2 SWAP1 PUSH2 0x3076 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2B870D1B PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x570E1A36 SWAP1 PUSH2 0xE23 SWAP1 DUP7 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x30B8 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xE3F 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 0xE63 SWAP2 SWAP1 PUSH2 0x30CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3653DC03 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x24 ADD PUSH2 0x5D4 JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD SWAP1 SWAP2 PUSH1 0x1 PUSH1 0x78 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP1 SUB PUSH2 0xEE8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xA PUSH1 0x24 DUP3 ADD MSTORE PUSH10 0x1B9BDD081CDD185AD959 PUSH1 0xB2 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SLOAD PUSH1 0xFF AND PUSH2 0xF30 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x616C726561647920756E7374616B696E67 PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SLOAD PUSH0 SWAP1 PUSH2 0xF4E SWAP1 PUSH1 0x1 PUSH1 0x78 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND TIMESTAMP PUSH2 0x30E6 JUMP JUMPDEST PUSH1 0x1 DUP4 ADD DUP1 SLOAD PUSH1 0xFF PUSH6 0xFFFFFFFFFFFF PUSH1 0x98 SHL ADD NOT AND PUSH1 0x1 PUSH1 0x98 SHL PUSH6 0xFFFFFFFFFFFF DUP5 AND SWAP1 DUP2 MUL PUSH1 0xFF NOT AND SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 SWAP2 POP CALLER SWAP1 PUSH32 0xFA9B3C14CC825C412C9ED81B3BA365A5B459439403F18829E572ED53A4180F0A SWAP1 PUSH1 0x20 ADD PUSH2 0x578 JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP1 PUSH2 0x1019 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x4E6F207374616B6520746F207769746864726177 PUSH1 0x60 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x1 PUSH1 0x98 SHL SWAP1 DIV PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x1079 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6D7573742063616C6C20756E6C6F636B5374616B652829206669727374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SLOAD TIMESTAMP PUSH1 0x1 PUSH1 0x98 SHL SWAP1 SWAP2 DIV PUSH6 0xFFFFFFFFFFFF AND GT ISZERO PUSH2 0x10DD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5374616B65207769746864726177616C206973206E6F74206475650000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x100 PUSH1 0x1 PUSH1 0xC8 SHL SUB NOT AND SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE CALLER SWAP2 PUSH32 0xB7C918E0E249F999E965CAFEB6C664271B3F4317D296461500E71DA39F0CBDA3 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x40 MLOAD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x117D 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 0x1182 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xB90 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6661696C656420746F207769746864726177207374616B650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH2 0x11DB PUSH2 0x1829 JUMP JUMPDEST DUP2 PUSH0 DUP1 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1342 JUMPI CALLDATASIZE DUP7 DUP7 DUP4 DUP2 DUP2 LT PUSH2 0x11FA JUMPI PUSH2 0x11FA PUSH2 0x3034 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x120C SWAP2 SWAP1 PUSH2 0x3104 JUMP JUMPDEST SWAP1 POP CALLDATASIZE PUSH0 PUSH2 0x121A DUP4 DUP1 PUSH2 0x3118 JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP PUSH0 PUSH2 0x1230 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2E4D JUMP JUMPDEST SWAP1 POP PUSH0 NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ADD PUSH2 0x128B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4141393620696E76616C69642061676772656761746F72000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x1326 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH4 0x2DD81133 DUP5 DUP5 PUSH2 0x12B8 PUSH1 0x40 DUP10 ADD DUP10 PUSH2 0x315D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12D7 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x32BF JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x12ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x12FE JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x1326 JUMPI PUSH1 0x40 MLOAD PUSH4 0x86A9F75 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH2 0x1330 DUP3 DUP8 PUSH2 0x2FF6 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x1 SWAP1 SWAP4 ADD SWAP3 POP PUSH2 0x11DF SWAP2 POP POP JUMP JUMPDEST POP PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x135C JUMPI PUSH2 0x135C PUSH2 0x2A93 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1395 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x1382 PUSH2 0x2A0C JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x137A JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 DUP1 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x146C JUMPI CALLDATASIZE DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x13B6 JUMPI PUSH2 0x13B6 PUSH2 0x3034 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x13C8 SWAP2 SWAP1 PUSH2 0x3104 JUMP JUMPDEST SWAP1 POP CALLDATASIZE PUSH0 PUSH2 0x13D6 DUP4 DUP1 PUSH2 0x3118 JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP PUSH0 PUSH2 0x13EC PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2E4D JUMP JUMPDEST SWAP1 POP DUP2 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x145A JUMPI PUSH0 DUP10 DUP10 DUP2 MLOAD DUP2 LT PUSH2 0x140C JUMPI PUSH2 0x140C PUSH2 0x3034 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH0 PUSH0 PUSH2 0x142E DUP12 DUP10 DUP10 DUP8 DUP2 DUP2 LT PUSH2 0xC74 JUMPI PUSH2 0xC74 PUSH2 0x3034 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x143E DUP5 DUP4 DUP4 DUP10 PUSH2 0x1A46 JUMP JUMPDEST DUP11 PUSH2 0x1448 DUP2 PUSH2 0x3009 JUMP JUMPDEST SWAP12 POP POP PUSH1 0x1 SWAP1 SWAP4 ADD SWAP3 POP PUSH2 0x13F1 SWAP2 POP POP JUMP JUMPDEST POP POP PUSH1 0x1 SWAP1 SWAP5 ADD SWAP4 POP PUSH2 0x139B SWAP3 POP POP POP JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0xBB47EE3E183A558B1A2FF0874B079F3FC5478B7454EACF2BFC5AF2FF5878F972 SWAP1 PUSH0 SWAP1 LOG1 POP PUSH0 DUP1 DUP1 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x1596 JUMPI CALLDATASIZE DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x14B5 JUMPI PUSH2 0x14B5 PUSH2 0x3034 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x14C7 SWAP2 SWAP1 PUSH2 0x3104 JUMP JUMPDEST SWAP1 POP PUSH2 0x14D9 PUSH1 0x40 DUP3 ADD PUSH1 0x20 DUP4 ADD PUSH2 0x2E4D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x575FF3ACADD5AB348FE1855E217E0F3678F8D767D7494C9F9FEFBEE2E17CCA4D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 CALLDATASIZE PUSH0 PUSH2 0x151A DUP4 DUP1 PUSH2 0x3118 JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP DUP1 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1585 JUMPI PUSH2 0x1564 DUP9 DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x1540 JUMPI PUSH2 0x1540 PUSH2 0x3034 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x1552 SWAP2 SWAP1 PUSH2 0x3048 JUMP JUMPDEST DUP12 DUP12 DUP2 MLOAD DUP2 LT PUSH2 0xD16 JUMPI PUSH2 0xD16 PUSH2 0x3034 JUMP JUMPDEST PUSH2 0x156E SWAP1 DUP9 PUSH2 0x2FF6 JUMP JUMPDEST SWAP7 POP DUP8 PUSH2 0x157A DUP2 PUSH2 0x3009 JUMP JUMPDEST SWAP9 POP POP PUSH1 0x1 ADD PUSH2 0x1522 JUMP JUMPDEST POP POP PUSH1 0x1 SWAP1 SWAP4 ADD SWAP3 POP PUSH2 0x149A SWAP2 POP POP JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH0 SWAP1 PUSH32 0x575FF3ACADD5AB348FE1855E217E0F3678F8D767D7494C9F9FEFBEE2E17CCA4D SWAP1 DUP3 SWAP1 LOG2 PUSH2 0x15CB DUP7 DUP3 PUSH2 0x1E8E JUMP JUMPDEST POP POP POP POP POP PUSH2 0xD53 PUSH1 0x1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x36C1 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SSTORE 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 DUP1 SLOAD DUP3 SWAP1 PUSH2 0x160C SWAP1 DUP6 SWAP1 PUSH2 0x2FF6 JUMP JUMPDEST SWAP2 DUP3 SWAP1 SSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP5 MLOAD PUSH1 0x20 DUP7 ADD DUP8 DUP10 DUP8 CALL SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 RETURNDATASIZE DUP3 DUP2 GT ISZERO PUSH2 0x163C JUMPI POP DUP2 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP3 ADD DUP2 ADD PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP2 PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 GAS DUP6 MLOAD SWAP1 SWAP2 POP PUSH0 SWAP1 DUP2 PUSH2 0x166D DUP3 PUSH2 0x1F83 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x168C JUMPI DUP3 MLOAD SWAP4 POP PUSH2 0x1743 JUMP JUMPDEST DUP1 SWAP4 POP PUSH0 DUP9 MLOAD GT ISZERO PUSH2 0x1743 JUMPI DUP7 DUP3 MUL SWAP6 POP PUSH1 0x2 DUP11 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x16B1 JUMPI PUSH2 0x16B1 PUSH2 0x334A JUMP JUMPDEST EQ PUSH2 0x1743 JUMPI PUSH1 0xA0 DUP4 ADD MLOAD PUSH1 0x40 MLOAD PUSH4 0x7C627B21 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP2 PUSH4 0x7C627B21 SWAP2 PUSH2 0x16ED SWAP1 DUP15 SWAP1 DUP14 SWAP1 DUP13 SWAP1 DUP10 SWAP1 PUSH1 0x4 ADD PUSH2 0x335E JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1704 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP8 CALL SWAP4 POP POP POP POP DUP1 ISZERO PUSH2 0x1716 JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x1743 JUMPI PUSH0 PUSH2 0x1726 PUSH2 0x800 PUSH2 0x162E JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x40 MLOAD PUSH4 0x2B5E552F PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 SWAP1 PUSH2 0x33A5 JUMP JUMPDEST GAS PUSH1 0xA0 DUP5 ADD MLOAD PUSH1 0x60 DUP6 ADD MLOAD PUSH1 0x80 DUP13 ADD MLOAD SWAP3 DUP9 SUB SWAP10 SWAP1 SWAP10 ADD SWAP9 ADD SWAP1 DUP9 SUB DUP1 DUP3 GT ISZERO PUSH2 0x1776 JUMPI PUSH1 0x64 PUSH1 0xA DUP3 DUP5 SUB MUL DIV SWAP9 SWAP1 SWAP9 ADD SWAP8 JUMPDEST POP POP PUSH1 0x40 DUP10 ADD MLOAD DUP8 DUP4 MUL SWAP7 POP DUP7 DUP2 LT ISZERO PUSH2 0x17CF JUMPI PUSH1 0x2 DUP12 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x179E JUMPI PUSH2 0x179E PUSH2 0x334A JUMP JUMPDEST SUB PUSH2 0x17C0 JUMPI DUP1 SWAP7 POP PUSH2 0x17AF DUP11 PUSH2 0x1FB4 JUMP JUMPDEST PUSH2 0x17BB DUP11 PUSH0 DUP10 DUP12 PUSH2 0x2003 JUMP JUMPDEST PUSH2 0x1803 JUMP JUMPDEST PUSH4 0xDEADAA51 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x20 PUSH0 REVERT JUMPDEST DUP7 DUP2 SUB PUSH2 0x17DC DUP7 DUP3 PUSH2 0x15E6 JUMP JUMPDEST POP PUSH0 DUP1 DUP14 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x17F1 JUMPI PUSH2 0x17F1 PUSH2 0x334A JUMP JUMPDEST EQ SWAP1 POP PUSH2 0x1800 DUP13 DUP3 DUP12 DUP14 PUSH2 0x2003 JUMP JUMPDEST POP POP JUMPDEST POP POP POP POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x181B DUP3 PUSH2 0x207E JUMP JUMPDEST DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1831 PUSH2 0x2133 JUMP JUMPDEST PUSH1 0x2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x36C1 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SSTORE JUMP JUMPDEST PUSH0 PUSH0 PUSH0 GAS DUP5 MLOAD SWAP1 SWAP2 POP PUSH2 0x1857 DUP7 DUP3 PUSH2 0x2164 JUMP JUMPDEST PUSH2 0x1860 DUP7 PUSH2 0xB96 JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x120 DUP3 ADD MLOAD PUSH2 0x100 DUP4 ADD MLOAD PUSH1 0xA0 DUP5 ADD MLOAD PUSH1 0x80 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH1 0xC0 DUP8 ADD MLOAD DUP7 OR OR OR OR OR OR PUSH15 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x18F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x41413934206761732076616C756573206F766572666C6F770000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH0 PUSH2 0x191E DUP5 PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xA0 DUP3 ADD MLOAD PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0x60 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH2 0x100 SWAP1 SWAP6 ADD MLOAD SWAP5 ADD ADD ADD ADD MUL SWAP1 JUMP JUMPDEST SWAP1 POP PUSH2 0x192D DUP11 DUP11 DUP11 DUP5 DUP8 PUSH2 0x2270 JUMP JUMPDEST SWAP7 POP PUSH2 0x1940 DUP5 PUSH0 ADD MLOAD DUP6 PUSH1 0x20 ADD MLOAD PUSH2 0x2401 JUMP JUMPDEST PUSH2 0x1996 JUMPI DUP10 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1A SWAP1 DUP3 ADD MSTORE PUSH32 0x4141323520696E76616C6964206163636F756E74206E6F6E6365000000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP3 GAS DUP7 SUB GT ISZERO PUSH2 0x19F2 JUMPI DUP10 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1E SWAP1 DUP3 ADD MSTORE PUSH32 0x41413236206F76657220766572696669636174696F6E4761734C696D69740000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0xE0 DUP5 ADD MLOAD PUSH1 0x60 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1A19 JUMPI PUSH2 0x1A14 DUP12 DUP12 DUP12 DUP6 PUSH2 0x244D JUMP JUMPDEST SWAP8 POP SWAP1 POP JUMPDEST PUSH1 0x40 DUP10 ADD DUP3 SWAP1 MSTORE DUP1 PUSH1 0x60 DUP11 ADD MSTORE PUSH1 0xA0 DUP11 ADD CALLDATALOAD GAS DUP8 SUB ADD DUP10 PUSH1 0x80 ADD DUP2 DUP2 MSTORE POP POP POP POP POP POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1A51 DUP6 PUSH2 0x2604 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1AB7 JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x14 SWAP1 DUP3 ADD MSTORE PUSH20 0x20A0991A1039B4B3B730BA3AB9329032B93937B9 PUSH1 0x61 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1B0F JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x17 SWAP1 DUP3 ADD MSTORE PUSH32 0x414132322065787069726564206F72206E6F7420647565000000000000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x1B19 DUP6 PUSH2 0x2604 JUMP JUMPDEST SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x1B75 JUMPI DUP7 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x14 SWAP1 DUP3 ADD MSTORE PUSH20 0x20A0999A1039B4B3B730BA3AB9329032B93937B9 PUSH1 0x61 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP2 ISZERO PUSH2 0x1BD7 JUMPI DUP7 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x21 SWAP1 DUP3 ADD MSTORE PUSH32 0x41413332207061796D61737465722065787069726564206F72206E6F74206475 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x65 PUSH1 0xF8 SHL PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 GAS SWAP1 POP PUSH0 PUSH2 0x1BF1 DUP5 PUSH1 0x60 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 SWAP2 POP PUSH0 SWAP1 CALLDATASIZE DUP3 PUSH2 0x1C08 PUSH1 0x60 DUP11 ADD DUP11 PUSH2 0x315D JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x60 PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1C1E JUMPI DUP5 CALLDATALOAD SWAP2 POP JUMPDEST POP PUSH4 0x72288ED1 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0x1CCB JUMPI PUSH0 DUP12 DUP12 PUSH1 0x20 ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x1C4F SWAP3 SWAP2 SWAP1 PUSH2 0x33B7 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 DUP2 MSTORE PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x8DD7712F PUSH1 0xE0 SHL OR SWAP1 MSTORE MLOAD SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH3 0x42DC53 SWAP1 PUSH2 0x1C96 SWAP1 DUP5 SWAP1 DUP16 SWAP1 DUP14 SWAP1 PUSH1 0x24 ADD PUSH2 0x3482 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP SWAP3 POP POP PUSH2 0x1D20 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH3 0x42DC53 DUP6 DUP6 DUP14 DUP12 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x1CF0 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x34B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP SWAP2 POP JUMPDEST PUSH1 0x20 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD PUSH0 ADDRESS GAS CALL SWAP6 POP PUSH0 MLOAD SWAP9 POP DUP5 PUSH1 0x40 MSTORE POP POP POP POP POP DUP1 PUSH2 0x1E84 JUMPI PUSH0 RETURNDATASIZE DUP1 PUSH1 0x20 SUB PUSH2 0x1D55 JUMPI PUSH1 0x20 PUSH0 PUSH0 RETURNDATACOPY PUSH0 MLOAD SWAP2 POP JUMPDEST POP PUSH4 0xDEADDEAD PUSH1 0xE0 SHL DUP2 SUB PUSH2 0x1DA8 JUMPI DUP8 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0xF SWAP1 DUP3 ADD MSTORE PUSH15 0x41413935206F7574206F6620676173 PUSH1 0x88 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH4 0xDEADAA51 PUSH1 0xE0 SHL DUP2 SUB PUSH2 0x1DF7 JUMPI PUSH0 DUP7 PUSH1 0x80 ADD MLOAD GAS PUSH2 0x1DC7 SWAP1 DUP8 PUSH2 0x3021 JUMP JUMPDEST PUSH2 0x1DD1 SWAP2 SWAP1 PUSH2 0x2FF6 JUMP JUMPDEST PUSH1 0x40 DUP9 ADD MLOAD SWAP1 SWAP2 POP PUSH2 0x1DE2 DUP9 PUSH2 0x1FB4 JUMP JUMPDEST PUSH2 0x1DEE DUP9 PUSH0 DUP4 DUP6 PUSH2 0x2003 JUMP JUMPDEST SWAP6 POP PUSH2 0x1E82 SWAP1 POP JUMP JUMPDEST DUP6 MLOAD DUP1 MLOAD PUSH1 0x20 DUP1 DUP10 ADD MLOAD SWAP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP2 SWAP1 PUSH32 0xF62676F440FF169A3A9AFDBF812E89E7F95975EE8E5C31214FFDEF631C5F4792 SWAP1 PUSH2 0x1E3E PUSH2 0x800 PUSH2 0x162E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E4C SWAP3 SWAP2 SWAP1 PUSH2 0x2FCA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH0 DUP7 PUSH1 0x80 ADD MLOAD GAS PUSH2 0x1E65 SWAP1 DUP8 PUSH2 0x3021 JUMP JUMPDEST PUSH2 0x1E6F SWAP2 SWAP1 PUSH2 0x2FF6 JUMP JUMPDEST SWAP1 POP PUSH2 0x1E7E PUSH1 0x2 DUP9 DUP7 DUP5 PUSH2 0x1659 JUMP JUMPDEST SWAP6 POP POP JUMPDEST POP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1EE4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4141393020696E76616C69642062656E65666963696172790000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x40 MLOAD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1F2D 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 0x1F32 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xD53 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x41413931206661696C65642073656E6420746F2062656E656669636961727900 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x120 DUP3 ADD MLOAD PUSH0 SWAP2 SWAP1 DUP1 DUP3 SUB PUSH2 0x1FA0 JUMPI POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1FAC DUP3 BASEFEE DUP4 ADD PUSH2 0x2653 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP1 MLOAD PUSH1 0x20 DUP1 DUP5 ADD MLOAD SWAP3 DUP2 ADD MLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP3 SWAP2 PUSH32 0x67B4FA9642F42120BF031F3051D1824B0FE25627945B27B8A6A65D5761D5482E SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST DUP4 MLOAD PUSH1 0xE0 DUP2 ADD MLOAD DUP2 MLOAD PUSH1 0x20 DUP1 DUP9 ADD MLOAD SWAP4 ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND SWAP5 SWAP3 SWAP1 SWAP4 AND SWAP3 PUSH32 0x49628FD1471006C1482DA88028E9CE4DBB080B815C9B0344D39E5A8E6EC1419F SWAP2 PUSH2 0x2070 SWAP2 DUP10 SWAP1 DUP10 SWAP1 DUP10 SWAP1 SWAP4 DUP5 MSTORE SWAP2 ISZERO ISZERO PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 CALLDATALOAD PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH0 PUSH2 0x209D PUSH2 0x2098 PUSH1 0x40 DUP8 ADD DUP8 PUSH2 0x315D JUMP JUMPDEST PUSH2 0x266A JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x20B0 PUSH2 0x2098 PUSH1 0x60 DUP9 ADD DUP9 PUSH2 0x315D JUMP JUMPDEST SWAP1 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH1 0xA0 DUP8 ADD CALLDATALOAD PUSH1 0xC0 DUP9 ADD CALLDATALOAD PUSH0 PUSH2 0x20D2 PUSH2 0x2098 PUSH1 0xE0 DUP13 ADD DUP13 PUSH2 0x315D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP11 SWAP1 SWAP11 AND PUSH1 0x20 DUP12 ADD MSTORE DUP10 DUP2 ADD SWAP9 SWAP1 SWAP9 MSTORE PUSH1 0x60 DUP10 ADD SWAP7 SWAP1 SWAP7 MSTORE POP PUSH1 0x80 DUP8 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0xA0 DUP7 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xC0 DUP6 ADD MSTORE PUSH1 0xE0 DUP5 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH2 0x120 SWAP1 SWAP3 ADD SWAP1 MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x36C1 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x2 SUB PUSH2 0x2162 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3EE5AEB5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x2171 PUSH1 0x20 DUP4 ADD DUP4 PUSH2 0x2E4D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP3 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD DUP3 DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE DUP2 SHR PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0xA0 DUP5 ADD CALLDATALOAD PUSH1 0xC0 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 ADD CALLDATALOAD SWAP2 DUP3 AND PUSH2 0x100 DUP5 ADD MSTORE SHR PUSH2 0x120 DUP3 ADD MSTORE CALLDATASIZE PUSH0 PUSH2 0x21D3 PUSH1 0xE0 DUP6 ADD DUP6 PUSH2 0x315D JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP DUP1 ISZERO PUSH2 0x2256 JUMPI PUSH1 0x34 DUP2 LT ISZERO PUSH2 0x222F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4141393320696E76616C6964207061796D6173746572416E6444617461000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH2 0x2239 DUP3 DUP3 PUSH2 0x267C JUMP JUMPDEST PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xE0 DUP5 ADD MSTORE PUSH2 0xB90 JUMP JUMPDEST PUSH0 PUSH1 0xE0 DUP5 ADD DUP2 SWAP1 MSTORE PUSH1 0x80 DUP5 ADD DUP2 SWAP1 MSTORE PUSH1 0xA0 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST DUP3 MLOAD DUP1 MLOAD PUSH0 SWAP2 SWAP1 PUSH2 0x228E DUP9 DUP8 PUSH2 0x2289 PUSH1 0x40 DUP12 ADD DUP12 PUSH2 0x315D JUMP JUMPDEST PUSH2 0x26E3 JUMP JUMPDEST PUSH1 0xE0 DUP3 ADD MLOAD PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x22CF JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP8 DUP2 GT PUSH2 0x22C9 JUMPI DUP1 DUP9 SUB PUSH2 0x22CB JUMP JUMPDEST PUSH0 JUMPDEST SWAP2 POP POP JUMPDEST PUSH1 0x20 DUP9 ADD MLOAD PUSH1 0x40 MLOAD PUSH4 0x6608BDF PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP2 PUSH4 0x19822F7C SWAP2 DUP10 SWAP2 PUSH2 0x2305 SWAP2 DUP15 SWAP2 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x34EB JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP8 CALL SWAP4 POP POP POP POP DUP1 ISZERO PUSH2 0x2340 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x233D SWAP2 DUP2 ADD SWAP1 PUSH2 0x350F JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x236B JUMPI DUP10 PUSH2 0x2350 PUSH2 0x800 PUSH2 0x162E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x65C8FD4D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP3 SWAP2 SWAP1 PUSH2 0x3526 JUMP JUMPDEST SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x23F4 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP1 DUP10 GT ISZERO PUSH2 0x23EE JUMPI DUP12 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x17 SWAP1 DUP3 ADD MSTORE PUSH32 0x41413231206469646E2774207061792070726566756E64000000000000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP9 SWAP1 SUB SWAP1 SSTORE JUMPDEST POP POP POP POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP5 DUP3 SHR DUP1 DUP6 MSTORE SWAP3 MSTORE DUP3 KECCAK256 DUP1 SLOAD DUP5 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND SWAP2 SWAP1 DUP6 PUSH2 0x243F DUP4 PUSH2 0x3009 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP EQ SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 GAS DUP6 MLOAD PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD SWAP4 SWAP5 POP SWAP2 SWAP3 SWAP1 SWAP2 SWAP1 DUP8 DUP2 LT ISZERO PUSH2 0x24D4 JUMPI DUP11 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1E SWAP1 DUP3 ADD MSTORE PUSH32 0x41413331207061796D6173746572206465706F73697420746F6F206C6F770000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP8 DUP2 SUB DUP3 PUSH0 ADD DUP2 SWAP1 SSTORE POP PUSH0 DUP5 PUSH1 0x80 ADD MLOAD SWAP1 POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52B7512C DUP3 DUP14 DUP14 PUSH1 0x20 ADD MLOAD DUP14 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x251B SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x34EB JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP8 CALL SWAP4 POP POP POP POP DUP1 ISZERO PUSH2 0x2559 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x2556 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x3562 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2584 JUMPI DUP12 PUSH2 0x2569 PUSH2 0x800 PUSH2 0x162E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x65C8FD4D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP3 SWAP2 SWAP1 PUSH2 0x35DA JUMP JUMPDEST SWAP1 SWAP9 POP SWAP7 POP DUP1 GAS DUP8 SUB GT ISZERO PUSH2 0x25F5 JUMPI DUP12 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x27 SWAP1 DUP3 ADD MSTORE PUSH32 0x41413336206F766572207061796D6173746572566572696669636174696F6E47 PUSH1 0x60 DUP3 ADD MSTORE PUSH7 0x185CD31A5B5A5D PUSH1 0xCA SHL PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP POP SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP3 PUSH0 SUB PUSH2 0x2617 JUMPI POP PUSH0 SWAP3 DUP4 SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2621 DUP5 PUSH2 0x299D JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x40 ADD MLOAD PUSH6 0xFFFFFFFFFFFF AND TIMESTAMP GT DUP1 PUSH2 0x2648 JUMPI POP DUP1 PUSH1 0x20 ADD MLOAD PUSH6 0xFFFFFFFFFFFF AND TIMESTAMP LT JUMPDEST SWAP1 MLOAD SWAP5 SWAP1 SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 DUP4 LT PUSH2 0x2661 JUMPI DUP2 PUSH2 0x2663 JUMP JUMPDEST DUP3 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP3 DUP1 DUP6 DUP4 CALLDATACOPY SWAP1 KECCAK256 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0x268C PUSH1 0x14 DUP3 DUP7 DUP9 PUSH2 0x3616 JUMP JUMPDEST PUSH2 0x2695 SWAP2 PUSH2 0x363D JUMP JUMPDEST PUSH1 0x60 SHR PUSH2 0x26A6 PUSH1 0x24 PUSH1 0x14 DUP8 DUP10 PUSH2 0x3616 JUMP JUMPDEST PUSH2 0x26AF SWAP2 PUSH2 0x368A JUMP JUMPDEST PUSH1 0x80 SHR PUSH2 0x26C0 PUSH1 0x34 PUSH1 0x24 DUP9 DUP11 PUSH2 0x3616 JUMP JUMPDEST PUSH2 0x26C9 SWAP2 PUSH2 0x368A JUMP JUMPDEST SWAP2 SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP3 POP PUSH1 0x80 SHR SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xB90 JUMPI DUP3 MLOAD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND EXTCODESIZE ISZERO PUSH2 0x274E JUMPI DUP5 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1F SWAP1 DUP3 ADD MSTORE PUSH32 0x414131302073656E64657220616C726561647920636F6E737472756374656400 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x570E1A36 DUP7 PUSH0 ADD MLOAD PUSH1 0x40 ADD MLOAD DUP7 DUP7 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x27A5 SWAP3 SWAP2 SWAP1 PUSH2 0x30B8 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP8 CALL ISZERO DUP1 ISZERO PUSH2 0x27C1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP 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 0x27E6 SWAP2 SWAP1 PUSH2 0x30CB JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x2848 JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1B SWAP1 DUP3 ADD MSTORE PUSH32 0x4141313320696E6974436F6465206661696C6564206F72204F4F470000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x28B2 JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP1 DUP3 ADD MSTORE PUSH32 0x4141313420696E6974436F6465206D7573742072657475726E2073656E646572 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x2914 JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP1 DUP3 ADD MSTORE PUSH32 0x4141313520696E6974436F6465206D757374206372656174652073656E646572 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x2922 PUSH1 0x14 DUP3 DUP7 DUP9 PUSH2 0x3616 JUMP JUMPDEST PUSH2 0x292B SWAP2 PUSH2 0x363D JUMP JUMPDEST PUSH1 0x60 SHR SWAP1 POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x20 ADD MLOAD PUSH32 0xD51A9C61267AA6196961883ECF5FF2DA6619C37DAC0FA92122513FB32C032D2D DUP4 DUP10 PUSH0 ADD MLOAD PUSH1 0xE0 ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0x298C SWAP3 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 PUSH1 0xA0 DUP2 SWAP1 SHR PUSH6 0xFFFFFFFFFFFF DUP2 AND PUSH0 SUB PUSH2 0x29D7 JUMPI POP PUSH6 0xFFFFFFFFFFFF JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0xD0 SWAP5 SWAP1 SWAP5 SHR PUSH1 0x20 DUP4 ADD MSTORE PUSH6 0xFFFFFFFFFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x2A75 PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2AC9 JUMPI PUSH2 0x2AC9 PUSH2 0x2A93 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x140 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2AC9 JUMPI PUSH2 0x2AC9 PUSH2 0x2A93 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2B1A JUMPI PUSH2 0x2B1A PUSH2 0x2A93 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x2B3A JUMPI PUSH2 0x2B3A PUSH2 0x2A93 JUMP JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2B5C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x2B6A DUP2 PUSH2 0x2B48 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 DUP4 SUB PUSH2 0x1C0 DUP2 SLT ISZERO PUSH2 0x2B81 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2B89 PUSH2 0x2AA7 JUMP JUMPDEST SWAP2 POP PUSH2 0x140 DUP2 SLT ISZERO PUSH2 0x2B99 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2BA2 PUSH2 0x2ACF JUMP JUMPDEST PUSH2 0x2BAB DUP4 PUSH2 0x2B5F JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x2BF5 PUSH1 0xE0 DUP5 ADD PUSH2 0x2B5F JUMP JUMPDEST PUSH1 0xE0 DUP3 ADD MSTORE PUSH2 0x100 DUP4 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE DUP2 MSTORE PUSH2 0x140 DUP3 ADD CALLDATALOAD PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x160 DUP3 ADD CALLDATALOAD PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x180 DUP3 ADD CALLDATALOAD PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x1A0 SWAP1 SWAP2 ADD CALLDATALOAD PUSH1 0x80 DUP3 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2C54 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2C6A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x2C81 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x200 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2C9C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2CB1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x2CC1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x2CD4 PUSH2 0x2CCF DUP3 PUSH2 0x2B22 JUMP JUMPDEST PUSH2 0x2AF2 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP9 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x2CE8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP7 POP POP POP POP PUSH2 0x2D0D DUP7 PUSH1 0x20 DUP8 ADD PUSH2 0x2B6F JUMP JUMPDEST SWAP3 POP PUSH2 0x1E0 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2D28 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2D34 DUP8 DUP3 DUP9 ADD PUSH2 0x2C44 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D50 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x2663 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D77 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x2663 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xC0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2B6A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2DB0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2663 DUP3 PUSH2 0x2D8A JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2DCA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2DD5 DUP2 PUSH2 0x2B48 JUMP JUMPDEST SWAP2 POP PUSH2 0x2DE3 PUSH1 0x20 DUP5 ADD PUSH2 0x2D8A JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2DFD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2E08 DUP2 PUSH2 0x2B48 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2E26 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2E3B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 ADD PUSH2 0x120 DUP2 DUP6 SUB SLT ISZERO PUSH2 0x2663 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2E5D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2663 DUP2 PUSH2 0x2B48 JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2E78 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2E8E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x2C81 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2EBA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2ECF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2EDB DUP7 DUP3 DUP8 ADD PUSH2 0x2E68 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x2EEF DUP2 PUSH2 0x2B48 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2F0C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x2F17 DUP2 PUSH2 0x2B48 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2F31 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2F3D DUP7 DUP3 DUP8 ADD PUSH2 0x2C44 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2F5B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2F70 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2F7C DUP6 DUP3 DUP7 ADD PUSH2 0x2C44 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT 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 DUP3 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0x1FAC PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2F9C JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x783 JUMPI PUSH2 0x783 PUSH2 0x2FE2 JUMP JUMPDEST PUSH0 PUSH1 0x1 DUP3 ADD PUSH2 0x301A JUMPI PUSH2 0x301A PUSH2 0x2FE2 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x783 JUMPI PUSH2 0x783 PUSH2 0x2FE2 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 CALLDATALOAD PUSH2 0x11E NOT DUP4 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x305D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 DUP4 DUP3 CALLDATACOPY PUSH0 SWAP2 ADD SWAP1 DUP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 ISZERO ISZERO DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0x1FAC PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2F9C 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 0x1FAC PUSH1 0x20 DUP4 ADD DUP5 DUP7 PUSH2 0x3090 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x30DB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x2663 DUP2 PUSH2 0x2B48 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x783 JUMPI PUSH2 0x783 PUSH2 0x2FE2 JUMP JUMPDEST PUSH0 DUP3 CALLDATALOAD PUSH1 0x5E NOT DUP4 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x305D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x312D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x3146 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP PUSH1 0x5 DUP2 SWAP1 SHL CALLDATASIZE SUB DUP3 SGT ISZERO PUSH2 0x2C81 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x3172 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x318B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x2C81 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x31B4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x20 DUP2 ADD SWAP3 POP CALLDATALOAD SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x31D2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATASIZE SUB DUP3 SGT ISZERO PUSH2 0x2C81 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x31FA DUP3 PUSH2 0x31ED DUP4 PUSH2 0x2B5F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 DUP2 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH0 PUSH2 0x3212 PUSH1 0x40 DUP4 ADD DUP4 PUSH2 0x319F JUMP JUMPDEST PUSH2 0x120 PUSH1 0x40 DUP7 ADD MSTORE PUSH2 0x3229 PUSH2 0x120 DUP7 ADD DUP3 DUP5 PUSH2 0x3090 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3239 PUSH1 0x60 DUP5 ADD DUP5 PUSH2 0x319F JUMP JUMPDEST DUP6 DUP4 SUB PUSH1 0x60 DUP8 ADD MSTORE PUSH2 0x324C DUP4 DUP3 DUP5 PUSH2 0x3090 JUMP JUMPDEST PUSH1 0x80 DUP7 DUP2 ADD CALLDATALOAD SWAP1 DUP9 ADD MSTORE PUSH1 0xA0 DUP1 DUP8 ADD CALLDATALOAD SWAP1 DUP9 ADD MSTORE PUSH1 0xC0 DUP1 DUP8 ADD CALLDATALOAD SWAP1 DUP9 ADD MSTORE SWAP3 POP PUSH2 0x327C SWAP2 POP POP PUSH1 0xE0 DUP5 ADD DUP5 PUSH2 0x319F JUMP JUMPDEST DUP6 DUP4 SUB PUSH1 0xE0 DUP8 ADD MSTORE PUSH2 0x328F DUP4 DUP3 DUP5 PUSH2 0x3090 JUMP JUMPDEST SWAP3 POP POP POP PUSH2 0x32A1 PUSH2 0x100 DUP5 ADD DUP5 PUSH2 0x319F JUMP JUMPDEST DUP6 DUP4 SUB PUSH2 0x100 DUP8 ADD MSTORE PUSH2 0x32B5 DUP4 DUP3 DUP5 PUSH2 0x3090 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 DUP3 MSTORE DUP2 ADD DUP5 SWAP1 MSTORE PUSH0 PUSH1 0x60 PUSH1 0x5 DUP7 SWAP1 SHL DUP4 ADD DUP2 ADD SWAP1 DUP4 ADD DUP8 DUP4 PUSH2 0x11E NOT CALLDATASIZE DUP4 SWAP1 SUB ADD JUMPDEST DUP10 DUP3 LT ISZERO PUSH2 0x3328 JUMPI DUP7 DUP6 SUB PUSH1 0x5F NOT ADD DUP5 MSTORE DUP3 CALLDATALOAD DUP2 DUP2 SLT PUSH2 0x3302 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x330E DUP7 DUP14 DUP4 ADD PUSH2 0x31E0 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 DUP4 ADD SWAP3 POP PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH2 0x32E4 JUMP JUMPDEST POP POP POP POP DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x333F DUP2 DUP6 DUP8 PUSH2 0x3090 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x3 DUP7 LT PUSH2 0x337B JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP6 DUP3 MSTORE PUSH1 0x80 PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x3392 PUSH1 0x80 DUP4 ADD DUP7 PUSH2 0x2F9C JUMP JUMPDEST PUSH1 0x40 DUP4 ADD SWAP5 SWAP1 SWAP5 MSTORE POP PUSH1 0x60 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x2663 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2F9C JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH0 PUSH2 0x33C9 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x31E0 JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0x20 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP5 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x343D PUSH1 0xE0 DUP6 ADD DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x100 DUP2 DUP2 ADD MLOAD SWAP1 DUP5 ADD MSTORE PUSH2 0x120 SWAP1 DUP2 ADD MLOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH2 0x140 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x160 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0x180 DUP4 ADD MSTORE PUSH1 0x80 ADD MLOAD PUSH2 0x1A0 SWAP1 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH2 0x200 DUP2 MSTORE PUSH0 PUSH2 0x3496 PUSH2 0x200 DUP4 ADD DUP7 PUSH2 0x2F9C JUMP JUMPDEST PUSH2 0x34A3 PUSH1 0x20 DUP5 ADD DUP7 PUSH2 0x33D8 JUMP JUMPDEST DUP3 DUP2 SUB PUSH2 0x1E0 DUP5 ADD MSTORE PUSH2 0x32B5 DUP2 DUP6 PUSH2 0x2F9C JUMP JUMPDEST PUSH2 0x200 DUP2 MSTORE PUSH0 PUSH2 0x34CB PUSH2 0x200 DUP4 ADD DUP7 DUP9 PUSH2 0x3090 JUMP JUMPDEST PUSH2 0x34D8 PUSH1 0x20 DUP5 ADD DUP7 PUSH2 0x33D8 JUMP JUMPDEST DUP3 DUP2 SUB PUSH2 0x1E0 DUP5 ADD MSTORE PUSH2 0x333F DUP2 DUP6 PUSH2 0x2F9C JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH0 PUSH2 0x34FD PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x31E0 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP5 SWAP1 SWAP5 MSTORE POP PUSH1 0x40 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x351F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x60 DUP3 ADD MSTORE PUSH13 0x10504C8CC81C995D995C9D1959 PUSH1 0x9A SHL PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP3 ADD MSTORE PUSH0 PUSH2 0x1FAC PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x2F9C JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3573 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3588 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x3598 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x35A6 PUSH2 0x2CCF DUP3 PUSH2 0x2B22 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP7 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x35BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 PUSH1 0x20 SWAP3 DUP3 ADD DUP4 ADD MSTORE SWAP5 ADD MLOAD SWAP4 SWAP6 SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x60 DUP3 ADD MSTORE PUSH13 0x10504CCCC81C995D995C9D1959 PUSH1 0x9A SHL PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP3 ADD MSTORE PUSH0 PUSH2 0x1FAC PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x2F9C JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x3624 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x3630 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 0x3683 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 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x10 DUP5 LT ISZERO PUSH2 0x3683 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT PUSH1 0x10 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP INVALID SWAP12 PUSH24 0x9B17422D0DF92223018B32B4D1FA46E071723D6817E2486D STOP EXTCODESIZE EOFCREATE 0xC5 PUSH0 STOP LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP9 XOR 0xEB 0xC 0xBF 0xB3 SWAP6 BLOBBASEFEE GASLIMIT PUSH24 0x92FC92A2C775B32E3CD87A4ADF133C403EB3AA9A4BCD6473 PUSH16 0x6C634300081E00336080604052348015 PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FC DUP1 PUSH2 0x1C PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x570E1A36 EQ PUSH2 0x2D JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x40 PUSH2 0x3B CALLDATASIZE PUSH1 0x4 PUSH2 0xE4 JUMP JUMPDEST PUSH2 0x5C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 DUP1 PUSH2 0x6B PUSH1 0x14 DUP3 DUP6 DUP8 PUSH2 0x152 JUMP JUMPDEST PUSH2 0x74 SWAP2 PUSH2 0x179 JUMP JUMPDEST PUSH1 0x60 SHR SWAP1 POP PUSH0 PUSH2 0x87 DUP5 PUSH1 0x14 DUP2 DUP9 PUSH2 0x152 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 DUP5 MLOAD SWAP5 SWAP6 POP SWAP4 PUSH1 0x20 SWAP4 POP DUP5 SWAP3 POP SWAP1 POP DUP3 DUP6 ADD DUP3 DUP8 GAS CALL SWAP1 POP PUSH0 MLOAD SWAP4 POP DUP1 PUSH2 0xDB JUMPI PUSH0 SWAP4 POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x11B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x131 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x142 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x160 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x16C 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 0x1BF 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 INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP10 CODESIZE 0xC0 MULMOD 0xB3 JUMPI DIV EXTCODESIZE 0xAF PUSH27 0xFF0313DD20F9875403CA336F40B0F4F820E50A3A41F564736F6C63 NUMBER STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"789:30345:1:-:0;;;986:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;937:68:1;;;789:30345;;;;;;;;;-1:-1:-1;2365:1:96;1505:66;2539;789:30345:1;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_2633":{"entryPoint":null,"id":2633,"parameterSlots":0,"returnSlots":0},"@_compensate_285":{"entryPoint":7822,"id":285,"parameterSlots":2,"returnSlots":0},"@_copyUserOpToMemory_1221":{"entryPoint":8548,"id":1221,"parameterSlots":2,"returnSlots":0},"@_createSenderIfNeeded_1358":{"entryPoint":9955,"id":1358,"parameterSlots":4,"returnSlots":0},"@_executeUserOp_467":{"entryPoint":7136,"id":467,"parameterSlots":3,"returnSlots":1},"@_getRequiredPrefund_1256":{"entryPoint":null,"id":1256,"parameterSlots":1,"returnSlots":1},"@_getValidationData_1761":{"entryPoint":9732,"id":1761,"parameterSlots":1,"returnSlots":2},"@_incrementDeposit_2666":{"entryPoint":5606,"id":2666,"parameterSlots":2,"returnSlots":1},"@_nonReentrantAfter_31086":{"entryPoint":null,"id":31086,"parameterSlots":0,"returnSlots":0},"@_nonReentrantBeforeView_31059":{"entryPoint":8499,"id":31059,"parameterSlots":0,"returnSlots":0},"@_nonReentrantBefore_31074":{"entryPoint":6185,"id":31074,"parameterSlots":0,"returnSlots":0},"@_parseValidationData_2312":{"entryPoint":10653,"id":2312,"parameterSlots":1,"returnSlots":1},"@_postExecution_2156":{"entryPoint":5721,"id":2156,"parameterSlots":4,"returnSlots":1},"@_reentrancyGuardEntered_31101":{"entryPoint":null,"id":31101,"parameterSlots":0,"returnSlots":1},"@_reentrancyGuardStorageSlot_31109":{"entryPoint":null,"id":31109,"parameterSlots":0,"returnSlots":1},"@_validateAccountAndPaymasterValidationData_1712":{"entryPoint":6726,"id":1712,"parameterSlots":4,"returnSlots":0},"@_validateAccountPrepayment_1519":{"entryPoint":8816,"id":1519,"parameterSlots":5,"returnSlots":1},"@_validateAndUpdateNonce_2505":{"entryPoint":9217,"id":2505,"parameterSlots":2,"returnSlots":1},"@_validatePaymasterPrepayment_1641":{"entryPoint":9293,"id":1641,"parameterSlots":4,"returnSlots":2},"@_validatePrepayment_1934":{"entryPoint":6212,"id":1934,"parameterSlots":3,"returnSlots":2},"@addStake_2766":{"entryPoint":1929,"id":2766,"parameterSlots":1,"returnSlots":0},"@balanceOf_2624":{"entryPoint":null,"id":2624,"parameterSlots":1,"returnSlots":1},"@call_3766":{"entryPoint":5656,"id":3766,"parameterSlots":4,"returnSlots":1},"@calldataKeccak_2397":{"entryPoint":9834,"id":2397,"parameterSlots":2,"returnSlots":1},"@delegateAndRevert_2235":{"entryPoint":3416,"id":2235,"parameterSlots":3,"returnSlots":0},"@depositTo_2686":{"entryPoint":1328,"id":2686,"parameterSlots":1,"returnSlots":0},"@deposits_2565":{"entryPoint":null,"id":2565,"parameterSlots":0,"returnSlots":0},"@emitPrefundTooLow_515":{"entryPoint":8116,"id":515,"parameterSlots":1,"returnSlots":0},"@emitUserOperationEvent_497":{"entryPoint":8195,"id":497,"parameterSlots":4,"returnSlots":0},"@encode_3103":{"entryPoint":8318,"id":3103,"parameterSlots":1,"returnSlots":1},"@getDepositInfo_2579":{"entryPoint":null,"id":2579,"parameterSlots":1,"returnSlots":1},"@getMemoryBytesFromOffset_2212":{"entryPoint":null,"id":2212,"parameterSlots":1,"returnSlots":1},"@getNonce_2454":{"entryPoint":null,"id":2454,"parameterSlots":2,"returnSlots":1},"@getOffsetOfMemoryBytes_2202":{"entryPoint":null,"id":2202,"parameterSlots":1,"returnSlots":1},"@getReturnData_3801":{"entryPoint":5678,"id":3801,"parameterSlots":1,"returnSlots":1},"@getSenderAddress_1377":{"entryPoint":3539,"id":1377,"parameterSlots":2,"returnSlots":0},"@getSender_2999":{"entryPoint":null,"id":2999,"parameterSlots":1,"returnSlots":1},"@getUint256Slot_31178":{"entryPoint":null,"id":31178,"parameterSlots":1,"returnSlots":1},"@getUserOpGasPrice_2192":{"entryPoint":8067,"id":2192,"parameterSlots":1,"returnSlots":1},"@getUserOpHash_1107":{"entryPoint":2966,"id":1107,"parameterSlots":1,"returnSlots":1},"@handleAggregatedOps_913":{"entryPoint":4563,"id":913,"parameterSlots":3,"returnSlots":0},"@handleOps_623":{"entryPoint":3031,"id":623,"parameterSlots":3,"returnSlots":0},"@hash_3317":{"entryPoint":6161,"id":3317,"parameterSlots":1,"returnSlots":1},"@incrementNonce_2469":{"entryPoint":2580,"id":2469,"parameterSlots":1,"returnSlots":0},"@innerHandleOp_1082":{"entryPoint":1412,"id":1082,"parameterSlots":4,"returnSlots":1},"@min_2415":{"entryPoint":9811,"id":2415,"parameterSlots":2,"returnSlots":1},"@nonceSequenceNumber_2428":{"entryPoint":null,"id":2428,"parameterSlots":0,"returnSlots":0},"@senderCreator_183":{"entryPoint":null,"id":183,"parameterSlots":0,"returnSlots":1},"@supportsInterface_252":{"entryPoint":1794,"id":252,"parameterSlots":1,"returnSlots":1},"@supportsInterface_33322":{"entryPoint":null,"id":33322,"parameterSlots":1,"returnSlots":1},"@unlockStake_2822":{"entryPoint":3722,"id":2822,"parameterSlots":0,"returnSlots":0},"@unpackPaymasterStaticFields_3301":{"entryPoint":9852,"id":3301,"parameterSlots":2,"returnSlots":3},"@unpackUints_3129":{"entryPoint":null,"id":3129,"parameterSlots":1,"returnSlots":2},"@withdrawStake_2905":{"entryPoint":4020,"id":2905,"parameterSlots":1,"returnSlots":0},"@withdrawTo_2960":{"entryPoint":2634,"id":2960,"parameterSlots":2,"returnSlots":0},"abi_decode_address":{"entryPoint":11103,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_array_struct_PackedUserOperation_calldata_dyn_calldata":{"entryPoint":11880,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_bytes_calldata":{"entryPoint":11332,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_struct_UserOpInfo":{"entryPoint":11119,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":11853,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":12491,"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":11756,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes_calldata_ptr":{"entryPoint":12026,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint192":{"entryPoint":11705,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptrt_address_payable":{"entryPoint":11944,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptrt_address_payable":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_bytes4":{"entryPoint":11584,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes_calldata_ptr":{"entryPoint":12106,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes_memory_ptrt_struct$_UserOpInfo_$947_memory_ptrt_bytes_calldata_ptr":{"entryPoint":11400,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_bytes_memory_ptrt_uint256_fromMemory":{"entryPoint":13666,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IAggregator_$3382":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr":{"entryPoint":11798,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint192":{"entryPoint":11680,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":13583,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint32":{"entryPoint":11623,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint192":{"entryPoint":11658,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_bytes":{"entryPoint":12188,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_bytes_calldata":{"entryPoint":12432,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_struct_PackedUserOperation_calldata":{"entryPoint":12768,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_struct_UserOpInfo":{"entryPoint":13272,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_packed_t_bytes_calldata_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":12391,"id":null,"parameterSlots":3,"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_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_bytes32_t_bytes32__to_t_address_t_uint256_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_bytes32_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":9,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr_t_bytes_calldata_ptr__to_t_array$_t_struct$_PackedUserOperation_$3748_memory_ptr_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":12991,"id":null,"parameterSlots":5,"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_bytes_memory_ptr__to_t_bool_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":12406,"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_address_t_uint256__to_t_bytes32_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bytes_calldata_ptr__to_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":12472,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_bytes_calldata_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":13494,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":13221,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":13442,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_enum$_PostOpMode_$3593_t_bytes_memory_ptr_t_uint256_t_uint256__to_t_uint8_t_bytes_memory_ptr_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":13150,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0c1f958f466ebe53086ccef34937001c8a0d9f200320ab480bde36d46a3c6178__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_163fbe38f6e79bbafe8ef1c6ecbcd609e161120dfcf32c1dc0ae2ace28e56cf8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1dfdcaaacbfb01ed2a280d66b545f88db6fa18ccf502cb079b76e190a3a0227b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_2157ff27c581d0c09d0fefae4820572f0bccc198ee5e28633f039d06e0011705__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_2454d602dd1245dd701375973b2bac347a9e27dc7542cb5ffbdc114cb2232f69__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_321532189629d29421359a6160b174523b9558104989fb537a4f9d684a0aa1ea__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_5cd6155e73f61bccbf344f4197f14538012904bd24fa05bb30427c7f1fe55d45__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_6a64644aeeb545618f93fda0e8ccacb2c407cdffe2b26245fdfa446117fd12f8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8d1fe892c4e34e50852d9473d3c9854eedeef3b324fbe99dc34a39c1c505db12__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_920f437a2d912d818562bb2b3dd9587067a8482ed696134ce94fa5e8d2567814__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9973ef36bc8342d488dae231c130b6ed95bb2a62fca313f7c859e3c78149cec5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_a34ed1abbfa8a2aea109afd35a4e04f6c52ffb62d3a545e3e3e4f2d894ca1e41__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b778ed14a7f7833f15cec15447ba73902b7f27cdd540d47113a5b9c3947e6b2b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_be41a8e875b0d08b577c32bcab0ac88c472e62be6c60e218189d78d10808d9e7__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_bed5bf2586bcf71963468f5a6e4def651dfab48dcb520989dbad3d1cd3cd8bdd__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_bf4e5bbea2250480ca8cf3cc338d236d16fd3805a9bc8205224406394a71fe66__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c7b85d163e4e98261caeed8e321f4ec192af622f53fd084234a04b236b40e883__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_eabab2b938baa7d6708bc792cd1d2d9d9bd3627968a46b23824d4b6af2b0f7a8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_DepositInfo_$3673_memory_ptr__to_t_struct$_DepositInfo_$3673_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr_t_bytes32__to_t_struct$_PackedUserOperation_$3748_memory_ptr_t_bytes32__fromStack_reversed":{"entryPoint":13239,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr_t_bytes32_t_uint256__to_t_struct$_PackedUserOperation_$3748_memory_ptr_t_bytes32_t_uint256__fromStack_reversed":{"entryPoint":13547,"id":null,"parameterSlots":4,"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_bool_t_uint112_t_uint32_t_uint48__to_t_uint256_t_bool_t_uint112_t_uint32_t_uint48__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint256_t_bool_t_uint256_t_uint256__to_t_uint256_t_bool_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_uint256_t_bytes_memory_ptr__to_t_uint256_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":12234,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_06edc37a8d32c7fe78db72f91122302e62b14234c1d15f3c0564559dca4729f7_t_bytes_memory_ptr__to_t_uint256_t_string_memory_ptr_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":13786,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_0959e90f1dbec1bb0766cfc7e4a6f91da34d207dfa787b59651acf3926686974__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_15a824f4c22cc564e6215a3b0d10da3af06bea6cdb58dc3760d85748fcd6036b__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_1a6d2773a48550bbfcfd396dd79645bef61ab18efc53f13933af43bfa63cc5b5__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_230fad9992163f7c7bca82563472469d2ae8f1696105d00fd8b1abf9e366de4e__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_267485e0b239ff7726cfbcfb111a14e388e8253ef89a57c2a12abc410bbc1a79__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_423a165b7dbbda2ae3873c5d3fae3c0ad56dda63b0eb4d372683317213e4df0f__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_4f6af422606d6fab6224761f4f503b9674de8994d20a0052616d3524b670e766__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_a46d515f685002bbb631614d07729b129ca01335d4ee63cf10853491e47dee73__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_af9d5dc558e78f4dcea94657e51b2cc454e4ce4aecf26fcc28fc02e10982eb3d__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_b49ba4e4826dc300b471d06b2a8612d53c4c2eb033cbfd2061c54c636bb00871__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_bb1e067ee25aabe05bbdddb7ea9a4490fa96ed7d10c6207acd0a3c723a9b7ed6__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_cf8e5f91822a9ca4de44f9559ff5db3083e7cb35e25710632c57dc900da04602__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_d96a863c677d3d708cee8a222cbb00abbe452a22e3e4b00ad0cea4459b39c336__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_eb8aae105b33b8e3029845f6a1359760a9480648cd982f4e1c37f01a5ceaf980__to_t_uint256_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint256_t_stringliteral_f272bf03d6e7cfb67a72dd0c4aee94925483c9b766e02beaec86cf4f0a3b9477_t_bytes_memory_ptr__to_t_uint256_t_string_memory_ptr_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":13606,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint32__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint48__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"access_calldata_tail_t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":12568,"id":null,"parameterSlots":2,"returnSlots":2},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":12637,"id":null,"parameterSlots":2,"returnSlots":2},"access_calldata_tail_t_struct$_PackedUserOperation_$3748_calldata_ptr":{"entryPoint":12360,"id":null,"parameterSlots":2,"returnSlots":1},"access_calldata_tail_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr":{"entryPoint":12548,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_memory":{"entryPoint":10994,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_memory_4710":{"entryPoint":10919,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_4711":{"entryPoint":10959,"id":null,"parameterSlots":0,"returnSlots":1},"array_allocation_size_bytes":{"entryPoint":11042,"id":null,"parameterSlots":1,"returnSlots":1},"calldata_access_bytes_calldata":{"entryPoint":12703,"id":null,"parameterSlots":2,"returnSlots":2},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":13846,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_uint256":{"entryPoint":12278,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint48":{"entryPoint":12518,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":12321,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes16":{"entryPoint":13962,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20":{"entryPoint":13885,"id":null,"parameterSlots":2,"returnSlots":1},"increment_t_uint256":{"entryPoint":12297,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":12258,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":12168,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":13130,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":12340,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":10899,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":11080,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:42449:125","nodeType":"YulBlock","src":"0:42449:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"46:95:125","nodeType":"YulBlock","src":"46:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"63:1:125","nodeType":"YulLiteral","src":"63:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"70:3:125","nodeType":"YulLiteral","src":"70:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"75:10:125","nodeType":"YulLiteral","src":"75:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"66:3:125","nodeType":"YulIdentifier","src":"66:3:125"},"nativeSrc":"66:20:125","nodeType":"YulFunctionCall","src":"66:20:125"}],"functionName":{"name":"mstore","nativeSrc":"56:6:125","nodeType":"YulIdentifier","src":"56:6:125"},"nativeSrc":"56:31:125","nodeType":"YulFunctionCall","src":"56:31:125"},"nativeSrc":"56:31:125","nodeType":"YulExpressionStatement","src":"56:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"103:1:125","nodeType":"YulLiteral","src":"103:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"106:4:125","nodeType":"YulLiteral","src":"106:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"96:6:125","nodeType":"YulIdentifier","src":"96:6:125"},"nativeSrc":"96:15:125","nodeType":"YulFunctionCall","src":"96:15:125"},"nativeSrc":"96:15:125","nodeType":"YulExpressionStatement","src":"96:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"127:1:125","nodeType":"YulLiteral","src":"127:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"130:4:125","nodeType":"YulLiteral","src":"130:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"120:6:125","nodeType":"YulIdentifier","src":"120:6:125"},"nativeSrc":"120:15:125","nodeType":"YulFunctionCall","src":"120:15:125"},"nativeSrc":"120:15:125","nodeType":"YulExpressionStatement","src":"120:15:125"}]},"name":"panic_error_0x41","nativeSrc":"14:127:125","nodeType":"YulFunctionDefinition","src":"14:127:125"},{"body":{"nativeSrc":"192:207:125","nodeType":"YulBlock","src":"192:207:125","statements":[{"nativeSrc":"202:19:125","nodeType":"YulAssignment","src":"202:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"218:2:125","nodeType":"YulLiteral","src":"218:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"212:5:125","nodeType":"YulIdentifier","src":"212:5:125"},"nativeSrc":"212:9:125","nodeType":"YulFunctionCall","src":"212:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"202:6:125","nodeType":"YulIdentifier","src":"202:6:125"}]},{"nativeSrc":"230:35:125","nodeType":"YulVariableDeclaration","src":"230:35:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"252:6:125","nodeType":"YulIdentifier","src":"252:6:125"},{"kind":"number","nativeSrc":"260:4:125","nodeType":"YulLiteral","src":"260:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"248:3:125","nodeType":"YulIdentifier","src":"248:3:125"},"nativeSrc":"248:17:125","nodeType":"YulFunctionCall","src":"248:17:125"},"variables":[{"name":"newFreePtr","nativeSrc":"234:10:125","nodeType":"YulTypedName","src":"234:10:125","type":""}]},{"body":{"nativeSrc":"340:22:125","nodeType":"YulBlock","src":"340:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"342:16:125","nodeType":"YulIdentifier","src":"342:16:125"},"nativeSrc":"342:18:125","nodeType":"YulFunctionCall","src":"342:18:125"},"nativeSrc":"342:18:125","nodeType":"YulExpressionStatement","src":"342:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"283:10:125","nodeType":"YulIdentifier","src":"283:10:125"},{"kind":"number","nativeSrc":"295:18:125","nodeType":"YulLiteral","src":"295:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"280:2:125","nodeType":"YulIdentifier","src":"280:2:125"},"nativeSrc":"280:34:125","nodeType":"YulFunctionCall","src":"280:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"319:10:125","nodeType":"YulIdentifier","src":"319:10:125"},{"name":"memPtr","nativeSrc":"331:6:125","nodeType":"YulIdentifier","src":"331:6:125"}],"functionName":{"name":"lt","nativeSrc":"316:2:125","nodeType":"YulIdentifier","src":"316:2:125"},"nativeSrc":"316:22:125","nodeType":"YulFunctionCall","src":"316:22:125"}],"functionName":{"name":"or","nativeSrc":"277:2:125","nodeType":"YulIdentifier","src":"277:2:125"},"nativeSrc":"277:62:125","nodeType":"YulFunctionCall","src":"277:62:125"},"nativeSrc":"274:88:125","nodeType":"YulIf","src":"274:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"378:2:125","nodeType":"YulLiteral","src":"378:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"382:10:125","nodeType":"YulIdentifier","src":"382:10:125"}],"functionName":{"name":"mstore","nativeSrc":"371:6:125","nodeType":"YulIdentifier","src":"371:6:125"},"nativeSrc":"371:22:125","nodeType":"YulFunctionCall","src":"371:22:125"},"nativeSrc":"371:22:125","nodeType":"YulExpressionStatement","src":"371:22:125"}]},"name":"allocate_memory_4710","nativeSrc":"146:253:125","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"181:6:125","nodeType":"YulTypedName","src":"181:6:125","type":""}],"src":"146:253:125"},{"body":{"nativeSrc":"450:209:125","nodeType":"YulBlock","src":"450:209:125","statements":[{"nativeSrc":"460:19:125","nodeType":"YulAssignment","src":"460:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"476:2:125","nodeType":"YulLiteral","src":"476:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"470:5:125","nodeType":"YulIdentifier","src":"470:5:125"},"nativeSrc":"470:9:125","nodeType":"YulFunctionCall","src":"470:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"460:6:125","nodeType":"YulIdentifier","src":"460:6:125"}]},{"nativeSrc":"488:37:125","nodeType":"YulVariableDeclaration","src":"488:37:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"510:6:125","nodeType":"YulIdentifier","src":"510:6:125"},{"kind":"number","nativeSrc":"518:6:125","nodeType":"YulLiteral","src":"518:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"506:3:125","nodeType":"YulIdentifier","src":"506:3:125"},"nativeSrc":"506:19:125","nodeType":"YulFunctionCall","src":"506:19:125"},"variables":[{"name":"newFreePtr","nativeSrc":"492:10:125","nodeType":"YulTypedName","src":"492:10:125","type":""}]},{"body":{"nativeSrc":"600:22:125","nodeType":"YulBlock","src":"600:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"602:16:125","nodeType":"YulIdentifier","src":"602:16:125"},"nativeSrc":"602:18:125","nodeType":"YulFunctionCall","src":"602:18:125"},"nativeSrc":"602:18:125","nodeType":"YulExpressionStatement","src":"602:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"543:10:125","nodeType":"YulIdentifier","src":"543:10:125"},{"kind":"number","nativeSrc":"555:18:125","nodeType":"YulLiteral","src":"555:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"540:2:125","nodeType":"YulIdentifier","src":"540:2:125"},"nativeSrc":"540:34:125","nodeType":"YulFunctionCall","src":"540:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"579:10:125","nodeType":"YulIdentifier","src":"579:10:125"},{"name":"memPtr","nativeSrc":"591:6:125","nodeType":"YulIdentifier","src":"591:6:125"}],"functionName":{"name":"lt","nativeSrc":"576:2:125","nodeType":"YulIdentifier","src":"576:2:125"},"nativeSrc":"576:22:125","nodeType":"YulFunctionCall","src":"576:22:125"}],"functionName":{"name":"or","nativeSrc":"537:2:125","nodeType":"YulIdentifier","src":"537:2:125"},"nativeSrc":"537:62:125","nodeType":"YulFunctionCall","src":"537:62:125"},"nativeSrc":"534:88:125","nodeType":"YulIf","src":"534:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"638:2:125","nodeType":"YulLiteral","src":"638:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"642:10:125","nodeType":"YulIdentifier","src":"642:10:125"}],"functionName":{"name":"mstore","nativeSrc":"631:6:125","nodeType":"YulIdentifier","src":"631:6:125"},"nativeSrc":"631:22:125","nodeType":"YulFunctionCall","src":"631:22:125"},"nativeSrc":"631:22:125","nodeType":"YulExpressionStatement","src":"631:22:125"}]},"name":"allocate_memory_4711","nativeSrc":"404:255:125","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"439:6:125","nodeType":"YulTypedName","src":"439:6:125","type":""}],"src":"404:255:125"},{"body":{"nativeSrc":"709:230:125","nodeType":"YulBlock","src":"709:230:125","statements":[{"nativeSrc":"719:19:125","nodeType":"YulAssignment","src":"719:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"735:2:125","nodeType":"YulLiteral","src":"735:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"729:5:125","nodeType":"YulIdentifier","src":"729:5:125"},"nativeSrc":"729:9:125","nodeType":"YulFunctionCall","src":"729:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"719:6:125","nodeType":"YulIdentifier","src":"719:6:125"}]},{"nativeSrc":"747:58:125","nodeType":"YulVariableDeclaration","src":"747:58:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"769:6:125","nodeType":"YulIdentifier","src":"769:6:125"},{"arguments":[{"arguments":[{"name":"size","nativeSrc":"785:4:125","nodeType":"YulIdentifier","src":"785:4:125"},{"kind":"number","nativeSrc":"791:2:125","nodeType":"YulLiteral","src":"791:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"781:3:125","nodeType":"YulIdentifier","src":"781:3:125"},"nativeSrc":"781:13:125","nodeType":"YulFunctionCall","src":"781:13:125"},{"arguments":[{"kind":"number","nativeSrc":"800:2:125","nodeType":"YulLiteral","src":"800:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"796:3:125","nodeType":"YulIdentifier","src":"796:3:125"},"nativeSrc":"796:7:125","nodeType":"YulFunctionCall","src":"796:7:125"}],"functionName":{"name":"and","nativeSrc":"777:3:125","nodeType":"YulIdentifier","src":"777:3:125"},"nativeSrc":"777:27:125","nodeType":"YulFunctionCall","src":"777:27:125"}],"functionName":{"name":"add","nativeSrc":"765:3:125","nodeType":"YulIdentifier","src":"765:3:125"},"nativeSrc":"765:40:125","nodeType":"YulFunctionCall","src":"765:40:125"},"variables":[{"name":"newFreePtr","nativeSrc":"751:10:125","nodeType":"YulTypedName","src":"751:10:125","type":""}]},{"body":{"nativeSrc":"880:22:125","nodeType":"YulBlock","src":"880:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"882:16:125","nodeType":"YulIdentifier","src":"882:16:125"},"nativeSrc":"882:18:125","nodeType":"YulFunctionCall","src":"882:18:125"},"nativeSrc":"882:18:125","nodeType":"YulExpressionStatement","src":"882:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"823:10:125","nodeType":"YulIdentifier","src":"823:10:125"},{"kind":"number","nativeSrc":"835:18:125","nodeType":"YulLiteral","src":"835:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"820:2:125","nodeType":"YulIdentifier","src":"820:2:125"},"nativeSrc":"820:34:125","nodeType":"YulFunctionCall","src":"820:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"859:10:125","nodeType":"YulIdentifier","src":"859:10:125"},{"name":"memPtr","nativeSrc":"871:6:125","nodeType":"YulIdentifier","src":"871:6:125"}],"functionName":{"name":"lt","nativeSrc":"856:2:125","nodeType":"YulIdentifier","src":"856:2:125"},"nativeSrc":"856:22:125","nodeType":"YulFunctionCall","src":"856:22:125"}],"functionName":{"name":"or","nativeSrc":"817:2:125","nodeType":"YulIdentifier","src":"817:2:125"},"nativeSrc":"817:62:125","nodeType":"YulFunctionCall","src":"817:62:125"},"nativeSrc":"814:88:125","nodeType":"YulIf","src":"814:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"918:2:125","nodeType":"YulLiteral","src":"918:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"922:10:125","nodeType":"YulIdentifier","src":"922:10:125"}],"functionName":{"name":"mstore","nativeSrc":"911:6:125","nodeType":"YulIdentifier","src":"911:6:125"},"nativeSrc":"911:22:125","nodeType":"YulFunctionCall","src":"911:22:125"},"nativeSrc":"911:22:125","nodeType":"YulExpressionStatement","src":"911:22:125"}]},"name":"allocate_memory","nativeSrc":"664:275:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nativeSrc":"689:4:125","nodeType":"YulTypedName","src":"689:4:125","type":""}],"returnVariables":[{"name":"memPtr","nativeSrc":"698:6:125","nodeType":"YulTypedName","src":"698:6:125","type":""}],"src":"664:275:125"},{"body":{"nativeSrc":"1001:129:125","nodeType":"YulBlock","src":"1001:129:125","statements":[{"body":{"nativeSrc":"1045:22:125","nodeType":"YulBlock","src":"1045:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1047:16:125","nodeType":"YulIdentifier","src":"1047:16:125"},"nativeSrc":"1047:18:125","nodeType":"YulFunctionCall","src":"1047:18:125"},"nativeSrc":"1047:18:125","nodeType":"YulExpressionStatement","src":"1047:18:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1017:6:125","nodeType":"YulIdentifier","src":"1017:6:125"},{"kind":"number","nativeSrc":"1025:18:125","nodeType":"YulLiteral","src":"1025:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1014:2:125","nodeType":"YulIdentifier","src":"1014:2:125"},"nativeSrc":"1014:30:125","nodeType":"YulFunctionCall","src":"1014:30:125"},"nativeSrc":"1011:56:125","nodeType":"YulIf","src":"1011:56:125"},{"nativeSrc":"1076:48:125","nodeType":"YulAssignment","src":"1076:48:125","value":{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1096:6:125","nodeType":"YulIdentifier","src":"1096:6:125"},{"kind":"number","nativeSrc":"1104:2:125","nodeType":"YulLiteral","src":"1104:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1092:3:125","nodeType":"YulIdentifier","src":"1092:3:125"},"nativeSrc":"1092:15:125","nodeType":"YulFunctionCall","src":"1092:15:125"},{"arguments":[{"kind":"number","nativeSrc":"1113:2:125","nodeType":"YulLiteral","src":"1113:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1109:3:125","nodeType":"YulIdentifier","src":"1109:3:125"},"nativeSrc":"1109:7:125","nodeType":"YulFunctionCall","src":"1109:7:125"}],"functionName":{"name":"and","nativeSrc":"1088:3:125","nodeType":"YulIdentifier","src":"1088:3:125"},"nativeSrc":"1088:29:125","nodeType":"YulFunctionCall","src":"1088:29:125"},{"kind":"number","nativeSrc":"1119:4:125","nodeType":"YulLiteral","src":"1119:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1084:3:125","nodeType":"YulIdentifier","src":"1084:3:125"},"nativeSrc":"1084:40:125","nodeType":"YulFunctionCall","src":"1084:40:125"},"variableNames":[{"name":"size","nativeSrc":"1076:4:125","nodeType":"YulIdentifier","src":"1076:4:125"}]}]},"name":"array_allocation_size_bytes","nativeSrc":"944:186:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"length","nativeSrc":"981:6:125","nodeType":"YulTypedName","src":"981:6:125","type":""}],"returnVariables":[{"name":"size","nativeSrc":"992:4:125","nodeType":"YulTypedName","src":"992:4:125","type":""}],"src":"944:186:125"},{"body":{"nativeSrc":"1180:86:125","nodeType":"YulBlock","src":"1180:86:125","statements":[{"body":{"nativeSrc":"1244:16:125","nodeType":"YulBlock","src":"1244:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1253:1:125","nodeType":"YulLiteral","src":"1253:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1256:1:125","nodeType":"YulLiteral","src":"1256:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1246:6:125","nodeType":"YulIdentifier","src":"1246:6:125"},"nativeSrc":"1246:12:125","nodeType":"YulFunctionCall","src":"1246:12:125"},"nativeSrc":"1246:12:125","nodeType":"YulExpressionStatement","src":"1246:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1203:5:125","nodeType":"YulIdentifier","src":"1203:5:125"},{"arguments":[{"name":"value","nativeSrc":"1214:5:125","nodeType":"YulIdentifier","src":"1214:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1229:3:125","nodeType":"YulLiteral","src":"1229:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"1234:1:125","nodeType":"YulLiteral","src":"1234:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1225:3:125","nodeType":"YulIdentifier","src":"1225:3:125"},"nativeSrc":"1225:11:125","nodeType":"YulFunctionCall","src":"1225:11:125"},{"kind":"number","nativeSrc":"1238:1:125","nodeType":"YulLiteral","src":"1238:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1221:3:125","nodeType":"YulIdentifier","src":"1221:3:125"},"nativeSrc":"1221:19:125","nodeType":"YulFunctionCall","src":"1221:19:125"}],"functionName":{"name":"and","nativeSrc":"1210:3:125","nodeType":"YulIdentifier","src":"1210:3:125"},"nativeSrc":"1210:31:125","nodeType":"YulFunctionCall","src":"1210:31:125"}],"functionName":{"name":"eq","nativeSrc":"1200:2:125","nodeType":"YulIdentifier","src":"1200:2:125"},"nativeSrc":"1200:42:125","nodeType":"YulFunctionCall","src":"1200:42:125"}],"functionName":{"name":"iszero","nativeSrc":"1193:6:125","nodeType":"YulIdentifier","src":"1193:6:125"},"nativeSrc":"1193:50:125","nodeType":"YulFunctionCall","src":"1193:50:125"},"nativeSrc":"1190:70:125","nodeType":"YulIf","src":"1190:70:125"}]},"name":"validator_revert_address","nativeSrc":"1135:131:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"1169:5:125","nodeType":"YulTypedName","src":"1169:5:125","type":""}],"src":"1135:131:125"},{"body":{"nativeSrc":"1320:85:125","nodeType":"YulBlock","src":"1320:85:125","statements":[{"nativeSrc":"1330:29:125","nodeType":"YulAssignment","src":"1330:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"1352:6:125","nodeType":"YulIdentifier","src":"1352:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"1339:12:125","nodeType":"YulIdentifier","src":"1339:12:125"},"nativeSrc":"1339:20:125","nodeType":"YulFunctionCall","src":"1339:20:125"},"variableNames":[{"name":"value","nativeSrc":"1330:5:125","nodeType":"YulIdentifier","src":"1330:5:125"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1393:5:125","nodeType":"YulIdentifier","src":"1393:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"1368:24:125","nodeType":"YulIdentifier","src":"1368:24:125"},"nativeSrc":"1368:31:125","nodeType":"YulFunctionCall","src":"1368:31:125"},"nativeSrc":"1368:31:125","nodeType":"YulExpressionStatement","src":"1368:31:125"}]},"name":"abi_decode_address","nativeSrc":"1271:134:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"1299:6:125","nodeType":"YulTypedName","src":"1299:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"1310:5:125","nodeType":"YulTypedName","src":"1310:5:125","type":""}],"src":"1271:134:125"},{"body":{"nativeSrc":"1477:1832:125","nodeType":"YulBlock","src":"1477:1832:125","statements":[{"nativeSrc":"1487:29:125","nodeType":"YulVariableDeclaration","src":"1487:29:125","value":{"arguments":[{"name":"end","nativeSrc":"1501:3:125","nodeType":"YulIdentifier","src":"1501:3:125"},{"name":"headStart","nativeSrc":"1506:9:125","nodeType":"YulIdentifier","src":"1506:9:125"}],"functionName":{"name":"sub","nativeSrc":"1497:3:125","nodeType":"YulIdentifier","src":"1497:3:125"},"nativeSrc":"1497:19:125","nodeType":"YulFunctionCall","src":"1497:19:125"},"variables":[{"name":"_1","nativeSrc":"1491:2:125","nodeType":"YulTypedName","src":"1491:2:125","type":""}]},{"body":{"nativeSrc":"1544:16:125","nodeType":"YulBlock","src":"1544:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1553:1:125","nodeType":"YulLiteral","src":"1553:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1556:1:125","nodeType":"YulLiteral","src":"1556:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1546:6:125","nodeType":"YulIdentifier","src":"1546:6:125"},"nativeSrc":"1546:12:125","nodeType":"YulFunctionCall","src":"1546:12:125"},"nativeSrc":"1546:12:125","nodeType":"YulExpressionStatement","src":"1546:12:125"}]},"condition":{"arguments":[{"name":"_1","nativeSrc":"1532:2:125","nodeType":"YulIdentifier","src":"1532:2:125"},{"kind":"number","nativeSrc":"1536:6:125","nodeType":"YulLiteral","src":"1536:6:125","type":"","value":"0x01c0"}],"functionName":{"name":"slt","nativeSrc":"1528:3:125","nodeType":"YulIdentifier","src":"1528:3:125"},"nativeSrc":"1528:15:125","nodeType":"YulFunctionCall","src":"1528:15:125"},"nativeSrc":"1525:35:125","nodeType":"YulIf","src":"1525:35:125"},{"nativeSrc":"1569:31:125","nodeType":"YulAssignment","src":"1569:31:125","value":{"arguments":[],"functionName":{"name":"allocate_memory_4710","nativeSrc":"1578:20:125","nodeType":"YulIdentifier","src":"1578:20:125"},"nativeSrc":"1578:22:125","nodeType":"YulFunctionCall","src":"1578:22:125"},"variableNames":[{"name":"value","nativeSrc":"1569:5:125","nodeType":"YulIdentifier","src":"1569:5:125"}]},{"body":{"nativeSrc":"1628:16:125","nodeType":"YulBlock","src":"1628:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1637:1:125","nodeType":"YulLiteral","src":"1637:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1640:1:125","nodeType":"YulLiteral","src":"1640:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1630:6:125","nodeType":"YulIdentifier","src":"1630:6:125"},"nativeSrc":"1630:12:125","nodeType":"YulFunctionCall","src":"1630:12:125"},"nativeSrc":"1630:12:125","nodeType":"YulExpressionStatement","src":"1630:12:125"}]},"condition":{"arguments":[{"name":"_1","nativeSrc":"1616:2:125","nodeType":"YulIdentifier","src":"1616:2:125"},{"kind":"number","nativeSrc":"1620:6:125","nodeType":"YulLiteral","src":"1620:6:125","type":"","value":"0x0140"}],"functionName":{"name":"slt","nativeSrc":"1612:3:125","nodeType":"YulIdentifier","src":"1612:3:125"},"nativeSrc":"1612:15:125","nodeType":"YulFunctionCall","src":"1612:15:125"},"nativeSrc":"1609:35:125","nodeType":"YulIf","src":"1609:35:125"},{"nativeSrc":"1653:37:125","nodeType":"YulVariableDeclaration","src":"1653:37:125","value":{"arguments":[],"functionName":{"name":"allocate_memory_4711","nativeSrc":"1668:20:125","nodeType":"YulIdentifier","src":"1668:20:125"},"nativeSrc":"1668:22:125","nodeType":"YulFunctionCall","src":"1668:22:125"},"variables":[{"name":"value_1","nativeSrc":"1657:7:125","nodeType":"YulTypedName","src":"1657:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"1706:7:125","nodeType":"YulIdentifier","src":"1706:7:125"},{"arguments":[{"name":"headStart","nativeSrc":"1734:9:125","nodeType":"YulIdentifier","src":"1734:9:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1715:18:125","nodeType":"YulIdentifier","src":"1715:18:125"},"nativeSrc":"1715:29:125","nodeType":"YulFunctionCall","src":"1715:29:125"}],"functionName":{"name":"mstore","nativeSrc":"1699:6:125","nodeType":"YulIdentifier","src":"1699:6:125"},"nativeSrc":"1699:46:125","nodeType":"YulFunctionCall","src":"1699:46:125"},"nativeSrc":"1699:46:125","nodeType":"YulExpressionStatement","src":"1699:46:125"},{"nativeSrc":"1754:16:125","nodeType":"YulVariableDeclaration","src":"1754:16:125","value":{"kind":"number","nativeSrc":"1769:1:125","nodeType":"YulLiteral","src":"1769:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"1758:7:125","nodeType":"YulTypedName","src":"1758:7:125","type":""}]},{"nativeSrc":"1779:43:125","nodeType":"YulAssignment","src":"1779:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1807:9:125","nodeType":"YulIdentifier","src":"1807:9:125"},{"kind":"number","nativeSrc":"1818:2:125","nodeType":"YulLiteral","src":"1818:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1803:3:125","nodeType":"YulIdentifier","src":"1803:3:125"},"nativeSrc":"1803:18:125","nodeType":"YulFunctionCall","src":"1803:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"1790:12:125","nodeType":"YulIdentifier","src":"1790:12:125"},"nativeSrc":"1790:32:125","nodeType":"YulFunctionCall","src":"1790:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"1779:7:125","nodeType":"YulIdentifier","src":"1779:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"1842:7:125","nodeType":"YulIdentifier","src":"1842:7:125"},{"kind":"number","nativeSrc":"1851:2:125","nodeType":"YulLiteral","src":"1851:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1838:3:125","nodeType":"YulIdentifier","src":"1838:3:125"},"nativeSrc":"1838:16:125","nodeType":"YulFunctionCall","src":"1838:16:125"},{"name":"value_2","nativeSrc":"1856:7:125","nodeType":"YulIdentifier","src":"1856:7:125"}],"functionName":{"name":"mstore","nativeSrc":"1831:6:125","nodeType":"YulIdentifier","src":"1831:6:125"},"nativeSrc":"1831:33:125","nodeType":"YulFunctionCall","src":"1831:33:125"},"nativeSrc":"1831:33:125","nodeType":"YulExpressionStatement","src":"1831:33:125"},{"nativeSrc":"1873:16:125","nodeType":"YulVariableDeclaration","src":"1873:16:125","value":{"kind":"number","nativeSrc":"1888:1:125","nodeType":"YulLiteral","src":"1888:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"1877:7:125","nodeType":"YulTypedName","src":"1877:7:125","type":""}]},{"nativeSrc":"1898:43:125","nodeType":"YulAssignment","src":"1898:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1926:9:125","nodeType":"YulIdentifier","src":"1926:9:125"},{"kind":"number","nativeSrc":"1937:2:125","nodeType":"YulLiteral","src":"1937:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1922:3:125","nodeType":"YulIdentifier","src":"1922:3:125"},"nativeSrc":"1922:18:125","nodeType":"YulFunctionCall","src":"1922:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"1909:12:125","nodeType":"YulIdentifier","src":"1909:12:125"},"nativeSrc":"1909:32:125","nodeType":"YulFunctionCall","src":"1909:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"1898:7:125","nodeType":"YulIdentifier","src":"1898:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"1961:7:125","nodeType":"YulIdentifier","src":"1961:7:125"},{"kind":"number","nativeSrc":"1970:2:125","nodeType":"YulLiteral","src":"1970:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1957:3:125","nodeType":"YulIdentifier","src":"1957:3:125"},"nativeSrc":"1957:16:125","nodeType":"YulFunctionCall","src":"1957:16:125"},{"name":"value_3","nativeSrc":"1975:7:125","nodeType":"YulIdentifier","src":"1975:7:125"}],"functionName":{"name":"mstore","nativeSrc":"1950:6:125","nodeType":"YulIdentifier","src":"1950:6:125"},"nativeSrc":"1950:33:125","nodeType":"YulFunctionCall","src":"1950:33:125"},"nativeSrc":"1950:33:125","nodeType":"YulExpressionStatement","src":"1950:33:125"},{"nativeSrc":"1992:16:125","nodeType":"YulVariableDeclaration","src":"1992:16:125","value":{"kind":"number","nativeSrc":"2007:1:125","nodeType":"YulLiteral","src":"2007:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"1996:7:125","nodeType":"YulTypedName","src":"1996:7:125","type":""}]},{"nativeSrc":"2017:43:125","nodeType":"YulAssignment","src":"2017:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2045:9:125","nodeType":"YulIdentifier","src":"2045:9:125"},{"kind":"number","nativeSrc":"2056:2:125","nodeType":"YulLiteral","src":"2056:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"2041:3:125","nodeType":"YulIdentifier","src":"2041:3:125"},"nativeSrc":"2041:18:125","nodeType":"YulFunctionCall","src":"2041:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"2028:12:125","nodeType":"YulIdentifier","src":"2028:12:125"},"nativeSrc":"2028:32:125","nodeType":"YulFunctionCall","src":"2028:32:125"},"variableNames":[{"name":"value_4","nativeSrc":"2017:7:125","nodeType":"YulIdentifier","src":"2017:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2080:7:125","nodeType":"YulIdentifier","src":"2080:7:125"},{"kind":"number","nativeSrc":"2089:2:125","nodeType":"YulLiteral","src":"2089:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"2076:3:125","nodeType":"YulIdentifier","src":"2076:3:125"},"nativeSrc":"2076:16:125","nodeType":"YulFunctionCall","src":"2076:16:125"},{"name":"value_4","nativeSrc":"2094:7:125","nodeType":"YulIdentifier","src":"2094:7:125"}],"functionName":{"name":"mstore","nativeSrc":"2069:6:125","nodeType":"YulIdentifier","src":"2069:6:125"},"nativeSrc":"2069:33:125","nodeType":"YulFunctionCall","src":"2069:33:125"},"nativeSrc":"2069:33:125","nodeType":"YulExpressionStatement","src":"2069:33:125"},{"nativeSrc":"2111:16:125","nodeType":"YulVariableDeclaration","src":"2111:16:125","value":{"kind":"number","nativeSrc":"2126:1:125","nodeType":"YulLiteral","src":"2126:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"2115:7:125","nodeType":"YulTypedName","src":"2115:7:125","type":""}]},{"nativeSrc":"2136:44:125","nodeType":"YulAssignment","src":"2136:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2164:9:125","nodeType":"YulIdentifier","src":"2164:9:125"},{"kind":"number","nativeSrc":"2175:3:125","nodeType":"YulLiteral","src":"2175:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"2160:3:125","nodeType":"YulIdentifier","src":"2160:3:125"},"nativeSrc":"2160:19:125","nodeType":"YulFunctionCall","src":"2160:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"2147:12:125","nodeType":"YulIdentifier","src":"2147:12:125"},"nativeSrc":"2147:33:125","nodeType":"YulFunctionCall","src":"2147:33:125"},"variableNames":[{"name":"value_5","nativeSrc":"2136:7:125","nodeType":"YulIdentifier","src":"2136:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2200:7:125","nodeType":"YulIdentifier","src":"2200:7:125"},{"kind":"number","nativeSrc":"2209:3:125","nodeType":"YulLiteral","src":"2209:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"2196:3:125","nodeType":"YulIdentifier","src":"2196:3:125"},"nativeSrc":"2196:17:125","nodeType":"YulFunctionCall","src":"2196:17:125"},{"name":"value_5","nativeSrc":"2215:7:125","nodeType":"YulIdentifier","src":"2215:7:125"}],"functionName":{"name":"mstore","nativeSrc":"2189:6:125","nodeType":"YulIdentifier","src":"2189:6:125"},"nativeSrc":"2189:34:125","nodeType":"YulFunctionCall","src":"2189:34:125"},"nativeSrc":"2189:34:125","nodeType":"YulExpressionStatement","src":"2189:34:125"},{"nativeSrc":"2232:16:125","nodeType":"YulVariableDeclaration","src":"2232:16:125","value":{"kind":"number","nativeSrc":"2247:1:125","nodeType":"YulLiteral","src":"2247:1:125","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"2236:7:125","nodeType":"YulTypedName","src":"2236:7:125","type":""}]},{"nativeSrc":"2257:45:125","nodeType":"YulAssignment","src":"2257:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2285:9:125","nodeType":"YulIdentifier","src":"2285:9:125"},{"kind":"number","nativeSrc":"2296:4:125","nodeType":"YulLiteral","src":"2296:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"2281:3:125","nodeType":"YulIdentifier","src":"2281:3:125"},"nativeSrc":"2281:20:125","nodeType":"YulFunctionCall","src":"2281:20:125"}],"functionName":{"name":"calldataload","nativeSrc":"2268:12:125","nodeType":"YulIdentifier","src":"2268:12:125"},"nativeSrc":"2268:34:125","nodeType":"YulFunctionCall","src":"2268:34:125"},"variableNames":[{"name":"value_6","nativeSrc":"2257:7:125","nodeType":"YulIdentifier","src":"2257:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2322:7:125","nodeType":"YulIdentifier","src":"2322:7:125"},{"kind":"number","nativeSrc":"2331:4:125","nodeType":"YulLiteral","src":"2331:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"2318:3:125","nodeType":"YulIdentifier","src":"2318:3:125"},"nativeSrc":"2318:18:125","nodeType":"YulFunctionCall","src":"2318:18:125"},{"name":"value_6","nativeSrc":"2338:7:125","nodeType":"YulIdentifier","src":"2338:7:125"}],"functionName":{"name":"mstore","nativeSrc":"2311:6:125","nodeType":"YulIdentifier","src":"2311:6:125"},"nativeSrc":"2311:35:125","nodeType":"YulFunctionCall","src":"2311:35:125"},"nativeSrc":"2311:35:125","nodeType":"YulExpressionStatement","src":"2311:35:125"},{"nativeSrc":"2355:16:125","nodeType":"YulVariableDeclaration","src":"2355:16:125","value":{"kind":"number","nativeSrc":"2370:1:125","nodeType":"YulLiteral","src":"2370:1:125","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"2359:7:125","nodeType":"YulTypedName","src":"2359:7:125","type":""}]},{"nativeSrc":"2380:44:125","nodeType":"YulAssignment","src":"2380:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2408:9:125","nodeType":"YulIdentifier","src":"2408:9:125"},{"kind":"number","nativeSrc":"2419:3:125","nodeType":"YulLiteral","src":"2419:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"2404:3:125","nodeType":"YulIdentifier","src":"2404:3:125"},"nativeSrc":"2404:19:125","nodeType":"YulFunctionCall","src":"2404:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"2391:12:125","nodeType":"YulIdentifier","src":"2391:12:125"},"nativeSrc":"2391:33:125","nodeType":"YulFunctionCall","src":"2391:33:125"},"variableNames":[{"name":"value_7","nativeSrc":"2380:7:125","nodeType":"YulIdentifier","src":"2380:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2444:7:125","nodeType":"YulIdentifier","src":"2444:7:125"},{"kind":"number","nativeSrc":"2453:3:125","nodeType":"YulLiteral","src":"2453:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"2440:3:125","nodeType":"YulIdentifier","src":"2440:3:125"},"nativeSrc":"2440:17:125","nodeType":"YulFunctionCall","src":"2440:17:125"},{"name":"value_7","nativeSrc":"2459:7:125","nodeType":"YulIdentifier","src":"2459:7:125"}],"functionName":{"name":"mstore","nativeSrc":"2433:6:125","nodeType":"YulIdentifier","src":"2433:6:125"},"nativeSrc":"2433:34:125","nodeType":"YulFunctionCall","src":"2433:34:125"},"nativeSrc":"2433:34:125","nodeType":"YulExpressionStatement","src":"2433:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2487:7:125","nodeType":"YulIdentifier","src":"2487:7:125"},{"kind":"number","nativeSrc":"2496:3:125","nodeType":"YulLiteral","src":"2496:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"2483:3:125","nodeType":"YulIdentifier","src":"2483:3:125"},"nativeSrc":"2483:17:125","nodeType":"YulFunctionCall","src":"2483:17:125"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2525:9:125","nodeType":"YulIdentifier","src":"2525:9:125"},{"kind":"number","nativeSrc":"2536:3:125","nodeType":"YulLiteral","src":"2536:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"2521:3:125","nodeType":"YulIdentifier","src":"2521:3:125"},"nativeSrc":"2521:19:125","nodeType":"YulFunctionCall","src":"2521:19:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2502:18:125","nodeType":"YulIdentifier","src":"2502:18:125"},"nativeSrc":"2502:39:125","nodeType":"YulFunctionCall","src":"2502:39:125"}],"functionName":{"name":"mstore","nativeSrc":"2476:6:125","nodeType":"YulIdentifier","src":"2476:6:125"},"nativeSrc":"2476:66:125","nodeType":"YulFunctionCall","src":"2476:66:125"},"nativeSrc":"2476:66:125","nodeType":"YulExpressionStatement","src":"2476:66:125"},{"nativeSrc":"2551:16:125","nodeType":"YulVariableDeclaration","src":"2551:16:125","value":{"kind":"number","nativeSrc":"2566:1:125","nodeType":"YulLiteral","src":"2566:1:125","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"2555:7:125","nodeType":"YulTypedName","src":"2555:7:125","type":""}]},{"nativeSrc":"2576:44:125","nodeType":"YulAssignment","src":"2576:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2604:9:125","nodeType":"YulIdentifier","src":"2604:9:125"},{"kind":"number","nativeSrc":"2615:3:125","nodeType":"YulLiteral","src":"2615:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"2600:3:125","nodeType":"YulIdentifier","src":"2600:3:125"},"nativeSrc":"2600:19:125","nodeType":"YulFunctionCall","src":"2600:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"2587:12:125","nodeType":"YulIdentifier","src":"2587:12:125"},"nativeSrc":"2587:33:125","nodeType":"YulFunctionCall","src":"2587:33:125"},"variableNames":[{"name":"value_8","nativeSrc":"2576:7:125","nodeType":"YulIdentifier","src":"2576:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2640:7:125","nodeType":"YulIdentifier","src":"2640:7:125"},{"kind":"number","nativeSrc":"2649:3:125","nodeType":"YulLiteral","src":"2649:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"2636:3:125","nodeType":"YulIdentifier","src":"2636:3:125"},"nativeSrc":"2636:17:125","nodeType":"YulFunctionCall","src":"2636:17:125"},{"name":"value_8","nativeSrc":"2655:7:125","nodeType":"YulIdentifier","src":"2655:7:125"}],"functionName":{"name":"mstore","nativeSrc":"2629:6:125","nodeType":"YulIdentifier","src":"2629:6:125"},"nativeSrc":"2629:34:125","nodeType":"YulFunctionCall","src":"2629:34:125"},"nativeSrc":"2629:34:125","nodeType":"YulExpressionStatement","src":"2629:34:125"},{"nativeSrc":"2672:16:125","nodeType":"YulVariableDeclaration","src":"2672:16:125","value":{"kind":"number","nativeSrc":"2687:1:125","nodeType":"YulLiteral","src":"2687:1:125","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"2676:7:125","nodeType":"YulTypedName","src":"2676:7:125","type":""}]},{"nativeSrc":"2697:44:125","nodeType":"YulAssignment","src":"2697:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2725:9:125","nodeType":"YulIdentifier","src":"2725:9:125"},{"kind":"number","nativeSrc":"2736:3:125","nodeType":"YulLiteral","src":"2736:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"2721:3:125","nodeType":"YulIdentifier","src":"2721:3:125"},"nativeSrc":"2721:19:125","nodeType":"YulFunctionCall","src":"2721:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"2708:12:125","nodeType":"YulIdentifier","src":"2708:12:125"},"nativeSrc":"2708:33:125","nodeType":"YulFunctionCall","src":"2708:33:125"},"variableNames":[{"name":"value_9","nativeSrc":"2697:7:125","nodeType":"YulIdentifier","src":"2697:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2761:7:125","nodeType":"YulIdentifier","src":"2761:7:125"},{"kind":"number","nativeSrc":"2770:3:125","nodeType":"YulLiteral","src":"2770:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"2757:3:125","nodeType":"YulIdentifier","src":"2757:3:125"},"nativeSrc":"2757:17:125","nodeType":"YulFunctionCall","src":"2757:17:125"},{"name":"value_9","nativeSrc":"2776:7:125","nodeType":"YulIdentifier","src":"2776:7:125"}],"functionName":{"name":"mstore","nativeSrc":"2750:6:125","nodeType":"YulIdentifier","src":"2750:6:125"},"nativeSrc":"2750:34:125","nodeType":"YulFunctionCall","src":"2750:34:125"},"nativeSrc":"2750:34:125","nodeType":"YulExpressionStatement","src":"2750:34:125"},{"expression":{"arguments":[{"name":"value","nativeSrc":"2800:5:125","nodeType":"YulIdentifier","src":"2800:5:125"},{"name":"value_1","nativeSrc":"2807:7:125","nodeType":"YulIdentifier","src":"2807:7:125"}],"functionName":{"name":"mstore","nativeSrc":"2793:6:125","nodeType":"YulIdentifier","src":"2793:6:125"},"nativeSrc":"2793:22:125","nodeType":"YulFunctionCall","src":"2793:22:125"},"nativeSrc":"2793:22:125","nodeType":"YulExpressionStatement","src":"2793:22:125"},{"nativeSrc":"2824:17:125","nodeType":"YulVariableDeclaration","src":"2824:17:125","value":{"kind":"number","nativeSrc":"2840:1:125","nodeType":"YulLiteral","src":"2840:1:125","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"2828:8:125","nodeType":"YulTypedName","src":"2828:8:125","type":""}]},{"nativeSrc":"2850:48:125","nodeType":"YulAssignment","src":"2850:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2879:9:125","nodeType":"YulIdentifier","src":"2879:9:125"},{"kind":"number","nativeSrc":"2890:6:125","nodeType":"YulLiteral","src":"2890:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"2875:3:125","nodeType":"YulIdentifier","src":"2875:3:125"},"nativeSrc":"2875:22:125","nodeType":"YulFunctionCall","src":"2875:22:125"}],"functionName":{"name":"calldataload","nativeSrc":"2862:12:125","nodeType":"YulIdentifier","src":"2862:12:125"},"nativeSrc":"2862:36:125","nodeType":"YulFunctionCall","src":"2862:36:125"},"variableNames":[{"name":"value_10","nativeSrc":"2850:8:125","nodeType":"YulIdentifier","src":"2850:8:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2918:5:125","nodeType":"YulIdentifier","src":"2918:5:125"},{"kind":"number","nativeSrc":"2925:2:125","nodeType":"YulLiteral","src":"2925:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2914:3:125","nodeType":"YulIdentifier","src":"2914:3:125"},"nativeSrc":"2914:14:125","nodeType":"YulFunctionCall","src":"2914:14:125"},{"name":"value_10","nativeSrc":"2930:8:125","nodeType":"YulIdentifier","src":"2930:8:125"}],"functionName":{"name":"mstore","nativeSrc":"2907:6:125","nodeType":"YulIdentifier","src":"2907:6:125"},"nativeSrc":"2907:32:125","nodeType":"YulFunctionCall","src":"2907:32:125"},"nativeSrc":"2907:32:125","nodeType":"YulExpressionStatement","src":"2907:32:125"},{"nativeSrc":"2948:17:125","nodeType":"YulVariableDeclaration","src":"2948:17:125","value":{"kind":"number","nativeSrc":"2964:1:125","nodeType":"YulLiteral","src":"2964:1:125","type":"","value":"0"},"variables":[{"name":"value_11","nativeSrc":"2952:8:125","nodeType":"YulTypedName","src":"2952:8:125","type":""}]},{"nativeSrc":"2974:45:125","nodeType":"YulAssignment","src":"2974:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3003:9:125","nodeType":"YulIdentifier","src":"3003:9:125"},{"kind":"number","nativeSrc":"3014:3:125","nodeType":"YulLiteral","src":"3014:3:125","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"2999:3:125","nodeType":"YulIdentifier","src":"2999:3:125"},"nativeSrc":"2999:19:125","nodeType":"YulFunctionCall","src":"2999:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"2986:12:125","nodeType":"YulIdentifier","src":"2986:12:125"},"nativeSrc":"2986:33:125","nodeType":"YulFunctionCall","src":"2986:33:125"},"variableNames":[{"name":"value_11","nativeSrc":"2974:8:125","nodeType":"YulIdentifier","src":"2974:8:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3039:5:125","nodeType":"YulIdentifier","src":"3039:5:125"},{"kind":"number","nativeSrc":"3046:2:125","nodeType":"YulLiteral","src":"3046:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3035:3:125","nodeType":"YulIdentifier","src":"3035:3:125"},"nativeSrc":"3035:14:125","nodeType":"YulFunctionCall","src":"3035:14:125"},{"name":"value_11","nativeSrc":"3051:8:125","nodeType":"YulIdentifier","src":"3051:8:125"}],"functionName":{"name":"mstore","nativeSrc":"3028:6:125","nodeType":"YulIdentifier","src":"3028:6:125"},"nativeSrc":"3028:32:125","nodeType":"YulFunctionCall","src":"3028:32:125"},"nativeSrc":"3028:32:125","nodeType":"YulExpressionStatement","src":"3028:32:125"},{"nativeSrc":"3069:17:125","nodeType":"YulVariableDeclaration","src":"3069:17:125","value":{"kind":"number","nativeSrc":"3085:1:125","nodeType":"YulLiteral","src":"3085:1:125","type":"","value":"0"},"variables":[{"name":"value_12","nativeSrc":"3073:8:125","nodeType":"YulTypedName","src":"3073:8:125","type":""}]},{"nativeSrc":"3095:45:125","nodeType":"YulAssignment","src":"3095:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3124:9:125","nodeType":"YulIdentifier","src":"3124:9:125"},{"kind":"number","nativeSrc":"3135:3:125","nodeType":"YulLiteral","src":"3135:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"3120:3:125","nodeType":"YulIdentifier","src":"3120:3:125"},"nativeSrc":"3120:19:125","nodeType":"YulFunctionCall","src":"3120:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"3107:12:125","nodeType":"YulIdentifier","src":"3107:12:125"},"nativeSrc":"3107:33:125","nodeType":"YulFunctionCall","src":"3107:33:125"},"variableNames":[{"name":"value_12","nativeSrc":"3095:8:125","nodeType":"YulIdentifier","src":"3095:8:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3160:5:125","nodeType":"YulIdentifier","src":"3160:5:125"},{"kind":"number","nativeSrc":"3167:2:125","nodeType":"YulLiteral","src":"3167:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3156:3:125","nodeType":"YulIdentifier","src":"3156:3:125"},"nativeSrc":"3156:14:125","nodeType":"YulFunctionCall","src":"3156:14:125"},{"name":"value_12","nativeSrc":"3172:8:125","nodeType":"YulIdentifier","src":"3172:8:125"}],"functionName":{"name":"mstore","nativeSrc":"3149:6:125","nodeType":"YulIdentifier","src":"3149:6:125"},"nativeSrc":"3149:32:125","nodeType":"YulFunctionCall","src":"3149:32:125"},"nativeSrc":"3149:32:125","nodeType":"YulExpressionStatement","src":"3149:32:125"},{"nativeSrc":"3190:17:125","nodeType":"YulVariableDeclaration","src":"3190:17:125","value":{"kind":"number","nativeSrc":"3206:1:125","nodeType":"YulLiteral","src":"3206:1:125","type":"","value":"0"},"variables":[{"name":"value_13","nativeSrc":"3194:8:125","nodeType":"YulTypedName","src":"3194:8:125","type":""}]},{"nativeSrc":"3216:45:125","nodeType":"YulAssignment","src":"3216:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3245:9:125","nodeType":"YulIdentifier","src":"3245:9:125"},{"kind":"number","nativeSrc":"3256:3:125","nodeType":"YulLiteral","src":"3256:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"3241:3:125","nodeType":"YulIdentifier","src":"3241:3:125"},"nativeSrc":"3241:19:125","nodeType":"YulFunctionCall","src":"3241:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"3228:12:125","nodeType":"YulIdentifier","src":"3228:12:125"},"nativeSrc":"3228:33:125","nodeType":"YulFunctionCall","src":"3228:33:125"},"variableNames":[{"name":"value_13","nativeSrc":"3216:8:125","nodeType":"YulIdentifier","src":"3216:8:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3281:5:125","nodeType":"YulIdentifier","src":"3281:5:125"},{"kind":"number","nativeSrc":"3288:3:125","nodeType":"YulLiteral","src":"3288:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"3277:3:125","nodeType":"YulIdentifier","src":"3277:3:125"},"nativeSrc":"3277:15:125","nodeType":"YulFunctionCall","src":"3277:15:125"},{"name":"value_13","nativeSrc":"3294:8:125","nodeType":"YulIdentifier","src":"3294:8:125"}],"functionName":{"name":"mstore","nativeSrc":"3270:6:125","nodeType":"YulIdentifier","src":"3270:6:125"},"nativeSrc":"3270:33:125","nodeType":"YulFunctionCall","src":"3270:33:125"},"nativeSrc":"3270:33:125","nodeType":"YulExpressionStatement","src":"3270:33:125"}]},"name":"abi_decode_struct_UserOpInfo","nativeSrc":"1410:1899:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1448:9:125","nodeType":"YulTypedName","src":"1448:9:125","type":""},{"name":"end","nativeSrc":"1459:3:125","nodeType":"YulTypedName","src":"1459:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"1467:5:125","nodeType":"YulTypedName","src":"1467:5:125","type":""}],"src":"1410:1899:125"},{"body":{"nativeSrc":"3386:275:125","nodeType":"YulBlock","src":"3386:275:125","statements":[{"body":{"nativeSrc":"3435:16:125","nodeType":"YulBlock","src":"3435:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3444:1:125","nodeType":"YulLiteral","src":"3444:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3447:1:125","nodeType":"YulLiteral","src":"3447:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3437:6:125","nodeType":"YulIdentifier","src":"3437:6:125"},"nativeSrc":"3437:12:125","nodeType":"YulFunctionCall","src":"3437:12:125"},"nativeSrc":"3437:12:125","nodeType":"YulExpressionStatement","src":"3437:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"3414:6:125","nodeType":"YulIdentifier","src":"3414:6:125"},{"kind":"number","nativeSrc":"3422:4:125","nodeType":"YulLiteral","src":"3422:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"3410:3:125","nodeType":"YulIdentifier","src":"3410:3:125"},"nativeSrc":"3410:17:125","nodeType":"YulFunctionCall","src":"3410:17:125"},{"name":"end","nativeSrc":"3429:3:125","nodeType":"YulIdentifier","src":"3429:3:125"}],"functionName":{"name":"slt","nativeSrc":"3406:3:125","nodeType":"YulIdentifier","src":"3406:3:125"},"nativeSrc":"3406:27:125","nodeType":"YulFunctionCall","src":"3406:27:125"}],"functionName":{"name":"iszero","nativeSrc":"3399:6:125","nodeType":"YulIdentifier","src":"3399:6:125"},"nativeSrc":"3399:35:125","nodeType":"YulFunctionCall","src":"3399:35:125"},"nativeSrc":"3396:55:125","nodeType":"YulIf","src":"3396:55:125"},{"nativeSrc":"3460:30:125","nodeType":"YulAssignment","src":"3460:30:125","value":{"arguments":[{"name":"offset","nativeSrc":"3483:6:125","nodeType":"YulIdentifier","src":"3483:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"3470:12:125","nodeType":"YulIdentifier","src":"3470:12:125"},"nativeSrc":"3470:20:125","nodeType":"YulFunctionCall","src":"3470:20:125"},"variableNames":[{"name":"length","nativeSrc":"3460:6:125","nodeType":"YulIdentifier","src":"3460:6:125"}]},{"body":{"nativeSrc":"3533:16:125","nodeType":"YulBlock","src":"3533:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3542:1:125","nodeType":"YulLiteral","src":"3542:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3545:1:125","nodeType":"YulLiteral","src":"3545:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3535:6:125","nodeType":"YulIdentifier","src":"3535:6:125"},"nativeSrc":"3535:12:125","nodeType":"YulFunctionCall","src":"3535:12:125"},"nativeSrc":"3535:12:125","nodeType":"YulExpressionStatement","src":"3535:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"3505:6:125","nodeType":"YulIdentifier","src":"3505:6:125"},{"kind":"number","nativeSrc":"3513:18:125","nodeType":"YulLiteral","src":"3513:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3502:2:125","nodeType":"YulIdentifier","src":"3502:2:125"},"nativeSrc":"3502:30:125","nodeType":"YulFunctionCall","src":"3502:30:125"},"nativeSrc":"3499:50:125","nodeType":"YulIf","src":"3499:50:125"},{"nativeSrc":"3558:29:125","nodeType":"YulAssignment","src":"3558:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"3574:6:125","nodeType":"YulIdentifier","src":"3574:6:125"},{"kind":"number","nativeSrc":"3582:4:125","nodeType":"YulLiteral","src":"3582:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3570:3:125","nodeType":"YulIdentifier","src":"3570:3:125"},"nativeSrc":"3570:17:125","nodeType":"YulFunctionCall","src":"3570:17:125"},"variableNames":[{"name":"arrayPos","nativeSrc":"3558:8:125","nodeType":"YulIdentifier","src":"3558:8:125"}]},{"body":{"nativeSrc":"3639:16:125","nodeType":"YulBlock","src":"3639:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3648:1:125","nodeType":"YulLiteral","src":"3648:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3651:1:125","nodeType":"YulLiteral","src":"3651:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3641:6:125","nodeType":"YulIdentifier","src":"3641:6:125"},"nativeSrc":"3641:12:125","nodeType":"YulFunctionCall","src":"3641:12:125"},"nativeSrc":"3641:12:125","nodeType":"YulExpressionStatement","src":"3641:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"3610:6:125","nodeType":"YulIdentifier","src":"3610:6:125"},{"name":"length","nativeSrc":"3618:6:125","nodeType":"YulIdentifier","src":"3618:6:125"}],"functionName":{"name":"add","nativeSrc":"3606:3:125","nodeType":"YulIdentifier","src":"3606:3:125"},"nativeSrc":"3606:19:125","nodeType":"YulFunctionCall","src":"3606:19:125"},{"kind":"number","nativeSrc":"3627:4:125","nodeType":"YulLiteral","src":"3627:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3602:3:125","nodeType":"YulIdentifier","src":"3602:3:125"},"nativeSrc":"3602:30:125","nodeType":"YulFunctionCall","src":"3602:30:125"},{"name":"end","nativeSrc":"3634:3:125","nodeType":"YulIdentifier","src":"3634:3:125"}],"functionName":{"name":"gt","nativeSrc":"3599:2:125","nodeType":"YulIdentifier","src":"3599:2:125"},"nativeSrc":"3599:39:125","nodeType":"YulFunctionCall","src":"3599:39:125"},"nativeSrc":"3596:59:125","nodeType":"YulIf","src":"3596:59:125"}]},"name":"abi_decode_bytes_calldata","nativeSrc":"3314:347:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"3349:6:125","nodeType":"YulTypedName","src":"3349:6:125","type":""},{"name":"end","nativeSrc":"3357:3:125","nodeType":"YulTypedName","src":"3357:3:125","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"3365:8:125","nodeType":"YulTypedName","src":"3365:8:125","type":""},{"name":"length","nativeSrc":"3375:6:125","nodeType":"YulTypedName","src":"3375:6:125","type":""}],"src":"3314:347:125"},{"body":{"nativeSrc":"3825:971:125","nodeType":"YulBlock","src":"3825:971:125","statements":[{"body":{"nativeSrc":"3872:16:125","nodeType":"YulBlock","src":"3872:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3881:1:125","nodeType":"YulLiteral","src":"3881:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3884:1:125","nodeType":"YulLiteral","src":"3884:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3874:6:125","nodeType":"YulIdentifier","src":"3874:6:125"},"nativeSrc":"3874:12:125","nodeType":"YulFunctionCall","src":"3874:12:125"},"nativeSrc":"3874:12:125","nodeType":"YulExpressionStatement","src":"3874:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3846:7:125","nodeType":"YulIdentifier","src":"3846:7:125"},{"name":"headStart","nativeSrc":"3855:9:125","nodeType":"YulIdentifier","src":"3855:9:125"}],"functionName":{"name":"sub","nativeSrc":"3842:3:125","nodeType":"YulIdentifier","src":"3842:3:125"},"nativeSrc":"3842:23:125","nodeType":"YulFunctionCall","src":"3842:23:125"},{"kind":"number","nativeSrc":"3867:3:125","nodeType":"YulLiteral","src":"3867:3:125","type":"","value":"512"}],"functionName":{"name":"slt","nativeSrc":"3838:3:125","nodeType":"YulIdentifier","src":"3838:3:125"},"nativeSrc":"3838:33:125","nodeType":"YulFunctionCall","src":"3838:33:125"},"nativeSrc":"3835:53:125","nodeType":"YulIf","src":"3835:53:125"},{"nativeSrc":"3897:37:125","nodeType":"YulVariableDeclaration","src":"3897:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3924:9:125","nodeType":"YulIdentifier","src":"3924:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"3911:12:125","nodeType":"YulIdentifier","src":"3911:12:125"},"nativeSrc":"3911:23:125","nodeType":"YulFunctionCall","src":"3911:23:125"},"variables":[{"name":"offset","nativeSrc":"3901:6:125","nodeType":"YulTypedName","src":"3901:6:125","type":""}]},{"body":{"nativeSrc":"3977:16:125","nodeType":"YulBlock","src":"3977:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3986:1:125","nodeType":"YulLiteral","src":"3986:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3989:1:125","nodeType":"YulLiteral","src":"3989:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3979:6:125","nodeType":"YulIdentifier","src":"3979:6:125"},"nativeSrc":"3979:12:125","nodeType":"YulFunctionCall","src":"3979:12:125"},"nativeSrc":"3979:12:125","nodeType":"YulExpressionStatement","src":"3979:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"3949:6:125","nodeType":"YulIdentifier","src":"3949:6:125"},{"kind":"number","nativeSrc":"3957:18:125","nodeType":"YulLiteral","src":"3957:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3946:2:125","nodeType":"YulIdentifier","src":"3946:2:125"},"nativeSrc":"3946:30:125","nodeType":"YulFunctionCall","src":"3946:30:125"},"nativeSrc":"3943:50:125","nodeType":"YulIf","src":"3943:50:125"},{"nativeSrc":"4002:32:125","nodeType":"YulVariableDeclaration","src":"4002:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4016:9:125","nodeType":"YulIdentifier","src":"4016:9:125"},{"name":"offset","nativeSrc":"4027:6:125","nodeType":"YulIdentifier","src":"4027:6:125"}],"functionName":{"name":"add","nativeSrc":"4012:3:125","nodeType":"YulIdentifier","src":"4012:3:125"},"nativeSrc":"4012:22:125","nodeType":"YulFunctionCall","src":"4012:22:125"},"variables":[{"name":"_1","nativeSrc":"4006:2:125","nodeType":"YulTypedName","src":"4006:2:125","type":""}]},{"body":{"nativeSrc":"4082:16:125","nodeType":"YulBlock","src":"4082:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4091:1:125","nodeType":"YulLiteral","src":"4091:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4094:1:125","nodeType":"YulLiteral","src":"4094:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4084:6:125","nodeType":"YulIdentifier","src":"4084:6:125"},"nativeSrc":"4084:12:125","nodeType":"YulFunctionCall","src":"4084:12:125"},"nativeSrc":"4084:12:125","nodeType":"YulExpressionStatement","src":"4084:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"4061:2:125","nodeType":"YulIdentifier","src":"4061:2:125"},{"kind":"number","nativeSrc":"4065:4:125","nodeType":"YulLiteral","src":"4065:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"4057:3:125","nodeType":"YulIdentifier","src":"4057:3:125"},"nativeSrc":"4057:13:125","nodeType":"YulFunctionCall","src":"4057:13:125"},{"name":"dataEnd","nativeSrc":"4072:7:125","nodeType":"YulIdentifier","src":"4072:7:125"}],"functionName":{"name":"slt","nativeSrc":"4053:3:125","nodeType":"YulIdentifier","src":"4053:3:125"},"nativeSrc":"4053:27:125","nodeType":"YulFunctionCall","src":"4053:27:125"}],"functionName":{"name":"iszero","nativeSrc":"4046:6:125","nodeType":"YulIdentifier","src":"4046:6:125"},"nativeSrc":"4046:35:125","nodeType":"YulFunctionCall","src":"4046:35:125"},"nativeSrc":"4043:55:125","nodeType":"YulIf","src":"4043:55:125"},{"nativeSrc":"4107:30:125","nodeType":"YulVariableDeclaration","src":"4107:30:125","value":{"arguments":[{"name":"_1","nativeSrc":"4134:2:125","nodeType":"YulIdentifier","src":"4134:2:125"}],"functionName":{"name":"calldataload","nativeSrc":"4121:12:125","nodeType":"YulIdentifier","src":"4121:12:125"},"nativeSrc":"4121:16:125","nodeType":"YulFunctionCall","src":"4121:16:125"},"variables":[{"name":"length","nativeSrc":"4111:6:125","nodeType":"YulTypedName","src":"4111:6:125","type":""}]},{"nativeSrc":"4146:65:125","nodeType":"YulVariableDeclaration","src":"4146:65:125","value":{"arguments":[{"arguments":[{"name":"length","nativeSrc":"4203:6:125","nodeType":"YulIdentifier","src":"4203:6:125"}],"functionName":{"name":"array_allocation_size_bytes","nativeSrc":"4175:27:125","nodeType":"YulIdentifier","src":"4175:27:125"},"nativeSrc":"4175:35:125","nodeType":"YulFunctionCall","src":"4175:35:125"}],"functionName":{"name":"allocate_memory","nativeSrc":"4159:15:125","nodeType":"YulIdentifier","src":"4159:15:125"},"nativeSrc":"4159:52:125","nodeType":"YulFunctionCall","src":"4159:52:125"},"variables":[{"name":"array","nativeSrc":"4150:5:125","nodeType":"YulTypedName","src":"4150:5:125","type":""}]},{"expression":{"arguments":[{"name":"array","nativeSrc":"4227:5:125","nodeType":"YulIdentifier","src":"4227:5:125"},{"name":"length","nativeSrc":"4234:6:125","nodeType":"YulIdentifier","src":"4234:6:125"}],"functionName":{"name":"mstore","nativeSrc":"4220:6:125","nodeType":"YulIdentifier","src":"4220:6:125"},"nativeSrc":"4220:21:125","nodeType":"YulFunctionCall","src":"4220:21:125"},"nativeSrc":"4220:21:125","nodeType":"YulExpressionStatement","src":"4220:21:125"},{"body":{"nativeSrc":"4293:16:125","nodeType":"YulBlock","src":"4293:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4302:1:125","nodeType":"YulLiteral","src":"4302:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4305:1:125","nodeType":"YulLiteral","src":"4305:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4295:6:125","nodeType":"YulIdentifier","src":"4295:6:125"},"nativeSrc":"4295:12:125","nodeType":"YulFunctionCall","src":"4295:12:125"},"nativeSrc":"4295:12:125","nodeType":"YulExpressionStatement","src":"4295:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"4264:2:125","nodeType":"YulIdentifier","src":"4264:2:125"},{"name":"length","nativeSrc":"4268:6:125","nodeType":"YulIdentifier","src":"4268:6:125"}],"functionName":{"name":"add","nativeSrc":"4260:3:125","nodeType":"YulIdentifier","src":"4260:3:125"},"nativeSrc":"4260:15:125","nodeType":"YulFunctionCall","src":"4260:15:125"},{"kind":"number","nativeSrc":"4277:4:125","nodeType":"YulLiteral","src":"4277:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4256:3:125","nodeType":"YulIdentifier","src":"4256:3:125"},"nativeSrc":"4256:26:125","nodeType":"YulFunctionCall","src":"4256:26:125"},{"name":"dataEnd","nativeSrc":"4284:7:125","nodeType":"YulIdentifier","src":"4284:7:125"}],"functionName":{"name":"gt","nativeSrc":"4253:2:125","nodeType":"YulIdentifier","src":"4253:2:125"},"nativeSrc":"4253:39:125","nodeType":"YulFunctionCall","src":"4253:39:125"},"nativeSrc":"4250:59:125","nodeType":"YulIf","src":"4250:59:125"},{"expression":{"arguments":[{"arguments":[{"name":"array","nativeSrc":"4335:5:125","nodeType":"YulIdentifier","src":"4335:5:125"},{"kind":"number","nativeSrc":"4342:4:125","nodeType":"YulLiteral","src":"4342:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4331:3:125","nodeType":"YulIdentifier","src":"4331:3:125"},"nativeSrc":"4331:16:125","nodeType":"YulFunctionCall","src":"4331:16:125"},{"arguments":[{"name":"_1","nativeSrc":"4353:2:125","nodeType":"YulIdentifier","src":"4353:2:125"},{"kind":"number","nativeSrc":"4357:4:125","nodeType":"YulLiteral","src":"4357:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4349:3:125","nodeType":"YulIdentifier","src":"4349:3:125"},"nativeSrc":"4349:13:125","nodeType":"YulFunctionCall","src":"4349:13:125"},{"name":"length","nativeSrc":"4364:6:125","nodeType":"YulIdentifier","src":"4364:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"4318:12:125","nodeType":"YulIdentifier","src":"4318:12:125"},"nativeSrc":"4318:53:125","nodeType":"YulFunctionCall","src":"4318:53:125"},"nativeSrc":"4318:53:125","nodeType":"YulExpressionStatement","src":"4318:53:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"array","nativeSrc":"4395:5:125","nodeType":"YulIdentifier","src":"4395:5:125"},{"name":"length","nativeSrc":"4402:6:125","nodeType":"YulIdentifier","src":"4402:6:125"}],"functionName":{"name":"add","nativeSrc":"4391:3:125","nodeType":"YulIdentifier","src":"4391:3:125"},"nativeSrc":"4391:18:125","nodeType":"YulFunctionCall","src":"4391:18:125"},{"kind":"number","nativeSrc":"4411:4:125","nodeType":"YulLiteral","src":"4411:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4387:3:125","nodeType":"YulIdentifier","src":"4387:3:125"},"nativeSrc":"4387:29:125","nodeType":"YulFunctionCall","src":"4387:29:125"},{"kind":"number","nativeSrc":"4418:1:125","nodeType":"YulLiteral","src":"4418:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"4380:6:125","nodeType":"YulIdentifier","src":"4380:6:125"},"nativeSrc":"4380:40:125","nodeType":"YulFunctionCall","src":"4380:40:125"},"nativeSrc":"4380:40:125","nodeType":"YulExpressionStatement","src":"4380:40:125"},{"nativeSrc":"4429:15:125","nodeType":"YulAssignment","src":"4429:15:125","value":{"name":"array","nativeSrc":"4439:5:125","nodeType":"YulIdentifier","src":"4439:5:125"},"variableNames":[{"name":"value0","nativeSrc":"4429:6:125","nodeType":"YulIdentifier","src":"4429:6:125"}]},{"nativeSrc":"4453:69:125","nodeType":"YulAssignment","src":"4453:69:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4496:9:125","nodeType":"YulIdentifier","src":"4496:9:125"},{"kind":"number","nativeSrc":"4507:4:125","nodeType":"YulLiteral","src":"4507:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4492:3:125","nodeType":"YulIdentifier","src":"4492:3:125"},"nativeSrc":"4492:20:125","nodeType":"YulFunctionCall","src":"4492:20:125"},{"name":"dataEnd","nativeSrc":"4514:7:125","nodeType":"YulIdentifier","src":"4514:7:125"}],"functionName":{"name":"abi_decode_struct_UserOpInfo","nativeSrc":"4463:28:125","nodeType":"YulIdentifier","src":"4463:28:125"},"nativeSrc":"4463:59:125","nodeType":"YulFunctionCall","src":"4463:59:125"},"variableNames":[{"name":"value1","nativeSrc":"4453:6:125","nodeType":"YulIdentifier","src":"4453:6:125"}]},{"nativeSrc":"4531:49:125","nodeType":"YulVariableDeclaration","src":"4531:49:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4564:9:125","nodeType":"YulIdentifier","src":"4564:9:125"},{"kind":"number","nativeSrc":"4575:3:125","nodeType":"YulLiteral","src":"4575:3:125","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"4560:3:125","nodeType":"YulIdentifier","src":"4560:3:125"},"nativeSrc":"4560:19:125","nodeType":"YulFunctionCall","src":"4560:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"4547:12:125","nodeType":"YulIdentifier","src":"4547:12:125"},"nativeSrc":"4547:33:125","nodeType":"YulFunctionCall","src":"4547:33:125"},"variables":[{"name":"offset_1","nativeSrc":"4535:8:125","nodeType":"YulTypedName","src":"4535:8:125","type":""}]},{"body":{"nativeSrc":"4625:16:125","nodeType":"YulBlock","src":"4625:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4634:1:125","nodeType":"YulLiteral","src":"4634:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4637:1:125","nodeType":"YulLiteral","src":"4637:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4627:6:125","nodeType":"YulIdentifier","src":"4627:6:125"},"nativeSrc":"4627:12:125","nodeType":"YulFunctionCall","src":"4627:12:125"},"nativeSrc":"4627:12:125","nodeType":"YulExpressionStatement","src":"4627:12:125"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"4595:8:125","nodeType":"YulIdentifier","src":"4595:8:125"},{"kind":"number","nativeSrc":"4605:18:125","nodeType":"YulLiteral","src":"4605:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4592:2:125","nodeType":"YulIdentifier","src":"4592:2:125"},"nativeSrc":"4592:32:125","nodeType":"YulFunctionCall","src":"4592:32:125"},"nativeSrc":"4589:52:125","nodeType":"YulIf","src":"4589:52:125"},{"nativeSrc":"4650:86:125","nodeType":"YulVariableDeclaration","src":"4650:86:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4706:9:125","nodeType":"YulIdentifier","src":"4706:9:125"},{"name":"offset_1","nativeSrc":"4717:8:125","nodeType":"YulIdentifier","src":"4717:8:125"}],"functionName":{"name":"add","nativeSrc":"4702:3:125","nodeType":"YulIdentifier","src":"4702:3:125"},"nativeSrc":"4702:24:125","nodeType":"YulFunctionCall","src":"4702:24:125"},{"name":"dataEnd","nativeSrc":"4728:7:125","nodeType":"YulIdentifier","src":"4728:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"4676:25:125","nodeType":"YulIdentifier","src":"4676:25:125"},"nativeSrc":"4676:60:125","nodeType":"YulFunctionCall","src":"4676:60:125"},"variables":[{"name":"value2_1","nativeSrc":"4654:8:125","nodeType":"YulTypedName","src":"4654:8:125","type":""},{"name":"value3_1","nativeSrc":"4664:8:125","nodeType":"YulTypedName","src":"4664:8:125","type":""}]},{"nativeSrc":"4745:18:125","nodeType":"YulAssignment","src":"4745:18:125","value":{"name":"value2_1","nativeSrc":"4755:8:125","nodeType":"YulIdentifier","src":"4755:8:125"},"variableNames":[{"name":"value2","nativeSrc":"4745:6:125","nodeType":"YulIdentifier","src":"4745:6:125"}]},{"nativeSrc":"4772:18:125","nodeType":"YulAssignment","src":"4772:18:125","value":{"name":"value3_1","nativeSrc":"4782:8:125","nodeType":"YulIdentifier","src":"4782:8:125"},"variableNames":[{"name":"value3","nativeSrc":"4772:6:125","nodeType":"YulIdentifier","src":"4772:6:125"}]}]},"name":"abi_decode_tuple_t_bytes_memory_ptrt_struct$_UserOpInfo_$947_memory_ptrt_bytes_calldata_ptr","nativeSrc":"3666:1130:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3767:9:125","nodeType":"YulTypedName","src":"3767:9:125","type":""},{"name":"dataEnd","nativeSrc":"3778:7:125","nodeType":"YulTypedName","src":"3778:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3790:6:125","nodeType":"YulTypedName","src":"3790:6:125","type":""},{"name":"value1","nativeSrc":"3798:6:125","nodeType":"YulTypedName","src":"3798:6:125","type":""},{"name":"value2","nativeSrc":"3806:6:125","nodeType":"YulTypedName","src":"3806:6:125","type":""},{"name":"value3","nativeSrc":"3814:6:125","nodeType":"YulTypedName","src":"3814:6:125","type":""}],"src":"3666:1130:125"},{"body":{"nativeSrc":"4902:76:125","nodeType":"YulBlock","src":"4902:76:125","statements":[{"nativeSrc":"4912:26:125","nodeType":"YulAssignment","src":"4912:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4924:9:125","nodeType":"YulIdentifier","src":"4924:9:125"},{"kind":"number","nativeSrc":"4935:2:125","nodeType":"YulLiteral","src":"4935:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4920:3:125","nodeType":"YulIdentifier","src":"4920:3:125"},"nativeSrc":"4920:18:125","nodeType":"YulFunctionCall","src":"4920:18:125"},"variableNames":[{"name":"tail","nativeSrc":"4912:4:125","nodeType":"YulIdentifier","src":"4912:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4954:9:125","nodeType":"YulIdentifier","src":"4954:9:125"},{"name":"value0","nativeSrc":"4965:6:125","nodeType":"YulIdentifier","src":"4965:6:125"}],"functionName":{"name":"mstore","nativeSrc":"4947:6:125","nodeType":"YulIdentifier","src":"4947:6:125"},"nativeSrc":"4947:25:125","nodeType":"YulFunctionCall","src":"4947:25:125"},"nativeSrc":"4947:25:125","nodeType":"YulExpressionStatement","src":"4947:25:125"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"4801:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4871:9:125","nodeType":"YulTypedName","src":"4871:9:125","type":""},{"name":"value0","nativeSrc":"4882:6:125","nodeType":"YulTypedName","src":"4882:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4893:4:125","nodeType":"YulTypedName","src":"4893:4:125","type":""}],"src":"4801:177:125"},{"body":{"nativeSrc":"5052:217:125","nodeType":"YulBlock","src":"5052:217:125","statements":[{"body":{"nativeSrc":"5098:16:125","nodeType":"YulBlock","src":"5098:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5107:1:125","nodeType":"YulLiteral","src":"5107:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5110:1:125","nodeType":"YulLiteral","src":"5110:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5100:6:125","nodeType":"YulIdentifier","src":"5100:6:125"},"nativeSrc":"5100:12:125","nodeType":"YulFunctionCall","src":"5100:12:125"},"nativeSrc":"5100:12:125","nodeType":"YulExpressionStatement","src":"5100:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5073:7:125","nodeType":"YulIdentifier","src":"5073:7:125"},{"name":"headStart","nativeSrc":"5082:9:125","nodeType":"YulIdentifier","src":"5082:9:125"}],"functionName":{"name":"sub","nativeSrc":"5069:3:125","nodeType":"YulIdentifier","src":"5069:3:125"},"nativeSrc":"5069:23:125","nodeType":"YulFunctionCall","src":"5069:23:125"},{"kind":"number","nativeSrc":"5094:2:125","nodeType":"YulLiteral","src":"5094:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5065:3:125","nodeType":"YulIdentifier","src":"5065:3:125"},"nativeSrc":"5065:32:125","nodeType":"YulFunctionCall","src":"5065:32:125"},"nativeSrc":"5062:52:125","nodeType":"YulIf","src":"5062:52:125"},{"nativeSrc":"5123:36:125","nodeType":"YulVariableDeclaration","src":"5123:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5149:9:125","nodeType":"YulIdentifier","src":"5149:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"5136:12:125","nodeType":"YulIdentifier","src":"5136:12:125"},"nativeSrc":"5136:23:125","nodeType":"YulFunctionCall","src":"5136:23:125"},"variables":[{"name":"value","nativeSrc":"5127:5:125","nodeType":"YulTypedName","src":"5127:5:125","type":""}]},{"body":{"nativeSrc":"5223:16:125","nodeType":"YulBlock","src":"5223:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5232:1:125","nodeType":"YulLiteral","src":"5232:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5235:1:125","nodeType":"YulLiteral","src":"5235:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5225:6:125","nodeType":"YulIdentifier","src":"5225:6:125"},"nativeSrc":"5225:12:125","nodeType":"YulFunctionCall","src":"5225:12:125"},"nativeSrc":"5225:12:125","nodeType":"YulExpressionStatement","src":"5225:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5181:5:125","nodeType":"YulIdentifier","src":"5181:5:125"},{"arguments":[{"name":"value","nativeSrc":"5192:5:125","nodeType":"YulIdentifier","src":"5192:5:125"},{"arguments":[{"kind":"number","nativeSrc":"5203:3:125","nodeType":"YulLiteral","src":"5203:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"5208:10:125","nodeType":"YulLiteral","src":"5208:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"5199:3:125","nodeType":"YulIdentifier","src":"5199:3:125"},"nativeSrc":"5199:20:125","nodeType":"YulFunctionCall","src":"5199:20:125"}],"functionName":{"name":"and","nativeSrc":"5188:3:125","nodeType":"YulIdentifier","src":"5188:3:125"},"nativeSrc":"5188:32:125","nodeType":"YulFunctionCall","src":"5188:32:125"}],"functionName":{"name":"eq","nativeSrc":"5178:2:125","nodeType":"YulIdentifier","src":"5178:2:125"},"nativeSrc":"5178:43:125","nodeType":"YulFunctionCall","src":"5178:43:125"}],"functionName":{"name":"iszero","nativeSrc":"5171:6:125","nodeType":"YulIdentifier","src":"5171:6:125"},"nativeSrc":"5171:51:125","nodeType":"YulFunctionCall","src":"5171:51:125"},"nativeSrc":"5168:71:125","nodeType":"YulIf","src":"5168:71:125"},{"nativeSrc":"5248:15:125","nodeType":"YulAssignment","src":"5248:15:125","value":{"name":"value","nativeSrc":"5258:5:125","nodeType":"YulIdentifier","src":"5258:5:125"},"variableNames":[{"name":"value0","nativeSrc":"5248:6:125","nodeType":"YulIdentifier","src":"5248:6:125"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"4983:286:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5018:9:125","nodeType":"YulTypedName","src":"5018:9:125","type":""},{"name":"dataEnd","nativeSrc":"5029:7:125","nodeType":"YulTypedName","src":"5029:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5041:6:125","nodeType":"YulTypedName","src":"5041:6:125","type":""}],"src":"4983:286:125"},{"body":{"nativeSrc":"5369:92:125","nodeType":"YulBlock","src":"5369:92:125","statements":[{"nativeSrc":"5379:26:125","nodeType":"YulAssignment","src":"5379:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5391:9:125","nodeType":"YulIdentifier","src":"5391:9:125"},{"kind":"number","nativeSrc":"5402:2:125","nodeType":"YulLiteral","src":"5402:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5387:3:125","nodeType":"YulIdentifier","src":"5387:3:125"},"nativeSrc":"5387:18:125","nodeType":"YulFunctionCall","src":"5387:18:125"},"variableNames":[{"name":"tail","nativeSrc":"5379:4:125","nodeType":"YulIdentifier","src":"5379:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5421:9:125","nodeType":"YulIdentifier","src":"5421:9:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"5446:6:125","nodeType":"YulIdentifier","src":"5446:6:125"}],"functionName":{"name":"iszero","nativeSrc":"5439:6:125","nodeType":"YulIdentifier","src":"5439:6:125"},"nativeSrc":"5439:14:125","nodeType":"YulFunctionCall","src":"5439:14:125"}],"functionName":{"name":"iszero","nativeSrc":"5432:6:125","nodeType":"YulIdentifier","src":"5432:6:125"},"nativeSrc":"5432:22:125","nodeType":"YulFunctionCall","src":"5432:22:125"}],"functionName":{"name":"mstore","nativeSrc":"5414:6:125","nodeType":"YulIdentifier","src":"5414:6:125"},"nativeSrc":"5414:41:125","nodeType":"YulFunctionCall","src":"5414:41:125"},"nativeSrc":"5414:41:125","nodeType":"YulExpressionStatement","src":"5414:41:125"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"5274:187:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5338:9:125","nodeType":"YulTypedName","src":"5338:9:125","type":""},{"name":"value0","nativeSrc":"5349:6:125","nodeType":"YulTypedName","src":"5349:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5360:4:125","nodeType":"YulTypedName","src":"5360:4:125","type":""}],"src":"5274:187:125"},{"body":{"nativeSrc":"5535:207:125","nodeType":"YulBlock","src":"5535:207:125","statements":[{"body":{"nativeSrc":"5581:16:125","nodeType":"YulBlock","src":"5581:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5590:1:125","nodeType":"YulLiteral","src":"5590:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5593:1:125","nodeType":"YulLiteral","src":"5593:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5583:6:125","nodeType":"YulIdentifier","src":"5583:6:125"},"nativeSrc":"5583:12:125","nodeType":"YulFunctionCall","src":"5583:12:125"},"nativeSrc":"5583:12:125","nodeType":"YulExpressionStatement","src":"5583:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5556:7:125","nodeType":"YulIdentifier","src":"5556:7:125"},{"name":"headStart","nativeSrc":"5565:9:125","nodeType":"YulIdentifier","src":"5565:9:125"}],"functionName":{"name":"sub","nativeSrc":"5552:3:125","nodeType":"YulIdentifier","src":"5552:3:125"},"nativeSrc":"5552:23:125","nodeType":"YulFunctionCall","src":"5552:23:125"},{"kind":"number","nativeSrc":"5577:2:125","nodeType":"YulLiteral","src":"5577:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5548:3:125","nodeType":"YulIdentifier","src":"5548:3:125"},"nativeSrc":"5548:32:125","nodeType":"YulFunctionCall","src":"5548:32:125"},"nativeSrc":"5545:52:125","nodeType":"YulIf","src":"5545:52:125"},{"nativeSrc":"5606:36:125","nodeType":"YulVariableDeclaration","src":"5606:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5632:9:125","nodeType":"YulIdentifier","src":"5632:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"5619:12:125","nodeType":"YulIdentifier","src":"5619:12:125"},"nativeSrc":"5619:23:125","nodeType":"YulFunctionCall","src":"5619:23:125"},"variables":[{"name":"value","nativeSrc":"5610:5:125","nodeType":"YulTypedName","src":"5610:5:125","type":""}]},{"body":{"nativeSrc":"5696:16:125","nodeType":"YulBlock","src":"5696:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5705:1:125","nodeType":"YulLiteral","src":"5705:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5708:1:125","nodeType":"YulLiteral","src":"5708:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5698:6:125","nodeType":"YulIdentifier","src":"5698:6:125"},"nativeSrc":"5698:12:125","nodeType":"YulFunctionCall","src":"5698:12:125"},"nativeSrc":"5698:12:125","nodeType":"YulExpressionStatement","src":"5698:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5664:5:125","nodeType":"YulIdentifier","src":"5664:5:125"},{"arguments":[{"name":"value","nativeSrc":"5675:5:125","nodeType":"YulIdentifier","src":"5675:5:125"},{"kind":"number","nativeSrc":"5682:10:125","nodeType":"YulLiteral","src":"5682:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"5671:3:125","nodeType":"YulIdentifier","src":"5671:3:125"},"nativeSrc":"5671:22:125","nodeType":"YulFunctionCall","src":"5671:22:125"}],"functionName":{"name":"eq","nativeSrc":"5661:2:125","nodeType":"YulIdentifier","src":"5661:2:125"},"nativeSrc":"5661:33:125","nodeType":"YulFunctionCall","src":"5661:33:125"}],"functionName":{"name":"iszero","nativeSrc":"5654:6:125","nodeType":"YulIdentifier","src":"5654:6:125"},"nativeSrc":"5654:41:125","nodeType":"YulFunctionCall","src":"5654:41:125"},"nativeSrc":"5651:61:125","nodeType":"YulIf","src":"5651:61:125"},{"nativeSrc":"5721:15:125","nodeType":"YulAssignment","src":"5721:15:125","value":{"name":"value","nativeSrc":"5731:5:125","nodeType":"YulIdentifier","src":"5731:5:125"},"variableNames":[{"name":"value0","nativeSrc":"5721:6:125","nodeType":"YulIdentifier","src":"5721:6:125"}]}]},"name":"abi_decode_tuple_t_uint32","nativeSrc":"5466:276:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5501:9:125","nodeType":"YulTypedName","src":"5501:9:125","type":""},{"name":"dataEnd","nativeSrc":"5512:7:125","nodeType":"YulTypedName","src":"5512:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5524:6:125","nodeType":"YulTypedName","src":"5524:6:125","type":""}],"src":"5466:276:125"},{"body":{"nativeSrc":"5796:124:125","nodeType":"YulBlock","src":"5796:124:125","statements":[{"nativeSrc":"5806:29:125","nodeType":"YulAssignment","src":"5806:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"5828:6:125","nodeType":"YulIdentifier","src":"5828:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"5815:12:125","nodeType":"YulIdentifier","src":"5815:12:125"},"nativeSrc":"5815:20:125","nodeType":"YulFunctionCall","src":"5815:20:125"},"variableNames":[{"name":"value","nativeSrc":"5806:5:125","nodeType":"YulIdentifier","src":"5806:5:125"}]},{"body":{"nativeSrc":"5898:16:125","nodeType":"YulBlock","src":"5898:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5907:1:125","nodeType":"YulLiteral","src":"5907:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5910:1:125","nodeType":"YulLiteral","src":"5910:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5900:6:125","nodeType":"YulIdentifier","src":"5900:6:125"},"nativeSrc":"5900:12:125","nodeType":"YulFunctionCall","src":"5900:12:125"},"nativeSrc":"5900:12:125","nodeType":"YulExpressionStatement","src":"5900:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5857:5:125","nodeType":"YulIdentifier","src":"5857:5:125"},{"arguments":[{"name":"value","nativeSrc":"5868:5:125","nodeType":"YulIdentifier","src":"5868:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5883:3:125","nodeType":"YulLiteral","src":"5883:3:125","type":"","value":"192"},{"kind":"number","nativeSrc":"5888:1:125","nodeType":"YulLiteral","src":"5888:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5879:3:125","nodeType":"YulIdentifier","src":"5879:3:125"},"nativeSrc":"5879:11:125","nodeType":"YulFunctionCall","src":"5879:11:125"},{"kind":"number","nativeSrc":"5892:1:125","nodeType":"YulLiteral","src":"5892:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5875:3:125","nodeType":"YulIdentifier","src":"5875:3:125"},"nativeSrc":"5875:19:125","nodeType":"YulFunctionCall","src":"5875:19:125"}],"functionName":{"name":"and","nativeSrc":"5864:3:125","nodeType":"YulIdentifier","src":"5864:3:125"},"nativeSrc":"5864:31:125","nodeType":"YulFunctionCall","src":"5864:31:125"}],"functionName":{"name":"eq","nativeSrc":"5854:2:125","nodeType":"YulIdentifier","src":"5854:2:125"},"nativeSrc":"5854:42:125","nodeType":"YulFunctionCall","src":"5854:42:125"}],"functionName":{"name":"iszero","nativeSrc":"5847:6:125","nodeType":"YulIdentifier","src":"5847:6:125"},"nativeSrc":"5847:50:125","nodeType":"YulFunctionCall","src":"5847:50:125"},"nativeSrc":"5844:70:125","nodeType":"YulIf","src":"5844:70:125"}]},"name":"abi_decode_uint192","nativeSrc":"5747:173:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"5775:6:125","nodeType":"YulTypedName","src":"5775:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"5786:5:125","nodeType":"YulTypedName","src":"5786:5:125","type":""}],"src":"5747:173:125"},{"body":{"nativeSrc":"5995:116:125","nodeType":"YulBlock","src":"5995:116:125","statements":[{"body":{"nativeSrc":"6041:16:125","nodeType":"YulBlock","src":"6041:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6050:1:125","nodeType":"YulLiteral","src":"6050:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6053:1:125","nodeType":"YulLiteral","src":"6053:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6043:6:125","nodeType":"YulIdentifier","src":"6043:6:125"},"nativeSrc":"6043:12:125","nodeType":"YulFunctionCall","src":"6043:12:125"},"nativeSrc":"6043:12:125","nodeType":"YulExpressionStatement","src":"6043:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6016:7:125","nodeType":"YulIdentifier","src":"6016:7:125"},{"name":"headStart","nativeSrc":"6025:9:125","nodeType":"YulIdentifier","src":"6025:9:125"}],"functionName":{"name":"sub","nativeSrc":"6012:3:125","nodeType":"YulIdentifier","src":"6012:3:125"},"nativeSrc":"6012:23:125","nodeType":"YulFunctionCall","src":"6012:23:125"},{"kind":"number","nativeSrc":"6037:2:125","nodeType":"YulLiteral","src":"6037:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"6008:3:125","nodeType":"YulIdentifier","src":"6008:3:125"},"nativeSrc":"6008:32:125","nodeType":"YulFunctionCall","src":"6008:32:125"},"nativeSrc":"6005:52:125","nodeType":"YulIf","src":"6005:52:125"},{"nativeSrc":"6066:39:125","nodeType":"YulAssignment","src":"6066:39:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6095:9:125","nodeType":"YulIdentifier","src":"6095:9:125"}],"functionName":{"name":"abi_decode_uint192","nativeSrc":"6076:18:125","nodeType":"YulIdentifier","src":"6076:18:125"},"nativeSrc":"6076:29:125","nodeType":"YulFunctionCall","src":"6076:29:125"},"variableNames":[{"name":"value0","nativeSrc":"6066:6:125","nodeType":"YulIdentifier","src":"6066:6:125"}]}]},"name":"abi_decode_tuple_t_uint192","nativeSrc":"5925:186:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5961:9:125","nodeType":"YulTypedName","src":"5961:9:125","type":""},{"name":"dataEnd","nativeSrc":"5972:7:125","nodeType":"YulTypedName","src":"5972:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5984:6:125","nodeType":"YulTypedName","src":"5984:6:125","type":""}],"src":"5925:186:125"},{"body":{"nativeSrc":"6203:234:125","nodeType":"YulBlock","src":"6203:234:125","statements":[{"body":{"nativeSrc":"6249:16:125","nodeType":"YulBlock","src":"6249:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6258:1:125","nodeType":"YulLiteral","src":"6258:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6261:1:125","nodeType":"YulLiteral","src":"6261:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6251:6:125","nodeType":"YulIdentifier","src":"6251:6:125"},"nativeSrc":"6251:12:125","nodeType":"YulFunctionCall","src":"6251:12:125"},"nativeSrc":"6251:12:125","nodeType":"YulExpressionStatement","src":"6251:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6224:7:125","nodeType":"YulIdentifier","src":"6224:7:125"},{"name":"headStart","nativeSrc":"6233:9:125","nodeType":"YulIdentifier","src":"6233:9:125"}],"functionName":{"name":"sub","nativeSrc":"6220:3:125","nodeType":"YulIdentifier","src":"6220:3:125"},"nativeSrc":"6220:23:125","nodeType":"YulFunctionCall","src":"6220:23:125"},{"kind":"number","nativeSrc":"6245:2:125","nodeType":"YulLiteral","src":"6245:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6216:3:125","nodeType":"YulIdentifier","src":"6216:3:125"},"nativeSrc":"6216:32:125","nodeType":"YulFunctionCall","src":"6216:32:125"},"nativeSrc":"6213:52:125","nodeType":"YulIf","src":"6213:52:125"},{"nativeSrc":"6274:36:125","nodeType":"YulVariableDeclaration","src":"6274:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6300:9:125","nodeType":"YulIdentifier","src":"6300:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"6287:12:125","nodeType":"YulIdentifier","src":"6287:12:125"},"nativeSrc":"6287:23:125","nodeType":"YulFunctionCall","src":"6287:23:125"},"variables":[{"name":"value","nativeSrc":"6278:5:125","nodeType":"YulTypedName","src":"6278:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6344:5:125","nodeType":"YulIdentifier","src":"6344:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6319:24:125","nodeType":"YulIdentifier","src":"6319:24:125"},"nativeSrc":"6319:31:125","nodeType":"YulFunctionCall","src":"6319:31:125"},"nativeSrc":"6319:31:125","nodeType":"YulExpressionStatement","src":"6319:31:125"},{"nativeSrc":"6359:15:125","nodeType":"YulAssignment","src":"6359:15:125","value":{"name":"value","nativeSrc":"6369:5:125","nodeType":"YulIdentifier","src":"6369:5:125"},"variableNames":[{"name":"value0","nativeSrc":"6359:6:125","nodeType":"YulIdentifier","src":"6359:6:125"}]},{"nativeSrc":"6383:48:125","nodeType":"YulAssignment","src":"6383:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6416:9:125","nodeType":"YulIdentifier","src":"6416:9:125"},{"kind":"number","nativeSrc":"6427:2:125","nodeType":"YulLiteral","src":"6427:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6412:3:125","nodeType":"YulIdentifier","src":"6412:3:125"},"nativeSrc":"6412:18:125","nodeType":"YulFunctionCall","src":"6412:18:125"}],"functionName":{"name":"abi_decode_uint192","nativeSrc":"6393:18:125","nodeType":"YulIdentifier","src":"6393:18:125"},"nativeSrc":"6393:38:125","nodeType":"YulFunctionCall","src":"6393:38:125"},"variableNames":[{"name":"value1","nativeSrc":"6383:6:125","nodeType":"YulIdentifier","src":"6383:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint192","nativeSrc":"6116:321:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6161:9:125","nodeType":"YulTypedName","src":"6161:9:125","type":""},{"name":"dataEnd","nativeSrc":"6172:7:125","nodeType":"YulTypedName","src":"6172:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6184:6:125","nodeType":"YulTypedName","src":"6184:6:125","type":""},{"name":"value1","nativeSrc":"6192:6:125","nodeType":"YulTypedName","src":"6192:6:125","type":""}],"src":"6116:321:125"},{"body":{"nativeSrc":"6537:280:125","nodeType":"YulBlock","src":"6537:280:125","statements":[{"body":{"nativeSrc":"6583:16:125","nodeType":"YulBlock","src":"6583:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6592:1:125","nodeType":"YulLiteral","src":"6592:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6595:1:125","nodeType":"YulLiteral","src":"6595:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6585:6:125","nodeType":"YulIdentifier","src":"6585:6:125"},"nativeSrc":"6585:12:125","nodeType":"YulFunctionCall","src":"6585:12:125"},"nativeSrc":"6585:12:125","nodeType":"YulExpressionStatement","src":"6585:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6558:7:125","nodeType":"YulIdentifier","src":"6558:7:125"},{"name":"headStart","nativeSrc":"6567:9:125","nodeType":"YulIdentifier","src":"6567:9:125"}],"functionName":{"name":"sub","nativeSrc":"6554:3:125","nodeType":"YulIdentifier","src":"6554:3:125"},"nativeSrc":"6554:23:125","nodeType":"YulFunctionCall","src":"6554:23:125"},{"kind":"number","nativeSrc":"6579:2:125","nodeType":"YulLiteral","src":"6579:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6550:3:125","nodeType":"YulIdentifier","src":"6550:3:125"},"nativeSrc":"6550:32:125","nodeType":"YulFunctionCall","src":"6550:32:125"},"nativeSrc":"6547:52:125","nodeType":"YulIf","src":"6547:52:125"},{"nativeSrc":"6608:36:125","nodeType":"YulVariableDeclaration","src":"6608:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6634:9:125","nodeType":"YulIdentifier","src":"6634:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"6621:12:125","nodeType":"YulIdentifier","src":"6621:12:125"},"nativeSrc":"6621:23:125","nodeType":"YulFunctionCall","src":"6621:23:125"},"variables":[{"name":"value","nativeSrc":"6612:5:125","nodeType":"YulTypedName","src":"6612:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6678:5:125","nodeType":"YulIdentifier","src":"6678:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6653:24:125","nodeType":"YulIdentifier","src":"6653:24:125"},"nativeSrc":"6653:31:125","nodeType":"YulFunctionCall","src":"6653:31:125"},"nativeSrc":"6653:31:125","nodeType":"YulExpressionStatement","src":"6653:31:125"},{"nativeSrc":"6693:15:125","nodeType":"YulAssignment","src":"6693:15:125","value":{"name":"value","nativeSrc":"6703:5:125","nodeType":"YulIdentifier","src":"6703:5:125"},"variableNames":[{"name":"value0","nativeSrc":"6693:6:125","nodeType":"YulIdentifier","src":"6693:6:125"}]},{"nativeSrc":"6717:16:125","nodeType":"YulVariableDeclaration","src":"6717:16:125","value":{"kind":"number","nativeSrc":"6732:1:125","nodeType":"YulLiteral","src":"6732:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"6721:7:125","nodeType":"YulTypedName","src":"6721:7:125","type":""}]},{"nativeSrc":"6742:43:125","nodeType":"YulAssignment","src":"6742:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6770:9:125","nodeType":"YulIdentifier","src":"6770:9:125"},{"kind":"number","nativeSrc":"6781:2:125","nodeType":"YulLiteral","src":"6781:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6766:3:125","nodeType":"YulIdentifier","src":"6766:3:125"},"nativeSrc":"6766:18:125","nodeType":"YulFunctionCall","src":"6766:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"6753:12:125","nodeType":"YulIdentifier","src":"6753:12:125"},"nativeSrc":"6753:32:125","nodeType":"YulFunctionCall","src":"6753:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"6742:7:125","nodeType":"YulIdentifier","src":"6742:7:125"}]},{"nativeSrc":"6794:17:125","nodeType":"YulAssignment","src":"6794:17:125","value":{"name":"value_1","nativeSrc":"6804:7:125","nodeType":"YulIdentifier","src":"6804:7:125"},"variableNames":[{"name":"value1","nativeSrc":"6794:6:125","nodeType":"YulIdentifier","src":"6794:6:125"}]}]},"name":"abi_decode_tuple_t_address_payablet_uint256","nativeSrc":"6442:375:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6495:9:125","nodeType":"YulTypedName","src":"6495:9:125","type":""},{"name":"dataEnd","nativeSrc":"6506:7:125","nodeType":"YulTypedName","src":"6506:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6518:6:125","nodeType":"YulTypedName","src":"6518:6:125","type":""},{"name":"value1","nativeSrc":"6526:6:125","nodeType":"YulTypedName","src":"6526:6:125","type":""}],"src":"6442:375:125"},{"body":{"nativeSrc":"6931:290:125","nodeType":"YulBlock","src":"6931:290:125","statements":[{"body":{"nativeSrc":"6977:16:125","nodeType":"YulBlock","src":"6977:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6986:1:125","nodeType":"YulLiteral","src":"6986:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6989:1:125","nodeType":"YulLiteral","src":"6989:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6979:6:125","nodeType":"YulIdentifier","src":"6979:6:125"},"nativeSrc":"6979:12:125","nodeType":"YulFunctionCall","src":"6979:12:125"},"nativeSrc":"6979:12:125","nodeType":"YulExpressionStatement","src":"6979:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6952:7:125","nodeType":"YulIdentifier","src":"6952:7:125"},{"name":"headStart","nativeSrc":"6961:9:125","nodeType":"YulIdentifier","src":"6961:9:125"}],"functionName":{"name":"sub","nativeSrc":"6948:3:125","nodeType":"YulIdentifier","src":"6948:3:125"},"nativeSrc":"6948:23:125","nodeType":"YulFunctionCall","src":"6948:23:125"},{"kind":"number","nativeSrc":"6973:2:125","nodeType":"YulLiteral","src":"6973:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"6944:3:125","nodeType":"YulIdentifier","src":"6944:3:125"},"nativeSrc":"6944:32:125","nodeType":"YulFunctionCall","src":"6944:32:125"},"nativeSrc":"6941:52:125","nodeType":"YulIf","src":"6941:52:125"},{"nativeSrc":"7002:37:125","nodeType":"YulVariableDeclaration","src":"7002:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7029:9:125","nodeType":"YulIdentifier","src":"7029:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"7016:12:125","nodeType":"YulIdentifier","src":"7016:12:125"},"nativeSrc":"7016:23:125","nodeType":"YulFunctionCall","src":"7016:23:125"},"variables":[{"name":"offset","nativeSrc":"7006:6:125","nodeType":"YulTypedName","src":"7006:6:125","type":""}]},{"body":{"nativeSrc":"7082:16:125","nodeType":"YulBlock","src":"7082:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7091:1:125","nodeType":"YulLiteral","src":"7091:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7094:1:125","nodeType":"YulLiteral","src":"7094:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7084:6:125","nodeType":"YulIdentifier","src":"7084:6:125"},"nativeSrc":"7084:12:125","nodeType":"YulFunctionCall","src":"7084:12:125"},"nativeSrc":"7084:12:125","nodeType":"YulExpressionStatement","src":"7084:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"7054:6:125","nodeType":"YulIdentifier","src":"7054:6:125"},{"kind":"number","nativeSrc":"7062:18:125","nodeType":"YulLiteral","src":"7062:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7051:2:125","nodeType":"YulIdentifier","src":"7051:2:125"},"nativeSrc":"7051:30:125","nodeType":"YulFunctionCall","src":"7051:30:125"},"nativeSrc":"7048:50:125","nodeType":"YulIf","src":"7048:50:125"},{"nativeSrc":"7107:32:125","nodeType":"YulVariableDeclaration","src":"7107:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7121:9:125","nodeType":"YulIdentifier","src":"7121:9:125"},{"name":"offset","nativeSrc":"7132:6:125","nodeType":"YulIdentifier","src":"7132:6:125"}],"functionName":{"name":"add","nativeSrc":"7117:3:125","nodeType":"YulIdentifier","src":"7117:3:125"},"nativeSrc":"7117:22:125","nodeType":"YulFunctionCall","src":"7117:22:125"},"variables":[{"name":"_1","nativeSrc":"7111:2:125","nodeType":"YulTypedName","src":"7111:2:125","type":""}]},{"body":{"nativeSrc":"7178:16:125","nodeType":"YulBlock","src":"7178:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7187:1:125","nodeType":"YulLiteral","src":"7187:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7190:1:125","nodeType":"YulLiteral","src":"7190:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7180:6:125","nodeType":"YulIdentifier","src":"7180:6:125"},"nativeSrc":"7180:12:125","nodeType":"YulFunctionCall","src":"7180:12:125"},"nativeSrc":"7180:12:125","nodeType":"YulExpressionStatement","src":"7180:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7159:7:125","nodeType":"YulIdentifier","src":"7159:7:125"},{"name":"_1","nativeSrc":"7168:2:125","nodeType":"YulIdentifier","src":"7168:2:125"}],"functionName":{"name":"sub","nativeSrc":"7155:3:125","nodeType":"YulIdentifier","src":"7155:3:125"},"nativeSrc":"7155:16:125","nodeType":"YulFunctionCall","src":"7155:16:125"},{"kind":"number","nativeSrc":"7173:3:125","nodeType":"YulLiteral","src":"7173:3:125","type":"","value":"288"}],"functionName":{"name":"slt","nativeSrc":"7151:3:125","nodeType":"YulIdentifier","src":"7151:3:125"},"nativeSrc":"7151:26:125","nodeType":"YulFunctionCall","src":"7151:26:125"},"nativeSrc":"7148:46:125","nodeType":"YulIf","src":"7148:46:125"},{"nativeSrc":"7203:12:125","nodeType":"YulAssignment","src":"7203:12:125","value":{"name":"_1","nativeSrc":"7213:2:125","nodeType":"YulIdentifier","src":"7213:2:125"},"variableNames":[{"name":"value0","nativeSrc":"7203:6:125","nodeType":"YulIdentifier","src":"7203:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr","nativeSrc":"6822:399:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6897:9:125","nodeType":"YulTypedName","src":"6897:9:125","type":""},{"name":"dataEnd","nativeSrc":"6908:7:125","nodeType":"YulTypedName","src":"6908:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6920:6:125","nodeType":"YulTypedName","src":"6920:6:125","type":""}],"src":"6822:399:125"},{"body":{"nativeSrc":"7327:76:125","nodeType":"YulBlock","src":"7327:76:125","statements":[{"nativeSrc":"7337:26:125","nodeType":"YulAssignment","src":"7337:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7349:9:125","nodeType":"YulIdentifier","src":"7349:9:125"},{"kind":"number","nativeSrc":"7360:2:125","nodeType":"YulLiteral","src":"7360:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7345:3:125","nodeType":"YulIdentifier","src":"7345:3:125"},"nativeSrc":"7345:18:125","nodeType":"YulFunctionCall","src":"7345:18:125"},"variableNames":[{"name":"tail","nativeSrc":"7337:4:125","nodeType":"YulIdentifier","src":"7337:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7379:9:125","nodeType":"YulIdentifier","src":"7379:9:125"},{"name":"value0","nativeSrc":"7390:6:125","nodeType":"YulIdentifier","src":"7390:6:125"}],"functionName":{"name":"mstore","nativeSrc":"7372:6:125","nodeType":"YulIdentifier","src":"7372:6:125"},"nativeSrc":"7372:25:125","nodeType":"YulFunctionCall","src":"7372:25:125"},"nativeSrc":"7372:25:125","nodeType":"YulExpressionStatement","src":"7372:25:125"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"7226:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7296:9:125","nodeType":"YulTypedName","src":"7296:9:125","type":""},{"name":"value0","nativeSrc":"7307:6:125","nodeType":"YulTypedName","src":"7307:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7318:4:125","nodeType":"YulTypedName","src":"7318:4:125","type":""}],"src":"7226:177:125"},{"body":{"nativeSrc":"7478:177:125","nodeType":"YulBlock","src":"7478:177:125","statements":[{"body":{"nativeSrc":"7524:16:125","nodeType":"YulBlock","src":"7524:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7533:1:125","nodeType":"YulLiteral","src":"7533:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7536:1:125","nodeType":"YulLiteral","src":"7536:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7526:6:125","nodeType":"YulIdentifier","src":"7526:6:125"},"nativeSrc":"7526:12:125","nodeType":"YulFunctionCall","src":"7526:12:125"},"nativeSrc":"7526:12:125","nodeType":"YulExpressionStatement","src":"7526:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7499:7:125","nodeType":"YulIdentifier","src":"7499:7:125"},{"name":"headStart","nativeSrc":"7508:9:125","nodeType":"YulIdentifier","src":"7508:9:125"}],"functionName":{"name":"sub","nativeSrc":"7495:3:125","nodeType":"YulIdentifier","src":"7495:3:125"},"nativeSrc":"7495:23:125","nodeType":"YulFunctionCall","src":"7495:23:125"},{"kind":"number","nativeSrc":"7520:2:125","nodeType":"YulLiteral","src":"7520:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"7491:3:125","nodeType":"YulIdentifier","src":"7491:3:125"},"nativeSrc":"7491:32:125","nodeType":"YulFunctionCall","src":"7491:32:125"},"nativeSrc":"7488:52:125","nodeType":"YulIf","src":"7488:52:125"},{"nativeSrc":"7549:36:125","nodeType":"YulVariableDeclaration","src":"7549:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7575:9:125","nodeType":"YulIdentifier","src":"7575:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"7562:12:125","nodeType":"YulIdentifier","src":"7562:12:125"},"nativeSrc":"7562:23:125","nodeType":"YulFunctionCall","src":"7562:23:125"},"variables":[{"name":"value","nativeSrc":"7553:5:125","nodeType":"YulTypedName","src":"7553:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7619:5:125","nodeType":"YulIdentifier","src":"7619:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7594:24:125","nodeType":"YulIdentifier","src":"7594:24:125"},"nativeSrc":"7594:31:125","nodeType":"YulFunctionCall","src":"7594:31:125"},"nativeSrc":"7594:31:125","nodeType":"YulExpressionStatement","src":"7594:31:125"},{"nativeSrc":"7634:15:125","nodeType":"YulAssignment","src":"7634:15:125","value":{"name":"value","nativeSrc":"7644:5:125","nodeType":"YulIdentifier","src":"7644:5:125"},"variableNames":[{"name":"value0","nativeSrc":"7634:6:125","nodeType":"YulIdentifier","src":"7634:6:125"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"7408:247:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7444:9:125","nodeType":"YulTypedName","src":"7444:9:125","type":""},{"name":"dataEnd","nativeSrc":"7455:7:125","nodeType":"YulTypedName","src":"7455:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7467:6:125","nodeType":"YulTypedName","src":"7467:6:125","type":""}],"src":"7408:247:125"},{"body":{"nativeSrc":"7819:427:125","nodeType":"YulBlock","src":"7819:427:125","statements":[{"nativeSrc":"7829:27:125","nodeType":"YulAssignment","src":"7829:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7841:9:125","nodeType":"YulIdentifier","src":"7841:9:125"},{"kind":"number","nativeSrc":"7852:3:125","nodeType":"YulLiteral","src":"7852:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"7837:3:125","nodeType":"YulIdentifier","src":"7837:3:125"},"nativeSrc":"7837:19:125","nodeType":"YulFunctionCall","src":"7837:19:125"},"variableNames":[{"name":"tail","nativeSrc":"7829:4:125","nodeType":"YulIdentifier","src":"7829:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7872:9:125","nodeType":"YulIdentifier","src":"7872:9:125"},{"arguments":[{"name":"value0","nativeSrc":"7889:6:125","nodeType":"YulIdentifier","src":"7889:6:125"}],"functionName":{"name":"mload","nativeSrc":"7883:5:125","nodeType":"YulIdentifier","src":"7883:5:125"},"nativeSrc":"7883:13:125","nodeType":"YulFunctionCall","src":"7883:13:125"}],"functionName":{"name":"mstore","nativeSrc":"7865:6:125","nodeType":"YulIdentifier","src":"7865:6:125"},"nativeSrc":"7865:32:125","nodeType":"YulFunctionCall","src":"7865:32:125"},"nativeSrc":"7865:32:125","nodeType":"YulExpressionStatement","src":"7865:32:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7917:9:125","nodeType":"YulIdentifier","src":"7917:9:125"},{"kind":"number","nativeSrc":"7928:4:125","nodeType":"YulLiteral","src":"7928:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7913:3:125","nodeType":"YulIdentifier","src":"7913:3:125"},"nativeSrc":"7913:20:125","nodeType":"YulFunctionCall","src":"7913:20:125"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"7959:6:125","nodeType":"YulIdentifier","src":"7959:6:125"},{"kind":"number","nativeSrc":"7967:4:125","nodeType":"YulLiteral","src":"7967:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7955:3:125","nodeType":"YulIdentifier","src":"7955:3:125"},"nativeSrc":"7955:17:125","nodeType":"YulFunctionCall","src":"7955:17:125"}],"functionName":{"name":"mload","nativeSrc":"7949:5:125","nodeType":"YulIdentifier","src":"7949:5:125"},"nativeSrc":"7949:24:125","nodeType":"YulFunctionCall","src":"7949:24:125"}],"functionName":{"name":"iszero","nativeSrc":"7942:6:125","nodeType":"YulIdentifier","src":"7942:6:125"},"nativeSrc":"7942:32:125","nodeType":"YulFunctionCall","src":"7942:32:125"}],"functionName":{"name":"iszero","nativeSrc":"7935:6:125","nodeType":"YulIdentifier","src":"7935:6:125"},"nativeSrc":"7935:40:125","nodeType":"YulFunctionCall","src":"7935:40:125"}],"functionName":{"name":"mstore","nativeSrc":"7906:6:125","nodeType":"YulIdentifier","src":"7906:6:125"},"nativeSrc":"7906:70:125","nodeType":"YulFunctionCall","src":"7906:70:125"},"nativeSrc":"7906:70:125","nodeType":"YulExpressionStatement","src":"7906:70:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7996:9:125","nodeType":"YulIdentifier","src":"7996:9:125"},{"kind":"number","nativeSrc":"8007:4:125","nodeType":"YulLiteral","src":"8007:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"7992:3:125","nodeType":"YulIdentifier","src":"7992:3:125"},"nativeSrc":"7992:20:125","nodeType":"YulFunctionCall","src":"7992:20:125"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"8028:6:125","nodeType":"YulIdentifier","src":"8028:6:125"},{"kind":"number","nativeSrc":"8036:4:125","nodeType":"YulLiteral","src":"8036:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"8024:3:125","nodeType":"YulIdentifier","src":"8024:3:125"},"nativeSrc":"8024:17:125","nodeType":"YulFunctionCall","src":"8024:17:125"}],"functionName":{"name":"mload","nativeSrc":"8018:5:125","nodeType":"YulIdentifier","src":"8018:5:125"},"nativeSrc":"8018:24:125","nodeType":"YulFunctionCall","src":"8018:24:125"},{"kind":"number","nativeSrc":"8044:30:125","nodeType":"YulLiteral","src":"8044:30:125","type":"","value":"0xffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"8014:3:125","nodeType":"YulIdentifier","src":"8014:3:125"},"nativeSrc":"8014:61:125","nodeType":"YulFunctionCall","src":"8014:61:125"}],"functionName":{"name":"mstore","nativeSrc":"7985:6:125","nodeType":"YulIdentifier","src":"7985:6:125"},"nativeSrc":"7985:91:125","nodeType":"YulFunctionCall","src":"7985:91:125"},"nativeSrc":"7985:91:125","nodeType":"YulExpressionStatement","src":"7985:91:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8096:9:125","nodeType":"YulIdentifier","src":"8096:9:125"},{"kind":"number","nativeSrc":"8107:4:125","nodeType":"YulLiteral","src":"8107:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"8092:3:125","nodeType":"YulIdentifier","src":"8092:3:125"},"nativeSrc":"8092:20:125","nodeType":"YulFunctionCall","src":"8092:20:125"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"8128:6:125","nodeType":"YulIdentifier","src":"8128:6:125"},{"kind":"number","nativeSrc":"8136:4:125","nodeType":"YulLiteral","src":"8136:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"8124:3:125","nodeType":"YulIdentifier","src":"8124:3:125"},"nativeSrc":"8124:17:125","nodeType":"YulFunctionCall","src":"8124:17:125"}],"functionName":{"name":"mload","nativeSrc":"8118:5:125","nodeType":"YulIdentifier","src":"8118:5:125"},"nativeSrc":"8118:24:125","nodeType":"YulFunctionCall","src":"8118:24:125"},{"kind":"number","nativeSrc":"8144:10:125","nodeType":"YulLiteral","src":"8144:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"8114:3:125","nodeType":"YulIdentifier","src":"8114:3:125"},"nativeSrc":"8114:41:125","nodeType":"YulFunctionCall","src":"8114:41:125"}],"functionName":{"name":"mstore","nativeSrc":"8085:6:125","nodeType":"YulIdentifier","src":"8085:6:125"},"nativeSrc":"8085:71:125","nodeType":"YulFunctionCall","src":"8085:71:125"},"nativeSrc":"8085:71:125","nodeType":"YulExpressionStatement","src":"8085:71:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8176:9:125","nodeType":"YulIdentifier","src":"8176:9:125"},{"kind":"number","nativeSrc":"8187:4:125","nodeType":"YulLiteral","src":"8187:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"8172:3:125","nodeType":"YulIdentifier","src":"8172:3:125"},"nativeSrc":"8172:20:125","nodeType":"YulFunctionCall","src":"8172:20:125"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"8208:6:125","nodeType":"YulIdentifier","src":"8208:6:125"},{"kind":"number","nativeSrc":"8216:4:125","nodeType":"YulLiteral","src":"8216:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"8204:3:125","nodeType":"YulIdentifier","src":"8204:3:125"},"nativeSrc":"8204:17:125","nodeType":"YulFunctionCall","src":"8204:17:125"}],"functionName":{"name":"mload","nativeSrc":"8198:5:125","nodeType":"YulIdentifier","src":"8198:5:125"},"nativeSrc":"8198:24:125","nodeType":"YulFunctionCall","src":"8198:24:125"},{"kind":"number","nativeSrc":"8224:14:125","nodeType":"YulLiteral","src":"8224:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"8194:3:125","nodeType":"YulIdentifier","src":"8194:3:125"},"nativeSrc":"8194:45:125","nodeType":"YulFunctionCall","src":"8194:45:125"}],"functionName":{"name":"mstore","nativeSrc":"8165:6:125","nodeType":"YulIdentifier","src":"8165:6:125"},"nativeSrc":"8165:75:125","nodeType":"YulFunctionCall","src":"8165:75:125"},"nativeSrc":"8165:75:125","nodeType":"YulExpressionStatement","src":"8165:75:125"}]},"name":"abi_encode_tuple_t_struct$_DepositInfo_$3673_memory_ptr__to_t_struct$_DepositInfo_$3673_memory_ptr__fromStack_reversed","nativeSrc":"7660:586:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7788:9:125","nodeType":"YulTypedName","src":"7788:9:125","type":""},{"name":"value0","nativeSrc":"7799:6:125","nodeType":"YulTypedName","src":"7799:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7810:4:125","nodeType":"YulTypedName","src":"7810:4:125","type":""}],"src":"7660:586:125"},{"body":{"nativeSrc":"8363:283:125","nodeType":"YulBlock","src":"8363:283:125","statements":[{"body":{"nativeSrc":"8412:16:125","nodeType":"YulBlock","src":"8412:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8421:1:125","nodeType":"YulLiteral","src":"8421:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8424:1:125","nodeType":"YulLiteral","src":"8424:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8414:6:125","nodeType":"YulIdentifier","src":"8414:6:125"},"nativeSrc":"8414:12:125","nodeType":"YulFunctionCall","src":"8414:12:125"},"nativeSrc":"8414:12:125","nodeType":"YulExpressionStatement","src":"8414:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"8391:6:125","nodeType":"YulIdentifier","src":"8391:6:125"},{"kind":"number","nativeSrc":"8399:4:125","nodeType":"YulLiteral","src":"8399:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"8387:3:125","nodeType":"YulIdentifier","src":"8387:3:125"},"nativeSrc":"8387:17:125","nodeType":"YulFunctionCall","src":"8387:17:125"},{"name":"end","nativeSrc":"8406:3:125","nodeType":"YulIdentifier","src":"8406:3:125"}],"functionName":{"name":"slt","nativeSrc":"8383:3:125","nodeType":"YulIdentifier","src":"8383:3:125"},"nativeSrc":"8383:27:125","nodeType":"YulFunctionCall","src":"8383:27:125"}],"functionName":{"name":"iszero","nativeSrc":"8376:6:125","nodeType":"YulIdentifier","src":"8376:6:125"},"nativeSrc":"8376:35:125","nodeType":"YulFunctionCall","src":"8376:35:125"},"nativeSrc":"8373:55:125","nodeType":"YulIf","src":"8373:55:125"},{"nativeSrc":"8437:30:125","nodeType":"YulAssignment","src":"8437:30:125","value":{"arguments":[{"name":"offset","nativeSrc":"8460:6:125","nodeType":"YulIdentifier","src":"8460:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"8447:12:125","nodeType":"YulIdentifier","src":"8447:12:125"},"nativeSrc":"8447:20:125","nodeType":"YulFunctionCall","src":"8447:20:125"},"variableNames":[{"name":"length","nativeSrc":"8437:6:125","nodeType":"YulIdentifier","src":"8437:6:125"}]},{"body":{"nativeSrc":"8510:16:125","nodeType":"YulBlock","src":"8510:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8519:1:125","nodeType":"YulLiteral","src":"8519:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8522:1:125","nodeType":"YulLiteral","src":"8522:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8512:6:125","nodeType":"YulIdentifier","src":"8512:6:125"},"nativeSrc":"8512:12:125","nodeType":"YulFunctionCall","src":"8512:12:125"},"nativeSrc":"8512:12:125","nodeType":"YulExpressionStatement","src":"8512:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"8482:6:125","nodeType":"YulIdentifier","src":"8482:6:125"},{"kind":"number","nativeSrc":"8490:18:125","nodeType":"YulLiteral","src":"8490:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8479:2:125","nodeType":"YulIdentifier","src":"8479:2:125"},"nativeSrc":"8479:30:125","nodeType":"YulFunctionCall","src":"8479:30:125"},"nativeSrc":"8476:50:125","nodeType":"YulIf","src":"8476:50:125"},{"nativeSrc":"8535:29:125","nodeType":"YulAssignment","src":"8535:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"8551:6:125","nodeType":"YulIdentifier","src":"8551:6:125"},{"kind":"number","nativeSrc":"8559:4:125","nodeType":"YulLiteral","src":"8559:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"8547:3:125","nodeType":"YulIdentifier","src":"8547:3:125"},"nativeSrc":"8547:17:125","nodeType":"YulFunctionCall","src":"8547:17:125"},"variableNames":[{"name":"arrayPos","nativeSrc":"8535:8:125","nodeType":"YulIdentifier","src":"8535:8:125"}]},{"body":{"nativeSrc":"8624:16:125","nodeType":"YulBlock","src":"8624:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8633:1:125","nodeType":"YulLiteral","src":"8633:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8636:1:125","nodeType":"YulLiteral","src":"8636:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8626:6:125","nodeType":"YulIdentifier","src":"8626:6:125"},"nativeSrc":"8626:12:125","nodeType":"YulFunctionCall","src":"8626:12:125"},"nativeSrc":"8626:12:125","nodeType":"YulExpressionStatement","src":"8626:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"8587:6:125","nodeType":"YulIdentifier","src":"8587:6:125"},{"arguments":[{"kind":"number","nativeSrc":"8599:1:125","nodeType":"YulLiteral","src":"8599:1:125","type":"","value":"5"},{"name":"length","nativeSrc":"8602:6:125","nodeType":"YulIdentifier","src":"8602:6:125"}],"functionName":{"name":"shl","nativeSrc":"8595:3:125","nodeType":"YulIdentifier","src":"8595:3:125"},"nativeSrc":"8595:14:125","nodeType":"YulFunctionCall","src":"8595:14:125"}],"functionName":{"name":"add","nativeSrc":"8583:3:125","nodeType":"YulIdentifier","src":"8583:3:125"},"nativeSrc":"8583:27:125","nodeType":"YulFunctionCall","src":"8583:27:125"},{"kind":"number","nativeSrc":"8612:4:125","nodeType":"YulLiteral","src":"8612:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"8579:3:125","nodeType":"YulIdentifier","src":"8579:3:125"},"nativeSrc":"8579:38:125","nodeType":"YulFunctionCall","src":"8579:38:125"},{"name":"end","nativeSrc":"8619:3:125","nodeType":"YulIdentifier","src":"8619:3:125"}],"functionName":{"name":"gt","nativeSrc":"8576:2:125","nodeType":"YulIdentifier","src":"8576:2:125"},"nativeSrc":"8576:47:125","nodeType":"YulFunctionCall","src":"8576:47:125"},"nativeSrc":"8573:67:125","nodeType":"YulIf","src":"8573:67:125"}]},"name":"abi_decode_array_struct_PackedUserOperation_calldata_dyn_calldata","nativeSrc":"8251:395:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"8326:6:125","nodeType":"YulTypedName","src":"8326:6:125","type":""},{"name":"end","nativeSrc":"8334:3:125","nodeType":"YulTypedName","src":"8334:3:125","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"8342:8:125","nodeType":"YulTypedName","src":"8342:8:125","type":""},{"name":"length","nativeSrc":"8352:6:125","nodeType":"YulTypedName","src":"8352:6:125","type":""}],"src":"8251:395:125"},{"body":{"nativeSrc":"8820:478:125","nodeType":"YulBlock","src":"8820:478:125","statements":[{"body":{"nativeSrc":"8866:16:125","nodeType":"YulBlock","src":"8866:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8875:1:125","nodeType":"YulLiteral","src":"8875:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8878:1:125","nodeType":"YulLiteral","src":"8878:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8868:6:125","nodeType":"YulIdentifier","src":"8868:6:125"},"nativeSrc":"8868:12:125","nodeType":"YulFunctionCall","src":"8868:12:125"},"nativeSrc":"8868:12:125","nodeType":"YulExpressionStatement","src":"8868:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8841:7:125","nodeType":"YulIdentifier","src":"8841:7:125"},{"name":"headStart","nativeSrc":"8850:9:125","nodeType":"YulIdentifier","src":"8850:9:125"}],"functionName":{"name":"sub","nativeSrc":"8837:3:125","nodeType":"YulIdentifier","src":"8837:3:125"},"nativeSrc":"8837:23:125","nodeType":"YulFunctionCall","src":"8837:23:125"},{"kind":"number","nativeSrc":"8862:2:125","nodeType":"YulLiteral","src":"8862:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"8833:3:125","nodeType":"YulIdentifier","src":"8833:3:125"},"nativeSrc":"8833:32:125","nodeType":"YulFunctionCall","src":"8833:32:125"},"nativeSrc":"8830:52:125","nodeType":"YulIf","src":"8830:52:125"},{"nativeSrc":"8891:37:125","nodeType":"YulVariableDeclaration","src":"8891:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8918:9:125","nodeType":"YulIdentifier","src":"8918:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"8905:12:125","nodeType":"YulIdentifier","src":"8905:12:125"},"nativeSrc":"8905:23:125","nodeType":"YulFunctionCall","src":"8905:23:125"},"variables":[{"name":"offset","nativeSrc":"8895:6:125","nodeType":"YulTypedName","src":"8895:6:125","type":""}]},{"body":{"nativeSrc":"8971:16:125","nodeType":"YulBlock","src":"8971:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8980:1:125","nodeType":"YulLiteral","src":"8980:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8983:1:125","nodeType":"YulLiteral","src":"8983:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8973:6:125","nodeType":"YulIdentifier","src":"8973:6:125"},"nativeSrc":"8973:12:125","nodeType":"YulFunctionCall","src":"8973:12:125"},"nativeSrc":"8973:12:125","nodeType":"YulExpressionStatement","src":"8973:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"8943:6:125","nodeType":"YulIdentifier","src":"8943:6:125"},{"kind":"number","nativeSrc":"8951:18:125","nodeType":"YulLiteral","src":"8951:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8940:2:125","nodeType":"YulIdentifier","src":"8940:2:125"},"nativeSrc":"8940:30:125","nodeType":"YulFunctionCall","src":"8940:30:125"},"nativeSrc":"8937:50:125","nodeType":"YulIf","src":"8937:50:125"},{"nativeSrc":"8996:124:125","nodeType":"YulVariableDeclaration","src":"8996:124:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9092:9:125","nodeType":"YulIdentifier","src":"9092:9:125"},{"name":"offset","nativeSrc":"9103:6:125","nodeType":"YulIdentifier","src":"9103:6:125"}],"functionName":{"name":"add","nativeSrc":"9088:3:125","nodeType":"YulIdentifier","src":"9088:3:125"},"nativeSrc":"9088:22:125","nodeType":"YulFunctionCall","src":"9088:22:125"},{"name":"dataEnd","nativeSrc":"9112:7:125","nodeType":"YulIdentifier","src":"9112:7:125"}],"functionName":{"name":"abi_decode_array_struct_PackedUserOperation_calldata_dyn_calldata","nativeSrc":"9022:65:125","nodeType":"YulIdentifier","src":"9022:65:125"},"nativeSrc":"9022:98:125","nodeType":"YulFunctionCall","src":"9022:98:125"},"variables":[{"name":"value0_1","nativeSrc":"9000:8:125","nodeType":"YulTypedName","src":"9000:8:125","type":""},{"name":"value1_1","nativeSrc":"9010:8:125","nodeType":"YulTypedName","src":"9010:8:125","type":""}]},{"nativeSrc":"9129:18:125","nodeType":"YulAssignment","src":"9129:18:125","value":{"name":"value0_1","nativeSrc":"9139:8:125","nodeType":"YulIdentifier","src":"9139:8:125"},"variableNames":[{"name":"value0","nativeSrc":"9129:6:125","nodeType":"YulIdentifier","src":"9129:6:125"}]},{"nativeSrc":"9156:18:125","nodeType":"YulAssignment","src":"9156:18:125","value":{"name":"value1_1","nativeSrc":"9166:8:125","nodeType":"YulIdentifier","src":"9166:8:125"},"variableNames":[{"name":"value1","nativeSrc":"9156:6:125","nodeType":"YulIdentifier","src":"9156:6:125"}]},{"nativeSrc":"9183:45:125","nodeType":"YulVariableDeclaration","src":"9183:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9213:9:125","nodeType":"YulIdentifier","src":"9213:9:125"},{"kind":"number","nativeSrc":"9224:2:125","nodeType":"YulLiteral","src":"9224:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9209:3:125","nodeType":"YulIdentifier","src":"9209:3:125"},"nativeSrc":"9209:18:125","nodeType":"YulFunctionCall","src":"9209:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"9196:12:125","nodeType":"YulIdentifier","src":"9196:12:125"},"nativeSrc":"9196:32:125","nodeType":"YulFunctionCall","src":"9196:32:125"},"variables":[{"name":"value","nativeSrc":"9187:5:125","nodeType":"YulTypedName","src":"9187:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"9262:5:125","nodeType":"YulIdentifier","src":"9262:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"9237:24:125","nodeType":"YulIdentifier","src":"9237:24:125"},"nativeSrc":"9237:31:125","nodeType":"YulFunctionCall","src":"9237:31:125"},"nativeSrc":"9237:31:125","nodeType":"YulExpressionStatement","src":"9237:31:125"},{"nativeSrc":"9277:15:125","nodeType":"YulAssignment","src":"9277:15:125","value":{"name":"value","nativeSrc":"9287:5:125","nodeType":"YulIdentifier","src":"9287:5:125"},"variableNames":[{"name":"value2","nativeSrc":"9277:6:125","nodeType":"YulIdentifier","src":"9277:6:125"}]}]},"name":"abi_decode_tuple_t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptrt_address_payable","nativeSrc":"8651:647:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8770:9:125","nodeType":"YulTypedName","src":"8770:9:125","type":""},{"name":"dataEnd","nativeSrc":"8781:7:125","nodeType":"YulTypedName","src":"8781:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8793:6:125","nodeType":"YulTypedName","src":"8793:6:125","type":""},{"name":"value1","nativeSrc":"8801:6:125","nodeType":"YulTypedName","src":"8801:6:125","type":""},{"name":"value2","nativeSrc":"8809:6:125","nodeType":"YulTypedName","src":"8809:6:125","type":""}],"src":"8651:647:125"},{"body":{"nativeSrc":"9409:438:125","nodeType":"YulBlock","src":"9409:438:125","statements":[{"body":{"nativeSrc":"9455:16:125","nodeType":"YulBlock","src":"9455:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9464:1:125","nodeType":"YulLiteral","src":"9464:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9467:1:125","nodeType":"YulLiteral","src":"9467:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9457:6:125","nodeType":"YulIdentifier","src":"9457:6:125"},"nativeSrc":"9457:12:125","nodeType":"YulFunctionCall","src":"9457:12:125"},"nativeSrc":"9457:12:125","nodeType":"YulExpressionStatement","src":"9457:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9430:7:125","nodeType":"YulIdentifier","src":"9430:7:125"},{"name":"headStart","nativeSrc":"9439:9:125","nodeType":"YulIdentifier","src":"9439:9:125"}],"functionName":{"name":"sub","nativeSrc":"9426:3:125","nodeType":"YulIdentifier","src":"9426:3:125"},"nativeSrc":"9426:23:125","nodeType":"YulFunctionCall","src":"9426:23:125"},{"kind":"number","nativeSrc":"9451:2:125","nodeType":"YulLiteral","src":"9451:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"9422:3:125","nodeType":"YulIdentifier","src":"9422:3:125"},"nativeSrc":"9422:32:125","nodeType":"YulFunctionCall","src":"9422:32:125"},"nativeSrc":"9419:52:125","nodeType":"YulIf","src":"9419:52:125"},{"nativeSrc":"9480:36:125","nodeType":"YulVariableDeclaration","src":"9480:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"9506:9:125","nodeType":"YulIdentifier","src":"9506:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"9493:12:125","nodeType":"YulIdentifier","src":"9493:12:125"},"nativeSrc":"9493:23:125","nodeType":"YulFunctionCall","src":"9493:23:125"},"variables":[{"name":"value","nativeSrc":"9484:5:125","nodeType":"YulTypedName","src":"9484:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"9550:5:125","nodeType":"YulIdentifier","src":"9550:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"9525:24:125","nodeType":"YulIdentifier","src":"9525:24:125"},"nativeSrc":"9525:31:125","nodeType":"YulFunctionCall","src":"9525:31:125"},"nativeSrc":"9525:31:125","nodeType":"YulExpressionStatement","src":"9525:31:125"},{"nativeSrc":"9565:15:125","nodeType":"YulAssignment","src":"9565:15:125","value":{"name":"value","nativeSrc":"9575:5:125","nodeType":"YulIdentifier","src":"9575:5:125"},"variableNames":[{"name":"value0","nativeSrc":"9565:6:125","nodeType":"YulIdentifier","src":"9565:6:125"}]},{"nativeSrc":"9589:46:125","nodeType":"YulVariableDeclaration","src":"9589:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9620:9:125","nodeType":"YulIdentifier","src":"9620:9:125"},{"kind":"number","nativeSrc":"9631:2:125","nodeType":"YulLiteral","src":"9631:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9616:3:125","nodeType":"YulIdentifier","src":"9616:3:125"},"nativeSrc":"9616:18:125","nodeType":"YulFunctionCall","src":"9616:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"9603:12:125","nodeType":"YulIdentifier","src":"9603:12:125"},"nativeSrc":"9603:32:125","nodeType":"YulFunctionCall","src":"9603:32:125"},"variables":[{"name":"offset","nativeSrc":"9593:6:125","nodeType":"YulTypedName","src":"9593:6:125","type":""}]},{"body":{"nativeSrc":"9678:16:125","nodeType":"YulBlock","src":"9678:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9687:1:125","nodeType":"YulLiteral","src":"9687:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9690:1:125","nodeType":"YulLiteral","src":"9690:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9680:6:125","nodeType":"YulIdentifier","src":"9680:6:125"},"nativeSrc":"9680:12:125","nodeType":"YulFunctionCall","src":"9680:12:125"},"nativeSrc":"9680:12:125","nodeType":"YulExpressionStatement","src":"9680:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"9650:6:125","nodeType":"YulIdentifier","src":"9650:6:125"},{"kind":"number","nativeSrc":"9658:18:125","nodeType":"YulLiteral","src":"9658:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"9647:2:125","nodeType":"YulIdentifier","src":"9647:2:125"},"nativeSrc":"9647:30:125","nodeType":"YulFunctionCall","src":"9647:30:125"},"nativeSrc":"9644:50:125","nodeType":"YulIf","src":"9644:50:125"},{"nativeSrc":"9703:84:125","nodeType":"YulVariableDeclaration","src":"9703:84:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9759:9:125","nodeType":"YulIdentifier","src":"9759:9:125"},{"name":"offset","nativeSrc":"9770:6:125","nodeType":"YulIdentifier","src":"9770:6:125"}],"functionName":{"name":"add","nativeSrc":"9755:3:125","nodeType":"YulIdentifier","src":"9755:3:125"},"nativeSrc":"9755:22:125","nodeType":"YulFunctionCall","src":"9755:22:125"},{"name":"dataEnd","nativeSrc":"9779:7:125","nodeType":"YulIdentifier","src":"9779:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"9729:25:125","nodeType":"YulIdentifier","src":"9729:25:125"},"nativeSrc":"9729:58:125","nodeType":"YulFunctionCall","src":"9729:58:125"},"variables":[{"name":"value1_1","nativeSrc":"9707:8:125","nodeType":"YulTypedName","src":"9707:8:125","type":""},{"name":"value2_1","nativeSrc":"9717:8:125","nodeType":"YulTypedName","src":"9717:8:125","type":""}]},{"nativeSrc":"9796:18:125","nodeType":"YulAssignment","src":"9796:18:125","value":{"name":"value1_1","nativeSrc":"9806:8:125","nodeType":"YulIdentifier","src":"9806:8:125"},"variableNames":[{"name":"value1","nativeSrc":"9796:6:125","nodeType":"YulIdentifier","src":"9796:6:125"}]},{"nativeSrc":"9823:18:125","nodeType":"YulAssignment","src":"9823:18:125","value":{"name":"value2_1","nativeSrc":"9833:8:125","nodeType":"YulIdentifier","src":"9833:8:125"},"variableNames":[{"name":"value2","nativeSrc":"9823:6:125","nodeType":"YulIdentifier","src":"9823:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptr","nativeSrc":"9303:544:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9359:9:125","nodeType":"YulTypedName","src":"9359:9:125","type":""},{"name":"dataEnd","nativeSrc":"9370:7:125","nodeType":"YulTypedName","src":"9370:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9382:6:125","nodeType":"YulTypedName","src":"9382:6:125","type":""},{"name":"value1","nativeSrc":"9390:6:125","nodeType":"YulTypedName","src":"9390:6:125","type":""},{"name":"value2","nativeSrc":"9398:6:125","nodeType":"YulTypedName","src":"9398:6:125","type":""}],"src":"9303:544:125"},{"body":{"nativeSrc":"9941:320:125","nodeType":"YulBlock","src":"9941:320:125","statements":[{"body":{"nativeSrc":"9987:16:125","nodeType":"YulBlock","src":"9987:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9996:1:125","nodeType":"YulLiteral","src":"9996:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9999:1:125","nodeType":"YulLiteral","src":"9999:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9989:6:125","nodeType":"YulIdentifier","src":"9989:6:125"},"nativeSrc":"9989:12:125","nodeType":"YulFunctionCall","src":"9989:12:125"},"nativeSrc":"9989:12:125","nodeType":"YulExpressionStatement","src":"9989:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9962:7:125","nodeType":"YulIdentifier","src":"9962:7:125"},{"name":"headStart","nativeSrc":"9971:9:125","nodeType":"YulIdentifier","src":"9971:9:125"}],"functionName":{"name":"sub","nativeSrc":"9958:3:125","nodeType":"YulIdentifier","src":"9958:3:125"},"nativeSrc":"9958:23:125","nodeType":"YulFunctionCall","src":"9958:23:125"},{"kind":"number","nativeSrc":"9983:2:125","nodeType":"YulLiteral","src":"9983:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"9954:3:125","nodeType":"YulIdentifier","src":"9954:3:125"},"nativeSrc":"9954:32:125","nodeType":"YulFunctionCall","src":"9954:32:125"},"nativeSrc":"9951:52:125","nodeType":"YulIf","src":"9951:52:125"},{"nativeSrc":"10012:37:125","nodeType":"YulVariableDeclaration","src":"10012:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10039:9:125","nodeType":"YulIdentifier","src":"10039:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"10026:12:125","nodeType":"YulIdentifier","src":"10026:12:125"},"nativeSrc":"10026:23:125","nodeType":"YulFunctionCall","src":"10026:23:125"},"variables":[{"name":"offset","nativeSrc":"10016:6:125","nodeType":"YulTypedName","src":"10016:6:125","type":""}]},{"body":{"nativeSrc":"10092:16:125","nodeType":"YulBlock","src":"10092:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10101:1:125","nodeType":"YulLiteral","src":"10101:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10104:1:125","nodeType":"YulLiteral","src":"10104:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10094:6:125","nodeType":"YulIdentifier","src":"10094:6:125"},"nativeSrc":"10094:12:125","nodeType":"YulFunctionCall","src":"10094:12:125"},"nativeSrc":"10094:12:125","nodeType":"YulExpressionStatement","src":"10094:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"10064:6:125","nodeType":"YulIdentifier","src":"10064:6:125"},{"kind":"number","nativeSrc":"10072:18:125","nodeType":"YulLiteral","src":"10072:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"10061:2:125","nodeType":"YulIdentifier","src":"10061:2:125"},"nativeSrc":"10061:30:125","nodeType":"YulFunctionCall","src":"10061:30:125"},"nativeSrc":"10058:50:125","nodeType":"YulIf","src":"10058:50:125"},{"nativeSrc":"10117:84:125","nodeType":"YulVariableDeclaration","src":"10117:84:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10173:9:125","nodeType":"YulIdentifier","src":"10173:9:125"},{"name":"offset","nativeSrc":"10184:6:125","nodeType":"YulIdentifier","src":"10184:6:125"}],"functionName":{"name":"add","nativeSrc":"10169:3:125","nodeType":"YulIdentifier","src":"10169:3:125"},"nativeSrc":"10169:22:125","nodeType":"YulFunctionCall","src":"10169:22:125"},{"name":"dataEnd","nativeSrc":"10193:7:125","nodeType":"YulIdentifier","src":"10193:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"10143:25:125","nodeType":"YulIdentifier","src":"10143:25:125"},"nativeSrc":"10143:58:125","nodeType":"YulFunctionCall","src":"10143:58:125"},"variables":[{"name":"value0_1","nativeSrc":"10121:8:125","nodeType":"YulTypedName","src":"10121:8:125","type":""},{"name":"value1_1","nativeSrc":"10131:8:125","nodeType":"YulTypedName","src":"10131:8:125","type":""}]},{"nativeSrc":"10210:18:125","nodeType":"YulAssignment","src":"10210:18:125","value":{"name":"value0_1","nativeSrc":"10220:8:125","nodeType":"YulIdentifier","src":"10220:8:125"},"variableNames":[{"name":"value0","nativeSrc":"10210:6:125","nodeType":"YulIdentifier","src":"10210:6:125"}]},{"nativeSrc":"10237:18:125","nodeType":"YulAssignment","src":"10237:18:125","value":{"name":"value1_1","nativeSrc":"10247:8:125","nodeType":"YulIdentifier","src":"10247:8:125"},"variableNames":[{"name":"value1","nativeSrc":"10237:6:125","nodeType":"YulIdentifier","src":"10237:6:125"}]}]},"name":"abi_decode_tuple_t_bytes_calldata_ptr","nativeSrc":"9852:409:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9899:9:125","nodeType":"YulTypedName","src":"9899:9:125","type":""},{"name":"dataEnd","nativeSrc":"9910:7:125","nodeType":"YulTypedName","src":"9910:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9922:6:125","nodeType":"YulTypedName","src":"9922:6:125","type":""},{"name":"value1","nativeSrc":"9930:6:125","nodeType":"YulTypedName","src":"9930:6:125","type":""}],"src":"9852:409:125"},{"body":{"nativeSrc":"10344:177:125","nodeType":"YulBlock","src":"10344:177:125","statements":[{"body":{"nativeSrc":"10390:16:125","nodeType":"YulBlock","src":"10390:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10399:1:125","nodeType":"YulLiteral","src":"10399:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10402:1:125","nodeType":"YulLiteral","src":"10402:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10392:6:125","nodeType":"YulIdentifier","src":"10392:6:125"},"nativeSrc":"10392:12:125","nodeType":"YulFunctionCall","src":"10392:12:125"},"nativeSrc":"10392:12:125","nodeType":"YulExpressionStatement","src":"10392:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10365:7:125","nodeType":"YulIdentifier","src":"10365:7:125"},{"name":"headStart","nativeSrc":"10374:9:125","nodeType":"YulIdentifier","src":"10374:9:125"}],"functionName":{"name":"sub","nativeSrc":"10361:3:125","nodeType":"YulIdentifier","src":"10361:3:125"},"nativeSrc":"10361:23:125","nodeType":"YulFunctionCall","src":"10361:23:125"},{"kind":"number","nativeSrc":"10386:2:125","nodeType":"YulLiteral","src":"10386:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"10357:3:125","nodeType":"YulIdentifier","src":"10357:3:125"},"nativeSrc":"10357:32:125","nodeType":"YulFunctionCall","src":"10357:32:125"},"nativeSrc":"10354:52:125","nodeType":"YulIf","src":"10354:52:125"},{"nativeSrc":"10415:36:125","nodeType":"YulVariableDeclaration","src":"10415:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10441:9:125","nodeType":"YulIdentifier","src":"10441:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"10428:12:125","nodeType":"YulIdentifier","src":"10428:12:125"},"nativeSrc":"10428:23:125","nodeType":"YulFunctionCall","src":"10428:23:125"},"variables":[{"name":"value","nativeSrc":"10419:5:125","nodeType":"YulTypedName","src":"10419:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10485:5:125","nodeType":"YulIdentifier","src":"10485:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10460:24:125","nodeType":"YulIdentifier","src":"10460:24:125"},"nativeSrc":"10460:31:125","nodeType":"YulFunctionCall","src":"10460:31:125"},"nativeSrc":"10460:31:125","nodeType":"YulExpressionStatement","src":"10460:31:125"},{"nativeSrc":"10500:15:125","nodeType":"YulAssignment","src":"10500:15:125","value":{"name":"value","nativeSrc":"10510:5:125","nodeType":"YulIdentifier","src":"10510:5:125"},"variableNames":[{"name":"value0","nativeSrc":"10500:6:125","nodeType":"YulIdentifier","src":"10500:6:125"}]}]},"name":"abi_decode_tuple_t_address_payable","nativeSrc":"10266:255:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10310:9:125","nodeType":"YulTypedName","src":"10310:9:125","type":""},{"name":"dataEnd","nativeSrc":"10321:7:125","nodeType":"YulTypedName","src":"10321:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10333:6:125","nodeType":"YulTypedName","src":"10333:6:125","type":""}],"src":"10266:255:125"},{"body":{"nativeSrc":"10696:478:125","nodeType":"YulBlock","src":"10696:478:125","statements":[{"body":{"nativeSrc":"10742:16:125","nodeType":"YulBlock","src":"10742:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10751:1:125","nodeType":"YulLiteral","src":"10751:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10754:1:125","nodeType":"YulLiteral","src":"10754:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10744:6:125","nodeType":"YulIdentifier","src":"10744:6:125"},"nativeSrc":"10744:12:125","nodeType":"YulFunctionCall","src":"10744:12:125"},"nativeSrc":"10744:12:125","nodeType":"YulExpressionStatement","src":"10744:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10717:7:125","nodeType":"YulIdentifier","src":"10717:7:125"},{"name":"headStart","nativeSrc":"10726:9:125","nodeType":"YulIdentifier","src":"10726:9:125"}],"functionName":{"name":"sub","nativeSrc":"10713:3:125","nodeType":"YulIdentifier","src":"10713:3:125"},"nativeSrc":"10713:23:125","nodeType":"YulFunctionCall","src":"10713:23:125"},{"kind":"number","nativeSrc":"10738:2:125","nodeType":"YulLiteral","src":"10738:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"10709:3:125","nodeType":"YulIdentifier","src":"10709:3:125"},"nativeSrc":"10709:32:125","nodeType":"YulFunctionCall","src":"10709:32:125"},"nativeSrc":"10706:52:125","nodeType":"YulIf","src":"10706:52:125"},{"nativeSrc":"10767:37:125","nodeType":"YulVariableDeclaration","src":"10767:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10794:9:125","nodeType":"YulIdentifier","src":"10794:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"10781:12:125","nodeType":"YulIdentifier","src":"10781:12:125"},"nativeSrc":"10781:23:125","nodeType":"YulFunctionCall","src":"10781:23:125"},"variables":[{"name":"offset","nativeSrc":"10771:6:125","nodeType":"YulTypedName","src":"10771:6:125","type":""}]},{"body":{"nativeSrc":"10847:16:125","nodeType":"YulBlock","src":"10847:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10856:1:125","nodeType":"YulLiteral","src":"10856:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10859:1:125","nodeType":"YulLiteral","src":"10859:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10849:6:125","nodeType":"YulIdentifier","src":"10849:6:125"},"nativeSrc":"10849:12:125","nodeType":"YulFunctionCall","src":"10849:12:125"},"nativeSrc":"10849:12:125","nodeType":"YulExpressionStatement","src":"10849:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"10819:6:125","nodeType":"YulIdentifier","src":"10819:6:125"},{"kind":"number","nativeSrc":"10827:18:125","nodeType":"YulLiteral","src":"10827:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"10816:2:125","nodeType":"YulIdentifier","src":"10816:2:125"},"nativeSrc":"10816:30:125","nodeType":"YulFunctionCall","src":"10816:30:125"},"nativeSrc":"10813:50:125","nodeType":"YulIf","src":"10813:50:125"},{"nativeSrc":"10872:124:125","nodeType":"YulVariableDeclaration","src":"10872:124:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10968:9:125","nodeType":"YulIdentifier","src":"10968:9:125"},{"name":"offset","nativeSrc":"10979:6:125","nodeType":"YulIdentifier","src":"10979:6:125"}],"functionName":{"name":"add","nativeSrc":"10964:3:125","nodeType":"YulIdentifier","src":"10964:3:125"},"nativeSrc":"10964:22:125","nodeType":"YulFunctionCall","src":"10964:22:125"},{"name":"dataEnd","nativeSrc":"10988:7:125","nodeType":"YulIdentifier","src":"10988:7:125"}],"functionName":{"name":"abi_decode_array_struct_PackedUserOperation_calldata_dyn_calldata","nativeSrc":"10898:65:125","nodeType":"YulIdentifier","src":"10898:65:125"},"nativeSrc":"10898:98:125","nodeType":"YulFunctionCall","src":"10898:98:125"},"variables":[{"name":"value0_1","nativeSrc":"10876:8:125","nodeType":"YulTypedName","src":"10876:8:125","type":""},{"name":"value1_1","nativeSrc":"10886:8:125","nodeType":"YulTypedName","src":"10886:8:125","type":""}]},{"nativeSrc":"11005:18:125","nodeType":"YulAssignment","src":"11005:18:125","value":{"name":"value0_1","nativeSrc":"11015:8:125","nodeType":"YulIdentifier","src":"11015:8:125"},"variableNames":[{"name":"value0","nativeSrc":"11005:6:125","nodeType":"YulIdentifier","src":"11005:6:125"}]},{"nativeSrc":"11032:18:125","nodeType":"YulAssignment","src":"11032:18:125","value":{"name":"value1_1","nativeSrc":"11042:8:125","nodeType":"YulIdentifier","src":"11042:8:125"},"variableNames":[{"name":"value1","nativeSrc":"11032:6:125","nodeType":"YulIdentifier","src":"11032:6:125"}]},{"nativeSrc":"11059:45:125","nodeType":"YulVariableDeclaration","src":"11059:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11089:9:125","nodeType":"YulIdentifier","src":"11089:9:125"},{"kind":"number","nativeSrc":"11100:2:125","nodeType":"YulLiteral","src":"11100:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11085:3:125","nodeType":"YulIdentifier","src":"11085:3:125"},"nativeSrc":"11085:18:125","nodeType":"YulFunctionCall","src":"11085:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"11072:12:125","nodeType":"YulIdentifier","src":"11072:12:125"},"nativeSrc":"11072:32:125","nodeType":"YulFunctionCall","src":"11072:32:125"},"variables":[{"name":"value","nativeSrc":"11063:5:125","nodeType":"YulTypedName","src":"11063:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11138:5:125","nodeType":"YulIdentifier","src":"11138:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"11113:24:125","nodeType":"YulIdentifier","src":"11113:24:125"},"nativeSrc":"11113:31:125","nodeType":"YulFunctionCall","src":"11113:31:125"},"nativeSrc":"11113:31:125","nodeType":"YulExpressionStatement","src":"11113:31:125"},{"nativeSrc":"11153:15:125","nodeType":"YulAssignment","src":"11153:15:125","value":{"name":"value","nativeSrc":"11163:5:125","nodeType":"YulIdentifier","src":"11163:5:125"},"variableNames":[{"name":"value2","nativeSrc":"11153:6:125","nodeType":"YulIdentifier","src":"11153:6:125"}]}]},"name":"abi_decode_tuple_t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptrt_address_payable","nativeSrc":"10526:648:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10646:9:125","nodeType":"YulTypedName","src":"10646:9:125","type":""},{"name":"dataEnd","nativeSrc":"10657:7:125","nodeType":"YulTypedName","src":"10657:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10669:6:125","nodeType":"YulTypedName","src":"10669:6:125","type":""},{"name":"value1","nativeSrc":"10677:6:125","nodeType":"YulTypedName","src":"10677:6:125","type":""},{"name":"value2","nativeSrc":"10685:6:125","nodeType":"YulTypedName","src":"10685:6:125","type":""}],"src":"10526:648:125"},{"body":{"nativeSrc":"11382:341:125","nodeType":"YulBlock","src":"11382:341:125","statements":[{"nativeSrc":"11392:27:125","nodeType":"YulAssignment","src":"11392:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11404:9:125","nodeType":"YulIdentifier","src":"11404:9:125"},{"kind":"number","nativeSrc":"11415:3:125","nodeType":"YulLiteral","src":"11415:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"11400:3:125","nodeType":"YulIdentifier","src":"11400:3:125"},"nativeSrc":"11400:19:125","nodeType":"YulFunctionCall","src":"11400:19:125"},"variableNames":[{"name":"tail","nativeSrc":"11392:4:125","nodeType":"YulIdentifier","src":"11392:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11435:9:125","nodeType":"YulIdentifier","src":"11435:9:125"},{"name":"value0","nativeSrc":"11446:6:125","nodeType":"YulIdentifier","src":"11446:6:125"}],"functionName":{"name":"mstore","nativeSrc":"11428:6:125","nodeType":"YulIdentifier","src":"11428:6:125"},"nativeSrc":"11428:25:125","nodeType":"YulFunctionCall","src":"11428:25:125"},"nativeSrc":"11428:25:125","nodeType":"YulExpressionStatement","src":"11428:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11473:9:125","nodeType":"YulIdentifier","src":"11473:9:125"},{"kind":"number","nativeSrc":"11484:2:125","nodeType":"YulLiteral","src":"11484:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11469:3:125","nodeType":"YulIdentifier","src":"11469:3:125"},"nativeSrc":"11469:18:125","nodeType":"YulFunctionCall","src":"11469:18:125"},{"arguments":[{"arguments":[{"name":"value1","nativeSrc":"11503:6:125","nodeType":"YulIdentifier","src":"11503:6:125"}],"functionName":{"name":"iszero","nativeSrc":"11496:6:125","nodeType":"YulIdentifier","src":"11496:6:125"},"nativeSrc":"11496:14:125","nodeType":"YulFunctionCall","src":"11496:14:125"}],"functionName":{"name":"iszero","nativeSrc":"11489:6:125","nodeType":"YulIdentifier","src":"11489:6:125"},"nativeSrc":"11489:22:125","nodeType":"YulFunctionCall","src":"11489:22:125"}],"functionName":{"name":"mstore","nativeSrc":"11462:6:125","nodeType":"YulIdentifier","src":"11462:6:125"},"nativeSrc":"11462:50:125","nodeType":"YulFunctionCall","src":"11462:50:125"},"nativeSrc":"11462:50:125","nodeType":"YulExpressionStatement","src":"11462:50:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11532:9:125","nodeType":"YulIdentifier","src":"11532:9:125"},{"kind":"number","nativeSrc":"11543:2:125","nodeType":"YulLiteral","src":"11543:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11528:3:125","nodeType":"YulIdentifier","src":"11528:3:125"},"nativeSrc":"11528:18:125","nodeType":"YulFunctionCall","src":"11528:18:125"},{"arguments":[{"name":"value2","nativeSrc":"11552:6:125","nodeType":"YulIdentifier","src":"11552:6:125"},{"kind":"number","nativeSrc":"11560:30:125","nodeType":"YulLiteral","src":"11560:30:125","type":"","value":"0xffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"11548:3:125","nodeType":"YulIdentifier","src":"11548:3:125"},"nativeSrc":"11548:43:125","nodeType":"YulFunctionCall","src":"11548:43:125"}],"functionName":{"name":"mstore","nativeSrc":"11521:6:125","nodeType":"YulIdentifier","src":"11521:6:125"},"nativeSrc":"11521:71:125","nodeType":"YulFunctionCall","src":"11521:71:125"},"nativeSrc":"11521:71:125","nodeType":"YulExpressionStatement","src":"11521:71:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11612:9:125","nodeType":"YulIdentifier","src":"11612:9:125"},{"kind":"number","nativeSrc":"11623:2:125","nodeType":"YulLiteral","src":"11623:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11608:3:125","nodeType":"YulIdentifier","src":"11608:3:125"},"nativeSrc":"11608:18:125","nodeType":"YulFunctionCall","src":"11608:18:125"},{"arguments":[{"name":"value3","nativeSrc":"11632:6:125","nodeType":"YulIdentifier","src":"11632:6:125"},{"kind":"number","nativeSrc":"11640:10:125","nodeType":"YulLiteral","src":"11640:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"11628:3:125","nodeType":"YulIdentifier","src":"11628:3:125"},"nativeSrc":"11628:23:125","nodeType":"YulFunctionCall","src":"11628:23:125"}],"functionName":{"name":"mstore","nativeSrc":"11601:6:125","nodeType":"YulIdentifier","src":"11601:6:125"},"nativeSrc":"11601:51:125","nodeType":"YulFunctionCall","src":"11601:51:125"},"nativeSrc":"11601:51:125","nodeType":"YulExpressionStatement","src":"11601:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11672:9:125","nodeType":"YulIdentifier","src":"11672:9:125"},{"kind":"number","nativeSrc":"11683:3:125","nodeType":"YulLiteral","src":"11683:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"11668:3:125","nodeType":"YulIdentifier","src":"11668:3:125"},"nativeSrc":"11668:19:125","nodeType":"YulFunctionCall","src":"11668:19:125"},{"arguments":[{"name":"value4","nativeSrc":"11693:6:125","nodeType":"YulIdentifier","src":"11693:6:125"},{"kind":"number","nativeSrc":"11701:14:125","nodeType":"YulLiteral","src":"11701:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"11689:3:125","nodeType":"YulIdentifier","src":"11689:3:125"},"nativeSrc":"11689:27:125","nodeType":"YulFunctionCall","src":"11689:27:125"}],"functionName":{"name":"mstore","nativeSrc":"11661:6:125","nodeType":"YulIdentifier","src":"11661:6:125"},"nativeSrc":"11661:56:125","nodeType":"YulFunctionCall","src":"11661:56:125"},"nativeSrc":"11661:56:125","nodeType":"YulExpressionStatement","src":"11661:56:125"}]},"name":"abi_encode_tuple_t_uint256_t_bool_t_uint112_t_uint32_t_uint48__to_t_uint256_t_bool_t_uint112_t_uint32_t_uint48__fromStack_reversed","nativeSrc":"11179:544:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11319:9:125","nodeType":"YulTypedName","src":"11319:9:125","type":""},{"name":"value4","nativeSrc":"11330:6:125","nodeType":"YulTypedName","src":"11330:6:125","type":""},{"name":"value3","nativeSrc":"11338:6:125","nodeType":"YulTypedName","src":"11338:6:125","type":""},{"name":"value2","nativeSrc":"11346:6:125","nodeType":"YulTypedName","src":"11346:6:125","type":""},{"name":"value1","nativeSrc":"11354:6:125","nodeType":"YulTypedName","src":"11354:6:125","type":""},{"name":"value0","nativeSrc":"11362:6:125","nodeType":"YulTypedName","src":"11362:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11373:4:125","nodeType":"YulTypedName","src":"11373:4:125","type":""}],"src":"11179:544:125"},{"body":{"nativeSrc":"11902:173:125","nodeType":"YulBlock","src":"11902:173:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11919:9:125","nodeType":"YulIdentifier","src":"11919:9:125"},{"kind":"number","nativeSrc":"11930:2:125","nodeType":"YulLiteral","src":"11930:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"11912:6:125","nodeType":"YulIdentifier","src":"11912:6:125"},"nativeSrc":"11912:21:125","nodeType":"YulFunctionCall","src":"11912:21:125"},"nativeSrc":"11912:21:125","nodeType":"YulExpressionStatement","src":"11912:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11953:9:125","nodeType":"YulIdentifier","src":"11953:9:125"},{"kind":"number","nativeSrc":"11964:2:125","nodeType":"YulLiteral","src":"11964:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11949:3:125","nodeType":"YulIdentifier","src":"11949:3:125"},"nativeSrc":"11949:18:125","nodeType":"YulFunctionCall","src":"11949:18:125"},{"kind":"number","nativeSrc":"11969:2:125","nodeType":"YulLiteral","src":"11969:2:125","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"11942:6:125","nodeType":"YulIdentifier","src":"11942:6:125"},"nativeSrc":"11942:30:125","nodeType":"YulFunctionCall","src":"11942:30:125"},"nativeSrc":"11942:30:125","nodeType":"YulExpressionStatement","src":"11942:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11992:9:125","nodeType":"YulIdentifier","src":"11992:9:125"},{"kind":"number","nativeSrc":"12003:2:125","nodeType":"YulLiteral","src":"12003:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11988:3:125","nodeType":"YulIdentifier","src":"11988:3:125"},"nativeSrc":"11988:18:125","nodeType":"YulFunctionCall","src":"11988:18:125"},{"hexValue":"4141393220696e7465726e616c2063616c6c206f6e6c79","kind":"string","nativeSrc":"12008:25:125","nodeType":"YulLiteral","src":"12008:25:125","type":"","value":"AA92 internal call only"}],"functionName":{"name":"mstore","nativeSrc":"11981:6:125","nodeType":"YulIdentifier","src":"11981:6:125"},"nativeSrc":"11981:53:125","nodeType":"YulFunctionCall","src":"11981:53:125"},"nativeSrc":"11981:53:125","nodeType":"YulExpressionStatement","src":"11981:53:125"},{"nativeSrc":"12043:26:125","nodeType":"YulAssignment","src":"12043:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12055:9:125","nodeType":"YulIdentifier","src":"12055:9:125"},{"kind":"number","nativeSrc":"12066:2:125","nodeType":"YulLiteral","src":"12066:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12051:3:125","nodeType":"YulIdentifier","src":"12051:3:125"},"nativeSrc":"12051:18:125","nodeType":"YulFunctionCall","src":"12051:18:125"},"variableNames":[{"name":"tail","nativeSrc":"12043:4:125","nodeType":"YulIdentifier","src":"12043:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_bf4e5bbea2250480ca8cf3cc338d236d16fd3805a9bc8205224406394a71fe66__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"11728:347:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11879:9:125","nodeType":"YulTypedName","src":"11879:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11893:4:125","nodeType":"YulTypedName","src":"11893:4:125","type":""}],"src":"11728:347:125"},{"body":{"nativeSrc":"12112:95:125","nodeType":"YulBlock","src":"12112:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12129:1:125","nodeType":"YulLiteral","src":"12129:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"12136:3:125","nodeType":"YulLiteral","src":"12136:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"12141:10:125","nodeType":"YulLiteral","src":"12141:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"12132:3:125","nodeType":"YulIdentifier","src":"12132:3:125"},"nativeSrc":"12132:20:125","nodeType":"YulFunctionCall","src":"12132:20:125"}],"functionName":{"name":"mstore","nativeSrc":"12122:6:125","nodeType":"YulIdentifier","src":"12122:6:125"},"nativeSrc":"12122:31:125","nodeType":"YulFunctionCall","src":"12122:31:125"},"nativeSrc":"12122:31:125","nodeType":"YulExpressionStatement","src":"12122:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12169:1:125","nodeType":"YulLiteral","src":"12169:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"12172:4:125","nodeType":"YulLiteral","src":"12172:4:125","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"12162:6:125","nodeType":"YulIdentifier","src":"12162:6:125"},"nativeSrc":"12162:15:125","nodeType":"YulFunctionCall","src":"12162:15:125"},"nativeSrc":"12162:15:125","nodeType":"YulExpressionStatement","src":"12162:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12193:1:125","nodeType":"YulLiteral","src":"12193:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12196:4:125","nodeType":"YulLiteral","src":"12196:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"12186:6:125","nodeType":"YulIdentifier","src":"12186:6:125"},"nativeSrc":"12186:15:125","nodeType":"YulFunctionCall","src":"12186:15:125"},"nativeSrc":"12186:15:125","nodeType":"YulExpressionStatement","src":"12186:15:125"}]},"name":"panic_error_0x12","nativeSrc":"12080:127:125","nodeType":"YulFunctionDefinition","src":"12080:127:125"},{"body":{"nativeSrc":"12261:239:125","nodeType":"YulBlock","src":"12261:239:125","statements":[{"nativeSrc":"12271:26:125","nodeType":"YulVariableDeclaration","src":"12271:26:125","value":{"arguments":[{"name":"value","nativeSrc":"12291:5:125","nodeType":"YulIdentifier","src":"12291:5:125"}],"functionName":{"name":"mload","nativeSrc":"12285:5:125","nodeType":"YulIdentifier","src":"12285:5:125"},"nativeSrc":"12285:12:125","nodeType":"YulFunctionCall","src":"12285:12:125"},"variables":[{"name":"length","nativeSrc":"12275:6:125","nodeType":"YulTypedName","src":"12275:6:125","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"12313:3:125","nodeType":"YulIdentifier","src":"12313:3:125"},{"name":"length","nativeSrc":"12318:6:125","nodeType":"YulIdentifier","src":"12318:6:125"}],"functionName":{"name":"mstore","nativeSrc":"12306:6:125","nodeType":"YulIdentifier","src":"12306:6:125"},"nativeSrc":"12306:19:125","nodeType":"YulFunctionCall","src":"12306:19:125"},"nativeSrc":"12306:19:125","nodeType":"YulExpressionStatement","src":"12306:19:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"12344:3:125","nodeType":"YulIdentifier","src":"12344:3:125"},{"kind":"number","nativeSrc":"12349:4:125","nodeType":"YulLiteral","src":"12349:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12340:3:125","nodeType":"YulIdentifier","src":"12340:3:125"},"nativeSrc":"12340:14:125","nodeType":"YulFunctionCall","src":"12340:14:125"},{"arguments":[{"name":"value","nativeSrc":"12360:5:125","nodeType":"YulIdentifier","src":"12360:5:125"},{"kind":"number","nativeSrc":"12367:4:125","nodeType":"YulLiteral","src":"12367:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12356:3:125","nodeType":"YulIdentifier","src":"12356:3:125"},"nativeSrc":"12356:16:125","nodeType":"YulFunctionCall","src":"12356:16:125"},{"name":"length","nativeSrc":"12374:6:125","nodeType":"YulIdentifier","src":"12374:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"12334:5:125","nodeType":"YulIdentifier","src":"12334:5:125"},"nativeSrc":"12334:47:125","nodeType":"YulFunctionCall","src":"12334:47:125"},"nativeSrc":"12334:47:125","nodeType":"YulExpressionStatement","src":"12334:47:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"12405:3:125","nodeType":"YulIdentifier","src":"12405:3:125"},{"name":"length","nativeSrc":"12410:6:125","nodeType":"YulIdentifier","src":"12410:6:125"}],"functionName":{"name":"add","nativeSrc":"12401:3:125","nodeType":"YulIdentifier","src":"12401:3:125"},"nativeSrc":"12401:16:125","nodeType":"YulFunctionCall","src":"12401:16:125"},{"kind":"number","nativeSrc":"12419:4:125","nodeType":"YulLiteral","src":"12419:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12397:3:125","nodeType":"YulIdentifier","src":"12397:3:125"},"nativeSrc":"12397:27:125","nodeType":"YulFunctionCall","src":"12397:27:125"},{"kind":"number","nativeSrc":"12426:1:125","nodeType":"YulLiteral","src":"12426:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"12390:6:125","nodeType":"YulIdentifier","src":"12390:6:125"},"nativeSrc":"12390:38:125","nodeType":"YulFunctionCall","src":"12390:38:125"},"nativeSrc":"12390:38:125","nodeType":"YulExpressionStatement","src":"12390:38:125"},{"nativeSrc":"12437:57:125","nodeType":"YulAssignment","src":"12437:57:125","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"12452:3:125","nodeType":"YulIdentifier","src":"12452:3:125"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"12465:6:125","nodeType":"YulIdentifier","src":"12465:6:125"},{"kind":"number","nativeSrc":"12473:2:125","nodeType":"YulLiteral","src":"12473:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"12461:3:125","nodeType":"YulIdentifier","src":"12461:3:125"},"nativeSrc":"12461:15:125","nodeType":"YulFunctionCall","src":"12461:15:125"},{"arguments":[{"kind":"number","nativeSrc":"12482:2:125","nodeType":"YulLiteral","src":"12482:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"12478:3:125","nodeType":"YulIdentifier","src":"12478:3:125"},"nativeSrc":"12478:7:125","nodeType":"YulFunctionCall","src":"12478:7:125"}],"functionName":{"name":"and","nativeSrc":"12457:3:125","nodeType":"YulIdentifier","src":"12457:3:125"},"nativeSrc":"12457:29:125","nodeType":"YulFunctionCall","src":"12457:29:125"}],"functionName":{"name":"add","nativeSrc":"12448:3:125","nodeType":"YulIdentifier","src":"12448:3:125"},"nativeSrc":"12448:39:125","nodeType":"YulFunctionCall","src":"12448:39:125"},{"kind":"number","nativeSrc":"12489:4:125","nodeType":"YulLiteral","src":"12489:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12444:3:125","nodeType":"YulIdentifier","src":"12444:3:125"},"nativeSrc":"12444:50:125","nodeType":"YulFunctionCall","src":"12444:50:125"},"variableNames":[{"name":"end","nativeSrc":"12437:3:125","nodeType":"YulIdentifier","src":"12437:3:125"}]}]},"name":"abi_encode_bytes","nativeSrc":"12212:288:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"12238:5:125","nodeType":"YulTypedName","src":"12238:5:125","type":""},{"name":"pos","nativeSrc":"12245:3:125","nodeType":"YulTypedName","src":"12245:3:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"12253:3:125","nodeType":"YulTypedName","src":"12253:3:125","type":""}],"src":"12212:288:125"},{"body":{"nativeSrc":"12652:141:125","nodeType":"YulBlock","src":"12652:141:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12669:9:125","nodeType":"YulIdentifier","src":"12669:9:125"},{"name":"value0","nativeSrc":"12680:6:125","nodeType":"YulIdentifier","src":"12680:6:125"}],"functionName":{"name":"mstore","nativeSrc":"12662:6:125","nodeType":"YulIdentifier","src":"12662:6:125"},"nativeSrc":"12662:25:125","nodeType":"YulFunctionCall","src":"12662:25:125"},"nativeSrc":"12662:25:125","nodeType":"YulExpressionStatement","src":"12662:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12707:9:125","nodeType":"YulIdentifier","src":"12707:9:125"},{"kind":"number","nativeSrc":"12718:2:125","nodeType":"YulLiteral","src":"12718:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12703:3:125","nodeType":"YulIdentifier","src":"12703:3:125"},"nativeSrc":"12703:18:125","nodeType":"YulFunctionCall","src":"12703:18:125"},{"kind":"number","nativeSrc":"12723:2:125","nodeType":"YulLiteral","src":"12723:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"12696:6:125","nodeType":"YulIdentifier","src":"12696:6:125"},"nativeSrc":"12696:30:125","nodeType":"YulFunctionCall","src":"12696:30:125"},"nativeSrc":"12696:30:125","nodeType":"YulExpressionStatement","src":"12696:30:125"},{"nativeSrc":"12735:52:125","nodeType":"YulAssignment","src":"12735:52:125","value":{"arguments":[{"name":"value1","nativeSrc":"12760:6:125","nodeType":"YulIdentifier","src":"12760:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"12772:9:125","nodeType":"YulIdentifier","src":"12772:9:125"},{"kind":"number","nativeSrc":"12783:2:125","nodeType":"YulLiteral","src":"12783:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12768:3:125","nodeType":"YulIdentifier","src":"12768:3:125"},"nativeSrc":"12768:18:125","nodeType":"YulFunctionCall","src":"12768:18:125"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"12743:16:125","nodeType":"YulIdentifier","src":"12743:16:125"},"nativeSrc":"12743:44:125","nodeType":"YulFunctionCall","src":"12743:44:125"},"variableNames":[{"name":"tail","nativeSrc":"12735:4:125","nodeType":"YulIdentifier","src":"12735:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_bytes_memory_ptr__to_t_uint256_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"12505:288:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12613:9:125","nodeType":"YulTypedName","src":"12613:9:125","type":""},{"name":"value1","nativeSrc":"12624:6:125","nodeType":"YulTypedName","src":"12624:6:125","type":""},{"name":"value0","nativeSrc":"12632:6:125","nodeType":"YulTypedName","src":"12632:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12643:4:125","nodeType":"YulTypedName","src":"12643:4:125","type":""}],"src":"12505:288:125"},{"body":{"nativeSrc":"12972:176:125","nodeType":"YulBlock","src":"12972:176:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12989:9:125","nodeType":"YulIdentifier","src":"12989:9:125"},{"kind":"number","nativeSrc":"13000:2:125","nodeType":"YulLiteral","src":"13000:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"12982:6:125","nodeType":"YulIdentifier","src":"12982:6:125"},"nativeSrc":"12982:21:125","nodeType":"YulFunctionCall","src":"12982:21:125"},"nativeSrc":"12982:21:125","nodeType":"YulExpressionStatement","src":"12982:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13023:9:125","nodeType":"YulIdentifier","src":"13023:9:125"},{"kind":"number","nativeSrc":"13034:2:125","nodeType":"YulLiteral","src":"13034:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13019:3:125","nodeType":"YulIdentifier","src":"13019:3:125"},"nativeSrc":"13019:18:125","nodeType":"YulFunctionCall","src":"13019:18:125"},{"kind":"number","nativeSrc":"13039:2:125","nodeType":"YulLiteral","src":"13039:2:125","type":"","value":"26"}],"functionName":{"name":"mstore","nativeSrc":"13012:6:125","nodeType":"YulIdentifier","src":"13012:6:125"},"nativeSrc":"13012:30:125","nodeType":"YulFunctionCall","src":"13012:30:125"},"nativeSrc":"13012:30:125","nodeType":"YulExpressionStatement","src":"13012:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13062:9:125","nodeType":"YulIdentifier","src":"13062:9:125"},{"kind":"number","nativeSrc":"13073:2:125","nodeType":"YulLiteral","src":"13073:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13058:3:125","nodeType":"YulIdentifier","src":"13058:3:125"},"nativeSrc":"13058:18:125","nodeType":"YulFunctionCall","src":"13058:18:125"},{"hexValue":"6d757374207370656369667920756e7374616b652064656c6179","kind":"string","nativeSrc":"13078:28:125","nodeType":"YulLiteral","src":"13078:28:125","type":"","value":"must specify unstake delay"}],"functionName":{"name":"mstore","nativeSrc":"13051:6:125","nodeType":"YulIdentifier","src":"13051:6:125"},"nativeSrc":"13051:56:125","nodeType":"YulFunctionCall","src":"13051:56:125"},"nativeSrc":"13051:56:125","nodeType":"YulExpressionStatement","src":"13051:56:125"},{"nativeSrc":"13116:26:125","nodeType":"YulAssignment","src":"13116:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"13128:9:125","nodeType":"YulIdentifier","src":"13128:9:125"},{"kind":"number","nativeSrc":"13139:2:125","nodeType":"YulLiteral","src":"13139:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13124:3:125","nodeType":"YulIdentifier","src":"13124:3:125"},"nativeSrc":"13124:18:125","nodeType":"YulFunctionCall","src":"13124:18:125"},"variableNames":[{"name":"tail","nativeSrc":"13116:4:125","nodeType":"YulIdentifier","src":"13116:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_b778ed14a7f7833f15cec15447ba73902b7f27cdd540d47113a5b9c3947e6b2b__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"12798:350:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12949:9:125","nodeType":"YulTypedName","src":"12949:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12963:4:125","nodeType":"YulTypedName","src":"12963:4:125","type":""}],"src":"12798:350:125"},{"body":{"nativeSrc":"13327:178:125","nodeType":"YulBlock","src":"13327:178:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13344:9:125","nodeType":"YulIdentifier","src":"13344:9:125"},{"kind":"number","nativeSrc":"13355:2:125","nodeType":"YulLiteral","src":"13355:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13337:6:125","nodeType":"YulIdentifier","src":"13337:6:125"},"nativeSrc":"13337:21:125","nodeType":"YulFunctionCall","src":"13337:21:125"},"nativeSrc":"13337:21:125","nodeType":"YulExpressionStatement","src":"13337:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13378:9:125","nodeType":"YulIdentifier","src":"13378:9:125"},{"kind":"number","nativeSrc":"13389:2:125","nodeType":"YulLiteral","src":"13389:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13374:3:125","nodeType":"YulIdentifier","src":"13374:3:125"},"nativeSrc":"13374:18:125","nodeType":"YulFunctionCall","src":"13374:18:125"},{"kind":"number","nativeSrc":"13394:2:125","nodeType":"YulLiteral","src":"13394:2:125","type":"","value":"28"}],"functionName":{"name":"mstore","nativeSrc":"13367:6:125","nodeType":"YulIdentifier","src":"13367:6:125"},"nativeSrc":"13367:30:125","nodeType":"YulFunctionCall","src":"13367:30:125"},"nativeSrc":"13367:30:125","nodeType":"YulExpressionStatement","src":"13367:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13417:9:125","nodeType":"YulIdentifier","src":"13417:9:125"},{"kind":"number","nativeSrc":"13428:2:125","nodeType":"YulLiteral","src":"13428:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13413:3:125","nodeType":"YulIdentifier","src":"13413:3:125"},"nativeSrc":"13413:18:125","nodeType":"YulFunctionCall","src":"13413:18:125"},{"hexValue":"63616e6e6f7420646563726561736520756e7374616b652074696d65","kind":"string","nativeSrc":"13433:30:125","nodeType":"YulLiteral","src":"13433:30:125","type":"","value":"cannot decrease unstake time"}],"functionName":{"name":"mstore","nativeSrc":"13406:6:125","nodeType":"YulIdentifier","src":"13406:6:125"},"nativeSrc":"13406:58:125","nodeType":"YulFunctionCall","src":"13406:58:125"},"nativeSrc":"13406:58:125","nodeType":"YulExpressionStatement","src":"13406:58:125"},{"nativeSrc":"13473:26:125","nodeType":"YulAssignment","src":"13473:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"13485:9:125","nodeType":"YulIdentifier","src":"13485:9:125"},{"kind":"number","nativeSrc":"13496:2:125","nodeType":"YulLiteral","src":"13496:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13481:3:125","nodeType":"YulIdentifier","src":"13481:3:125"},"nativeSrc":"13481:18:125","nodeType":"YulFunctionCall","src":"13481:18:125"},"variableNames":[{"name":"tail","nativeSrc":"13473:4:125","nodeType":"YulIdentifier","src":"13473:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_be41a8e875b0d08b577c32bcab0ac88c472e62be6c60e218189d78d10808d9e7__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"13153:352:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13304:9:125","nodeType":"YulTypedName","src":"13304:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13318:4:125","nodeType":"YulTypedName","src":"13318:4:125","type":""}],"src":"13153:352:125"},{"body":{"nativeSrc":"13542:95:125","nodeType":"YulBlock","src":"13542:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13559:1:125","nodeType":"YulLiteral","src":"13559:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"13566:3:125","nodeType":"YulLiteral","src":"13566:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"13571:10:125","nodeType":"YulLiteral","src":"13571:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"13562:3:125","nodeType":"YulIdentifier","src":"13562:3:125"},"nativeSrc":"13562:20:125","nodeType":"YulFunctionCall","src":"13562:20:125"}],"functionName":{"name":"mstore","nativeSrc":"13552:6:125","nodeType":"YulIdentifier","src":"13552:6:125"},"nativeSrc":"13552:31:125","nodeType":"YulFunctionCall","src":"13552:31:125"},"nativeSrc":"13552:31:125","nodeType":"YulExpressionStatement","src":"13552:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"13599:1:125","nodeType":"YulLiteral","src":"13599:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"13602:4:125","nodeType":"YulLiteral","src":"13602:4:125","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"13592:6:125","nodeType":"YulIdentifier","src":"13592:6:125"},"nativeSrc":"13592:15:125","nodeType":"YulFunctionCall","src":"13592:15:125"},"nativeSrc":"13592:15:125","nodeType":"YulExpressionStatement","src":"13592:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"13623:1:125","nodeType":"YulLiteral","src":"13623:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"13626:4:125","nodeType":"YulLiteral","src":"13626:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"13616:6:125","nodeType":"YulIdentifier","src":"13616:6:125"},"nativeSrc":"13616:15:125","nodeType":"YulFunctionCall","src":"13616:15:125"},"nativeSrc":"13616:15:125","nodeType":"YulExpressionStatement","src":"13616:15:125"}]},"name":"panic_error_0x11","nativeSrc":"13510:127:125","nodeType":"YulFunctionDefinition","src":"13510:127:125"},{"body":{"nativeSrc":"13690:77:125","nodeType":"YulBlock","src":"13690:77:125","statements":[{"nativeSrc":"13700:16:125","nodeType":"YulAssignment","src":"13700:16:125","value":{"arguments":[{"name":"x","nativeSrc":"13711:1:125","nodeType":"YulIdentifier","src":"13711:1:125"},{"name":"y","nativeSrc":"13714:1:125","nodeType":"YulIdentifier","src":"13714:1:125"}],"functionName":{"name":"add","nativeSrc":"13707:3:125","nodeType":"YulIdentifier","src":"13707:3:125"},"nativeSrc":"13707:9:125","nodeType":"YulFunctionCall","src":"13707:9:125"},"variableNames":[{"name":"sum","nativeSrc":"13700:3:125","nodeType":"YulIdentifier","src":"13700:3:125"}]},{"body":{"nativeSrc":"13739:22:125","nodeType":"YulBlock","src":"13739:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"13741:16:125","nodeType":"YulIdentifier","src":"13741:16:125"},"nativeSrc":"13741:18:125","nodeType":"YulFunctionCall","src":"13741:18:125"},"nativeSrc":"13741:18:125","nodeType":"YulExpressionStatement","src":"13741:18:125"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"13731:1:125","nodeType":"YulIdentifier","src":"13731:1:125"},{"name":"sum","nativeSrc":"13734:3:125","nodeType":"YulIdentifier","src":"13734:3:125"}],"functionName":{"name":"gt","nativeSrc":"13728:2:125","nodeType":"YulIdentifier","src":"13728:2:125"},"nativeSrc":"13728:10:125","nodeType":"YulFunctionCall","src":"13728:10:125"},"nativeSrc":"13725:36:125","nodeType":"YulIf","src":"13725:36:125"}]},"name":"checked_add_t_uint256","nativeSrc":"13642:125:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"13673:1:125","nodeType":"YulTypedName","src":"13673:1:125","type":""},{"name":"y","nativeSrc":"13676:1:125","nodeType":"YulTypedName","src":"13676:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"13682:3:125","nodeType":"YulTypedName","src":"13682:3:125","type":""}],"src":"13642:125:125"},{"body":{"nativeSrc":"13946:168:125","nodeType":"YulBlock","src":"13946:168:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13963:9:125","nodeType":"YulIdentifier","src":"13963:9:125"},{"kind":"number","nativeSrc":"13974:2:125","nodeType":"YulLiteral","src":"13974:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13956:6:125","nodeType":"YulIdentifier","src":"13956:6:125"},"nativeSrc":"13956:21:125","nodeType":"YulFunctionCall","src":"13956:21:125"},"nativeSrc":"13956:21:125","nodeType":"YulExpressionStatement","src":"13956:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13997:9:125","nodeType":"YulIdentifier","src":"13997:9:125"},{"kind":"number","nativeSrc":"14008:2:125","nodeType":"YulLiteral","src":"14008:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13993:3:125","nodeType":"YulIdentifier","src":"13993:3:125"},"nativeSrc":"13993:18:125","nodeType":"YulFunctionCall","src":"13993:18:125"},{"kind":"number","nativeSrc":"14013:2:125","nodeType":"YulLiteral","src":"14013:2:125","type":"","value":"18"}],"functionName":{"name":"mstore","nativeSrc":"13986:6:125","nodeType":"YulIdentifier","src":"13986:6:125"},"nativeSrc":"13986:30:125","nodeType":"YulFunctionCall","src":"13986:30:125"},"nativeSrc":"13986:30:125","nodeType":"YulExpressionStatement","src":"13986:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14036:9:125","nodeType":"YulIdentifier","src":"14036:9:125"},{"kind":"number","nativeSrc":"14047:2:125","nodeType":"YulLiteral","src":"14047:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14032:3:125","nodeType":"YulIdentifier","src":"14032:3:125"},"nativeSrc":"14032:18:125","nodeType":"YulFunctionCall","src":"14032:18:125"},{"hexValue":"6e6f207374616b6520737065636966696564","kind":"string","nativeSrc":"14052:20:125","nodeType":"YulLiteral","src":"14052:20:125","type":"","value":"no stake specified"}],"functionName":{"name":"mstore","nativeSrc":"14025:6:125","nodeType":"YulIdentifier","src":"14025:6:125"},"nativeSrc":"14025:48:125","nodeType":"YulFunctionCall","src":"14025:48:125"},"nativeSrc":"14025:48:125","nodeType":"YulExpressionStatement","src":"14025:48:125"},{"nativeSrc":"14082:26:125","nodeType":"YulAssignment","src":"14082:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14094:9:125","nodeType":"YulIdentifier","src":"14094:9:125"},{"kind":"number","nativeSrc":"14105:2:125","nodeType":"YulLiteral","src":"14105:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14090:3:125","nodeType":"YulIdentifier","src":"14090:3:125"},"nativeSrc":"14090:18:125","nodeType":"YulFunctionCall","src":"14090:18:125"},"variableNames":[{"name":"tail","nativeSrc":"14082:4:125","nodeType":"YulIdentifier","src":"14082:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_163fbe38f6e79bbafe8ef1c6ecbcd609e161120dfcf32c1dc0ae2ace28e56cf8__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"13772:342:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13923:9:125","nodeType":"YulTypedName","src":"13923:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13937:4:125","nodeType":"YulTypedName","src":"13937:4:125","type":""}],"src":"13772:342:125"},{"body":{"nativeSrc":"14293:164:125","nodeType":"YulBlock","src":"14293:164:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14310:9:125","nodeType":"YulIdentifier","src":"14310:9:125"},{"kind":"number","nativeSrc":"14321:2:125","nodeType":"YulLiteral","src":"14321:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"14303:6:125","nodeType":"YulIdentifier","src":"14303:6:125"},"nativeSrc":"14303:21:125","nodeType":"YulFunctionCall","src":"14303:21:125"},"nativeSrc":"14303:21:125","nodeType":"YulExpressionStatement","src":"14303:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14344:9:125","nodeType":"YulIdentifier","src":"14344:9:125"},{"kind":"number","nativeSrc":"14355:2:125","nodeType":"YulLiteral","src":"14355:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14340:3:125","nodeType":"YulIdentifier","src":"14340:3:125"},"nativeSrc":"14340:18:125","nodeType":"YulFunctionCall","src":"14340:18:125"},{"kind":"number","nativeSrc":"14360:2:125","nodeType":"YulLiteral","src":"14360:2:125","type":"","value":"14"}],"functionName":{"name":"mstore","nativeSrc":"14333:6:125","nodeType":"YulIdentifier","src":"14333:6:125"},"nativeSrc":"14333:30:125","nodeType":"YulFunctionCall","src":"14333:30:125"},"nativeSrc":"14333:30:125","nodeType":"YulExpressionStatement","src":"14333:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14383:9:125","nodeType":"YulIdentifier","src":"14383:9:125"},{"kind":"number","nativeSrc":"14394:2:125","nodeType":"YulLiteral","src":"14394:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14379:3:125","nodeType":"YulIdentifier","src":"14379:3:125"},"nativeSrc":"14379:18:125","nodeType":"YulFunctionCall","src":"14379:18:125"},{"hexValue":"7374616b65206f766572666c6f77","kind":"string","nativeSrc":"14399:16:125","nodeType":"YulLiteral","src":"14399:16:125","type":"","value":"stake overflow"}],"functionName":{"name":"mstore","nativeSrc":"14372:6:125","nodeType":"YulIdentifier","src":"14372:6:125"},"nativeSrc":"14372:44:125","nodeType":"YulFunctionCall","src":"14372:44:125"},"nativeSrc":"14372:44:125","nodeType":"YulExpressionStatement","src":"14372:44:125"},{"nativeSrc":"14425:26:125","nodeType":"YulAssignment","src":"14425:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14437:9:125","nodeType":"YulIdentifier","src":"14437:9:125"},{"kind":"number","nativeSrc":"14448:2:125","nodeType":"YulLiteral","src":"14448:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14433:3:125","nodeType":"YulIdentifier","src":"14433:3:125"},"nativeSrc":"14433:18:125","nodeType":"YulFunctionCall","src":"14433:18:125"},"variableNames":[{"name":"tail","nativeSrc":"14425:4:125","nodeType":"YulIdentifier","src":"14425:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_6a64644aeeb545618f93fda0e8ccacb2c407cdffe2b26245fdfa446117fd12f8__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"14119:338:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14270:9:125","nodeType":"YulTypedName","src":"14270:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14284:4:125","nodeType":"YulTypedName","src":"14284:4:125","type":""}],"src":"14119:338:125"},{"body":{"nativeSrc":"14590:136:125","nodeType":"YulBlock","src":"14590:136:125","statements":[{"nativeSrc":"14600:26:125","nodeType":"YulAssignment","src":"14600:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14612:9:125","nodeType":"YulIdentifier","src":"14612:9:125"},{"kind":"number","nativeSrc":"14623:2:125","nodeType":"YulLiteral","src":"14623:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14608:3:125","nodeType":"YulIdentifier","src":"14608:3:125"},"nativeSrc":"14608:18:125","nodeType":"YulFunctionCall","src":"14608:18:125"},"variableNames":[{"name":"tail","nativeSrc":"14600:4:125","nodeType":"YulIdentifier","src":"14600:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14642:9:125","nodeType":"YulIdentifier","src":"14642:9:125"},{"name":"value0","nativeSrc":"14653:6:125","nodeType":"YulIdentifier","src":"14653:6:125"}],"functionName":{"name":"mstore","nativeSrc":"14635:6:125","nodeType":"YulIdentifier","src":"14635:6:125"},"nativeSrc":"14635:25:125","nodeType":"YulFunctionCall","src":"14635:25:125"},"nativeSrc":"14635:25:125","nodeType":"YulExpressionStatement","src":"14635:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14680:9:125","nodeType":"YulIdentifier","src":"14680:9:125"},{"kind":"number","nativeSrc":"14691:2:125","nodeType":"YulLiteral","src":"14691:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14676:3:125","nodeType":"YulIdentifier","src":"14676:3:125"},"nativeSrc":"14676:18:125","nodeType":"YulFunctionCall","src":"14676:18:125"},{"arguments":[{"name":"value1","nativeSrc":"14700:6:125","nodeType":"YulIdentifier","src":"14700:6:125"},{"kind":"number","nativeSrc":"14708:10:125","nodeType":"YulLiteral","src":"14708:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"14696:3:125","nodeType":"YulIdentifier","src":"14696:3:125"},"nativeSrc":"14696:23:125","nodeType":"YulFunctionCall","src":"14696:23:125"}],"functionName":{"name":"mstore","nativeSrc":"14669:6:125","nodeType":"YulIdentifier","src":"14669:6:125"},"nativeSrc":"14669:51:125","nodeType":"YulFunctionCall","src":"14669:51:125"},"nativeSrc":"14669:51:125","nodeType":"YulExpressionStatement","src":"14669:51:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint32__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"14462:264:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14551:9:125","nodeType":"YulTypedName","src":"14551:9:125","type":""},{"name":"value1","nativeSrc":"14562:6:125","nodeType":"YulTypedName","src":"14562:6:125","type":""},{"name":"value0","nativeSrc":"14570:6:125","nodeType":"YulTypedName","src":"14570:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14581:4:125","nodeType":"YulTypedName","src":"14581:4:125","type":""}],"src":"14462:264:125"},{"body":{"nativeSrc":"14778:88:125","nodeType":"YulBlock","src":"14778:88:125","statements":[{"body":{"nativeSrc":"14809:22:125","nodeType":"YulBlock","src":"14809:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"14811:16:125","nodeType":"YulIdentifier","src":"14811:16:125"},"nativeSrc":"14811:18:125","nodeType":"YulFunctionCall","src":"14811:18:125"},"nativeSrc":"14811:18:125","nodeType":"YulExpressionStatement","src":"14811:18:125"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"14794:5:125","nodeType":"YulIdentifier","src":"14794:5:125"},{"arguments":[{"kind":"number","nativeSrc":"14805:1:125","nodeType":"YulLiteral","src":"14805:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"14801:3:125","nodeType":"YulIdentifier","src":"14801:3:125"},"nativeSrc":"14801:6:125","nodeType":"YulFunctionCall","src":"14801:6:125"}],"functionName":{"name":"eq","nativeSrc":"14791:2:125","nodeType":"YulIdentifier","src":"14791:2:125"},"nativeSrc":"14791:17:125","nodeType":"YulFunctionCall","src":"14791:17:125"},"nativeSrc":"14788:43:125","nodeType":"YulIf","src":"14788:43:125"},{"nativeSrc":"14840:20:125","nodeType":"YulAssignment","src":"14840:20:125","value":{"arguments":[{"name":"value","nativeSrc":"14851:5:125","nodeType":"YulIdentifier","src":"14851:5:125"},{"kind":"number","nativeSrc":"14858:1:125","nodeType":"YulLiteral","src":"14858:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"14847:3:125","nodeType":"YulIdentifier","src":"14847:3:125"},"nativeSrc":"14847:13:125","nodeType":"YulFunctionCall","src":"14847:13:125"},"variableNames":[{"name":"ret","nativeSrc":"14840:3:125","nodeType":"YulIdentifier","src":"14840:3:125"}]}]},"name":"increment_t_uint256","nativeSrc":"14731:135:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"14760:5:125","nodeType":"YulTypedName","src":"14760:5:125","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"14770:3:125","nodeType":"YulTypedName","src":"14770:3:125","type":""}],"src":"14731:135:125"},{"body":{"nativeSrc":"15045:175:125","nodeType":"YulBlock","src":"15045:175:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15062:9:125","nodeType":"YulIdentifier","src":"15062:9:125"},{"kind":"number","nativeSrc":"15073:2:125","nodeType":"YulLiteral","src":"15073:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"15055:6:125","nodeType":"YulIdentifier","src":"15055:6:125"},"nativeSrc":"15055:21:125","nodeType":"YulFunctionCall","src":"15055:21:125"},"nativeSrc":"15055:21:125","nodeType":"YulExpressionStatement","src":"15055:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15096:9:125","nodeType":"YulIdentifier","src":"15096:9:125"},{"kind":"number","nativeSrc":"15107:2:125","nodeType":"YulLiteral","src":"15107:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15092:3:125","nodeType":"YulIdentifier","src":"15092:3:125"},"nativeSrc":"15092:18:125","nodeType":"YulFunctionCall","src":"15092:18:125"},{"kind":"number","nativeSrc":"15112:2:125","nodeType":"YulLiteral","src":"15112:2:125","type":"","value":"25"}],"functionName":{"name":"mstore","nativeSrc":"15085:6:125","nodeType":"YulIdentifier","src":"15085:6:125"},"nativeSrc":"15085:30:125","nodeType":"YulFunctionCall","src":"15085:30:125"},"nativeSrc":"15085:30:125","nodeType":"YulExpressionStatement","src":"15085:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15135:9:125","nodeType":"YulIdentifier","src":"15135:9:125"},{"kind":"number","nativeSrc":"15146:2:125","nodeType":"YulLiteral","src":"15146:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15131:3:125","nodeType":"YulIdentifier","src":"15131:3:125"},"nativeSrc":"15131:18:125","nodeType":"YulFunctionCall","src":"15131:18:125"},{"hexValue":"576974686472617720616d6f756e7420746f6f206c61726765","kind":"string","nativeSrc":"15151:27:125","nodeType":"YulLiteral","src":"15151:27:125","type":"","value":"Withdraw amount too large"}],"functionName":{"name":"mstore","nativeSrc":"15124:6:125","nodeType":"YulIdentifier","src":"15124:6:125"},"nativeSrc":"15124:55:125","nodeType":"YulFunctionCall","src":"15124:55:125"},"nativeSrc":"15124:55:125","nodeType":"YulExpressionStatement","src":"15124:55:125"},{"nativeSrc":"15188:26:125","nodeType":"YulAssignment","src":"15188:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"15200:9:125","nodeType":"YulIdentifier","src":"15200:9:125"},{"kind":"number","nativeSrc":"15211:2:125","nodeType":"YulLiteral","src":"15211:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15196:3:125","nodeType":"YulIdentifier","src":"15196:3:125"},"nativeSrc":"15196:18:125","nodeType":"YulFunctionCall","src":"15196:18:125"},"variableNames":[{"name":"tail","nativeSrc":"15188:4:125","nodeType":"YulIdentifier","src":"15188:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_0c1f958f466ebe53086ccef34937001c8a0d9f200320ab480bde36d46a3c6178__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"14871:349:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15022:9:125","nodeType":"YulTypedName","src":"15022:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15036:4:125","nodeType":"YulTypedName","src":"15036:4:125","type":""}],"src":"14871:349:125"},{"body":{"nativeSrc":"15274:79:125","nodeType":"YulBlock","src":"15274:79:125","statements":[{"nativeSrc":"15284:17:125","nodeType":"YulAssignment","src":"15284:17:125","value":{"arguments":[{"name":"x","nativeSrc":"15296:1:125","nodeType":"YulIdentifier","src":"15296:1:125"},{"name":"y","nativeSrc":"15299:1:125","nodeType":"YulIdentifier","src":"15299:1:125"}],"functionName":{"name":"sub","nativeSrc":"15292:3:125","nodeType":"YulIdentifier","src":"15292:3:125"},"nativeSrc":"15292:9:125","nodeType":"YulFunctionCall","src":"15292:9:125"},"variableNames":[{"name":"diff","nativeSrc":"15284:4:125","nodeType":"YulIdentifier","src":"15284:4:125"}]},{"body":{"nativeSrc":"15325:22:125","nodeType":"YulBlock","src":"15325:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"15327:16:125","nodeType":"YulIdentifier","src":"15327:16:125"},"nativeSrc":"15327:18:125","nodeType":"YulFunctionCall","src":"15327:18:125"},"nativeSrc":"15327:18:125","nodeType":"YulExpressionStatement","src":"15327:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"15316:4:125","nodeType":"YulIdentifier","src":"15316:4:125"},{"name":"x","nativeSrc":"15322:1:125","nodeType":"YulIdentifier","src":"15322:1:125"}],"functionName":{"name":"gt","nativeSrc":"15313:2:125","nodeType":"YulIdentifier","src":"15313:2:125"},"nativeSrc":"15313:11:125","nodeType":"YulFunctionCall","src":"15313:11:125"},"nativeSrc":"15310:37:125","nodeType":"YulIf","src":"15310:37:125"}]},"name":"checked_sub_t_uint256","nativeSrc":"15225:128:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"15256:1:125","nodeType":"YulTypedName","src":"15256:1:125","type":""},{"name":"y","nativeSrc":"15259:1:125","nodeType":"YulTypedName","src":"15259:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"15265:4:125","nodeType":"YulTypedName","src":"15265:4:125","type":""}],"src":"15225:128:125"},{"body":{"nativeSrc":"15495:145:125","nodeType":"YulBlock","src":"15495:145:125","statements":[{"nativeSrc":"15505:26:125","nodeType":"YulAssignment","src":"15505:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"15517:9:125","nodeType":"YulIdentifier","src":"15517:9:125"},{"kind":"number","nativeSrc":"15528:2:125","nodeType":"YulLiteral","src":"15528:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15513:3:125","nodeType":"YulIdentifier","src":"15513:3:125"},"nativeSrc":"15513:18:125","nodeType":"YulFunctionCall","src":"15513:18:125"},"variableNames":[{"name":"tail","nativeSrc":"15505:4:125","nodeType":"YulIdentifier","src":"15505:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15547:9:125","nodeType":"YulIdentifier","src":"15547:9:125"},{"arguments":[{"name":"value0","nativeSrc":"15562:6:125","nodeType":"YulIdentifier","src":"15562:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"15578:3:125","nodeType":"YulLiteral","src":"15578:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"15583:1:125","nodeType":"YulLiteral","src":"15583:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"15574:3:125","nodeType":"YulIdentifier","src":"15574:3:125"},"nativeSrc":"15574:11:125","nodeType":"YulFunctionCall","src":"15574:11:125"},{"kind":"number","nativeSrc":"15587:1:125","nodeType":"YulLiteral","src":"15587:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"15570:3:125","nodeType":"YulIdentifier","src":"15570:3:125"},"nativeSrc":"15570:19:125","nodeType":"YulFunctionCall","src":"15570:19:125"}],"functionName":{"name":"and","nativeSrc":"15558:3:125","nodeType":"YulIdentifier","src":"15558:3:125"},"nativeSrc":"15558:32:125","nodeType":"YulFunctionCall","src":"15558:32:125"}],"functionName":{"name":"mstore","nativeSrc":"15540:6:125","nodeType":"YulIdentifier","src":"15540:6:125"},"nativeSrc":"15540:51:125","nodeType":"YulFunctionCall","src":"15540:51:125"},"nativeSrc":"15540:51:125","nodeType":"YulExpressionStatement","src":"15540:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15611:9:125","nodeType":"YulIdentifier","src":"15611:9:125"},{"kind":"number","nativeSrc":"15622:2:125","nodeType":"YulLiteral","src":"15622:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15607:3:125","nodeType":"YulIdentifier","src":"15607:3:125"},"nativeSrc":"15607:18:125","nodeType":"YulFunctionCall","src":"15607:18:125"},{"name":"value1","nativeSrc":"15627:6:125","nodeType":"YulIdentifier","src":"15627:6:125"}],"functionName":{"name":"mstore","nativeSrc":"15600:6:125","nodeType":"YulIdentifier","src":"15600:6:125"},"nativeSrc":"15600:34:125","nodeType":"YulFunctionCall","src":"15600:34:125"},"nativeSrc":"15600:34:125","nodeType":"YulExpressionStatement","src":"15600:34:125"}]},"name":"abi_encode_tuple_t_address_payable_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"15358:282:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15456:9:125","nodeType":"YulTypedName","src":"15456:9:125","type":""},{"name":"value1","nativeSrc":"15467:6:125","nodeType":"YulTypedName","src":"15467:6:125","type":""},{"name":"value0","nativeSrc":"15475:6:125","nodeType":"YulTypedName","src":"15475:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15486:4:125","nodeType":"YulTypedName","src":"15486:4:125","type":""}],"src":"15358:282:125"},{"body":{"nativeSrc":"15836:14:125","nodeType":"YulBlock","src":"15836:14:125","statements":[{"nativeSrc":"15838:10:125","nodeType":"YulAssignment","src":"15838:10:125","value":{"name":"pos","nativeSrc":"15845:3:125","nodeType":"YulIdentifier","src":"15845:3:125"},"variableNames":[{"name":"end","nativeSrc":"15838:3:125","nodeType":"YulIdentifier","src":"15838:3:125"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"15645:205:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"15820:3:125","nodeType":"YulTypedName","src":"15820:3:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"15828:3:125","nodeType":"YulTypedName","src":"15828:3:125","type":""}],"src":"15645:205:125"},{"body":{"nativeSrc":"16029:168:125","nodeType":"YulBlock","src":"16029:168:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16046:9:125","nodeType":"YulIdentifier","src":"16046:9:125"},{"kind":"number","nativeSrc":"16057:2:125","nodeType":"YulLiteral","src":"16057:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"16039:6:125","nodeType":"YulIdentifier","src":"16039:6:125"},"nativeSrc":"16039:21:125","nodeType":"YulFunctionCall","src":"16039:21:125"},"nativeSrc":"16039:21:125","nodeType":"YulExpressionStatement","src":"16039:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16080:9:125","nodeType":"YulIdentifier","src":"16080:9:125"},{"kind":"number","nativeSrc":"16091:2:125","nodeType":"YulLiteral","src":"16091:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16076:3:125","nodeType":"YulIdentifier","src":"16076:3:125"},"nativeSrc":"16076:18:125","nodeType":"YulFunctionCall","src":"16076:18:125"},{"kind":"number","nativeSrc":"16096:2:125","nodeType":"YulLiteral","src":"16096:2:125","type":"","value":"18"}],"functionName":{"name":"mstore","nativeSrc":"16069:6:125","nodeType":"YulIdentifier","src":"16069:6:125"},"nativeSrc":"16069:30:125","nodeType":"YulFunctionCall","src":"16069:30:125"},"nativeSrc":"16069:30:125","nodeType":"YulExpressionStatement","src":"16069:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16119:9:125","nodeType":"YulIdentifier","src":"16119:9:125"},{"kind":"number","nativeSrc":"16130:2:125","nodeType":"YulLiteral","src":"16130:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16115:3:125","nodeType":"YulIdentifier","src":"16115:3:125"},"nativeSrc":"16115:18:125","nodeType":"YulFunctionCall","src":"16115:18:125"},{"hexValue":"6661696c656420746f207769746864726177","kind":"string","nativeSrc":"16135:20:125","nodeType":"YulLiteral","src":"16135:20:125","type":"","value":"failed to withdraw"}],"functionName":{"name":"mstore","nativeSrc":"16108:6:125","nodeType":"YulIdentifier","src":"16108:6:125"},"nativeSrc":"16108:48:125","nodeType":"YulFunctionCall","src":"16108:48:125"},"nativeSrc":"16108:48:125","nodeType":"YulExpressionStatement","src":"16108:48:125"},{"nativeSrc":"16165:26:125","nodeType":"YulAssignment","src":"16165:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"16177:9:125","nodeType":"YulIdentifier","src":"16177:9:125"},{"kind":"number","nativeSrc":"16188:2:125","nodeType":"YulLiteral","src":"16188:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16173:3:125","nodeType":"YulIdentifier","src":"16173:3:125"},"nativeSrc":"16173:18:125","nodeType":"YulFunctionCall","src":"16173:18:125"},"variableNames":[{"name":"tail","nativeSrc":"16165:4:125","nodeType":"YulIdentifier","src":"16165:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_a34ed1abbfa8a2aea109afd35a4e04f6c52ffb62d3a545e3e3e4f2d894ca1e41__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"15855:342:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16006:9:125","nodeType":"YulTypedName","src":"16006:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16020:4:125","nodeType":"YulTypedName","src":"16020:4:125","type":""}],"src":"15855:342:125"},{"body":{"nativeSrc":"16246:60:125","nodeType":"YulBlock","src":"16246:60:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"16263:3:125","nodeType":"YulIdentifier","src":"16263:3:125"},{"arguments":[{"name":"value","nativeSrc":"16272:5:125","nodeType":"YulIdentifier","src":"16272:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16287:3:125","nodeType":"YulLiteral","src":"16287:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"16292:1:125","nodeType":"YulLiteral","src":"16292:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16283:3:125","nodeType":"YulIdentifier","src":"16283:3:125"},"nativeSrc":"16283:11:125","nodeType":"YulFunctionCall","src":"16283:11:125"},{"kind":"number","nativeSrc":"16296:1:125","nodeType":"YulLiteral","src":"16296:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16279:3:125","nodeType":"YulIdentifier","src":"16279:3:125"},"nativeSrc":"16279:19:125","nodeType":"YulFunctionCall","src":"16279:19:125"}],"functionName":{"name":"and","nativeSrc":"16268:3:125","nodeType":"YulIdentifier","src":"16268:3:125"},"nativeSrc":"16268:31:125","nodeType":"YulFunctionCall","src":"16268:31:125"}],"functionName":{"name":"mstore","nativeSrc":"16256:6:125","nodeType":"YulIdentifier","src":"16256:6:125"},"nativeSrc":"16256:44:125","nodeType":"YulFunctionCall","src":"16256:44:125"},"nativeSrc":"16256:44:125","nodeType":"YulExpressionStatement","src":"16256:44:125"}]},"name":"abi_encode_address","nativeSrc":"16202:104:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"16230:5:125","nodeType":"YulTypedName","src":"16230:5:125","type":""},{"name":"pos","nativeSrc":"16237:3:125","nodeType":"YulTypedName","src":"16237:3:125","type":""}],"src":"16202:104:125"},{"body":{"nativeSrc":"16468:188:125","nodeType":"YulBlock","src":"16468:188:125","statements":[{"nativeSrc":"16478:26:125","nodeType":"YulAssignment","src":"16478:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"16490:9:125","nodeType":"YulIdentifier","src":"16490:9:125"},{"kind":"number","nativeSrc":"16501:2:125","nodeType":"YulLiteral","src":"16501:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16486:3:125","nodeType":"YulIdentifier","src":"16486:3:125"},"nativeSrc":"16486:18:125","nodeType":"YulFunctionCall","src":"16486:18:125"},"variableNames":[{"name":"tail","nativeSrc":"16478:4:125","nodeType":"YulIdentifier","src":"16478:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16520:9:125","nodeType":"YulIdentifier","src":"16520:9:125"},{"name":"value0","nativeSrc":"16531:6:125","nodeType":"YulIdentifier","src":"16531:6:125"}],"functionName":{"name":"mstore","nativeSrc":"16513:6:125","nodeType":"YulIdentifier","src":"16513:6:125"},"nativeSrc":"16513:25:125","nodeType":"YulFunctionCall","src":"16513:25:125"},"nativeSrc":"16513:25:125","nodeType":"YulExpressionStatement","src":"16513:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16558:9:125","nodeType":"YulIdentifier","src":"16558:9:125"},{"kind":"number","nativeSrc":"16569:2:125","nodeType":"YulLiteral","src":"16569:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16554:3:125","nodeType":"YulIdentifier","src":"16554:3:125"},"nativeSrc":"16554:18:125","nodeType":"YulFunctionCall","src":"16554:18:125"},{"arguments":[{"name":"value1","nativeSrc":"16578:6:125","nodeType":"YulIdentifier","src":"16578:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16594:3:125","nodeType":"YulLiteral","src":"16594:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"16599:1:125","nodeType":"YulLiteral","src":"16599:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16590:3:125","nodeType":"YulIdentifier","src":"16590:3:125"},"nativeSrc":"16590:11:125","nodeType":"YulFunctionCall","src":"16590:11:125"},{"kind":"number","nativeSrc":"16603:1:125","nodeType":"YulLiteral","src":"16603:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16586:3:125","nodeType":"YulIdentifier","src":"16586:3:125"},"nativeSrc":"16586:19:125","nodeType":"YulFunctionCall","src":"16586:19:125"}],"functionName":{"name":"and","nativeSrc":"16574:3:125","nodeType":"YulIdentifier","src":"16574:3:125"},"nativeSrc":"16574:32:125","nodeType":"YulFunctionCall","src":"16574:32:125"}],"functionName":{"name":"mstore","nativeSrc":"16547:6:125","nodeType":"YulIdentifier","src":"16547:6:125"},"nativeSrc":"16547:60:125","nodeType":"YulFunctionCall","src":"16547:60:125"},"nativeSrc":"16547:60:125","nodeType":"YulExpressionStatement","src":"16547:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16627:9:125","nodeType":"YulIdentifier","src":"16627:9:125"},{"kind":"number","nativeSrc":"16638:2:125","nodeType":"YulLiteral","src":"16638:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16623:3:125","nodeType":"YulIdentifier","src":"16623:3:125"},"nativeSrc":"16623:18:125","nodeType":"YulFunctionCall","src":"16623:18:125"},{"name":"value2","nativeSrc":"16643:6:125","nodeType":"YulIdentifier","src":"16643:6:125"}],"functionName":{"name":"mstore","nativeSrc":"16616:6:125","nodeType":"YulIdentifier","src":"16616:6:125"},"nativeSrc":"16616:34:125","nodeType":"YulFunctionCall","src":"16616:34:125"},"nativeSrc":"16616:34:125","nodeType":"YulExpressionStatement","src":"16616:34:125"}]},"name":"abi_encode_tuple_t_bytes32_t_address_t_uint256__to_t_bytes32_t_address_t_uint256__fromStack_reversed","nativeSrc":"16311:345:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16421:9:125","nodeType":"YulTypedName","src":"16421:9:125","type":""},{"name":"value2","nativeSrc":"16432:6:125","nodeType":"YulTypedName","src":"16432:6:125","type":""},{"name":"value1","nativeSrc":"16440:6:125","nodeType":"YulTypedName","src":"16440:6:125","type":""},{"name":"value0","nativeSrc":"16448:6:125","nodeType":"YulTypedName","src":"16448:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16459:4:125","nodeType":"YulTypedName","src":"16459:4:125","type":""}],"src":"16311:345:125"},{"body":{"nativeSrc":"16693:95:125","nodeType":"YulBlock","src":"16693:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16710:1:125","nodeType":"YulLiteral","src":"16710:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"16717:3:125","nodeType":"YulLiteral","src":"16717:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"16722:10:125","nodeType":"YulLiteral","src":"16722:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"16713:3:125","nodeType":"YulIdentifier","src":"16713:3:125"},"nativeSrc":"16713:20:125","nodeType":"YulFunctionCall","src":"16713:20:125"}],"functionName":{"name":"mstore","nativeSrc":"16703:6:125","nodeType":"YulIdentifier","src":"16703:6:125"},"nativeSrc":"16703:31:125","nodeType":"YulFunctionCall","src":"16703:31:125"},"nativeSrc":"16703:31:125","nodeType":"YulExpressionStatement","src":"16703:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"16750:1:125","nodeType":"YulLiteral","src":"16750:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"16753:4:125","nodeType":"YulLiteral","src":"16753:4:125","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"16743:6:125","nodeType":"YulIdentifier","src":"16743:6:125"},"nativeSrc":"16743:15:125","nodeType":"YulFunctionCall","src":"16743:15:125"},"nativeSrc":"16743:15:125","nodeType":"YulExpressionStatement","src":"16743:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"16774:1:125","nodeType":"YulLiteral","src":"16774:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"16777:4:125","nodeType":"YulLiteral","src":"16777:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"16767:6:125","nodeType":"YulIdentifier","src":"16767:6:125"},"nativeSrc":"16767:15:125","nodeType":"YulFunctionCall","src":"16767:15:125"},"nativeSrc":"16767:15:125","nodeType":"YulExpressionStatement","src":"16767:15:125"}]},"name":"panic_error_0x32","nativeSrc":"16661:127:125","nodeType":"YulFunctionDefinition","src":"16661:127:125"},{"body":{"nativeSrc":"16907:223:125","nodeType":"YulBlock","src":"16907:223:125","statements":[{"nativeSrc":"16917:51:125","nodeType":"YulVariableDeclaration","src":"16917:51:125","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"16956:11:125","nodeType":"YulIdentifier","src":"16956:11:125"}],"functionName":{"name":"calldataload","nativeSrc":"16943:12:125","nodeType":"YulIdentifier","src":"16943:12:125"},"nativeSrc":"16943:25:125","nodeType":"YulFunctionCall","src":"16943:25:125"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"16921:18:125","nodeType":"YulTypedName","src":"16921:18:125","type":""}]},{"body":{"nativeSrc":"17058:16:125","nodeType":"YulBlock","src":"17058:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17067:1:125","nodeType":"YulLiteral","src":"17067:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"17070:1:125","nodeType":"YulLiteral","src":"17070:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17060:6:125","nodeType":"YulIdentifier","src":"17060:6:125"},"nativeSrc":"17060:12:125","nodeType":"YulFunctionCall","src":"17060:12:125"},"nativeSrc":"17060:12:125","nodeType":"YulExpressionStatement","src":"17060:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"16991:18:125","nodeType":"YulIdentifier","src":"16991:18:125"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"17019:12:125","nodeType":"YulIdentifier","src":"17019:12:125"},"nativeSrc":"17019:14:125","nodeType":"YulFunctionCall","src":"17019:14:125"},{"name":"base_ref","nativeSrc":"17035:8:125","nodeType":"YulIdentifier","src":"17035:8:125"}],"functionName":{"name":"sub","nativeSrc":"17015:3:125","nodeType":"YulIdentifier","src":"17015:3:125"},"nativeSrc":"17015:29:125","nodeType":"YulFunctionCall","src":"17015:29:125"},{"arguments":[{"kind":"number","nativeSrc":"17050:3:125","nodeType":"YulLiteral","src":"17050:3:125","type":"","value":"286"}],"functionName":{"name":"not","nativeSrc":"17046:3:125","nodeType":"YulIdentifier","src":"17046:3:125"},"nativeSrc":"17046:8:125","nodeType":"YulFunctionCall","src":"17046:8:125"}],"functionName":{"name":"add","nativeSrc":"17011:3:125","nodeType":"YulIdentifier","src":"17011:3:125"},"nativeSrc":"17011:44:125","nodeType":"YulFunctionCall","src":"17011:44:125"}],"functionName":{"name":"slt","nativeSrc":"16987:3:125","nodeType":"YulIdentifier","src":"16987:3:125"},"nativeSrc":"16987:69:125","nodeType":"YulFunctionCall","src":"16987:69:125"}],"functionName":{"name":"iszero","nativeSrc":"16980:6:125","nodeType":"YulIdentifier","src":"16980:6:125"},"nativeSrc":"16980:77:125","nodeType":"YulFunctionCall","src":"16980:77:125"},"nativeSrc":"16977:97:125","nodeType":"YulIf","src":"16977:97:125"},{"nativeSrc":"17083:41:125","nodeType":"YulAssignment","src":"17083:41:125","value":{"arguments":[{"name":"base_ref","nativeSrc":"17095:8:125","nodeType":"YulIdentifier","src":"17095:8:125"},{"name":"rel_offset_of_tail","nativeSrc":"17105:18:125","nodeType":"YulIdentifier","src":"17105:18:125"}],"functionName":{"name":"add","nativeSrc":"17091:3:125","nodeType":"YulIdentifier","src":"17091:3:125"},"nativeSrc":"17091:33:125","nodeType":"YulFunctionCall","src":"17091:33:125"},"variableNames":[{"name":"addr","nativeSrc":"17083:4:125","nodeType":"YulIdentifier","src":"17083:4:125"}]}]},"name":"access_calldata_tail_t_struct$_PackedUserOperation_$3748_calldata_ptr","nativeSrc":"16793:337:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"16872:8:125","nodeType":"YulTypedName","src":"16872:8:125","type":""},{"name":"ptr_to_tail","nativeSrc":"16882:11:125","nodeType":"YulTypedName","src":"16882:11:125","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"16898:4:125","nodeType":"YulTypedName","src":"16898:4:125","type":""}],"src":"16793:337:125"},{"body":{"nativeSrc":"17282:124:125","nodeType":"YulBlock","src":"17282:124:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"17305:3:125","nodeType":"YulIdentifier","src":"17305:3:125"},{"name":"value0","nativeSrc":"17310:6:125","nodeType":"YulIdentifier","src":"17310:6:125"},{"name":"value1","nativeSrc":"17318:6:125","nodeType":"YulIdentifier","src":"17318:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"17292:12:125","nodeType":"YulIdentifier","src":"17292:12:125"},"nativeSrc":"17292:33:125","nodeType":"YulFunctionCall","src":"17292:33:125"},"nativeSrc":"17292:33:125","nodeType":"YulExpressionStatement","src":"17292:33:125"},{"nativeSrc":"17334:26:125","nodeType":"YulVariableDeclaration","src":"17334:26:125","value":{"arguments":[{"name":"pos","nativeSrc":"17348:3:125","nodeType":"YulIdentifier","src":"17348:3:125"},{"name":"value1","nativeSrc":"17353:6:125","nodeType":"YulIdentifier","src":"17353:6:125"}],"functionName":{"name":"add","nativeSrc":"17344:3:125","nodeType":"YulIdentifier","src":"17344:3:125"},"nativeSrc":"17344:16:125","nodeType":"YulFunctionCall","src":"17344:16:125"},"variables":[{"name":"_1","nativeSrc":"17338:2:125","nodeType":"YulTypedName","src":"17338:2:125","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"17376:2:125","nodeType":"YulIdentifier","src":"17376:2:125"},{"kind":"number","nativeSrc":"17380:1:125","nodeType":"YulLiteral","src":"17380:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"17369:6:125","nodeType":"YulIdentifier","src":"17369:6:125"},"nativeSrc":"17369:13:125","nodeType":"YulFunctionCall","src":"17369:13:125"},"nativeSrc":"17369:13:125","nodeType":"YulExpressionStatement","src":"17369:13:125"},{"nativeSrc":"17391:9:125","nodeType":"YulAssignment","src":"17391:9:125","value":{"name":"_1","nativeSrc":"17398:2:125","nodeType":"YulIdentifier","src":"17398:2:125"},"variableNames":[{"name":"end","nativeSrc":"17391:3:125","nodeType":"YulIdentifier","src":"17391:3:125"}]}]},"name":"abi_encode_tuple_packed_t_bytes_calldata_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"17135:271:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"17250:3:125","nodeType":"YulTypedName","src":"17250:3:125","type":""},{"name":"value1","nativeSrc":"17255:6:125","nodeType":"YulTypedName","src":"17255:6:125","type":""},{"name":"value0","nativeSrc":"17263:6:125","nodeType":"YulTypedName","src":"17263:6:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"17274:3:125","nodeType":"YulTypedName","src":"17274:3:125","type":""}],"src":"17135:271:125"},{"body":{"nativeSrc":"17552:157:125","nodeType":"YulBlock","src":"17552:157:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17569:9:125","nodeType":"YulIdentifier","src":"17569:9:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"17594:6:125","nodeType":"YulIdentifier","src":"17594:6:125"}],"functionName":{"name":"iszero","nativeSrc":"17587:6:125","nodeType":"YulIdentifier","src":"17587:6:125"},"nativeSrc":"17587:14:125","nodeType":"YulFunctionCall","src":"17587:14:125"}],"functionName":{"name":"iszero","nativeSrc":"17580:6:125","nodeType":"YulIdentifier","src":"17580:6:125"},"nativeSrc":"17580:22:125","nodeType":"YulFunctionCall","src":"17580:22:125"}],"functionName":{"name":"mstore","nativeSrc":"17562:6:125","nodeType":"YulIdentifier","src":"17562:6:125"},"nativeSrc":"17562:41:125","nodeType":"YulFunctionCall","src":"17562:41:125"},"nativeSrc":"17562:41:125","nodeType":"YulExpressionStatement","src":"17562:41:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17623:9:125","nodeType":"YulIdentifier","src":"17623:9:125"},{"kind":"number","nativeSrc":"17634:2:125","nodeType":"YulLiteral","src":"17634:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17619:3:125","nodeType":"YulIdentifier","src":"17619:3:125"},"nativeSrc":"17619:18:125","nodeType":"YulFunctionCall","src":"17619:18:125"},{"kind":"number","nativeSrc":"17639:2:125","nodeType":"YulLiteral","src":"17639:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"17612:6:125","nodeType":"YulIdentifier","src":"17612:6:125"},"nativeSrc":"17612:30:125","nodeType":"YulFunctionCall","src":"17612:30:125"},"nativeSrc":"17612:30:125","nodeType":"YulExpressionStatement","src":"17612:30:125"},{"nativeSrc":"17651:52:125","nodeType":"YulAssignment","src":"17651:52:125","value":{"arguments":[{"name":"value1","nativeSrc":"17676:6:125","nodeType":"YulIdentifier","src":"17676:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"17688:9:125","nodeType":"YulIdentifier","src":"17688:9:125"},{"kind":"number","nativeSrc":"17699:2:125","nodeType":"YulLiteral","src":"17699:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17684:3:125","nodeType":"YulIdentifier","src":"17684:3:125"},"nativeSrc":"17684:18:125","nodeType":"YulFunctionCall","src":"17684:18:125"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"17659:16:125","nodeType":"YulIdentifier","src":"17659:16:125"},"nativeSrc":"17659:44:125","nodeType":"YulFunctionCall","src":"17659:44:125"},"variableNames":[{"name":"tail","nativeSrc":"17651:4:125","nodeType":"YulIdentifier","src":"17651:4:125"}]}]},"name":"abi_encode_tuple_t_bool_t_bytes_memory_ptr__to_t_bool_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"17411:298:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17513:9:125","nodeType":"YulTypedName","src":"17513:9:125","type":""},{"name":"value1","nativeSrc":"17524:6:125","nodeType":"YulTypedName","src":"17524:6:125","type":""},{"name":"value0","nativeSrc":"17532:6:125","nodeType":"YulTypedName","src":"17532:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17543:4:125","nodeType":"YulTypedName","src":"17543:4:125","type":""}],"src":"17411:298:125"},{"body":{"nativeSrc":"17780:200:125","nodeType":"YulBlock","src":"17780:200:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"17797:3:125","nodeType":"YulIdentifier","src":"17797:3:125"},{"name":"length","nativeSrc":"17802:6:125","nodeType":"YulIdentifier","src":"17802:6:125"}],"functionName":{"name":"mstore","nativeSrc":"17790:6:125","nodeType":"YulIdentifier","src":"17790:6:125"},"nativeSrc":"17790:19:125","nodeType":"YulFunctionCall","src":"17790:19:125"},"nativeSrc":"17790:19:125","nodeType":"YulExpressionStatement","src":"17790:19:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"17835:3:125","nodeType":"YulIdentifier","src":"17835:3:125"},{"kind":"number","nativeSrc":"17840:4:125","nodeType":"YulLiteral","src":"17840:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"17831:3:125","nodeType":"YulIdentifier","src":"17831:3:125"},"nativeSrc":"17831:14:125","nodeType":"YulFunctionCall","src":"17831:14:125"},{"name":"start","nativeSrc":"17847:5:125","nodeType":"YulIdentifier","src":"17847:5:125"},{"name":"length","nativeSrc":"17854:6:125","nodeType":"YulIdentifier","src":"17854:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"17818:12:125","nodeType":"YulIdentifier","src":"17818:12:125"},"nativeSrc":"17818:43:125","nodeType":"YulFunctionCall","src":"17818:43:125"},"nativeSrc":"17818:43:125","nodeType":"YulExpressionStatement","src":"17818:43:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"17885:3:125","nodeType":"YulIdentifier","src":"17885:3:125"},{"name":"length","nativeSrc":"17890:6:125","nodeType":"YulIdentifier","src":"17890:6:125"}],"functionName":{"name":"add","nativeSrc":"17881:3:125","nodeType":"YulIdentifier","src":"17881:3:125"},"nativeSrc":"17881:16:125","nodeType":"YulFunctionCall","src":"17881:16:125"},{"kind":"number","nativeSrc":"17899:4:125","nodeType":"YulLiteral","src":"17899:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"17877:3:125","nodeType":"YulIdentifier","src":"17877:3:125"},"nativeSrc":"17877:27:125","nodeType":"YulFunctionCall","src":"17877:27:125"},{"kind":"number","nativeSrc":"17906:1:125","nodeType":"YulLiteral","src":"17906:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"17870:6:125","nodeType":"YulIdentifier","src":"17870:6:125"},"nativeSrc":"17870:38:125","nodeType":"YulFunctionCall","src":"17870:38:125"},"nativeSrc":"17870:38:125","nodeType":"YulExpressionStatement","src":"17870:38:125"},{"nativeSrc":"17917:57:125","nodeType":"YulAssignment","src":"17917:57:125","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"17932:3:125","nodeType":"YulIdentifier","src":"17932:3:125"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"17945:6:125","nodeType":"YulIdentifier","src":"17945:6:125"},{"kind":"number","nativeSrc":"17953:2:125","nodeType":"YulLiteral","src":"17953:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"17941:3:125","nodeType":"YulIdentifier","src":"17941:3:125"},"nativeSrc":"17941:15:125","nodeType":"YulFunctionCall","src":"17941:15:125"},{"arguments":[{"kind":"number","nativeSrc":"17962:2:125","nodeType":"YulLiteral","src":"17962:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"17958:3:125","nodeType":"YulIdentifier","src":"17958:3:125"},"nativeSrc":"17958:7:125","nodeType":"YulFunctionCall","src":"17958:7:125"}],"functionName":{"name":"and","nativeSrc":"17937:3:125","nodeType":"YulIdentifier","src":"17937:3:125"},"nativeSrc":"17937:29:125","nodeType":"YulFunctionCall","src":"17937:29:125"}],"functionName":{"name":"add","nativeSrc":"17928:3:125","nodeType":"YulIdentifier","src":"17928:3:125"},"nativeSrc":"17928:39:125","nodeType":"YulFunctionCall","src":"17928:39:125"},{"kind":"number","nativeSrc":"17969:4:125","nodeType":"YulLiteral","src":"17969:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"17924:3:125","nodeType":"YulIdentifier","src":"17924:3:125"},"nativeSrc":"17924:50:125","nodeType":"YulFunctionCall","src":"17924:50:125"},"variableNames":[{"name":"end","nativeSrc":"17917:3:125","nodeType":"YulIdentifier","src":"17917:3:125"}]}]},"name":"abi_encode_bytes_calldata","nativeSrc":"17714:266:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nativeSrc":"17749:5:125","nodeType":"YulTypedName","src":"17749:5:125","type":""},{"name":"length","nativeSrc":"17756:6:125","nodeType":"YulTypedName","src":"17756:6:125","type":""},{"name":"pos","nativeSrc":"17764:3:125","nodeType":"YulTypedName","src":"17764:3:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"17772:3:125","nodeType":"YulTypedName","src":"17772:3:125","type":""}],"src":"17714:266:125"},{"body":{"nativeSrc":"18114:115:125","nodeType":"YulBlock","src":"18114:115:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18131:9:125","nodeType":"YulIdentifier","src":"18131:9:125"},{"kind":"number","nativeSrc":"18142:2:125","nodeType":"YulLiteral","src":"18142:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"18124:6:125","nodeType":"YulIdentifier","src":"18124:6:125"},"nativeSrc":"18124:21:125","nodeType":"YulFunctionCall","src":"18124:21:125"},"nativeSrc":"18124:21:125","nodeType":"YulExpressionStatement","src":"18124:21:125"},{"nativeSrc":"18154:69:125","nodeType":"YulAssignment","src":"18154:69:125","value":{"arguments":[{"name":"value0","nativeSrc":"18188:6:125","nodeType":"YulIdentifier","src":"18188:6:125"},{"name":"value1","nativeSrc":"18196:6:125","nodeType":"YulIdentifier","src":"18196:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"18208:9:125","nodeType":"YulIdentifier","src":"18208:9:125"},{"kind":"number","nativeSrc":"18219:2:125","nodeType":"YulLiteral","src":"18219:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18204:3:125","nodeType":"YulIdentifier","src":"18204:3:125"},"nativeSrc":"18204:18:125","nodeType":"YulFunctionCall","src":"18204:18:125"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"18162:25:125","nodeType":"YulIdentifier","src":"18162:25:125"},"nativeSrc":"18162:61:125","nodeType":"YulFunctionCall","src":"18162:61:125"},"variableNames":[{"name":"tail","nativeSrc":"18154:4:125","nodeType":"YulIdentifier","src":"18154:4:125"}]}]},"name":"abi_encode_tuple_t_bytes_calldata_ptr__to_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"17985:244:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18075:9:125","nodeType":"YulTypedName","src":"18075:9:125","type":""},{"name":"value1","nativeSrc":"18086:6:125","nodeType":"YulTypedName","src":"18086:6:125","type":""},{"name":"value0","nativeSrc":"18094:6:125","nodeType":"YulTypedName","src":"18094:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18105:4:125","nodeType":"YulTypedName","src":"18105:4:125","type":""}],"src":"17985:244:125"},{"body":{"nativeSrc":"18315:170:125","nodeType":"YulBlock","src":"18315:170:125","statements":[{"body":{"nativeSrc":"18361:16:125","nodeType":"YulBlock","src":"18361:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18370:1:125","nodeType":"YulLiteral","src":"18370:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"18373:1:125","nodeType":"YulLiteral","src":"18373:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18363:6:125","nodeType":"YulIdentifier","src":"18363:6:125"},"nativeSrc":"18363:12:125","nodeType":"YulFunctionCall","src":"18363:12:125"},"nativeSrc":"18363:12:125","nodeType":"YulExpressionStatement","src":"18363:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18336:7:125","nodeType":"YulIdentifier","src":"18336:7:125"},{"name":"headStart","nativeSrc":"18345:9:125","nodeType":"YulIdentifier","src":"18345:9:125"}],"functionName":{"name":"sub","nativeSrc":"18332:3:125","nodeType":"YulIdentifier","src":"18332:3:125"},"nativeSrc":"18332:23:125","nodeType":"YulFunctionCall","src":"18332:23:125"},{"kind":"number","nativeSrc":"18357:2:125","nodeType":"YulLiteral","src":"18357:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"18328:3:125","nodeType":"YulIdentifier","src":"18328:3:125"},"nativeSrc":"18328:32:125","nodeType":"YulFunctionCall","src":"18328:32:125"},"nativeSrc":"18325:52:125","nodeType":"YulIf","src":"18325:52:125"},{"nativeSrc":"18386:29:125","nodeType":"YulVariableDeclaration","src":"18386:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18405:9:125","nodeType":"YulIdentifier","src":"18405:9:125"}],"functionName":{"name":"mload","nativeSrc":"18399:5:125","nodeType":"YulIdentifier","src":"18399:5:125"},"nativeSrc":"18399:16:125","nodeType":"YulFunctionCall","src":"18399:16:125"},"variables":[{"name":"value","nativeSrc":"18390:5:125","nodeType":"YulTypedName","src":"18390:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"18449:5:125","nodeType":"YulIdentifier","src":"18449:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"18424:24:125","nodeType":"YulIdentifier","src":"18424:24:125"},"nativeSrc":"18424:31:125","nodeType":"YulFunctionCall","src":"18424:31:125"},"nativeSrc":"18424:31:125","nodeType":"YulExpressionStatement","src":"18424:31:125"},{"nativeSrc":"18464:15:125","nodeType":"YulAssignment","src":"18464:15:125","value":{"name":"value","nativeSrc":"18474:5:125","nodeType":"YulIdentifier","src":"18474:5:125"},"variableNames":[{"name":"value0","nativeSrc":"18464:6:125","nodeType":"YulIdentifier","src":"18464:6:125"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"18234:251:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18281:9:125","nodeType":"YulTypedName","src":"18281:9:125","type":""},{"name":"dataEnd","nativeSrc":"18292:7:125","nodeType":"YulTypedName","src":"18292:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18304:6:125","nodeType":"YulTypedName","src":"18304:6:125","type":""}],"src":"18234:251:125"},{"body":{"nativeSrc":"18591:102:125","nodeType":"YulBlock","src":"18591:102:125","statements":[{"nativeSrc":"18601:26:125","nodeType":"YulAssignment","src":"18601:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18613:9:125","nodeType":"YulIdentifier","src":"18613:9:125"},{"kind":"number","nativeSrc":"18624:2:125","nodeType":"YulLiteral","src":"18624:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18609:3:125","nodeType":"YulIdentifier","src":"18609:3:125"},"nativeSrc":"18609:18:125","nodeType":"YulFunctionCall","src":"18609:18:125"},"variableNames":[{"name":"tail","nativeSrc":"18601:4:125","nodeType":"YulIdentifier","src":"18601:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18643:9:125","nodeType":"YulIdentifier","src":"18643:9:125"},{"arguments":[{"name":"value0","nativeSrc":"18658:6:125","nodeType":"YulIdentifier","src":"18658:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18674:3:125","nodeType":"YulLiteral","src":"18674:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"18679:1:125","nodeType":"YulLiteral","src":"18679:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18670:3:125","nodeType":"YulIdentifier","src":"18670:3:125"},"nativeSrc":"18670:11:125","nodeType":"YulFunctionCall","src":"18670:11:125"},{"kind":"number","nativeSrc":"18683:1:125","nodeType":"YulLiteral","src":"18683:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18666:3:125","nodeType":"YulIdentifier","src":"18666:3:125"},"nativeSrc":"18666:19:125","nodeType":"YulFunctionCall","src":"18666:19:125"}],"functionName":{"name":"and","nativeSrc":"18654:3:125","nodeType":"YulIdentifier","src":"18654:3:125"},"nativeSrc":"18654:32:125","nodeType":"YulFunctionCall","src":"18654:32:125"}],"functionName":{"name":"mstore","nativeSrc":"18636:6:125","nodeType":"YulIdentifier","src":"18636:6:125"},"nativeSrc":"18636:51:125","nodeType":"YulFunctionCall","src":"18636:51:125"},"nativeSrc":"18636:51:125","nodeType":"YulExpressionStatement","src":"18636:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"18490:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18560:9:125","nodeType":"YulTypedName","src":"18560:9:125","type":""},{"name":"value0","nativeSrc":"18571:6:125","nodeType":"YulTypedName","src":"18571:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18582:4:125","nodeType":"YulTypedName","src":"18582:4:125","type":""}],"src":"18490:203:125"},{"body":{"nativeSrc":"18872:160:125","nodeType":"YulBlock","src":"18872:160:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18889:9:125","nodeType":"YulIdentifier","src":"18889:9:125"},{"kind":"number","nativeSrc":"18900:2:125","nodeType":"YulLiteral","src":"18900:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"18882:6:125","nodeType":"YulIdentifier","src":"18882:6:125"},"nativeSrc":"18882:21:125","nodeType":"YulFunctionCall","src":"18882:21:125"},"nativeSrc":"18882:21:125","nodeType":"YulExpressionStatement","src":"18882:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18923:9:125","nodeType":"YulIdentifier","src":"18923:9:125"},{"kind":"number","nativeSrc":"18934:2:125","nodeType":"YulLiteral","src":"18934:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18919:3:125","nodeType":"YulIdentifier","src":"18919:3:125"},"nativeSrc":"18919:18:125","nodeType":"YulFunctionCall","src":"18919:18:125"},{"kind":"number","nativeSrc":"18939:2:125","nodeType":"YulLiteral","src":"18939:2:125","type":"","value":"10"}],"functionName":{"name":"mstore","nativeSrc":"18912:6:125","nodeType":"YulIdentifier","src":"18912:6:125"},"nativeSrc":"18912:30:125","nodeType":"YulFunctionCall","src":"18912:30:125"},"nativeSrc":"18912:30:125","nodeType":"YulExpressionStatement","src":"18912:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18962:9:125","nodeType":"YulIdentifier","src":"18962:9:125"},{"kind":"number","nativeSrc":"18973:2:125","nodeType":"YulLiteral","src":"18973:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18958:3:125","nodeType":"YulIdentifier","src":"18958:3:125"},"nativeSrc":"18958:18:125","nodeType":"YulFunctionCall","src":"18958:18:125"},{"hexValue":"6e6f74207374616b6564","kind":"string","nativeSrc":"18978:12:125","nodeType":"YulLiteral","src":"18978:12:125","type":"","value":"not staked"}],"functionName":{"name":"mstore","nativeSrc":"18951:6:125","nodeType":"YulIdentifier","src":"18951:6:125"},"nativeSrc":"18951:40:125","nodeType":"YulFunctionCall","src":"18951:40:125"},"nativeSrc":"18951:40:125","nodeType":"YulExpressionStatement","src":"18951:40:125"},{"nativeSrc":"19000:26:125","nodeType":"YulAssignment","src":"19000:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"19012:9:125","nodeType":"YulIdentifier","src":"19012:9:125"},{"kind":"number","nativeSrc":"19023:2:125","nodeType":"YulLiteral","src":"19023:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"19008:3:125","nodeType":"YulIdentifier","src":"19008:3:125"},"nativeSrc":"19008:18:125","nodeType":"YulFunctionCall","src":"19008:18:125"},"variableNames":[{"name":"tail","nativeSrc":"19000:4:125","nodeType":"YulIdentifier","src":"19000:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_8d1fe892c4e34e50852d9473d3c9854eedeef3b324fbe99dc34a39c1c505db12__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"18698:334:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18849:9:125","nodeType":"YulTypedName","src":"18849:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18863:4:125","nodeType":"YulTypedName","src":"18863:4:125","type":""}],"src":"18698:334:125"},{"body":{"nativeSrc":"19211:167:125","nodeType":"YulBlock","src":"19211:167:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19228:9:125","nodeType":"YulIdentifier","src":"19228:9:125"},{"kind":"number","nativeSrc":"19239:2:125","nodeType":"YulLiteral","src":"19239:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"19221:6:125","nodeType":"YulIdentifier","src":"19221:6:125"},"nativeSrc":"19221:21:125","nodeType":"YulFunctionCall","src":"19221:21:125"},"nativeSrc":"19221:21:125","nodeType":"YulExpressionStatement","src":"19221:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19262:9:125","nodeType":"YulIdentifier","src":"19262:9:125"},{"kind":"number","nativeSrc":"19273:2:125","nodeType":"YulLiteral","src":"19273:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19258:3:125","nodeType":"YulIdentifier","src":"19258:3:125"},"nativeSrc":"19258:18:125","nodeType":"YulFunctionCall","src":"19258:18:125"},{"kind":"number","nativeSrc":"19278:2:125","nodeType":"YulLiteral","src":"19278:2:125","type":"","value":"17"}],"functionName":{"name":"mstore","nativeSrc":"19251:6:125","nodeType":"YulIdentifier","src":"19251:6:125"},"nativeSrc":"19251:30:125","nodeType":"YulFunctionCall","src":"19251:30:125"},"nativeSrc":"19251:30:125","nodeType":"YulExpressionStatement","src":"19251:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19301:9:125","nodeType":"YulIdentifier","src":"19301:9:125"},{"kind":"number","nativeSrc":"19312:2:125","nodeType":"YulLiteral","src":"19312:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19297:3:125","nodeType":"YulIdentifier","src":"19297:3:125"},"nativeSrc":"19297:18:125","nodeType":"YulFunctionCall","src":"19297:18:125"},{"hexValue":"616c726561647920756e7374616b696e67","kind":"string","nativeSrc":"19317:19:125","nodeType":"YulLiteral","src":"19317:19:125","type":"","value":"already unstaking"}],"functionName":{"name":"mstore","nativeSrc":"19290:6:125","nodeType":"YulIdentifier","src":"19290:6:125"},"nativeSrc":"19290:47:125","nodeType":"YulFunctionCall","src":"19290:47:125"},"nativeSrc":"19290:47:125","nodeType":"YulExpressionStatement","src":"19290:47:125"},{"nativeSrc":"19346:26:125","nodeType":"YulAssignment","src":"19346:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"19358:9:125","nodeType":"YulIdentifier","src":"19358:9:125"},{"kind":"number","nativeSrc":"19369:2:125","nodeType":"YulLiteral","src":"19369:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"19354:3:125","nodeType":"YulIdentifier","src":"19354:3:125"},"nativeSrc":"19354:18:125","nodeType":"YulFunctionCall","src":"19354:18:125"},"variableNames":[{"name":"tail","nativeSrc":"19346:4:125","nodeType":"YulIdentifier","src":"19346:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_eabab2b938baa7d6708bc792cd1d2d9d9bd3627968a46b23824d4b6af2b0f7a8__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"19037:341:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19188:9:125","nodeType":"YulTypedName","src":"19188:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19202:4:125","nodeType":"YulTypedName","src":"19202:4:125","type":""}],"src":"19037:341:125"},{"body":{"nativeSrc":"19430:132:125","nodeType":"YulBlock","src":"19430:132:125","statements":[{"nativeSrc":"19440:58:125","nodeType":"YulAssignment","src":"19440:58:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"19455:1:125","nodeType":"YulIdentifier","src":"19455:1:125"},{"kind":"number","nativeSrc":"19458:14:125","nodeType":"YulLiteral","src":"19458:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19451:3:125","nodeType":"YulIdentifier","src":"19451:3:125"},"nativeSrc":"19451:22:125","nodeType":"YulFunctionCall","src":"19451:22:125"},{"arguments":[{"name":"y","nativeSrc":"19479:1:125","nodeType":"YulIdentifier","src":"19479:1:125"},{"kind":"number","nativeSrc":"19482:14:125","nodeType":"YulLiteral","src":"19482:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19475:3:125","nodeType":"YulIdentifier","src":"19475:3:125"},"nativeSrc":"19475:22:125","nodeType":"YulFunctionCall","src":"19475:22:125"}],"functionName":{"name":"add","nativeSrc":"19447:3:125","nodeType":"YulIdentifier","src":"19447:3:125"},"nativeSrc":"19447:51:125","nodeType":"YulFunctionCall","src":"19447:51:125"},"variableNames":[{"name":"sum","nativeSrc":"19440:3:125","nodeType":"YulIdentifier","src":"19440:3:125"}]},{"body":{"nativeSrc":"19534:22:125","nodeType":"YulBlock","src":"19534:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"19536:16:125","nodeType":"YulIdentifier","src":"19536:16:125"},"nativeSrc":"19536:18:125","nodeType":"YulFunctionCall","src":"19536:18:125"},"nativeSrc":"19536:18:125","nodeType":"YulExpressionStatement","src":"19536:18:125"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"19513:3:125","nodeType":"YulIdentifier","src":"19513:3:125"},{"kind":"number","nativeSrc":"19518:14:125","nodeType":"YulLiteral","src":"19518:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"19510:2:125","nodeType":"YulIdentifier","src":"19510:2:125"},"nativeSrc":"19510:23:125","nodeType":"YulFunctionCall","src":"19510:23:125"},"nativeSrc":"19507:49:125","nodeType":"YulIf","src":"19507:49:125"}]},"name":"checked_add_t_uint48","nativeSrc":"19383:179:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"19413:1:125","nodeType":"YulTypedName","src":"19413:1:125","type":""},{"name":"y","nativeSrc":"19416:1:125","nodeType":"YulTypedName","src":"19416:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"19422:3:125","nodeType":"YulTypedName","src":"19422:3:125","type":""}],"src":"19383:179:125"},{"body":{"nativeSrc":"19667:97:125","nodeType":"YulBlock","src":"19667:97:125","statements":[{"nativeSrc":"19677:26:125","nodeType":"YulAssignment","src":"19677:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"19689:9:125","nodeType":"YulIdentifier","src":"19689:9:125"},{"kind":"number","nativeSrc":"19700:2:125","nodeType":"YulLiteral","src":"19700:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19685:3:125","nodeType":"YulIdentifier","src":"19685:3:125"},"nativeSrc":"19685:18:125","nodeType":"YulFunctionCall","src":"19685:18:125"},"variableNames":[{"name":"tail","nativeSrc":"19677:4:125","nodeType":"YulIdentifier","src":"19677:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19719:9:125","nodeType":"YulIdentifier","src":"19719:9:125"},{"arguments":[{"name":"value0","nativeSrc":"19734:6:125","nodeType":"YulIdentifier","src":"19734:6:125"},{"kind":"number","nativeSrc":"19742:14:125","nodeType":"YulLiteral","src":"19742:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19730:3:125","nodeType":"YulIdentifier","src":"19730:3:125"},"nativeSrc":"19730:27:125","nodeType":"YulFunctionCall","src":"19730:27:125"}],"functionName":{"name":"mstore","nativeSrc":"19712:6:125","nodeType":"YulIdentifier","src":"19712:6:125"},"nativeSrc":"19712:46:125","nodeType":"YulFunctionCall","src":"19712:46:125"},"nativeSrc":"19712:46:125","nodeType":"YulExpressionStatement","src":"19712:46:125"}]},"name":"abi_encode_tuple_t_uint48__to_t_uint256__fromStack_reversed","nativeSrc":"19567:197:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19636:9:125","nodeType":"YulTypedName","src":"19636:9:125","type":""},{"name":"value0","nativeSrc":"19647:6:125","nodeType":"YulTypedName","src":"19647:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19658:4:125","nodeType":"YulTypedName","src":"19658:4:125","type":""}],"src":"19567:197:125"},{"body":{"nativeSrc":"19943:170:125","nodeType":"YulBlock","src":"19943:170:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19960:9:125","nodeType":"YulIdentifier","src":"19960:9:125"},{"kind":"number","nativeSrc":"19971:2:125","nodeType":"YulLiteral","src":"19971:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"19953:6:125","nodeType":"YulIdentifier","src":"19953:6:125"},"nativeSrc":"19953:21:125","nodeType":"YulFunctionCall","src":"19953:21:125"},"nativeSrc":"19953:21:125","nodeType":"YulExpressionStatement","src":"19953:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19994:9:125","nodeType":"YulIdentifier","src":"19994:9:125"},{"kind":"number","nativeSrc":"20005:2:125","nodeType":"YulLiteral","src":"20005:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19990:3:125","nodeType":"YulIdentifier","src":"19990:3:125"},"nativeSrc":"19990:18:125","nodeType":"YulFunctionCall","src":"19990:18:125"},{"kind":"number","nativeSrc":"20010:2:125","nodeType":"YulLiteral","src":"20010:2:125","type":"","value":"20"}],"functionName":{"name":"mstore","nativeSrc":"19983:6:125","nodeType":"YulIdentifier","src":"19983:6:125"},"nativeSrc":"19983:30:125","nodeType":"YulFunctionCall","src":"19983:30:125"},"nativeSrc":"19983:30:125","nodeType":"YulExpressionStatement","src":"19983:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20033:9:125","nodeType":"YulIdentifier","src":"20033:9:125"},{"kind":"number","nativeSrc":"20044:2:125","nodeType":"YulLiteral","src":"20044:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20029:3:125","nodeType":"YulIdentifier","src":"20029:3:125"},"nativeSrc":"20029:18:125","nodeType":"YulFunctionCall","src":"20029:18:125"},{"hexValue":"4e6f207374616b6520746f207769746864726177","kind":"string","nativeSrc":"20049:22:125","nodeType":"YulLiteral","src":"20049:22:125","type":"","value":"No stake to withdraw"}],"functionName":{"name":"mstore","nativeSrc":"20022:6:125","nodeType":"YulIdentifier","src":"20022:6:125"},"nativeSrc":"20022:50:125","nodeType":"YulFunctionCall","src":"20022:50:125"},"nativeSrc":"20022:50:125","nodeType":"YulExpressionStatement","src":"20022:50:125"},{"nativeSrc":"20081:26:125","nodeType":"YulAssignment","src":"20081:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"20093:9:125","nodeType":"YulIdentifier","src":"20093:9:125"},{"kind":"number","nativeSrc":"20104:2:125","nodeType":"YulLiteral","src":"20104:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20089:3:125","nodeType":"YulIdentifier","src":"20089:3:125"},"nativeSrc":"20089:18:125","nodeType":"YulFunctionCall","src":"20089:18:125"},"variableNames":[{"name":"tail","nativeSrc":"20081:4:125","nodeType":"YulIdentifier","src":"20081:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_2157ff27c581d0c09d0fefae4820572f0bccc198ee5e28633f039d06e0011705__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"19769:344:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19920:9:125","nodeType":"YulTypedName","src":"19920:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19934:4:125","nodeType":"YulTypedName","src":"19934:4:125","type":""}],"src":"19769:344:125"},{"body":{"nativeSrc":"20292:179:125","nodeType":"YulBlock","src":"20292:179:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20309:9:125","nodeType":"YulIdentifier","src":"20309:9:125"},{"kind":"number","nativeSrc":"20320:2:125","nodeType":"YulLiteral","src":"20320:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"20302:6:125","nodeType":"YulIdentifier","src":"20302:6:125"},"nativeSrc":"20302:21:125","nodeType":"YulFunctionCall","src":"20302:21:125"},"nativeSrc":"20302:21:125","nodeType":"YulExpressionStatement","src":"20302:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20343:9:125","nodeType":"YulIdentifier","src":"20343:9:125"},{"kind":"number","nativeSrc":"20354:2:125","nodeType":"YulLiteral","src":"20354:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20339:3:125","nodeType":"YulIdentifier","src":"20339:3:125"},"nativeSrc":"20339:18:125","nodeType":"YulFunctionCall","src":"20339:18:125"},{"kind":"number","nativeSrc":"20359:2:125","nodeType":"YulLiteral","src":"20359:2:125","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"20332:6:125","nodeType":"YulIdentifier","src":"20332:6:125"},"nativeSrc":"20332:30:125","nodeType":"YulFunctionCall","src":"20332:30:125"},"nativeSrc":"20332:30:125","nodeType":"YulExpressionStatement","src":"20332:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20382:9:125","nodeType":"YulIdentifier","src":"20382:9:125"},{"kind":"number","nativeSrc":"20393:2:125","nodeType":"YulLiteral","src":"20393:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20378:3:125","nodeType":"YulIdentifier","src":"20378:3:125"},"nativeSrc":"20378:18:125","nodeType":"YulFunctionCall","src":"20378:18:125"},{"hexValue":"6d7573742063616c6c20756e6c6f636b5374616b652829206669727374","kind":"string","nativeSrc":"20398:31:125","nodeType":"YulLiteral","src":"20398:31:125","type":"","value":"must call unlockStake() first"}],"functionName":{"name":"mstore","nativeSrc":"20371:6:125","nodeType":"YulIdentifier","src":"20371:6:125"},"nativeSrc":"20371:59:125","nodeType":"YulFunctionCall","src":"20371:59:125"},"nativeSrc":"20371:59:125","nodeType":"YulExpressionStatement","src":"20371:59:125"},{"nativeSrc":"20439:26:125","nodeType":"YulAssignment","src":"20439:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"20451:9:125","nodeType":"YulIdentifier","src":"20451:9:125"},{"kind":"number","nativeSrc":"20462:2:125","nodeType":"YulLiteral","src":"20462:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20447:3:125","nodeType":"YulIdentifier","src":"20447:3:125"},"nativeSrc":"20447:18:125","nodeType":"YulFunctionCall","src":"20447:18:125"},"variableNames":[{"name":"tail","nativeSrc":"20439:4:125","nodeType":"YulIdentifier","src":"20439:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_9973ef36bc8342d488dae231c130b6ed95bb2a62fca313f7c859e3c78149cec5__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"20118:353:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20269:9:125","nodeType":"YulTypedName","src":"20269:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20283:4:125","nodeType":"YulTypedName","src":"20283:4:125","type":""}],"src":"20118:353:125"},{"body":{"nativeSrc":"20650:177:125","nodeType":"YulBlock","src":"20650:177:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20667:9:125","nodeType":"YulIdentifier","src":"20667:9:125"},{"kind":"number","nativeSrc":"20678:2:125","nodeType":"YulLiteral","src":"20678:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"20660:6:125","nodeType":"YulIdentifier","src":"20660:6:125"},"nativeSrc":"20660:21:125","nodeType":"YulFunctionCall","src":"20660:21:125"},"nativeSrc":"20660:21:125","nodeType":"YulExpressionStatement","src":"20660:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20701:9:125","nodeType":"YulIdentifier","src":"20701:9:125"},{"kind":"number","nativeSrc":"20712:2:125","nodeType":"YulLiteral","src":"20712:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20697:3:125","nodeType":"YulIdentifier","src":"20697:3:125"},"nativeSrc":"20697:18:125","nodeType":"YulFunctionCall","src":"20697:18:125"},{"kind":"number","nativeSrc":"20717:2:125","nodeType":"YulLiteral","src":"20717:2:125","type":"","value":"27"}],"functionName":{"name":"mstore","nativeSrc":"20690:6:125","nodeType":"YulIdentifier","src":"20690:6:125"},"nativeSrc":"20690:30:125","nodeType":"YulFunctionCall","src":"20690:30:125"},"nativeSrc":"20690:30:125","nodeType":"YulExpressionStatement","src":"20690:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20740:9:125","nodeType":"YulIdentifier","src":"20740:9:125"},{"kind":"number","nativeSrc":"20751:2:125","nodeType":"YulLiteral","src":"20751:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20736:3:125","nodeType":"YulIdentifier","src":"20736:3:125"},"nativeSrc":"20736:18:125","nodeType":"YulFunctionCall","src":"20736:18:125"},{"hexValue":"5374616b65207769746864726177616c206973206e6f7420647565","kind":"string","nativeSrc":"20756:29:125","nodeType":"YulLiteral","src":"20756:29:125","type":"","value":"Stake withdrawal is not due"}],"functionName":{"name":"mstore","nativeSrc":"20729:6:125","nodeType":"YulIdentifier","src":"20729:6:125"},"nativeSrc":"20729:57:125","nodeType":"YulFunctionCall","src":"20729:57:125"},"nativeSrc":"20729:57:125","nodeType":"YulExpressionStatement","src":"20729:57:125"},{"nativeSrc":"20795:26:125","nodeType":"YulAssignment","src":"20795:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"20807:9:125","nodeType":"YulIdentifier","src":"20807:9:125"},{"kind":"number","nativeSrc":"20818:2:125","nodeType":"YulLiteral","src":"20818:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20803:3:125","nodeType":"YulIdentifier","src":"20803:3:125"},"nativeSrc":"20803:18:125","nodeType":"YulFunctionCall","src":"20803:18:125"},"variableNames":[{"name":"tail","nativeSrc":"20795:4:125","nodeType":"YulIdentifier","src":"20795:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_5cd6155e73f61bccbf344f4197f14538012904bd24fa05bb30427c7f1fe55d45__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"20476:351:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20627:9:125","nodeType":"YulTypedName","src":"20627:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20641:4:125","nodeType":"YulTypedName","src":"20641:4:125","type":""}],"src":"20476:351:125"},{"body":{"nativeSrc":"21006:174:125","nodeType":"YulBlock","src":"21006:174:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"21023:9:125","nodeType":"YulIdentifier","src":"21023:9:125"},{"kind":"number","nativeSrc":"21034:2:125","nodeType":"YulLiteral","src":"21034:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"21016:6:125","nodeType":"YulIdentifier","src":"21016:6:125"},"nativeSrc":"21016:21:125","nodeType":"YulFunctionCall","src":"21016:21:125"},"nativeSrc":"21016:21:125","nodeType":"YulExpressionStatement","src":"21016:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21057:9:125","nodeType":"YulIdentifier","src":"21057:9:125"},{"kind":"number","nativeSrc":"21068:2:125","nodeType":"YulLiteral","src":"21068:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21053:3:125","nodeType":"YulIdentifier","src":"21053:3:125"},"nativeSrc":"21053:18:125","nodeType":"YulFunctionCall","src":"21053:18:125"},{"kind":"number","nativeSrc":"21073:2:125","nodeType":"YulLiteral","src":"21073:2:125","type":"","value":"24"}],"functionName":{"name":"mstore","nativeSrc":"21046:6:125","nodeType":"YulIdentifier","src":"21046:6:125"},"nativeSrc":"21046:30:125","nodeType":"YulFunctionCall","src":"21046:30:125"},"nativeSrc":"21046:30:125","nodeType":"YulExpressionStatement","src":"21046:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21096:9:125","nodeType":"YulIdentifier","src":"21096:9:125"},{"kind":"number","nativeSrc":"21107:2:125","nodeType":"YulLiteral","src":"21107:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21092:3:125","nodeType":"YulIdentifier","src":"21092:3:125"},"nativeSrc":"21092:18:125","nodeType":"YulFunctionCall","src":"21092:18:125"},{"hexValue":"6661696c656420746f207769746864726177207374616b65","kind":"string","nativeSrc":"21112:26:125","nodeType":"YulLiteral","src":"21112:26:125","type":"","value":"failed to withdraw stake"}],"functionName":{"name":"mstore","nativeSrc":"21085:6:125","nodeType":"YulIdentifier","src":"21085:6:125"},"nativeSrc":"21085:54:125","nodeType":"YulFunctionCall","src":"21085:54:125"},"nativeSrc":"21085:54:125","nodeType":"YulExpressionStatement","src":"21085:54:125"},{"nativeSrc":"21148:26:125","nodeType":"YulAssignment","src":"21148:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"21160:9:125","nodeType":"YulIdentifier","src":"21160:9:125"},{"kind":"number","nativeSrc":"21171:2:125","nodeType":"YulLiteral","src":"21171:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"21156:3:125","nodeType":"YulIdentifier","src":"21156:3:125"},"nativeSrc":"21156:18:125","nodeType":"YulFunctionCall","src":"21156:18:125"},"variableNames":[{"name":"tail","nativeSrc":"21148:4:125","nodeType":"YulIdentifier","src":"21148:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_1dfdcaaacbfb01ed2a280d66b545f88db6fa18ccf502cb079b76e190a3a0227b__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"20832:348:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20983:9:125","nodeType":"YulTypedName","src":"20983:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20997:4:125","nodeType":"YulTypedName","src":"20997:4:125","type":""}],"src":"20832:348:125"},{"body":{"nativeSrc":"21300:222:125","nodeType":"YulBlock","src":"21300:222:125","statements":[{"nativeSrc":"21310:51:125","nodeType":"YulVariableDeclaration","src":"21310:51:125","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"21349:11:125","nodeType":"YulIdentifier","src":"21349:11:125"}],"functionName":{"name":"calldataload","nativeSrc":"21336:12:125","nodeType":"YulIdentifier","src":"21336:12:125"},"nativeSrc":"21336:25:125","nodeType":"YulFunctionCall","src":"21336:25:125"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"21314:18:125","nodeType":"YulTypedName","src":"21314:18:125","type":""}]},{"body":{"nativeSrc":"21450:16:125","nodeType":"YulBlock","src":"21450:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21459:1:125","nodeType":"YulLiteral","src":"21459:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"21462:1:125","nodeType":"YulLiteral","src":"21462:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21452:6:125","nodeType":"YulIdentifier","src":"21452:6:125"},"nativeSrc":"21452:12:125","nodeType":"YulFunctionCall","src":"21452:12:125"},"nativeSrc":"21452:12:125","nodeType":"YulExpressionStatement","src":"21452:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"21384:18:125","nodeType":"YulIdentifier","src":"21384:18:125"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"21412:12:125","nodeType":"YulIdentifier","src":"21412:12:125"},"nativeSrc":"21412:14:125","nodeType":"YulFunctionCall","src":"21412:14:125"},{"name":"base_ref","nativeSrc":"21428:8:125","nodeType":"YulIdentifier","src":"21428:8:125"}],"functionName":{"name":"sub","nativeSrc":"21408:3:125","nodeType":"YulIdentifier","src":"21408:3:125"},"nativeSrc":"21408:29:125","nodeType":"YulFunctionCall","src":"21408:29:125"},{"arguments":[{"kind":"number","nativeSrc":"21443:2:125","nodeType":"YulLiteral","src":"21443:2:125","type":"","value":"94"}],"functionName":{"name":"not","nativeSrc":"21439:3:125","nodeType":"YulIdentifier","src":"21439:3:125"},"nativeSrc":"21439:7:125","nodeType":"YulFunctionCall","src":"21439:7:125"}],"functionName":{"name":"add","nativeSrc":"21404:3:125","nodeType":"YulIdentifier","src":"21404:3:125"},"nativeSrc":"21404:43:125","nodeType":"YulFunctionCall","src":"21404:43:125"}],"functionName":{"name":"slt","nativeSrc":"21380:3:125","nodeType":"YulIdentifier","src":"21380:3:125"},"nativeSrc":"21380:68:125","nodeType":"YulFunctionCall","src":"21380:68:125"}],"functionName":{"name":"iszero","nativeSrc":"21373:6:125","nodeType":"YulIdentifier","src":"21373:6:125"},"nativeSrc":"21373:76:125","nodeType":"YulFunctionCall","src":"21373:76:125"},"nativeSrc":"21370:96:125","nodeType":"YulIf","src":"21370:96:125"},{"nativeSrc":"21475:41:125","nodeType":"YulAssignment","src":"21475:41:125","value":{"arguments":[{"name":"base_ref","nativeSrc":"21487:8:125","nodeType":"YulIdentifier","src":"21487:8:125"},{"name":"rel_offset_of_tail","nativeSrc":"21497:18:125","nodeType":"YulIdentifier","src":"21497:18:125"}],"functionName":{"name":"add","nativeSrc":"21483:3:125","nodeType":"YulIdentifier","src":"21483:3:125"},"nativeSrc":"21483:33:125","nodeType":"YulFunctionCall","src":"21483:33:125"},"variableNames":[{"name":"addr","nativeSrc":"21475:4:125","nodeType":"YulIdentifier","src":"21475:4:125"}]}]},"name":"access_calldata_tail_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr","nativeSrc":"21185:337:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"21265:8:125","nodeType":"YulTypedName","src":"21265:8:125","type":""},{"name":"ptr_to_tail","nativeSrc":"21275:11:125","nodeType":"YulTypedName","src":"21275:11:125","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"21291:4:125","nodeType":"YulTypedName","src":"21291:4:125","type":""}],"src":"21185:337:125"},{"body":{"nativeSrc":"21676:435:125","nodeType":"YulBlock","src":"21676:435:125","statements":[{"nativeSrc":"21686:51:125","nodeType":"YulVariableDeclaration","src":"21686:51:125","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"21725:11:125","nodeType":"YulIdentifier","src":"21725:11:125"}],"functionName":{"name":"calldataload","nativeSrc":"21712:12:125","nodeType":"YulIdentifier","src":"21712:12:125"},"nativeSrc":"21712:25:125","nodeType":"YulFunctionCall","src":"21712:25:125"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"21690:18:125","nodeType":"YulTypedName","src":"21690:18:125","type":""}]},{"body":{"nativeSrc":"21826:16:125","nodeType":"YulBlock","src":"21826:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21835:1:125","nodeType":"YulLiteral","src":"21835:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"21838:1:125","nodeType":"YulLiteral","src":"21838:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21828:6:125","nodeType":"YulIdentifier","src":"21828:6:125"},"nativeSrc":"21828:12:125","nodeType":"YulFunctionCall","src":"21828:12:125"},"nativeSrc":"21828:12:125","nodeType":"YulExpressionStatement","src":"21828:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"21760:18:125","nodeType":"YulIdentifier","src":"21760:18:125"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"21788:12:125","nodeType":"YulIdentifier","src":"21788:12:125"},"nativeSrc":"21788:14:125","nodeType":"YulFunctionCall","src":"21788:14:125"},{"name":"base_ref","nativeSrc":"21804:8:125","nodeType":"YulIdentifier","src":"21804:8:125"}],"functionName":{"name":"sub","nativeSrc":"21784:3:125","nodeType":"YulIdentifier","src":"21784:3:125"},"nativeSrc":"21784:29:125","nodeType":"YulFunctionCall","src":"21784:29:125"},{"arguments":[{"kind":"number","nativeSrc":"21819:2:125","nodeType":"YulLiteral","src":"21819:2:125","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"21815:3:125","nodeType":"YulIdentifier","src":"21815:3:125"},"nativeSrc":"21815:7:125","nodeType":"YulFunctionCall","src":"21815:7:125"}],"functionName":{"name":"add","nativeSrc":"21780:3:125","nodeType":"YulIdentifier","src":"21780:3:125"},"nativeSrc":"21780:43:125","nodeType":"YulFunctionCall","src":"21780:43:125"}],"functionName":{"name":"slt","nativeSrc":"21756:3:125","nodeType":"YulIdentifier","src":"21756:3:125"},"nativeSrc":"21756:68:125","nodeType":"YulFunctionCall","src":"21756:68:125"}],"functionName":{"name":"iszero","nativeSrc":"21749:6:125","nodeType":"YulIdentifier","src":"21749:6:125"},"nativeSrc":"21749:76:125","nodeType":"YulFunctionCall","src":"21749:76:125"},"nativeSrc":"21746:96:125","nodeType":"YulIf","src":"21746:96:125"},{"nativeSrc":"21851:47:125","nodeType":"YulVariableDeclaration","src":"21851:47:125","value":{"arguments":[{"name":"base_ref","nativeSrc":"21869:8:125","nodeType":"YulIdentifier","src":"21869:8:125"},{"name":"rel_offset_of_tail","nativeSrc":"21879:18:125","nodeType":"YulIdentifier","src":"21879:18:125"}],"functionName":{"name":"add","nativeSrc":"21865:3:125","nodeType":"YulIdentifier","src":"21865:3:125"},"nativeSrc":"21865:33:125","nodeType":"YulFunctionCall","src":"21865:33:125"},"variables":[{"name":"addr_1","nativeSrc":"21855:6:125","nodeType":"YulTypedName","src":"21855:6:125","type":""}]},{"nativeSrc":"21907:30:125","nodeType":"YulAssignment","src":"21907:30:125","value":{"arguments":[{"name":"addr_1","nativeSrc":"21930:6:125","nodeType":"YulIdentifier","src":"21930:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"21917:12:125","nodeType":"YulIdentifier","src":"21917:12:125"},"nativeSrc":"21917:20:125","nodeType":"YulFunctionCall","src":"21917:20:125"},"variableNames":[{"name":"length","nativeSrc":"21907:6:125","nodeType":"YulIdentifier","src":"21907:6:125"}]},{"body":{"nativeSrc":"21980:16:125","nodeType":"YulBlock","src":"21980:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21989:1:125","nodeType":"YulLiteral","src":"21989:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"21992:1:125","nodeType":"YulLiteral","src":"21992:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21982:6:125","nodeType":"YulIdentifier","src":"21982:6:125"},"nativeSrc":"21982:12:125","nodeType":"YulFunctionCall","src":"21982:12:125"},"nativeSrc":"21982:12:125","nodeType":"YulExpressionStatement","src":"21982:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"21952:6:125","nodeType":"YulIdentifier","src":"21952:6:125"},{"kind":"number","nativeSrc":"21960:18:125","nodeType":"YulLiteral","src":"21960:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"21949:2:125","nodeType":"YulIdentifier","src":"21949:2:125"},"nativeSrc":"21949:30:125","nodeType":"YulFunctionCall","src":"21949:30:125"},"nativeSrc":"21946:50:125","nodeType":"YulIf","src":"21946:50:125"},{"nativeSrc":"22005:25:125","nodeType":"YulAssignment","src":"22005:25:125","value":{"arguments":[{"name":"addr_1","nativeSrc":"22017:6:125","nodeType":"YulIdentifier","src":"22017:6:125"},{"kind":"number","nativeSrc":"22025:4:125","nodeType":"YulLiteral","src":"22025:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"22013:3:125","nodeType":"YulIdentifier","src":"22013:3:125"},"nativeSrc":"22013:17:125","nodeType":"YulFunctionCall","src":"22013:17:125"},"variableNames":[{"name":"addr","nativeSrc":"22005:4:125","nodeType":"YulIdentifier","src":"22005:4:125"}]},{"body":{"nativeSrc":"22089:16:125","nodeType":"YulBlock","src":"22089:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22098:1:125","nodeType":"YulLiteral","src":"22098:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"22101:1:125","nodeType":"YulLiteral","src":"22101:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22091:6:125","nodeType":"YulIdentifier","src":"22091:6:125"},"nativeSrc":"22091:12:125","nodeType":"YulFunctionCall","src":"22091:12:125"},"nativeSrc":"22091:12:125","nodeType":"YulExpressionStatement","src":"22091:12:125"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"22046:4:125","nodeType":"YulIdentifier","src":"22046:4:125"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"22056:12:125","nodeType":"YulIdentifier","src":"22056:12:125"},"nativeSrc":"22056:14:125","nodeType":"YulFunctionCall","src":"22056:14:125"},{"arguments":[{"kind":"number","nativeSrc":"22076:1:125","nodeType":"YulLiteral","src":"22076:1:125","type":"","value":"5"},{"name":"length","nativeSrc":"22079:6:125","nodeType":"YulIdentifier","src":"22079:6:125"}],"functionName":{"name":"shl","nativeSrc":"22072:3:125","nodeType":"YulIdentifier","src":"22072:3:125"},"nativeSrc":"22072:14:125","nodeType":"YulFunctionCall","src":"22072:14:125"}],"functionName":{"name":"sub","nativeSrc":"22052:3:125","nodeType":"YulIdentifier","src":"22052:3:125"},"nativeSrc":"22052:35:125","nodeType":"YulFunctionCall","src":"22052:35:125"}],"functionName":{"name":"sgt","nativeSrc":"22042:3:125","nodeType":"YulIdentifier","src":"22042:3:125"},"nativeSrc":"22042:46:125","nodeType":"YulFunctionCall","src":"22042:46:125"},"nativeSrc":"22039:66:125","nodeType":"YulIf","src":"22039:66:125"}]},"name":"access_calldata_tail_t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr","nativeSrc":"21527:584:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"21633:8:125","nodeType":"YulTypedName","src":"21633:8:125","type":""},{"name":"ptr_to_tail","nativeSrc":"21643:11:125","nodeType":"YulTypedName","src":"21643:11:125","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"21659:4:125","nodeType":"YulTypedName","src":"21659:4:125","type":""},{"name":"length","nativeSrc":"21665:6:125","nodeType":"YulTypedName","src":"21665:6:125","type":""}],"src":"21527:584:125"},{"body":{"nativeSrc":"22206:177:125","nodeType":"YulBlock","src":"22206:177:125","statements":[{"body":{"nativeSrc":"22252:16:125","nodeType":"YulBlock","src":"22252:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22261:1:125","nodeType":"YulLiteral","src":"22261:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"22264:1:125","nodeType":"YulLiteral","src":"22264:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22254:6:125","nodeType":"YulIdentifier","src":"22254:6:125"},"nativeSrc":"22254:12:125","nodeType":"YulFunctionCall","src":"22254:12:125"},"nativeSrc":"22254:12:125","nodeType":"YulExpressionStatement","src":"22254:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"22227:7:125","nodeType":"YulIdentifier","src":"22227:7:125"},{"name":"headStart","nativeSrc":"22236:9:125","nodeType":"YulIdentifier","src":"22236:9:125"}],"functionName":{"name":"sub","nativeSrc":"22223:3:125","nodeType":"YulIdentifier","src":"22223:3:125"},"nativeSrc":"22223:23:125","nodeType":"YulFunctionCall","src":"22223:23:125"},{"kind":"number","nativeSrc":"22248:2:125","nodeType":"YulLiteral","src":"22248:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"22219:3:125","nodeType":"YulIdentifier","src":"22219:3:125"},"nativeSrc":"22219:32:125","nodeType":"YulFunctionCall","src":"22219:32:125"},"nativeSrc":"22216:52:125","nodeType":"YulIf","src":"22216:52:125"},{"nativeSrc":"22277:36:125","nodeType":"YulVariableDeclaration","src":"22277:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"22303:9:125","nodeType":"YulIdentifier","src":"22303:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"22290:12:125","nodeType":"YulIdentifier","src":"22290:12:125"},"nativeSrc":"22290:23:125","nodeType":"YulFunctionCall","src":"22290:23:125"},"variables":[{"name":"value","nativeSrc":"22281:5:125","nodeType":"YulTypedName","src":"22281:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"22347:5:125","nodeType":"YulIdentifier","src":"22347:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"22322:24:125","nodeType":"YulIdentifier","src":"22322:24:125"},"nativeSrc":"22322:31:125","nodeType":"YulFunctionCall","src":"22322:31:125"},"nativeSrc":"22322:31:125","nodeType":"YulExpressionStatement","src":"22322:31:125"},{"nativeSrc":"22362:15:125","nodeType":"YulAssignment","src":"22362:15:125","value":{"name":"value","nativeSrc":"22372:5:125","nodeType":"YulIdentifier","src":"22372:5:125"},"variableNames":[{"name":"value0","nativeSrc":"22362:6:125","nodeType":"YulIdentifier","src":"22362:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IAggregator_$3382","nativeSrc":"22116:267:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22172:9:125","nodeType":"YulTypedName","src":"22172:9:125","type":""},{"name":"dataEnd","nativeSrc":"22183:7:125","nodeType":"YulTypedName","src":"22183:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"22195:6:125","nodeType":"YulTypedName","src":"22195:6:125","type":""}],"src":"22116:267:125"},{"body":{"nativeSrc":"22562:173:125","nodeType":"YulBlock","src":"22562:173:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22579:9:125","nodeType":"YulIdentifier","src":"22579:9:125"},{"kind":"number","nativeSrc":"22590:2:125","nodeType":"YulLiteral","src":"22590:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"22572:6:125","nodeType":"YulIdentifier","src":"22572:6:125"},"nativeSrc":"22572:21:125","nodeType":"YulFunctionCall","src":"22572:21:125"},"nativeSrc":"22572:21:125","nodeType":"YulExpressionStatement","src":"22572:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22613:9:125","nodeType":"YulIdentifier","src":"22613:9:125"},{"kind":"number","nativeSrc":"22624:2:125","nodeType":"YulLiteral","src":"22624:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22609:3:125","nodeType":"YulIdentifier","src":"22609:3:125"},"nativeSrc":"22609:18:125","nodeType":"YulFunctionCall","src":"22609:18:125"},{"kind":"number","nativeSrc":"22629:2:125","nodeType":"YulLiteral","src":"22629:2:125","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"22602:6:125","nodeType":"YulIdentifier","src":"22602:6:125"},"nativeSrc":"22602:30:125","nodeType":"YulFunctionCall","src":"22602:30:125"},"nativeSrc":"22602:30:125","nodeType":"YulExpressionStatement","src":"22602:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22652:9:125","nodeType":"YulIdentifier","src":"22652:9:125"},{"kind":"number","nativeSrc":"22663:2:125","nodeType":"YulLiteral","src":"22663:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22648:3:125","nodeType":"YulIdentifier","src":"22648:3:125"},"nativeSrc":"22648:18:125","nodeType":"YulFunctionCall","src":"22648:18:125"},{"hexValue":"4141393620696e76616c69642061676772656761746f72","kind":"string","nativeSrc":"22668:25:125","nodeType":"YulLiteral","src":"22668:25:125","type":"","value":"AA96 invalid aggregator"}],"functionName":{"name":"mstore","nativeSrc":"22641:6:125","nodeType":"YulIdentifier","src":"22641:6:125"},"nativeSrc":"22641:53:125","nodeType":"YulFunctionCall","src":"22641:53:125"},"nativeSrc":"22641:53:125","nodeType":"YulExpressionStatement","src":"22641:53:125"},{"nativeSrc":"22703:26:125","nodeType":"YulAssignment","src":"22703:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"22715:9:125","nodeType":"YulIdentifier","src":"22715:9:125"},{"kind":"number","nativeSrc":"22726:2:125","nodeType":"YulLiteral","src":"22726:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"22711:3:125","nodeType":"YulIdentifier","src":"22711:3:125"},"nativeSrc":"22711:18:125","nodeType":"YulFunctionCall","src":"22711:18:125"},"variableNames":[{"name":"tail","nativeSrc":"22703:4:125","nodeType":"YulIdentifier","src":"22703:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_c7b85d163e4e98261caeed8e321f4ec192af622f53fd084234a04b236b40e883__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"22388:347:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22539:9:125","nodeType":"YulTypedName","src":"22539:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22553:4:125","nodeType":"YulTypedName","src":"22553:4:125","type":""}],"src":"22388:347:125"},{"body":{"nativeSrc":"22834:427:125","nodeType":"YulBlock","src":"22834:427:125","statements":[{"nativeSrc":"22844:51:125","nodeType":"YulVariableDeclaration","src":"22844:51:125","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"22883:11:125","nodeType":"YulIdentifier","src":"22883:11:125"}],"functionName":{"name":"calldataload","nativeSrc":"22870:12:125","nodeType":"YulIdentifier","src":"22870:12:125"},"nativeSrc":"22870:25:125","nodeType":"YulFunctionCall","src":"22870:25:125"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"22848:18:125","nodeType":"YulTypedName","src":"22848:18:125","type":""}]},{"body":{"nativeSrc":"22984:16:125","nodeType":"YulBlock","src":"22984:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22993:1:125","nodeType":"YulLiteral","src":"22993:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"22996:1:125","nodeType":"YulLiteral","src":"22996:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22986:6:125","nodeType":"YulIdentifier","src":"22986:6:125"},"nativeSrc":"22986:12:125","nodeType":"YulFunctionCall","src":"22986:12:125"},"nativeSrc":"22986:12:125","nodeType":"YulExpressionStatement","src":"22986:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"22918:18:125","nodeType":"YulIdentifier","src":"22918:18:125"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"22946:12:125","nodeType":"YulIdentifier","src":"22946:12:125"},"nativeSrc":"22946:14:125","nodeType":"YulFunctionCall","src":"22946:14:125"},{"name":"base_ref","nativeSrc":"22962:8:125","nodeType":"YulIdentifier","src":"22962:8:125"}],"functionName":{"name":"sub","nativeSrc":"22942:3:125","nodeType":"YulIdentifier","src":"22942:3:125"},"nativeSrc":"22942:29:125","nodeType":"YulFunctionCall","src":"22942:29:125"},{"arguments":[{"kind":"number","nativeSrc":"22977:2:125","nodeType":"YulLiteral","src":"22977:2:125","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"22973:3:125","nodeType":"YulIdentifier","src":"22973:3:125"},"nativeSrc":"22973:7:125","nodeType":"YulFunctionCall","src":"22973:7:125"}],"functionName":{"name":"add","nativeSrc":"22938:3:125","nodeType":"YulIdentifier","src":"22938:3:125"},"nativeSrc":"22938:43:125","nodeType":"YulFunctionCall","src":"22938:43:125"}],"functionName":{"name":"slt","nativeSrc":"22914:3:125","nodeType":"YulIdentifier","src":"22914:3:125"},"nativeSrc":"22914:68:125","nodeType":"YulFunctionCall","src":"22914:68:125"}],"functionName":{"name":"iszero","nativeSrc":"22907:6:125","nodeType":"YulIdentifier","src":"22907:6:125"},"nativeSrc":"22907:76:125","nodeType":"YulFunctionCall","src":"22907:76:125"},"nativeSrc":"22904:96:125","nodeType":"YulIf","src":"22904:96:125"},{"nativeSrc":"23009:47:125","nodeType":"YulVariableDeclaration","src":"23009:47:125","value":{"arguments":[{"name":"base_ref","nativeSrc":"23027:8:125","nodeType":"YulIdentifier","src":"23027:8:125"},{"name":"rel_offset_of_tail","nativeSrc":"23037:18:125","nodeType":"YulIdentifier","src":"23037:18:125"}],"functionName":{"name":"add","nativeSrc":"23023:3:125","nodeType":"YulIdentifier","src":"23023:3:125"},"nativeSrc":"23023:33:125","nodeType":"YulFunctionCall","src":"23023:33:125"},"variables":[{"name":"addr_1","nativeSrc":"23013:6:125","nodeType":"YulTypedName","src":"23013:6:125","type":""}]},{"nativeSrc":"23065:30:125","nodeType":"YulAssignment","src":"23065:30:125","value":{"arguments":[{"name":"addr_1","nativeSrc":"23088:6:125","nodeType":"YulIdentifier","src":"23088:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"23075:12:125","nodeType":"YulIdentifier","src":"23075:12:125"},"nativeSrc":"23075:20:125","nodeType":"YulFunctionCall","src":"23075:20:125"},"variableNames":[{"name":"length","nativeSrc":"23065:6:125","nodeType":"YulIdentifier","src":"23065:6:125"}]},{"body":{"nativeSrc":"23138:16:125","nodeType":"YulBlock","src":"23138:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23147:1:125","nodeType":"YulLiteral","src":"23147:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"23150:1:125","nodeType":"YulLiteral","src":"23150:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23140:6:125","nodeType":"YulIdentifier","src":"23140:6:125"},"nativeSrc":"23140:12:125","nodeType":"YulFunctionCall","src":"23140:12:125"},"nativeSrc":"23140:12:125","nodeType":"YulExpressionStatement","src":"23140:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"23110:6:125","nodeType":"YulIdentifier","src":"23110:6:125"},{"kind":"number","nativeSrc":"23118:18:125","nodeType":"YulLiteral","src":"23118:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"23107:2:125","nodeType":"YulIdentifier","src":"23107:2:125"},"nativeSrc":"23107:30:125","nodeType":"YulFunctionCall","src":"23107:30:125"},"nativeSrc":"23104:50:125","nodeType":"YulIf","src":"23104:50:125"},{"nativeSrc":"23163:25:125","nodeType":"YulAssignment","src":"23163:25:125","value":{"arguments":[{"name":"addr_1","nativeSrc":"23175:6:125","nodeType":"YulIdentifier","src":"23175:6:125"},{"kind":"number","nativeSrc":"23183:4:125","nodeType":"YulLiteral","src":"23183:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"23171:3:125","nodeType":"YulIdentifier","src":"23171:3:125"},"nativeSrc":"23171:17:125","nodeType":"YulFunctionCall","src":"23171:17:125"},"variableNames":[{"name":"addr","nativeSrc":"23163:4:125","nodeType":"YulIdentifier","src":"23163:4:125"}]},{"body":{"nativeSrc":"23239:16:125","nodeType":"YulBlock","src":"23239:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23248:1:125","nodeType":"YulLiteral","src":"23248:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"23251:1:125","nodeType":"YulLiteral","src":"23251:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23241:6:125","nodeType":"YulIdentifier","src":"23241:6:125"},"nativeSrc":"23241:12:125","nodeType":"YulFunctionCall","src":"23241:12:125"},"nativeSrc":"23241:12:125","nodeType":"YulExpressionStatement","src":"23241:12:125"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"23204:4:125","nodeType":"YulIdentifier","src":"23204:4:125"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"23214:12:125","nodeType":"YulIdentifier","src":"23214:12:125"},"nativeSrc":"23214:14:125","nodeType":"YulFunctionCall","src":"23214:14:125"},{"name":"length","nativeSrc":"23230:6:125","nodeType":"YulIdentifier","src":"23230:6:125"}],"functionName":{"name":"sub","nativeSrc":"23210:3:125","nodeType":"YulIdentifier","src":"23210:3:125"},"nativeSrc":"23210:27:125","nodeType":"YulFunctionCall","src":"23210:27:125"}],"functionName":{"name":"sgt","nativeSrc":"23200:3:125","nodeType":"YulIdentifier","src":"23200:3:125"},"nativeSrc":"23200:38:125","nodeType":"YulFunctionCall","src":"23200:38:125"},"nativeSrc":"23197:58:125","nodeType":"YulIf","src":"23197:58:125"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"22740:521:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"22791:8:125","nodeType":"YulTypedName","src":"22791:8:125","type":""},{"name":"ptr_to_tail","nativeSrc":"22801:11:125","nodeType":"YulTypedName","src":"22801:11:125","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"22817:4:125","nodeType":"YulTypedName","src":"22817:4:125","type":""},{"name":"length","nativeSrc":"22823:6:125","nodeType":"YulTypedName","src":"22823:6:125","type":""}],"src":"22740:521:125"},{"body":{"nativeSrc":"23342:424:125","nodeType":"YulBlock","src":"23342:424:125","statements":[{"nativeSrc":"23352:43:125","nodeType":"YulVariableDeclaration","src":"23352:43:125","value":{"arguments":[{"name":"ptr","nativeSrc":"23391:3:125","nodeType":"YulIdentifier","src":"23391:3:125"}],"functionName":{"name":"calldataload","nativeSrc":"23378:12:125","nodeType":"YulIdentifier","src":"23378:12:125"},"nativeSrc":"23378:17:125","nodeType":"YulFunctionCall","src":"23378:17:125"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"23356:18:125","nodeType":"YulTypedName","src":"23356:18:125","type":""}]},{"body":{"nativeSrc":"23484:16:125","nodeType":"YulBlock","src":"23484:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23493:1:125","nodeType":"YulLiteral","src":"23493:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"23496:1:125","nodeType":"YulLiteral","src":"23496:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23486:6:125","nodeType":"YulIdentifier","src":"23486:6:125"},"nativeSrc":"23486:12:125","nodeType":"YulFunctionCall","src":"23486:12:125"},"nativeSrc":"23486:12:125","nodeType":"YulExpressionStatement","src":"23486:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"23418:18:125","nodeType":"YulIdentifier","src":"23418:18:125"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"23446:12:125","nodeType":"YulIdentifier","src":"23446:12:125"},"nativeSrc":"23446:14:125","nodeType":"YulFunctionCall","src":"23446:14:125"},{"name":"base_ref","nativeSrc":"23462:8:125","nodeType":"YulIdentifier","src":"23462:8:125"}],"functionName":{"name":"sub","nativeSrc":"23442:3:125","nodeType":"YulIdentifier","src":"23442:3:125"},"nativeSrc":"23442:29:125","nodeType":"YulFunctionCall","src":"23442:29:125"},{"arguments":[{"kind":"number","nativeSrc":"23477:2:125","nodeType":"YulLiteral","src":"23477:2:125","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"23473:3:125","nodeType":"YulIdentifier","src":"23473:3:125"},"nativeSrc":"23473:7:125","nodeType":"YulFunctionCall","src":"23473:7:125"}],"functionName":{"name":"add","nativeSrc":"23438:3:125","nodeType":"YulIdentifier","src":"23438:3:125"},"nativeSrc":"23438:43:125","nodeType":"YulFunctionCall","src":"23438:43:125"}],"functionName":{"name":"slt","nativeSrc":"23414:3:125","nodeType":"YulIdentifier","src":"23414:3:125"},"nativeSrc":"23414:68:125","nodeType":"YulFunctionCall","src":"23414:68:125"}],"functionName":{"name":"iszero","nativeSrc":"23407:6:125","nodeType":"YulIdentifier","src":"23407:6:125"},"nativeSrc":"23407:76:125","nodeType":"YulFunctionCall","src":"23407:76:125"},"nativeSrc":"23404:96:125","nodeType":"YulIf","src":"23404:96:125"},{"nativeSrc":"23509:48:125","nodeType":"YulVariableDeclaration","src":"23509:48:125","value":{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"23528:18:125","nodeType":"YulIdentifier","src":"23528:18:125"},{"name":"base_ref","nativeSrc":"23548:8:125","nodeType":"YulIdentifier","src":"23548:8:125"}],"functionName":{"name":"add","nativeSrc":"23524:3:125","nodeType":"YulIdentifier","src":"23524:3:125"},"nativeSrc":"23524:33:125","nodeType":"YulFunctionCall","src":"23524:33:125"},"variables":[{"name":"value_1","nativeSrc":"23513:7:125","nodeType":"YulTypedName","src":"23513:7:125","type":""}]},{"nativeSrc":"23566:31:125","nodeType":"YulAssignment","src":"23566:31:125","value":{"arguments":[{"name":"value_1","nativeSrc":"23589:7:125","nodeType":"YulIdentifier","src":"23589:7:125"}],"functionName":{"name":"calldataload","nativeSrc":"23576:12:125","nodeType":"YulIdentifier","src":"23576:12:125"},"nativeSrc":"23576:21:125","nodeType":"YulFunctionCall","src":"23576:21:125"},"variableNames":[{"name":"length","nativeSrc":"23566:6:125","nodeType":"YulIdentifier","src":"23566:6:125"}]},{"nativeSrc":"23606:27:125","nodeType":"YulAssignment","src":"23606:27:125","value":{"arguments":[{"name":"value_1","nativeSrc":"23619:7:125","nodeType":"YulIdentifier","src":"23619:7:125"},{"kind":"number","nativeSrc":"23628:4:125","nodeType":"YulLiteral","src":"23628:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"23615:3:125","nodeType":"YulIdentifier","src":"23615:3:125"},"nativeSrc":"23615:18:125","nodeType":"YulFunctionCall","src":"23615:18:125"},"variableNames":[{"name":"value","nativeSrc":"23606:5:125","nodeType":"YulIdentifier","src":"23606:5:125"}]},{"body":{"nativeSrc":"23676:16:125","nodeType":"YulBlock","src":"23676:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23685:1:125","nodeType":"YulLiteral","src":"23685:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"23688:1:125","nodeType":"YulLiteral","src":"23688:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23678:6:125","nodeType":"YulIdentifier","src":"23678:6:125"},"nativeSrc":"23678:12:125","nodeType":"YulFunctionCall","src":"23678:12:125"},"nativeSrc":"23678:12:125","nodeType":"YulExpressionStatement","src":"23678:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"23648:6:125","nodeType":"YulIdentifier","src":"23648:6:125"},{"kind":"number","nativeSrc":"23656:18:125","nodeType":"YulLiteral","src":"23656:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"23645:2:125","nodeType":"YulIdentifier","src":"23645:2:125"},"nativeSrc":"23645:30:125","nodeType":"YulFunctionCall","src":"23645:30:125"},"nativeSrc":"23642:50:125","nodeType":"YulIf","src":"23642:50:125"},{"body":{"nativeSrc":"23744:16:125","nodeType":"YulBlock","src":"23744:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23753:1:125","nodeType":"YulLiteral","src":"23753:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"23756:1:125","nodeType":"YulLiteral","src":"23756:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23746:6:125","nodeType":"YulIdentifier","src":"23746:6:125"},"nativeSrc":"23746:12:125","nodeType":"YulFunctionCall","src":"23746:12:125"},"nativeSrc":"23746:12:125","nodeType":"YulExpressionStatement","src":"23746:12:125"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"23708:5:125","nodeType":"YulIdentifier","src":"23708:5:125"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"23719:12:125","nodeType":"YulIdentifier","src":"23719:12:125"},"nativeSrc":"23719:14:125","nodeType":"YulFunctionCall","src":"23719:14:125"},{"name":"length","nativeSrc":"23735:6:125","nodeType":"YulIdentifier","src":"23735:6:125"}],"functionName":{"name":"sub","nativeSrc":"23715:3:125","nodeType":"YulIdentifier","src":"23715:3:125"},"nativeSrc":"23715:27:125","nodeType":"YulFunctionCall","src":"23715:27:125"}],"functionName":{"name":"sgt","nativeSrc":"23704:3:125","nodeType":"YulIdentifier","src":"23704:3:125"},"nativeSrc":"23704:39:125","nodeType":"YulFunctionCall","src":"23704:39:125"},"nativeSrc":"23701:59:125","nodeType":"YulIf","src":"23701:59:125"}]},"name":"calldata_access_bytes_calldata","nativeSrc":"23266:500:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"23306:8:125","nodeType":"YulTypedName","src":"23306:8:125","type":""},{"name":"ptr","nativeSrc":"23316:3:125","nodeType":"YulTypedName","src":"23316:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"23324:5:125","nodeType":"YulTypedName","src":"23324:5:125","type":""},{"name":"length","nativeSrc":"23331:6:125","nodeType":"YulTypedName","src":"23331:6:125","type":""}],"src":"23266:500:125"},{"body":{"nativeSrc":"23850:1465:125","nodeType":"YulBlock","src":"23850:1465:125","statements":[{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"23898:5:125","nodeType":"YulIdentifier","src":"23898:5:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"23879:18:125","nodeType":"YulIdentifier","src":"23879:18:125"},"nativeSrc":"23879:25:125","nodeType":"YulFunctionCall","src":"23879:25:125"},{"name":"pos","nativeSrc":"23906:3:125","nodeType":"YulIdentifier","src":"23906:3:125"}],"functionName":{"name":"abi_encode_address","nativeSrc":"23860:18:125","nodeType":"YulIdentifier","src":"23860:18:125"},"nativeSrc":"23860:50:125","nodeType":"YulFunctionCall","src":"23860:50:125"},"nativeSrc":"23860:50:125","nodeType":"YulExpressionStatement","src":"23860:50:125"},{"nativeSrc":"23919:16:125","nodeType":"YulVariableDeclaration","src":"23919:16:125","value":{"kind":"number","nativeSrc":"23934:1:125","nodeType":"YulLiteral","src":"23934:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"23923:7:125","nodeType":"YulTypedName","src":"23923:7:125","type":""}]},{"nativeSrc":"23944:41:125","nodeType":"YulAssignment","src":"23944:41:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"23972:5:125","nodeType":"YulIdentifier","src":"23972:5:125"},{"kind":"number","nativeSrc":"23979:4:125","nodeType":"YulLiteral","src":"23979:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"23968:3:125","nodeType":"YulIdentifier","src":"23968:3:125"},"nativeSrc":"23968:16:125","nodeType":"YulFunctionCall","src":"23968:16:125"}],"functionName":{"name":"calldataload","nativeSrc":"23955:12:125","nodeType":"YulIdentifier","src":"23955:12:125"},"nativeSrc":"23955:30:125","nodeType":"YulFunctionCall","src":"23955:30:125"},"variableNames":[{"name":"value_1","nativeSrc":"23944:7:125","nodeType":"YulIdentifier","src":"23944:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"24005:3:125","nodeType":"YulIdentifier","src":"24005:3:125"},{"kind":"number","nativeSrc":"24010:4:125","nodeType":"YulLiteral","src":"24010:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"24001:3:125","nodeType":"YulIdentifier","src":"24001:3:125"},"nativeSrc":"24001:14:125","nodeType":"YulFunctionCall","src":"24001:14:125"},{"name":"value_1","nativeSrc":"24017:7:125","nodeType":"YulIdentifier","src":"24017:7:125"}],"functionName":{"name":"mstore","nativeSrc":"23994:6:125","nodeType":"YulIdentifier","src":"23994:6:125"},"nativeSrc":"23994:31:125","nodeType":"YulFunctionCall","src":"23994:31:125"},"nativeSrc":"23994:31:125","nodeType":"YulExpressionStatement","src":"23994:31:125"},{"nativeSrc":"24034:89:125","nodeType":"YulVariableDeclaration","src":"24034:89:125","value":{"arguments":[{"name":"value","nativeSrc":"24099:5:125","nodeType":"YulIdentifier","src":"24099:5:125"},{"arguments":[{"name":"value","nativeSrc":"24110:5:125","nodeType":"YulIdentifier","src":"24110:5:125"},{"kind":"number","nativeSrc":"24117:4:125","nodeType":"YulLiteral","src":"24117:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"24106:3:125","nodeType":"YulIdentifier","src":"24106:3:125"},"nativeSrc":"24106:16:125","nodeType":"YulFunctionCall","src":"24106:16:125"}],"functionName":{"name":"calldata_access_bytes_calldata","nativeSrc":"24068:30:125","nodeType":"YulIdentifier","src":"24068:30:125"},"nativeSrc":"24068:55:125","nodeType":"YulFunctionCall","src":"24068:55:125"},"variables":[{"name":"memberValue0","nativeSrc":"24038:12:125","nodeType":"YulTypedName","src":"24038:12:125","type":""},{"name":"memberValue1","nativeSrc":"24052:12:125","nodeType":"YulTypedName","src":"24052:12:125","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"24143:3:125","nodeType":"YulIdentifier","src":"24143:3:125"},{"kind":"number","nativeSrc":"24148:4:125","nodeType":"YulLiteral","src":"24148:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"24139:3:125","nodeType":"YulIdentifier","src":"24139:3:125"},"nativeSrc":"24139:14:125","nodeType":"YulFunctionCall","src":"24139:14:125"},{"kind":"number","nativeSrc":"24155:6:125","nodeType":"YulLiteral","src":"24155:6:125","type":"","value":"0x0120"}],"functionName":{"name":"mstore","nativeSrc":"24132:6:125","nodeType":"YulIdentifier","src":"24132:6:125"},"nativeSrc":"24132:30:125","nodeType":"YulFunctionCall","src":"24132:30:125"},"nativeSrc":"24132:30:125","nodeType":"YulExpressionStatement","src":"24132:30:125"},{"nativeSrc":"24171:83:125","nodeType":"YulVariableDeclaration","src":"24171:83:125","value":{"arguments":[{"name":"memberValue0","nativeSrc":"24209:12:125","nodeType":"YulIdentifier","src":"24209:12:125"},{"name":"memberValue1","nativeSrc":"24223:12:125","nodeType":"YulIdentifier","src":"24223:12:125"},{"arguments":[{"name":"pos","nativeSrc":"24241:3:125","nodeType":"YulIdentifier","src":"24241:3:125"},{"kind":"number","nativeSrc":"24246:6:125","nodeType":"YulLiteral","src":"24246:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"24237:3:125","nodeType":"YulIdentifier","src":"24237:3:125"},"nativeSrc":"24237:16:125","nodeType":"YulFunctionCall","src":"24237:16:125"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"24183:25:125","nodeType":"YulIdentifier","src":"24183:25:125"},"nativeSrc":"24183:71:125","nodeType":"YulFunctionCall","src":"24183:71:125"},"variables":[{"name":"tail","nativeSrc":"24175:4:125","nodeType":"YulTypedName","src":"24175:4:125","type":""}]},{"nativeSrc":"24263:93:125","nodeType":"YulVariableDeclaration","src":"24263:93:125","value":{"arguments":[{"name":"value","nativeSrc":"24332:5:125","nodeType":"YulIdentifier","src":"24332:5:125"},{"arguments":[{"name":"value","nativeSrc":"24343:5:125","nodeType":"YulIdentifier","src":"24343:5:125"},{"kind":"number","nativeSrc":"24350:4:125","nodeType":"YulLiteral","src":"24350:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"24339:3:125","nodeType":"YulIdentifier","src":"24339:3:125"},"nativeSrc":"24339:16:125","nodeType":"YulFunctionCall","src":"24339:16:125"}],"functionName":{"name":"calldata_access_bytes_calldata","nativeSrc":"24301:30:125","nodeType":"YulIdentifier","src":"24301:30:125"},"nativeSrc":"24301:55:125","nodeType":"YulFunctionCall","src":"24301:55:125"},"variables":[{"name":"memberValue0_1","nativeSrc":"24267:14:125","nodeType":"YulTypedName","src":"24267:14:125","type":""},{"name":"memberValue1_1","nativeSrc":"24283:14:125","nodeType":"YulTypedName","src":"24283:14:125","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"24376:3:125","nodeType":"YulIdentifier","src":"24376:3:125"},{"kind":"number","nativeSrc":"24381:4:125","nodeType":"YulLiteral","src":"24381:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"24372:3:125","nodeType":"YulIdentifier","src":"24372:3:125"},"nativeSrc":"24372:14:125","nodeType":"YulFunctionCall","src":"24372:14:125"},{"arguments":[{"name":"tail","nativeSrc":"24392:4:125","nodeType":"YulIdentifier","src":"24392:4:125"},{"name":"pos","nativeSrc":"24398:3:125","nodeType":"YulIdentifier","src":"24398:3:125"}],"functionName":{"name":"sub","nativeSrc":"24388:3:125","nodeType":"YulIdentifier","src":"24388:3:125"},"nativeSrc":"24388:14:125","nodeType":"YulFunctionCall","src":"24388:14:125"}],"functionName":{"name":"mstore","nativeSrc":"24365:6:125","nodeType":"YulIdentifier","src":"24365:6:125"},"nativeSrc":"24365:38:125","nodeType":"YulFunctionCall","src":"24365:38:125"},"nativeSrc":"24365:38:125","nodeType":"YulExpressionStatement","src":"24365:38:125"},{"nativeSrc":"24412:77:125","nodeType":"YulVariableDeclaration","src":"24412:77:125","value":{"arguments":[{"name":"memberValue0_1","nativeSrc":"24452:14:125","nodeType":"YulIdentifier","src":"24452:14:125"},{"name":"memberValue1_1","nativeSrc":"24468:14:125","nodeType":"YulIdentifier","src":"24468:14:125"},{"name":"tail","nativeSrc":"24484:4:125","nodeType":"YulIdentifier","src":"24484:4:125"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"24426:25:125","nodeType":"YulIdentifier","src":"24426:25:125"},"nativeSrc":"24426:63:125","nodeType":"YulFunctionCall","src":"24426:63:125"},"variables":[{"name":"tail_1","nativeSrc":"24416:6:125","nodeType":"YulTypedName","src":"24416:6:125","type":""}]},{"nativeSrc":"24498:16:125","nodeType":"YulVariableDeclaration","src":"24498:16:125","value":{"kind":"number","nativeSrc":"24513:1:125","nodeType":"YulLiteral","src":"24513:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"24502:7:125","nodeType":"YulTypedName","src":"24502:7:125","type":""}]},{"nativeSrc":"24523:41:125","nodeType":"YulAssignment","src":"24523:41:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"24551:5:125","nodeType":"YulIdentifier","src":"24551:5:125"},{"kind":"number","nativeSrc":"24558:4:125","nodeType":"YulLiteral","src":"24558:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"24547:3:125","nodeType":"YulIdentifier","src":"24547:3:125"},"nativeSrc":"24547:16:125","nodeType":"YulFunctionCall","src":"24547:16:125"}],"functionName":{"name":"calldataload","nativeSrc":"24534:12:125","nodeType":"YulIdentifier","src":"24534:12:125"},"nativeSrc":"24534:30:125","nodeType":"YulFunctionCall","src":"24534:30:125"},"variableNames":[{"name":"value_2","nativeSrc":"24523:7:125","nodeType":"YulIdentifier","src":"24523:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"24584:3:125","nodeType":"YulIdentifier","src":"24584:3:125"},{"kind":"number","nativeSrc":"24589:4:125","nodeType":"YulLiteral","src":"24589:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"24580:3:125","nodeType":"YulIdentifier","src":"24580:3:125"},"nativeSrc":"24580:14:125","nodeType":"YulFunctionCall","src":"24580:14:125"},{"name":"value_2","nativeSrc":"24596:7:125","nodeType":"YulIdentifier","src":"24596:7:125"}],"functionName":{"name":"mstore","nativeSrc":"24573:6:125","nodeType":"YulIdentifier","src":"24573:6:125"},"nativeSrc":"24573:31:125","nodeType":"YulFunctionCall","src":"24573:31:125"},"nativeSrc":"24573:31:125","nodeType":"YulExpressionStatement","src":"24573:31:125"},{"nativeSrc":"24613:16:125","nodeType":"YulVariableDeclaration","src":"24613:16:125","value":{"kind":"number","nativeSrc":"24628:1:125","nodeType":"YulLiteral","src":"24628:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"24617:7:125","nodeType":"YulTypedName","src":"24617:7:125","type":""}]},{"nativeSrc":"24638:41:125","nodeType":"YulAssignment","src":"24638:41:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"24666:5:125","nodeType":"YulIdentifier","src":"24666:5:125"},{"kind":"number","nativeSrc":"24673:4:125","nodeType":"YulLiteral","src":"24673:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"24662:3:125","nodeType":"YulIdentifier","src":"24662:3:125"},"nativeSrc":"24662:16:125","nodeType":"YulFunctionCall","src":"24662:16:125"}],"functionName":{"name":"calldataload","nativeSrc":"24649:12:125","nodeType":"YulIdentifier","src":"24649:12:125"},"nativeSrc":"24649:30:125","nodeType":"YulFunctionCall","src":"24649:30:125"},"variableNames":[{"name":"value_3","nativeSrc":"24638:7:125","nodeType":"YulIdentifier","src":"24638:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"24699:3:125","nodeType":"YulIdentifier","src":"24699:3:125"},{"kind":"number","nativeSrc":"24704:4:125","nodeType":"YulLiteral","src":"24704:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"24695:3:125","nodeType":"YulIdentifier","src":"24695:3:125"},"nativeSrc":"24695:14:125","nodeType":"YulFunctionCall","src":"24695:14:125"},{"name":"value_3","nativeSrc":"24711:7:125","nodeType":"YulIdentifier","src":"24711:7:125"}],"functionName":{"name":"mstore","nativeSrc":"24688:6:125","nodeType":"YulIdentifier","src":"24688:6:125"},"nativeSrc":"24688:31:125","nodeType":"YulFunctionCall","src":"24688:31:125"},"nativeSrc":"24688:31:125","nodeType":"YulExpressionStatement","src":"24688:31:125"},{"nativeSrc":"24728:16:125","nodeType":"YulVariableDeclaration","src":"24728:16:125","value":{"kind":"number","nativeSrc":"24743:1:125","nodeType":"YulLiteral","src":"24743:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"24732:7:125","nodeType":"YulTypedName","src":"24732:7:125","type":""}]},{"nativeSrc":"24753:41:125","nodeType":"YulAssignment","src":"24753:41:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"24781:5:125","nodeType":"YulIdentifier","src":"24781:5:125"},{"kind":"number","nativeSrc":"24788:4:125","nodeType":"YulLiteral","src":"24788:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"24777:3:125","nodeType":"YulIdentifier","src":"24777:3:125"},"nativeSrc":"24777:16:125","nodeType":"YulFunctionCall","src":"24777:16:125"}],"functionName":{"name":"calldataload","nativeSrc":"24764:12:125","nodeType":"YulIdentifier","src":"24764:12:125"},"nativeSrc":"24764:30:125","nodeType":"YulFunctionCall","src":"24764:30:125"},"variableNames":[{"name":"value_4","nativeSrc":"24753:7:125","nodeType":"YulIdentifier","src":"24753:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"24814:3:125","nodeType":"YulIdentifier","src":"24814:3:125"},{"kind":"number","nativeSrc":"24819:4:125","nodeType":"YulLiteral","src":"24819:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"24810:3:125","nodeType":"YulIdentifier","src":"24810:3:125"},"nativeSrc":"24810:14:125","nodeType":"YulFunctionCall","src":"24810:14:125"},{"name":"value_4","nativeSrc":"24826:7:125","nodeType":"YulIdentifier","src":"24826:7:125"}],"functionName":{"name":"mstore","nativeSrc":"24803:6:125","nodeType":"YulIdentifier","src":"24803:6:125"},"nativeSrc":"24803:31:125","nodeType":"YulFunctionCall","src":"24803:31:125"},"nativeSrc":"24803:31:125","nodeType":"YulExpressionStatement","src":"24803:31:125"},{"nativeSrc":"24843:93:125","nodeType":"YulVariableDeclaration","src":"24843:93:125","value":{"arguments":[{"name":"value","nativeSrc":"24912:5:125","nodeType":"YulIdentifier","src":"24912:5:125"},{"arguments":[{"name":"value","nativeSrc":"24923:5:125","nodeType":"YulIdentifier","src":"24923:5:125"},{"kind":"number","nativeSrc":"24930:4:125","nodeType":"YulLiteral","src":"24930:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"24919:3:125","nodeType":"YulIdentifier","src":"24919:3:125"},"nativeSrc":"24919:16:125","nodeType":"YulFunctionCall","src":"24919:16:125"}],"functionName":{"name":"calldata_access_bytes_calldata","nativeSrc":"24881:30:125","nodeType":"YulIdentifier","src":"24881:30:125"},"nativeSrc":"24881:55:125","nodeType":"YulFunctionCall","src":"24881:55:125"},"variables":[{"name":"memberValue0_2","nativeSrc":"24847:14:125","nodeType":"YulTypedName","src":"24847:14:125","type":""},{"name":"memberValue1_2","nativeSrc":"24863:14:125","nodeType":"YulTypedName","src":"24863:14:125","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"24956:3:125","nodeType":"YulIdentifier","src":"24956:3:125"},{"kind":"number","nativeSrc":"24961:4:125","nodeType":"YulLiteral","src":"24961:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"24952:3:125","nodeType":"YulIdentifier","src":"24952:3:125"},"nativeSrc":"24952:14:125","nodeType":"YulFunctionCall","src":"24952:14:125"},{"arguments":[{"name":"tail_1","nativeSrc":"24972:6:125","nodeType":"YulIdentifier","src":"24972:6:125"},{"name":"pos","nativeSrc":"24980:3:125","nodeType":"YulIdentifier","src":"24980:3:125"}],"functionName":{"name":"sub","nativeSrc":"24968:3:125","nodeType":"YulIdentifier","src":"24968:3:125"},"nativeSrc":"24968:16:125","nodeType":"YulFunctionCall","src":"24968:16:125"}],"functionName":{"name":"mstore","nativeSrc":"24945:6:125","nodeType":"YulIdentifier","src":"24945:6:125"},"nativeSrc":"24945:40:125","nodeType":"YulFunctionCall","src":"24945:40:125"},"nativeSrc":"24945:40:125","nodeType":"YulExpressionStatement","src":"24945:40:125"},{"nativeSrc":"24994:79:125","nodeType":"YulVariableDeclaration","src":"24994:79:125","value":{"arguments":[{"name":"memberValue0_2","nativeSrc":"25034:14:125","nodeType":"YulIdentifier","src":"25034:14:125"},{"name":"memberValue1_2","nativeSrc":"25050:14:125","nodeType":"YulIdentifier","src":"25050:14:125"},{"name":"tail_1","nativeSrc":"25066:6:125","nodeType":"YulIdentifier","src":"25066:6:125"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"25008:25:125","nodeType":"YulIdentifier","src":"25008:25:125"},"nativeSrc":"25008:65:125","nodeType":"YulFunctionCall","src":"25008:65:125"},"variables":[{"name":"tail_2","nativeSrc":"24998:6:125","nodeType":"YulTypedName","src":"24998:6:125","type":""}]},{"nativeSrc":"25082:95:125","nodeType":"YulVariableDeclaration","src":"25082:95:125","value":{"arguments":[{"name":"value","nativeSrc":"25151:5:125","nodeType":"YulIdentifier","src":"25151:5:125"},{"arguments":[{"name":"value","nativeSrc":"25162:5:125","nodeType":"YulIdentifier","src":"25162:5:125"},{"kind":"number","nativeSrc":"25169:6:125","nodeType":"YulLiteral","src":"25169:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"25158:3:125","nodeType":"YulIdentifier","src":"25158:3:125"},"nativeSrc":"25158:18:125","nodeType":"YulFunctionCall","src":"25158:18:125"}],"functionName":{"name":"calldata_access_bytes_calldata","nativeSrc":"25120:30:125","nodeType":"YulIdentifier","src":"25120:30:125"},"nativeSrc":"25120:57:125","nodeType":"YulFunctionCall","src":"25120:57:125"},"variables":[{"name":"memberValue0_3","nativeSrc":"25086:14:125","nodeType":"YulTypedName","src":"25086:14:125","type":""},{"name":"memberValue1_3","nativeSrc":"25102:14:125","nodeType":"YulTypedName","src":"25102:14:125","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"25197:3:125","nodeType":"YulIdentifier","src":"25197:3:125"},{"kind":"number","nativeSrc":"25202:6:125","nodeType":"YulLiteral","src":"25202:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"25193:3:125","nodeType":"YulIdentifier","src":"25193:3:125"},"nativeSrc":"25193:16:125","nodeType":"YulFunctionCall","src":"25193:16:125"},{"arguments":[{"name":"tail_2","nativeSrc":"25215:6:125","nodeType":"YulIdentifier","src":"25215:6:125"},{"name":"pos","nativeSrc":"25223:3:125","nodeType":"YulIdentifier","src":"25223:3:125"}],"functionName":{"name":"sub","nativeSrc":"25211:3:125","nodeType":"YulIdentifier","src":"25211:3:125"},"nativeSrc":"25211:16:125","nodeType":"YulFunctionCall","src":"25211:16:125"}],"functionName":{"name":"mstore","nativeSrc":"25186:6:125","nodeType":"YulIdentifier","src":"25186:6:125"},"nativeSrc":"25186:42:125","nodeType":"YulFunctionCall","src":"25186:42:125"},"nativeSrc":"25186:42:125","nodeType":"YulExpressionStatement","src":"25186:42:125"},{"nativeSrc":"25237:72:125","nodeType":"YulAssignment","src":"25237:72:125","value":{"arguments":[{"name":"memberValue0_3","nativeSrc":"25270:14:125","nodeType":"YulIdentifier","src":"25270:14:125"},{"name":"memberValue1_3","nativeSrc":"25286:14:125","nodeType":"YulIdentifier","src":"25286:14:125"},{"name":"tail_2","nativeSrc":"25302:6:125","nodeType":"YulIdentifier","src":"25302:6:125"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"25244:25:125","nodeType":"YulIdentifier","src":"25244:25:125"},"nativeSrc":"25244:65:125","nodeType":"YulFunctionCall","src":"25244:65:125"},"variableNames":[{"name":"end","nativeSrc":"25237:3:125","nodeType":"YulIdentifier","src":"25237:3:125"}]}]},"name":"abi_encode_struct_PackedUserOperation_calldata","nativeSrc":"23771:1544:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"23827:5:125","nodeType":"YulTypedName","src":"23827:5:125","type":""},{"name":"pos","nativeSrc":"23834:3:125","nodeType":"YulTypedName","src":"23834:3:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"23842:3:125","nodeType":"YulTypedName","src":"23842:3:125","type":""}],"src":"23771:1544:125"},{"body":{"nativeSrc":"25613:909:125","nodeType":"YulBlock","src":"25613:909:125","statements":[{"nativeSrc":"25623:32:125","nodeType":"YulVariableDeclaration","src":"25623:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"25641:9:125","nodeType":"YulIdentifier","src":"25641:9:125"},{"kind":"number","nativeSrc":"25652:2:125","nodeType":"YulLiteral","src":"25652:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25637:3:125","nodeType":"YulIdentifier","src":"25637:3:125"},"nativeSrc":"25637:18:125","nodeType":"YulFunctionCall","src":"25637:18:125"},"variables":[{"name":"tail_1","nativeSrc":"25627:6:125","nodeType":"YulTypedName","src":"25627:6:125","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25671:9:125","nodeType":"YulIdentifier","src":"25671:9:125"},{"kind":"number","nativeSrc":"25682:2:125","nodeType":"YulLiteral","src":"25682:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"25664:6:125","nodeType":"YulIdentifier","src":"25664:6:125"},"nativeSrc":"25664:21:125","nodeType":"YulFunctionCall","src":"25664:21:125"},"nativeSrc":"25664:21:125","nodeType":"YulExpressionStatement","src":"25664:21:125"},{"nativeSrc":"25694:17:125","nodeType":"YulVariableDeclaration","src":"25694:17:125","value":{"name":"tail_1","nativeSrc":"25705:6:125","nodeType":"YulIdentifier","src":"25705:6:125"},"variables":[{"name":"pos","nativeSrc":"25698:3:125","nodeType":"YulTypedName","src":"25698:3:125","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"25727:6:125","nodeType":"YulIdentifier","src":"25727:6:125"},{"name":"value1","nativeSrc":"25735:6:125","nodeType":"YulIdentifier","src":"25735:6:125"}],"functionName":{"name":"mstore","nativeSrc":"25720:6:125","nodeType":"YulIdentifier","src":"25720:6:125"},"nativeSrc":"25720:22:125","nodeType":"YulFunctionCall","src":"25720:22:125"},"nativeSrc":"25720:22:125","nodeType":"YulExpressionStatement","src":"25720:22:125"},{"nativeSrc":"25751:25:125","nodeType":"YulAssignment","src":"25751:25:125","value":{"arguments":[{"name":"headStart","nativeSrc":"25762:9:125","nodeType":"YulIdentifier","src":"25762:9:125"},{"kind":"number","nativeSrc":"25773:2:125","nodeType":"YulLiteral","src":"25773:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25758:3:125","nodeType":"YulIdentifier","src":"25758:3:125"},"nativeSrc":"25758:18:125","nodeType":"YulFunctionCall","src":"25758:18:125"},"variableNames":[{"name":"pos","nativeSrc":"25751:3:125","nodeType":"YulIdentifier","src":"25751:3:125"}]},{"nativeSrc":"25785:53:125","nodeType":"YulVariableDeclaration","src":"25785:53:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25807:9:125","nodeType":"YulIdentifier","src":"25807:9:125"},{"arguments":[{"kind":"number","nativeSrc":"25822:1:125","nodeType":"YulLiteral","src":"25822:1:125","type":"","value":"5"},{"name":"value1","nativeSrc":"25825:6:125","nodeType":"YulIdentifier","src":"25825:6:125"}],"functionName":{"name":"shl","nativeSrc":"25818:3:125","nodeType":"YulIdentifier","src":"25818:3:125"},"nativeSrc":"25818:14:125","nodeType":"YulFunctionCall","src":"25818:14:125"}],"functionName":{"name":"add","nativeSrc":"25803:3:125","nodeType":"YulIdentifier","src":"25803:3:125"},"nativeSrc":"25803:30:125","nodeType":"YulFunctionCall","src":"25803:30:125"},{"kind":"number","nativeSrc":"25835:2:125","nodeType":"YulLiteral","src":"25835:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25799:3:125","nodeType":"YulIdentifier","src":"25799:3:125"},"nativeSrc":"25799:39:125","nodeType":"YulFunctionCall","src":"25799:39:125"},"variables":[{"name":"tail_2","nativeSrc":"25789:6:125","nodeType":"YulTypedName","src":"25789:6:125","type":""}]},{"nativeSrc":"25847:20:125","nodeType":"YulVariableDeclaration","src":"25847:20:125","value":{"name":"value0","nativeSrc":"25861:6:125","nodeType":"YulIdentifier","src":"25861:6:125"},"variables":[{"name":"srcPtr","nativeSrc":"25851:6:125","nodeType":"YulTypedName","src":"25851:6:125","type":""}]},{"nativeSrc":"25876:10:125","nodeType":"YulVariableDeclaration","src":"25876:10:125","value":{"kind":"number","nativeSrc":"25885:1:125","nodeType":"YulLiteral","src":"25885:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"25880:1:125","nodeType":"YulTypedName","src":"25880:1:125","type":""}]},{"nativeSrc":"25895:52:125","nodeType":"YulVariableDeclaration","src":"25895:52:125","value":{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"25913:12:125","nodeType":"YulIdentifier","src":"25913:12:125"},"nativeSrc":"25913:14:125","nodeType":"YulFunctionCall","src":"25913:14:125"},{"name":"value0","nativeSrc":"25929:6:125","nodeType":"YulIdentifier","src":"25929:6:125"}],"functionName":{"name":"sub","nativeSrc":"25909:3:125","nodeType":"YulIdentifier","src":"25909:3:125"},"nativeSrc":"25909:27:125","nodeType":"YulFunctionCall","src":"25909:27:125"},{"arguments":[{"kind":"number","nativeSrc":"25942:3:125","nodeType":"YulLiteral","src":"25942:3:125","type":"","value":"286"}],"functionName":{"name":"not","nativeSrc":"25938:3:125","nodeType":"YulIdentifier","src":"25938:3:125"},"nativeSrc":"25938:8:125","nodeType":"YulFunctionCall","src":"25938:8:125"}],"functionName":{"name":"add","nativeSrc":"25905:3:125","nodeType":"YulIdentifier","src":"25905:3:125"},"nativeSrc":"25905:42:125","nodeType":"YulFunctionCall","src":"25905:42:125"},"variables":[{"name":"_1","nativeSrc":"25899:2:125","nodeType":"YulTypedName","src":"25899:2:125","type":""}]},{"body":{"nativeSrc":"26005:384:125","nodeType":"YulBlock","src":"26005:384:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"26026:3:125","nodeType":"YulIdentifier","src":"26026:3:125"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"26039:6:125","nodeType":"YulIdentifier","src":"26039:6:125"},{"name":"headStart","nativeSrc":"26047:9:125","nodeType":"YulIdentifier","src":"26047:9:125"}],"functionName":{"name":"sub","nativeSrc":"26035:3:125","nodeType":"YulIdentifier","src":"26035:3:125"},"nativeSrc":"26035:22:125","nodeType":"YulFunctionCall","src":"26035:22:125"},{"arguments":[{"kind":"number","nativeSrc":"26063:2:125","nodeType":"YulLiteral","src":"26063:2:125","type":"","value":"95"}],"functionName":{"name":"not","nativeSrc":"26059:3:125","nodeType":"YulIdentifier","src":"26059:3:125"},"nativeSrc":"26059:7:125","nodeType":"YulFunctionCall","src":"26059:7:125"}],"functionName":{"name":"add","nativeSrc":"26031:3:125","nodeType":"YulIdentifier","src":"26031:3:125"},"nativeSrc":"26031:36:125","nodeType":"YulFunctionCall","src":"26031:36:125"}],"functionName":{"name":"mstore","nativeSrc":"26019:6:125","nodeType":"YulIdentifier","src":"26019:6:125"},"nativeSrc":"26019:49:125","nodeType":"YulFunctionCall","src":"26019:49:125"},"nativeSrc":"26019:49:125","nodeType":"YulExpressionStatement","src":"26019:49:125"},{"nativeSrc":"26081:46:125","nodeType":"YulVariableDeclaration","src":"26081:46:125","value":{"arguments":[{"name":"srcPtr","nativeSrc":"26120:6:125","nodeType":"YulIdentifier","src":"26120:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"26107:12:125","nodeType":"YulIdentifier","src":"26107:12:125"},"nativeSrc":"26107:20:125","nodeType":"YulFunctionCall","src":"26107:20:125"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"26085:18:125","nodeType":"YulTypedName","src":"26085:18:125","type":""}]},{"body":{"nativeSrc":"26179:16:125","nodeType":"YulBlock","src":"26179:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26188:1:125","nodeType":"YulLiteral","src":"26188:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"26191:1:125","nodeType":"YulLiteral","src":"26191:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"26181:6:125","nodeType":"YulIdentifier","src":"26181:6:125"},"nativeSrc":"26181:12:125","nodeType":"YulFunctionCall","src":"26181:12:125"},"nativeSrc":"26181:12:125","nodeType":"YulExpressionStatement","src":"26181:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"26154:18:125","nodeType":"YulIdentifier","src":"26154:18:125"},{"name":"_1","nativeSrc":"26174:2:125","nodeType":"YulIdentifier","src":"26174:2:125"}],"functionName":{"name":"slt","nativeSrc":"26150:3:125","nodeType":"YulIdentifier","src":"26150:3:125"},"nativeSrc":"26150:27:125","nodeType":"YulFunctionCall","src":"26150:27:125"}],"functionName":{"name":"iszero","nativeSrc":"26143:6:125","nodeType":"YulIdentifier","src":"26143:6:125"},"nativeSrc":"26143:35:125","nodeType":"YulFunctionCall","src":"26143:35:125"},"nativeSrc":"26140:55:125","nodeType":"YulIf","src":"26140:55:125"},{"nativeSrc":"26208:97:125","nodeType":"YulAssignment","src":"26208:97:125","value":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"26269:18:125","nodeType":"YulIdentifier","src":"26269:18:125"},{"name":"value0","nativeSrc":"26289:6:125","nodeType":"YulIdentifier","src":"26289:6:125"}],"functionName":{"name":"add","nativeSrc":"26265:3:125","nodeType":"YulIdentifier","src":"26265:3:125"},"nativeSrc":"26265:31:125","nodeType":"YulFunctionCall","src":"26265:31:125"},{"name":"tail_2","nativeSrc":"26298:6:125","nodeType":"YulIdentifier","src":"26298:6:125"}],"functionName":{"name":"abi_encode_struct_PackedUserOperation_calldata","nativeSrc":"26218:46:125","nodeType":"YulIdentifier","src":"26218:46:125"},"nativeSrc":"26218:87:125","nodeType":"YulFunctionCall","src":"26218:87:125"},"variableNames":[{"name":"tail_2","nativeSrc":"26208:6:125","nodeType":"YulIdentifier","src":"26208:6:125"}]},{"nativeSrc":"26318:27:125","nodeType":"YulAssignment","src":"26318:27:125","value":{"arguments":[{"name":"srcPtr","nativeSrc":"26332:6:125","nodeType":"YulIdentifier","src":"26332:6:125"},{"kind":"number","nativeSrc":"26340:4:125","nodeType":"YulLiteral","src":"26340:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"26328:3:125","nodeType":"YulIdentifier","src":"26328:3:125"},"nativeSrc":"26328:17:125","nodeType":"YulFunctionCall","src":"26328:17:125"},"variableNames":[{"name":"srcPtr","nativeSrc":"26318:6:125","nodeType":"YulIdentifier","src":"26318:6:125"}]},{"nativeSrc":"26358:21:125","nodeType":"YulAssignment","src":"26358:21:125","value":{"arguments":[{"name":"pos","nativeSrc":"26369:3:125","nodeType":"YulIdentifier","src":"26369:3:125"},{"kind":"number","nativeSrc":"26374:4:125","nodeType":"YulLiteral","src":"26374:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"26365:3:125","nodeType":"YulIdentifier","src":"26365:3:125"},"nativeSrc":"26365:14:125","nodeType":"YulFunctionCall","src":"26365:14:125"},"variableNames":[{"name":"pos","nativeSrc":"26358:3:125","nodeType":"YulIdentifier","src":"26358:3:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"25967:1:125","nodeType":"YulIdentifier","src":"25967:1:125"},{"name":"value1","nativeSrc":"25970:6:125","nodeType":"YulIdentifier","src":"25970:6:125"}],"functionName":{"name":"lt","nativeSrc":"25964:2:125","nodeType":"YulIdentifier","src":"25964:2:125"},"nativeSrc":"25964:13:125","nodeType":"YulFunctionCall","src":"25964:13:125"},"nativeSrc":"25956:433:125","nodeType":"YulForLoop","post":{"nativeSrc":"25978:18:125","nodeType":"YulBlock","src":"25978:18:125","statements":[{"nativeSrc":"25980:14:125","nodeType":"YulAssignment","src":"25980:14:125","value":{"arguments":[{"name":"i","nativeSrc":"25989:1:125","nodeType":"YulIdentifier","src":"25989:1:125"},{"kind":"number","nativeSrc":"25992:1:125","nodeType":"YulLiteral","src":"25992:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"25985:3:125","nodeType":"YulIdentifier","src":"25985:3:125"},"nativeSrc":"25985:9:125","nodeType":"YulFunctionCall","src":"25985:9:125"},"variableNames":[{"name":"i","nativeSrc":"25980:1:125","nodeType":"YulIdentifier","src":"25980:1:125"}]}]},"pre":{"nativeSrc":"25960:3:125","nodeType":"YulBlock","src":"25960:3:125","statements":[]},"src":"25956:433:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26409:9:125","nodeType":"YulIdentifier","src":"26409:9:125"},{"kind":"number","nativeSrc":"26420:4:125","nodeType":"YulLiteral","src":"26420:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"26405:3:125","nodeType":"YulIdentifier","src":"26405:3:125"},"nativeSrc":"26405:20:125","nodeType":"YulFunctionCall","src":"26405:20:125"},{"arguments":[{"name":"tail_2","nativeSrc":"26431:6:125","nodeType":"YulIdentifier","src":"26431:6:125"},{"name":"headStart","nativeSrc":"26439:9:125","nodeType":"YulIdentifier","src":"26439:9:125"}],"functionName":{"name":"sub","nativeSrc":"26427:3:125","nodeType":"YulIdentifier","src":"26427:3:125"},"nativeSrc":"26427:22:125","nodeType":"YulFunctionCall","src":"26427:22:125"}],"functionName":{"name":"mstore","nativeSrc":"26398:6:125","nodeType":"YulIdentifier","src":"26398:6:125"},"nativeSrc":"26398:52:125","nodeType":"YulFunctionCall","src":"26398:52:125"},"nativeSrc":"26398:52:125","nodeType":"YulExpressionStatement","src":"26398:52:125"},{"nativeSrc":"26459:57:125","nodeType":"YulAssignment","src":"26459:57:125","value":{"arguments":[{"name":"value2","nativeSrc":"26493:6:125","nodeType":"YulIdentifier","src":"26493:6:125"},{"name":"value3","nativeSrc":"26501:6:125","nodeType":"YulIdentifier","src":"26501:6:125"},{"name":"tail_2","nativeSrc":"26509:6:125","nodeType":"YulIdentifier","src":"26509:6:125"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"26467:25:125","nodeType":"YulIdentifier","src":"26467:25:125"},"nativeSrc":"26467:49:125","nodeType":"YulFunctionCall","src":"26467:49:125"},"variableNames":[{"name":"tail","nativeSrc":"26459:4:125","nodeType":"YulIdentifier","src":"26459:4:125"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr_t_bytes_calldata_ptr__to_t_array$_t_struct$_PackedUserOperation_$3748_memory_ptr_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"25320:1202:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25558:9:125","nodeType":"YulTypedName","src":"25558:9:125","type":""},{"name":"value3","nativeSrc":"25569:6:125","nodeType":"YulTypedName","src":"25569:6:125","type":""},{"name":"value2","nativeSrc":"25577:6:125","nodeType":"YulTypedName","src":"25577:6:125","type":""},{"name":"value1","nativeSrc":"25585:6:125","nodeType":"YulTypedName","src":"25585:6:125","type":""},{"name":"value0","nativeSrc":"25593:6:125","nodeType":"YulTypedName","src":"25593:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25604:4:125","nodeType":"YulTypedName","src":"25604:4:125","type":""}],"src":"25320:1202:125"},{"body":{"nativeSrc":"26559:95:125","nodeType":"YulBlock","src":"26559:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26576:1:125","nodeType":"YulLiteral","src":"26576:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"26583:3:125","nodeType":"YulLiteral","src":"26583:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"26588:10:125","nodeType":"YulLiteral","src":"26588:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"26579:3:125","nodeType":"YulIdentifier","src":"26579:3:125"},"nativeSrc":"26579:20:125","nodeType":"YulFunctionCall","src":"26579:20:125"}],"functionName":{"name":"mstore","nativeSrc":"26569:6:125","nodeType":"YulIdentifier","src":"26569:6:125"},"nativeSrc":"26569:31:125","nodeType":"YulFunctionCall","src":"26569:31:125"},"nativeSrc":"26569:31:125","nodeType":"YulExpressionStatement","src":"26569:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"26616:1:125","nodeType":"YulLiteral","src":"26616:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"26619:4:125","nodeType":"YulLiteral","src":"26619:4:125","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"26609:6:125","nodeType":"YulIdentifier","src":"26609:6:125"},"nativeSrc":"26609:15:125","nodeType":"YulFunctionCall","src":"26609:15:125"},"nativeSrc":"26609:15:125","nodeType":"YulExpressionStatement","src":"26609:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"26640:1:125","nodeType":"YulLiteral","src":"26640:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"26643:4:125","nodeType":"YulLiteral","src":"26643:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"26633:6:125","nodeType":"YulIdentifier","src":"26633:6:125"},"nativeSrc":"26633:15:125","nodeType":"YulFunctionCall","src":"26633:15:125"},"nativeSrc":"26633:15:125","nodeType":"YulExpressionStatement","src":"26633:15:125"}]},"name":"panic_error_0x21","nativeSrc":"26527:127:125","nodeType":"YulFunctionDefinition","src":"26527:127:125"},{"body":{"nativeSrc":"26875:382:125","nodeType":"YulBlock","src":"26875:382:125","statements":[{"body":{"nativeSrc":"26918:111:125","nodeType":"YulBlock","src":"26918:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26939:1:125","nodeType":"YulLiteral","src":"26939:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"26946:3:125","nodeType":"YulLiteral","src":"26946:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"26951:10:125","nodeType":"YulLiteral","src":"26951:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"26942:3:125","nodeType":"YulIdentifier","src":"26942:3:125"},"nativeSrc":"26942:20:125","nodeType":"YulFunctionCall","src":"26942:20:125"}],"functionName":{"name":"mstore","nativeSrc":"26932:6:125","nodeType":"YulIdentifier","src":"26932:6:125"},"nativeSrc":"26932:31:125","nodeType":"YulFunctionCall","src":"26932:31:125"},"nativeSrc":"26932:31:125","nodeType":"YulExpressionStatement","src":"26932:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"26983:1:125","nodeType":"YulLiteral","src":"26983:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"26986:4:125","nodeType":"YulLiteral","src":"26986:4:125","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"26976:6:125","nodeType":"YulIdentifier","src":"26976:6:125"},"nativeSrc":"26976:15:125","nodeType":"YulFunctionCall","src":"26976:15:125"},"nativeSrc":"26976:15:125","nodeType":"YulExpressionStatement","src":"26976:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"27011:1:125","nodeType":"YulLiteral","src":"27011:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"27014:4:125","nodeType":"YulLiteral","src":"27014:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"27004:6:125","nodeType":"YulIdentifier","src":"27004:6:125"},"nativeSrc":"27004:15:125","nodeType":"YulFunctionCall","src":"27004:15:125"},"nativeSrc":"27004:15:125","nodeType":"YulExpressionStatement","src":"27004:15:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"26898:6:125","nodeType":"YulIdentifier","src":"26898:6:125"},{"kind":"number","nativeSrc":"26906:1:125","nodeType":"YulLiteral","src":"26906:1:125","type":"","value":"3"}],"functionName":{"name":"lt","nativeSrc":"26895:2:125","nodeType":"YulIdentifier","src":"26895:2:125"},"nativeSrc":"26895:13:125","nodeType":"YulFunctionCall","src":"26895:13:125"}],"functionName":{"name":"iszero","nativeSrc":"26888:6:125","nodeType":"YulIdentifier","src":"26888:6:125"},"nativeSrc":"26888:21:125","nodeType":"YulFunctionCall","src":"26888:21:125"},"nativeSrc":"26885:144:125","nodeType":"YulIf","src":"26885:144:125"},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"27045:9:125","nodeType":"YulIdentifier","src":"27045:9:125"},{"name":"value0","nativeSrc":"27056:6:125","nodeType":"YulIdentifier","src":"27056:6:125"}],"functionName":{"name":"mstore","nativeSrc":"27038:6:125","nodeType":"YulIdentifier","src":"27038:6:125"},"nativeSrc":"27038:25:125","nodeType":"YulFunctionCall","src":"27038:25:125"},"nativeSrc":"27038:25:125","nodeType":"YulExpressionStatement","src":"27038:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27083:9:125","nodeType":"YulIdentifier","src":"27083:9:125"},{"kind":"number","nativeSrc":"27094:2:125","nodeType":"YulLiteral","src":"27094:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27079:3:125","nodeType":"YulIdentifier","src":"27079:3:125"},"nativeSrc":"27079:18:125","nodeType":"YulFunctionCall","src":"27079:18:125"},{"kind":"number","nativeSrc":"27099:3:125","nodeType":"YulLiteral","src":"27099:3:125","type":"","value":"128"}],"functionName":{"name":"mstore","nativeSrc":"27072:6:125","nodeType":"YulIdentifier","src":"27072:6:125"},"nativeSrc":"27072:31:125","nodeType":"YulFunctionCall","src":"27072:31:125"},"nativeSrc":"27072:31:125","nodeType":"YulExpressionStatement","src":"27072:31:125"},{"nativeSrc":"27112:53:125","nodeType":"YulAssignment","src":"27112:53:125","value":{"arguments":[{"name":"value1","nativeSrc":"27137:6:125","nodeType":"YulIdentifier","src":"27137:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"27149:9:125","nodeType":"YulIdentifier","src":"27149:9:125"},{"kind":"number","nativeSrc":"27160:3:125","nodeType":"YulLiteral","src":"27160:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"27145:3:125","nodeType":"YulIdentifier","src":"27145:3:125"},"nativeSrc":"27145:19:125","nodeType":"YulFunctionCall","src":"27145:19:125"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"27120:16:125","nodeType":"YulIdentifier","src":"27120:16:125"},"nativeSrc":"27120:45:125","nodeType":"YulFunctionCall","src":"27120:45:125"},"variableNames":[{"name":"tail","nativeSrc":"27112:4:125","nodeType":"YulIdentifier","src":"27112:4:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27185:9:125","nodeType":"YulIdentifier","src":"27185:9:125"},{"kind":"number","nativeSrc":"27196:2:125","nodeType":"YulLiteral","src":"27196:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"27181:3:125","nodeType":"YulIdentifier","src":"27181:3:125"},"nativeSrc":"27181:18:125","nodeType":"YulFunctionCall","src":"27181:18:125"},{"name":"value2","nativeSrc":"27201:6:125","nodeType":"YulIdentifier","src":"27201:6:125"}],"functionName":{"name":"mstore","nativeSrc":"27174:6:125","nodeType":"YulIdentifier","src":"27174:6:125"},"nativeSrc":"27174:34:125","nodeType":"YulFunctionCall","src":"27174:34:125"},"nativeSrc":"27174:34:125","nodeType":"YulExpressionStatement","src":"27174:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27228:9:125","nodeType":"YulIdentifier","src":"27228:9:125"},{"kind":"number","nativeSrc":"27239:2:125","nodeType":"YulLiteral","src":"27239:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"27224:3:125","nodeType":"YulIdentifier","src":"27224:3:125"},"nativeSrc":"27224:18:125","nodeType":"YulFunctionCall","src":"27224:18:125"},{"name":"value3","nativeSrc":"27244:6:125","nodeType":"YulIdentifier","src":"27244:6:125"}],"functionName":{"name":"mstore","nativeSrc":"27217:6:125","nodeType":"YulIdentifier","src":"27217:6:125"},"nativeSrc":"27217:34:125","nodeType":"YulFunctionCall","src":"27217:34:125"},"nativeSrc":"27217:34:125","nodeType":"YulExpressionStatement","src":"27217:34:125"}]},"name":"abi_encode_tuple_t_enum$_PostOpMode_$3593_t_bytes_memory_ptr_t_uint256_t_uint256__to_t_uint8_t_bytes_memory_ptr_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"26659:598:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26820:9:125","nodeType":"YulTypedName","src":"26820:9:125","type":""},{"name":"value3","nativeSrc":"26831:6:125","nodeType":"YulTypedName","src":"26831:6:125","type":""},{"name":"value2","nativeSrc":"26839:6:125","nodeType":"YulTypedName","src":"26839:6:125","type":""},{"name":"value1","nativeSrc":"26847:6:125","nodeType":"YulTypedName","src":"26847:6:125","type":""},{"name":"value0","nativeSrc":"26855:6:125","nodeType":"YulTypedName","src":"26855:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"26866:4:125","nodeType":"YulTypedName","src":"26866:4:125","type":""}],"src":"26659:598:125"},{"body":{"nativeSrc":"27381:98:125","nodeType":"YulBlock","src":"27381:98:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"27398:9:125","nodeType":"YulIdentifier","src":"27398:9:125"},{"kind":"number","nativeSrc":"27409:2:125","nodeType":"YulLiteral","src":"27409:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"27391:6:125","nodeType":"YulIdentifier","src":"27391:6:125"},"nativeSrc":"27391:21:125","nodeType":"YulFunctionCall","src":"27391:21:125"},"nativeSrc":"27391:21:125","nodeType":"YulExpressionStatement","src":"27391:21:125"},{"nativeSrc":"27421:52:125","nodeType":"YulAssignment","src":"27421:52:125","value":{"arguments":[{"name":"value0","nativeSrc":"27446:6:125","nodeType":"YulIdentifier","src":"27446:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"27458:9:125","nodeType":"YulIdentifier","src":"27458:9:125"},{"kind":"number","nativeSrc":"27469:2:125","nodeType":"YulLiteral","src":"27469:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27454:3:125","nodeType":"YulIdentifier","src":"27454:3:125"},"nativeSrc":"27454:18:125","nodeType":"YulFunctionCall","src":"27454:18:125"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"27429:16:125","nodeType":"YulIdentifier","src":"27429:16:125"},"nativeSrc":"27429:44:125","nodeType":"YulFunctionCall","src":"27429:44:125"},"variableNames":[{"name":"tail","nativeSrc":"27421:4:125","nodeType":"YulIdentifier","src":"27421:4:125"}]}]},"name":"abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"27262:217:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27350:9:125","nodeType":"YulTypedName","src":"27350:9:125","type":""},{"name":"value0","nativeSrc":"27361:6:125","nodeType":"YulTypedName","src":"27361:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"27372:4:125","nodeType":"YulTypedName","src":"27372:4:125","type":""}],"src":"27262:217:125"},{"body":{"nativeSrc":"27658:174:125","nodeType":"YulBlock","src":"27658:174:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"27675:9:125","nodeType":"YulIdentifier","src":"27675:9:125"},{"kind":"number","nativeSrc":"27686:2:125","nodeType":"YulLiteral","src":"27686:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"27668:6:125","nodeType":"YulIdentifier","src":"27668:6:125"},"nativeSrc":"27668:21:125","nodeType":"YulFunctionCall","src":"27668:21:125"},"nativeSrc":"27668:21:125","nodeType":"YulExpressionStatement","src":"27668:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27709:9:125","nodeType":"YulIdentifier","src":"27709:9:125"},{"kind":"number","nativeSrc":"27720:2:125","nodeType":"YulLiteral","src":"27720:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27705:3:125","nodeType":"YulIdentifier","src":"27705:3:125"},"nativeSrc":"27705:18:125","nodeType":"YulFunctionCall","src":"27705:18:125"},{"kind":"number","nativeSrc":"27725:2:125","nodeType":"YulLiteral","src":"27725:2:125","type":"","value":"24"}],"functionName":{"name":"mstore","nativeSrc":"27698:6:125","nodeType":"YulIdentifier","src":"27698:6:125"},"nativeSrc":"27698:30:125","nodeType":"YulFunctionCall","src":"27698:30:125"},"nativeSrc":"27698:30:125","nodeType":"YulExpressionStatement","src":"27698:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27748:9:125","nodeType":"YulIdentifier","src":"27748:9:125"},{"kind":"number","nativeSrc":"27759:2:125","nodeType":"YulLiteral","src":"27759:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"27744:3:125","nodeType":"YulIdentifier","src":"27744:3:125"},"nativeSrc":"27744:18:125","nodeType":"YulFunctionCall","src":"27744:18:125"},{"hexValue":"41413934206761732076616c756573206f766572666c6f77","kind":"string","nativeSrc":"27764:26:125","nodeType":"YulLiteral","src":"27764:26:125","type":"","value":"AA94 gas values overflow"}],"functionName":{"name":"mstore","nativeSrc":"27737:6:125","nodeType":"YulIdentifier","src":"27737:6:125"},"nativeSrc":"27737:54:125","nodeType":"YulFunctionCall","src":"27737:54:125"},"nativeSrc":"27737:54:125","nodeType":"YulExpressionStatement","src":"27737:54:125"},{"nativeSrc":"27800:26:125","nodeType":"YulAssignment","src":"27800:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"27812:9:125","nodeType":"YulIdentifier","src":"27812:9:125"},{"kind":"number","nativeSrc":"27823:2:125","nodeType":"YulLiteral","src":"27823:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"27808:3:125","nodeType":"YulIdentifier","src":"27808:3:125"},"nativeSrc":"27808:18:125","nodeType":"YulFunctionCall","src":"27808:18:125"},"variableNames":[{"name":"tail","nativeSrc":"27800:4:125","nodeType":"YulIdentifier","src":"27800:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_2454d602dd1245dd701375973b2bac347a9e27dc7542cb5ffbdc114cb2232f69__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"27484:348:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27635:9:125","nodeType":"YulTypedName","src":"27635:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"27649:4:125","nodeType":"YulTypedName","src":"27649:4:125","type":""}],"src":"27484:348:125"},{"body":{"nativeSrc":"28039:220:125","nodeType":"YulBlock","src":"28039:220:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28056:9:125","nodeType":"YulIdentifier","src":"28056:9:125"},{"name":"value0","nativeSrc":"28067:6:125","nodeType":"YulIdentifier","src":"28067:6:125"}],"functionName":{"name":"mstore","nativeSrc":"28049:6:125","nodeType":"YulIdentifier","src":"28049:6:125"},"nativeSrc":"28049:25:125","nodeType":"YulFunctionCall","src":"28049:25:125"},"nativeSrc":"28049:25:125","nodeType":"YulExpressionStatement","src":"28049:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28094:9:125","nodeType":"YulIdentifier","src":"28094:9:125"},{"kind":"number","nativeSrc":"28105:2:125","nodeType":"YulLiteral","src":"28105:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28090:3:125","nodeType":"YulIdentifier","src":"28090:3:125"},"nativeSrc":"28090:18:125","nodeType":"YulFunctionCall","src":"28090:18:125"},{"kind":"number","nativeSrc":"28110:2:125","nodeType":"YulLiteral","src":"28110:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"28083:6:125","nodeType":"YulIdentifier","src":"28083:6:125"},"nativeSrc":"28083:30:125","nodeType":"YulFunctionCall","src":"28083:30:125"},"nativeSrc":"28083:30:125","nodeType":"YulExpressionStatement","src":"28083:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28133:9:125","nodeType":"YulIdentifier","src":"28133:9:125"},{"kind":"number","nativeSrc":"28144:2:125","nodeType":"YulLiteral","src":"28144:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28129:3:125","nodeType":"YulIdentifier","src":"28129:3:125"},"nativeSrc":"28129:18:125","nodeType":"YulFunctionCall","src":"28129:18:125"},{"kind":"number","nativeSrc":"28149:2:125","nodeType":"YulLiteral","src":"28149:2:125","type":"","value":"26"}],"functionName":{"name":"mstore","nativeSrc":"28122:6:125","nodeType":"YulIdentifier","src":"28122:6:125"},"nativeSrc":"28122:30:125","nodeType":"YulFunctionCall","src":"28122:30:125"},"nativeSrc":"28122:30:125","nodeType":"YulExpressionStatement","src":"28122:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28172:9:125","nodeType":"YulIdentifier","src":"28172:9:125"},{"kind":"number","nativeSrc":"28183:2:125","nodeType":"YulLiteral","src":"28183:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"28168:3:125","nodeType":"YulIdentifier","src":"28168:3:125"},"nativeSrc":"28168:18:125","nodeType":"YulFunctionCall","src":"28168:18:125"},{"hexValue":"4141323520696e76616c6964206163636f756e74206e6f6e6365","kind":"string","nativeSrc":"28188:28:125","nodeType":"YulLiteral","src":"28188:28:125","type":"","value":"AA25 invalid account nonce"}],"functionName":{"name":"mstore","nativeSrc":"28161:6:125","nodeType":"YulIdentifier","src":"28161:6:125"},"nativeSrc":"28161:56:125","nodeType":"YulFunctionCall","src":"28161:56:125"},"nativeSrc":"28161:56:125","nodeType":"YulExpressionStatement","src":"28161:56:125"},{"nativeSrc":"28226:27:125","nodeType":"YulAssignment","src":"28226:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"28238:9:125","nodeType":"YulIdentifier","src":"28238:9:125"},{"kind":"number","nativeSrc":"28249:3:125","nodeType":"YulLiteral","src":"28249:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"28234:3:125","nodeType":"YulIdentifier","src":"28234:3:125"},"nativeSrc":"28234:19:125","nodeType":"YulFunctionCall","src":"28234:19:125"},"variableNames":[{"name":"tail","nativeSrc":"28226:4:125","nodeType":"YulIdentifier","src":"28226:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_1a6d2773a48550bbfcfd396dd79645bef61ab18efc53f13933af43bfa63cc5b5__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"27837:422:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28008:9:125","nodeType":"YulTypedName","src":"28008:9:125","type":""},{"name":"value0","nativeSrc":"28019:6:125","nodeType":"YulTypedName","src":"28019:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28030:4:125","nodeType":"YulTypedName","src":"28030:4:125","type":""}],"src":"27837:422:125"},{"body":{"nativeSrc":"28466:224:125","nodeType":"YulBlock","src":"28466:224:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28483:9:125","nodeType":"YulIdentifier","src":"28483:9:125"},{"name":"value0","nativeSrc":"28494:6:125","nodeType":"YulIdentifier","src":"28494:6:125"}],"functionName":{"name":"mstore","nativeSrc":"28476:6:125","nodeType":"YulIdentifier","src":"28476:6:125"},"nativeSrc":"28476:25:125","nodeType":"YulFunctionCall","src":"28476:25:125"},"nativeSrc":"28476:25:125","nodeType":"YulExpressionStatement","src":"28476:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28521:9:125","nodeType":"YulIdentifier","src":"28521:9:125"},{"kind":"number","nativeSrc":"28532:2:125","nodeType":"YulLiteral","src":"28532:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28517:3:125","nodeType":"YulIdentifier","src":"28517:3:125"},"nativeSrc":"28517:18:125","nodeType":"YulFunctionCall","src":"28517:18:125"},{"kind":"number","nativeSrc":"28537:2:125","nodeType":"YulLiteral","src":"28537:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"28510:6:125","nodeType":"YulIdentifier","src":"28510:6:125"},"nativeSrc":"28510:30:125","nodeType":"YulFunctionCall","src":"28510:30:125"},"nativeSrc":"28510:30:125","nodeType":"YulExpressionStatement","src":"28510:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28560:9:125","nodeType":"YulIdentifier","src":"28560:9:125"},{"kind":"number","nativeSrc":"28571:2:125","nodeType":"YulLiteral","src":"28571:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28556:3:125","nodeType":"YulIdentifier","src":"28556:3:125"},"nativeSrc":"28556:18:125","nodeType":"YulFunctionCall","src":"28556:18:125"},{"kind":"number","nativeSrc":"28576:2:125","nodeType":"YulLiteral","src":"28576:2:125","type":"","value":"30"}],"functionName":{"name":"mstore","nativeSrc":"28549:6:125","nodeType":"YulIdentifier","src":"28549:6:125"},"nativeSrc":"28549:30:125","nodeType":"YulFunctionCall","src":"28549:30:125"},"nativeSrc":"28549:30:125","nodeType":"YulExpressionStatement","src":"28549:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28599:9:125","nodeType":"YulIdentifier","src":"28599:9:125"},{"kind":"number","nativeSrc":"28610:2:125","nodeType":"YulLiteral","src":"28610:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"28595:3:125","nodeType":"YulIdentifier","src":"28595:3:125"},"nativeSrc":"28595:18:125","nodeType":"YulFunctionCall","src":"28595:18:125"},{"hexValue":"41413236206f76657220766572696669636174696f6e4761734c696d6974","kind":"string","nativeSrc":"28615:32:125","nodeType":"YulLiteral","src":"28615:32:125","type":"","value":"AA26 over verificationGasLimit"}],"functionName":{"name":"mstore","nativeSrc":"28588:6:125","nodeType":"YulIdentifier","src":"28588:6:125"},"nativeSrc":"28588:60:125","nodeType":"YulFunctionCall","src":"28588:60:125"},"nativeSrc":"28588:60:125","nodeType":"YulExpressionStatement","src":"28588:60:125"},{"nativeSrc":"28657:27:125","nodeType":"YulAssignment","src":"28657:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"28669:9:125","nodeType":"YulIdentifier","src":"28669:9:125"},{"kind":"number","nativeSrc":"28680:3:125","nodeType":"YulLiteral","src":"28680:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"28665:3:125","nodeType":"YulIdentifier","src":"28665:3:125"},"nativeSrc":"28665:19:125","nodeType":"YulFunctionCall","src":"28665:19:125"},"variableNames":[{"name":"tail","nativeSrc":"28657:4:125","nodeType":"YulIdentifier","src":"28657:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_0959e90f1dbec1bb0766cfc7e4a6f91da34d207dfa787b59651acf3926686974__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"28264:426:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28435:9:125","nodeType":"YulTypedName","src":"28435:9:125","type":""},{"name":"value0","nativeSrc":"28446:6:125","nodeType":"YulTypedName","src":"28446:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28457:4:125","nodeType":"YulTypedName","src":"28457:4:125","type":""}],"src":"28264:426:125"},{"body":{"nativeSrc":"28897:214:125","nodeType":"YulBlock","src":"28897:214:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28914:9:125","nodeType":"YulIdentifier","src":"28914:9:125"},{"name":"value0","nativeSrc":"28925:6:125","nodeType":"YulIdentifier","src":"28925:6:125"}],"functionName":{"name":"mstore","nativeSrc":"28907:6:125","nodeType":"YulIdentifier","src":"28907:6:125"},"nativeSrc":"28907:25:125","nodeType":"YulFunctionCall","src":"28907:25:125"},"nativeSrc":"28907:25:125","nodeType":"YulExpressionStatement","src":"28907:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28952:9:125","nodeType":"YulIdentifier","src":"28952:9:125"},{"kind":"number","nativeSrc":"28963:2:125","nodeType":"YulLiteral","src":"28963:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28948:3:125","nodeType":"YulIdentifier","src":"28948:3:125"},"nativeSrc":"28948:18:125","nodeType":"YulFunctionCall","src":"28948:18:125"},{"kind":"number","nativeSrc":"28968:2:125","nodeType":"YulLiteral","src":"28968:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"28941:6:125","nodeType":"YulIdentifier","src":"28941:6:125"},"nativeSrc":"28941:30:125","nodeType":"YulFunctionCall","src":"28941:30:125"},"nativeSrc":"28941:30:125","nodeType":"YulExpressionStatement","src":"28941:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28991:9:125","nodeType":"YulIdentifier","src":"28991:9:125"},{"kind":"number","nativeSrc":"29002:2:125","nodeType":"YulLiteral","src":"29002:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28987:3:125","nodeType":"YulIdentifier","src":"28987:3:125"},"nativeSrc":"28987:18:125","nodeType":"YulFunctionCall","src":"28987:18:125"},{"kind":"number","nativeSrc":"29007:2:125","nodeType":"YulLiteral","src":"29007:2:125","type":"","value":"20"}],"functionName":{"name":"mstore","nativeSrc":"28980:6:125","nodeType":"YulIdentifier","src":"28980:6:125"},"nativeSrc":"28980:30:125","nodeType":"YulFunctionCall","src":"28980:30:125"},"nativeSrc":"28980:30:125","nodeType":"YulExpressionStatement","src":"28980:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29030:9:125","nodeType":"YulIdentifier","src":"29030:9:125"},{"kind":"number","nativeSrc":"29041:2:125","nodeType":"YulLiteral","src":"29041:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"29026:3:125","nodeType":"YulIdentifier","src":"29026:3:125"},"nativeSrc":"29026:18:125","nodeType":"YulFunctionCall","src":"29026:18:125"},{"hexValue":"41413234207369676e6174757265206572726f72","kind":"string","nativeSrc":"29046:22:125","nodeType":"YulLiteral","src":"29046:22:125","type":"","value":"AA24 signature error"}],"functionName":{"name":"mstore","nativeSrc":"29019:6:125","nodeType":"YulIdentifier","src":"29019:6:125"},"nativeSrc":"29019:50:125","nodeType":"YulFunctionCall","src":"29019:50:125"},"nativeSrc":"29019:50:125","nodeType":"YulExpressionStatement","src":"29019:50:125"},{"nativeSrc":"29078:27:125","nodeType":"YulAssignment","src":"29078:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"29090:9:125","nodeType":"YulIdentifier","src":"29090:9:125"},{"kind":"number","nativeSrc":"29101:3:125","nodeType":"YulLiteral","src":"29101:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"29086:3:125","nodeType":"YulIdentifier","src":"29086:3:125"},"nativeSrc":"29086:19:125","nodeType":"YulFunctionCall","src":"29086:19:125"},"variableNames":[{"name":"tail","nativeSrc":"29078:4:125","nodeType":"YulIdentifier","src":"29078:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_230fad9992163f7c7bca82563472469d2ae8f1696105d00fd8b1abf9e366de4e__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"28695:416:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28866:9:125","nodeType":"YulTypedName","src":"28866:9:125","type":""},{"name":"value0","nativeSrc":"28877:6:125","nodeType":"YulTypedName","src":"28877:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28888:4:125","nodeType":"YulTypedName","src":"28888:4:125","type":""}],"src":"28695:416:125"},{"body":{"nativeSrc":"29318:217:125","nodeType":"YulBlock","src":"29318:217:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29335:9:125","nodeType":"YulIdentifier","src":"29335:9:125"},{"name":"value0","nativeSrc":"29346:6:125","nodeType":"YulIdentifier","src":"29346:6:125"}],"functionName":{"name":"mstore","nativeSrc":"29328:6:125","nodeType":"YulIdentifier","src":"29328:6:125"},"nativeSrc":"29328:25:125","nodeType":"YulFunctionCall","src":"29328:25:125"},"nativeSrc":"29328:25:125","nodeType":"YulExpressionStatement","src":"29328:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29373:9:125","nodeType":"YulIdentifier","src":"29373:9:125"},{"kind":"number","nativeSrc":"29384:2:125","nodeType":"YulLiteral","src":"29384:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29369:3:125","nodeType":"YulIdentifier","src":"29369:3:125"},"nativeSrc":"29369:18:125","nodeType":"YulFunctionCall","src":"29369:18:125"},{"kind":"number","nativeSrc":"29389:2:125","nodeType":"YulLiteral","src":"29389:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"29362:6:125","nodeType":"YulIdentifier","src":"29362:6:125"},"nativeSrc":"29362:30:125","nodeType":"YulFunctionCall","src":"29362:30:125"},"nativeSrc":"29362:30:125","nodeType":"YulExpressionStatement","src":"29362:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29412:9:125","nodeType":"YulIdentifier","src":"29412:9:125"},{"kind":"number","nativeSrc":"29423:2:125","nodeType":"YulLiteral","src":"29423:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29408:3:125","nodeType":"YulIdentifier","src":"29408:3:125"},"nativeSrc":"29408:18:125","nodeType":"YulFunctionCall","src":"29408:18:125"},{"kind":"number","nativeSrc":"29428:2:125","nodeType":"YulLiteral","src":"29428:2:125","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"29401:6:125","nodeType":"YulIdentifier","src":"29401:6:125"},"nativeSrc":"29401:30:125","nodeType":"YulFunctionCall","src":"29401:30:125"},"nativeSrc":"29401:30:125","nodeType":"YulExpressionStatement","src":"29401:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29451:9:125","nodeType":"YulIdentifier","src":"29451:9:125"},{"kind":"number","nativeSrc":"29462:2:125","nodeType":"YulLiteral","src":"29462:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"29447:3:125","nodeType":"YulIdentifier","src":"29447:3:125"},"nativeSrc":"29447:18:125","nodeType":"YulFunctionCall","src":"29447:18:125"},{"hexValue":"414132322065787069726564206f72206e6f7420647565","kind":"string","nativeSrc":"29467:25:125","nodeType":"YulLiteral","src":"29467:25:125","type":"","value":"AA22 expired or not due"}],"functionName":{"name":"mstore","nativeSrc":"29440:6:125","nodeType":"YulIdentifier","src":"29440:6:125"},"nativeSrc":"29440:53:125","nodeType":"YulFunctionCall","src":"29440:53:125"},"nativeSrc":"29440:53:125","nodeType":"YulExpressionStatement","src":"29440:53:125"},{"nativeSrc":"29502:27:125","nodeType":"YulAssignment","src":"29502:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"29514:9:125","nodeType":"YulIdentifier","src":"29514:9:125"},{"kind":"number","nativeSrc":"29525:3:125","nodeType":"YulLiteral","src":"29525:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"29510:3:125","nodeType":"YulIdentifier","src":"29510:3:125"},"nativeSrc":"29510:19:125","nodeType":"YulFunctionCall","src":"29510:19:125"},"variableNames":[{"name":"tail","nativeSrc":"29502:4:125","nodeType":"YulIdentifier","src":"29502:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_4f6af422606d6fab6224761f4f503b9674de8994d20a0052616d3524b670e766__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"29116:419:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29287:9:125","nodeType":"YulTypedName","src":"29287:9:125","type":""},{"name":"value0","nativeSrc":"29298:6:125","nodeType":"YulTypedName","src":"29298:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29309:4:125","nodeType":"YulTypedName","src":"29309:4:125","type":""}],"src":"29116:419:125"},{"body":{"nativeSrc":"29742:214:125","nodeType":"YulBlock","src":"29742:214:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29759:9:125","nodeType":"YulIdentifier","src":"29759:9:125"},{"name":"value0","nativeSrc":"29770:6:125","nodeType":"YulIdentifier","src":"29770:6:125"}],"functionName":{"name":"mstore","nativeSrc":"29752:6:125","nodeType":"YulIdentifier","src":"29752:6:125"},"nativeSrc":"29752:25:125","nodeType":"YulFunctionCall","src":"29752:25:125"},"nativeSrc":"29752:25:125","nodeType":"YulExpressionStatement","src":"29752:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29797:9:125","nodeType":"YulIdentifier","src":"29797:9:125"},{"kind":"number","nativeSrc":"29808:2:125","nodeType":"YulLiteral","src":"29808:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29793:3:125","nodeType":"YulIdentifier","src":"29793:3:125"},"nativeSrc":"29793:18:125","nodeType":"YulFunctionCall","src":"29793:18:125"},{"kind":"number","nativeSrc":"29813:2:125","nodeType":"YulLiteral","src":"29813:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"29786:6:125","nodeType":"YulIdentifier","src":"29786:6:125"},"nativeSrc":"29786:30:125","nodeType":"YulFunctionCall","src":"29786:30:125"},"nativeSrc":"29786:30:125","nodeType":"YulExpressionStatement","src":"29786:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29836:9:125","nodeType":"YulIdentifier","src":"29836:9:125"},{"kind":"number","nativeSrc":"29847:2:125","nodeType":"YulLiteral","src":"29847:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29832:3:125","nodeType":"YulIdentifier","src":"29832:3:125"},"nativeSrc":"29832:18:125","nodeType":"YulFunctionCall","src":"29832:18:125"},{"kind":"number","nativeSrc":"29852:2:125","nodeType":"YulLiteral","src":"29852:2:125","type":"","value":"20"}],"functionName":{"name":"mstore","nativeSrc":"29825:6:125","nodeType":"YulIdentifier","src":"29825:6:125"},"nativeSrc":"29825:30:125","nodeType":"YulFunctionCall","src":"29825:30:125"},"nativeSrc":"29825:30:125","nodeType":"YulExpressionStatement","src":"29825:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29875:9:125","nodeType":"YulIdentifier","src":"29875:9:125"},{"kind":"number","nativeSrc":"29886:2:125","nodeType":"YulLiteral","src":"29886:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"29871:3:125","nodeType":"YulIdentifier","src":"29871:3:125"},"nativeSrc":"29871:18:125","nodeType":"YulFunctionCall","src":"29871:18:125"},{"hexValue":"41413334207369676e6174757265206572726f72","kind":"string","nativeSrc":"29891:22:125","nodeType":"YulLiteral","src":"29891:22:125","type":"","value":"AA34 signature error"}],"functionName":{"name":"mstore","nativeSrc":"29864:6:125","nodeType":"YulIdentifier","src":"29864:6:125"},"nativeSrc":"29864:50:125","nodeType":"YulFunctionCall","src":"29864:50:125"},"nativeSrc":"29864:50:125","nodeType":"YulExpressionStatement","src":"29864:50:125"},{"nativeSrc":"29923:27:125","nodeType":"YulAssignment","src":"29923:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"29935:9:125","nodeType":"YulIdentifier","src":"29935:9:125"},{"kind":"number","nativeSrc":"29946:3:125","nodeType":"YulLiteral","src":"29946:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"29931:3:125","nodeType":"YulIdentifier","src":"29931:3:125"},"nativeSrc":"29931:19:125","nodeType":"YulFunctionCall","src":"29931:19:125"},"variableNames":[{"name":"tail","nativeSrc":"29923:4:125","nodeType":"YulIdentifier","src":"29923:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_b49ba4e4826dc300b471d06b2a8612d53c4c2eb033cbfd2061c54c636bb00871__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"29540:416:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29711:9:125","nodeType":"YulTypedName","src":"29711:9:125","type":""},{"name":"value0","nativeSrc":"29722:6:125","nodeType":"YulTypedName","src":"29722:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29733:4:125","nodeType":"YulTypedName","src":"29733:4:125","type":""}],"src":"29540:416:125"},{"body":{"nativeSrc":"30163:267:125","nodeType":"YulBlock","src":"30163:267:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30180:9:125","nodeType":"YulIdentifier","src":"30180:9:125"},{"name":"value0","nativeSrc":"30191:6:125","nodeType":"YulIdentifier","src":"30191:6:125"}],"functionName":{"name":"mstore","nativeSrc":"30173:6:125","nodeType":"YulIdentifier","src":"30173:6:125"},"nativeSrc":"30173:25:125","nodeType":"YulFunctionCall","src":"30173:25:125"},"nativeSrc":"30173:25:125","nodeType":"YulExpressionStatement","src":"30173:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30218:9:125","nodeType":"YulIdentifier","src":"30218:9:125"},{"kind":"number","nativeSrc":"30229:2:125","nodeType":"YulLiteral","src":"30229:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30214:3:125","nodeType":"YulIdentifier","src":"30214:3:125"},"nativeSrc":"30214:18:125","nodeType":"YulFunctionCall","src":"30214:18:125"},{"kind":"number","nativeSrc":"30234:2:125","nodeType":"YulLiteral","src":"30234:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"30207:6:125","nodeType":"YulIdentifier","src":"30207:6:125"},"nativeSrc":"30207:30:125","nodeType":"YulFunctionCall","src":"30207:30:125"},"nativeSrc":"30207:30:125","nodeType":"YulExpressionStatement","src":"30207:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30257:9:125","nodeType":"YulIdentifier","src":"30257:9:125"},{"kind":"number","nativeSrc":"30268:2:125","nodeType":"YulLiteral","src":"30268:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30253:3:125","nodeType":"YulIdentifier","src":"30253:3:125"},"nativeSrc":"30253:18:125","nodeType":"YulFunctionCall","src":"30253:18:125"},{"kind":"number","nativeSrc":"30273:2:125","nodeType":"YulLiteral","src":"30273:2:125","type":"","value":"33"}],"functionName":{"name":"mstore","nativeSrc":"30246:6:125","nodeType":"YulIdentifier","src":"30246:6:125"},"nativeSrc":"30246:30:125","nodeType":"YulFunctionCall","src":"30246:30:125"},"nativeSrc":"30246:30:125","nodeType":"YulExpressionStatement","src":"30246:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30296:9:125","nodeType":"YulIdentifier","src":"30296:9:125"},{"kind":"number","nativeSrc":"30307:2:125","nodeType":"YulLiteral","src":"30307:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"30292:3:125","nodeType":"YulIdentifier","src":"30292:3:125"},"nativeSrc":"30292:18:125","nodeType":"YulFunctionCall","src":"30292:18:125"},{"hexValue":"41413332207061796d61737465722065787069726564206f72206e6f74206475","kind":"string","nativeSrc":"30312:34:125","nodeType":"YulLiteral","src":"30312:34:125","type":"","value":"AA32 paymaster expired or not du"}],"functionName":{"name":"mstore","nativeSrc":"30285:6:125","nodeType":"YulIdentifier","src":"30285:6:125"},"nativeSrc":"30285:62:125","nodeType":"YulFunctionCall","src":"30285:62:125"},"nativeSrc":"30285:62:125","nodeType":"YulExpressionStatement","src":"30285:62:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30367:9:125","nodeType":"YulIdentifier","src":"30367:9:125"},{"kind":"number","nativeSrc":"30378:3:125","nodeType":"YulLiteral","src":"30378:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"30363:3:125","nodeType":"YulIdentifier","src":"30363:3:125"},"nativeSrc":"30363:19:125","nodeType":"YulFunctionCall","src":"30363:19:125"},{"hexValue":"65","kind":"string","nativeSrc":"30384:3:125","nodeType":"YulLiteral","src":"30384:3:125","type":"","value":"e"}],"functionName":{"name":"mstore","nativeSrc":"30356:6:125","nodeType":"YulIdentifier","src":"30356:6:125"},"nativeSrc":"30356:32:125","nodeType":"YulFunctionCall","src":"30356:32:125"},"nativeSrc":"30356:32:125","nodeType":"YulExpressionStatement","src":"30356:32:125"},{"nativeSrc":"30397:27:125","nodeType":"YulAssignment","src":"30397:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"30409:9:125","nodeType":"YulIdentifier","src":"30409:9:125"},{"kind":"number","nativeSrc":"30420:3:125","nodeType":"YulLiteral","src":"30420:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"30405:3:125","nodeType":"YulIdentifier","src":"30405:3:125"},"nativeSrc":"30405:19:125","nodeType":"YulFunctionCall","src":"30405:19:125"},"variableNames":[{"name":"tail","nativeSrc":"30397:4:125","nodeType":"YulIdentifier","src":"30397:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_15a824f4c22cc564e6215a3b0d10da3af06bea6cdb58dc3760d85748fcd6036b__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"29961:469:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30132:9:125","nodeType":"YulTypedName","src":"30132:9:125","type":""},{"name":"value0","nativeSrc":"30143:6:125","nodeType":"YulTypedName","src":"30143:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30154:4:125","nodeType":"YulTypedName","src":"30154:4:125","type":""}],"src":"29961:469:125"},{"body":{"nativeSrc":"30640:171:125","nodeType":"YulBlock","src":"30640:171:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30657:9:125","nodeType":"YulIdentifier","src":"30657:9:125"},{"kind":"number","nativeSrc":"30668:2:125","nodeType":"YulLiteral","src":"30668:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"30650:6:125","nodeType":"YulIdentifier","src":"30650:6:125"},"nativeSrc":"30650:21:125","nodeType":"YulFunctionCall","src":"30650:21:125"},"nativeSrc":"30650:21:125","nodeType":"YulExpressionStatement","src":"30650:21:125"},{"nativeSrc":"30680:82:125","nodeType":"YulAssignment","src":"30680:82:125","value":{"arguments":[{"name":"value0","nativeSrc":"30735:6:125","nodeType":"YulIdentifier","src":"30735:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"30747:9:125","nodeType":"YulIdentifier","src":"30747:9:125"},{"kind":"number","nativeSrc":"30758:2:125","nodeType":"YulLiteral","src":"30758:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30743:3:125","nodeType":"YulIdentifier","src":"30743:3:125"},"nativeSrc":"30743:18:125","nodeType":"YulFunctionCall","src":"30743:18:125"}],"functionName":{"name":"abi_encode_struct_PackedUserOperation_calldata","nativeSrc":"30688:46:125","nodeType":"YulIdentifier","src":"30688:46:125"},"nativeSrc":"30688:74:125","nodeType":"YulFunctionCall","src":"30688:74:125"},"variableNames":[{"name":"tail","nativeSrc":"30680:4:125","nodeType":"YulIdentifier","src":"30680:4:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30782:9:125","nodeType":"YulIdentifier","src":"30782:9:125"},{"kind":"number","nativeSrc":"30793:2:125","nodeType":"YulLiteral","src":"30793:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30778:3:125","nodeType":"YulIdentifier","src":"30778:3:125"},"nativeSrc":"30778:18:125","nodeType":"YulFunctionCall","src":"30778:18:125"},{"name":"value1","nativeSrc":"30798:6:125","nodeType":"YulIdentifier","src":"30798:6:125"}],"functionName":{"name":"mstore","nativeSrc":"30771:6:125","nodeType":"YulIdentifier","src":"30771:6:125"},"nativeSrc":"30771:34:125","nodeType":"YulFunctionCall","src":"30771:34:125"},"nativeSrc":"30771:34:125","nodeType":"YulExpressionStatement","src":"30771:34:125"}]},"name":"abi_encode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr_t_bytes32__to_t_struct$_PackedUserOperation_$3748_memory_ptr_t_bytes32__fromStack_reversed","nativeSrc":"30435:376:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30601:9:125","nodeType":"YulTypedName","src":"30601:9:125","type":""},{"name":"value1","nativeSrc":"30612:6:125","nodeType":"YulTypedName","src":"30612:6:125","type":""},{"name":"value0","nativeSrc":"30620:6:125","nodeType":"YulTypedName","src":"30620:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30631:4:125","nodeType":"YulTypedName","src":"30631:4:125","type":""}],"src":"30435:376:125"},{"body":{"nativeSrc":"30870:851:125","nodeType":"YulBlock","src":"30870:851:125","statements":[{"nativeSrc":"30880:22:125","nodeType":"YulVariableDeclaration","src":"30880:22:125","value":{"arguments":[{"name":"value","nativeSrc":"30896:5:125","nodeType":"YulIdentifier","src":"30896:5:125"}],"functionName":{"name":"mload","nativeSrc":"30890:5:125","nodeType":"YulIdentifier","src":"30890:5:125"},"nativeSrc":"30890:12:125","nodeType":"YulFunctionCall","src":"30890:12:125"},"variables":[{"name":"_1","nativeSrc":"30884:2:125","nodeType":"YulTypedName","src":"30884:2:125","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"30936:2:125","nodeType":"YulIdentifier","src":"30936:2:125"}],"functionName":{"name":"mload","nativeSrc":"30930:5:125","nodeType":"YulIdentifier","src":"30930:5:125"},"nativeSrc":"30930:9:125","nodeType":"YulFunctionCall","src":"30930:9:125"},{"name":"pos","nativeSrc":"30941:3:125","nodeType":"YulIdentifier","src":"30941:3:125"}],"functionName":{"name":"abi_encode_address","nativeSrc":"30911:18:125","nodeType":"YulIdentifier","src":"30911:18:125"},"nativeSrc":"30911:34:125","nodeType":"YulFunctionCall","src":"30911:34:125"},"nativeSrc":"30911:34:125","nodeType":"YulExpressionStatement","src":"30911:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"30965:3:125","nodeType":"YulIdentifier","src":"30965:3:125"},{"kind":"number","nativeSrc":"30970:4:125","nodeType":"YulLiteral","src":"30970:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"30961:3:125","nodeType":"YulIdentifier","src":"30961:3:125"},"nativeSrc":"30961:14:125","nodeType":"YulFunctionCall","src":"30961:14:125"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"30987:2:125","nodeType":"YulIdentifier","src":"30987:2:125"},{"kind":"number","nativeSrc":"30991:4:125","nodeType":"YulLiteral","src":"30991:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"30983:3:125","nodeType":"YulIdentifier","src":"30983:3:125"},"nativeSrc":"30983:13:125","nodeType":"YulFunctionCall","src":"30983:13:125"}],"functionName":{"name":"mload","nativeSrc":"30977:5:125","nodeType":"YulIdentifier","src":"30977:5:125"},"nativeSrc":"30977:20:125","nodeType":"YulFunctionCall","src":"30977:20:125"}],"functionName":{"name":"mstore","nativeSrc":"30954:6:125","nodeType":"YulIdentifier","src":"30954:6:125"},"nativeSrc":"30954:44:125","nodeType":"YulFunctionCall","src":"30954:44:125"},"nativeSrc":"30954:44:125","nodeType":"YulExpressionStatement","src":"30954:44:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31018:3:125","nodeType":"YulIdentifier","src":"31018:3:125"},{"kind":"number","nativeSrc":"31023:4:125","nodeType":"YulLiteral","src":"31023:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"31014:3:125","nodeType":"YulIdentifier","src":"31014:3:125"},"nativeSrc":"31014:14:125","nodeType":"YulFunctionCall","src":"31014:14:125"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"31040:2:125","nodeType":"YulIdentifier","src":"31040:2:125"},{"kind":"number","nativeSrc":"31044:4:125","nodeType":"YulLiteral","src":"31044:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"31036:3:125","nodeType":"YulIdentifier","src":"31036:3:125"},"nativeSrc":"31036:13:125","nodeType":"YulFunctionCall","src":"31036:13:125"}],"functionName":{"name":"mload","nativeSrc":"31030:5:125","nodeType":"YulIdentifier","src":"31030:5:125"},"nativeSrc":"31030:20:125","nodeType":"YulFunctionCall","src":"31030:20:125"}],"functionName":{"name":"mstore","nativeSrc":"31007:6:125","nodeType":"YulIdentifier","src":"31007:6:125"},"nativeSrc":"31007:44:125","nodeType":"YulFunctionCall","src":"31007:44:125"},"nativeSrc":"31007:44:125","nodeType":"YulExpressionStatement","src":"31007:44:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31071:3:125","nodeType":"YulIdentifier","src":"31071:3:125"},{"kind":"number","nativeSrc":"31076:4:125","nodeType":"YulLiteral","src":"31076:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"31067:3:125","nodeType":"YulIdentifier","src":"31067:3:125"},"nativeSrc":"31067:14:125","nodeType":"YulFunctionCall","src":"31067:14:125"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"31093:2:125","nodeType":"YulIdentifier","src":"31093:2:125"},{"kind":"number","nativeSrc":"31097:4:125","nodeType":"YulLiteral","src":"31097:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"31089:3:125","nodeType":"YulIdentifier","src":"31089:3:125"},"nativeSrc":"31089:13:125","nodeType":"YulFunctionCall","src":"31089:13:125"}],"functionName":{"name":"mload","nativeSrc":"31083:5:125","nodeType":"YulIdentifier","src":"31083:5:125"},"nativeSrc":"31083:20:125","nodeType":"YulFunctionCall","src":"31083:20:125"}],"functionName":{"name":"mstore","nativeSrc":"31060:6:125","nodeType":"YulIdentifier","src":"31060:6:125"},"nativeSrc":"31060:44:125","nodeType":"YulFunctionCall","src":"31060:44:125"},"nativeSrc":"31060:44:125","nodeType":"YulExpressionStatement","src":"31060:44:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31124:3:125","nodeType":"YulIdentifier","src":"31124:3:125"},{"kind":"number","nativeSrc":"31129:4:125","nodeType":"YulLiteral","src":"31129:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"31120:3:125","nodeType":"YulIdentifier","src":"31120:3:125"},"nativeSrc":"31120:14:125","nodeType":"YulFunctionCall","src":"31120:14:125"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"31146:2:125","nodeType":"YulIdentifier","src":"31146:2:125"},{"kind":"number","nativeSrc":"31150:4:125","nodeType":"YulLiteral","src":"31150:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"31142:3:125","nodeType":"YulIdentifier","src":"31142:3:125"},"nativeSrc":"31142:13:125","nodeType":"YulFunctionCall","src":"31142:13:125"}],"functionName":{"name":"mload","nativeSrc":"31136:5:125","nodeType":"YulIdentifier","src":"31136:5:125"},"nativeSrc":"31136:20:125","nodeType":"YulFunctionCall","src":"31136:20:125"}],"functionName":{"name":"mstore","nativeSrc":"31113:6:125","nodeType":"YulIdentifier","src":"31113:6:125"},"nativeSrc":"31113:44:125","nodeType":"YulFunctionCall","src":"31113:44:125"},"nativeSrc":"31113:44:125","nodeType":"YulExpressionStatement","src":"31113:44:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31177:3:125","nodeType":"YulIdentifier","src":"31177:3:125"},{"kind":"number","nativeSrc":"31182:4:125","nodeType":"YulLiteral","src":"31182:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"31173:3:125","nodeType":"YulIdentifier","src":"31173:3:125"},"nativeSrc":"31173:14:125","nodeType":"YulFunctionCall","src":"31173:14:125"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"31199:2:125","nodeType":"YulIdentifier","src":"31199:2:125"},{"kind":"number","nativeSrc":"31203:4:125","nodeType":"YulLiteral","src":"31203:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"31195:3:125","nodeType":"YulIdentifier","src":"31195:3:125"},"nativeSrc":"31195:13:125","nodeType":"YulFunctionCall","src":"31195:13:125"}],"functionName":{"name":"mload","nativeSrc":"31189:5:125","nodeType":"YulIdentifier","src":"31189:5:125"},"nativeSrc":"31189:20:125","nodeType":"YulFunctionCall","src":"31189:20:125"}],"functionName":{"name":"mstore","nativeSrc":"31166:6:125","nodeType":"YulIdentifier","src":"31166:6:125"},"nativeSrc":"31166:44:125","nodeType":"YulFunctionCall","src":"31166:44:125"},"nativeSrc":"31166:44:125","nodeType":"YulExpressionStatement","src":"31166:44:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31230:3:125","nodeType":"YulIdentifier","src":"31230:3:125"},{"kind":"number","nativeSrc":"31235:4:125","nodeType":"YulLiteral","src":"31235:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"31226:3:125","nodeType":"YulIdentifier","src":"31226:3:125"},"nativeSrc":"31226:14:125","nodeType":"YulFunctionCall","src":"31226:14:125"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"31252:2:125","nodeType":"YulIdentifier","src":"31252:2:125"},{"kind":"number","nativeSrc":"31256:4:125","nodeType":"YulLiteral","src":"31256:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"31248:3:125","nodeType":"YulIdentifier","src":"31248:3:125"},"nativeSrc":"31248:13:125","nodeType":"YulFunctionCall","src":"31248:13:125"}],"functionName":{"name":"mload","nativeSrc":"31242:5:125","nodeType":"YulIdentifier","src":"31242:5:125"},"nativeSrc":"31242:20:125","nodeType":"YulFunctionCall","src":"31242:20:125"}],"functionName":{"name":"mstore","nativeSrc":"31219:6:125","nodeType":"YulIdentifier","src":"31219:6:125"},"nativeSrc":"31219:44:125","nodeType":"YulFunctionCall","src":"31219:44:125"},"nativeSrc":"31219:44:125","nodeType":"YulExpressionStatement","src":"31219:44:125"},{"nativeSrc":"31272:40:125","nodeType":"YulVariableDeclaration","src":"31272:40:125","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"31302:2:125","nodeType":"YulIdentifier","src":"31302:2:125"},{"kind":"number","nativeSrc":"31306:4:125","nodeType":"YulLiteral","src":"31306:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"31298:3:125","nodeType":"YulIdentifier","src":"31298:3:125"},"nativeSrc":"31298:13:125","nodeType":"YulFunctionCall","src":"31298:13:125"}],"functionName":{"name":"mload","nativeSrc":"31292:5:125","nodeType":"YulIdentifier","src":"31292:5:125"},"nativeSrc":"31292:20:125","nodeType":"YulFunctionCall","src":"31292:20:125"},"variables":[{"name":"memberValue0","nativeSrc":"31276:12:125","nodeType":"YulTypedName","src":"31276:12:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"31340:12:125","nodeType":"YulIdentifier","src":"31340:12:125"},{"arguments":[{"name":"pos","nativeSrc":"31358:3:125","nodeType":"YulIdentifier","src":"31358:3:125"},{"kind":"number","nativeSrc":"31363:4:125","nodeType":"YulLiteral","src":"31363:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"31354:3:125","nodeType":"YulIdentifier","src":"31354:3:125"},"nativeSrc":"31354:14:125","nodeType":"YulFunctionCall","src":"31354:14:125"}],"functionName":{"name":"abi_encode_address","nativeSrc":"31321:18:125","nodeType":"YulIdentifier","src":"31321:18:125"},"nativeSrc":"31321:48:125","nodeType":"YulFunctionCall","src":"31321:48:125"},"nativeSrc":"31321:48:125","nodeType":"YulExpressionStatement","src":"31321:48:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31389:3:125","nodeType":"YulIdentifier","src":"31389:3:125"},{"kind":"number","nativeSrc":"31394:6:125","nodeType":"YulLiteral","src":"31394:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"31385:3:125","nodeType":"YulIdentifier","src":"31385:3:125"},"nativeSrc":"31385:16:125","nodeType":"YulFunctionCall","src":"31385:16:125"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"31413:2:125","nodeType":"YulIdentifier","src":"31413:2:125"},{"kind":"number","nativeSrc":"31417:6:125","nodeType":"YulLiteral","src":"31417:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"31409:3:125","nodeType":"YulIdentifier","src":"31409:3:125"},"nativeSrc":"31409:15:125","nodeType":"YulFunctionCall","src":"31409:15:125"}],"functionName":{"name":"mload","nativeSrc":"31403:5:125","nodeType":"YulIdentifier","src":"31403:5:125"},"nativeSrc":"31403:22:125","nodeType":"YulFunctionCall","src":"31403:22:125"}],"functionName":{"name":"mstore","nativeSrc":"31378:6:125","nodeType":"YulIdentifier","src":"31378:6:125"},"nativeSrc":"31378:48:125","nodeType":"YulFunctionCall","src":"31378:48:125"},"nativeSrc":"31378:48:125","nodeType":"YulExpressionStatement","src":"31378:48:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31446:3:125","nodeType":"YulIdentifier","src":"31446:3:125"},{"kind":"number","nativeSrc":"31451:6:125","nodeType":"YulLiteral","src":"31451:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"31442:3:125","nodeType":"YulIdentifier","src":"31442:3:125"},"nativeSrc":"31442:16:125","nodeType":"YulFunctionCall","src":"31442:16:125"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"31470:2:125","nodeType":"YulIdentifier","src":"31470:2:125"},{"kind":"number","nativeSrc":"31474:6:125","nodeType":"YulLiteral","src":"31474:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"31466:3:125","nodeType":"YulIdentifier","src":"31466:3:125"},"nativeSrc":"31466:15:125","nodeType":"YulFunctionCall","src":"31466:15:125"}],"functionName":{"name":"mload","nativeSrc":"31460:5:125","nodeType":"YulIdentifier","src":"31460:5:125"},"nativeSrc":"31460:22:125","nodeType":"YulFunctionCall","src":"31460:22:125"}],"functionName":{"name":"mstore","nativeSrc":"31435:6:125","nodeType":"YulIdentifier","src":"31435:6:125"},"nativeSrc":"31435:48:125","nodeType":"YulFunctionCall","src":"31435:48:125"},"nativeSrc":"31435:48:125","nodeType":"YulExpressionStatement","src":"31435:48:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31503:3:125","nodeType":"YulIdentifier","src":"31503:3:125"},{"kind":"number","nativeSrc":"31508:6:125","nodeType":"YulLiteral","src":"31508:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"31499:3:125","nodeType":"YulIdentifier","src":"31499:3:125"},"nativeSrc":"31499:16:125","nodeType":"YulFunctionCall","src":"31499:16:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"31527:5:125","nodeType":"YulIdentifier","src":"31527:5:125"},{"kind":"number","nativeSrc":"31534:4:125","nodeType":"YulLiteral","src":"31534:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"31523:3:125","nodeType":"YulIdentifier","src":"31523:3:125"},"nativeSrc":"31523:16:125","nodeType":"YulFunctionCall","src":"31523:16:125"}],"functionName":{"name":"mload","nativeSrc":"31517:5:125","nodeType":"YulIdentifier","src":"31517:5:125"},"nativeSrc":"31517:23:125","nodeType":"YulFunctionCall","src":"31517:23:125"}],"functionName":{"name":"mstore","nativeSrc":"31492:6:125","nodeType":"YulIdentifier","src":"31492:6:125"},"nativeSrc":"31492:49:125","nodeType":"YulFunctionCall","src":"31492:49:125"},"nativeSrc":"31492:49:125","nodeType":"YulExpressionStatement","src":"31492:49:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31561:3:125","nodeType":"YulIdentifier","src":"31561:3:125"},{"kind":"number","nativeSrc":"31566:6:125","nodeType":"YulLiteral","src":"31566:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"31557:3:125","nodeType":"YulIdentifier","src":"31557:3:125"},"nativeSrc":"31557:16:125","nodeType":"YulFunctionCall","src":"31557:16:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"31585:5:125","nodeType":"YulIdentifier","src":"31585:5:125"},{"kind":"number","nativeSrc":"31592:4:125","nodeType":"YulLiteral","src":"31592:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"31581:3:125","nodeType":"YulIdentifier","src":"31581:3:125"},"nativeSrc":"31581:16:125","nodeType":"YulFunctionCall","src":"31581:16:125"}],"functionName":{"name":"mload","nativeSrc":"31575:5:125","nodeType":"YulIdentifier","src":"31575:5:125"},"nativeSrc":"31575:23:125","nodeType":"YulFunctionCall","src":"31575:23:125"}],"functionName":{"name":"mstore","nativeSrc":"31550:6:125","nodeType":"YulIdentifier","src":"31550:6:125"},"nativeSrc":"31550:49:125","nodeType":"YulFunctionCall","src":"31550:49:125"},"nativeSrc":"31550:49:125","nodeType":"YulExpressionStatement","src":"31550:49:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31619:3:125","nodeType":"YulIdentifier","src":"31619:3:125"},{"kind":"number","nativeSrc":"31624:6:125","nodeType":"YulLiteral","src":"31624:6:125","type":"","value":"0x0180"}],"functionName":{"name":"add","nativeSrc":"31615:3:125","nodeType":"YulIdentifier","src":"31615:3:125"},"nativeSrc":"31615:16:125","nodeType":"YulFunctionCall","src":"31615:16:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"31643:5:125","nodeType":"YulIdentifier","src":"31643:5:125"},{"kind":"number","nativeSrc":"31650:4:125","nodeType":"YulLiteral","src":"31650:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"31639:3:125","nodeType":"YulIdentifier","src":"31639:3:125"},"nativeSrc":"31639:16:125","nodeType":"YulFunctionCall","src":"31639:16:125"}],"functionName":{"name":"mload","nativeSrc":"31633:5:125","nodeType":"YulIdentifier","src":"31633:5:125"},"nativeSrc":"31633:23:125","nodeType":"YulFunctionCall","src":"31633:23:125"}],"functionName":{"name":"mstore","nativeSrc":"31608:6:125","nodeType":"YulIdentifier","src":"31608:6:125"},"nativeSrc":"31608:49:125","nodeType":"YulFunctionCall","src":"31608:49:125"},"nativeSrc":"31608:49:125","nodeType":"YulExpressionStatement","src":"31608:49:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31677:3:125","nodeType":"YulIdentifier","src":"31677:3:125"},{"kind":"number","nativeSrc":"31682:6:125","nodeType":"YulLiteral","src":"31682:6:125","type":"","value":"0x01a0"}],"functionName":{"name":"add","nativeSrc":"31673:3:125","nodeType":"YulIdentifier","src":"31673:3:125"},"nativeSrc":"31673:16:125","nodeType":"YulFunctionCall","src":"31673:16:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"31701:5:125","nodeType":"YulIdentifier","src":"31701:5:125"},{"kind":"number","nativeSrc":"31708:4:125","nodeType":"YulLiteral","src":"31708:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"31697:3:125","nodeType":"YulIdentifier","src":"31697:3:125"},"nativeSrc":"31697:16:125","nodeType":"YulFunctionCall","src":"31697:16:125"}],"functionName":{"name":"mload","nativeSrc":"31691:5:125","nodeType":"YulIdentifier","src":"31691:5:125"},"nativeSrc":"31691:23:125","nodeType":"YulFunctionCall","src":"31691:23:125"}],"functionName":{"name":"mstore","nativeSrc":"31666:6:125","nodeType":"YulIdentifier","src":"31666:6:125"},"nativeSrc":"31666:49:125","nodeType":"YulFunctionCall","src":"31666:49:125"},"nativeSrc":"31666:49:125","nodeType":"YulExpressionStatement","src":"31666:49:125"}]},"name":"abi_encode_struct_UserOpInfo","nativeSrc":"30816:905:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"30854:5:125","nodeType":"YulTypedName","src":"30854:5:125","type":""},{"name":"pos","nativeSrc":"30861:3:125","nodeType":"YulTypedName","src":"30861:3:125","type":""}],"src":"30816:905:125"},{"body":{"nativeSrc":"31973:280:125","nodeType":"YulBlock","src":"31973:280:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31990:9:125","nodeType":"YulIdentifier","src":"31990:9:125"},{"kind":"number","nativeSrc":"32001:3:125","nodeType":"YulLiteral","src":"32001:3:125","type":"","value":"512"}],"functionName":{"name":"mstore","nativeSrc":"31983:6:125","nodeType":"YulIdentifier","src":"31983:6:125"},"nativeSrc":"31983:22:125","nodeType":"YulFunctionCall","src":"31983:22:125"},"nativeSrc":"31983:22:125","nodeType":"YulExpressionStatement","src":"31983:22:125"},{"nativeSrc":"32014:59:125","nodeType":"YulVariableDeclaration","src":"32014:59:125","value":{"arguments":[{"name":"value0","nativeSrc":"32045:6:125","nodeType":"YulIdentifier","src":"32045:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"32057:9:125","nodeType":"YulIdentifier","src":"32057:9:125"},{"kind":"number","nativeSrc":"32068:3:125","nodeType":"YulLiteral","src":"32068:3:125","type":"","value":"512"}],"functionName":{"name":"add","nativeSrc":"32053:3:125","nodeType":"YulIdentifier","src":"32053:3:125"},"nativeSrc":"32053:19:125","nodeType":"YulFunctionCall","src":"32053:19:125"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"32028:16:125","nodeType":"YulIdentifier","src":"32028:16:125"},"nativeSrc":"32028:45:125","nodeType":"YulFunctionCall","src":"32028:45:125"},"variables":[{"name":"tail_1","nativeSrc":"32018:6:125","nodeType":"YulTypedName","src":"32018:6:125","type":""}]},{"expression":{"arguments":[{"name":"value1","nativeSrc":"32111:6:125","nodeType":"YulIdentifier","src":"32111:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"32123:9:125","nodeType":"YulIdentifier","src":"32123:9:125"},{"kind":"number","nativeSrc":"32134:2:125","nodeType":"YulLiteral","src":"32134:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32119:3:125","nodeType":"YulIdentifier","src":"32119:3:125"},"nativeSrc":"32119:18:125","nodeType":"YulFunctionCall","src":"32119:18:125"}],"functionName":{"name":"abi_encode_struct_UserOpInfo","nativeSrc":"32082:28:125","nodeType":"YulIdentifier","src":"32082:28:125"},"nativeSrc":"32082:56:125","nodeType":"YulFunctionCall","src":"32082:56:125"},"nativeSrc":"32082:56:125","nodeType":"YulExpressionStatement","src":"32082:56:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32158:9:125","nodeType":"YulIdentifier","src":"32158:9:125"},{"kind":"number","nativeSrc":"32169:3:125","nodeType":"YulLiteral","src":"32169:3:125","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"32154:3:125","nodeType":"YulIdentifier","src":"32154:3:125"},"nativeSrc":"32154:19:125","nodeType":"YulFunctionCall","src":"32154:19:125"},{"arguments":[{"name":"tail_1","nativeSrc":"32179:6:125","nodeType":"YulIdentifier","src":"32179:6:125"},{"name":"headStart","nativeSrc":"32187:9:125","nodeType":"YulIdentifier","src":"32187:9:125"}],"functionName":{"name":"sub","nativeSrc":"32175:3:125","nodeType":"YulIdentifier","src":"32175:3:125"},"nativeSrc":"32175:22:125","nodeType":"YulFunctionCall","src":"32175:22:125"}],"functionName":{"name":"mstore","nativeSrc":"32147:6:125","nodeType":"YulIdentifier","src":"32147:6:125"},"nativeSrc":"32147:51:125","nodeType":"YulFunctionCall","src":"32147:51:125"},"nativeSrc":"32147:51:125","nodeType":"YulExpressionStatement","src":"32147:51:125"},{"nativeSrc":"32207:40:125","nodeType":"YulAssignment","src":"32207:40:125","value":{"arguments":[{"name":"value2","nativeSrc":"32232:6:125","nodeType":"YulIdentifier","src":"32232:6:125"},{"name":"tail_1","nativeSrc":"32240:6:125","nodeType":"YulIdentifier","src":"32240:6:125"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"32215:16:125","nodeType":"YulIdentifier","src":"32215:16:125"},"nativeSrc":"32215:32:125","nodeType":"YulFunctionCall","src":"32215:32:125"},"variableNames":[{"name":"tail","nativeSrc":"32207:4:125","nodeType":"YulIdentifier","src":"32207:4:125"}]}]},"name":"abi_encode_tuple_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"31726:527:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31926:9:125","nodeType":"YulTypedName","src":"31926:9:125","type":""},{"name":"value2","nativeSrc":"31937:6:125","nodeType":"YulTypedName","src":"31937:6:125","type":""},{"name":"value1","nativeSrc":"31945:6:125","nodeType":"YulTypedName","src":"31945:6:125","type":""},{"name":"value0","nativeSrc":"31953:6:125","nodeType":"YulTypedName","src":"31953:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31964:4:125","nodeType":"YulTypedName","src":"31964:4:125","type":""}],"src":"31726:527:125"},{"body":{"nativeSrc":"32515:297:125","nodeType":"YulBlock","src":"32515:297:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"32532:9:125","nodeType":"YulIdentifier","src":"32532:9:125"},{"kind":"number","nativeSrc":"32543:3:125","nodeType":"YulLiteral","src":"32543:3:125","type":"","value":"512"}],"functionName":{"name":"mstore","nativeSrc":"32525:6:125","nodeType":"YulIdentifier","src":"32525:6:125"},"nativeSrc":"32525:22:125","nodeType":"YulFunctionCall","src":"32525:22:125"},"nativeSrc":"32525:22:125","nodeType":"YulExpressionStatement","src":"32525:22:125"},{"nativeSrc":"32556:76:125","nodeType":"YulVariableDeclaration","src":"32556:76:125","value":{"arguments":[{"name":"value0","nativeSrc":"32596:6:125","nodeType":"YulIdentifier","src":"32596:6:125"},{"name":"value1","nativeSrc":"32604:6:125","nodeType":"YulIdentifier","src":"32604:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"32616:9:125","nodeType":"YulIdentifier","src":"32616:9:125"},{"kind":"number","nativeSrc":"32627:3:125","nodeType":"YulLiteral","src":"32627:3:125","type":"","value":"512"}],"functionName":{"name":"add","nativeSrc":"32612:3:125","nodeType":"YulIdentifier","src":"32612:3:125"},"nativeSrc":"32612:19:125","nodeType":"YulFunctionCall","src":"32612:19:125"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"32570:25:125","nodeType":"YulIdentifier","src":"32570:25:125"},"nativeSrc":"32570:62:125","nodeType":"YulFunctionCall","src":"32570:62:125"},"variables":[{"name":"tail_1","nativeSrc":"32560:6:125","nodeType":"YulTypedName","src":"32560:6:125","type":""}]},{"expression":{"arguments":[{"name":"value2","nativeSrc":"32670:6:125","nodeType":"YulIdentifier","src":"32670:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"32682:9:125","nodeType":"YulIdentifier","src":"32682:9:125"},{"kind":"number","nativeSrc":"32693:2:125","nodeType":"YulLiteral","src":"32693:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32678:3:125","nodeType":"YulIdentifier","src":"32678:3:125"},"nativeSrc":"32678:18:125","nodeType":"YulFunctionCall","src":"32678:18:125"}],"functionName":{"name":"abi_encode_struct_UserOpInfo","nativeSrc":"32641:28:125","nodeType":"YulIdentifier","src":"32641:28:125"},"nativeSrc":"32641:56:125","nodeType":"YulFunctionCall","src":"32641:56:125"},"nativeSrc":"32641:56:125","nodeType":"YulExpressionStatement","src":"32641:56:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32717:9:125","nodeType":"YulIdentifier","src":"32717:9:125"},{"kind":"number","nativeSrc":"32728:3:125","nodeType":"YulLiteral","src":"32728:3:125","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"32713:3:125","nodeType":"YulIdentifier","src":"32713:3:125"},"nativeSrc":"32713:19:125","nodeType":"YulFunctionCall","src":"32713:19:125"},{"arguments":[{"name":"tail_1","nativeSrc":"32738:6:125","nodeType":"YulIdentifier","src":"32738:6:125"},{"name":"headStart","nativeSrc":"32746:9:125","nodeType":"YulIdentifier","src":"32746:9:125"}],"functionName":{"name":"sub","nativeSrc":"32734:3:125","nodeType":"YulIdentifier","src":"32734:3:125"},"nativeSrc":"32734:22:125","nodeType":"YulFunctionCall","src":"32734:22:125"}],"functionName":{"name":"mstore","nativeSrc":"32706:6:125","nodeType":"YulIdentifier","src":"32706:6:125"},"nativeSrc":"32706:51:125","nodeType":"YulFunctionCall","src":"32706:51:125"},"nativeSrc":"32706:51:125","nodeType":"YulExpressionStatement","src":"32706:51:125"},{"nativeSrc":"32766:40:125","nodeType":"YulAssignment","src":"32766:40:125","value":{"arguments":[{"name":"value3","nativeSrc":"32791:6:125","nodeType":"YulIdentifier","src":"32791:6:125"},{"name":"tail_1","nativeSrc":"32799:6:125","nodeType":"YulIdentifier","src":"32799:6:125"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"32774:16:125","nodeType":"YulIdentifier","src":"32774:16:125"},"nativeSrc":"32774:32:125","nodeType":"YulFunctionCall","src":"32774:32:125"},"variableNames":[{"name":"tail","nativeSrc":"32766:4:125","nodeType":"YulIdentifier","src":"32766:4:125"}]}]},"name":"abi_encode_tuple_t_bytes_calldata_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"32258:554:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32460:9:125","nodeType":"YulTypedName","src":"32460:9:125","type":""},{"name":"value3","nativeSrc":"32471:6:125","nodeType":"YulTypedName","src":"32471:6:125","type":""},{"name":"value2","nativeSrc":"32479:6:125","nodeType":"YulTypedName","src":"32479:6:125","type":""},{"name":"value1","nativeSrc":"32487:6:125","nodeType":"YulTypedName","src":"32487:6:125","type":""},{"name":"value0","nativeSrc":"32495:6:125","nodeType":"YulTypedName","src":"32495:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"32506:4:125","nodeType":"YulTypedName","src":"32506:4:125","type":""}],"src":"32258:554:125"},{"body":{"nativeSrc":"33019:209:125","nodeType":"YulBlock","src":"33019:209:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"33036:9:125","nodeType":"YulIdentifier","src":"33036:9:125"},{"name":"value0","nativeSrc":"33047:6:125","nodeType":"YulIdentifier","src":"33047:6:125"}],"functionName":{"name":"mstore","nativeSrc":"33029:6:125","nodeType":"YulIdentifier","src":"33029:6:125"},"nativeSrc":"33029:25:125","nodeType":"YulFunctionCall","src":"33029:25:125"},"nativeSrc":"33029:25:125","nodeType":"YulExpressionStatement","src":"33029:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33074:9:125","nodeType":"YulIdentifier","src":"33074:9:125"},{"kind":"number","nativeSrc":"33085:2:125","nodeType":"YulLiteral","src":"33085:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"33070:3:125","nodeType":"YulIdentifier","src":"33070:3:125"},"nativeSrc":"33070:18:125","nodeType":"YulFunctionCall","src":"33070:18:125"},{"kind":"number","nativeSrc":"33090:2:125","nodeType":"YulLiteral","src":"33090:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"33063:6:125","nodeType":"YulIdentifier","src":"33063:6:125"},"nativeSrc":"33063:30:125","nodeType":"YulFunctionCall","src":"33063:30:125"},"nativeSrc":"33063:30:125","nodeType":"YulExpressionStatement","src":"33063:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33113:9:125","nodeType":"YulIdentifier","src":"33113:9:125"},{"kind":"number","nativeSrc":"33124:2:125","nodeType":"YulLiteral","src":"33124:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"33109:3:125","nodeType":"YulIdentifier","src":"33109:3:125"},"nativeSrc":"33109:18:125","nodeType":"YulFunctionCall","src":"33109:18:125"},{"kind":"number","nativeSrc":"33129:2:125","nodeType":"YulLiteral","src":"33129:2:125","type":"","value":"15"}],"functionName":{"name":"mstore","nativeSrc":"33102:6:125","nodeType":"YulIdentifier","src":"33102:6:125"},"nativeSrc":"33102:30:125","nodeType":"YulFunctionCall","src":"33102:30:125"},"nativeSrc":"33102:30:125","nodeType":"YulExpressionStatement","src":"33102:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33152:9:125","nodeType":"YulIdentifier","src":"33152:9:125"},{"kind":"number","nativeSrc":"33163:2:125","nodeType":"YulLiteral","src":"33163:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"33148:3:125","nodeType":"YulIdentifier","src":"33148:3:125"},"nativeSrc":"33148:18:125","nodeType":"YulFunctionCall","src":"33148:18:125"},{"hexValue":"41413935206f7574206f6620676173","kind":"string","nativeSrc":"33168:17:125","nodeType":"YulLiteral","src":"33168:17:125","type":"","value":"AA95 out of gas"}],"functionName":{"name":"mstore","nativeSrc":"33141:6:125","nodeType":"YulIdentifier","src":"33141:6:125"},"nativeSrc":"33141:45:125","nodeType":"YulFunctionCall","src":"33141:45:125"},"nativeSrc":"33141:45:125","nodeType":"YulExpressionStatement","src":"33141:45:125"},{"nativeSrc":"33195:27:125","nodeType":"YulAssignment","src":"33195:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"33207:9:125","nodeType":"YulIdentifier","src":"33207:9:125"},{"kind":"number","nativeSrc":"33218:3:125","nodeType":"YulLiteral","src":"33218:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"33203:3:125","nodeType":"YulIdentifier","src":"33203:3:125"},"nativeSrc":"33203:19:125","nodeType":"YulFunctionCall","src":"33203:19:125"},"variableNames":[{"name":"tail","nativeSrc":"33195:4:125","nodeType":"YulIdentifier","src":"33195:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_eb8aae105b33b8e3029845f6a1359760a9480648cd982f4e1c37f01a5ceaf980__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"32817:411:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32988:9:125","nodeType":"YulTypedName","src":"32988:9:125","type":""},{"name":"value0","nativeSrc":"32999:6:125","nodeType":"YulTypedName","src":"32999:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"33010:4:125","nodeType":"YulTypedName","src":"33010:4:125","type":""}],"src":"32817:411:125"},{"body":{"nativeSrc":"33407:174:125","nodeType":"YulBlock","src":"33407:174:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"33424:9:125","nodeType":"YulIdentifier","src":"33424:9:125"},{"kind":"number","nativeSrc":"33435:2:125","nodeType":"YulLiteral","src":"33435:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"33417:6:125","nodeType":"YulIdentifier","src":"33417:6:125"},"nativeSrc":"33417:21:125","nodeType":"YulFunctionCall","src":"33417:21:125"},"nativeSrc":"33417:21:125","nodeType":"YulExpressionStatement","src":"33417:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33458:9:125","nodeType":"YulIdentifier","src":"33458:9:125"},{"kind":"number","nativeSrc":"33469:2:125","nodeType":"YulLiteral","src":"33469:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"33454:3:125","nodeType":"YulIdentifier","src":"33454:3:125"},"nativeSrc":"33454:18:125","nodeType":"YulFunctionCall","src":"33454:18:125"},{"kind":"number","nativeSrc":"33474:2:125","nodeType":"YulLiteral","src":"33474:2:125","type":"","value":"24"}],"functionName":{"name":"mstore","nativeSrc":"33447:6:125","nodeType":"YulIdentifier","src":"33447:6:125"},"nativeSrc":"33447:30:125","nodeType":"YulFunctionCall","src":"33447:30:125"},"nativeSrc":"33447:30:125","nodeType":"YulExpressionStatement","src":"33447:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33497:9:125","nodeType":"YulIdentifier","src":"33497:9:125"},{"kind":"number","nativeSrc":"33508:2:125","nodeType":"YulLiteral","src":"33508:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"33493:3:125","nodeType":"YulIdentifier","src":"33493:3:125"},"nativeSrc":"33493:18:125","nodeType":"YulFunctionCall","src":"33493:18:125"},{"hexValue":"4141393020696e76616c69642062656e6566696369617279","kind":"string","nativeSrc":"33513:26:125","nodeType":"YulLiteral","src":"33513:26:125","type":"","value":"AA90 invalid beneficiary"}],"functionName":{"name":"mstore","nativeSrc":"33486:6:125","nodeType":"YulIdentifier","src":"33486:6:125"},"nativeSrc":"33486:54:125","nodeType":"YulFunctionCall","src":"33486:54:125"},"nativeSrc":"33486:54:125","nodeType":"YulExpressionStatement","src":"33486:54:125"},{"nativeSrc":"33549:26:125","nodeType":"YulAssignment","src":"33549:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"33561:9:125","nodeType":"YulIdentifier","src":"33561:9:125"},{"kind":"number","nativeSrc":"33572:2:125","nodeType":"YulLiteral","src":"33572:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"33557:3:125","nodeType":"YulIdentifier","src":"33557:3:125"},"nativeSrc":"33557:18:125","nodeType":"YulFunctionCall","src":"33557:18:125"},"variableNames":[{"name":"tail","nativeSrc":"33549:4:125","nodeType":"YulIdentifier","src":"33549:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_920f437a2d912d818562bb2b3dd9587067a8482ed696134ce94fa5e8d2567814__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"33233:348:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"33384:9:125","nodeType":"YulTypedName","src":"33384:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"33398:4:125","nodeType":"YulTypedName","src":"33398:4:125","type":""}],"src":"33233:348:125"},{"body":{"nativeSrc":"33760:181:125","nodeType":"YulBlock","src":"33760:181:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"33777:9:125","nodeType":"YulIdentifier","src":"33777:9:125"},{"kind":"number","nativeSrc":"33788:2:125","nodeType":"YulLiteral","src":"33788:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"33770:6:125","nodeType":"YulIdentifier","src":"33770:6:125"},"nativeSrc":"33770:21:125","nodeType":"YulFunctionCall","src":"33770:21:125"},"nativeSrc":"33770:21:125","nodeType":"YulExpressionStatement","src":"33770:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33811:9:125","nodeType":"YulIdentifier","src":"33811:9:125"},{"kind":"number","nativeSrc":"33822:2:125","nodeType":"YulLiteral","src":"33822:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"33807:3:125","nodeType":"YulIdentifier","src":"33807:3:125"},"nativeSrc":"33807:18:125","nodeType":"YulFunctionCall","src":"33807:18:125"},{"kind":"number","nativeSrc":"33827:2:125","nodeType":"YulLiteral","src":"33827:2:125","type":"","value":"31"}],"functionName":{"name":"mstore","nativeSrc":"33800:6:125","nodeType":"YulIdentifier","src":"33800:6:125"},"nativeSrc":"33800:30:125","nodeType":"YulFunctionCall","src":"33800:30:125"},"nativeSrc":"33800:30:125","nodeType":"YulExpressionStatement","src":"33800:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33850:9:125","nodeType":"YulIdentifier","src":"33850:9:125"},{"kind":"number","nativeSrc":"33861:2:125","nodeType":"YulLiteral","src":"33861:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"33846:3:125","nodeType":"YulIdentifier","src":"33846:3:125"},"nativeSrc":"33846:18:125","nodeType":"YulFunctionCall","src":"33846:18:125"},{"hexValue":"41413931206661696c65642073656e6420746f2062656e6566696369617279","kind":"string","nativeSrc":"33866:33:125","nodeType":"YulLiteral","src":"33866:33:125","type":"","value":"AA91 failed send to beneficiary"}],"functionName":{"name":"mstore","nativeSrc":"33839:6:125","nodeType":"YulIdentifier","src":"33839:6:125"},"nativeSrc":"33839:61:125","nodeType":"YulFunctionCall","src":"33839:61:125"},"nativeSrc":"33839:61:125","nodeType":"YulExpressionStatement","src":"33839:61:125"},{"nativeSrc":"33909:26:125","nodeType":"YulAssignment","src":"33909:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"33921:9:125","nodeType":"YulIdentifier","src":"33921:9:125"},{"kind":"number","nativeSrc":"33932:2:125","nodeType":"YulLiteral","src":"33932:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"33917:3:125","nodeType":"YulIdentifier","src":"33917:3:125"},"nativeSrc":"33917:18:125","nodeType":"YulFunctionCall","src":"33917:18:125"},"variableNames":[{"name":"tail","nativeSrc":"33909:4:125","nodeType":"YulIdentifier","src":"33909:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_321532189629d29421359a6160b174523b9558104989fb537a4f9d684a0aa1ea__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"33586:355:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"33737:9:125","nodeType":"YulTypedName","src":"33737:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"33751:4:125","nodeType":"YulTypedName","src":"33751:4:125","type":""}],"src":"33586:355:125"},{"body":{"nativeSrc":"34125:222:125","nodeType":"YulBlock","src":"34125:222:125","statements":[{"nativeSrc":"34135:27:125","nodeType":"YulAssignment","src":"34135:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"34147:9:125","nodeType":"YulIdentifier","src":"34147:9:125"},{"kind":"number","nativeSrc":"34158:3:125","nodeType":"YulLiteral","src":"34158:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"34143:3:125","nodeType":"YulIdentifier","src":"34143:3:125"},"nativeSrc":"34143:19:125","nodeType":"YulFunctionCall","src":"34143:19:125"},"variableNames":[{"name":"tail","nativeSrc":"34135:4:125","nodeType":"YulIdentifier","src":"34135:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"34178:9:125","nodeType":"YulIdentifier","src":"34178:9:125"},{"name":"value0","nativeSrc":"34189:6:125","nodeType":"YulIdentifier","src":"34189:6:125"}],"functionName":{"name":"mstore","nativeSrc":"34171:6:125","nodeType":"YulIdentifier","src":"34171:6:125"},"nativeSrc":"34171:25:125","nodeType":"YulFunctionCall","src":"34171:25:125"},"nativeSrc":"34171:25:125","nodeType":"YulExpressionStatement","src":"34171:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34216:9:125","nodeType":"YulIdentifier","src":"34216:9:125"},{"kind":"number","nativeSrc":"34227:2:125","nodeType":"YulLiteral","src":"34227:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"34212:3:125","nodeType":"YulIdentifier","src":"34212:3:125"},"nativeSrc":"34212:18:125","nodeType":"YulFunctionCall","src":"34212:18:125"},{"arguments":[{"arguments":[{"name":"value1","nativeSrc":"34246:6:125","nodeType":"YulIdentifier","src":"34246:6:125"}],"functionName":{"name":"iszero","nativeSrc":"34239:6:125","nodeType":"YulIdentifier","src":"34239:6:125"},"nativeSrc":"34239:14:125","nodeType":"YulFunctionCall","src":"34239:14:125"}],"functionName":{"name":"iszero","nativeSrc":"34232:6:125","nodeType":"YulIdentifier","src":"34232:6:125"},"nativeSrc":"34232:22:125","nodeType":"YulFunctionCall","src":"34232:22:125"}],"functionName":{"name":"mstore","nativeSrc":"34205:6:125","nodeType":"YulIdentifier","src":"34205:6:125"},"nativeSrc":"34205:50:125","nodeType":"YulFunctionCall","src":"34205:50:125"},"nativeSrc":"34205:50:125","nodeType":"YulExpressionStatement","src":"34205:50:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34275:9:125","nodeType":"YulIdentifier","src":"34275:9:125"},{"kind":"number","nativeSrc":"34286:2:125","nodeType":"YulLiteral","src":"34286:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"34271:3:125","nodeType":"YulIdentifier","src":"34271:3:125"},"nativeSrc":"34271:18:125","nodeType":"YulFunctionCall","src":"34271:18:125"},{"name":"value2","nativeSrc":"34291:6:125","nodeType":"YulIdentifier","src":"34291:6:125"}],"functionName":{"name":"mstore","nativeSrc":"34264:6:125","nodeType":"YulIdentifier","src":"34264:6:125"},"nativeSrc":"34264:34:125","nodeType":"YulFunctionCall","src":"34264:34:125"},"nativeSrc":"34264:34:125","nodeType":"YulExpressionStatement","src":"34264:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34318:9:125","nodeType":"YulIdentifier","src":"34318:9:125"},{"kind":"number","nativeSrc":"34329:2:125","nodeType":"YulLiteral","src":"34329:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"34314:3:125","nodeType":"YulIdentifier","src":"34314:3:125"},"nativeSrc":"34314:18:125","nodeType":"YulFunctionCall","src":"34314:18:125"},{"name":"value3","nativeSrc":"34334:6:125","nodeType":"YulIdentifier","src":"34334:6:125"}],"functionName":{"name":"mstore","nativeSrc":"34307:6:125","nodeType":"YulIdentifier","src":"34307:6:125"},"nativeSrc":"34307:34:125","nodeType":"YulFunctionCall","src":"34307:34:125"},"nativeSrc":"34307:34:125","nodeType":"YulExpressionStatement","src":"34307:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_bool_t_uint256_t_uint256__to_t_uint256_t_bool_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"33946:401:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34070:9:125","nodeType":"YulTypedName","src":"34070:9:125","type":""},{"name":"value3","nativeSrc":"34081:6:125","nodeType":"YulTypedName","src":"34081:6:125","type":""},{"name":"value2","nativeSrc":"34089:6:125","nodeType":"YulTypedName","src":"34089:6:125","type":""},{"name":"value1","nativeSrc":"34097:6:125","nodeType":"YulTypedName","src":"34097:6:125","type":""},{"name":"value0","nativeSrc":"34105:6:125","nodeType":"YulTypedName","src":"34105:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"34116:4:125","nodeType":"YulTypedName","src":"34116:4:125","type":""}],"src":"33946:401:125"},{"body":{"nativeSrc":"34649:408:125","nodeType":"YulBlock","src":"34649:408:125","statements":[{"nativeSrc":"34659:27:125","nodeType":"YulAssignment","src":"34659:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"34671:9:125","nodeType":"YulIdentifier","src":"34671:9:125"},{"kind":"number","nativeSrc":"34682:3:125","nodeType":"YulLiteral","src":"34682:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"34667:3:125","nodeType":"YulIdentifier","src":"34667:3:125"},"nativeSrc":"34667:19:125","nodeType":"YulFunctionCall","src":"34667:19:125"},"variableNames":[{"name":"tail","nativeSrc":"34659:4:125","nodeType":"YulIdentifier","src":"34659:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"34702:9:125","nodeType":"YulIdentifier","src":"34702:9:125"},{"arguments":[{"name":"value0","nativeSrc":"34717:6:125","nodeType":"YulIdentifier","src":"34717:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34733:3:125","nodeType":"YulLiteral","src":"34733:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"34738:1:125","nodeType":"YulLiteral","src":"34738:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"34729:3:125","nodeType":"YulIdentifier","src":"34729:3:125"},"nativeSrc":"34729:11:125","nodeType":"YulFunctionCall","src":"34729:11:125"},{"kind":"number","nativeSrc":"34742:1:125","nodeType":"YulLiteral","src":"34742:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"34725:3:125","nodeType":"YulIdentifier","src":"34725:3:125"},"nativeSrc":"34725:19:125","nodeType":"YulFunctionCall","src":"34725:19:125"}],"functionName":{"name":"and","nativeSrc":"34713:3:125","nodeType":"YulIdentifier","src":"34713:3:125"},"nativeSrc":"34713:32:125","nodeType":"YulFunctionCall","src":"34713:32:125"}],"functionName":{"name":"mstore","nativeSrc":"34695:6:125","nodeType":"YulIdentifier","src":"34695:6:125"},"nativeSrc":"34695:51:125","nodeType":"YulFunctionCall","src":"34695:51:125"},"nativeSrc":"34695:51:125","nodeType":"YulExpressionStatement","src":"34695:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34766:9:125","nodeType":"YulIdentifier","src":"34766:9:125"},{"kind":"number","nativeSrc":"34777:2:125","nodeType":"YulLiteral","src":"34777:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"34762:3:125","nodeType":"YulIdentifier","src":"34762:3:125"},"nativeSrc":"34762:18:125","nodeType":"YulFunctionCall","src":"34762:18:125"},{"name":"value1","nativeSrc":"34782:6:125","nodeType":"YulIdentifier","src":"34782:6:125"}],"functionName":{"name":"mstore","nativeSrc":"34755:6:125","nodeType":"YulIdentifier","src":"34755:6:125"},"nativeSrc":"34755:34:125","nodeType":"YulFunctionCall","src":"34755:34:125"},"nativeSrc":"34755:34:125","nodeType":"YulExpressionStatement","src":"34755:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34809:9:125","nodeType":"YulIdentifier","src":"34809:9:125"},{"kind":"number","nativeSrc":"34820:2:125","nodeType":"YulLiteral","src":"34820:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"34805:3:125","nodeType":"YulIdentifier","src":"34805:3:125"},"nativeSrc":"34805:18:125","nodeType":"YulFunctionCall","src":"34805:18:125"},{"name":"value2","nativeSrc":"34825:6:125","nodeType":"YulIdentifier","src":"34825:6:125"}],"functionName":{"name":"mstore","nativeSrc":"34798:6:125","nodeType":"YulIdentifier","src":"34798:6:125"},"nativeSrc":"34798:34:125","nodeType":"YulFunctionCall","src":"34798:34:125"},"nativeSrc":"34798:34:125","nodeType":"YulExpressionStatement","src":"34798:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34852:9:125","nodeType":"YulIdentifier","src":"34852:9:125"},{"kind":"number","nativeSrc":"34863:2:125","nodeType":"YulLiteral","src":"34863:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"34848:3:125","nodeType":"YulIdentifier","src":"34848:3:125"},"nativeSrc":"34848:18:125","nodeType":"YulFunctionCall","src":"34848:18:125"},{"name":"value3","nativeSrc":"34868:6:125","nodeType":"YulIdentifier","src":"34868:6:125"}],"functionName":{"name":"mstore","nativeSrc":"34841:6:125","nodeType":"YulIdentifier","src":"34841:6:125"},"nativeSrc":"34841:34:125","nodeType":"YulFunctionCall","src":"34841:34:125"},"nativeSrc":"34841:34:125","nodeType":"YulExpressionStatement","src":"34841:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34895:9:125","nodeType":"YulIdentifier","src":"34895:9:125"},{"kind":"number","nativeSrc":"34906:3:125","nodeType":"YulLiteral","src":"34906:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"34891:3:125","nodeType":"YulIdentifier","src":"34891:3:125"},"nativeSrc":"34891:19:125","nodeType":"YulFunctionCall","src":"34891:19:125"},{"name":"value4","nativeSrc":"34912:6:125","nodeType":"YulIdentifier","src":"34912:6:125"}],"functionName":{"name":"mstore","nativeSrc":"34884:6:125","nodeType":"YulIdentifier","src":"34884:6:125"},"nativeSrc":"34884:35:125","nodeType":"YulFunctionCall","src":"34884:35:125"},"nativeSrc":"34884:35:125","nodeType":"YulExpressionStatement","src":"34884:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34939:9:125","nodeType":"YulIdentifier","src":"34939:9:125"},{"kind":"number","nativeSrc":"34950:3:125","nodeType":"YulLiteral","src":"34950:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"34935:3:125","nodeType":"YulIdentifier","src":"34935:3:125"},"nativeSrc":"34935:19:125","nodeType":"YulFunctionCall","src":"34935:19:125"},{"name":"value5","nativeSrc":"34956:6:125","nodeType":"YulIdentifier","src":"34956:6:125"}],"functionName":{"name":"mstore","nativeSrc":"34928:6:125","nodeType":"YulIdentifier","src":"34928:6:125"},"nativeSrc":"34928:35:125","nodeType":"YulFunctionCall","src":"34928:35:125"},"nativeSrc":"34928:35:125","nodeType":"YulExpressionStatement","src":"34928:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34983:9:125","nodeType":"YulIdentifier","src":"34983:9:125"},{"kind":"number","nativeSrc":"34994:3:125","nodeType":"YulLiteral","src":"34994:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"34979:3:125","nodeType":"YulIdentifier","src":"34979:3:125"},"nativeSrc":"34979:19:125","nodeType":"YulFunctionCall","src":"34979:19:125"},{"name":"value6","nativeSrc":"35000:6:125","nodeType":"YulIdentifier","src":"35000:6:125"}],"functionName":{"name":"mstore","nativeSrc":"34972:6:125","nodeType":"YulIdentifier","src":"34972:6:125"},"nativeSrc":"34972:35:125","nodeType":"YulFunctionCall","src":"34972:35:125"},"nativeSrc":"34972:35:125","nodeType":"YulExpressionStatement","src":"34972:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35027:9:125","nodeType":"YulIdentifier","src":"35027:9:125"},{"kind":"number","nativeSrc":"35038:3:125","nodeType":"YulLiteral","src":"35038:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"35023:3:125","nodeType":"YulIdentifier","src":"35023:3:125"},"nativeSrc":"35023:19:125","nodeType":"YulFunctionCall","src":"35023:19:125"},{"name":"value7","nativeSrc":"35044:6:125","nodeType":"YulIdentifier","src":"35044:6:125"}],"functionName":{"name":"mstore","nativeSrc":"35016:6:125","nodeType":"YulIdentifier","src":"35016:6:125"},"nativeSrc":"35016:35:125","nodeType":"YulFunctionCall","src":"35016:35:125"},"nativeSrc":"35016:35:125","nodeType":"YulExpressionStatement","src":"35016:35:125"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_bytes32_t_bytes32__to_t_address_t_uint256_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"34352:705:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34562:9:125","nodeType":"YulTypedName","src":"34562:9:125","type":""},{"name":"value7","nativeSrc":"34573:6:125","nodeType":"YulTypedName","src":"34573:6:125","type":""},{"name":"value6","nativeSrc":"34581:6:125","nodeType":"YulTypedName","src":"34581:6:125","type":""},{"name":"value5","nativeSrc":"34589:6:125","nodeType":"YulTypedName","src":"34589:6:125","type":""},{"name":"value4","nativeSrc":"34597:6:125","nodeType":"YulTypedName","src":"34597:6:125","type":""},{"name":"value3","nativeSrc":"34605:6:125","nodeType":"YulTypedName","src":"34605:6:125","type":""},{"name":"value2","nativeSrc":"34613:6:125","nodeType":"YulTypedName","src":"34613:6:125","type":""},{"name":"value1","nativeSrc":"34621:6:125","nodeType":"YulTypedName","src":"34621:6:125","type":""},{"name":"value0","nativeSrc":"34629:6:125","nodeType":"YulTypedName","src":"34629:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"34640:4:125","nodeType":"YulTypedName","src":"34640:4:125","type":""}],"src":"34352:705:125"},{"body":{"nativeSrc":"35236:179:125","nodeType":"YulBlock","src":"35236:179:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35253:9:125","nodeType":"YulIdentifier","src":"35253:9:125"},{"kind":"number","nativeSrc":"35264:2:125","nodeType":"YulLiteral","src":"35264:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"35246:6:125","nodeType":"YulIdentifier","src":"35246:6:125"},"nativeSrc":"35246:21:125","nodeType":"YulFunctionCall","src":"35246:21:125"},"nativeSrc":"35246:21:125","nodeType":"YulExpressionStatement","src":"35246:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35287:9:125","nodeType":"YulIdentifier","src":"35287:9:125"},{"kind":"number","nativeSrc":"35298:2:125","nodeType":"YulLiteral","src":"35298:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35283:3:125","nodeType":"YulIdentifier","src":"35283:3:125"},"nativeSrc":"35283:18:125","nodeType":"YulFunctionCall","src":"35283:18:125"},{"kind":"number","nativeSrc":"35303:2:125","nodeType":"YulLiteral","src":"35303:2:125","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"35276:6:125","nodeType":"YulIdentifier","src":"35276:6:125"},"nativeSrc":"35276:30:125","nodeType":"YulFunctionCall","src":"35276:30:125"},"nativeSrc":"35276:30:125","nodeType":"YulExpressionStatement","src":"35276:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35326:9:125","nodeType":"YulIdentifier","src":"35326:9:125"},{"kind":"number","nativeSrc":"35337:2:125","nodeType":"YulLiteral","src":"35337:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35322:3:125","nodeType":"YulIdentifier","src":"35322:3:125"},"nativeSrc":"35322:18:125","nodeType":"YulFunctionCall","src":"35322:18:125"},{"hexValue":"4141393320696e76616c6964207061796d6173746572416e6444617461","kind":"string","nativeSrc":"35342:31:125","nodeType":"YulLiteral","src":"35342:31:125","type":"","value":"AA93 invalid paymasterAndData"}],"functionName":{"name":"mstore","nativeSrc":"35315:6:125","nodeType":"YulIdentifier","src":"35315:6:125"},"nativeSrc":"35315:59:125","nodeType":"YulFunctionCall","src":"35315:59:125"},"nativeSrc":"35315:59:125","nodeType":"YulExpressionStatement","src":"35315:59:125"},{"nativeSrc":"35383:26:125","nodeType":"YulAssignment","src":"35383:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"35395:9:125","nodeType":"YulIdentifier","src":"35395:9:125"},{"kind":"number","nativeSrc":"35406:2:125","nodeType":"YulLiteral","src":"35406:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35391:3:125","nodeType":"YulIdentifier","src":"35391:3:125"},"nativeSrc":"35391:18:125","nodeType":"YulFunctionCall","src":"35391:18:125"},"variableNames":[{"name":"tail","nativeSrc":"35383:4:125","nodeType":"YulIdentifier","src":"35383:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_bed5bf2586bcf71963468f5a6e4def651dfab48dcb520989dbad3d1cd3cd8bdd__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"35062:353:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35213:9:125","nodeType":"YulTypedName","src":"35213:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35227:4:125","nodeType":"YulTypedName","src":"35227:4:125","type":""}],"src":"35062:353:125"},{"body":{"nativeSrc":"35653:214:125","nodeType":"YulBlock","src":"35653:214:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35670:9:125","nodeType":"YulIdentifier","src":"35670:9:125"},{"kind":"number","nativeSrc":"35681:2:125","nodeType":"YulLiteral","src":"35681:2:125","type":"","value":"96"}],"functionName":{"name":"mstore","nativeSrc":"35663:6:125","nodeType":"YulIdentifier","src":"35663:6:125"},"nativeSrc":"35663:21:125","nodeType":"YulFunctionCall","src":"35663:21:125"},"nativeSrc":"35663:21:125","nodeType":"YulExpressionStatement","src":"35663:21:125"},{"nativeSrc":"35693:82:125","nodeType":"YulAssignment","src":"35693:82:125","value":{"arguments":[{"name":"value0","nativeSrc":"35748:6:125","nodeType":"YulIdentifier","src":"35748:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"35760:9:125","nodeType":"YulIdentifier","src":"35760:9:125"},{"kind":"number","nativeSrc":"35771:2:125","nodeType":"YulLiteral","src":"35771:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35756:3:125","nodeType":"YulIdentifier","src":"35756:3:125"},"nativeSrc":"35756:18:125","nodeType":"YulFunctionCall","src":"35756:18:125"}],"functionName":{"name":"abi_encode_struct_PackedUserOperation_calldata","nativeSrc":"35701:46:125","nodeType":"YulIdentifier","src":"35701:46:125"},"nativeSrc":"35701:74:125","nodeType":"YulFunctionCall","src":"35701:74:125"},"variableNames":[{"name":"tail","nativeSrc":"35693:4:125","nodeType":"YulIdentifier","src":"35693:4:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35795:9:125","nodeType":"YulIdentifier","src":"35795:9:125"},{"kind":"number","nativeSrc":"35806:2:125","nodeType":"YulLiteral","src":"35806:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35791:3:125","nodeType":"YulIdentifier","src":"35791:3:125"},"nativeSrc":"35791:18:125","nodeType":"YulFunctionCall","src":"35791:18:125"},{"name":"value1","nativeSrc":"35811:6:125","nodeType":"YulIdentifier","src":"35811:6:125"}],"functionName":{"name":"mstore","nativeSrc":"35784:6:125","nodeType":"YulIdentifier","src":"35784:6:125"},"nativeSrc":"35784:34:125","nodeType":"YulFunctionCall","src":"35784:34:125"},"nativeSrc":"35784:34:125","nodeType":"YulExpressionStatement","src":"35784:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35838:9:125","nodeType":"YulIdentifier","src":"35838:9:125"},{"kind":"number","nativeSrc":"35849:2:125","nodeType":"YulLiteral","src":"35849:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35834:3:125","nodeType":"YulIdentifier","src":"35834:3:125"},"nativeSrc":"35834:18:125","nodeType":"YulFunctionCall","src":"35834:18:125"},{"name":"value2","nativeSrc":"35854:6:125","nodeType":"YulIdentifier","src":"35854:6:125"}],"functionName":{"name":"mstore","nativeSrc":"35827:6:125","nodeType":"YulIdentifier","src":"35827:6:125"},"nativeSrc":"35827:34:125","nodeType":"YulFunctionCall","src":"35827:34:125"},"nativeSrc":"35827:34:125","nodeType":"YulExpressionStatement","src":"35827:34:125"}]},"name":"abi_encode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr_t_bytes32_t_uint256__to_t_struct$_PackedUserOperation_$3748_memory_ptr_t_bytes32_t_uint256__fromStack_reversed","nativeSrc":"35420:447:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35606:9:125","nodeType":"YulTypedName","src":"35606:9:125","type":""},{"name":"value2","nativeSrc":"35617:6:125","nodeType":"YulTypedName","src":"35617:6:125","type":""},{"name":"value1","nativeSrc":"35625:6:125","nodeType":"YulTypedName","src":"35625:6:125","type":""},{"name":"value0","nativeSrc":"35633:6:125","nodeType":"YulTypedName","src":"35633:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35644:4:125","nodeType":"YulTypedName","src":"35644:4:125","type":""}],"src":"35420:447:125"},{"body":{"nativeSrc":"35953:149:125","nodeType":"YulBlock","src":"35953:149:125","statements":[{"body":{"nativeSrc":"35999:16:125","nodeType":"YulBlock","src":"35999:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"36008:1:125","nodeType":"YulLiteral","src":"36008:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"36011:1:125","nodeType":"YulLiteral","src":"36011:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"36001:6:125","nodeType":"YulIdentifier","src":"36001:6:125"},"nativeSrc":"36001:12:125","nodeType":"YulFunctionCall","src":"36001:12:125"},"nativeSrc":"36001:12:125","nodeType":"YulExpressionStatement","src":"36001:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"35974:7:125","nodeType":"YulIdentifier","src":"35974:7:125"},{"name":"headStart","nativeSrc":"35983:9:125","nodeType":"YulIdentifier","src":"35983:9:125"}],"functionName":{"name":"sub","nativeSrc":"35970:3:125","nodeType":"YulIdentifier","src":"35970:3:125"},"nativeSrc":"35970:23:125","nodeType":"YulFunctionCall","src":"35970:23:125"},{"kind":"number","nativeSrc":"35995:2:125","nodeType":"YulLiteral","src":"35995:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"35966:3:125","nodeType":"YulIdentifier","src":"35966:3:125"},"nativeSrc":"35966:32:125","nodeType":"YulFunctionCall","src":"35966:32:125"},"nativeSrc":"35963:52:125","nodeType":"YulIf","src":"35963:52:125"},{"nativeSrc":"36024:14:125","nodeType":"YulVariableDeclaration","src":"36024:14:125","value":{"kind":"number","nativeSrc":"36037:1:125","nodeType":"YulLiteral","src":"36037:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"36028:5:125","nodeType":"YulTypedName","src":"36028:5:125","type":""}]},{"nativeSrc":"36047:25:125","nodeType":"YulAssignment","src":"36047:25:125","value":{"arguments":[{"name":"headStart","nativeSrc":"36062:9:125","nodeType":"YulIdentifier","src":"36062:9:125"}],"functionName":{"name":"mload","nativeSrc":"36056:5:125","nodeType":"YulIdentifier","src":"36056:5:125"},"nativeSrc":"36056:16:125","nodeType":"YulFunctionCall","src":"36056:16:125"},"variableNames":[{"name":"value","nativeSrc":"36047:5:125","nodeType":"YulIdentifier","src":"36047:5:125"}]},{"nativeSrc":"36081:15:125","nodeType":"YulAssignment","src":"36081:15:125","value":{"name":"value","nativeSrc":"36091:5:125","nodeType":"YulIdentifier","src":"36091:5:125"},"variableNames":[{"name":"value0","nativeSrc":"36081:6:125","nodeType":"YulIdentifier","src":"36081:6:125"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"35872:230:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35919:9:125","nodeType":"YulTypedName","src":"35919:9:125","type":""},{"name":"dataEnd","nativeSrc":"35930:7:125","nodeType":"YulTypedName","src":"35930:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"35942:6:125","nodeType":"YulTypedName","src":"35942:6:125","type":""}],"src":"35872:230:125"},{"body":{"nativeSrc":"36355:274:125","nodeType":"YulBlock","src":"36355:274:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"36372:9:125","nodeType":"YulIdentifier","src":"36372:9:125"},{"name":"value0","nativeSrc":"36383:6:125","nodeType":"YulIdentifier","src":"36383:6:125"}],"functionName":{"name":"mstore","nativeSrc":"36365:6:125","nodeType":"YulIdentifier","src":"36365:6:125"},"nativeSrc":"36365:25:125","nodeType":"YulFunctionCall","src":"36365:25:125"},"nativeSrc":"36365:25:125","nodeType":"YulExpressionStatement","src":"36365:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36410:9:125","nodeType":"YulIdentifier","src":"36410:9:125"},{"kind":"number","nativeSrc":"36421:2:125","nodeType":"YulLiteral","src":"36421:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"36406:3:125","nodeType":"YulIdentifier","src":"36406:3:125"},"nativeSrc":"36406:18:125","nodeType":"YulFunctionCall","src":"36406:18:125"},{"kind":"number","nativeSrc":"36426:2:125","nodeType":"YulLiteral","src":"36426:2:125","type":"","value":"96"}],"functionName":{"name":"mstore","nativeSrc":"36399:6:125","nodeType":"YulIdentifier","src":"36399:6:125"},"nativeSrc":"36399:30:125","nodeType":"YulFunctionCall","src":"36399:30:125"},"nativeSrc":"36399:30:125","nodeType":"YulExpressionStatement","src":"36399:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36449:9:125","nodeType":"YulIdentifier","src":"36449:9:125"},{"kind":"number","nativeSrc":"36460:2:125","nodeType":"YulLiteral","src":"36460:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"36445:3:125","nodeType":"YulIdentifier","src":"36445:3:125"},"nativeSrc":"36445:18:125","nodeType":"YulFunctionCall","src":"36445:18:125"},{"kind":"number","nativeSrc":"36465:2:125","nodeType":"YulLiteral","src":"36465:2:125","type":"","value":"13"}],"functionName":{"name":"mstore","nativeSrc":"36438:6:125","nodeType":"YulIdentifier","src":"36438:6:125"},"nativeSrc":"36438:30:125","nodeType":"YulFunctionCall","src":"36438:30:125"},"nativeSrc":"36438:30:125","nodeType":"YulExpressionStatement","src":"36438:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36488:9:125","nodeType":"YulIdentifier","src":"36488:9:125"},{"kind":"number","nativeSrc":"36499:3:125","nodeType":"YulLiteral","src":"36499:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"36484:3:125","nodeType":"YulIdentifier","src":"36484:3:125"},"nativeSrc":"36484:19:125","nodeType":"YulFunctionCall","src":"36484:19:125"},{"hexValue":"41413233207265766572746564","kind":"string","nativeSrc":"36505:15:125","nodeType":"YulLiteral","src":"36505:15:125","type":"","value":"AA23 reverted"}],"functionName":{"name":"mstore","nativeSrc":"36477:6:125","nodeType":"YulIdentifier","src":"36477:6:125"},"nativeSrc":"36477:44:125","nodeType":"YulFunctionCall","src":"36477:44:125"},"nativeSrc":"36477:44:125","nodeType":"YulExpressionStatement","src":"36477:44:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36541:9:125","nodeType":"YulIdentifier","src":"36541:9:125"},{"kind":"number","nativeSrc":"36552:2:125","nodeType":"YulLiteral","src":"36552:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"36537:3:125","nodeType":"YulIdentifier","src":"36537:3:125"},"nativeSrc":"36537:18:125","nodeType":"YulFunctionCall","src":"36537:18:125"},{"kind":"number","nativeSrc":"36557:3:125","nodeType":"YulLiteral","src":"36557:3:125","type":"","value":"160"}],"functionName":{"name":"mstore","nativeSrc":"36530:6:125","nodeType":"YulIdentifier","src":"36530:6:125"},"nativeSrc":"36530:31:125","nodeType":"YulFunctionCall","src":"36530:31:125"},"nativeSrc":"36530:31:125","nodeType":"YulExpressionStatement","src":"36530:31:125"},{"nativeSrc":"36570:53:125","nodeType":"YulAssignment","src":"36570:53:125","value":{"arguments":[{"name":"value1","nativeSrc":"36595:6:125","nodeType":"YulIdentifier","src":"36595:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"36607:9:125","nodeType":"YulIdentifier","src":"36607:9:125"},{"kind":"number","nativeSrc":"36618:3:125","nodeType":"YulLiteral","src":"36618:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"36603:3:125","nodeType":"YulIdentifier","src":"36603:3:125"},"nativeSrc":"36603:19:125","nodeType":"YulFunctionCall","src":"36603:19:125"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"36578:16:125","nodeType":"YulIdentifier","src":"36578:16:125"},"nativeSrc":"36578:45:125","nodeType":"YulFunctionCall","src":"36578:45:125"},"variableNames":[{"name":"tail","nativeSrc":"36570:4:125","nodeType":"YulIdentifier","src":"36570:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_f272bf03d6e7cfb67a72dd0c4aee94925483c9b766e02beaec86cf4f0a3b9477_t_bytes_memory_ptr__to_t_uint256_t_string_memory_ptr_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"36107:522:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36316:9:125","nodeType":"YulTypedName","src":"36316:9:125","type":""},{"name":"value1","nativeSrc":"36327:6:125","nodeType":"YulTypedName","src":"36327:6:125","type":""},{"name":"value0","nativeSrc":"36335:6:125","nodeType":"YulTypedName","src":"36335:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"36346:4:125","nodeType":"YulTypedName","src":"36346:4:125","type":""}],"src":"36107:522:125"},{"body":{"nativeSrc":"36836:217:125","nodeType":"YulBlock","src":"36836:217:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"36853:9:125","nodeType":"YulIdentifier","src":"36853:9:125"},{"name":"value0","nativeSrc":"36864:6:125","nodeType":"YulIdentifier","src":"36864:6:125"}],"functionName":{"name":"mstore","nativeSrc":"36846:6:125","nodeType":"YulIdentifier","src":"36846:6:125"},"nativeSrc":"36846:25:125","nodeType":"YulFunctionCall","src":"36846:25:125"},"nativeSrc":"36846:25:125","nodeType":"YulExpressionStatement","src":"36846:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36891:9:125","nodeType":"YulIdentifier","src":"36891:9:125"},{"kind":"number","nativeSrc":"36902:2:125","nodeType":"YulLiteral","src":"36902:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"36887:3:125","nodeType":"YulIdentifier","src":"36887:3:125"},"nativeSrc":"36887:18:125","nodeType":"YulFunctionCall","src":"36887:18:125"},{"kind":"number","nativeSrc":"36907:2:125","nodeType":"YulLiteral","src":"36907:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"36880:6:125","nodeType":"YulIdentifier","src":"36880:6:125"},"nativeSrc":"36880:30:125","nodeType":"YulFunctionCall","src":"36880:30:125"},"nativeSrc":"36880:30:125","nodeType":"YulExpressionStatement","src":"36880:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36930:9:125","nodeType":"YulIdentifier","src":"36930:9:125"},{"kind":"number","nativeSrc":"36941:2:125","nodeType":"YulLiteral","src":"36941:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"36926:3:125","nodeType":"YulIdentifier","src":"36926:3:125"},"nativeSrc":"36926:18:125","nodeType":"YulFunctionCall","src":"36926:18:125"},{"kind":"number","nativeSrc":"36946:2:125","nodeType":"YulLiteral","src":"36946:2:125","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"36919:6:125","nodeType":"YulIdentifier","src":"36919:6:125"},"nativeSrc":"36919:30:125","nodeType":"YulFunctionCall","src":"36919:30:125"},"nativeSrc":"36919:30:125","nodeType":"YulExpressionStatement","src":"36919:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36969:9:125","nodeType":"YulIdentifier","src":"36969:9:125"},{"kind":"number","nativeSrc":"36980:2:125","nodeType":"YulLiteral","src":"36980:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"36965:3:125","nodeType":"YulIdentifier","src":"36965:3:125"},"nativeSrc":"36965:18:125","nodeType":"YulFunctionCall","src":"36965:18:125"},{"hexValue":"41413231206469646e2774207061792070726566756e64","kind":"string","nativeSrc":"36985:25:125","nodeType":"YulLiteral","src":"36985:25:125","type":"","value":"AA21 didn't pay prefund"}],"functionName":{"name":"mstore","nativeSrc":"36958:6:125","nodeType":"YulIdentifier","src":"36958:6:125"},"nativeSrc":"36958:53:125","nodeType":"YulFunctionCall","src":"36958:53:125"},"nativeSrc":"36958:53:125","nodeType":"YulExpressionStatement","src":"36958:53:125"},{"nativeSrc":"37020:27:125","nodeType":"YulAssignment","src":"37020:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"37032:9:125","nodeType":"YulIdentifier","src":"37032:9:125"},{"kind":"number","nativeSrc":"37043:3:125","nodeType":"YulLiteral","src":"37043:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"37028:3:125","nodeType":"YulIdentifier","src":"37028:3:125"},"nativeSrc":"37028:19:125","nodeType":"YulFunctionCall","src":"37028:19:125"},"variableNames":[{"name":"tail","nativeSrc":"37020:4:125","nodeType":"YulIdentifier","src":"37020:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_af9d5dc558e78f4dcea94657e51b2cc454e4ce4aecf26fcc28fc02e10982eb3d__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"36634:419:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36805:9:125","nodeType":"YulTypedName","src":"36805:9:125","type":""},{"name":"value0","nativeSrc":"36816:6:125","nodeType":"YulTypedName","src":"36816:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"36827:4:125","nodeType":"YulTypedName","src":"36827:4:125","type":""}],"src":"36634:419:125"},{"body":{"nativeSrc":"37260:224:125","nodeType":"YulBlock","src":"37260:224:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"37277:9:125","nodeType":"YulIdentifier","src":"37277:9:125"},{"name":"value0","nativeSrc":"37288:6:125","nodeType":"YulIdentifier","src":"37288:6:125"}],"functionName":{"name":"mstore","nativeSrc":"37270:6:125","nodeType":"YulIdentifier","src":"37270:6:125"},"nativeSrc":"37270:25:125","nodeType":"YulFunctionCall","src":"37270:25:125"},"nativeSrc":"37270:25:125","nodeType":"YulExpressionStatement","src":"37270:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37315:9:125","nodeType":"YulIdentifier","src":"37315:9:125"},{"kind":"number","nativeSrc":"37326:2:125","nodeType":"YulLiteral","src":"37326:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"37311:3:125","nodeType":"YulIdentifier","src":"37311:3:125"},"nativeSrc":"37311:18:125","nodeType":"YulFunctionCall","src":"37311:18:125"},{"kind":"number","nativeSrc":"37331:2:125","nodeType":"YulLiteral","src":"37331:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"37304:6:125","nodeType":"YulIdentifier","src":"37304:6:125"},"nativeSrc":"37304:30:125","nodeType":"YulFunctionCall","src":"37304:30:125"},"nativeSrc":"37304:30:125","nodeType":"YulExpressionStatement","src":"37304:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37354:9:125","nodeType":"YulIdentifier","src":"37354:9:125"},{"kind":"number","nativeSrc":"37365:2:125","nodeType":"YulLiteral","src":"37365:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"37350:3:125","nodeType":"YulIdentifier","src":"37350:3:125"},"nativeSrc":"37350:18:125","nodeType":"YulFunctionCall","src":"37350:18:125"},{"kind":"number","nativeSrc":"37370:2:125","nodeType":"YulLiteral","src":"37370:2:125","type":"","value":"30"}],"functionName":{"name":"mstore","nativeSrc":"37343:6:125","nodeType":"YulIdentifier","src":"37343:6:125"},"nativeSrc":"37343:30:125","nodeType":"YulFunctionCall","src":"37343:30:125"},"nativeSrc":"37343:30:125","nodeType":"YulExpressionStatement","src":"37343:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37393:9:125","nodeType":"YulIdentifier","src":"37393:9:125"},{"kind":"number","nativeSrc":"37404:2:125","nodeType":"YulLiteral","src":"37404:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"37389:3:125","nodeType":"YulIdentifier","src":"37389:3:125"},"nativeSrc":"37389:18:125","nodeType":"YulFunctionCall","src":"37389:18:125"},{"hexValue":"41413331207061796d6173746572206465706f73697420746f6f206c6f77","kind":"string","nativeSrc":"37409:32:125","nodeType":"YulLiteral","src":"37409:32:125","type":"","value":"AA31 paymaster deposit too low"}],"functionName":{"name":"mstore","nativeSrc":"37382:6:125","nodeType":"YulIdentifier","src":"37382:6:125"},"nativeSrc":"37382:60:125","nodeType":"YulFunctionCall","src":"37382:60:125"},"nativeSrc":"37382:60:125","nodeType":"YulExpressionStatement","src":"37382:60:125"},{"nativeSrc":"37451:27:125","nodeType":"YulAssignment","src":"37451:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"37463:9:125","nodeType":"YulIdentifier","src":"37463:9:125"},{"kind":"number","nativeSrc":"37474:3:125","nodeType":"YulLiteral","src":"37474:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"37459:3:125","nodeType":"YulIdentifier","src":"37459:3:125"},"nativeSrc":"37459:19:125","nodeType":"YulFunctionCall","src":"37459:19:125"},"variableNames":[{"name":"tail","nativeSrc":"37451:4:125","nodeType":"YulIdentifier","src":"37451:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_423a165b7dbbda2ae3873c5d3fae3c0ad56dda63b0eb4d372683317213e4df0f__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"37058:426:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37229:9:125","nodeType":"YulTypedName","src":"37229:9:125","type":""},{"name":"value0","nativeSrc":"37240:6:125","nodeType":"YulTypedName","src":"37240:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"37251:4:125","nodeType":"YulTypedName","src":"37251:4:125","type":""}],"src":"37058:426:125"},{"body":{"nativeSrc":"37596:695:125","nodeType":"YulBlock","src":"37596:695:125","statements":[{"body":{"nativeSrc":"37642:16:125","nodeType":"YulBlock","src":"37642:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"37651:1:125","nodeType":"YulLiteral","src":"37651:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"37654:1:125","nodeType":"YulLiteral","src":"37654:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"37644:6:125","nodeType":"YulIdentifier","src":"37644:6:125"},"nativeSrc":"37644:12:125","nodeType":"YulFunctionCall","src":"37644:12:125"},"nativeSrc":"37644:12:125","nodeType":"YulExpressionStatement","src":"37644:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"37617:7:125","nodeType":"YulIdentifier","src":"37617:7:125"},{"name":"headStart","nativeSrc":"37626:9:125","nodeType":"YulIdentifier","src":"37626:9:125"}],"functionName":{"name":"sub","nativeSrc":"37613:3:125","nodeType":"YulIdentifier","src":"37613:3:125"},"nativeSrc":"37613:23:125","nodeType":"YulFunctionCall","src":"37613:23:125"},{"kind":"number","nativeSrc":"37638:2:125","nodeType":"YulLiteral","src":"37638:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"37609:3:125","nodeType":"YulIdentifier","src":"37609:3:125"},"nativeSrc":"37609:32:125","nodeType":"YulFunctionCall","src":"37609:32:125"},"nativeSrc":"37606:52:125","nodeType":"YulIf","src":"37606:52:125"},{"nativeSrc":"37667:30:125","nodeType":"YulVariableDeclaration","src":"37667:30:125","value":{"arguments":[{"name":"headStart","nativeSrc":"37687:9:125","nodeType":"YulIdentifier","src":"37687:9:125"}],"functionName":{"name":"mload","nativeSrc":"37681:5:125","nodeType":"YulIdentifier","src":"37681:5:125"},"nativeSrc":"37681:16:125","nodeType":"YulFunctionCall","src":"37681:16:125"},"variables":[{"name":"offset","nativeSrc":"37671:6:125","nodeType":"YulTypedName","src":"37671:6:125","type":""}]},{"body":{"nativeSrc":"37740:16:125","nodeType":"YulBlock","src":"37740:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"37749:1:125","nodeType":"YulLiteral","src":"37749:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"37752:1:125","nodeType":"YulLiteral","src":"37752:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"37742:6:125","nodeType":"YulIdentifier","src":"37742:6:125"},"nativeSrc":"37742:12:125","nodeType":"YulFunctionCall","src":"37742:12:125"},"nativeSrc":"37742:12:125","nodeType":"YulExpressionStatement","src":"37742:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"37712:6:125","nodeType":"YulIdentifier","src":"37712:6:125"},{"kind":"number","nativeSrc":"37720:18:125","nodeType":"YulLiteral","src":"37720:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"37709:2:125","nodeType":"YulIdentifier","src":"37709:2:125"},"nativeSrc":"37709:30:125","nodeType":"YulFunctionCall","src":"37709:30:125"},"nativeSrc":"37706:50:125","nodeType":"YulIf","src":"37706:50:125"},{"nativeSrc":"37765:32:125","nodeType":"YulVariableDeclaration","src":"37765:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"37779:9:125","nodeType":"YulIdentifier","src":"37779:9:125"},{"name":"offset","nativeSrc":"37790:6:125","nodeType":"YulIdentifier","src":"37790:6:125"}],"functionName":{"name":"add","nativeSrc":"37775:3:125","nodeType":"YulIdentifier","src":"37775:3:125"},"nativeSrc":"37775:22:125","nodeType":"YulFunctionCall","src":"37775:22:125"},"variables":[{"name":"_1","nativeSrc":"37769:2:125","nodeType":"YulTypedName","src":"37769:2:125","type":""}]},{"body":{"nativeSrc":"37845:16:125","nodeType":"YulBlock","src":"37845:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"37854:1:125","nodeType":"YulLiteral","src":"37854:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"37857:1:125","nodeType":"YulLiteral","src":"37857:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"37847:6:125","nodeType":"YulIdentifier","src":"37847:6:125"},"nativeSrc":"37847:12:125","nodeType":"YulFunctionCall","src":"37847:12:125"},"nativeSrc":"37847:12:125","nodeType":"YulExpressionStatement","src":"37847:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"37824:2:125","nodeType":"YulIdentifier","src":"37824:2:125"},{"kind":"number","nativeSrc":"37828:4:125","nodeType":"YulLiteral","src":"37828:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"37820:3:125","nodeType":"YulIdentifier","src":"37820:3:125"},"nativeSrc":"37820:13:125","nodeType":"YulFunctionCall","src":"37820:13:125"},{"name":"dataEnd","nativeSrc":"37835:7:125","nodeType":"YulIdentifier","src":"37835:7:125"}],"functionName":{"name":"slt","nativeSrc":"37816:3:125","nodeType":"YulIdentifier","src":"37816:3:125"},"nativeSrc":"37816:27:125","nodeType":"YulFunctionCall","src":"37816:27:125"}],"functionName":{"name":"iszero","nativeSrc":"37809:6:125","nodeType":"YulIdentifier","src":"37809:6:125"},"nativeSrc":"37809:35:125","nodeType":"YulFunctionCall","src":"37809:35:125"},"nativeSrc":"37806:55:125","nodeType":"YulIf","src":"37806:55:125"},{"nativeSrc":"37870:23:125","nodeType":"YulVariableDeclaration","src":"37870:23:125","value":{"arguments":[{"name":"_1","nativeSrc":"37890:2:125","nodeType":"YulIdentifier","src":"37890:2:125"}],"functionName":{"name":"mload","nativeSrc":"37884:5:125","nodeType":"YulIdentifier","src":"37884:5:125"},"nativeSrc":"37884:9:125","nodeType":"YulFunctionCall","src":"37884:9:125"},"variables":[{"name":"length","nativeSrc":"37874:6:125","nodeType":"YulTypedName","src":"37874:6:125","type":""}]},{"nativeSrc":"37902:65:125","nodeType":"YulVariableDeclaration","src":"37902:65:125","value":{"arguments":[{"arguments":[{"name":"length","nativeSrc":"37959:6:125","nodeType":"YulIdentifier","src":"37959:6:125"}],"functionName":{"name":"array_allocation_size_bytes","nativeSrc":"37931:27:125","nodeType":"YulIdentifier","src":"37931:27:125"},"nativeSrc":"37931:35:125","nodeType":"YulFunctionCall","src":"37931:35:125"}],"functionName":{"name":"allocate_memory","nativeSrc":"37915:15:125","nodeType":"YulIdentifier","src":"37915:15:125"},"nativeSrc":"37915:52:125","nodeType":"YulFunctionCall","src":"37915:52:125"},"variables":[{"name":"array","nativeSrc":"37906:5:125","nodeType":"YulTypedName","src":"37906:5:125","type":""}]},{"expression":{"arguments":[{"name":"array","nativeSrc":"37983:5:125","nodeType":"YulIdentifier","src":"37983:5:125"},{"name":"length","nativeSrc":"37990:6:125","nodeType":"YulIdentifier","src":"37990:6:125"}],"functionName":{"name":"mstore","nativeSrc":"37976:6:125","nodeType":"YulIdentifier","src":"37976:6:125"},"nativeSrc":"37976:21:125","nodeType":"YulFunctionCall","src":"37976:21:125"},"nativeSrc":"37976:21:125","nodeType":"YulExpressionStatement","src":"37976:21:125"},{"body":{"nativeSrc":"38049:16:125","nodeType":"YulBlock","src":"38049:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"38058:1:125","nodeType":"YulLiteral","src":"38058:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"38061:1:125","nodeType":"YulLiteral","src":"38061:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"38051:6:125","nodeType":"YulIdentifier","src":"38051:6:125"},"nativeSrc":"38051:12:125","nodeType":"YulFunctionCall","src":"38051:12:125"},"nativeSrc":"38051:12:125","nodeType":"YulExpressionStatement","src":"38051:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"38020:2:125","nodeType":"YulIdentifier","src":"38020:2:125"},{"name":"length","nativeSrc":"38024:6:125","nodeType":"YulIdentifier","src":"38024:6:125"}],"functionName":{"name":"add","nativeSrc":"38016:3:125","nodeType":"YulIdentifier","src":"38016:3:125"},"nativeSrc":"38016:15:125","nodeType":"YulFunctionCall","src":"38016:15:125"},{"kind":"number","nativeSrc":"38033:4:125","nodeType":"YulLiteral","src":"38033:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"38012:3:125","nodeType":"YulIdentifier","src":"38012:3:125"},"nativeSrc":"38012:26:125","nodeType":"YulFunctionCall","src":"38012:26:125"},{"name":"dataEnd","nativeSrc":"38040:7:125","nodeType":"YulIdentifier","src":"38040:7:125"}],"functionName":{"name":"gt","nativeSrc":"38009:2:125","nodeType":"YulIdentifier","src":"38009:2:125"},"nativeSrc":"38009:39:125","nodeType":"YulFunctionCall","src":"38009:39:125"},"nativeSrc":"38006:59:125","nodeType":"YulIf","src":"38006:59:125"},{"expression":{"arguments":[{"arguments":[{"name":"array","nativeSrc":"38084:5:125","nodeType":"YulIdentifier","src":"38084:5:125"},{"kind":"number","nativeSrc":"38091:4:125","nodeType":"YulLiteral","src":"38091:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"38080:3:125","nodeType":"YulIdentifier","src":"38080:3:125"},"nativeSrc":"38080:16:125","nodeType":"YulFunctionCall","src":"38080:16:125"},{"arguments":[{"name":"_1","nativeSrc":"38102:2:125","nodeType":"YulIdentifier","src":"38102:2:125"},{"kind":"number","nativeSrc":"38106:4:125","nodeType":"YulLiteral","src":"38106:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"38098:3:125","nodeType":"YulIdentifier","src":"38098:3:125"},"nativeSrc":"38098:13:125","nodeType":"YulFunctionCall","src":"38098:13:125"},{"name":"length","nativeSrc":"38113:6:125","nodeType":"YulIdentifier","src":"38113:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"38074:5:125","nodeType":"YulIdentifier","src":"38074:5:125"},"nativeSrc":"38074:46:125","nodeType":"YulFunctionCall","src":"38074:46:125"},"nativeSrc":"38074:46:125","nodeType":"YulExpressionStatement","src":"38074:46:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"array","nativeSrc":"38144:5:125","nodeType":"YulIdentifier","src":"38144:5:125"},{"name":"length","nativeSrc":"38151:6:125","nodeType":"YulIdentifier","src":"38151:6:125"}],"functionName":{"name":"add","nativeSrc":"38140:3:125","nodeType":"YulIdentifier","src":"38140:3:125"},"nativeSrc":"38140:18:125","nodeType":"YulFunctionCall","src":"38140:18:125"},{"kind":"number","nativeSrc":"38160:4:125","nodeType":"YulLiteral","src":"38160:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"38136:3:125","nodeType":"YulIdentifier","src":"38136:3:125"},"nativeSrc":"38136:29:125","nodeType":"YulFunctionCall","src":"38136:29:125"},{"kind":"number","nativeSrc":"38167:1:125","nodeType":"YulLiteral","src":"38167:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"38129:6:125","nodeType":"YulIdentifier","src":"38129:6:125"},"nativeSrc":"38129:40:125","nodeType":"YulFunctionCall","src":"38129:40:125"},"nativeSrc":"38129:40:125","nodeType":"YulExpressionStatement","src":"38129:40:125"},{"nativeSrc":"38178:15:125","nodeType":"YulAssignment","src":"38178:15:125","value":{"name":"array","nativeSrc":"38188:5:125","nodeType":"YulIdentifier","src":"38188:5:125"},"variableNames":[{"name":"value0","nativeSrc":"38178:6:125","nodeType":"YulIdentifier","src":"38178:6:125"}]},{"nativeSrc":"38202:14:125","nodeType":"YulVariableDeclaration","src":"38202:14:125","value":{"kind":"number","nativeSrc":"38215:1:125","nodeType":"YulLiteral","src":"38215:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"38206:5:125","nodeType":"YulTypedName","src":"38206:5:125","type":""}]},{"nativeSrc":"38225:36:125","nodeType":"YulAssignment","src":"38225:36:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38244:9:125","nodeType":"YulIdentifier","src":"38244:9:125"},{"kind":"number","nativeSrc":"38255:4:125","nodeType":"YulLiteral","src":"38255:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"38240:3:125","nodeType":"YulIdentifier","src":"38240:3:125"},"nativeSrc":"38240:20:125","nodeType":"YulFunctionCall","src":"38240:20:125"}],"functionName":{"name":"mload","nativeSrc":"38234:5:125","nodeType":"YulIdentifier","src":"38234:5:125"},"nativeSrc":"38234:27:125","nodeType":"YulFunctionCall","src":"38234:27:125"},"variableNames":[{"name":"value","nativeSrc":"38225:5:125","nodeType":"YulIdentifier","src":"38225:5:125"}]},{"nativeSrc":"38270:15:125","nodeType":"YulAssignment","src":"38270:15:125","value":{"name":"value","nativeSrc":"38280:5:125","nodeType":"YulIdentifier","src":"38280:5:125"},"variableNames":[{"name":"value1","nativeSrc":"38270:6:125","nodeType":"YulIdentifier","src":"38270:6:125"}]}]},"name":"abi_decode_tuple_t_bytes_memory_ptrt_uint256_fromMemory","nativeSrc":"37489:802:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37554:9:125","nodeType":"YulTypedName","src":"37554:9:125","type":""},{"name":"dataEnd","nativeSrc":"37565:7:125","nodeType":"YulTypedName","src":"37565:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"37577:6:125","nodeType":"YulTypedName","src":"37577:6:125","type":""},{"name":"value1","nativeSrc":"37585:6:125","nodeType":"YulTypedName","src":"37585:6:125","type":""}],"src":"37489:802:125"},{"body":{"nativeSrc":"38544:274:125","nodeType":"YulBlock","src":"38544:274:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"38561:9:125","nodeType":"YulIdentifier","src":"38561:9:125"},{"name":"value0","nativeSrc":"38572:6:125","nodeType":"YulIdentifier","src":"38572:6:125"}],"functionName":{"name":"mstore","nativeSrc":"38554:6:125","nodeType":"YulIdentifier","src":"38554:6:125"},"nativeSrc":"38554:25:125","nodeType":"YulFunctionCall","src":"38554:25:125"},"nativeSrc":"38554:25:125","nodeType":"YulExpressionStatement","src":"38554:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38599:9:125","nodeType":"YulIdentifier","src":"38599:9:125"},{"kind":"number","nativeSrc":"38610:2:125","nodeType":"YulLiteral","src":"38610:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"38595:3:125","nodeType":"YulIdentifier","src":"38595:3:125"},"nativeSrc":"38595:18:125","nodeType":"YulFunctionCall","src":"38595:18:125"},{"kind":"number","nativeSrc":"38615:2:125","nodeType":"YulLiteral","src":"38615:2:125","type":"","value":"96"}],"functionName":{"name":"mstore","nativeSrc":"38588:6:125","nodeType":"YulIdentifier","src":"38588:6:125"},"nativeSrc":"38588:30:125","nodeType":"YulFunctionCall","src":"38588:30:125"},"nativeSrc":"38588:30:125","nodeType":"YulExpressionStatement","src":"38588:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38638:9:125","nodeType":"YulIdentifier","src":"38638:9:125"},{"kind":"number","nativeSrc":"38649:2:125","nodeType":"YulLiteral","src":"38649:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"38634:3:125","nodeType":"YulIdentifier","src":"38634:3:125"},"nativeSrc":"38634:18:125","nodeType":"YulFunctionCall","src":"38634:18:125"},{"kind":"number","nativeSrc":"38654:2:125","nodeType":"YulLiteral","src":"38654:2:125","type":"","value":"13"}],"functionName":{"name":"mstore","nativeSrc":"38627:6:125","nodeType":"YulIdentifier","src":"38627:6:125"},"nativeSrc":"38627:30:125","nodeType":"YulFunctionCall","src":"38627:30:125"},"nativeSrc":"38627:30:125","nodeType":"YulExpressionStatement","src":"38627:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38677:9:125","nodeType":"YulIdentifier","src":"38677:9:125"},{"kind":"number","nativeSrc":"38688:3:125","nodeType":"YulLiteral","src":"38688:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"38673:3:125","nodeType":"YulIdentifier","src":"38673:3:125"},"nativeSrc":"38673:19:125","nodeType":"YulFunctionCall","src":"38673:19:125"},{"hexValue":"41413333207265766572746564","kind":"string","nativeSrc":"38694:15:125","nodeType":"YulLiteral","src":"38694:15:125","type":"","value":"AA33 reverted"}],"functionName":{"name":"mstore","nativeSrc":"38666:6:125","nodeType":"YulIdentifier","src":"38666:6:125"},"nativeSrc":"38666:44:125","nodeType":"YulFunctionCall","src":"38666:44:125"},"nativeSrc":"38666:44:125","nodeType":"YulExpressionStatement","src":"38666:44:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38730:9:125","nodeType":"YulIdentifier","src":"38730:9:125"},{"kind":"number","nativeSrc":"38741:2:125","nodeType":"YulLiteral","src":"38741:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"38726:3:125","nodeType":"YulIdentifier","src":"38726:3:125"},"nativeSrc":"38726:18:125","nodeType":"YulFunctionCall","src":"38726:18:125"},{"kind":"number","nativeSrc":"38746:3:125","nodeType":"YulLiteral","src":"38746:3:125","type":"","value":"160"}],"functionName":{"name":"mstore","nativeSrc":"38719:6:125","nodeType":"YulIdentifier","src":"38719:6:125"},"nativeSrc":"38719:31:125","nodeType":"YulFunctionCall","src":"38719:31:125"},"nativeSrc":"38719:31:125","nodeType":"YulExpressionStatement","src":"38719:31:125"},{"nativeSrc":"38759:53:125","nodeType":"YulAssignment","src":"38759:53:125","value":{"arguments":[{"name":"value1","nativeSrc":"38784:6:125","nodeType":"YulIdentifier","src":"38784:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"38796:9:125","nodeType":"YulIdentifier","src":"38796:9:125"},{"kind":"number","nativeSrc":"38807:3:125","nodeType":"YulLiteral","src":"38807:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"38792:3:125","nodeType":"YulIdentifier","src":"38792:3:125"},"nativeSrc":"38792:19:125","nodeType":"YulFunctionCall","src":"38792:19:125"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"38767:16:125","nodeType":"YulIdentifier","src":"38767:16:125"},"nativeSrc":"38767:45:125","nodeType":"YulFunctionCall","src":"38767:45:125"},"variableNames":[{"name":"tail","nativeSrc":"38759:4:125","nodeType":"YulIdentifier","src":"38759:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_06edc37a8d32c7fe78db72f91122302e62b14234c1d15f3c0564559dca4729f7_t_bytes_memory_ptr__to_t_uint256_t_string_memory_ptr_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"38296:522:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38505:9:125","nodeType":"YulTypedName","src":"38505:9:125","type":""},{"name":"value1","nativeSrc":"38516:6:125","nodeType":"YulTypedName","src":"38516:6:125","type":""},{"name":"value0","nativeSrc":"38524:6:125","nodeType":"YulTypedName","src":"38524:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"38535:4:125","nodeType":"YulTypedName","src":"38535:4:125","type":""}],"src":"38296:522:125"},{"body":{"nativeSrc":"39025:273:125","nodeType":"YulBlock","src":"39025:273:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"39042:9:125","nodeType":"YulIdentifier","src":"39042:9:125"},{"name":"value0","nativeSrc":"39053:6:125","nodeType":"YulIdentifier","src":"39053:6:125"}],"functionName":{"name":"mstore","nativeSrc":"39035:6:125","nodeType":"YulIdentifier","src":"39035:6:125"},"nativeSrc":"39035:25:125","nodeType":"YulFunctionCall","src":"39035:25:125"},"nativeSrc":"39035:25:125","nodeType":"YulExpressionStatement","src":"39035:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39080:9:125","nodeType":"YulIdentifier","src":"39080:9:125"},{"kind":"number","nativeSrc":"39091:2:125","nodeType":"YulLiteral","src":"39091:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"39076:3:125","nodeType":"YulIdentifier","src":"39076:3:125"},"nativeSrc":"39076:18:125","nodeType":"YulFunctionCall","src":"39076:18:125"},{"kind":"number","nativeSrc":"39096:2:125","nodeType":"YulLiteral","src":"39096:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"39069:6:125","nodeType":"YulIdentifier","src":"39069:6:125"},"nativeSrc":"39069:30:125","nodeType":"YulFunctionCall","src":"39069:30:125"},"nativeSrc":"39069:30:125","nodeType":"YulExpressionStatement","src":"39069:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39119:9:125","nodeType":"YulIdentifier","src":"39119:9:125"},{"kind":"number","nativeSrc":"39130:2:125","nodeType":"YulLiteral","src":"39130:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"39115:3:125","nodeType":"YulIdentifier","src":"39115:3:125"},"nativeSrc":"39115:18:125","nodeType":"YulFunctionCall","src":"39115:18:125"},{"kind":"number","nativeSrc":"39135:2:125","nodeType":"YulLiteral","src":"39135:2:125","type":"","value":"39"}],"functionName":{"name":"mstore","nativeSrc":"39108:6:125","nodeType":"YulIdentifier","src":"39108:6:125"},"nativeSrc":"39108:30:125","nodeType":"YulFunctionCall","src":"39108:30:125"},"nativeSrc":"39108:30:125","nodeType":"YulExpressionStatement","src":"39108:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39158:9:125","nodeType":"YulIdentifier","src":"39158:9:125"},{"kind":"number","nativeSrc":"39169:2:125","nodeType":"YulLiteral","src":"39169:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"39154:3:125","nodeType":"YulIdentifier","src":"39154:3:125"},"nativeSrc":"39154:18:125","nodeType":"YulFunctionCall","src":"39154:18:125"},{"hexValue":"41413336206f766572207061796d6173746572566572696669636174696f6e47","kind":"string","nativeSrc":"39174:34:125","nodeType":"YulLiteral","src":"39174:34:125","type":"","value":"AA36 over paymasterVerificationG"}],"functionName":{"name":"mstore","nativeSrc":"39147:6:125","nodeType":"YulIdentifier","src":"39147:6:125"},"nativeSrc":"39147:62:125","nodeType":"YulFunctionCall","src":"39147:62:125"},"nativeSrc":"39147:62:125","nodeType":"YulExpressionStatement","src":"39147:62:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39229:9:125","nodeType":"YulIdentifier","src":"39229:9:125"},{"kind":"number","nativeSrc":"39240:3:125","nodeType":"YulLiteral","src":"39240:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"39225:3:125","nodeType":"YulIdentifier","src":"39225:3:125"},"nativeSrc":"39225:19:125","nodeType":"YulFunctionCall","src":"39225:19:125"},{"hexValue":"61734c696d6974","kind":"string","nativeSrc":"39246:9:125","nodeType":"YulLiteral","src":"39246:9:125","type":"","value":"asLimit"}],"functionName":{"name":"mstore","nativeSrc":"39218:6:125","nodeType":"YulIdentifier","src":"39218:6:125"},"nativeSrc":"39218:38:125","nodeType":"YulFunctionCall","src":"39218:38:125"},"nativeSrc":"39218:38:125","nodeType":"YulExpressionStatement","src":"39218:38:125"},{"nativeSrc":"39265:27:125","nodeType":"YulAssignment","src":"39265:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"39277:9:125","nodeType":"YulIdentifier","src":"39277:9:125"},{"kind":"number","nativeSrc":"39288:3:125","nodeType":"YulLiteral","src":"39288:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"39273:3:125","nodeType":"YulIdentifier","src":"39273:3:125"},"nativeSrc":"39273:19:125","nodeType":"YulFunctionCall","src":"39273:19:125"},"variableNames":[{"name":"tail","nativeSrc":"39265:4:125","nodeType":"YulIdentifier","src":"39265:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_d96a863c677d3d708cee8a222cbb00abbe452a22e3e4b00ad0cea4459b39c336__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"38823:475:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38994:9:125","nodeType":"YulTypedName","src":"38994:9:125","type":""},{"name":"value0","nativeSrc":"39005:6:125","nodeType":"YulTypedName","src":"39005:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39016:4:125","nodeType":"YulTypedName","src":"39016:4:125","type":""}],"src":"38823:475:125"},{"body":{"nativeSrc":"39433:201:125","nodeType":"YulBlock","src":"39433:201:125","statements":[{"body":{"nativeSrc":"39471:16:125","nodeType":"YulBlock","src":"39471:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"39480:1:125","nodeType":"YulLiteral","src":"39480:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"39483:1:125","nodeType":"YulLiteral","src":"39483:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"39473:6:125","nodeType":"YulIdentifier","src":"39473:6:125"},"nativeSrc":"39473:12:125","nodeType":"YulFunctionCall","src":"39473:12:125"},"nativeSrc":"39473:12:125","nodeType":"YulExpressionStatement","src":"39473:12:125"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"39449:10:125","nodeType":"YulIdentifier","src":"39449:10:125"},{"name":"endIndex","nativeSrc":"39461:8:125","nodeType":"YulIdentifier","src":"39461:8:125"}],"functionName":{"name":"gt","nativeSrc":"39446:2:125","nodeType":"YulIdentifier","src":"39446:2:125"},"nativeSrc":"39446:24:125","nodeType":"YulFunctionCall","src":"39446:24:125"},"nativeSrc":"39443:44:125","nodeType":"YulIf","src":"39443:44:125"},{"body":{"nativeSrc":"39520:16:125","nodeType":"YulBlock","src":"39520:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"39529:1:125","nodeType":"YulLiteral","src":"39529:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"39532:1:125","nodeType":"YulLiteral","src":"39532:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"39522:6:125","nodeType":"YulIdentifier","src":"39522:6:125"},"nativeSrc":"39522:12:125","nodeType":"YulFunctionCall","src":"39522:12:125"},"nativeSrc":"39522:12:125","nodeType":"YulExpressionStatement","src":"39522:12:125"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"39502:8:125","nodeType":"YulIdentifier","src":"39502:8:125"},{"name":"length","nativeSrc":"39512:6:125","nodeType":"YulIdentifier","src":"39512:6:125"}],"functionName":{"name":"gt","nativeSrc":"39499:2:125","nodeType":"YulIdentifier","src":"39499:2:125"},"nativeSrc":"39499:20:125","nodeType":"YulFunctionCall","src":"39499:20:125"},"nativeSrc":"39496:40:125","nodeType":"YulIf","src":"39496:40:125"},{"nativeSrc":"39545:36:125","nodeType":"YulAssignment","src":"39545:36:125","value":{"arguments":[{"name":"offset","nativeSrc":"39562:6:125","nodeType":"YulIdentifier","src":"39562:6:125"},{"name":"startIndex","nativeSrc":"39570:10:125","nodeType":"YulIdentifier","src":"39570:10:125"}],"functionName":{"name":"add","nativeSrc":"39558:3:125","nodeType":"YulIdentifier","src":"39558:3:125"},"nativeSrc":"39558:23:125","nodeType":"YulFunctionCall","src":"39558:23:125"},"variableNames":[{"name":"offsetOut","nativeSrc":"39545:9:125","nodeType":"YulIdentifier","src":"39545:9:125"}]},{"nativeSrc":"39590:38:125","nodeType":"YulAssignment","src":"39590:38:125","value":{"arguments":[{"name":"endIndex","nativeSrc":"39607:8:125","nodeType":"YulIdentifier","src":"39607:8:125"},{"name":"startIndex","nativeSrc":"39617:10:125","nodeType":"YulIdentifier","src":"39617:10:125"}],"functionName":{"name":"sub","nativeSrc":"39603:3:125","nodeType":"YulIdentifier","src":"39603:3:125"},"nativeSrc":"39603:25:125","nodeType":"YulFunctionCall","src":"39603:25:125"},"variableNames":[{"name":"lengthOut","nativeSrc":"39590:9:125","nodeType":"YulIdentifier","src":"39590:9:125"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"39303:331:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"39367:6:125","nodeType":"YulTypedName","src":"39367:6:125","type":""},{"name":"length","nativeSrc":"39375:6:125","nodeType":"YulTypedName","src":"39375:6:125","type":""},{"name":"startIndex","nativeSrc":"39383:10:125","nodeType":"YulTypedName","src":"39383:10:125","type":""},{"name":"endIndex","nativeSrc":"39395:8:125","nodeType":"YulTypedName","src":"39395:8:125","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"39408:9:125","nodeType":"YulTypedName","src":"39408:9:125","type":""},{"name":"lengthOut","nativeSrc":"39419:9:125","nodeType":"YulTypedName","src":"39419:9:125","type":""}],"src":"39303:331:125"},{"body":{"nativeSrc":"39740:273:125","nodeType":"YulBlock","src":"39740:273:125","statements":[{"nativeSrc":"39750:29:125","nodeType":"YulVariableDeclaration","src":"39750:29:125","value":{"arguments":[{"name":"array","nativeSrc":"39773:5:125","nodeType":"YulIdentifier","src":"39773:5:125"}],"functionName":{"name":"calldataload","nativeSrc":"39760:12:125","nodeType":"YulIdentifier","src":"39760:12:125"},"nativeSrc":"39760:19:125","nodeType":"YulFunctionCall","src":"39760:19:125"},"variables":[{"name":"_1","nativeSrc":"39754:2:125","nodeType":"YulTypedName","src":"39754:2:125","type":""}]},{"nativeSrc":"39788:49:125","nodeType":"YulAssignment","src":"39788:49:125","value":{"arguments":[{"name":"_1","nativeSrc":"39801:2:125","nodeType":"YulIdentifier","src":"39801:2:125"},{"arguments":[{"kind":"number","nativeSrc":"39809:26:125","nodeType":"YulLiteral","src":"39809:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"39805:3:125","nodeType":"YulIdentifier","src":"39805:3:125"},"nativeSrc":"39805:31:125","nodeType":"YulFunctionCall","src":"39805:31:125"}],"functionName":{"name":"and","nativeSrc":"39797:3:125","nodeType":"YulIdentifier","src":"39797:3:125"},"nativeSrc":"39797:40:125","nodeType":"YulFunctionCall","src":"39797:40:125"},"variableNames":[{"name":"value","nativeSrc":"39788:5:125","nodeType":"YulIdentifier","src":"39788:5:125"}]},{"body":{"nativeSrc":"39869:138:125","nodeType":"YulBlock","src":"39869:138:125","statements":[{"nativeSrc":"39883:114:125","nodeType":"YulAssignment","src":"39883:114:125","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"39900:2:125","nodeType":"YulIdentifier","src":"39900:2:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"39912:1:125","nodeType":"YulLiteral","src":"39912:1:125","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"39919:2:125","nodeType":"YulLiteral","src":"39919:2:125","type":"","value":"20"},{"name":"len","nativeSrc":"39923:3:125","nodeType":"YulIdentifier","src":"39923:3:125"}],"functionName":{"name":"sub","nativeSrc":"39915:3:125","nodeType":"YulIdentifier","src":"39915:3:125"},"nativeSrc":"39915:12:125","nodeType":"YulFunctionCall","src":"39915:12:125"}],"functionName":{"name":"shl","nativeSrc":"39908:3:125","nodeType":"YulIdentifier","src":"39908:3:125"},"nativeSrc":"39908:20:125","nodeType":"YulFunctionCall","src":"39908:20:125"},{"arguments":[{"kind":"number","nativeSrc":"39934:26:125","nodeType":"YulLiteral","src":"39934:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"39930:3:125","nodeType":"YulIdentifier","src":"39930:3:125"},"nativeSrc":"39930:31:125","nodeType":"YulFunctionCall","src":"39930:31:125"}],"functionName":{"name":"shl","nativeSrc":"39904:3:125","nodeType":"YulIdentifier","src":"39904:3:125"},"nativeSrc":"39904:58:125","nodeType":"YulFunctionCall","src":"39904:58:125"}],"functionName":{"name":"and","nativeSrc":"39896:3:125","nodeType":"YulIdentifier","src":"39896:3:125"},"nativeSrc":"39896:67:125","nodeType":"YulFunctionCall","src":"39896:67:125"},{"arguments":[{"kind":"number","nativeSrc":"39969:26:125","nodeType":"YulLiteral","src":"39969:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"39965:3:125","nodeType":"YulIdentifier","src":"39965:3:125"},"nativeSrc":"39965:31:125","nodeType":"YulFunctionCall","src":"39965:31:125"}],"functionName":{"name":"and","nativeSrc":"39892:3:125","nodeType":"YulIdentifier","src":"39892:3:125"},"nativeSrc":"39892:105:125","nodeType":"YulFunctionCall","src":"39892:105:125"},"variableNames":[{"name":"value","nativeSrc":"39883:5:125","nodeType":"YulIdentifier","src":"39883:5:125"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"39852:3:125","nodeType":"YulIdentifier","src":"39852:3:125"},{"kind":"number","nativeSrc":"39857:2:125","nodeType":"YulLiteral","src":"39857:2:125","type":"","value":"20"}],"functionName":{"name":"lt","nativeSrc":"39849:2:125","nodeType":"YulIdentifier","src":"39849:2:125"},"nativeSrc":"39849:11:125","nodeType":"YulFunctionCall","src":"39849:11:125"},"nativeSrc":"39846:161:125","nodeType":"YulIf","src":"39846:161:125"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20","nativeSrc":"39639:374:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"39715:5:125","nodeType":"YulTypedName","src":"39715:5:125","type":""},{"name":"len","nativeSrc":"39722:3:125","nodeType":"YulTypedName","src":"39722:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"39730:5:125","nodeType":"YulTypedName","src":"39730:5:125","type":""}],"src":"39639:374:125"},{"body":{"nativeSrc":"40119:297:125","nodeType":"YulBlock","src":"40119:297:125","statements":[{"nativeSrc":"40129:29:125","nodeType":"YulVariableDeclaration","src":"40129:29:125","value":{"arguments":[{"name":"array","nativeSrc":"40152:5:125","nodeType":"YulIdentifier","src":"40152:5:125"}],"functionName":{"name":"calldataload","nativeSrc":"40139:12:125","nodeType":"YulIdentifier","src":"40139:12:125"},"nativeSrc":"40139:19:125","nodeType":"YulFunctionCall","src":"40139:19:125"},"variables":[{"name":"_1","nativeSrc":"40133:2:125","nodeType":"YulTypedName","src":"40133:2:125","type":""}]},{"nativeSrc":"40167:57:125","nodeType":"YulAssignment","src":"40167:57:125","value":{"arguments":[{"name":"_1","nativeSrc":"40180:2:125","nodeType":"YulIdentifier","src":"40180:2:125"},{"arguments":[{"kind":"number","nativeSrc":"40188:34:125","nodeType":"YulLiteral","src":"40188:34:125","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"40184:3:125","nodeType":"YulIdentifier","src":"40184:3:125"},"nativeSrc":"40184:39:125","nodeType":"YulFunctionCall","src":"40184:39:125"}],"functionName":{"name":"and","nativeSrc":"40176:3:125","nodeType":"YulIdentifier","src":"40176:3:125"},"nativeSrc":"40176:48:125","nodeType":"YulFunctionCall","src":"40176:48:125"},"variableNames":[{"name":"value","nativeSrc":"40167:5:125","nodeType":"YulIdentifier","src":"40167:5:125"}]},{"body":{"nativeSrc":"40256:154:125","nodeType":"YulBlock","src":"40256:154:125","statements":[{"nativeSrc":"40270:130:125","nodeType":"YulAssignment","src":"40270:130:125","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"40287:2:125","nodeType":"YulIdentifier","src":"40287:2:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40299:1:125","nodeType":"YulLiteral","src":"40299:1:125","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"40306:2:125","nodeType":"YulLiteral","src":"40306:2:125","type":"","value":"16"},{"name":"len","nativeSrc":"40310:3:125","nodeType":"YulIdentifier","src":"40310:3:125"}],"functionName":{"name":"sub","nativeSrc":"40302:3:125","nodeType":"YulIdentifier","src":"40302:3:125"},"nativeSrc":"40302:12:125","nodeType":"YulFunctionCall","src":"40302:12:125"}],"functionName":{"name":"shl","nativeSrc":"40295:3:125","nodeType":"YulIdentifier","src":"40295:3:125"},"nativeSrc":"40295:20:125","nodeType":"YulFunctionCall","src":"40295:20:125"},{"arguments":[{"kind":"number","nativeSrc":"40321:34:125","nodeType":"YulLiteral","src":"40321:34:125","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"40317:3:125","nodeType":"YulIdentifier","src":"40317:3:125"},"nativeSrc":"40317:39:125","nodeType":"YulFunctionCall","src":"40317:39:125"}],"functionName":{"name":"shl","nativeSrc":"40291:3:125","nodeType":"YulIdentifier","src":"40291:3:125"},"nativeSrc":"40291:66:125","nodeType":"YulFunctionCall","src":"40291:66:125"}],"functionName":{"name":"and","nativeSrc":"40283:3:125","nodeType":"YulIdentifier","src":"40283:3:125"},"nativeSrc":"40283:75:125","nodeType":"YulFunctionCall","src":"40283:75:125"},{"arguments":[{"kind":"number","nativeSrc":"40364:34:125","nodeType":"YulLiteral","src":"40364:34:125","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"40360:3:125","nodeType":"YulIdentifier","src":"40360:3:125"},"nativeSrc":"40360:39:125","nodeType":"YulFunctionCall","src":"40360:39:125"}],"functionName":{"name":"and","nativeSrc":"40279:3:125","nodeType":"YulIdentifier","src":"40279:3:125"},"nativeSrc":"40279:121:125","nodeType":"YulFunctionCall","src":"40279:121:125"},"variableNames":[{"name":"value","nativeSrc":"40270:5:125","nodeType":"YulIdentifier","src":"40270:5:125"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"40239:3:125","nodeType":"YulIdentifier","src":"40239:3:125"},{"kind":"number","nativeSrc":"40244:2:125","nodeType":"YulLiteral","src":"40244:2:125","type":"","value":"16"}],"functionName":{"name":"lt","nativeSrc":"40236:2:125","nodeType":"YulIdentifier","src":"40236:2:125"},"nativeSrc":"40236:11:125","nodeType":"YulFunctionCall","src":"40236:11:125"},"nativeSrc":"40233:177:125","nodeType":"YulIf","src":"40233:177:125"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes16","nativeSrc":"40018:398:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"40094:5:125","nodeType":"YulTypedName","src":"40094:5:125","type":""},{"name":"len","nativeSrc":"40101:3:125","nodeType":"YulTypedName","src":"40101:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"40109:5:125","nodeType":"YulTypedName","src":"40109:5:125","type":""}],"src":"40018:398:125"},{"body":{"nativeSrc":"40623:225:125","nodeType":"YulBlock","src":"40623:225:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"40640:9:125","nodeType":"YulIdentifier","src":"40640:9:125"},{"name":"value0","nativeSrc":"40651:6:125","nodeType":"YulIdentifier","src":"40651:6:125"}],"functionName":{"name":"mstore","nativeSrc":"40633:6:125","nodeType":"YulIdentifier","src":"40633:6:125"},"nativeSrc":"40633:25:125","nodeType":"YulFunctionCall","src":"40633:25:125"},"nativeSrc":"40633:25:125","nodeType":"YulExpressionStatement","src":"40633:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40678:9:125","nodeType":"YulIdentifier","src":"40678:9:125"},{"kind":"number","nativeSrc":"40689:2:125","nodeType":"YulLiteral","src":"40689:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"40674:3:125","nodeType":"YulIdentifier","src":"40674:3:125"},"nativeSrc":"40674:18:125","nodeType":"YulFunctionCall","src":"40674:18:125"},{"kind":"number","nativeSrc":"40694:2:125","nodeType":"YulLiteral","src":"40694:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"40667:6:125","nodeType":"YulIdentifier","src":"40667:6:125"},"nativeSrc":"40667:30:125","nodeType":"YulFunctionCall","src":"40667:30:125"},"nativeSrc":"40667:30:125","nodeType":"YulExpressionStatement","src":"40667:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40717:9:125","nodeType":"YulIdentifier","src":"40717:9:125"},{"kind":"number","nativeSrc":"40728:2:125","nodeType":"YulLiteral","src":"40728:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"40713:3:125","nodeType":"YulIdentifier","src":"40713:3:125"},"nativeSrc":"40713:18:125","nodeType":"YulFunctionCall","src":"40713:18:125"},{"kind":"number","nativeSrc":"40733:2:125","nodeType":"YulLiteral","src":"40733:2:125","type":"","value":"31"}],"functionName":{"name":"mstore","nativeSrc":"40706:6:125","nodeType":"YulIdentifier","src":"40706:6:125"},"nativeSrc":"40706:30:125","nodeType":"YulFunctionCall","src":"40706:30:125"},"nativeSrc":"40706:30:125","nodeType":"YulExpressionStatement","src":"40706:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40756:9:125","nodeType":"YulIdentifier","src":"40756:9:125"},{"kind":"number","nativeSrc":"40767:2:125","nodeType":"YulLiteral","src":"40767:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"40752:3:125","nodeType":"YulIdentifier","src":"40752:3:125"},"nativeSrc":"40752:18:125","nodeType":"YulFunctionCall","src":"40752:18:125"},{"hexValue":"414131302073656e64657220616c726561647920636f6e7374727563746564","kind":"string","nativeSrc":"40772:33:125","nodeType":"YulLiteral","src":"40772:33:125","type":"","value":"AA10 sender already constructed"}],"functionName":{"name":"mstore","nativeSrc":"40745:6:125","nodeType":"YulIdentifier","src":"40745:6:125"},"nativeSrc":"40745:61:125","nodeType":"YulFunctionCall","src":"40745:61:125"},"nativeSrc":"40745:61:125","nodeType":"YulExpressionStatement","src":"40745:61:125"},{"nativeSrc":"40815:27:125","nodeType":"YulAssignment","src":"40815:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"40827:9:125","nodeType":"YulIdentifier","src":"40827:9:125"},{"kind":"number","nativeSrc":"40838:3:125","nodeType":"YulLiteral","src":"40838:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"40823:3:125","nodeType":"YulIdentifier","src":"40823:3:125"},"nativeSrc":"40823:19:125","nodeType":"YulFunctionCall","src":"40823:19:125"},"variableNames":[{"name":"tail","nativeSrc":"40815:4:125","nodeType":"YulIdentifier","src":"40815:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_267485e0b239ff7726cfbcfb111a14e388e8253ef89a57c2a12abc410bbc1a79__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"40421:427:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"40592:9:125","nodeType":"YulTypedName","src":"40592:9:125","type":""},{"name":"value0","nativeSrc":"40603:6:125","nodeType":"YulTypedName","src":"40603:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"40614:4:125","nodeType":"YulTypedName","src":"40614:4:125","type":""}],"src":"40421:427:125"},{"body":{"nativeSrc":"41055:221:125","nodeType":"YulBlock","src":"41055:221:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"41072:9:125","nodeType":"YulIdentifier","src":"41072:9:125"},{"name":"value0","nativeSrc":"41083:6:125","nodeType":"YulIdentifier","src":"41083:6:125"}],"functionName":{"name":"mstore","nativeSrc":"41065:6:125","nodeType":"YulIdentifier","src":"41065:6:125"},"nativeSrc":"41065:25:125","nodeType":"YulFunctionCall","src":"41065:25:125"},"nativeSrc":"41065:25:125","nodeType":"YulExpressionStatement","src":"41065:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41110:9:125","nodeType":"YulIdentifier","src":"41110:9:125"},{"kind":"number","nativeSrc":"41121:2:125","nodeType":"YulLiteral","src":"41121:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"41106:3:125","nodeType":"YulIdentifier","src":"41106:3:125"},"nativeSrc":"41106:18:125","nodeType":"YulFunctionCall","src":"41106:18:125"},{"kind":"number","nativeSrc":"41126:2:125","nodeType":"YulLiteral","src":"41126:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"41099:6:125","nodeType":"YulIdentifier","src":"41099:6:125"},"nativeSrc":"41099:30:125","nodeType":"YulFunctionCall","src":"41099:30:125"},"nativeSrc":"41099:30:125","nodeType":"YulExpressionStatement","src":"41099:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41149:9:125","nodeType":"YulIdentifier","src":"41149:9:125"},{"kind":"number","nativeSrc":"41160:2:125","nodeType":"YulLiteral","src":"41160:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"41145:3:125","nodeType":"YulIdentifier","src":"41145:3:125"},"nativeSrc":"41145:18:125","nodeType":"YulFunctionCall","src":"41145:18:125"},{"kind":"number","nativeSrc":"41165:2:125","nodeType":"YulLiteral","src":"41165:2:125","type":"","value":"27"}],"functionName":{"name":"mstore","nativeSrc":"41138:6:125","nodeType":"YulIdentifier","src":"41138:6:125"},"nativeSrc":"41138:30:125","nodeType":"YulFunctionCall","src":"41138:30:125"},"nativeSrc":"41138:30:125","nodeType":"YulExpressionStatement","src":"41138:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41188:9:125","nodeType":"YulIdentifier","src":"41188:9:125"},{"kind":"number","nativeSrc":"41199:2:125","nodeType":"YulLiteral","src":"41199:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"41184:3:125","nodeType":"YulIdentifier","src":"41184:3:125"},"nativeSrc":"41184:18:125","nodeType":"YulFunctionCall","src":"41184:18:125"},{"hexValue":"4141313320696e6974436f6465206661696c6564206f72204f4f47","kind":"string","nativeSrc":"41204:29:125","nodeType":"YulLiteral","src":"41204:29:125","type":"","value":"AA13 initCode failed or OOG"}],"functionName":{"name":"mstore","nativeSrc":"41177:6:125","nodeType":"YulIdentifier","src":"41177:6:125"},"nativeSrc":"41177:57:125","nodeType":"YulFunctionCall","src":"41177:57:125"},"nativeSrc":"41177:57:125","nodeType":"YulExpressionStatement","src":"41177:57:125"},{"nativeSrc":"41243:27:125","nodeType":"YulAssignment","src":"41243:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"41255:9:125","nodeType":"YulIdentifier","src":"41255:9:125"},{"kind":"number","nativeSrc":"41266:3:125","nodeType":"YulLiteral","src":"41266:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"41251:3:125","nodeType":"YulIdentifier","src":"41251:3:125"},"nativeSrc":"41251:19:125","nodeType":"YulFunctionCall","src":"41251:19:125"},"variableNames":[{"name":"tail","nativeSrc":"41243:4:125","nodeType":"YulIdentifier","src":"41243:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_a46d515f685002bbb631614d07729b129ca01335d4ee63cf10853491e47dee73__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"40853:423:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"41024:9:125","nodeType":"YulTypedName","src":"41024:9:125","type":""},{"name":"value0","nativeSrc":"41035:6:125","nodeType":"YulTypedName","src":"41035:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"41046:4:125","nodeType":"YulTypedName","src":"41046:4:125","type":""}],"src":"40853:423:125"},{"body":{"nativeSrc":"41483:226:125","nodeType":"YulBlock","src":"41483:226:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"41500:9:125","nodeType":"YulIdentifier","src":"41500:9:125"},{"name":"value0","nativeSrc":"41511:6:125","nodeType":"YulIdentifier","src":"41511:6:125"}],"functionName":{"name":"mstore","nativeSrc":"41493:6:125","nodeType":"YulIdentifier","src":"41493:6:125"},"nativeSrc":"41493:25:125","nodeType":"YulFunctionCall","src":"41493:25:125"},"nativeSrc":"41493:25:125","nodeType":"YulExpressionStatement","src":"41493:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41538:9:125","nodeType":"YulIdentifier","src":"41538:9:125"},{"kind":"number","nativeSrc":"41549:2:125","nodeType":"YulLiteral","src":"41549:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"41534:3:125","nodeType":"YulIdentifier","src":"41534:3:125"},"nativeSrc":"41534:18:125","nodeType":"YulFunctionCall","src":"41534:18:125"},{"kind":"number","nativeSrc":"41554:2:125","nodeType":"YulLiteral","src":"41554:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"41527:6:125","nodeType":"YulIdentifier","src":"41527:6:125"},"nativeSrc":"41527:30:125","nodeType":"YulFunctionCall","src":"41527:30:125"},"nativeSrc":"41527:30:125","nodeType":"YulExpressionStatement","src":"41527:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41577:9:125","nodeType":"YulIdentifier","src":"41577:9:125"},{"kind":"number","nativeSrc":"41588:2:125","nodeType":"YulLiteral","src":"41588:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"41573:3:125","nodeType":"YulIdentifier","src":"41573:3:125"},"nativeSrc":"41573:18:125","nodeType":"YulFunctionCall","src":"41573:18:125"},{"kind":"number","nativeSrc":"41593:2:125","nodeType":"YulLiteral","src":"41593:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"41566:6:125","nodeType":"YulIdentifier","src":"41566:6:125"},"nativeSrc":"41566:30:125","nodeType":"YulFunctionCall","src":"41566:30:125"},"nativeSrc":"41566:30:125","nodeType":"YulExpressionStatement","src":"41566:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41616:9:125","nodeType":"YulIdentifier","src":"41616:9:125"},{"kind":"number","nativeSrc":"41627:2:125","nodeType":"YulLiteral","src":"41627:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"41612:3:125","nodeType":"YulIdentifier","src":"41612:3:125"},"nativeSrc":"41612:18:125","nodeType":"YulFunctionCall","src":"41612:18:125"},{"hexValue":"4141313420696e6974436f6465206d7573742072657475726e2073656e646572","kind":"string","nativeSrc":"41632:34:125","nodeType":"YulLiteral","src":"41632:34:125","type":"","value":"AA14 initCode must return sender"}],"functionName":{"name":"mstore","nativeSrc":"41605:6:125","nodeType":"YulIdentifier","src":"41605:6:125"},"nativeSrc":"41605:62:125","nodeType":"YulFunctionCall","src":"41605:62:125"},"nativeSrc":"41605:62:125","nodeType":"YulExpressionStatement","src":"41605:62:125"},{"nativeSrc":"41676:27:125","nodeType":"YulAssignment","src":"41676:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"41688:9:125","nodeType":"YulIdentifier","src":"41688:9:125"},{"kind":"number","nativeSrc":"41699:3:125","nodeType":"YulLiteral","src":"41699:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"41684:3:125","nodeType":"YulIdentifier","src":"41684:3:125"},"nativeSrc":"41684:19:125","nodeType":"YulFunctionCall","src":"41684:19:125"},"variableNames":[{"name":"tail","nativeSrc":"41676:4:125","nodeType":"YulIdentifier","src":"41676:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_cf8e5f91822a9ca4de44f9559ff5db3083e7cb35e25710632c57dc900da04602__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"41281:428:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"41452:9:125","nodeType":"YulTypedName","src":"41452:9:125","type":""},{"name":"value0","nativeSrc":"41463:6:125","nodeType":"YulTypedName","src":"41463:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"41474:4:125","nodeType":"YulTypedName","src":"41474:4:125","type":""}],"src":"41281:428:125"},{"body":{"nativeSrc":"41916:226:125","nodeType":"YulBlock","src":"41916:226:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"41933:9:125","nodeType":"YulIdentifier","src":"41933:9:125"},{"name":"value0","nativeSrc":"41944:6:125","nodeType":"YulIdentifier","src":"41944:6:125"}],"functionName":{"name":"mstore","nativeSrc":"41926:6:125","nodeType":"YulIdentifier","src":"41926:6:125"},"nativeSrc":"41926:25:125","nodeType":"YulFunctionCall","src":"41926:25:125"},"nativeSrc":"41926:25:125","nodeType":"YulExpressionStatement","src":"41926:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41971:9:125","nodeType":"YulIdentifier","src":"41971:9:125"},{"kind":"number","nativeSrc":"41982:2:125","nodeType":"YulLiteral","src":"41982:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"41967:3:125","nodeType":"YulIdentifier","src":"41967:3:125"},"nativeSrc":"41967:18:125","nodeType":"YulFunctionCall","src":"41967:18:125"},{"kind":"number","nativeSrc":"41987:2:125","nodeType":"YulLiteral","src":"41987:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"41960:6:125","nodeType":"YulIdentifier","src":"41960:6:125"},"nativeSrc":"41960:30:125","nodeType":"YulFunctionCall","src":"41960:30:125"},"nativeSrc":"41960:30:125","nodeType":"YulExpressionStatement","src":"41960:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42010:9:125","nodeType":"YulIdentifier","src":"42010:9:125"},{"kind":"number","nativeSrc":"42021:2:125","nodeType":"YulLiteral","src":"42021:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"42006:3:125","nodeType":"YulIdentifier","src":"42006:3:125"},"nativeSrc":"42006:18:125","nodeType":"YulFunctionCall","src":"42006:18:125"},{"kind":"number","nativeSrc":"42026:2:125","nodeType":"YulLiteral","src":"42026:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"41999:6:125","nodeType":"YulIdentifier","src":"41999:6:125"},"nativeSrc":"41999:30:125","nodeType":"YulFunctionCall","src":"41999:30:125"},"nativeSrc":"41999:30:125","nodeType":"YulExpressionStatement","src":"41999:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42049:9:125","nodeType":"YulIdentifier","src":"42049:9:125"},{"kind":"number","nativeSrc":"42060:2:125","nodeType":"YulLiteral","src":"42060:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"42045:3:125","nodeType":"YulIdentifier","src":"42045:3:125"},"nativeSrc":"42045:18:125","nodeType":"YulFunctionCall","src":"42045:18:125"},{"hexValue":"4141313520696e6974436f6465206d757374206372656174652073656e646572","kind":"string","nativeSrc":"42065:34:125","nodeType":"YulLiteral","src":"42065:34:125","type":"","value":"AA15 initCode must create sender"}],"functionName":{"name":"mstore","nativeSrc":"42038:6:125","nodeType":"YulIdentifier","src":"42038:6:125"},"nativeSrc":"42038:62:125","nodeType":"YulFunctionCall","src":"42038:62:125"},"nativeSrc":"42038:62:125","nodeType":"YulExpressionStatement","src":"42038:62:125"},{"nativeSrc":"42109:27:125","nodeType":"YulAssignment","src":"42109:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"42121:9:125","nodeType":"YulIdentifier","src":"42121:9:125"},{"kind":"number","nativeSrc":"42132:3:125","nodeType":"YulLiteral","src":"42132:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"42117:3:125","nodeType":"YulIdentifier","src":"42117:3:125"},"nativeSrc":"42117:19:125","nodeType":"YulFunctionCall","src":"42117:19:125"},"variableNames":[{"name":"tail","nativeSrc":"42109:4:125","nodeType":"YulIdentifier","src":"42109:4:125"}]}]},"name":"abi_encode_tuple_t_uint256_t_stringliteral_bb1e067ee25aabe05bbdddb7ea9a4490fa96ed7d10c6207acd0a3c723a9b7ed6__to_t_uint256_t_string_memory_ptr__fromStack_reversed","nativeSrc":"41714:428:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"41885:9:125","nodeType":"YulTypedName","src":"41885:9:125","type":""},{"name":"value0","nativeSrc":"41896:6:125","nodeType":"YulTypedName","src":"41896:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"41907:4:125","nodeType":"YulTypedName","src":"41907:4:125","type":""}],"src":"41714:428:125"},{"body":{"nativeSrc":"42276:171:125","nodeType":"YulBlock","src":"42276:171:125","statements":[{"nativeSrc":"42286:26:125","nodeType":"YulAssignment","src":"42286:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"42298:9:125","nodeType":"YulIdentifier","src":"42298:9:125"},{"kind":"number","nativeSrc":"42309:2:125","nodeType":"YulLiteral","src":"42309:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"42294:3:125","nodeType":"YulIdentifier","src":"42294:3:125"},"nativeSrc":"42294:18:125","nodeType":"YulFunctionCall","src":"42294:18:125"},"variableNames":[{"name":"tail","nativeSrc":"42286:4:125","nodeType":"YulIdentifier","src":"42286:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"42328:9:125","nodeType":"YulIdentifier","src":"42328:9:125"},{"arguments":[{"name":"value0","nativeSrc":"42343:6:125","nodeType":"YulIdentifier","src":"42343:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42359:3:125","nodeType":"YulLiteral","src":"42359:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"42364:1:125","nodeType":"YulLiteral","src":"42364:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"42355:3:125","nodeType":"YulIdentifier","src":"42355:3:125"},"nativeSrc":"42355:11:125","nodeType":"YulFunctionCall","src":"42355:11:125"},{"kind":"number","nativeSrc":"42368:1:125","nodeType":"YulLiteral","src":"42368:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"42351:3:125","nodeType":"YulIdentifier","src":"42351:3:125"},"nativeSrc":"42351:19:125","nodeType":"YulFunctionCall","src":"42351:19:125"}],"functionName":{"name":"and","nativeSrc":"42339:3:125","nodeType":"YulIdentifier","src":"42339:3:125"},"nativeSrc":"42339:32:125","nodeType":"YulFunctionCall","src":"42339:32:125"}],"functionName":{"name":"mstore","nativeSrc":"42321:6:125","nodeType":"YulIdentifier","src":"42321:6:125"},"nativeSrc":"42321:51:125","nodeType":"YulFunctionCall","src":"42321:51:125"},"nativeSrc":"42321:51:125","nodeType":"YulExpressionStatement","src":"42321:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42392:9:125","nodeType":"YulIdentifier","src":"42392:9:125"},{"kind":"number","nativeSrc":"42403:2:125","nodeType":"YulLiteral","src":"42403:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"42388:3:125","nodeType":"YulIdentifier","src":"42388:3:125"},"nativeSrc":"42388:18:125","nodeType":"YulFunctionCall","src":"42388:18:125"},{"arguments":[{"name":"value1","nativeSrc":"42412:6:125","nodeType":"YulIdentifier","src":"42412:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42428:3:125","nodeType":"YulLiteral","src":"42428:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"42433:1:125","nodeType":"YulLiteral","src":"42433:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"42424:3:125","nodeType":"YulIdentifier","src":"42424:3:125"},"nativeSrc":"42424:11:125","nodeType":"YulFunctionCall","src":"42424:11:125"},{"kind":"number","nativeSrc":"42437:1:125","nodeType":"YulLiteral","src":"42437:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"42420:3:125","nodeType":"YulIdentifier","src":"42420:3:125"},"nativeSrc":"42420:19:125","nodeType":"YulFunctionCall","src":"42420:19:125"}],"functionName":{"name":"and","nativeSrc":"42408:3:125","nodeType":"YulIdentifier","src":"42408:3:125"},"nativeSrc":"42408:32:125","nodeType":"YulFunctionCall","src":"42408:32:125"}],"functionName":{"name":"mstore","nativeSrc":"42381:6:125","nodeType":"YulIdentifier","src":"42381:6:125"},"nativeSrc":"42381:60:125","nodeType":"YulFunctionCall","src":"42381:60:125"},"nativeSrc":"42381:60:125","nodeType":"YulExpressionStatement","src":"42381:60:125"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nativeSrc":"42147:300:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"42237:9:125","nodeType":"YulTypedName","src":"42237:9:125","type":""},{"name":"value1","nativeSrc":"42248:6:125","nodeType":"YulTypedName","src":"42248:6:125","type":""},{"name":"value0","nativeSrc":"42256:6:125","nodeType":"YulTypedName","src":"42256:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"42267:4:125","nodeType":"YulTypedName","src":"42267:4:125","type":""}],"src":"42147:300:125"}]},"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 allocate_memory_4710() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xa0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory_4711() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0140)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function array_allocation_size_bytes(length) -> size\n    {\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        size := add(and(add(length, 31), not(31)), 0x20)\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_address(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_address(value)\n    }\n    function abi_decode_struct_UserOpInfo(headStart, end) -> value\n    {\n        let _1 := sub(end, headStart)\n        if slt(_1, 0x01c0) { revert(0, 0) }\n        value := allocate_memory_4710()\n        if slt(_1, 0x0140) { revert(0, 0) }\n        let value_1 := allocate_memory_4711()\n        mstore(value_1, abi_decode_address(headStart))\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 32))\n        mstore(add(value_1, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 64))\n        mstore(add(value_1, 64), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 96))\n        mstore(add(value_1, 96), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(add(value_1, 128), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 0xa0))\n        mstore(add(value_1, 0xa0), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(value_1, 192), value_7)\n        mstore(add(value_1, 224), abi_decode_address(add(headStart, 224)))\n        let value_8 := 0\n        value_8 := calldataload(add(headStart, 256))\n        mstore(add(value_1, 256), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(headStart, 288))\n        mstore(add(value_1, 288), value_9)\n        mstore(value, value_1)\n        let value_10 := 0\n        value_10 := calldataload(add(headStart, 0x0140))\n        mstore(add(value, 32), value_10)\n        let value_11 := 0\n        value_11 := calldataload(add(headStart, 352))\n        mstore(add(value, 64), value_11)\n        let value_12 := 0\n        value_12 := calldataload(add(headStart, 384))\n        mstore(add(value, 96), value_12)\n        let value_13 := 0\n        value_13 := calldataload(add(headStart, 416))\n        mstore(add(value, 128), value_13)\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_bytes_memory_ptrt_struct$_UserOpInfo_$947_memory_ptrt_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 512) { revert(0, 0) }\n        let offset := calldataload(headStart)\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        let array := allocate_memory(array_allocation_size_bytes(length))\n        mstore(array, length)\n        if gt(add(add(_1, length), 0x20), dataEnd) { revert(0, 0) }\n        calldatacopy(add(array, 0x20), add(_1, 0x20), length)\n        mstore(add(add(array, length), 0x20), 0)\n        value0 := array\n        value1 := abi_decode_struct_UserOpInfo(add(headStart, 0x20), dataEnd)\n        let offset_1 := calldataload(add(headStart, 480))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        let value2_1, value3_1 := abi_decode_bytes_calldata(add(headStart, offset_1), dataEnd)\n        value2 := value2_1\n        value3 := value3_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_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_decode_tuple_t_uint32(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, 0xffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_uint192(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, sub(shl(192, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_uint192(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint192(headStart)\n    }\n    function abi_decode_tuple_t_addresst_uint192(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_uint192(add(headStart, 32))\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_decode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr(headStart, dataEnd) -> value0\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 _1 := add(headStart, offset)\n        if slt(sub(dataEnd, _1), 288) { revert(0, 0) }\n        value0 := _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_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_encode_tuple_t_struct$_DepositInfo_$3673_memory_ptr__to_t_struct$_DepositInfo_$3673_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, mload(value0))\n        mstore(add(headStart, 0x20), iszero(iszero(mload(add(value0, 0x20)))))\n        mstore(add(headStart, 0x40), and(mload(add(value0, 0x40)), 0xffffffffffffffffffffffffffff))\n        mstore(add(headStart, 0x60), and(mload(add(value0, 0x60)), 0xffffffff))\n        mstore(add(headStart, 0x80), and(mload(add(value0, 0x80)), 0xffffffffffff))\n    }\n    function abi_decode_array_struct_PackedUserOperation_calldata_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_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptrt_address_payable(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { 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_struct_PackedUserOperation_calldata_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n        let value := calldataload(add(headStart, 32))\n        validator_revert_address(value)\n        value2 := value\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_tuple_t_bytes_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_bytes_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\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_decode_tuple_t_array$_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr_$dyn_calldata_ptrt_address_payable(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { 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_struct_PackedUserOperation_calldata_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n        let value := calldataload(add(headStart, 32))\n        validator_revert_address(value)\n        value2 := value\n    }\n    function abi_encode_tuple_t_uint256_t_bool_t_uint112_t_uint32_t_uint48__to_t_uint256_t_bool_t_uint112_t_uint32_t_uint48__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), iszero(iszero(value1)))\n        mstore(add(headStart, 64), and(value2, 0xffffffffffffffffffffffffffff))\n        mstore(add(headStart, 96), and(value3, 0xffffffff))\n        mstore(add(headStart, 128), and(value4, 0xffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_bf4e5bbea2250480ca8cf3cc338d236d16fd3805a9bc8205224406394a71fe66__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 23)\n        mstore(add(headStart, 64), \"AA92 internal call only\")\n        tail := add(headStart, 96)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function abi_encode_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_uint256_t_bytes_memory_ptr__to_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        tail := abi_encode_bytes(value1, add(headStart, 64))\n    }\n    function abi_encode_tuple_t_stringliteral_b778ed14a7f7833f15cec15447ba73902b7f27cdd540d47113a5b9c3947e6b2b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 26)\n        mstore(add(headStart, 64), \"must specify unstake delay\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_be41a8e875b0d08b577c32bcab0ac88c472e62be6c60e218189d78d10808d9e7__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), \"cannot decrease unstake time\")\n        tail := 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_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_163fbe38f6e79bbafe8ef1c6ecbcd609e161120dfcf32c1dc0ae2ace28e56cf8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 18)\n        mstore(add(headStart, 64), \"no stake specified\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6a64644aeeb545618f93fda0e8ccacb2c407cdffe2b26245fdfa446117fd12f8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 14)\n        mstore(add(headStart, 64), \"stake overflow\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256_t_uint32__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), and(value1, 0xffffffff))\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, not(0)) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function abi_encode_tuple_t_stringliteral_0c1f958f466ebe53086ccef34937001c8a0d9f200320ab480bde36d46a3c6178__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 25)\n        mstore(add(headStart, 64), \"Withdraw amount too large\")\n        tail := add(headStart, 96)\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 abi_encode_tuple_t_address_payable_t_uint256__to_t_address_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_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_stringliteral_a34ed1abbfa8a2aea109afd35a4e04f6c52ffb62d3a545e3e3e4f2d894ca1e41__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 18)\n        mstore(add(headStart, 64), \"failed to withdraw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_address(value, pos)\n    {\n        mstore(pos, and(value, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_uint256__to_t_bytes32_t_address_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function access_calldata_tail_t_struct$_PackedUserOperation_$3748_calldata_ptr(base_ref, ptr_to_tail) -> addr\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(286)))) { revert(0, 0) }\n        addr := add(base_ref, rel_offset_of_tail)\n    }\n    function abi_encode_tuple_packed_t_bytes_calldata_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        calldatacopy(pos, value0, value1)\n        let _1 := add(pos, value1)\n        mstore(_1, 0)\n        end := _1\n    }\n    function abi_encode_tuple_t_bool_t_bytes_memory_ptr__to_t_bool_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, iszero(iszero(value0)))\n        mstore(add(headStart, 32), 64)\n        tail := abi_encode_bytes(value1, add(headStart, 64))\n    }\n    function abi_encode_bytes_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_bytes_calldata_ptr__to_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_bytes_calldata(value0, value1, add(headStart, 32))\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        validator_revert_address(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_stringliteral_8d1fe892c4e34e50852d9473d3c9854eedeef3b324fbe99dc34a39c1c505db12__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 10)\n        mstore(add(headStart, 64), \"not staked\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_eabab2b938baa7d6708bc792cd1d2d9d9bd3627968a46b23824d4b6af2b0f7a8__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 17)\n        mstore(add(headStart, 64), \"already unstaking\")\n        tail := add(headStart, 96)\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__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_2157ff27c581d0c09d0fefae4820572f0bccc198ee5e28633f039d06e0011705__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 20)\n        mstore(add(headStart, 64), \"No stake to withdraw\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_9973ef36bc8342d488dae231c130b6ed95bb2a62fca313f7c859e3c78149cec5__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"must call unlockStake() first\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_5cd6155e73f61bccbf344f4197f14538012904bd24fa05bb30427c7f1fe55d45__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 27)\n        mstore(add(headStart, 64), \"Stake withdrawal is not due\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_1dfdcaaacbfb01ed2a280d66b545f88db6fa18ccf502cb079b76e190a3a0227b__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"failed to withdraw stake\")\n        tail := add(headStart, 96)\n    }\n    function access_calldata_tail_t_struct$_UserOpsPerAggregator_$3497_calldata_ptr(base_ref, ptr_to_tail) -> addr\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(94)))) { revert(0, 0) }\n        addr := add(base_ref, rel_offset_of_tail)\n    }\n    function access_calldata_tail_t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_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(), shl(5, length))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IAggregator_$3382(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_t_stringliteral_c7b85d163e4e98261caeed8e321f4ec192af622f53fd084234a04b236b40e883__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 23)\n        mstore(add(headStart, 64), \"AA96 invalid aggregator\")\n        tail := add(headStart, 96)\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 calldata_access_bytes_calldata(base_ref, ptr) -> value, length\n    {\n        let rel_offset_of_tail := calldataload(ptr)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n        let value_1 := add(rel_offset_of_tail, base_ref)\n        length := calldataload(value_1)\n        value := add(value_1, 0x20)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if sgt(value, sub(calldatasize(), length)) { revert(0, 0) }\n    }\n    function abi_encode_struct_PackedUserOperation_calldata(value, pos) -> end\n    {\n        abi_encode_address(abi_decode_address(value), pos)\n        let value_1 := 0\n        value_1 := calldataload(add(value, 0x20))\n        mstore(add(pos, 0x20), value_1)\n        let memberValue0, memberValue1 := calldata_access_bytes_calldata(value, add(value, 0x40))\n        mstore(add(pos, 0x40), 0x0120)\n        let tail := abi_encode_bytes_calldata(memberValue0, memberValue1, add(pos, 0x0120))\n        let memberValue0_1, memberValue1_1 := calldata_access_bytes_calldata(value, add(value, 0x60))\n        mstore(add(pos, 0x60), sub(tail, pos))\n        let tail_1 := abi_encode_bytes_calldata(memberValue0_1, memberValue1_1, tail)\n        let value_2 := 0\n        value_2 := calldataload(add(value, 0x80))\n        mstore(add(pos, 0x80), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(value, 0xa0))\n        mstore(add(pos, 0xa0), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(value, 0xc0))\n        mstore(add(pos, 0xc0), value_4)\n        let memberValue0_2, memberValue1_2 := calldata_access_bytes_calldata(value, add(value, 0xe0))\n        mstore(add(pos, 0xe0), sub(tail_1, pos))\n        let tail_2 := abi_encode_bytes_calldata(memberValue0_2, memberValue1_2, tail_1)\n        let memberValue0_3, memberValue1_3 := calldata_access_bytes_calldata(value, add(value, 0x0100))\n        mstore(add(pos, 0x0100), sub(tail_2, pos))\n        end := abi_encode_bytes_calldata(memberValue0_3, memberValue1_3, tail_2)\n    }\n    function abi_encode_tuple_t_array$_t_struct$_PackedUserOperation_$3748_calldata_ptr_$dyn_calldata_ptr_t_bytes_calldata_ptr__to_t_array$_t_struct$_PackedUserOperation_$3748_memory_ptr_$dyn_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        let tail_1 := add(headStart, 64)\n        mstore(headStart, 64)\n        let pos := tail_1\n        mstore(tail_1, value1)\n        pos := add(headStart, 96)\n        let tail_2 := add(add(headStart, shl(5, value1)), 96)\n        let srcPtr := value0\n        let i := 0\n        let _1 := add(sub(calldatasize(), value0), not(286))\n        for { } lt(i, value1) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), not(95)))\n            let rel_offset_of_tail := calldataload(srcPtr)\n            if iszero(slt(rel_offset_of_tail, _1)) { revert(0, 0) }\n            tail_2 := abi_encode_struct_PackedUserOperation_calldata(add(rel_offset_of_tail, value0), tail_2)\n            srcPtr := add(srcPtr, 0x20)\n            pos := add(pos, 0x20)\n        }\n        mstore(add(headStart, 0x20), sub(tail_2, headStart))\n        tail := abi_encode_bytes_calldata(value2, value3, tail_2)\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_enum$_PostOpMode_$3593_t_bytes_memory_ptr_t_uint256_t_uint256__to_t_uint8_t_bytes_memory_ptr_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        if iszero(lt(value0, 3))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 128)\n        tail := abi_encode_bytes(value1, add(headStart, 128))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_bytes(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_stringliteral_2454d602dd1245dd701375973b2bac347a9e27dc7542cb5ffbdc114cb2232f69__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"AA94 gas values overflow\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_1a6d2773a48550bbfcfd396dd79645bef61ab18efc53f13933af43bfa63cc5b5__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 26)\n        mstore(add(headStart, 96), \"AA25 invalid account nonce\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_0959e90f1dbec1bb0766cfc7e4a6f91da34d207dfa787b59651acf3926686974__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 30)\n        mstore(add(headStart, 96), \"AA26 over verificationGasLimit\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_230fad9992163f7c7bca82563472469d2ae8f1696105d00fd8b1abf9e366de4e__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 20)\n        mstore(add(headStart, 96), \"AA24 signature error\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_4f6af422606d6fab6224761f4f503b9674de8994d20a0052616d3524b670e766__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 23)\n        mstore(add(headStart, 96), \"AA22 expired or not due\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_b49ba4e4826dc300b471d06b2a8612d53c4c2eb033cbfd2061c54c636bb00871__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 20)\n        mstore(add(headStart, 96), \"AA34 signature error\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_15a824f4c22cc564e6215a3b0d10da3af06bea6cdb58dc3760d85748fcd6036b__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 33)\n        mstore(add(headStart, 96), \"AA32 paymaster expired or not du\")\n        mstore(add(headStart, 128), \"e\")\n        tail := add(headStart, 160)\n    }\n    function abi_encode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr_t_bytes32__to_t_struct$_PackedUserOperation_$3748_memory_ptr_t_bytes32__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        tail := abi_encode_struct_PackedUserOperation_calldata(value0, add(headStart, 64))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_struct_UserOpInfo(value, pos)\n    {\n        let _1 := mload(value)\n        abi_encode_address(mload(_1), pos)\n        mstore(add(pos, 0x20), mload(add(_1, 0x20)))\n        mstore(add(pos, 0x40), mload(add(_1, 0x40)))\n        mstore(add(pos, 0x60), mload(add(_1, 0x60)))\n        mstore(add(pos, 0x80), mload(add(_1, 0x80)))\n        mstore(add(pos, 0xa0), mload(add(_1, 0xa0)))\n        mstore(add(pos, 0xc0), mload(add(_1, 0xc0)))\n        let memberValue0 := mload(add(_1, 0xe0))\n        abi_encode_address(memberValue0, add(pos, 0xe0))\n        mstore(add(pos, 0x0100), mload(add(_1, 0x0100)))\n        mstore(add(pos, 0x0120), mload(add(_1, 0x0120)))\n        mstore(add(pos, 0x0140), mload(add(value, 0x20)))\n        mstore(add(pos, 0x0160), mload(add(value, 0x40)))\n        mstore(add(pos, 0x0180), mload(add(value, 0x60)))\n        mstore(add(pos, 0x01a0), mload(add(value, 0x80)))\n    }\n    function abi_encode_tuple_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 512)\n        let tail_1 := abi_encode_bytes(value0, add(headStart, 512))\n        abi_encode_struct_UserOpInfo(value1, add(headStart, 32))\n        mstore(add(headStart, 480), sub(tail_1, headStart))\n        tail := abi_encode_bytes(value2, tail_1)\n    }\n    function abi_encode_tuple_t_bytes_calldata_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_struct$_UserOpInfo_$947_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 512)\n        let tail_1 := abi_encode_bytes_calldata(value0, value1, add(headStart, 512))\n        abi_encode_struct_UserOpInfo(value2, add(headStart, 32))\n        mstore(add(headStart, 480), sub(tail_1, headStart))\n        tail := abi_encode_bytes(value3, tail_1)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_eb8aae105b33b8e3029845f6a1359760a9480648cd982f4e1c37f01a5ceaf980__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 15)\n        mstore(add(headStart, 96), \"AA95 out of gas\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_920f437a2d912d818562bb2b3dd9587067a8482ed696134ce94fa5e8d2567814__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 24)\n        mstore(add(headStart, 64), \"AA90 invalid beneficiary\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_321532189629d29421359a6160b174523b9558104989fb537a4f9d684a0aa1ea__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 31)\n        mstore(add(headStart, 64), \"AA91 failed send to beneficiary\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256_t_bool_t_uint256_t_uint256__to_t_uint256_t_bool_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), iszero(iszero(value1)))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_bytes32_t_bytes32__to_t_address_t_uint256_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_bytes32_t_bytes32__fromStack_reversed(headStart, value7, value6, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 256)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n        mstore(add(headStart, 192), value6)\n        mstore(add(headStart, 224), value7)\n    }\n    function abi_encode_tuple_t_stringliteral_bed5bf2586bcf71963468f5a6e4def651dfab48dcb520989dbad3d1cd3cd8bdd__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 29)\n        mstore(add(headStart, 64), \"AA93 invalid paymasterAndData\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptr_t_bytes32_t_uint256__to_t_struct$_PackedUserOperation_$3748_memory_ptr_t_bytes32_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 96)\n        tail := abi_encode_struct_PackedUserOperation_calldata(value0, add(headStart, 96))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := mload(headStart)\n        value0 := value\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_f272bf03d6e7cfb67a72dd0c4aee94925483c9b766e02beaec86cf4f0a3b9477_t_bytes_memory_ptr__to_t_uint256_t_string_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 96)\n        mstore(add(headStart, 96), 13)\n        mstore(add(headStart, 128), \"AA23 reverted\")\n        mstore(add(headStart, 64), 160)\n        tail := abi_encode_bytes(value1, add(headStart, 160))\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_af9d5dc558e78f4dcea94657e51b2cc454e4ce4aecf26fcc28fc02e10982eb3d__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 23)\n        mstore(add(headStart, 96), \"AA21 didn't pay prefund\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_423a165b7dbbda2ae3873c5d3fae3c0ad56dda63b0eb4d372683317213e4df0f__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 30)\n        mstore(add(headStart, 96), \"AA31 paymaster deposit too low\")\n        tail := add(headStart, 128)\n    }\n    function abi_decode_tuple_t_bytes_memory_ptrt_uint256_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := mload(headStart)\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 := mload(_1)\n        let array := allocate_memory(array_allocation_size_bytes(length))\n        mstore(array, length)\n        if gt(add(add(_1, length), 0x20), dataEnd) { revert(0, 0) }\n        mcopy(add(array, 0x20), add(_1, 0x20), length)\n        mstore(add(add(array, length), 0x20), 0)\n        value0 := array\n        let value := 0\n        value := mload(add(headStart, 0x20))\n        value1 := value\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_06edc37a8d32c7fe78db72f91122302e62b14234c1d15f3c0564559dca4729f7_t_bytes_memory_ptr__to_t_uint256_t_string_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 96)\n        mstore(add(headStart, 96), 13)\n        mstore(add(headStart, 128), \"AA33 reverted\")\n        mstore(add(headStart, 64), 160)\n        tail := abi_encode_bytes(value1, add(headStart, 160))\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_d96a863c677d3d708cee8a222cbb00abbe452a22e3e4b00ad0cea4459b39c336__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 39)\n        mstore(add(headStart, 96), \"AA36 over paymasterVerificationG\")\n        mstore(add(headStart, 128), \"asLimit\")\n        tail := add(headStart, 160)\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 convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes16(array, len) -> value\n    {\n        let _1 := calldataload(array)\n        value := and(_1, not(0xffffffffffffffffffffffffffffffff))\n        if lt(len, 16)\n        {\n            value := and(and(_1, shl(shl(3, sub(16, len)), not(0xffffffffffffffffffffffffffffffff))), not(0xffffffffffffffffffffffffffffffff))\n        }\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_267485e0b239ff7726cfbcfb111a14e388e8253ef89a57c2a12abc410bbc1a79__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 31)\n        mstore(add(headStart, 96), \"AA10 sender already constructed\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_a46d515f685002bbb631614d07729b129ca01335d4ee63cf10853491e47dee73__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 27)\n        mstore(add(headStart, 96), \"AA13 initCode failed or OOG\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_cf8e5f91822a9ca4de44f9559ff5db3083e7cb35e25710632c57dc900da04602__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 32)\n        mstore(add(headStart, 96), \"AA14 initCode must return sender\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_uint256_t_stringliteral_bb1e067ee25aabe05bbdddb7ea9a4490fa96ed7d10c6207acd0a3c723a9b7ed6__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        mstore(add(headStart, 64), 32)\n        mstore(add(headStart, 96), \"AA15 initCode must create sender\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__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(160, 1), 1)))\n    }\n}","id":125,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"174":[{"length":32,"start":3564},{"length":32,"start":10065}]},"linkReferences":{},"object":"608060405260043610610107575f3560e01c806370a0823111610092578063b760faf911610062578063b760faf914610425578063bb9fe6bf14610438578063c23a5cea1461044c578063dbed18e01461046b578063fc7e286d1461048a575f5ffd5b806370a0823114610394578063765e827f146103c8578063850aaf62146103e75780639b249f6914610406575f5ffd5b80631b2e01b8116100d85780631b2e01b8146101ae578063205c2878146101e457806322cdde4c1461020357806335567e1a146102225780635287ce1214610280575f5ffd5b806242dc531461011b57806301ffc9a71461014d5780630396cb601461017c5780630bd28e3b1461018f575f5ffd5b366101175761011533610530565b005b5f5ffd5b348015610126575f5ffd5b5061013a610135366004612c88565b610584565b6040519081526020015b60405180910390f35b348015610158575f5ffd5b5061016c610167366004612d40565b610702565b6040519015158152602001610144565b61011561018a366004612d67565b610789565b34801561019a575f5ffd5b506101156101a9366004612da0565b610a14565b3480156101b9575f5ffd5b5061013a6101c8366004612db9565b600160209081525f928352604080842090915290825290205481565b3480156101ef575f5ffd5b506101156101fe366004612dec565b610a4a565b34801561020e575f5ffd5b5061013a61021d366004612e16565b610b96565b34801561022d575f5ffd5b5061013a61023c366004612db9565b6001600160a01b0382165f9081526001602090815260408083206001600160c01b038516845290915290819020549082901b67ffffffffffffffff19161792915050565b34801561028b575f5ffd5b5061033a61029a366004612e4d565b6040805160a0810182525f80825260208201819052918101829052606081018290526080810191909152506001600160a01b03165f9081526020818152604091829020825160a0810184528154815260019091015460ff811615159282019290925261010082046001600160701b031692810192909252600160781b810463ffffffff166060830152600160981b900465ffffffffffff16608082015290565b60405161014491905f60a082019050825182526020830151151560208301526001600160701b03604084015116604083015263ffffffff606084015116606083015265ffffffffffff608084015116608083015292915050565b34801561039f575f5ffd5b5061013a6103ae366004612e4d565b6001600160a01b03165f9081526020819052604090205490565b3480156103d3575f5ffd5b506101156103e2366004612ea8565b610bd7565b3480156103f2575f5ffd5b50610115610401366004612efa565b610d58565b348015610411575f5ffd5b50610115610420366004612f4a565b610dd3565b610115610433366004612e4d565b610530565b348015610443575f5ffd5b50610115610e8a565b348015610457575f5ffd5b50610115610466366004612e4d565b610fb4565b348015610476575f5ffd5b50610115610485366004612ea8565b6111d3565b348015610495575f5ffd5b506104ed6104a4366004612e4d565b5f602081905290815260409020805460019091015460ff81169061010081046001600160701b031690600160781b810463ffffffff1690600160981b900465ffffffffffff1685565b6040805195865293151560208601526001600160701b039092169284019290925263ffffffff909116606083015265ffffffffffff16608082015260a001610144565b5f61053b82346115e6565b9050816001600160a01b03167f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c48260405161057891815260200190565b60405180910390a25050565b5f5f5a90503330146105dd5760405162461bcd60e51b815260206004820152601760248201527f4141393220696e7465726e616c2063616c6c206f6e6c7900000000000000000060448201526064015b60405180910390fd5b8451606081015160a082015181016127100160405a603f028161060257610602612f88565b0410156106185763deaddead60e01b5f5260205ffd5b87515f90156106a6575f610631845f01515f8c86611618565b9050806106a4575f61064461080061162e565b80519091501561069e57845f01516001600160a01b03168a602001517f1c4fada7374c0a9ee8841fc38afe82932dc0f8e69012e927f061a8bae611a201876020015184604051610695929190612fca565b60405180910390a35b60019250505b505b5f88608001515a86030190506106f4828a8a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250879250611659915050565b9a9950505050505050505050565b5f6001600160e01b0319821663307e35b760e11b148061073257506001600160e01b0319821663122a0e9b60e31b145b8061074d57506001600160e01b0319821663cf28ef9760e01b145b8061076857506001600160e01b03198216633e84f02160e01b145b8061078357506301ffc9a760e01b6001600160e01b03198316145b92915050565b335f90815260208190526040902063ffffffff82166107ea5760405162461bcd60e51b815260206004820152601a60248201527f6d757374207370656369667920756e7374616b652064656c617900000000000060448201526064016105d4565b600181015463ffffffff600160781b9091048116908316101561084f5760405162461bcd60e51b815260206004820152601c60248201527f63616e6e6f7420646563726561736520756e7374616b652074696d650000000060448201526064016105d4565b60018101545f9061086f90349061010090046001600160701b0316612ff6565b90505f81116108b55760405162461bcd60e51b81526020600482015260126024820152711b9bc81cdd185ad9481cdc1958da599a595960721b60448201526064016105d4565b6001600160701b038111156108fd5760405162461bcd60e51b815260206004820152600e60248201526d7374616b65206f766572666c6f7760901b60448201526064016105d4565b6040805160a08101825283548152600160208083018281526001600160701b0386811685870190815263ffffffff8a8116606088018181525f60808a0181815233808352828a52918c90209a518b55965199909801805494519151965165ffffffffffff16600160981b0265ffffffffffff60981b1997909416600160781b029690961669ffffffffffffffffffff60781b1991909516610100026effffffffffffffffffffffffffff0019991515999099166effffffffffffffffffffffffffffff1990941693909317979097179190911691909117179055835185815290810192909252917fa5ae833d0bb1dcd632d98a8b70973e8516812898e19bf27b70071ebc8dc52c01910160405180910390a2505050565b335f9081526001602090815260408083206001600160c01b03851684529091528120805491610a4283613009565b919050555050565b335f9081526020819052604090208054821115610aa95760405162461bcd60e51b815260206004820152601960248201527f576974686472617720616d6f756e7420746f6f206c617267650000000000000060448201526064016105d4565b8054610ab6908390613021565b8155604080516001600160a01b03851681526020810184905233917fd1c19fbcd4551a5edfb66d43d2e337c04837afda3482b42bdf569a8fccdae5fb910160405180910390a25f836001600160a01b0316836040515f6040518083038185875af1925050503d805f8114610b45576040519150601f19603f3d011682016040523d82523d5f602084013e610b4a565b606091505b5050905080610b905760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b60448201526064016105d4565b50505050565b5f610ba082611811565b6040805160208101929092523090820152466060820152608001604051602081830303815290604052805190602001209050919050565b610bdf611829565b815f816001600160401b03811115610bf957610bf9612a93565b604051908082528060200260200182016040528015610c3257816020015b610c1f612a0c565b815260200190600190039081610c175790505b5090505f5b82811015610ca7575f828281518110610c5257610c52613034565b602002602001015190505f5f610c8c848a8a87818110610c7457610c74613034565b9050602002810190610c869190613048565b85611844565b91509150610c9c8483835f611a46565b505050600101610c37565b506040515f907fbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972908290a15f5b83811015610d2f57610d2381888884818110610cf257610cf2613034565b9050602002810190610d049190613048565b858481518110610d1657610d16613034565b6020026020010151611be0565b90910190600101610cd4565b50610d3a8482611e8e565b505050610d5360015f5160206136c15f395f51905f5255565b505050565b5f5f846001600160a01b03168484604051610d74929190613067565b5f60405180830381855af49150503d805f8114610dac576040519150601f19603f3d011682016040523d82523d5f602084013e610db1565b606091505b50915091508181604051632650415560e21b81526004016105d4929190613076565b604051632b870d1b60e11b81525f906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063570e1a3690610e2390869086906004016130b8565b6020604051808303815f875af1158015610e3f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e6391906130cb565b604051633653dc0360e11b81526001600160a01b03821660048201529091506024016105d4565b335f90815260208190526040812060018101549091600160781b90910463ffffffff169003610ee85760405162461bcd60e51b815260206004820152600a6024820152691b9bdd081cdd185ad95960b21b60448201526064016105d4565b600181015460ff16610f305760405162461bcd60e51b8152602060048201526011602482015270616c726561647920756e7374616b696e6760781b60448201526064016105d4565b60018101545f90610f4e90600160781b900463ffffffff16426130e6565b60018301805460ff65ffffffffffff60981b011916600160981b65ffffffffffff841690810260ff19169190911790915560405190815290915033907ffa9b3c14cc825c412c9ed81b3ba365a5b459439403f18829e572ed53a4180f0a90602001610578565b335f908152602081905260409020600181015461010090046001600160701b0316806110195760405162461bcd60e51b81526020600482015260146024820152734e6f207374616b6520746f20776974686472617760601b60448201526064016105d4565b6001820154600160981b900465ffffffffffff166110795760405162461bcd60e51b815260206004820152601d60248201527f6d7573742063616c6c20756e6c6f636b5374616b65282920666972737400000060448201526064016105d4565b600182015442600160981b90910465ffffffffffff1611156110dd5760405162461bcd60e51b815260206004820152601b60248201527f5374616b65207769746864726177616c206973206e6f7420647565000000000060448201526064016105d4565b600182018054610100600160c81b0319169055604080516001600160a01b03851681526020810183905233917fb7c918e0e249f999e965cafeb6c664271b3f4317d296461500e71da39f0cbda3910160405180910390a25f836001600160a01b0316826040515f6040518083038185875af1925050503d805f811461117d576040519150601f19603f3d011682016040523d82523d5f602084013e611182565b606091505b5050905080610b905760405162461bcd60e51b815260206004820152601860248201527f6661696c656420746f207769746864726177207374616b65000000000000000060448201526064016105d4565b6111db611829565b815f805b8281101561134257368686838181106111fa576111fa613034565b905060200281019061120c9190613104565b9050365f61121a8380613118565b90925090505f6112306040850160208601612e4d565b90505f196001600160a01b0382160161128b5760405162461bcd60e51b815260206004820152601760248201527f4141393620696e76616c69642061676772656761746f7200000000000000000060448201526064016105d4565b6001600160a01b03811615611326576001600160a01b038116632dd8113384846112b8604089018961315d565b6040518563ffffffff1660e01b81526004016112d794939291906132bf565b5f6040518083038186803b1580156112ed575f5ffd5b505afa9250505080156112fe575060015b6113265760405163086a9f7560e41b81526001600160a01b03821660048201526024016105d4565b6113308287612ff6565b955050600190930192506111df915050565b505f816001600160401b0381111561135c5761135c612a93565b60405190808252806020026020018201604052801561139557816020015b611382612a0c565b81526020019060019003908161137a5790505b5090505f805b8481101561146c57368888838181106113b6576113b6613034565b90506020028101906113c89190613104565b9050365f6113d68380613118565b90925090505f6113ec6040850160208601612e4d565b9050815f5b8181101561145a575f89898151811061140c5761140c613034565b602002602001015190505f5f61142e8b898987818110610c7457610c74613034565b9150915061143e84838389611a46565b8a61144881613009565b9b5050600190930192506113f1915050565b50506001909401935061139b92505050565b506040517fbb47ee3e183a558b1a2ff0874b079f3fc5478b7454eacf2bfc5af2ff5878f972905f90a1505f80805b8581101561159657368989838181106114b5576114b5613034565b90506020028101906114c79190613104565b90506114d96040820160208301612e4d565b6001600160a01b03167f575ff3acadd5ab348fe1855e217e0f3678f8d767d7494c9f9fefbee2e17cca4d60405160405180910390a2365f61151a8380613118565b9092509050805f5b81811015611585576115648885858481811061154057611540613034565b90506020028101906115529190613048565b8b8b81518110610d1657610d16613034565b61156e9088612ff6565b96508761157a81613009565b985050600101611522565b50506001909301925061149a915050565b506040515f907f575ff3acadd5ab348fe1855e217e0f3678f8d767d7494c9f9fefbee2e17cca4d908290a26115cb8682611e8e565b5050505050610d5360015f5160206136c15f395f51905f5255565b6001600160a01b0382165f9081526020819052604081208054829061160c908590612ff6565b91829055509392505050565b5f5f5f845160208601878987f195945050505050565b60603d8281111561163c5750815b604051602082018101604052818152815f602083013e9392505050565b5f5f5a85519091505f908161166d82611f83565b60e08301519091506001600160a01b03811661168c5782519350611743565b8093505f8851111561174357868202955060028a60028111156116b1576116b161334a565b146117435760a0830151604051637c627b2160e01b81526001600160a01b03831691637c627b21916116ed908e908d908c90899060040161335e565b5f604051808303815f88803b158015611704575f5ffd5b5087f193505050508015611716575060015b611743575f61172661080061162e565b905080604051632b5e552f60e21b81526004016105d491906133a5565b5a60a0840151606085015160808c015192880399909901980190880380821115611776576064600a828403020498909801975b505060408901518783029650868110156117cf5760028b600281111561179e5761179e61334a565b036117c0578096506117af8a611fb4565b6117bb8a5f898b612003565b611803565b63deadaa5160e01b5f5260205ffd5b8681036117dc86826115e6565b505f808d60028111156117f1576117f161334a565b1490506118008c828b8d612003565b50505b505050505050949350505050565b5f61181b8261207e565b805190602001209050919050565b611831612133565b60025f5160206136c15f395f51905f5255565b5f5f5f5a84519091506118578682612164565b61186086610b96565b6020860152604081015161012082015161010083015160a08401516080850151606086015160c0870151861717171717176effffffffffffffffffffffffffffff8111156118f05760405162461bcd60e51b815260206004820152601860248201527f41413934206761732076616c756573206f766572666c6f77000000000000000060448201526064016105d4565b5f61191e8460c081015160a08201516080830151606084015160408501516101009095015194010101010290565b905061192d8a8a8a8487612270565b9650611940845f01518560200151612401565b6119965789604051631101335b60e11b81526004016105d4918152604060208201819052601a908201527f4141323520696e76616c6964206163636f756e74206e6f6e6365000000000000606082015260800190565b825a860311156119f25789604051631101335b60e11b81526004016105d4918152604060208201819052601e908201527f41413236206f76657220766572696669636174696f6e4761734c696d69740000606082015260800190565b60e08401516060906001600160a01b031615611a1957611a148b8b8b8561244d565b975090505b604089018290528060608a015260a08a01355a870301896080018181525050505050505050935093915050565b5f5f611a5185612604565b91509150816001600160a01b0316836001600160a01b031614611ab75785604051631101335b60e11b81526004016105d49181526040602082018190526014908201527320a0991a1039b4b3b730ba3ab9329032b93937b960611b606082015260800190565b8015611b0f5785604051631101335b60e11b81526004016105d49181526040602082018190526017908201527f414132322065787069726564206f72206e6f7420647565000000000000000000606082015260800190565b5f611b1985612604565b925090506001600160a01b03811615611b755786604051631101335b60e11b81526004016105d49181526040602082018190526014908201527320a0999a1039b4b3b730ba3ab9329032b93937b960611b606082015260800190565b8115611bd75786604051631101335b60e11b81526004016105d49181526040602082018190526021908201527f41413332207061796d61737465722065787069726564206f72206e6f742064756060820152606560f81b608082015260a00190565b50505050505050565b5f5f5a90505f611bf1846060015190565b6040519091505f903682611c0860608a018a61315d565b9150915060605f826003811115611c1e57843591505b506372288ed160e01b6001600160e01b0319821601611ccb575f8b8b60200151604051602401611c4f9291906133b7565b60408051601f198184030181529181526020820180516001600160e01b0316638dd7712f60e01b1790525190915030906242dc5390611c969084908f908d90602401613482565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050925050611d20565b306001600160a01b03166242dc5385858d8b604051602401611cf094939291906134b6565b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505091505b60205f8351602085015f305af195505f51985084604052505050505080611e84575f3d80602003611d555760205f5f3e5f5191505b5063deaddead60e01b8103611da85787604051631101335b60e11b81526004016105d4918152604060208201819052600f908201526e41413935206f7574206f662067617360881b606082015260800190565b63deadaa5160e01b8103611df7575f86608001515a611dc79087613021565b611dd19190612ff6565b6040880151909150611de288611fb4565b611dee885f8385612003565b9550611e829050565b855180516020808901519201516001600160a01b0390911691907ff62676f440ff169a3a9afdbf812e89e7f95975ee8e5c31214ffdef631c5f479290611e3e61080061162e565b604051611e4c929190612fca565b60405180910390a35f86608001515a611e659087613021565b611e6f9190612ff6565b9050611e7e6002888684611659565b9550505b505b5050509392505050565b6001600160a01b038216611ee45760405162461bcd60e51b815260206004820152601860248201527f4141393020696e76616c69642062656e6566696369617279000000000000000060448201526064016105d4565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611f2d576040519150601f19603f3d011682016040523d82523d5f602084013e611f32565b606091505b5050905080610d535760405162461bcd60e51b815260206004820152601f60248201527f41413931206661696c65642073656e6420746f2062656e65666963696172790060448201526064016105d4565b6101008101516101208201515f9190808203611fa0575092915050565b611fac82488301612653565b949350505050565b80518051602080840151928101516040519081526001600160a01b0390921692917f67b4fa9642f42120bf031f3051d1824b0fe25627945b27b8a6a65d5761d5482e910160405180910390a350565b835160e081015181516020808801519301516040516001600160a01b039384169492909316927f49628fd1471006c1482da88028e9ce4dbb080b815c9b0344d39e5a8e6ec1419f916120709189908990899093845291151560208401526040830152606082015260800190565b60405180910390a450505050565b6060813560208301355f61209d612098604087018761315d565b61266a565b90505f6120b0612098606088018861315d565b9050608086013560a087013560c08801355f6120d261209860e08c018c61315d565b604080516001600160a01b039a909a1660208b015289810198909852606089019690965250608087019390935260a086019190915260c085015260e08401526101008084019190915281518084039091018152610120909201905292915050565b5f5160206136c15f395f51905f525460020361216257604051633ee5aeb560e01b815260040160405180910390fd5b565b6121716020830183612e4d565b6001600160a01b03168152602082810135908201526001600160801b036080808401358281166060850152811c604084015260a084013560c0808501919091528401359182166101008401521c610120820152365f6121d360e085018561315d565b9092509050801561225657603481101561222f5760405162461bcd60e51b815260206004820152601d60248201527f4141393320696e76616c6964207061796d6173746572416e644461746100000060448201526064016105d4565b612239828261267c565b60a086015260808501526001600160a01b031660e0840152610b90565b5f60e084018190526080840181905260a084015250505050565b825180515f919061228e888761228960408b018b61315d565b6126e3565b60e08201515f6001600160a01b0382166122cf576001600160a01b0383165f908152602081905260409020548781116122c9578088036122cb565b5f5b9150505b60208801516040516306608bdf60e21b81526001600160a01b038516916319822f7c918991612305918e919087906004016134eb565b6020604051808303815f8887f193505050508015612340575060408051601f3d908101601f1916820190925261233d9181019061350f565b60015b61236b578961235061080061162e565b6040516365c8fd4d60e01b81526004016105d4929190613526565b94506001600160a01b0382166123f4576001600160a01b0383165f9081526020819052604090208054808911156123ee578b604051631101335b60e11b81526004016105d49181526040602082018190526017908201527f41413231206469646e2774207061792070726566756e64000000000000000000606082015260800190565b88900390555b5050505095945050505050565b6001600160a01b0382165f90815260016020908152604080832084821c80855292528220805484916001600160401b03831691908561243f83613009565b909155501495945050505050565b60605f5f5a855160e08101516001600160a01b0381165f90815260208190526040902080549394509192909190878110156124d4578a604051631101335b60e11b81526004016105d4918152604060208201819052601e908201527f41413331207061796d6173746572206465706f73697420746f6f206c6f770000606082015260800190565b878103825f01819055505f84608001519050836001600160a01b03166352b7512c828d8d602001518d6040518563ffffffff1660e01b815260040161251b939291906134eb565b5f604051808303815f8887f19350505050801561255957506040513d5f823e601f3d908101601f191682016040526125569190810190613562565b60015b612584578b61256961080061162e565b6040516365c8fd4d60e01b81526004016105d49291906135da565b9098509650805a870311156125f5578b604051631101335b60e11b81526004016105d49181526040602082018190526027908201527f41413336206f766572207061796d6173746572566572696669636174696f6e47606082015266185cd31a5b5a5d60ca1b608082015260a00190565b50505050505094509492505050565b5f5f825f0361261757505f928392509050565b5f6126218461299d565b9050806040015165ffffffffffff164211806126485750806020015165ffffffffffff1642105b905194909350915050565b5f8183106126615781612663565b825b9392505050565b5f604051828085833790209392505050565b5f808061268c6014828688613616565b6126959161363d565b60601c6126a6602460148789613616565b6126af9161368a565b60801c6126c060346024888a613616565b6126c99161368a565b9194506001600160801b0316925060801c90509250925092565b8015610b90578251516001600160a01b0381163b1561274e5784604051631101335b60e11b81526004016105d4918152604060208201819052601f908201527f414131302073656e64657220616c726561647920636f6e737472756374656400606082015260800190565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663570e1a36865f01516040015186866040518463ffffffff1660e01b81526004016127a59291906130b8565b6020604051808303815f8887f11580156127c1573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906127e691906130cb565b90506001600160a01b0381166128485785604051631101335b60e11b81526004016105d4918152604060208201819052601b908201527f4141313320696e6974436f6465206661696c6564206f72204f4f470000000000606082015260800190565b816001600160a01b0316816001600160a01b0316146128b25785604051631101335b60e11b81526004016105d491815260406020808301829052908201527f4141313420696e6974436f6465206d7573742072657475726e2073656e646572606082015260800190565b806001600160a01b03163b5f036129145785604051631101335b60e11b81526004016105d491815260406020808301829052908201527f4141313520696e6974436f6465206d757374206372656174652073656e646572606082015260800190565b5f6129226014828688613616565b61292b9161363d565b60601c9050826001600160a01b031686602001517fd51a9c61267aa6196961883ecf5ff2da6619c37dac0fa92122513fb32c032d2d83895f015160e0015160405161298c9291906001600160a01b0392831681529116602082015260400190565b60405180910390a350505050505050565b604080516060810182525f80825260208201819052918101919091528160a081901c65ffffffffffff81165f036129d7575065ffffffffffff5b604080516060810182526001600160a01b03909316835260d09490941c602083015265ffffffffffff16928101929092525090565b6040518060a00160405280612a756040518061014001604052805f6001600160a01b031681526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f6001600160a01b031681526020015f81526020015f81525090565b81526020015f81526020015f81526020015f81526020015f81525090565b634e487b7160e01b5f52604160045260245ffd5b60405160a081016001600160401b0381118282101715612ac957612ac9612a93565b60405290565b60405161014081016001600160401b0381118282101715612ac957612ac9612a93565b604051601f8201601f191681016001600160401b0381118282101715612b1a57612b1a612a93565b604052919050565b5f6001600160401b03821115612b3a57612b3a612a93565b50601f01601f191660200190565b6001600160a01b0381168114612b5c575f5ffd5b50565b8035612b6a81612b48565b919050565b5f8183036101c0811215612b81575f5ffd5b612b89612aa7565b9150610140811215612b99575f5ffd5b50612ba2612acf565b612bab83612b5f565b81526020838101359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c08084013590820152612bf560e08401612b5f565b60e08201526101008381013590820152610120808401359082015281526101408201356020820152610160820135604082015261018082013560608201526101a0909101356080820152919050565b5f5f83601f840112612c54575f5ffd5b5081356001600160401b03811115612c6a575f5ffd5b602083019150836020828501011115612c81575f5ffd5b9250929050565b5f5f5f5f6102008587031215612c9c575f5ffd5b84356001600160401b03811115612cb1575f5ffd5b8501601f81018713612cc1575f5ffd5b8035612cd4612ccf82612b22565b612af2565b818152886020838501011115612ce8575f5ffd5b816020840160208301375f60208383010152809650505050612d0d8660208701612b6f565b92506101e08501356001600160401b03811115612d28575f5ffd5b612d3487828801612c44565b95989497509550505050565b5f60208284031215612d50575f5ffd5b81356001600160e01b031981168114612663575f5ffd5b5f60208284031215612d77575f5ffd5b813563ffffffff81168114612663575f5ffd5b80356001600160c01b0381168114612b6a575f5ffd5b5f60208284031215612db0575f5ffd5b61266382612d8a565b5f5f60408385031215612dca575f5ffd5b8235612dd581612b48565b9150612de360208401612d8a565b90509250929050565b5f5f60408385031215612dfd575f5ffd5b8235612e0881612b48565b946020939093013593505050565b5f60208284031215612e26575f5ffd5b81356001600160401b03811115612e3b575f5ffd5b82016101208185031215612663575f5ffd5b5f60208284031215612e5d575f5ffd5b813561266381612b48565b5f5f83601f840112612e78575f5ffd5b5081356001600160401b03811115612e8e575f5ffd5b6020830191508360208260051b8501011115612c81575f5ffd5b5f5f5f60408486031215612eba575f5ffd5b83356001600160401b03811115612ecf575f5ffd5b612edb86828701612e68565b9094509250506020840135612eef81612b48565b809150509250925092565b5f5f5f60408486031215612f0c575f5ffd5b8335612f1781612b48565b925060208401356001600160401b03811115612f31575f5ffd5b612f3d86828701612c44565b9497909650939450505050565b5f5f60208385031215612f5b575f5ffd5b82356001600160401b03811115612f70575f5ffd5b612f7c85828601612c44565b90969095509350505050565b634e487b7160e01b5f52601260045260245ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b828152604060208201525f611fac6040830184612f9c565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561078357610783612fe2565b5f6001820161301a5761301a612fe2565b5060010190565b8181038181111561078357610783612fe2565b634e487b7160e01b5f52603260045260245ffd5b5f823561011e1983360301811261305d575f5ffd5b9190910192915050565b818382375f9101908152919050565b8215158152604060208201525f611fac6040830184612f9c565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f611fac602083018486613090565b5f602082840312156130db575f5ffd5b815161266381612b48565b65ffffffffffff818116838216019081111561078357610783612fe2565b5f8235605e1983360301811261305d575f5ffd5b5f5f8335601e1984360301811261312d575f5ffd5b8301803591506001600160401b03821115613146575f5ffd5b6020019150600581901b3603821315612c81575f5ffd5b5f5f8335601e19843603018112613172575f5ffd5b8301803591506001600160401b0382111561318b575f5ffd5b602001915036819003821315612c81575f5ffd5b5f5f8335601e198436030181126131b4575f5ffd5b83016020810192503590506001600160401b038111156131d2575f5ffd5b803603821315612c81575f5ffd5b6131fa826131ed83612b5f565b6001600160a01b03169052565b602081810135908301525f613212604083018361319f565b610120604086015261322961012086018284613090565b915050613239606084018461319f565b858303606087015261324c838284613090565b6080868101359088015260a0808701359088015260c08087013590880152925061327c91505060e084018461319f565b85830360e087015261328f838284613090565b925050506132a161010084018461319f565b8583036101008701526132b5838284613090565b9695505050505050565b604080825281018490525f6060600586901b83018101908301878361011e1936839003015b8982101561332857868503605f190184528235818112613302575f5ffd5b61330e868d83016131e0565b9550506020830192506020840193506001820191506132e4565b50505050828103602084015261333f818587613090565b979650505050505050565b634e487b7160e01b5f52602160045260245ffd5b5f6003861061337b57634e487b7160e01b5f52602160045260245ffd5b858252608060208301526133926080830186612f9c565b6040830194909452506060015292915050565b602081525f6126636020830184612f9c565b604081525f6133c960408301856131e0565b90508260208301529392505050565b805180516001600160a01b031683526020810151602084015260408101516040840152606081015160608401526080810151608084015260a081015160a084015260c081015160c084015260e081015161343d60e08501826001600160a01b03169052565b5061010081810151908401526101209081015190830152602081015161014083015260408101516101608301526060810151610180830152608001516101a090910152565b61020081525f613496610200830186612f9c565b6134a360208401866133d8565b8281036101e08401526132b58185612f9c565b61020081525f6134cb61020083018688613090565b6134d860208401866133d8565b8281036101e084015261333f8185612f9c565b606081525f6134fd60608301866131e0565b60208301949094525060400152919050565b5f6020828403121561351f575f5ffd5b5051919050565b82815260606020820152600d60608201526c10504c8cc81c995d995c9d1959609a1b608082015260a060408201525f611fac60a0830184612f9c565b5f5f60408385031215613573575f5ffd5b82516001600160401b03811115613588575f5ffd5b8301601f81018513613598575f5ffd5b80516135a6612ccf82612b22565b8181528660208385010111156135ba575f5ffd5b8160208401602083015e5f60209282018301529401519395939450505050565b82815260606020820152600d60608201526c10504cccc81c995d995c9d1959609a1b608082015260a060408201525f611fac60a0830184612f9c565b5f5f85851115613624575f5ffd5b83861115613630575f5ffd5b5050820193919092039150565b80356bffffffffffffffffffffffff198116906014841015613683576bffffffffffffffffffffffff196bffffffffffffffffffffffff198560140360031b1b82161691505b5092915050565b80356001600160801b03198116906010841015613683576001600160801b031960109490940360031b84901b169092169291505056fe9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00a26469706673582212209818eb0cbfb3954a457792fc92a2c775b32e3cd87a4adf133c403eb3aa9a4bcd64736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x107 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xB760FAF9 GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xB760FAF9 EQ PUSH2 0x425 JUMPI DUP1 PUSH4 0xBB9FE6BF EQ PUSH2 0x438 JUMPI DUP1 PUSH4 0xC23A5CEA EQ PUSH2 0x44C JUMPI DUP1 PUSH4 0xDBED18E0 EQ PUSH2 0x46B JUMPI DUP1 PUSH4 0xFC7E286D EQ PUSH2 0x48A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x394 JUMPI DUP1 PUSH4 0x765E827F EQ PUSH2 0x3C8 JUMPI DUP1 PUSH4 0x850AAF62 EQ PUSH2 0x3E7 JUMPI DUP1 PUSH4 0x9B249F69 EQ PUSH2 0x406 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1B2E01B8 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0x1B2E01B8 EQ PUSH2 0x1AE JUMPI DUP1 PUSH4 0x205C2878 EQ PUSH2 0x1E4 JUMPI DUP1 PUSH4 0x22CDDE4C EQ PUSH2 0x203 JUMPI DUP1 PUSH4 0x35567E1A EQ PUSH2 0x222 JUMPI DUP1 PUSH4 0x5287CE12 EQ PUSH2 0x280 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH3 0x42DC53 EQ PUSH2 0x11B JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x14D JUMPI DUP1 PUSH4 0x396CB60 EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0xBD28E3B EQ PUSH2 0x18F JUMPI PUSH0 PUSH0 REVERT JUMPDEST CALLDATASIZE PUSH2 0x117 JUMPI PUSH2 0x115 CALLER PUSH2 0x530 JUMP JUMPDEST STOP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x126 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x135 CALLDATASIZE PUSH1 0x4 PUSH2 0x2C88 JUMP JUMPDEST PUSH2 0x584 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x158 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x16C PUSH2 0x167 CALLDATASIZE PUSH1 0x4 PUSH2 0x2D40 JUMP JUMPDEST PUSH2 0x702 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x144 JUMP JUMPDEST PUSH2 0x115 PUSH2 0x18A CALLDATASIZE PUSH1 0x4 PUSH2 0x2D67 JUMP JUMPDEST PUSH2 0x789 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x19A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x1A9 CALLDATASIZE PUSH1 0x4 PUSH2 0x2DA0 JUMP JUMPDEST PUSH2 0xA14 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x1C8 CALLDATASIZE PUSH1 0x4 PUSH2 0x2DB9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH0 SWAP3 DUP4 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 SWAP1 SWAP2 MSTORE SWAP1 DUP3 MSTORE SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x1FE CALLDATASIZE PUSH1 0x4 PUSH2 0x2DEC JUMP JUMPDEST PUSH2 0xA4A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x20E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x21D CALLDATASIZE PUSH1 0x4 PUSH2 0x2E16 JUMP JUMPDEST PUSH2 0xB96 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x22D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x23C CALLDATASIZE PUSH1 0x4 PUSH2 0x2DB9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 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 0xC0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE SWAP1 DUP2 SWAP1 KECCAK256 SLOAD SWAP1 DUP3 SWAP1 SHL PUSH8 0xFFFFFFFFFFFFFFFF NOT AND OR SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33A PUSH2 0x29A CALLDATASIZE PUSH1 0x4 PUSH2 0x2E4D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD PUSH1 0xA0 DUP2 ADD DUP5 MSTORE DUP2 SLOAD DUP2 MSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0xFF DUP2 AND ISZERO ISZERO SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH2 0x100 DUP3 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x78 SHL DUP2 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x98 SHL SWAP1 DIV PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x80 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x144 SWAP2 SWAP1 PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP DUP3 MLOAD DUP3 MSTORE PUSH1 0x20 DUP4 ADD MLOAD ISZERO ISZERO PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB PUSH1 0x40 DUP5 ADD MLOAD AND PUSH1 0x40 DUP4 ADD MSTORE PUSH4 0xFFFFFFFF PUSH1 0x60 DUP5 ADD MLOAD AND PUSH1 0x60 DUP4 ADD MSTORE PUSH6 0xFFFFFFFFFFFF PUSH1 0x80 DUP5 ADD MLOAD AND PUSH1 0x80 DUP4 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x39F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x13A PUSH2 0x3AE CALLDATASIZE PUSH1 0x4 PUSH2 0x2E4D 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 CALLVALUE DUP1 ISZERO PUSH2 0x3D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x3E2 CALLDATASIZE PUSH1 0x4 PUSH2 0x2EA8 JUMP JUMPDEST PUSH2 0xBD7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x401 CALLDATASIZE PUSH1 0x4 PUSH2 0x2EFA JUMP JUMPDEST PUSH2 0xD58 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x411 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x420 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F4A JUMP JUMPDEST PUSH2 0xDD3 JUMP JUMPDEST PUSH2 0x115 PUSH2 0x433 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E4D JUMP JUMPDEST PUSH2 0x530 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x443 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0xE8A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x457 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x466 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E4D JUMP JUMPDEST PUSH2 0xFB4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x476 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x115 PUSH2 0x485 CALLDATASIZE PUSH1 0x4 PUSH2 0x2EA8 JUMP JUMPDEST PUSH2 0x11D3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x495 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x4ED PUSH2 0x4A4 CALLDATASIZE PUSH1 0x4 PUSH2 0x2E4D JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP2 SWAP1 MSTORE SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0xFF DUP2 AND SWAP1 PUSH2 0x100 DUP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 PUSH1 0x1 PUSH1 0x78 SHL DUP2 DIV PUSH4 0xFFFFFFFF AND SWAP1 PUSH1 0x1 PUSH1 0x98 SHL SWAP1 DIV PUSH6 0xFFFFFFFFFFFF AND DUP6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP6 DUP7 MSTORE SWAP4 ISZERO ISZERO PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB SWAP1 SWAP3 AND SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH1 0x60 DUP4 ADD MSTORE PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD PUSH2 0x144 JUMP JUMPDEST PUSH0 PUSH2 0x53B DUP3 CALLVALUE PUSH2 0x15E6 JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x2DA466A7B24304F47E87FA2E1E5A81B9831CE54FEC19055CE277CA2F39BA42C4 DUP3 PUSH1 0x40 MLOAD PUSH2 0x578 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 PUSH0 GAS SWAP1 POP CALLER ADDRESS EQ PUSH2 0x5DD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4141393220696E7465726E616C2063616C6C206F6E6C79000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 MLOAD PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0xA0 DUP3 ADD MLOAD DUP2 ADD PUSH2 0x2710 ADD PUSH1 0x40 GAS PUSH1 0x3F MUL DUP2 PUSH2 0x602 JUMPI PUSH2 0x602 PUSH2 0x2F88 JUMP JUMPDEST DIV LT ISZERO PUSH2 0x618 JUMPI PUSH4 0xDEADDEAD PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x20 PUSH0 REVERT JUMPDEST DUP8 MLOAD PUSH0 SWAP1 ISZERO PUSH2 0x6A6 JUMPI PUSH0 PUSH2 0x631 DUP5 PUSH0 ADD MLOAD PUSH0 DUP13 DUP7 PUSH2 0x1618 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x6A4 JUMPI PUSH0 PUSH2 0x644 PUSH2 0x800 PUSH2 0x162E JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x69E JUMPI DUP5 PUSH0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP11 PUSH1 0x20 ADD MLOAD PUSH32 0x1C4FADA7374C0A9EE8841FC38AFE82932DC0F8E69012E927F061A8BAE611A201 DUP8 PUSH1 0x20 ADD MLOAD DUP5 PUSH1 0x40 MLOAD PUSH2 0x695 SWAP3 SWAP2 SWAP1 PUSH2 0x2FCA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST PUSH1 0x1 SWAP3 POP POP JUMPDEST POP JUMPDEST PUSH0 DUP9 PUSH1 0x80 ADD MLOAD GAS DUP7 SUB ADD SWAP1 POP PUSH2 0x6F4 DUP3 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 DUP8 SWAP3 POP PUSH2 0x1659 SWAP2 POP POP JUMP JUMPDEST SWAP11 SWAP10 POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x307E35B7 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x732 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x122A0E9B PUSH1 0xE3 SHL EQ JUMPDEST DUP1 PUSH2 0x74D JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xCF28EF97 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x768 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x3E84F021 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x783 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 CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH4 0xFFFFFFFF DUP3 AND PUSH2 0x7EA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6D757374207370656369667920756E7374616B652064656C6179000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SLOAD PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0x78 SHL SWAP1 SWAP2 DIV DUP2 AND SWAP1 DUP4 AND LT ISZERO PUSH2 0x84F 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 0x63616E6E6F7420646563726561736520756E7374616B652074696D6500000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SLOAD PUSH0 SWAP1 PUSH2 0x86F SWAP1 CALLVALUE SWAP1 PUSH2 0x100 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x2FF6 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 GT PUSH2 0x8B5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH18 0x1B9BC81CDD185AD9481CDC1958DA599A5959 PUSH1 0x72 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP2 GT ISZERO PUSH2 0x8FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x7374616B65206F766572666C6F77 PUSH1 0x90 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE DUP4 SLOAD DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP1 DUP4 ADD DUP3 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB DUP7 DUP2 AND DUP6 DUP8 ADD SWAP1 DUP2 MSTORE PUSH4 0xFFFFFFFF DUP11 DUP2 AND PUSH1 0x60 DUP9 ADD DUP2 DUP2 MSTORE PUSH0 PUSH1 0x80 DUP11 ADD DUP2 DUP2 MSTORE CALLER DUP1 DUP4 MSTORE DUP3 DUP11 MSTORE SWAP2 DUP13 SWAP1 KECCAK256 SWAP11 MLOAD DUP12 SSTORE SWAP7 MLOAD SWAP10 SWAP1 SWAP9 ADD DUP1 SLOAD SWAP5 MLOAD SWAP2 MLOAD SWAP7 MLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH1 0x1 PUSH1 0x98 SHL MUL PUSH6 0xFFFFFFFFFFFF PUSH1 0x98 SHL NOT SWAP8 SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x78 SHL MUL SWAP7 SWAP1 SWAP7 AND PUSH10 0xFFFFFFFFFFFFFFFFFFFF PUSH1 0x78 SHL NOT SWAP2 SWAP1 SWAP6 AND PUSH2 0x100 MUL PUSH15 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 NOT SWAP10 ISZERO ISZERO SWAP10 SWAP1 SWAP10 AND PUSH15 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP8 SWAP1 SWAP8 OR SWAP2 SWAP1 SWAP2 AND SWAP2 SWAP1 SWAP2 OR OR SWAP1 SSTORE DUP4 MLOAD DUP6 DUP2 MSTORE SWAP1 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP2 PUSH32 0xA5AE833D0BB1DCD632D98A8B70973E8516812898E19BF27B70071EBC8DC52C01 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xC0 SHL SUB DUP6 AND DUP5 MSTORE SWAP1 SWAP2 MSTORE DUP2 KECCAK256 DUP1 SLOAD SWAP2 PUSH2 0xA42 DUP4 PUSH2 0x3009 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 GT ISZERO PUSH2 0xAA9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x576974686472617720616D6F756E7420746F6F206C6172676500000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST DUP1 SLOAD PUSH2 0xAB6 SWAP1 DUP4 SWAP1 PUSH2 0x3021 JUMP JUMPDEST DUP2 SSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 SWAP1 MSTORE CALLER SWAP2 PUSH32 0xD1C19FBCD4551A5EDFB66D43D2E337C04837AFDA3482B42BDF569A8FCCDAE5FB SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x40 MLOAD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xB45 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 0xB4A JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xB90 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x12 PUSH1 0x24 DUP3 ADD MSTORE PUSH18 0x6661696C656420746F207769746864726177 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xBA0 DUP3 PUSH2 0x1811 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADDRESS SWAP1 DUP3 ADD MSTORE CHAINID PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBDF PUSH2 0x1829 JUMP JUMPDEST DUP2 PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xBF9 JUMPI PUSH2 0xBF9 PUSH2 0x2A93 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xC32 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0xC1F PUSH2 0x2A0C JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xC17 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xCA7 JUMPI PUSH0 DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xC52 JUMPI PUSH2 0xC52 PUSH2 0x3034 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH0 PUSH0 PUSH2 0xC8C DUP5 DUP11 DUP11 DUP8 DUP2 DUP2 LT PUSH2 0xC74 JUMPI PUSH2 0xC74 PUSH2 0x3034 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xC86 SWAP2 SWAP1 PUSH2 0x3048 JUMP JUMPDEST DUP6 PUSH2 0x1844 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0xC9C DUP5 DUP4 DUP4 PUSH0 PUSH2 0x1A46 JUMP JUMPDEST POP POP POP PUSH1 0x1 ADD PUSH2 0xC37 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH0 SWAP1 PUSH32 0xBB47EE3E183A558B1A2FF0874B079F3FC5478B7454EACF2BFC5AF2FF5878F972 SWAP1 DUP3 SWAP1 LOG1 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xD2F JUMPI PUSH2 0xD23 DUP2 DUP9 DUP9 DUP5 DUP2 DUP2 LT PUSH2 0xCF2 JUMPI PUSH2 0xCF2 PUSH2 0x3034 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xD04 SWAP2 SWAP1 PUSH2 0x3048 JUMP JUMPDEST DUP6 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xD16 JUMPI PUSH2 0xD16 PUSH2 0x3034 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x1BE0 JUMP JUMPDEST SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0xCD4 JUMP JUMPDEST POP PUSH2 0xD3A DUP5 DUP3 PUSH2 0x1E8E JUMP JUMPDEST POP POP POP PUSH2 0xD53 PUSH1 0x1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x36C1 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SSTORE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0xD74 SWAP3 SWAP2 SWAP1 PUSH2 0x3067 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xDAC 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 0xDB1 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 DUP2 PUSH1 0x40 MLOAD PUSH4 0x26504155 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP3 SWAP2 SWAP1 PUSH2 0x3076 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2B870D1B PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x570E1A36 SWAP1 PUSH2 0xE23 SWAP1 DUP7 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x30B8 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xE3F 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 0xE63 SWAP2 SWAP1 PUSH2 0x30CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3653DC03 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 SWAP2 POP PUSH1 0x24 ADD PUSH2 0x5D4 JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD SWAP1 SWAP2 PUSH1 0x1 PUSH1 0x78 SHL SWAP1 SWAP2 DIV PUSH4 0xFFFFFFFF AND SWAP1 SUB PUSH2 0xEE8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xA PUSH1 0x24 DUP3 ADD MSTORE PUSH10 0x1B9BDD081CDD185AD959 PUSH1 0xB2 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SLOAD PUSH1 0xFF AND PUSH2 0xF30 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x616C726561647920756E7374616B696E67 PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SLOAD PUSH0 SWAP1 PUSH2 0xF4E SWAP1 PUSH1 0x1 PUSH1 0x78 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND TIMESTAMP PUSH2 0x30E6 JUMP JUMPDEST PUSH1 0x1 DUP4 ADD DUP1 SLOAD PUSH1 0xFF PUSH6 0xFFFFFFFFFFFF PUSH1 0x98 SHL ADD NOT AND PUSH1 0x1 PUSH1 0x98 SHL PUSH6 0xFFFFFFFFFFFF DUP5 AND SWAP1 DUP2 MUL PUSH1 0xFF NOT AND SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE SWAP1 SWAP2 POP CALLER SWAP1 PUSH32 0xFA9B3C14CC825C412C9ED81B3BA365A5B459439403F18829E572ED53A4180F0A SWAP1 PUSH1 0x20 ADD PUSH2 0x578 JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP1 PUSH2 0x1019 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x14 PUSH1 0x24 DUP3 ADD MSTORE PUSH20 0x4E6F207374616B6520746F207769746864726177 PUSH1 0x60 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SLOAD PUSH1 0x1 PUSH1 0x98 SHL SWAP1 DIV PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x1079 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6D7573742063616C6C20756E6C6F636B5374616B652829206669727374000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SLOAD TIMESTAMP PUSH1 0x1 PUSH1 0x98 SHL SWAP1 SWAP2 DIV PUSH6 0xFFFFFFFFFFFF AND GT ISZERO PUSH2 0x10DD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5374616B65207769746864726177616C206973206E6F74206475650000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x100 PUSH1 0x1 PUSH1 0xC8 SHL SUB NOT AND SWAP1 SSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE CALLER SWAP2 PUSH32 0xB7C918E0E249F999E965CAFEB6C664271B3F4317D296461500E71DA39F0CBDA3 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x40 MLOAD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x117D 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 0x1182 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xB90 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x6661696C656420746F207769746864726177207374616B650000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH2 0x11DB PUSH2 0x1829 JUMP JUMPDEST DUP2 PUSH0 DUP1 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1342 JUMPI CALLDATASIZE DUP7 DUP7 DUP4 DUP2 DUP2 LT PUSH2 0x11FA JUMPI PUSH2 0x11FA PUSH2 0x3034 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x120C SWAP2 SWAP1 PUSH2 0x3104 JUMP JUMPDEST SWAP1 POP CALLDATASIZE PUSH0 PUSH2 0x121A DUP4 DUP1 PUSH2 0x3118 JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP PUSH0 PUSH2 0x1230 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2E4D JUMP JUMPDEST SWAP1 POP PUSH0 NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ADD PUSH2 0x128B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x17 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4141393620696E76616C69642061676772656761746F72000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x1326 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH4 0x2DD81133 DUP5 DUP5 PUSH2 0x12B8 PUSH1 0x40 DUP10 ADD DUP10 PUSH2 0x315D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12D7 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x32BF JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x12ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x12FE JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x1326 JUMPI PUSH1 0x40 MLOAD PUSH4 0x86A9F75 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH2 0x1330 DUP3 DUP8 PUSH2 0x2FF6 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x1 SWAP1 SWAP4 ADD SWAP3 POP PUSH2 0x11DF SWAP2 POP POP JUMP JUMPDEST POP PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x135C JUMPI PUSH2 0x135C PUSH2 0x2A93 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1395 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x1382 PUSH2 0x2A0C JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x137A JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 DUP1 JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x146C JUMPI CALLDATASIZE DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x13B6 JUMPI PUSH2 0x13B6 PUSH2 0x3034 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x13C8 SWAP2 SWAP1 PUSH2 0x3104 JUMP JUMPDEST SWAP1 POP CALLDATASIZE PUSH0 PUSH2 0x13D6 DUP4 DUP1 PUSH2 0x3118 JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP PUSH0 PUSH2 0x13EC PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x2E4D JUMP JUMPDEST SWAP1 POP DUP2 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x145A JUMPI PUSH0 DUP10 DUP10 DUP2 MLOAD DUP2 LT PUSH2 0x140C JUMPI PUSH2 0x140C PUSH2 0x3034 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH0 PUSH0 PUSH2 0x142E DUP12 DUP10 DUP10 DUP8 DUP2 DUP2 LT PUSH2 0xC74 JUMPI PUSH2 0xC74 PUSH2 0x3034 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x143E DUP5 DUP4 DUP4 DUP10 PUSH2 0x1A46 JUMP JUMPDEST DUP11 PUSH2 0x1448 DUP2 PUSH2 0x3009 JUMP JUMPDEST SWAP12 POP POP PUSH1 0x1 SWAP1 SWAP4 ADD SWAP3 POP PUSH2 0x13F1 SWAP2 POP POP JUMP JUMPDEST POP POP PUSH1 0x1 SWAP1 SWAP5 ADD SWAP4 POP PUSH2 0x139B SWAP3 POP POP POP JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH32 0xBB47EE3E183A558B1A2FF0874B079F3FC5478B7454EACF2BFC5AF2FF5878F972 SWAP1 PUSH0 SWAP1 LOG1 POP PUSH0 DUP1 DUP1 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x1596 JUMPI CALLDATASIZE DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x14B5 JUMPI PUSH2 0x14B5 PUSH2 0x3034 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x14C7 SWAP2 SWAP1 PUSH2 0x3104 JUMP JUMPDEST SWAP1 POP PUSH2 0x14D9 PUSH1 0x40 DUP3 ADD PUSH1 0x20 DUP4 ADD PUSH2 0x2E4D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x575FF3ACADD5AB348FE1855E217E0F3678F8D767D7494C9F9FEFBEE2E17CCA4D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 CALLDATASIZE PUSH0 PUSH2 0x151A DUP4 DUP1 PUSH2 0x3118 JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP DUP1 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1585 JUMPI PUSH2 0x1564 DUP9 DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x1540 JUMPI PUSH2 0x1540 PUSH2 0x3034 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x1552 SWAP2 SWAP1 PUSH2 0x3048 JUMP JUMPDEST DUP12 DUP12 DUP2 MLOAD DUP2 LT PUSH2 0xD16 JUMPI PUSH2 0xD16 PUSH2 0x3034 JUMP JUMPDEST PUSH2 0x156E SWAP1 DUP9 PUSH2 0x2FF6 JUMP JUMPDEST SWAP7 POP DUP8 PUSH2 0x157A DUP2 PUSH2 0x3009 JUMP JUMPDEST SWAP9 POP POP PUSH1 0x1 ADD PUSH2 0x1522 JUMP JUMPDEST POP POP PUSH1 0x1 SWAP1 SWAP4 ADD SWAP3 POP PUSH2 0x149A SWAP2 POP POP JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH0 SWAP1 PUSH32 0x575FF3ACADD5AB348FE1855E217E0F3678F8D767D7494C9F9FEFBEE2E17CCA4D SWAP1 DUP3 SWAP1 LOG2 PUSH2 0x15CB DUP7 DUP3 PUSH2 0x1E8E JUMP JUMPDEST POP POP POP POP POP PUSH2 0xD53 PUSH1 0x1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x36C1 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SSTORE 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 DUP1 SLOAD DUP3 SWAP1 PUSH2 0x160C SWAP1 DUP6 SWAP1 PUSH2 0x2FF6 JUMP JUMPDEST SWAP2 DUP3 SWAP1 SSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP5 MLOAD PUSH1 0x20 DUP7 ADD DUP8 DUP10 DUP8 CALL SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 RETURNDATASIZE DUP3 DUP2 GT ISZERO PUSH2 0x163C JUMPI POP DUP2 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP3 ADD DUP2 ADD PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP2 PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 GAS DUP6 MLOAD SWAP1 SWAP2 POP PUSH0 SWAP1 DUP2 PUSH2 0x166D DUP3 PUSH2 0x1F83 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x168C JUMPI DUP3 MLOAD SWAP4 POP PUSH2 0x1743 JUMP JUMPDEST DUP1 SWAP4 POP PUSH0 DUP9 MLOAD GT ISZERO PUSH2 0x1743 JUMPI DUP7 DUP3 MUL SWAP6 POP PUSH1 0x2 DUP11 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x16B1 JUMPI PUSH2 0x16B1 PUSH2 0x334A JUMP JUMPDEST EQ PUSH2 0x1743 JUMPI PUSH1 0xA0 DUP4 ADD MLOAD PUSH1 0x40 MLOAD PUSH4 0x7C627B21 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP2 PUSH4 0x7C627B21 SWAP2 PUSH2 0x16ED SWAP1 DUP15 SWAP1 DUP14 SWAP1 DUP13 SWAP1 DUP10 SWAP1 PUSH1 0x4 ADD PUSH2 0x335E JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1704 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP8 CALL SWAP4 POP POP POP POP DUP1 ISZERO PUSH2 0x1716 JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x1743 JUMPI PUSH0 PUSH2 0x1726 PUSH2 0x800 PUSH2 0x162E JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x40 MLOAD PUSH4 0x2B5E552F PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 SWAP1 PUSH2 0x33A5 JUMP JUMPDEST GAS PUSH1 0xA0 DUP5 ADD MLOAD PUSH1 0x60 DUP6 ADD MLOAD PUSH1 0x80 DUP13 ADD MLOAD SWAP3 DUP9 SUB SWAP10 SWAP1 SWAP10 ADD SWAP9 ADD SWAP1 DUP9 SUB DUP1 DUP3 GT ISZERO PUSH2 0x1776 JUMPI PUSH1 0x64 PUSH1 0xA DUP3 DUP5 SUB MUL DIV SWAP9 SWAP1 SWAP9 ADD SWAP8 JUMPDEST POP POP PUSH1 0x40 DUP10 ADD MLOAD DUP8 DUP4 MUL SWAP7 POP DUP7 DUP2 LT ISZERO PUSH2 0x17CF JUMPI PUSH1 0x2 DUP12 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x179E JUMPI PUSH2 0x179E PUSH2 0x334A JUMP JUMPDEST SUB PUSH2 0x17C0 JUMPI DUP1 SWAP7 POP PUSH2 0x17AF DUP11 PUSH2 0x1FB4 JUMP JUMPDEST PUSH2 0x17BB DUP11 PUSH0 DUP10 DUP12 PUSH2 0x2003 JUMP JUMPDEST PUSH2 0x1803 JUMP JUMPDEST PUSH4 0xDEADAA51 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x20 PUSH0 REVERT JUMPDEST DUP7 DUP2 SUB PUSH2 0x17DC DUP7 DUP3 PUSH2 0x15E6 JUMP JUMPDEST POP PUSH0 DUP1 DUP14 PUSH1 0x2 DUP2 GT ISZERO PUSH2 0x17F1 JUMPI PUSH2 0x17F1 PUSH2 0x334A JUMP JUMPDEST EQ SWAP1 POP PUSH2 0x1800 DUP13 DUP3 DUP12 DUP14 PUSH2 0x2003 JUMP JUMPDEST POP POP JUMPDEST POP POP POP POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x181B DUP3 PUSH2 0x207E JUMP JUMPDEST DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1831 PUSH2 0x2133 JUMP JUMPDEST PUSH1 0x2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x36C1 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SSTORE JUMP JUMPDEST PUSH0 PUSH0 PUSH0 GAS DUP5 MLOAD SWAP1 SWAP2 POP PUSH2 0x1857 DUP7 DUP3 PUSH2 0x2164 JUMP JUMPDEST PUSH2 0x1860 DUP7 PUSH2 0xB96 JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x120 DUP3 ADD MLOAD PUSH2 0x100 DUP4 ADD MLOAD PUSH1 0xA0 DUP5 ADD MLOAD PUSH1 0x80 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH1 0xC0 DUP8 ADD MLOAD DUP7 OR OR OR OR OR OR PUSH15 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x18F0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x41413934206761732076616C756573206F766572666C6F770000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH0 PUSH2 0x191E DUP5 PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xA0 DUP3 ADD MLOAD PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0x60 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH2 0x100 SWAP1 SWAP6 ADD MLOAD SWAP5 ADD ADD ADD ADD MUL SWAP1 JUMP JUMPDEST SWAP1 POP PUSH2 0x192D DUP11 DUP11 DUP11 DUP5 DUP8 PUSH2 0x2270 JUMP JUMPDEST SWAP7 POP PUSH2 0x1940 DUP5 PUSH0 ADD MLOAD DUP6 PUSH1 0x20 ADD MLOAD PUSH2 0x2401 JUMP JUMPDEST PUSH2 0x1996 JUMPI DUP10 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1A SWAP1 DUP3 ADD MSTORE PUSH32 0x4141323520696E76616C6964206163636F756E74206E6F6E6365000000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP3 GAS DUP7 SUB GT ISZERO PUSH2 0x19F2 JUMPI DUP10 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1E SWAP1 DUP3 ADD MSTORE PUSH32 0x41413236206F76657220766572696669636174696F6E4761734C696D69740000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0xE0 DUP5 ADD MLOAD PUSH1 0x60 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1A19 JUMPI PUSH2 0x1A14 DUP12 DUP12 DUP12 DUP6 PUSH2 0x244D JUMP JUMPDEST SWAP8 POP SWAP1 POP JUMPDEST PUSH1 0x40 DUP10 ADD DUP3 SWAP1 MSTORE DUP1 PUSH1 0x60 DUP11 ADD MSTORE PUSH1 0xA0 DUP11 ADD CALLDATALOAD GAS DUP8 SUB ADD DUP10 PUSH1 0x80 ADD DUP2 DUP2 MSTORE POP POP POP POP POP POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1A51 DUP6 PUSH2 0x2604 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1AB7 JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x14 SWAP1 DUP3 ADD MSTORE PUSH20 0x20A0991A1039B4B3B730BA3AB9329032B93937B9 PUSH1 0x61 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1B0F JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x17 SWAP1 DUP3 ADD MSTORE PUSH32 0x414132322065787069726564206F72206E6F7420647565000000000000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x1B19 DUP6 PUSH2 0x2604 JUMP JUMPDEST SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x1B75 JUMPI DUP7 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x14 SWAP1 DUP3 ADD MSTORE PUSH20 0x20A0999A1039B4B3B730BA3AB9329032B93937B9 PUSH1 0x61 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP2 ISZERO PUSH2 0x1BD7 JUMPI DUP7 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x21 SWAP1 DUP3 ADD MSTORE PUSH32 0x41413332207061796D61737465722065787069726564206F72206E6F74206475 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x65 PUSH1 0xF8 SHL PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 GAS SWAP1 POP PUSH0 PUSH2 0x1BF1 DUP5 PUSH1 0x60 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 SWAP2 POP PUSH0 SWAP1 CALLDATASIZE DUP3 PUSH2 0x1C08 PUSH1 0x60 DUP11 ADD DUP11 PUSH2 0x315D JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x60 PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1C1E JUMPI DUP5 CALLDATALOAD SWAP2 POP JUMPDEST POP PUSH4 0x72288ED1 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND ADD PUSH2 0x1CCB JUMPI PUSH0 DUP12 DUP12 PUSH1 0x20 ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x1C4F SWAP3 SWAP2 SWAP1 PUSH2 0x33B7 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 DUP2 MSTORE PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x8DD7712F PUSH1 0xE0 SHL OR SWAP1 MSTORE MLOAD SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH3 0x42DC53 SWAP1 PUSH2 0x1C96 SWAP1 DUP5 SWAP1 DUP16 SWAP1 DUP14 SWAP1 PUSH1 0x24 ADD PUSH2 0x3482 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP SWAP3 POP POP PUSH2 0x1D20 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH3 0x42DC53 DUP6 DUP6 DUP14 DUP12 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x1CF0 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x34B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP2 POP PUSH1 0xE0 SHL PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP SWAP2 POP JUMPDEST PUSH1 0x20 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD PUSH0 ADDRESS GAS CALL SWAP6 POP PUSH0 MLOAD SWAP9 POP DUP5 PUSH1 0x40 MSTORE POP POP POP POP POP DUP1 PUSH2 0x1E84 JUMPI PUSH0 RETURNDATASIZE DUP1 PUSH1 0x20 SUB PUSH2 0x1D55 JUMPI PUSH1 0x20 PUSH0 PUSH0 RETURNDATACOPY PUSH0 MLOAD SWAP2 POP JUMPDEST POP PUSH4 0xDEADDEAD PUSH1 0xE0 SHL DUP2 SUB PUSH2 0x1DA8 JUMPI DUP8 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0xF SWAP1 DUP3 ADD MSTORE PUSH15 0x41413935206F7574206F6620676173 PUSH1 0x88 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH4 0xDEADAA51 PUSH1 0xE0 SHL DUP2 SUB PUSH2 0x1DF7 JUMPI PUSH0 DUP7 PUSH1 0x80 ADD MLOAD GAS PUSH2 0x1DC7 SWAP1 DUP8 PUSH2 0x3021 JUMP JUMPDEST PUSH2 0x1DD1 SWAP2 SWAP1 PUSH2 0x2FF6 JUMP JUMPDEST PUSH1 0x40 DUP9 ADD MLOAD SWAP1 SWAP2 POP PUSH2 0x1DE2 DUP9 PUSH2 0x1FB4 JUMP JUMPDEST PUSH2 0x1DEE DUP9 PUSH0 DUP4 DUP6 PUSH2 0x2003 JUMP JUMPDEST SWAP6 POP PUSH2 0x1E82 SWAP1 POP JUMP JUMPDEST DUP6 MLOAD DUP1 MLOAD PUSH1 0x20 DUP1 DUP10 ADD MLOAD SWAP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP2 SWAP1 PUSH32 0xF62676F440FF169A3A9AFDBF812E89E7F95975EE8E5C31214FFDEF631C5F4792 SWAP1 PUSH2 0x1E3E PUSH2 0x800 PUSH2 0x162E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E4C SWAP3 SWAP2 SWAP1 PUSH2 0x2FCA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH0 DUP7 PUSH1 0x80 ADD MLOAD GAS PUSH2 0x1E65 SWAP1 DUP8 PUSH2 0x3021 JUMP JUMPDEST PUSH2 0x1E6F SWAP2 SWAP1 PUSH2 0x2FF6 JUMP JUMPDEST SWAP1 POP PUSH2 0x1E7E PUSH1 0x2 DUP9 DUP7 DUP5 PUSH2 0x1659 JUMP JUMPDEST SWAP6 POP POP JUMPDEST POP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1EE4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4141393020696E76616C69642062656E65666963696172790000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x40 MLOAD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1F2D 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 0x1F32 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xD53 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x41413931206661696C65642073656E6420746F2062656E656669636961727900 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x120 DUP3 ADD MLOAD PUSH0 SWAP2 SWAP1 DUP1 DUP3 SUB PUSH2 0x1FA0 JUMPI POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1FAC DUP3 BASEFEE DUP4 ADD PUSH2 0x2653 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP1 MLOAD PUSH1 0x20 DUP1 DUP5 ADD MLOAD SWAP3 DUP2 ADD MLOAD PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP3 SWAP2 PUSH32 0x67B4FA9642F42120BF031F3051D1824B0FE25627945B27B8A6A65D5761D5482E SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST DUP4 MLOAD PUSH1 0xE0 DUP2 ADD MLOAD DUP2 MLOAD PUSH1 0x20 DUP1 DUP9 ADD MLOAD SWAP4 ADD MLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND SWAP5 SWAP3 SWAP1 SWAP4 AND SWAP3 PUSH32 0x49628FD1471006C1482DA88028E9CE4DBB080B815C9B0344D39E5A8E6EC1419F SWAP2 PUSH2 0x2070 SWAP2 DUP10 SWAP1 DUP10 SWAP1 DUP10 SWAP1 SWAP4 DUP5 MSTORE SWAP2 ISZERO ISZERO PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 CALLDATALOAD PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH0 PUSH2 0x209D PUSH2 0x2098 PUSH1 0x40 DUP8 ADD DUP8 PUSH2 0x315D JUMP JUMPDEST PUSH2 0x266A JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x20B0 PUSH2 0x2098 PUSH1 0x60 DUP9 ADD DUP9 PUSH2 0x315D JUMP JUMPDEST SWAP1 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH1 0xA0 DUP8 ADD CALLDATALOAD PUSH1 0xC0 DUP9 ADD CALLDATALOAD PUSH0 PUSH2 0x20D2 PUSH2 0x2098 PUSH1 0xE0 DUP13 ADD DUP13 PUSH2 0x315D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP11 SWAP1 SWAP11 AND PUSH1 0x20 DUP12 ADD MSTORE DUP10 DUP2 ADD SWAP9 SWAP1 SWAP9 MSTORE PUSH1 0x60 DUP10 ADD SWAP7 SWAP1 SWAP7 MSTORE POP PUSH1 0x80 DUP8 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0xA0 DUP7 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0xC0 DUP6 ADD MSTORE PUSH1 0xE0 DUP5 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH2 0x120 SWAP1 SWAP3 ADD SWAP1 MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x36C1 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x2 SUB PUSH2 0x2162 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3EE5AEB5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x2171 PUSH1 0x20 DUP4 ADD DUP4 PUSH2 0x2E4D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 DUP3 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD DUP3 DUP2 AND PUSH1 0x60 DUP6 ADD MSTORE DUP2 SHR PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0xA0 DUP5 ADD CALLDATALOAD PUSH1 0xC0 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 ADD CALLDATALOAD SWAP2 DUP3 AND PUSH2 0x100 DUP5 ADD MSTORE SHR PUSH2 0x120 DUP3 ADD MSTORE CALLDATASIZE PUSH0 PUSH2 0x21D3 PUSH1 0xE0 DUP6 ADD DUP6 PUSH2 0x315D JUMP JUMPDEST SWAP1 SWAP3 POP SWAP1 POP DUP1 ISZERO PUSH2 0x2256 JUMPI PUSH1 0x34 DUP2 LT ISZERO PUSH2 0x222F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4141393320696E76616C6964207061796D6173746572416E6444617461000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x5D4 JUMP JUMPDEST PUSH2 0x2239 DUP3 DUP3 PUSH2 0x267C JUMP JUMPDEST PUSH1 0xA0 DUP7 ADD MSTORE PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xE0 DUP5 ADD MSTORE PUSH2 0xB90 JUMP JUMPDEST PUSH0 PUSH1 0xE0 DUP5 ADD DUP2 SWAP1 MSTORE PUSH1 0x80 DUP5 ADD DUP2 SWAP1 MSTORE PUSH1 0xA0 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST DUP3 MLOAD DUP1 MLOAD PUSH0 SWAP2 SWAP1 PUSH2 0x228E DUP9 DUP8 PUSH2 0x2289 PUSH1 0x40 DUP12 ADD DUP12 PUSH2 0x315D JUMP JUMPDEST PUSH2 0x26E3 JUMP JUMPDEST PUSH1 0xE0 DUP3 ADD MLOAD PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x22CF JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP8 DUP2 GT PUSH2 0x22C9 JUMPI DUP1 DUP9 SUB PUSH2 0x22CB JUMP JUMPDEST PUSH0 JUMPDEST SWAP2 POP POP JUMPDEST PUSH1 0x20 DUP9 ADD MLOAD PUSH1 0x40 MLOAD PUSH4 0x6608BDF PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP2 PUSH4 0x19822F7C SWAP2 DUP10 SWAP2 PUSH2 0x2305 SWAP2 DUP15 SWAP2 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x34EB JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP8 CALL SWAP4 POP POP POP POP DUP1 ISZERO PUSH2 0x2340 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x233D SWAP2 DUP2 ADD SWAP1 PUSH2 0x350F JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x236B JUMPI DUP10 PUSH2 0x2350 PUSH2 0x800 PUSH2 0x162E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x65C8FD4D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP3 SWAP2 SWAP1 PUSH2 0x3526 JUMP JUMPDEST SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x23F4 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP1 DUP10 GT ISZERO PUSH2 0x23EE JUMPI DUP12 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x17 SWAP1 DUP3 ADD MSTORE PUSH32 0x41413231206469646E2774207061792070726566756E64000000000000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP9 SWAP1 SUB SWAP1 SSTORE JUMPDEST POP POP POP POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP5 DUP3 SHR DUP1 DUP6 MSTORE SWAP3 MSTORE DUP3 KECCAK256 DUP1 SLOAD DUP5 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND SWAP2 SWAP1 DUP6 PUSH2 0x243F DUP4 PUSH2 0x3009 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP EQ SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 GAS DUP6 MLOAD PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD SWAP4 SWAP5 POP SWAP2 SWAP3 SWAP1 SWAP2 SWAP1 DUP8 DUP2 LT ISZERO PUSH2 0x24D4 JUMPI DUP11 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1E SWAP1 DUP3 ADD MSTORE PUSH32 0x41413331207061796D6173746572206465706F73697420746F6F206C6F770000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP8 DUP2 SUB DUP3 PUSH0 ADD DUP2 SWAP1 SSTORE POP PUSH0 DUP5 PUSH1 0x80 ADD MLOAD SWAP1 POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52B7512C DUP3 DUP14 DUP14 PUSH1 0x20 ADD MLOAD DUP14 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x251B SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x34EB JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP8 CALL SWAP4 POP POP POP POP DUP1 ISZERO PUSH2 0x2559 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x2556 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x3562 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2584 JUMPI DUP12 PUSH2 0x2569 PUSH2 0x800 PUSH2 0x162E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x65C8FD4D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP3 SWAP2 SWAP1 PUSH2 0x35DA JUMP JUMPDEST SWAP1 SWAP9 POP SWAP7 POP DUP1 GAS DUP8 SUB GT ISZERO PUSH2 0x25F5 JUMPI DUP12 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x27 SWAP1 DUP3 ADD MSTORE PUSH32 0x41413336206F766572207061796D6173746572566572696669636174696F6E47 PUSH1 0x60 DUP3 ADD MSTORE PUSH7 0x185CD31A5B5A5D PUSH1 0xCA SHL PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP POP SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP3 PUSH0 SUB PUSH2 0x2617 JUMPI POP PUSH0 SWAP3 DUP4 SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2621 DUP5 PUSH2 0x299D JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x40 ADD MLOAD PUSH6 0xFFFFFFFFFFFF AND TIMESTAMP GT DUP1 PUSH2 0x2648 JUMPI POP DUP1 PUSH1 0x20 ADD MLOAD PUSH6 0xFFFFFFFFFFFF AND TIMESTAMP LT JUMPDEST SWAP1 MLOAD SWAP5 SWAP1 SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 DUP4 LT PUSH2 0x2661 JUMPI DUP2 PUSH2 0x2663 JUMP JUMPDEST DUP3 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP3 DUP1 DUP6 DUP4 CALLDATACOPY SWAP1 KECCAK256 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0x268C PUSH1 0x14 DUP3 DUP7 DUP9 PUSH2 0x3616 JUMP JUMPDEST PUSH2 0x2695 SWAP2 PUSH2 0x363D JUMP JUMPDEST PUSH1 0x60 SHR PUSH2 0x26A6 PUSH1 0x24 PUSH1 0x14 DUP8 DUP10 PUSH2 0x3616 JUMP JUMPDEST PUSH2 0x26AF SWAP2 PUSH2 0x368A JUMP JUMPDEST PUSH1 0x80 SHR PUSH2 0x26C0 PUSH1 0x34 PUSH1 0x24 DUP9 DUP11 PUSH2 0x3616 JUMP JUMPDEST PUSH2 0x26C9 SWAP2 PUSH2 0x368A JUMP JUMPDEST SWAP2 SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP3 POP PUSH1 0x80 SHR SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xB90 JUMPI DUP3 MLOAD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND EXTCODESIZE ISZERO PUSH2 0x274E JUMPI DUP5 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1F SWAP1 DUP3 ADD MSTORE PUSH32 0x414131302073656E64657220616C726561647920636F6E737472756374656400 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x570E1A36 DUP7 PUSH0 ADD MLOAD PUSH1 0x40 ADD MLOAD DUP7 DUP7 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x27A5 SWAP3 SWAP2 SWAP1 PUSH2 0x30B8 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP8 CALL ISZERO DUP1 ISZERO PUSH2 0x27C1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP 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 0x27E6 SWAP2 SWAP1 PUSH2 0x30CB JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x2848 JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x1B SWAP1 DUP3 ADD MSTORE PUSH32 0x4141313320696E6974436F6465206661696C6564206F72204F4F470000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x28B2 JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP1 DUP3 ADD MSTORE PUSH32 0x4141313420696E6974436F6465206D7573742072657475726E2073656E646572 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x2914 JUMPI DUP6 PUSH1 0x40 MLOAD PUSH4 0x1101335B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D4 SWAP2 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP1 DUP4 ADD DUP3 SWAP1 MSTORE SWAP1 DUP3 ADD MSTORE PUSH32 0x4141313520696E6974436F6465206D757374206372656174652073656E646572 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x2922 PUSH1 0x14 DUP3 DUP7 DUP9 PUSH2 0x3616 JUMP JUMPDEST PUSH2 0x292B SWAP2 PUSH2 0x363D JUMP JUMPDEST PUSH1 0x60 SHR SWAP1 POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x20 ADD MLOAD PUSH32 0xD51A9C61267AA6196961883ECF5FF2DA6619C37DAC0FA92122513FB32C032D2D DUP4 DUP10 PUSH0 ADD MLOAD PUSH1 0xE0 ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0x298C SWAP3 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP2 PUSH1 0xA0 DUP2 SWAP1 SHR PUSH6 0xFFFFFFFFFFFF DUP2 AND PUSH0 SUB PUSH2 0x29D7 JUMPI POP PUSH6 0xFFFFFFFFFFFF JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0xD0 SWAP5 SWAP1 SWAP5 SHR PUSH1 0x20 DUP4 ADD MSTORE PUSH6 0xFFFFFFFFFFFF AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x2A75 PUSH1 0x40 MLOAD DUP1 PUSH2 0x140 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2AC9 JUMPI PUSH2 0x2AC9 PUSH2 0x2A93 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x140 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2AC9 JUMPI PUSH2 0x2AC9 PUSH2 0x2A93 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x2B1A JUMPI PUSH2 0x2B1A PUSH2 0x2A93 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x2B3A JUMPI PUSH2 0x2B3A PUSH2 0x2A93 JUMP JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2B5C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH2 0x2B6A DUP2 PUSH2 0x2B48 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 DUP4 SUB PUSH2 0x1C0 DUP2 SLT ISZERO PUSH2 0x2B81 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2B89 PUSH2 0x2AA7 JUMP JUMPDEST SWAP2 POP PUSH2 0x140 DUP2 SLT ISZERO PUSH2 0x2B99 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2BA2 PUSH2 0x2ACF JUMP JUMPDEST PUSH2 0x2BAB DUP4 PUSH2 0x2B5F JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP4 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x2BF5 PUSH1 0xE0 DUP5 ADD PUSH2 0x2B5F JUMP JUMPDEST PUSH1 0xE0 DUP3 ADD MSTORE PUSH2 0x100 DUP4 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE DUP2 MSTORE PUSH2 0x140 DUP3 ADD CALLDATALOAD PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x160 DUP3 ADD CALLDATALOAD PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x180 DUP3 ADD CALLDATALOAD PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x1A0 SWAP1 SWAP2 ADD CALLDATALOAD PUSH1 0x80 DUP3 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2C54 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2C6A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x2C81 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x200 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2C9C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2CB1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x2CC1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x2CD4 PUSH2 0x2CCF DUP3 PUSH2 0x2B22 JUMP JUMPDEST PUSH2 0x2AF2 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP9 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x2CE8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP7 POP POP POP POP PUSH2 0x2D0D DUP7 PUSH1 0x20 DUP8 ADD PUSH2 0x2B6F JUMP JUMPDEST SWAP3 POP PUSH2 0x1E0 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2D28 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2D34 DUP8 DUP3 DUP9 ADD PUSH2 0x2C44 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D50 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x2663 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2D77 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x2663 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xC0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2B6A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2DB0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2663 DUP3 PUSH2 0x2D8A JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2DCA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2DD5 DUP2 PUSH2 0x2B48 JUMP JUMPDEST SWAP2 POP PUSH2 0x2DE3 PUSH1 0x20 DUP5 ADD PUSH2 0x2D8A JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2DFD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2E08 DUP2 PUSH2 0x2B48 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2E26 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2E3B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 ADD PUSH2 0x120 DUP2 DUP6 SUB SLT ISZERO PUSH2 0x2663 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2E5D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2663 DUP2 PUSH2 0x2B48 JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2E78 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2E8E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x2C81 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2EBA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2ECF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2EDB DUP7 DUP3 DUP8 ADD PUSH2 0x2E68 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x2EEF DUP2 PUSH2 0x2B48 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2F0C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x2F17 DUP2 PUSH2 0x2B48 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2F31 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2F3D DUP7 DUP3 DUP8 ADD PUSH2 0x2C44 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2F5B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2F70 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2F7C DUP6 DUP3 DUP7 ADD PUSH2 0x2C44 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT 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 DUP3 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0x1FAC PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2F9C JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x783 JUMPI PUSH2 0x783 PUSH2 0x2FE2 JUMP JUMPDEST PUSH0 PUSH1 0x1 DUP3 ADD PUSH2 0x301A JUMPI PUSH2 0x301A PUSH2 0x2FE2 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x783 JUMPI PUSH2 0x783 PUSH2 0x2FE2 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 CALLDATALOAD PUSH2 0x11E NOT DUP4 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x305D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 DUP4 DUP3 CALLDATACOPY PUSH0 SWAP2 ADD SWAP1 DUP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 ISZERO ISZERO DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0x1FAC PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2F9C 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 0x1FAC PUSH1 0x20 DUP4 ADD DUP5 DUP7 PUSH2 0x3090 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x30DB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x2663 DUP2 PUSH2 0x2B48 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x783 JUMPI PUSH2 0x783 PUSH2 0x2FE2 JUMP JUMPDEST PUSH0 DUP3 CALLDATALOAD PUSH1 0x5E NOT DUP4 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x305D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x312D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x3146 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP PUSH1 0x5 DUP2 SWAP1 SHL CALLDATASIZE SUB DUP3 SGT ISZERO PUSH2 0x2C81 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x3172 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x318B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x2C81 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x31B4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x20 DUP2 ADD SWAP3 POP CALLDATALOAD SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x31D2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATASIZE SUB DUP3 SGT ISZERO PUSH2 0x2C81 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x31FA DUP3 PUSH2 0x31ED DUP4 PUSH2 0x2B5F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 DUP2 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH0 PUSH2 0x3212 PUSH1 0x40 DUP4 ADD DUP4 PUSH2 0x319F JUMP JUMPDEST PUSH2 0x120 PUSH1 0x40 DUP7 ADD MSTORE PUSH2 0x3229 PUSH2 0x120 DUP7 ADD DUP3 DUP5 PUSH2 0x3090 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3239 PUSH1 0x60 DUP5 ADD DUP5 PUSH2 0x319F JUMP JUMPDEST DUP6 DUP4 SUB PUSH1 0x60 DUP8 ADD MSTORE PUSH2 0x324C DUP4 DUP3 DUP5 PUSH2 0x3090 JUMP JUMPDEST PUSH1 0x80 DUP7 DUP2 ADD CALLDATALOAD SWAP1 DUP9 ADD MSTORE PUSH1 0xA0 DUP1 DUP8 ADD CALLDATALOAD SWAP1 DUP9 ADD MSTORE PUSH1 0xC0 DUP1 DUP8 ADD CALLDATALOAD SWAP1 DUP9 ADD MSTORE SWAP3 POP PUSH2 0x327C SWAP2 POP POP PUSH1 0xE0 DUP5 ADD DUP5 PUSH2 0x319F JUMP JUMPDEST DUP6 DUP4 SUB PUSH1 0xE0 DUP8 ADD MSTORE PUSH2 0x328F DUP4 DUP3 DUP5 PUSH2 0x3090 JUMP JUMPDEST SWAP3 POP POP POP PUSH2 0x32A1 PUSH2 0x100 DUP5 ADD DUP5 PUSH2 0x319F JUMP JUMPDEST DUP6 DUP4 SUB PUSH2 0x100 DUP8 ADD MSTORE PUSH2 0x32B5 DUP4 DUP3 DUP5 PUSH2 0x3090 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 DUP3 MSTORE DUP2 ADD DUP5 SWAP1 MSTORE PUSH0 PUSH1 0x60 PUSH1 0x5 DUP7 SWAP1 SHL DUP4 ADD DUP2 ADD SWAP1 DUP4 ADD DUP8 DUP4 PUSH2 0x11E NOT CALLDATASIZE DUP4 SWAP1 SUB ADD JUMPDEST DUP10 DUP3 LT ISZERO PUSH2 0x3328 JUMPI DUP7 DUP6 SUB PUSH1 0x5F NOT ADD DUP5 MSTORE DUP3 CALLDATALOAD DUP2 DUP2 SLT PUSH2 0x3302 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x330E DUP7 DUP14 DUP4 ADD PUSH2 0x31E0 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 DUP4 ADD SWAP3 POP PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH2 0x32E4 JUMP JUMPDEST POP POP POP POP DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x333F DUP2 DUP6 DUP8 PUSH2 0x3090 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x3 DUP7 LT PUSH2 0x337B JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP6 DUP3 MSTORE PUSH1 0x80 PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x3392 PUSH1 0x80 DUP4 ADD DUP7 PUSH2 0x2F9C JUMP JUMPDEST PUSH1 0x40 DUP4 ADD SWAP5 SWAP1 SWAP5 MSTORE POP PUSH1 0x60 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x2663 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2F9C JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH0 PUSH2 0x33C9 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x31E0 JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0x20 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP5 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP5 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP5 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x343D PUSH1 0xE0 DUP6 ADD DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x100 DUP2 DUP2 ADD MLOAD SWAP1 DUP5 ADD MSTORE PUSH2 0x120 SWAP1 DUP2 ADD MLOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH2 0x140 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH2 0x160 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH2 0x180 DUP4 ADD MSTORE PUSH1 0x80 ADD MLOAD PUSH2 0x1A0 SWAP1 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH2 0x200 DUP2 MSTORE PUSH0 PUSH2 0x3496 PUSH2 0x200 DUP4 ADD DUP7 PUSH2 0x2F9C JUMP JUMPDEST PUSH2 0x34A3 PUSH1 0x20 DUP5 ADD DUP7 PUSH2 0x33D8 JUMP JUMPDEST DUP3 DUP2 SUB PUSH2 0x1E0 DUP5 ADD MSTORE PUSH2 0x32B5 DUP2 DUP6 PUSH2 0x2F9C JUMP JUMPDEST PUSH2 0x200 DUP2 MSTORE PUSH0 PUSH2 0x34CB PUSH2 0x200 DUP4 ADD DUP7 DUP9 PUSH2 0x3090 JUMP JUMPDEST PUSH2 0x34D8 PUSH1 0x20 DUP5 ADD DUP7 PUSH2 0x33D8 JUMP JUMPDEST DUP3 DUP2 SUB PUSH2 0x1E0 DUP5 ADD MSTORE PUSH2 0x333F DUP2 DUP6 PUSH2 0x2F9C JUMP JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH0 PUSH2 0x34FD PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x31E0 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP5 SWAP1 SWAP5 MSTORE POP PUSH1 0x40 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x351F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x60 DUP3 ADD MSTORE PUSH13 0x10504C8CC81C995D995C9D1959 PUSH1 0x9A SHL PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP3 ADD MSTORE PUSH0 PUSH2 0x1FAC PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x2F9C JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3573 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3588 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x3598 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x35A6 PUSH2 0x2CCF DUP3 PUSH2 0x2B22 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP7 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x35BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 PUSH1 0x20 SWAP3 DUP3 ADD DUP4 ADD MSTORE SWAP5 ADD MLOAD SWAP4 SWAP6 SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x60 DUP3 ADD MSTORE PUSH13 0x10504CCCC81C995D995C9D1959 PUSH1 0x9A SHL PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 PUSH1 0x40 DUP3 ADD MSTORE PUSH0 PUSH2 0x1FAC PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x2F9C JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x3624 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x3630 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 0x3683 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 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x10 DUP5 LT ISZERO PUSH2 0x3683 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB NOT PUSH1 0x10 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP INVALID SWAP12 PUSH24 0x9B17422D0DF92223018B32B4D1FA46E071723D6817E2486D STOP EXTCODESIZE EOFCREATE 0xC5 PUSH0 STOP LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP9 XOR 0xEB 0xC 0xBF 0xB3 SWAP6 BLOBBASEFEE GASLIMIT PUSH24 0x92FC92A2C775B32E3CD87A4ADF133C403EB3AA9A4BCD6473 PUSH16 0x6C634300081E00330000000000000000 ","sourceMap":"789:30345:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1316:21:5;1326:10;1316:9;:21::i;:::-;789:30345:1;;;;;11538:1682;;;;;;;;;;-1:-1:-1;11538:1682:1;;;;;:::i;:::-;;:::i;:::-;;;4947:25:125;;;4935:2;4920:18;11538:1682:1;;;;;;;;1633:584;;;;;;;;;;-1:-1:-1;1633:584:1;;;;;:::i;:::-;;:::i;:::-;;;5439:14:125;;5432:22;5414:41;;5402:2;5387:18;1633:584:1;5274:187:125;2325:706:5;;;;;;:::i;:::-;;:::i;830:108:3:-;;;;;;;;;;-1:-1:-1;830:108:3;;;;;:::i;:::-;;:::i;279:74::-;;;;;;;;;;-1:-1:-1;279:74:3;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;4651:496:5;;;;;;;;;;-1:-1:-1;4651:496:5;;;;;:::i;:::-;;:::i;13258:206:1:-;;;;;;;;;;-1:-1:-1;13258:206:1;;;;;:::i;:::-;;:::i;394:175:3:-;;;;;;;;;;-1:-1:-1;394:175:3;;;;;:::i;:::-;-1:-1:-1;;;;;507:27:3;;475:13;507:27;;;:19;:27;;;;559:2;507:27;;;-1:-1:-1;;;;;543:12:3;;507:32;;;;;;;;;;543:18;;;;-1:-1:-1;;543:18:3;507:55;394:175;;;;;595:142:5;;;;;;;;;;-1:-1:-1;595:142:5;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;713:17:5;:8;:17;;;;;;;;;;;;706:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;706:24:5;;;;;;;;-1:-1:-1;;;706:24:5;;;;;;;;-1:-1:-1;;;706:24:5;;;;;;;;;595:142;;;;;;;7810:4:125;7852:3;7841:9;7837:19;7829:27;;7889:6;7883:13;7872:9;7865:32;7967:4;7959:6;7955:17;7949:24;7942:32;7935:40;7928:4;7917:9;7913:20;7906:70;-1:-1:-1;;;;;8036:4:125;8028:6;8024:17;8018:24;8014:61;8007:4;7996:9;7992:20;7985:91;8144:10;8136:4;8128:6;8124:17;8118:24;8114:41;8107:4;8096:9;8092:20;8085:71;8224:14;8216:4;8208:6;8204:17;8198:24;8194:45;8187:4;8176:9;8172:20;8165:75;7660:586;;;;;1158:115:5;;;;;;;;;;-1:-1:-1;1158:115:5;;;;;:::i;:::-;-1:-1:-1;;;;;1241:17:5;1215:7;1241:17;;;;;;;;;;:25;;1158:115;6777:1015:1;;;;;;;;;;-1:-1:-1;6777:1015:1;;;;;:::i;:::-;;:::i;30934:198::-;;;;;;;;;;-1:-1:-1;30934:198:1;;;;;:::i;:::-;;:::i;16782:174::-;;;;;;;;;;-1:-1:-1;16782:174:1;;;;;:::i;:::-;;:::i;1935:179:5:-;;;;;;:::i;:::-;;:::i;3170:408::-;;;;;;;;;;;;;:::i;3786:684::-;;;;;;;;;;-1:-1:-1;3786:684:5;;;;;:::i;:::-;;:::i;7830:2610:1:-;;;;;;;;;;-1:-1:-1;7830:2610:1;;;;;:::i;:::-;;:::i;507:47:5:-;;;;;;;;;;-1:-1:-1;507:47:5;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;507:47:5;;-1:-1:-1;;;507:47:5;;;;;-1:-1:-1;;;507:47:5;;;;;;;;;;11428:25:125;;;11496:14;;11489:22;11484:2;11469:18;;11462:50;-1:-1:-1;;;;;11548:43:125;;;11528:18;;;11521:71;;;;11640:10;11628:23;;;11623:2;11608:18;;11601:51;11701:14;11689:27;11683:3;11668:19;;11661:56;11415:3;11400:19;507:47:5;11179:544:125;1935:179:5;2004:18;2025:37;2043:7;2052:9;2025:17;:37::i;:::-;2004:58;;2087:7;-1:-1:-1;;;;;2077:30:5;;2096:10;2077:30;;;;4947:25:125;;4935:2;4920:18;;4801:177;2077:30:5;;;;;;;;1994:120;1935:179;:::o;11538:1682:1:-;11682:21;11715:14;11732:9;11715:26;-1:-1:-1;11759:10:1;11781:4;11759:27;11751:63;;;;-1:-1:-1;;;11751:63:1;;11930:2:125;11751:63:1;;;11912:21:125;11969:2;11949:18;;;11942:30;12008:25;11988:18;;;11981:53;12051:18;;11751:63:1;;;;;;;;;11854:14;;11902:20;;;;12127:31;;;;12096:62;;1297:5;12096:99;12075:2;12058:9;12070:2;12058:14;:19;;;;;:::i;:::-;;:137;12037:331;;;-1:-1:-1;;;12282:1:1;12275:27;12333:2;12330:1;12323:13;12037:331;12464:15;;12388:26;;12464:19;12460:584;;12499:12;12514:52;12524:7;:14;;;12540:1;12543:8;12553:12;12514:9;:52::i;:::-;12499:67;;12585:7;12580:454;;12612:19;12634:41;1543:4;12634:18;:41::i;:::-;12697:13;;12612:63;;-1:-1:-1;12697:17:1;12693:270;;12837:7;:14;;;-1:-1:-1;;;;;12743:201:1;12794:6;:17;;;12743:201;12877:7;:13;;;12916:6;12743:201;;;;;;;:::i;:::-;;;;;;;;12693:270;12987:32;12980:39;;12594:440;12580:454;12485:559;12460:584;13078:17;13119:6;:15;;;13107:9;13098:6;:18;:36;13078:56;;13155:48;13170:4;13176:6;13184:7;;13155:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13193:9:1;;-1:-1:-1;13155:14:1;;-1:-1:-1;;13155:48:1:i;:::-;13148:55;11538:1682;-1:-1:-1;;;;;;;;;;11538:1682:1:o;1633:584::-;1718:4;-1:-1:-1;;;;;;1860:114:1;;-1:-1:-1;;;1860:114:1;;:174;;-1:-1:-1;;;;;;;1990:44:1;;-1:-1:-1;;;1990:44:1;1860:174;:236;;;-1:-1:-1;;;;;;;2050:46:1;;-1:-1:-1;;;2050:46:1;1860:236;:298;;;-1:-1:-1;;;;;;;2112:46:1;;-1:-1:-1;;;2112:46:1;1860:298;:350;;;-1:-1:-1;;;;;;;;;;829:40:102;;;2174:36:1;1853:357;1633:584;-1:-1:-1;;1633:584:1:o;2325:706:5:-;2428:10;2392:24;2419:20;;;;;;;;;;2457:19;;;2449:58;;;;-1:-1:-1;;;2449:58:5;;13000:2:125;2449:58:5;;;12982:21:125;13039:2;13019:18;;;13012:30;13078:28;13058:18;;;13051:56;13124:18;;2449:58:5;12798:350:125;2449:58:5;2557:20;;;;;-1:-1:-1;;;2557:20:5;;;;;2538:39;;;;;2517:114;;;;-1:-1:-1;;;2517:114:5;;13355:2:125;2517:114:5;;;13337:21:125;13394:2;13374:18;;;13367:30;13433;13413:18;;;13406:58;13481:18;;2517:114:5;13153:352:125;2517:114:5;2657:10;;;;2641:13;;2657:22;;2670:9;;2657:10;;;-1:-1:-1;;;;;2657:10:5;:22;:::i;:::-;2641:38;;2705:1;2697:5;:9;2689:40;;;;-1:-1:-1;;;2689:40:5;;13974:2:125;2689:40:5;;;13956:21:125;14013:2;13993:18;;;13986:30;-1:-1:-1;;;14032:18:125;;;14025:48;14090:18;;2689:40:5;13772:342:125;2689:40:5;-1:-1:-1;;;;;2747:26:5;;;2739:53;;;;-1:-1:-1;;;2739:53:5;;14321:2:125;2739:53:5;;;14303:21:125;14360:2;14340:18;;;14333:30;-1:-1:-1;;;14379:18:125;;;14372:44;14433:18;;2739:53:5;14119:338:125;2739:53:5;2825:137;;;;;;;;2850:12;;2825:137;;2876:4;2825:137;;;;;;;-1:-1:-1;;;;;2825:137:5;;;;;;;;;;;;;;;;;;;-1:-1:-1;2825:137:5;;;;;;2811:10;2802:20;;;;;;;;;;:160;;;;;;;;;;;;;;;;;;2825:137;2802:160;-1:-1:-1;;;2802:160:5;-1:-1:-1;;;;2802:160:5;;;;-1:-1:-1;;;2802:160:5;;;;;-1:-1:-1;;;;2802:160:5;;;;;;-1:-1:-1;;2802:160:5;;;;;;;-1:-1:-1;;2802:160:5;;;;;;;;;;;;;;;;;;;;;;2977:47;;14635:25:125;;;14676:18;;;14669:51;;;;2811:10:5;2977:47;;14608:18:125;2977:47:5;;;;;;;2382:649;;2325:706;:::o;830:108:3:-;913:10;893:31;;;;:19;:31;;;;;;;;-1:-1:-1;;;;;893:36:3;;;;;;;;;:38;;;;;;:::i;:::-;;;;;;830:108;:::o;4651:496:5:-;4805:10;4769:24;4796:20;;;;;;;;;;4852:12;;4834:30;;;4826:68;;;;-1:-1:-1;;;4826:68:5;;15073:2:125;4826:68:5;;;15055:21:125;15112:2;15092:18;;;15085:30;15151:27;15131:18;;;15124:55;15196:18;;4826:68:5;14871:349:125;4826:68:5;4919:12;;:29;;4934:14;;4919:29;:::i;:::-;4904:44;;4963:54;;;-1:-1:-1;;;;;15558:32:125;;15540:51;;15622:2;15607:18;;15600:34;;;4973:10:5;;4963:54;;15513:18:125;4963:54:5;;;;;;;5028:12;5045:15;-1:-1:-1;;;;;5045:20:5;5073:14;5045:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5027:65;;;5110:7;5102:38;;;;-1:-1:-1;;;5102:38:5;;16057:2:125;5102:38:5;;;16039:21:125;16096:2;16076:18;;;16069:30;-1:-1:-1;;;16115:18:125;;;16108:48;16173:18;;5102:38:5;15855:342:125;5102:38:5;4759:388;;4651:496;;:::o;13258:206:1:-;13353:7;13412:13;:6;:11;:13::i;:::-;13401:55;;;;;;16513:25:125;;;;13435:4:1;16554:18:125;;;16547:60;13442:13:1;16623:18:125;;;16616:34;16486:18;;13401:55:1;;;;;;;;;;;;13391:66;;;;;;13372:85;;13258:206;;;:::o;6777:1015::-;3023:21:96;:19;:21::i;:::-;6930:3:1;6913:14:::1;6930:3:::0;-1:-1:-1;;;;;6980:24:1;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;6950:54:1;-1:-1:-1;7044:9:1::1;7039:481;7063:6;7059:1;:10;7039:481;;;7094:24;7121:7;7129:1;7121:10;;;;;;;;:::i;:::-;;;;;;;7094:37;;7171:22;7215:24;7260:38;7280:1;7283:3;;7287:1;7283:6;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;7291;7260:19;:38::i;:::-;7149:149;;;;7316:189;7380:1;7403:14;7439:16;7485:1;7316:42;:189::i;:::-;-1:-1:-1::0;;;7071:3:1::1;;7039:481;;;-1:-1:-1::0;7574:17:1::1;::::0;7534::::1;::::0;7574::::1;::::0;7534;;7574::::1;7611:9;7606:120;7630:6;7626:1;:10;7606:120;;;7674:37;7689:1;7692:3;;7696:1;7692:6;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;7700:7;7708:1;7700:10;;;;;;;;:::i;:::-;;;;;;;7674:14;:37::i;:::-;7661:50:::0;;::::1;::::0;7638:3:::1;;7606:120;;;;7740:35;7752:11;7765:9;7740:11;:35::i;:::-;7015:771;6903:889;;3065:20:96::0;2365:1;-1:-1:-1;;;;;;;;;;;3972:62:96;3749:292;3065:20;6777:1015:1;;;:::o;30934:198::-;31018:12;31032:16;31052:6;-1:-1:-1;;;;;31052:19:1;31072:4;;31052:25;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31017:60;;;;31112:7;31121:3;31094:31;;-1:-1:-1;;;31094:31:1;;;;;;;;;:::i;16782:174::-;16867:38;;-1:-1:-1;;;16867:38:1;;16850:14;;-1:-1:-1;;;;;1100:14:1;16867:28;;;;:38;;16896:8;;;;16867:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16922:27;;-1:-1:-1;;;16922:27:1;;-1:-1:-1;;;;;18654:32:125;;16922:27:1;;;18636:51:125;16850:55:1;;-1:-1:-1;18609:18:125;;16922:27:1;18490:203:125;3170:408:5;3248:10;3212:24;3239:20;;;;;;;;;;3277;;;;3239;;-1:-1:-1;;;3277:20:5;;;;;:25;;3269:48;;;;-1:-1:-1;;;3269:48:5;;18900:2:125;3269:48:5;;;18882:21:125;18939:2;18919:18;;;18912:30;-1:-1:-1;;;18958:18:125;;;18951:40;19008:18;;3269:48:5;18698:334:125;3269:48:5;3335:11;;;;;;3327:41;;;;-1:-1:-1;;;3327:41:5;;19239:2:125;3327:41:5;;;19221:21:125;19278:2;19258:18;;;19251:30;-1:-1:-1;;;19297:18:125;;;19290:47;19354:18;;3327:41:5;19037:341:125;3327:41:5;3426:20;;;;3378:19;;3400:46;;-1:-1:-1;;;3426:20:5;;;;3407:15;3400:46;:::i;:::-;3456:17;;;:32;;-1:-1:-1;;;;;;3498:19:5;-1:-1:-1;;;3456:32:5;;;;;;-1:-1:-1;;3498:19:5;;;;;;;;3532:39;;19712:46:125;;;3456:32:5;;-1:-1:-1;3546:10:5;;3532:39;;19700:2:125;19685:18;3532:39:5;19567:197:125;3786:684:5;3897:10;3861:24;3888:20;;;;;;;;;;3934:10;;;;;;;-1:-1:-1;;;;;3934:10:5;;3954:42;;;;-1:-1:-1;;;3954:42:5;;19971:2:125;3954:42:5;;;19953:21:125;20010:2;19990:18;;;19983:30;-1:-1:-1;;;20029:18:125;;;20022:50;20089:18;;3954:42:5;19769:344:125;3954:42:5;4014:17;;;;-1:-1:-1;;;4014:17:5;;;;4006:63;;;;-1:-1:-1;;;4006:63:5;;20320:2:125;4006:63:5;;;20302:21:125;20359:2;20339:18;;;20332:30;20398:31;20378:18;;;20371:59;20447:18;;4006:63:5;20118:353:125;4006:63:5;4100:17;;;;4121:15;-1:-1:-1;;;4100:17:5;;;;;:36;;4079:110;;;;-1:-1:-1;;;4079:110:5;;20678:2:125;4079:110:5;;;20660:21:125;20717:2;20697:18;;;20690:30;20756:29;20736:18;;;20729:57;20803:18;;4079:110:5;20476:351:125;4079:110:5;4199:20;;;:24;;-1:-1:-1;;;;;;4264:14:5;;;4293:50;;;-1:-1:-1;;;;;15558:32:125;;15540:51;;15622:2;15607:18;;15600:34;;;4308:10:5;;4293:50;;15513:18:125;4293:50:5;;;;;;;4354:12;4371:15;-1:-1:-1;;;;;4371:20:5;4399:5;4371:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4353:56;;;4427:7;4419:44;;;;-1:-1:-1;;;4419:44:5;;21034:2:125;4419:44:5;;;21016:21:125;21073:2;21053:18;;;21046:30;21112:26;21092:18;;;21085:54;21156:18;;4419:44:5;20832:348:125;7830:2610:1;3023:21:96;:19;:21::i;:::-;8009:16:1;7991:15:::1;::::0;8072:767:::1;8096:7;8092:1;:11;8072:767;;;8124:33;8160:16;;8177:1;8160:19;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;8124:55:::0;-1:-1:-1;8193:34:1::1;;8230:11;8124:55:::0;;8230:11:::1;:::i;:::-;8193:48:::0;;-1:-1:-1;8193:48:1;-1:-1:-1;8255:22:1::1;8280:14;::::0;;;::::1;::::0;::::1;;:::i;:::-;8255:39:::0;-1:-1:-1;;;;;;;;8398:33:1;::::1;::::0;8373:115:::1;;;::::0;-1:-1:-1;;;8373:115:1;;22590:2:125;8373:115:1::1;::::0;::::1;22572:21:125::0;22629:2;22609:18;;;22602:30;22668:25;22648:18;;;22641:53;22711:18;;8373:115:1::1;22388:347:125::0;8373:115:1::1;-1:-1:-1::0;;;;;8507:33:1;::::1;::::0;8503:289:::1;;-1:-1:-1::0;;;;;8625:29:1;::::1;;8655:3:::0;;8660:13:::1;;::::0;::::1;:3:::0;:13:::1;:::i;:::-;8625:49;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8621:157;;8713:46;::::0;-1:-1:-1;;;8713:46:1;;-1:-1:-1;;;;;18654:32:125;;8713:46:1::1;::::0;::::1;18636:51:125::0;18609:18;;8713:46:1::1;18490:203:125::0;8621:157:1::1;8806:22;8818:3:::0;8806:22;::::1;:::i;:::-;::::0;-1:-1:-1;;8105:3:1::1;::::0;;::::1;::::0;-1:-1:-1;8072:767:1::1;::::0;-1:-1:-1;;8072:767:1::1;;;8849:27;8896:8;-1:-1:-1::0;;;;;8879:26:1::1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;8849:56:1;-1:-1:-1;8916:15:1::1;::::0;8945:831:::1;8969:7;8965:1;:11;8945:831;;;8997:33;9033:16;;9050:1;9033:19;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;8997:55:::0;-1:-1:-1;9066:34:1::1;;9103:11;8997:55:::0;;9103:11:::1;:::i;:::-;9066:48:::0;;-1:-1:-1;9066:48:1;-1:-1:-1;9128:22:1::1;9153:14;::::0;;;::::1;::::0;::::1;;:::i;:::-;9128:39:::0;-1:-1:-1;9199:3:1;9182:14:::1;9223:543;9247:6;9243:1;:10;9223:543;;;9278:24;9305:7;9313;9305:16;;;;;;;;:::i;:::-;;;;;;;9278:43;;9361:22;9405:31;9457:44;9477:7;9486:3;;9490:1;9486:6;;;;;;;:::i;9457:44::-;9339:162;;;;9519:205;9583:1;9606:14;9642:23;9695:10;9519:42;:205::i;:::-;9742:9:::0;::::1;::::0;::::1;:::i;:::-;::::0;-1:-1:-1;;9255:3:1::1;::::0;;::::1;::::0;-1:-1:-1;9223:543:1::1;::::0;-1:-1:-1;;9223:543:1::1;;-1:-1:-1::0;;8978:3:1::1;::::0;;::::1;::::0;-1:-1:-1;8945:831:1::1;::::0;-1:-1:-1;;;8945:831:1::1;;-1:-1:-1::0;9791:17:1::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;9819:17:1::1;::::0;;9871:464:::1;9895:7;9891:1;:11;9871:464;;;9923:33;9959:16;;9976:1;9959:19;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;9923:55:::0;-1:-1:-1;10032:14:1::1;::::0;;;::::1;::::0;::::1;;:::i;:::-;-1:-1:-1::0;;;;;9997:51:1::1;;;;;;;;;;;10062:34;;10099:11;:3:::0;;:11:::1;:::i;:::-;10062:48:::0;;-1:-1:-1;10062:48:1;-1:-1:-1;10062:48:1;10124:14:::1;10166:159;10190:6;10186:1;:10;10166:159;;;10234:49;10249:7;10258:3;;10262:1;10258:6;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;10266:7;10274;10266:16;;;;;;;;:::i;10234:49::-;10221:62;::::0;;::::1;:::i;:::-;::::0;-1:-1:-1;10301:9:1;::::1;::::0;::::1;:::i;:::-;::::0;-1:-1:-1;;10198:3:1::1;;10166:159;;;-1:-1:-1::0;;9904:3:1::1;::::0;;::::1;::::0;-1:-1:-1;9871:464:1::1;::::0;-1:-1:-1;;9871:464:1::1;;-1:-1:-1::0;10349:38:1::1;::::0;10384:1:::1;::::0;10349:38:::1;::::0;10384:1;;10349:38:::1;10398:35;10410:11;10423:9;10398:11;:35::i;:::-;7980:2460;;;;;3065:20:96::0;2365:1;-1:-1:-1;;;;;;;;;;;3972:62:96;3749:292;1559:259:5;-1:-1:-1;;;;;1683:17:5;;1637:7;1683:17;;;;;;;;;;1730:12;;1637:7;;1730:21;;1745:6;;1730:21;:::i;:::-;1761:24;;;;-1:-1:-1;1761:24:5;1559:259;-1:-1:-1;;;1559:259:5:o;223:279:15:-;354:12;484:1;481;474:4;468:11;461:4;455;451:15;444:5;440:2;433:5;428:58;417:69;223:279;-1:-1:-1;;;;;223:279:15:o;1107:452::-;1169:23;1254:16;1294:6;1289:3;1286:15;1283:64;;;-1:-1:-1;1327:6:15;1283:64;1377:4;1371:11;1426:4;1421:3;1417:14;1412:3;1408:24;1402:4;1395:38;1458:3;1453;1446:16;1509:3;1506:1;1499:4;1494:3;1490:14;1475:38;1540:3;1107:452;-1:-1:-1;;;1107:452:15:o;26575:2957:1:-;26749:21;26782:14;26799:9;26907:14;;26782:26;;-1:-1:-1;26842:21:1;;;26954:26;26907:14;26954:17;:26::i;:::-;27015:17;;;;26935:45;;-1:-1:-1;;;;;;27050:23:1;;27046:839;;27109:14;;;-1:-1:-1;27046:839:1;;;27178:9;27162:25;;27226:1;27209:7;:14;:18;27205:666;;;27267:20;;;;-1:-1:-1;27321:36:1;27313:4;:44;;;;;;;;:::i;:::-;;27309:544;;27452:31;;;;27389:160;;-1:-1:-1;;;27389:160:1;;-1:-1:-1;;;;;27389:28:1;;;;;:160;;27510:4;;27516:7;;27525:13;;27540:8;;27389:160;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27385:446;;27682:19;27704:41;1543:4;27704:18;:41::i;:::-;27682:63;;27797:6;27782:22;;-1:-1:-1;;;27782:22:1;;;;;;;;:::i;27385:446::-;27920:9;28075:31;;;;28052:20;;;;28163:15;;;;27911:18;;;27898:31;;;;;28052:54;;28151:27;;28316:36;;;28312:274;;;28513:3;1596:2;28396:36;;;28482:27;28481:35;28538:29;;;;;28312:274;-1:-1:-1;;28682:14:1;;;;28630:20;;;;-1:-1:-1;28714:23:1;;;28710:793;;;28769:36;28761:4;:44;;;;;;;;:::i;:::-;;28757:438;;28845:7;28829:23;;28874:25;28892:6;28874:17;:25::i;:::-;28921:63;28944:6;28952:5;28959:13;28974:9;28921:22;:63::i;:::-;28710:793;;28757:438;-1:-1:-1;;;29089:1:1;29082:35;29152:2;29149:1;29142:13;28710:793;29250:23;;;29291:40;29309:13;29250:23;29291:17;:40::i;:::-;-1:-1:-1;29349:12:1;;29364:4;:41;;;;;;;;:::i;:::-;;29349:56;;29423:65;29446:6;29454:7;29463:13;29478:9;29423:22;:65::i;:::-;29215:288;;28710:793;26818:2695;;;;;26772:2760;26575:2957;;;;;;:::o;4848:146:6:-;4936:7;4972:14;4979:6;4972;:14::i;:::-;4962:25;;;;;;4955:32;;4848:146;;;:::o;3749:292:96:-;3872:25;:23;:25::i;:::-;2407:1;-1:-1:-1;;;;;;;;;;;3972:62:96;3749:292::o;23805:2153:1:-;23981:22;24005:31;24052:14;24069:9;24118:17;;24052:26;;-1:-1:-1;24145:36:1;24165:6;24118:17;24145:19;:36::i;:::-;24214:21;24228:6;24214:13;:21::i;:::-;24191:20;;;:44;24430:28;;;;24735;;;;24700:20;;;;24654:31;;;;24602:37;;;;24567:20;;;;24491:26;;;;:61;;:96;:148;:194;:229;:272;24797:17;24781:33;;;24773:70;;;;-1:-1:-1;;;24773:70:1;;27686:2:125;24773:70:1;;;27668:21:125;27725:2;27705:18;;;27698:30;27764:26;27744:18;;;27737:54;27808:18;;24773:70:1;27484:348:125;24773:70:1;24854:23;24880:28;24900:7;15294:26;;;;15244:31;;;;15188:37;;;;15149:20;;;;15102:28;;;;15367:20;;;;;15102:67;;:123;:173;:218;15353:34;;14926:478;24880:28;24854:54;;24935:163;24975:7;24996:6;25016:9;25039:15;25068:20;24935:26;:163::i;:::-;24918:180;;25114:54;25138:7;:14;;;25154:7;:13;;;25114:23;:54::i;:::-;25109:140;;25200:7;25191:47;;-1:-1:-1;;;25191:47:1;;;;;;28049:25:125;;28110:2;28105;28090:18;;28083:30;;;28149:2;28129:18;;;28122:30;28188:28;28183:2;28168:18;;28161:56;28249:3;28234:19;;27837:422;25109:140:1;25308:20;25296:9;25287:6;:18;:41;25283:138;;;25364:7;25355:51;;-1:-1:-1;;;25355:51:1;;;;;;28476:25:125;;28537:2;28532;28517:18;;28510:30;;;28576:2;28556:18;;;28549:30;28615:32;28610:2;28595:18;;28588:60;28680:3;28665:19;;28264:426;25283:138:1;25475:17;;;;25441:20;;-1:-1:-1;;;;;25475:31:1;;25471:250;;25559:151;25605:7;25630:6;25654:9;25681:15;25559:28;:151::i;:::-;25522:188;-1:-1:-1;25522:188:1;-1:-1:-1;25471:250:1;25754:17;;;:35;;;25852:7;25803:23;;;:57;25916:25;;;;25904:9;25895:6;:18;:46;25874:9;:18;;:67;;;;;24042:1916;;;;;;23805:2153;;;;;;:::o;21476:1145::-;21693:18;21713:19;21736:56;21768:14;21736:18;:56::i;:::-;21692:100;;;;21828:10;-1:-1:-1;;;;;21806:32:1;:18;-1:-1:-1;;;;;21806:32:1;;21802:111;;21870:7;21861:41;;-1:-1:-1;;;21861:41:1;;;;;;28907:25:125;;28968:2;28963;28948:18;;28941:30;;;29007:2;28987:18;;;28980:30;-1:-1:-1;;;29041:2:125;29026:18;;29019:50;29101:3;29086:19;;28695:416;21802:111:1;21926:14;21922:96;;;21972:7;21963:44;;-1:-1:-1;;;21963:44:1;;;;;;29328:25:125;;29389:2;29384;29369:18;;29362:30;;;29428:2;29408:18;;;29401:30;29467:25;29462:2;29447:18;;29440:53;29525:3;29510:19;;29116:419;21922:96:1;22257:20;22320:65;22352:23;22320:18;:65::i;:::-;22287:98;-1:-1:-1;22287:98:1;-1:-1:-1;;;;;;22399:26:1;;;22395:105;;22457:7;22448:41;;-1:-1:-1;;;22448:41:1;;;;;;29752:25:125;;29813:2;29808;29793:18;;29786:30;;;29852:2;29832:18;;;29825:30;-1:-1:-1;;;29886:2:125;29871:18;;29864:50;29946:3;29931:19;;29540:416;22395:105:1;22513:14;22509:106;;;22559:7;22550:54;;-1:-1:-1;;;22550:54:1;;;;;;30173:25:125;;30234:2;30229;30214:18;;30207:30;;;30273:2;30253:18;;;30246:30;30312:34;30307:2;30292:18;;30285:62;-1:-1:-1;;;30378:3:125;30363:19;;30356:32;30420:3;30405:19;;29961:469;22509:106:1;21682:939;;;21476:1145;;;;:::o;3032:3077::-;3196:17;3225:14;3242:9;3225:26;;3261:20;3284:46;3309:6;:20;;;30874:6;30711:185;3284:46;3473:4;3467:11;3261:69;;-1:-1:-1;3340:12:1;;3505:23;3340:12;3531:15;;;;:6;:15;:::i;:::-;3505:41;;;;3560:22;3596:16;3664:15;3707:1;3702:3;3699:10;3696:96;;;3758:15;3745:29;3732:42;;3696:96;-1:-1:-1;;;;;;;;;;3823:51:1;;;3819:417;;3894:26;3970:6;3978;:17;;;3923:74;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;3923:74:1;;;;;;;;;;;;;;-1:-1:-1;;;;;3923:74:1;-1:-1:-1;;;3923:74:1;;;4027:68;3923:74;;-1:-1:-1;4042:4:1;;:18;;4027:68;;3923:74;;4078:6;;4086:7;;4027:68;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4027:68:1;;;;;;;;;;;4015:80;;3876:234;3819:417;;;4173:4;-1:-1:-1;;;;;4173:18:1;;4194:8;;4204:6;4212:7;4158:63;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4158:63:1;;;;;;;;;;;4146:75;;3819:417;4372:2;4369:1;4357:9;4351:16;4344:4;4333:9;4329:20;4326:1;4315:9;4308:5;4303:72;4292:83;;4411:1;4405:8;4392:21;;4443:11;4437:4;4430:25;4274:195;;;;;4493:7;4488:1615;;4516:23;4607:16;4649:3;4646:2;4643:10;4640:126;;4697:2;4694:1;4691;4676:24;4746:1;4740:8;4721:27;;4640:126;;-1:-1:-1;;;4797:15:1;:35;4793:1300;;5041:7;5032:36;;-1:-1:-1;;;5032:36:1;;;;;;33029:25:125;;33090:2;33085;33070:18;;33063:30;;;33129:2;33109:18;;;33102:30;-1:-1:-1;;;33163:2:125;33148:18;;33141:45;33218:3;33203:19;;32817:411;4793:1300:1;-1:-1:-1;;;5093:15:1;:43;5089:1004;;5249:17;5290:6;:15;;;5278:9;5269:18;;:6;:18;:::i;:::-;:36;;;;:::i;:::-;5347:14;;;;5249:56;;-1:-1:-1;5379:25:1;5347:6;5379:17;:25::i;:::-;5422:63;5445:6;5453:5;5460:13;5475:9;5422:22;:63::i;:::-;5515:13;-1:-1:-1;5089:1004:1;;-1:-1:-1;5089:1004:1;;5651:14;;:21;;5612:17;;;;;5694:20;;;-1:-1:-1;;;;;5572:223:1;;;;5612:17;5572:223;;5736:41;1543:4;5736:18;:41::i;:::-;5572:223;;;;;;;:::i;:::-;;;;;;;;5814:17;5855:6;:15;;;5843:9;5834:18;;:6;:18;:::i;:::-;:36;;;;:::i;:::-;5814:56;;5900:178;5936:36;5994:6;6022:7;6051:9;5900:14;:178::i;:::-;5888:190;;5549:544;5089:1004;4502:1601;4488:1615;3215:2894;;;3032:3077;;;;;:::o;2446:279::-;-1:-1:-1;;;;;2539:25:1;;2531:62;;;;-1:-1:-1;;;2531:62:1;;33435:2:125;2531:62:1;;;33417:21:125;33474:2;33454:18;;;33447:30;33513:26;33493:18;;;33486:54;33557:18;;2531:62:1;33233:348:125;2531:62:1;2604:12;2622:11;-1:-1:-1;;;;;2622:16:1;2646:6;2622:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2603:54;;;2675:7;2667:51;;;;-1:-1:-1;;;2667:51:1;;33788:2:125;2667:51:1;;;33770:21:125;33827:2;33807:18;;;33800:30;33866:33;33846:18;;;33839:61;33917:18;;2667:51:1;33586:355:125;29763:531:1;29922:20;;;;29987:28;;;;29856:7;;29922:20;30033:36;;;30029:173;;-1:-1:-1;30175:12:1;29763:531;-1:-1:-1;;29763:531:1:o;30029:173::-;30222:55;30226:12;30263:13;30240:20;:36;30222:3;:55::i;:::-;30215:62;29763:531;-1:-1:-1;;;;29763:531:1:o;6511:228::-;6667:14;;:21;;6636:17;;;;;6702:20;;;;6596:136;;4947:25:125;;;-1:-1:-1;;;;;6596:136:1;;;;6636:17;6596:136;;4920:18:125;6596:136:1;;;;;;;6511:228;:::o;6115:390::-;6359:14;;:24;;;;6324:21;;6293:17;;;;;6397:20;;;6261:237;;-1:-1:-1;;;;;6261:237:1;;;;;;;;;;;;;6431:7;;6452:13;;6479:9;;34171:25:125;;;34239:14;;34232:22;34227:2;34212:18;;34205:50;34286:2;34271:18;;34264:34;34329:2;34314:18;;34307:34;34158:3;34143:19;;33946:401;6261:237:1;;;;;;;;6115:390;;;;:::o;1760:769:6:-;1850:16;854:20;;1938:12;;;;1878:14;1983:31;1998:15;;;;854:20;1998:15;:::i;:::-;1983:14;:31::i;:::-;1960:54;-1:-1:-1;2024:20:6;2047:31;2062:15;;;;:6;:15;:::i;2047:31::-;2024:54;-1:-1:-1;2115:23:6;;;;2177:25;;;;2230:14;;;;2088:24;2285:39;2300:23;;;;2115:6;2300:23;:::i;2285:39::-;2342:180;;;-1:-1:-1;;;;;34713:32:125;;;;2342:180:6;;;34695:51:125;34762:18;;;34755:34;;;;34805:18;;;34798:34;;;;-1:-1:-1;34848:18:125;;;34841:34;;;;34891:19;;;34884:35;;;;34935:19;;;34928:35;34979:19;;;34972:35;35023:19;;;;35016:35;;;;2342:180:6;;;;;;;;;;34667:19:125;;;;2342:180:6;;;1760:769;-1:-1:-1;;1760:769:6:o;3586:157:96:-;-1:-1:-1;;;;;;;;;;;4560:52:96;2407:1;4560:63;3644:93;;3696:30;;-1:-1:-1;;;3696:30:96;;;;;;;;;;;3644:93;3586:157::o;13654:1129:1:-;13812:13;;;;:6;:13;:::i;:::-;-1:-1:-1;;;;;13795:30:1;;;13851:12;;;;;13835:13;;;:28;-1:-1:-1;;;;;13957:23:1;;;;;2652:59:6;;;13904:20:1;;;13873:108;2660:24:6;;13874:28:1;;;13873:108;14020:25;;;;13991:26;;;;:54;;;;14139:14;;;2652:59:6;;;14086:20:1;;;14055:99;2660:24:6;14056:28:1;;;14055:99;14164:31;-1:-1:-1;14198:23:1;;;;13851:12;14198:23;:::i;:::-;14164:57;;-1:-1:-1;14164:57:1;-1:-1:-1;14235:27:1;;14231:546;;490:2:6;14303:65:1;;;14278:153;;;;-1:-1:-1;;;14278:153:1;;35264:2:125;14278:153:1;;;35246:21:125;35303:2;35283:18;;;35276:30;35342:31;35322:18;;;35315:59;35391:18;;14278:153:1;35062:353:125;14278:153:1;14539:62;14584:16;;14539:44;:62::i;:::-;14504:31;;;14445:156;14465:37;;;14445:156;-1:-1:-1;;;;;14445:156:1;14446:17;;;14445:156;14231:546;;;14660:1;14632:17;;;:30;;;14676:37;;;:41;;;14731:31;;;:35;13785:998;;13654:1129;;:::o;17381:1634::-;17742:14;;17787;;17641:22;;17742:14;17815:51;17837:7;17742:6;17854:11;;;;:2;:11;:::i;:::-;17815:21;:51::i;:::-;17900:17;;;;17880;-1:-1:-1;;;;;17980:23:1;;17976:222;;-1:-1:-1;;;;;1241:17:5;;18023:11:1;1241:17:5;;;;;;;;;;:25;18094:21:1;;;:89;;18180:3;18162:15;:21;18094:89;;;18138:1;18094:89;18072:111;;18005:193;17976:222;18332:17;;;;18231:140;;-1:-1:-1;;;18231:140:1;;-1:-1:-1;;;;;18231:31:1;;;;;18289:20;;18231:140;;18328:2;;18332:17;18351:19;;18231:140;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18231:140:1;;;;;;;;-1:-1:-1;;18231:140:1;;;;;;;;;;;;:::i;:::-;;;18211:406;;18534:7;18560:41;1543:4;18560:18;:41::i;:::-;18515:87;;-1:-1:-1;;;18515:87:1;;;;;;;;;:::i;18211:406::-;18453:15;-1:-1:-1;;;;;;18634:23:1;;18630:369;;-1:-1:-1;;;;;18710:16:1;;18677:30;18710:16;;;;;;;;;;18762:18;;18802:25;;;18798:123;;;18867:7;18858:44;;-1:-1:-1;;;18858:44:1;;;;;;36846:25:125;;36907:2;36902;36887:18;;36880:30;;;36946:2;36926:18;;;36919:30;36985:25;36980:2;36965:18;;36958:53;37043:3;37028:19;;36634:419;18798:123:1;18959:25;;;18938:46;;18630:369;17688:1321;;;;17381:1634;;;;;;;:::o;1187:234:3:-;-1:-1:-1;;;;;1373:27:3;;1269:4;1373:27;;;:19;:27;;;;1317:2;1373:27;;;1308:11;;;1373:32;;;;;;;:34;;1308:5;;-1:-1:-1;;;;;1373:41:3;;;:34;1269:4;1373:34;;;:::i;:::-;;;;-1:-1:-1;1373:41:3;;1187:234;-1:-1:-1;;;;;1187:234:3:o;19580:1523:1:-;19775:20;19797:22;19855:14;19872:9;19925:14;;19973:17;;;;-1:-1:-1;;;;;20040:19:1;;19895:27;20040:19;;;;;;;;;;20091:21;;19855:26;;-1:-1:-1;19925:14:1;;19973:17;;20040:19;20130:25;;;20126:122;;;20191:7;20182:51;;-1:-1:-1;;;20182:51:1;;;;;;37270:25:125;;37331:2;37326;37311:18;;37304:30;;;37370:2;37350:18;;;37343:30;37409:32;37404:2;37389:18;;37382:60;37474:3;37459:19;;37058:426;20126:122:1;20295:15;20285:7;:25;20261:13;:21;;:49;;;;20324:30;20357:7;:37;;;20324:70;;20439:9;-1:-1:-1;;;;;20428:45:1;;20479:22;20524:2;20548:6;:17;;;20587:15;20428:192;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;20428:192:1;;;;;;;;;;;;:::i;:::-;;;20408:517;;20842:7;20868:41;1543:4;20868:18;:41::i;:::-;20823:87;;-1:-1:-1;;;20823:87:1;;;;;;;;;:::i;20408:517::-;20718:8;;-1:-1:-1;20761:15:1;-1:-1:-1;20963:22:1;20951:9;20942:6;:18;:43;20938:149;;;21021:7;21012:60;;-1:-1:-1;;;21012:60:1;;;;;;39035:25:125;;39096:2;39091;39076:18;;39069:30;;;39135:2;39115:18;;;39108:30;39174:34;39169:2;39154:18;;39147:62;-1:-1:-1;;;39240:3:125;39225:19;;39218:38;39288:3;39273:19;;38823:475;20938:149:1;19831:1266;;;;;;19580:1523;;;;;;;:::o;22951:486::-;23040:18;23060:19;23095:14;23113:1;23095:19;23091:76;;-1:-1:-1;23146:1:1;;;;-1:-1:-1;22951:486:1;-1:-1:-1;22951:486:1:o;23091:76::-;23176:26;23205:36;23226:14;23205:20;:36::i;:::-;23176:65;;23340:4;:15;;;23322:33;;:15;:33;:70;;;;23377:4;:15;;;23359:33;;:15;:33;23322:70;23415:15;;;23305:87;;-1:-1:-1;22951:486:1;-1:-1:-1;;22951:486:1:o;3263:95:2:-;3312:7;3342:1;3338;:5;:13;;3350:1;3338:13;;;3346:1;3338:13;3331:20;3263:95;-1:-1:-1;;;3263:95:2:o;2879:281::-;2938:11;3017:4;3011:11;3046;3101:3;3088:11;3083:3;3070:35;3125:19;;;2879:281;-1:-1:-1;;;2879:281:2:o;4234:507:6:-;4341:17;;;4459:51;372:2;4341:17;4459:16;;:51;:::i;:::-;4451:60;;;:::i;:::-;4443:69;;4542:79;434:2;372;4542:16;;:79;:::i;:::-;4534:88;;;:::i;:::-;4526:97;;4653:69;490:2;434;4653:16;;:69;:::i;:::-;4645:78;;;:::i;:::-;4422:312;;-1:-1:-1;;;;;;4422:312:6;;-1:-1:-1;4637:87:6;;;-1:-1:-1;4234:507:6;;;;;:::o;15658:1086:1:-;15810:20;;15806:932;;15863:14;;:21;-1:-1:-1;;;;;15902:18:1;;;:23;15898:104;;15959:7;15950:52;;-1:-1:-1;;;15950:52:1;;;;;;40633:25:125;;40694:2;40689;40674:18;;40667:30;;;40733:2;40713:18;;;40706:30;40772:33;40767:2;40752:18;;40745:61;40838:3;40823:19;;40421:427;15898:104:1;16016:15;1100:14;-1:-1:-1;;;;;16034:28:1;;16085:6;:14;;;:35;;;16135:8;;16034:110;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16016:128;-1:-1:-1;;;;;;16162:21:1;;16158:98;;16217:7;16208:48;;-1:-1:-1;;;16208:48:1;;;;;;41065:25:125;;41126:2;41121;41106:18;;41099:30;;;41165:2;41145:18;;;41138:30;41204:29;41199:2;41184:18;;41177:57;41266:3;41251:19;;40853:423;16158:98:1;16285:6;-1:-1:-1;;;;;16274:17:1;:7;-1:-1:-1;;;;;16274:17:1;;16270:99;;16325:7;16316:53;;-1:-1:-1;;;16316:53:1;;;;;;41493:25:125;;41554:2;41549;41534:18;;;41527:30;;;41573:18;;;41566:30;41632:34;41627:2;41612:18;;41605:62;41699:3;41684:19;;41281:428;16270:99:1;16387:7;-1:-1:-1;;;;;16387:19:1;;16410:1;16387:24;16383:106;;16445:7;16436:53;;-1:-1:-1;;;16436:53:1;;;;;;41926:25:125;;41987:2;41982;41967:18;;;41960:30;;;42006:18;;;41999:30;42065:34;42060:2;42045:18;;42038:62;42132:3;42117:19;;41714:428;16383:106:1;16503:15;16537:14;16548:2;16503:15;16537:8;;:14;:::i;:::-;16529:23;;;:::i;:::-;16521:32;;16503:50;;16640:6;-1:-1:-1;;;;;16572:155:1;16605:6;:17;;;16572:155;16664:7;16689:6;:14;;;:24;;;16572:155;;;;;;-1:-1:-1;;;;;42339:32:125;;;42321:51;;42408:32;;42403:2;42388:18;;42381:60;42309:2;42294:18;;42147:300;16572:155:1;;;;;;;;15832:906;;;15658:1086;;;;:::o;1370:416:2:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;1515:14:2;1582:3;1564:21;;;1596:15;;;1478:18;1596:15;1592:67;;-1:-1:-1;1636:16:2;1592:67;1733:50;;;;;;;;-1:-1:-1;;;;;1733:50:2;;;;;1710:8;1691:28;;;;1733:50;;;;;;;;;;;;;-1:-1:-1;1733:50:2;1370:416::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:127:125:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:253;218:2;212:9;260:4;248:17;;-1:-1:-1;;;;;280:34:125;;316:22;;;277:62;274:88;;;342:18;;:::i;:::-;378:2;371:22;146:253;:::o;404:255::-;476:2;470:9;518:6;506:19;;-1:-1:-1;;;;;540:34:125;;576:22;;;537:62;534:88;;;602:18;;:::i;664:275::-;735:2;729:9;800:2;781:13;;-1:-1:-1;;777:27:125;765:40;;-1:-1:-1;;;;;820:34:125;;856:22;;;817:62;814:88;;;882:18;;:::i;:::-;918:2;911:22;664:275;;-1:-1:-1;664:275:125:o;944:186::-;992:4;-1:-1:-1;;;;;1017:6:125;1014:30;1011:56;;;1047:18;;:::i;:::-;-1:-1:-1;1113:2:125;1092:15;-1:-1:-1;;1088:29:125;1119:4;1084:40;;944:186::o;1135:131::-;-1:-1:-1;;;;;1210:31:125;;1200:42;;1190:70;;1256:1;1253;1246:12;1190:70;1135:131;:::o;1271:134::-;1339:20;;1368:31;1339:20;1368:31;:::i;:::-;1271:134;;;:::o;1410:1899::-;1467:5;1506:9;1501:3;1497:19;1536:6;1532:2;1528:15;1525:35;;;1556:1;1553;1546:12;1525:35;1578:22;;:::i;:::-;1569:31;;1620:6;1616:2;1612:15;1609:35;;;1640:1;1637;1630:12;1609:35;;1668:22;;:::i;:::-;1715:29;1734:9;1715:29;:::i;:::-;1699:46;;1818:2;1803:18;;;1790:32;1838:16;;;1831:33;1937:2;1922:18;;;1909:32;1957:16;;;1950:33;2056:2;2041:18;;;2028:32;2076:16;;;2069:33;2175:3;2160:19;;;2147:33;2196:17;;;2189:34;2296:4;2281:20;;;2268:34;2318:18;;;2311:35;2419:3;2404:19;;;2391:33;2440:17;;;2433:34;2502:39;2536:3;2521:19;;2502:39;:::i;:::-;2496:3;2483:17;;2476:66;2615:3;2600:19;;;2587:33;2636:17;;;2629:34;2736:3;2721:19;;;2708:33;2757:17;;;2750:34;2793:22;;2890:6;2875:22;;2862:36;2925:2;2914:14;;2907:32;3014:3;2999:19;;2986:33;3046:2;3035:14;;3028:32;3135:3;3120:19;;3107:33;3167:2;3156:14;;3149:32;3256:3;3241:19;;;3228:33;3288:3;3277:15;;3270:33;2800:5;1410:1899;-1:-1:-1;1410:1899:125:o;3314:347::-;3365:8;3375:6;3429:3;3422:4;3414:6;3410:17;3406:27;3396:55;;3447:1;3444;3437:12;3396:55;-1:-1:-1;3470:20:125;;-1:-1:-1;;;;;3502:30:125;;3499:50;;;3545:1;3542;3535:12;3499:50;3582:4;3574:6;3570:17;3558:29;;3634:3;3627:4;3618:6;3610;3606:19;3602:30;3599:39;3596:59;;;3651:1;3648;3641:12;3596:59;3314:347;;;;;:::o;3666:1130::-;3790:6;3798;3806;3814;3867:3;3855:9;3846:7;3842:23;3838:33;3835:53;;;3884:1;3881;3874:12;3835:53;3924:9;3911:23;-1:-1:-1;;;;;3949:6:125;3946:30;3943:50;;;3989:1;3986;3979:12;3943:50;4012:22;;4065:4;4057:13;;4053:27;-1:-1:-1;4043:55:125;;4094:1;4091;4084:12;4043:55;4134:2;4121:16;4159:52;4175:35;4203:6;4175:35;:::i;:::-;4159:52;:::i;:::-;4234:6;4227:5;4220:21;4284:7;4277:4;4268:6;4264:2;4260:15;4256:26;4253:39;4250:59;;;4305:1;4302;4295:12;4250:59;4364:6;4357:4;4353:2;4349:13;4342:4;4335:5;4331:16;4318:53;4418:1;4411:4;4402:6;4395:5;4391:18;4387:29;4380:40;4439:5;4429:15;;;;;4463:59;4514:7;4507:4;4496:9;4492:20;4463:59;:::i;:::-;4453:69;;4575:3;4564:9;4560:19;4547:33;-1:-1:-1;;;;;4595:8:125;4592:32;4589:52;;;4637:1;4634;4627:12;4589:52;4676:60;4728:7;4717:8;4706:9;4702:24;4676:60;:::i;:::-;3666:1130;;;;-1:-1:-1;4755:8:125;-1:-1:-1;;;;3666:1130:125:o;4983:286::-;5041:6;5094:2;5082:9;5073:7;5069:23;5065:32;5062:52;;;5110:1;5107;5100:12;5062:52;5136:23;;-1:-1:-1;;;;;;5188:32:125;;5178:43;;5168:71;;5235:1;5232;5225:12;5466:276;5524:6;5577:2;5565:9;5556:7;5552:23;5548:32;5545:52;;;5593:1;5590;5583:12;5545:52;5632:9;5619:23;5682:10;5675:5;5671:22;5664:5;5661:33;5651:61;;5708:1;5705;5698:12;5747:173;5815:20;;-1:-1:-1;;;;;5864:31:125;;5854:42;;5844:70;;5910:1;5907;5900:12;5925:186;5984:6;6037:2;6025:9;6016:7;6012:23;6008:32;6005:52;;;6053:1;6050;6043:12;6005:52;6076:29;6095:9;6076:29;:::i;6116:321::-;6184:6;6192;6245:2;6233:9;6224:7;6220:23;6216:32;6213:52;;;6261:1;6258;6251:12;6213:52;6300:9;6287:23;6319:31;6344:5;6319:31;:::i;:::-;6369:5;-1:-1:-1;6393:38:125;6427:2;6412:18;;6393:38;:::i;:::-;6383:48;;6116:321;;;;;:::o;6442:375::-;6518:6;6526;6579:2;6567:9;6558:7;6554:23;6550:32;6547:52;;;6595:1;6592;6585:12;6547:52;6634:9;6621:23;6653:31;6678:5;6653:31;:::i;:::-;6703:5;6781:2;6766:18;;;;6753:32;;-1:-1:-1;;;6442:375:125:o;6822:399::-;6920:6;6973:2;6961:9;6952:7;6948:23;6944:32;6941:52;;;6989:1;6986;6979:12;6941:52;7029:9;7016:23;-1:-1:-1;;;;;7054:6:125;7051:30;7048:50;;;7094:1;7091;7084:12;7048:50;7117:22;;7173:3;7155:16;;;7151:26;7148:46;;;7190:1;7187;7180:12;7408:247;7467:6;7520:2;7508:9;7499:7;7495:23;7491:32;7488:52;;;7536:1;7533;7526:12;7488:52;7575:9;7562:23;7594:31;7619:5;7594:31;:::i;8251:395::-;8342:8;8352:6;8406:3;8399:4;8391:6;8387:17;8383:27;8373:55;;8424:1;8421;8414:12;8373:55;-1:-1:-1;8447:20:125;;-1:-1:-1;;;;;8479:30:125;;8476:50;;;8522:1;8519;8512:12;8476:50;8559:4;8551:6;8547:17;8535:29;;8619:3;8612:4;8602:6;8599:1;8595:14;8587:6;8583:27;8579:38;8576:47;8573:67;;;8636:1;8633;8626:12;8651:647;8793:6;8801;8809;8862:2;8850:9;8841:7;8837:23;8833:32;8830:52;;;8878:1;8875;8868:12;8830:52;8918:9;8905:23;-1:-1:-1;;;;;8943:6:125;8940:30;8937:50;;;8983:1;8980;8973:12;8937:50;9022:98;9112:7;9103:6;9092:9;9088:22;9022:98;:::i;:::-;9139:8;;-1:-1:-1;8996:124:125;-1:-1:-1;;9224:2:125;9209:18;;9196:32;9237:31;9196:32;9237:31;:::i;:::-;9287:5;9277:15;;;8651:647;;;;;:::o;9303:544::-;9382:6;9390;9398;9451:2;9439:9;9430:7;9426:23;9422:32;9419:52;;;9467:1;9464;9457:12;9419:52;9506:9;9493:23;9525:31;9550:5;9525:31;:::i;:::-;9575:5;-1:-1:-1;9631:2:125;9616:18;;9603:32;-1:-1:-1;;;;;9647:30:125;;9644:50;;;9690:1;9687;9680:12;9644:50;9729:58;9779:7;9770:6;9759:9;9755:22;9729:58;:::i;:::-;9303:544;;9806:8;;-1:-1:-1;9703:84:125;;-1:-1:-1;;;;9303:544:125:o;9852:409::-;9922:6;9930;9983:2;9971:9;9962:7;9958:23;9954:32;9951:52;;;9999:1;9996;9989:12;9951:52;10039:9;10026:23;-1:-1:-1;;;;;10064:6:125;10061:30;10058:50;;;10104:1;10101;10094:12;10058:50;10143:58;10193:7;10184:6;10173:9;10169:22;10143:58;:::i;:::-;10220:8;;10117:84;;-1:-1:-1;9852:409:125;-1:-1:-1;;;;9852:409:125:o;12080:127::-;12141:10;12136:3;12132:20;12129:1;12122:31;12172:4;12169:1;12162:15;12196:4;12193:1;12186:15;12212:288;12253:3;12291:5;12285:12;12318:6;12313:3;12306:19;12374:6;12367:4;12360:5;12356:16;12349:4;12344:3;12340:14;12334:47;12426:1;12419:4;12410:6;12405:3;12401:16;12397:27;12390:38;12489:4;12482:2;12478:7;12473:2;12465:6;12461:15;12457:29;12452:3;12448:39;12444:50;12437:57;;;12212:288;;;;:::o;12505:::-;12680:6;12669:9;12662:25;12723:2;12718;12707:9;12703:18;12696:30;12643:4;12743:44;12783:2;12772:9;12768:18;12760:6;12743:44;:::i;13510:127::-;13571:10;13566:3;13562:20;13559:1;13552:31;13602:4;13599:1;13592:15;13626:4;13623:1;13616:15;13642:125;13707:9;;;13728:10;;;13725:36;;;13741:18;;:::i;14731:135::-;14770:3;14791:17;;;14788:43;;14811:18;;:::i;:::-;-1:-1:-1;14858:1:125;14847:13;;14731:135::o;15225:128::-;15292:9;;;15313:11;;;15310:37;;;15327:18;;:::i;16661:127::-;16722:10;16717:3;16713:20;16710:1;16703:31;16753:4;16750:1;16743:15;16777:4;16774:1;16767:15;16793:337;16898:4;16956:11;16943:25;17050:3;17046:8;17035;17019:14;17015:29;17011:44;16991:18;16987:69;16977:97;;17070:1;17067;17060:12;16977:97;17091:33;;;;;16793:337;-1:-1:-1;;16793:337:125:o;17135:271::-;17318:6;17310;17305:3;17292:33;17274:3;17344:16;;17369:13;;;17344:16;17135:271;-1:-1:-1;17135:271:125:o;17411:298::-;17594:6;17587:14;17580:22;17569:9;17562:41;17639:2;17634;17623:9;17619:18;17612:30;17543:4;17659:44;17699:2;17688:9;17684:18;17676:6;17659:44;:::i;17714:266::-;17802:6;17797:3;17790:19;17854:6;17847:5;17840:4;17835:3;17831:14;17818:43;-1:-1:-1;17906:1:125;17881:16;;;17899:4;17877:27;;;17870:38;;;;17962:2;17941:15;;;-1:-1:-1;;17937:29:125;17928:39;;;17924:50;;17714:266::o;17985:244::-;18142:2;18131:9;18124:21;18105:4;18162:61;18219:2;18208:9;18204:18;18196:6;18188;18162:61;:::i;18234:251::-;18304:6;18357:2;18345:9;18336:7;18332:23;18328:32;18325:52;;;18373:1;18370;18363:12;18325:52;18405:9;18399:16;18424:31;18449:5;18424:31;:::i;19383:179::-;19482:14;19451:22;;;19475;;;19447:51;;19510:23;;19507:49;;;19536:18;;:::i;21185:337::-;21291:4;21349:11;21336:25;21443:2;21439:7;21428:8;21412:14;21408:29;21404:43;21384:18;21380:68;21370:96;;21462:1;21459;21452:12;21527:584;21659:4;21665:6;21725:11;21712:25;21819:2;21815:7;21804:8;21788:14;21784:29;21780:43;21760:18;21756:68;21746:96;;21838:1;21835;21828:12;21746:96;21865:33;;21917:20;;;-1:-1:-1;;;;;;21949:30:125;;21946:50;;;21992:1;21989;21982:12;21946:50;22025:4;22013:17;;-1:-1:-1;22076:1:125;22072:14;;;22056;22052:35;22042:46;;22039:66;;;22101:1;22098;22091:12;22740:521;22817:4;22823:6;22883:11;22870:25;22977:2;22973:7;22962:8;22946:14;22942:29;22938:43;22918:18;22914:68;22904:96;;22996:1;22993;22986:12;22904:96;23023:33;;23075:20;;;-1:-1:-1;;;;;;23107:30:125;;23104:50;;;23150:1;23147;23140:12;23104:50;23183:4;23171:17;;-1:-1:-1;23214:14:125;23210:27;;;23200:38;;23197:58;;;23251:1;23248;23241:12;23266:500;23324:5;23331:6;23391:3;23378:17;23477:2;23473:7;23462:8;23446:14;23442:29;23438:43;23418:18;23414:68;23404:96;;23496:1;23493;23486:12;23404:96;23524:33;;23628:4;23615:18;;;-1:-1:-1;23576:21:125;;-1:-1:-1;;;;;;23645:30:125;;23642:50;;;23688:1;23685;23678:12;23642:50;23735:6;23719:14;23715:27;23708:5;23704:39;23701:59;;;23756:1;23753;23746:12;23771:1544;23860:50;23906:3;23879:25;23898:5;23879:25;:::i;:::-;-1:-1:-1;;;;;16268:31:125;16256:44;;16202:104;23860:50;23979:4;23968:16;;;23955:30;24001:14;;;23994:31;23842:3;24068:55;24117:4;24106:16;;23972:5;24068:55;:::i;:::-;24155:6;24148:4;24143:3;24139:14;24132:30;24183:71;24246:6;24241:3;24237:16;24223:12;24209;24183:71;:::i;:::-;24171:83;;;24301:55;24350:4;24343:5;24339:16;24332:5;24301:55;:::i;:::-;24398:3;24392:4;24388:14;24381:4;24376:3;24372:14;24365:38;24426:63;24484:4;24468:14;24452;24426:63;:::i;:::-;24558:4;24547:16;;;24534:30;24580:14;;;24573:31;24673:4;24662:16;;;24649:30;24695:14;;;24688:31;24788:4;24777:16;;;24764:30;24810:14;;;24803:31;24412:77;-1:-1:-1;24881:55:125;;-1:-1:-1;;24930:4:125;24919:16;;24551:5;24881:55;:::i;:::-;24980:3;24972:6;24968:16;24961:4;24956:3;24952:14;24945:40;25008:65;25066:6;25050:14;25034;25008:65;:::i;:::-;24994:79;;;;25120:57;25169:6;25162:5;25158:18;25151:5;25120:57;:::i;:::-;25223:3;25215:6;25211:16;25202:6;25197:3;25193:16;25186:42;25244:65;25302:6;25286:14;25270;25244:65;:::i;:::-;25237:72;23771:1544;-1:-1:-1;;;;;;23771:1544:125:o;25320:1202::-;25652:2;25664:21;;;25637:18;;25720:22;;;-1:-1:-1;25773:2:125;25822:1;25818:14;;;25803:30;;25799:39;;;25758:18;;25861:6;-1:-1:-1;;;25913:14:125;25909:27;;;25905:42;25956:433;25970:6;25967:1;25964:13;25956:433;;;26035:22;;;-1:-1:-1;;26031:36:125;26019:49;;26107:20;;26150:27;;;26140:55;;26191:1;26188;26181:12;26140:55;26218:87;26298:6;26289;26269:18;26265:31;26218:87;:::i;:::-;26208:97;;;26340:4;26332:6;26328:17;26318:27;;26374:4;26369:3;26365:14;26358:21;;25992:1;25989;25985:9;25980:14;;25956:433;;;25960:3;;;;26439:9;26431:6;26427:22;26420:4;26409:9;26405:20;26398:52;26467:49;26509:6;26501;26493;26467:49;:::i;:::-;26459:57;25320:1202;-1:-1:-1;;;;;;;25320:1202:125:o;26527:127::-;26588:10;26583:3;26579:20;26576:1;26569:31;26619:4;26616:1;26609:15;26643:4;26640:1;26633:15;26659:598;26866:4;26906:1;26898:6;26895:13;26885:144;;26951:10;26946:3;26942:20;26939:1;26932:31;26986:4;26983:1;26976:15;27014:4;27011:1;27004:15;26885:144;27056:6;27045:9;27038:25;27099:3;27094:2;27083:9;27079:18;27072:31;27120:45;27160:3;27149:9;27145:19;27137:6;27120:45;:::i;:::-;27196:2;27181:18;;27174:34;;;;-1:-1:-1;27239:2:125;27224:18;27217:34;27112:53;26659:598;-1:-1:-1;;26659:598:125:o;27262:217::-;27409:2;27398:9;27391:21;27372:4;27429:44;27469:2;27458:9;27454:18;27446:6;27429:44;:::i;30435:376::-;30668:2;30657:9;30650:21;30631:4;30688:74;30758:2;30747:9;30743:18;30735:6;30688:74;:::i;:::-;30680:82;;30798:6;30793:2;30782:9;30778:18;30771:34;30435:376;;;;;:::o;30816:905::-;30890:12;;30930:9;;-1:-1:-1;;;;;16268:31:125;16256:44;;30991:4;30987:2;30983:13;30977:20;30970:4;30965:3;30961:14;30954:44;31044:4;31040:2;31036:13;31030:20;31023:4;31018:3;31014:14;31007:44;31097:4;31093:2;31089:13;31083:20;31076:4;31071:3;31067:14;31060:44;31150:4;31146:2;31142:13;31136:20;31129:4;31124:3;31120:14;31113:44;31203:4;31199:2;31195:13;31189:20;31182:4;31177:3;31173:14;31166:44;31256:4;31252:2;31248:13;31242:20;31235:4;31230:3;31226:14;31219:44;31306:4;31302:2;31298:13;31292:20;31321:48;31363:4;31358:3;31354:14;31340:12;-1:-1:-1;;;;;16268:31:125;16256:44;;16202:104;31321:48;-1:-1:-1;31417:6:125;31409:15;;;31403:22;31385:16;;;31378:48;31474:6;31466:15;;;31460:22;31442:16;;;31435:48;31534:4;31523:16;;31517:23;31508:6;31499:16;;31492:49;31592:4;31581:16;;31575:23;31566:6;31557:16;;31550:49;31650:4;31639:16;;31633:23;31624:6;31615:16;;31608:49;31708:4;31697:16;31691:23;31682:6;31673:16;;;31666:49;30816:905::o;31726:527::-;32001:3;31990:9;31983:22;31964:4;32028:45;32068:3;32057:9;32053:19;32045:6;32028:45;:::i;:::-;32082:56;32134:2;32123:9;32119:18;32111:6;32082:56;:::i;:::-;32187:9;32179:6;32175:22;32169:3;32158:9;32154:19;32147:51;32215:32;32240:6;32232;32215:32;:::i;32258:554::-;32543:3;32532:9;32525:22;32506:4;32570:62;32627:3;32616:9;32612:19;32604:6;32596;32570:62;:::i;:::-;32641:56;32693:2;32682:9;32678:18;32670:6;32641:56;:::i;:::-;32746:9;32738:6;32734:22;32728:3;32717:9;32713:19;32706:51;32774:32;32799:6;32791;32774:32;:::i;35420:447::-;35681:2;35670:9;35663:21;35644:4;35701:74;35771:2;35760:9;35756:18;35748:6;35701:74;:::i;:::-;35806:2;35791:18;;35784:34;;;;-1:-1:-1;35849:2:125;35834:18;35827:34;35693:82;35420:447;-1:-1:-1;35420:447:125:o;35872:230::-;35942:6;35995:2;35983:9;35974:7;35970:23;35966:32;35963:52;;;36011:1;36008;36001:12;35963:52;-1:-1:-1;36056:16:125;;35872:230;-1:-1:-1;35872:230:125:o;36107:522::-;36383:6;36372:9;36365:25;36426:2;36421;36410:9;36406:18;36399:30;36465:2;36460;36449:9;36445:18;36438:30;-1:-1:-1;;;36499:3:125;36488:9;36484:19;36477:44;36557:3;36552:2;36541:9;36537:18;36530:31;36346:4;36578:45;36618:3;36607:9;36603:19;36595:6;36578:45;:::i;37489:802::-;37577:6;37585;37638:2;37626:9;37617:7;37613:23;37609:32;37606:52;;;37654:1;37651;37644:12;37606:52;37687:9;37681:16;-1:-1:-1;;;;;37712:6:125;37709:30;37706:50;;;37752:1;37749;37742:12;37706:50;37775:22;;37828:4;37820:13;;37816:27;-1:-1:-1;37806:55:125;;37857:1;37854;37847:12;37806:55;37890:2;37884:9;37915:52;37931:35;37959:6;37931:35;:::i;37915:52::-;37990:6;37983:5;37976:21;38040:7;38033:4;38024:6;38020:2;38016:15;38012:26;38009:39;38006:59;;;38061:1;38058;38051:12;38006:59;38113:6;38106:4;38102:2;38098:13;38091:4;38084:5;38080:16;38074:46;38167:1;38160:4;38140:18;;;38136:29;;38129:40;38240:20;;38234:27;38140:18;;38234:27;;-1:-1:-1;;;;37489:802:125:o;38296:522::-;38572:6;38561:9;38554:25;38615:2;38610;38599:9;38595:18;38588:30;38654:2;38649;38638:9;38634:18;38627:30;-1:-1:-1;;;38688:3:125;38677:9;38673:19;38666:44;38746:3;38741:2;38730:9;38726:18;38719:31;38535:4;38767:45;38807:3;38796:9;38792:19;38784:6;38767:45;:::i;39303:331::-;39408:9;39419;39461:8;39449:10;39446:24;39443:44;;;39483:1;39480;39473:12;39443:44;39512:6;39502:8;39499:20;39496:40;;;39532:1;39529;39522:12;39496:40;-1:-1:-1;;39558:23:125;;;39603:25;;;;;-1:-1:-1;39303:331:125:o;39639:374::-;39760:19;;-1:-1:-1;;39797:40:125;;;39857:2;39849:11;;39846:161;;;39969:26;39965:31;39934:26;39930:31;39923:3;39919:2;39915:12;39912:1;39908:20;39904:58;39900:2;39896:67;39892:105;39883:114;;39846:161;;39639:374;;;;:::o;40018:398::-;40139:19;;-1:-1:-1;;;;;;40176:48:125;;;40244:2;40236:11;;40233:177;;;-1:-1:-1;;;;;;40306:2:125;40302:12;;;;40299:1;40295:20;40291:66;;;40283:75;40279:121;;;;40018:398;-1:-1:-1;;40018:398:125:o"},"methodIdentifiers":{"addStake(uint32)":"0396cb60","balanceOf(address)":"70a08231","delegateAndRevert(address,bytes)":"850aaf62","depositTo(address)":"b760faf9","deposits(address)":"fc7e286d","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","innerHandleOp(bytes,((address,uint256,uint256,uint256,uint256,uint256,uint256,address,uint256,uint256),bytes32,uint256,uint256,uint256),bytes)":"0042dc53","nonceSequenceNumber(address,uint192)":"1b2e01b8","supportsInterface(bytes4)":"01ffc9a7","unlockStake()":"bb9fe6bf","withdrawStake(address)":"c23a5cea","withdrawTo(address,uint256)":"205c2878"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":[],\"name\":\"ReentrancyGuardReentrantCall\",\"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\":\"\",\"type\":\"address\"}],\"name\":\"deposits\",\"outputs\":[{\"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\"}],\"stateMutability\":\"view\",\"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\":[{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"},{\"components\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"verificationGasLimit\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"callGasLimit\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"paymasterVerificationGasLimit\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"paymasterPostOpGasLimit\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"preVerificationGas\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"paymaster\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"maxFeePerGas\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxPriorityFeePerGas\",\"type\":\"uint256\"}],\"internalType\":\"struct EntryPoint.MemoryUserOp\",\"name\":\"mUserOp\",\"type\":\"tuple\"},{\"internalType\":\"bytes32\",\"name\":\"userOpHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"prefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"contextOffset\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"preOpGas\",\"type\":\"uint256\"}],\"internalType\":\"struct EntryPoint.UserOpInfo\",\"name\":\"opInfo\",\"type\":\"tuple\"},{\"internalType\":\"bytes\",\"name\":\"context\",\"type\":\"bytes\"}],\"name\":\"innerHandleOp\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"actualGasCost\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint192\",\"name\":\"\",\"type\":\"uint192\"}],\"name\":\"nonceSequenceNumber\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"custom:security-contact\":\"https://bounty.ethereum.org\",\"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\"}}],\"ReentrancyGuardReentrantCall()\":[{\"details\":\"Unauthorized reentrant call.\"}],\"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.\"}},\"innerHandleOp(bytes,((address,uint256,uint256,uint256,uint256,uint256,uint256,address,uint256,uint256),bytes32,uint256,uint256,uint256),bytes)\":{\"params\":{\"callData\":\"- The callData to execute.\",\"context\":\"- The context bytes.\",\"opInfo\":\"- The UserOpInfo struct.\"},\"returns\":{\"actualGasCost\":\"- the actual cost in eth this UserOperation paid for gas\"}},\"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.\"},\"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.\"},\"deposits(address)\":{\"notice\":\"maps paymaster to their deposits and stakes\"},\"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.\"},\"innerHandleOp(bytes,((address,uint256,uint256,uint256,uint256,uint256,uint256,address,uint256,uint256),bytes32,uint256,uint256,uint256),bytes)\":{\"notice\":\"Inner function to handle a UserOperation. Must be declared \\\"external\\\" to open a call context, but it can only be called by handleOps.\"},\"nonceSequenceNumber(address,uint192)\":{\"notice\":\"The next valid sequence number for a given nonce 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/core/EntryPoint.sol\":\"EntryPoint\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/core/EntryPoint.sol\":{\"keccak256\":\"0x0eb1245b5541ff0fbc0f2a23c746e2b4eb9c46e801a4847f15d7d96d1cecc576\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://b002e499336c8f6ec05230762cccd3b48d67a2ec547e2789cfb70132af0b430f\",\"dweb:/ipfs/QmfRGPNgBrfxmLt9PQUEjocVmC47Mx14Vie1tziTARRZfq\"]},\"@account-abstraction/contracts/core/Helpers.sol\":{\"keccak256\":\"0x6247e011a6cb0b263b3aa098822977181674d91b62e5bdfe04c6e66f72da25d6\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://ca829a69b3fbc74fec8e140d42a2bf93bc3512609272f031c846470f61f0ab7e\",\"dweb:/ipfs/QmP3r3MBgAN39KeVB1rCGJWwcBcotNt26ALtAR54poQ1Jc\"]},\"@account-abstraction/contracts/core/NonceManager.sol\":{\"keccak256\":\"0x1f951786ce6f171e7ed0242fee73ee4a205c7523404ee6cffca48b8c64ea5fe9\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://a602bf2274d478dae7a532cca31f8179131808c324cc26ece5c7e87c5a1015a6\",\"dweb:/ipfs/QmaaSyw5GGbAWzUhAPCtsb38P3MmaVr1ngp61PYHCU2a5a\"]},\"@account-abstraction/contracts/core/SenderCreator.sol\":{\"keccak256\":\"0xeb95afb6e4cf921c1ed105ecb9f549ca46bee57f68acd1d2f4f84607ac0db5c5\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://d2ac91562f1fcabe4809a1b4256895efebcf46f89e08336a6c09ee2d29733238\",\"dweb:/ipfs/QmPsQnPcCzioPwVtUhxkbnwKPC1bnhHSbAwK9GXVpjN3mH\"]},\"@account-abstraction/contracts/core/StakeManager.sol\":{\"keccak256\":\"0x673eb19600058d8642605ca409c9e1d4cab13735564b856270b92c330ffb1b8d\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://06599c57c7075ee8eb5f1710fccca3eb322876b968ec271e1fb34af41510ab2c\",\"dweb:/ipfs/QmVsDEjmZYtzgXa4AYKxbQEYQVh6NBq8GmFJCariBUqK4G\"]},\"@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/IAccountExecute.sol\":{\"keccak256\":\"0xd3dc32dde1add1fb6377f939ceff6be31c2e21343522311f7b88db666be9ee6c\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://5b8f065171bd32e23b306868189c730f849ce6147f753c59e396e7afcf384577\",\"dweb:/ipfs/QmZpDRNEZ9YNgGgyLQo5yM4bB1FNbtnfDABsChbgSQKXUh\"]},\"@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/IPaymaster.sol\":{\"keccak256\":\"0x49d8dbf8a85b006bcd89bbc40e4e9e113997cc016007de85263bdae70572d07f\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://bc0d83804c1b795d5c216b3518cd176c48f90db28550f267cbd89746d6b476c8\",\"dweb:/ipfs/QmNdCm4c6hnt7f6Q8q21QjtCNZWWRUaMVEYnQHEv68VnKt\"]},\"@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\"]},\"@account-abstraction/contracts/utils/Exec.sol\":{\"keccak256\":\"0x86b1b1cd11158dddb9d381040c57fdc643c74b5e4eed3e7e036f32452672ad74\",\"license\":\"LGPL-3.0-only\",\"urls\":[\"bzz-raw://ad88663b6c76df73cf09a272cf333d038df7bb4c51281284b572bf9b46e1cd77\",\"dweb:/ipfs/QmVKxYF8avyPBtqejVhFCM2CuHsfpsCh7TsPqkBLtrgwJQ\"]},\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":{\"keccak256\":\"0xa516cbf1c7d15d3517c2d668601ce016c54395bf5171918a14e2686977465f53\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1e1d079e8edfb58efd23a311e315a4807b01b5d1cf153f8fa2d0608b9dec3e99\",\"dweb:/ipfs/QmTBExeX2SDTkn5xbk5ssbYSx7VqRp9H4Ux1CY4uQM4b9N\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0x2d9dc2fe26180f74c11c13663647d38e259e45f95eb88f57b61d2160b0109d3e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81233d1f98060113d9922180bb0f14f8335856fe9f339134b09335e9f678c377\",\"dweb:/ipfs/QmWh6R35SarhAn4z2wH8SU456jJSYL2FgucfTFgbHJJN4E\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":2565,"contract":"@account-abstraction/contracts/core/EntryPoint.sol:EntryPoint","label":"deposits","offset":0,"slot":"0","type":"t_mapping(t_address,t_struct(DepositInfo)3673_storage)"},{"astId":2428,"contract":"@account-abstraction/contracts/core/EntryPoint.sol:EntryPoint","label":"nonceSequenceNumber","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_uint192,t_uint256))"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_mapping(t_address,t_mapping(t_uint192,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(uint192 => uint256))","numberOfBytes":"32","value":"t_mapping(t_uint192,t_uint256)"},"t_mapping(t_address,t_struct(DepositInfo)3673_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct IStakeManager.DepositInfo)","numberOfBytes":"32","value":"t_struct(DepositInfo)3673_storage"},"t_mapping(t_uint192,t_uint256)":{"encoding":"mapping","key":"t_uint192","label":"mapping(uint192 => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_struct(DepositInfo)3673_storage":{"encoding":"inplace","label":"struct IStakeManager.DepositInfo","members":[{"astId":3664,"contract":"@account-abstraction/contracts/core/EntryPoint.sol:EntryPoint","label":"deposit","offset":0,"slot":"0","type":"t_uint256"},{"astId":3666,"contract":"@account-abstraction/contracts/core/EntryPoint.sol:EntryPoint","label":"staked","offset":0,"slot":"1","type":"t_bool"},{"astId":3668,"contract":"@account-abstraction/contracts/core/EntryPoint.sol:EntryPoint","label":"stake","offset":1,"slot":"1","type":"t_uint112"},{"astId":3670,"contract":"@account-abstraction/contracts/core/EntryPoint.sol:EntryPoint","label":"unstakeDelaySec","offset":15,"slot":"1","type":"t_uint32"},{"astId":3672,"contract":"@account-abstraction/contracts/core/EntryPoint.sol:EntryPoint","label":"withdrawTime","offset":19,"slot":"1","type":"t_uint48"}],"numberOfBytes":"64"},"t_uint112":{"encoding":"inplace","label":"uint112","numberOfBytes":"14"},"t_uint192":{"encoding":"inplace","label":"uint192","numberOfBytes":"24"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint32":{"encoding":"inplace","label":"uint32","numberOfBytes":"4"},"t_uint48":{"encoding":"inplace","label":"uint48","numberOfBytes":"6"}}}}},"@account-abstraction/contracts/core/NonceManager.sol":{"NonceManager":{"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"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint192","name":"","type":"uint192"}],"name":"nonceSequenceNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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","nonceSequenceNumber(address,uint192)":"1b2e01b8"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint192\",\"name\":\"\",\"type\":\"uint192\"}],\"name\":\"nonceSequenceNumber\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"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.\"},\"nonceSequenceNumber(address,uint192)\":{\"notice\":\"The next valid sequence number for a given nonce key.\"}},\"notice\":\"nonce management functionality\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/core/NonceManager.sol\":\"NonceManager\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/core/NonceManager.sol\":{\"keccak256\":\"0x1f951786ce6f171e7ed0242fee73ee4a205c7523404ee6cffca48b8c64ea5fe9\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://a602bf2274d478dae7a532cca31f8179131808c324cc26ece5c7e87c5a1015a6\",\"dweb:/ipfs/QmaaSyw5GGbAWzUhAPCtsb38P3MmaVr1ngp61PYHCU2a5a\"]},\"@account-abstraction/contracts/interfaces/INonceManager.sol\":{\"keccak256\":\"0xd575af0f6ebbd5f0b2933307d44cd7b4e03a69f4b817a67db5409bd3c89aeecb\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://3b1e2dea9b05cfba9d13339ed16d96457dc861013cc4f3f35b71a80f82448db3\",\"dweb:/ipfs/QmVaGy5uGDMSiU2SzyokTjoHFyb39VVG5wtaM9KTnHyZSk\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":2428,"contract":"@account-abstraction/contracts/core/NonceManager.sol:NonceManager","label":"nonceSequenceNumber","offset":0,"slot":"0","type":"t_mapping(t_address,t_mapping(t_uint192,t_uint256))"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_mapping(t_address,t_mapping(t_uint192,t_uint256))":{"encoding":"mapping","key":"t_address","label":"mapping(address => mapping(uint192 => uint256))","numberOfBytes":"32","value":"t_mapping(t_uint192,t_uint256)"},"t_mapping(t_uint192,t_uint256)":{"encoding":"mapping","key":"t_uint192","label":"mapping(uint192 => uint256)","numberOfBytes":"32","value":"t_uint256"},"t_uint192":{"encoding":"inplace","label":"uint192","numberOfBytes":"24"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@account-abstraction/contracts/core/SenderCreator.sol":{"SenderCreator":{"abi":[{"inputs":[{"internalType":"bytes","name":"initCode","type":"bytes"}],"name":"createSender","outputs":[{"internalType":"address","name":"sender","type":"address"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"6080604052348015600e575f5ffd5b506101fc8061001c5f395ff3fe608060405234801561000f575f5ffd5b5060043610610029575f3560e01c8063570e1a361461002d575b5f5ffd5b61004061003b3660046100e4565b61005c565b6040516001600160a01b03909116815260200160405180910390f35b5f8061006b6014828587610152565b61007491610179565b60601c90505f6100878460148188610152565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92018290525084519495509360209350849250905082850182875af190505f519350806100db575f93505b50505092915050565b5f5f602083850312156100f5575f5ffd5b823567ffffffffffffffff81111561010b575f5ffd5b8301601f8101851361011b575f5ffd5b803567ffffffffffffffff811115610131575f5ffd5b856020828401011115610142575f5ffd5b6020919091019590945092505050565b5f5f85851115610160575f5ffd5b8386111561016c575f5ffd5b5050820193919092039150565b80356bffffffffffffffffffffffff1981169060148410156101bf576bffffffffffffffffffffffff196bffffffffffffffffffffffff198560140360031b1b82161691505b509291505056fea26469706673582212209938c009b357043baf7aff0313dd20f9875403ca336f40b0f4f820e50a3a41f564736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FC DUP1 PUSH2 0x1C PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x570E1A36 EQ PUSH2 0x2D JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x40 PUSH2 0x3B CALLDATASIZE PUSH1 0x4 PUSH2 0xE4 JUMP JUMPDEST PUSH2 0x5C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 DUP1 PUSH2 0x6B PUSH1 0x14 DUP3 DUP6 DUP8 PUSH2 0x152 JUMP JUMPDEST PUSH2 0x74 SWAP2 PUSH2 0x179 JUMP JUMPDEST PUSH1 0x60 SHR SWAP1 POP PUSH0 PUSH2 0x87 DUP5 PUSH1 0x14 DUP2 DUP9 PUSH2 0x152 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 DUP5 MLOAD SWAP5 SWAP6 POP SWAP4 PUSH1 0x20 SWAP4 POP DUP5 SWAP3 POP SWAP1 POP DUP3 DUP6 ADD DUP3 DUP8 GAS CALL SWAP1 POP PUSH0 MLOAD SWAP4 POP DUP1 PUSH2 0xDB JUMPI PUSH0 SWAP4 POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x11B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x131 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x142 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x160 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x16C 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 0x1BF 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 INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP10 CODESIZE 0xC0 MULMOD 0xB3 JUMPI DIV EXTCODESIZE 0xAF PUSH27 0xFF0313DD20F9875403CA336F40B0F4F820E50A3A41F564736F6C63 NUMBER STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"205:1026:4:-:0;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@createSender_2552":{"entryPoint":92,"id":2552,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes_calldata_ptr":{"entryPoint":228,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":338,"id":null,"parameterSlots":4,"returnSlots":2},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20":{"entryPoint":377,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:1525:125","nodeType":"YulBlock","src":"0:1525:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"103:497:125","nodeType":"YulBlock","src":"103:497:125","statements":[{"body":{"nativeSrc":"149:16:125","nodeType":"YulBlock","src":"149:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"158:1:125","nodeType":"YulLiteral","src":"158:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"161:1:125","nodeType":"YulLiteral","src":"161:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"151:6:125","nodeType":"YulIdentifier","src":"151:6:125"},"nativeSrc":"151:12:125","nodeType":"YulFunctionCall","src":"151:12:125"},"nativeSrc":"151:12:125","nodeType":"YulExpressionStatement","src":"151:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"124:7:125","nodeType":"YulIdentifier","src":"124:7:125"},{"name":"headStart","nativeSrc":"133:9:125","nodeType":"YulIdentifier","src":"133:9:125"}],"functionName":{"name":"sub","nativeSrc":"120:3:125","nodeType":"YulIdentifier","src":"120:3:125"},"nativeSrc":"120:23:125","nodeType":"YulFunctionCall","src":"120:23:125"},{"kind":"number","nativeSrc":"145:2:125","nodeType":"YulLiteral","src":"145:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"116:3:125","nodeType":"YulIdentifier","src":"116:3:125"},"nativeSrc":"116:32:125","nodeType":"YulFunctionCall","src":"116:32:125"},"nativeSrc":"113:52:125","nodeType":"YulIf","src":"113:52:125"},{"nativeSrc":"174:37:125","nodeType":"YulVariableDeclaration","src":"174:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"201:9:125","nodeType":"YulIdentifier","src":"201:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"188:12:125","nodeType":"YulIdentifier","src":"188:12:125"},"nativeSrc":"188:23:125","nodeType":"YulFunctionCall","src":"188:23:125"},"variables":[{"name":"offset","nativeSrc":"178:6:125","nodeType":"YulTypedName","src":"178:6:125","type":""}]},{"body":{"nativeSrc":"254:16:125","nodeType":"YulBlock","src":"254:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:125","nodeType":"YulLiteral","src":"263:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:125","nodeType":"YulLiteral","src":"266:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:125","nodeType":"YulIdentifier","src":"256:6:125"},"nativeSrc":"256:12:125","nodeType":"YulFunctionCall","src":"256:12:125"},"nativeSrc":"256:12:125","nodeType":"YulExpressionStatement","src":"256:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"226:6:125","nodeType":"YulIdentifier","src":"226:6:125"},{"kind":"number","nativeSrc":"234:18:125","nodeType":"YulLiteral","src":"234:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"223:2:125","nodeType":"YulIdentifier","src":"223:2:125"},"nativeSrc":"223:30:125","nodeType":"YulFunctionCall","src":"223:30:125"},"nativeSrc":"220:50:125","nodeType":"YulIf","src":"220:50:125"},{"nativeSrc":"279:32:125","nodeType":"YulVariableDeclaration","src":"279:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"293:9:125","nodeType":"YulIdentifier","src":"293:9:125"},{"name":"offset","nativeSrc":"304:6:125","nodeType":"YulIdentifier","src":"304:6:125"}],"functionName":{"name":"add","nativeSrc":"289:3:125","nodeType":"YulIdentifier","src":"289:3:125"},"nativeSrc":"289:22:125","nodeType":"YulFunctionCall","src":"289:22:125"},"variables":[{"name":"_1","nativeSrc":"283:2:125","nodeType":"YulTypedName","src":"283:2:125","type":""}]},{"body":{"nativeSrc":"359:16:125","nodeType":"YulBlock","src":"359:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"368:1:125","nodeType":"YulLiteral","src":"368:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"371:1:125","nodeType":"YulLiteral","src":"371:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"361:6:125","nodeType":"YulIdentifier","src":"361:6:125"},"nativeSrc":"361:12:125","nodeType":"YulFunctionCall","src":"361:12:125"},"nativeSrc":"361:12:125","nodeType":"YulExpressionStatement","src":"361:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"338:2:125","nodeType":"YulIdentifier","src":"338:2:125"},{"kind":"number","nativeSrc":"342:4:125","nodeType":"YulLiteral","src":"342:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"334:3:125","nodeType":"YulIdentifier","src":"334:3:125"},"nativeSrc":"334:13:125","nodeType":"YulFunctionCall","src":"334:13:125"},{"name":"dataEnd","nativeSrc":"349:7:125","nodeType":"YulIdentifier","src":"349:7:125"}],"functionName":{"name":"slt","nativeSrc":"330:3:125","nodeType":"YulIdentifier","src":"330:3:125"},"nativeSrc":"330:27:125","nodeType":"YulFunctionCall","src":"330:27:125"}],"functionName":{"name":"iszero","nativeSrc":"323:6:125","nodeType":"YulIdentifier","src":"323:6:125"},"nativeSrc":"323:35:125","nodeType":"YulFunctionCall","src":"323:35:125"},"nativeSrc":"320:55:125","nodeType":"YulIf","src":"320:55:125"},{"nativeSrc":"384:30:125","nodeType":"YulVariableDeclaration","src":"384:30:125","value":{"arguments":[{"name":"_1","nativeSrc":"411:2:125","nodeType":"YulIdentifier","src":"411:2:125"}],"functionName":{"name":"calldataload","nativeSrc":"398:12:125","nodeType":"YulIdentifier","src":"398:12:125"},"nativeSrc":"398:16:125","nodeType":"YulFunctionCall","src":"398:16:125"},"variables":[{"name":"length","nativeSrc":"388:6:125","nodeType":"YulTypedName","src":"388:6:125","type":""}]},{"body":{"nativeSrc":"457:16:125","nodeType":"YulBlock","src":"457:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"466:1:125","nodeType":"YulLiteral","src":"466:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"469:1:125","nodeType":"YulLiteral","src":"469:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"459:6:125","nodeType":"YulIdentifier","src":"459:6:125"},"nativeSrc":"459:12:125","nodeType":"YulFunctionCall","src":"459:12:125"},"nativeSrc":"459:12:125","nodeType":"YulExpressionStatement","src":"459:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"429:6:125","nodeType":"YulIdentifier","src":"429:6:125"},{"kind":"number","nativeSrc":"437:18:125","nodeType":"YulLiteral","src":"437:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"426:2:125","nodeType":"YulIdentifier","src":"426:2:125"},"nativeSrc":"426:30:125","nodeType":"YulFunctionCall","src":"426:30:125"},"nativeSrc":"423:50:125","nodeType":"YulIf","src":"423:50:125"},{"body":{"nativeSrc":"523:16:125","nodeType":"YulBlock","src":"523:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"532:1:125","nodeType":"YulLiteral","src":"532:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"535:1:125","nodeType":"YulLiteral","src":"535:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"525:6:125","nodeType":"YulIdentifier","src":"525:6:125"},"nativeSrc":"525:12:125","nodeType":"YulFunctionCall","src":"525:12:125"},"nativeSrc":"525:12:125","nodeType":"YulExpressionStatement","src":"525:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"496:2:125","nodeType":"YulIdentifier","src":"496:2:125"},{"name":"length","nativeSrc":"500:6:125","nodeType":"YulIdentifier","src":"500:6:125"}],"functionName":{"name":"add","nativeSrc":"492:3:125","nodeType":"YulIdentifier","src":"492:3:125"},"nativeSrc":"492:15:125","nodeType":"YulFunctionCall","src":"492:15:125"},{"kind":"number","nativeSrc":"509:2:125","nodeType":"YulLiteral","src":"509:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"488:3:125","nodeType":"YulIdentifier","src":"488:3:125"},"nativeSrc":"488:24:125","nodeType":"YulFunctionCall","src":"488:24:125"},{"name":"dataEnd","nativeSrc":"514:7:125","nodeType":"YulIdentifier","src":"514:7:125"}],"functionName":{"name":"gt","nativeSrc":"485:2:125","nodeType":"YulIdentifier","src":"485:2:125"},"nativeSrc":"485:37:125","nodeType":"YulFunctionCall","src":"485:37:125"},"nativeSrc":"482:57:125","nodeType":"YulIf","src":"482:57:125"},{"nativeSrc":"548:21:125","nodeType":"YulAssignment","src":"548:21:125","value":{"arguments":[{"name":"_1","nativeSrc":"562:2:125","nodeType":"YulIdentifier","src":"562:2:125"},{"kind":"number","nativeSrc":"566:2:125","nodeType":"YulLiteral","src":"566:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"558:3:125","nodeType":"YulIdentifier","src":"558:3:125"},"nativeSrc":"558:11:125","nodeType":"YulFunctionCall","src":"558:11:125"},"variableNames":[{"name":"value0","nativeSrc":"548:6:125","nodeType":"YulIdentifier","src":"548:6:125"}]},{"nativeSrc":"578:16:125","nodeType":"YulAssignment","src":"578:16:125","value":{"name":"length","nativeSrc":"588:6:125","nodeType":"YulIdentifier","src":"588:6:125"},"variableNames":[{"name":"value1","nativeSrc":"578:6:125","nodeType":"YulIdentifier","src":"578:6:125"}]}]},"name":"abi_decode_tuple_t_bytes_calldata_ptr","nativeSrc":"14:586:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"61:9:125","nodeType":"YulTypedName","src":"61:9:125","type":""},{"name":"dataEnd","nativeSrc":"72:7:125","nodeType":"YulTypedName","src":"72:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"84:6:125","nodeType":"YulTypedName","src":"84:6:125","type":""},{"name":"value1","nativeSrc":"92:6:125","nodeType":"YulTypedName","src":"92:6:125","type":""}],"src":"14:586:125"},{"body":{"nativeSrc":"706:102:125","nodeType":"YulBlock","src":"706:102:125","statements":[{"nativeSrc":"716:26:125","nodeType":"YulAssignment","src":"716:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"728:9:125","nodeType":"YulIdentifier","src":"728:9:125"},{"kind":"number","nativeSrc":"739:2:125","nodeType":"YulLiteral","src":"739:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"724:3:125","nodeType":"YulIdentifier","src":"724:3:125"},"nativeSrc":"724:18:125","nodeType":"YulFunctionCall","src":"724:18:125"},"variableNames":[{"name":"tail","nativeSrc":"716:4:125","nodeType":"YulIdentifier","src":"716:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"758:9:125","nodeType":"YulIdentifier","src":"758:9:125"},{"arguments":[{"name":"value0","nativeSrc":"773:6:125","nodeType":"YulIdentifier","src":"773:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"789:3:125","nodeType":"YulLiteral","src":"789:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"794:1:125","nodeType":"YulLiteral","src":"794:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"785:3:125","nodeType":"YulIdentifier","src":"785:3:125"},"nativeSrc":"785:11:125","nodeType":"YulFunctionCall","src":"785:11:125"},{"kind":"number","nativeSrc":"798:1:125","nodeType":"YulLiteral","src":"798:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"781:3:125","nodeType":"YulIdentifier","src":"781:3:125"},"nativeSrc":"781:19:125","nodeType":"YulFunctionCall","src":"781:19:125"}],"functionName":{"name":"and","nativeSrc":"769:3:125","nodeType":"YulIdentifier","src":"769:3:125"},"nativeSrc":"769:32:125","nodeType":"YulFunctionCall","src":"769:32:125"}],"functionName":{"name":"mstore","nativeSrc":"751:6:125","nodeType":"YulIdentifier","src":"751:6:125"},"nativeSrc":"751:51:125","nodeType":"YulFunctionCall","src":"751:51:125"},"nativeSrc":"751:51:125","nodeType":"YulExpressionStatement","src":"751:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"605:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"675:9:125","nodeType":"YulTypedName","src":"675:9:125","type":""},{"name":"value0","nativeSrc":"686:6:125","nodeType":"YulTypedName","src":"686:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"697:4:125","nodeType":"YulTypedName","src":"697:4:125","type":""}],"src":"605:203:125"},{"body":{"nativeSrc":"943:201:125","nodeType":"YulBlock","src":"943:201:125","statements":[{"body":{"nativeSrc":"981:16:125","nodeType":"YulBlock","src":"981:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"990:1:125","nodeType":"YulLiteral","src":"990:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"993:1:125","nodeType":"YulLiteral","src":"993:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"983:6:125","nodeType":"YulIdentifier","src":"983:6:125"},"nativeSrc":"983:12:125","nodeType":"YulFunctionCall","src":"983:12:125"},"nativeSrc":"983:12:125","nodeType":"YulExpressionStatement","src":"983:12:125"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"959:10:125","nodeType":"YulIdentifier","src":"959:10:125"},{"name":"endIndex","nativeSrc":"971:8:125","nodeType":"YulIdentifier","src":"971:8:125"}],"functionName":{"name":"gt","nativeSrc":"956:2:125","nodeType":"YulIdentifier","src":"956:2:125"},"nativeSrc":"956:24:125","nodeType":"YulFunctionCall","src":"956:24:125"},"nativeSrc":"953:44:125","nodeType":"YulIf","src":"953:44:125"},{"body":{"nativeSrc":"1030:16:125","nodeType":"YulBlock","src":"1030:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1039:1:125","nodeType":"YulLiteral","src":"1039:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1042:1:125","nodeType":"YulLiteral","src":"1042:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1032:6:125","nodeType":"YulIdentifier","src":"1032:6:125"},"nativeSrc":"1032:12:125","nodeType":"YulFunctionCall","src":"1032:12:125"},"nativeSrc":"1032:12:125","nodeType":"YulExpressionStatement","src":"1032:12:125"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"1012:8:125","nodeType":"YulIdentifier","src":"1012:8:125"},{"name":"length","nativeSrc":"1022:6:125","nodeType":"YulIdentifier","src":"1022:6:125"}],"functionName":{"name":"gt","nativeSrc":"1009:2:125","nodeType":"YulIdentifier","src":"1009:2:125"},"nativeSrc":"1009:20:125","nodeType":"YulFunctionCall","src":"1009:20:125"},"nativeSrc":"1006:40:125","nodeType":"YulIf","src":"1006:40:125"},{"nativeSrc":"1055:36:125","nodeType":"YulAssignment","src":"1055:36:125","value":{"arguments":[{"name":"offset","nativeSrc":"1072:6:125","nodeType":"YulIdentifier","src":"1072:6:125"},{"name":"startIndex","nativeSrc":"1080:10:125","nodeType":"YulIdentifier","src":"1080:10:125"}],"functionName":{"name":"add","nativeSrc":"1068:3:125","nodeType":"YulIdentifier","src":"1068:3:125"},"nativeSrc":"1068:23:125","nodeType":"YulFunctionCall","src":"1068:23:125"},"variableNames":[{"name":"offsetOut","nativeSrc":"1055:9:125","nodeType":"YulIdentifier","src":"1055:9:125"}]},{"nativeSrc":"1100:38:125","nodeType":"YulAssignment","src":"1100:38:125","value":{"arguments":[{"name":"endIndex","nativeSrc":"1117:8:125","nodeType":"YulIdentifier","src":"1117:8:125"},{"name":"startIndex","nativeSrc":"1127:10:125","nodeType":"YulIdentifier","src":"1127:10:125"}],"functionName":{"name":"sub","nativeSrc":"1113:3:125","nodeType":"YulIdentifier","src":"1113:3:125"},"nativeSrc":"1113:25:125","nodeType":"YulFunctionCall","src":"1113:25:125"},"variableNames":[{"name":"lengthOut","nativeSrc":"1100:9:125","nodeType":"YulIdentifier","src":"1100:9:125"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"813:331:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"877:6:125","nodeType":"YulTypedName","src":"877:6:125","type":""},{"name":"length","nativeSrc":"885:6:125","nodeType":"YulTypedName","src":"885:6:125","type":""},{"name":"startIndex","nativeSrc":"893:10:125","nodeType":"YulTypedName","src":"893:10:125","type":""},{"name":"endIndex","nativeSrc":"905:8:125","nodeType":"YulTypedName","src":"905:8:125","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"918:9:125","nodeType":"YulTypedName","src":"918:9:125","type":""},{"name":"lengthOut","nativeSrc":"929:9:125","nodeType":"YulTypedName","src":"929:9:125","type":""}],"src":"813:331:125"},{"body":{"nativeSrc":"1250:273:125","nodeType":"YulBlock","src":"1250:273:125","statements":[{"nativeSrc":"1260:29:125","nodeType":"YulVariableDeclaration","src":"1260:29:125","value":{"arguments":[{"name":"array","nativeSrc":"1283:5:125","nodeType":"YulIdentifier","src":"1283:5:125"}],"functionName":{"name":"calldataload","nativeSrc":"1270:12:125","nodeType":"YulIdentifier","src":"1270:12:125"},"nativeSrc":"1270:19:125","nodeType":"YulFunctionCall","src":"1270:19:125"},"variables":[{"name":"_1","nativeSrc":"1264:2:125","nodeType":"YulTypedName","src":"1264:2:125","type":""}]},{"nativeSrc":"1298:49:125","nodeType":"YulAssignment","src":"1298:49:125","value":{"arguments":[{"name":"_1","nativeSrc":"1311:2:125","nodeType":"YulIdentifier","src":"1311:2:125"},{"arguments":[{"kind":"number","nativeSrc":"1319:26:125","nodeType":"YulLiteral","src":"1319:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"1315:3:125","nodeType":"YulIdentifier","src":"1315:3:125"},"nativeSrc":"1315:31:125","nodeType":"YulFunctionCall","src":"1315:31:125"}],"functionName":{"name":"and","nativeSrc":"1307:3:125","nodeType":"YulIdentifier","src":"1307:3:125"},"nativeSrc":"1307:40:125","nodeType":"YulFunctionCall","src":"1307:40:125"},"variableNames":[{"name":"value","nativeSrc":"1298:5:125","nodeType":"YulIdentifier","src":"1298:5:125"}]},{"body":{"nativeSrc":"1379:138:125","nodeType":"YulBlock","src":"1379:138:125","statements":[{"nativeSrc":"1393:114:125","nodeType":"YulAssignment","src":"1393:114:125","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1410:2:125","nodeType":"YulIdentifier","src":"1410:2:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1422:1:125","nodeType":"YulLiteral","src":"1422:1:125","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"1429:2:125","nodeType":"YulLiteral","src":"1429:2:125","type":"","value":"20"},{"name":"len","nativeSrc":"1433:3:125","nodeType":"YulIdentifier","src":"1433:3:125"}],"functionName":{"name":"sub","nativeSrc":"1425:3:125","nodeType":"YulIdentifier","src":"1425:3:125"},"nativeSrc":"1425:12:125","nodeType":"YulFunctionCall","src":"1425:12:125"}],"functionName":{"name":"shl","nativeSrc":"1418:3:125","nodeType":"YulIdentifier","src":"1418:3:125"},"nativeSrc":"1418:20:125","nodeType":"YulFunctionCall","src":"1418:20:125"},{"arguments":[{"kind":"number","nativeSrc":"1444:26:125","nodeType":"YulLiteral","src":"1444:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"1440:3:125","nodeType":"YulIdentifier","src":"1440:3:125"},"nativeSrc":"1440:31:125","nodeType":"YulFunctionCall","src":"1440:31:125"}],"functionName":{"name":"shl","nativeSrc":"1414:3:125","nodeType":"YulIdentifier","src":"1414:3:125"},"nativeSrc":"1414:58:125","nodeType":"YulFunctionCall","src":"1414:58:125"}],"functionName":{"name":"and","nativeSrc":"1406:3:125","nodeType":"YulIdentifier","src":"1406:3:125"},"nativeSrc":"1406:67:125","nodeType":"YulFunctionCall","src":"1406:67:125"},{"arguments":[{"kind":"number","nativeSrc":"1479:26:125","nodeType":"YulLiteral","src":"1479:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"1475:3:125","nodeType":"YulIdentifier","src":"1475:3:125"},"nativeSrc":"1475:31:125","nodeType":"YulFunctionCall","src":"1475:31:125"}],"functionName":{"name":"and","nativeSrc":"1402:3:125","nodeType":"YulIdentifier","src":"1402:3:125"},"nativeSrc":"1402:105:125","nodeType":"YulFunctionCall","src":"1402:105:125"},"variableNames":[{"name":"value","nativeSrc":"1393:5:125","nodeType":"YulIdentifier","src":"1393:5:125"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"1362:3:125","nodeType":"YulIdentifier","src":"1362:3:125"},{"kind":"number","nativeSrc":"1367:2:125","nodeType":"YulLiteral","src":"1367:2:125","type":"","value":"20"}],"functionName":{"name":"lt","nativeSrc":"1359:2:125","nodeType":"YulIdentifier","src":"1359:2:125"},"nativeSrc":"1359:11:125","nodeType":"YulFunctionCall","src":"1359:11:125"},"nativeSrc":"1356:161:125","nodeType":"YulIf","src":"1356:161:125"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20","nativeSrc":"1149:374:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"1225:5:125","nodeType":"YulTypedName","src":"1225:5:125","type":""},{"name":"len","nativeSrc":"1232:3:125","nodeType":"YulTypedName","src":"1232:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"1240:5:125","nodeType":"YulTypedName","src":"1240:5:125","type":""}],"src":"1149:374:125"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_bytes_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 _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        value0 := add(_1, 32)\n        value1 := length\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 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}","id":125,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b5060043610610029575f3560e01c8063570e1a361461002d575b5f5ffd5b61004061003b3660046100e4565b61005c565b6040516001600160a01b03909116815260200160405180910390f35b5f8061006b6014828587610152565b61007491610179565b60601c90505f6100878460148188610152565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92018290525084519495509360209350849250905082850182875af190505f519350806100db575f93505b50505092915050565b5f5f602083850312156100f5575f5ffd5b823567ffffffffffffffff81111561010b575f5ffd5b8301601f8101851361011b575f5ffd5b803567ffffffffffffffff811115610131575f5ffd5b856020828401011115610142575f5ffd5b6020919091019590945092505050565b5f5f85851115610160575f5ffd5b8386111561016c575f5ffd5b5050820193919092039150565b80356bffffffffffffffffffffffff1981169060148410156101bf576bffffffffffffffffffffffff196bffffffffffffffffffffffff198560140360031b1b82161691505b509291505056fea26469706673582212209938c009b357043baf7aff0313dd20f9875403ca336f40b0f4f820e50a3a41f564736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x570E1A36 EQ PUSH2 0x2D JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x40 PUSH2 0x3B CALLDATASIZE PUSH1 0x4 PUSH2 0xE4 JUMP JUMPDEST PUSH2 0x5C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 DUP1 PUSH2 0x6B PUSH1 0x14 DUP3 DUP6 DUP8 PUSH2 0x152 JUMP JUMPDEST PUSH2 0x74 SWAP2 PUSH2 0x179 JUMP JUMPDEST PUSH1 0x60 SHR SWAP1 POP PUSH0 PUSH2 0x87 DUP5 PUSH1 0x14 DUP2 DUP9 PUSH2 0x152 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 DUP5 MLOAD SWAP5 SWAP6 POP SWAP4 PUSH1 0x20 SWAP4 POP DUP5 SWAP3 POP SWAP1 POP DUP3 DUP6 ADD DUP3 DUP8 GAS CALL SWAP1 POP PUSH0 MLOAD SWAP4 POP DUP1 PUSH2 0xDB JUMPI PUSH0 SWAP4 POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x11B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x131 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x142 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x160 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x16C 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 0x1BF 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 INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP10 CODESIZE 0xC0 MULMOD 0xB3 JUMPI DIV EXTCODESIZE 0xAF PUSH27 0xFF0313DD20F9875403CA336F40B0F4F820E50A3A41F564736F6C63 NUMBER STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"205:1026:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;576:653;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;769:32:125;;;751:51;;739:2;724:18;576:653:4;;;;;;;;655:14;;715;726:2;655:14;715:8;;:14;:::i;:::-;707:23;;;:::i;:::-;699:32;;;-1:-1:-1;741:25:4;769:13;:8;778:2;769:8;;:13;:::i;:::-;741:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1043:19:4;;741:41;;-1:-1:-1;741:41:4;1099:2;;-1:-1:-1;741:41:4;;-1:-1:-1;1043:19:4;-1:-1:-1;1002:23:4;;;741:41;958:7;935:5;913:202;902:213;;1144:1;1138:8;1128:18;;1170:7;1165:58;;1210:1;1193:19;;1165:58;671:558;;;576:653;;;;:::o;14:586:125:-;84:6;92;145:2;133:9;124:7;120:23;116:32;113:52;;;161:1;158;151:12;113:52;201:9;188:23;234:18;226:6;223:30;220:50;;;266:1;263;256:12;220:50;289:22;;342:4;334:13;;330:27;-1:-1:-1;320:55:125;;371:1;368;361:12;320:55;411:2;398:16;437:18;429:6;426:30;423:50;;;469:1;466;459:12;423:50;514:7;509:2;500:6;496:2;492:15;488:24;485:37;482:57;;;535:1;532;525:12;482:57;566:2;558:11;;;;;588:6;;-1:-1:-1;14:586:125;-1:-1:-1;;;14:586:125:o;813:331::-;918:9;929;971:8;959:10;956:24;953:44;;;993:1;990;983:12;953:44;1022:6;1012:8;1009:20;1006:40;;;1042:1;1039;1032:12;1006:40;-1:-1:-1;;1068:23:125;;;1113:25;;;;;-1:-1:-1;813:331:125:o;1149:374::-;1270:19;;-1:-1:-1;;1307:40:125;;;1367:2;1359:11;;1356:161;;;1479:26;1475:31;1444:26;1440:31;1433:3;1429:2;1425:12;1422:1;1418:20;1414:58;1410:2;1406:67;1402:105;1393:114;;1356:161;;1149:374;;;;:::o"},"methodIdentifiers":{"createSender(bytes)":"570e1a36"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"initCode\",\"type\":\"bytes\"}],\"name\":\"createSender\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"createSender(bytes)\":{\"params\":{\"initCode\":\"- The initCode value from a UserOp. contains 20 bytes of factory address,                   followed by calldata.\"},\"returns\":{\"sender\":\" - The returned address of the created account, or zero address on failure.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"createSender(bytes)\":{\"notice\":\"Call the \\\"initCode\\\" factory to create and return the sender account address.\"}},\"notice\":\"Helper contract for EntryPoint, to call userOp.initCode from a \\\"neutral\\\" address, which is explicitly not the entryPoint itself.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/core/SenderCreator.sol\":\"SenderCreator\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/core/SenderCreator.sol\":{\"keccak256\":\"0xeb95afb6e4cf921c1ed105ecb9f549ca46bee57f68acd1d2f4f84607ac0db5c5\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://d2ac91562f1fcabe4809a1b4256895efebcf46f89e08336a6c09ee2d29733238\",\"dweb:/ipfs/QmPsQnPcCzioPwVtUhxkbnwKPC1bnhHSbAwK9GXVpjN3mH\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@account-abstraction/contracts/core/StakeManager.sol":{"StakeManager":{"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":"","type":"address"}],"name":"deposits","outputs":[{"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"}],"stateMutability":"view","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"},{"stateMutability":"payable","type":"receive"}],"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","deposits(address)":"fc7e286d","getDepositInfo(address)":"5287ce12","unlockStake()":"bb9fe6bf","withdrawStake(address)":"c23a5cea","withdrawTo(address,uint256)":"205c2878"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"\",\"type\":\"address\"}],\"name\":\"deposits\",\"outputs\":[{\"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\"}],\"stateMutability\":\"view\",\"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\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"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.\"},\"deposits(address)\":{\"notice\":\"maps paymaster to their deposits and stakes\"},\"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 a paymaster.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/core/StakeManager.sol\":\"StakeManager\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/core/StakeManager.sol\":{\"keccak256\":\"0x673eb19600058d8642605ca409c9e1d4cab13735564b856270b92c330ffb1b8d\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://06599c57c7075ee8eb5f1710fccca3eb322876b968ec271e1fb34af41510ab2c\",\"dweb:/ipfs/QmVsDEjmZYtzgXa4AYKxbQEYQVh6NBq8GmFJCariBUqK4G\"]},\"@account-abstraction/contracts/interfaces/IStakeManager.sol\":{\"keccak256\":\"0xbe5ca9e7f254d031687419e7b96ef48c9c63e9398bbe992dc72ffc6dc14e0a04\",\"license\":\"GPL-3.0-only\",\"urls\":[\"bzz-raw://1fffec71c38627a26fabb423350148009579f092623fb02b471a12d973763a00\",\"dweb:/ipfs/QmRBi31QEYXHj3x1AnQ2jKa2eziZH1b9av396P3b4dw6bj\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":2565,"contract":"@account-abstraction/contracts/core/StakeManager.sol:StakeManager","label":"deposits","offset":0,"slot":"0","type":"t_mapping(t_address,t_struct(DepositInfo)3673_storage)"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"t_mapping(t_address,t_struct(DepositInfo)3673_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct IStakeManager.DepositInfo)","numberOfBytes":"32","value":"t_struct(DepositInfo)3673_storage"},"t_struct(DepositInfo)3673_storage":{"encoding":"inplace","label":"struct IStakeManager.DepositInfo","members":[{"astId":3664,"contract":"@account-abstraction/contracts/core/StakeManager.sol:StakeManager","label":"deposit","offset":0,"slot":"0","type":"t_uint256"},{"astId":3666,"contract":"@account-abstraction/contracts/core/StakeManager.sol:StakeManager","label":"staked","offset":0,"slot":"1","type":"t_bool"},{"astId":3668,"contract":"@account-abstraction/contracts/core/StakeManager.sol:StakeManager","label":"stake","offset":1,"slot":"1","type":"t_uint112"},{"astId":3670,"contract":"@account-abstraction/contracts/core/StakeManager.sol:StakeManager","label":"unstakeDelaySec","offset":15,"slot":"1","type":"t_uint32"},{"astId":3672,"contract":"@account-abstraction/contracts/core/StakeManager.sol:StakeManager","label":"withdrawTime","offset":19,"slot":"1","type":"t_uint48"}],"numberOfBytes":"64"},"t_uint112":{"encoding":"inplace","label":"uint112","numberOfBytes":"14"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint32":{"encoding":"inplace","label":"uint32","numberOfBytes":"4"},"t_uint48":{"encoding":"inplace","label":"uint48","numberOfBytes":"6"}}}}},"@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":"60a76032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106046575f3560e01c806325093e1b14604a578063b29a8ff4146063578063ede3150214606a575b5f5ffd5b6051602481565b60405190815260200160405180910390f35b6051601481565b605160348156fea26469706673582212202577b59fb1391d31f055a9a0e21a332e66396b73889f5d06155b2143de2e38d464736f6c634300081e0033","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 0x25 PUSH24 0xB59FB1391D31F055A9A0E21A332E66396B73889F5D06155B 0x21 NUMBER 0xDE 0x2E CODESIZE 0xD4 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"282:4714:6:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;282:4714:6;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@PAYMASTER_DATA_OFFSET_2977":{"entryPoint":null,"id":2977,"parameterSlots":0,"returnSlots":0},"@PAYMASTER_POSTOP_GAS_OFFSET_2974":{"entryPoint":null,"id":2974,"parameterSlots":0,"returnSlots":0},"@PAYMASTER_VALIDATION_GAS_OFFSET_2971":{"entryPoint":null,"id":2971,"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:125","nodeType":"YulBlock","src":"0:201:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"123:76:125","nodeType":"YulBlock","src":"123:76:125","statements":[{"nativeSrc":"133:26:125","nodeType":"YulAssignment","src":"133:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"145:9:125","nodeType":"YulIdentifier","src":"145:9:125"},{"kind":"number","nativeSrc":"156:2:125","nodeType":"YulLiteral","src":"156:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"141:3:125","nodeType":"YulIdentifier","src":"141:3:125"},"nativeSrc":"141:18:125","nodeType":"YulFunctionCall","src":"141:18:125"},"variableNames":[{"name":"tail","nativeSrc":"133:4:125","nodeType":"YulIdentifier","src":"133:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"175:9:125","nodeType":"YulIdentifier","src":"175:9:125"},{"name":"value0","nativeSrc":"186:6:125","nodeType":"YulIdentifier","src":"186:6:125"}],"functionName":{"name":"mstore","nativeSrc":"168:6:125","nodeType":"YulIdentifier","src":"168:6:125"},"nativeSrc":"168:25:125","nodeType":"YulFunctionCall","src":"168:25:125"},"nativeSrc":"168:25:125","nodeType":"YulExpressionStatement","src":"168:25:125"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_library_reversed","nativeSrc":"14:185:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"92:9:125","nodeType":"YulTypedName","src":"92:9:125","type":""},{"name":"value0","nativeSrc":"103:6:125","nodeType":"YulTypedName","src":"103:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"114:4:125","nodeType":"YulTypedName","src":"114:4:125","type":""}],"src":"14:185:125"}]},"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":125,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600436106046575f3560e01c806325093e1b14604a578063b29a8ff4146063578063ede3150214606a575b5f5ffd5b6051602481565b60405190815260200160405180910390f35b6051601481565b605160348156fea26469706673582212202577b59fb1391d31f055a9a0e21a332e66396b73889f5d06155b2143de2e38d464736f6c634300081e0033","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 0x25 PUSH24 0xB59FB1391D31F055A9A0E21A332E66396B73889F5D06155B 0x21 NUMBER 0xDE 0x2E CODESIZE 0xD4 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"282:4714:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;380:56;;434:2;380:56;;;;;168:25:125;;;156:2;141:18;380:56:6;;;;;;;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.30+commit.73712a01\"},\"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\":\"prague\",\"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.30+commit.73712a01\"},\"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\":\"prague\",\"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/IAccountExecute.sol":{"IAccountExecute":{"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"}],"name":"executeUserOp","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"executeUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32)":"8dd7712f"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\"}],\"name\":\"executeUserOp\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"executeUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32)\":{\"params\":{\"userOp\":\"- The operation that was just validated.\",\"userOpHash\":\"- Hash of the user's request data.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"executeUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32)\":{\"notice\":\"Account may implement this execute method. passing this methodSig at the beginning of callData will cause the entryPoint to pass the full UserOp (and hash) to the account. The account should skip the methodSig, and use the callData (and optionally, other UserOp fields)\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/interfaces/IAccountExecute.sol\":\"IAccountExecute\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/interfaces/IAccountExecute.sol\":{\"keccak256\":\"0xd3dc32dde1add1fb6377f939ceff6be31c2e21343522311f7b88db666be9ee6c\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://5b8f065171bd32e23b306868189c730f849ce6147f753c59e396e7afcf384577\",\"dweb:/ipfs/QmZpDRNEZ9YNgGgyLQo5yM4bB1FNbtnfDABsChbgSQKXUh\"]},\"@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.30+commit.73712a01\"},\"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\":\"prague\",\"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.30+commit.73712a01\"},\"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\":\"prague\",\"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.30+commit.73712a01\"},\"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\":\"prague\",\"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/IPaymaster.sol":{"IPaymaster":{"abi":[{"inputs":[{"internalType":"enum IPaymaster.PostOpMode","name":"mode","type":"uint8"},{"internalType":"bytes","name":"context","type":"bytes"},{"internalType":"uint256","name":"actualGasCost","type":"uint256"},{"internalType":"uint256","name":"actualUserOpFeePerGas","type":"uint256"}],"name":"postOp","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":"maxCost","type":"uint256"}],"name":"validatePaymasterUserOp","outputs":[{"internalType":"bytes","name":"context","type":"bytes"},{"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":{"postOp(uint8,bytes,uint256,uint256)":"7c627b21","validatePaymasterUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)":"52b7512c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"enum IPaymaster.PostOpMode\",\"name\":\"mode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"context\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"actualGasCost\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"actualUserOpFeePerGas\",\"type\":\"uint256\"}],\"name\":\"postOp\",\"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\":\"maxCost\",\"type\":\"uint256\"}],\"name\":\"validatePaymasterUserOp\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"context\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"validationData\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"postOp(uint8,bytes,uint256,uint256)\":{\"params\":{\"actualGasCost\":\"- Actual gas used so far (without this postOp call).\",\"actualUserOpFeePerGas\":\"- the gas price this UserOp pays. This value is based on the UserOp's maxFeePerGas                        and maxPriorityFee (and basefee)                        It is not the same as tx.gasprice, which is what the bundler pays.\",\"context\":\"- The context value returned by validatePaymasterUserOp\",\"mode\":\"- Enum with the following options:                        opSucceeded - User operation succeeded.                        opReverted  - User op reverted. The paymaster still has to pay for gas.                        postOpReverted - never passed in a call to postOp().\"}},\"validatePaymasterUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"params\":{\"maxCost\":\"- The maximum cost of this transaction (based on maximum gas and gas price from userOp).\",\"userOp\":\"- The user operation.\",\"userOpHash\":\"- Hash of the user's request data.\"},\"returns\":{\"context\":\"       - Value to send to a postOp. Zero length to signify postOp is not required.\",\"validationData\":\"- Signature and time-range of this operation, encoded the same as the return                          value of validateUserOperation.                          <20-byte> sigAuthorizer - 0 for valid signature, 1 to mark signature failure,                                                    other values are invalid for paymaster.                          <6-byte> validUntil - last timestamp this operation is valid. 0 for \\\"indefinite\\\"                          <6-byte> validAfter - first timestamp this operation is valid                          Note that the validation code cannot use block.timestamp (or block.number) directly.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"postOp(uint8,bytes,uint256,uint256)\":{\"notice\":\"Post-operation handler. Must verify sender is the entryPoint.\"},\"validatePaymasterUserOp((address,uint256,bytes,bytes,bytes32,uint256,bytes32,bytes,bytes),bytes32,uint256)\":{\"notice\":\"Payment validation: check if paymaster agrees to pay. Must verify sender is the entryPoint. Revert to reject this request. Note that bundlers will reject this method if it changes the state, unless the paymaster is trusted (whitelisted). The paymaster pre-pays using its deposit, and receive back a refund after the postOp method returns.\"}},\"notice\":\"The interface exposed by a paymaster contract, who agrees to pay the gas for user's operations. A paymaster must hold a stake to cover the required entrypoint stake and also the gas for the transaction.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/interfaces/IPaymaster.sol\":\"IPaymaster\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/interfaces/IPaymaster.sol\":{\"keccak256\":\"0x49d8dbf8a85b006bcd89bbc40e4e9e113997cc016007de85263bdae70572d07f\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://bc0d83804c1b795d5c216b3518cd176c48f90db28550f267cbd89746d6b476c8\",\"dweb:/ipfs/QmNdCm4c6hnt7f6Q8q21QjtCNZWWRUaMVEYnQHEv68VnKt\"]},\"@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/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.30+commit.73712a01\"},\"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\":\"prague\",\"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}}},"@account-abstraction/contracts/utils/Exec.sol":{"Exec":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220bd2f42deb3a37157353718fa2fb8d55a3065a1961d42767ce66ad45ef717bab164736f6c634300081e0033","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 0xBD 0x2F TIMESTAMP 0xDE 0xB3 LOG3 PUSH18 0x57353718FA2FB8D55A3065A1961D42767CE6 PUSH11 0xD45EF717BAB164736F6C63 NUMBER STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"203:1839:15:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;203:1839:15;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220bd2f42deb3a37157353718fa2fb8d55a3065a1961d42767ce66ad45ef717bab164736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBD 0x2F TIMESTAMP 0xDE 0xB3 LOG3 PUSH18 0x57353718FA2FB8D55A3065A1961D42767CE6 PUSH11 0xD45EF717BAB164736F6C63 NUMBER STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"203:1839:15:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"Utility functions helpful when making different kinds of contract calls in Solidity.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@account-abstraction/contracts/utils/Exec.sol\":\"Exec\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@account-abstraction/contracts/utils/Exec.sol\":{\"keccak256\":\"0x86b1b1cd11158dddb9d381040c57fdc643c74b5e4eed3e7e036f32452672ad74\",\"license\":\"LGPL-3.0-only\",\"urls\":[\"bzz-raw://ad88663b6c76df73cf09a272cf333d038df7bb4c51281284b572bf9b46e1cd77\",\"dweb:/ipfs/QmVKxYF8avyPBtqejVhFCM2CuHsfpsCh7TsPqkBLtrgwJQ\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/access-managed-proxy/contracts/AMPUtils.sol":{"AMPUtils":{"abi":[{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"AccessManagedUnauthorized","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220706f85329afd92eb084fd58d0817ecdf5dc94acd4d44ef60bae0ab96e66cca3564736f6c634300081e0033","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 PUSH17 0x6F85329AFD92EB084FD58D0817ECDF5DC9 BLOBBASEFEE 0xCD 0x4D PREVRANDAO 0xEF PUSH1 0xBA RJUMP 0xAB96 DUPN 0x6C 0xCA CALLDATALOAD PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"394:3043:16:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;394:3043:16;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220706f85329afd92eb084fd58d0817ecdf5dc94acd4d44ef60bae0ab96e66cca3564736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH17 0x6F85329AFD92EB084FD58D0817ECDF5DC9 BLOBBASEFEE 0xCD 0x4D PREVRANDAO 0xEF PUSH1 0xBA RJUMP 0xAB96 DUPN 0x6C 0xCA CALLDATALOAD PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"394:3043:16:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"AccessManagedUnauthorized\",\"type\":\"error\"}],\"devdoc\":{\"author\":\"Ensuro\",\"details\":\"Utility functions for doing custom access control rules, for contracts deployed      with AccessManagedProxy\",\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"AccessManagedProxyStorageLocation\":{\"details\":\"Computed as: `keccak256(    abi.encode(uint256(keccak256(\\\"ensuro.storage.AccessManagedProxy\\\")) - 1) ) & ~bytes32(uint256(0xff))\"}},\"title\":\"AMPUtils\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/access-managed-proxy/contracts/AMPUtils.sol\":\"AMPUtils\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/access-managed-proxy/contracts/AMPUtils.sol\":{\"keccak256\":\"0x3f25097d759aa89ce9a7a94f98b854a3dc23c51f7f895b95a8d489e74d5f1d98\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://2912cf8c79b973d07fbb741e7d1048026f0a71489df2adf97552b83b23b427d7\",\"dweb:/ipfs/QmRTfFaqy72p4RfY99hKM1K9wH5kxaTnikH5VJjpL7K7sD\"]},\"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol\":{\"keccak256\":\"0xdd762bad2f6ad362f5a38fb333d2a953f6c9d0beea122dbaef0e333a7b83a054\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://a2bb86de08187cee5956393ca2cf096a09eb6ac694471e436ca12e377d97cb40\",\"dweb:/ipfs/Qmf6cNjug4swjsvTJYjbzhMMfAfSFdUuyJjkEf3b1cu2hn\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x71e3e350e83af0018a1683cc2ce4c13893cc01f78e5c9c305f6828608ffcfa18\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a7b521c9999007715c9bdedffaad2ef7d2ccfa07bca2a39ba9e0c2e8a944a63\",\"dweb:/ipfs/QmamPG6Y1p7iZh4cF8Hfp3oufowSRyB3S3DisTKkmVWSai\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol":{"AccessManagedProxy":{"abi":[{"inputs":[{"internalType":"address","name":"implementation","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"},{"internalType":"contract IAccessManager","name":"accessManager","type":"address"},{"internalType":"bytes4[]","name":"passThruMethods","type":"bytes4[]"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"authority","type":"address"}],"name":"AccessManagedInvalidAuthority","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"AccessManagedUnauthorized","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"authority","type":"address"}],"name":"AuthorityUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes4[]","name":"newPassThruMethods","type":"bytes4[]"}],"name":"PassThruMethodsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"ACCESS_MANAGER","outputs":[{"internalType":"contract IAccessManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PASS_THRU_METHODS","outputs":[{"internalType":"bytes4[]","name":"methods","type":"bytes4[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"authority","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_22813":{"entryPoint":null,"id":22813,"parameterSlots":2,"returnSlots":0},"@_4124":{"entryPoint":null,"id":4124,"parameterSlots":4,"returnSlots":0},"@_4196":{"entryPoint":null,"id":4196,"parameterSlots":2,"returnSlots":0},"@_checkNonPayable_23119":{"entryPoint":965,"id":23119,"parameterSlots":0,"returnSlots":0},"@_setImplementation_22899":{"entryPoint":686,"id":22899,"parameterSlots":1,"returnSlots":0},"@bubbleRevert_26962":{"entryPoint":1042,"id":26962,"parameterSlots":0,"returnSlots":0},"@delegatecallNoReturn_26924":{"entryPoint":998,"id":26924,"parameterSlots":2,"returnSlots":1},"@functionDelegateCall_25956":{"entryPoint":804,"id":25956,"parameterSlots":2,"returnSlots":1},"@getAccessManagedProxyStorage_3873":{"entryPoint":null,"id":3873,"parameterSlots":0,"returnSlots":1},"@getAddressSlot_31145":{"entryPoint":null,"id":31145,"parameterSlots":1,"returnSlots":1},"@returnDataSize_26948":{"entryPoint":null,"id":26948,"parameterSlots":0,"returnSlots":1},"@returnData_26956":{"entryPoint":1017,"id":26956,"parameterSlots":0,"returnSlots":1},"@setAccessManager_3914":{"entryPoint":179,"id":3914,"parameterSlots":1,"returnSlots":0},"@setPassThruMethods_3977":{"entryPoint":334,"id":3977,"parameterSlots":1,"returnSlots":0},"@upgradeToAndCall_22935":{"entryPoint":85,"id":22935,"parameterSlots":2,"returnSlots":0},"abi_decode_array_bytes4_dyn_fromMemory":{"entryPoint":1349,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_contract_IAccessManager_fromMemory":{"entryPoint":1333,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_memory_ptrt_contract$_IAccessManager_$22178t_array$_t_bytes4_$dyn_memory_ptr_fromMemory":{"entryPoint":1497,"id":null,"parameterSlots":2,"returnSlots":4},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_bytes4_$dyn_memory_ptr__to_t_array$_t_bytes4_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":1741,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_memory":{"entryPoint":1285,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x32":{"entryPoint":1721,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":1265,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":1242,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:3794:125","nodeType":"YulBlock","src":"0:3794:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"59:86:125","nodeType":"YulBlock","src":"59:86:125","statements":[{"body":{"nativeSrc":"123:16:125","nodeType":"YulBlock","src":"123:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:125","nodeType":"YulLiteral","src":"132:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:125","nodeType":"YulLiteral","src":"135:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:125","nodeType":"YulIdentifier","src":"125:6:125"},"nativeSrc":"125:12:125","nodeType":"YulFunctionCall","src":"125:12:125"},"nativeSrc":"125:12:125","nodeType":"YulExpressionStatement","src":"125:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:125","nodeType":"YulIdentifier","src":"82:5:125"},{"arguments":[{"name":"value","nativeSrc":"93:5:125","nodeType":"YulIdentifier","src":"93:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:125","nodeType":"YulLiteral","src":"108:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:125","nodeType":"YulLiteral","src":"113:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:125","nodeType":"YulIdentifier","src":"104:3:125"},"nativeSrc":"104:11:125","nodeType":"YulFunctionCall","src":"104:11:125"},{"kind":"number","nativeSrc":"117:1:125","nodeType":"YulLiteral","src":"117:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:125","nodeType":"YulIdentifier","src":"100:3:125"},"nativeSrc":"100:19:125","nodeType":"YulFunctionCall","src":"100:19:125"}],"functionName":{"name":"and","nativeSrc":"89:3:125","nodeType":"YulIdentifier","src":"89:3:125"},"nativeSrc":"89:31:125","nodeType":"YulFunctionCall","src":"89:31:125"}],"functionName":{"name":"eq","nativeSrc":"79:2:125","nodeType":"YulIdentifier","src":"79:2:125"},"nativeSrc":"79:42:125","nodeType":"YulFunctionCall","src":"79:42:125"}],"functionName":{"name":"iszero","nativeSrc":"72:6:125","nodeType":"YulIdentifier","src":"72:6:125"},"nativeSrc":"72:50:125","nodeType":"YulFunctionCall","src":"72:50:125"},"nativeSrc":"69:70:125","nodeType":"YulIf","src":"69:70:125"}]},"name":"validator_revert_address","nativeSrc":"14:131:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:125","nodeType":"YulTypedName","src":"48:5:125","type":""}],"src":"14:131:125"},{"body":{"nativeSrc":"182:95:125","nodeType":"YulBlock","src":"182:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"199:1:125","nodeType":"YulLiteral","src":"199:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"206:3:125","nodeType":"YulLiteral","src":"206:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"211:10:125","nodeType":"YulLiteral","src":"211:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"202:3:125","nodeType":"YulIdentifier","src":"202:3:125"},"nativeSrc":"202:20:125","nodeType":"YulFunctionCall","src":"202:20:125"}],"functionName":{"name":"mstore","nativeSrc":"192:6:125","nodeType":"YulIdentifier","src":"192:6:125"},"nativeSrc":"192:31:125","nodeType":"YulFunctionCall","src":"192:31:125"},"nativeSrc":"192:31:125","nodeType":"YulExpressionStatement","src":"192:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"239:1:125","nodeType":"YulLiteral","src":"239:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"242:4:125","nodeType":"YulLiteral","src":"242:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"232:6:125","nodeType":"YulIdentifier","src":"232:6:125"},"nativeSrc":"232:15:125","nodeType":"YulFunctionCall","src":"232:15:125"},"nativeSrc":"232:15:125","nodeType":"YulExpressionStatement","src":"232:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:125","nodeType":"YulLiteral","src":"263:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"266:4:125","nodeType":"YulLiteral","src":"266:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"256:6:125","nodeType":"YulIdentifier","src":"256:6:125"},"nativeSrc":"256:15:125","nodeType":"YulFunctionCall","src":"256:15:125"},"nativeSrc":"256:15:125","nodeType":"YulExpressionStatement","src":"256:15:125"}]},"name":"panic_error_0x41","nativeSrc":"150:127:125","nodeType":"YulFunctionDefinition","src":"150:127:125"},{"body":{"nativeSrc":"327:230:125","nodeType":"YulBlock","src":"327:230:125","statements":[{"nativeSrc":"337:19:125","nodeType":"YulAssignment","src":"337:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"353:2:125","nodeType":"YulLiteral","src":"353:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"347:5:125","nodeType":"YulIdentifier","src":"347:5:125"},"nativeSrc":"347:9:125","nodeType":"YulFunctionCall","src":"347:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"337:6:125","nodeType":"YulIdentifier","src":"337:6:125"}]},{"nativeSrc":"365:58:125","nodeType":"YulVariableDeclaration","src":"365:58:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"387:6:125","nodeType":"YulIdentifier","src":"387:6:125"},{"arguments":[{"arguments":[{"name":"size","nativeSrc":"403:4:125","nodeType":"YulIdentifier","src":"403:4:125"},{"kind":"number","nativeSrc":"409:2:125","nodeType":"YulLiteral","src":"409:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"399:3:125","nodeType":"YulIdentifier","src":"399:3:125"},"nativeSrc":"399:13:125","nodeType":"YulFunctionCall","src":"399:13:125"},{"arguments":[{"kind":"number","nativeSrc":"418:2:125","nodeType":"YulLiteral","src":"418:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"414:3:125","nodeType":"YulIdentifier","src":"414:3:125"},"nativeSrc":"414:7:125","nodeType":"YulFunctionCall","src":"414:7:125"}],"functionName":{"name":"and","nativeSrc":"395:3:125","nodeType":"YulIdentifier","src":"395:3:125"},"nativeSrc":"395:27:125","nodeType":"YulFunctionCall","src":"395:27:125"}],"functionName":{"name":"add","nativeSrc":"383:3:125","nodeType":"YulIdentifier","src":"383:3:125"},"nativeSrc":"383:40:125","nodeType":"YulFunctionCall","src":"383:40:125"},"variables":[{"name":"newFreePtr","nativeSrc":"369:10:125","nodeType":"YulTypedName","src":"369:10:125","type":""}]},{"body":{"nativeSrc":"498:22:125","nodeType":"YulBlock","src":"498:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"500:16:125","nodeType":"YulIdentifier","src":"500:16:125"},"nativeSrc":"500:18:125","nodeType":"YulFunctionCall","src":"500:18:125"},"nativeSrc":"500:18:125","nodeType":"YulExpressionStatement","src":"500:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"441:10:125","nodeType":"YulIdentifier","src":"441:10:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"461:2:125","nodeType":"YulLiteral","src":"461:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"465:1:125","nodeType":"YulLiteral","src":"465:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"457:3:125","nodeType":"YulIdentifier","src":"457:3:125"},"nativeSrc":"457:10:125","nodeType":"YulFunctionCall","src":"457:10:125"},{"kind":"number","nativeSrc":"469:1:125","nodeType":"YulLiteral","src":"469:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"453:3:125","nodeType":"YulIdentifier","src":"453:3:125"},"nativeSrc":"453:18:125","nodeType":"YulFunctionCall","src":"453:18:125"}],"functionName":{"name":"gt","nativeSrc":"438:2:125","nodeType":"YulIdentifier","src":"438:2:125"},"nativeSrc":"438:34:125","nodeType":"YulFunctionCall","src":"438:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"477:10:125","nodeType":"YulIdentifier","src":"477:10:125"},{"name":"memPtr","nativeSrc":"489:6:125","nodeType":"YulIdentifier","src":"489:6:125"}],"functionName":{"name":"lt","nativeSrc":"474:2:125","nodeType":"YulIdentifier","src":"474:2:125"},"nativeSrc":"474:22:125","nodeType":"YulFunctionCall","src":"474:22:125"}],"functionName":{"name":"or","nativeSrc":"435:2:125","nodeType":"YulIdentifier","src":"435:2:125"},"nativeSrc":"435:62:125","nodeType":"YulFunctionCall","src":"435:62:125"},"nativeSrc":"432:88:125","nodeType":"YulIf","src":"432:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"536:2:125","nodeType":"YulLiteral","src":"536:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"540:10:125","nodeType":"YulIdentifier","src":"540:10:125"}],"functionName":{"name":"mstore","nativeSrc":"529:6:125","nodeType":"YulIdentifier","src":"529:6:125"},"nativeSrc":"529:22:125","nodeType":"YulFunctionCall","src":"529:22:125"},"nativeSrc":"529:22:125","nodeType":"YulExpressionStatement","src":"529:22:125"}]},"name":"allocate_memory","nativeSrc":"282:275:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nativeSrc":"307:4:125","nodeType":"YulTypedName","src":"307:4:125","type":""}],"returnVariables":[{"name":"memPtr","nativeSrc":"316:6:125","nodeType":"YulTypedName","src":"316:6:125","type":""}],"src":"282:275:125"},{"body":{"nativeSrc":"638:78:125","nodeType":"YulBlock","src":"638:78:125","statements":[{"nativeSrc":"648:22:125","nodeType":"YulAssignment","src":"648:22:125","value":{"arguments":[{"name":"offset","nativeSrc":"663:6:125","nodeType":"YulIdentifier","src":"663:6:125"}],"functionName":{"name":"mload","nativeSrc":"657:5:125","nodeType":"YulIdentifier","src":"657:5:125"},"nativeSrc":"657:13:125","nodeType":"YulFunctionCall","src":"657:13:125"},"variableNames":[{"name":"value","nativeSrc":"648:5:125","nodeType":"YulIdentifier","src":"648:5:125"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"704:5:125","nodeType":"YulIdentifier","src":"704:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"679:24:125","nodeType":"YulIdentifier","src":"679:24:125"},"nativeSrc":"679:31:125","nodeType":"YulFunctionCall","src":"679:31:125"},"nativeSrc":"679:31:125","nodeType":"YulExpressionStatement","src":"679:31:125"}]},"name":"abi_decode_contract_IAccessManager_fromMemory","nativeSrc":"562:154:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"617:6:125","nodeType":"YulTypedName","src":"617:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"628:5:125","nodeType":"YulTypedName","src":"628:5:125","type":""}],"src":"562:154:125"},{"body":{"nativeSrc":"795:758:125","nodeType":"YulBlock","src":"795:758:125","statements":[{"body":{"nativeSrc":"844:16:125","nodeType":"YulBlock","src":"844:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"853:1:125","nodeType":"YulLiteral","src":"853:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"856:1:125","nodeType":"YulLiteral","src":"856:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"846:6:125","nodeType":"YulIdentifier","src":"846:6:125"},"nativeSrc":"846:12:125","nodeType":"YulFunctionCall","src":"846:12:125"},"nativeSrc":"846:12:125","nodeType":"YulExpressionStatement","src":"846:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"823:6:125","nodeType":"YulIdentifier","src":"823:6:125"},{"kind":"number","nativeSrc":"831:4:125","nodeType":"YulLiteral","src":"831:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"819:3:125","nodeType":"YulIdentifier","src":"819:3:125"},"nativeSrc":"819:17:125","nodeType":"YulFunctionCall","src":"819:17:125"},{"name":"end","nativeSrc":"838:3:125","nodeType":"YulIdentifier","src":"838:3:125"}],"functionName":{"name":"slt","nativeSrc":"815:3:125","nodeType":"YulIdentifier","src":"815:3:125"},"nativeSrc":"815:27:125","nodeType":"YulFunctionCall","src":"815:27:125"}],"functionName":{"name":"iszero","nativeSrc":"808:6:125","nodeType":"YulIdentifier","src":"808:6:125"},"nativeSrc":"808:35:125","nodeType":"YulFunctionCall","src":"808:35:125"},"nativeSrc":"805:55:125","nodeType":"YulIf","src":"805:55:125"},{"nativeSrc":"869:27:125","nodeType":"YulVariableDeclaration","src":"869:27:125","value":{"arguments":[{"name":"offset","nativeSrc":"889:6:125","nodeType":"YulIdentifier","src":"889:6:125"}],"functionName":{"name":"mload","nativeSrc":"883:5:125","nodeType":"YulIdentifier","src":"883:5:125"},"nativeSrc":"883:13:125","nodeType":"YulFunctionCall","src":"883:13:125"},"variables":[{"name":"length","nativeSrc":"873:6:125","nodeType":"YulTypedName","src":"873:6:125","type":""}]},{"body":{"nativeSrc":"939:22:125","nodeType":"YulBlock","src":"939:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"941:16:125","nodeType":"YulIdentifier","src":"941:16:125"},"nativeSrc":"941:18:125","nodeType":"YulFunctionCall","src":"941:18:125"},"nativeSrc":"941:18:125","nodeType":"YulExpressionStatement","src":"941:18:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"911:6:125","nodeType":"YulIdentifier","src":"911:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"927:2:125","nodeType":"YulLiteral","src":"927:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"931:1:125","nodeType":"YulLiteral","src":"931:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"923:3:125","nodeType":"YulIdentifier","src":"923:3:125"},"nativeSrc":"923:10:125","nodeType":"YulFunctionCall","src":"923:10:125"},{"kind":"number","nativeSrc":"935:1:125","nodeType":"YulLiteral","src":"935:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"919:3:125","nodeType":"YulIdentifier","src":"919:3:125"},"nativeSrc":"919:18:125","nodeType":"YulFunctionCall","src":"919:18:125"}],"functionName":{"name":"gt","nativeSrc":"908:2:125","nodeType":"YulIdentifier","src":"908:2:125"},"nativeSrc":"908:30:125","nodeType":"YulFunctionCall","src":"908:30:125"},"nativeSrc":"905:56:125","nodeType":"YulIf","src":"905:56:125"},{"nativeSrc":"970:24:125","nodeType":"YulVariableDeclaration","src":"970:24:125","value":{"arguments":[{"kind":"number","nativeSrc":"984:1:125","nodeType":"YulLiteral","src":"984:1:125","type":"","value":"5"},{"name":"length","nativeSrc":"987:6:125","nodeType":"YulIdentifier","src":"987:6:125"}],"functionName":{"name":"shl","nativeSrc":"980:3:125","nodeType":"YulIdentifier","src":"980:3:125"},"nativeSrc":"980:14:125","nodeType":"YulFunctionCall","src":"980:14:125"},"variables":[{"name":"_1","nativeSrc":"974:2:125","nodeType":"YulTypedName","src":"974:2:125","type":""}]},{"nativeSrc":"1003:41:125","nodeType":"YulVariableDeclaration","src":"1003:41:125","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1034:2:125","nodeType":"YulIdentifier","src":"1034:2:125"},{"kind":"number","nativeSrc":"1038:4:125","nodeType":"YulLiteral","src":"1038:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1030:3:125","nodeType":"YulIdentifier","src":"1030:3:125"},"nativeSrc":"1030:13:125","nodeType":"YulFunctionCall","src":"1030:13:125"}],"functionName":{"name":"allocate_memory","nativeSrc":"1014:15:125","nodeType":"YulIdentifier","src":"1014:15:125"},"nativeSrc":"1014:30:125","nodeType":"YulFunctionCall","src":"1014:30:125"},"variables":[{"name":"dst","nativeSrc":"1007:3:125","nodeType":"YulTypedName","src":"1007:3:125","type":""}]},{"nativeSrc":"1053:18:125","nodeType":"YulVariableDeclaration","src":"1053:18:125","value":{"name":"dst","nativeSrc":"1068:3:125","nodeType":"YulIdentifier","src":"1068:3:125"},"variables":[{"name":"array_1","nativeSrc":"1057:7:125","nodeType":"YulTypedName","src":"1057:7:125","type":""}]},{"expression":{"arguments":[{"name":"dst","nativeSrc":"1087:3:125","nodeType":"YulIdentifier","src":"1087:3:125"},{"name":"length","nativeSrc":"1092:6:125","nodeType":"YulIdentifier","src":"1092:6:125"}],"functionName":{"name":"mstore","nativeSrc":"1080:6:125","nodeType":"YulIdentifier","src":"1080:6:125"},"nativeSrc":"1080:19:125","nodeType":"YulFunctionCall","src":"1080:19:125"},"nativeSrc":"1080:19:125","nodeType":"YulExpressionStatement","src":"1080:19:125"},{"nativeSrc":"1108:21:125","nodeType":"YulAssignment","src":"1108:21:125","value":{"arguments":[{"name":"dst","nativeSrc":"1119:3:125","nodeType":"YulIdentifier","src":"1119:3:125"},{"kind":"number","nativeSrc":"1124:4:125","nodeType":"YulLiteral","src":"1124:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1115:3:125","nodeType":"YulIdentifier","src":"1115:3:125"},"nativeSrc":"1115:14:125","nodeType":"YulFunctionCall","src":"1115:14:125"},"variableNames":[{"name":"dst","nativeSrc":"1108:3:125","nodeType":"YulIdentifier","src":"1108:3:125"}]},{"nativeSrc":"1138:40:125","nodeType":"YulVariableDeclaration","src":"1138:40:125","value":{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"1160:6:125","nodeType":"YulIdentifier","src":"1160:6:125"},{"name":"_1","nativeSrc":"1168:2:125","nodeType":"YulIdentifier","src":"1168:2:125"}],"functionName":{"name":"add","nativeSrc":"1156:3:125","nodeType":"YulIdentifier","src":"1156:3:125"},"nativeSrc":"1156:15:125","nodeType":"YulFunctionCall","src":"1156:15:125"},{"kind":"number","nativeSrc":"1173:4:125","nodeType":"YulLiteral","src":"1173:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1152:3:125","nodeType":"YulIdentifier","src":"1152:3:125"},"nativeSrc":"1152:26:125","nodeType":"YulFunctionCall","src":"1152:26:125"},"variables":[{"name":"srcEnd","nativeSrc":"1142:6:125","nodeType":"YulTypedName","src":"1142:6:125","type":""}]},{"body":{"nativeSrc":"1206:16:125","nodeType":"YulBlock","src":"1206:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1215:1:125","nodeType":"YulLiteral","src":"1215:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1218:1:125","nodeType":"YulLiteral","src":"1218:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1208:6:125","nodeType":"YulIdentifier","src":"1208:6:125"},"nativeSrc":"1208:12:125","nodeType":"YulFunctionCall","src":"1208:12:125"},"nativeSrc":"1208:12:125","nodeType":"YulExpressionStatement","src":"1208:12:125"}]},"condition":{"arguments":[{"name":"srcEnd","nativeSrc":"1193:6:125","nodeType":"YulIdentifier","src":"1193:6:125"},{"name":"end","nativeSrc":"1201:3:125","nodeType":"YulIdentifier","src":"1201:3:125"}],"functionName":{"name":"gt","nativeSrc":"1190:2:125","nodeType":"YulIdentifier","src":"1190:2:125"},"nativeSrc":"1190:15:125","nodeType":"YulFunctionCall","src":"1190:15:125"},"nativeSrc":"1187:35:125","nodeType":"YulIf","src":"1187:35:125"},{"nativeSrc":"1231:28:125","nodeType":"YulVariableDeclaration","src":"1231:28:125","value":{"arguments":[{"name":"offset","nativeSrc":"1246:6:125","nodeType":"YulIdentifier","src":"1246:6:125"},{"kind":"number","nativeSrc":"1254:4:125","nodeType":"YulLiteral","src":"1254:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1242:3:125","nodeType":"YulIdentifier","src":"1242:3:125"},"nativeSrc":"1242:17:125","nodeType":"YulFunctionCall","src":"1242:17:125"},"variables":[{"name":"src","nativeSrc":"1235:3:125","nodeType":"YulTypedName","src":"1235:3:125","type":""}]},{"body":{"nativeSrc":"1326:196:125","nodeType":"YulBlock","src":"1326:196:125","statements":[{"nativeSrc":"1340:23:125","nodeType":"YulVariableDeclaration","src":"1340:23:125","value":{"arguments":[{"name":"src","nativeSrc":"1359:3:125","nodeType":"YulIdentifier","src":"1359:3:125"}],"functionName":{"name":"mload","nativeSrc":"1353:5:125","nodeType":"YulIdentifier","src":"1353:5:125"},"nativeSrc":"1353:10:125","nodeType":"YulFunctionCall","src":"1353:10:125"},"variables":[{"name":"value","nativeSrc":"1344:5:125","nodeType":"YulTypedName","src":"1344:5:125","type":""}]},{"body":{"nativeSrc":"1431:16:125","nodeType":"YulBlock","src":"1431:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1440:1:125","nodeType":"YulLiteral","src":"1440:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1443:1:125","nodeType":"YulLiteral","src":"1443:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1433:6:125","nodeType":"YulIdentifier","src":"1433:6:125"},"nativeSrc":"1433:12:125","nodeType":"YulFunctionCall","src":"1433:12:125"},"nativeSrc":"1433:12:125","nodeType":"YulExpressionStatement","src":"1433:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1389:5:125","nodeType":"YulIdentifier","src":"1389:5:125"},{"arguments":[{"name":"value","nativeSrc":"1400:5:125","nodeType":"YulIdentifier","src":"1400:5:125"},{"arguments":[{"kind":"number","nativeSrc":"1411:3:125","nodeType":"YulLiteral","src":"1411:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"1416:10:125","nodeType":"YulLiteral","src":"1416:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"1407:3:125","nodeType":"YulIdentifier","src":"1407:3:125"},"nativeSrc":"1407:20:125","nodeType":"YulFunctionCall","src":"1407:20:125"}],"functionName":{"name":"and","nativeSrc":"1396:3:125","nodeType":"YulIdentifier","src":"1396:3:125"},"nativeSrc":"1396:32:125","nodeType":"YulFunctionCall","src":"1396:32:125"}],"functionName":{"name":"eq","nativeSrc":"1386:2:125","nodeType":"YulIdentifier","src":"1386:2:125"},"nativeSrc":"1386:43:125","nodeType":"YulFunctionCall","src":"1386:43:125"}],"functionName":{"name":"iszero","nativeSrc":"1379:6:125","nodeType":"YulIdentifier","src":"1379:6:125"},"nativeSrc":"1379:51:125","nodeType":"YulFunctionCall","src":"1379:51:125"},"nativeSrc":"1376:71:125","nodeType":"YulIf","src":"1376:71:125"},{"expression":{"arguments":[{"name":"dst","nativeSrc":"1467:3:125","nodeType":"YulIdentifier","src":"1467:3:125"},{"name":"value","nativeSrc":"1472:5:125","nodeType":"YulIdentifier","src":"1472:5:125"}],"functionName":{"name":"mstore","nativeSrc":"1460:6:125","nodeType":"YulIdentifier","src":"1460:6:125"},"nativeSrc":"1460:18:125","nodeType":"YulFunctionCall","src":"1460:18:125"},"nativeSrc":"1460:18:125","nodeType":"YulExpressionStatement","src":"1460:18:125"},{"nativeSrc":"1491:21:125","nodeType":"YulAssignment","src":"1491:21:125","value":{"arguments":[{"name":"dst","nativeSrc":"1502:3:125","nodeType":"YulIdentifier","src":"1502:3:125"},{"kind":"number","nativeSrc":"1507:4:125","nodeType":"YulLiteral","src":"1507:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1498:3:125","nodeType":"YulIdentifier","src":"1498:3:125"},"nativeSrc":"1498:14:125","nodeType":"YulFunctionCall","src":"1498:14:125"},"variableNames":[{"name":"dst","nativeSrc":"1491:3:125","nodeType":"YulIdentifier","src":"1491:3:125"}]}]},"condition":{"arguments":[{"name":"src","nativeSrc":"1279:3:125","nodeType":"YulIdentifier","src":"1279:3:125"},{"name":"srcEnd","nativeSrc":"1284:6:125","nodeType":"YulIdentifier","src":"1284:6:125"}],"functionName":{"name":"lt","nativeSrc":"1276:2:125","nodeType":"YulIdentifier","src":"1276:2:125"},"nativeSrc":"1276:15:125","nodeType":"YulFunctionCall","src":"1276:15:125"},"nativeSrc":"1268:254:125","nodeType":"YulForLoop","post":{"nativeSrc":"1292:25:125","nodeType":"YulBlock","src":"1292:25:125","statements":[{"nativeSrc":"1294:21:125","nodeType":"YulAssignment","src":"1294:21:125","value":{"arguments":[{"name":"src","nativeSrc":"1305:3:125","nodeType":"YulIdentifier","src":"1305:3:125"},{"kind":"number","nativeSrc":"1310:4:125","nodeType":"YulLiteral","src":"1310:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1301:3:125","nodeType":"YulIdentifier","src":"1301:3:125"},"nativeSrc":"1301:14:125","nodeType":"YulFunctionCall","src":"1301:14:125"},"variableNames":[{"name":"src","nativeSrc":"1294:3:125","nodeType":"YulIdentifier","src":"1294:3:125"}]}]},"pre":{"nativeSrc":"1272:3:125","nodeType":"YulBlock","src":"1272:3:125","statements":[]},"src":"1268:254:125"},{"nativeSrc":"1531:16:125","nodeType":"YulAssignment","src":"1531:16:125","value":{"name":"array_1","nativeSrc":"1540:7:125","nodeType":"YulIdentifier","src":"1540:7:125"},"variableNames":[{"name":"array","nativeSrc":"1531:5:125","nodeType":"YulIdentifier","src":"1531:5:125"}]}]},"name":"abi_decode_array_bytes4_dyn_fromMemory","nativeSrc":"721:832:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"769:6:125","nodeType":"YulTypedName","src":"769:6:125","type":""},{"name":"end","nativeSrc":"777:3:125","nodeType":"YulTypedName","src":"777:3:125","type":""}],"returnVariables":[{"name":"array","nativeSrc":"785:5:125","nodeType":"YulTypedName","src":"785:5:125","type":""}],"src":"721:832:125"},{"body":{"nativeSrc":"1747:1064:125","nodeType":"YulBlock","src":"1747:1064:125","statements":[{"body":{"nativeSrc":"1794:16:125","nodeType":"YulBlock","src":"1794:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1803:1:125","nodeType":"YulLiteral","src":"1803:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1806:1:125","nodeType":"YulLiteral","src":"1806:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1796:6:125","nodeType":"YulIdentifier","src":"1796:6:125"},"nativeSrc":"1796:12:125","nodeType":"YulFunctionCall","src":"1796:12:125"},"nativeSrc":"1796:12:125","nodeType":"YulExpressionStatement","src":"1796:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1768:7:125","nodeType":"YulIdentifier","src":"1768:7:125"},{"name":"headStart","nativeSrc":"1777:9:125","nodeType":"YulIdentifier","src":"1777:9:125"}],"functionName":{"name":"sub","nativeSrc":"1764:3:125","nodeType":"YulIdentifier","src":"1764:3:125"},"nativeSrc":"1764:23:125","nodeType":"YulFunctionCall","src":"1764:23:125"},{"kind":"number","nativeSrc":"1789:3:125","nodeType":"YulLiteral","src":"1789:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"1760:3:125","nodeType":"YulIdentifier","src":"1760:3:125"},"nativeSrc":"1760:33:125","nodeType":"YulFunctionCall","src":"1760:33:125"},"nativeSrc":"1757:53:125","nodeType":"YulIf","src":"1757:53:125"},{"nativeSrc":"1819:29:125","nodeType":"YulVariableDeclaration","src":"1819:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1838:9:125","nodeType":"YulIdentifier","src":"1838:9:125"}],"functionName":{"name":"mload","nativeSrc":"1832:5:125","nodeType":"YulIdentifier","src":"1832:5:125"},"nativeSrc":"1832:16:125","nodeType":"YulFunctionCall","src":"1832:16:125"},"variables":[{"name":"value","nativeSrc":"1823:5:125","nodeType":"YulTypedName","src":"1823:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1882:5:125","nodeType":"YulIdentifier","src":"1882:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"1857:24:125","nodeType":"YulIdentifier","src":"1857:24:125"},"nativeSrc":"1857:31:125","nodeType":"YulFunctionCall","src":"1857:31:125"},"nativeSrc":"1857:31:125","nodeType":"YulExpressionStatement","src":"1857:31:125"},{"nativeSrc":"1897:15:125","nodeType":"YulAssignment","src":"1897:15:125","value":{"name":"value","nativeSrc":"1907:5:125","nodeType":"YulIdentifier","src":"1907:5:125"},"variableNames":[{"name":"value0","nativeSrc":"1897:6:125","nodeType":"YulIdentifier","src":"1897:6:125"}]},{"nativeSrc":"1921:39:125","nodeType":"YulVariableDeclaration","src":"1921:39:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1945:9:125","nodeType":"YulIdentifier","src":"1945:9:125"},{"kind":"number","nativeSrc":"1956:2:125","nodeType":"YulLiteral","src":"1956:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1941:3:125","nodeType":"YulIdentifier","src":"1941:3:125"},"nativeSrc":"1941:18:125","nodeType":"YulFunctionCall","src":"1941:18:125"}],"functionName":{"name":"mload","nativeSrc":"1935:5:125","nodeType":"YulIdentifier","src":"1935:5:125"},"nativeSrc":"1935:25:125","nodeType":"YulFunctionCall","src":"1935:25:125"},"variables":[{"name":"offset","nativeSrc":"1925:6:125","nodeType":"YulTypedName","src":"1925:6:125","type":""}]},{"body":{"nativeSrc":"2003:16:125","nodeType":"YulBlock","src":"2003:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2012:1:125","nodeType":"YulLiteral","src":"2012:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2015:1:125","nodeType":"YulLiteral","src":"2015:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2005:6:125","nodeType":"YulIdentifier","src":"2005:6:125"},"nativeSrc":"2005:12:125","nodeType":"YulFunctionCall","src":"2005:12:125"},"nativeSrc":"2005:12:125","nodeType":"YulExpressionStatement","src":"2005:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1975:6:125","nodeType":"YulIdentifier","src":"1975:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1991:2:125","nodeType":"YulLiteral","src":"1991:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"1995:1:125","nodeType":"YulLiteral","src":"1995:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1987:3:125","nodeType":"YulIdentifier","src":"1987:3:125"},"nativeSrc":"1987:10:125","nodeType":"YulFunctionCall","src":"1987:10:125"},{"kind":"number","nativeSrc":"1999:1:125","nodeType":"YulLiteral","src":"1999:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1983:3:125","nodeType":"YulIdentifier","src":"1983:3:125"},"nativeSrc":"1983:18:125","nodeType":"YulFunctionCall","src":"1983:18:125"}],"functionName":{"name":"gt","nativeSrc":"1972:2:125","nodeType":"YulIdentifier","src":"1972:2:125"},"nativeSrc":"1972:30:125","nodeType":"YulFunctionCall","src":"1972:30:125"},"nativeSrc":"1969:50:125","nodeType":"YulIf","src":"1969:50:125"},{"nativeSrc":"2028:32:125","nodeType":"YulVariableDeclaration","src":"2028:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2042:9:125","nodeType":"YulIdentifier","src":"2042:9:125"},{"name":"offset","nativeSrc":"2053:6:125","nodeType":"YulIdentifier","src":"2053:6:125"}],"functionName":{"name":"add","nativeSrc":"2038:3:125","nodeType":"YulIdentifier","src":"2038:3:125"},"nativeSrc":"2038:22:125","nodeType":"YulFunctionCall","src":"2038:22:125"},"variables":[{"name":"_1","nativeSrc":"2032:2:125","nodeType":"YulTypedName","src":"2032:2:125","type":""}]},{"body":{"nativeSrc":"2108:16:125","nodeType":"YulBlock","src":"2108:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2117:1:125","nodeType":"YulLiteral","src":"2117:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2120:1:125","nodeType":"YulLiteral","src":"2120:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2110:6:125","nodeType":"YulIdentifier","src":"2110:6:125"},"nativeSrc":"2110:12:125","nodeType":"YulFunctionCall","src":"2110:12:125"},"nativeSrc":"2110:12:125","nodeType":"YulExpressionStatement","src":"2110:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"2087:2:125","nodeType":"YulIdentifier","src":"2087:2:125"},{"kind":"number","nativeSrc":"2091:4:125","nodeType":"YulLiteral","src":"2091:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2083:3:125","nodeType":"YulIdentifier","src":"2083:3:125"},"nativeSrc":"2083:13:125","nodeType":"YulFunctionCall","src":"2083:13:125"},{"name":"dataEnd","nativeSrc":"2098:7:125","nodeType":"YulIdentifier","src":"2098:7:125"}],"functionName":{"name":"slt","nativeSrc":"2079:3:125","nodeType":"YulIdentifier","src":"2079:3:125"},"nativeSrc":"2079:27:125","nodeType":"YulFunctionCall","src":"2079:27:125"}],"functionName":{"name":"iszero","nativeSrc":"2072:6:125","nodeType":"YulIdentifier","src":"2072:6:125"},"nativeSrc":"2072:35:125","nodeType":"YulFunctionCall","src":"2072:35:125"},"nativeSrc":"2069:55:125","nodeType":"YulIf","src":"2069:55:125"},{"nativeSrc":"2133:23:125","nodeType":"YulVariableDeclaration","src":"2133:23:125","value":{"arguments":[{"name":"_1","nativeSrc":"2153:2:125","nodeType":"YulIdentifier","src":"2153:2:125"}],"functionName":{"name":"mload","nativeSrc":"2147:5:125","nodeType":"YulIdentifier","src":"2147:5:125"},"nativeSrc":"2147:9:125","nodeType":"YulFunctionCall","src":"2147:9:125"},"variables":[{"name":"length","nativeSrc":"2137:6:125","nodeType":"YulTypedName","src":"2137:6:125","type":""}]},{"body":{"nativeSrc":"2199:22:125","nodeType":"YulBlock","src":"2199:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2201:16:125","nodeType":"YulIdentifier","src":"2201:16:125"},"nativeSrc":"2201:18:125","nodeType":"YulFunctionCall","src":"2201:18:125"},"nativeSrc":"2201:18:125","nodeType":"YulExpressionStatement","src":"2201:18:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"2171:6:125","nodeType":"YulIdentifier","src":"2171:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2187:2:125","nodeType":"YulLiteral","src":"2187:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"2191:1:125","nodeType":"YulLiteral","src":"2191:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2183:3:125","nodeType":"YulIdentifier","src":"2183:3:125"},"nativeSrc":"2183:10:125","nodeType":"YulFunctionCall","src":"2183:10:125"},{"kind":"number","nativeSrc":"2195:1:125","nodeType":"YulLiteral","src":"2195:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2179:3:125","nodeType":"YulIdentifier","src":"2179:3:125"},"nativeSrc":"2179:18:125","nodeType":"YulFunctionCall","src":"2179:18:125"}],"functionName":{"name":"gt","nativeSrc":"2168:2:125","nodeType":"YulIdentifier","src":"2168:2:125"},"nativeSrc":"2168:30:125","nodeType":"YulFunctionCall","src":"2168:30:125"},"nativeSrc":"2165:56:125","nodeType":"YulIf","src":"2165:56:125"},{"nativeSrc":"2230:70:125","nodeType":"YulVariableDeclaration","src":"2230:70:125","value":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"2271:6:125","nodeType":"YulIdentifier","src":"2271:6:125"},{"kind":"number","nativeSrc":"2279:4:125","nodeType":"YulLiteral","src":"2279:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2267:3:125","nodeType":"YulIdentifier","src":"2267:3:125"},"nativeSrc":"2267:17:125","nodeType":"YulFunctionCall","src":"2267:17:125"},{"arguments":[{"kind":"number","nativeSrc":"2290:2:125","nodeType":"YulLiteral","src":"2290:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"2286:3:125","nodeType":"YulIdentifier","src":"2286:3:125"},"nativeSrc":"2286:7:125","nodeType":"YulFunctionCall","src":"2286:7:125"}],"functionName":{"name":"and","nativeSrc":"2263:3:125","nodeType":"YulIdentifier","src":"2263:3:125"},"nativeSrc":"2263:31:125","nodeType":"YulFunctionCall","src":"2263:31:125"},{"kind":"number","nativeSrc":"2296:2:125","nodeType":"YulLiteral","src":"2296:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2259:3:125","nodeType":"YulIdentifier","src":"2259:3:125"},"nativeSrc":"2259:40:125","nodeType":"YulFunctionCall","src":"2259:40:125"}],"functionName":{"name":"allocate_memory","nativeSrc":"2243:15:125","nodeType":"YulIdentifier","src":"2243:15:125"},"nativeSrc":"2243:57:125","nodeType":"YulFunctionCall","src":"2243:57:125"},"variables":[{"name":"array","nativeSrc":"2234:5:125","nodeType":"YulTypedName","src":"2234:5:125","type":""}]},{"expression":{"arguments":[{"name":"array","nativeSrc":"2316:5:125","nodeType":"YulIdentifier","src":"2316:5:125"},{"name":"length","nativeSrc":"2323:6:125","nodeType":"YulIdentifier","src":"2323:6:125"}],"functionName":{"name":"mstore","nativeSrc":"2309:6:125","nodeType":"YulIdentifier","src":"2309:6:125"},"nativeSrc":"2309:21:125","nodeType":"YulFunctionCall","src":"2309:21:125"},"nativeSrc":"2309:21:125","nodeType":"YulExpressionStatement","src":"2309:21:125"},{"body":{"nativeSrc":"2380:16:125","nodeType":"YulBlock","src":"2380:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2389:1:125","nodeType":"YulLiteral","src":"2389:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2392:1:125","nodeType":"YulLiteral","src":"2392:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2382:6:125","nodeType":"YulIdentifier","src":"2382:6:125"},"nativeSrc":"2382:12:125","nodeType":"YulFunctionCall","src":"2382:12:125"},"nativeSrc":"2382:12:125","nodeType":"YulExpressionStatement","src":"2382:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"2353:2:125","nodeType":"YulIdentifier","src":"2353:2:125"},{"name":"length","nativeSrc":"2357:6:125","nodeType":"YulIdentifier","src":"2357:6:125"}],"functionName":{"name":"add","nativeSrc":"2349:3:125","nodeType":"YulIdentifier","src":"2349:3:125"},"nativeSrc":"2349:15:125","nodeType":"YulFunctionCall","src":"2349:15:125"},{"kind":"number","nativeSrc":"2366:2:125","nodeType":"YulLiteral","src":"2366:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2345:3:125","nodeType":"YulIdentifier","src":"2345:3:125"},"nativeSrc":"2345:24:125","nodeType":"YulFunctionCall","src":"2345:24:125"},{"name":"dataEnd","nativeSrc":"2371:7:125","nodeType":"YulIdentifier","src":"2371:7:125"}],"functionName":{"name":"gt","nativeSrc":"2342:2:125","nodeType":"YulIdentifier","src":"2342:2:125"},"nativeSrc":"2342:37:125","nodeType":"YulFunctionCall","src":"2342:37:125"},"nativeSrc":"2339:57:125","nodeType":"YulIf","src":"2339:57:125"},{"expression":{"arguments":[{"arguments":[{"name":"array","nativeSrc":"2415:5:125","nodeType":"YulIdentifier","src":"2415:5:125"},{"kind":"number","nativeSrc":"2422:2:125","nodeType":"YulLiteral","src":"2422:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2411:3:125","nodeType":"YulIdentifier","src":"2411:3:125"},"nativeSrc":"2411:14:125","nodeType":"YulFunctionCall","src":"2411:14:125"},{"arguments":[{"name":"_1","nativeSrc":"2431:2:125","nodeType":"YulIdentifier","src":"2431:2:125"},{"kind":"number","nativeSrc":"2435:2:125","nodeType":"YulLiteral","src":"2435:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2427:3:125","nodeType":"YulIdentifier","src":"2427:3:125"},"nativeSrc":"2427:11:125","nodeType":"YulFunctionCall","src":"2427:11:125"},{"name":"length","nativeSrc":"2440:6:125","nodeType":"YulIdentifier","src":"2440:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"2405:5:125","nodeType":"YulIdentifier","src":"2405:5:125"},"nativeSrc":"2405:42:125","nodeType":"YulFunctionCall","src":"2405:42:125"},"nativeSrc":"2405:42:125","nodeType":"YulExpressionStatement","src":"2405:42:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"array","nativeSrc":"2471:5:125","nodeType":"YulIdentifier","src":"2471:5:125"},{"name":"length","nativeSrc":"2478:6:125","nodeType":"YulIdentifier","src":"2478:6:125"}],"functionName":{"name":"add","nativeSrc":"2467:3:125","nodeType":"YulIdentifier","src":"2467:3:125"},"nativeSrc":"2467:18:125","nodeType":"YulFunctionCall","src":"2467:18:125"},{"kind":"number","nativeSrc":"2487:2:125","nodeType":"YulLiteral","src":"2487:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2463:3:125","nodeType":"YulIdentifier","src":"2463:3:125"},"nativeSrc":"2463:27:125","nodeType":"YulFunctionCall","src":"2463:27:125"},{"kind":"number","nativeSrc":"2492:1:125","nodeType":"YulLiteral","src":"2492:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"2456:6:125","nodeType":"YulIdentifier","src":"2456:6:125"},"nativeSrc":"2456:38:125","nodeType":"YulFunctionCall","src":"2456:38:125"},"nativeSrc":"2456:38:125","nodeType":"YulExpressionStatement","src":"2456:38:125"},{"nativeSrc":"2503:15:125","nodeType":"YulAssignment","src":"2503:15:125","value":{"name":"array","nativeSrc":"2513:5:125","nodeType":"YulIdentifier","src":"2513:5:125"},"variableNames":[{"name":"value1","nativeSrc":"2503:6:125","nodeType":"YulIdentifier","src":"2503:6:125"}]},{"nativeSrc":"2527:75:125","nodeType":"YulAssignment","src":"2527:75:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2587:9:125","nodeType":"YulIdentifier","src":"2587:9:125"},{"kind":"number","nativeSrc":"2598:2:125","nodeType":"YulLiteral","src":"2598:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2583:3:125","nodeType":"YulIdentifier","src":"2583:3:125"},"nativeSrc":"2583:18:125","nodeType":"YulFunctionCall","src":"2583:18:125"}],"functionName":{"name":"abi_decode_contract_IAccessManager_fromMemory","nativeSrc":"2537:45:125","nodeType":"YulIdentifier","src":"2537:45:125"},"nativeSrc":"2537:65:125","nodeType":"YulFunctionCall","src":"2537:65:125"},"variableNames":[{"name":"value2","nativeSrc":"2527:6:125","nodeType":"YulIdentifier","src":"2527:6:125"}]},{"nativeSrc":"2611:41:125","nodeType":"YulVariableDeclaration","src":"2611:41:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2637:9:125","nodeType":"YulIdentifier","src":"2637:9:125"},{"kind":"number","nativeSrc":"2648:2:125","nodeType":"YulLiteral","src":"2648:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"2633:3:125","nodeType":"YulIdentifier","src":"2633:3:125"},"nativeSrc":"2633:18:125","nodeType":"YulFunctionCall","src":"2633:18:125"}],"functionName":{"name":"mload","nativeSrc":"2627:5:125","nodeType":"YulIdentifier","src":"2627:5:125"},"nativeSrc":"2627:25:125","nodeType":"YulFunctionCall","src":"2627:25:125"},"variables":[{"name":"offset_1","nativeSrc":"2615:8:125","nodeType":"YulTypedName","src":"2615:8:125","type":""}]},{"body":{"nativeSrc":"2697:16:125","nodeType":"YulBlock","src":"2697:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2706:1:125","nodeType":"YulLiteral","src":"2706:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2709:1:125","nodeType":"YulLiteral","src":"2709:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2699:6:125","nodeType":"YulIdentifier","src":"2699:6:125"},"nativeSrc":"2699:12:125","nodeType":"YulFunctionCall","src":"2699:12:125"},"nativeSrc":"2699:12:125","nodeType":"YulExpressionStatement","src":"2699:12:125"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"2667:8:125","nodeType":"YulIdentifier","src":"2667:8:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2685:2:125","nodeType":"YulLiteral","src":"2685:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"2689:1:125","nodeType":"YulLiteral","src":"2689:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2681:3:125","nodeType":"YulIdentifier","src":"2681:3:125"},"nativeSrc":"2681:10:125","nodeType":"YulFunctionCall","src":"2681:10:125"},{"kind":"number","nativeSrc":"2693:1:125","nodeType":"YulLiteral","src":"2693:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2677:3:125","nodeType":"YulIdentifier","src":"2677:3:125"},"nativeSrc":"2677:18:125","nodeType":"YulFunctionCall","src":"2677:18:125"}],"functionName":{"name":"gt","nativeSrc":"2664:2:125","nodeType":"YulIdentifier","src":"2664:2:125"},"nativeSrc":"2664:32:125","nodeType":"YulFunctionCall","src":"2664:32:125"},"nativeSrc":"2661:52:125","nodeType":"YulIf","src":"2661:52:125"},{"nativeSrc":"2722:83:125","nodeType":"YulAssignment","src":"2722:83:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2775:9:125","nodeType":"YulIdentifier","src":"2775:9:125"},{"name":"offset_1","nativeSrc":"2786:8:125","nodeType":"YulIdentifier","src":"2786:8:125"}],"functionName":{"name":"add","nativeSrc":"2771:3:125","nodeType":"YulIdentifier","src":"2771:3:125"},"nativeSrc":"2771:24:125","nodeType":"YulFunctionCall","src":"2771:24:125"},{"name":"dataEnd","nativeSrc":"2797:7:125","nodeType":"YulIdentifier","src":"2797:7:125"}],"functionName":{"name":"abi_decode_array_bytes4_dyn_fromMemory","nativeSrc":"2732:38:125","nodeType":"YulIdentifier","src":"2732:38:125"},"nativeSrc":"2732:73:125","nodeType":"YulFunctionCall","src":"2732:73:125"},"variableNames":[{"name":"value3","nativeSrc":"2722:6:125","nodeType":"YulIdentifier","src":"2722:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptrt_contract$_IAccessManager_$22178t_array$_t_bytes4_$dyn_memory_ptr_fromMemory","nativeSrc":"1558:1253:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1689:9:125","nodeType":"YulTypedName","src":"1689:9:125","type":""},{"name":"dataEnd","nativeSrc":"1700:7:125","nodeType":"YulTypedName","src":"1700:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1712:6:125","nodeType":"YulTypedName","src":"1712:6:125","type":""},{"name":"value1","nativeSrc":"1720:6:125","nodeType":"YulTypedName","src":"1720:6:125","type":""},{"name":"value2","nativeSrc":"1728:6:125","nodeType":"YulTypedName","src":"1728:6:125","type":""},{"name":"value3","nativeSrc":"1736:6:125","nodeType":"YulTypedName","src":"1736:6:125","type":""}],"src":"1558:1253:125"},{"body":{"nativeSrc":"2917:102:125","nodeType":"YulBlock","src":"2917:102:125","statements":[{"nativeSrc":"2927:26:125","nodeType":"YulAssignment","src":"2927:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2939:9:125","nodeType":"YulIdentifier","src":"2939:9:125"},{"kind":"number","nativeSrc":"2950:2:125","nodeType":"YulLiteral","src":"2950:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2935:3:125","nodeType":"YulIdentifier","src":"2935:3:125"},"nativeSrc":"2935:18:125","nodeType":"YulFunctionCall","src":"2935:18:125"},"variableNames":[{"name":"tail","nativeSrc":"2927:4:125","nodeType":"YulIdentifier","src":"2927:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2969:9:125","nodeType":"YulIdentifier","src":"2969:9:125"},{"arguments":[{"name":"value0","nativeSrc":"2984:6:125","nodeType":"YulIdentifier","src":"2984:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3000:3:125","nodeType":"YulLiteral","src":"3000:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"3005:1:125","nodeType":"YulLiteral","src":"3005:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2996:3:125","nodeType":"YulIdentifier","src":"2996:3:125"},"nativeSrc":"2996:11:125","nodeType":"YulFunctionCall","src":"2996:11:125"},{"kind":"number","nativeSrc":"3009:1:125","nodeType":"YulLiteral","src":"3009:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2992:3:125","nodeType":"YulIdentifier","src":"2992:3:125"},"nativeSrc":"2992:19:125","nodeType":"YulFunctionCall","src":"2992:19:125"}],"functionName":{"name":"and","nativeSrc":"2980:3:125","nodeType":"YulIdentifier","src":"2980:3:125"},"nativeSrc":"2980:32:125","nodeType":"YulFunctionCall","src":"2980:32:125"}],"functionName":{"name":"mstore","nativeSrc":"2962:6:125","nodeType":"YulIdentifier","src":"2962:6:125"},"nativeSrc":"2962:51:125","nodeType":"YulFunctionCall","src":"2962:51:125"},"nativeSrc":"2962:51:125","nodeType":"YulExpressionStatement","src":"2962:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"2816:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2886:9:125","nodeType":"YulTypedName","src":"2886:9:125","type":""},{"name":"value0","nativeSrc":"2897:6:125","nodeType":"YulTypedName","src":"2897:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2908:4:125","nodeType":"YulTypedName","src":"2908:4:125","type":""}],"src":"2816:203:125"},{"body":{"nativeSrc":"3056:95:125","nodeType":"YulBlock","src":"3056:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3073:1:125","nodeType":"YulLiteral","src":"3073:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"3080:3:125","nodeType":"YulLiteral","src":"3080:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"3085:10:125","nodeType":"YulLiteral","src":"3085:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"3076:3:125","nodeType":"YulIdentifier","src":"3076:3:125"},"nativeSrc":"3076:20:125","nodeType":"YulFunctionCall","src":"3076:20:125"}],"functionName":{"name":"mstore","nativeSrc":"3066:6:125","nodeType":"YulIdentifier","src":"3066:6:125"},"nativeSrc":"3066:31:125","nodeType":"YulFunctionCall","src":"3066:31:125"},"nativeSrc":"3066:31:125","nodeType":"YulExpressionStatement","src":"3066:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3113:1:125","nodeType":"YulLiteral","src":"3113:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"3116:4:125","nodeType":"YulLiteral","src":"3116:4:125","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"3106:6:125","nodeType":"YulIdentifier","src":"3106:6:125"},"nativeSrc":"3106:15:125","nodeType":"YulFunctionCall","src":"3106:15:125"},"nativeSrc":"3106:15:125","nodeType":"YulExpressionStatement","src":"3106:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3137:1:125","nodeType":"YulLiteral","src":"3137:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3140:4:125","nodeType":"YulLiteral","src":"3140:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"3130:6:125","nodeType":"YulIdentifier","src":"3130:6:125"},"nativeSrc":"3130:15:125","nodeType":"YulFunctionCall","src":"3130:15:125"},"nativeSrc":"3130:15:125","nodeType":"YulExpressionStatement","src":"3130:15:125"}]},"name":"panic_error_0x32","nativeSrc":"3024:127:125","nodeType":"YulFunctionDefinition","src":"3024:127:125"},{"body":{"nativeSrc":"3305:487:125","nodeType":"YulBlock","src":"3305:487:125","statements":[{"nativeSrc":"3315:32:125","nodeType":"YulVariableDeclaration","src":"3315:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3333:9:125","nodeType":"YulIdentifier","src":"3333:9:125"},{"kind":"number","nativeSrc":"3344:2:125","nodeType":"YulLiteral","src":"3344:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3329:3:125","nodeType":"YulIdentifier","src":"3329:3:125"},"nativeSrc":"3329:18:125","nodeType":"YulFunctionCall","src":"3329:18:125"},"variables":[{"name":"tail_1","nativeSrc":"3319:6:125","nodeType":"YulTypedName","src":"3319:6:125","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3363:9:125","nodeType":"YulIdentifier","src":"3363:9:125"},{"kind":"number","nativeSrc":"3374:2:125","nodeType":"YulLiteral","src":"3374:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"3356:6:125","nodeType":"YulIdentifier","src":"3356:6:125"},"nativeSrc":"3356:21:125","nodeType":"YulFunctionCall","src":"3356:21:125"},"nativeSrc":"3356:21:125","nodeType":"YulExpressionStatement","src":"3356:21:125"},{"nativeSrc":"3386:17:125","nodeType":"YulVariableDeclaration","src":"3386:17:125","value":{"name":"tail_1","nativeSrc":"3397:6:125","nodeType":"YulIdentifier","src":"3397:6:125"},"variables":[{"name":"pos","nativeSrc":"3390:3:125","nodeType":"YulTypedName","src":"3390:3:125","type":""}]},{"nativeSrc":"3412:27:125","nodeType":"YulVariableDeclaration","src":"3412:27:125","value":{"arguments":[{"name":"value0","nativeSrc":"3432:6:125","nodeType":"YulIdentifier","src":"3432:6:125"}],"functionName":{"name":"mload","nativeSrc":"3426:5:125","nodeType":"YulIdentifier","src":"3426:5:125"},"nativeSrc":"3426:13:125","nodeType":"YulFunctionCall","src":"3426:13:125"},"variables":[{"name":"length","nativeSrc":"3416:6:125","nodeType":"YulTypedName","src":"3416:6:125","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"3455:6:125","nodeType":"YulIdentifier","src":"3455:6:125"},{"name":"length","nativeSrc":"3463:6:125","nodeType":"YulIdentifier","src":"3463:6:125"}],"functionName":{"name":"mstore","nativeSrc":"3448:6:125","nodeType":"YulIdentifier","src":"3448:6:125"},"nativeSrc":"3448:22:125","nodeType":"YulFunctionCall","src":"3448:22:125"},"nativeSrc":"3448:22:125","nodeType":"YulExpressionStatement","src":"3448:22:125"},{"nativeSrc":"3479:25:125","nodeType":"YulAssignment","src":"3479:25:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3490:9:125","nodeType":"YulIdentifier","src":"3490:9:125"},{"kind":"number","nativeSrc":"3501:2:125","nodeType":"YulLiteral","src":"3501:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3486:3:125","nodeType":"YulIdentifier","src":"3486:3:125"},"nativeSrc":"3486:18:125","nodeType":"YulFunctionCall","src":"3486:18:125"},"variableNames":[{"name":"pos","nativeSrc":"3479:3:125","nodeType":"YulIdentifier","src":"3479:3:125"}]},{"nativeSrc":"3513:29:125","nodeType":"YulVariableDeclaration","src":"3513:29:125","value":{"arguments":[{"name":"value0","nativeSrc":"3531:6:125","nodeType":"YulIdentifier","src":"3531:6:125"},{"kind":"number","nativeSrc":"3539:2:125","nodeType":"YulLiteral","src":"3539:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3527:3:125","nodeType":"YulIdentifier","src":"3527:3:125"},"nativeSrc":"3527:15:125","nodeType":"YulFunctionCall","src":"3527:15:125"},"variables":[{"name":"srcPtr","nativeSrc":"3517:6:125","nodeType":"YulTypedName","src":"3517:6:125","type":""}]},{"nativeSrc":"3551:10:125","nodeType":"YulVariableDeclaration","src":"3551:10:125","value":{"kind":"number","nativeSrc":"3560:1:125","nodeType":"YulLiteral","src":"3560:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"3555:1:125","nodeType":"YulTypedName","src":"3555:1:125","type":""}]},{"body":{"nativeSrc":"3619:147:125","nodeType":"YulBlock","src":"3619:147:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"3640:3:125","nodeType":"YulIdentifier","src":"3640:3:125"},{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"3655:6:125","nodeType":"YulIdentifier","src":"3655:6:125"}],"functionName":{"name":"mload","nativeSrc":"3649:5:125","nodeType":"YulIdentifier","src":"3649:5:125"},"nativeSrc":"3649:13:125","nodeType":"YulFunctionCall","src":"3649:13:125"},{"arguments":[{"kind":"number","nativeSrc":"3668:3:125","nodeType":"YulLiteral","src":"3668:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"3673:10:125","nodeType":"YulLiteral","src":"3673:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"3664:3:125","nodeType":"YulIdentifier","src":"3664:3:125"},"nativeSrc":"3664:20:125","nodeType":"YulFunctionCall","src":"3664:20:125"}],"functionName":{"name":"and","nativeSrc":"3645:3:125","nodeType":"YulIdentifier","src":"3645:3:125"},"nativeSrc":"3645:40:125","nodeType":"YulFunctionCall","src":"3645:40:125"}],"functionName":{"name":"mstore","nativeSrc":"3633:6:125","nodeType":"YulIdentifier","src":"3633:6:125"},"nativeSrc":"3633:53:125","nodeType":"YulFunctionCall","src":"3633:53:125"},"nativeSrc":"3633:53:125","nodeType":"YulExpressionStatement","src":"3633:53:125"},{"nativeSrc":"3699:19:125","nodeType":"YulAssignment","src":"3699:19:125","value":{"arguments":[{"name":"pos","nativeSrc":"3710:3:125","nodeType":"YulIdentifier","src":"3710:3:125"},{"kind":"number","nativeSrc":"3715:2:125","nodeType":"YulLiteral","src":"3715:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3706:3:125","nodeType":"YulIdentifier","src":"3706:3:125"},"nativeSrc":"3706:12:125","nodeType":"YulFunctionCall","src":"3706:12:125"},"variableNames":[{"name":"pos","nativeSrc":"3699:3:125","nodeType":"YulIdentifier","src":"3699:3:125"}]},{"nativeSrc":"3731:25:125","nodeType":"YulAssignment","src":"3731:25:125","value":{"arguments":[{"name":"srcPtr","nativeSrc":"3745:6:125","nodeType":"YulIdentifier","src":"3745:6:125"},{"kind":"number","nativeSrc":"3753:2:125","nodeType":"YulLiteral","src":"3753:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3741:3:125","nodeType":"YulIdentifier","src":"3741:3:125"},"nativeSrc":"3741:15:125","nodeType":"YulFunctionCall","src":"3741:15:125"},"variableNames":[{"name":"srcPtr","nativeSrc":"3731:6:125","nodeType":"YulIdentifier","src":"3731:6:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"3581:1:125","nodeType":"YulIdentifier","src":"3581:1:125"},{"name":"length","nativeSrc":"3584:6:125","nodeType":"YulIdentifier","src":"3584:6:125"}],"functionName":{"name":"lt","nativeSrc":"3578:2:125","nodeType":"YulIdentifier","src":"3578:2:125"},"nativeSrc":"3578:13:125","nodeType":"YulFunctionCall","src":"3578:13:125"},"nativeSrc":"3570:196:125","nodeType":"YulForLoop","post":{"nativeSrc":"3592:18:125","nodeType":"YulBlock","src":"3592:18:125","statements":[{"nativeSrc":"3594:14:125","nodeType":"YulAssignment","src":"3594:14:125","value":{"arguments":[{"name":"i","nativeSrc":"3603:1:125","nodeType":"YulIdentifier","src":"3603:1:125"},{"kind":"number","nativeSrc":"3606:1:125","nodeType":"YulLiteral","src":"3606:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3599:3:125","nodeType":"YulIdentifier","src":"3599:3:125"},"nativeSrc":"3599:9:125","nodeType":"YulFunctionCall","src":"3599:9:125"},"variableNames":[{"name":"i","nativeSrc":"3594:1:125","nodeType":"YulIdentifier","src":"3594:1:125"}]}]},"pre":{"nativeSrc":"3574:3:125","nodeType":"YulBlock","src":"3574:3:125","statements":[]},"src":"3570:196:125"},{"nativeSrc":"3775:11:125","nodeType":"YulAssignment","src":"3775:11:125","value":{"name":"pos","nativeSrc":"3783:3:125","nodeType":"YulIdentifier","src":"3783:3:125"},"variableNames":[{"name":"tail","nativeSrc":"3775:4:125","nodeType":"YulIdentifier","src":"3775:4:125"}]}]},"name":"abi_encode_tuple_t_array$_t_bytes4_$dyn_memory_ptr__to_t_array$_t_bytes4_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"3156:636:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3274:9:125","nodeType":"YulTypedName","src":"3274:9:125","type":""},{"name":"value0","nativeSrc":"3285:6:125","nodeType":"YulTypedName","src":"3285:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3296:4:125","nodeType":"YulTypedName","src":"3296:4:125","type":""}],"src":"3156:636:125"}]},"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 panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_contract_IAccessManager_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_address(value)\n    }\n    function abi_decode_array_bytes4_dyn_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 _1 := shl(5, length)\n        let dst := allocate_memory(add(_1, 0x20))\n        let array_1 := dst\n        mstore(dst, length)\n        dst := add(dst, 0x20)\n        let srcEnd := add(add(offset, _1), 0x20)\n        if gt(srcEnd, end) { revert(0, 0) }\n        let src := add(offset, 0x20)\n        for { } lt(src, srcEnd) { src := add(src, 0x20) }\n        {\n            let value := mload(src)\n            if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n            mstore(dst, value)\n            dst := add(dst, 0x20)\n        }\n        array := array_1\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptrt_contract$_IAccessManager_$22178t_array$_t_bytes4_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let offset := mload(add(headStart, 32))\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 array := allocate_memory(add(and(add(length, 0x1f), not(31)), 32))\n        mstore(array, length)\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        mcopy(add(array, 32), add(_1, 32), length)\n        mstore(add(add(array, length), 32), 0)\n        value1 := array\n        value2 := abi_decode_contract_IAccessManager_fromMemory(add(headStart, 64))\n        let offset_1 := mload(add(headStart, 96))\n        if gt(offset_1, sub(shl(64, 1), 1)) { revert(0, 0) }\n        value3 := abi_decode_array_bytes4_dyn_fromMemory(add(headStart, offset_1), dataEnd)\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 panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_array$_t_bytes4_$dyn_memory_ptr__to_t_array$_t_bytes4_$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 srcPtr := add(value0, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, and(mload(srcPtr), shl(224, 0xffffffff)))\n            pos := add(pos, 32)\n            srcPtr := add(srcPtr, 32)\n        }\n        tail := pos\n    }\n}","id":125,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"6080604052604051610b71380380610b71833981016040819052610022916105d9565b838381816100308282610055565b50505050610043826100b360201b60201c565b61004c8161014e565b50505050610719565b61005e826102ae565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156100a7576100a28282610324565b505050565b6100af6103c5565b5050565b806001600160a01b03163b5f036100ed576040516361798f2f60e11b81526001600160a01b03821660048201526024015b60405180910390fd5b805f516020610b515f395f51905f5280546001600160a01b0319166001600160a01b0392831617905560405190821681527f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9060200160405180910390a150565b80515f516020610b515f395f51905f52906001600160401b03811115610176576101766104f1565b60405190808252806020026020018201604052801561019f578160200160208202803683370190505b5080516101b691600184019160209091019061041d565b505f5b8251811015610272578281815181106101d4576101d46106b9565b60200260200101518260010182815481106101f1576101f16106b9565b905f5260205f2090600891828204019190066004026101000a81548163ffffffff021916908360e01c02179055506001826002015f858481518110610238576102386106b9565b6020908102919091018101516001600160e01b03191682528101919091526040015f20805460ff19169115159190911790556001016101b9565b507f3da94442c0a9daca8284d03a02aafdc638dfaae447d5d7879542573a9095b493826040516102a291906106cd565b60405180910390a15050565b806001600160a01b03163b5f036102e357604051634c9c8ce360e01b81526001600160a01b03821660048201526024016100e4565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f61033184846103e6565b905080801561035257505f3d118061035257505f846001600160a01b03163b115b156103675761035f6103f9565b9150506103bf565b801561039157604051639996b31560e01b81526001600160a01b03851660048201526024016100e4565b3d156103a45761039f610412565b6103bd565b60405163d6bda27560e01b815260040160405180910390fd5b505b92915050565b34156103e45760405163b398979f60e01b815260040160405180910390fd5b565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b828054828255905f5260205f20906007016008900481019282156104b6579160200282015f5b8382111561048457835183826101000a81548163ffffffff021916908360e01c02179055509260200192600401602081600301049283019260010302610443565b80156104b45782816101000a81549063ffffffff0219169055600401602081600301049283019260010302610484565b505b506104c29291506104c6565b5090565b5b808211156104c2575f81556001016104c7565b6001600160a01b03811681146104ee575f5ffd5b50565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b038111828210171561052d5761052d6104f1565b604052919050565b8051610540816104da565b919050565b5f82601f830112610554575f5ffd5b81516001600160401b0381111561056d5761056d6104f1565b8060051b61057d60208201610505565b91825260208185018101929081019086841115610598575f5ffd5b6020860192505b838310156105cf5782516001600160e01b0319811681146105be575f5ffd5b82526020928301929091019061059f565b9695505050505050565b5f5f5f5f608085870312156105ec575f5ffd5b84516105f7816104da565b60208601519094506001600160401b03811115610612575f5ffd5b8501601f81018713610622575f5ffd5b80516001600160401b0381111561063b5761063b6104f1565b61064e601f8201601f1916602001610505565b818152886020838501011115610662575f5ffd5b8160208401602083015e5f6020838301015280955050505061068660408601610535565b60608601519092506001600160401b038111156106a1575f5ffd5b6106ad87828801610545565b91505092959194509250565b634e487b7160e01b5f52603260045260245ffd5b602080825282518282018190525f918401906040840190835b8181101561070e5783516001600160e01b0319168352602093840193909201916001016106e6565b509095945050505050565b61042b806107265f395ff3fe608060405260043610610033575f3560e01c806314416c031461003d5780633a7b7a3914610067578063bf7e214f14610093575b61003b6100a7565b005b348015610048575f5ffd5b506100516100b9565b60405161005e9190610306565b60405180910390f35b348015610072575f5ffd5b5061007b61015d565b6040516001600160a01b03909116815260200161005e565b34801561009e575f5ffd5b5061007b61018f565b6100b76100b261019d565b6101a6565b565b60607f787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c0060010180548060200260200160405190810160405280929190818152602001828054801561015357602002820191905f5260205f20905f905b82829054906101000a900460e01b6001600160e01b031916815260200190600401906020826003010492830192600103820291508084116101155790505b5050505050905090565b5f7f787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c005b546001600160a01b0316919050565b5f61019861015d565b905090565b5f6101986102c1565b5f6101b46004823681610352565b6101bd91610379565b90505f610201826001600160e01b0319165f9081527f787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c02602052604090205460ff1690565b9050806102b35761021061015d565b60405163b700961360e01b81523360048201523060248201526001600160e01b0319841660448201526001600160a01b03919091169063b7009613906064016040805180830381865afa158015610269573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061028d91906103b1565b509050806102b35760405162d1953b60e31b815233600482015260240160405180910390fd5b6102bc836102e8565b505050565b5f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc610180565b365f5f375f5f365f845af43d5f5f3e808015610302573d5ff35b3d5ffd5b602080825282518282018190525f918401906040840190835b818110156103475783516001600160e01b03191683526020938401939092019160010161031f565b509095945050505050565b5f5f85851115610360575f5ffd5b8386111561036c575f5ffd5b5050820193919092039150565b80356001600160e01b031981169060048410156103aa576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f5f604083850312156103c2575f5ffd5b825180151581146103d1575f5ffd5b602084015190925063ffffffff811681146103ea575f5ffd5b80915050925092905056fea2646970667358221220796d73dadbf09c6c954563dc24f0c3543d8cd13e6203e424ca2d472b56f4a76064736f6c634300081e0033787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c00","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH2 0xB71 CODESIZE SUB DUP1 PUSH2 0xB71 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x22 SWAP2 PUSH2 0x5D9 JUMP JUMPDEST DUP4 DUP4 DUP2 DUP2 PUSH2 0x30 DUP3 DUP3 PUSH2 0x55 JUMP JUMPDEST POP POP POP POP PUSH2 0x43 DUP3 PUSH2 0xB3 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0x4C DUP2 PUSH2 0x14E JUMP JUMPDEST POP POP POP POP PUSH2 0x719 JUMP JUMPDEST PUSH2 0x5E DUP3 PUSH2 0x2AE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0xA7 JUMPI PUSH2 0xA2 DUP3 DUP3 PUSH2 0x324 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xAF PUSH2 0x3C5 JUMP JUMPDEST POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0xED JUMPI PUSH1 0x40 MLOAD PUSH4 0x61798F2F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0xB51 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND OR SWAP1 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP3 AND DUP2 MSTORE PUSH32 0x2F658B440C35314F52658EA8A740E05B284CDC84DC9AE01E891F21B8933E7CAD SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST DUP1 MLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0xB51 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x176 JUMPI PUSH2 0x176 PUSH2 0x4F1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x19F JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP DUP1 MLOAD PUSH2 0x1B6 SWAP2 PUSH1 0x1 DUP5 ADD SWAP2 PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH2 0x41D JUMP JUMPDEST POP PUSH0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x272 JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x1D4 JUMPI PUSH2 0x1D4 PUSH2 0x6B9 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 PUSH1 0x1 ADD DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x1F1 JUMPI PUSH2 0x1F1 PUSH2 0x6B9 JUMP JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x8 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x4 MUL PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH4 0xFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0xE0 SHR MUL OR SWAP1 SSTORE POP PUSH1 0x1 DUP3 PUSH1 0x2 ADD PUSH0 DUP6 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x238 JUMPI PUSH2 0x238 PUSH2 0x6B9 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH0 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x1 ADD PUSH2 0x1B9 JUMP JUMPDEST POP PUSH32 0x3DA94442C0A9DACA8284D03A02AAFDC638DFAAE447D5D7879542573A9095B493 DUP3 PUSH1 0x40 MLOAD PUSH2 0x2A2 SWAP2 SWAP1 PUSH2 0x6CD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x2E3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xE4 JUMP JUMPDEST PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x331 DUP5 DUP5 PUSH2 0x3E6 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x352 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x352 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x367 JUMPI PUSH2 0x35F PUSH2 0x3F9 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3BF JUMP JUMPDEST DUP1 ISZERO PUSH2 0x391 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 0xE4 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x3A4 JUMPI PUSH2 0x39F PUSH2 0x412 JUMP JUMPDEST PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x3E4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x7 ADD PUSH1 0x8 SWAP1 DIV DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x4B6 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD PUSH0 JUMPDEST DUP4 DUP3 GT ISZERO PUSH2 0x484 JUMPI DUP4 MLOAD DUP4 DUP3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH4 0xFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0xE0 SHR MUL OR SWAP1 SSTORE POP SWAP3 PUSH1 0x20 ADD SWAP3 PUSH1 0x4 ADD PUSH1 0x20 DUP2 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB MUL PUSH2 0x443 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4B4 JUMPI DUP3 DUP2 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH4 0xFFFFFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x4 ADD PUSH1 0x20 DUP2 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB MUL PUSH2 0x484 JUMP JUMPDEST POP JUMPDEST POP PUSH2 0x4C2 SWAP3 SWAP2 POP PUSH2 0x4C6 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x4C2 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x4C7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x4EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x52D JUMPI PUSH2 0x52D PUSH2 0x4F1 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0x540 DUP2 PUSH2 0x4DA JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x554 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x56D JUMPI PUSH2 0x56D PUSH2 0x4F1 JUMP JUMPDEST DUP1 PUSH1 0x5 SHL PUSH2 0x57D PUSH1 0x20 DUP3 ADD PUSH2 0x505 JUMP JUMPDEST SWAP2 DUP3 MSTORE PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD SWAP3 SWAP1 DUP2 ADD SWAP1 DUP7 DUP5 GT ISZERO PUSH2 0x598 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP7 ADD SWAP3 POP JUMPDEST DUP4 DUP4 LT ISZERO PUSH2 0x5CF JUMPI DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x5BE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD SWAP3 SWAP1 SWAP2 ADD SWAP1 PUSH2 0x59F JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5EC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 MLOAD PUSH2 0x5F7 DUP2 PUSH2 0x4DA JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MLOAD SWAP1 SWAP5 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x612 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x622 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x63B JUMPI PUSH2 0x63B PUSH2 0x4F1 JUMP JUMPDEST PUSH2 0x64E PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x505 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP9 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x662 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP PUSH2 0x686 PUSH1 0x40 DUP7 ADD PUSH2 0x535 JUMP JUMPDEST PUSH1 0x60 DUP7 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x6A1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x6AD DUP8 DUP3 DUP9 ADD PUSH2 0x545 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP2 DUP5 ADD SWAP1 PUSH1 0x40 DUP5 ADD SWAP1 DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x70E JUMPI DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x6E6 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x42B DUP1 PUSH2 0x726 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x33 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x14416C03 EQ PUSH2 0x3D JUMPI DUP1 PUSH4 0x3A7B7A39 EQ PUSH2 0x67 JUMPI DUP1 PUSH4 0xBF7E214F EQ PUSH2 0x93 JUMPI JUMPDEST PUSH2 0x3B PUSH2 0xA7 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x48 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51 PUSH2 0xB9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5E SWAP2 SWAP1 PUSH2 0x306 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x72 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7B PUSH2 0x15D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x5E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7B PUSH2 0x18F JUMP JUMPDEST PUSH2 0xB7 PUSH2 0xB2 PUSH2 0x19D JUMP JUMPDEST PUSH2 0x1A6 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH32 0x787C9D7AC910D64252BCEA05ACD5B7AF6D59644E0451A8BB5674587555049C00 PUSH1 0x1 ADD DUP1 SLOAD DUP1 PUSH1 0x20 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 DUP1 ISZERO PUSH2 0x153 JUMPI PUSH1 0x20 MUL DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH0 SWAP1 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x115 JUMPI SWAP1 POP JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH32 0x787C9D7AC910D64252BCEA05ACD5B7AF6D59644E0451A8BB5674587555049C00 JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x198 PUSH2 0x15D JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x198 PUSH2 0x2C1 JUMP JUMPDEST PUSH0 PUSH2 0x1B4 PUSH1 0x4 DUP3 CALLDATASIZE DUP2 PUSH2 0x352 JUMP JUMPDEST PUSH2 0x1BD SWAP2 PUSH2 0x379 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x201 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x787C9D7AC910D64252BCEA05ACD5B7AF6D59644E0451A8BB5674587555049C02 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x2B3 JUMPI PUSH2 0x210 PUSH2 0x15D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xB7009613 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP5 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xB7009613 SWAP1 PUSH1 0x64 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x269 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 0x28D SWAP2 SWAP1 PUSH2 0x3B1 JUMP JUMPDEST POP SWAP1 POP DUP1 PUSH2 0x2B3 JUMPI PUSH1 0x40 MLOAD PUSH3 0xD1953B PUSH1 0xE3 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2BC DUP4 PUSH2 0x2E8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH2 0x180 JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0x302 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP2 DUP5 ADD SWAP1 PUSH1 0x40 DUP5 ADD SWAP1 DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x347 JUMPI DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x31F JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x360 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x36C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x3AA 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 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3C2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x3D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x3EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH26 0x6D73DADBF09C6C954563DC24F0C3543D8CD13E6203E424CA2D47 0x2B JUMP DELEGATECALL 0xA7 PUSH1 0x64 PUSH20 0x6F6C634300081E0033787C9D7AC910D64252BCEA SDIV 0xAC 0xD5 0xB7 0xAF PUSH14 0x59644E0451A8BB5674587555049C STOP ","sourceMap":"1448:2096:17:-:0;;;2569:294;;;;;;;;;;;;;;;;;;:::i;:::-;2739:14;2755:5;2739:14;2755:5;1155:52:71;2739:14:17;2755:5;1155:29:71;:52::i;:::-;1081:133;;1843:102:18;;2768:40:17::1;2794:13;2768:25;;;:40;;:::i;:::-;2814:44;2842:15:::0;2814:27:::1;:44::i;:::-;2569:294:::0;;;;1448:2096;;2264:344:72;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:72;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;:::-;;2264:344;;:::o;2454:148::-;2573:18;:16;:18::i;:::-;2264:344;;:::o;1375:352:16:-;1458:13;-1:-1:-1;;;;;1450:34:16;;1488:1;1450:39;1446:140;;1506:73;;-1:-1:-1;;;1506:73:16;;-1:-1:-1;;;;;2980:32:125;;1506:73:16;;;2962:51:125;2935:18;;1506:73:16;;;;;;;;1446:140;1638:13;-1:-1:-1;;;;;;;;;;;1591:60:16;;-1:-1:-1;;;;;;1591:60:16;-1:-1:-1;;;;;1591:60:16;;;;;;1662;;2980:32:125;;;2962:51;;1662:60:16;;2950:2:125;2935:18;1662:60:16;;;;;;;1375:352;:::o;1731:443::-;1923:22;;-1:-1:-1;;;;;;;;;;;1328:33:16;-1:-1:-1;;;;;1910:36:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1910:36:16;-1:-1:-1;1890:56:16;;;;:17;;;;:56;;;;;;:::i;:::-;;1957:9;1952:148;1972:15;:22;1968:1;:26;1952:148;;;2032:15;2048:1;2032:18;;;;;;;;:::i;:::-;;;;;;;2009:1;:17;;2027:1;2009:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;2089:4;2058:1;:8;;:28;2067:15;2083:1;2067:18;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;;2058:28:16;;;;;;;;;;;-1:-1:-1;2058:28:16;:35;;-1:-1:-1;;2058:35:16;;;;;;;;;;-1:-1:-1;1996:3:16;1952:148;;;;2110:59;2153:15;2110:59;;;;;;:::i;:::-;;;;;;;;1801:373;1731:443;:::o;1671:281:72:-;1748:17;-1:-1:-1;;;;;1748:29:72;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:72;;-1:-1:-1;;;;;2980:32:125;;1805:47:72;;;2962:51:125;2935:18;;1805:47:72;2816:203:125;1744:119:72;811:66;1872:73;;-1:-1:-1;;;;;;1872:73:72;-1:-1:-1;;;;;1872:73:72;;;;;;;;;;1671:281::o;4691:549:87:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:87;4583:16:91;4886:33:87;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:87;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:87;;-1:-1:-1;;;;;2980:32:125;;5045:24:87;;;2962:51:125;2935:18;;5045:24:87;2816:203:125;5011:223:87;4583:16:91;5090:33:87;5086:148;;5139:27;:25;:27::i;:::-;5086:148;;;5204:19;;-1:-1:-1;;;5204:19:87;;;;;;;;;;;5086:148;4788:452;4691:549;;;;;:::o;6113:122:72:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:72;;;;;;;;;;;6159:70;6113:122::o;3383:242:91:-;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:91:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;1448:2096:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1448:2096:17;;;-1:-1:-1;1448:2096:17;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:125;-1:-1:-1;;;;;89:31:125;;79:42;;69:70;;135:1;132;125:12;69:70;14:131;:::o;150:127::-;211:10;206:3;202:20;199:1;192:31;242:4;239:1;232:15;266:4;263:1;256:15;282:275;353:2;347:9;418:2;399:13;;-1:-1:-1;;395:27:125;383:40;;-1:-1:-1;;;;;438:34:125;;474:22;;;435:62;432:88;;;500:18;;:::i;:::-;536:2;529:22;282:275;;-1:-1:-1;282:275:125:o;562:154::-;657:13;;679:31;657:13;679:31;:::i;:::-;562:154;;;:::o;721:832::-;785:5;838:3;831:4;823:6;819:17;815:27;805:55;;856:1;853;846:12;805:55;883:13;;-1:-1:-1;;;;;908:30:125;;905:56;;;941:18;;:::i;:::-;987:6;984:1;980:14;1014:30;1038:4;1034:2;1030:13;1014:30;:::i;:::-;1080:19;;;1124:4;1156:15;;;1152:26;;;1115:14;;;;1190:15;;;1187:35;;;1218:1;1215;1208:12;1187:35;1254:4;1246:6;1242:17;1231:28;;1268:254;1284:6;1279:3;1276:15;1268:254;;;1353:10;;-1:-1:-1;;;;;;1396:32:125;;1386:43;;1376:71;;1443:1;1440;1433:12;1376:71;1460:18;;1507:4;1301:14;;;;1498;;;;1268:254;;;1540:7;721:832;-1:-1:-1;;;;;;721:832:125:o;1558:1253::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1838:9;1832:16;1857:31;1882:5;1857:31;:::i;:::-;1956:2;1941:18;;1935:25;1907:5;;-1:-1:-1;;;;;;1972:30:125;;1969:50;;;2015:1;2012;2005:12;1969:50;2038:22;;2091:4;2083:13;;2079:27;-1:-1:-1;2069:55:125;;2120:1;2117;2110:12;2069:55;2147:9;;-1:-1:-1;;;;;2168:30:125;;2165:56;;;2201:18;;:::i;:::-;2243:57;2290:2;2267:17;;-1:-1:-1;;2263:31:125;2296:2;2259:40;2243:57;:::i;:::-;2323:6;2316:5;2309:21;2371:7;2366:2;2357:6;2353:2;2349:15;2345:24;2342:37;2339:57;;;2392:1;2389;2382:12;2339:57;2440:6;2435:2;2431;2427:11;2422:2;2415:5;2411:14;2405:42;2492:1;2487:2;2478:6;2471:5;2467:18;2463:27;2456:38;2513:5;2503:15;;;;;2537:65;2598:2;2587:9;2583:18;2537:65;:::i;:::-;2648:2;2633:18;;2627:25;2527:75;;-1:-1:-1;;;;;;2664:32:125;;2661:52;;;2709:1;2706;2699:12;2661:52;2732:73;2797:7;2786:8;2775:9;2771:24;2732:73;:::i;:::-;2722:83;;;1558:1253;;;;;;;:::o;3024:127::-;3085:10;3080:3;3076:20;3073:1;3066:31;3116:4;3113:1;3106:15;3140:4;3137:1;3130:15;3156:636;3344:2;3356:21;;;3426:13;;3329:18;;;3448:22;;;3296:4;;3527:15;;;3501:2;3486:18;;;3296:4;3570:196;3584:6;3581:1;3578:13;3570:196;;;3649:13;;-1:-1:-1;;;;;;3645:40:125;3633:53;;3715:2;3741:15;;;;3706:12;;;;3606:1;3599:9;3570:196;;;-1:-1:-1;3783:3:125;;3156:636;-1:-1:-1;;;;;3156:636:125:o;:::-;1448:2096:17;;;;;;"},"deployedBytecode":{"functionDebugData":{"@ACCESS_MANAGER_4169":{"entryPoint":349,"id":4169,"parameterSlots":0,"returnSlots":1},"@PASS_THRU_METHODS_4155":{"entryPoint":185,"id":4155,"parameterSlots":0,"returnSlots":1},"@_23155":{"entryPoint":null,"id":23155,"parameterSlots":0,"returnSlots":0},"@_delegate_23131":{"entryPoint":744,"id":23131,"parameterSlots":1,"returnSlots":0},"@_delegate_4274":{"entryPoint":422,"id":4274,"parameterSlots":1,"returnSlots":0},"@_fallback_23147":{"entryPoint":167,"id":23147,"parameterSlots":0,"returnSlots":0},"@_implementation_22825":{"entryPoint":413,"id":22825,"parameterSlots":0,"returnSlots":1},"@_skipAC_4141":{"entryPoint":null,"id":4141,"parameterSlots":1,"returnSlots":1},"@authority_4216":{"entryPoint":399,"id":4216,"parameterSlots":0,"returnSlots":1},"@getAccessManagedProxyStorage_3873":{"entryPoint":null,"id":3873,"parameterSlots":0,"returnSlots":1},"@getAddressSlot_31145":{"entryPoint":null,"id":31145,"parameterSlots":1,"returnSlots":1},"@getImplementation_22872":{"entryPoint":705,"id":22872,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_boolt_uint32_fromMemory":{"entryPoint":945,"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_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_array$_t_bytes4_$dyn_memory_ptr__to_t_array$_t_bytes4_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":774,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IAccessManager_$22178__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":850,"id":null,"parameterSlots":4,"returnSlots":2},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4":{"entryPoint":889,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:2619:125","nodeType":"YulBlock","src":"0:2619:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"163:487:125","nodeType":"YulBlock","src":"163:487:125","statements":[{"nativeSrc":"173:32:125","nodeType":"YulVariableDeclaration","src":"173:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"191:9:125","nodeType":"YulIdentifier","src":"191:9:125"},{"kind":"number","nativeSrc":"202:2:125","nodeType":"YulLiteral","src":"202:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"187:3:125","nodeType":"YulIdentifier","src":"187:3:125"},"nativeSrc":"187:18:125","nodeType":"YulFunctionCall","src":"187:18:125"},"variables":[{"name":"tail_1","nativeSrc":"177:6:125","nodeType":"YulTypedName","src":"177:6:125","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"221:9:125","nodeType":"YulIdentifier","src":"221:9:125"},{"kind":"number","nativeSrc":"232:2:125","nodeType":"YulLiteral","src":"232:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"214:6:125","nodeType":"YulIdentifier","src":"214:6:125"},"nativeSrc":"214:21:125","nodeType":"YulFunctionCall","src":"214:21:125"},"nativeSrc":"214:21:125","nodeType":"YulExpressionStatement","src":"214:21:125"},{"nativeSrc":"244:17:125","nodeType":"YulVariableDeclaration","src":"244:17:125","value":{"name":"tail_1","nativeSrc":"255:6:125","nodeType":"YulIdentifier","src":"255:6:125"},"variables":[{"name":"pos","nativeSrc":"248:3:125","nodeType":"YulTypedName","src":"248:3:125","type":""}]},{"nativeSrc":"270:27:125","nodeType":"YulVariableDeclaration","src":"270:27:125","value":{"arguments":[{"name":"value0","nativeSrc":"290:6:125","nodeType":"YulIdentifier","src":"290:6:125"}],"functionName":{"name":"mload","nativeSrc":"284:5:125","nodeType":"YulIdentifier","src":"284:5:125"},"nativeSrc":"284:13:125","nodeType":"YulFunctionCall","src":"284:13:125"},"variables":[{"name":"length","nativeSrc":"274:6:125","nodeType":"YulTypedName","src":"274:6:125","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"313:6:125","nodeType":"YulIdentifier","src":"313:6:125"},{"name":"length","nativeSrc":"321:6:125","nodeType":"YulIdentifier","src":"321:6:125"}],"functionName":{"name":"mstore","nativeSrc":"306:6:125","nodeType":"YulIdentifier","src":"306:6:125"},"nativeSrc":"306:22:125","nodeType":"YulFunctionCall","src":"306:22:125"},"nativeSrc":"306:22:125","nodeType":"YulExpressionStatement","src":"306:22:125"},{"nativeSrc":"337:25:125","nodeType":"YulAssignment","src":"337:25:125","value":{"arguments":[{"name":"headStart","nativeSrc":"348:9:125","nodeType":"YulIdentifier","src":"348:9:125"},{"kind":"number","nativeSrc":"359:2:125","nodeType":"YulLiteral","src":"359:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"344:3:125","nodeType":"YulIdentifier","src":"344:3:125"},"nativeSrc":"344:18:125","nodeType":"YulFunctionCall","src":"344:18:125"},"variableNames":[{"name":"pos","nativeSrc":"337:3:125","nodeType":"YulIdentifier","src":"337:3:125"}]},{"nativeSrc":"371:29:125","nodeType":"YulVariableDeclaration","src":"371:29:125","value":{"arguments":[{"name":"value0","nativeSrc":"389:6:125","nodeType":"YulIdentifier","src":"389:6:125"},{"kind":"number","nativeSrc":"397:2:125","nodeType":"YulLiteral","src":"397:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"385:3:125","nodeType":"YulIdentifier","src":"385:3:125"},"nativeSrc":"385:15:125","nodeType":"YulFunctionCall","src":"385:15:125"},"variables":[{"name":"srcPtr","nativeSrc":"375:6:125","nodeType":"YulTypedName","src":"375:6:125","type":""}]},{"nativeSrc":"409:10:125","nodeType":"YulVariableDeclaration","src":"409:10:125","value":{"kind":"number","nativeSrc":"418:1:125","nodeType":"YulLiteral","src":"418:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"413:1:125","nodeType":"YulTypedName","src":"413:1:125","type":""}]},{"body":{"nativeSrc":"477:147:125","nodeType":"YulBlock","src":"477:147:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"498:3:125","nodeType":"YulIdentifier","src":"498:3:125"},{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"513:6:125","nodeType":"YulIdentifier","src":"513:6:125"}],"functionName":{"name":"mload","nativeSrc":"507:5:125","nodeType":"YulIdentifier","src":"507:5:125"},"nativeSrc":"507:13:125","nodeType":"YulFunctionCall","src":"507:13:125"},{"arguments":[{"kind":"number","nativeSrc":"526:3:125","nodeType":"YulLiteral","src":"526:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"531:10:125","nodeType":"YulLiteral","src":"531:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"522:3:125","nodeType":"YulIdentifier","src":"522:3:125"},"nativeSrc":"522:20:125","nodeType":"YulFunctionCall","src":"522:20:125"}],"functionName":{"name":"and","nativeSrc":"503:3:125","nodeType":"YulIdentifier","src":"503:3:125"},"nativeSrc":"503:40:125","nodeType":"YulFunctionCall","src":"503:40:125"}],"functionName":{"name":"mstore","nativeSrc":"491:6:125","nodeType":"YulIdentifier","src":"491:6:125"},"nativeSrc":"491:53:125","nodeType":"YulFunctionCall","src":"491:53:125"},"nativeSrc":"491:53:125","nodeType":"YulExpressionStatement","src":"491:53:125"},{"nativeSrc":"557:19:125","nodeType":"YulAssignment","src":"557:19:125","value":{"arguments":[{"name":"pos","nativeSrc":"568:3:125","nodeType":"YulIdentifier","src":"568:3:125"},{"kind":"number","nativeSrc":"573:2:125","nodeType":"YulLiteral","src":"573:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"564:3:125","nodeType":"YulIdentifier","src":"564:3:125"},"nativeSrc":"564:12:125","nodeType":"YulFunctionCall","src":"564:12:125"},"variableNames":[{"name":"pos","nativeSrc":"557:3:125","nodeType":"YulIdentifier","src":"557:3:125"}]},{"nativeSrc":"589:25:125","nodeType":"YulAssignment","src":"589:25:125","value":{"arguments":[{"name":"srcPtr","nativeSrc":"603:6:125","nodeType":"YulIdentifier","src":"603:6:125"},{"kind":"number","nativeSrc":"611:2:125","nodeType":"YulLiteral","src":"611:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"599:3:125","nodeType":"YulIdentifier","src":"599:3:125"},"nativeSrc":"599:15:125","nodeType":"YulFunctionCall","src":"599:15:125"},"variableNames":[{"name":"srcPtr","nativeSrc":"589:6:125","nodeType":"YulIdentifier","src":"589:6:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"439:1:125","nodeType":"YulIdentifier","src":"439:1:125"},{"name":"length","nativeSrc":"442:6:125","nodeType":"YulIdentifier","src":"442:6:125"}],"functionName":{"name":"lt","nativeSrc":"436:2:125","nodeType":"YulIdentifier","src":"436:2:125"},"nativeSrc":"436:13:125","nodeType":"YulFunctionCall","src":"436:13:125"},"nativeSrc":"428:196:125","nodeType":"YulForLoop","post":{"nativeSrc":"450:18:125","nodeType":"YulBlock","src":"450:18:125","statements":[{"nativeSrc":"452:14:125","nodeType":"YulAssignment","src":"452:14:125","value":{"arguments":[{"name":"i","nativeSrc":"461:1:125","nodeType":"YulIdentifier","src":"461:1:125"},{"kind":"number","nativeSrc":"464:1:125","nodeType":"YulLiteral","src":"464:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"457:3:125","nodeType":"YulIdentifier","src":"457:3:125"},"nativeSrc":"457:9:125","nodeType":"YulFunctionCall","src":"457:9:125"},"variableNames":[{"name":"i","nativeSrc":"452:1:125","nodeType":"YulIdentifier","src":"452:1:125"}]}]},"pre":{"nativeSrc":"432:3:125","nodeType":"YulBlock","src":"432:3:125","statements":[]},"src":"428:196:125"},{"nativeSrc":"633:11:125","nodeType":"YulAssignment","src":"633:11:125","value":{"name":"pos","nativeSrc":"641:3:125","nodeType":"YulIdentifier","src":"641:3:125"},"variableNames":[{"name":"tail","nativeSrc":"633:4:125","nodeType":"YulIdentifier","src":"633:4:125"}]}]},"name":"abi_encode_tuple_t_array$_t_bytes4_$dyn_memory_ptr__to_t_array$_t_bytes4_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"14:636:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"132:9:125","nodeType":"YulTypedName","src":"132:9:125","type":""},{"name":"value0","nativeSrc":"143:6:125","nodeType":"YulTypedName","src":"143:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"154:4:125","nodeType":"YulTypedName","src":"154:4:125","type":""}],"src":"14:636:125"},{"body":{"nativeSrc":"780:102:125","nodeType":"YulBlock","src":"780:102:125","statements":[{"nativeSrc":"790:26:125","nodeType":"YulAssignment","src":"790:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"802:9:125","nodeType":"YulIdentifier","src":"802:9:125"},{"kind":"number","nativeSrc":"813:2:125","nodeType":"YulLiteral","src":"813:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"798:3:125","nodeType":"YulIdentifier","src":"798:3:125"},"nativeSrc":"798:18:125","nodeType":"YulFunctionCall","src":"798:18:125"},"variableNames":[{"name":"tail","nativeSrc":"790:4:125","nodeType":"YulIdentifier","src":"790:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"832:9:125","nodeType":"YulIdentifier","src":"832:9:125"},{"arguments":[{"name":"value0","nativeSrc":"847:6:125","nodeType":"YulIdentifier","src":"847:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"863:3:125","nodeType":"YulLiteral","src":"863:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"868:1:125","nodeType":"YulLiteral","src":"868:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"859:3:125","nodeType":"YulIdentifier","src":"859:3:125"},"nativeSrc":"859:11:125","nodeType":"YulFunctionCall","src":"859:11:125"},{"kind":"number","nativeSrc":"872:1:125","nodeType":"YulLiteral","src":"872:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"855:3:125","nodeType":"YulIdentifier","src":"855:3:125"},"nativeSrc":"855:19:125","nodeType":"YulFunctionCall","src":"855:19:125"}],"functionName":{"name":"and","nativeSrc":"843:3:125","nodeType":"YulIdentifier","src":"843:3:125"},"nativeSrc":"843:32:125","nodeType":"YulFunctionCall","src":"843:32:125"}],"functionName":{"name":"mstore","nativeSrc":"825:6:125","nodeType":"YulIdentifier","src":"825:6:125"},"nativeSrc":"825:51:125","nodeType":"YulFunctionCall","src":"825:51:125"},"nativeSrc":"825:51:125","nodeType":"YulExpressionStatement","src":"825:51:125"}]},"name":"abi_encode_tuple_t_contract$_IAccessManager_$22178__to_t_address__fromStack_reversed","nativeSrc":"655:227:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"749:9:125","nodeType":"YulTypedName","src":"749:9:125","type":""},{"name":"value0","nativeSrc":"760:6:125","nodeType":"YulTypedName","src":"760:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"771:4:125","nodeType":"YulTypedName","src":"771:4:125","type":""}],"src":"655:227:125"},{"body":{"nativeSrc":"988:102:125","nodeType":"YulBlock","src":"988:102:125","statements":[{"nativeSrc":"998:26:125","nodeType":"YulAssignment","src":"998:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1010:9:125","nodeType":"YulIdentifier","src":"1010:9:125"},{"kind":"number","nativeSrc":"1021:2:125","nodeType":"YulLiteral","src":"1021:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1006:3:125","nodeType":"YulIdentifier","src":"1006:3:125"},"nativeSrc":"1006:18:125","nodeType":"YulFunctionCall","src":"1006:18:125"},"variableNames":[{"name":"tail","nativeSrc":"998:4:125","nodeType":"YulIdentifier","src":"998:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1040:9:125","nodeType":"YulIdentifier","src":"1040:9:125"},{"arguments":[{"name":"value0","nativeSrc":"1055:6:125","nodeType":"YulIdentifier","src":"1055:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1071:3:125","nodeType":"YulLiteral","src":"1071:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"1076:1:125","nodeType":"YulLiteral","src":"1076:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1067:3:125","nodeType":"YulIdentifier","src":"1067:3:125"},"nativeSrc":"1067:11:125","nodeType":"YulFunctionCall","src":"1067:11:125"},{"kind":"number","nativeSrc":"1080:1:125","nodeType":"YulLiteral","src":"1080:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1063:3:125","nodeType":"YulIdentifier","src":"1063:3:125"},"nativeSrc":"1063:19:125","nodeType":"YulFunctionCall","src":"1063:19:125"}],"functionName":{"name":"and","nativeSrc":"1051:3:125","nodeType":"YulIdentifier","src":"1051:3:125"},"nativeSrc":"1051:32:125","nodeType":"YulFunctionCall","src":"1051:32:125"}],"functionName":{"name":"mstore","nativeSrc":"1033:6:125","nodeType":"YulIdentifier","src":"1033:6:125"},"nativeSrc":"1033:51:125","nodeType":"YulFunctionCall","src":"1033:51:125"},"nativeSrc":"1033:51:125","nodeType":"YulExpressionStatement","src":"1033:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"887:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"957:9:125","nodeType":"YulTypedName","src":"957:9:125","type":""},{"name":"value0","nativeSrc":"968:6:125","nodeType":"YulTypedName","src":"968:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"979:4:125","nodeType":"YulTypedName","src":"979:4:125","type":""}],"src":"887:203:125"},{"body":{"nativeSrc":"1225:201:125","nodeType":"YulBlock","src":"1225:201:125","statements":[{"body":{"nativeSrc":"1263:16:125","nodeType":"YulBlock","src":"1263:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1272:1:125","nodeType":"YulLiteral","src":"1272:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1275:1:125","nodeType":"YulLiteral","src":"1275:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1265:6:125","nodeType":"YulIdentifier","src":"1265:6:125"},"nativeSrc":"1265:12:125","nodeType":"YulFunctionCall","src":"1265:12:125"},"nativeSrc":"1265:12:125","nodeType":"YulExpressionStatement","src":"1265:12:125"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"1241:10:125","nodeType":"YulIdentifier","src":"1241:10:125"},{"name":"endIndex","nativeSrc":"1253:8:125","nodeType":"YulIdentifier","src":"1253:8:125"}],"functionName":{"name":"gt","nativeSrc":"1238:2:125","nodeType":"YulIdentifier","src":"1238:2:125"},"nativeSrc":"1238:24:125","nodeType":"YulFunctionCall","src":"1238:24:125"},"nativeSrc":"1235:44:125","nodeType":"YulIf","src":"1235:44:125"},{"body":{"nativeSrc":"1312:16:125","nodeType":"YulBlock","src":"1312:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1321:1:125","nodeType":"YulLiteral","src":"1321:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1324:1:125","nodeType":"YulLiteral","src":"1324:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1314:6:125","nodeType":"YulIdentifier","src":"1314:6:125"},"nativeSrc":"1314:12:125","nodeType":"YulFunctionCall","src":"1314:12:125"},"nativeSrc":"1314:12:125","nodeType":"YulExpressionStatement","src":"1314:12:125"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"1294:8:125","nodeType":"YulIdentifier","src":"1294:8:125"},{"name":"length","nativeSrc":"1304:6:125","nodeType":"YulIdentifier","src":"1304:6:125"}],"functionName":{"name":"gt","nativeSrc":"1291:2:125","nodeType":"YulIdentifier","src":"1291:2:125"},"nativeSrc":"1291:20:125","nodeType":"YulFunctionCall","src":"1291:20:125"},"nativeSrc":"1288:40:125","nodeType":"YulIf","src":"1288:40:125"},{"nativeSrc":"1337:36:125","nodeType":"YulAssignment","src":"1337:36:125","value":{"arguments":[{"name":"offset","nativeSrc":"1354:6:125","nodeType":"YulIdentifier","src":"1354:6:125"},{"name":"startIndex","nativeSrc":"1362:10:125","nodeType":"YulIdentifier","src":"1362:10:125"}],"functionName":{"name":"add","nativeSrc":"1350:3:125","nodeType":"YulIdentifier","src":"1350:3:125"},"nativeSrc":"1350:23:125","nodeType":"YulFunctionCall","src":"1350:23:125"},"variableNames":[{"name":"offsetOut","nativeSrc":"1337:9:125","nodeType":"YulIdentifier","src":"1337:9:125"}]},{"nativeSrc":"1382:38:125","nodeType":"YulAssignment","src":"1382:38:125","value":{"arguments":[{"name":"endIndex","nativeSrc":"1399:8:125","nodeType":"YulIdentifier","src":"1399:8:125"},{"name":"startIndex","nativeSrc":"1409:10:125","nodeType":"YulIdentifier","src":"1409:10:125"}],"functionName":{"name":"sub","nativeSrc":"1395:3:125","nodeType":"YulIdentifier","src":"1395:3:125"},"nativeSrc":"1395:25:125","nodeType":"YulFunctionCall","src":"1395:25:125"},"variableNames":[{"name":"lengthOut","nativeSrc":"1382:9:125","nodeType":"YulIdentifier","src":"1382:9:125"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"1095:331:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"1159:6:125","nodeType":"YulTypedName","src":"1159:6:125","type":""},{"name":"length","nativeSrc":"1167:6:125","nodeType":"YulTypedName","src":"1167:6:125","type":""},{"name":"startIndex","nativeSrc":"1175:10:125","nodeType":"YulTypedName","src":"1175:10:125","type":""},{"name":"endIndex","nativeSrc":"1187:8:125","nodeType":"YulTypedName","src":"1187:8:125","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"1200:9:125","nodeType":"YulTypedName","src":"1200:9:125","type":""},{"name":"lengthOut","nativeSrc":"1211:9:125","nodeType":"YulTypedName","src":"1211:9:125","type":""}],"src":"1095:331:125"},{"body":{"nativeSrc":"1531:238:125","nodeType":"YulBlock","src":"1531:238:125","statements":[{"nativeSrc":"1541:29:125","nodeType":"YulVariableDeclaration","src":"1541:29:125","value":{"arguments":[{"name":"array","nativeSrc":"1564:5:125","nodeType":"YulIdentifier","src":"1564:5:125"}],"functionName":{"name":"calldataload","nativeSrc":"1551:12:125","nodeType":"YulIdentifier","src":"1551:12:125"},"nativeSrc":"1551:19:125","nodeType":"YulFunctionCall","src":"1551:19:125"},"variables":[{"name":"_1","nativeSrc":"1545:2:125","nodeType":"YulTypedName","src":"1545:2:125","type":""}]},{"nativeSrc":"1579:38:125","nodeType":"YulAssignment","src":"1579:38:125","value":{"arguments":[{"name":"_1","nativeSrc":"1592:2:125","nodeType":"YulIdentifier","src":"1592:2:125"},{"arguments":[{"kind":"number","nativeSrc":"1600:3:125","nodeType":"YulLiteral","src":"1600:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"1605:10:125","nodeType":"YulLiteral","src":"1605:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"1596:3:125","nodeType":"YulIdentifier","src":"1596:3:125"},"nativeSrc":"1596:20:125","nodeType":"YulFunctionCall","src":"1596:20:125"}],"functionName":{"name":"and","nativeSrc":"1588:3:125","nodeType":"YulIdentifier","src":"1588:3:125"},"nativeSrc":"1588:29:125","nodeType":"YulFunctionCall","src":"1588:29:125"},"variableNames":[{"name":"value","nativeSrc":"1579:5:125","nodeType":"YulIdentifier","src":"1579:5:125"}]},{"body":{"nativeSrc":"1648:115:125","nodeType":"YulBlock","src":"1648:115:125","statements":[{"nativeSrc":"1662:91:125","nodeType":"YulAssignment","src":"1662:91:125","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1679:2:125","nodeType":"YulIdentifier","src":"1679:2:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1691:1:125","nodeType":"YulLiteral","src":"1691:1:125","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"1698:1:125","nodeType":"YulLiteral","src":"1698:1:125","type":"","value":"4"},{"name":"len","nativeSrc":"1701:3:125","nodeType":"YulIdentifier","src":"1701:3:125"}],"functionName":{"name":"sub","nativeSrc":"1694:3:125","nodeType":"YulIdentifier","src":"1694:3:125"},"nativeSrc":"1694:11:125","nodeType":"YulFunctionCall","src":"1694:11:125"}],"functionName":{"name":"shl","nativeSrc":"1687:3:125","nodeType":"YulIdentifier","src":"1687:3:125"},"nativeSrc":"1687:19:125","nodeType":"YulFunctionCall","src":"1687:19:125"},{"arguments":[{"kind":"number","nativeSrc":"1712:3:125","nodeType":"YulLiteral","src":"1712:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"1717:10:125","nodeType":"YulLiteral","src":"1717:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"1708:3:125","nodeType":"YulIdentifier","src":"1708:3:125"},"nativeSrc":"1708:20:125","nodeType":"YulFunctionCall","src":"1708:20:125"}],"functionName":{"name":"shl","nativeSrc":"1683:3:125","nodeType":"YulIdentifier","src":"1683:3:125"},"nativeSrc":"1683:46:125","nodeType":"YulFunctionCall","src":"1683:46:125"}],"functionName":{"name":"and","nativeSrc":"1675:3:125","nodeType":"YulIdentifier","src":"1675:3:125"},"nativeSrc":"1675:55:125","nodeType":"YulFunctionCall","src":"1675:55:125"},{"arguments":[{"kind":"number","nativeSrc":"1736:3:125","nodeType":"YulLiteral","src":"1736:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"1741:10:125","nodeType":"YulLiteral","src":"1741:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"1732:3:125","nodeType":"YulIdentifier","src":"1732:3:125"},"nativeSrc":"1732:20:125","nodeType":"YulFunctionCall","src":"1732:20:125"}],"functionName":{"name":"and","nativeSrc":"1671:3:125","nodeType":"YulIdentifier","src":"1671:3:125"},"nativeSrc":"1671:82:125","nodeType":"YulFunctionCall","src":"1671:82:125"},"variableNames":[{"name":"value","nativeSrc":"1662:5:125","nodeType":"YulIdentifier","src":"1662:5:125"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"1632:3:125","nodeType":"YulIdentifier","src":"1632:3:125"},{"kind":"number","nativeSrc":"1637:1:125","nodeType":"YulLiteral","src":"1637:1:125","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"1629:2:125","nodeType":"YulIdentifier","src":"1629:2:125"},"nativeSrc":"1629:10:125","nodeType":"YulFunctionCall","src":"1629:10:125"},"nativeSrc":"1626:137:125","nodeType":"YulIf","src":"1626:137:125"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4","nativeSrc":"1431:338:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"1506:5:125","nodeType":"YulTypedName","src":"1506:5:125","type":""},{"name":"len","nativeSrc":"1513:3:125","nodeType":"YulTypedName","src":"1513:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"1521:5:125","nodeType":"YulTypedName","src":"1521:5:125","type":""}],"src":"1431:338:125"},{"body":{"nativeSrc":"1929:241:125","nodeType":"YulBlock","src":"1929:241:125","statements":[{"nativeSrc":"1939:26:125","nodeType":"YulAssignment","src":"1939:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1951:9:125","nodeType":"YulIdentifier","src":"1951:9:125"},{"kind":"number","nativeSrc":"1962:2:125","nodeType":"YulLiteral","src":"1962:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1947:3:125","nodeType":"YulIdentifier","src":"1947:3:125"},"nativeSrc":"1947:18:125","nodeType":"YulFunctionCall","src":"1947:18:125"},"variableNames":[{"name":"tail","nativeSrc":"1939:4:125","nodeType":"YulIdentifier","src":"1939:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1981:9:125","nodeType":"YulIdentifier","src":"1981:9:125"},{"arguments":[{"name":"value0","nativeSrc":"1996:6:125","nodeType":"YulIdentifier","src":"1996:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2012:3:125","nodeType":"YulLiteral","src":"2012:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"2017:1:125","nodeType":"YulLiteral","src":"2017:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2008:3:125","nodeType":"YulIdentifier","src":"2008:3:125"},"nativeSrc":"2008:11:125","nodeType":"YulFunctionCall","src":"2008:11:125"},{"kind":"number","nativeSrc":"2021:1:125","nodeType":"YulLiteral","src":"2021:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2004:3:125","nodeType":"YulIdentifier","src":"2004:3:125"},"nativeSrc":"2004:19:125","nodeType":"YulFunctionCall","src":"2004:19:125"}],"functionName":{"name":"and","nativeSrc":"1992:3:125","nodeType":"YulIdentifier","src":"1992:3:125"},"nativeSrc":"1992:32:125","nodeType":"YulFunctionCall","src":"1992:32:125"}],"functionName":{"name":"mstore","nativeSrc":"1974:6:125","nodeType":"YulIdentifier","src":"1974:6:125"},"nativeSrc":"1974:51:125","nodeType":"YulFunctionCall","src":"1974:51:125"},"nativeSrc":"1974:51:125","nodeType":"YulExpressionStatement","src":"1974:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2045:9:125","nodeType":"YulIdentifier","src":"2045:9:125"},{"kind":"number","nativeSrc":"2056:2:125","nodeType":"YulLiteral","src":"2056:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2041:3:125","nodeType":"YulIdentifier","src":"2041:3:125"},"nativeSrc":"2041:18:125","nodeType":"YulFunctionCall","src":"2041:18:125"},{"arguments":[{"name":"value1","nativeSrc":"2065:6:125","nodeType":"YulIdentifier","src":"2065:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2081:3:125","nodeType":"YulLiteral","src":"2081:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"2086:1:125","nodeType":"YulLiteral","src":"2086:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2077:3:125","nodeType":"YulIdentifier","src":"2077:3:125"},"nativeSrc":"2077:11:125","nodeType":"YulFunctionCall","src":"2077:11:125"},{"kind":"number","nativeSrc":"2090:1:125","nodeType":"YulLiteral","src":"2090:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2073:3:125","nodeType":"YulIdentifier","src":"2073:3:125"},"nativeSrc":"2073:19:125","nodeType":"YulFunctionCall","src":"2073:19:125"}],"functionName":{"name":"and","nativeSrc":"2061:3:125","nodeType":"YulIdentifier","src":"2061:3:125"},"nativeSrc":"2061:32:125","nodeType":"YulFunctionCall","src":"2061:32:125"}],"functionName":{"name":"mstore","nativeSrc":"2034:6:125","nodeType":"YulIdentifier","src":"2034:6:125"},"nativeSrc":"2034:60:125","nodeType":"YulFunctionCall","src":"2034:60:125"},"nativeSrc":"2034:60:125","nodeType":"YulExpressionStatement","src":"2034:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2114:9:125","nodeType":"YulIdentifier","src":"2114:9:125"},{"kind":"number","nativeSrc":"2125:2:125","nodeType":"YulLiteral","src":"2125:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2110:3:125","nodeType":"YulIdentifier","src":"2110:3:125"},"nativeSrc":"2110:18:125","nodeType":"YulFunctionCall","src":"2110:18:125"},{"arguments":[{"name":"value2","nativeSrc":"2134:6:125","nodeType":"YulIdentifier","src":"2134:6:125"},{"arguments":[{"kind":"number","nativeSrc":"2146:3:125","nodeType":"YulLiteral","src":"2146:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"2151:10:125","nodeType":"YulLiteral","src":"2151:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"2142:3:125","nodeType":"YulIdentifier","src":"2142:3:125"},"nativeSrc":"2142:20:125","nodeType":"YulFunctionCall","src":"2142:20:125"}],"functionName":{"name":"and","nativeSrc":"2130:3:125","nodeType":"YulIdentifier","src":"2130:3:125"},"nativeSrc":"2130:33:125","nodeType":"YulFunctionCall","src":"2130:33:125"}],"functionName":{"name":"mstore","nativeSrc":"2103:6:125","nodeType":"YulIdentifier","src":"2103:6:125"},"nativeSrc":"2103:61:125","nodeType":"YulFunctionCall","src":"2103:61:125"},"nativeSrc":"2103:61:125","nodeType":"YulExpressionStatement","src":"2103:61:125"}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"1774:396:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1882:9:125","nodeType":"YulTypedName","src":"1882:9:125","type":""},{"name":"value2","nativeSrc":"1893:6:125","nodeType":"YulTypedName","src":"1893:6:125","type":""},{"name":"value1","nativeSrc":"1901:6:125","nodeType":"YulTypedName","src":"1901:6:125","type":""},{"name":"value0","nativeSrc":"1909:6:125","nodeType":"YulTypedName","src":"1909:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1920:4:125","nodeType":"YulTypedName","src":"1920:4:125","type":""}],"src":"1774:396:125"},{"body":{"nativeSrc":"2269:348:125","nodeType":"YulBlock","src":"2269:348:125","statements":[{"body":{"nativeSrc":"2315:16:125","nodeType":"YulBlock","src":"2315:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2324:1:125","nodeType":"YulLiteral","src":"2324:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2327:1:125","nodeType":"YulLiteral","src":"2327:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2317:6:125","nodeType":"YulIdentifier","src":"2317:6:125"},"nativeSrc":"2317:12:125","nodeType":"YulFunctionCall","src":"2317:12:125"},"nativeSrc":"2317:12:125","nodeType":"YulExpressionStatement","src":"2317:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2290:7:125","nodeType":"YulIdentifier","src":"2290:7:125"},{"name":"headStart","nativeSrc":"2299:9:125","nodeType":"YulIdentifier","src":"2299:9:125"}],"functionName":{"name":"sub","nativeSrc":"2286:3:125","nodeType":"YulIdentifier","src":"2286:3:125"},"nativeSrc":"2286:23:125","nodeType":"YulFunctionCall","src":"2286:23:125"},{"kind":"number","nativeSrc":"2311:2:125","nodeType":"YulLiteral","src":"2311:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2282:3:125","nodeType":"YulIdentifier","src":"2282:3:125"},"nativeSrc":"2282:32:125","nodeType":"YulFunctionCall","src":"2282:32:125"},"nativeSrc":"2279:52:125","nodeType":"YulIf","src":"2279:52:125"},{"nativeSrc":"2340:29:125","nodeType":"YulVariableDeclaration","src":"2340:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2359:9:125","nodeType":"YulIdentifier","src":"2359:9:125"}],"functionName":{"name":"mload","nativeSrc":"2353:5:125","nodeType":"YulIdentifier","src":"2353:5:125"},"nativeSrc":"2353:16:125","nodeType":"YulFunctionCall","src":"2353:16:125"},"variables":[{"name":"value","nativeSrc":"2344:5:125","nodeType":"YulTypedName","src":"2344:5:125","type":""}]},{"body":{"nativeSrc":"2422:16:125","nodeType":"YulBlock","src":"2422:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2431:1:125","nodeType":"YulLiteral","src":"2431:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2434:1:125","nodeType":"YulLiteral","src":"2434:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2424:6:125","nodeType":"YulIdentifier","src":"2424:6:125"},"nativeSrc":"2424:12:125","nodeType":"YulFunctionCall","src":"2424:12:125"},"nativeSrc":"2424:12:125","nodeType":"YulExpressionStatement","src":"2424:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2391:5:125","nodeType":"YulIdentifier","src":"2391:5:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2412:5:125","nodeType":"YulIdentifier","src":"2412:5:125"}],"functionName":{"name":"iszero","nativeSrc":"2405:6:125","nodeType":"YulIdentifier","src":"2405:6:125"},"nativeSrc":"2405:13:125","nodeType":"YulFunctionCall","src":"2405:13:125"}],"functionName":{"name":"iszero","nativeSrc":"2398:6:125","nodeType":"YulIdentifier","src":"2398:6:125"},"nativeSrc":"2398:21:125","nodeType":"YulFunctionCall","src":"2398:21:125"}],"functionName":{"name":"eq","nativeSrc":"2388:2:125","nodeType":"YulIdentifier","src":"2388:2:125"},"nativeSrc":"2388:32:125","nodeType":"YulFunctionCall","src":"2388:32:125"}],"functionName":{"name":"iszero","nativeSrc":"2381:6:125","nodeType":"YulIdentifier","src":"2381:6:125"},"nativeSrc":"2381:40:125","nodeType":"YulFunctionCall","src":"2381:40:125"},"nativeSrc":"2378:60:125","nodeType":"YulIf","src":"2378:60:125"},{"nativeSrc":"2447:15:125","nodeType":"YulAssignment","src":"2447:15:125","value":{"name":"value","nativeSrc":"2457:5:125","nodeType":"YulIdentifier","src":"2457:5:125"},"variableNames":[{"name":"value0","nativeSrc":"2447:6:125","nodeType":"YulIdentifier","src":"2447:6:125"}]},{"nativeSrc":"2471:40:125","nodeType":"YulVariableDeclaration","src":"2471:40:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2496:9:125","nodeType":"YulIdentifier","src":"2496:9:125"},{"kind":"number","nativeSrc":"2507:2:125","nodeType":"YulLiteral","src":"2507:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2492:3:125","nodeType":"YulIdentifier","src":"2492:3:125"},"nativeSrc":"2492:18:125","nodeType":"YulFunctionCall","src":"2492:18:125"}],"functionName":{"name":"mload","nativeSrc":"2486:5:125","nodeType":"YulIdentifier","src":"2486:5:125"},"nativeSrc":"2486:25:125","nodeType":"YulFunctionCall","src":"2486:25:125"},"variables":[{"name":"value_1","nativeSrc":"2475:7:125","nodeType":"YulTypedName","src":"2475:7:125","type":""}]},{"body":{"nativeSrc":"2569:16:125","nodeType":"YulBlock","src":"2569:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2578:1:125","nodeType":"YulLiteral","src":"2578:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2581:1:125","nodeType":"YulLiteral","src":"2581:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2571:6:125","nodeType":"YulIdentifier","src":"2571:6:125"},"nativeSrc":"2571:12:125","nodeType":"YulFunctionCall","src":"2571:12:125"},"nativeSrc":"2571:12:125","nodeType":"YulExpressionStatement","src":"2571:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2533:7:125","nodeType":"YulIdentifier","src":"2533:7:125"},{"arguments":[{"name":"value_1","nativeSrc":"2546:7:125","nodeType":"YulIdentifier","src":"2546:7:125"},{"kind":"number","nativeSrc":"2555:10:125","nodeType":"YulLiteral","src":"2555:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"2542:3:125","nodeType":"YulIdentifier","src":"2542:3:125"},"nativeSrc":"2542:24:125","nodeType":"YulFunctionCall","src":"2542:24:125"}],"functionName":{"name":"eq","nativeSrc":"2530:2:125","nodeType":"YulIdentifier","src":"2530:2:125"},"nativeSrc":"2530:37:125","nodeType":"YulFunctionCall","src":"2530:37:125"}],"functionName":{"name":"iszero","nativeSrc":"2523:6:125","nodeType":"YulIdentifier","src":"2523:6:125"},"nativeSrc":"2523:45:125","nodeType":"YulFunctionCall","src":"2523:45:125"},"nativeSrc":"2520:65:125","nodeType":"YulIf","src":"2520:65:125"},{"nativeSrc":"2594:17:125","nodeType":"YulAssignment","src":"2594:17:125","value":{"name":"value_1","nativeSrc":"2604:7:125","nodeType":"YulIdentifier","src":"2604:7:125"},"variableNames":[{"name":"value1","nativeSrc":"2594:6:125","nodeType":"YulIdentifier","src":"2594:6:125"}]}]},"name":"abi_decode_tuple_t_boolt_uint32_fromMemory","nativeSrc":"2175:442:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2227:9:125","nodeType":"YulTypedName","src":"2227:9:125","type":""},{"name":"dataEnd","nativeSrc":"2238:7:125","nodeType":"YulTypedName","src":"2238:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2250:6:125","nodeType":"YulTypedName","src":"2250:6:125","type":""},{"name":"value1","nativeSrc":"2258:6:125","nodeType":"YulTypedName","src":"2258:6:125","type":""}],"src":"2175:442:125"}]},"contents":"{\n    { }\n    function abi_encode_tuple_t_array$_t_bytes4_$dyn_memory_ptr__to_t_array$_t_bytes4_$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 srcPtr := add(value0, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, and(mload(srcPtr), shl(224, 0xffffffff)))\n            pos := add(pos, 32)\n            srcPtr := add(srcPtr, 32)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_contract$_IAccessManager_$22178__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__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 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_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_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_decode_tuple_t_boolt_uint32_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        if iszero(eq(value_1, and(value_1, 0xffffffff))) { revert(0, 0) }\n        value1 := value_1\n    }\n}","id":125,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405260043610610033575f3560e01c806314416c031461003d5780633a7b7a3914610067578063bf7e214f14610093575b61003b6100a7565b005b348015610048575f5ffd5b506100516100b9565b60405161005e9190610306565b60405180910390f35b348015610072575f5ffd5b5061007b61015d565b6040516001600160a01b03909116815260200161005e565b34801561009e575f5ffd5b5061007b61018f565b6100b76100b261019d565b6101a6565b565b60607f787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c0060010180548060200260200160405190810160405280929190818152602001828054801561015357602002820191905f5260205f20905f905b82829054906101000a900460e01b6001600160e01b031916815260200190600401906020826003010492830192600103820291508084116101155790505b5050505050905090565b5f7f787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c005b546001600160a01b0316919050565b5f61019861015d565b905090565b5f6101986102c1565b5f6101b46004823681610352565b6101bd91610379565b90505f610201826001600160e01b0319165f9081527f787c9d7ac910d64252bcea05acd5b7af6d59644e0451a8bb5674587555049c02602052604090205460ff1690565b9050806102b35761021061015d565b60405163b700961360e01b81523360048201523060248201526001600160e01b0319841660448201526001600160a01b03919091169063b7009613906064016040805180830381865afa158015610269573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061028d91906103b1565b509050806102b35760405162d1953b60e31b815233600482015260240160405180910390fd5b6102bc836102e8565b505050565b5f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc610180565b365f5f375f5f365f845af43d5f5f3e808015610302573d5ff35b3d5ffd5b602080825282518282018190525f918401906040840190835b818110156103475783516001600160e01b03191683526020938401939092019160010161031f565b509095945050505050565b5f5f85851115610360575f5ffd5b8386111561036c575f5ffd5b5050820193919092039150565b80356001600160e01b031981169060048410156103aa576001600160e01b0319600485900360031b81901b82161691505b5092915050565b5f5f604083850312156103c2575f5ffd5b825180151581146103d1575f5ffd5b602084015190925063ffffffff811681146103ea575f5ffd5b80915050925092905056fea2646970667358221220796d73dadbf09c6c954563dc24f0c3543d8cd13e6203e424ca2d472b56f4a76064736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x33 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x14416C03 EQ PUSH2 0x3D JUMPI DUP1 PUSH4 0x3A7B7A39 EQ PUSH2 0x67 JUMPI DUP1 PUSH4 0xBF7E214F EQ PUSH2 0x93 JUMPI JUMPDEST PUSH2 0x3B PUSH2 0xA7 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x48 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x51 PUSH2 0xB9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5E SWAP2 SWAP1 PUSH2 0x306 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x72 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7B PUSH2 0x15D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x5E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7B PUSH2 0x18F JUMP JUMPDEST PUSH2 0xB7 PUSH2 0xB2 PUSH2 0x19D JUMP JUMPDEST PUSH2 0x1A6 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH32 0x787C9D7AC910D64252BCEA05ACD5B7AF6D59644E0451A8BB5674587555049C00 PUSH1 0x1 ADD DUP1 SLOAD DUP1 PUSH1 0x20 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 DUP1 ISZERO PUSH2 0x153 JUMPI PUSH1 0x20 MUL DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH0 SWAP1 JUMPDEST DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x4 ADD SWAP1 PUSH1 0x20 DUP3 PUSH1 0x3 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB DUP3 MUL SWAP2 POP DUP1 DUP5 GT PUSH2 0x115 JUMPI SWAP1 POP JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH32 0x787C9D7AC910D64252BCEA05ACD5B7AF6D59644E0451A8BB5674587555049C00 JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x198 PUSH2 0x15D JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x198 PUSH2 0x2C1 JUMP JUMPDEST PUSH0 PUSH2 0x1B4 PUSH1 0x4 DUP3 CALLDATASIZE DUP2 PUSH2 0x352 JUMP JUMPDEST PUSH2 0x1BD SWAP2 PUSH2 0x379 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x201 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x787C9D7AC910D64252BCEA05ACD5B7AF6D59644E0451A8BB5674587555049C02 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x2B3 JUMPI PUSH2 0x210 PUSH2 0x15D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xB7009613 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP5 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xB7009613 SWAP1 PUSH1 0x64 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x269 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 0x28D SWAP2 SWAP1 PUSH2 0x3B1 JUMP JUMPDEST POP SWAP1 POP DUP1 PUSH2 0x2B3 JUMPI PUSH1 0x40 MLOAD PUSH3 0xD1953B PUSH1 0xE3 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2BC DUP4 PUSH2 0x2E8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH2 0x180 JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0x302 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP2 DUP5 ADD SWAP1 PUSH1 0x40 DUP5 ADD SWAP1 DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x347 JUMPI DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x31F JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x360 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x36C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x3AA 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 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3C2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x3D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x3EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH26 0x6D73DADBF09C6C954563DC24F0C3543D8CD13E6203E424CA2D47 0x2B JUMP DELEGATECALL 0xA7 PUSH1 0x64 PUSH20 0x6F6C634300081E00330000000000000000000000 ","sourceMap":"1448:2096:17:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;2676:11:73;:9;:11::i;:::-;1448:2096:17;3147:159;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3399:143;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;843:32:125;;;825:51;;813:2;798:18;3399:143:17;655:227:125;2151:104:18;;;;;;;;;;;;;:::i;2350:83:73:-;2398:28;2408:17;:15;:17::i;:::-;2398:9;:28::i;:::-;2350:83::o;3147:159:17:-;3208:23;1328:33:16;3246:55:17;;3239:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3239:62:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3147:159;:::o;3399:143::-;3455:14;1328:33:16;3484:39:17;:53;-1:-1:-1;;;;;3484:53:17;;3399:143;-1:-1:-1;3399:143:17:o;2151:104:18:-;2203:7;2233:16;:14;:16::i;:::-;2218:32;;2151:104;:::o;1583:132:71:-;1650:7;1676:32;:30;:32::i;2688:449:18:-;2763:15;2788:13;2799:1;2763:15;2788:8;2763:15;2788:13;:::i;:::-;2781:21;;;:::i;:::-;2763:39;;2808:14;2825:17;2833:8;-1:-1:-1;;;;;;2993:56:17;2974:4;2993:56;;;:46;:56;;;;;;;;;2908:146;2825:17:18;2808:34;;2925:9;2920:176;;2960:16;:14;:16::i;:::-;:61;;-1:-1:-1;;;2960:61:18;;2985:10;2960:61;;;1974:51:125;3005:4:18;2041:18:125;;;2034:60;-1:-1:-1;;;;;;2130:33:125;;2110:18;;;2103:61;-1:-1:-1;;;;;2960:24:18;;;;;;;1947:18:125;;2960:61:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2944:77:18;-1:-1:-1;2944:77:18;3029:60;;3052:37;;-1:-1:-1;;;3052:37:18;;3078:10;3052:37;;;825:51:125;798:18;;3052:37:18;;;;;;;3029:60;3101:31;3117:14;3101:15;:31::i;:::-;2757:380;;2688:449;:::o;1441:138:72:-;1493:7;811:66;1519:47;1899:163:97;949:922:73;1293:14;1287:4;1281;1268:40;1513:4;1507;1491:14;1485:4;1469:14;1462:5;1449:69;1598:16;1592:4;1586;1571:44;1636:6;1703:69;;;;1824:16;1818:4;1811:30;1703:69;1741:16;1735:4;1728:30;14:636:125;202:2;214:21;;;284:13;;187:18;;;306:22;;;154:4;;385:15;;;359:2;344:18;;;154:4;428:196;442:6;439:1;436:13;428:196;;;507:13;;-1:-1:-1;;;;;;503:40:125;491:53;;573:2;599:15;;;;564:12;;;;464:1;457:9;428:196;;;-1:-1:-1;641:3:125;;14:636;-1:-1:-1;;;;;14:636:125:o;1095:331::-;1200:9;1211;1253:8;1241:10;1238:24;1235:44;;;1275:1;1272;1265:12;1235:44;1304:6;1294:8;1291:20;1288:40;;;1324:1;1321;1314:12;1288:40;-1:-1:-1;;1350:23:125;;;1395:25;;;;;-1:-1:-1;1095:331:125:o;1431:338::-;1551:19;;-1:-1:-1;;;;;;1588:29:125;;;1637:1;1629:10;;1626:137;;;-1:-1:-1;;;;;;1698:1:125;1694:11;;;1691:1;1687:19;1683:46;;;1675:55;;1671:82;;-1:-1:-1;1626:137:125;;1431:338;;;;:::o;2175:442::-;2250:6;2258;2311:2;2299:9;2290:7;2286:23;2282:32;2279:52;;;2327:1;2324;2317:12;2279:52;2359:9;2353:16;2412:5;2405:13;2398:21;2391:5;2388:32;2378:60;;2434:1;2431;2424:12;2378:60;2507:2;2492:18;;2486:25;2457:5;;-1:-1:-1;2555:10:125;2542:24;;2530:37;;2520:65;;2581:1;2578;2571:12;2520:65;2604:7;2594:17;;;2175:442;;;;;:::o"},"methodIdentifiers":{"ACCESS_MANAGER()":"3a7b7a39","PASS_THRU_METHODS()":"14416c03","authority()":"bf7e214f"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"},{\"internalType\":\"contract IAccessManager\",\"name\":\"accessManager\",\"type\":\"address\"},{\"internalType\":\"bytes4[]\",\"name\":\"passThruMethods\",\"type\":\"bytes4[]\"}],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AccessManagedInvalidAuthority\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"AccessManagedUnauthorized\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AuthorityUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes4[]\",\"name\":\"newPassThruMethods\",\"type\":\"bytes4[]\"}],\"name\":\"PassThruMethodsChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"inputs\":[],\"name\":\"ACCESS_MANAGER\",\"outputs\":[{\"internalType\":\"contract IAccessManager\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PASS_THRU_METHODS\",\"outputs\":[{\"internalType\":\"bytes4[]\",\"name\":\"methods\",\"type\":\"bytes4[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"authority\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"It's a variant of ERC1967Proxy.      Currently the check is executed on any call received by the proxy contract (even calls to view methods, i.e.      staticcall). For gas efficiency, you can also have `passThruMethods`, and for those methods it will skip      the call to the AccessManager, calling directly to the implementation contract.      The accessManager and the passThruMethods are in the storage, but this contract doesn't include any method      to modify them. They should be modified by the implementation contract (check AMPUtils for functions that      encapsulate these operations).      Check https://forum.openzeppelin.com/t/accessmanagedproxy-is-a-good-idea/41917 for a discussion on the      advantages and disadvantages of using it. Also https://www.youtube.com/watch?v=DKdwJ9Ap9vM for a presentation      on this approach.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}]},\"events\":{\"AuthorityUpdated(address)\":{\"details\":\"Authority that manages this contract was updated. Uses same interface as OZ's IAccessManaged\"},\"PassThruMethodsChanged(bytes4[])\":{\"details\":\"Emitted when the passThruMethods has changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"PASS_THRU_METHODS()\":{\"returns\":{\"methods\":\"The list of method selectors that skip ACCESS_MANAGER access control\"}},\"authority()\":{\"details\":\"Returns the current authority. Same as ACCESS_MANAGER(), added for compatibility with OZ's IAccessManaged\"},\"constructor\":{\"custom:pre\":\"If `_data` is empty, `msg.value` must be zero.\",\"details\":\"Initializes the upgradeable proxy with an initial implementation specified by `implementation` and      with `accessManager` as the ACCESS_MANAGER that will handle access control.\",\"params\":{\"_data\":\"If nonempty, it's used as data in a delegate call to `implementation`. This will typically be an              encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\",\"accessManager\":\"The access manager that will handle access control\",\"implementation\":\"The initial implementation contract.\",\"passThruMethods\":\"The selector of methods that will skip the access control validation, typically used for                        views and other methods for gas optimization.\"}}},\"title\":\"AccessManagedProxy\",\"version\":1},\"userdoc\":{\"events\":{\"AuthorityUpdated(address)\":{\"notice\":\"The ACCESS_MANAGER that manages the access controls was updated\"}},\"kind\":\"user\",\"methods\":{\"ACCESS_MANAGER()\":{\"notice\":\"AccessManager contract that handles the permissions to access the implementation methods\"},\"PASS_THRU_METHODS()\":{\"notice\":\"Gives observability to the methods that are skipped from access control\"},\"authority()\":{\"notice\":\"Returns the current authority.\"},\"constructor\":{\"notice\":\"Constructor of the proxy, defining the implementation and the access manager\"}},\"notice\":\"Proxy contract using IAccessManager to manage access control before delegating calls (mutable version)\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol\":\"AccessManagedProxy\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/access-managed-proxy/contracts/AMPUtils.sol\":{\"keccak256\":\"0x3f25097d759aa89ce9a7a94f98b854a3dc23c51f7f895b95a8d489e74d5f1d98\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://2912cf8c79b973d07fbb741e7d1048026f0a71489df2adf97552b83b23b427d7\",\"dweb:/ipfs/QmRTfFaqy72p4RfY99hKM1K9wH5kxaTnikH5VJjpL7K7sD\"]},\"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol\":{\"keccak256\":\"0x0d3a66feed9000ccbc8a8e6c597b7fe4659f56b5a4dfa2ab1eea314171ae9745\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fa3f292954915546ce72159da1dbcd44b8cdc19ea0b5b3fc6dbb47070451583c\",\"dweb:/ipfs/QmeL7krtsKLpuS9hy5w6eRoRsXU874XtgNWutUavxRKzmA\"]},\"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol\":{\"keccak256\":\"0xe84ff4706a5ae4c03f011343dfb73ce8b731e1eb2287d25018a449b3e802092e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://53202b0391daa08f69fda5c471f957f9811dba1d2033e5e3e3a7a78c1d05eb39\",\"dweb:/ipfs/QmabycaktcAsVJFEdf7F4Lk1WsAz9qesqQARLwjYvM722m\"]},\"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol\":{\"keccak256\":\"0xdd762bad2f6ad362f5a38fb333d2a953f6c9d0beea122dbaef0e333a7b83a054\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://a2bb86de08187cee5956393ca2cf096a09eb6ac694471e436ca12e377d97cb40\",\"dweb:/ipfs/Qmf6cNjug4swjsvTJYjbzhMMfAfSFdUuyJjkEf3b1cu2hn\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x71e3e350e83af0018a1683cc2ce4c13893cc01f78e5c9c305f6828608ffcfa18\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a7b521c9999007715c9bdedffaad2ef7d2ccfa07bca2a39ba9e0c2e8a944a63\",\"dweb:/ipfs/QmamPG6Y1p7iZh4cF8Hfp3oufowSRyB3S3DisTKkmVWSai\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa3066ff86b94128a9d3956a63a0511fa1aae41bd455772ab587b32ff322acb2e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf7b192fd82acf6187970c80548f624b1b9c80425b62fa49e7fdb538a52de049\",\"dweb:/ipfs/QmWXG1YCde1tqDYTbNwjkZDWVgPEjzaQGSDqWkyKLzaNua\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0x80935e4fae2c414f4e7789e13a820d06901182a5733ab006f8d68b5b09db993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://752d991d6ca1087587b48103bc623f74888054f58581ff29166d90889c4765c5\",\"dweb:/ipfs/QmRBsa6K2ChKxVWYY54YiyYhDBPbmY5HyKCtij5LoWh56o\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol":{"AccessManagedProxyBase":{"abi":[{"inputs":[{"internalType":"address","name":"authority","type":"address"}],"name":"AccessManagedInvalidAuthority","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"AccessManagedUnauthorized","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"authority","type":"address"}],"name":"AuthorityUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes4[]","name":"newPassThruMethods","type":"bytes4[]"}],"name":"PassThruMethodsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"ACCESS_MANAGER","outputs":[{"internalType":"contract IAccessManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PASS_THRU_METHODS","outputs":[{"internalType":"bytes4[]","name":"methods","type":"bytes4[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"authority","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":{"ACCESS_MANAGER()":"3a7b7a39","PASS_THRU_METHODS()":"14416c03","authority()":"bf7e214f"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AccessManagedInvalidAuthority\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"AccessManagedUnauthorized\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AuthorityUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes4[]\",\"name\":\"newPassThruMethods\",\"type\":\"bytes4[]\"}],\"name\":\"PassThruMethodsChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"inputs\":[],\"name\":\"ACCESS_MANAGER\",\"outputs\":[{\"internalType\":\"contract IAccessManager\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PASS_THRU_METHODS\",\"outputs\":[{\"internalType\":\"bytes4[]\",\"name\":\"methods\",\"type\":\"bytes4[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"authority\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"It's a variant of ERC1967Proxy.      Currently the check is executed on any call received by the proxy contract even calls to view methods      (staticcall). In the setup of the ACCESS_MANAGER permissions you would want to make all the views and pure      functions enabled for the PUBLIC_ROLE.      This base contract delegates on descendent contracts the storage of the ACCESS_MANAGER.      Check https://forum.openzeppelin.com/t/accessmanagedproxy-is-a-good-idea/41917 for a discussion on the      advantages and disadvantages of using it.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}]},\"events\":{\"AuthorityUpdated(address)\":{\"details\":\"Authority that manages this contract was updated. Uses same interface as OZ's IAccessManaged\"},\"PassThruMethodsChanged(bytes4[])\":{\"details\":\"Emitted when the passThruMethods has changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"PASS_THRU_METHODS()\":{\"returns\":{\"methods\":\"The list of method selectors that skip ACCESS_MANAGER access control\"}},\"authority()\":{\"details\":\"Returns the current authority. Same as ACCESS_MANAGER(), added for compatibility with OZ's IAccessManaged\"},\"constructor\":{\"custom:pre\":\"If `_data` is empty, `msg.value` must be zero.\",\"details\":\"Initializes the upgradeable proxy with an initial implementation specified by `implementation` and      with `manager` as the ACCESS_MANAGER that will handle access control.\",\"params\":{\"_data\":\"If nonempty, it's used as data in a delegate call to `implementation`. This will typically be an              encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\",\"implementation\":\"The initial implementation contract.\"}}},\"title\":\"AccessManagedProxyBase\",\"version\":1},\"userdoc\":{\"events\":{\"AuthorityUpdated(address)\":{\"notice\":\"The ACCESS_MANAGER that manages the access controls was updated\"}},\"kind\":\"user\",\"methods\":{\"ACCESS_MANAGER()\":{\"notice\":\"AccessManager contract that handles the permissions to access the implementation methods\"},\"PASS_THRU_METHODS()\":{\"notice\":\"Gives observability to the methods that are skipped from access control\"},\"authority()\":{\"notice\":\"Returns the current authority.\"},\"constructor\":{\"notice\":\"Constructor of the proxy, defining the implementation and the access manager\"}},\"notice\":\"Proxy contract using IAccessManager to manage access control before delegating calls.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol\":\"AccessManagedProxyBase\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol\":{\"keccak256\":\"0xe84ff4706a5ae4c03f011343dfb73ce8b731e1eb2287d25018a449b3e802092e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://53202b0391daa08f69fda5c471f957f9811dba1d2033e5e3e3a7a78c1d05eb39\",\"dweb:/ipfs/QmabycaktcAsVJFEdf7F4Lk1WsAz9qesqQARLwjYvM722m\"]},\"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol\":{\"keccak256\":\"0xdd762bad2f6ad362f5a38fb333d2a953f6c9d0beea122dbaef0e333a7b83a054\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://a2bb86de08187cee5956393ca2cf096a09eb6ac694471e436ca12e377d97cb40\",\"dweb:/ipfs/Qmf6cNjug4swjsvTJYjbzhMMfAfSFdUuyJjkEf3b1cu2hn\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x71e3e350e83af0018a1683cc2ce4c13893cc01f78e5c9c305f6828608ffcfa18\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a7b521c9999007715c9bdedffaad2ef7d2ccfa07bca2a39ba9e0c2e8a944a63\",\"dweb:/ipfs/QmamPG6Y1p7iZh4cF8Hfp3oufowSRyB3S3DisTKkmVWSai\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa3066ff86b94128a9d3956a63a0511fa1aae41bd455772ab587b32ff322acb2e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf7b192fd82acf6187970c80548f624b1b9c80425b62fa49e7fdb538a52de049\",\"dweb:/ipfs/QmWXG1YCde1tqDYTbNwjkZDWVgPEjzaQGSDqWkyKLzaNua\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0x80935e4fae2c414f4e7789e13a820d06901182a5733ab006f8d68b5b09db993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://752d991d6ca1087587b48103bc623f74888054f58581ff29166d90889c4765c5\",\"dweb:/ipfs/QmRBsa6K2ChKxVWYY54YiyYhDBPbmY5HyKCtij5LoWh56o\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol":{"IAccessManagedProxy":{"abi":[{"inputs":[{"internalType":"address","name":"authority","type":"address"}],"name":"AccessManagedInvalidAuthority","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes4[]","name":"newPassThruMethods","type":"bytes4[]"}],"name":"PassThruMethodsChanged","type":"event"},{"inputs":[],"name":"ACCESS_MANAGER","outputs":[{"internalType":"contract IAccessManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PASS_THRU_METHODS","outputs":[{"internalType":"bytes4[]","name":"methods","type":"bytes4[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"authority","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":{"ACCESS_MANAGER()":"3a7b7a39","PASS_THRU_METHODS()":"14416c03","authority()":"bf7e214f"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"authority\",\"type\":\"address\"}],\"name\":\"AccessManagedInvalidAuthority\",\"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\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes4[]\",\"name\":\"newPassThruMethods\",\"type\":\"bytes4[]\"}],\"name\":\"PassThruMethodsChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"ACCESS_MANAGER\",\"outputs\":[{\"internalType\":\"contract IAccessManager\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PASS_THRU_METHODS\",\"outputs\":[{\"internalType\":\"bytes4[]\",\"name\":\"methods\",\"type\":\"bytes4[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"authority\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"details\":\"The `ACCESS_MANAGER()` is the AccessManager contract that stores the access roles for most of the methods, except those listed in `PASS_THRU_METHODS()` that are forwarded directly to the proxy and don't have access control (at least not by the AccessManager contract).\",\"events\":{\"AuthorityUpdated(address)\":{\"details\":\"Authority that manages this contract was updated. Uses same interface as OZ's IAccessManaged\"},\"PassThruMethodsChanged(bytes4[])\":{\"details\":\"Emitted when the passThruMethods has changed.\"}},\"kind\":\"dev\",\"methods\":{\"PASS_THRU_METHODS()\":{\"returns\":{\"methods\":\"The list of method selectors that skip ACCESS_MANAGER access control\"}},\"authority()\":{\"details\":\"Returns the current authority. Same as ACCESS_MANAGER(), added for compatibility with OZ's IAccessManaged\"}},\"title\":\"IAccessManagedProxy - Interface of AccessManagedProxy contracts\",\"version\":1},\"userdoc\":{\"events\":{\"AuthorityUpdated(address)\":{\"notice\":\"The ACCESS_MANAGER that manages the access controls was updated\"}},\"kind\":\"user\",\"methods\":{\"ACCESS_MANAGER()\":{\"notice\":\"AccessManager contract that handles the permissions to access the implementation methods\"},\"PASS_THRU_METHODS()\":{\"notice\":\"Gives observability to the methods that are skipped from access control\"},\"authority()\":{\"notice\":\"Returns the current authority.\"}},\"notice\":\"This interface gives observability of the access control setup\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol\":\"IAccessManagedProxy\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol\":{\"keccak256\":\"0xdd762bad2f6ad362f5a38fb333d2a953f6c9d0beea122dbaef0e333a7b83a054\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://a2bb86de08187cee5956393ca2cf096a09eb6ac694471e436ca12e377d97cb40\",\"dweb:/ipfs/Qmf6cNjug4swjsvTJYjbzhMMfAfSFdUuyJjkEf3b1cu2hn\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x71e3e350e83af0018a1683cc2ce4c13893cc01f78e5c9c305f6828608ffcfa18\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a7b521c9999007715c9bdedffaad2ef7d2ccfa07bca2a39ba9e0c2e8a944a63\",\"dweb:/ipfs/QmamPG6Y1p7iZh4cF8Hfp3oufowSRyB3S3DisTKkmVWSai\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/account-abstraction/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":{"@_4436":{"entryPoint":null,"id":4436,"parameterSlots":3,"returnSlots":0},"@_grantRole_19688":{"entryPoint":172,"id":19688,"parameterSlots":2,"returnSlots":1},"@_msgSender_26771":{"entryPoint":null,"id":26771,"parameterSlots":0,"returnSlots":1},"@hasRole_19512":{"entryPoint":null,"id":19512,"parameterSlots":2,"returnSlots":1},"abi_decode_address_fromMemory":{"entryPoint":364,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_contract$_IEntryPoint_$3566t_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:2028:125","nodeType":"YulBlock","src":"0:2028:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"72:86:125","nodeType":"YulBlock","src":"72:86:125","statements":[{"body":{"nativeSrc":"136:16:125","nodeType":"YulBlock","src":"136:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"145:1:125","nodeType":"YulLiteral","src":"145:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"148:1:125","nodeType":"YulLiteral","src":"148:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"138:6:125","nodeType":"YulIdentifier","src":"138:6:125"},"nativeSrc":"138:12:125","nodeType":"YulFunctionCall","src":"138:12:125"},"nativeSrc":"138:12:125","nodeType":"YulExpressionStatement","src":"138:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"95:5:125","nodeType":"YulIdentifier","src":"95:5:125"},{"arguments":[{"name":"value","nativeSrc":"106:5:125","nodeType":"YulIdentifier","src":"106:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"121:3:125","nodeType":"YulLiteral","src":"121:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"126:1:125","nodeType":"YulLiteral","src":"126:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"117:3:125","nodeType":"YulIdentifier","src":"117:3:125"},"nativeSrc":"117:11:125","nodeType":"YulFunctionCall","src":"117:11:125"},{"kind":"number","nativeSrc":"130:1:125","nodeType":"YulLiteral","src":"130:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"113:3:125","nodeType":"YulIdentifier","src":"113:3:125"},"nativeSrc":"113:19:125","nodeType":"YulFunctionCall","src":"113:19:125"}],"functionName":{"name":"and","nativeSrc":"102:3:125","nodeType":"YulIdentifier","src":"102:3:125"},"nativeSrc":"102:31:125","nodeType":"YulFunctionCall","src":"102:31:125"}],"functionName":{"name":"eq","nativeSrc":"92:2:125","nodeType":"YulIdentifier","src":"92:2:125"},"nativeSrc":"92:42:125","nodeType":"YulFunctionCall","src":"92:42:125"}],"functionName":{"name":"iszero","nativeSrc":"85:6:125","nodeType":"YulIdentifier","src":"85:6:125"},"nativeSrc":"85:50:125","nodeType":"YulFunctionCall","src":"85:50:125"},"nativeSrc":"82:70:125","nodeType":"YulIf","src":"82:70:125"}]},"name":"validator_revert_contract_IEntryPoint","nativeSrc":"14:144:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"61:5:125","nodeType":"YulTypedName","src":"61:5:125","type":""}],"src":"14:144:125"},{"body":{"nativeSrc":"223:91:125","nodeType":"YulBlock","src":"223:91:125","statements":[{"nativeSrc":"233:22:125","nodeType":"YulAssignment","src":"233:22:125","value":{"arguments":[{"name":"offset","nativeSrc":"248:6:125","nodeType":"YulIdentifier","src":"248:6:125"}],"functionName":{"name":"mload","nativeSrc":"242:5:125","nodeType":"YulIdentifier","src":"242:5:125"},"nativeSrc":"242:13:125","nodeType":"YulFunctionCall","src":"242:13:125"},"variableNames":[{"name":"value","nativeSrc":"233:5:125","nodeType":"YulIdentifier","src":"233:5:125"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"302:5:125","nodeType":"YulIdentifier","src":"302:5:125"}],"functionName":{"name":"validator_revert_contract_IEntryPoint","nativeSrc":"264:37:125","nodeType":"YulIdentifier","src":"264:37:125"},"nativeSrc":"264:44:125","nodeType":"YulFunctionCall","src":"264:44:125"},"nativeSrc":"264:44:125","nodeType":"YulExpressionStatement","src":"264:44:125"}]},"name":"abi_decode_address_fromMemory","nativeSrc":"163:151:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"202:6:125","nodeType":"YulTypedName","src":"202:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"213:5:125","nodeType":"YulTypedName","src":"213:5:125","type":""}],"src":"163:151:125"},{"body":{"nativeSrc":"351:95:125","nodeType":"YulBlock","src":"351:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"368:1:125","nodeType":"YulLiteral","src":"368:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"375:3:125","nodeType":"YulLiteral","src":"375:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"380:10:125","nodeType":"YulLiteral","src":"380:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"371:3:125","nodeType":"YulIdentifier","src":"371:3:125"},"nativeSrc":"371:20:125","nodeType":"YulFunctionCall","src":"371:20:125"}],"functionName":{"name":"mstore","nativeSrc":"361:6:125","nodeType":"YulIdentifier","src":"361:6:125"},"nativeSrc":"361:31:125","nodeType":"YulFunctionCall","src":"361:31:125"},"nativeSrc":"361:31:125","nodeType":"YulExpressionStatement","src":"361:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"408:1:125","nodeType":"YulLiteral","src":"408:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"411:4:125","nodeType":"YulLiteral","src":"411:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"401:6:125","nodeType":"YulIdentifier","src":"401:6:125"},"nativeSrc":"401:15:125","nodeType":"YulFunctionCall","src":"401:15:125"},"nativeSrc":"401:15:125","nodeType":"YulExpressionStatement","src":"401:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"432:1:125","nodeType":"YulLiteral","src":"432:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"435:4:125","nodeType":"YulLiteral","src":"435:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"425:6:125","nodeType":"YulIdentifier","src":"425:6:125"},"nativeSrc":"425:15:125","nodeType":"YulFunctionCall","src":"425:15:125"},"nativeSrc":"425:15:125","nodeType":"YulExpressionStatement","src":"425:15:125"}]},"name":"panic_error_0x41","nativeSrc":"319:127:125","nodeType":"YulFunctionDefinition","src":"319:127:125"},{"body":{"nativeSrc":"611:1283:125","nodeType":"YulBlock","src":"611:1283:125","statements":[{"body":{"nativeSrc":"657:16:125","nodeType":"YulBlock","src":"657:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"666:1:125","nodeType":"YulLiteral","src":"666:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"669:1:125","nodeType":"YulLiteral","src":"669:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"659:6:125","nodeType":"YulIdentifier","src":"659:6:125"},"nativeSrc":"659:12:125","nodeType":"YulFunctionCall","src":"659:12:125"},"nativeSrc":"659:12:125","nodeType":"YulExpressionStatement","src":"659:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"632:7:125","nodeType":"YulIdentifier","src":"632:7:125"},{"name":"headStart","nativeSrc":"641:9:125","nodeType":"YulIdentifier","src":"641:9:125"}],"functionName":{"name":"sub","nativeSrc":"628:3:125","nodeType":"YulIdentifier","src":"628:3:125"},"nativeSrc":"628:23:125","nodeType":"YulFunctionCall","src":"628:23:125"},{"kind":"number","nativeSrc":"653:2:125","nodeType":"YulLiteral","src":"653:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"624:3:125","nodeType":"YulIdentifier","src":"624:3:125"},"nativeSrc":"624:32:125","nodeType":"YulFunctionCall","src":"624:32:125"},"nativeSrc":"621:52:125","nodeType":"YulIf","src":"621:52:125"},{"nativeSrc":"682:29:125","nodeType":"YulVariableDeclaration","src":"682:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"701:9:125","nodeType":"YulIdentifier","src":"701:9:125"}],"functionName":{"name":"mload","nativeSrc":"695:5:125","nodeType":"YulIdentifier","src":"695:5:125"},"nativeSrc":"695:16:125","nodeType":"YulFunctionCall","src":"695:16:125"},"variables":[{"name":"value","nativeSrc":"686:5:125","nodeType":"YulTypedName","src":"686:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"758:5:125","nodeType":"YulIdentifier","src":"758:5:125"}],"functionName":{"name":"validator_revert_contract_IEntryPoint","nativeSrc":"720:37:125","nodeType":"YulIdentifier","src":"720:37:125"},"nativeSrc":"720:44:125","nodeType":"YulFunctionCall","src":"720:44:125"},"nativeSrc":"720:44:125","nodeType":"YulExpressionStatement","src":"720:44:125"},{"nativeSrc":"773:15:125","nodeType":"YulAssignment","src":"773:15:125","value":{"name":"value","nativeSrc":"783:5:125","nodeType":"YulIdentifier","src":"783:5:125"},"variableNames":[{"name":"value0","nativeSrc":"773:6:125","nodeType":"YulIdentifier","src":"773:6:125"}]},{"nativeSrc":"797:40:125","nodeType":"YulVariableDeclaration","src":"797:40:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"822:9:125","nodeType":"YulIdentifier","src":"822:9:125"},{"kind":"number","nativeSrc":"833:2:125","nodeType":"YulLiteral","src":"833:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"818:3:125","nodeType":"YulIdentifier","src":"818:3:125"},"nativeSrc":"818:18:125","nodeType":"YulFunctionCall","src":"818:18:125"}],"functionName":{"name":"mload","nativeSrc":"812:5:125","nodeType":"YulIdentifier","src":"812:5:125"},"nativeSrc":"812:25:125","nodeType":"YulFunctionCall","src":"812:25:125"},"variables":[{"name":"value_1","nativeSrc":"801:7:125","nodeType":"YulTypedName","src":"801:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"884:7:125","nodeType":"YulIdentifier","src":"884:7:125"}],"functionName":{"name":"validator_revert_contract_IEntryPoint","nativeSrc":"846:37:125","nodeType":"YulIdentifier","src":"846:37:125"},"nativeSrc":"846:46:125","nodeType":"YulFunctionCall","src":"846:46:125"},"nativeSrc":"846:46:125","nodeType":"YulExpressionStatement","src":"846:46:125"},{"nativeSrc":"901:17:125","nodeType":"YulAssignment","src":"901:17:125","value":{"name":"value_1","nativeSrc":"911:7:125","nodeType":"YulIdentifier","src":"911:7:125"},"variableNames":[{"name":"value1","nativeSrc":"901:6:125","nodeType":"YulIdentifier","src":"901:6:125"}]},{"nativeSrc":"927:39:125","nodeType":"YulVariableDeclaration","src":"927:39:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"951:9:125","nodeType":"YulIdentifier","src":"951:9:125"},{"kind":"number","nativeSrc":"962:2:125","nodeType":"YulLiteral","src":"962:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"947:3:125","nodeType":"YulIdentifier","src":"947:3:125"},"nativeSrc":"947:18:125","nodeType":"YulFunctionCall","src":"947:18:125"}],"functionName":{"name":"mload","nativeSrc":"941:5:125","nodeType":"YulIdentifier","src":"941:5:125"},"nativeSrc":"941:25:125","nodeType":"YulFunctionCall","src":"941:25:125"},"variables":[{"name":"offset","nativeSrc":"931:6:125","nodeType":"YulTypedName","src":"931:6:125","type":""}]},{"body":{"nativeSrc":"1009:16:125","nodeType":"YulBlock","src":"1009:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1018:1:125","nodeType":"YulLiteral","src":"1018:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1021:1:125","nodeType":"YulLiteral","src":"1021:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1011:6:125","nodeType":"YulIdentifier","src":"1011:6:125"},"nativeSrc":"1011:12:125","nodeType":"YulFunctionCall","src":"1011:12:125"},"nativeSrc":"1011:12:125","nodeType":"YulExpressionStatement","src":"1011:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"981:6:125","nodeType":"YulIdentifier","src":"981:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"997:2:125","nodeType":"YulLiteral","src":"997:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"1001:1:125","nodeType":"YulLiteral","src":"1001:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"993:3:125","nodeType":"YulIdentifier","src":"993:3:125"},"nativeSrc":"993:10:125","nodeType":"YulFunctionCall","src":"993:10:125"},{"kind":"number","nativeSrc":"1005:1:125","nodeType":"YulLiteral","src":"1005:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"989:3:125","nodeType":"YulIdentifier","src":"989:3:125"},"nativeSrc":"989:18:125","nodeType":"YulFunctionCall","src":"989:18:125"}],"functionName":{"name":"gt","nativeSrc":"978:2:125","nodeType":"YulIdentifier","src":"978:2:125"},"nativeSrc":"978:30:125","nodeType":"YulFunctionCall","src":"978:30:125"},"nativeSrc":"975:50:125","nodeType":"YulIf","src":"975:50:125"},{"nativeSrc":"1034:32:125","nodeType":"YulVariableDeclaration","src":"1034:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1048:9:125","nodeType":"YulIdentifier","src":"1048:9:125"},{"name":"offset","nativeSrc":"1059:6:125","nodeType":"YulIdentifier","src":"1059:6:125"}],"functionName":{"name":"add","nativeSrc":"1044:3:125","nodeType":"YulIdentifier","src":"1044:3:125"},"nativeSrc":"1044:22:125","nodeType":"YulFunctionCall","src":"1044:22:125"},"variables":[{"name":"_1","nativeSrc":"1038:2:125","nodeType":"YulTypedName","src":"1038:2:125","type":""}]},{"body":{"nativeSrc":"1114:16:125","nodeType":"YulBlock","src":"1114:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1123:1:125","nodeType":"YulLiteral","src":"1123:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1126:1:125","nodeType":"YulLiteral","src":"1126:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1116:6:125","nodeType":"YulIdentifier","src":"1116:6:125"},"nativeSrc":"1116:12:125","nodeType":"YulFunctionCall","src":"1116:12:125"},"nativeSrc":"1116:12:125","nodeType":"YulExpressionStatement","src":"1116:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1093:2:125","nodeType":"YulIdentifier","src":"1093:2:125"},{"kind":"number","nativeSrc":"1097:4:125","nodeType":"YulLiteral","src":"1097:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"1089:3:125","nodeType":"YulIdentifier","src":"1089:3:125"},"nativeSrc":"1089:13:125","nodeType":"YulFunctionCall","src":"1089:13:125"},{"name":"dataEnd","nativeSrc":"1104:7:125","nodeType":"YulIdentifier","src":"1104:7:125"}],"functionName":{"name":"slt","nativeSrc":"1085:3:125","nodeType":"YulIdentifier","src":"1085:3:125"},"nativeSrc":"1085:27:125","nodeType":"YulFunctionCall","src":"1085:27:125"}],"functionName":{"name":"iszero","nativeSrc":"1078:6:125","nodeType":"YulIdentifier","src":"1078:6:125"},"nativeSrc":"1078:35:125","nodeType":"YulFunctionCall","src":"1078:35:125"},"nativeSrc":"1075:55:125","nodeType":"YulIf","src":"1075:55:125"},{"nativeSrc":"1139:23:125","nodeType":"YulVariableDeclaration","src":"1139:23:125","value":{"arguments":[{"name":"_1","nativeSrc":"1159:2:125","nodeType":"YulIdentifier","src":"1159:2:125"}],"functionName":{"name":"mload","nativeSrc":"1153:5:125","nodeType":"YulIdentifier","src":"1153:5:125"},"nativeSrc":"1153:9:125","nodeType":"YulFunctionCall","src":"1153:9:125"},"variables":[{"name":"length","nativeSrc":"1143:6:125","nodeType":"YulTypedName","src":"1143:6:125","type":""}]},{"body":{"nativeSrc":"1205:22:125","nodeType":"YulBlock","src":"1205:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1207:16:125","nodeType":"YulIdentifier","src":"1207:16:125"},"nativeSrc":"1207:18:125","nodeType":"YulFunctionCall","src":"1207:18:125"},"nativeSrc":"1207:18:125","nodeType":"YulExpressionStatement","src":"1207:18:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1177:6:125","nodeType":"YulIdentifier","src":"1177:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1193:2:125","nodeType":"YulLiteral","src":"1193:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"1197:1:125","nodeType":"YulLiteral","src":"1197:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1189:3:125","nodeType":"YulIdentifier","src":"1189:3:125"},"nativeSrc":"1189:10:125","nodeType":"YulFunctionCall","src":"1189:10:125"},{"kind":"number","nativeSrc":"1201:1:125","nodeType":"YulLiteral","src":"1201:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1185:3:125","nodeType":"YulIdentifier","src":"1185:3:125"},"nativeSrc":"1185:18:125","nodeType":"YulFunctionCall","src":"1185:18:125"}],"functionName":{"name":"gt","nativeSrc":"1174:2:125","nodeType":"YulIdentifier","src":"1174:2:125"},"nativeSrc":"1174:30:125","nodeType":"YulFunctionCall","src":"1174:30:125"},"nativeSrc":"1171:56:125","nodeType":"YulIf","src":"1171:56:125"},{"nativeSrc":"1236:24:125","nodeType":"YulVariableDeclaration","src":"1236:24:125","value":{"arguments":[{"kind":"number","nativeSrc":"1250:1:125","nodeType":"YulLiteral","src":"1250:1:125","type":"","value":"5"},{"name":"length","nativeSrc":"1253:6:125","nodeType":"YulIdentifier","src":"1253:6:125"}],"functionName":{"name":"shl","nativeSrc":"1246:3:125","nodeType":"YulIdentifier","src":"1246:3:125"},"nativeSrc":"1246:14:125","nodeType":"YulFunctionCall","src":"1246:14:125"},"variables":[{"name":"_2","nativeSrc":"1240:2:125","nodeType":"YulTypedName","src":"1240:2:125","type":""}]},{"nativeSrc":"1269:23:125","nodeType":"YulVariableDeclaration","src":"1269:23:125","value":{"arguments":[{"kind":"number","nativeSrc":"1289:2:125","nodeType":"YulLiteral","src":"1289:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1283:5:125","nodeType":"YulIdentifier","src":"1283:5:125"},"nativeSrc":"1283:9:125","nodeType":"YulFunctionCall","src":"1283:9:125"},"variables":[{"name":"memPtr","nativeSrc":"1273:6:125","nodeType":"YulTypedName","src":"1273:6:125","type":""}]},{"nativeSrc":"1301:56:125","nodeType":"YulVariableDeclaration","src":"1301:56:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"1323:6:125","nodeType":"YulIdentifier","src":"1323:6:125"},{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"1339:2:125","nodeType":"YulIdentifier","src":"1339:2:125"},{"kind":"number","nativeSrc":"1343:2:125","nodeType":"YulLiteral","src":"1343:2:125","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"1335:3:125","nodeType":"YulIdentifier","src":"1335:3:125"},"nativeSrc":"1335:11:125","nodeType":"YulFunctionCall","src":"1335:11:125"},{"arguments":[{"kind":"number","nativeSrc":"1352:2:125","nodeType":"YulLiteral","src":"1352:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1348:3:125","nodeType":"YulIdentifier","src":"1348:3:125"},"nativeSrc":"1348:7:125","nodeType":"YulFunctionCall","src":"1348:7:125"}],"functionName":{"name":"and","nativeSrc":"1331:3:125","nodeType":"YulIdentifier","src":"1331:3:125"},"nativeSrc":"1331:25:125","nodeType":"YulFunctionCall","src":"1331:25:125"}],"functionName":{"name":"add","nativeSrc":"1319:3:125","nodeType":"YulIdentifier","src":"1319:3:125"},"nativeSrc":"1319:38:125","nodeType":"YulFunctionCall","src":"1319:38:125"},"variables":[{"name":"newFreePtr","nativeSrc":"1305:10:125","nodeType":"YulTypedName","src":"1305:10:125","type":""}]},{"body":{"nativeSrc":"1432:22:125","nodeType":"YulBlock","src":"1432:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1434:16:125","nodeType":"YulIdentifier","src":"1434:16:125"},"nativeSrc":"1434:18:125","nodeType":"YulFunctionCall","src":"1434:18:125"},"nativeSrc":"1434:18:125","nodeType":"YulExpressionStatement","src":"1434:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"1375:10:125","nodeType":"YulIdentifier","src":"1375:10:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1395:2:125","nodeType":"YulLiteral","src":"1395:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"1399:1:125","nodeType":"YulLiteral","src":"1399:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1391:3:125","nodeType":"YulIdentifier","src":"1391:3:125"},"nativeSrc":"1391:10:125","nodeType":"YulFunctionCall","src":"1391:10:125"},{"kind":"number","nativeSrc":"1403:1:125","nodeType":"YulLiteral","src":"1403:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1387:3:125","nodeType":"YulIdentifier","src":"1387:3:125"},"nativeSrc":"1387:18:125","nodeType":"YulFunctionCall","src":"1387:18:125"}],"functionName":{"name":"gt","nativeSrc":"1372:2:125","nodeType":"YulIdentifier","src":"1372:2:125"},"nativeSrc":"1372:34:125","nodeType":"YulFunctionCall","src":"1372:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"1411:10:125","nodeType":"YulIdentifier","src":"1411:10:125"},{"name":"memPtr","nativeSrc":"1423:6:125","nodeType":"YulIdentifier","src":"1423:6:125"}],"functionName":{"name":"lt","nativeSrc":"1408:2:125","nodeType":"YulIdentifier","src":"1408:2:125"},"nativeSrc":"1408:22:125","nodeType":"YulFunctionCall","src":"1408:22:125"}],"functionName":{"name":"or","nativeSrc":"1369:2:125","nodeType":"YulIdentifier","src":"1369:2:125"},"nativeSrc":"1369:62:125","nodeType":"YulFunctionCall","src":"1369:62:125"},"nativeSrc":"1366:88:125","nodeType":"YulIf","src":"1366:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1470:2:125","nodeType":"YulLiteral","src":"1470:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1474:10:125","nodeType":"YulIdentifier","src":"1474:10:125"}],"functionName":{"name":"mstore","nativeSrc":"1463:6:125","nodeType":"YulIdentifier","src":"1463:6:125"},"nativeSrc":"1463:22:125","nodeType":"YulFunctionCall","src":"1463:22:125"},"nativeSrc":"1463:22:125","nodeType":"YulExpressionStatement","src":"1463:22:125"},{"nativeSrc":"1494:17:125","nodeType":"YulVariableDeclaration","src":"1494:17:125","value":{"name":"memPtr","nativeSrc":"1505:6:125","nodeType":"YulIdentifier","src":"1505:6:125"},"variables":[{"name":"dst","nativeSrc":"1498:3:125","nodeType":"YulTypedName","src":"1498:3:125","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"1527:6:125","nodeType":"YulIdentifier","src":"1527:6:125"},{"name":"length","nativeSrc":"1535:6:125","nodeType":"YulIdentifier","src":"1535:6:125"}],"functionName":{"name":"mstore","nativeSrc":"1520:6:125","nodeType":"YulIdentifier","src":"1520:6:125"},"nativeSrc":"1520:22:125","nodeType":"YulFunctionCall","src":"1520:22:125"},"nativeSrc":"1520:22:125","nodeType":"YulExpressionStatement","src":"1520:22:125"},{"nativeSrc":"1551:22:125","nodeType":"YulAssignment","src":"1551:22:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"1562:6:125","nodeType":"YulIdentifier","src":"1562:6:125"},{"kind":"number","nativeSrc":"1570:2:125","nodeType":"YulLiteral","src":"1570:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1558:3:125","nodeType":"YulIdentifier","src":"1558:3:125"},"nativeSrc":"1558:15:125","nodeType":"YulFunctionCall","src":"1558:15:125"},"variableNames":[{"name":"dst","nativeSrc":"1551:3:125","nodeType":"YulIdentifier","src":"1551:3:125"}]},{"nativeSrc":"1582:34:125","nodeType":"YulVariableDeclaration","src":"1582:34:125","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1604:2:125","nodeType":"YulIdentifier","src":"1604:2:125"},{"name":"_2","nativeSrc":"1608:2:125","nodeType":"YulIdentifier","src":"1608:2:125"}],"functionName":{"name":"add","nativeSrc":"1600:3:125","nodeType":"YulIdentifier","src":"1600:3:125"},"nativeSrc":"1600:11:125","nodeType":"YulFunctionCall","src":"1600:11:125"},{"kind":"number","nativeSrc":"1613:2:125","nodeType":"YulLiteral","src":"1613:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1596:3:125","nodeType":"YulIdentifier","src":"1596:3:125"},"nativeSrc":"1596:20:125","nodeType":"YulFunctionCall","src":"1596:20:125"},"variables":[{"name":"srcEnd","nativeSrc":"1586:6:125","nodeType":"YulTypedName","src":"1586:6:125","type":""}]},{"body":{"nativeSrc":"1648:16:125","nodeType":"YulBlock","src":"1648:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1657:1:125","nodeType":"YulLiteral","src":"1657:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1660:1:125","nodeType":"YulLiteral","src":"1660:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1650:6:125","nodeType":"YulIdentifier","src":"1650:6:125"},"nativeSrc":"1650:12:125","nodeType":"YulFunctionCall","src":"1650:12:125"},"nativeSrc":"1650:12:125","nodeType":"YulExpressionStatement","src":"1650:12:125"}]},"condition":{"arguments":[{"name":"srcEnd","nativeSrc":"1631:6:125","nodeType":"YulIdentifier","src":"1631:6:125"},{"name":"dataEnd","nativeSrc":"1639:7:125","nodeType":"YulIdentifier","src":"1639:7:125"}],"functionName":{"name":"gt","nativeSrc":"1628:2:125","nodeType":"YulIdentifier","src":"1628:2:125"},"nativeSrc":"1628:19:125","nodeType":"YulFunctionCall","src":"1628:19:125"},"nativeSrc":"1625:39:125","nodeType":"YulIf","src":"1625:39:125"},{"nativeSrc":"1673:22:125","nodeType":"YulVariableDeclaration","src":"1673:22:125","value":{"arguments":[{"name":"_1","nativeSrc":"1688:2:125","nodeType":"YulIdentifier","src":"1688:2:125"},{"kind":"number","nativeSrc":"1692:2:125","nodeType":"YulLiteral","src":"1692:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1684:3:125","nodeType":"YulIdentifier","src":"1684:3:125"},"nativeSrc":"1684:11:125","nodeType":"YulFunctionCall","src":"1684:11:125"},"variables":[{"name":"src","nativeSrc":"1677:3:125","nodeType":"YulTypedName","src":"1677:3:125","type":""}]},{"body":{"nativeSrc":"1760:103:125","nodeType":"YulBlock","src":"1760:103:125","statements":[{"expression":{"arguments":[{"name":"dst","nativeSrc":"1781:3:125","nodeType":"YulIdentifier","src":"1781:3:125"},{"arguments":[{"name":"src","nativeSrc":"1816:3:125","nodeType":"YulIdentifier","src":"1816:3:125"}],"functionName":{"name":"abi_decode_address_fromMemory","nativeSrc":"1786:29:125","nodeType":"YulIdentifier","src":"1786:29:125"},"nativeSrc":"1786:34:125","nodeType":"YulFunctionCall","src":"1786:34:125"}],"functionName":{"name":"mstore","nativeSrc":"1774:6:125","nodeType":"YulIdentifier","src":"1774:6:125"},"nativeSrc":"1774:47:125","nodeType":"YulFunctionCall","src":"1774:47:125"},"nativeSrc":"1774:47:125","nodeType":"YulExpressionStatement","src":"1774:47:125"},{"nativeSrc":"1834:19:125","nodeType":"YulAssignment","src":"1834:19:125","value":{"arguments":[{"name":"dst","nativeSrc":"1845:3:125","nodeType":"YulIdentifier","src":"1845:3:125"},{"kind":"number","nativeSrc":"1850:2:125","nodeType":"YulLiteral","src":"1850:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1841:3:125","nodeType":"YulIdentifier","src":"1841:3:125"},"nativeSrc":"1841:12:125","nodeType":"YulFunctionCall","src":"1841:12:125"},"variableNames":[{"name":"dst","nativeSrc":"1834:3:125","nodeType":"YulIdentifier","src":"1834:3:125"}]}]},"condition":{"arguments":[{"name":"src","nativeSrc":"1715:3:125","nodeType":"YulIdentifier","src":"1715:3:125"},{"name":"srcEnd","nativeSrc":"1720:6:125","nodeType":"YulIdentifier","src":"1720:6:125"}],"functionName":{"name":"lt","nativeSrc":"1712:2:125","nodeType":"YulIdentifier","src":"1712:2:125"},"nativeSrc":"1712:15:125","nodeType":"YulFunctionCall","src":"1712:15:125"},"nativeSrc":"1704:159:125","nodeType":"YulForLoop","post":{"nativeSrc":"1728:23:125","nodeType":"YulBlock","src":"1728:23:125","statements":[{"nativeSrc":"1730:19:125","nodeType":"YulAssignment","src":"1730:19:125","value":{"arguments":[{"name":"src","nativeSrc":"1741:3:125","nodeType":"YulIdentifier","src":"1741:3:125"},{"kind":"number","nativeSrc":"1746:2:125","nodeType":"YulLiteral","src":"1746:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1737:3:125","nodeType":"YulIdentifier","src":"1737:3:125"},"nativeSrc":"1737:12:125","nodeType":"YulFunctionCall","src":"1737:12:125"},"variableNames":[{"name":"src","nativeSrc":"1730:3:125","nodeType":"YulIdentifier","src":"1730:3:125"}]}]},"pre":{"nativeSrc":"1708:3:125","nodeType":"YulBlock","src":"1708:3:125","statements":[]},"src":"1704:159:125"},{"nativeSrc":"1872:16:125","nodeType":"YulAssignment","src":"1872:16:125","value":{"name":"memPtr","nativeSrc":"1882:6:125","nodeType":"YulIdentifier","src":"1882:6:125"},"variableNames":[{"name":"value2","nativeSrc":"1872:6:125","nodeType":"YulIdentifier","src":"1872:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IEntryPoint_$3566t_addresst_array$_t_address_$dyn_memory_ptr_fromMemory","nativeSrc":"451:1443:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"561:9:125","nodeType":"YulTypedName","src":"561:9:125","type":""},{"name":"dataEnd","nativeSrc":"572:7:125","nodeType":"YulTypedName","src":"572:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"584:6:125","nodeType":"YulTypedName","src":"584:6:125","type":""},{"name":"value1","nativeSrc":"592:6:125","nodeType":"YulTypedName","src":"592:6:125","type":""},{"name":"value2","nativeSrc":"600:6:125","nodeType":"YulTypedName","src":"600:6:125","type":""}],"src":"451:1443:125"},{"body":{"nativeSrc":"1931:95:125","nodeType":"YulBlock","src":"1931:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1948:1:125","nodeType":"YulLiteral","src":"1948:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1955:3:125","nodeType":"YulLiteral","src":"1955:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"1960:10:125","nodeType":"YulLiteral","src":"1960:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1951:3:125","nodeType":"YulIdentifier","src":"1951:3:125"},"nativeSrc":"1951:20:125","nodeType":"YulFunctionCall","src":"1951:20:125"}],"functionName":{"name":"mstore","nativeSrc":"1941:6:125","nodeType":"YulIdentifier","src":"1941:6:125"},"nativeSrc":"1941:31:125","nodeType":"YulFunctionCall","src":"1941:31:125"},"nativeSrc":"1941:31:125","nodeType":"YulExpressionStatement","src":"1941:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1988:1:125","nodeType":"YulLiteral","src":"1988:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"1991:4:125","nodeType":"YulLiteral","src":"1991:4:125","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"1981:6:125","nodeType":"YulIdentifier","src":"1981:6:125"},"nativeSrc":"1981:15:125","nodeType":"YulFunctionCall","src":"1981:15:125"},"nativeSrc":"1981:15:125","nodeType":"YulExpressionStatement","src":"1981:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2012:1:125","nodeType":"YulLiteral","src":"2012:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2015:4:125","nodeType":"YulLiteral","src":"2015:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"2005:6:125","nodeType":"YulIdentifier","src":"2005:6:125"},"nativeSrc":"2005:15:125","nodeType":"YulFunctionCall","src":"2005:15:125"},"nativeSrc":"2005:15:125","nodeType":"YulExpressionStatement","src":"2005:15:125"}]},"name":"panic_error_0x32","nativeSrc":"1899:127:125","nodeType":"YulFunctionDefinition","src":"1899:127:125"}]},"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_$3566t_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":125,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60a060405234801561000f575f5ffd5b5060405161167538038061167583398101604081905261002e91610190565b6001600160a01b0383166080526100455f836100ac565b505f5b81518110156100a35761009a7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6383838151811061008757610087610282565b60200260200101516100ac60201b60201c565b50600101610048565b50505050610296565b5f828152602081815260408083206001600160a01b038516845290915281205460ff1661014c575f838152602081815260408083206001600160a01b03861684529091529020805460ff191660011790556101043390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600161014f565b505f5b92915050565b6001600160a01b0381168114610169575f5ffd5b50565b805161017781610155565b919050565b634e487b7160e01b5f52604160045260245ffd5b5f5f5f606084860312156101a2575f5ffd5b83516101ad81610155565b60208501519093506101be81610155565b60408501519092506001600160401b038111156101d9575f5ffd5b8401601f810186136101e9575f5ffd5b80516001600160401b038111156102025761020261017c565b604051600582901b90603f8201601f191681016001600160401b03811182821017156102305761023061017c565b60405291825260208184018101929081018984111561024d575f5ffd5b6020850194505b83851015610273576102658561016c565b815260209485019401610254565b50809450505050509250925092565b634e487b7160e01b5f52603260045260245ffd5b60805161139d6102d85f395f818161029b0152818161062e015281816106d401528181610814015281816108a9015281816109070152610ba2015261139d5ff3fe6080604052600436106100fd575f3560e01c80634d44560d11610092578063b61d27f611610062578063b61d27f6146102c5578063c399ec88146102e4578063d087d288146102f8578063d547741f1461030c578063e02023a11461032b575f5ffd5b80634d44560d1461023157806391d1485414610250578063a217fddf1461026f578063b0d691fe14610282575f5ffd5b80632f2ff15d116100cd5780632f2ff15d146101ca57806336568abe146101eb57806347e1da2a1461020a5780634a58db1914610229575f5ffd5b806301ffc9a71461010857806307bd02651461013c57806319822f7c1461017d578063248a9ca31461019c575f5ffd5b3661010457005b5f5ffd5b348015610113575f5ffd5b50610127610122366004611020565b61035e565b60405190151581526020015b60405180910390f35b348015610147575f5ffd5b5061016f7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b604051908152602001610133565b348015610188575f5ffd5b5061016f610197366004611047565b610394565b3480156101a7575f5ffd5b5061016f6101b6366004611096565b5f9081526020819052604090206001015490565b3480156101d5575f5ffd5b506101e96101e43660046110c1565b6103b9565b005b3480156101f6575f5ffd5b506101e96102053660046110c1565b6103e3565b348015610215575f5ffd5b506101e9610224366004611137565b61041b565b6101e961062c565b34801561023c575f5ffd5b506101e961024b3660046111d6565b6106a8565b34801561025b575f5ffd5b5061012761026a3660046110c1565b610757565b34801561027a575f5ffd5b5061016f5f81565b34801561028d575f5ffd5b506040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602001610133565b3480156102d0575f5ffd5b506101e96102df366004611200565b61077f565b3480156102ef575f5ffd5b5061016f6107f5565b348015610303575f5ffd5b5061016f610883565b348015610317575f5ffd5b506101e96103263660046110c1565b6108d8565b348015610336575f5ffd5b5061016f7f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec81565b5f6001600160e01b03198216637965db0b60e01b148061038e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b5f61039d6108fc565b6103a78484610976565b90506103b282610a54565b9392505050565b5f828152602081905260409020600101546103d381610a9d565b6103dd8383610aa7565b50505050565b6001600160a01b038116331461040c5760405163334bd91960e11b815260040160405180910390fd5b6104168282610b36565b505050565b5f610424610b9f565b9050858214158061043f5750831580159061043f5750838214155b1561045d5760405163150072e360e11b815260040160405180910390fd5b5f5b868110156106225780156105125787878281811061047f5761047f611285565b90506020020160208101906104949190611299565b6001600160a01b031688886104aa6001856112b4565b8181106104b9576104b9611285565b90506020020160208101906104ce9190611299565b6001600160a01b0316148061050d575061050d8888838181106104f3576104f3611285565b90506020020160208101906105089190611299565b610c74565b610527565b61052788885f8181106104f3576104f3611285565b88888381811061053957610539611285565b905060200201602081019061054e9190611299565b9061057d57604051636d4e141560e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b5061061988888381811061059357610593611285565b90506020020160208101906105a89190611299565b8585848181106105ba576105ba611285565b90506020028101906105cc91906112d3565b856040516020016105df93929190611316565b60408051601f1981840301815291905287156106135788888581811061060757610607611285565b90506020020135610ced565b5f610ced565b5060010161045f565b5050505050505050565b7f000000000000000000000000000000000000000000000000000000000000000060405163b760faf960e01b81523060048201526001600160a01b03919091169063b760faf99034906024015f604051808303818588803b15801561068f575f5ffd5b505af11580156106a1573d5f5f3e3d5ffd5b5050505050565b7f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec6106d281610a9d565b7f000000000000000000000000000000000000000000000000000000000000000060405163040b850f60e31b81526001600160a01b03858116600483015260248201859052919091169063205c2878906044015f604051808303815f87803b15801561073c575f5ffd5b505af115801561074e573d5f5f3e3d5ffd5b50505050505050565b5f918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b5f610788610b9f565b905061079385610c74565b85906107be57604051636d4e141560e01b81526001600160a01b039091166004820152602401610574565b506107ed858484846040516020016107d893929190611316565b60405160208183030381529060405286610ced565b505050505050565b6040516370a0823160e01b81523060048201525f906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a08231906024015b602060405180830381865afa15801561085a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061087e919061133c565b905090565b604051631aab3f0d60e11b81523060048201525f60248201819052906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906335567e1a9060440161083f565b5f828152602081905260409020600101546108f281610a9d565b6103dd8383610b36565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146109745760405162461bcd60e51b815260206004820152601c60248201527f6163636f756e743a206e6f742066726f6d20456e747279506f696e74000000006044820152606401610574565b565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c829052603c81205f6109f0826109b76101008801886112d3565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250610db992505050565b9050610a1c7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6382610757565b610a2b5760019250505061038e565b805f805c6001600160a01b0319166001600160a01b03831617905d505f95945050505050565b50565b8015610a51576040515f9033905f1990849084818181858888f193505050503d805f81146106a1576040519150601f19603f3d011682016040523d82523d5f602084013e6106a1565b610a518133610de1565b5f610ab28383610757565b610b2f575f838152602081815260408083206001600160a01b03861684529091529020805460ff19166001179055610ae73390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600161038e565b505f61038e565b5f610b418383610757565b15610b2f575f838152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a450600161038e565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163303610c18575f5c6001600160a01b0316610bf857604051636ca7ff7d60e01b815260040160405180910390fd5b506001600160a01b035f805c918216916001600160a01b031916815d5090565b610c427fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6333610757565b3390610c6d57604051633c687f6b60e21b81526001600160a01b039091166004820152602401610574565b5033905090565b6040513060248201525f90819060440160408051601f19818403018152919052602080820180516001600160e01b031663572b6c0560e01b17815282519293505f928392839290918391895afa92503d91505f519050828015610cd8575060208210155b8015610ce357505f81115b9695505050505050565b606081471015610d195760405163cf47918160e01b815247600482015260248101839052604401610574565b5f610d25858486610e1e565b9050808015610d4657505f3d1180610d4657505f856001600160a01b03163b115b15610d5b57610d53610e33565b9150506103b2565b8015610d8557604051639996b31560e01b81526001600160a01b0386166004820152602401610574565b3d15610d9857610d93610e4c565b610db1565b60405163d6bda27560e01b815260040160405180910390fd5b509392505050565b5f5f5f5f610dc78686610e57565b925092509250610dd78282610ea0565b5090949350505050565b610deb8282610757565b610e1a5760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610574565b5050565b5f5f5f83516020850186885af1949350505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f5f5f8351604103610e8e576020840151604085015160608601515f1a610e8088828585610f58565b955095509550505050610e99565b505081515f91506002905b9250925092565b5f826003811115610eb357610eb3611353565b03610ebc575050565b6001826003811115610ed057610ed0611353565b03610eee5760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610f0257610f02611353565b03610f235760405163fce698f760e01b815260048101829052602401610574565b6003826003811115610f3757610f37611353565b03610e1a576040516335e2f38360e21b815260048101829052602401610574565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610f9157505f91506003905082611016565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610fe2573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b03811661100d57505f925060019150829050611016565b92505f91508190505b9450945094915050565b5f60208284031215611030575f5ffd5b81356001600160e01b0319811681146103b2575f5ffd5b5f5f5f60608486031215611059575f5ffd5b833567ffffffffffffffff81111561106f575f5ffd5b84016101208187031215611081575f5ffd5b95602085013595506040909401359392505050565b5f602082840312156110a6575f5ffd5b5035919050565b6001600160a01b0381168114610a51575f5ffd5b5f5f604083850312156110d2575f5ffd5b8235915060208301356110e4816110ad565b809150509250929050565b5f5f83601f8401126110ff575f5ffd5b50813567ffffffffffffffff811115611116575f5ffd5b6020830191508360208260051b8501011115611130575f5ffd5b9250929050565b5f5f5f5f5f5f6060878903121561114c575f5ffd5b863567ffffffffffffffff811115611162575f5ffd5b61116e89828a016110ef565b909750955050602087013567ffffffffffffffff81111561118d575f5ffd5b61119989828a016110ef565b909550935050604087013567ffffffffffffffff8111156111b8575f5ffd5b6111c489828a016110ef565b979a9699509497509295939492505050565b5f5f604083850312156111e7575f5ffd5b82356111f2816110ad565b946020939093013593505050565b5f5f5f5f60608587031215611213575f5ffd5b843561121e816110ad565b935060208501359250604085013567ffffffffffffffff811115611240575f5ffd5b8501601f81018713611250575f5ffd5b803567ffffffffffffffff811115611266575f5ffd5b876020828401011115611277575f5ffd5b949793965060200194505050565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156112a9575f5ffd5b81356103b2816110ad565b8181038181111561038e57634e487b7160e01b5f52601160045260245ffd5b5f5f8335601e198436030181126112e8575f5ffd5b83018035915067ffffffffffffffff821115611302575f5ffd5b602001915036819003821315611130575f5ffd5b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b5f6020828403121561134c575f5ffd5b5051919050565b634e487b7160e01b5f52602160045260245ffdfea2646970667358221220c5b17cabd793a1d90f954c53479aa8d3b6256dd7cb946e209ee8a22dfa0c0bea64736f6c634300081e0033","opcodes":"PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x1675 CODESIZE SUB DUP1 PUSH2 0x1675 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 0x139D 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 0x139D 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 0x1020 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 0x1047 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 0x1096 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 0x10C1 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 0x10C1 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 0x1137 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 0x11D6 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 0x10C1 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 0x1200 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 0x10C1 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 0x1285 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x494 SWAP2 SWAP1 PUSH2 0x1299 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 DUP9 PUSH2 0x4AA PUSH1 0x1 DUP6 PUSH2 0x12B4 JUMP JUMPDEST DUP2 DUP2 LT PUSH2 0x4B9 JUMPI PUSH2 0x4B9 PUSH2 0x1285 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x4CE SWAP2 SWAP1 PUSH2 0x1299 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 0x1285 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x508 SWAP2 SWAP1 PUSH2 0x1299 JUMP JUMPDEST PUSH2 0xC74 JUMP JUMPDEST PUSH2 0x527 JUMP JUMPDEST PUSH2 0x527 DUP9 DUP9 PUSH0 DUP2 DUP2 LT PUSH2 0x4F3 JUMPI PUSH2 0x4F3 PUSH2 0x1285 JUMP JUMPDEST DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x539 JUMPI PUSH2 0x539 PUSH2 0x1285 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x54E SWAP2 SWAP1 PUSH2 0x1299 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 0x1285 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x5A8 SWAP2 SWAP1 PUSH2 0x1299 JUMP JUMPDEST DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x5BA JUMPI PUSH2 0x5BA PUSH2 0x1285 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x5CC SWAP2 SWAP1 PUSH2 0x12D3 JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x5DF SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1316 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 0x1285 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 0x1316 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 0x133C 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 0x12D3 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 0xDB9 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 0xDE1 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 PUSH2 0xD25 DUP6 DUP5 DUP7 PUSH2 0xE1E JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0xD46 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0xD46 JUMPI POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0xD5B JUMPI PUSH2 0xD53 PUSH2 0xE33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3B2 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xD85 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0xD98 JUMPI PUSH2 0xD93 PUSH2 0xE4C JUMP JUMPDEST PUSH2 0xDB1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0xDC7 DUP7 DUP7 PUSH2 0xE57 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0xDD7 DUP3 DUP3 PUSH2 0xEA0 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0xDEB DUP3 DUP3 PUSH2 0x757 JUMP JUMPDEST PUSH2 0xE1A 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 PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 DUP9 GAS CALL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x41 SUB PUSH2 0xE8E JUMPI PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH0 BYTE PUSH2 0xE80 DUP9 DUP3 DUP6 DUP6 PUSH2 0xF58 JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP PUSH2 0xE99 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 0xEB3 JUMPI PUSH2 0xEB3 PUSH2 0x1353 JUMP JUMPDEST SUB PUSH2 0xEBC JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xED0 JUMPI PUSH2 0xED0 PUSH2 0x1353 JUMP JUMPDEST SUB PUSH2 0xEEE 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 0xF02 JUMPI PUSH2 0xF02 PUSH2 0x1353 JUMP JUMPDEST SUB PUSH2 0xF23 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 0xF37 JUMPI PUSH2 0xF37 PUSH2 0x1353 JUMP JUMPDEST SUB PUSH2 0xE1A 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 PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0xF91 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x1016 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 0xFE2 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 0x100D JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x1016 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 0x1030 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 0x1059 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x106F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH2 0x120 DUP2 DUP8 SUB SLT ISZERO PUSH2 0x1081 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 0x10A6 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 0x10D2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x10E4 DUP2 PUSH2 0x10AD JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x10FF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1116 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1130 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 0x114C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1162 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x116E DUP10 DUP3 DUP11 ADD PUSH2 0x10EF JUMP JUMPDEST SWAP1 SWAP8 POP SWAP6 POP POP PUSH1 0x20 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x118D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1199 DUP10 DUP3 DUP11 ADD PUSH2 0x10EF JUMP JUMPDEST SWAP1 SWAP6 POP SWAP4 POP POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x11B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x11C4 DUP10 DUP3 DUP11 ADD PUSH2 0x10EF 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 0x11E7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x11F2 DUP2 PUSH2 0x10AD 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 0x1213 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x121E DUP2 PUSH2 0x10AD JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1240 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x1250 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1266 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x1277 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 0x12A9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3B2 DUP2 PUSH2 0x10AD 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 0x12E8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1302 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x1130 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 0x134C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD 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 0xC5 0xB1 PUSH29 0xABD793A1D90F954C53479AA8D3B6256DD7CB946E209EE8A22DFA0C0BEA PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"1158:5897:20:-:0;;;1840:263;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:26:20;;;;1959:37;2241:4:54;1990:5:20;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:20;;2002:97;;;;1840:263;;;1158:5897;;6155:316:54;6232:4;2930:12;;;;;;;;;;;-1:-1:-1;;;;;2930:29:54;;;;;;;;;;;;6248:217;;6291:6;:12;;;;;;;;;;;-1:-1:-1;;;;;6291:29:54;;;;;;;;;:36;;-1:-1:-1;;6291:36:54;6323:4;6291:36;;;6373:12;735:10:89;;656:96;6373:12:54;-1:-1:-1;;;;;6346:40:54;6364:7;-1:-1:-1;;;;;6346:40:54;6358:4;6346:40;;;;;;;;;;-1:-1:-1;6407:4:54;6400:11;;6248:217;-1:-1:-1;6449:5:54;6248:217;6155:316;;;;:::o;14:144:125:-;-1:-1:-1;;;;;102:31:125;;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:1443;584:6;592;600;653:2;641:9;632:7;628:23;624:32;621:52;;;669:1;666;659:12;621:52;701:9;695:16;720:44;758:5;720:44;:::i;:::-;833:2;818:18;;812:25;783:5;;-1:-1:-1;846:46:125;812:25;846:46;:::i;:::-;962:2;947:18;;941:25;911:7;;-1:-1:-1;;;;;;978:30:125;;975:50;;;1021:1;1018;1011:12;975:50;1044:22;;1097:4;1089:13;;1085:27;-1:-1:-1;1075:55:125;;1126:1;1123;1116:12;1075:55;1153:9;;-1:-1:-1;;;;;1174:30:125;;1171:56;;;1207:18;;:::i;:::-;1289:2;1283:9;1250:1;1246:14;;;;1343:2;1335:11;;-1:-1:-1;;1331:25:125;1319:38;;-1:-1:-1;;;;;1372:34:125;;1408:22;;;1369:62;1366:88;;;1434:18;;:::i;:::-;1470:2;1463:22;1520;;;1570:2;1600:11;;;1596:20;;;1520:22;1558:15;;1628:19;;;1625:39;;;1660:1;1657;1650:12;1625:39;1692:2;1688;1684:11;1673:22;;1704:159;1720:6;1715:3;1712:15;1704:159;;;1786:34;1816:3;1786:34;:::i;:::-;1774:47;;1850:2;1737:12;;;;1841;1704:159;;;1708:3;1882:6;1872:16;;;;;;451:1443;;;;;:::o;1899:127::-;1960:10;1955:3;1951:20;1948:1;1941:31;1991:4;1988:1;1981:15;2015:4;2012:1;2005:15;1899:127;1158:5897:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@DEFAULT_ADMIN_ROLE_19461":{"entryPoint":null,"id":19461,"parameterSlots":0,"returnSlots":0},"@EXECUTOR_ROLE_4364":{"entryPoint":null,"id":4364,"parameterSlots":0,"returnSlots":0},"@WITHDRAW_ROLE_4359":{"entryPoint":null,"id":4359,"parameterSlots":0,"returnSlots":0},"@_4396":{"entryPoint":null,"id":4396,"parameterSlots":0,"returnSlots":0},"@_checkRole_19525":{"entryPoint":2717,"id":19525,"parameterSlots":1,"returnSlots":0},"@_checkRole_19546":{"entryPoint":3553,"id":19546,"parameterSlots":2,"returnSlots":0},"@_grantRole_19688":{"entryPoint":2727,"id":19688,"parameterSlots":2,"returnSlots":1},"@_isTrustedByTarget_4723":{"entryPoint":3188,"id":4723,"parameterSlots":1,"returnSlots":1},"@_msgSender_26771":{"entryPoint":null,"id":26771,"parameterSlots":0,"returnSlots":1},"@_payPrefund_137":{"entryPoint":2644,"id":137,"parameterSlots":1,"returnSlots":0},"@_requireFromEntryPointOrExecutor_4491":{"entryPoint":2975,"id":4491,"parameterSlots":0,"returnSlots":1},"@_requireFromEntryPoint_86":{"entryPoint":2300,"id":86,"parameterSlots":0,"returnSlots":0},"@_revokeRole_19726":{"entryPoint":2870,"id":19726,"parameterSlots":2,"returnSlots":1},"@_throwError_33172":{"entryPoint":3744,"id":33172,"parameterSlots":2,"returnSlots":0},"@_validateNonce_104":{"entryPoint":2641,"id":104,"parameterSlots":1,"returnSlots":0},"@_validateSignature_4681":{"entryPoint":2422,"id":4681,"parameterSlots":2,"returnSlots":1},"@addDeposit_4756":{"entryPoint":1580,"id":4756,"parameterSlots":0,"returnSlots":0},"@bubbleRevert_26962":{"entryPoint":3660,"id":26962,"parameterSlots":0,"returnSlots":0},"@callNoReturn_26845":{"entryPoint":3614,"id":26845,"parameterSlots":3,"returnSlots":1},"@entryPoint_4392":{"entryPoint":null,"id":4392,"parameterSlots":0,"returnSlots":1},"@executeBatch_4638":{"entryPoint":1051,"id":4638,"parameterSlots":6,"returnSlots":0},"@execute_4528":{"entryPoint":1919,"id":4528,"parameterSlots":4,"returnSlots":0},"@functionCallWithValue_25828":{"entryPoint":3309,"id":25828,"parameterSlots":3,"returnSlots":1},"@getDeposit_4739":{"entryPoint":2037,"id":4739,"parameterSlots":0,"returnSlots":1},"@getNonce_28":{"entryPoint":2179,"id":28,"parameterSlots":0,"returnSlots":1},"@getRoleAdmin_19560":{"entryPoint":null,"id":19560,"parameterSlots":1,"returnSlots":1},"@grantRole_19579":{"entryPoint":953,"id":19579,"parameterSlots":2,"returnSlots":0},"@hasRole_19512":{"entryPoint":1879,"id":19512,"parameterSlots":2,"returnSlots":1},"@recover_32871":{"entryPoint":3513,"id":32871,"parameterSlots":2,"returnSlots":1},"@renounceRole_19621":{"entryPoint":995,"id":19621,"parameterSlots":2,"returnSlots":0},"@returnDataSize_26948":{"entryPoint":null,"id":26948,"parameterSlots":0,"returnSlots":1},"@returnData_26956":{"entryPoint":3635,"id":26956,"parameterSlots":0,"returnSlots":1},"@revokeRole_19598":{"entryPoint":2264,"id":19598,"parameterSlots":2,"returnSlots":0},"@supportsInterface_19494":{"entryPoint":862,"id":19494,"parameterSlots":1,"returnSlots":1},"@supportsInterface_33322":{"entryPoint":null,"id":33322,"parameterSlots":1,"returnSlots":1},"@toEthSignedMessageHash_33228":{"entryPoint":null,"id":33228,"parameterSlots":1,"returnSlots":1},"@tryRecover_32788":{"entryPoint":3671,"id":32788,"parameterSlots":2,"returnSlots":3},"@tryRecover_33059":{"entryPoint":3928,"id":33059,"parameterSlots":4,"returnSlots":3},"@validateUserOp_69":{"entryPoint":916,"id":69,"parameterSlots":3,"returnSlots":1},"@withdrawDepositTo_4775":{"entryPoint":1704,"id":4775,"parameterSlots":2,"returnSlots":0},"abi_decode_array_address_dyn_calldata":{"entryPoint":4335,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_address":{"entryPoint":4761,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_payablet_uint256":{"entryPoint":4566,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256t_bytes_calldata_ptr":{"entryPoint":4608,"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":4407,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_bytes32":{"entryPoint":4246,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32t_address":{"entryPoint":4289,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes4":{"entryPoint":4128,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptrt_bytes32t_uint256":{"entryPoint":4167,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":4924,"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":4886,"id":null,"parameterSlots":4,"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_$3566__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":4819,"id":null,"parameterSlots":2,"returnSlots":2},"checked_sub_t_uint256":{"entryPoint":4788,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x21":{"entryPoint":4947,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":4741,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":4269,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:9320:125","nodeType":"YulBlock","src":"0:9320:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"83:217:125","nodeType":"YulBlock","src":"83:217:125","statements":[{"body":{"nativeSrc":"129:16:125","nodeType":"YulBlock","src":"129:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:125","nodeType":"YulLiteral","src":"138:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:125","nodeType":"YulLiteral","src":"141:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:125","nodeType":"YulIdentifier","src":"131:6:125"},"nativeSrc":"131:12:125","nodeType":"YulFunctionCall","src":"131:12:125"},"nativeSrc":"131:12:125","nodeType":"YulExpressionStatement","src":"131:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:125","nodeType":"YulIdentifier","src":"104:7:125"},{"name":"headStart","nativeSrc":"113:9:125","nodeType":"YulIdentifier","src":"113:9:125"}],"functionName":{"name":"sub","nativeSrc":"100:3:125","nodeType":"YulIdentifier","src":"100:3:125"},"nativeSrc":"100:23:125","nodeType":"YulFunctionCall","src":"100:23:125"},{"kind":"number","nativeSrc":"125:2:125","nodeType":"YulLiteral","src":"125:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:125","nodeType":"YulIdentifier","src":"96:3:125"},"nativeSrc":"96:32:125","nodeType":"YulFunctionCall","src":"96:32:125"},"nativeSrc":"93:52:125","nodeType":"YulIf","src":"93:52:125"},{"nativeSrc":"154:36:125","nodeType":"YulVariableDeclaration","src":"154:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:125","nodeType":"YulIdentifier","src":"180:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:125","nodeType":"YulIdentifier","src":"167:12:125"},"nativeSrc":"167:23:125","nodeType":"YulFunctionCall","src":"167:23:125"},"variables":[{"name":"value","nativeSrc":"158:5:125","nodeType":"YulTypedName","src":"158:5:125","type":""}]},{"body":{"nativeSrc":"254:16:125","nodeType":"YulBlock","src":"254:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:125","nodeType":"YulLiteral","src":"263:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:125","nodeType":"YulLiteral","src":"266:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:125","nodeType":"YulIdentifier","src":"256:6:125"},"nativeSrc":"256:12:125","nodeType":"YulFunctionCall","src":"256:12:125"},"nativeSrc":"256:12:125","nodeType":"YulExpressionStatement","src":"256:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:125","nodeType":"YulIdentifier","src":"212:5:125"},{"arguments":[{"name":"value","nativeSrc":"223:5:125","nodeType":"YulIdentifier","src":"223:5:125"},{"arguments":[{"kind":"number","nativeSrc":"234:3:125","nodeType":"YulLiteral","src":"234:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:125","nodeType":"YulLiteral","src":"239:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:125","nodeType":"YulIdentifier","src":"230:3:125"},"nativeSrc":"230:20:125","nodeType":"YulFunctionCall","src":"230:20:125"}],"functionName":{"name":"and","nativeSrc":"219:3:125","nodeType":"YulIdentifier","src":"219:3:125"},"nativeSrc":"219:32:125","nodeType":"YulFunctionCall","src":"219:32:125"}],"functionName":{"name":"eq","nativeSrc":"209:2:125","nodeType":"YulIdentifier","src":"209:2:125"},"nativeSrc":"209:43:125","nodeType":"YulFunctionCall","src":"209:43:125"}],"functionName":{"name":"iszero","nativeSrc":"202:6:125","nodeType":"YulIdentifier","src":"202:6:125"},"nativeSrc":"202:51:125","nodeType":"YulFunctionCall","src":"202:51:125"},"nativeSrc":"199:71:125","nodeType":"YulIf","src":"199:71:125"},{"nativeSrc":"279:15:125","nodeType":"YulAssignment","src":"279:15:125","value":{"name":"value","nativeSrc":"289:5:125","nodeType":"YulIdentifier","src":"289:5:125"},"variableNames":[{"name":"value0","nativeSrc":"279:6:125","nodeType":"YulIdentifier","src":"279:6:125"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:125","nodeType":"YulTypedName","src":"49:9:125","type":""},{"name":"dataEnd","nativeSrc":"60:7:125","nodeType":"YulTypedName","src":"60:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:125","nodeType":"YulTypedName","src":"72:6:125","type":""}],"src":"14:286:125"},{"body":{"nativeSrc":"400:92:125","nodeType":"YulBlock","src":"400:92:125","statements":[{"nativeSrc":"410:26:125","nodeType":"YulAssignment","src":"410:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:125","nodeType":"YulIdentifier","src":"422:9:125"},{"kind":"number","nativeSrc":"433:2:125","nodeType":"YulLiteral","src":"433:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:125","nodeType":"YulIdentifier","src":"418:3:125"},"nativeSrc":"418:18:125","nodeType":"YulFunctionCall","src":"418:18:125"},"variableNames":[{"name":"tail","nativeSrc":"410:4:125","nodeType":"YulIdentifier","src":"410:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:125","nodeType":"YulIdentifier","src":"452:9:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:125","nodeType":"YulIdentifier","src":"477:6:125"}],"functionName":{"name":"iszero","nativeSrc":"470:6:125","nodeType":"YulIdentifier","src":"470:6:125"},"nativeSrc":"470:14:125","nodeType":"YulFunctionCall","src":"470:14:125"}],"functionName":{"name":"iszero","nativeSrc":"463:6:125","nodeType":"YulIdentifier","src":"463:6:125"},"nativeSrc":"463:22:125","nodeType":"YulFunctionCall","src":"463:22:125"}],"functionName":{"name":"mstore","nativeSrc":"445:6:125","nodeType":"YulIdentifier","src":"445:6:125"},"nativeSrc":"445:41:125","nodeType":"YulFunctionCall","src":"445:41:125"},"nativeSrc":"445:41:125","nodeType":"YulExpressionStatement","src":"445:41:125"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:125","nodeType":"YulTypedName","src":"369:9:125","type":""},{"name":"value0","nativeSrc":"380:6:125","nodeType":"YulTypedName","src":"380:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:125","nodeType":"YulTypedName","src":"391:4:125","type":""}],"src":"305:187:125"},{"body":{"nativeSrc":"598:76:125","nodeType":"YulBlock","src":"598:76:125","statements":[{"nativeSrc":"608:26:125","nodeType":"YulAssignment","src":"608:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"620:9:125","nodeType":"YulIdentifier","src":"620:9:125"},{"kind":"number","nativeSrc":"631:2:125","nodeType":"YulLiteral","src":"631:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"616:3:125","nodeType":"YulIdentifier","src":"616:3:125"},"nativeSrc":"616:18:125","nodeType":"YulFunctionCall","src":"616:18:125"},"variableNames":[{"name":"tail","nativeSrc":"608:4:125","nodeType":"YulIdentifier","src":"608:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"650:9:125","nodeType":"YulIdentifier","src":"650:9:125"},{"name":"value0","nativeSrc":"661:6:125","nodeType":"YulIdentifier","src":"661:6:125"}],"functionName":{"name":"mstore","nativeSrc":"643:6:125","nodeType":"YulIdentifier","src":"643:6:125"},"nativeSrc":"643:25:125","nodeType":"YulFunctionCall","src":"643:25:125"},"nativeSrc":"643:25:125","nodeType":"YulExpressionStatement","src":"643:25:125"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"497:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"567:9:125","nodeType":"YulTypedName","src":"567:9:125","type":""},{"name":"value0","nativeSrc":"578:6:125","nodeType":"YulTypedName","src":"578:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"589:4:125","nodeType":"YulTypedName","src":"589:4:125","type":""}],"src":"497:177:125"},{"body":{"nativeSrc":"822:490:125","nodeType":"YulBlock","src":"822:490:125","statements":[{"body":{"nativeSrc":"868:16:125","nodeType":"YulBlock","src":"868:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"877:1:125","nodeType":"YulLiteral","src":"877:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"880:1:125","nodeType":"YulLiteral","src":"880:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"870:6:125","nodeType":"YulIdentifier","src":"870:6:125"},"nativeSrc":"870:12:125","nodeType":"YulFunctionCall","src":"870:12:125"},"nativeSrc":"870:12:125","nodeType":"YulExpressionStatement","src":"870:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"843:7:125","nodeType":"YulIdentifier","src":"843:7:125"},{"name":"headStart","nativeSrc":"852:9:125","nodeType":"YulIdentifier","src":"852:9:125"}],"functionName":{"name":"sub","nativeSrc":"839:3:125","nodeType":"YulIdentifier","src":"839:3:125"},"nativeSrc":"839:23:125","nodeType":"YulFunctionCall","src":"839:23:125"},{"kind":"number","nativeSrc":"864:2:125","nodeType":"YulLiteral","src":"864:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"835:3:125","nodeType":"YulIdentifier","src":"835:3:125"},"nativeSrc":"835:32:125","nodeType":"YulFunctionCall","src":"835:32:125"},"nativeSrc":"832:52:125","nodeType":"YulIf","src":"832:52:125"},{"nativeSrc":"893:37:125","nodeType":"YulVariableDeclaration","src":"893:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"920:9:125","nodeType":"YulIdentifier","src":"920:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"907:12:125","nodeType":"YulIdentifier","src":"907:12:125"},"nativeSrc":"907:23:125","nodeType":"YulFunctionCall","src":"907:23:125"},"variables":[{"name":"offset","nativeSrc":"897:6:125","nodeType":"YulTypedName","src":"897:6:125","type":""}]},{"body":{"nativeSrc":"973:16:125","nodeType":"YulBlock","src":"973:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"982:1:125","nodeType":"YulLiteral","src":"982:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"985:1:125","nodeType":"YulLiteral","src":"985:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"975:6:125","nodeType":"YulIdentifier","src":"975:6:125"},"nativeSrc":"975:12:125","nodeType":"YulFunctionCall","src":"975:12:125"},"nativeSrc":"975:12:125","nodeType":"YulExpressionStatement","src":"975:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"945:6:125","nodeType":"YulIdentifier","src":"945:6:125"},{"kind":"number","nativeSrc":"953:18:125","nodeType":"YulLiteral","src":"953:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"942:2:125","nodeType":"YulIdentifier","src":"942:2:125"},"nativeSrc":"942:30:125","nodeType":"YulFunctionCall","src":"942:30:125"},"nativeSrc":"939:50:125","nodeType":"YulIf","src":"939:50:125"},{"nativeSrc":"998:32:125","nodeType":"YulVariableDeclaration","src":"998:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1012:9:125","nodeType":"YulIdentifier","src":"1012:9:125"},{"name":"offset","nativeSrc":"1023:6:125","nodeType":"YulIdentifier","src":"1023:6:125"}],"functionName":{"name":"add","nativeSrc":"1008:3:125","nodeType":"YulIdentifier","src":"1008:3:125"},"nativeSrc":"1008:22:125","nodeType":"YulFunctionCall","src":"1008:22:125"},"variables":[{"name":"_1","nativeSrc":"1002:2:125","nodeType":"YulTypedName","src":"1002:2:125","type":""}]},{"body":{"nativeSrc":"1069:16:125","nodeType":"YulBlock","src":"1069:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1078:1:125","nodeType":"YulLiteral","src":"1078:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1081:1:125","nodeType":"YulLiteral","src":"1081:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1071:6:125","nodeType":"YulIdentifier","src":"1071:6:125"},"nativeSrc":"1071:12:125","nodeType":"YulFunctionCall","src":"1071:12:125"},"nativeSrc":"1071:12:125","nodeType":"YulExpressionStatement","src":"1071:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1050:7:125","nodeType":"YulIdentifier","src":"1050:7:125"},{"name":"_1","nativeSrc":"1059:2:125","nodeType":"YulIdentifier","src":"1059:2:125"}],"functionName":{"name":"sub","nativeSrc":"1046:3:125","nodeType":"YulIdentifier","src":"1046:3:125"},"nativeSrc":"1046:16:125","nodeType":"YulFunctionCall","src":"1046:16:125"},{"kind":"number","nativeSrc":"1064:3:125","nodeType":"YulLiteral","src":"1064:3:125","type":"","value":"288"}],"functionName":{"name":"slt","nativeSrc":"1042:3:125","nodeType":"YulIdentifier","src":"1042:3:125"},"nativeSrc":"1042:26:125","nodeType":"YulFunctionCall","src":"1042:26:125"},"nativeSrc":"1039:46:125","nodeType":"YulIf","src":"1039:46:125"},{"nativeSrc":"1094:12:125","nodeType":"YulAssignment","src":"1094:12:125","value":{"name":"_1","nativeSrc":"1104:2:125","nodeType":"YulIdentifier","src":"1104:2:125"},"variableNames":[{"name":"value0","nativeSrc":"1094:6:125","nodeType":"YulIdentifier","src":"1094:6:125"}]},{"nativeSrc":"1115:14:125","nodeType":"YulVariableDeclaration","src":"1115:14:125","value":{"kind":"number","nativeSrc":"1128:1:125","nodeType":"YulLiteral","src":"1128:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1119:5:125","nodeType":"YulTypedName","src":"1119:5:125","type":""}]},{"nativeSrc":"1138:41:125","nodeType":"YulAssignment","src":"1138:41:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1164:9:125","nodeType":"YulIdentifier","src":"1164:9:125"},{"kind":"number","nativeSrc":"1175:2:125","nodeType":"YulLiteral","src":"1175:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1160:3:125","nodeType":"YulIdentifier","src":"1160:3:125"},"nativeSrc":"1160:18:125","nodeType":"YulFunctionCall","src":"1160:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"1147:12:125","nodeType":"YulIdentifier","src":"1147:12:125"},"nativeSrc":"1147:32:125","nodeType":"YulFunctionCall","src":"1147:32:125"},"variableNames":[{"name":"value","nativeSrc":"1138:5:125","nodeType":"YulIdentifier","src":"1138:5:125"}]},{"nativeSrc":"1188:15:125","nodeType":"YulAssignment","src":"1188:15:125","value":{"name":"value","nativeSrc":"1198:5:125","nodeType":"YulIdentifier","src":"1198:5:125"},"variableNames":[{"name":"value1","nativeSrc":"1188:6:125","nodeType":"YulIdentifier","src":"1188:6:125"}]},{"nativeSrc":"1212:16:125","nodeType":"YulVariableDeclaration","src":"1212:16:125","value":{"kind":"number","nativeSrc":"1227:1:125","nodeType":"YulLiteral","src":"1227:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"1216:7:125","nodeType":"YulTypedName","src":"1216:7:125","type":""}]},{"nativeSrc":"1237:43:125","nodeType":"YulAssignment","src":"1237:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1265:9:125","nodeType":"YulIdentifier","src":"1265:9:125"},{"kind":"number","nativeSrc":"1276:2:125","nodeType":"YulLiteral","src":"1276:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1261:3:125","nodeType":"YulIdentifier","src":"1261:3:125"},"nativeSrc":"1261:18:125","nodeType":"YulFunctionCall","src":"1261:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"1248:12:125","nodeType":"YulIdentifier","src":"1248:12:125"},"nativeSrc":"1248:32:125","nodeType":"YulFunctionCall","src":"1248:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"1237:7:125","nodeType":"YulIdentifier","src":"1237:7:125"}]},{"nativeSrc":"1289:17:125","nodeType":"YulAssignment","src":"1289:17:125","value":{"name":"value_1","nativeSrc":"1299:7:125","nodeType":"YulIdentifier","src":"1299:7:125"},"variableNames":[{"name":"value2","nativeSrc":"1289:6:125","nodeType":"YulIdentifier","src":"1289:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PackedUserOperation_$3748_calldata_ptrt_bytes32t_uint256","nativeSrc":"679:633:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"772:9:125","nodeType":"YulTypedName","src":"772:9:125","type":""},{"name":"dataEnd","nativeSrc":"783:7:125","nodeType":"YulTypedName","src":"783:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"795:6:125","nodeType":"YulTypedName","src":"795:6:125","type":""},{"name":"value1","nativeSrc":"803:6:125","nodeType":"YulTypedName","src":"803:6:125","type":""},{"name":"value2","nativeSrc":"811:6:125","nodeType":"YulTypedName","src":"811:6:125","type":""}],"src":"679:633:125"},{"body":{"nativeSrc":"1418:76:125","nodeType":"YulBlock","src":"1418:76:125","statements":[{"nativeSrc":"1428:26:125","nodeType":"YulAssignment","src":"1428:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1440:9:125","nodeType":"YulIdentifier","src":"1440:9:125"},{"kind":"number","nativeSrc":"1451:2:125","nodeType":"YulLiteral","src":"1451:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1436:3:125","nodeType":"YulIdentifier","src":"1436:3:125"},"nativeSrc":"1436:18:125","nodeType":"YulFunctionCall","src":"1436:18:125"},"variableNames":[{"name":"tail","nativeSrc":"1428:4:125","nodeType":"YulIdentifier","src":"1428:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1470:9:125","nodeType":"YulIdentifier","src":"1470:9:125"},{"name":"value0","nativeSrc":"1481:6:125","nodeType":"YulIdentifier","src":"1481:6:125"}],"functionName":{"name":"mstore","nativeSrc":"1463:6:125","nodeType":"YulIdentifier","src":"1463:6:125"},"nativeSrc":"1463:25:125","nodeType":"YulFunctionCall","src":"1463:25:125"},"nativeSrc":"1463:25:125","nodeType":"YulExpressionStatement","src":"1463:25:125"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"1317:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1387:9:125","nodeType":"YulTypedName","src":"1387:9:125","type":""},{"name":"value0","nativeSrc":"1398:6:125","nodeType":"YulTypedName","src":"1398:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1409:4:125","nodeType":"YulTypedName","src":"1409:4:125","type":""}],"src":"1317:177:125"},{"body":{"nativeSrc":"1569:156:125","nodeType":"YulBlock","src":"1569:156:125","statements":[{"body":{"nativeSrc":"1615:16:125","nodeType":"YulBlock","src":"1615:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1624:1:125","nodeType":"YulLiteral","src":"1624:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1627:1:125","nodeType":"YulLiteral","src":"1627:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1617:6:125","nodeType":"YulIdentifier","src":"1617:6:125"},"nativeSrc":"1617:12:125","nodeType":"YulFunctionCall","src":"1617:12:125"},"nativeSrc":"1617:12:125","nodeType":"YulExpressionStatement","src":"1617:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1590:7:125","nodeType":"YulIdentifier","src":"1590:7:125"},{"name":"headStart","nativeSrc":"1599:9:125","nodeType":"YulIdentifier","src":"1599:9:125"}],"functionName":{"name":"sub","nativeSrc":"1586:3:125","nodeType":"YulIdentifier","src":"1586:3:125"},"nativeSrc":"1586:23:125","nodeType":"YulFunctionCall","src":"1586:23:125"},{"kind":"number","nativeSrc":"1611:2:125","nodeType":"YulLiteral","src":"1611:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1582:3:125","nodeType":"YulIdentifier","src":"1582:3:125"},"nativeSrc":"1582:32:125","nodeType":"YulFunctionCall","src":"1582:32:125"},"nativeSrc":"1579:52:125","nodeType":"YulIf","src":"1579:52:125"},{"nativeSrc":"1640:14:125","nodeType":"YulVariableDeclaration","src":"1640:14:125","value":{"kind":"number","nativeSrc":"1653:1:125","nodeType":"YulLiteral","src":"1653:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1644:5:125","nodeType":"YulTypedName","src":"1644:5:125","type":""}]},{"nativeSrc":"1663:32:125","nodeType":"YulAssignment","src":"1663:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1685:9:125","nodeType":"YulIdentifier","src":"1685:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"1672:12:125","nodeType":"YulIdentifier","src":"1672:12:125"},"nativeSrc":"1672:23:125","nodeType":"YulFunctionCall","src":"1672:23:125"},"variableNames":[{"name":"value","nativeSrc":"1663:5:125","nodeType":"YulIdentifier","src":"1663:5:125"}]},{"nativeSrc":"1704:15:125","nodeType":"YulAssignment","src":"1704:15:125","value":{"name":"value","nativeSrc":"1714:5:125","nodeType":"YulIdentifier","src":"1714:5:125"},"variableNames":[{"name":"value0","nativeSrc":"1704:6:125","nodeType":"YulIdentifier","src":"1704:6:125"}]}]},"name":"abi_decode_tuple_t_bytes32","nativeSrc":"1499:226:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1535:9:125","nodeType":"YulTypedName","src":"1535:9:125","type":""},{"name":"dataEnd","nativeSrc":"1546:7:125","nodeType":"YulTypedName","src":"1546:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1558:6:125","nodeType":"YulTypedName","src":"1558:6:125","type":""}],"src":"1499:226:125"},{"body":{"nativeSrc":"1775:86:125","nodeType":"YulBlock","src":"1775:86:125","statements":[{"body":{"nativeSrc":"1839:16:125","nodeType":"YulBlock","src":"1839:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1848:1:125","nodeType":"YulLiteral","src":"1848:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1851:1:125","nodeType":"YulLiteral","src":"1851:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1841:6:125","nodeType":"YulIdentifier","src":"1841:6:125"},"nativeSrc":"1841:12:125","nodeType":"YulFunctionCall","src":"1841:12:125"},"nativeSrc":"1841:12:125","nodeType":"YulExpressionStatement","src":"1841:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1798:5:125","nodeType":"YulIdentifier","src":"1798:5:125"},{"arguments":[{"name":"value","nativeSrc":"1809:5:125","nodeType":"YulIdentifier","src":"1809:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1824:3:125","nodeType":"YulLiteral","src":"1824:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"1829:1:125","nodeType":"YulLiteral","src":"1829:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1820:3:125","nodeType":"YulIdentifier","src":"1820:3:125"},"nativeSrc":"1820:11:125","nodeType":"YulFunctionCall","src":"1820:11:125"},{"kind":"number","nativeSrc":"1833:1:125","nodeType":"YulLiteral","src":"1833:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1816:3:125","nodeType":"YulIdentifier","src":"1816:3:125"},"nativeSrc":"1816:19:125","nodeType":"YulFunctionCall","src":"1816:19:125"}],"functionName":{"name":"and","nativeSrc":"1805:3:125","nodeType":"YulIdentifier","src":"1805:3:125"},"nativeSrc":"1805:31:125","nodeType":"YulFunctionCall","src":"1805:31:125"}],"functionName":{"name":"eq","nativeSrc":"1795:2:125","nodeType":"YulIdentifier","src":"1795:2:125"},"nativeSrc":"1795:42:125","nodeType":"YulFunctionCall","src":"1795:42:125"}],"functionName":{"name":"iszero","nativeSrc":"1788:6:125","nodeType":"YulIdentifier","src":"1788:6:125"},"nativeSrc":"1788:50:125","nodeType":"YulFunctionCall","src":"1788:50:125"},"nativeSrc":"1785:70:125","nodeType":"YulIf","src":"1785:70:125"}]},"name":"validator_revert_address","nativeSrc":"1730:131:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"1764:5:125","nodeType":"YulTypedName","src":"1764:5:125","type":""}],"src":"1730:131:125"},{"body":{"nativeSrc":"1953:280:125","nodeType":"YulBlock","src":"1953:280:125","statements":[{"body":{"nativeSrc":"1999:16:125","nodeType":"YulBlock","src":"1999:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2008:1:125","nodeType":"YulLiteral","src":"2008:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2011:1:125","nodeType":"YulLiteral","src":"2011:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2001:6:125","nodeType":"YulIdentifier","src":"2001:6:125"},"nativeSrc":"2001:12:125","nodeType":"YulFunctionCall","src":"2001:12:125"},"nativeSrc":"2001:12:125","nodeType":"YulExpressionStatement","src":"2001:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1974:7:125","nodeType":"YulIdentifier","src":"1974:7:125"},{"name":"headStart","nativeSrc":"1983:9:125","nodeType":"YulIdentifier","src":"1983:9:125"}],"functionName":{"name":"sub","nativeSrc":"1970:3:125","nodeType":"YulIdentifier","src":"1970:3:125"},"nativeSrc":"1970:23:125","nodeType":"YulFunctionCall","src":"1970:23:125"},{"kind":"number","nativeSrc":"1995:2:125","nodeType":"YulLiteral","src":"1995:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1966:3:125","nodeType":"YulIdentifier","src":"1966:3:125"},"nativeSrc":"1966:32:125","nodeType":"YulFunctionCall","src":"1966:32:125"},"nativeSrc":"1963:52:125","nodeType":"YulIf","src":"1963:52:125"},{"nativeSrc":"2024:14:125","nodeType":"YulVariableDeclaration","src":"2024:14:125","value":{"kind":"number","nativeSrc":"2037:1:125","nodeType":"YulLiteral","src":"2037:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2028:5:125","nodeType":"YulTypedName","src":"2028:5:125","type":""}]},{"nativeSrc":"2047:32:125","nodeType":"YulAssignment","src":"2047:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2069:9:125","nodeType":"YulIdentifier","src":"2069:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"2056:12:125","nodeType":"YulIdentifier","src":"2056:12:125"},"nativeSrc":"2056:23:125","nodeType":"YulFunctionCall","src":"2056:23:125"},"variableNames":[{"name":"value","nativeSrc":"2047:5:125","nodeType":"YulIdentifier","src":"2047:5:125"}]},{"nativeSrc":"2088:15:125","nodeType":"YulAssignment","src":"2088:15:125","value":{"name":"value","nativeSrc":"2098:5:125","nodeType":"YulIdentifier","src":"2098:5:125"},"variableNames":[{"name":"value0","nativeSrc":"2088:6:125","nodeType":"YulIdentifier","src":"2088:6:125"}]},{"nativeSrc":"2112:47:125","nodeType":"YulVariableDeclaration","src":"2112:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2144:9:125","nodeType":"YulIdentifier","src":"2144:9:125"},{"kind":"number","nativeSrc":"2155:2:125","nodeType":"YulLiteral","src":"2155:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2140:3:125","nodeType":"YulIdentifier","src":"2140:3:125"},"nativeSrc":"2140:18:125","nodeType":"YulFunctionCall","src":"2140:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"2127:12:125","nodeType":"YulIdentifier","src":"2127:12:125"},"nativeSrc":"2127:32:125","nodeType":"YulFunctionCall","src":"2127:32:125"},"variables":[{"name":"value_1","nativeSrc":"2116:7:125","nodeType":"YulTypedName","src":"2116:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"2193:7:125","nodeType":"YulIdentifier","src":"2193:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2168:24:125","nodeType":"YulIdentifier","src":"2168:24:125"},"nativeSrc":"2168:33:125","nodeType":"YulFunctionCall","src":"2168:33:125"},"nativeSrc":"2168:33:125","nodeType":"YulExpressionStatement","src":"2168:33:125"},{"nativeSrc":"2210:17:125","nodeType":"YulAssignment","src":"2210:17:125","value":{"name":"value_1","nativeSrc":"2220:7:125","nodeType":"YulIdentifier","src":"2220:7:125"},"variableNames":[{"name":"value1","nativeSrc":"2210:6:125","nodeType":"YulIdentifier","src":"2210:6:125"}]}]},"name":"abi_decode_tuple_t_bytes32t_address","nativeSrc":"1866:367:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1911:9:125","nodeType":"YulTypedName","src":"1911:9:125","type":""},{"name":"dataEnd","nativeSrc":"1922:7:125","nodeType":"YulTypedName","src":"1922:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1934:6:125","nodeType":"YulTypedName","src":"1934:6:125","type":""},{"name":"value1","nativeSrc":"1942:6:125","nodeType":"YulTypedName","src":"1942:6:125","type":""}],"src":"1866:367:125"},{"body":{"nativeSrc":"2322:283:125","nodeType":"YulBlock","src":"2322:283:125","statements":[{"body":{"nativeSrc":"2371:16:125","nodeType":"YulBlock","src":"2371:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2380:1:125","nodeType":"YulLiteral","src":"2380:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2383:1:125","nodeType":"YulLiteral","src":"2383:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2373:6:125","nodeType":"YulIdentifier","src":"2373:6:125"},"nativeSrc":"2373:12:125","nodeType":"YulFunctionCall","src":"2373:12:125"},"nativeSrc":"2373:12:125","nodeType":"YulExpressionStatement","src":"2373:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2350:6:125","nodeType":"YulIdentifier","src":"2350:6:125"},{"kind":"number","nativeSrc":"2358:4:125","nodeType":"YulLiteral","src":"2358:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2346:3:125","nodeType":"YulIdentifier","src":"2346:3:125"},"nativeSrc":"2346:17:125","nodeType":"YulFunctionCall","src":"2346:17:125"},{"name":"end","nativeSrc":"2365:3:125","nodeType":"YulIdentifier","src":"2365:3:125"}],"functionName":{"name":"slt","nativeSrc":"2342:3:125","nodeType":"YulIdentifier","src":"2342:3:125"},"nativeSrc":"2342:27:125","nodeType":"YulFunctionCall","src":"2342:27:125"}],"functionName":{"name":"iszero","nativeSrc":"2335:6:125","nodeType":"YulIdentifier","src":"2335:6:125"},"nativeSrc":"2335:35:125","nodeType":"YulFunctionCall","src":"2335:35:125"},"nativeSrc":"2332:55:125","nodeType":"YulIf","src":"2332:55:125"},{"nativeSrc":"2396:30:125","nodeType":"YulAssignment","src":"2396:30:125","value":{"arguments":[{"name":"offset","nativeSrc":"2419:6:125","nodeType":"YulIdentifier","src":"2419:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"2406:12:125","nodeType":"YulIdentifier","src":"2406:12:125"},"nativeSrc":"2406:20:125","nodeType":"YulFunctionCall","src":"2406:20:125"},"variableNames":[{"name":"length","nativeSrc":"2396:6:125","nodeType":"YulIdentifier","src":"2396:6:125"}]},{"body":{"nativeSrc":"2469:16:125","nodeType":"YulBlock","src":"2469:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2478:1:125","nodeType":"YulLiteral","src":"2478:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2481:1:125","nodeType":"YulLiteral","src":"2481:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2471:6:125","nodeType":"YulIdentifier","src":"2471:6:125"},"nativeSrc":"2471:12:125","nodeType":"YulFunctionCall","src":"2471:12:125"},"nativeSrc":"2471:12:125","nodeType":"YulExpressionStatement","src":"2471:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"2441:6:125","nodeType":"YulIdentifier","src":"2441:6:125"},{"kind":"number","nativeSrc":"2449:18:125","nodeType":"YulLiteral","src":"2449:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2438:2:125","nodeType":"YulIdentifier","src":"2438:2:125"},"nativeSrc":"2438:30:125","nodeType":"YulFunctionCall","src":"2438:30:125"},"nativeSrc":"2435:50:125","nodeType":"YulIf","src":"2435:50:125"},{"nativeSrc":"2494:29:125","nodeType":"YulAssignment","src":"2494:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"2510:6:125","nodeType":"YulIdentifier","src":"2510:6:125"},{"kind":"number","nativeSrc":"2518:4:125","nodeType":"YulLiteral","src":"2518:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2506:3:125","nodeType":"YulIdentifier","src":"2506:3:125"},"nativeSrc":"2506:17:125","nodeType":"YulFunctionCall","src":"2506:17:125"},"variableNames":[{"name":"arrayPos","nativeSrc":"2494:8:125","nodeType":"YulIdentifier","src":"2494:8:125"}]},{"body":{"nativeSrc":"2583:16:125","nodeType":"YulBlock","src":"2583:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2592:1:125","nodeType":"YulLiteral","src":"2592:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2595:1:125","nodeType":"YulLiteral","src":"2595:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2585:6:125","nodeType":"YulIdentifier","src":"2585:6:125"},"nativeSrc":"2585:12:125","nodeType":"YulFunctionCall","src":"2585:12:125"},"nativeSrc":"2585:12:125","nodeType":"YulExpressionStatement","src":"2585:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2546:6:125","nodeType":"YulIdentifier","src":"2546:6:125"},{"arguments":[{"kind":"number","nativeSrc":"2558:1:125","nodeType":"YulLiteral","src":"2558:1:125","type":"","value":"5"},{"name":"length","nativeSrc":"2561:6:125","nodeType":"YulIdentifier","src":"2561:6:125"}],"functionName":{"name":"shl","nativeSrc":"2554:3:125","nodeType":"YulIdentifier","src":"2554:3:125"},"nativeSrc":"2554:14:125","nodeType":"YulFunctionCall","src":"2554:14:125"}],"functionName":{"name":"add","nativeSrc":"2542:3:125","nodeType":"YulIdentifier","src":"2542:3:125"},"nativeSrc":"2542:27:125","nodeType":"YulFunctionCall","src":"2542:27:125"},{"kind":"number","nativeSrc":"2571:4:125","nodeType":"YulLiteral","src":"2571:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2538:3:125","nodeType":"YulIdentifier","src":"2538:3:125"},"nativeSrc":"2538:38:125","nodeType":"YulFunctionCall","src":"2538:38:125"},{"name":"end","nativeSrc":"2578:3:125","nodeType":"YulIdentifier","src":"2578:3:125"}],"functionName":{"name":"gt","nativeSrc":"2535:2:125","nodeType":"YulIdentifier","src":"2535:2:125"},"nativeSrc":"2535:47:125","nodeType":"YulFunctionCall","src":"2535:47:125"},"nativeSrc":"2532:67:125","nodeType":"YulIf","src":"2532:67:125"}]},"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"2238:367:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"2285:6:125","nodeType":"YulTypedName","src":"2285:6:125","type":""},{"name":"end","nativeSrc":"2293:3:125","nodeType":"YulTypedName","src":"2293:3:125","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"2301:8:125","nodeType":"YulTypedName","src":"2301:8:125","type":""},{"name":"length","nativeSrc":"2311:6:125","nodeType":"YulTypedName","src":"2311:6:125","type":""}],"src":"2238:367:125"},{"body":{"nativeSrc":"2830:890:125","nodeType":"YulBlock","src":"2830:890:125","statements":[{"body":{"nativeSrc":"2876:16:125","nodeType":"YulBlock","src":"2876:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2885:1:125","nodeType":"YulLiteral","src":"2885:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2888:1:125","nodeType":"YulLiteral","src":"2888:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2878:6:125","nodeType":"YulIdentifier","src":"2878:6:125"},"nativeSrc":"2878:12:125","nodeType":"YulFunctionCall","src":"2878:12:125"},"nativeSrc":"2878:12:125","nodeType":"YulExpressionStatement","src":"2878:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2851:7:125","nodeType":"YulIdentifier","src":"2851:7:125"},{"name":"headStart","nativeSrc":"2860:9:125","nodeType":"YulIdentifier","src":"2860:9:125"}],"functionName":{"name":"sub","nativeSrc":"2847:3:125","nodeType":"YulIdentifier","src":"2847:3:125"},"nativeSrc":"2847:23:125","nodeType":"YulFunctionCall","src":"2847:23:125"},{"kind":"number","nativeSrc":"2872:2:125","nodeType":"YulLiteral","src":"2872:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2843:3:125","nodeType":"YulIdentifier","src":"2843:3:125"},"nativeSrc":"2843:32:125","nodeType":"YulFunctionCall","src":"2843:32:125"},"nativeSrc":"2840:52:125","nodeType":"YulIf","src":"2840:52:125"},{"nativeSrc":"2901:37:125","nodeType":"YulVariableDeclaration","src":"2901:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2928:9:125","nodeType":"YulIdentifier","src":"2928:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"2915:12:125","nodeType":"YulIdentifier","src":"2915:12:125"},"nativeSrc":"2915:23:125","nodeType":"YulFunctionCall","src":"2915:23:125"},"variables":[{"name":"offset","nativeSrc":"2905:6:125","nodeType":"YulTypedName","src":"2905:6:125","type":""}]},{"body":{"nativeSrc":"2981:16:125","nodeType":"YulBlock","src":"2981:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2990:1:125","nodeType":"YulLiteral","src":"2990:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2993:1:125","nodeType":"YulLiteral","src":"2993:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2983:6:125","nodeType":"YulIdentifier","src":"2983:6:125"},"nativeSrc":"2983:12:125","nodeType":"YulFunctionCall","src":"2983:12:125"},"nativeSrc":"2983:12:125","nodeType":"YulExpressionStatement","src":"2983:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"2953:6:125","nodeType":"YulIdentifier","src":"2953:6:125"},{"kind":"number","nativeSrc":"2961:18:125","nodeType":"YulLiteral","src":"2961:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2950:2:125","nodeType":"YulIdentifier","src":"2950:2:125"},"nativeSrc":"2950:30:125","nodeType":"YulFunctionCall","src":"2950:30:125"},"nativeSrc":"2947:50:125","nodeType":"YulIf","src":"2947:50:125"},{"nativeSrc":"3006:96:125","nodeType":"YulVariableDeclaration","src":"3006:96:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3074:9:125","nodeType":"YulIdentifier","src":"3074:9:125"},{"name":"offset","nativeSrc":"3085:6:125","nodeType":"YulIdentifier","src":"3085:6:125"}],"functionName":{"name":"add","nativeSrc":"3070:3:125","nodeType":"YulIdentifier","src":"3070:3:125"},"nativeSrc":"3070:22:125","nodeType":"YulFunctionCall","src":"3070:22:125"},{"name":"dataEnd","nativeSrc":"3094:7:125","nodeType":"YulIdentifier","src":"3094:7:125"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"3032:37:125","nodeType":"YulIdentifier","src":"3032:37:125"},"nativeSrc":"3032:70:125","nodeType":"YulFunctionCall","src":"3032:70:125"},"variables":[{"name":"value0_1","nativeSrc":"3010:8:125","nodeType":"YulTypedName","src":"3010:8:125","type":""},{"name":"value1_1","nativeSrc":"3020:8:125","nodeType":"YulTypedName","src":"3020:8:125","type":""}]},{"nativeSrc":"3111:18:125","nodeType":"YulAssignment","src":"3111:18:125","value":{"name":"value0_1","nativeSrc":"3121:8:125","nodeType":"YulIdentifier","src":"3121:8:125"},"variableNames":[{"name":"value0","nativeSrc":"3111:6:125","nodeType":"YulIdentifier","src":"3111:6:125"}]},{"nativeSrc":"3138:18:125","nodeType":"YulAssignment","src":"3138:18:125","value":{"name":"value1_1","nativeSrc":"3148:8:125","nodeType":"YulIdentifier","src":"3148:8:125"},"variableNames":[{"name":"value1","nativeSrc":"3138:6:125","nodeType":"YulIdentifier","src":"3138:6:125"}]},{"nativeSrc":"3165:48:125","nodeType":"YulVariableDeclaration","src":"3165:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3198:9:125","nodeType":"YulIdentifier","src":"3198:9:125"},{"kind":"number","nativeSrc":"3209:2:125","nodeType":"YulLiteral","src":"3209:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3194:3:125","nodeType":"YulIdentifier","src":"3194:3:125"},"nativeSrc":"3194:18:125","nodeType":"YulFunctionCall","src":"3194:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3181:12:125","nodeType":"YulIdentifier","src":"3181:12:125"},"nativeSrc":"3181:32:125","nodeType":"YulFunctionCall","src":"3181:32:125"},"variables":[{"name":"offset_1","nativeSrc":"3169:8:125","nodeType":"YulTypedName","src":"3169:8:125","type":""}]},{"body":{"nativeSrc":"3258:16:125","nodeType":"YulBlock","src":"3258:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3267:1:125","nodeType":"YulLiteral","src":"3267:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3270:1:125","nodeType":"YulLiteral","src":"3270:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3260:6:125","nodeType":"YulIdentifier","src":"3260:6:125"},"nativeSrc":"3260:12:125","nodeType":"YulFunctionCall","src":"3260:12:125"},"nativeSrc":"3260:12:125","nodeType":"YulExpressionStatement","src":"3260:12:125"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"3228:8:125","nodeType":"YulIdentifier","src":"3228:8:125"},{"kind":"number","nativeSrc":"3238:18:125","nodeType":"YulLiteral","src":"3238:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3225:2:125","nodeType":"YulIdentifier","src":"3225:2:125"},"nativeSrc":"3225:32:125","nodeType":"YulFunctionCall","src":"3225:32:125"},"nativeSrc":"3222:52:125","nodeType":"YulIf","src":"3222:52:125"},{"nativeSrc":"3283:98:125","nodeType":"YulVariableDeclaration","src":"3283:98:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3351:9:125","nodeType":"YulIdentifier","src":"3351:9:125"},{"name":"offset_1","nativeSrc":"3362:8:125","nodeType":"YulIdentifier","src":"3362:8:125"}],"functionName":{"name":"add","nativeSrc":"3347:3:125","nodeType":"YulIdentifier","src":"3347:3:125"},"nativeSrc":"3347:24:125","nodeType":"YulFunctionCall","src":"3347:24:125"},{"name":"dataEnd","nativeSrc":"3373:7:125","nodeType":"YulIdentifier","src":"3373:7:125"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"3309:37:125","nodeType":"YulIdentifier","src":"3309:37:125"},"nativeSrc":"3309:72:125","nodeType":"YulFunctionCall","src":"3309:72:125"},"variables":[{"name":"value2_1","nativeSrc":"3287:8:125","nodeType":"YulTypedName","src":"3287:8:125","type":""},{"name":"value3_1","nativeSrc":"3297:8:125","nodeType":"YulTypedName","src":"3297:8:125","type":""}]},{"nativeSrc":"3390:18:125","nodeType":"YulAssignment","src":"3390:18:125","value":{"name":"value2_1","nativeSrc":"3400:8:125","nodeType":"YulIdentifier","src":"3400:8:125"},"variableNames":[{"name":"value2","nativeSrc":"3390:6:125","nodeType":"YulIdentifier","src":"3390:6:125"}]},{"nativeSrc":"3417:18:125","nodeType":"YulAssignment","src":"3417:18:125","value":{"name":"value3_1","nativeSrc":"3427:8:125","nodeType":"YulIdentifier","src":"3427:8:125"},"variableNames":[{"name":"value3","nativeSrc":"3417:6:125","nodeType":"YulIdentifier","src":"3417:6:125"}]},{"nativeSrc":"3444:48:125","nodeType":"YulVariableDeclaration","src":"3444:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3477:9:125","nodeType":"YulIdentifier","src":"3477:9:125"},{"kind":"number","nativeSrc":"3488:2:125","nodeType":"YulLiteral","src":"3488:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3473:3:125","nodeType":"YulIdentifier","src":"3473:3:125"},"nativeSrc":"3473:18:125","nodeType":"YulFunctionCall","src":"3473:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3460:12:125","nodeType":"YulIdentifier","src":"3460:12:125"},"nativeSrc":"3460:32:125","nodeType":"YulFunctionCall","src":"3460:32:125"},"variables":[{"name":"offset_2","nativeSrc":"3448:8:125","nodeType":"YulTypedName","src":"3448:8:125","type":""}]},{"body":{"nativeSrc":"3537:16:125","nodeType":"YulBlock","src":"3537:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3546:1:125","nodeType":"YulLiteral","src":"3546:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3549:1:125","nodeType":"YulLiteral","src":"3549:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3539:6:125","nodeType":"YulIdentifier","src":"3539:6:125"},"nativeSrc":"3539:12:125","nodeType":"YulFunctionCall","src":"3539:12:125"},"nativeSrc":"3539:12:125","nodeType":"YulExpressionStatement","src":"3539:12:125"}]},"condition":{"arguments":[{"name":"offset_2","nativeSrc":"3507:8:125","nodeType":"YulIdentifier","src":"3507:8:125"},{"kind":"number","nativeSrc":"3517:18:125","nodeType":"YulLiteral","src":"3517:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3504:2:125","nodeType":"YulIdentifier","src":"3504:2:125"},"nativeSrc":"3504:32:125","nodeType":"YulFunctionCall","src":"3504:32:125"},"nativeSrc":"3501:52:125","nodeType":"YulIf","src":"3501:52:125"},{"nativeSrc":"3562:98:125","nodeType":"YulVariableDeclaration","src":"3562:98:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3630:9:125","nodeType":"YulIdentifier","src":"3630:9:125"},{"name":"offset_2","nativeSrc":"3641:8:125","nodeType":"YulIdentifier","src":"3641:8:125"}],"functionName":{"name":"add","nativeSrc":"3626:3:125","nodeType":"YulIdentifier","src":"3626:3:125"},"nativeSrc":"3626:24:125","nodeType":"YulFunctionCall","src":"3626:24:125"},{"name":"dataEnd","nativeSrc":"3652:7:125","nodeType":"YulIdentifier","src":"3652:7:125"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"3588:37:125","nodeType":"YulIdentifier","src":"3588:37:125"},"nativeSrc":"3588:72:125","nodeType":"YulFunctionCall","src":"3588:72:125"},"variables":[{"name":"value4_1","nativeSrc":"3566:8:125","nodeType":"YulTypedName","src":"3566:8:125","type":""},{"name":"value5_1","nativeSrc":"3576:8:125","nodeType":"YulTypedName","src":"3576:8:125","type":""}]},{"nativeSrc":"3669:18:125","nodeType":"YulAssignment","src":"3669:18:125","value":{"name":"value4_1","nativeSrc":"3679:8:125","nodeType":"YulIdentifier","src":"3679:8:125"},"variableNames":[{"name":"value4","nativeSrc":"3669:6:125","nodeType":"YulIdentifier","src":"3669:6:125"}]},{"nativeSrc":"3696:18:125","nodeType":"YulAssignment","src":"3696:18:125","value":{"name":"value5_1","nativeSrc":"3706:8:125","nodeType":"YulIdentifier","src":"3706:8:125"},"variableNames":[{"name":"value5","nativeSrc":"3696:6:125","nodeType":"YulIdentifier","src":"3696:6:125"}]}]},"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:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2756:9:125","nodeType":"YulTypedName","src":"2756:9:125","type":""},{"name":"dataEnd","nativeSrc":"2767:7:125","nodeType":"YulTypedName","src":"2767:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2779:6:125","nodeType":"YulTypedName","src":"2779:6:125","type":""},{"name":"value1","nativeSrc":"2787:6:125","nodeType":"YulTypedName","src":"2787:6:125","type":""},{"name":"value2","nativeSrc":"2795:6:125","nodeType":"YulTypedName","src":"2795:6:125","type":""},{"name":"value3","nativeSrc":"2803:6:125","nodeType":"YulTypedName","src":"2803:6:125","type":""},{"name":"value4","nativeSrc":"2811:6:125","nodeType":"YulTypedName","src":"2811:6:125","type":""},{"name":"value5","nativeSrc":"2819:6:125","nodeType":"YulTypedName","src":"2819:6:125","type":""}],"src":"2610:1110:125"},{"body":{"nativeSrc":"3820:280:125","nodeType":"YulBlock","src":"3820:280:125","statements":[{"body":{"nativeSrc":"3866:16:125","nodeType":"YulBlock","src":"3866:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3875:1:125","nodeType":"YulLiteral","src":"3875:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3878:1:125","nodeType":"YulLiteral","src":"3878:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3868:6:125","nodeType":"YulIdentifier","src":"3868:6:125"},"nativeSrc":"3868:12:125","nodeType":"YulFunctionCall","src":"3868:12:125"},"nativeSrc":"3868:12:125","nodeType":"YulExpressionStatement","src":"3868:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3841:7:125","nodeType":"YulIdentifier","src":"3841:7:125"},{"name":"headStart","nativeSrc":"3850:9:125","nodeType":"YulIdentifier","src":"3850:9:125"}],"functionName":{"name":"sub","nativeSrc":"3837:3:125","nodeType":"YulIdentifier","src":"3837:3:125"},"nativeSrc":"3837:23:125","nodeType":"YulFunctionCall","src":"3837:23:125"},{"kind":"number","nativeSrc":"3862:2:125","nodeType":"YulLiteral","src":"3862:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3833:3:125","nodeType":"YulIdentifier","src":"3833:3:125"},"nativeSrc":"3833:32:125","nodeType":"YulFunctionCall","src":"3833:32:125"},"nativeSrc":"3830:52:125","nodeType":"YulIf","src":"3830:52:125"},{"nativeSrc":"3891:36:125","nodeType":"YulVariableDeclaration","src":"3891:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3917:9:125","nodeType":"YulIdentifier","src":"3917:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"3904:12:125","nodeType":"YulIdentifier","src":"3904:12:125"},"nativeSrc":"3904:23:125","nodeType":"YulFunctionCall","src":"3904:23:125"},"variables":[{"name":"value","nativeSrc":"3895:5:125","nodeType":"YulTypedName","src":"3895:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3961:5:125","nodeType":"YulIdentifier","src":"3961:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3936:24:125","nodeType":"YulIdentifier","src":"3936:24:125"},"nativeSrc":"3936:31:125","nodeType":"YulFunctionCall","src":"3936:31:125"},"nativeSrc":"3936:31:125","nodeType":"YulExpressionStatement","src":"3936:31:125"},{"nativeSrc":"3976:15:125","nodeType":"YulAssignment","src":"3976:15:125","value":{"name":"value","nativeSrc":"3986:5:125","nodeType":"YulIdentifier","src":"3986:5:125"},"variableNames":[{"name":"value0","nativeSrc":"3976:6:125","nodeType":"YulIdentifier","src":"3976:6:125"}]},{"nativeSrc":"4000:16:125","nodeType":"YulVariableDeclaration","src":"4000:16:125","value":{"kind":"number","nativeSrc":"4015:1:125","nodeType":"YulLiteral","src":"4015:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"4004:7:125","nodeType":"YulTypedName","src":"4004:7:125","type":""}]},{"nativeSrc":"4025:43:125","nodeType":"YulAssignment","src":"4025:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4053:9:125","nodeType":"YulIdentifier","src":"4053:9:125"},{"kind":"number","nativeSrc":"4064:2:125","nodeType":"YulLiteral","src":"4064:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4049:3:125","nodeType":"YulIdentifier","src":"4049:3:125"},"nativeSrc":"4049:18:125","nodeType":"YulFunctionCall","src":"4049:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"4036:12:125","nodeType":"YulIdentifier","src":"4036:12:125"},"nativeSrc":"4036:32:125","nodeType":"YulFunctionCall","src":"4036:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"4025:7:125","nodeType":"YulIdentifier","src":"4025:7:125"}]},{"nativeSrc":"4077:17:125","nodeType":"YulAssignment","src":"4077:17:125","value":{"name":"value_1","nativeSrc":"4087:7:125","nodeType":"YulIdentifier","src":"4087:7:125"},"variableNames":[{"name":"value1","nativeSrc":"4077:6:125","nodeType":"YulIdentifier","src":"4077:6:125"}]}]},"name":"abi_decode_tuple_t_address_payablet_uint256","nativeSrc":"3725:375:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3778:9:125","nodeType":"YulTypedName","src":"3778:9:125","type":""},{"name":"dataEnd","nativeSrc":"3789:7:125","nodeType":"YulTypedName","src":"3789:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3801:6:125","nodeType":"YulTypedName","src":"3801:6:125","type":""},{"name":"value1","nativeSrc":"3809:6:125","nodeType":"YulTypedName","src":"3809:6:125","type":""}],"src":"3725:375:125"},{"body":{"nativeSrc":"4226:102:125","nodeType":"YulBlock","src":"4226:102:125","statements":[{"nativeSrc":"4236:26:125","nodeType":"YulAssignment","src":"4236:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4248:9:125","nodeType":"YulIdentifier","src":"4248:9:125"},{"kind":"number","nativeSrc":"4259:2:125","nodeType":"YulLiteral","src":"4259:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4244:3:125","nodeType":"YulIdentifier","src":"4244:3:125"},"nativeSrc":"4244:18:125","nodeType":"YulFunctionCall","src":"4244:18:125"},"variableNames":[{"name":"tail","nativeSrc":"4236:4:125","nodeType":"YulIdentifier","src":"4236:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4278:9:125","nodeType":"YulIdentifier","src":"4278:9:125"},{"arguments":[{"name":"value0","nativeSrc":"4293:6:125","nodeType":"YulIdentifier","src":"4293:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4309:3:125","nodeType":"YulLiteral","src":"4309:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"4314:1:125","nodeType":"YulLiteral","src":"4314:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4305:3:125","nodeType":"YulIdentifier","src":"4305:3:125"},"nativeSrc":"4305:11:125","nodeType":"YulFunctionCall","src":"4305:11:125"},{"kind":"number","nativeSrc":"4318:1:125","nodeType":"YulLiteral","src":"4318:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4301:3:125","nodeType":"YulIdentifier","src":"4301:3:125"},"nativeSrc":"4301:19:125","nodeType":"YulFunctionCall","src":"4301:19:125"}],"functionName":{"name":"and","nativeSrc":"4289:3:125","nodeType":"YulIdentifier","src":"4289:3:125"},"nativeSrc":"4289:32:125","nodeType":"YulFunctionCall","src":"4289:32:125"}],"functionName":{"name":"mstore","nativeSrc":"4271:6:125","nodeType":"YulIdentifier","src":"4271:6:125"},"nativeSrc":"4271:51:125","nodeType":"YulFunctionCall","src":"4271:51:125"},"nativeSrc":"4271:51:125","nodeType":"YulExpressionStatement","src":"4271:51:125"}]},"name":"abi_encode_tuple_t_contract$_IEntryPoint_$3566__to_t_address__fromStack_reversed","nativeSrc":"4105:223:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4195:9:125","nodeType":"YulTypedName","src":"4195:9:125","type":""},{"name":"value0","nativeSrc":"4206:6:125","nodeType":"YulTypedName","src":"4206:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4217:4:125","nodeType":"YulTypedName","src":"4217:4:125","type":""}],"src":"4105:223:125"},{"body":{"nativeSrc":"4456:718:125","nodeType":"YulBlock","src":"4456:718:125","statements":[{"body":{"nativeSrc":"4502:16:125","nodeType":"YulBlock","src":"4502:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4511:1:125","nodeType":"YulLiteral","src":"4511:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4514:1:125","nodeType":"YulLiteral","src":"4514:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4504:6:125","nodeType":"YulIdentifier","src":"4504:6:125"},"nativeSrc":"4504:12:125","nodeType":"YulFunctionCall","src":"4504:12:125"},"nativeSrc":"4504:12:125","nodeType":"YulExpressionStatement","src":"4504:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4477:7:125","nodeType":"YulIdentifier","src":"4477:7:125"},{"name":"headStart","nativeSrc":"4486:9:125","nodeType":"YulIdentifier","src":"4486:9:125"}],"functionName":{"name":"sub","nativeSrc":"4473:3:125","nodeType":"YulIdentifier","src":"4473:3:125"},"nativeSrc":"4473:23:125","nodeType":"YulFunctionCall","src":"4473:23:125"},{"kind":"number","nativeSrc":"4498:2:125","nodeType":"YulLiteral","src":"4498:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"4469:3:125","nodeType":"YulIdentifier","src":"4469:3:125"},"nativeSrc":"4469:32:125","nodeType":"YulFunctionCall","src":"4469:32:125"},"nativeSrc":"4466:52:125","nodeType":"YulIf","src":"4466:52:125"},{"nativeSrc":"4527:36:125","nodeType":"YulVariableDeclaration","src":"4527:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4553:9:125","nodeType":"YulIdentifier","src":"4553:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"4540:12:125","nodeType":"YulIdentifier","src":"4540:12:125"},"nativeSrc":"4540:23:125","nodeType":"YulFunctionCall","src":"4540:23:125"},"variables":[{"name":"value","nativeSrc":"4531:5:125","nodeType":"YulTypedName","src":"4531:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4597:5:125","nodeType":"YulIdentifier","src":"4597:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4572:24:125","nodeType":"YulIdentifier","src":"4572:24:125"},"nativeSrc":"4572:31:125","nodeType":"YulFunctionCall","src":"4572:31:125"},"nativeSrc":"4572:31:125","nodeType":"YulExpressionStatement","src":"4572:31:125"},{"nativeSrc":"4612:15:125","nodeType":"YulAssignment","src":"4612:15:125","value":{"name":"value","nativeSrc":"4622:5:125","nodeType":"YulIdentifier","src":"4622:5:125"},"variableNames":[{"name":"value0","nativeSrc":"4612:6:125","nodeType":"YulIdentifier","src":"4612:6:125"}]},{"nativeSrc":"4636:16:125","nodeType":"YulVariableDeclaration","src":"4636:16:125","value":{"kind":"number","nativeSrc":"4651:1:125","nodeType":"YulLiteral","src":"4651:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"4640:7:125","nodeType":"YulTypedName","src":"4640:7:125","type":""}]},{"nativeSrc":"4661:43:125","nodeType":"YulAssignment","src":"4661:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4689:9:125","nodeType":"YulIdentifier","src":"4689:9:125"},{"kind":"number","nativeSrc":"4700:2:125","nodeType":"YulLiteral","src":"4700:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4685:3:125","nodeType":"YulIdentifier","src":"4685:3:125"},"nativeSrc":"4685:18:125","nodeType":"YulFunctionCall","src":"4685:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"4672:12:125","nodeType":"YulIdentifier","src":"4672:12:125"},"nativeSrc":"4672:32:125","nodeType":"YulFunctionCall","src":"4672:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"4661:7:125","nodeType":"YulIdentifier","src":"4661:7:125"}]},{"nativeSrc":"4713:17:125","nodeType":"YulAssignment","src":"4713:17:125","value":{"name":"value_1","nativeSrc":"4723:7:125","nodeType":"YulIdentifier","src":"4723:7:125"},"variableNames":[{"name":"value1","nativeSrc":"4713:6:125","nodeType":"YulIdentifier","src":"4713:6:125"}]},{"nativeSrc":"4739:46:125","nodeType":"YulVariableDeclaration","src":"4739:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4770:9:125","nodeType":"YulIdentifier","src":"4770:9:125"},{"kind":"number","nativeSrc":"4781:2:125","nodeType":"YulLiteral","src":"4781:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4766:3:125","nodeType":"YulIdentifier","src":"4766:3:125"},"nativeSrc":"4766:18:125","nodeType":"YulFunctionCall","src":"4766:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"4753:12:125","nodeType":"YulIdentifier","src":"4753:12:125"},"nativeSrc":"4753:32:125","nodeType":"YulFunctionCall","src":"4753:32:125"},"variables":[{"name":"offset","nativeSrc":"4743:6:125","nodeType":"YulTypedName","src":"4743:6:125","type":""}]},{"body":{"nativeSrc":"4828:16:125","nodeType":"YulBlock","src":"4828:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4837:1:125","nodeType":"YulLiteral","src":"4837:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4840:1:125","nodeType":"YulLiteral","src":"4840:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4830:6:125","nodeType":"YulIdentifier","src":"4830:6:125"},"nativeSrc":"4830:12:125","nodeType":"YulFunctionCall","src":"4830:12:125"},"nativeSrc":"4830:12:125","nodeType":"YulExpressionStatement","src":"4830:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"4800:6:125","nodeType":"YulIdentifier","src":"4800:6:125"},{"kind":"number","nativeSrc":"4808:18:125","nodeType":"YulLiteral","src":"4808:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4797:2:125","nodeType":"YulIdentifier","src":"4797:2:125"},"nativeSrc":"4797:30:125","nodeType":"YulFunctionCall","src":"4797:30:125"},"nativeSrc":"4794:50:125","nodeType":"YulIf","src":"4794:50:125"},{"nativeSrc":"4853:32:125","nodeType":"YulVariableDeclaration","src":"4853:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4867:9:125","nodeType":"YulIdentifier","src":"4867:9:125"},{"name":"offset","nativeSrc":"4878:6:125","nodeType":"YulIdentifier","src":"4878:6:125"}],"functionName":{"name":"add","nativeSrc":"4863:3:125","nodeType":"YulIdentifier","src":"4863:3:125"},"nativeSrc":"4863:22:125","nodeType":"YulFunctionCall","src":"4863:22:125"},"variables":[{"name":"_1","nativeSrc":"4857:2:125","nodeType":"YulTypedName","src":"4857:2:125","type":""}]},{"body":{"nativeSrc":"4933:16:125","nodeType":"YulBlock","src":"4933:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4942:1:125","nodeType":"YulLiteral","src":"4942:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4945:1:125","nodeType":"YulLiteral","src":"4945:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4935:6:125","nodeType":"YulIdentifier","src":"4935:6:125"},"nativeSrc":"4935:12:125","nodeType":"YulFunctionCall","src":"4935:12:125"},"nativeSrc":"4935:12:125","nodeType":"YulExpressionStatement","src":"4935:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"4912:2:125","nodeType":"YulIdentifier","src":"4912:2:125"},{"kind":"number","nativeSrc":"4916:4:125","nodeType":"YulLiteral","src":"4916:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"4908:3:125","nodeType":"YulIdentifier","src":"4908:3:125"},"nativeSrc":"4908:13:125","nodeType":"YulFunctionCall","src":"4908:13:125"},{"name":"dataEnd","nativeSrc":"4923:7:125","nodeType":"YulIdentifier","src":"4923:7:125"}],"functionName":{"name":"slt","nativeSrc":"4904:3:125","nodeType":"YulIdentifier","src":"4904:3:125"},"nativeSrc":"4904:27:125","nodeType":"YulFunctionCall","src":"4904:27:125"}],"functionName":{"name":"iszero","nativeSrc":"4897:6:125","nodeType":"YulIdentifier","src":"4897:6:125"},"nativeSrc":"4897:35:125","nodeType":"YulFunctionCall","src":"4897:35:125"},"nativeSrc":"4894:55:125","nodeType":"YulIf","src":"4894:55:125"},{"nativeSrc":"4958:30:125","nodeType":"YulVariableDeclaration","src":"4958:30:125","value":{"arguments":[{"name":"_1","nativeSrc":"4985:2:125","nodeType":"YulIdentifier","src":"4985:2:125"}],"functionName":{"name":"calldataload","nativeSrc":"4972:12:125","nodeType":"YulIdentifier","src":"4972:12:125"},"nativeSrc":"4972:16:125","nodeType":"YulFunctionCall","src":"4972:16:125"},"variables":[{"name":"length","nativeSrc":"4962:6:125","nodeType":"YulTypedName","src":"4962:6:125","type":""}]},{"body":{"nativeSrc":"5031:16:125","nodeType":"YulBlock","src":"5031:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5040:1:125","nodeType":"YulLiteral","src":"5040:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5043:1:125","nodeType":"YulLiteral","src":"5043:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5033:6:125","nodeType":"YulIdentifier","src":"5033:6:125"},"nativeSrc":"5033:12:125","nodeType":"YulFunctionCall","src":"5033:12:125"},"nativeSrc":"5033:12:125","nodeType":"YulExpressionStatement","src":"5033:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"5003:6:125","nodeType":"YulIdentifier","src":"5003:6:125"},{"kind":"number","nativeSrc":"5011:18:125","nodeType":"YulLiteral","src":"5011:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"5000:2:125","nodeType":"YulIdentifier","src":"5000:2:125"},"nativeSrc":"5000:30:125","nodeType":"YulFunctionCall","src":"5000:30:125"},"nativeSrc":"4997:50:125","nodeType":"YulIf","src":"4997:50:125"},{"body":{"nativeSrc":"5097:16:125","nodeType":"YulBlock","src":"5097:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5106:1:125","nodeType":"YulLiteral","src":"5106:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5109:1:125","nodeType":"YulLiteral","src":"5109:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5099:6:125","nodeType":"YulIdentifier","src":"5099:6:125"},"nativeSrc":"5099:12:125","nodeType":"YulFunctionCall","src":"5099:12:125"},"nativeSrc":"5099:12:125","nodeType":"YulExpressionStatement","src":"5099:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"5070:2:125","nodeType":"YulIdentifier","src":"5070:2:125"},{"name":"length","nativeSrc":"5074:6:125","nodeType":"YulIdentifier","src":"5074:6:125"}],"functionName":{"name":"add","nativeSrc":"5066:3:125","nodeType":"YulIdentifier","src":"5066:3:125"},"nativeSrc":"5066:15:125","nodeType":"YulFunctionCall","src":"5066:15:125"},{"kind":"number","nativeSrc":"5083:2:125","nodeType":"YulLiteral","src":"5083:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5062:3:125","nodeType":"YulIdentifier","src":"5062:3:125"},"nativeSrc":"5062:24:125","nodeType":"YulFunctionCall","src":"5062:24:125"},{"name":"dataEnd","nativeSrc":"5088:7:125","nodeType":"YulIdentifier","src":"5088:7:125"}],"functionName":{"name":"gt","nativeSrc":"5059:2:125","nodeType":"YulIdentifier","src":"5059:2:125"},"nativeSrc":"5059:37:125","nodeType":"YulFunctionCall","src":"5059:37:125"},"nativeSrc":"5056:57:125","nodeType":"YulIf","src":"5056:57:125"},{"nativeSrc":"5122:21:125","nodeType":"YulAssignment","src":"5122:21:125","value":{"arguments":[{"name":"_1","nativeSrc":"5136:2:125","nodeType":"YulIdentifier","src":"5136:2:125"},{"kind":"number","nativeSrc":"5140:2:125","nodeType":"YulLiteral","src":"5140:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5132:3:125","nodeType":"YulIdentifier","src":"5132:3:125"},"nativeSrc":"5132:11:125","nodeType":"YulFunctionCall","src":"5132:11:125"},"variableNames":[{"name":"value2","nativeSrc":"5122:6:125","nodeType":"YulIdentifier","src":"5122:6:125"}]},{"nativeSrc":"5152:16:125","nodeType":"YulAssignment","src":"5152:16:125","value":{"name":"length","nativeSrc":"5162:6:125","nodeType":"YulIdentifier","src":"5162:6:125"},"variableNames":[{"name":"value3","nativeSrc":"5152:6:125","nodeType":"YulIdentifier","src":"5152:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_bytes_calldata_ptr","nativeSrc":"4333:841:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4398:9:125","nodeType":"YulTypedName","src":"4398:9:125","type":""},{"name":"dataEnd","nativeSrc":"4409:7:125","nodeType":"YulTypedName","src":"4409:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4421:6:125","nodeType":"YulTypedName","src":"4421:6:125","type":""},{"name":"value1","nativeSrc":"4429:6:125","nodeType":"YulTypedName","src":"4429:6:125","type":""},{"name":"value2","nativeSrc":"4437:6:125","nodeType":"YulTypedName","src":"4437:6:125","type":""},{"name":"value3","nativeSrc":"4445:6:125","nodeType":"YulTypedName","src":"4445:6:125","type":""}],"src":"4333:841:125"},{"body":{"nativeSrc":"5211:95:125","nodeType":"YulBlock","src":"5211:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5228:1:125","nodeType":"YulLiteral","src":"5228:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5235:3:125","nodeType":"YulLiteral","src":"5235:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"5240:10:125","nodeType":"YulLiteral","src":"5240:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5231:3:125","nodeType":"YulIdentifier","src":"5231:3:125"},"nativeSrc":"5231:20:125","nodeType":"YulFunctionCall","src":"5231:20:125"}],"functionName":{"name":"mstore","nativeSrc":"5221:6:125","nodeType":"YulIdentifier","src":"5221:6:125"},"nativeSrc":"5221:31:125","nodeType":"YulFunctionCall","src":"5221:31:125"},"nativeSrc":"5221:31:125","nodeType":"YulExpressionStatement","src":"5221:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5268:1:125","nodeType":"YulLiteral","src":"5268:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"5271:4:125","nodeType":"YulLiteral","src":"5271:4:125","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"5261:6:125","nodeType":"YulIdentifier","src":"5261:6:125"},"nativeSrc":"5261:15:125","nodeType":"YulFunctionCall","src":"5261:15:125"},"nativeSrc":"5261:15:125","nodeType":"YulExpressionStatement","src":"5261:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5292:1:125","nodeType":"YulLiteral","src":"5292:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5295:4:125","nodeType":"YulLiteral","src":"5295:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5285:6:125","nodeType":"YulIdentifier","src":"5285:6:125"},"nativeSrc":"5285:15:125","nodeType":"YulFunctionCall","src":"5285:15:125"},"nativeSrc":"5285:15:125","nodeType":"YulExpressionStatement","src":"5285:15:125"}]},"name":"panic_error_0x32","nativeSrc":"5179:127:125","nodeType":"YulFunctionDefinition","src":"5179:127:125"},{"body":{"nativeSrc":"5381:177:125","nodeType":"YulBlock","src":"5381:177:125","statements":[{"body":{"nativeSrc":"5427:16:125","nodeType":"YulBlock","src":"5427:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5436:1:125","nodeType":"YulLiteral","src":"5436:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5439:1:125","nodeType":"YulLiteral","src":"5439:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5429:6:125","nodeType":"YulIdentifier","src":"5429:6:125"},"nativeSrc":"5429:12:125","nodeType":"YulFunctionCall","src":"5429:12:125"},"nativeSrc":"5429:12:125","nodeType":"YulExpressionStatement","src":"5429:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5402:7:125","nodeType":"YulIdentifier","src":"5402:7:125"},{"name":"headStart","nativeSrc":"5411:9:125","nodeType":"YulIdentifier","src":"5411:9:125"}],"functionName":{"name":"sub","nativeSrc":"5398:3:125","nodeType":"YulIdentifier","src":"5398:3:125"},"nativeSrc":"5398:23:125","nodeType":"YulFunctionCall","src":"5398:23:125"},{"kind":"number","nativeSrc":"5423:2:125","nodeType":"YulLiteral","src":"5423:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5394:3:125","nodeType":"YulIdentifier","src":"5394:3:125"},"nativeSrc":"5394:32:125","nodeType":"YulFunctionCall","src":"5394:32:125"},"nativeSrc":"5391:52:125","nodeType":"YulIf","src":"5391:52:125"},{"nativeSrc":"5452:36:125","nodeType":"YulVariableDeclaration","src":"5452:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5478:9:125","nodeType":"YulIdentifier","src":"5478:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"5465:12:125","nodeType":"YulIdentifier","src":"5465:12:125"},"nativeSrc":"5465:23:125","nodeType":"YulFunctionCall","src":"5465:23:125"},"variables":[{"name":"value","nativeSrc":"5456:5:125","nodeType":"YulTypedName","src":"5456:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5522:5:125","nodeType":"YulIdentifier","src":"5522:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"5497:24:125","nodeType":"YulIdentifier","src":"5497:24:125"},"nativeSrc":"5497:31:125","nodeType":"YulFunctionCall","src":"5497:31:125"},"nativeSrc":"5497:31:125","nodeType":"YulExpressionStatement","src":"5497:31:125"},{"nativeSrc":"5537:15:125","nodeType":"YulAssignment","src":"5537:15:125","value":{"name":"value","nativeSrc":"5547:5:125","nodeType":"YulIdentifier","src":"5547:5:125"},"variableNames":[{"name":"value0","nativeSrc":"5537:6:125","nodeType":"YulIdentifier","src":"5537:6:125"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"5311:247:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5347:9:125","nodeType":"YulTypedName","src":"5347:9:125","type":""},{"name":"dataEnd","nativeSrc":"5358:7:125","nodeType":"YulTypedName","src":"5358:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5370:6:125","nodeType":"YulTypedName","src":"5370:6:125","type":""}],"src":"5311:247:125"},{"body":{"nativeSrc":"5612:176:125","nodeType":"YulBlock","src":"5612:176:125","statements":[{"nativeSrc":"5622:17:125","nodeType":"YulAssignment","src":"5622:17:125","value":{"arguments":[{"name":"x","nativeSrc":"5634:1:125","nodeType":"YulIdentifier","src":"5634:1:125"},{"name":"y","nativeSrc":"5637:1:125","nodeType":"YulIdentifier","src":"5637:1:125"}],"functionName":{"name":"sub","nativeSrc":"5630:3:125","nodeType":"YulIdentifier","src":"5630:3:125"},"nativeSrc":"5630:9:125","nodeType":"YulFunctionCall","src":"5630:9:125"},"variableNames":[{"name":"diff","nativeSrc":"5622:4:125","nodeType":"YulIdentifier","src":"5622:4:125"}]},{"body":{"nativeSrc":"5671:111:125","nodeType":"YulBlock","src":"5671:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5692:1:125","nodeType":"YulLiteral","src":"5692:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5699:3:125","nodeType":"YulLiteral","src":"5699:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"5704:10:125","nodeType":"YulLiteral","src":"5704:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5695:3:125","nodeType":"YulIdentifier","src":"5695:3:125"},"nativeSrc":"5695:20:125","nodeType":"YulFunctionCall","src":"5695:20:125"}],"functionName":{"name":"mstore","nativeSrc":"5685:6:125","nodeType":"YulIdentifier","src":"5685:6:125"},"nativeSrc":"5685:31:125","nodeType":"YulFunctionCall","src":"5685:31:125"},"nativeSrc":"5685:31:125","nodeType":"YulExpressionStatement","src":"5685:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5736:1:125","nodeType":"YulLiteral","src":"5736:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"5739:4:125","nodeType":"YulLiteral","src":"5739:4:125","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"5729:6:125","nodeType":"YulIdentifier","src":"5729:6:125"},"nativeSrc":"5729:15:125","nodeType":"YulFunctionCall","src":"5729:15:125"},"nativeSrc":"5729:15:125","nodeType":"YulExpressionStatement","src":"5729:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5764:1:125","nodeType":"YulLiteral","src":"5764:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5767:4:125","nodeType":"YulLiteral","src":"5767:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5757:6:125","nodeType":"YulIdentifier","src":"5757:6:125"},"nativeSrc":"5757:15:125","nodeType":"YulFunctionCall","src":"5757:15:125"},"nativeSrc":"5757:15:125","nodeType":"YulExpressionStatement","src":"5757:15:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"5654:4:125","nodeType":"YulIdentifier","src":"5654:4:125"},{"name":"x","nativeSrc":"5660:1:125","nodeType":"YulIdentifier","src":"5660:1:125"}],"functionName":{"name":"gt","nativeSrc":"5651:2:125","nodeType":"YulIdentifier","src":"5651:2:125"},"nativeSrc":"5651:11:125","nodeType":"YulFunctionCall","src":"5651:11:125"},"nativeSrc":"5648:134:125","nodeType":"YulIf","src":"5648:134:125"}]},"name":"checked_sub_t_uint256","nativeSrc":"5563:225:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"5594:1:125","nodeType":"YulTypedName","src":"5594:1:125","type":""},{"name":"y","nativeSrc":"5597:1:125","nodeType":"YulTypedName","src":"5597:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"5603:4:125","nodeType":"YulTypedName","src":"5603:4:125","type":""}],"src":"5563:225:125"},{"body":{"nativeSrc":"5894:102:125","nodeType":"YulBlock","src":"5894:102:125","statements":[{"nativeSrc":"5904:26:125","nodeType":"YulAssignment","src":"5904:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5916:9:125","nodeType":"YulIdentifier","src":"5916:9:125"},{"kind":"number","nativeSrc":"5927:2:125","nodeType":"YulLiteral","src":"5927:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5912:3:125","nodeType":"YulIdentifier","src":"5912:3:125"},"nativeSrc":"5912:18:125","nodeType":"YulFunctionCall","src":"5912:18:125"},"variableNames":[{"name":"tail","nativeSrc":"5904:4:125","nodeType":"YulIdentifier","src":"5904:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5946:9:125","nodeType":"YulIdentifier","src":"5946:9:125"},{"arguments":[{"name":"value0","nativeSrc":"5961:6:125","nodeType":"YulIdentifier","src":"5961:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5977:3:125","nodeType":"YulLiteral","src":"5977:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"5982:1:125","nodeType":"YulLiteral","src":"5982:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5973:3:125","nodeType":"YulIdentifier","src":"5973:3:125"},"nativeSrc":"5973:11:125","nodeType":"YulFunctionCall","src":"5973:11:125"},{"kind":"number","nativeSrc":"5986:1:125","nodeType":"YulLiteral","src":"5986:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5969:3:125","nodeType":"YulIdentifier","src":"5969:3:125"},"nativeSrc":"5969:19:125","nodeType":"YulFunctionCall","src":"5969:19:125"}],"functionName":{"name":"and","nativeSrc":"5957:3:125","nodeType":"YulIdentifier","src":"5957:3:125"},"nativeSrc":"5957:32:125","nodeType":"YulFunctionCall","src":"5957:32:125"}],"functionName":{"name":"mstore","nativeSrc":"5939:6:125","nodeType":"YulIdentifier","src":"5939:6:125"},"nativeSrc":"5939:51:125","nodeType":"YulFunctionCall","src":"5939:51:125"},"nativeSrc":"5939:51:125","nodeType":"YulExpressionStatement","src":"5939:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"5793:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5863:9:125","nodeType":"YulTypedName","src":"5863:9:125","type":""},{"name":"value0","nativeSrc":"5874:6:125","nodeType":"YulTypedName","src":"5874:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5885:4:125","nodeType":"YulTypedName","src":"5885:4:125","type":""}],"src":"5793:203:125"},{"body":{"nativeSrc":"6095:427:125","nodeType":"YulBlock","src":"6095:427:125","statements":[{"nativeSrc":"6105:51:125","nodeType":"YulVariableDeclaration","src":"6105:51:125","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"6144:11:125","nodeType":"YulIdentifier","src":"6144:11:125"}],"functionName":{"name":"calldataload","nativeSrc":"6131:12:125","nodeType":"YulIdentifier","src":"6131:12:125"},"nativeSrc":"6131:25:125","nodeType":"YulFunctionCall","src":"6131:25:125"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"6109:18:125","nodeType":"YulTypedName","src":"6109:18:125","type":""}]},{"body":{"nativeSrc":"6245:16:125","nodeType":"YulBlock","src":"6245:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6254:1:125","nodeType":"YulLiteral","src":"6254:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6257:1:125","nodeType":"YulLiteral","src":"6257:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6247:6:125","nodeType":"YulIdentifier","src":"6247:6:125"},"nativeSrc":"6247:12:125","nodeType":"YulFunctionCall","src":"6247:12:125"},"nativeSrc":"6247:12:125","nodeType":"YulExpressionStatement","src":"6247:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"6179:18:125","nodeType":"YulIdentifier","src":"6179:18:125"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"6207:12:125","nodeType":"YulIdentifier","src":"6207:12:125"},"nativeSrc":"6207:14:125","nodeType":"YulFunctionCall","src":"6207:14:125"},{"name":"base_ref","nativeSrc":"6223:8:125","nodeType":"YulIdentifier","src":"6223:8:125"}],"functionName":{"name":"sub","nativeSrc":"6203:3:125","nodeType":"YulIdentifier","src":"6203:3:125"},"nativeSrc":"6203:29:125","nodeType":"YulFunctionCall","src":"6203:29:125"},{"arguments":[{"kind":"number","nativeSrc":"6238:2:125","nodeType":"YulLiteral","src":"6238:2:125","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"6234:3:125","nodeType":"YulIdentifier","src":"6234:3:125"},"nativeSrc":"6234:7:125","nodeType":"YulFunctionCall","src":"6234:7:125"}],"functionName":{"name":"add","nativeSrc":"6199:3:125","nodeType":"YulIdentifier","src":"6199:3:125"},"nativeSrc":"6199:43:125","nodeType":"YulFunctionCall","src":"6199:43:125"}],"functionName":{"name":"slt","nativeSrc":"6175:3:125","nodeType":"YulIdentifier","src":"6175:3:125"},"nativeSrc":"6175:68:125","nodeType":"YulFunctionCall","src":"6175:68:125"}],"functionName":{"name":"iszero","nativeSrc":"6168:6:125","nodeType":"YulIdentifier","src":"6168:6:125"},"nativeSrc":"6168:76:125","nodeType":"YulFunctionCall","src":"6168:76:125"},"nativeSrc":"6165:96:125","nodeType":"YulIf","src":"6165:96:125"},{"nativeSrc":"6270:47:125","nodeType":"YulVariableDeclaration","src":"6270:47:125","value":{"arguments":[{"name":"base_ref","nativeSrc":"6288:8:125","nodeType":"YulIdentifier","src":"6288:8:125"},{"name":"rel_offset_of_tail","nativeSrc":"6298:18:125","nodeType":"YulIdentifier","src":"6298:18:125"}],"functionName":{"name":"add","nativeSrc":"6284:3:125","nodeType":"YulIdentifier","src":"6284:3:125"},"nativeSrc":"6284:33:125","nodeType":"YulFunctionCall","src":"6284:33:125"},"variables":[{"name":"addr_1","nativeSrc":"6274:6:125","nodeType":"YulTypedName","src":"6274:6:125","type":""}]},{"nativeSrc":"6326:30:125","nodeType":"YulAssignment","src":"6326:30:125","value":{"arguments":[{"name":"addr_1","nativeSrc":"6349:6:125","nodeType":"YulIdentifier","src":"6349:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"6336:12:125","nodeType":"YulIdentifier","src":"6336:12:125"},"nativeSrc":"6336:20:125","nodeType":"YulFunctionCall","src":"6336:20:125"},"variableNames":[{"name":"length","nativeSrc":"6326:6:125","nodeType":"YulIdentifier","src":"6326:6:125"}]},{"body":{"nativeSrc":"6399:16:125","nodeType":"YulBlock","src":"6399:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6408:1:125","nodeType":"YulLiteral","src":"6408:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6411:1:125","nodeType":"YulLiteral","src":"6411:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6401:6:125","nodeType":"YulIdentifier","src":"6401:6:125"},"nativeSrc":"6401:12:125","nodeType":"YulFunctionCall","src":"6401:12:125"},"nativeSrc":"6401:12:125","nodeType":"YulExpressionStatement","src":"6401:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"6371:6:125","nodeType":"YulIdentifier","src":"6371:6:125"},{"kind":"number","nativeSrc":"6379:18:125","nodeType":"YulLiteral","src":"6379:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6368:2:125","nodeType":"YulIdentifier","src":"6368:2:125"},"nativeSrc":"6368:30:125","nodeType":"YulFunctionCall","src":"6368:30:125"},"nativeSrc":"6365:50:125","nodeType":"YulIf","src":"6365:50:125"},{"nativeSrc":"6424:25:125","nodeType":"YulAssignment","src":"6424:25:125","value":{"arguments":[{"name":"addr_1","nativeSrc":"6436:6:125","nodeType":"YulIdentifier","src":"6436:6:125"},{"kind":"number","nativeSrc":"6444:4:125","nodeType":"YulLiteral","src":"6444:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6432:3:125","nodeType":"YulIdentifier","src":"6432:3:125"},"nativeSrc":"6432:17:125","nodeType":"YulFunctionCall","src":"6432:17:125"},"variableNames":[{"name":"addr","nativeSrc":"6424:4:125","nodeType":"YulIdentifier","src":"6424:4:125"}]},{"body":{"nativeSrc":"6500:16:125","nodeType":"YulBlock","src":"6500:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6509:1:125","nodeType":"YulLiteral","src":"6509:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6512:1:125","nodeType":"YulLiteral","src":"6512:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6502:6:125","nodeType":"YulIdentifier","src":"6502:6:125"},"nativeSrc":"6502:12:125","nodeType":"YulFunctionCall","src":"6502:12:125"},"nativeSrc":"6502:12:125","nodeType":"YulExpressionStatement","src":"6502:12:125"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"6465:4:125","nodeType":"YulIdentifier","src":"6465:4:125"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"6475:12:125","nodeType":"YulIdentifier","src":"6475:12:125"},"nativeSrc":"6475:14:125","nodeType":"YulFunctionCall","src":"6475:14:125"},{"name":"length","nativeSrc":"6491:6:125","nodeType":"YulIdentifier","src":"6491:6:125"}],"functionName":{"name":"sub","nativeSrc":"6471:3:125","nodeType":"YulIdentifier","src":"6471:3:125"},"nativeSrc":"6471:27:125","nodeType":"YulFunctionCall","src":"6471:27:125"}],"functionName":{"name":"sgt","nativeSrc":"6461:3:125","nodeType":"YulIdentifier","src":"6461:3:125"},"nativeSrc":"6461:38:125","nodeType":"YulFunctionCall","src":"6461:38:125"},"nativeSrc":"6458:58:125","nodeType":"YulIf","src":"6458:58:125"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"6001:521:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"6052:8:125","nodeType":"YulTypedName","src":"6052:8:125","type":""},{"name":"ptr_to_tail","nativeSrc":"6062:11:125","nodeType":"YulTypedName","src":"6062:11:125","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"6078:4:125","nodeType":"YulTypedName","src":"6078:4:125","type":""},{"name":"length","nativeSrc":"6084:6:125","nodeType":"YulTypedName","src":"6084:6:125","type":""}],"src":"6001:521:125"},{"body":{"nativeSrc":"6702:185:125","nodeType":"YulBlock","src":"6702:185:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"6725:3:125","nodeType":"YulIdentifier","src":"6725:3:125"},{"name":"value0","nativeSrc":"6730:6:125","nodeType":"YulIdentifier","src":"6730:6:125"},{"name":"value1","nativeSrc":"6738:6:125","nodeType":"YulIdentifier","src":"6738:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"6712:12:125","nodeType":"YulIdentifier","src":"6712:12:125"},"nativeSrc":"6712:33:125","nodeType":"YulFunctionCall","src":"6712:33:125"},"nativeSrc":"6712:33:125","nodeType":"YulExpressionStatement","src":"6712:33:125"},{"nativeSrc":"6754:26:125","nodeType":"YulVariableDeclaration","src":"6754:26:125","value":{"arguments":[{"name":"pos","nativeSrc":"6768:3:125","nodeType":"YulIdentifier","src":"6768:3:125"},{"name":"value1","nativeSrc":"6773:6:125","nodeType":"YulIdentifier","src":"6773:6:125"}],"functionName":{"name":"add","nativeSrc":"6764:3:125","nodeType":"YulIdentifier","src":"6764:3:125"},"nativeSrc":"6764:16:125","nodeType":"YulFunctionCall","src":"6764:16:125"},"variables":[{"name":"_1","nativeSrc":"6758:2:125","nodeType":"YulTypedName","src":"6758:2:125","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"6796:2:125","nodeType":"YulIdentifier","src":"6796:2:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6808:2:125","nodeType":"YulLiteral","src":"6808:2:125","type":"","value":"96"},{"name":"value2","nativeSrc":"6812:6:125","nodeType":"YulIdentifier","src":"6812:6:125"}],"functionName":{"name":"shl","nativeSrc":"6804:3:125","nodeType":"YulIdentifier","src":"6804:3:125"},"nativeSrc":"6804:15:125","nodeType":"YulFunctionCall","src":"6804:15:125"},{"arguments":[{"kind":"number","nativeSrc":"6825:26:125","nodeType":"YulLiteral","src":"6825:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"6821:3:125","nodeType":"YulIdentifier","src":"6821:3:125"},"nativeSrc":"6821:31:125","nodeType":"YulFunctionCall","src":"6821:31:125"}],"functionName":{"name":"and","nativeSrc":"6800:3:125","nodeType":"YulIdentifier","src":"6800:3:125"},"nativeSrc":"6800:53:125","nodeType":"YulFunctionCall","src":"6800:53:125"}],"functionName":{"name":"mstore","nativeSrc":"6789:6:125","nodeType":"YulIdentifier","src":"6789:6:125"},"nativeSrc":"6789:65:125","nodeType":"YulFunctionCall","src":"6789:65:125"},"nativeSrc":"6789:65:125","nodeType":"YulExpressionStatement","src":"6789:65:125"},{"nativeSrc":"6863:18:125","nodeType":"YulAssignment","src":"6863:18:125","value":{"arguments":[{"name":"_1","nativeSrc":"6874:2:125","nodeType":"YulIdentifier","src":"6874:2:125"},{"kind":"number","nativeSrc":"6878:2:125","nodeType":"YulLiteral","src":"6878:2:125","type":"","value":"20"}],"functionName":{"name":"add","nativeSrc":"6870:3:125","nodeType":"YulIdentifier","src":"6870:3:125"},"nativeSrc":"6870:11:125","nodeType":"YulFunctionCall","src":"6870:11:125"},"variableNames":[{"name":"end","nativeSrc":"6863:3:125","nodeType":"YulIdentifier","src":"6863:3:125"}]}]},"name":"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_address__to_t_bytes_memory_ptr_t_address__nonPadded_inplace_fromStack_reversed","nativeSrc":"6527:360:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"6662:3:125","nodeType":"YulTypedName","src":"6662:3:125","type":""},{"name":"value2","nativeSrc":"6667:6:125","nodeType":"YulTypedName","src":"6667:6:125","type":""},{"name":"value1","nativeSrc":"6675:6:125","nodeType":"YulTypedName","src":"6675:6:125","type":""},{"name":"value0","nativeSrc":"6683:6:125","nodeType":"YulTypedName","src":"6683:6:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"6694:3:125","nodeType":"YulTypedName","src":"6694:3:125","type":""}],"src":"6527:360:125"},{"body":{"nativeSrc":"7037:145:125","nodeType":"YulBlock","src":"7037:145:125","statements":[{"nativeSrc":"7047:26:125","nodeType":"YulAssignment","src":"7047:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7059:9:125","nodeType":"YulIdentifier","src":"7059:9:125"},{"kind":"number","nativeSrc":"7070:2:125","nodeType":"YulLiteral","src":"7070:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7055:3:125","nodeType":"YulIdentifier","src":"7055:3:125"},"nativeSrc":"7055:18:125","nodeType":"YulFunctionCall","src":"7055:18:125"},"variableNames":[{"name":"tail","nativeSrc":"7047:4:125","nodeType":"YulIdentifier","src":"7047:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7089:9:125","nodeType":"YulIdentifier","src":"7089:9:125"},{"arguments":[{"name":"value0","nativeSrc":"7104:6:125","nodeType":"YulIdentifier","src":"7104:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7120:3:125","nodeType":"YulLiteral","src":"7120:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"7125:1:125","nodeType":"YulLiteral","src":"7125:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7116:3:125","nodeType":"YulIdentifier","src":"7116:3:125"},"nativeSrc":"7116:11:125","nodeType":"YulFunctionCall","src":"7116:11:125"},{"kind":"number","nativeSrc":"7129:1:125","nodeType":"YulLiteral","src":"7129:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7112:3:125","nodeType":"YulIdentifier","src":"7112:3:125"},"nativeSrc":"7112:19:125","nodeType":"YulFunctionCall","src":"7112:19:125"}],"functionName":{"name":"and","nativeSrc":"7100:3:125","nodeType":"YulIdentifier","src":"7100:3:125"},"nativeSrc":"7100:32:125","nodeType":"YulFunctionCall","src":"7100:32:125"}],"functionName":{"name":"mstore","nativeSrc":"7082:6:125","nodeType":"YulIdentifier","src":"7082:6:125"},"nativeSrc":"7082:51:125","nodeType":"YulFunctionCall","src":"7082:51:125"},"nativeSrc":"7082:51:125","nodeType":"YulExpressionStatement","src":"7082:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7153:9:125","nodeType":"YulIdentifier","src":"7153:9:125"},{"kind":"number","nativeSrc":"7164:2:125","nodeType":"YulLiteral","src":"7164:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7149:3:125","nodeType":"YulIdentifier","src":"7149:3:125"},"nativeSrc":"7149:18:125","nodeType":"YulFunctionCall","src":"7149:18:125"},{"name":"value1","nativeSrc":"7169:6:125","nodeType":"YulIdentifier","src":"7169:6:125"}],"functionName":{"name":"mstore","nativeSrc":"7142:6:125","nodeType":"YulIdentifier","src":"7142:6:125"},"nativeSrc":"7142:34:125","nodeType":"YulFunctionCall","src":"7142:34:125"},"nativeSrc":"7142:34:125","nodeType":"YulExpressionStatement","src":"7142:34:125"}]},"name":"abi_encode_tuple_t_address_payable_t_uint256__to_t_address_payable_t_uint256__fromStack_reversed","nativeSrc":"6892:290:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6998:9:125","nodeType":"YulTypedName","src":"6998:9:125","type":""},{"name":"value1","nativeSrc":"7009:6:125","nodeType":"YulTypedName","src":"7009:6:125","type":""},{"name":"value0","nativeSrc":"7017:6:125","nodeType":"YulTypedName","src":"7017:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7028:4:125","nodeType":"YulTypedName","src":"7028:4:125","type":""}],"src":"6892:290:125"},{"body":{"nativeSrc":"7268:103:125","nodeType":"YulBlock","src":"7268:103:125","statements":[{"body":{"nativeSrc":"7314:16:125","nodeType":"YulBlock","src":"7314:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7323:1:125","nodeType":"YulLiteral","src":"7323:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7326:1:125","nodeType":"YulLiteral","src":"7326:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7316:6:125","nodeType":"YulIdentifier","src":"7316:6:125"},"nativeSrc":"7316:12:125","nodeType":"YulFunctionCall","src":"7316:12:125"},"nativeSrc":"7316:12:125","nodeType":"YulExpressionStatement","src":"7316:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7289:7:125","nodeType":"YulIdentifier","src":"7289:7:125"},{"name":"headStart","nativeSrc":"7298:9:125","nodeType":"YulIdentifier","src":"7298:9:125"}],"functionName":{"name":"sub","nativeSrc":"7285:3:125","nodeType":"YulIdentifier","src":"7285:3:125"},"nativeSrc":"7285:23:125","nodeType":"YulFunctionCall","src":"7285:23:125"},{"kind":"number","nativeSrc":"7310:2:125","nodeType":"YulLiteral","src":"7310:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"7281:3:125","nodeType":"YulIdentifier","src":"7281:3:125"},"nativeSrc":"7281:32:125","nodeType":"YulFunctionCall","src":"7281:32:125"},"nativeSrc":"7278:52:125","nodeType":"YulIf","src":"7278:52:125"},{"nativeSrc":"7339:26:125","nodeType":"YulAssignment","src":"7339:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7355:9:125","nodeType":"YulIdentifier","src":"7355:9:125"}],"functionName":{"name":"mload","nativeSrc":"7349:5:125","nodeType":"YulIdentifier","src":"7349:5:125"},"nativeSrc":"7349:16:125","nodeType":"YulFunctionCall","src":"7349:16:125"},"variableNames":[{"name":"value0","nativeSrc":"7339:6:125","nodeType":"YulIdentifier","src":"7339:6:125"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"7187:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7234:9:125","nodeType":"YulTypedName","src":"7234:9:125","type":""},{"name":"dataEnd","nativeSrc":"7245:7:125","nodeType":"YulTypedName","src":"7245:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7257:6:125","nodeType":"YulTypedName","src":"7257:6:125","type":""}],"src":"7187:184:125"},{"body":{"nativeSrc":"7513:171:125","nodeType":"YulBlock","src":"7513:171:125","statements":[{"nativeSrc":"7523:26:125","nodeType":"YulAssignment","src":"7523:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7535:9:125","nodeType":"YulIdentifier","src":"7535:9:125"},{"kind":"number","nativeSrc":"7546:2:125","nodeType":"YulLiteral","src":"7546:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7531:3:125","nodeType":"YulIdentifier","src":"7531:3:125"},"nativeSrc":"7531:18:125","nodeType":"YulFunctionCall","src":"7531:18:125"},"variableNames":[{"name":"tail","nativeSrc":"7523:4:125","nodeType":"YulIdentifier","src":"7523:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7565:9:125","nodeType":"YulIdentifier","src":"7565:9:125"},{"arguments":[{"name":"value0","nativeSrc":"7580:6:125","nodeType":"YulIdentifier","src":"7580:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7596:3:125","nodeType":"YulLiteral","src":"7596:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"7601:1:125","nodeType":"YulLiteral","src":"7601:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7592:3:125","nodeType":"YulIdentifier","src":"7592:3:125"},"nativeSrc":"7592:11:125","nodeType":"YulFunctionCall","src":"7592:11:125"},{"kind":"number","nativeSrc":"7605:1:125","nodeType":"YulLiteral","src":"7605:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7588:3:125","nodeType":"YulIdentifier","src":"7588:3:125"},"nativeSrc":"7588:19:125","nodeType":"YulFunctionCall","src":"7588:19:125"}],"functionName":{"name":"and","nativeSrc":"7576:3:125","nodeType":"YulIdentifier","src":"7576:3:125"},"nativeSrc":"7576:32:125","nodeType":"YulFunctionCall","src":"7576:32:125"}],"functionName":{"name":"mstore","nativeSrc":"7558:6:125","nodeType":"YulIdentifier","src":"7558:6:125"},"nativeSrc":"7558:51:125","nodeType":"YulFunctionCall","src":"7558:51:125"},"nativeSrc":"7558:51:125","nodeType":"YulExpressionStatement","src":"7558:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7629:9:125","nodeType":"YulIdentifier","src":"7629:9:125"},{"kind":"number","nativeSrc":"7640:2:125","nodeType":"YulLiteral","src":"7640:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7625:3:125","nodeType":"YulIdentifier","src":"7625:3:125"},"nativeSrc":"7625:18:125","nodeType":"YulFunctionCall","src":"7625:18:125"},{"arguments":[{"name":"value1","nativeSrc":"7649:6:125","nodeType":"YulIdentifier","src":"7649:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7665:3:125","nodeType":"YulLiteral","src":"7665:3:125","type":"","value":"192"},{"kind":"number","nativeSrc":"7670:1:125","nodeType":"YulLiteral","src":"7670:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7661:3:125","nodeType":"YulIdentifier","src":"7661:3:125"},"nativeSrc":"7661:11:125","nodeType":"YulFunctionCall","src":"7661:11:125"},{"kind":"number","nativeSrc":"7674:1:125","nodeType":"YulLiteral","src":"7674:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7657:3:125","nodeType":"YulIdentifier","src":"7657:3:125"},"nativeSrc":"7657:19:125","nodeType":"YulFunctionCall","src":"7657:19:125"}],"functionName":{"name":"and","nativeSrc":"7645:3:125","nodeType":"YulIdentifier","src":"7645:3:125"},"nativeSrc":"7645:32:125","nodeType":"YulFunctionCall","src":"7645:32:125"}],"functionName":{"name":"mstore","nativeSrc":"7618:6:125","nodeType":"YulIdentifier","src":"7618:6:125"},"nativeSrc":"7618:60:125","nodeType":"YulFunctionCall","src":"7618:60:125"},"nativeSrc":"7618:60:125","nodeType":"YulExpressionStatement","src":"7618:60:125"}]},"name":"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint192__fromStack_reversed","nativeSrc":"7376:308:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7474:9:125","nodeType":"YulTypedName","src":"7474:9:125","type":""},{"name":"value1","nativeSrc":"7485:6:125","nodeType":"YulTypedName","src":"7485:6:125","type":""},{"name":"value0","nativeSrc":"7493:6:125","nodeType":"YulTypedName","src":"7493:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7504:4:125","nodeType":"YulTypedName","src":"7504:4:125","type":""}],"src":"7376:308:125"},{"body":{"nativeSrc":"7863:178:125","nodeType":"YulBlock","src":"7863:178:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7880:9:125","nodeType":"YulIdentifier","src":"7880:9:125"},{"kind":"number","nativeSrc":"7891:2:125","nodeType":"YulLiteral","src":"7891:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"7873:6:125","nodeType":"YulIdentifier","src":"7873:6:125"},"nativeSrc":"7873:21:125","nodeType":"YulFunctionCall","src":"7873:21:125"},"nativeSrc":"7873:21:125","nodeType":"YulExpressionStatement","src":"7873:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7914:9:125","nodeType":"YulIdentifier","src":"7914:9:125"},{"kind":"number","nativeSrc":"7925:2:125","nodeType":"YulLiteral","src":"7925:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7910:3:125","nodeType":"YulIdentifier","src":"7910:3:125"},"nativeSrc":"7910:18:125","nodeType":"YulFunctionCall","src":"7910:18:125"},{"kind":"number","nativeSrc":"7930:2:125","nodeType":"YulLiteral","src":"7930:2:125","type":"","value":"28"}],"functionName":{"name":"mstore","nativeSrc":"7903:6:125","nodeType":"YulIdentifier","src":"7903:6:125"},"nativeSrc":"7903:30:125","nodeType":"YulFunctionCall","src":"7903:30:125"},"nativeSrc":"7903:30:125","nodeType":"YulExpressionStatement","src":"7903:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7953:9:125","nodeType":"YulIdentifier","src":"7953:9:125"},{"kind":"number","nativeSrc":"7964:2:125","nodeType":"YulLiteral","src":"7964:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7949:3:125","nodeType":"YulIdentifier","src":"7949:3:125"},"nativeSrc":"7949:18:125","nodeType":"YulFunctionCall","src":"7949:18:125"},{"hexValue":"6163636f756e743a206e6f742066726f6d20456e747279506f696e74","kind":"string","nativeSrc":"7969:30:125","nodeType":"YulLiteral","src":"7969:30:125","type":"","value":"account: not from EntryPoint"}],"functionName":{"name":"mstore","nativeSrc":"7942:6:125","nodeType":"YulIdentifier","src":"7942:6:125"},"nativeSrc":"7942:58:125","nodeType":"YulFunctionCall","src":"7942:58:125"},"nativeSrc":"7942:58:125","nodeType":"YulExpressionStatement","src":"7942:58:125"},{"nativeSrc":"8009:26:125","nodeType":"YulAssignment","src":"8009:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8021:9:125","nodeType":"YulIdentifier","src":"8021:9:125"},{"kind":"number","nativeSrc":"8032:2:125","nodeType":"YulLiteral","src":"8032:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8017:3:125","nodeType":"YulIdentifier","src":"8017:3:125"},"nativeSrc":"8017:18:125","nodeType":"YulFunctionCall","src":"8017:18:125"},"variableNames":[{"name":"tail","nativeSrc":"8009:4:125","nodeType":"YulIdentifier","src":"8009:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_f684c2c0c9ec797849b62669189fe025e9077c00ba7812987ce38c0071ad7a50__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"7689:352:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7840:9:125","nodeType":"YulTypedName","src":"7840:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7854:4:125","nodeType":"YulTypedName","src":"7854:4:125","type":""}],"src":"7689:352:125"},{"body":{"nativeSrc":"8237:14:125","nodeType":"YulBlock","src":"8237:14:125","statements":[{"nativeSrc":"8239:10:125","nodeType":"YulAssignment","src":"8239:10:125","value":{"name":"pos","nativeSrc":"8246:3:125","nodeType":"YulIdentifier","src":"8246:3:125"},"variableNames":[{"name":"end","nativeSrc":"8239:3:125","nodeType":"YulIdentifier","src":"8239:3:125"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"8046:205:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"8221:3:125","nodeType":"YulTypedName","src":"8221:3:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"8229:3:125","nodeType":"YulTypedName","src":"8229:3:125","type":""}],"src":"8046:205:125"},{"body":{"nativeSrc":"8385:119:125","nodeType":"YulBlock","src":"8385:119:125","statements":[{"nativeSrc":"8395:26:125","nodeType":"YulAssignment","src":"8395:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8407:9:125","nodeType":"YulIdentifier","src":"8407:9:125"},{"kind":"number","nativeSrc":"8418:2:125","nodeType":"YulLiteral","src":"8418:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8403:3:125","nodeType":"YulIdentifier","src":"8403:3:125"},"nativeSrc":"8403:18:125","nodeType":"YulFunctionCall","src":"8403:18:125"},"variableNames":[{"name":"tail","nativeSrc":"8395:4:125","nodeType":"YulIdentifier","src":"8395:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8437:9:125","nodeType":"YulIdentifier","src":"8437:9:125"},{"name":"value0","nativeSrc":"8448:6:125","nodeType":"YulIdentifier","src":"8448:6:125"}],"functionName":{"name":"mstore","nativeSrc":"8430:6:125","nodeType":"YulIdentifier","src":"8430:6:125"},"nativeSrc":"8430:25:125","nodeType":"YulFunctionCall","src":"8430:25:125"},"nativeSrc":"8430:25:125","nodeType":"YulExpressionStatement","src":"8430:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8475:9:125","nodeType":"YulIdentifier","src":"8475:9:125"},{"kind":"number","nativeSrc":"8486:2:125","nodeType":"YulLiteral","src":"8486:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8471:3:125","nodeType":"YulIdentifier","src":"8471:3:125"},"nativeSrc":"8471:18:125","nodeType":"YulFunctionCall","src":"8471:18:125"},{"name":"value1","nativeSrc":"8491:6:125","nodeType":"YulIdentifier","src":"8491:6:125"}],"functionName":{"name":"mstore","nativeSrc":"8464:6:125","nodeType":"YulIdentifier","src":"8464:6:125"},"nativeSrc":"8464:34:125","nodeType":"YulFunctionCall","src":"8464:34:125"},"nativeSrc":"8464:34:125","nodeType":"YulExpressionStatement","src":"8464:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"8256:248:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8346:9:125","nodeType":"YulTypedName","src":"8346:9:125","type":""},{"name":"value1","nativeSrc":"8357:6:125","nodeType":"YulTypedName","src":"8357:6:125","type":""},{"name":"value0","nativeSrc":"8365:6:125","nodeType":"YulTypedName","src":"8365:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8376:4:125","nodeType":"YulTypedName","src":"8376:4:125","type":""}],"src":"8256:248:125"},{"body":{"nativeSrc":"8638:145:125","nodeType":"YulBlock","src":"8638:145:125","statements":[{"nativeSrc":"8648:26:125","nodeType":"YulAssignment","src":"8648:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8660:9:125","nodeType":"YulIdentifier","src":"8660:9:125"},{"kind":"number","nativeSrc":"8671:2:125","nodeType":"YulLiteral","src":"8671:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8656:3:125","nodeType":"YulIdentifier","src":"8656:3:125"},"nativeSrc":"8656:18:125","nodeType":"YulFunctionCall","src":"8656:18:125"},"variableNames":[{"name":"tail","nativeSrc":"8648:4:125","nodeType":"YulIdentifier","src":"8648:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8690:9:125","nodeType":"YulIdentifier","src":"8690:9:125"},{"arguments":[{"name":"value0","nativeSrc":"8705:6:125","nodeType":"YulIdentifier","src":"8705:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"8721:3:125","nodeType":"YulLiteral","src":"8721:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"8726:1:125","nodeType":"YulLiteral","src":"8726:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"8717:3:125","nodeType":"YulIdentifier","src":"8717:3:125"},"nativeSrc":"8717:11:125","nodeType":"YulFunctionCall","src":"8717:11:125"},{"kind":"number","nativeSrc":"8730:1:125","nodeType":"YulLiteral","src":"8730:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"8713:3:125","nodeType":"YulIdentifier","src":"8713:3:125"},"nativeSrc":"8713:19:125","nodeType":"YulFunctionCall","src":"8713:19:125"}],"functionName":{"name":"and","nativeSrc":"8701:3:125","nodeType":"YulIdentifier","src":"8701:3:125"},"nativeSrc":"8701:32:125","nodeType":"YulFunctionCall","src":"8701:32:125"}],"functionName":{"name":"mstore","nativeSrc":"8683:6:125","nodeType":"YulIdentifier","src":"8683:6:125"},"nativeSrc":"8683:51:125","nodeType":"YulFunctionCall","src":"8683:51:125"},"nativeSrc":"8683:51:125","nodeType":"YulExpressionStatement","src":"8683:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8754:9:125","nodeType":"YulIdentifier","src":"8754:9:125"},{"kind":"number","nativeSrc":"8765:2:125","nodeType":"YulLiteral","src":"8765:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8750:3:125","nodeType":"YulIdentifier","src":"8750:3:125"},"nativeSrc":"8750:18:125","nodeType":"YulFunctionCall","src":"8750:18:125"},{"name":"value1","nativeSrc":"8770:6:125","nodeType":"YulIdentifier","src":"8770:6:125"}],"functionName":{"name":"mstore","nativeSrc":"8743:6:125","nodeType":"YulIdentifier","src":"8743:6:125"},"nativeSrc":"8743:34:125","nodeType":"YulFunctionCall","src":"8743:34:125"},"nativeSrc":"8743:34:125","nodeType":"YulExpressionStatement","src":"8743:34:125"}]},"name":"abi_encode_tuple_t_address_t_bytes32__to_t_address_t_bytes32__fromStack_reversed","nativeSrc":"8509:274:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8599:9:125","nodeType":"YulTypedName","src":"8599:9:125","type":""},{"name":"value1","nativeSrc":"8610:6:125","nodeType":"YulTypedName","src":"8610:6:125","type":""},{"name":"value0","nativeSrc":"8618:6:125","nodeType":"YulTypedName","src":"8618:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8629:4:125","nodeType":"YulTypedName","src":"8629:4:125","type":""}],"src":"8509:274:125"},{"body":{"nativeSrc":"8820:95:125","nodeType":"YulBlock","src":"8820:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8837:1:125","nodeType":"YulLiteral","src":"8837:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"8844:3:125","nodeType":"YulLiteral","src":"8844:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"8849:10:125","nodeType":"YulLiteral","src":"8849:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"8840:3:125","nodeType":"YulIdentifier","src":"8840:3:125"},"nativeSrc":"8840:20:125","nodeType":"YulFunctionCall","src":"8840:20:125"}],"functionName":{"name":"mstore","nativeSrc":"8830:6:125","nodeType":"YulIdentifier","src":"8830:6:125"},"nativeSrc":"8830:31:125","nodeType":"YulFunctionCall","src":"8830:31:125"},"nativeSrc":"8830:31:125","nodeType":"YulExpressionStatement","src":"8830:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8877:1:125","nodeType":"YulLiteral","src":"8877:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"8880:4:125","nodeType":"YulLiteral","src":"8880:4:125","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"8870:6:125","nodeType":"YulIdentifier","src":"8870:6:125"},"nativeSrc":"8870:15:125","nodeType":"YulFunctionCall","src":"8870:15:125"},"nativeSrc":"8870:15:125","nodeType":"YulExpressionStatement","src":"8870:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8901:1:125","nodeType":"YulLiteral","src":"8901:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8904:4:125","nodeType":"YulLiteral","src":"8904:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"8894:6:125","nodeType":"YulIdentifier","src":"8894:6:125"},"nativeSrc":"8894:15:125","nodeType":"YulFunctionCall","src":"8894:15:125"},"nativeSrc":"8894:15:125","nodeType":"YulExpressionStatement","src":"8894:15:125"}]},"name":"panic_error_0x21","nativeSrc":"8788:127:125","nodeType":"YulFunctionDefinition","src":"8788:127:125"},{"body":{"nativeSrc":"9101:217:125","nodeType":"YulBlock","src":"9101:217:125","statements":[{"nativeSrc":"9111:27:125","nodeType":"YulAssignment","src":"9111:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"9123:9:125","nodeType":"YulIdentifier","src":"9123:9:125"},{"kind":"number","nativeSrc":"9134:3:125","nodeType":"YulLiteral","src":"9134:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"9119:3:125","nodeType":"YulIdentifier","src":"9119:3:125"},"nativeSrc":"9119:19:125","nodeType":"YulFunctionCall","src":"9119:19:125"},"variableNames":[{"name":"tail","nativeSrc":"9111:4:125","nodeType":"YulIdentifier","src":"9111:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9154:9:125","nodeType":"YulIdentifier","src":"9154:9:125"},{"name":"value0","nativeSrc":"9165:6:125","nodeType":"YulIdentifier","src":"9165:6:125"}],"functionName":{"name":"mstore","nativeSrc":"9147:6:125","nodeType":"YulIdentifier","src":"9147:6:125"},"nativeSrc":"9147:25:125","nodeType":"YulFunctionCall","src":"9147:25:125"},"nativeSrc":"9147:25:125","nodeType":"YulExpressionStatement","src":"9147:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9192:9:125","nodeType":"YulIdentifier","src":"9192:9:125"},{"kind":"number","nativeSrc":"9203:2:125","nodeType":"YulLiteral","src":"9203:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9188:3:125","nodeType":"YulIdentifier","src":"9188:3:125"},"nativeSrc":"9188:18:125","nodeType":"YulFunctionCall","src":"9188:18:125"},{"arguments":[{"name":"value1","nativeSrc":"9212:6:125","nodeType":"YulIdentifier","src":"9212:6:125"},{"kind":"number","nativeSrc":"9220:4:125","nodeType":"YulLiteral","src":"9220:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"9208:3:125","nodeType":"YulIdentifier","src":"9208:3:125"},"nativeSrc":"9208:17:125","nodeType":"YulFunctionCall","src":"9208:17:125"}],"functionName":{"name":"mstore","nativeSrc":"9181:6:125","nodeType":"YulIdentifier","src":"9181:6:125"},"nativeSrc":"9181:45:125","nodeType":"YulFunctionCall","src":"9181:45:125"},"nativeSrc":"9181:45:125","nodeType":"YulExpressionStatement","src":"9181:45:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9246:9:125","nodeType":"YulIdentifier","src":"9246:9:125"},{"kind":"number","nativeSrc":"9257:2:125","nodeType":"YulLiteral","src":"9257:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9242:3:125","nodeType":"YulIdentifier","src":"9242:3:125"},"nativeSrc":"9242:18:125","nodeType":"YulFunctionCall","src":"9242:18:125"},{"name":"value2","nativeSrc":"9262:6:125","nodeType":"YulIdentifier","src":"9262:6:125"}],"functionName":{"name":"mstore","nativeSrc":"9235:6:125","nodeType":"YulIdentifier","src":"9235:6:125"},"nativeSrc":"9235:34:125","nodeType":"YulFunctionCall","src":"9235:34:125"},"nativeSrc":"9235:34:125","nodeType":"YulExpressionStatement","src":"9235:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9289:9:125","nodeType":"YulIdentifier","src":"9289:9:125"},{"kind":"number","nativeSrc":"9300:2:125","nodeType":"YulLiteral","src":"9300:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9285:3:125","nodeType":"YulIdentifier","src":"9285:3:125"},"nativeSrc":"9285:18:125","nodeType":"YulFunctionCall","src":"9285:18:125"},{"name":"value3","nativeSrc":"9305:6:125","nodeType":"YulIdentifier","src":"9305:6:125"}],"functionName":{"name":"mstore","nativeSrc":"9278:6:125","nodeType":"YulIdentifier","src":"9278:6:125"},"nativeSrc":"9278:34:125","nodeType":"YulFunctionCall","src":"9278:34:125"},"nativeSrc":"9278:34:125","nodeType":"YulExpressionStatement","src":"9278:34:125"}]},"name":"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"8920:398:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9046:9:125","nodeType":"YulTypedName","src":"9046:9:125","type":""},{"name":"value3","nativeSrc":"9057:6:125","nodeType":"YulTypedName","src":"9057:6:125","type":""},{"name":"value2","nativeSrc":"9065:6:125","nodeType":"YulTypedName","src":"9065:6:125","type":""},{"name":"value1","nativeSrc":"9073:6:125","nodeType":"YulTypedName","src":"9073:6:125","type":""},{"name":"value0","nativeSrc":"9081:6:125","nodeType":"YulTypedName","src":"9081:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9092:4:125","nodeType":"YulTypedName","src":"9092:4:125","type":""}],"src":"8920:398:125"}]},"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_$3748_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_$3566__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_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":125,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"4367":[{"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":"6080604052600436106100fd575f3560e01c80634d44560d11610092578063b61d27f611610062578063b61d27f6146102c5578063c399ec88146102e4578063d087d288146102f8578063d547741f1461030c578063e02023a11461032b575f5ffd5b80634d44560d1461023157806391d1485414610250578063a217fddf1461026f578063b0d691fe14610282575f5ffd5b80632f2ff15d116100cd5780632f2ff15d146101ca57806336568abe146101eb57806347e1da2a1461020a5780634a58db1914610229575f5ffd5b806301ffc9a71461010857806307bd02651461013c57806319822f7c1461017d578063248a9ca31461019c575f5ffd5b3661010457005b5f5ffd5b348015610113575f5ffd5b50610127610122366004611020565b61035e565b60405190151581526020015b60405180910390f35b348015610147575f5ffd5b5061016f7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b604051908152602001610133565b348015610188575f5ffd5b5061016f610197366004611047565b610394565b3480156101a7575f5ffd5b5061016f6101b6366004611096565b5f9081526020819052604090206001015490565b3480156101d5575f5ffd5b506101e96101e43660046110c1565b6103b9565b005b3480156101f6575f5ffd5b506101e96102053660046110c1565b6103e3565b348015610215575f5ffd5b506101e9610224366004611137565b61041b565b6101e961062c565b34801561023c575f5ffd5b506101e961024b3660046111d6565b6106a8565b34801561025b575f5ffd5b5061012761026a3660046110c1565b610757565b34801561027a575f5ffd5b5061016f5f81565b34801561028d575f5ffd5b506040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602001610133565b3480156102d0575f5ffd5b506101e96102df366004611200565b61077f565b3480156102ef575f5ffd5b5061016f6107f5565b348015610303575f5ffd5b5061016f610883565b348015610317575f5ffd5b506101e96103263660046110c1565b6108d8565b348015610336575f5ffd5b5061016f7f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec81565b5f6001600160e01b03198216637965db0b60e01b148061038e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b5f61039d6108fc565b6103a78484610976565b90506103b282610a54565b9392505050565b5f828152602081905260409020600101546103d381610a9d565b6103dd8383610aa7565b50505050565b6001600160a01b038116331461040c5760405163334bd91960e11b815260040160405180910390fd5b6104168282610b36565b505050565b5f610424610b9f565b9050858214158061043f5750831580159061043f5750838214155b1561045d5760405163150072e360e11b815260040160405180910390fd5b5f5b868110156106225780156105125787878281811061047f5761047f611285565b90506020020160208101906104949190611299565b6001600160a01b031688886104aa6001856112b4565b8181106104b9576104b9611285565b90506020020160208101906104ce9190611299565b6001600160a01b0316148061050d575061050d8888838181106104f3576104f3611285565b90506020020160208101906105089190611299565b610c74565b610527565b61052788885f8181106104f3576104f3611285565b88888381811061053957610539611285565b905060200201602081019061054e9190611299565b9061057d57604051636d4e141560e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b5061061988888381811061059357610593611285565b90506020020160208101906105a89190611299565b8585848181106105ba576105ba611285565b90506020028101906105cc91906112d3565b856040516020016105df93929190611316565b60408051601f1981840301815291905287156106135788888581811061060757610607611285565b90506020020135610ced565b5f610ced565b5060010161045f565b5050505050505050565b7f000000000000000000000000000000000000000000000000000000000000000060405163b760faf960e01b81523060048201526001600160a01b03919091169063b760faf99034906024015f604051808303818588803b15801561068f575f5ffd5b505af11580156106a1573d5f5f3e3d5ffd5b5050505050565b7f5d8e12c39142ff96d79d04d15d1ba1269e4fe57bb9d26f43523628b34ba108ec6106d281610a9d565b7f000000000000000000000000000000000000000000000000000000000000000060405163040b850f60e31b81526001600160a01b03858116600483015260248201859052919091169063205c2878906044015f604051808303815f87803b15801561073c575f5ffd5b505af115801561074e573d5f5f3e3d5ffd5b50505050505050565b5f918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b5f610788610b9f565b905061079385610c74565b85906107be57604051636d4e141560e01b81526001600160a01b039091166004820152602401610574565b506107ed858484846040516020016107d893929190611316565b60405160208183030381529060405286610ced565b505050505050565b6040516370a0823160e01b81523060048201525f906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a08231906024015b602060405180830381865afa15801561085a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061087e919061133c565b905090565b604051631aab3f0d60e11b81523060048201525f60248201819052906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906335567e1a9060440161083f565b5f828152602081905260409020600101546108f281610a9d565b6103dd8383610b36565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146109745760405162461bcd60e51b815260206004820152601c60248201527f6163636f756e743a206e6f742066726f6d20456e747279506f696e74000000006044820152606401610574565b565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c829052603c81205f6109f0826109b76101008801886112d3565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250610db992505050565b9050610a1c7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6382610757565b610a2b5760019250505061038e565b805f805c6001600160a01b0319166001600160a01b03831617905d505f95945050505050565b50565b8015610a51576040515f9033905f1990849084818181858888f193505050503d805f81146106a1576040519150601f19603f3d011682016040523d82523d5f602084013e6106a1565b610a518133610de1565b5f610ab28383610757565b610b2f575f838152602081815260408083206001600160a01b03861684529091529020805460ff19166001179055610ae73390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a450600161038e565b505f61038e565b5f610b418383610757565b15610b2f575f838152602081815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a450600161038e565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163303610c18575f5c6001600160a01b0316610bf857604051636ca7ff7d60e01b815260040160405180910390fd5b506001600160a01b035f805c918216916001600160a01b031916815d5090565b610c427fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6333610757565b3390610c6d57604051633c687f6b60e21b81526001600160a01b039091166004820152602401610574565b5033905090565b6040513060248201525f90819060440160408051601f19818403018152919052602080820180516001600160e01b031663572b6c0560e01b17815282519293505f928392839290918391895afa92503d91505f519050828015610cd8575060208210155b8015610ce357505f81115b9695505050505050565b606081471015610d195760405163cf47918160e01b815247600482015260248101839052604401610574565b5f610d25858486610e1e565b9050808015610d4657505f3d1180610d4657505f856001600160a01b03163b115b15610d5b57610d53610e33565b9150506103b2565b8015610d8557604051639996b31560e01b81526001600160a01b0386166004820152602401610574565b3d15610d9857610d93610e4c565b610db1565b60405163d6bda27560e01b815260040160405180910390fd5b509392505050565b5f5f5f5f610dc78686610e57565b925092509250610dd78282610ea0565b5090949350505050565b610deb8282610757565b610e1a5760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610574565b5050565b5f5f5f83516020850186885af1949350505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f5f5f8351604103610e8e576020840151604085015160608601515f1a610e8088828585610f58565b955095509550505050610e99565b505081515f91506002905b9250925092565b5f826003811115610eb357610eb3611353565b03610ebc575050565b6001826003811115610ed057610ed0611353565b03610eee5760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610f0257610f02611353565b03610f235760405163fce698f760e01b815260048101829052602401610574565b6003826003811115610f3757610f37611353565b03610e1a576040516335e2f38360e21b815260048101829052602401610574565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610f9157505f91506003905082611016565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610fe2573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b03811661100d57505f925060019150829050611016565b92505f91508190505b9450945094915050565b5f60208284031215611030575f5ffd5b81356001600160e01b0319811681146103b2575f5ffd5b5f5f5f60608486031215611059575f5ffd5b833567ffffffffffffffff81111561106f575f5ffd5b84016101208187031215611081575f5ffd5b95602085013595506040909401359392505050565b5f602082840312156110a6575f5ffd5b5035919050565b6001600160a01b0381168114610a51575f5ffd5b5f5f604083850312156110d2575f5ffd5b8235915060208301356110e4816110ad565b809150509250929050565b5f5f83601f8401126110ff575f5ffd5b50813567ffffffffffffffff811115611116575f5ffd5b6020830191508360208260051b8501011115611130575f5ffd5b9250929050565b5f5f5f5f5f5f6060878903121561114c575f5ffd5b863567ffffffffffffffff811115611162575f5ffd5b61116e89828a016110ef565b909750955050602087013567ffffffffffffffff81111561118d575f5ffd5b61119989828a016110ef565b909550935050604087013567ffffffffffffffff8111156111b8575f5ffd5b6111c489828a016110ef565b979a9699509497509295939492505050565b5f5f604083850312156111e7575f5ffd5b82356111f2816110ad565b946020939093013593505050565b5f5f5f5f60608587031215611213575f5ffd5b843561121e816110ad565b935060208501359250604085013567ffffffffffffffff811115611240575f5ffd5b8501601f81018713611250575f5ffd5b803567ffffffffffffffff811115611266575f5ffd5b876020828401011115611277575f5ffd5b949793965060200194505050565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156112a9575f5ffd5b81356103b2816110ad565b8181038181111561038e57634e487b7160e01b5f52601160045260245ffd5b5f5f8335601e198436030181126112e8575f5ffd5b83018035915067ffffffffffffffff821115611302575f5ffd5b602001915036819003821315611130575f5ffd5b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b5f6020828403121561134c575f5ffd5b5051919050565b634e487b7160e01b5f52602160045260245ffdfea2646970667358221220c5b17cabd793a1d90f954c53479aa8d3b6256dd7cb946e209ee8a22dfa0c0bea64736f6c634300081e0033","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 0x1020 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 0x1047 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 0x1096 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 0x10C1 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 0x10C1 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 0x1137 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 0x11D6 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 0x10C1 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 0x1200 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 0x10C1 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 0x1285 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x494 SWAP2 SWAP1 PUSH2 0x1299 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 DUP9 PUSH2 0x4AA PUSH1 0x1 DUP6 PUSH2 0x12B4 JUMP JUMPDEST DUP2 DUP2 LT PUSH2 0x4B9 JUMPI PUSH2 0x4B9 PUSH2 0x1285 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x4CE SWAP2 SWAP1 PUSH2 0x1299 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 0x1285 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x508 SWAP2 SWAP1 PUSH2 0x1299 JUMP JUMPDEST PUSH2 0xC74 JUMP JUMPDEST PUSH2 0x527 JUMP JUMPDEST PUSH2 0x527 DUP9 DUP9 PUSH0 DUP2 DUP2 LT PUSH2 0x4F3 JUMPI PUSH2 0x4F3 PUSH2 0x1285 JUMP JUMPDEST DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x539 JUMPI PUSH2 0x539 PUSH2 0x1285 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x54E SWAP2 SWAP1 PUSH2 0x1299 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 0x1285 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x5A8 SWAP2 SWAP1 PUSH2 0x1299 JUMP JUMPDEST DUP6 DUP6 DUP5 DUP2 DUP2 LT PUSH2 0x5BA JUMPI PUSH2 0x5BA PUSH2 0x1285 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x5CC SWAP2 SWAP1 PUSH2 0x12D3 JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x5DF SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1316 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 0x1285 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 0x1316 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 0x133C 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 0x12D3 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 0xDB9 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 0xDE1 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 PUSH2 0xD25 DUP6 DUP5 DUP7 PUSH2 0xE1E JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0xD46 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0xD46 JUMPI POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0xD5B JUMPI PUSH2 0xD53 PUSH2 0xE33 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3B2 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xD85 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x574 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0xD98 JUMPI PUSH2 0xD93 PUSH2 0xE4C JUMP JUMPDEST PUSH2 0xDB1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0xDC7 DUP7 DUP7 PUSH2 0xE57 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0xDD7 DUP3 DUP3 PUSH2 0xEA0 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0xDEB DUP3 DUP3 PUSH2 0x757 JUMP JUMPDEST PUSH2 0xE1A 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 PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 DUP9 GAS CALL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x41 SUB PUSH2 0xE8E JUMPI PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH0 BYTE PUSH2 0xE80 DUP9 DUP3 DUP6 DUP6 PUSH2 0xF58 JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP PUSH2 0xE99 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 0xEB3 JUMPI PUSH2 0xEB3 PUSH2 0x1353 JUMP JUMPDEST SUB PUSH2 0xEBC JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xED0 JUMPI PUSH2 0xED0 PUSH2 0x1353 JUMP JUMPDEST SUB PUSH2 0xEEE 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 0xF02 JUMPI PUSH2 0xF02 PUSH2 0x1353 JUMP JUMPDEST SUB PUSH2 0xF23 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 0xF37 JUMPI PUSH2 0xF37 PUSH2 0x1353 JUMP JUMPDEST SUB PUSH2 0xE1A 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 PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0xF91 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x1016 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 0xFE2 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 0x100D JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x1016 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 0x1030 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 0x1059 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x106F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH2 0x120 DUP2 DUP8 SUB SLT ISZERO PUSH2 0x1081 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 0x10A6 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 0x10D2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x10E4 DUP2 PUSH2 0x10AD JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x10FF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1116 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1130 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 0x114C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1162 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x116E DUP10 DUP3 DUP11 ADD PUSH2 0x10EF JUMP JUMPDEST SWAP1 SWAP8 POP SWAP6 POP POP PUSH1 0x20 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x118D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1199 DUP10 DUP3 DUP11 ADD PUSH2 0x10EF JUMP JUMPDEST SWAP1 SWAP6 POP SWAP4 POP POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x11B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x11C4 DUP10 DUP3 DUP11 ADD PUSH2 0x10EF 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 0x11E7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x11F2 DUP2 PUSH2 0x10AD 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 0x1213 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x121E DUP2 PUSH2 0x10AD JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1240 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x1250 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1266 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x1277 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 0x12A9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3B2 DUP2 PUSH2 0x10AD 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 0x12E8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1302 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x1130 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 0x134C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD 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 0xC5 0xB1 PUSH29 0xABD793A1D90F954C53479AA8D3B6256DD7CB946E209EE8A22DFA0C0BEA PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"1158:5897:20:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2541:202:54;;;;;;;;;;-1:-1:-1;2541:202:54;;;;;:::i;:::-;;:::i;:::-;;;470:14:125;;463:22;445:41;;433:2;418:18;2541:202:54;;;;;;;;1295:66:20;;;;;;;;;;;;1335:26;1295:66;;;;;643:25:125;;;631:2;616:18;1295:66:20;497:177:125;1139:385:0;;;;;;;;;;-1:-1:-1;1139:385:0;;;;;:::i;:::-;;:::i;3786:120:54:-;;;;;;;;;;-1:-1:-1;3786:120:54;;;;;:::i;:::-;3851:7;3877:12;;;;;;;;;;:22;;;;3786:120;4202:136;;;;;;;;;;-1:-1:-1;4202:136:54;;;;;:::i;:::-;;:::i;:::-;;5304:245;;;;;;;;;;-1:-1:-1;5304:245:54;;;;;:::i;:::-;;:::i;3868:628:20:-;;;;;;;;;;-1:-1:-1;3868:628:20;;;;;:::i;:::-;;:::i;6644:103::-;;;:::i;6887:166::-;;;;;;;;;;-1:-1:-1;6887:166:20;;;;;:::i;:::-;;:::i;2830:136:54:-;;;;;;;;;;-1:-1:-1;2830:136:54;;;;;:::i;:::-;;:::i;2196:49::-;;;;;;;;;;-1:-1:-1;2196:49:54;2241:4;2196:49;;1654:102:20;;;;;;;;;;-1:-1:-1;1654:102:20;;-1:-1:-1;;;;;1740:11:20;4289:32:125;4271:51;;4259:2;4244:18;1654:102:20;4105:223:125;3203:294:20;;;;;;;;;;-1:-1:-1;3203:294:20;;;;;:::i;:::-;;:::i;6462:107::-;;;;;;;;;;;;;:::i;771:121:0:-;;;;;;;;;;;;;:::i;4618:138:54:-;;;;;;;;;;-1:-1:-1;4618:138:54;;;;;:::i;:::-;;:::i;1225:66:20:-;;;;;;;;;;;;1265:26;1225:66;;2541:202:54;2626:4;-1:-1:-1;;;;;;2649:47:54;;-1:-1:-1;;;2649:47:54;;:87;;-1:-1:-1;;;;;;;;;;829:40:102;;;2700:36:54;2642:94;2541:202;-1:-1:-1;;2541:202:54: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;4202:136:54:-;3851:7;3877:12;;;;;;;;;;:22;;;2473:16;2484:4;2473:10;:16::i;:::-;4306:25:::1;4317:4;4323:7;4306:10;:25::i;:::-;;4202:136:::0;;;:::o;5304:245::-;-1:-1:-1;;;;;5397:34:54;;735:10:89;5397:34:54;5393:102;;5454:30;;-1:-1:-1;;;5454:30:54;;;;;;;;;;;5393:102;5505:37;5517:4;5523:18;5505:11;:37::i;:::-;;5304:245;;:::o;3868:628:20:-;3979:14;3996:34;:32;:34::i;:::-;3979:51;-1:-1:-1;4040:26:20;;;;;:80;;-1:-1:-1;4071:17:20;;;;;:48;;-1:-1:-1;4092:27:20;;;;4071:48;4036:111;;;4129:18;;-1:-1:-1;;;4129:18:20;;;;;;;;;;;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:20;:4;;4265:5;4269:1;4265;:5;:::i;:::-;4260:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;4260:22:20;;: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:20;;-1:-1:-1;;;;;4289:32:125;;;4203:167:20;;;4271:51:125;4244:18;;4203:167:20;;;;;;;;;;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:20;;;;;;;;;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:20;;4153:339;;;;3973:523;3868:628;;;;;;:::o;6644:103::-;1740:11;6687:55;;-1:-1:-1;;;6687:55:20;;6736:4;6687:55;;;4271:51:125;-1:-1:-1;;;;;6687:22:20;;;;;;;6717:9;;4244:18:125;;6687:55:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6644:103::o;6887:166::-;1265:26;2473:16:54;2484:4;2473:10;:16::i;:::-;1740:11:20;7000:48:::1;::::0;-1:-1:-1;;;7000:48:20;;-1:-1:-1;;;;;7100:32:125;;;7000:48:20::1;::::0;::::1;7082:51:125::0;7149:18;;;7142:34;;;7000:23:20;;;::::1;::::0;::::1;::::0;7055:18:125;;7000:48:20::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6887:166:::0;;;:::o;2830:136:54:-;2907:4;2930:12;;;;;;;;;;;-1:-1:-1;;;;;2930:29:54;;;;;;;;;;;;;;;2830:136::o;3203:294:20:-;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:20;;-1:-1:-1;;;;;4289:32:125;;;3342:70:20;;;4271:51:125;4244:18;;3342:70:20;4105:223:125;3342:70:20;;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:20;;6558:4;6527:37;;;4271:51:125;6505:7:20;;-1:-1:-1;;;;;1740:11:20;6527:22;;;;4244:18:125;;6527:37:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6520:44;;6462:107;:::o;771:121:0:-;846:39;;-1:-1:-1;;;846:39:0;;876:4;846:39;;;7558:51:125;820:7:0;7625:18:125;;;7618:60;;;820:7:0;-1:-1:-1;;;;;1740:11:20;846:21:0;;;;7531:18:125;;846:39:0;7376:308:125;4618:138:54;3851:7;3877:12;;;;;;;;;;:22;;;2473:16;2484:4;2473:10;:16::i;:::-;4723:26:::1;4735:4;4741:7;4723:11;:26::i;1605:183:0:-:0;1692:10;-1:-1:-1;;;;;1740:11:20;1692:35:0;;1671:110;;;;-1:-1:-1;;;1671:110:0;;7891:2:125;1671:110:0;;;7873:21:125;7930:2;7910:18;;;7903:30;7969;7949:18;;;7942:58;8017:18;;1671:110:0;7689:352:125;1671:110:0;1605:183::o;4547:527:20:-;1401:34:101;4679:22:20;1388:48:101;;;1497:4;1490:25;;;1595:4;1579:21;;4781:17:20;4801:37;4709:66;4821:16;;;;:6;:16;:::i;:::-;4801:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4801:13:20;;-1:-1:-1;;;4801:37:20:i;:::-;4781:57;;4849:33;1335:26;4872:9;4849:7;:33::i;:::-;4844:68;;305:1:2;4884:28:20;;;;;;4844:68;5025:9;5009:13;:25;;-1:-1:-1;;;;;;5009:25:20;-1:-1:-1;;;;;5009:25:20;;;;;-1:-1:-1;465:1:2;;4547:527:20;-1:-1:-1;;;;;4547:527:20: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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3175:103:54;3241:30;3252:4;735:10:89;3241::54;:30::i;6155:316::-;6232:4;6253:22;6261:4;6267:7;6253;:22::i;:::-;6248:217;;6291:6;:12;;;;;;;;;;;-1:-1:-1;;;;;6291:29:54;;;;;;;;;:36;;-1:-1:-1;;6291:36:54;6323:4;6291:36;;;6373:12;735:10:89;;656:96;6373:12:54;-1:-1:-1;;;;;6346:40:54;6364:7;-1:-1:-1;;;;;6346:40:54;6358:4;6346:40;;;;;;;;;;-1:-1:-1;6407:4:54;6400:11;;6248:217;-1:-1:-1;6449:5:54;6442:12;;6708:317;6786:4;6806:22;6814:4;6820:7;6806;:22::i;:::-;6802:217;;;6876:5;6844:12;;;;;;;;;;;-1:-1:-1;;;;;6844:29:54;;;;;;;;;;:37;;-1:-1:-1;;6844:37:54;;;6900:40;735:10:89;;6844:12:54;;6900:40;;6876:5;6900:40;-1:-1:-1;6961:4:54;6954:11;;2185:783:20;2247:14;1740:11;-1:-1:-1;;;;;2273:35:20;:10;:35;2269:581;;2351:1;2326:13;-1:-1:-1;;;;;2326:13:20;2318:58;;;;-1:-1:-1;;;2318:58:20;;;;;;;;;;;;-1:-1:-1;;;;;;2393:13:20;;;;;;;-1:-1:-1;;;;;;2796:26:20;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:20;;-1:-1:-1;;;;;4289:32:125;;;2855:85:20;;;4271:51:125;4244:18;;2855:85:20;4105:223:125;2855:85:20;;2953:10;2946:17;;2185:783;:::o;5341:1052::-;5448:66;;5507:4;5448:66;;;4271:51:125;5407:4:20;;;;4244:18:125;;5448:66:20;;;-1:-1:-1;;5448:66:20;;;;;;;;;;;;;;;-1:-1:-1;;;;;5448:66:20;-1:-1:-1;;;5448:66:20;;;6224:20;;5448:66;;-1:-1:-1;;;;;;;5448:66:20;;-1:-1:-1;;6190:6:20;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:20:o;3165:696:87:-;3264:12;3316:5;3292:21;:29;3288:123;;;3344:56;;-1:-1:-1;;;3344:56:87;;3371:21;3344:56;;;8430:25:125;8471:18;;;8464:34;;;8403:18;;3344:56:87;8256:248:125;3288:123:87;3420:12;3435:46;3461:6;3469:5;3476:4;3435:25;:46::i;:::-;3420:61;;3495:7;:72;;;;-1:-1:-1;3539:1:87;4583:16:91;3507:33:87;:59;;;;3565:1;3544:6;-1:-1:-1;;;;;3544:18:87;;:22;3507:59;3491:364;;;3590:25;:23;:25::i;:::-;3583:32;;;;;3491:364;3636:7;3632:223;;;3666:24;;-1:-1:-1;;;3666:24:87;;-1:-1:-1;;;;;4289:32:125;;3666:24:87;;;4271:51:125;4244:18;;3666:24:87;4105:223:125;3632::87;4583:16:91;3711:33:87;3707:148;;3760:27;:25;:27::i;:::-;3707:148;;;3825:19;;-1:-1:-1;;;3825:19:87;;;;;;;;;;;3707:148;3278:583;3165:696;;;;;:::o;5290:255:99:-;5368:7;5388:17;5407:18;5427:16;5447:27;5458:4;5464:9;5447:10;:27::i;:::-;5387:87;;;;;;5484:28;5496:5;5503:8;5484:11;:28::i;:::-;-1:-1:-1;5529:9:99;;5290:255;-1:-1:-1;;;;5290:255:99:o;3408:197:54:-;3496:22;3504:4;3510:7;3496;:22::i;:::-;3491:108;;3541:47;;-1:-1:-1;;;3541:47:54;;-1:-1:-1;;;;;7100:32:125;;3541:47:54;;;7082:51:125;7149:18;;;7142:34;;;7055:18;;3541:47:54;6892:290:125;3491:108:54;3408:197;;:::o;791:248:91:-;881:12;1018:4;1012;1005;999:11;992:4;986;982:15;975:5;967:6;960:5;955:68;944:79;791:248;-1:-1:-1;;;;791:248:91:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;2433:778:99;2536:17;2555:16;2573:14;2603:9;:16;2623:2;2603:22;2599:606;;2908:4;2893:20;;2887:27;2957:4;2942:20;;2936:27;3014:4;2999:20;;2993:27;2641:9;2985:36;3055:25;3066:4;2985:36;2887:27;2936;3055:10;:25::i;:::-;3048:32;;;;;;;;;;;2599:606;-1:-1:-1;;3176:16:99;;3127:1;;-1:-1:-1;3131:35:99;;2599:606;2433:778;;;;;:::o;11630:532::-;11725:20;11716:5;:29;;;;;;;;:::i;:::-;;11712:444;;11630:532;;:::o;11712:444::-;11821:29;11812:5;:38;;;;;;;;:::i;:::-;;11808:348;;11873:23;;-1:-1:-1;;;11873:23:99;;;;;;;;;;;11808:348;11926:35;11917:5;:44;;;;;;;;:::i;:::-;;11913:243;;11984:46;;-1:-1:-1;;;11984:46:99;;;;;643:25:125;;;616:18;;11984:46:99;497:177:125;11913:243:99;12060:30;12051:5;:39;;;;;;;;:::i;:::-;;12047:109;;12113:32;;-1:-1:-1;;;12113:32:99;;;;;643:25:125;;;616:18;;12113:32:99;497:177:125;7142:1551:99;7268:17;;;8222:66;8209:79;;8205:164;;;-1:-1:-1;8320:1:99;;-1:-1:-1;8324:30:99;;-1:-1:-1;8356:1:99;8304:54;;8205:164;8480:24;;;8463:14;8480:24;;;;;;;;;9147:25:125;;;9220:4;9208:17;;9188:18;;;9181:45;;;;9242:18;;;9235:34;;;9285:18;;;9278:34;;;8480:24:99;;9119:19:125;;8480:24:99;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8480:24:99;;-1:-1:-1;;8480:24:99;;;-1:-1:-1;;;;;;;8518:20:99;;8514:113;;-1:-1:-1;8570:1:99;;-1:-1:-1;8574:29:99;;-1:-1:-1;8570:1:99;;-1:-1:-1;8554:62:99;;8514:113;8645:6;-1:-1:-1;8653:20:99;;-1:-1:-1;8653:20:99;;-1:-1:-1;7142:1551:99;;;;;;;;;:::o;14:286:125:-;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:125;;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:125;1261:18;;;1248:32;;679:633;-1:-1:-1;;;679:633:125: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:125;;1499:226;-1:-1:-1;1499:226:125:o;1730:131::-;-1:-1:-1;;;;;1805:31:125;;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:125;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:125;;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:125;-1:-1:-1;;3209:2:125;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:125;-1:-1:-1;;3488:2:125;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:125;;-1:-1:-1;2610:1110:125;;3679:8;;2610:1110;-1:-1:-1;;;2610:1110:125: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:125:o;4333:841::-;4421:6;4429;4437;4445;4498:2;4486:9;4477:7;4473:23;4469:32;4466:52;;;4514:1;4511;4504:12;4466:52;4553:9;4540:23;4572:31;4597:5;4572:31;:::i;:::-;4622:5;-1:-1:-1;4700:2:125;4685:18;;4672:32;;-1:-1:-1;4781:2:125;4766:18;;4753:32;4808:18;4797:30;;4794:50;;;4840:1;4837;4830:12;4794:50;4863:22;;4916:4;4908:13;;4904:27;-1:-1:-1;4894:55:125;;4945:1;4942;4935:12;4894:55;4985:2;4972:16;5011:18;5003:6;5000:30;4997:50;;;5043:1;5040;5033:12;4997:50;5088:7;5083:2;5074:6;5070:2;5066:15;5062:24;5059:37;5056:57;;;5109:1;5106;5099:12;5056:57;4333:841;;;;-1:-1:-1;5140:2:125;5132:11;;-1:-1:-1;;;4333:841:125:o;5179:127::-;5240:10;5235:3;5231:20;5228:1;5221:31;5271:4;5268:1;5261:15;5295:4;5292:1;5285:15;5311:247;5370:6;5423:2;5411:9;5402:7;5398:23;5394:32;5391:52;;;5439:1;5436;5429:12;5391:52;5478:9;5465:23;5497:31;5522:5;5497:31;:::i;5563:225::-;5630:9;;;5651:11;;;5648:134;;;5704:10;5699:3;5695:20;5692:1;5685:31;5739:4;5736:1;5729:15;5767:4;5764:1;5757:15;6001:521;6078:4;6084:6;6144:11;6131:25;6238:2;6234:7;6223:8;6207:14;6203:29;6199:43;6179:18;6175:68;6165:96;;6257:1;6254;6247:12;6165:96;6284:33;;6336:20;;;-1:-1:-1;6379:18:125;6368:30;;6365:50;;;6411:1;6408;6401:12;6365:50;6444:4;6432:17;;-1:-1:-1;6475:14:125;6471:27;;;6461:38;;6458:58;;;6512:1;6509;6502:12;6527:360;6738:6;6730;6725:3;6712:33;6808:2;6804:15;;;;-1:-1:-1;;6800:53:125;6764:16;;6789:65;;;6878:2;6870:11;;6527:360;-1:-1:-1;6527:360:125:o;7187:184::-;7257:6;7310:2;7298:9;7289:7;7285:23;7281:32;7278:52;;;7326:1;7323;7316:12;7278:52;-1:-1:-1;7349:16:125;;7187:184;-1:-1:-1;7187:184:125:o;8788:127::-;8849:10;8844:3;8840:20;8837:1;8830:31;8880:4;8877:1;8870:15;8904:4;8901:1;8894: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.30+commit.73712a01\"},\"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 to signal 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\":\"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.\"},\"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\":{\"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol\":\"ERC2771ForwarderAccount\"},\"evmVersion\":\"prague\",\"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\"]},\"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol\":{\"keccak256\":\"0x3bec3493a4264d9719dae3e8860f27588a1392093df08bb9c78dd6129423776b\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://90e8da7c925379074bb90a1082e77fde950409cad62d31ace9704cf7cf0e8da2\",\"dweb:/ipfs/QmVYeHEeMYAYn25mg2ZHucausePwHpPsxjZDVsxp5HYssC\"]},\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0x1a6b4f6b7798ab80929d491b89d5427a9b3338c0fd1acd0ba325f69c6f1646af\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7bb7f346c12a14dc622bc105ce3c47202fbc89f4b153a28a63bb68193297330c\",\"dweb:/ipfs/QmagwF8P3bUBXwdo159ueEnY9dLSvEWwK24kk2op58egwG\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xbff9f59c84e5337689161ce7641c0ef8e872d6a7536fbc1f5133f128887aba3c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b308f882e796f7b79c9502deacb0a62983035c6f6f4e962b319ba6a1f4a77d3d\",\"dweb:/ipfs/QmaWCW7ahEQqFjwhSUhV7Ae7WhfNvzSpE7DQ58hvEooqPL\"]},\"@openzeppelin/contracts/metatx/ERC2771Context.sol\":{\"keccak256\":\"0xfdb17e982a8744014f1804df7cacdd01f1423d19d79645da61def434eb17e4f3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4b626c1803f1bd5739859d1fe12bedb8c2c964a1f93e70d6f8c3c031d338d4e3\",\"dweb:/ipfs/QmacvfA17VWEhUApA4NykdWRC1koBXqvUdgCH13ZahmRxm\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@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/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x360cf86214a764694dae1522a38200b1737fe90e46dcf56a0f89de143071cc20\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e393290a46ca6d1fa1addb40709d26e1d250638ab6acdd103b5af21768ebc7b\",\"dweb:/ipfs/QmPwT3tXwQ9NbGtZ99XRq7sr8LCQP8XaCrzw49JdXGn7us\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x6abeed5940e1da7bb329e458db9a1c5c4ea6f86d651b952af99c6bddcd6bbb94\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fe75e9a6b759c5d7fd82fb59bd4f58c672b36f0a69b84f4789b7c7895d3e61c\",\"dweb:/ipfs/QmX28wsir8w5sS3acfJMNHcBwoPsDpqCu7WDkPnUWLMNiZ\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0x2d9dc2fe26180f74c11c13663647d38e259e45f95eb88f57b61d2160b0109d3e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81233d1f98060113d9922180bb0f14f8335856fe9f339134b09335e9f678c377\",\"dweb:/ipfs/QmWh6R35SarhAn4z2wH8SU456jJSYL2FgucfTFgbHJJN4E\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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":[{"astId":19458,"contract":"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol:ERC2771ForwarderAccount","label":"_roles","offset":0,"slot":"0","type":"t_mapping(t_bytes32,t_struct(RoleData)19453_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)19453_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct AccessControl.RoleData)","numberOfBytes":"32","value":"t_struct(RoleData)19453_storage"},"t_struct(RoleData)19453_storage":{"encoding":"inplace","label":"struct AccessControl.RoleData","members":[{"astId":19450,"contract":"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol:ERC2771ForwarderAccount","label":"hasRole","offset":0,"slot":"0","type":"t_mapping(t_address,t_bool)"},{"astId":19452,"contract":"@ensuro/account-abstraction/contracts/ERC2771ForwarderAccount.sol:ERC2771ForwarderAccount","label":"adminRole","offset":0,"slot":"1","type":"t_bytes32"}],"numberOfBytes":"64"}}}}},"@ensuro/core/contracts/ETKLib.sol":{"ETKLib":{"abi":[{"inputs":[{"internalType":"uint256","name":"rejectedScale","type":"uint256"}],"name":"ScaleTooSmall","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220529bb7210935fb3fcbe27d479fed87145b13daf090ee92fcd4ad63cc5b92c8f964736f6c634300081e0033","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 MSTORE SWAP12 0xB7 0x21 MULMOD CALLDATALOAD EXTSTATICCALL EXTCODEHASH 0xCB 0xE2 PUSH30 0x479FED87145B13DAF090EE92FCD4AD63CC5B92C8F964736F6C634300081E STOP CALLER ","sourceMap":"379:15476:21:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;379:15476:21;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220529bb7210935fb3fcbe27d479fed87145b13daf090ee92fcd4ad63cc5b92c8f964736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSTORE SWAP12 0xB7 0x21 MULMOD CALLDATALOAD EXTSTATICCALL EXTCODEHASH 0xCB 0xE2 PUSH30 0x479FED87145B13DAF090EE92FCD4AD63CC5B92C8F964736F6C634300081E STOP CALLER ","sourceMap":"379:15476:21:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"rejectedScale\",\"type\":\"uint256\"}],\"name\":\"ScaleTooSmall\",\"type\":\"error\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"kind\":\"dev\",\"methods\":{},\"title\":\"ETKLib\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"Library with different datatypes and utils used by the eToken contract\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/ETKLib.sol\":\"ETKLib\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/ETKLib.sol\":{\"keccak256\":\"0x7c15a3ce23b9fcb12344a7757b9d29a29971d20f562de1f2bf483b3165706ab8\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://7debcfafaf2775084c4404d1ddd1b86361256918c34a2706b0be2066df6b46f6\",\"dweb:/ipfs/QmXzPjm9TMc6QEE1CbZ7pjhPKBBJmWDKy8xWXiM7pBgfWk\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/core/contracts/EToken.sol":{"EToken":{"abi":[{"inputs":[{"internalType":"contract IPolicyPool","name":"policyPool_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"BorrowerAlreadyAdded","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"DepositNotWhitelisted","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":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"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"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"uint256","name":"requested","type":"uint256"},{"internalType":"uint256","name":"maxWithdraw","type":"uint256"}],"name":"ExceedsMaxWithdraw","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"InvalidBorrower","type":"error"},{"inputs":[{"internalType":"contract ICooler","name":"cooler","type":"address"}],"name":"InvalidCooler","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[{"internalType":"enum IEToken.Parameter","name":"parameter","type":"uint8"}],"name":"InvalidParameter","type":"error"},{"inputs":[{"internalType":"contract ILPWhitelist","name":"whitelist","type":"address"}],"name":"InvalidWhitelist","type":"error"},{"inputs":[],"name":"InvalidYieldVault","type":"error"},{"inputs":[],"name":"NoZeroPolicyPool","type":"error"},{"inputs":[{"internalType":"uint256","name":"required","type":"uint256"},{"internalType":"uint256","name":"available","type":"uint256"}],"name":"NotEnoughCash","type":"error"},{"inputs":[{"internalType":"uint256","name":"required","type":"uint256"},{"internalType":"uint256","name":"available","type":"uint256"}],"name":"NotEnoughScrFunds","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"OnlyBorrower","type":"error"},{"inputs":[],"name":"OnlyPolicyPool","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ReserveInvalidReceiver","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"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[{"internalType":"uint256","name":"rejectedScale","type":"uint256"}],"name":"ScaleTooSmall","type":"error"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferNotWhitelisted","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[],"name":"UpgradeCannotChangePolicyPool","type":"error"},{"inputs":[{"internalType":"uint256","name":"actualUtilization","type":"uint256"},{"internalType":"uint256","name":"minUtilization","type":"uint256"}],"name":"UtilizationRateTooLow","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"WithdrawalNotWhitelisted","type":"error"},{"inputs":[{"internalType":"contract ICooler","name":"cooler","type":"address"}],"name":"WithdrawalsRequireCooldown","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":"uint256","name":"policyId","type":"uint256"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CoCRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract ICooler","name":"oldCooler","type":"address"},{"indexed":false,"internalType":"contract ICooler","name":"newCooler","type":"address"}],"name":"CoolerChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"distributedProfit","type":"uint256"}],"name":"ETokensRedistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"int256","name":"earnings","type":"int256"}],"name":"EarningsRecorded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"ErrorIgnoredDeinvestingVault","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"borrower","type":"address"}],"name":"InternalBorrowerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"defaultedDebt","type":"uint256"}],"name":"InternalBorrowerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountAsked","type":"uint256"}],"name":"InternalLoan","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"InternalLoanRepaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum IEToken.Parameter","name":"param","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"ParameterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"policyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"SCRLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"policyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"int256","name":"adjustment","type":"int256"}],"name":"SCRUnlocked","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract ILPWhitelist","name":"oldWhitelist","type":"address"},{"indexed":false,"internalType":"contract ILPWhitelist","name":"newWhitelist","type":"address"}],"name":"WhitelistChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":true,"internalType":"contract IERC4626","name":"newVault","type":"address"},{"indexed":false,"internalType":"bool","name":"forced","type":"bool"}],"name":"YieldVaultChanged","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"addBorrower","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"cooler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositIntoYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundsAvailableToLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"updated","type":"bool"}],"name":"getCurrentScale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"getLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getScaledUserBalanceAndSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"maxUtilizationRate_","type":"uint256"},{"internalType":"uint256","name":"internalLoanInterestRate_","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"internalLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"internalLoanInterestRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"investedInYV","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityRequirement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint256","name":"scrAmount","type":"uint256"},{"internalType":"uint256","name":"policyInterestRate","type":"uint256"}],"name":"lockScr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxNegativeAdjustment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxUtilizationRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minUtilizationRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recordEarnings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redistribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"removeBorrower","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"onBehalfOf","type":"address"}],"name":"repayLoan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"scaledBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"scaledTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"scr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"scrInterestRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ICooler","name":"newCooler","type":"address"}],"name":"setCooler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum IEToken.Parameter","name":"param","type":"uint8"},{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setParam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ILPWhitelist","name":"lpWhitelist_","type":"address"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC4626","name":"newYieldVault","type":"address"},{"internalType":"bool","name":"force","type":"bool"}],"name":"setYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenInterestRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalWithdrawable","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":[{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint256","name":"scrAmount","type":"uint256"},{"internalType":"uint256","name":"policyInterestRate","type":"uint256"},{"internalType":"int256","name":"adjustment","type":"int256"}],"name":"unlockScr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint256","name":"scrAmount","type":"uint256"},{"internalType":"uint256","name":"policyInterestRate","type":"uint256"},{"internalType":"int256","name":"adjustment","type":"int256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"refundAmount","type":"uint256"}],"name":"unlockScrWithRefund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"utilizationRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelist","outputs":[{"internalType":"contract ILPWhitelist","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"receiver","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFromYieldVault","outputs":[{"internalType":"uint256","name":"deinvested","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yieldVault","outputs":[{"internalType":"contract IERC4626","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_11009":{"entryPoint":null,"id":11009,"parameterSlots":1,"returnSlots":0},"@_12919":{"entryPoint":null,"id":12919,"parameterSlots":1,"returnSlots":0},"@_6073":{"entryPoint":null,"id":6073,"parameterSlots":1,"returnSlots":0},"@_disableInitializers_23388":{"entryPoint":119,"id":23388,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_23433":{"entryPoint":null,"id":23433,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_23419":{"entryPoint":null,"id":23419,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory":{"entryPoint":297,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:532:125","nodeType":"YulBlock","src":"0:532:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"116:209:125","nodeType":"YulBlock","src":"116:209:125","statements":[{"body":{"nativeSrc":"162:16:125","nodeType":"YulBlock","src":"162:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"171:1:125","nodeType":"YulLiteral","src":"171:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"174:1:125","nodeType":"YulLiteral","src":"174:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"164:6:125","nodeType":"YulIdentifier","src":"164:6:125"},"nativeSrc":"164:12:125","nodeType":"YulFunctionCall","src":"164:12:125"},"nativeSrc":"164:12:125","nodeType":"YulExpressionStatement","src":"164:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"137:7:125","nodeType":"YulIdentifier","src":"137:7:125"},{"name":"headStart","nativeSrc":"146:9:125","nodeType":"YulIdentifier","src":"146:9:125"}],"functionName":{"name":"sub","nativeSrc":"133:3:125","nodeType":"YulIdentifier","src":"133:3:125"},"nativeSrc":"133:23:125","nodeType":"YulFunctionCall","src":"133:23:125"},{"kind":"number","nativeSrc":"158:2:125","nodeType":"YulLiteral","src":"158:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"129:3:125","nodeType":"YulIdentifier","src":"129:3:125"},"nativeSrc":"129:32:125","nodeType":"YulFunctionCall","src":"129:32:125"},"nativeSrc":"126:52:125","nodeType":"YulIf","src":"126:52:125"},{"nativeSrc":"187:29:125","nodeType":"YulVariableDeclaration","src":"187:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"206:9:125","nodeType":"YulIdentifier","src":"206:9:125"}],"functionName":{"name":"mload","nativeSrc":"200:5:125","nodeType":"YulIdentifier","src":"200:5:125"},"nativeSrc":"200:16:125","nodeType":"YulFunctionCall","src":"200:16:125"},"variables":[{"name":"value","nativeSrc":"191:5:125","nodeType":"YulTypedName","src":"191:5:125","type":""}]},{"body":{"nativeSrc":"279:16:125","nodeType":"YulBlock","src":"279:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"288:1:125","nodeType":"YulLiteral","src":"288:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"291:1:125","nodeType":"YulLiteral","src":"291:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"281:6:125","nodeType":"YulIdentifier","src":"281:6:125"},"nativeSrc":"281:12:125","nodeType":"YulFunctionCall","src":"281:12:125"},"nativeSrc":"281:12:125","nodeType":"YulExpressionStatement","src":"281:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"238:5:125","nodeType":"YulIdentifier","src":"238:5:125"},{"arguments":[{"name":"value","nativeSrc":"249:5:125","nodeType":"YulIdentifier","src":"249:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"264:3:125","nodeType":"YulLiteral","src":"264:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"269:1:125","nodeType":"YulLiteral","src":"269:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"260:3:125","nodeType":"YulIdentifier","src":"260:3:125"},"nativeSrc":"260:11:125","nodeType":"YulFunctionCall","src":"260:11:125"},{"kind":"number","nativeSrc":"273:1:125","nodeType":"YulLiteral","src":"273:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"256:3:125","nodeType":"YulIdentifier","src":"256:3:125"},"nativeSrc":"256:19:125","nodeType":"YulFunctionCall","src":"256:19:125"}],"functionName":{"name":"and","nativeSrc":"245:3:125","nodeType":"YulIdentifier","src":"245:3:125"},"nativeSrc":"245:31:125","nodeType":"YulFunctionCall","src":"245:31:125"}],"functionName":{"name":"eq","nativeSrc":"235:2:125","nodeType":"YulIdentifier","src":"235:2:125"},"nativeSrc":"235:42:125","nodeType":"YulFunctionCall","src":"235:42:125"}],"functionName":{"name":"iszero","nativeSrc":"228:6:125","nodeType":"YulIdentifier","src":"228:6:125"},"nativeSrc":"228:50:125","nodeType":"YulFunctionCall","src":"228:50:125"},"nativeSrc":"225:70:125","nodeType":"YulIf","src":"225:70:125"},{"nativeSrc":"304:15:125","nodeType":"YulAssignment","src":"304:15:125","value":{"name":"value","nativeSrc":"314:5:125","nodeType":"YulIdentifier","src":"314:5:125"},"variableNames":[{"name":"value0","nativeSrc":"304:6:125","nodeType":"YulIdentifier","src":"304:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory","nativeSrc":"14:311:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"82:9:125","nodeType":"YulTypedName","src":"82:9:125","type":""},{"name":"dataEnd","nativeSrc":"93:7:125","nodeType":"YulTypedName","src":"93:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"105:6:125","nodeType":"YulTypedName","src":"105:6:125","type":""}],"src":"14:311:125"},{"body":{"nativeSrc":"429:101:125","nodeType":"YulBlock","src":"429:101:125","statements":[{"nativeSrc":"439:26:125","nodeType":"YulAssignment","src":"439:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"451:9:125","nodeType":"YulIdentifier","src":"451:9:125"},{"kind":"number","nativeSrc":"462:2:125","nodeType":"YulLiteral","src":"462:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"447:3:125","nodeType":"YulIdentifier","src":"447:3:125"},"nativeSrc":"447:18:125","nodeType":"YulFunctionCall","src":"447:18:125"},"variableNames":[{"name":"tail","nativeSrc":"439:4:125","nodeType":"YulIdentifier","src":"439:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"481:9:125","nodeType":"YulIdentifier","src":"481:9:125"},{"arguments":[{"name":"value0","nativeSrc":"496:6:125","nodeType":"YulIdentifier","src":"496:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"512:2:125","nodeType":"YulLiteral","src":"512:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"516:1:125","nodeType":"YulLiteral","src":"516:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"508:3:125","nodeType":"YulIdentifier","src":"508:3:125"},"nativeSrc":"508:10:125","nodeType":"YulFunctionCall","src":"508:10:125"},{"kind":"number","nativeSrc":"520:1:125","nodeType":"YulLiteral","src":"520:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"504:3:125","nodeType":"YulIdentifier","src":"504:3:125"},"nativeSrc":"504:18:125","nodeType":"YulFunctionCall","src":"504:18:125"}],"functionName":{"name":"and","nativeSrc":"492:3:125","nodeType":"YulIdentifier","src":"492:3:125"},"nativeSrc":"492:31:125","nodeType":"YulFunctionCall","src":"492:31:125"}],"functionName":{"name":"mstore","nativeSrc":"474:6:125","nodeType":"YulIdentifier","src":"474:6:125"},"nativeSrc":"474:50:125","nodeType":"YulFunctionCall","src":"474:50:125"},"nativeSrc":"474:50:125","nodeType":"YulExpressionStatement","src":"474:50:125"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"330:200:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"398:9:125","nodeType":"YulTypedName","src":"398:9:125","type":""},{"name":"value0","nativeSrc":"409:6:125","nodeType":"YulTypedName","src":"409:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"420:4:125","nodeType":"YulTypedName","src":"420:4:125","type":""}],"src":"330:200:125"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$14638_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_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}","id":125,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60c060405230608052348015610013575f5ffd5b506040516153e13803806153e183398101604081905261003291610129565b80806001600160a01b03811661005b57604051636b23cf0160e01b815260040160405180910390fd5b610063610077565b6001600160a01b031660a052506101569050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100c75760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101265780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b5f60208284031215610139575f5ffd5b81516001600160a01b038116811461014f575f5ffd5b9392505050565b60805160a05161521d6101c45f395f818161059e01528181610ee9015281816111a30152818161139801528181611a5401528181611c2d0152818161259f0152818161292901528181612a320152613f7e01525f8181613197015281816131c001526134f8015261521d5ff3fe608060405260043610610371575f3560e01c80637d919a97116101c8578063ad3cb1cc116100fd578063d17e6c931161009d578063dfcb48bd1161006d578063dfcb48bd146109ce578063e3a8e29c146109e2578063e5a6b10f14610a01578063ee01a18314610a15575f5ffd5b8063d17e6c9314610952578063d336078c14610971578063d505accf14610990578063dd62ed3e146109af575f5ffd5b8063c1cca2b3116100d8578063c1cca2b3146108e3578063c3df9dac14610902578063cda4bcc214610921578063cf6a9a9414610935575f5ffd5b8063ad3cb1cc14610882578063b1bf962d146108b2578063ba4e8df5146108cf575f5ffd5b80639d90724d11610168578063a227dc4111610143578063a227dc4114610808578063a7f8a5e214610827578063a9059cbb14610844578063ac860f7414610863575f5ffd5b80639d90724d146107b1578063a08f2203146107d5578063a0ce552d146107e9575f5ffd5b8063854cff2f116101a3578063854cff2f14610742578063918344d31461076157806393e59dc11461078057806395d89b411461079d575f5ffd5b80637d919a97146106e85780637ecebe00146106fc57806384b0196e1461071b575f5ffd5b806333481fc9116102a95780634ffcda8c116102495780636fe0e395116102195780636fe0e3951461066c57806370a082311461068b57806376c7fc55146106aa57806379d989fb146106c9575f5ffd5b80634ffcda8c1461061157806352d1902d146106305780636c321c8a146106445780636c6f454214610658575f5ffd5b80634d15eb03116102845780634d15eb03146105905780634eb978a4146105d65780634f1ef286146105ea5780634fe0bd1e146105fd575f5ffd5b806333481fc91461053e5780633644e5151461055d5780633ad2820b14610571575f5ffd5b806318160ddd1161031457806323b872dd116102ef57806323b872dd146104bb57806323e103a8146104da5780632e2d2984146104f9578063313ce56714610518575f5ffd5b806318160ddd14610467578063194448e51461047b5780631da24f3e1461049c575f5ffd5b8063095ea7b31161034f578063095ea7b3146103ec5780630afbcdc91461040b578063159ec2df1461043f57806316db000f14610453575f5ffd5b806301ffc9a7146103755780630600a865146103a957806306fdde03146103cb575b5f5ffd5b348015610380575f5ffd5b5061039461038f36600461489c565b610a29565b60405190151581526020015b60405180910390f35b3480156103b4575f5ffd5b506103bd610a8a565b6040519081526020016103a0565b3480156103d6575f5ffd5b506103df610ae6565b6040516103a091906148f1565b3480156103f7575f5ffd5b50610394610406366004614917565b610b8b565b348015610416575f5ffd5b5061042a610425366004614941565b610ba2565b604080519283526020830191909152016103a0565b34801561044a575f5ffd5b506103bd610bc4565b34801561045e575f5ffd5b506103bd610c04565b348015610472575f5ffd5b506103bd610c26565b348015610486575f5ffd5b5061049a610495366004614969565b610c54565b005b3480156104a7575f5ffd5b506103bd6104b6366004614941565b610eae565b3480156104c6575f5ffd5b506103946104d53660046149a0565b610eb8565b3480156104e5575f5ffd5b506103bd6104f43660046149de565b610edd565b348015610504575f5ffd5b5061049a610513366004614a2e565b611198565b348015610523575f5ffd5b5061052c611395565b60405160ff90911681526020016103a0565b348015610549575f5ffd5b506103bd610558366004614941565b611475565b348015610568575f5ffd5b506103bd6114f7565b34801561057c575f5ffd5b5061049a61058b366004614a6d565b611500565b34801561059b575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020016103a0565b3480156105e1575f5ffd5b5061049a6115a6565b61049a6105f8366004614b49565b6116d6565b348015610608575f5ffd5b506103bd6116f5565b34801561061c575f5ffd5b5061049a61062b366004614ba9565b611709565b34801561063b575f5ffd5b506103bd61186c565b34801561064f575f5ffd5b506103bd611887565b348015610663575f5ffd5b506103bd611905565b348015610677575f5ffd5b5061049a610686366004614bf0565b611918565b348015610696575f5ffd5b506103bd6106a5366004614941565b611a30565b3480156106b5575f5ffd5b5061049a6106c4366004614941565b611a49565b3480156106d4575f5ffd5b506103bd6106e3366004614c64565b611b2d565b3480156106f3575f5ffd5b506032546103bd565b348015610707575f5ffd5b506103bd610716366004614941565b611b67565b348015610726575f5ffd5b5061072f611b71565b6040516103a09796959493929190614c7f565b34801561074d575f5ffd5b5061049a61075c366004614941565b611c1a565b34801561076c575f5ffd5b5061049a61077b366004614d15565b611d55565b34801561078b575f5ffd5b506067546001600160a01b03166105be565b3480156107a8575f5ffd5b506103df611e9a565b3480156107bc575f5ffd5b50606554600160801b90046001600160801b03166103bd565b3480156107e0575f5ffd5b506103bd611ed8565b3480156107f4575f5ffd5b5061049a610803366004614d38565b611fcb565b348015610813575f5ffd5b5061049a610822366004614d4f565b61201e565b348015610832575f5ffd5b506068546001600160a01b03166105be565b34801561084f575f5ffd5b5061039461085e366004614917565b612076565b34801561086e575f5ffd5b5061049a61087d366004614d38565b612083565b34801561088d575f5ffd5b506103df604051806040016040528060058152602001640352e302e360dc1b81525081565b3480156108bd575f5ffd5b506064546001600160801b03166103bd565b3480156108da575f5ffd5b506103bd612209565b3480156108ee575f5ffd5b5061049a6108fd366004614d7e565b612222565b34801561090d575f5ffd5b506103bd61091c366004614d15565b612426565b34801561092c575f5ffd5b506103bd612573565b348015610940575f5ffd5b506069546001600160a01b03166105be565b34801561095d575f5ffd5b5061049a61096c366004614941565b61258c565b34801561097c575f5ffd5b506103bd61098b366004614d38565b6126c7565b34801561099b575f5ffd5b5061049a6109aa366004614dab565b612767565b3480156109ba575f5ffd5b506103bd6109c9366004614e17565b6128bc565b3480156109d9575f5ffd5b506103bd612905565b3480156109ed575f5ffd5b5061049a6109fc366004614941565b61291e565b348015610a0c575f5ffd5b506105be612a2f565b348015610a20575f5ffd5b506103bd612ab0565b5f610a3382612ac9565b80610a4e57506001600160e01b031982166336372b0760e01b145b80610a6957506001600160e01b0319821663a219a02560e01b145b80610a8457506001600160e01b03198216636d5136b160e11b145b92915050565b5f5f610ab9610a97612209565b670de0b6b3a7640000610ab26065546001600160801b031690565b9190612afe565b90505f610ac4610c26565b9050818110610ade57610ad78282614e57565b9250505090565b5f9250505090565b60605f5f5160206151885f395f51905f525b9050806003018054610b0990614e6a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3590614e6a565b8015610b805780601f10610b5757610100808354040283529160200191610b80565b820191905f5260205f20905b815481529060010190602001808311610b6357829003601f168201915b505050505091505090565b5f33610b98818585612bae565b5060019392505050565b5f5f610bad83612bbb565b60645490946001600160801b039091169350915050565b5f5f610bce610c26565b9050805f03610bde575f91505090565b606554610bfe906001600160801b03600160801b82048116911683612afe565b91505090565b5f610c0f6064612beb565b610c17610c26565b610c219190614e57565b905090565b606480545f91610c21916001600160801b031690610c45906065612c0f565b6001600160601b031690612c8b565b5f5f610c5e612a2f565b90506001600160a01b0384161580610ce65750806001600160a01b0316846001600160a01b03166338d52e0f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cb7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cdb9190614ea2565b6001600160a01b0316145b610d0357604051638959269160e01b815260040160405180910390fd5b5f610d166068546001600160a01b031690565b90505f6001600160a01b03821615610e2b576040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610d6c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d909190614ebd565b90508015610e29578515610db157610da88382612ca9565b95509150610e29565b604051635d043b2960e11b815260048101829052306024820181905260448201526001600160a01b0384169063ba087652906064016020604051808303815f875af1158015610e02573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e269190614ebd565b91505b505b606880546001600160a01b0319166001600160a01b038816179055610e5c60325482610e579190614ed4565b612dec565b5f60325560405184151581526001600160a01b0380881691908416907f243f9479bbdaf9f3395e726975293ee3724f3819f4322a018c98afb9de70a1e0906020015b60405180910390a3505050505050565b5f610a8482612bbb565b5f33610ec5858285612e01565b610ed0858585612e5f565b60019150505b9392505050565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f275760405163799e780f60e01b815260040160405180910390fd5b5f610f3a6068546001600160a01b031690565b6001600160a01b031614610f5057610f506115a6565b5f610f6a610f5d85611a30565b610f65610a8a565b612ebc565b90505f198603610f78578095505b855f03610f88575f915050611190565b6069546001600160a01b03161580610fad57506069546001600160a01b038681169116145b8061102f5750606954604051632e704af760e11b81526001600160a01b0390911690635ce095ee90610fe790309088908b90600401614ef3565b602060405180830381865afa158015611002573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110269190614f17565b64ffffffffff16155b6069546001600160a01b03169061106a57604051632bc34ba360e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b508581808211156110975760405163087da9fd60e01b815260048101929092526024820152604401611061565b50506067546001600160a01b0316158061111f5750606754604051639051c76360e01b81526001600160a01b0390911690639051c763906110e090309088908b90600401614ef3565b602060405180830381865afa1580156110fb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061111f9190614f3b565b848790916111515760405163d38a933960e01b81526001600160a01b0390921660048301526024820152604401611061565b5050836001600160a01b0316856001600160a01b03161461117757611177848688612e01565b6111818487612ecb565b61118b8387612eff565b859150505b949350505050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146111e15760405163799e780f60e01b815260040160405180910390fd5b6067546001600160a01b0316158061130a57506067546040516337ee20dd60e01b81526001600160a01b03909116906337ee20dd9061122890309086908890600401614ef3565b602060405180830381865afa158015611243573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112679190614f3b565b801561130a5750806001600160a01b0316826001600160a01b0316148061130a5750606754604051635fcdca3760e01b81523060048201526001600160a01b03848116602483015283811660448301526064820186905290911690635fcdca3790608401602060405180830381865afa1580156112e6573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061130a9190614f3b565b8284909161133c576040516306d6c99360e51b81526001600160a01b0390921660048301526024820152604401611061565b50506113488184612fb8565b611350612ab0565b611358611887565b101561139057611366611887565b61136e612ab0565b6040516362464ab760e01b815260048101929092526024820152604401611061565b505050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114169190614ea2565b6001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611451573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c219190614f56565b6001600160a01b0381165f90815260666020526040812080548390600160e01b900463ffffffff166114c657604051633d56093960e21b81526001600160a01b039091166004820152602401611061565b508054610ed6906001600160801b03166114e86114e1612573565b8490612fec565b6001600160601b031690613086565b5f610c216130a3565b335f81815260666020526040902054600160e01b900463ffffffff1661154557604051634e63eda360e11b81526001600160a01b039091166004820152602401611061565b50611552868686866130ac565b801561159e576115628282612eff565b816001600160a01b0316867fc8e60e828d888d5921f45ececd1bc138a29c2b6aacc8ab8a762f3f096492c56183604051610e9e91815260200190565b505050505050565b5f6115b96068546001600160a01b031690565b90506001600160a01b0381166115e257604051638959269160e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201525f906001600160a01b038316906307a2d13a9082906370a0823190602401602060405180830381865afa15801561162e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116529190614ebd565b6040518263ffffffff1660e01b815260040161167091815260200190565b602060405180830381865afa15801561168b573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116af9190614ebd565b90505f603254826116c09190614ed4565b9050801561139057603282905561139081612dec565b6116de61318c565b6116e782613232565b6116f1828261323b565b5050565b5f610c21611701610c26565b6065906132f7565b335f81815260666020526040902054600160e01b900463ffffffff1661174e57604051634e63eda360e11b81526001600160a01b039091166004820152602401611061565b50611757611ed8565b8211156117895781611767611ed8565b6040516308f31df360e01b815260048101929092526024820152604401611061565b61179660645f606561331f565b80516064805460208401516040909401516001600160801b039093166001600160e01b031990911617600160801b6001600160601b0390941693909302929092176001600160e01b0316600160e01b63ffffffff928316021790915561180390606590849084906133dc16565b80516020909101516001600160801b03908116600160801b0291161760655560405183907f266dc24a75ea4c7d7c74f89a78dc3a44307babf0b588230497189fc46d71693d9061185f9084908690918252602082015260400190565b60405180910390a2505050565b5f6118756134ed565b505f5160206151c85f395f51905f5290565b5f610c21670de0b6b3a7640000306001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118d0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118f49190614ebd565b6065546001600160801b0316610ab2565b5f610c216065546001600160801b031690565b5f611921613536565b805490915060ff600160401b820416159067ffffffffffffffff165f811580156119485750825b90505f8267ffffffffffffffff1660011480156119645750303b155b905081158015611972575080155b156119905760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156119ba57845460ff60401b1916600160401b1785555b6119c261355e565b6119cc898961356e565b6119d589613580565b6119df87876135ab565b8315611a2557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b5f610a84611a3d83612bbb565b610c4560646065612c0f565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611a925760405163799e780f60e01b815260040160405180910390fd5b806001600160a01b038116611ac657604051633d56093960e21b81526001600160a01b039091166004820152602401611061565b505f611ad182611475565b6001600160a01b0383165f818152606660205260408082209190915551919250907fe2ebfbed0df9004eae018a4ae91b24baa0cd1d83f495fab6dde3a1493f9dc6c690611b219084815260200190565b60405180910390a25050565b5f8115611b4f57610a84611b4360646065612c0f565b6001600160601b031690565b606454600160801b90046001600160601b0316610a84565b5f610a8482613611565b5f60608082808083815f5160206151a85f395f51905f528054909150158015611b9c57506001810154155b611be05760405162461bcd60e51b81526020600482015260156024820152741152540dcc4c8e88155b9a5b9a5d1a585b1a5e9959605a1b6044820152606401611061565b611be8613639565b611bf0613677565b604080515f80825260208201909252600f60f81b9c939b5091995046985030975095509350915050565b6001600160a01b0381161580611cc057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c91573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cb59190614ea2565b6001600160a01b0316145b8190611ceb57604051637ef0808b60e01b81526001600160a01b039091166004820152602401611061565b50606754604080516001600160a01b03928316815291831660208301527fdb0a396bdd47d29c2b55a6631f0b286785ea8ed9f585d34c8e32cdb022c3bc82910160405180910390a1606780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381165f90815260666020526040902080548290600160e01b900463ffffffff16611da657604051633d56093960e21b81526001600160a01b039091166004820152602401611061565b50611dbb83611db3612573565b83919061368d565b506001600160a01b0383165f908152606660209081526040918290208351815492850151949093015163ffffffff16600160e01b026001600160e01b036001600160601b03909516600160801b026001600160e01b03199093166001600160801b03909416939093179190911792909216179055611e38836136c9565b816001600160a01b03167fa1aeb41f04a9a2aa1450e8edd0fa1a0a7971ff65c7bbb7b2ca0379b9327edbaf84604051611e7391815260200190565b60405180910390a2611390333085611e89612a2f565b6001600160a01b0316929190613732565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060915f5160206151885f395f51905f5291610b0990614e6a565b5f5f611ee2610c26565b6069549091506001600160a01b031615611fa25760695460405163f3f4370360e01b81523060048201525f916001600160a01b03169063f3f4370390602401602060405180830381865afa158015611f3c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f609190614ebd565b9050818110611f71575f9150611f9c565b611f99611f7e8284614e57565b610f65611f89612905565b8590670de0b6b3a7640000612afe565b91505b50611fc0565b611fbd611fad612905565b8290670de0b6b3a7640000612afe565b90505b610bfe6065826132f7565b611fd53382612ecb565b611fe6611fe182613768565b6136c9565b60405181815233907fa17978b5145b36c8c694b15cd193ab32fac45fbb1b2378e56ca71b11a5bc57229060200160405180910390a250565b335f81815260666020526040902054600160e01b900463ffffffff1661206357604051634e63eda360e11b81526001600160a01b039091166004820152602401611061565b50612070848484846130ac565b50505050565b5f33610b98818585612e5f565b5f6120966068546001600160a01b031690565b90506001600160a01b0381166120bf57604051638959269160e01b815260040160405180910390fd5b5f6120c8613798565b90505f1983036120da57809250612109565b8281808211156121065760405163531309fb60e11b815260048101929092526024820152604401611061565b50505b8260325f82825461211a9190614f71565b909155506121289050612a2f565b60405163095ea7b360e01b81526001600160a01b03848116600483015260248201869052919091169063095ea7b3906044016020604051808303815f875af1158015612176573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061219a9190614f3b565b50604051636e553f6560e01b8152600481018490523060248201526001600160a01b03831690636e553f65906044016020604051808303815f875af11580156121e5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120709190614ebd565b6067545f90610c2190600160a01b900461ffff16613809565b5f82600381111561223557612235614f84565b036122aa57670b1a2bc2ec500000811015801561225a575067120a871cc00200008111155b829061227a5760405163f8f0178560e01b81526004016110619190614fb8565b506122848161381e565b6067805461ffff92909216600160a01b0261ffff60a01b199092169190911790556123e9565b60018260038111156122be576122be614f84565b0361231e5781670de0b6b3a76400008211156122ee5760405163f8f0178560e01b81526004016110619190614fb8565b506122f88161381e565b6067805461ffff92909216600160b01b0261ffff60b01b199092169190911790556123e9565b600282600381111561233257612332614f84565b036123925781670de0b6b3a76400008211156123625760405163f8f0178560e01b81526004016110619190614fb8565b5061236c8161381e565b6067805461ffff92909216600160c01b0261ffff60c01b199092169190911790556123e9565b816706f05b59d3b200008211156123bd5760405163f8f0178560e01b81526004016110619190614fb8565b506123c78161381e565b6067805461ffff92909216600160d01b0261ffff60d01b199092169190911790555b7feeeae4504d4c033c7da36bf41d8ece7c21842071ca9f9b423f8e8e36483dcd96828260405161241a929190614fc6565b60405180910390a15050565b335f81815260666020526040812054909190600160e01b900463ffffffff1661246e57604051634e63eda360e11b81526001600160a01b039091166004820152602401611061565b508261247c81610f65610c04565b9350835f0361248c579050610a84565b6124ad84612498612573565b335f9081526066602052604090209190613837565b50335f908152606660209081526040918290208351815492850151949093015163ffffffff16600160e01b026001600160e01b036001600160601b03909516600160801b026001600160e01b03199093166001600160801b03909416939093179190911792909216179055612524611fe185614fe1565b61252e8385612eff565b604080518581526020810183905233917f98697a4799dbd9db66c7168304c43cba77a27a50d2785625e09072e0d91fdd53910160405180910390a26111908482614e57565b6067545f90610c2190600160d01b900461ffff16613809565b6001600160a01b038116158061263257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015612603573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126279190614ea2565b6001600160a01b0316145b819061265d5760405163f4ae198760e01b81526001600160a01b039091166004820152602401611061565b50606954604080516001600160a01b03928316815291831660208301527ff9f12db81524e0e7d35f2779daf818e6824509f85b09470f5c1c4d29304a756b910160405180910390a1606980546001600160a01b0319166001600160a01b0392909216919091179055565b5f6126d06115a6565b5f6126e36068546001600160a01b031690565b90505f1983036127565760405163ce96cb7760e01b81523060048201526001600160a01b0382169063ce96cb7790602401602060405180830381865afa15801561272f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127539190614ebd565b92505b6127608184613867565b5090919050565b8342111561278b5760405163313c898160e11b815260048101859052602401611061565b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886127f58c6001600160a01b03165f9081527f5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb006020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090505f61284f8261391a565b90505f61285e82878787613946565b9050896001600160a01b0316816001600160a01b0316146128a5576040516325c0072360e11b81526001600160a01b0380831660048301528b166024820152604401611061565b6128b08a8a8a612bae565b50505050505050505050565b6001600160a01b039182165f9081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b6067545f90610c2190600160c01b900461ffff16613809565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146129675760405163799e780f60e01b815260040160405180910390fd5b806001600160a01b03811661299b57604051633d56093960e21b81526001600160a01b039091166004820152602401611061565b506001600160a01b0381165f90815260666020526040902080548290600160e01b900463ffffffff16156129ee57604051630a3e8f9b60e11b81526001600160a01b039091166004820152602401611061565b506129f881613972565b6040516001600160a01b038316907f66c0f28249c4fc4db79872a4405be78a93f19c65ac9ef2f173867a149065bcf2905f90a25050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a8c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c219190614ea2565b6067545f90610c2190600160b01b900461ffff16613809565b5f6001600160e01b031982166301ffc9a760e01b1480610a8457506001600160e01b03198216634d15eb0360e01b1492915050565b5f5f5f612b0b868661398e565b91509150815f03612b2f57838181612b2557612b25614ffb565b0492505050610ed6565b818411612b4657612b4660038515026011186139aa565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b61139083838360016139bb565b5f805f5160206151885f395f51905f525b6001600160a01b039093165f9081526020939093525050604090205490565b80545f90610a84906001600160801b03166305f5e100670de0b6b3a7640000613a9f565b81545f908190612c2d908490600160e01b900463ffffffff16613ad4565b9050805f03612c4f5750508154600160801b90046001600160601b0316610a84565b835461119090612c73908390670de0b6b3a7640000906001600160801b0316613b20565b8554600160801b90046001600160601b031690613b3b565b5f610ed6826001600160601b0385165b670de0b6b3a7640000613b20565b604051636c82bbbf60e11b81523060048201525f9081906001600160a01b0385169063d905777e90602401602060405180830381865afa925050508015612d0d575060408051601f3d908101601f19168201909252612d0a91810190614ebd565b60015b15612d245783811015612d2257600191508093505b505b604051635d043b2960e11b815260048101849052306024820181905260448201526001600160a01b0385169063ba087652906064016020604051808303815f875af1925050508015612d93575060408051601f3d908101601f19168201909252612d9091810190614ebd565b60015b612de257836001600160a01b03167f25bce30047860a48c9d8830dbf31873be5434f4d28f14a5808a4ea8e35d0829684604051612dd291815260200190565b60405180910390a2506001612de5565b91505b9250929050565b612df5816136c9565b612dfe81613b57565b50565b5f612e0c84846128bc565b90505f198110156120705781811015612e5157604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401611061565b61207084848484035f6139bb565b6001600160a01b038316612e8857604051634b637e8f60e11b81525f6004820152602401611061565b6001600160a01b038216612eb15760405163ec442f0560e01b81525f6004820152602401611061565b611390838383613b8d565b5f828218828410028218610ed6565b6001600160a01b038216612ef457604051634b637e8f60e11b81525f6004820152602401611061565b6116f1825f83613b8d565b816001600160a01b038116612f3357604051636427f27360e11b81526001600160a01b039091166004820152602401611061565b50805f03612f3f575050565b5f612f48613798565b905081811015612f8b575f612f656068546001600160a01b031690565b90506001600160a01b03811615612f8957612f8981612f848486614e57565b613867565b505b6001600160a01b0383163014611390576113908383612fa8612a2f565b6001600160a01b03169190613e15565b6001600160a01b038216612fe15760405163ec442f0560e01b81525f6004820152602401611061565b6116f15f8383613b8d565b81545f90429063ffffffff808316600160e01b90920416101561306657835461305e906301e133809061302c90600160e01b900463ffffffff168461500f565b61303c9063ffffffff168661502b565b6130469190615042565b8554600160801b90046001600160601b031690613e4a565b915050610a84565b50508154600160801b90046001600160601b0316610a84565b5092915050565b5f610ed6826001600160601b038516670de0b6b3a7640000613a9f565b5f610c21613e6d565b6130b9606482606561331f565b80516064805460208401516040909401516001600160801b039093166001600160e01b031990911617600160801b6001600160601b0390941693909302929092176001600160e01b0316600160e01b63ffffffff92831602179091556131269060659085908590613ee016565b80516020918201516001600160801b03908116600160801b0291161760655560408051848152918201859052810182905284907f82e3211b2071ba731d809bc922f607d914d7cb7d76b03e72acbe7753613e21f39060600160405180910390a250505050565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061321257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166132065f5160206151c85f395f51905f52546001600160a01b031690565b6001600160a01b031614155b156132305760405163703e46dd60e11b815260040160405180910390fd5b565b612dfe81613f7c565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015613295575060408051601f3d908101601f1916820190925261329291810190614ebd565b60015b6132bd57604051634c9c8ce360e01b81526001600160a01b0383166004820152602401611061565b5f5160206151c85f395f51905f5281146132ed57604051632a87526960e21b815260048101829052602401611061565b611390838361402d565b81545f906001600160801b0316808311156133165761305e8184614e57565b5f915050610a84565b604080516060810182525f80825260208201819052918101919091528354613355908390600160e01b900463ffffffff16613ad4565b61335f9084615061565b84549093505f906133a090613388908690670de0b6b3a7640000906001600160801b0316614082565b8654600160801b90046001600160601b03169061409d565b6040805160608101825287546001600160801b031681526001600160601b03909216602083015263ffffffff4216908201529150509392505050565b604080518082019091525f808252602082015283546001600160801b03165f0361343d576040518060400160405280613414856140e7565b6001600160801b0316815260200161342b846140e7565b6001600160801b031690529050610ed6565b83546001600160801b03165f6134538583614f71565b90505f6134aa61346c8688670de0b6b3a7640000613b20565b885461349190600160801b90046001600160801b031686670de0b6b3a7640000613b20565b61349b9190614f71565b670de0b6b3a764000084613b20565b905060405180604001604052806134c0846140e7565b6001600160801b031681526020016134d7836140e7565b6001600160801b03168152509350505050610ed6565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146132305760405163703e46dd60e11b815260040160405180910390fd5b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610a84565b61356661411a565b61323061413f565b61357661411a565b6116f18282614147565b61358861411a565b612dfe81604051806040016040528060018152602001603160f81b815250614197565b6135b361411a565b6135bd6064613972565b6040805160a0810182525f80825261271060208301529181018290526060810182905260800152606780546001600160e01b03191661027160a41b179055613606600283612222565b6116f1600382612222565b5f807f5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb00612bcc565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10280546060915f5160206151a85f395f51905f5291610b0990614e6a565b60605f5f5160206151a85f395f51905f52610af8565b604080516060810182525f80825260208201819052918101829052906136bd85856136b88287612fec565b6141f6565b91509150935093915050565b6136d6606482606561331f565b805160648054602084015160409094015163ffffffff16600160e01b026001600160e01b036001600160601b03909516600160801b026001600160e01b03199092166001600160801b0390941693909317179290921617905550565b6137408484848460016142bf565b61207057604051635274afe760e01b81526001600160a01b0385166004820152602401611061565b5f6001600160ff1b038211156137945760405163123baf0360e11b815260048101839052602401611061565b5090565b5f6137a1612a2f565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa1580156137e5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c219190614ebd565b5f610a84655af3107a400061ffff841661502b565b5f610a84613832655af3107a400084615042565b61432c565b604080516060810182525f80825260208201819052918101829052906136bd85856138628287612fec565b61435a565b604051632d182be560e21b815260048101829052306024820181905260448201526001600160a01b0383169063b460af94906064016020604051808303815f875af11580156138b8573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138dc9190614ebd565b50603254811115613900576138f860325482610e579190614e57565b5f6032555050565b8060325f8282546139119190614e57565b90915550505050565b5f610a846139266130a3565b8360405161190160f01b8152600281019290925260228201526042902090565b5f5f5f5f613956888888886143ea565b92509250925061396682826144b2565b50909695505050505050565b63ffffffff4216600160e01b026503782dace9d960921b179055565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f5160206151885f395f51905f526001600160a01b0385166139f25760405163e602df0560e01b81525f6004820152602401611061565b6001600160a01b038416613a1b57604051634a1406b160e11b81525f6004820152602401611061565b6001600160a01b038086165f90815260018301602090815260408083209388168352929052208390558115613a9857836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051613a8f91815260200190565b60405180910390a35b5050505050565b5f613ab95f8380613ab257613ab2614ffb565b8587091190565b8284860281613aca57613aca614ffb565b0401949350505050565b81545f90610ed6906001600160801b03166301e13380613afa63ffffffff861642614e57565b8654613b169190600160801b90046001600160801b031661502b565b612c9b9190615042565b5f8183850281613b3257613b32614ffb565b04949350505050565b5f610ed6613b52836001600160601b038616614f71565b61456a565b6040518181527f731c439c5bae15be1344eec709967e046b4f7d3f7e37abeffc5247f448fa18bf9060200160405180910390a150565b5f6001600160a01b038416613c0a57613ba9606483606561459d565b815160648054602085015160409095015163ffffffff16600160e01b026001600160e01b036001600160601b03909616600160801b026001600160e01b03199092166001600160801b03909416939093171793909316179091559050613d06565b6001600160a01b038316613c2557613ba960648360656145c8565b6067546001600160a01b03161580613cb95750606754604051635fcdca3760e01b81523060048201526001600160a01b03868116602483015285811660448301526064820185905290911690635fcdca3790608401602060405180830381865afa158015613c95573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cb99190614f3b565b848484909192613cdf576040516325cff2d360e11b815260040161106193929190614ef3565b50613d039150839050613cf460646065612c0f565b6001600160601b0316906145f3565b90505b5f5160206151885f395f51905f526001600160a01b03851615613da3576001600160a01b0385165f9081526020829052604090205482811015613d855785613d5482610c4560646065612c0f565b60405163391434e360e21b81526001600160a01b039092166004830152602482015260448101859052606401611061565b6001600160a01b0386165f9081526020839052604090209083900390555b6001600160a01b03841615613dd0576001600160a01b0384165f9081526020829052604090208054830190555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613a8f91815260200190565b613e228383836001614610565b61139057604051635274afe760e01b81526001600160a01b0384166004820152602401611061565b5f610ed6613b526001600160601b038516612c9b670de0b6b3a764000086614f71565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f613e97614672565b613e9f6146da565b60408051602081019490945283019190915260608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b604080518082019091525f808252602082015283546001600160801b0316839003613f1e5750604080518082019091525f8082526020820152610ed6565b83546001600160801b03165f613f348583614e57565b90505f6134aa613f4d8688670de0b6b3a7640000613b20565b8854613f7290600160801b90046001600160801b031686670de0b6b3a7640000613b20565b61349b9190614e57565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015613fe2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140069190614ea2565b6001600160a01b031614612dfe5760405163d2b3d33f60e01b815260040160405180910390fd5b6140368261471c565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561407a57611390828261477f565b6116f1614810565b5f818385028161409457614094614ffb565b05949350505050565b5f806140b2836001600160601b038616615061565b9050806305f5e1008110156140dd57604051636c53fb2b60e01b815260040161106191815260200190565b506111908161456a565b5f6001600160801b03821115613794576040516306dfcc6560e41b81526080600482015260248101839052604401611061565b61412261482f565b61323057604051631afcd79f60e31b815260040160405180910390fd5b61323061411a565b61414f61411a565b5f5160206151885f395f51905f527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0361418884826150cc565b506004810161207083826150cc565b61419f61411a565b5f5160206151a85f395f51905f527fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1026141d884826150cc565b50600381016141e783826150cc565b505f8082556001909101555050565b604080516060810182525f80825260208201819052918101829052906142256001600160601b038416856145f3565b85549091506001600160801b03168181038181111590810281614264576142556001600160601b03871688614848565b93506142618484614e57565b90505b805f0361427757670de0b6b3a764000095505b604051806060016040528061428b836140e7565b6001600160801b03168152602001876001600160601b031681526020014263ffffffff168152509450505050935093915050565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f5114831661431b57838315161561430f573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b5f61ffff821115613794576040516306dfcc6560e41b81526010600482015260248101839052604401611061565b604080516060810182525f80825260208201819052918101829052906143896001600160601b03841685614848565b604080516060810190915286549192509081906143b9906143b49085906001600160801b0316614f71565b6140e7565b6001600160801b03168152602001846001600160601b031681526020014263ffffffff168152509150935093915050565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084111561442357505f915060039050826144a8565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015614474573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b03811661449f57505f9250600191508290506144a8565b92505f91508190505b9450945094915050565b5f8260038111156144c5576144c5614f84565b036144ce575050565b60018260038111156144e2576144e2614f84565b036145005760405163f645eedf60e01b815260040160405180910390fd5b600282600381111561451457614514614f84565b036145355760405163fce698f760e01b815260048101829052602401611061565b600382600381111561454957614549614f84565b036116f1576040516335e2f38360e21b815260048101829052602401611061565b5f6001600160601b03821115613794576040516306dfcc6560e41b81526060600482015260248101839052604401611061565b604080516060810182525f80825260208201819052918101829052906136bd85856138628287612c0f565b604080516060810182525f80825260208201819052918101829052906136bd85856136b88287612c0f565b5f610ed682670de0b6b3a76400006001600160601b038616613a9f565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f5114831661466657838315161561465a573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b5f5f5160206151a85f395f51905f528161468a613639565b8051909150156146a257805160209091012092915050565b815480156146b1579392505050565b7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470935050505090565b5f5f5160206151a85f395f51905f52816146f2613677565b80519091501561470a57805160209091012092915050565b600182015480156146b1579392505050565b806001600160a01b03163b5f0361475157604051634c9c8ce360e01b81526001600160a01b0382166004820152602401611061565b5f5160206151c85f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f61478c8484614865565b90508080156147ad57505f3d11806147ad57505f846001600160a01b03163b115b156147ba5761305e614878565b80156147e457604051639996b31560e01b81526001600160a01b0385166004820152602401611061565b3d156147f7576147f2614891565b61307f565b60405163d6bda27560e01b815260040160405180910390fd5b34156132305760405163b398979f60e01b815260040160405180910390fd5b5f614838613536565b54600160401b900460ff16919050565b5f610ed682670de0b6b3a76400006001600160601b038616613b20565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f602082840312156148ac575f5ffd5b81356001600160e01b031981168114610ed6575f5ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610ed660208301846148c3565b6001600160a01b0381168114612dfe575f5ffd5b5f5f60408385031215614928575f5ffd5b823561493381614903565b946020939093013593505050565b5f60208284031215614951575f5ffd5b8135610ed681614903565b8015158114612dfe575f5ffd5b5f5f6040838503121561497a575f5ffd5b823561498581614903565b915060208301356149958161495c565b809150509250929050565b5f5f5f606084860312156149b2575f5ffd5b83356149bd81614903565b925060208401356149cd81614903565b929592945050506040919091013590565b5f5f5f5f608085870312156149f1575f5ffd5b843593506020850135614a0381614903565b92506040850135614a1381614903565b91506060850135614a2381614903565b939692955090935050565b5f5f5f60608486031215614a40575f5ffd5b833592506020840135614a5281614903565b91506040840135614a6281614903565b809150509250925092565b5f5f5f5f5f5f60c08789031215614a82575f5ffd5b863595506020870135945060408701359350606087013592506080870135614aa981614903565b9598949750929591949360a090920135925050565b634e487b7160e01b5f52604160045260245ffd5b5f5f67ffffffffffffffff841115614aec57614aec614abe565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff82111715614b1b57614b1b614abe565b604052838152905080828401851015614b32575f5ffd5b838360208301375f60208583010152509392505050565b5f5f60408385031215614b5a575f5ffd5b8235614b6581614903565b9150602083013567ffffffffffffffff811115614b80575f5ffd5b8301601f81018513614b90575f5ffd5b614b9f85823560208401614ad2565b9150509250929050565b5f5f5f60608486031215614bbb575f5ffd5b505081359360208301359350604090920135919050565b5f82601f830112614be1575f5ffd5b610ed683833560208501614ad2565b5f5f5f5f60808587031215614c03575f5ffd5b843567ffffffffffffffff811115614c19575f5ffd5b614c2587828801614bd2565b945050602085013567ffffffffffffffff811115614c41575f5ffd5b614c4d87828801614bd2565b949794965050505060408301359260600135919050565b5f60208284031215614c74575f5ffd5b8135610ed68161495c565b60ff60f81b8816815260e060208201525f614c9d60e08301896148c3565b8281036040840152614caf81896148c3565b606084018890526001600160a01b038716608085015260a0840186905283810360c0850152845180825260208087019350909101905f5b81811015614d04578351835260209384019390920191600101614ce6565b50909b9a5050505050505050505050565b5f5f60408385031215614d26575f5ffd5b82359150602083013561499581614903565b5f60208284031215614d48575f5ffd5b5035919050565b5f5f5f5f60808587031215614d62575f5ffd5b5050823594602084013594506040840135936060013592509050565b5f5f60408385031215614d8f575f5ffd5b823560048110614933575f5ffd5b60ff81168114612dfe575f5ffd5b5f5f5f5f5f5f5f60e0888a031215614dc1575f5ffd5b8735614dcc81614903565b96506020880135614ddc81614903565b955060408801359450606088013593506080880135614dfa81614d9d565b9699959850939692959460a0840135945060c09093013592915050565b5f5f60408385031215614e28575f5ffd5b8235614e3381614903565b9150602083013561499581614903565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610a8457610a84614e43565b600181811c90821680614e7e57607f821691505b602082108103614e9c57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215614eb2575f5ffd5b8151610ed681614903565b5f60208284031215614ecd575f5ffd5b5051919050565b8181035f83128015838313168383128216171561307f5761307f614e43565b6001600160a01b039384168152919092166020820152604081019190915260600190565b5f60208284031215614f27575f5ffd5b815164ffffffffff81168114610ed6575f5ffd5b5f60208284031215614f4b575f5ffd5b8151610ed68161495c565b5f60208284031215614f66575f5ffd5b8151610ed681614d9d565b80820180821115610a8457610a84614e43565b634e487b7160e01b5f52602160045260245ffd5b60048110614fb457634e487b7160e01b5f52602160045260245ffd5b9052565b60208101610a848284614f98565b60408101614fd48285614f98565b8260208301529392505050565b5f600160ff1b8201614ff557614ff5614e43565b505f0390565b634e487b7160e01b5f52601260045260245ffd5b63ffffffff8281168282160390811115610a8457610a84614e43565b8082028115828204841417610a8457610a84614e43565b5f8261505c57634e487b7160e01b5f52601260045260245ffd5b500490565b8082018281125f83128015821682158216171561508057615080614e43565b505092915050565b601f82111561139057805f5260205f20601f840160051c810160208510156150ad5750805b601f840160051c820191505b81811015613a98575f81556001016150b9565b815167ffffffffffffffff8111156150e6576150e6614abe565b6150fa816150f48454614e6a565b84615088565b6020601f82116001811461512c575f83156151155750848201515b5f19600385901b1c1916600184901b178455613a98565b5f84815260208120601f198516915b8281101561515b578785015182556020948501946001909201910161513b565b508482101561517857868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00a16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d100360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca26469706673582212209b125e81f4beac5ad6ba57f67dad9c77fb08bb1cd1d397c3c72d7632245dcc7b64736f6c634300081e0033","opcodes":"PUSH1 0xC0 PUSH1 0x40 MSTORE ADDRESS PUSH1 0x80 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x13 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x53E1 CODESIZE SUB DUP1 PUSH2 0x53E1 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x32 SWAP2 PUSH2 0x129 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x5B JUMPI PUSH1 0x40 MLOAD PUSH4 0x6B23CF01 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x63 PUSH2 0x77 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xA0 MSTORE POP PUSH2 0x156 SWAP1 POP JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xC7 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x126 JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x139 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x14F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH2 0x521D PUSH2 0x1C4 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x59E ADD MSTORE DUP2 DUP2 PUSH2 0xEE9 ADD MSTORE DUP2 DUP2 PUSH2 0x11A3 ADD MSTORE DUP2 DUP2 PUSH2 0x1398 ADD MSTORE DUP2 DUP2 PUSH2 0x1A54 ADD MSTORE DUP2 DUP2 PUSH2 0x1C2D ADD MSTORE DUP2 DUP2 PUSH2 0x259F ADD MSTORE DUP2 DUP2 PUSH2 0x2929 ADD MSTORE DUP2 DUP2 PUSH2 0x2A32 ADD MSTORE PUSH2 0x3F7E ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x3197 ADD MSTORE DUP2 DUP2 PUSH2 0x31C0 ADD MSTORE PUSH2 0x34F8 ADD MSTORE PUSH2 0x521D PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x371 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7D919A97 GT PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0xFD JUMPI DUP1 PUSH4 0xD17E6C93 GT PUSH2 0x9D JUMPI DUP1 PUSH4 0xDFCB48BD GT PUSH2 0x6D JUMPI DUP1 PUSH4 0xDFCB48BD EQ PUSH2 0x9CE JUMPI DUP1 PUSH4 0xE3A8E29C EQ PUSH2 0x9E2 JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0xA01 JUMPI DUP1 PUSH4 0xEE01A183 EQ PUSH2 0xA15 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xD17E6C93 EQ PUSH2 0x952 JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0x971 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x990 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x9AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC1CCA2B3 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0xC1CCA2B3 EQ PUSH2 0x8E3 JUMPI DUP1 PUSH4 0xC3DF9DAC EQ PUSH2 0x902 JUMPI DUP1 PUSH4 0xCDA4BCC2 EQ PUSH2 0x921 JUMPI DUP1 PUSH4 0xCF6A9A94 EQ PUSH2 0x935 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x882 JUMPI DUP1 PUSH4 0xB1BF962D EQ PUSH2 0x8B2 JUMPI DUP1 PUSH4 0xBA4E8DF5 EQ PUSH2 0x8CF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x9D90724D GT PUSH2 0x168 JUMPI DUP1 PUSH4 0xA227DC41 GT PUSH2 0x143 JUMPI DUP1 PUSH4 0xA227DC41 EQ PUSH2 0x808 JUMPI DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0x827 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x844 JUMPI DUP1 PUSH4 0xAC860F74 EQ PUSH2 0x863 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x9D90724D EQ PUSH2 0x7B1 JUMPI DUP1 PUSH4 0xA08F2203 EQ PUSH2 0x7D5 JUMPI DUP1 PUSH4 0xA0CE552D EQ PUSH2 0x7E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x854CFF2F GT PUSH2 0x1A3 JUMPI DUP1 PUSH4 0x854CFF2F EQ PUSH2 0x742 JUMPI DUP1 PUSH4 0x918344D3 EQ PUSH2 0x761 JUMPI DUP1 PUSH4 0x93E59DC1 EQ PUSH2 0x780 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x79D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x7D919A97 EQ PUSH2 0x6E8 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x6FC JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x71B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x33481FC9 GT PUSH2 0x2A9 JUMPI DUP1 PUSH4 0x4FFCDA8C GT PUSH2 0x249 JUMPI DUP1 PUSH4 0x6FE0E395 GT PUSH2 0x219 JUMPI DUP1 PUSH4 0x6FE0E395 EQ PUSH2 0x66C JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x68B JUMPI DUP1 PUSH4 0x76C7FC55 EQ PUSH2 0x6AA JUMPI DUP1 PUSH4 0x79D989FB EQ PUSH2 0x6C9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4FFCDA8C EQ PUSH2 0x611 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x630 JUMPI DUP1 PUSH4 0x6C321C8A EQ PUSH2 0x644 JUMPI DUP1 PUSH4 0x6C6F4542 EQ PUSH2 0x658 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D15EB03 GT PUSH2 0x284 JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x590 JUMPI DUP1 PUSH4 0x4EB978A4 EQ PUSH2 0x5D6 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x5EA JUMPI DUP1 PUSH4 0x4FE0BD1E EQ PUSH2 0x5FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x33481FC9 EQ PUSH2 0x53E JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x55D JUMPI DUP1 PUSH4 0x3AD2820B EQ PUSH2 0x571 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0x314 JUMPI DUP1 PUSH4 0x23B872DD GT PUSH2 0x2EF JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x4BB JUMPI DUP1 PUSH4 0x23E103A8 EQ PUSH2 0x4DA JUMPI DUP1 PUSH4 0x2E2D2984 EQ PUSH2 0x4F9 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x518 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD EQ PUSH2 0x467 JUMPI DUP1 PUSH4 0x194448E5 EQ PUSH2 0x47B JUMPI DUP1 PUSH4 0x1DA24F3E EQ PUSH2 0x49C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x34F JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x3EC JUMPI DUP1 PUSH4 0xAFBCDC9 EQ PUSH2 0x40B JUMPI DUP1 PUSH4 0x159EC2DF EQ PUSH2 0x43F JUMPI DUP1 PUSH4 0x16DB000F EQ PUSH2 0x453 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x375 JUMPI DUP1 PUSH4 0x600A865 EQ PUSH2 0x3A9 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x3CB JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x380 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x38F CALLDATASIZE PUSH1 0x4 PUSH2 0x489C JUMP JUMPDEST PUSH2 0xA29 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 0x3B4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0xA8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DF PUSH2 0xAE6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3A0 SWAP2 SWAP1 PUSH2 0x48F1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3F7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x406 CALLDATASIZE PUSH1 0x4 PUSH2 0x4917 JUMP JUMPDEST PUSH2 0xB8B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x416 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42A PUSH2 0x425 CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0xBA2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x3A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x44A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0xBC4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x45E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0xC04 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x472 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0xC26 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x486 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x495 CALLDATASIZE PUSH1 0x4 PUSH2 0x4969 JUMP JUMPDEST PUSH2 0xC54 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x4B6 CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0xEAE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4C6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x4D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x49A0 JUMP JUMPDEST PUSH2 0xEB8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4E5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x4F4 CALLDATASIZE PUSH1 0x4 PUSH2 0x49DE JUMP JUMPDEST PUSH2 0xEDD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x504 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x513 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A2E JUMP JUMPDEST PUSH2 0x1198 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x523 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x52C PUSH2 0x1395 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x549 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x558 CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0x1475 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x568 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x14F7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x57C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x58B CALLDATASIZE PUSH1 0x4 PUSH2 0x4A6D JUMP JUMPDEST PUSH2 0x1500 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x59B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5E1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x15A6 JUMP JUMPDEST PUSH2 0x49A PUSH2 0x5F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x4B49 JUMP JUMPDEST PUSH2 0x16D6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x608 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x16F5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x61C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x62B CALLDATASIZE PUSH1 0x4 PUSH2 0x4BA9 JUMP JUMPDEST PUSH2 0x1709 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x63B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x186C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x64F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x1887 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x663 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x1905 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x677 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x686 CALLDATASIZE PUSH1 0x4 PUSH2 0x4BF0 JUMP JUMPDEST PUSH2 0x1918 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x696 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x6A5 CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0x1A30 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x6C4 CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0x1A49 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6D4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x6E3 CALLDATASIZE PUSH1 0x4 PUSH2 0x4C64 JUMP JUMPDEST PUSH2 0x1B2D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x32 SLOAD PUSH2 0x3BD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x707 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x716 CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0x1B67 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x726 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x72F PUSH2 0x1B71 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3A0 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4C7F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x74D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x75C CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0x1C1A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x76C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x77B CALLDATASIZE PUSH1 0x4 PUSH2 0x4D15 JUMP JUMPDEST PUSH2 0x1D55 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x78B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x67 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x5BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7A8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DF PUSH2 0x1E9A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x3BD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7E0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x1ED8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7F4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x803 CALLDATASIZE PUSH1 0x4 PUSH2 0x4D38 JUMP JUMPDEST PUSH2 0x1FCB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x813 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x822 CALLDATASIZE PUSH1 0x4 PUSH2 0x4D4F JUMP JUMPDEST PUSH2 0x201E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x832 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x5BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x84F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x85E CALLDATASIZE PUSH1 0x4 PUSH2 0x4917 JUMP JUMPDEST PUSH2 0x2076 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x86E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x87D CALLDATASIZE PUSH1 0x4 PUSH2 0x4D38 JUMP JUMPDEST PUSH2 0x2083 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x88D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DF PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x3BD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8DA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x2209 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x8FD CALLDATASIZE PUSH1 0x4 PUSH2 0x4D7E JUMP JUMPDEST PUSH2 0x2222 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x90D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x91C CALLDATASIZE PUSH1 0x4 PUSH2 0x4D15 JUMP JUMPDEST PUSH2 0x2426 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x92C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x2573 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x940 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x69 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x5BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x95D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x96C CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0x258C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x97C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x98B CALLDATASIZE PUSH1 0x4 PUSH2 0x4D38 JUMP JUMPDEST PUSH2 0x26C7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x99B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x9AA CALLDATASIZE PUSH1 0x4 PUSH2 0x4DAB JUMP JUMPDEST PUSH2 0x2767 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x9C9 CALLDATASIZE PUSH1 0x4 PUSH2 0x4E17 JUMP JUMPDEST PUSH2 0x28BC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x2905 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x9FC CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0x291E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA0C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5BE PUSH2 0x2A2F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA20 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x2AB0 JUMP JUMPDEST PUSH0 PUSH2 0xA33 DUP3 PUSH2 0x2AC9 JUMP JUMPDEST DUP1 PUSH2 0xA4E JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x36372B07 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xA69 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA219A025 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xA84 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x6D5136B1 PUSH1 0xE1 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xAB9 PUSH2 0xA97 PUSH2 0x2209 JUMP JUMPDEST PUSH8 0xDE0B6B3A7640000 PUSH2 0xAB2 PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x2AFE JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0xAC4 PUSH2 0xC26 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT PUSH2 0xADE JUMPI PUSH2 0xAD7 DUP3 DUP3 PUSH2 0x4E57 JUMP JUMPDEST SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH0 SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5188 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST SWAP1 POP DUP1 PUSH1 0x3 ADD DUP1 SLOAD PUSH2 0xB09 SWAP1 PUSH2 0x4E6A 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 0xB35 SWAP1 PUSH2 0x4E6A JUMP JUMPDEST DUP1 ISZERO PUSH2 0xB80 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xB57 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xB80 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 0xB63 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0xB98 DUP2 DUP6 DUP6 PUSH2 0x2BAE JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xBAD DUP4 PUSH2 0x2BBB JUMP JUMPDEST PUSH1 0x64 SLOAD SWAP1 SWAP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP2 AND SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xBCE PUSH2 0xC26 JUMP JUMPDEST SWAP1 POP DUP1 PUSH0 SUB PUSH2 0xBDE JUMPI PUSH0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x65 SLOAD PUSH2 0xBFE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB PUSH1 0x1 PUSH1 0x80 SHL DUP3 DIV DUP2 AND SWAP2 AND DUP4 PUSH2 0x2AFE JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xC0F PUSH1 0x64 PUSH2 0x2BEB JUMP JUMPDEST PUSH2 0xC17 PUSH2 0xC26 JUMP JUMPDEST PUSH2 0xC21 SWAP2 SWAP1 PUSH2 0x4E57 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x64 DUP1 SLOAD PUSH0 SWAP2 PUSH2 0xC21 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 PUSH2 0xC45 SWAP1 PUSH1 0x65 PUSH2 0x2C0F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x2C8B JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xC5E PUSH2 0x2A2F JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO DUP1 PUSH2 0xCE6 JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x38D52E0F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xCB7 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 0xCDB SWAP2 SWAP1 PUSH2 0x4EA2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0xD03 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0xD16 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0xE2B JUMPI 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 DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB 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 0x4EBD JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0xE29 JUMPI DUP6 ISZERO PUSH2 0xDB1 JUMPI PUSH2 0xDA8 DUP4 DUP3 PUSH2 0x2CA9 JUMP JUMPDEST SWAP6 POP SWAP2 POP PUSH2 0xE29 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xE02 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 0xE26 SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST SWAP2 POP JUMPDEST POP JUMPDEST PUSH1 0x68 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND OR SWAP1 SSTORE PUSH2 0xE5C PUSH1 0x32 SLOAD DUP3 PUSH2 0xE57 SWAP2 SWAP1 PUSH2 0x4ED4 JUMP JUMPDEST PUSH2 0x2DEC JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE PUSH1 0x40 MLOAD DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND SWAP2 SWAP1 DUP5 AND SWAP1 PUSH32 0x243F9479BBDAF9F3395E726975293EE3724F3819F4322A018C98AFB9DE70A1E0 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA84 DUP3 PUSH2 0x2BBB JUMP JUMPDEST PUSH0 CALLER PUSH2 0xEC5 DUP6 DUP3 DUP6 PUSH2 0x2E01 JUMP JUMPDEST PUSH2 0xED0 DUP6 DUP6 DUP6 PUSH2 0x2E5F JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xF27 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0xF3A PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF50 JUMPI PUSH2 0xF50 PUSH2 0x15A6 JUMP JUMPDEST PUSH0 PUSH2 0xF6A PUSH2 0xF5D DUP6 PUSH2 0x1A30 JUMP JUMPDEST PUSH2 0xF65 PUSH2 0xA8A JUMP JUMPDEST PUSH2 0x2EBC JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP7 SUB PUSH2 0xF78 JUMPI DUP1 SWAP6 POP JUMPDEST DUP6 PUSH0 SUB PUSH2 0xF88 JUMPI PUSH0 SWAP2 POP POP PUSH2 0x1190 JUMP JUMPDEST PUSH1 0x69 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 PUSH2 0xFAD JUMPI POP PUSH1 0x69 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 AND EQ JUMPDEST DUP1 PUSH2 0x102F JUMPI POP PUSH1 0x69 SLOAD PUSH1 0x40 MLOAD PUSH4 0x2E704AF7 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x5CE095EE SWAP1 PUSH2 0xFE7 SWAP1 ADDRESS SWAP1 DUP9 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x4EF3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1002 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 0x1026 SWAP2 SWAP1 PUSH2 0x4F17 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND ISZERO JUMPDEST PUSH1 0x69 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH2 0x106A JUMPI PUSH1 0x40 MLOAD PUSH4 0x2BC34BA3 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 DUP6 DUP2 DUP1 DUP3 GT ISZERO PUSH2 0x1097 JUMPI PUSH1 0x40 MLOAD PUSH4 0x87DA9FD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST POP POP PUSH1 0x67 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 PUSH2 0x111F JUMPI POP PUSH1 0x67 SLOAD PUSH1 0x40 MLOAD PUSH4 0x9051C763 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x9051C763 SWAP1 PUSH2 0x10E0 SWAP1 ADDRESS SWAP1 DUP9 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x4EF3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x10FB 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 0x111F SWAP2 SWAP1 PUSH2 0x4F3B JUMP JUMPDEST DUP5 DUP8 SWAP1 SWAP2 PUSH2 0x1151 JUMPI PUSH1 0x40 MLOAD PUSH4 0xD38A9339 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST POP POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1177 JUMPI PUSH2 0x1177 DUP5 DUP7 DUP9 PUSH2 0x2E01 JUMP JUMPDEST PUSH2 0x1181 DUP5 DUP8 PUSH2 0x2ECB JUMP JUMPDEST PUSH2 0x118B DUP4 DUP8 PUSH2 0x2EFF JUMP JUMPDEST DUP6 SWAP2 POP POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x11E1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x67 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 PUSH2 0x130A JUMPI POP PUSH1 0x67 SLOAD PUSH1 0x40 MLOAD PUSH4 0x37EE20DD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x37EE20DD SWAP1 PUSH2 0x1228 SWAP1 ADDRESS SWAP1 DUP7 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x4EF3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1243 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 0x1267 SWAP2 SWAP1 PUSH2 0x4F3B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x130A JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x130A JUMPI POP PUSH1 0x67 SLOAD PUSH1 0x40 MLOAD PUSH4 0x5FCDCA37 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD DUP7 SWAP1 MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x5FCDCA37 SWAP1 PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x12E6 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 0x130A SWAP2 SWAP1 PUSH2 0x4F3B JUMP JUMPDEST DUP3 DUP5 SWAP1 SWAP2 PUSH2 0x133C JUMPI PUSH1 0x40 MLOAD PUSH4 0x6D6C993 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST POP POP PUSH2 0x1348 DUP2 DUP5 PUSH2 0x2FB8 JUMP JUMPDEST PUSH2 0x1350 PUSH2 0x2AB0 JUMP JUMPDEST PUSH2 0x1358 PUSH2 0x1887 JUMP JUMPDEST LT ISZERO PUSH2 0x1390 JUMPI PUSH2 0x1366 PUSH2 0x1887 JUMP JUMPDEST PUSH2 0x136E PUSH2 0x2AB0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x62464AB7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13F2 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 0x1416 SWAP2 SWAP1 PUSH2 0x4EA2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1451 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 0xC21 SWAP2 SWAP1 PUSH2 0x4F56 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x14C6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3D560939 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 0x1061 JUMP JUMPDEST POP DUP1 SLOAD PUSH2 0xED6 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x14E8 PUSH2 0x14E1 PUSH2 0x2573 JUMP JUMPDEST DUP5 SWAP1 PUSH2 0x2FEC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x3086 JUMP JUMPDEST PUSH0 PUSH2 0xC21 PUSH2 0x30A3 JUMP JUMPDEST CALLER PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x1545 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4E63EDA3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST POP PUSH2 0x1552 DUP7 DUP7 DUP7 DUP7 PUSH2 0x30AC JUMP JUMPDEST DUP1 ISZERO PUSH2 0x159E JUMPI PUSH2 0x1562 DUP3 DUP3 PUSH2 0x2EFF JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH32 0xC8E60E828D888D5921F45ECECD1BC138A29C2B6AACC8AB8A762F3F096492C561 DUP4 PUSH1 0x40 MLOAD PUSH2 0xE9E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x15B9 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x15E2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT 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 DUP4 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x162E 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 0x1652 SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1670 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x168B 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 0x16AF SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x32 SLOAD DUP3 PUSH2 0x16C0 SWAP2 SWAP1 PUSH2 0x4ED4 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x1390 JUMPI PUSH1 0x32 DUP3 SWAP1 SSTORE PUSH2 0x1390 DUP2 PUSH2 0x2DEC JUMP JUMPDEST PUSH2 0x16DE PUSH2 0x318C JUMP JUMPDEST PUSH2 0x16E7 DUP3 PUSH2 0x3232 JUMP JUMPDEST PUSH2 0x16F1 DUP3 DUP3 PUSH2 0x323B JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0xC21 PUSH2 0x1701 PUSH2 0xC26 JUMP JUMPDEST PUSH1 0x65 SWAP1 PUSH2 0x32F7 JUMP JUMPDEST CALLER PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x174E JUMPI PUSH1 0x40 MLOAD PUSH4 0x4E63EDA3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST POP PUSH2 0x1757 PUSH2 0x1ED8 JUMP JUMPDEST DUP3 GT ISZERO PUSH2 0x1789 JUMPI DUP2 PUSH2 0x1767 PUSH2 0x1ED8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x8F31DF3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x1796 PUSH1 0x64 PUSH0 PUSH1 0x65 PUSH2 0x331F JUMP JUMPDEST DUP1 MLOAD PUSH1 0x64 DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP1 SWAP5 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND OR PUSH1 0x1 PUSH1 0x80 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 MUL SWAP3 SWAP1 SWAP3 OR PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x1 PUSH1 0xE0 SHL PUSH4 0xFFFFFFFF SWAP3 DUP4 AND MUL OR SWAP1 SWAP2 SSTORE PUSH2 0x1803 SWAP1 PUSH1 0x65 SWAP1 DUP5 SWAP1 DUP5 SWAP1 PUSH2 0x33DC AND JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP2 AND OR PUSH1 0x65 SSTORE PUSH1 0x40 MLOAD DUP4 SWAP1 PUSH32 0x266DC24A75EA4C7D7C74F89A78DC3A44307BABF0B588230497189FC46D71693D SWAP1 PUSH2 0x185F SWAP1 DUP5 SWAP1 DUP7 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1875 PUSH2 0x34ED JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xC21 PUSH8 0xDE0B6B3A7640000 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x18160DDD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x18D0 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 0x18F4 SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0xAB2 JUMP JUMPDEST PUSH0 PUSH2 0xC21 PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x1921 PUSH2 0x3536 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x1948 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x1964 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x1972 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x1990 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x19BA JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x19C2 PUSH2 0x355E JUMP JUMPDEST PUSH2 0x19CC DUP10 DUP10 PUSH2 0x356E JUMP JUMPDEST PUSH2 0x19D5 DUP10 PUSH2 0x3580 JUMP JUMPDEST PUSH2 0x19DF DUP8 DUP8 PUSH2 0x35AB JUMP JUMPDEST DUP4 ISZERO PUSH2 0x1A25 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA84 PUSH2 0x1A3D DUP4 PUSH2 0x2BBB JUMP JUMPDEST PUSH2 0xC45 PUSH1 0x64 PUSH1 0x65 PUSH2 0x2C0F JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x1A92 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1AC6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3D560939 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 0x1061 JUMP JUMPDEST POP PUSH0 PUSH2 0x1AD1 DUP3 PUSH2 0x1475 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE MLOAD SWAP2 SWAP3 POP SWAP1 PUSH32 0xE2EBFBED0DF9004EAE018A4AE91B24BAA0CD1D83F495FAB6DDE3A1493F9DC6C6 SWAP1 PUSH2 0x1B21 SWAP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 DUP2 ISZERO PUSH2 0x1B4F JUMPI PUSH2 0xA84 PUSH2 0x1B43 PUSH1 0x64 PUSH1 0x65 PUSH2 0x2C0F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0xA84 JUMP JUMPDEST PUSH0 PUSH2 0xA84 DUP3 PUSH2 0x3611 JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP1 DUP3 DUP1 DUP1 DUP4 DUP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51A8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD SWAP1 SWAP2 POP ISZERO DUP1 ISZERO PUSH2 0x1B9C JUMPI POP PUSH1 0x1 DUP2 ADD SLOAD ISZERO JUMPDEST PUSH2 0x1BE0 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 0x1152540DCC4C8E88155B9A5B9A5D1A585B1A5E9959 PUSH1 0x5A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x1BE8 PUSH2 0x3639 JUMP JUMPDEST PUSH2 0x1BF0 PUSH2 0x3677 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0xF PUSH1 0xF8 SHL SWAP13 SWAP4 SWAP12 POP SWAP2 SWAP10 POP CHAINID SWAP9 POP ADDRESS SWAP8 POP SWAP6 POP SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO DUP1 PUSH2 0x1CC0 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1C91 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 0x1CB5 SWAP2 SWAP1 PUSH2 0x4EA2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP2 SWAP1 PUSH2 0x1CEB JUMPI PUSH1 0x40 MLOAD PUSH4 0x7EF0808B 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 0x1061 JUMP JUMPDEST POP PUSH1 0x67 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0xDB0A396BDD47D29C2B55A6631F0B286785EA8ED9F585D34C8E32CDB022C3BC82 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x67 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x1DA6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3D560939 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 0x1061 JUMP JUMPDEST POP PUSH2 0x1DBB DUP4 PUSH2 0x1DB3 PUSH2 0x2573 JUMP JUMPDEST DUP4 SWAP2 SWAP1 PUSH2 0x368D JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP3 DUP6 ADD MLOAD SWAP5 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP2 SWAP1 SWAP2 OR SWAP3 SWAP1 SWAP3 AND OR SWAP1 SSTORE PUSH2 0x1E38 DUP4 PUSH2 0x36C9 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xA1AEB41F04A9A2AA1450E8EDD0FA1A0A7971FF65C7BBB7B2CA0379B9327EDBAF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1E73 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x1390 CALLER ADDRESS DUP6 PUSH2 0x1E89 PUSH2 0x2A2F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x3732 JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE04 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5188 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0xB09 SWAP1 PUSH2 0x4E6A JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1EE2 PUSH2 0xC26 JUMP JUMPDEST PUSH1 0x69 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1FA2 JUMPI PUSH1 0x69 SLOAD PUSH1 0x40 MLOAD PUSH4 0xF3F43703 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xF3F43703 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1F3C 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 0x1F60 SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT PUSH2 0x1F71 JUMPI PUSH0 SWAP2 POP PUSH2 0x1F9C JUMP JUMPDEST PUSH2 0x1F99 PUSH2 0x1F7E DUP3 DUP5 PUSH2 0x4E57 JUMP JUMPDEST PUSH2 0xF65 PUSH2 0x1F89 PUSH2 0x2905 JUMP JUMPDEST DUP6 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x2AFE JUMP JUMPDEST SWAP2 POP JUMPDEST POP PUSH2 0x1FC0 JUMP JUMPDEST PUSH2 0x1FBD PUSH2 0x1FAD PUSH2 0x2905 JUMP JUMPDEST DUP3 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x2AFE JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH2 0xBFE PUSH1 0x65 DUP3 PUSH2 0x32F7 JUMP JUMPDEST PUSH2 0x1FD5 CALLER DUP3 PUSH2 0x2ECB JUMP JUMPDEST PUSH2 0x1FE6 PUSH2 0x1FE1 DUP3 PUSH2 0x3768 JUMP JUMPDEST PUSH2 0x36C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE CALLER SWAP1 PUSH32 0xA17978B5145B36C8C694B15CD193AB32FAC45FBB1B2378E56CA71B11A5BC5722 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMP JUMPDEST CALLER PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x2063 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4E63EDA3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST POP PUSH2 0x2070 DUP5 DUP5 DUP5 DUP5 PUSH2 0x30AC JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0xB98 DUP2 DUP6 DUP6 PUSH2 0x2E5F JUMP JUMPDEST PUSH0 PUSH2 0x2096 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x20BF JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x20C8 PUSH2 0x3798 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x20DA JUMPI DUP1 SWAP3 POP PUSH2 0x2109 JUMP JUMPDEST DUP3 DUP2 DUP1 DUP3 GT ISZERO PUSH2 0x2106 JUMPI PUSH1 0x40 MLOAD PUSH4 0x531309FB PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x211A SWAP2 SWAP1 PUSH2 0x4F71 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x2128 SWAP1 POP PUSH2 0x2A2F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2176 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 0x219A SWAP2 SWAP1 PUSH2 0x4F3B JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x21E5 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 0x2070 SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH0 SWAP1 PUSH2 0xC21 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x3809 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2235 JUMPI PUSH2 0x2235 PUSH2 0x4F84 JUMP JUMPDEST SUB PUSH2 0x22AA JUMPI PUSH8 0xB1A2BC2EC500000 DUP2 LT ISZERO DUP1 ISZERO PUSH2 0x225A JUMPI POP PUSH8 0x120A871CC0020000 DUP2 GT ISZERO JUMPDEST DUP3 SWAP1 PUSH2 0x227A JUMPI PUSH1 0x40 MLOAD PUSH4 0xF8F01785 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1061 SWAP2 SWAP1 PUSH2 0x4FB8 JUMP JUMPDEST POP PUSH2 0x2284 DUP2 PUSH2 0x381E JUMP JUMPDEST PUSH1 0x67 DUP1 SLOAD PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH2 0xFFFF PUSH1 0xA0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x23E9 JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x22BE JUMPI PUSH2 0x22BE PUSH2 0x4F84 JUMP JUMPDEST SUB PUSH2 0x231E JUMPI DUP2 PUSH8 0xDE0B6B3A7640000 DUP3 GT ISZERO PUSH2 0x22EE JUMPI PUSH1 0x40 MLOAD PUSH4 0xF8F01785 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1061 SWAP2 SWAP1 PUSH2 0x4FB8 JUMP JUMPDEST POP PUSH2 0x22F8 DUP2 PUSH2 0x381E JUMP JUMPDEST PUSH1 0x67 DUP1 SLOAD PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xB0 SHL MUL PUSH2 0xFFFF PUSH1 0xB0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x23E9 JUMP JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2332 JUMPI PUSH2 0x2332 PUSH2 0x4F84 JUMP JUMPDEST SUB PUSH2 0x2392 JUMPI DUP2 PUSH8 0xDE0B6B3A7640000 DUP3 GT ISZERO PUSH2 0x2362 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF8F01785 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1061 SWAP2 SWAP1 PUSH2 0x4FB8 JUMP JUMPDEST POP PUSH2 0x236C DUP2 PUSH2 0x381E JUMP JUMPDEST PUSH1 0x67 DUP1 SLOAD PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xC0 SHL MUL PUSH2 0xFFFF PUSH1 0xC0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x23E9 JUMP JUMPDEST DUP2 PUSH8 0x6F05B59D3B20000 DUP3 GT ISZERO PUSH2 0x23BD JUMPI PUSH1 0x40 MLOAD PUSH4 0xF8F01785 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1061 SWAP2 SWAP1 PUSH2 0x4FB8 JUMP JUMPDEST POP PUSH2 0x23C7 DUP2 PUSH2 0x381E JUMP JUMPDEST PUSH1 0x67 DUP1 SLOAD PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xD0 SHL MUL PUSH2 0xFFFF PUSH1 0xD0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMPDEST PUSH32 0xEEEAE4504D4C033C7DA36BF41D8ECE7C21842071CA9F9B423F8E8E36483DCD96 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH2 0x241A SWAP3 SWAP2 SWAP1 PUSH2 0x4FC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST CALLER PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x246E JUMPI PUSH1 0x40 MLOAD PUSH4 0x4E63EDA3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST POP DUP3 PUSH2 0x247C DUP2 PUSH2 0xF65 PUSH2 0xC04 JUMP JUMPDEST SWAP4 POP DUP4 PUSH0 SUB PUSH2 0x248C JUMPI SWAP1 POP PUSH2 0xA84 JUMP JUMPDEST PUSH2 0x24AD DUP5 PUSH2 0x2498 PUSH2 0x2573 JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP2 SWAP1 PUSH2 0x3837 JUMP JUMPDEST POP CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP3 DUP6 ADD MLOAD SWAP5 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP2 SWAP1 SWAP2 OR SWAP3 SWAP1 SWAP3 AND OR SWAP1 SSTORE PUSH2 0x2524 PUSH2 0x1FE1 DUP6 PUSH2 0x4FE1 JUMP JUMPDEST PUSH2 0x252E DUP4 DUP6 PUSH2 0x2EFF JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE CALLER SWAP2 PUSH32 0x98697A4799DBD9DB66C7168304C43CBA77A27A50D2785625E09072E0D91FDD53 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x1190 DUP5 DUP3 PUSH2 0x4E57 JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH0 SWAP1 PUSH2 0xC21 SWAP1 PUSH1 0x1 PUSH1 0xD0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO DUP1 PUSH2 0x2632 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2603 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 0x2627 SWAP2 SWAP1 PUSH2 0x4EA2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP2 SWAP1 PUSH2 0x265D JUMPI PUSH1 0x40 MLOAD PUSH4 0xF4AE1987 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 0x1061 JUMP JUMPDEST POP PUSH1 0x69 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0xF9F12DB81524E0E7D35F2779DAF818E6824509F85B09470F5C1C4D29304A756B SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x69 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 PUSH2 0x26D0 PUSH2 0x15A6 JUMP JUMPDEST PUSH0 PUSH2 0x26E3 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x2756 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x272F 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 0x2753 SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST SWAP3 POP JUMPDEST PUSH2 0x2760 DUP2 DUP5 PUSH2 0x3867 JUMP JUMPDEST POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x278B JUMPI PUSH1 0x40 MLOAD PUSH4 0x313C8981 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x27F5 DUP13 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x5AB42CED628888259C08AC98DB1EB0CF702FC1501344311D8B100CD1BFE4BB00 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH0 PUSH2 0x284F DUP3 PUSH2 0x391A JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x285E DUP3 DUP8 DUP8 DUP8 PUSH2 0x3946 JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x28A5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x25C00723 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x4 DUP4 ADD MSTORE DUP12 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x28B0 DUP11 DUP11 DUP11 PUSH2 0x2BAE JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE01 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 0x67 SLOAD PUSH0 SWAP1 PUSH2 0xC21 SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x3809 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x2967 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x299B JUMPI PUSH1 0x40 MLOAD PUSH4 0x3D560939 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 0x1061 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0x29EE JUMPI PUSH1 0x40 MLOAD PUSH4 0xA3E8F9B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST POP PUSH2 0x29F8 DUP2 PUSH2 0x3972 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0x66C0F28249C4FC4DB79872A4405BE78A93F19C65AC9EF2F173867A149065BCF2 SWAP1 PUSH0 SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2A8C 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 0xC21 SWAP2 SWAP1 PUSH2 0x4EA2 JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH0 SWAP1 PUSH2 0xC21 SWAP1 PUSH1 0x1 PUSH1 0xB0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x3809 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0xA84 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x2B0B DUP7 DUP7 PUSH2 0x398E JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x2B2F JUMPI DUP4 DUP2 DUP2 PUSH2 0x2B25 JUMPI PUSH2 0x2B25 PUSH2 0x4FFB JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0xED6 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x2B46 JUMPI PUSH2 0x2B46 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x39AA JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1390 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x39BB JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5188 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP4 SWAP1 SWAP4 MSTORE POP POP PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH0 SWAP1 PUSH2 0xA84 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH4 0x5F5E100 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3A9F JUMP JUMPDEST DUP2 SLOAD PUSH0 SWAP1 DUP2 SWAP1 PUSH2 0x2C2D SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x3AD4 JUMP JUMPDEST SWAP1 POP DUP1 PUSH0 SUB PUSH2 0x2C4F JUMPI POP POP DUP2 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0xA84 JUMP JUMPDEST DUP4 SLOAD PUSH2 0x1190 SWAP1 PUSH2 0x2C73 SWAP1 DUP4 SWAP1 PUSH8 0xDE0B6B3A7640000 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x3B20 JUMP JUMPDEST DUP6 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x3B3B JUMP JUMPDEST PUSH0 PUSH2 0xED6 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP6 AND JUMPDEST PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B20 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6C82BBBF PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xD905777E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2D0D JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x2D0A SWAP2 DUP2 ADD SWAP1 PUSH2 0x4EBD JUMP JUMPDEST PUSH1 0x1 JUMPDEST ISZERO PUSH2 0x2D24 JUMPI DUP4 DUP2 LT ISZERO PUSH2 0x2D22 JUMPI PUSH1 0x1 SWAP2 POP DUP1 SWAP4 POP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2D93 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x2D90 SWAP2 DUP2 ADD SWAP1 PUSH2 0x4EBD JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2DE2 JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x25BCE30047860A48C9D8830DBF31873BE5434F4D28F14A5808A4EA8E35D08296 DUP5 PUSH1 0x40 MLOAD PUSH2 0x2DD2 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 PUSH2 0x2DE5 JUMP JUMPDEST SWAP2 POP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x2DF5 DUP2 PUSH2 0x36C9 JUMP JUMPDEST PUSH2 0x2DFE DUP2 PUSH2 0x3B57 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x2E0C DUP5 DUP5 PUSH2 0x28BC JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 LT ISZERO PUSH2 0x2070 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x2E51 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 PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x2070 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x39BB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x2E88 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2EB1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x1390 DUP4 DUP4 DUP4 PUSH2 0x3B8D JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0xED6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2EF4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x16F1 DUP3 PUSH0 DUP4 PUSH2 0x3B8D JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x2F33 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6427F273 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST POP DUP1 PUSH0 SUB PUSH2 0x2F3F JUMPI POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2F48 PUSH2 0x3798 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x2F8B JUMPI PUSH0 PUSH2 0x2F65 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x2F89 JUMPI PUSH2 0x2F89 DUP2 PUSH2 0x2F84 DUP5 DUP7 PUSH2 0x4E57 JUMP JUMPDEST PUSH2 0x3867 JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ADDRESS EQ PUSH2 0x1390 JUMPI PUSH2 0x1390 DUP4 DUP4 PUSH2 0x2FA8 PUSH2 0x2A2F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x3E15 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2FE1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x16F1 PUSH0 DUP4 DUP4 PUSH2 0x3B8D JUMP JUMPDEST DUP2 SLOAD PUSH0 SWAP1 TIMESTAMP SWAP1 PUSH4 0xFFFFFFFF DUP1 DUP4 AND PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP3 DIV AND LT ISZERO PUSH2 0x3066 JUMPI DUP4 SLOAD PUSH2 0x305E SWAP1 PUSH4 0x1E13380 SWAP1 PUSH2 0x302C SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP5 PUSH2 0x500F JUMP JUMPDEST PUSH2 0x303C SWAP1 PUSH4 0xFFFFFFFF AND DUP7 PUSH2 0x502B JUMP JUMPDEST PUSH2 0x3046 SWAP2 SWAP1 PUSH2 0x5042 JUMP JUMPDEST DUP6 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x3E4A JUMP JUMPDEST SWAP2 POP POP PUSH2 0xA84 JUMP JUMPDEST POP POP DUP2 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0xA84 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xED6 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP6 AND PUSH8 0xDE0B6B3A7640000 PUSH2 0x3A9F JUMP JUMPDEST PUSH0 PUSH2 0xC21 PUSH2 0x3E6D JUMP JUMPDEST PUSH2 0x30B9 PUSH1 0x64 DUP3 PUSH1 0x65 PUSH2 0x331F JUMP JUMPDEST DUP1 MLOAD PUSH1 0x64 DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP1 SWAP5 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND OR PUSH1 0x1 PUSH1 0x80 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 MUL SWAP3 SWAP1 SWAP3 OR PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x1 PUSH1 0xE0 SHL PUSH4 0xFFFFFFFF SWAP3 DUP4 AND MUL OR SWAP1 SWAP2 SSTORE PUSH2 0x3126 SWAP1 PUSH1 0x65 SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH2 0x3EE0 AND JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 SWAP2 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP2 AND OR PUSH1 0x65 SSTORE PUSH1 0x40 DUP1 MLOAD DUP5 DUP2 MSTORE SWAP2 DUP3 ADD DUP6 SWAP1 MSTORE DUP2 ADD DUP3 SWAP1 MSTORE DUP5 SWAP1 PUSH32 0x82E3211B2071BA731D809BC922F607D914D7CB7D76B03E72ACBE7753613E21F3 SWAP1 PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x3212 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x3206 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x3230 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x2DFE DUP2 PUSH2 0x3F7C JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x3295 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x3292 SWAP2 DUP2 ADD SWAP1 PUSH2 0x4EBD JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x32BD JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x32ED JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x1390 DUP4 DUP4 PUSH2 0x402D JUMP JUMPDEST DUP2 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP1 DUP4 GT ISZERO PUSH2 0x3316 JUMPI PUSH2 0x305E DUP2 DUP5 PUSH2 0x4E57 JUMP JUMPDEST PUSH0 SWAP2 POP POP PUSH2 0xA84 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 SLOAD PUSH2 0x3355 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x3AD4 JUMP JUMPDEST PUSH2 0x335F SWAP1 DUP5 PUSH2 0x5061 JUMP JUMPDEST DUP5 SLOAD SWAP1 SWAP4 POP PUSH0 SWAP1 PUSH2 0x33A0 SWAP1 PUSH2 0x3388 SWAP1 DUP7 SWAP1 PUSH8 0xDE0B6B3A7640000 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x4082 JUMP JUMPDEST DUP7 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x409D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP3 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH4 0xFFFFFFFF TIMESTAMP AND SWAP1 DUP3 ADD MSTORE SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH0 SUB PUSH2 0x343D JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x3414 DUP6 PUSH2 0x40E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x342B DUP5 PUSH2 0x40E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 MSTORE SWAP1 POP PUSH2 0xED6 JUMP JUMPDEST DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH0 PUSH2 0x3453 DUP6 DUP4 PUSH2 0x4F71 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x34AA PUSH2 0x346C DUP7 DUP9 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B20 JUMP JUMPDEST DUP9 SLOAD PUSH2 0x3491 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP7 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B20 JUMP JUMPDEST PUSH2 0x349B SWAP2 SWAP1 PUSH2 0x4F71 JUMP JUMPDEST PUSH8 0xDE0B6B3A7640000 DUP5 PUSH2 0x3B20 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x34C0 DUP5 PUSH2 0x40E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x34D7 DUP4 PUSH2 0x40E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE POP SWAP4 POP POP POP POP PUSH2 0xED6 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x3230 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0xA84 JUMP JUMPDEST PUSH2 0x3566 PUSH2 0x411A JUMP JUMPDEST PUSH2 0x3230 PUSH2 0x413F JUMP JUMPDEST PUSH2 0x3576 PUSH2 0x411A JUMP JUMPDEST PUSH2 0x16F1 DUP3 DUP3 PUSH2 0x4147 JUMP JUMPDEST PUSH2 0x3588 PUSH2 0x411A JUMP JUMPDEST PUSH2 0x2DFE DUP2 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x31 PUSH1 0xF8 SHL DUP2 MSTORE POP PUSH2 0x4197 JUMP JUMPDEST PUSH2 0x35B3 PUSH2 0x411A JUMP JUMPDEST PUSH2 0x35BD PUSH1 0x64 PUSH2 0x3972 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH2 0x2710 PUSH1 0x20 DUP4 ADD MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 ADD MSTORE PUSH1 0x67 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH2 0x271 PUSH1 0xA4 SHL OR SWAP1 SSTORE PUSH2 0x3606 PUSH1 0x2 DUP4 PUSH2 0x2222 JUMP JUMPDEST PUSH2 0x16F1 PUSH1 0x3 DUP3 PUSH2 0x2222 JUMP JUMPDEST PUSH0 DUP1 PUSH32 0x5AB42CED628888259C08AC98DB1EB0CF702FC1501344311D8B100CD1BFE4BB00 PUSH2 0x2BCC JUMP JUMPDEST PUSH32 0xA16A46D94261C7517CC8FF89F61C0CE93598E3C849801011DEE649A6A557D102 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51A8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0xB09 SWAP1 PUSH2 0x4E6A JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51A8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0xAF8 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x36BD DUP6 DUP6 PUSH2 0x36B8 DUP3 DUP8 PUSH2 0x2FEC JUMP JUMPDEST PUSH2 0x41F6 JUMP JUMPDEST SWAP2 POP SWAP2 POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x36D6 PUSH1 0x64 DUP3 PUSH1 0x65 PUSH2 0x331F JUMP JUMPDEST DUP1 MLOAD PUSH1 0x64 DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP1 SWAP5 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR OR SWAP3 SWAP1 SWAP3 AND OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x3740 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x42BF JUMP JUMPDEST PUSH2 0x2070 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFF SHL SUB DUP3 GT ISZERO PUSH2 0x3794 JUMPI PUSH1 0x40 MLOAD PUSH4 0x123BAF03 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x37A1 PUSH2 0x2A2F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 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 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x37E5 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 0xC21 SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST PUSH0 PUSH2 0xA84 PUSH6 0x5AF3107A4000 PUSH2 0xFFFF DUP5 AND PUSH2 0x502B JUMP JUMPDEST PUSH0 PUSH2 0xA84 PUSH2 0x3832 PUSH6 0x5AF3107A4000 DUP5 PUSH2 0x5042 JUMP JUMPDEST PUSH2 0x432C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x36BD DUP6 DUP6 PUSH2 0x3862 DUP3 DUP8 PUSH2 0x2FEC JUMP JUMPDEST PUSH2 0x435A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x38B8 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 0x38DC SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST POP PUSH1 0x32 SLOAD DUP2 GT ISZERO PUSH2 0x3900 JUMPI PUSH2 0x38F8 PUSH1 0x32 SLOAD DUP3 PUSH2 0xE57 SWAP2 SWAP1 PUSH2 0x4E57 JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE POP POP JUMP JUMPDEST DUP1 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x3911 SWAP2 SWAP1 PUSH2 0x4E57 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA84 PUSH2 0x3926 PUSH2 0x30A3 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH2 0x1901 PUSH1 0xF0 SHL DUP2 MSTORE PUSH1 0x2 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x3956 DUP9 DUP9 DUP9 DUP9 PUSH2 0x43EA JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x3966 DUP3 DUP3 PUSH2 0x44B2 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF TIMESTAMP AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH6 0x3782DACE9D9 PUSH1 0x92 SHL OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5188 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH2 0x39F2 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3A1B JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP4 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP4 SWAP1 SSTORE DUP2 ISZERO PUSH2 0x3A98 JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3A8F SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3AB9 PUSH0 DUP4 DUP1 PUSH2 0x3AB2 JUMPI PUSH2 0x3AB2 PUSH2 0x4FFB JUMP JUMPDEST DUP6 DUP8 MULMOD GT SWAP1 JUMP JUMPDEST DUP3 DUP5 DUP7 MUL DUP2 PUSH2 0x3ACA JUMPI PUSH2 0x3ACA PUSH2 0x4FFB JUMP JUMPDEST DIV ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 SLOAD PUSH0 SWAP1 PUSH2 0xED6 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH4 0x1E13380 PUSH2 0x3AFA PUSH4 0xFFFFFFFF DUP7 AND TIMESTAMP PUSH2 0x4E57 JUMP JUMPDEST DUP7 SLOAD PUSH2 0x3B16 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x502B JUMP JUMPDEST PUSH2 0x2C9B SWAP2 SWAP1 PUSH2 0x5042 JUMP JUMPDEST PUSH0 DUP2 DUP4 DUP6 MUL DUP2 PUSH2 0x3B32 JUMPI PUSH2 0x3B32 PUSH2 0x4FFB JUMP JUMPDEST DIV SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xED6 PUSH2 0x3B52 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH2 0x4F71 JUMP JUMPDEST PUSH2 0x456A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x731C439C5BAE15BE1344EEC709967E046B4F7D3F7E37ABEFFC5247F448FA18BF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3C0A JUMPI PUSH2 0x3BA9 PUSH1 0x64 DUP4 PUSH1 0x65 PUSH2 0x459D JUMP JUMPDEST DUP2 MLOAD PUSH1 0x64 DUP1 SLOAD PUSH1 0x20 DUP6 ADD MLOAD PUSH1 0x40 SWAP1 SWAP6 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP7 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR OR SWAP4 SWAP1 SWAP4 AND OR SWAP1 SWAP2 SSTORE SWAP1 POP PUSH2 0x3D06 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3C25 JUMPI PUSH2 0x3BA9 PUSH1 0x64 DUP4 PUSH1 0x65 PUSH2 0x45C8 JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 PUSH2 0x3CB9 JUMPI POP PUSH1 0x67 SLOAD PUSH1 0x40 MLOAD PUSH4 0x5FCDCA37 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP6 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD DUP6 SWAP1 MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x5FCDCA37 SWAP1 PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3C95 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 0x3CB9 SWAP2 SWAP1 PUSH2 0x4F3B JUMP JUMPDEST DUP5 DUP5 DUP5 SWAP1 SWAP2 SWAP3 PUSH2 0x3CDF JUMPI PUSH1 0x40 MLOAD PUSH4 0x25CFF2D3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1061 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4EF3 JUMP JUMPDEST POP PUSH2 0x3D03 SWAP2 POP DUP4 SWAP1 POP PUSH2 0x3CF4 PUSH1 0x64 PUSH1 0x65 PUSH2 0x2C0F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x45F3 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5188 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND ISZERO PUSH2 0x3DA3 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3D85 JUMPI DUP6 PUSH2 0x3D54 DUP3 PUSH2 0xC45 PUSH1 0x64 PUSH1 0x65 PUSH2 0x2C0F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP4 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP4 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x3DD0 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP4 ADD SWAP1 SSTORE JUMPDEST DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP6 PUSH1 0x40 MLOAD PUSH2 0x3A8F SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH2 0x3E22 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x4610 JUMP JUMPDEST PUSH2 0x1390 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH0 PUSH2 0xED6 PUSH2 0x3B52 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP6 AND PUSH2 0x2C9B PUSH8 0xDE0B6B3A7640000 DUP7 PUSH2 0x4F71 JUMP JUMPDEST PUSH0 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH2 0x3E97 PUSH2 0x4672 JUMP JUMPDEST PUSH2 0x3E9F PUSH2 0x46DA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP4 SWAP1 SUB PUSH2 0x3F1E JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xED6 JUMP JUMPDEST DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH0 PUSH2 0x3F34 DUP6 DUP4 PUSH2 0x4E57 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x34AA PUSH2 0x3F4D DUP7 DUP9 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B20 JUMP JUMPDEST DUP9 SLOAD PUSH2 0x3F72 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP7 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B20 JUMP JUMPDEST PUSH2 0x349B SWAP2 SWAP1 PUSH2 0x4E57 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3FE2 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 0x4006 SWAP2 SWAP1 PUSH2 0x4EA2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2DFE JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4036 DUP3 PUSH2 0x471C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x407A JUMPI PUSH2 0x1390 DUP3 DUP3 PUSH2 0x477F JUMP JUMPDEST PUSH2 0x16F1 PUSH2 0x4810 JUMP JUMPDEST PUSH0 DUP2 DUP4 DUP6 MUL DUP2 PUSH2 0x4094 JUMPI PUSH2 0x4094 PUSH2 0x4FFB JUMP JUMPDEST SDIV SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x40B2 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH2 0x5061 JUMP JUMPDEST SWAP1 POP DUP1 PUSH4 0x5F5E100 DUP2 LT ISZERO PUSH2 0x40DD JUMPI PUSH1 0x40 MLOAD PUSH4 0x6C53FB2B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1061 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP PUSH2 0x1190 DUP2 PUSH2 0x456A JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 GT ISZERO PUSH2 0x3794 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x80 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x4122 PUSH2 0x482F JUMP JUMPDEST PUSH2 0x3230 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3230 PUSH2 0x411A JUMP JUMPDEST PUSH2 0x414F PUSH2 0x411A JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5188 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 PUSH2 0x4188 DUP5 DUP3 PUSH2 0x50CC JUMP JUMPDEST POP PUSH1 0x4 DUP2 ADD PUSH2 0x2070 DUP4 DUP3 PUSH2 0x50CC JUMP JUMPDEST PUSH2 0x419F PUSH2 0x411A JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51A8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0xA16A46D94261C7517CC8FF89F61C0CE93598E3C849801011DEE649A6A557D102 PUSH2 0x41D8 DUP5 DUP3 PUSH2 0x50CC JUMP JUMPDEST POP PUSH1 0x3 DUP2 ADD PUSH2 0x41E7 DUP4 DUP3 PUSH2 0x50CC JUMP JUMPDEST POP PUSH0 DUP1 DUP3 SSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SSTORE POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x4225 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP5 AND DUP6 PUSH2 0x45F3 JUMP JUMPDEST DUP6 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO SWAP1 DUP2 MUL DUP2 PUSH2 0x4264 JUMPI PUSH2 0x4255 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP8 AND DUP9 PUSH2 0x4848 JUMP JUMPDEST SWAP4 POP PUSH2 0x4261 DUP5 DUP5 PUSH2 0x4E57 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP1 PUSH0 SUB PUSH2 0x4277 JUMPI PUSH8 0xDE0B6B3A7640000 SWAP6 POP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x428B DUP4 PUSH2 0x40E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP5 POP POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x431B JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x430F JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xFFFF DUP3 GT ISZERO PUSH2 0x3794 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x10 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x4389 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP5 AND DUP6 PUSH2 0x4848 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD SWAP1 SWAP2 MSTORE DUP7 SLOAD SWAP2 SWAP3 POP SWAP1 DUP2 SWAP1 PUSH2 0x43B9 SWAP1 PUSH2 0x43B4 SWAP1 DUP6 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x4F71 JUMP JUMPDEST PUSH2 0x40E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP2 POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0x4423 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x44A8 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 0x4474 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 0x449F JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x44A8 JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x44C5 JUMPI PUSH2 0x44C5 PUSH2 0x4F84 JUMP JUMPDEST SUB PUSH2 0x44CE JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x44E2 JUMPI PUSH2 0x44E2 PUSH2 0x4F84 JUMP JUMPDEST SUB PUSH2 0x4500 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 0x4514 JUMPI PUSH2 0x4514 PUSH2 0x4F84 JUMP JUMPDEST SUB PUSH2 0x4535 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x4549 JUMPI PUSH2 0x4549 PUSH2 0x4F84 JUMP JUMPDEST SUB PUSH2 0x16F1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP3 GT ISZERO PUSH2 0x3794 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x60 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x36BD DUP6 DUP6 PUSH2 0x3862 DUP3 DUP8 PUSH2 0x2C0F JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x36BD DUP6 DUP6 PUSH2 0x36B8 DUP3 DUP8 PUSH2 0x2C0F JUMP JUMPDEST PUSH0 PUSH2 0xED6 DUP3 PUSH8 0xDE0B6B3A7640000 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH2 0x3A9F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x4666 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x465A JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51A8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x468A PUSH2 0x3639 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x46A2 JUMPI DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 SLOAD DUP1 ISZERO PUSH2 0x46B1 JUMPI SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0xC5D2460186F7233C927E7DB2DCC703C0E500B653CA82273B7BFAD8045D85A470 SWAP4 POP POP POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51A8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x46F2 PUSH2 0x3677 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x470A JUMPI DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SLOAD DUP1 ISZERO PUSH2 0x46B1 JUMPI SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x4751 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x478C DUP5 DUP5 PUSH2 0x4865 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x47AD JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x47AD JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x47BA JUMPI PUSH2 0x305E PUSH2 0x4878 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x47E4 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 0x1061 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x47F7 JUMPI PUSH2 0x47F2 PUSH2 0x4891 JUMP JUMPDEST PUSH2 0x307F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLVALUE ISZERO PUSH2 0x3230 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x4838 PUSH2 0x3536 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xED6 DUP3 PUSH8 0xDE0B6B3A7640000 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH2 0x3B20 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x48AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xED6 JUMPI PUSH0 PUSH0 REVERT 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 PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0xED6 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x48C3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2DFE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4928 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4933 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4951 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xED6 DUP2 PUSH2 0x4903 JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x2DFE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x497A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4985 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4995 DUP2 PUSH2 0x495C JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x49B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x49BD DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x49CD DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x49F1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x4A03 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x4A13 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x4A23 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4A40 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x4A52 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x4A62 DUP2 PUSH2 0x4903 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x4A82 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH1 0x60 DUP8 ADD CALLDATALOAD SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD PUSH2 0x4AA9 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP3 SWAP6 SWAP2 SWAP5 SWAP4 PUSH1 0xA0 SWAP1 SWAP3 ADD CALLDATALOAD SWAP3 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP5 GT ISZERO PUSH2 0x4AEC JUMPI PUSH2 0x4AEC PUSH2 0x4ABE JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x4B1B JUMPI PUSH2 0x4B1B PUSH2 0x4ABE JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP6 LT ISZERO PUSH2 0x4B32 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4B5A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4B65 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4B80 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x4B90 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4B9F DUP6 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x4AD2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4BBB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP2 CALLDATALOAD SWAP4 PUSH1 0x20 DUP4 ADD CALLDATALOAD SWAP4 POP PUSH1 0x40 SWAP1 SWAP3 ADD CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x4BE1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xED6 DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x4AD2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4C03 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4C19 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4C25 DUP8 DUP3 DUP9 ADD PUSH2 0x4BD2 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4C41 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4C4D DUP8 DUP3 DUP9 ADD PUSH2 0x4BD2 JUMP JUMPDEST SWAP5 SWAP8 SWAP5 SWAP7 POP POP POP POP PUSH1 0x40 DUP4 ADD CALLDATALOAD SWAP3 PUSH1 0x60 ADD CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4C74 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xED6 DUP2 PUSH2 0x495C JUMP JUMPDEST PUSH1 0xFF PUSH1 0xF8 SHL DUP9 AND DUP2 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0x4C9D PUSH1 0xE0 DUP4 ADD DUP10 PUSH2 0x48C3 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x4CAF DUP2 DUP10 PUSH2 0x48C3 JUMP JUMPDEST PUSH1 0x60 DUP5 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD DUP7 SWAP1 MSTORE DUP4 DUP2 SUB PUSH1 0xC0 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP8 ADD SWAP4 POP SWAP1 SWAP2 ADD SWAP1 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x4D04 JUMPI DUP4 MLOAD DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x4CE6 JUMP JUMPDEST POP SWAP1 SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4D26 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4995 DUP2 PUSH2 0x4903 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4D48 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4D62 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 CALLDATALOAD SWAP5 PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP4 PUSH1 0x60 ADD CALLDATALOAD SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4D8F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x4 DUP2 LT PUSH2 0x4933 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x2DFE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x4DC1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x4DCC DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD PUSH2 0x4DDC DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH2 0x4DFA DUP2 PUSH2 0x4D9D JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4E28 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4E33 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4995 DUP2 PUSH2 0x4903 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 0xA84 JUMPI PUSH2 0xA84 PUSH2 0x4E43 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4E7E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x4E9C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4EB2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xED6 DUP2 PUSH2 0x4903 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4ECD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP2 DUP2 SUB PUSH0 DUP4 SLT DUP1 ISZERO DUP4 DUP4 SGT AND DUP4 DUP4 SLT DUP3 AND OR ISZERO PUSH2 0x307F JUMPI PUSH2 0x307F PUSH2 0x4E43 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4F27 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xED6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4F4B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xED6 DUP2 PUSH2 0x495C JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4F66 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xED6 DUP2 PUSH2 0x4D9D JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xA84 JUMPI PUSH2 0xA84 PUSH2 0x4E43 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x4FB4 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0xA84 DUP3 DUP5 PUSH2 0x4F98 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4FD4 DUP3 DUP6 PUSH2 0x4F98 JUMP JUMPDEST DUP3 PUSH1 0x20 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x4FF5 JUMPI PUSH2 0x4FF5 PUSH2 0x4E43 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0xA84 JUMPI PUSH2 0xA84 PUSH2 0x4E43 JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0xA84 JUMPI PUSH2 0xA84 PUSH2 0x4E43 JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x505C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x5080 JUMPI PUSH2 0x5080 PUSH2 0x4E43 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x1390 JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x50AD JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3A98 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x50B9 JUMP JUMPDEST DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x50E6 JUMPI PUSH2 0x50E6 PUSH2 0x4ABE JUMP JUMPDEST PUSH2 0x50FA DUP2 PUSH2 0x50F4 DUP5 SLOAD PUSH2 0x4E6A JUMP JUMPDEST DUP5 PUSH2 0x5088 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x512C JUMPI PUSH0 DUP4 ISZERO PUSH2 0x5115 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 0x3A98 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x515B JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x513B JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x5178 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 INVALID MSTORE 0xC6 ORIGIN SELFBALANCE RJUMPI 0xF47D 0xB1 SWAP14 TLOAD RJUMP 0x4600 ADDRESS 0xC4 SWAP8 CREATE PUSH8 0xCA4CEBF71BA98EEA 0xDA 0xBE KECCAK256 0xBA 0xCE STOP LOG1 PUSH11 0x46D94261C7517CC8FF89F6 SHR 0xC 0xE9 CALLDATALOAD SWAP9 CALLF 0xC849 DUP1 LT GT 0xDE DUPN 0x49 0xA6 0xA5 JUMPI DATALOADN 0x36 ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCA26469706673582212209B SLT MCOPY DUP2 DELEGATECALL 0xBE 0xAC GAS 0xD6 0xBA JUMPI 0xF6 PUSH30 0xAD9C77FB08BB1CD1D397C3C72D7632245DCC7B64736F6C634300081E0033 ","sourceMap":"1883:26155:22:-:0;;;1084:4:76;1041:48;;9320:60:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9365:11;;-1:-1:-1;;;;;1540:34:25;;1536:65;;1583:18;;-1:-1:-1;;;1583:18:25;;;;;;;;;;;1536:65;1607:22;:20;:22::i;:::-;-1:-1:-1;;;;;1635:25:25;;;-1:-1:-1;1883:26155:22;;-1:-1:-1;1883:26155:22;7709:422:75;3147:66;7898:15;;;;;;;7894:76;;;7936:23;;-1:-1:-1;;;7936:23:75;;;;;;;;;;;7894:76;7983:14;;-1:-1:-1;;;;;7983:14:75;;;:34;7979:146;;8033:33;;-1:-1:-1;;;;;;8033:33:75;-1:-1:-1;;;;;8033:33:75;;;;;8085:29;;474:50:125;;;8085:29:75;;462:2:125;447:18;8085:29:75;;;;;;;7979:146;7758:373;7709:422::o;14:311:125:-;105:6;158:2;146:9;137:7;133:23;129:32;126:52;;;174:1;171;164:12;126:52;200:16;;-1:-1:-1;;;;;245:31:125;;235:42;;225:70;;291:1;288;281:12;225:70;314:5;14:311;-1:-1:-1;;;14:311:125:o;330:200::-;1883:26155:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@DOMAIN_SEPARATOR_16781":{"entryPoint":5367,"id":16781,"parameterSlots":0,"returnSlots":1},"@UPGRADE_INTERFACE_VERSION_23454":{"entryPoint":null,"id":23454,"parameterSlots":0,"returnSlots":0},"@_4toWad_6590":{"entryPoint":14345,"id":6590,"parameterSlots":1,"returnSlots":1},"@_EIP712NameHash_19337":{"entryPoint":18034,"id":19337,"parameterSlots":0,"returnSlots":1},"@_EIP712Name_19269":{"entryPoint":13881,"id":19269,"parameterSlots":0,"returnSlots":1},"@_EIP712VersionHash_19389":{"entryPoint":18138,"id":19389,"parameterSlots":0,"returnSlots":1},"@_EIP712Version_19285":{"entryPoint":13943,"id":19285,"parameterSlots":0,"returnSlots":1},"@__EIP712_init_unchained_19143":{"entryPoint":16791,"id":19143,"parameterSlots":2,"returnSlots":0},"@__ERC20Permit_init_16669":{"entryPoint":13696,"id":16669,"parameterSlots":1,"returnSlots":0},"@__ERC20_init_16064":{"entryPoint":13678,"id":16064,"parameterSlots":2,"returnSlots":0},"@__ERC20_init_unchained_16092":{"entryPoint":16711,"id":16092,"parameterSlots":2,"returnSlots":0},"@__EToken_init_unchained_6147":{"entryPoint":13739,"id":6147,"parameterSlots":2,"returnSlots":0},"@__PolicyPoolComponent_init_11015":{"entryPoint":16703,"id":11015,"parameterSlots":0,"returnSlots":0},"@__Reserve_init_12929":{"entryPoint":13662,"id":12929,"parameterSlots":0,"returnSlots":0},"@_add_5261":{"entryPoint":17242,"id":5261,"parameterSlots":3,"returnSlots":2},"@_approve_16496":{"entryPoint":11182,"id":16496,"parameterSlots":3,"returnSlots":0},"@_approve_16564":{"entryPoint":14779,"id":16564,"parameterSlots":4,"returnSlots":0},"@_authorizeUpgrade_11026":{"entryPoint":12850,"id":11026,"parameterSlots":1,"returnSlots":0},"@_balance_13308":{"entryPoint":14232,"id":13308,"parameterSlots":0,"returnSlots":1},"@_buildDomainSeparator_19176":{"entryPoint":15981,"id":19176,"parameterSlots":0,"returnSlots":1},"@_burn_16478":{"entryPoint":11979,"id":16478,"parameterSlots":2,"returnSlots":0},"@_checkInitializing_23342":{"entryPoint":16666,"id":23342,"parameterSlots":0,"returnSlots":0},"@_checkNonPayable_23119":{"entryPoint":18448,"id":23119,"parameterSlots":0,"returnSlots":0},"@_checkNotDelegated_23548":{"entryPoint":13549,"id":23548,"parameterSlots":0,"returnSlots":0},"@_checkProxy_23532":{"entryPoint":12684,"id":23532,"parameterSlots":0,"returnSlots":0},"@_deinvest_13215":{"entryPoint":14439,"id":13215,"parameterSlots":2,"returnSlots":0},"@_discreteChange_6891":{"entryPoint":14025,"id":6891,"parameterSlots":1,"returnSlots":0},"@_domainSeparatorV4_19153":{"entryPoint":12451,"id":19153,"parameterSlots":0,"returnSlots":1},"@_getEIP712Storage_19087":{"entryPoint":null,"id":19087,"parameterSlots":0,"returnSlots":1},"@_getERC20StorageFromEToken_6062":{"entryPoint":null,"id":6062,"parameterSlots":0,"returnSlots":1},"@_getERC20Storage_16048":{"entryPoint":null,"id":16048,"parameterSlots":0,"returnSlots":1},"@_getInitializableStorage_23433":{"entryPoint":13622,"id":23433,"parameterSlots":0,"returnSlots":1},"@_getNoncesStorage_18806":{"entryPoint":null,"id":18806,"parameterSlots":0,"returnSlots":1},"@_hashTypedDataV4_19192":{"entryPoint":14618,"id":19192,"parameterSlots":1,"returnSlots":1},"@_initializableStorageSlot_23419":{"entryPoint":null,"id":23419,"parameterSlots":0,"returnSlots":1},"@_isInitializing_23410":{"entryPoint":18479,"id":23410,"parameterSlots":0,"returnSlots":1},"@_mint_16445":{"entryPoint":12216,"id":16445,"parameterSlots":2,"returnSlots":0},"@_msgSender_18654":{"entryPoint":null,"id":18654,"parameterSlots":0,"returnSlots":1},"@_mulDivCeil_4902":{"entryPoint":15007,"id":4902,"parameterSlots":3,"returnSlots":1},"@_mulDiv_4849":{"entryPoint":15136,"id":4849,"parameterSlots":3,"returnSlots":1},"@_mulDiv_4870":{"entryPoint":16514,"id":4870,"parameterSlots":3,"returnSlots":1},"@_safeDeInvestAll_13290":{"entryPoint":11433,"id":13290,"parameterSlots":2,"returnSlots":2},"@_safeTransferFrom_25392":{"entryPoint":17087,"id":25392,"parameterSlots":5,"returnSlots":1},"@_safeTransfer_25367":{"entryPoint":17936,"id":25367,"parameterSlots":4,"returnSlots":1},"@_setImplementation_22899":{"entryPoint":18204,"id":22899,"parameterSlots":1,"returnSlots":0},"@_setYieldVault_6575":{"entryPoint":null,"id":6575,"parameterSlots":1,"returnSlots":0},"@_spendAllowance_16612":{"entryPoint":11777,"id":16612,"parameterSlots":3,"returnSlots":0},"@_sub_5344":{"entryPoint":16886,"id":5344,"parameterSlots":3,"returnSlots":2},"@_throwError_33172":{"entryPoint":17586,"id":33172,"parameterSlots":2,"returnSlots":0},"@_transferTo_13003":{"entryPoint":12031,"id":13003,"parameterSlots":2,"returnSlots":0},"@_transfer_16320":{"entryPoint":11871,"id":16320,"parameterSlots":3,"returnSlots":0},"@_unlockScr_6796":{"entryPoint":12460,"id":6796,"parameterSlots":4,"returnSlots":0},"@_update_6396":{"entryPoint":15245,"id":6396,"parameterSlots":3,"returnSlots":0},"@_upgradeToAndCallUUPS_23599":{"entryPoint":12859,"id":23599,"parameterSlots":2,"returnSlots":0},"@_upgradeValidations_11043":{"entryPoint":16252,"id":11043,"parameterSlots":1,"returnSlots":0},"@_useNonce_18860":{"entryPoint":null,"id":18860,"parameterSlots":1,"returnSlots":1},"@_wadTo4_6605":{"entryPoint":14366,"id":6605,"parameterSlots":1,"returnSlots":1},"@_yieldEarnings_13037":{"entryPoint":15191,"id":13037,"parameterSlots":1,"returnSlots":0},"@_yieldEarnings_6877":{"entryPoint":11756,"id":6877,"parameterSlots":1,"returnSlots":0},"@addBorrower_7220":{"entryPoint":10526,"id":7220,"parameterSlots":1,"returnSlots":0},"@add_5035":{"entryPoint":15163,"id":5035,"parameterSlots":2,"returnSlots":1},"@add_5078":{"entryPoint":16541,"id":5078,"parameterSlots":2,"returnSlots":1},"@add_5370":{"entryPoint":14391,"id":5370,"parameterSlots":3,"returnSlots":2},"@add_5423":{"entryPoint":17821,"id":5423,"parameterSlots":3,"returnSlots":2},"@add_5604":{"entryPoint":13276,"id":5604,"parameterSlots":3,"returnSlots":1},"@allowance_16217":{"entryPoint":10428,"id":16217,"parameterSlots":2,"returnSlots":1},"@approve_16241":{"entryPoint":2955,"id":16241,"parameterSlots":2,"returnSlots":1},"@balanceOf_16169":{"entryPoint":11195,"id":16169,"parameterSlots":1,"returnSlots":1},"@balanceOf_6235":{"entryPoint":6704,"id":6235,"parameterSlots":1,"returnSlots":1},"@bubbleRevert_26962":{"entryPoint":18577,"id":26962,"parameterSlots":0,"returnSlots":0},"@cooler_7675":{"entryPoint":null,"id":7675,"parameterSlots":0,"returnSlots":1},"@currency_11088":{"entryPoint":10799,"id":11088,"parameterSlots":0,"returnSlots":1},"@decimals_6197":{"entryPoint":5013,"id":6197,"parameterSlots":0,"returnSlots":1},"@delegatecallNoReturn_26924":{"entryPoint":18533,"id":26924,"parameterSlots":2,"returnSlots":1},"@depositIntoYieldVault_13431":{"entryPoint":8323,"id":13431,"parameterSlots":1,"returnSlots":0},"@deposit_6962":{"entryPoint":4504,"id":6962,"parameterSlots":3,"returnSlots":0},"@discreteChange_5508":{"entryPoint":13087,"id":5508,"parameterSlots":3,"returnSlots":1},"@earnings_5714":{"entryPoint":15060,"id":5714,"parameterSlots":2,"returnSlots":1},"@eip712Domain_19253":{"entryPoint":7025,"id":19253,"parameterSlots":0,"returnSlots":7},"@functionDelegateCall_25956":{"entryPoint":18303,"id":25956,"parameterSlots":2,"returnSlots":1},"@fundsAvailableToLock_6552":{"entryPoint":7896,"id":6552,"parameterSlots":0,"returnSlots":1},"@fundsAvailable_5744":{"entryPoint":13047,"id":5744,"parameterSlots":2,"returnSlots":1},"@fundsAvailable_6482":{"entryPoint":5877,"id":6482,"parameterSlots":0,"returnSlots":1},"@getAddressSlot_31145":{"entryPoint":null,"id":31145,"parameterSlots":1,"returnSlots":1},"@getCurrentScale_6469":{"entryPoint":6957,"id":6469,"parameterSlots":1,"returnSlots":1},"@getImplementation_22872":{"entryPoint":null,"id":22872,"parameterSlots":0,"returnSlots":1},"@getLoan_7449":{"entryPoint":5237,"id":7449,"parameterSlots":1,"returnSlots":1},"@getScaledUserBalanceAndSupply_6432":{"entryPoint":2978,"id":6432,"parameterSlots":1,"returnSlots":2},"@grow_5010":{"entryPoint":15946,"id":5010,"parameterSlots":2,"returnSlots":1},"@init_5215":{"entryPoint":14706,"id":5215,"parameterSlots":1,"returnSlots":0},"@initialize_6105":{"entryPoint":6424,"id":6105,"parameterSlots":4,"returnSlots":0},"@internalLoanInterestRate_7461":{"entryPoint":9587,"id":7461,"parameterSlots":0,"returnSlots":1},"@internalLoan_7343":{"entryPoint":9254,"id":7343,"parameterSlots":2,"returnSlots":1},"@investedInYV_13026":{"entryPoint":null,"id":13026,"parameterSlots":0,"returnSlots":1},"@liquidityRequirement_6674":{"entryPoint":8713,"id":6674,"parameterSlots":0,"returnSlots":1},"@lockScr_6761":{"entryPoint":5897,"id":6761,"parameterSlots":3,"returnSlots":0},"@maxNegativeAdjustment_7271":{"entryPoint":3076,"id":7271,"parameterSlots":0,"returnSlots":1},"@maxUtilizationRate_6686":{"entryPoint":10501,"id":6686,"parameterSlots":0,"returnSlots":1},"@minUtilizationRate_6698":{"entryPoint":10928,"id":6698,"parameterSlots":0,"returnSlots":1},"@minValue_5528":{"entryPoint":11243,"id":5528,"parameterSlots":1,"returnSlots":1},"@min_33872":{"entryPoint":11964,"id":33872,"parameterSlots":2,"returnSlots":1},"@mul512_33585":{"entryPoint":14734,"id":33585,"parameterSlots":2,"returnSlots":2},"@mulDiv_34072":{"entryPoint":11006,"id":34072,"parameterSlots":3,"returnSlots":1},"@name_16108":{"entryPoint":2790,"id":16108,"parameterSlots":0,"returnSlots":1},"@nonces_16771":{"entryPoint":7015,"id":16771,"parameterSlots":1,"returnSlots":1},"@nonces_18838":{"entryPoint":13841,"id":18838,"parameterSlots":1,"returnSlots":1},"@panic_30996":{"entryPoint":14762,"id":30996,"parameterSlots":1,"returnSlots":0},"@permit_16754":{"entryPoint":10087,"id":16754,"parameterSlots":7,"returnSlots":0},"@policyPool_11077":{"entryPoint":null,"id":11077,"parameterSlots":0,"returnSlots":1},"@projectScale_5141":{"entryPoint":12268,"id":5141,"parameterSlots":2,"returnSlots":1},"@projectScale_5186":{"entryPoint":11279,"id":5186,"parameterSlots":2,"returnSlots":1},"@proxiableUUID_23490":{"entryPoint":6252,"id":23490,"parameterSlots":0,"returnSlots":1},"@recordEarnings_13494":{"entryPoint":5542,"id":13494,"parameterSlots":0,"returnSlots":0},"@recover_33095":{"entryPoint":14662,"id":33095,"parameterSlots":4,"returnSlots":1},"@redistribute_7171":{"entryPoint":8139,"id":7171,"parameterSlots":1,"returnSlots":0},"@removeBorrower_7257":{"entryPoint":6729,"id":7257,"parameterSlots":1,"returnSlots":0},"@repayLoan_7407":{"entryPoint":7509,"id":7407,"parameterSlots":2,"returnSlots":0},"@returnDataSize_26948":{"entryPoint":null,"id":26948,"parameterSlots":0,"returnSlots":1},"@returnData_26956":{"entryPoint":18552,"id":26956,"parameterSlots":0,"returnSlots":1},"@safeTransferFrom_25041":{"entryPoint":14130,"id":25041,"parameterSlots":4,"returnSlots":0},"@safeTransfer_25010":{"entryPoint":15893,"id":25010,"parameterSlots":3,"returnSlots":0},"@scaledBalanceOf_6410":{"entryPoint":3758,"id":6410,"parameterSlots":1,"returnSlots":1},"@scaledTotalSupply_6445":{"entryPoint":null,"id":6445,"parameterSlots":0,"returnSlots":1},"@scrAmount_5760":{"entryPoint":null,"id":5760,"parameterSlots":1,"returnSlots":1},"@scrInterestRate_6631":{"entryPoint":null,"id":6631,"parameterSlots":0,"returnSlots":1},"@scr_6617":{"entryPoint":6405,"id":6617,"parameterSlots":0,"returnSlots":1},"@setCooler_7663":{"entryPoint":9612,"id":7663,"parameterSlots":1,"returnSlots":0},"@setParam_7566":{"entryPoint":8738,"id":7566,"parameterSlots":2,"returnSlots":0},"@setWhitelist_7611":{"entryPoint":7194,"id":7611,"parameterSlots":1,"returnSlots":0},"@setYieldVault_13168":{"entryPoint":3156,"id":13168,"parameterSlots":2,"returnSlots":0},"@sub_5396":{"entryPoint":13965,"id":5396,"parameterSlots":3,"returnSlots":2},"@sub_5450":{"entryPoint":17864,"id":5450,"parameterSlots":3,"returnSlots":2},"@sub_5676":{"entryPoint":16096,"id":5676,"parameterSlots":3,"returnSlots":1},"@supportsInterface_11067":{"entryPoint":10953,"id":11067,"parameterSlots":1,"returnSlots":1},"@supportsInterface_6183":{"entryPoint":2601,"id":6183,"parameterSlots":1,"returnSlots":1},"@symbol_16124":{"entryPoint":7834,"id":16124,"parameterSlots":0,"returnSlots":1},"@ternary_33834":{"entryPoint":null,"id":33834,"parameterSlots":3,"returnSlots":1},"@toCurrentCeil_4942":{"entryPoint":12422,"id":4942,"parameterSlots":2,"returnSlots":1},"@toCurrent_4922":{"entryPoint":11403,"id":4922,"parameterSlots":2,"returnSlots":1},"@toInt256_36941":{"entryPoint":14184,"id":36941,"parameterSlots":1,"returnSlots":1},"@toScaledCeil_4982":{"entryPoint":17907,"id":4982,"parameterSlots":2,"returnSlots":1},"@toScaled_4962":{"entryPoint":18504,"id":4962,"parameterSlots":2,"returnSlots":1},"@toTypedDataHash_33298":{"entryPoint":null,"id":33298,"parameterSlots":2,"returnSlots":1},"@toUint128_35662":{"entryPoint":16615,"id":35662,"parameterSlots":1,"returnSlots":1},"@toUint16_36054":{"entryPoint":17196,"id":36054,"parameterSlots":1,"returnSlots":1},"@toUint256_5093":{"entryPoint":null,"id":5093,"parameterSlots":1,"returnSlots":1},"@toUint96_35774":{"entryPoint":17770,"id":35774,"parameterSlots":1,"returnSlots":1},"@toUint_36951":{"entryPoint":null,"id":36951,"parameterSlots":1,"returnSlots":1},"@tokenInterestRate_6662":{"entryPoint":3012,"id":6662,"parameterSlots":0,"returnSlots":1},"@totalSupply_6214":{"entryPoint":3110,"id":6214,"parameterSlots":0,"returnSlots":1},"@totalWithdrawable_6996":{"entryPoint":2698,"id":6996,"parameterSlots":0,"returnSlots":1},"@transferFrom_16273":{"entryPoint":3768,"id":16273,"parameterSlots":3,"returnSlots":1},"@transfer_16193":{"entryPoint":8310,"id":16193,"parameterSlots":2,"returnSlots":1},"@tryRecover_33059":{"entryPoint":17386,"id":33059,"parameterSlots":4,"returnSlots":3},"@trySub_33655":{"entryPoint":null,"id":33655,"parameterSlots":2,"returnSlots":2},"@unlockScrWithRefund_6860":{"entryPoint":5376,"id":6860,"parameterSlots":6,"returnSlots":0},"@unlockScr_6818":{"entryPoint":8222,"id":6818,"parameterSlots":4,"returnSlots":0},"@upgradeToAndCall_22935":{"entryPoint":16429,"id":22935,"parameterSlots":2,"returnSlots":0},"@upgradeToAndCall_23510":{"entryPoint":5846,"id":23510,"parameterSlots":2,"returnSlots":0},"@utilizationRate_6715":{"entryPoint":6279,"id":6715,"parameterSlots":0,"returnSlots":1},"@whitelist_7621":{"entryPoint":null,"id":7621,"parameterSlots":0,"returnSlots":1},"@withdrawFromYieldVault_13351":{"entryPoint":9927,"id":13351,"parameterSlots":1,"returnSlots":1},"@withdraw_7146":{"entryPoint":3805,"id":7146,"parameterSlots":4,"returnSlots":1},"@yieldVault_6563":{"entryPoint":null,"id":6563,"parameterSlots":0,"returnSlots":1},"abi_decode_available_length_bytes":{"entryPoint":19154,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_string":{"entryPoint":19410,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":18753,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":20130,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":19991,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":18848,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":19883,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_addresst_bytes_memory_ptr":{"entryPoint":19273,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":18711,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bool":{"entryPoint":19556,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":20283,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":18588,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_ICooler_$14162":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC4626_$22463t_bool":{"entryPoint":18793,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_ILPWhitelist_$14383":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_enum$_Parameter_$14171t_uint256":{"entryPoint":19838,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint256":{"entryPoint":19440,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_uint256":{"entryPoint":19768,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":20157,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_address":{"entryPoint":19733,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_addresst_address":{"entryPoint":18990,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint256t_addresst_addresst_address":{"entryPoint":18910,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_uint256t_uint256t_uint256":{"entryPoint":19369,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint256t_uint256t_uint256t_int256":{"entryPoint":19791,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_uint256t_uint256t_uint256t_int256t_addresst_uint256":{"entryPoint":19053,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_uint40_fromMemory":{"entryPoint":20247,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint8_fromMemory":{"entryPoint":20310,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_enum_Parameter":{"entryPoint":20376,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_string":{"entryPoint":18627,"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__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"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_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":19583,"id":null,"parameterSlots":8,"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_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":7,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"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$_EToken_$7681__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_EToken_$7681_t_address_t_address_t_uint256__to_t_address_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_contract$_EToken_$7681_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":20211,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_contract$_ICooler_$14162__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_ICooler_$14162_t_contract$_ICooler_$14162__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC20Metadata_$24925__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC4626_$22463__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_ILPWhitelist_$14383__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_ILPWhitelist_$14383_t_contract$_ILPWhitelist_$14383__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPool_$14638__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_enum$_Parameter_$14171__to_t_uint8__fromStack_reversed":{"entryPoint":20408,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_enum$_Parameter_$14171_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":20422,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_128_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_16_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_96_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":18673,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_2e5045ff73280aa8e8acd8c82710f23812497f87f7f576e2220a2ddd0d45eade__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_address__to_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"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_uint256_t_uint256_t_int256__to_t_uint256_t_uint256_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__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_int256":{"entryPoint":20577,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":20337,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":20546,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":20523,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_int256":{"entryPoint":20180,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":20055,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint32":{"entryPoint":20495,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":20616,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":20684,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":20074,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"negate_t_int256":{"entryPoint":20449,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":20035,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":20475,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":20356,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":19134,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":18691,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_bool":{"entryPoint":18780,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_uint8":{"entryPoint":19869,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:29207:125","nodeType":"YulBlock","src":"0:29207:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"83:217:125","nodeType":"YulBlock","src":"83:217:125","statements":[{"body":{"nativeSrc":"129:16:125","nodeType":"YulBlock","src":"129:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:125","nodeType":"YulLiteral","src":"138:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:125","nodeType":"YulLiteral","src":"141:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:125","nodeType":"YulIdentifier","src":"131:6:125"},"nativeSrc":"131:12:125","nodeType":"YulFunctionCall","src":"131:12:125"},"nativeSrc":"131:12:125","nodeType":"YulExpressionStatement","src":"131:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:125","nodeType":"YulIdentifier","src":"104:7:125"},{"name":"headStart","nativeSrc":"113:9:125","nodeType":"YulIdentifier","src":"113:9:125"}],"functionName":{"name":"sub","nativeSrc":"100:3:125","nodeType":"YulIdentifier","src":"100:3:125"},"nativeSrc":"100:23:125","nodeType":"YulFunctionCall","src":"100:23:125"},{"kind":"number","nativeSrc":"125:2:125","nodeType":"YulLiteral","src":"125:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:125","nodeType":"YulIdentifier","src":"96:3:125"},"nativeSrc":"96:32:125","nodeType":"YulFunctionCall","src":"96:32:125"},"nativeSrc":"93:52:125","nodeType":"YulIf","src":"93:52:125"},{"nativeSrc":"154:36:125","nodeType":"YulVariableDeclaration","src":"154:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:125","nodeType":"YulIdentifier","src":"180:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:125","nodeType":"YulIdentifier","src":"167:12:125"},"nativeSrc":"167:23:125","nodeType":"YulFunctionCall","src":"167:23:125"},"variables":[{"name":"value","nativeSrc":"158:5:125","nodeType":"YulTypedName","src":"158:5:125","type":""}]},{"body":{"nativeSrc":"254:16:125","nodeType":"YulBlock","src":"254:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:125","nodeType":"YulLiteral","src":"263:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:125","nodeType":"YulLiteral","src":"266:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:125","nodeType":"YulIdentifier","src":"256:6:125"},"nativeSrc":"256:12:125","nodeType":"YulFunctionCall","src":"256:12:125"},"nativeSrc":"256:12:125","nodeType":"YulExpressionStatement","src":"256:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:125","nodeType":"YulIdentifier","src":"212:5:125"},{"arguments":[{"name":"value","nativeSrc":"223:5:125","nodeType":"YulIdentifier","src":"223:5:125"},{"arguments":[{"kind":"number","nativeSrc":"234:3:125","nodeType":"YulLiteral","src":"234:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:125","nodeType":"YulLiteral","src":"239:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:125","nodeType":"YulIdentifier","src":"230:3:125"},"nativeSrc":"230:20:125","nodeType":"YulFunctionCall","src":"230:20:125"}],"functionName":{"name":"and","nativeSrc":"219:3:125","nodeType":"YulIdentifier","src":"219:3:125"},"nativeSrc":"219:32:125","nodeType":"YulFunctionCall","src":"219:32:125"}],"functionName":{"name":"eq","nativeSrc":"209:2:125","nodeType":"YulIdentifier","src":"209:2:125"},"nativeSrc":"209:43:125","nodeType":"YulFunctionCall","src":"209:43:125"}],"functionName":{"name":"iszero","nativeSrc":"202:6:125","nodeType":"YulIdentifier","src":"202:6:125"},"nativeSrc":"202:51:125","nodeType":"YulFunctionCall","src":"202:51:125"},"nativeSrc":"199:71:125","nodeType":"YulIf","src":"199:71:125"},{"nativeSrc":"279:15:125","nodeType":"YulAssignment","src":"279:15:125","value":{"name":"value","nativeSrc":"289:5:125","nodeType":"YulIdentifier","src":"289:5:125"},"variableNames":[{"name":"value0","nativeSrc":"279:6:125","nodeType":"YulIdentifier","src":"279:6:125"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:125","nodeType":"YulTypedName","src":"49:9:125","type":""},{"name":"dataEnd","nativeSrc":"60:7:125","nodeType":"YulTypedName","src":"60:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:125","nodeType":"YulTypedName","src":"72:6:125","type":""}],"src":"14:286:125"},{"body":{"nativeSrc":"400:92:125","nodeType":"YulBlock","src":"400:92:125","statements":[{"nativeSrc":"410:26:125","nodeType":"YulAssignment","src":"410:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:125","nodeType":"YulIdentifier","src":"422:9:125"},{"kind":"number","nativeSrc":"433:2:125","nodeType":"YulLiteral","src":"433:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:125","nodeType":"YulIdentifier","src":"418:3:125"},"nativeSrc":"418:18:125","nodeType":"YulFunctionCall","src":"418:18:125"},"variableNames":[{"name":"tail","nativeSrc":"410:4:125","nodeType":"YulIdentifier","src":"410:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:125","nodeType":"YulIdentifier","src":"452:9:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:125","nodeType":"YulIdentifier","src":"477:6:125"}],"functionName":{"name":"iszero","nativeSrc":"470:6:125","nodeType":"YulIdentifier","src":"470:6:125"},"nativeSrc":"470:14:125","nodeType":"YulFunctionCall","src":"470:14:125"}],"functionName":{"name":"iszero","nativeSrc":"463:6:125","nodeType":"YulIdentifier","src":"463:6:125"},"nativeSrc":"463:22:125","nodeType":"YulFunctionCall","src":"463:22:125"}],"functionName":{"name":"mstore","nativeSrc":"445:6:125","nodeType":"YulIdentifier","src":"445:6:125"},"nativeSrc":"445:41:125","nodeType":"YulFunctionCall","src":"445:41:125"},"nativeSrc":"445:41:125","nodeType":"YulExpressionStatement","src":"445:41:125"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:125","nodeType":"YulTypedName","src":"369:9:125","type":""},{"name":"value0","nativeSrc":"380:6:125","nodeType":"YulTypedName","src":"380:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:125","nodeType":"YulTypedName","src":"391:4:125","type":""}],"src":"305:187:125"},{"body":{"nativeSrc":"598:76:125","nodeType":"YulBlock","src":"598:76:125","statements":[{"nativeSrc":"608:26:125","nodeType":"YulAssignment","src":"608:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"620:9:125","nodeType":"YulIdentifier","src":"620:9:125"},{"kind":"number","nativeSrc":"631:2:125","nodeType":"YulLiteral","src":"631:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"616:3:125","nodeType":"YulIdentifier","src":"616:3:125"},"nativeSrc":"616:18:125","nodeType":"YulFunctionCall","src":"616:18:125"},"variableNames":[{"name":"tail","nativeSrc":"608:4:125","nodeType":"YulIdentifier","src":"608:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"650:9:125","nodeType":"YulIdentifier","src":"650:9:125"},{"name":"value0","nativeSrc":"661:6:125","nodeType":"YulIdentifier","src":"661:6:125"}],"functionName":{"name":"mstore","nativeSrc":"643:6:125","nodeType":"YulIdentifier","src":"643:6:125"},"nativeSrc":"643:25:125","nodeType":"YulFunctionCall","src":"643:25:125"},"nativeSrc":"643:25:125","nodeType":"YulExpressionStatement","src":"643:25:125"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"497:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"567:9:125","nodeType":"YulTypedName","src":"567:9:125","type":""},{"name":"value0","nativeSrc":"578:6:125","nodeType":"YulTypedName","src":"578:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"589:4:125","nodeType":"YulTypedName","src":"589:4:125","type":""}],"src":"497:177:125"},{"body":{"nativeSrc":"729:239:125","nodeType":"YulBlock","src":"729:239:125","statements":[{"nativeSrc":"739:26:125","nodeType":"YulVariableDeclaration","src":"739:26:125","value":{"arguments":[{"name":"value","nativeSrc":"759:5:125","nodeType":"YulIdentifier","src":"759:5:125"}],"functionName":{"name":"mload","nativeSrc":"753:5:125","nodeType":"YulIdentifier","src":"753:5:125"},"nativeSrc":"753:12:125","nodeType":"YulFunctionCall","src":"753:12:125"},"variables":[{"name":"length","nativeSrc":"743:6:125","nodeType":"YulTypedName","src":"743:6:125","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"781:3:125","nodeType":"YulIdentifier","src":"781:3:125"},{"name":"length","nativeSrc":"786:6:125","nodeType":"YulIdentifier","src":"786:6:125"}],"functionName":{"name":"mstore","nativeSrc":"774:6:125","nodeType":"YulIdentifier","src":"774:6:125"},"nativeSrc":"774:19:125","nodeType":"YulFunctionCall","src":"774:19:125"},"nativeSrc":"774:19:125","nodeType":"YulExpressionStatement","src":"774:19:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"812:3:125","nodeType":"YulIdentifier","src":"812:3:125"},{"kind":"number","nativeSrc":"817:4:125","nodeType":"YulLiteral","src":"817:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"808:3:125","nodeType":"YulIdentifier","src":"808:3:125"},"nativeSrc":"808:14:125","nodeType":"YulFunctionCall","src":"808:14:125"},{"arguments":[{"name":"value","nativeSrc":"828:5:125","nodeType":"YulIdentifier","src":"828:5:125"},{"kind":"number","nativeSrc":"835:4:125","nodeType":"YulLiteral","src":"835:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"824:3:125","nodeType":"YulIdentifier","src":"824:3:125"},"nativeSrc":"824:16:125","nodeType":"YulFunctionCall","src":"824:16:125"},{"name":"length","nativeSrc":"842:6:125","nodeType":"YulIdentifier","src":"842:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"802:5:125","nodeType":"YulIdentifier","src":"802:5:125"},"nativeSrc":"802:47:125","nodeType":"YulFunctionCall","src":"802:47:125"},"nativeSrc":"802:47:125","nodeType":"YulExpressionStatement","src":"802:47:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"873:3:125","nodeType":"YulIdentifier","src":"873:3:125"},{"name":"length","nativeSrc":"878:6:125","nodeType":"YulIdentifier","src":"878:6:125"}],"functionName":{"name":"add","nativeSrc":"869:3:125","nodeType":"YulIdentifier","src":"869:3:125"},"nativeSrc":"869:16:125","nodeType":"YulFunctionCall","src":"869:16:125"},{"kind":"number","nativeSrc":"887:4:125","nodeType":"YulLiteral","src":"887:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"865:3:125","nodeType":"YulIdentifier","src":"865:3:125"},"nativeSrc":"865:27:125","nodeType":"YulFunctionCall","src":"865:27:125"},{"kind":"number","nativeSrc":"894:1:125","nodeType":"YulLiteral","src":"894:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"858:6:125","nodeType":"YulIdentifier","src":"858:6:125"},"nativeSrc":"858:38:125","nodeType":"YulFunctionCall","src":"858:38:125"},"nativeSrc":"858:38:125","nodeType":"YulExpressionStatement","src":"858:38:125"},{"nativeSrc":"905:57:125","nodeType":"YulAssignment","src":"905:57:125","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"920:3:125","nodeType":"YulIdentifier","src":"920:3:125"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"933:6:125","nodeType":"YulIdentifier","src":"933:6:125"},{"kind":"number","nativeSrc":"941:2:125","nodeType":"YulLiteral","src":"941:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"929:3:125","nodeType":"YulIdentifier","src":"929:3:125"},"nativeSrc":"929:15:125","nodeType":"YulFunctionCall","src":"929:15:125"},{"arguments":[{"kind":"number","nativeSrc":"950:2:125","nodeType":"YulLiteral","src":"950:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"946:3:125","nodeType":"YulIdentifier","src":"946:3:125"},"nativeSrc":"946:7:125","nodeType":"YulFunctionCall","src":"946:7:125"}],"functionName":{"name":"and","nativeSrc":"925:3:125","nodeType":"YulIdentifier","src":"925:3:125"},"nativeSrc":"925:29:125","nodeType":"YulFunctionCall","src":"925:29:125"}],"functionName":{"name":"add","nativeSrc":"916:3:125","nodeType":"YulIdentifier","src":"916:3:125"},"nativeSrc":"916:39:125","nodeType":"YulFunctionCall","src":"916:39:125"},{"kind":"number","nativeSrc":"957:4:125","nodeType":"YulLiteral","src":"957:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"912:3:125","nodeType":"YulIdentifier","src":"912:3:125"},"nativeSrc":"912:50:125","nodeType":"YulFunctionCall","src":"912:50:125"},"variableNames":[{"name":"end","nativeSrc":"905:3:125","nodeType":"YulIdentifier","src":"905:3:125"}]}]},"name":"abi_encode_string","nativeSrc":"679:289:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"706:5:125","nodeType":"YulTypedName","src":"706:5:125","type":""},{"name":"pos","nativeSrc":"713:3:125","nodeType":"YulTypedName","src":"713:3:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"721:3:125","nodeType":"YulTypedName","src":"721:3:125","type":""}],"src":"679:289:125"},{"body":{"nativeSrc":"1094:99:125","nodeType":"YulBlock","src":"1094:99:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1111:9:125","nodeType":"YulIdentifier","src":"1111:9:125"},{"kind":"number","nativeSrc":"1122:2:125","nodeType":"YulLiteral","src":"1122:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"1104:6:125","nodeType":"YulIdentifier","src":"1104:6:125"},"nativeSrc":"1104:21:125","nodeType":"YulFunctionCall","src":"1104:21:125"},"nativeSrc":"1104:21:125","nodeType":"YulExpressionStatement","src":"1104:21:125"},{"nativeSrc":"1134:53:125","nodeType":"YulAssignment","src":"1134:53:125","value":{"arguments":[{"name":"value0","nativeSrc":"1160:6:125","nodeType":"YulIdentifier","src":"1160:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"1172:9:125","nodeType":"YulIdentifier","src":"1172:9:125"},{"kind":"number","nativeSrc":"1183:2:125","nodeType":"YulLiteral","src":"1183:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1168:3:125","nodeType":"YulIdentifier","src":"1168:3:125"},"nativeSrc":"1168:18:125","nodeType":"YulFunctionCall","src":"1168:18:125"}],"functionName":{"name":"abi_encode_string","nativeSrc":"1142:17:125","nodeType":"YulIdentifier","src":"1142:17:125"},"nativeSrc":"1142:45:125","nodeType":"YulFunctionCall","src":"1142:45:125"},"variableNames":[{"name":"tail","nativeSrc":"1134:4:125","nodeType":"YulIdentifier","src":"1134:4:125"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"973:220:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1063:9:125","nodeType":"YulTypedName","src":"1063:9:125","type":""},{"name":"value0","nativeSrc":"1074:6:125","nodeType":"YulTypedName","src":"1074:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1085:4:125","nodeType":"YulTypedName","src":"1085:4:125","type":""}],"src":"973:220:125"},{"body":{"nativeSrc":"1243:86:125","nodeType":"YulBlock","src":"1243:86:125","statements":[{"body":{"nativeSrc":"1307:16:125","nodeType":"YulBlock","src":"1307:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1316:1:125","nodeType":"YulLiteral","src":"1316:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1319:1:125","nodeType":"YulLiteral","src":"1319:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1309:6:125","nodeType":"YulIdentifier","src":"1309:6:125"},"nativeSrc":"1309:12:125","nodeType":"YulFunctionCall","src":"1309:12:125"},"nativeSrc":"1309:12:125","nodeType":"YulExpressionStatement","src":"1309:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1266:5:125","nodeType":"YulIdentifier","src":"1266:5:125"},{"arguments":[{"name":"value","nativeSrc":"1277:5:125","nodeType":"YulIdentifier","src":"1277:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1292:3:125","nodeType":"YulLiteral","src":"1292:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"1297:1:125","nodeType":"YulLiteral","src":"1297:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1288:3:125","nodeType":"YulIdentifier","src":"1288:3:125"},"nativeSrc":"1288:11:125","nodeType":"YulFunctionCall","src":"1288:11:125"},{"kind":"number","nativeSrc":"1301:1:125","nodeType":"YulLiteral","src":"1301:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1284:3:125","nodeType":"YulIdentifier","src":"1284:3:125"},"nativeSrc":"1284:19:125","nodeType":"YulFunctionCall","src":"1284:19:125"}],"functionName":{"name":"and","nativeSrc":"1273:3:125","nodeType":"YulIdentifier","src":"1273:3:125"},"nativeSrc":"1273:31:125","nodeType":"YulFunctionCall","src":"1273:31:125"}],"functionName":{"name":"eq","nativeSrc":"1263:2:125","nodeType":"YulIdentifier","src":"1263:2:125"},"nativeSrc":"1263:42:125","nodeType":"YulFunctionCall","src":"1263:42:125"}],"functionName":{"name":"iszero","nativeSrc":"1256:6:125","nodeType":"YulIdentifier","src":"1256:6:125"},"nativeSrc":"1256:50:125","nodeType":"YulFunctionCall","src":"1256:50:125"},"nativeSrc":"1253:70:125","nodeType":"YulIf","src":"1253:70:125"}]},"name":"validator_revert_address","nativeSrc":"1198:131:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"1232:5:125","nodeType":"YulTypedName","src":"1232:5:125","type":""}],"src":"1198:131:125"},{"body":{"nativeSrc":"1421:280:125","nodeType":"YulBlock","src":"1421:280:125","statements":[{"body":{"nativeSrc":"1467:16:125","nodeType":"YulBlock","src":"1467:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1476:1:125","nodeType":"YulLiteral","src":"1476:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1479:1:125","nodeType":"YulLiteral","src":"1479:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1469:6:125","nodeType":"YulIdentifier","src":"1469:6:125"},"nativeSrc":"1469:12:125","nodeType":"YulFunctionCall","src":"1469:12:125"},"nativeSrc":"1469:12:125","nodeType":"YulExpressionStatement","src":"1469:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1442:7:125","nodeType":"YulIdentifier","src":"1442:7:125"},{"name":"headStart","nativeSrc":"1451:9:125","nodeType":"YulIdentifier","src":"1451:9:125"}],"functionName":{"name":"sub","nativeSrc":"1438:3:125","nodeType":"YulIdentifier","src":"1438:3:125"},"nativeSrc":"1438:23:125","nodeType":"YulFunctionCall","src":"1438:23:125"},{"kind":"number","nativeSrc":"1463:2:125","nodeType":"YulLiteral","src":"1463:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1434:3:125","nodeType":"YulIdentifier","src":"1434:3:125"},"nativeSrc":"1434:32:125","nodeType":"YulFunctionCall","src":"1434:32:125"},"nativeSrc":"1431:52:125","nodeType":"YulIf","src":"1431:52:125"},{"nativeSrc":"1492:36:125","nodeType":"YulVariableDeclaration","src":"1492:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1518:9:125","nodeType":"YulIdentifier","src":"1518:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"1505:12:125","nodeType":"YulIdentifier","src":"1505:12:125"},"nativeSrc":"1505:23:125","nodeType":"YulFunctionCall","src":"1505:23:125"},"variables":[{"name":"value","nativeSrc":"1496:5:125","nodeType":"YulTypedName","src":"1496:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1562:5:125","nodeType":"YulIdentifier","src":"1562:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"1537:24:125","nodeType":"YulIdentifier","src":"1537:24:125"},"nativeSrc":"1537:31:125","nodeType":"YulFunctionCall","src":"1537:31:125"},"nativeSrc":"1537:31:125","nodeType":"YulExpressionStatement","src":"1537:31:125"},{"nativeSrc":"1577:15:125","nodeType":"YulAssignment","src":"1577:15:125","value":{"name":"value","nativeSrc":"1587:5:125","nodeType":"YulIdentifier","src":"1587:5:125"},"variableNames":[{"name":"value0","nativeSrc":"1577:6:125","nodeType":"YulIdentifier","src":"1577:6:125"}]},{"nativeSrc":"1601:16:125","nodeType":"YulVariableDeclaration","src":"1601:16:125","value":{"kind":"number","nativeSrc":"1616:1:125","nodeType":"YulLiteral","src":"1616:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"1605:7:125","nodeType":"YulTypedName","src":"1605:7:125","type":""}]},{"nativeSrc":"1626:43:125","nodeType":"YulAssignment","src":"1626:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1654:9:125","nodeType":"YulIdentifier","src":"1654:9:125"},{"kind":"number","nativeSrc":"1665:2:125","nodeType":"YulLiteral","src":"1665:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1650:3:125","nodeType":"YulIdentifier","src":"1650:3:125"},"nativeSrc":"1650:18:125","nodeType":"YulFunctionCall","src":"1650:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"1637:12:125","nodeType":"YulIdentifier","src":"1637:12:125"},"nativeSrc":"1637:32:125","nodeType":"YulFunctionCall","src":"1637:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"1626:7:125","nodeType":"YulIdentifier","src":"1626:7:125"}]},{"nativeSrc":"1678:17:125","nodeType":"YulAssignment","src":"1678:17:125","value":{"name":"value_1","nativeSrc":"1688:7:125","nodeType":"YulIdentifier","src":"1688:7:125"},"variableNames":[{"name":"value1","nativeSrc":"1678:6:125","nodeType":"YulIdentifier","src":"1678:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"1334:367:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1379:9:125","nodeType":"YulTypedName","src":"1379:9:125","type":""},{"name":"dataEnd","nativeSrc":"1390:7:125","nodeType":"YulTypedName","src":"1390:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1402:6:125","nodeType":"YulTypedName","src":"1402:6:125","type":""},{"name":"value1","nativeSrc":"1410:6:125","nodeType":"YulTypedName","src":"1410:6:125","type":""}],"src":"1334:367:125"},{"body":{"nativeSrc":"1776:177:125","nodeType":"YulBlock","src":"1776:177:125","statements":[{"body":{"nativeSrc":"1822:16:125","nodeType":"YulBlock","src":"1822:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1831:1:125","nodeType":"YulLiteral","src":"1831:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1834:1:125","nodeType":"YulLiteral","src":"1834:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1824:6:125","nodeType":"YulIdentifier","src":"1824:6:125"},"nativeSrc":"1824:12:125","nodeType":"YulFunctionCall","src":"1824:12:125"},"nativeSrc":"1824:12:125","nodeType":"YulExpressionStatement","src":"1824:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1797:7:125","nodeType":"YulIdentifier","src":"1797:7:125"},{"name":"headStart","nativeSrc":"1806:9:125","nodeType":"YulIdentifier","src":"1806:9:125"}],"functionName":{"name":"sub","nativeSrc":"1793:3:125","nodeType":"YulIdentifier","src":"1793:3:125"},"nativeSrc":"1793:23:125","nodeType":"YulFunctionCall","src":"1793:23:125"},{"kind":"number","nativeSrc":"1818:2:125","nodeType":"YulLiteral","src":"1818:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1789:3:125","nodeType":"YulIdentifier","src":"1789:3:125"},"nativeSrc":"1789:32:125","nodeType":"YulFunctionCall","src":"1789:32:125"},"nativeSrc":"1786:52:125","nodeType":"YulIf","src":"1786:52:125"},{"nativeSrc":"1847:36:125","nodeType":"YulVariableDeclaration","src":"1847:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1873:9:125","nodeType":"YulIdentifier","src":"1873:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"1860:12:125","nodeType":"YulIdentifier","src":"1860:12:125"},"nativeSrc":"1860:23:125","nodeType":"YulFunctionCall","src":"1860:23:125"},"variables":[{"name":"value","nativeSrc":"1851:5:125","nodeType":"YulTypedName","src":"1851:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1917:5:125","nodeType":"YulIdentifier","src":"1917:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"1892:24:125","nodeType":"YulIdentifier","src":"1892:24:125"},"nativeSrc":"1892:31:125","nodeType":"YulFunctionCall","src":"1892:31:125"},"nativeSrc":"1892:31:125","nodeType":"YulExpressionStatement","src":"1892:31:125"},{"nativeSrc":"1932:15:125","nodeType":"YulAssignment","src":"1932:15:125","value":{"name":"value","nativeSrc":"1942:5:125","nodeType":"YulIdentifier","src":"1942:5:125"},"variableNames":[{"name":"value0","nativeSrc":"1932:6:125","nodeType":"YulIdentifier","src":"1932:6:125"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"1706:247:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1742:9:125","nodeType":"YulTypedName","src":"1742:9:125","type":""},{"name":"dataEnd","nativeSrc":"1753:7:125","nodeType":"YulTypedName","src":"1753:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1765:6:125","nodeType":"YulTypedName","src":"1765:6:125","type":""}],"src":"1706:247:125"},{"body":{"nativeSrc":"2087:119:125","nodeType":"YulBlock","src":"2087:119:125","statements":[{"nativeSrc":"2097:26:125","nodeType":"YulAssignment","src":"2097:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2109:9:125","nodeType":"YulIdentifier","src":"2109:9:125"},{"kind":"number","nativeSrc":"2120:2:125","nodeType":"YulLiteral","src":"2120:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2105:3:125","nodeType":"YulIdentifier","src":"2105:3:125"},"nativeSrc":"2105:18:125","nodeType":"YulFunctionCall","src":"2105:18:125"},"variableNames":[{"name":"tail","nativeSrc":"2097:4:125","nodeType":"YulIdentifier","src":"2097:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2139:9:125","nodeType":"YulIdentifier","src":"2139:9:125"},{"name":"value0","nativeSrc":"2150:6:125","nodeType":"YulIdentifier","src":"2150:6:125"}],"functionName":{"name":"mstore","nativeSrc":"2132:6:125","nodeType":"YulIdentifier","src":"2132:6:125"},"nativeSrc":"2132:25:125","nodeType":"YulFunctionCall","src":"2132:25:125"},"nativeSrc":"2132:25:125","nodeType":"YulExpressionStatement","src":"2132:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2177:9:125","nodeType":"YulIdentifier","src":"2177:9:125"},{"kind":"number","nativeSrc":"2188:2:125","nodeType":"YulLiteral","src":"2188:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2173:3:125","nodeType":"YulIdentifier","src":"2173:3:125"},"nativeSrc":"2173:18:125","nodeType":"YulFunctionCall","src":"2173:18:125"},{"name":"value1","nativeSrc":"2193:6:125","nodeType":"YulIdentifier","src":"2193:6:125"}],"functionName":{"name":"mstore","nativeSrc":"2166:6:125","nodeType":"YulIdentifier","src":"2166:6:125"},"nativeSrc":"2166:34:125","nodeType":"YulFunctionCall","src":"2166:34:125"},"nativeSrc":"2166:34:125","nodeType":"YulExpressionStatement","src":"2166:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"1958:248:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2048:9:125","nodeType":"YulTypedName","src":"2048:9:125","type":""},{"name":"value1","nativeSrc":"2059:6:125","nodeType":"YulTypedName","src":"2059:6:125","type":""},{"name":"value0","nativeSrc":"2067:6:125","nodeType":"YulTypedName","src":"2067:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2078:4:125","nodeType":"YulTypedName","src":"2078:4:125","type":""}],"src":"1958:248:125"},{"body":{"nativeSrc":"2253:76:125","nodeType":"YulBlock","src":"2253:76:125","statements":[{"body":{"nativeSrc":"2307:16:125","nodeType":"YulBlock","src":"2307:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2316:1:125","nodeType":"YulLiteral","src":"2316:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2319:1:125","nodeType":"YulLiteral","src":"2319:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2309:6:125","nodeType":"YulIdentifier","src":"2309:6:125"},"nativeSrc":"2309:12:125","nodeType":"YulFunctionCall","src":"2309:12:125"},"nativeSrc":"2309:12:125","nodeType":"YulExpressionStatement","src":"2309:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2276:5:125","nodeType":"YulIdentifier","src":"2276:5:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2297:5:125","nodeType":"YulIdentifier","src":"2297:5:125"}],"functionName":{"name":"iszero","nativeSrc":"2290:6:125","nodeType":"YulIdentifier","src":"2290:6:125"},"nativeSrc":"2290:13:125","nodeType":"YulFunctionCall","src":"2290:13:125"}],"functionName":{"name":"iszero","nativeSrc":"2283:6:125","nodeType":"YulIdentifier","src":"2283:6:125"},"nativeSrc":"2283:21:125","nodeType":"YulFunctionCall","src":"2283:21:125"}],"functionName":{"name":"eq","nativeSrc":"2273:2:125","nodeType":"YulIdentifier","src":"2273:2:125"},"nativeSrc":"2273:32:125","nodeType":"YulFunctionCall","src":"2273:32:125"}],"functionName":{"name":"iszero","nativeSrc":"2266:6:125","nodeType":"YulIdentifier","src":"2266:6:125"},"nativeSrc":"2266:40:125","nodeType":"YulFunctionCall","src":"2266:40:125"},"nativeSrc":"2263:60:125","nodeType":"YulIf","src":"2263:60:125"}]},"name":"validator_revert_bool","nativeSrc":"2211:118:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"2242:5:125","nodeType":"YulTypedName","src":"2242:5:125","type":""}],"src":"2211:118:125"},{"body":{"nativeSrc":"2436:298:125","nodeType":"YulBlock","src":"2436:298:125","statements":[{"body":{"nativeSrc":"2482:16:125","nodeType":"YulBlock","src":"2482:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2491:1:125","nodeType":"YulLiteral","src":"2491:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2494:1:125","nodeType":"YulLiteral","src":"2494:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2484:6:125","nodeType":"YulIdentifier","src":"2484:6:125"},"nativeSrc":"2484:12:125","nodeType":"YulFunctionCall","src":"2484:12:125"},"nativeSrc":"2484:12:125","nodeType":"YulExpressionStatement","src":"2484:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2457:7:125","nodeType":"YulIdentifier","src":"2457:7:125"},{"name":"headStart","nativeSrc":"2466:9:125","nodeType":"YulIdentifier","src":"2466:9:125"}],"functionName":{"name":"sub","nativeSrc":"2453:3:125","nodeType":"YulIdentifier","src":"2453:3:125"},"nativeSrc":"2453:23:125","nodeType":"YulFunctionCall","src":"2453:23:125"},{"kind":"number","nativeSrc":"2478:2:125","nodeType":"YulLiteral","src":"2478:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2449:3:125","nodeType":"YulIdentifier","src":"2449:3:125"},"nativeSrc":"2449:32:125","nodeType":"YulFunctionCall","src":"2449:32:125"},"nativeSrc":"2446:52:125","nodeType":"YulIf","src":"2446:52:125"},{"nativeSrc":"2507:36:125","nodeType":"YulVariableDeclaration","src":"2507:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2533:9:125","nodeType":"YulIdentifier","src":"2533:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"2520:12:125","nodeType":"YulIdentifier","src":"2520:12:125"},"nativeSrc":"2520:23:125","nodeType":"YulFunctionCall","src":"2520:23:125"},"variables":[{"name":"value","nativeSrc":"2511:5:125","nodeType":"YulTypedName","src":"2511:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2577:5:125","nodeType":"YulIdentifier","src":"2577:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2552:24:125","nodeType":"YulIdentifier","src":"2552:24:125"},"nativeSrc":"2552:31:125","nodeType":"YulFunctionCall","src":"2552:31:125"},"nativeSrc":"2552:31:125","nodeType":"YulExpressionStatement","src":"2552:31:125"},{"nativeSrc":"2592:15:125","nodeType":"YulAssignment","src":"2592:15:125","value":{"name":"value","nativeSrc":"2602:5:125","nodeType":"YulIdentifier","src":"2602:5:125"},"variableNames":[{"name":"value0","nativeSrc":"2592:6:125","nodeType":"YulIdentifier","src":"2592:6:125"}]},{"nativeSrc":"2616:47:125","nodeType":"YulVariableDeclaration","src":"2616:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2648:9:125","nodeType":"YulIdentifier","src":"2648:9:125"},{"kind":"number","nativeSrc":"2659:2:125","nodeType":"YulLiteral","src":"2659:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2644:3:125","nodeType":"YulIdentifier","src":"2644:3:125"},"nativeSrc":"2644:18:125","nodeType":"YulFunctionCall","src":"2644:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"2631:12:125","nodeType":"YulIdentifier","src":"2631:12:125"},"nativeSrc":"2631:32:125","nodeType":"YulFunctionCall","src":"2631:32:125"},"variables":[{"name":"value_1","nativeSrc":"2620:7:125","nodeType":"YulTypedName","src":"2620:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"2694:7:125","nodeType":"YulIdentifier","src":"2694:7:125"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"2672:21:125","nodeType":"YulIdentifier","src":"2672:21:125"},"nativeSrc":"2672:30:125","nodeType":"YulFunctionCall","src":"2672:30:125"},"nativeSrc":"2672:30:125","nodeType":"YulExpressionStatement","src":"2672:30:125"},{"nativeSrc":"2711:17:125","nodeType":"YulAssignment","src":"2711:17:125","value":{"name":"value_1","nativeSrc":"2721:7:125","nodeType":"YulIdentifier","src":"2721:7:125"},"variableNames":[{"name":"value1","nativeSrc":"2711:6:125","nodeType":"YulIdentifier","src":"2711:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IERC4626_$22463t_bool","nativeSrc":"2334:400:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2394:9:125","nodeType":"YulTypedName","src":"2394:9:125","type":""},{"name":"dataEnd","nativeSrc":"2405:7:125","nodeType":"YulTypedName","src":"2405:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2417:6:125","nodeType":"YulTypedName","src":"2417:6:125","type":""},{"name":"value1","nativeSrc":"2425:6:125","nodeType":"YulTypedName","src":"2425:6:125","type":""}],"src":"2334:400:125"},{"body":{"nativeSrc":"2843:404:125","nodeType":"YulBlock","src":"2843:404:125","statements":[{"body":{"nativeSrc":"2889:16:125","nodeType":"YulBlock","src":"2889:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2898:1:125","nodeType":"YulLiteral","src":"2898:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2901:1:125","nodeType":"YulLiteral","src":"2901:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2891:6:125","nodeType":"YulIdentifier","src":"2891:6:125"},"nativeSrc":"2891:12:125","nodeType":"YulFunctionCall","src":"2891:12:125"},"nativeSrc":"2891:12:125","nodeType":"YulExpressionStatement","src":"2891:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2864:7:125","nodeType":"YulIdentifier","src":"2864:7:125"},{"name":"headStart","nativeSrc":"2873:9:125","nodeType":"YulIdentifier","src":"2873:9:125"}],"functionName":{"name":"sub","nativeSrc":"2860:3:125","nodeType":"YulIdentifier","src":"2860:3:125"},"nativeSrc":"2860:23:125","nodeType":"YulFunctionCall","src":"2860:23:125"},{"kind":"number","nativeSrc":"2885:2:125","nodeType":"YulLiteral","src":"2885:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2856:3:125","nodeType":"YulIdentifier","src":"2856:3:125"},"nativeSrc":"2856:32:125","nodeType":"YulFunctionCall","src":"2856:32:125"},"nativeSrc":"2853:52:125","nodeType":"YulIf","src":"2853:52:125"},{"nativeSrc":"2914:36:125","nodeType":"YulVariableDeclaration","src":"2914:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2940:9:125","nodeType":"YulIdentifier","src":"2940:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"2927:12:125","nodeType":"YulIdentifier","src":"2927:12:125"},"nativeSrc":"2927:23:125","nodeType":"YulFunctionCall","src":"2927:23:125"},"variables":[{"name":"value","nativeSrc":"2918:5:125","nodeType":"YulTypedName","src":"2918:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2984:5:125","nodeType":"YulIdentifier","src":"2984:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2959:24:125","nodeType":"YulIdentifier","src":"2959:24:125"},"nativeSrc":"2959:31:125","nodeType":"YulFunctionCall","src":"2959:31:125"},"nativeSrc":"2959:31:125","nodeType":"YulExpressionStatement","src":"2959:31:125"},{"nativeSrc":"2999:15:125","nodeType":"YulAssignment","src":"2999:15:125","value":{"name":"value","nativeSrc":"3009:5:125","nodeType":"YulIdentifier","src":"3009:5:125"},"variableNames":[{"name":"value0","nativeSrc":"2999:6:125","nodeType":"YulIdentifier","src":"2999:6:125"}]},{"nativeSrc":"3023:47:125","nodeType":"YulVariableDeclaration","src":"3023:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3055:9:125","nodeType":"YulIdentifier","src":"3055:9:125"},{"kind":"number","nativeSrc":"3066:2:125","nodeType":"YulLiteral","src":"3066:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3051:3:125","nodeType":"YulIdentifier","src":"3051:3:125"},"nativeSrc":"3051:18:125","nodeType":"YulFunctionCall","src":"3051:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3038:12:125","nodeType":"YulIdentifier","src":"3038:12:125"},"nativeSrc":"3038:32:125","nodeType":"YulFunctionCall","src":"3038:32:125"},"variables":[{"name":"value_1","nativeSrc":"3027:7:125","nodeType":"YulTypedName","src":"3027:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"3104:7:125","nodeType":"YulIdentifier","src":"3104:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3079:24:125","nodeType":"YulIdentifier","src":"3079:24:125"},"nativeSrc":"3079:33:125","nodeType":"YulFunctionCall","src":"3079:33:125"},"nativeSrc":"3079:33:125","nodeType":"YulExpressionStatement","src":"3079:33:125"},{"nativeSrc":"3121:17:125","nodeType":"YulAssignment","src":"3121:17:125","value":{"name":"value_1","nativeSrc":"3131:7:125","nodeType":"YulIdentifier","src":"3131:7:125"},"variableNames":[{"name":"value1","nativeSrc":"3121:6:125","nodeType":"YulIdentifier","src":"3121:6:125"}]},{"nativeSrc":"3147:16:125","nodeType":"YulVariableDeclaration","src":"3147:16:125","value":{"kind":"number","nativeSrc":"3162:1:125","nodeType":"YulLiteral","src":"3162:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"3151:7:125","nodeType":"YulTypedName","src":"3151:7:125","type":""}]},{"nativeSrc":"3172:43:125","nodeType":"YulAssignment","src":"3172:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3200:9:125","nodeType":"YulIdentifier","src":"3200:9:125"},{"kind":"number","nativeSrc":"3211:2:125","nodeType":"YulLiteral","src":"3211:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3196:3:125","nodeType":"YulIdentifier","src":"3196:3:125"},"nativeSrc":"3196:18:125","nodeType":"YulFunctionCall","src":"3196:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3183:12:125","nodeType":"YulIdentifier","src":"3183:12:125"},"nativeSrc":"3183:32:125","nodeType":"YulFunctionCall","src":"3183:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"3172:7:125","nodeType":"YulIdentifier","src":"3172:7:125"}]},{"nativeSrc":"3224:17:125","nodeType":"YulAssignment","src":"3224:17:125","value":{"name":"value_2","nativeSrc":"3234:7:125","nodeType":"YulIdentifier","src":"3234:7:125"},"variableNames":[{"name":"value2","nativeSrc":"3224:6:125","nodeType":"YulIdentifier","src":"3224:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"2739:508:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2793:9:125","nodeType":"YulTypedName","src":"2793:9:125","type":""},{"name":"dataEnd","nativeSrc":"2804:7:125","nodeType":"YulTypedName","src":"2804:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2816:6:125","nodeType":"YulTypedName","src":"2816:6:125","type":""},{"name":"value1","nativeSrc":"2824:6:125","nodeType":"YulTypedName","src":"2824:6:125","type":""},{"name":"value2","nativeSrc":"2832:6:125","nodeType":"YulTypedName","src":"2832:6:125","type":""}],"src":"2739:508:125"},{"body":{"nativeSrc":"3373:529:125","nodeType":"YulBlock","src":"3373:529:125","statements":[{"body":{"nativeSrc":"3420:16:125","nodeType":"YulBlock","src":"3420:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3429:1:125","nodeType":"YulLiteral","src":"3429:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3432:1:125","nodeType":"YulLiteral","src":"3432:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3422:6:125","nodeType":"YulIdentifier","src":"3422:6:125"},"nativeSrc":"3422:12:125","nodeType":"YulFunctionCall","src":"3422:12:125"},"nativeSrc":"3422:12:125","nodeType":"YulExpressionStatement","src":"3422:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3394:7:125","nodeType":"YulIdentifier","src":"3394:7:125"},{"name":"headStart","nativeSrc":"3403:9:125","nodeType":"YulIdentifier","src":"3403:9:125"}],"functionName":{"name":"sub","nativeSrc":"3390:3:125","nodeType":"YulIdentifier","src":"3390:3:125"},"nativeSrc":"3390:23:125","nodeType":"YulFunctionCall","src":"3390:23:125"},{"kind":"number","nativeSrc":"3415:3:125","nodeType":"YulLiteral","src":"3415:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"3386:3:125","nodeType":"YulIdentifier","src":"3386:3:125"},"nativeSrc":"3386:33:125","nodeType":"YulFunctionCall","src":"3386:33:125"},"nativeSrc":"3383:53:125","nodeType":"YulIf","src":"3383:53:125"},{"nativeSrc":"3445:14:125","nodeType":"YulVariableDeclaration","src":"3445:14:125","value":{"kind":"number","nativeSrc":"3458:1:125","nodeType":"YulLiteral","src":"3458:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3449:5:125","nodeType":"YulTypedName","src":"3449:5:125","type":""}]},{"nativeSrc":"3468:32:125","nodeType":"YulAssignment","src":"3468:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3490:9:125","nodeType":"YulIdentifier","src":"3490:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"3477:12:125","nodeType":"YulIdentifier","src":"3477:12:125"},"nativeSrc":"3477:23:125","nodeType":"YulFunctionCall","src":"3477:23:125"},"variableNames":[{"name":"value","nativeSrc":"3468:5:125","nodeType":"YulIdentifier","src":"3468:5:125"}]},{"nativeSrc":"3509:15:125","nodeType":"YulAssignment","src":"3509:15:125","value":{"name":"value","nativeSrc":"3519:5:125","nodeType":"YulIdentifier","src":"3519:5:125"},"variableNames":[{"name":"value0","nativeSrc":"3509:6:125","nodeType":"YulIdentifier","src":"3509:6:125"}]},{"nativeSrc":"3533:47:125","nodeType":"YulVariableDeclaration","src":"3533:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3565:9:125","nodeType":"YulIdentifier","src":"3565:9:125"},{"kind":"number","nativeSrc":"3576:2:125","nodeType":"YulLiteral","src":"3576:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3561:3:125","nodeType":"YulIdentifier","src":"3561:3:125"},"nativeSrc":"3561:18:125","nodeType":"YulFunctionCall","src":"3561:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3548:12:125","nodeType":"YulIdentifier","src":"3548:12:125"},"nativeSrc":"3548:32:125","nodeType":"YulFunctionCall","src":"3548:32:125"},"variables":[{"name":"value_1","nativeSrc":"3537:7:125","nodeType":"YulTypedName","src":"3537:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"3614:7:125","nodeType":"YulIdentifier","src":"3614:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3589:24:125","nodeType":"YulIdentifier","src":"3589:24:125"},"nativeSrc":"3589:33:125","nodeType":"YulFunctionCall","src":"3589:33:125"},"nativeSrc":"3589:33:125","nodeType":"YulExpressionStatement","src":"3589:33:125"},{"nativeSrc":"3631:17:125","nodeType":"YulAssignment","src":"3631:17:125","value":{"name":"value_1","nativeSrc":"3641:7:125","nodeType":"YulIdentifier","src":"3641:7:125"},"variableNames":[{"name":"value1","nativeSrc":"3631:6:125","nodeType":"YulIdentifier","src":"3631:6:125"}]},{"nativeSrc":"3657:47:125","nodeType":"YulVariableDeclaration","src":"3657:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3689:9:125","nodeType":"YulIdentifier","src":"3689:9:125"},{"kind":"number","nativeSrc":"3700:2:125","nodeType":"YulLiteral","src":"3700:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3685:3:125","nodeType":"YulIdentifier","src":"3685:3:125"},"nativeSrc":"3685:18:125","nodeType":"YulFunctionCall","src":"3685:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3672:12:125","nodeType":"YulIdentifier","src":"3672:12:125"},"nativeSrc":"3672:32:125","nodeType":"YulFunctionCall","src":"3672:32:125"},"variables":[{"name":"value_2","nativeSrc":"3661:7:125","nodeType":"YulTypedName","src":"3661:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"3738:7:125","nodeType":"YulIdentifier","src":"3738:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3713:24:125","nodeType":"YulIdentifier","src":"3713:24:125"},"nativeSrc":"3713:33:125","nodeType":"YulFunctionCall","src":"3713:33:125"},"nativeSrc":"3713:33:125","nodeType":"YulExpressionStatement","src":"3713:33:125"},{"nativeSrc":"3755:17:125","nodeType":"YulAssignment","src":"3755:17:125","value":{"name":"value_2","nativeSrc":"3765:7:125","nodeType":"YulIdentifier","src":"3765:7:125"},"variableNames":[{"name":"value2","nativeSrc":"3755:6:125","nodeType":"YulIdentifier","src":"3755:6:125"}]},{"nativeSrc":"3781:47:125","nodeType":"YulVariableDeclaration","src":"3781:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3813:9:125","nodeType":"YulIdentifier","src":"3813:9:125"},{"kind":"number","nativeSrc":"3824:2:125","nodeType":"YulLiteral","src":"3824:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3809:3:125","nodeType":"YulIdentifier","src":"3809:3:125"},"nativeSrc":"3809:18:125","nodeType":"YulFunctionCall","src":"3809:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3796:12:125","nodeType":"YulIdentifier","src":"3796:12:125"},"nativeSrc":"3796:32:125","nodeType":"YulFunctionCall","src":"3796:32:125"},"variables":[{"name":"value_3","nativeSrc":"3785:7:125","nodeType":"YulTypedName","src":"3785:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"3862:7:125","nodeType":"YulIdentifier","src":"3862:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3837:24:125","nodeType":"YulIdentifier","src":"3837:24:125"},"nativeSrc":"3837:33:125","nodeType":"YulFunctionCall","src":"3837:33:125"},"nativeSrc":"3837:33:125","nodeType":"YulExpressionStatement","src":"3837:33:125"},{"nativeSrc":"3879:17:125","nodeType":"YulAssignment","src":"3879:17:125","value":{"name":"value_3","nativeSrc":"3889:7:125","nodeType":"YulIdentifier","src":"3889:7:125"},"variableNames":[{"name":"value3","nativeSrc":"3879:6:125","nodeType":"YulIdentifier","src":"3879:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_addresst_addresst_address","nativeSrc":"3252:650:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3315:9:125","nodeType":"YulTypedName","src":"3315:9:125","type":""},{"name":"dataEnd","nativeSrc":"3326:7:125","nodeType":"YulTypedName","src":"3326:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3338:6:125","nodeType":"YulTypedName","src":"3338:6:125","type":""},{"name":"value1","nativeSrc":"3346:6:125","nodeType":"YulTypedName","src":"3346:6:125","type":""},{"name":"value2","nativeSrc":"3354:6:125","nodeType":"YulTypedName","src":"3354:6:125","type":""},{"name":"value3","nativeSrc":"3362:6:125","nodeType":"YulTypedName","src":"3362:6:125","type":""}],"src":"3252:650:125"},{"body":{"nativeSrc":"4011:404:125","nodeType":"YulBlock","src":"4011:404:125","statements":[{"body":{"nativeSrc":"4057:16:125","nodeType":"YulBlock","src":"4057:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4066:1:125","nodeType":"YulLiteral","src":"4066:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4069:1:125","nodeType":"YulLiteral","src":"4069:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4059:6:125","nodeType":"YulIdentifier","src":"4059:6:125"},"nativeSrc":"4059:12:125","nodeType":"YulFunctionCall","src":"4059:12:125"},"nativeSrc":"4059:12:125","nodeType":"YulExpressionStatement","src":"4059:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4032:7:125","nodeType":"YulIdentifier","src":"4032:7:125"},{"name":"headStart","nativeSrc":"4041:9:125","nodeType":"YulIdentifier","src":"4041:9:125"}],"functionName":{"name":"sub","nativeSrc":"4028:3:125","nodeType":"YulIdentifier","src":"4028:3:125"},"nativeSrc":"4028:23:125","nodeType":"YulFunctionCall","src":"4028:23:125"},{"kind":"number","nativeSrc":"4053:2:125","nodeType":"YulLiteral","src":"4053:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"4024:3:125","nodeType":"YulIdentifier","src":"4024:3:125"},"nativeSrc":"4024:32:125","nodeType":"YulFunctionCall","src":"4024:32:125"},"nativeSrc":"4021:52:125","nodeType":"YulIf","src":"4021:52:125"},{"nativeSrc":"4082:14:125","nodeType":"YulVariableDeclaration","src":"4082:14:125","value":{"kind":"number","nativeSrc":"4095:1:125","nodeType":"YulLiteral","src":"4095:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"4086:5:125","nodeType":"YulTypedName","src":"4086:5:125","type":""}]},{"nativeSrc":"4105:32:125","nodeType":"YulAssignment","src":"4105:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4127:9:125","nodeType":"YulIdentifier","src":"4127:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"4114:12:125","nodeType":"YulIdentifier","src":"4114:12:125"},"nativeSrc":"4114:23:125","nodeType":"YulFunctionCall","src":"4114:23:125"},"variableNames":[{"name":"value","nativeSrc":"4105:5:125","nodeType":"YulIdentifier","src":"4105:5:125"}]},{"nativeSrc":"4146:15:125","nodeType":"YulAssignment","src":"4146:15:125","value":{"name":"value","nativeSrc":"4156:5:125","nodeType":"YulIdentifier","src":"4156:5:125"},"variableNames":[{"name":"value0","nativeSrc":"4146:6:125","nodeType":"YulIdentifier","src":"4146:6:125"}]},{"nativeSrc":"4170:47:125","nodeType":"YulVariableDeclaration","src":"4170:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4202:9:125","nodeType":"YulIdentifier","src":"4202:9:125"},{"kind":"number","nativeSrc":"4213:2:125","nodeType":"YulLiteral","src":"4213:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4198:3:125","nodeType":"YulIdentifier","src":"4198:3:125"},"nativeSrc":"4198:18:125","nodeType":"YulFunctionCall","src":"4198:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"4185:12:125","nodeType":"YulIdentifier","src":"4185:12:125"},"nativeSrc":"4185:32:125","nodeType":"YulFunctionCall","src":"4185:32:125"},"variables":[{"name":"value_1","nativeSrc":"4174:7:125","nodeType":"YulTypedName","src":"4174:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"4251:7:125","nodeType":"YulIdentifier","src":"4251:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4226:24:125","nodeType":"YulIdentifier","src":"4226:24:125"},"nativeSrc":"4226:33:125","nodeType":"YulFunctionCall","src":"4226:33:125"},"nativeSrc":"4226:33:125","nodeType":"YulExpressionStatement","src":"4226:33:125"},{"nativeSrc":"4268:17:125","nodeType":"YulAssignment","src":"4268:17:125","value":{"name":"value_1","nativeSrc":"4278:7:125","nodeType":"YulIdentifier","src":"4278:7:125"},"variableNames":[{"name":"value1","nativeSrc":"4268:6:125","nodeType":"YulIdentifier","src":"4268:6:125"}]},{"nativeSrc":"4294:47:125","nodeType":"YulVariableDeclaration","src":"4294:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4326:9:125","nodeType":"YulIdentifier","src":"4326:9:125"},{"kind":"number","nativeSrc":"4337:2:125","nodeType":"YulLiteral","src":"4337:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4322:3:125","nodeType":"YulIdentifier","src":"4322:3:125"},"nativeSrc":"4322:18:125","nodeType":"YulFunctionCall","src":"4322:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"4309:12:125","nodeType":"YulIdentifier","src":"4309:12:125"},"nativeSrc":"4309:32:125","nodeType":"YulFunctionCall","src":"4309:32:125"},"variables":[{"name":"value_2","nativeSrc":"4298:7:125","nodeType":"YulTypedName","src":"4298:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"4375:7:125","nodeType":"YulIdentifier","src":"4375:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4350:24:125","nodeType":"YulIdentifier","src":"4350:24:125"},"nativeSrc":"4350:33:125","nodeType":"YulFunctionCall","src":"4350:33:125"},"nativeSrc":"4350:33:125","nodeType":"YulExpressionStatement","src":"4350:33:125"},{"nativeSrc":"4392:17:125","nodeType":"YulAssignment","src":"4392:17:125","value":{"name":"value_2","nativeSrc":"4402:7:125","nodeType":"YulIdentifier","src":"4402:7:125"},"variableNames":[{"name":"value2","nativeSrc":"4392:6:125","nodeType":"YulIdentifier","src":"4392:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_addresst_address","nativeSrc":"3907:508:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3961:9:125","nodeType":"YulTypedName","src":"3961:9:125","type":""},{"name":"dataEnd","nativeSrc":"3972:7:125","nodeType":"YulTypedName","src":"3972:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3984:6:125","nodeType":"YulTypedName","src":"3984:6:125","type":""},{"name":"value1","nativeSrc":"3992:6:125","nodeType":"YulTypedName","src":"3992:6:125","type":""},{"name":"value2","nativeSrc":"4000:6:125","nodeType":"YulTypedName","src":"4000:6:125","type":""}],"src":"3907:508:125"},{"body":{"nativeSrc":"4517:87:125","nodeType":"YulBlock","src":"4517:87:125","statements":[{"nativeSrc":"4527:26:125","nodeType":"YulAssignment","src":"4527:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4539:9:125","nodeType":"YulIdentifier","src":"4539:9:125"},{"kind":"number","nativeSrc":"4550:2:125","nodeType":"YulLiteral","src":"4550:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4535:3:125","nodeType":"YulIdentifier","src":"4535:3:125"},"nativeSrc":"4535:18:125","nodeType":"YulFunctionCall","src":"4535:18:125"},"variableNames":[{"name":"tail","nativeSrc":"4527:4:125","nodeType":"YulIdentifier","src":"4527:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4569:9:125","nodeType":"YulIdentifier","src":"4569:9:125"},{"arguments":[{"name":"value0","nativeSrc":"4584:6:125","nodeType":"YulIdentifier","src":"4584:6:125"},{"kind":"number","nativeSrc":"4592:4:125","nodeType":"YulLiteral","src":"4592:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"4580:3:125","nodeType":"YulIdentifier","src":"4580:3:125"},"nativeSrc":"4580:17:125","nodeType":"YulFunctionCall","src":"4580:17:125"}],"functionName":{"name":"mstore","nativeSrc":"4562:6:125","nodeType":"YulIdentifier","src":"4562:6:125"},"nativeSrc":"4562:36:125","nodeType":"YulFunctionCall","src":"4562:36:125"},"nativeSrc":"4562:36:125","nodeType":"YulExpressionStatement","src":"4562:36:125"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"4420:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4486:9:125","nodeType":"YulTypedName","src":"4486:9:125","type":""},{"name":"value0","nativeSrc":"4497:6:125","nodeType":"YulTypedName","src":"4497:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4508:4:125","nodeType":"YulTypedName","src":"4508:4:125","type":""}],"src":"4420:184:125"},{"body":{"nativeSrc":"4710:76:125","nodeType":"YulBlock","src":"4710:76:125","statements":[{"nativeSrc":"4720:26:125","nodeType":"YulAssignment","src":"4720:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4732:9:125","nodeType":"YulIdentifier","src":"4732:9:125"},{"kind":"number","nativeSrc":"4743:2:125","nodeType":"YulLiteral","src":"4743:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4728:3:125","nodeType":"YulIdentifier","src":"4728:3:125"},"nativeSrc":"4728:18:125","nodeType":"YulFunctionCall","src":"4728:18:125"},"variableNames":[{"name":"tail","nativeSrc":"4720:4:125","nodeType":"YulIdentifier","src":"4720:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4762:9:125","nodeType":"YulIdentifier","src":"4762:9:125"},{"name":"value0","nativeSrc":"4773:6:125","nodeType":"YulIdentifier","src":"4773:6:125"}],"functionName":{"name":"mstore","nativeSrc":"4755:6:125","nodeType":"YulIdentifier","src":"4755:6:125"},"nativeSrc":"4755:25:125","nodeType":"YulFunctionCall","src":"4755:25:125"},"nativeSrc":"4755:25:125","nodeType":"YulExpressionStatement","src":"4755:25:125"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"4609:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4679:9:125","nodeType":"YulTypedName","src":"4679:9:125","type":""},{"name":"value0","nativeSrc":"4690:6:125","nodeType":"YulTypedName","src":"4690:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4701:4:125","nodeType":"YulTypedName","src":"4701:4:125","type":""}],"src":"4609:177:125"},{"body":{"nativeSrc":"4945:695:125","nodeType":"YulBlock","src":"4945:695:125","statements":[{"body":{"nativeSrc":"4992:16:125","nodeType":"YulBlock","src":"4992:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5001:1:125","nodeType":"YulLiteral","src":"5001:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5004:1:125","nodeType":"YulLiteral","src":"5004:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4994:6:125","nodeType":"YulIdentifier","src":"4994:6:125"},"nativeSrc":"4994:12:125","nodeType":"YulFunctionCall","src":"4994:12:125"},"nativeSrc":"4994:12:125","nodeType":"YulExpressionStatement","src":"4994:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4966:7:125","nodeType":"YulIdentifier","src":"4966:7:125"},{"name":"headStart","nativeSrc":"4975:9:125","nodeType":"YulIdentifier","src":"4975:9:125"}],"functionName":{"name":"sub","nativeSrc":"4962:3:125","nodeType":"YulIdentifier","src":"4962:3:125"},"nativeSrc":"4962:23:125","nodeType":"YulFunctionCall","src":"4962:23:125"},{"kind":"number","nativeSrc":"4987:3:125","nodeType":"YulLiteral","src":"4987:3:125","type":"","value":"192"}],"functionName":{"name":"slt","nativeSrc":"4958:3:125","nodeType":"YulIdentifier","src":"4958:3:125"},"nativeSrc":"4958:33:125","nodeType":"YulFunctionCall","src":"4958:33:125"},"nativeSrc":"4955:53:125","nodeType":"YulIf","src":"4955:53:125"},{"nativeSrc":"5017:14:125","nodeType":"YulVariableDeclaration","src":"5017:14:125","value":{"kind":"number","nativeSrc":"5030:1:125","nodeType":"YulLiteral","src":"5030:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"5021:5:125","nodeType":"YulTypedName","src":"5021:5:125","type":""}]},{"nativeSrc":"5040:32:125","nodeType":"YulAssignment","src":"5040:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5062:9:125","nodeType":"YulIdentifier","src":"5062:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"5049:12:125","nodeType":"YulIdentifier","src":"5049:12:125"},"nativeSrc":"5049:23:125","nodeType":"YulFunctionCall","src":"5049:23:125"},"variableNames":[{"name":"value","nativeSrc":"5040:5:125","nodeType":"YulIdentifier","src":"5040:5:125"}]},{"nativeSrc":"5081:15:125","nodeType":"YulAssignment","src":"5081:15:125","value":{"name":"value","nativeSrc":"5091:5:125","nodeType":"YulIdentifier","src":"5091:5:125"},"variableNames":[{"name":"value0","nativeSrc":"5081:6:125","nodeType":"YulIdentifier","src":"5081:6:125"}]},{"nativeSrc":"5105:16:125","nodeType":"YulVariableDeclaration","src":"5105:16:125","value":{"kind":"number","nativeSrc":"5120:1:125","nodeType":"YulLiteral","src":"5120:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"5109:7:125","nodeType":"YulTypedName","src":"5109:7:125","type":""}]},{"nativeSrc":"5130:43:125","nodeType":"YulAssignment","src":"5130:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5158:9:125","nodeType":"YulIdentifier","src":"5158:9:125"},{"kind":"number","nativeSrc":"5169:2:125","nodeType":"YulLiteral","src":"5169:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5154:3:125","nodeType":"YulIdentifier","src":"5154:3:125"},"nativeSrc":"5154:18:125","nodeType":"YulFunctionCall","src":"5154:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"5141:12:125","nodeType":"YulIdentifier","src":"5141:12:125"},"nativeSrc":"5141:32:125","nodeType":"YulFunctionCall","src":"5141:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"5130:7:125","nodeType":"YulIdentifier","src":"5130:7:125"}]},{"nativeSrc":"5182:17:125","nodeType":"YulAssignment","src":"5182:17:125","value":{"name":"value_1","nativeSrc":"5192:7:125","nodeType":"YulIdentifier","src":"5192:7:125"},"variableNames":[{"name":"value1","nativeSrc":"5182:6:125","nodeType":"YulIdentifier","src":"5182:6:125"}]},{"nativeSrc":"5208:16:125","nodeType":"YulVariableDeclaration","src":"5208:16:125","value":{"kind":"number","nativeSrc":"5223:1:125","nodeType":"YulLiteral","src":"5223:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"5212:7:125","nodeType":"YulTypedName","src":"5212:7:125","type":""}]},{"nativeSrc":"5233:43:125","nodeType":"YulAssignment","src":"5233:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5261:9:125","nodeType":"YulIdentifier","src":"5261:9:125"},{"kind":"number","nativeSrc":"5272:2:125","nodeType":"YulLiteral","src":"5272:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5257:3:125","nodeType":"YulIdentifier","src":"5257:3:125"},"nativeSrc":"5257:18:125","nodeType":"YulFunctionCall","src":"5257:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"5244:12:125","nodeType":"YulIdentifier","src":"5244:12:125"},"nativeSrc":"5244:32:125","nodeType":"YulFunctionCall","src":"5244:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"5233:7:125","nodeType":"YulIdentifier","src":"5233:7:125"}]},{"nativeSrc":"5285:17:125","nodeType":"YulAssignment","src":"5285:17:125","value":{"name":"value_2","nativeSrc":"5295:7:125","nodeType":"YulIdentifier","src":"5295:7:125"},"variableNames":[{"name":"value2","nativeSrc":"5285:6:125","nodeType":"YulIdentifier","src":"5285:6:125"}]},{"nativeSrc":"5311:16:125","nodeType":"YulVariableDeclaration","src":"5311:16:125","value":{"kind":"number","nativeSrc":"5326:1:125","nodeType":"YulLiteral","src":"5326:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"5315:7:125","nodeType":"YulTypedName","src":"5315:7:125","type":""}]},{"nativeSrc":"5336:43:125","nodeType":"YulAssignment","src":"5336:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5364:9:125","nodeType":"YulIdentifier","src":"5364:9:125"},{"kind":"number","nativeSrc":"5375:2:125","nodeType":"YulLiteral","src":"5375:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5360:3:125","nodeType":"YulIdentifier","src":"5360:3:125"},"nativeSrc":"5360:18:125","nodeType":"YulFunctionCall","src":"5360:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"5347:12:125","nodeType":"YulIdentifier","src":"5347:12:125"},"nativeSrc":"5347:32:125","nodeType":"YulFunctionCall","src":"5347:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"5336:7:125","nodeType":"YulIdentifier","src":"5336:7:125"}]},{"nativeSrc":"5388:17:125","nodeType":"YulAssignment","src":"5388:17:125","value":{"name":"value_3","nativeSrc":"5398:7:125","nodeType":"YulIdentifier","src":"5398:7:125"},"variableNames":[{"name":"value3","nativeSrc":"5388:6:125","nodeType":"YulIdentifier","src":"5388:6:125"}]},{"nativeSrc":"5414:48:125","nodeType":"YulVariableDeclaration","src":"5414:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5446:9:125","nodeType":"YulIdentifier","src":"5446:9:125"},{"kind":"number","nativeSrc":"5457:3:125","nodeType":"YulLiteral","src":"5457:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5442:3:125","nodeType":"YulIdentifier","src":"5442:3:125"},"nativeSrc":"5442:19:125","nodeType":"YulFunctionCall","src":"5442:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"5429:12:125","nodeType":"YulIdentifier","src":"5429:12:125"},"nativeSrc":"5429:33:125","nodeType":"YulFunctionCall","src":"5429:33:125"},"variables":[{"name":"value_4","nativeSrc":"5418:7:125","nodeType":"YulTypedName","src":"5418:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"5496:7:125","nodeType":"YulIdentifier","src":"5496:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"5471:24:125","nodeType":"YulIdentifier","src":"5471:24:125"},"nativeSrc":"5471:33:125","nodeType":"YulFunctionCall","src":"5471:33:125"},"nativeSrc":"5471:33:125","nodeType":"YulExpressionStatement","src":"5471:33:125"},{"nativeSrc":"5513:17:125","nodeType":"YulAssignment","src":"5513:17:125","value":{"name":"value_4","nativeSrc":"5523:7:125","nodeType":"YulIdentifier","src":"5523:7:125"},"variableNames":[{"name":"value4","nativeSrc":"5513:6:125","nodeType":"YulIdentifier","src":"5513:6:125"}]},{"nativeSrc":"5539:16:125","nodeType":"YulVariableDeclaration","src":"5539:16:125","value":{"kind":"number","nativeSrc":"5554:1:125","nodeType":"YulLiteral","src":"5554:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"5543:7:125","nodeType":"YulTypedName","src":"5543:7:125","type":""}]},{"nativeSrc":"5564:44:125","nodeType":"YulAssignment","src":"5564:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5592:9:125","nodeType":"YulIdentifier","src":"5592:9:125"},{"kind":"number","nativeSrc":"5603:3:125","nodeType":"YulLiteral","src":"5603:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"5588:3:125","nodeType":"YulIdentifier","src":"5588:3:125"},"nativeSrc":"5588:19:125","nodeType":"YulFunctionCall","src":"5588:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"5575:12:125","nodeType":"YulIdentifier","src":"5575:12:125"},"nativeSrc":"5575:33:125","nodeType":"YulFunctionCall","src":"5575:33:125"},"variableNames":[{"name":"value_5","nativeSrc":"5564:7:125","nodeType":"YulIdentifier","src":"5564:7:125"}]},{"nativeSrc":"5617:17:125","nodeType":"YulAssignment","src":"5617:17:125","value":{"name":"value_5","nativeSrc":"5627:7:125","nodeType":"YulIdentifier","src":"5627:7:125"},"variableNames":[{"name":"value5","nativeSrc":"5617:6:125","nodeType":"YulIdentifier","src":"5617:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256t_uint256t_int256t_addresst_uint256","nativeSrc":"4791:849:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4871:9:125","nodeType":"YulTypedName","src":"4871:9:125","type":""},{"name":"dataEnd","nativeSrc":"4882:7:125","nodeType":"YulTypedName","src":"4882:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4894:6:125","nodeType":"YulTypedName","src":"4894:6:125","type":""},{"name":"value1","nativeSrc":"4902:6:125","nodeType":"YulTypedName","src":"4902:6:125","type":""},{"name":"value2","nativeSrc":"4910:6:125","nodeType":"YulTypedName","src":"4910:6:125","type":""},{"name":"value3","nativeSrc":"4918:6:125","nodeType":"YulTypedName","src":"4918:6:125","type":""},{"name":"value4","nativeSrc":"4926:6:125","nodeType":"YulTypedName","src":"4926:6:125","type":""},{"name":"value5","nativeSrc":"4934:6:125","nodeType":"YulTypedName","src":"4934:6:125","type":""}],"src":"4791:849:125"},{"body":{"nativeSrc":"5767:102:125","nodeType":"YulBlock","src":"5767:102:125","statements":[{"nativeSrc":"5777:26:125","nodeType":"YulAssignment","src":"5777:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5789:9:125","nodeType":"YulIdentifier","src":"5789:9:125"},{"kind":"number","nativeSrc":"5800:2:125","nodeType":"YulLiteral","src":"5800:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5785:3:125","nodeType":"YulIdentifier","src":"5785:3:125"},"nativeSrc":"5785:18:125","nodeType":"YulFunctionCall","src":"5785:18:125"},"variableNames":[{"name":"tail","nativeSrc":"5777:4:125","nodeType":"YulIdentifier","src":"5777:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5819:9:125","nodeType":"YulIdentifier","src":"5819:9:125"},{"arguments":[{"name":"value0","nativeSrc":"5834:6:125","nodeType":"YulIdentifier","src":"5834:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5850:3:125","nodeType":"YulLiteral","src":"5850:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"5855:1:125","nodeType":"YulLiteral","src":"5855:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5846:3:125","nodeType":"YulIdentifier","src":"5846:3:125"},"nativeSrc":"5846:11:125","nodeType":"YulFunctionCall","src":"5846:11:125"},{"kind":"number","nativeSrc":"5859:1:125","nodeType":"YulLiteral","src":"5859:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5842:3:125","nodeType":"YulIdentifier","src":"5842:3:125"},"nativeSrc":"5842:19:125","nodeType":"YulFunctionCall","src":"5842:19:125"}],"functionName":{"name":"and","nativeSrc":"5830:3:125","nodeType":"YulIdentifier","src":"5830:3:125"},"nativeSrc":"5830:32:125","nodeType":"YulFunctionCall","src":"5830:32:125"}],"functionName":{"name":"mstore","nativeSrc":"5812:6:125","nodeType":"YulIdentifier","src":"5812:6:125"},"nativeSrc":"5812:51:125","nodeType":"YulFunctionCall","src":"5812:51:125"},"nativeSrc":"5812:51:125","nodeType":"YulExpressionStatement","src":"5812:51:125"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPool_$14638__to_t_address__fromStack_reversed","nativeSrc":"5645:224:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5736:9:125","nodeType":"YulTypedName","src":"5736:9:125","type":""},{"name":"value0","nativeSrc":"5747:6:125","nodeType":"YulTypedName","src":"5747:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5758:4:125","nodeType":"YulTypedName","src":"5758:4:125","type":""}],"src":"5645:224:125"},{"body":{"nativeSrc":"5906:95:125","nodeType":"YulBlock","src":"5906:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5923:1:125","nodeType":"YulLiteral","src":"5923:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5930:3:125","nodeType":"YulLiteral","src":"5930:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"5935:10:125","nodeType":"YulLiteral","src":"5935:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5926:3:125","nodeType":"YulIdentifier","src":"5926:3:125"},"nativeSrc":"5926:20:125","nodeType":"YulFunctionCall","src":"5926:20:125"}],"functionName":{"name":"mstore","nativeSrc":"5916:6:125","nodeType":"YulIdentifier","src":"5916:6:125"},"nativeSrc":"5916:31:125","nodeType":"YulFunctionCall","src":"5916:31:125"},"nativeSrc":"5916:31:125","nodeType":"YulExpressionStatement","src":"5916:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5963:1:125","nodeType":"YulLiteral","src":"5963:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"5966:4:125","nodeType":"YulLiteral","src":"5966:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"5956:6:125","nodeType":"YulIdentifier","src":"5956:6:125"},"nativeSrc":"5956:15:125","nodeType":"YulFunctionCall","src":"5956:15:125"},"nativeSrc":"5956:15:125","nodeType":"YulExpressionStatement","src":"5956:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5987:1:125","nodeType":"YulLiteral","src":"5987:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5990:4:125","nodeType":"YulLiteral","src":"5990:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5980:6:125","nodeType":"YulIdentifier","src":"5980:6:125"},"nativeSrc":"5980:15:125","nodeType":"YulFunctionCall","src":"5980:15:125"},"nativeSrc":"5980:15:125","nodeType":"YulExpressionStatement","src":"5980:15:125"}]},"name":"panic_error_0x41","nativeSrc":"5874:127:125","nodeType":"YulFunctionDefinition","src":"5874:127:125"},{"body":{"nativeSrc":"6080:641:125","nodeType":"YulBlock","src":"6080:641:125","statements":[{"nativeSrc":"6090:13:125","nodeType":"YulVariableDeclaration","src":"6090:13:125","value":{"kind":"number","nativeSrc":"6102:1:125","nodeType":"YulLiteral","src":"6102:1:125","type":"","value":"0"},"variables":[{"name":"size","nativeSrc":"6094:4:125","nodeType":"YulTypedName","src":"6094:4:125","type":""}]},{"body":{"nativeSrc":"6146:22:125","nodeType":"YulBlock","src":"6146:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"6148:16:125","nodeType":"YulIdentifier","src":"6148:16:125"},"nativeSrc":"6148:18:125","nodeType":"YulFunctionCall","src":"6148:18:125"},"nativeSrc":"6148:18:125","nodeType":"YulExpressionStatement","src":"6148:18:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"6118:6:125","nodeType":"YulIdentifier","src":"6118:6:125"},{"kind":"number","nativeSrc":"6126:18:125","nodeType":"YulLiteral","src":"6126:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6115:2:125","nodeType":"YulIdentifier","src":"6115:2:125"},"nativeSrc":"6115:30:125","nodeType":"YulFunctionCall","src":"6115:30:125"},"nativeSrc":"6112:56:125","nodeType":"YulIf","src":"6112:56:125"},{"nativeSrc":"6177:43:125","nodeType":"YulVariableDeclaration","src":"6177:43:125","value":{"arguments":[{"arguments":[{"name":"length","nativeSrc":"6199:6:125","nodeType":"YulIdentifier","src":"6199:6:125"},{"kind":"number","nativeSrc":"6207:2:125","nodeType":"YulLiteral","src":"6207:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"6195:3:125","nodeType":"YulIdentifier","src":"6195:3:125"},"nativeSrc":"6195:15:125","nodeType":"YulFunctionCall","src":"6195:15:125"},{"arguments":[{"kind":"number","nativeSrc":"6216:2:125","nodeType":"YulLiteral","src":"6216:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"6212:3:125","nodeType":"YulIdentifier","src":"6212:3:125"},"nativeSrc":"6212:7:125","nodeType":"YulFunctionCall","src":"6212:7:125"}],"functionName":{"name":"and","nativeSrc":"6191:3:125","nodeType":"YulIdentifier","src":"6191:3:125"},"nativeSrc":"6191:29:125","nodeType":"YulFunctionCall","src":"6191:29:125"},"variables":[{"name":"result","nativeSrc":"6181:6:125","nodeType":"YulTypedName","src":"6181:6:125","type":""}]},{"nativeSrc":"6229:25:125","nodeType":"YulAssignment","src":"6229:25:125","value":{"arguments":[{"name":"result","nativeSrc":"6241:6:125","nodeType":"YulIdentifier","src":"6241:6:125"},{"kind":"number","nativeSrc":"6249:4:125","nodeType":"YulLiteral","src":"6249:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6237:3:125","nodeType":"YulIdentifier","src":"6237:3:125"},"nativeSrc":"6237:17:125","nodeType":"YulFunctionCall","src":"6237:17:125"},"variableNames":[{"name":"size","nativeSrc":"6229:4:125","nodeType":"YulIdentifier","src":"6229:4:125"}]},{"nativeSrc":"6263:15:125","nodeType":"YulVariableDeclaration","src":"6263:15:125","value":{"kind":"number","nativeSrc":"6277:1:125","nodeType":"YulLiteral","src":"6277:1:125","type":"","value":"0"},"variables":[{"name":"memPtr","nativeSrc":"6267:6:125","nodeType":"YulTypedName","src":"6267:6:125","type":""}]},{"nativeSrc":"6287:19:125","nodeType":"YulAssignment","src":"6287:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"6303:2:125","nodeType":"YulLiteral","src":"6303:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"6297:5:125","nodeType":"YulIdentifier","src":"6297:5:125"},"nativeSrc":"6297:9:125","nodeType":"YulFunctionCall","src":"6297:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"6287:6:125","nodeType":"YulIdentifier","src":"6287:6:125"}]},{"nativeSrc":"6315:60:125","nodeType":"YulVariableDeclaration","src":"6315:60:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"6337:6:125","nodeType":"YulIdentifier","src":"6337:6:125"},{"arguments":[{"arguments":[{"name":"result","nativeSrc":"6353:6:125","nodeType":"YulIdentifier","src":"6353:6:125"},{"kind":"number","nativeSrc":"6361:2:125","nodeType":"YulLiteral","src":"6361:2:125","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"6349:3:125","nodeType":"YulIdentifier","src":"6349:3:125"},"nativeSrc":"6349:15:125","nodeType":"YulFunctionCall","src":"6349:15:125"},{"arguments":[{"kind":"number","nativeSrc":"6370:2:125","nodeType":"YulLiteral","src":"6370:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"6366:3:125","nodeType":"YulIdentifier","src":"6366:3:125"},"nativeSrc":"6366:7:125","nodeType":"YulFunctionCall","src":"6366:7:125"}],"functionName":{"name":"and","nativeSrc":"6345:3:125","nodeType":"YulIdentifier","src":"6345:3:125"},"nativeSrc":"6345:29:125","nodeType":"YulFunctionCall","src":"6345:29:125"}],"functionName":{"name":"add","nativeSrc":"6333:3:125","nodeType":"YulIdentifier","src":"6333:3:125"},"nativeSrc":"6333:42:125","nodeType":"YulFunctionCall","src":"6333:42:125"},"variables":[{"name":"newFreePtr","nativeSrc":"6319:10:125","nodeType":"YulTypedName","src":"6319:10:125","type":""}]},{"body":{"nativeSrc":"6450:22:125","nodeType":"YulBlock","src":"6450:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"6452:16:125","nodeType":"YulIdentifier","src":"6452:16:125"},"nativeSrc":"6452:18:125","nodeType":"YulFunctionCall","src":"6452:18:125"},"nativeSrc":"6452:18:125","nodeType":"YulExpressionStatement","src":"6452:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"6393:10:125","nodeType":"YulIdentifier","src":"6393:10:125"},{"kind":"number","nativeSrc":"6405:18:125","nodeType":"YulLiteral","src":"6405:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6390:2:125","nodeType":"YulIdentifier","src":"6390:2:125"},"nativeSrc":"6390:34:125","nodeType":"YulFunctionCall","src":"6390:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"6429:10:125","nodeType":"YulIdentifier","src":"6429:10:125"},{"name":"memPtr","nativeSrc":"6441:6:125","nodeType":"YulIdentifier","src":"6441:6:125"}],"functionName":{"name":"lt","nativeSrc":"6426:2:125","nodeType":"YulIdentifier","src":"6426:2:125"},"nativeSrc":"6426:22:125","nodeType":"YulFunctionCall","src":"6426:22:125"}],"functionName":{"name":"or","nativeSrc":"6387:2:125","nodeType":"YulIdentifier","src":"6387:2:125"},"nativeSrc":"6387:62:125","nodeType":"YulFunctionCall","src":"6387:62:125"},"nativeSrc":"6384:88:125","nodeType":"YulIf","src":"6384:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6488:2:125","nodeType":"YulLiteral","src":"6488:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"6492:10:125","nodeType":"YulIdentifier","src":"6492:10:125"}],"functionName":{"name":"mstore","nativeSrc":"6481:6:125","nodeType":"YulIdentifier","src":"6481:6:125"},"nativeSrc":"6481:22:125","nodeType":"YulFunctionCall","src":"6481:22:125"},"nativeSrc":"6481:22:125","nodeType":"YulExpressionStatement","src":"6481:22:125"},{"nativeSrc":"6512:15:125","nodeType":"YulAssignment","src":"6512:15:125","value":{"name":"memPtr","nativeSrc":"6521:6:125","nodeType":"YulIdentifier","src":"6521:6:125"},"variableNames":[{"name":"array","nativeSrc":"6512:5:125","nodeType":"YulIdentifier","src":"6512:5:125"}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"6543:6:125","nodeType":"YulIdentifier","src":"6543:6:125"},{"name":"length","nativeSrc":"6551:6:125","nodeType":"YulIdentifier","src":"6551:6:125"}],"functionName":{"name":"mstore","nativeSrc":"6536:6:125","nodeType":"YulIdentifier","src":"6536:6:125"},"nativeSrc":"6536:22:125","nodeType":"YulFunctionCall","src":"6536:22:125"},"nativeSrc":"6536:22:125","nodeType":"YulExpressionStatement","src":"6536:22:125"},{"body":{"nativeSrc":"6596:16:125","nodeType":"YulBlock","src":"6596:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6605:1:125","nodeType":"YulLiteral","src":"6605:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6608:1:125","nodeType":"YulLiteral","src":"6608:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6598:6:125","nodeType":"YulIdentifier","src":"6598:6:125"},"nativeSrc":"6598:12:125","nodeType":"YulFunctionCall","src":"6598:12:125"},"nativeSrc":"6598:12:125","nodeType":"YulExpressionStatement","src":"6598:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"6577:3:125","nodeType":"YulIdentifier","src":"6577:3:125"},{"name":"length","nativeSrc":"6582:6:125","nodeType":"YulIdentifier","src":"6582:6:125"}],"functionName":{"name":"add","nativeSrc":"6573:3:125","nodeType":"YulIdentifier","src":"6573:3:125"},"nativeSrc":"6573:16:125","nodeType":"YulFunctionCall","src":"6573:16:125"},{"name":"end","nativeSrc":"6591:3:125","nodeType":"YulIdentifier","src":"6591:3:125"}],"functionName":{"name":"gt","nativeSrc":"6570:2:125","nodeType":"YulIdentifier","src":"6570:2:125"},"nativeSrc":"6570:25:125","nodeType":"YulFunctionCall","src":"6570:25:125"},"nativeSrc":"6567:45:125","nodeType":"YulIf","src":"6567:45:125"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"6638:6:125","nodeType":"YulIdentifier","src":"6638:6:125"},{"kind":"number","nativeSrc":"6646:4:125","nodeType":"YulLiteral","src":"6646:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6634:3:125","nodeType":"YulIdentifier","src":"6634:3:125"},"nativeSrc":"6634:17:125","nodeType":"YulFunctionCall","src":"6634:17:125"},{"name":"src","nativeSrc":"6653:3:125","nodeType":"YulIdentifier","src":"6653:3:125"},{"name":"length","nativeSrc":"6658:6:125","nodeType":"YulIdentifier","src":"6658:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"6621:12:125","nodeType":"YulIdentifier","src":"6621:12:125"},"nativeSrc":"6621:44:125","nodeType":"YulFunctionCall","src":"6621:44:125"},"nativeSrc":"6621:44:125","nodeType":"YulExpressionStatement","src":"6621:44:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"6689:6:125","nodeType":"YulIdentifier","src":"6689:6:125"},{"name":"length","nativeSrc":"6697:6:125","nodeType":"YulIdentifier","src":"6697:6:125"}],"functionName":{"name":"add","nativeSrc":"6685:3:125","nodeType":"YulIdentifier","src":"6685:3:125"},"nativeSrc":"6685:19:125","nodeType":"YulFunctionCall","src":"6685:19:125"},{"kind":"number","nativeSrc":"6706:4:125","nodeType":"YulLiteral","src":"6706:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6681:3:125","nodeType":"YulIdentifier","src":"6681:3:125"},"nativeSrc":"6681:30:125","nodeType":"YulFunctionCall","src":"6681:30:125"},{"kind":"number","nativeSrc":"6713:1:125","nodeType":"YulLiteral","src":"6713:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"6674:6:125","nodeType":"YulIdentifier","src":"6674:6:125"},"nativeSrc":"6674:41:125","nodeType":"YulFunctionCall","src":"6674:41:125"},"nativeSrc":"6674:41:125","nodeType":"YulExpressionStatement","src":"6674:41:125"}]},"name":"abi_decode_available_length_bytes","nativeSrc":"6006:715:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nativeSrc":"6049:3:125","nodeType":"YulTypedName","src":"6049:3:125","type":""},{"name":"length","nativeSrc":"6054:6:125","nodeType":"YulTypedName","src":"6054:6:125","type":""},{"name":"end","nativeSrc":"6062:3:125","nodeType":"YulTypedName","src":"6062:3:125","type":""}],"returnVariables":[{"name":"array","nativeSrc":"6070:5:125","nodeType":"YulTypedName","src":"6070:5:125","type":""}],"src":"6006:715:125"},{"body":{"nativeSrc":"6822:488:125","nodeType":"YulBlock","src":"6822:488:125","statements":[{"body":{"nativeSrc":"6868:16:125","nodeType":"YulBlock","src":"6868:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6877:1:125","nodeType":"YulLiteral","src":"6877:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6880:1:125","nodeType":"YulLiteral","src":"6880:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6870:6:125","nodeType":"YulIdentifier","src":"6870:6:125"},"nativeSrc":"6870:12:125","nodeType":"YulFunctionCall","src":"6870:12:125"},"nativeSrc":"6870:12:125","nodeType":"YulExpressionStatement","src":"6870:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6843:7:125","nodeType":"YulIdentifier","src":"6843:7:125"},{"name":"headStart","nativeSrc":"6852:9:125","nodeType":"YulIdentifier","src":"6852:9:125"}],"functionName":{"name":"sub","nativeSrc":"6839:3:125","nodeType":"YulIdentifier","src":"6839:3:125"},"nativeSrc":"6839:23:125","nodeType":"YulFunctionCall","src":"6839:23:125"},{"kind":"number","nativeSrc":"6864:2:125","nodeType":"YulLiteral","src":"6864:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6835:3:125","nodeType":"YulIdentifier","src":"6835:3:125"},"nativeSrc":"6835:32:125","nodeType":"YulFunctionCall","src":"6835:32:125"},"nativeSrc":"6832:52:125","nodeType":"YulIf","src":"6832:52:125"},{"nativeSrc":"6893:36:125","nodeType":"YulVariableDeclaration","src":"6893:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6919:9:125","nodeType":"YulIdentifier","src":"6919:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"6906:12:125","nodeType":"YulIdentifier","src":"6906:12:125"},"nativeSrc":"6906:23:125","nodeType":"YulFunctionCall","src":"6906:23:125"},"variables":[{"name":"value","nativeSrc":"6897:5:125","nodeType":"YulTypedName","src":"6897:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6963:5:125","nodeType":"YulIdentifier","src":"6963:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6938:24:125","nodeType":"YulIdentifier","src":"6938:24:125"},"nativeSrc":"6938:31:125","nodeType":"YulFunctionCall","src":"6938:31:125"},"nativeSrc":"6938:31:125","nodeType":"YulExpressionStatement","src":"6938:31:125"},{"nativeSrc":"6978:15:125","nodeType":"YulAssignment","src":"6978:15:125","value":{"name":"value","nativeSrc":"6988:5:125","nodeType":"YulIdentifier","src":"6988:5:125"},"variableNames":[{"name":"value0","nativeSrc":"6978:6:125","nodeType":"YulIdentifier","src":"6978:6:125"}]},{"nativeSrc":"7002:46:125","nodeType":"YulVariableDeclaration","src":"7002:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7033:9:125","nodeType":"YulIdentifier","src":"7033:9:125"},{"kind":"number","nativeSrc":"7044:2:125","nodeType":"YulLiteral","src":"7044:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7029:3:125","nodeType":"YulIdentifier","src":"7029:3:125"},"nativeSrc":"7029:18:125","nodeType":"YulFunctionCall","src":"7029:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"7016:12:125","nodeType":"YulIdentifier","src":"7016:12:125"},"nativeSrc":"7016:32:125","nodeType":"YulFunctionCall","src":"7016:32:125"},"variables":[{"name":"offset","nativeSrc":"7006:6:125","nodeType":"YulTypedName","src":"7006:6:125","type":""}]},{"body":{"nativeSrc":"7091:16:125","nodeType":"YulBlock","src":"7091:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7100:1:125","nodeType":"YulLiteral","src":"7100:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7103:1:125","nodeType":"YulLiteral","src":"7103:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7093:6:125","nodeType":"YulIdentifier","src":"7093:6:125"},"nativeSrc":"7093:12:125","nodeType":"YulFunctionCall","src":"7093:12:125"},"nativeSrc":"7093:12:125","nodeType":"YulExpressionStatement","src":"7093:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"7063:6:125","nodeType":"YulIdentifier","src":"7063:6:125"},{"kind":"number","nativeSrc":"7071:18:125","nodeType":"YulLiteral","src":"7071:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7060:2:125","nodeType":"YulIdentifier","src":"7060:2:125"},"nativeSrc":"7060:30:125","nodeType":"YulFunctionCall","src":"7060:30:125"},"nativeSrc":"7057:50:125","nodeType":"YulIf","src":"7057:50:125"},{"nativeSrc":"7116:32:125","nodeType":"YulVariableDeclaration","src":"7116:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7130:9:125","nodeType":"YulIdentifier","src":"7130:9:125"},{"name":"offset","nativeSrc":"7141:6:125","nodeType":"YulIdentifier","src":"7141:6:125"}],"functionName":{"name":"add","nativeSrc":"7126:3:125","nodeType":"YulIdentifier","src":"7126:3:125"},"nativeSrc":"7126:22:125","nodeType":"YulFunctionCall","src":"7126:22:125"},"variables":[{"name":"_1","nativeSrc":"7120:2:125","nodeType":"YulTypedName","src":"7120:2:125","type":""}]},{"body":{"nativeSrc":"7196:16:125","nodeType":"YulBlock","src":"7196:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7205:1:125","nodeType":"YulLiteral","src":"7205:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7208:1:125","nodeType":"YulLiteral","src":"7208:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7198:6:125","nodeType":"YulIdentifier","src":"7198:6:125"},"nativeSrc":"7198:12:125","nodeType":"YulFunctionCall","src":"7198:12:125"},"nativeSrc":"7198:12:125","nodeType":"YulExpressionStatement","src":"7198:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"7175:2:125","nodeType":"YulIdentifier","src":"7175:2:125"},{"kind":"number","nativeSrc":"7179:4:125","nodeType":"YulLiteral","src":"7179:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"7171:3:125","nodeType":"YulIdentifier","src":"7171:3:125"},"nativeSrc":"7171:13:125","nodeType":"YulFunctionCall","src":"7171:13:125"},{"name":"dataEnd","nativeSrc":"7186:7:125","nodeType":"YulIdentifier","src":"7186:7:125"}],"functionName":{"name":"slt","nativeSrc":"7167:3:125","nodeType":"YulIdentifier","src":"7167:3:125"},"nativeSrc":"7167:27:125","nodeType":"YulFunctionCall","src":"7167:27:125"}],"functionName":{"name":"iszero","nativeSrc":"7160:6:125","nodeType":"YulIdentifier","src":"7160:6:125"},"nativeSrc":"7160:35:125","nodeType":"YulFunctionCall","src":"7160:35:125"},"nativeSrc":"7157:55:125","nodeType":"YulIf","src":"7157:55:125"},{"nativeSrc":"7221:83:125","nodeType":"YulAssignment","src":"7221:83:125","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"7269:2:125","nodeType":"YulIdentifier","src":"7269:2:125"},{"kind":"number","nativeSrc":"7273:2:125","nodeType":"YulLiteral","src":"7273:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7265:3:125","nodeType":"YulIdentifier","src":"7265:3:125"},"nativeSrc":"7265:11:125","nodeType":"YulFunctionCall","src":"7265:11:125"},{"arguments":[{"name":"_1","nativeSrc":"7291:2:125","nodeType":"YulIdentifier","src":"7291:2:125"}],"functionName":{"name":"calldataload","nativeSrc":"7278:12:125","nodeType":"YulIdentifier","src":"7278:12:125"},"nativeSrc":"7278:16:125","nodeType":"YulFunctionCall","src":"7278:16:125"},{"name":"dataEnd","nativeSrc":"7296:7:125","nodeType":"YulIdentifier","src":"7296:7:125"}],"functionName":{"name":"abi_decode_available_length_bytes","nativeSrc":"7231:33:125","nodeType":"YulIdentifier","src":"7231:33:125"},"nativeSrc":"7231:73:125","nodeType":"YulFunctionCall","src":"7231:73:125"},"variableNames":[{"name":"value1","nativeSrc":"7221:6:125","nodeType":"YulIdentifier","src":"7221:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr","nativeSrc":"6726:584:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6780:9:125","nodeType":"YulTypedName","src":"6780:9:125","type":""},{"name":"dataEnd","nativeSrc":"6791:7:125","nodeType":"YulTypedName","src":"6791:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6803:6:125","nodeType":"YulTypedName","src":"6803:6:125","type":""},{"name":"value1","nativeSrc":"6811:6:125","nodeType":"YulTypedName","src":"6811:6:125","type":""}],"src":"6726:584:125"},{"body":{"nativeSrc":"7419:362:125","nodeType":"YulBlock","src":"7419:362:125","statements":[{"body":{"nativeSrc":"7465:16:125","nodeType":"YulBlock","src":"7465:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7474:1:125","nodeType":"YulLiteral","src":"7474:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7477:1:125","nodeType":"YulLiteral","src":"7477:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7467:6:125","nodeType":"YulIdentifier","src":"7467:6:125"},"nativeSrc":"7467:12:125","nodeType":"YulFunctionCall","src":"7467:12:125"},"nativeSrc":"7467:12:125","nodeType":"YulExpressionStatement","src":"7467:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7440:7:125","nodeType":"YulIdentifier","src":"7440:7:125"},{"name":"headStart","nativeSrc":"7449:9:125","nodeType":"YulIdentifier","src":"7449:9:125"}],"functionName":{"name":"sub","nativeSrc":"7436:3:125","nodeType":"YulIdentifier","src":"7436:3:125"},"nativeSrc":"7436:23:125","nodeType":"YulFunctionCall","src":"7436:23:125"},{"kind":"number","nativeSrc":"7461:2:125","nodeType":"YulLiteral","src":"7461:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"7432:3:125","nodeType":"YulIdentifier","src":"7432:3:125"},"nativeSrc":"7432:32:125","nodeType":"YulFunctionCall","src":"7432:32:125"},"nativeSrc":"7429:52:125","nodeType":"YulIf","src":"7429:52:125"},{"nativeSrc":"7490:14:125","nodeType":"YulVariableDeclaration","src":"7490:14:125","value":{"kind":"number","nativeSrc":"7503:1:125","nodeType":"YulLiteral","src":"7503:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"7494:5:125","nodeType":"YulTypedName","src":"7494:5:125","type":""}]},{"nativeSrc":"7513:32:125","nodeType":"YulAssignment","src":"7513:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7535:9:125","nodeType":"YulIdentifier","src":"7535:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"7522:12:125","nodeType":"YulIdentifier","src":"7522:12:125"},"nativeSrc":"7522:23:125","nodeType":"YulFunctionCall","src":"7522:23:125"},"variableNames":[{"name":"value","nativeSrc":"7513:5:125","nodeType":"YulIdentifier","src":"7513:5:125"}]},{"nativeSrc":"7554:15:125","nodeType":"YulAssignment","src":"7554:15:125","value":{"name":"value","nativeSrc":"7564:5:125","nodeType":"YulIdentifier","src":"7564:5:125"},"variableNames":[{"name":"value0","nativeSrc":"7554:6:125","nodeType":"YulIdentifier","src":"7554:6:125"}]},{"nativeSrc":"7578:16:125","nodeType":"YulVariableDeclaration","src":"7578:16:125","value":{"kind":"number","nativeSrc":"7593:1:125","nodeType":"YulLiteral","src":"7593:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"7582:7:125","nodeType":"YulTypedName","src":"7582:7:125","type":""}]},{"nativeSrc":"7603:43:125","nodeType":"YulAssignment","src":"7603:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7631:9:125","nodeType":"YulIdentifier","src":"7631:9:125"},{"kind":"number","nativeSrc":"7642:2:125","nodeType":"YulLiteral","src":"7642:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7627:3:125","nodeType":"YulIdentifier","src":"7627:3:125"},"nativeSrc":"7627:18:125","nodeType":"YulFunctionCall","src":"7627:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"7614:12:125","nodeType":"YulIdentifier","src":"7614:12:125"},"nativeSrc":"7614:32:125","nodeType":"YulFunctionCall","src":"7614:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"7603:7:125","nodeType":"YulIdentifier","src":"7603:7:125"}]},{"nativeSrc":"7655:17:125","nodeType":"YulAssignment","src":"7655:17:125","value":{"name":"value_1","nativeSrc":"7665:7:125","nodeType":"YulIdentifier","src":"7665:7:125"},"variableNames":[{"name":"value1","nativeSrc":"7655:6:125","nodeType":"YulIdentifier","src":"7655:6:125"}]},{"nativeSrc":"7681:16:125","nodeType":"YulVariableDeclaration","src":"7681:16:125","value":{"kind":"number","nativeSrc":"7696:1:125","nodeType":"YulLiteral","src":"7696:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"7685:7:125","nodeType":"YulTypedName","src":"7685:7:125","type":""}]},{"nativeSrc":"7706:43:125","nodeType":"YulAssignment","src":"7706:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7734:9:125","nodeType":"YulIdentifier","src":"7734:9:125"},{"kind":"number","nativeSrc":"7745:2:125","nodeType":"YulLiteral","src":"7745:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7730:3:125","nodeType":"YulIdentifier","src":"7730:3:125"},"nativeSrc":"7730:18:125","nodeType":"YulFunctionCall","src":"7730:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"7717:12:125","nodeType":"YulIdentifier","src":"7717:12:125"},"nativeSrc":"7717:32:125","nodeType":"YulFunctionCall","src":"7717:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"7706:7:125","nodeType":"YulIdentifier","src":"7706:7:125"}]},{"nativeSrc":"7758:17:125","nodeType":"YulAssignment","src":"7758:17:125","value":{"name":"value_2","nativeSrc":"7768:7:125","nodeType":"YulIdentifier","src":"7768:7:125"},"variableNames":[{"name":"value2","nativeSrc":"7758:6:125","nodeType":"YulIdentifier","src":"7758:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256t_uint256","nativeSrc":"7315:466:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7369:9:125","nodeType":"YulTypedName","src":"7369:9:125","type":""},{"name":"dataEnd","nativeSrc":"7380:7:125","nodeType":"YulTypedName","src":"7380:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7392:6:125","nodeType":"YulTypedName","src":"7392:6:125","type":""},{"name":"value1","nativeSrc":"7400:6:125","nodeType":"YulTypedName","src":"7400:6:125","type":""},{"name":"value2","nativeSrc":"7408:6:125","nodeType":"YulTypedName","src":"7408:6:125","type":""}],"src":"7315:466:125"},{"body":{"nativeSrc":"7839:168:125","nodeType":"YulBlock","src":"7839:168:125","statements":[{"body":{"nativeSrc":"7888:16:125","nodeType":"YulBlock","src":"7888:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7897:1:125","nodeType":"YulLiteral","src":"7897:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7900:1:125","nodeType":"YulLiteral","src":"7900:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7890:6:125","nodeType":"YulIdentifier","src":"7890:6:125"},"nativeSrc":"7890:12:125","nodeType":"YulFunctionCall","src":"7890:12:125"},"nativeSrc":"7890:12:125","nodeType":"YulExpressionStatement","src":"7890:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"7867:6:125","nodeType":"YulIdentifier","src":"7867:6:125"},{"kind":"number","nativeSrc":"7875:4:125","nodeType":"YulLiteral","src":"7875:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"7863:3:125","nodeType":"YulIdentifier","src":"7863:3:125"},"nativeSrc":"7863:17:125","nodeType":"YulFunctionCall","src":"7863:17:125"},{"name":"end","nativeSrc":"7882:3:125","nodeType":"YulIdentifier","src":"7882:3:125"}],"functionName":{"name":"slt","nativeSrc":"7859:3:125","nodeType":"YulIdentifier","src":"7859:3:125"},"nativeSrc":"7859:27:125","nodeType":"YulFunctionCall","src":"7859:27:125"}],"functionName":{"name":"iszero","nativeSrc":"7852:6:125","nodeType":"YulIdentifier","src":"7852:6:125"},"nativeSrc":"7852:35:125","nodeType":"YulFunctionCall","src":"7852:35:125"},"nativeSrc":"7849:55:125","nodeType":"YulIf","src":"7849:55:125"},{"nativeSrc":"7913:88:125","nodeType":"YulAssignment","src":"7913:88:125","value":{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"7960:6:125","nodeType":"YulIdentifier","src":"7960:6:125"},{"kind":"number","nativeSrc":"7968:4:125","nodeType":"YulLiteral","src":"7968:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7956:3:125","nodeType":"YulIdentifier","src":"7956:3:125"},"nativeSrc":"7956:17:125","nodeType":"YulFunctionCall","src":"7956:17:125"},{"arguments":[{"name":"offset","nativeSrc":"7988:6:125","nodeType":"YulIdentifier","src":"7988:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"7975:12:125","nodeType":"YulIdentifier","src":"7975:12:125"},"nativeSrc":"7975:20:125","nodeType":"YulFunctionCall","src":"7975:20:125"},{"name":"end","nativeSrc":"7997:3:125","nodeType":"YulIdentifier","src":"7997:3:125"}],"functionName":{"name":"abi_decode_available_length_bytes","nativeSrc":"7922:33:125","nodeType":"YulIdentifier","src":"7922:33:125"},"nativeSrc":"7922:79:125","nodeType":"YulFunctionCall","src":"7922:79:125"},"variableNames":[{"name":"array","nativeSrc":"7913:5:125","nodeType":"YulIdentifier","src":"7913:5:125"}]}]},"name":"abi_decode_string","nativeSrc":"7786:221:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"7813:6:125","nodeType":"YulTypedName","src":"7813:6:125","type":""},{"name":"end","nativeSrc":"7821:3:125","nodeType":"YulTypedName","src":"7821:3:125","type":""}],"returnVariables":[{"name":"array","nativeSrc":"7829:5:125","nodeType":"YulTypedName","src":"7829:5:125","type":""}],"src":"7786:221:125"},{"body":{"nativeSrc":"8153:632:125","nodeType":"YulBlock","src":"8153:632:125","statements":[{"body":{"nativeSrc":"8200:16:125","nodeType":"YulBlock","src":"8200:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8209:1:125","nodeType":"YulLiteral","src":"8209:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8212:1:125","nodeType":"YulLiteral","src":"8212:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8202:6:125","nodeType":"YulIdentifier","src":"8202:6:125"},"nativeSrc":"8202:12:125","nodeType":"YulFunctionCall","src":"8202:12:125"},"nativeSrc":"8202:12:125","nodeType":"YulExpressionStatement","src":"8202:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8174:7:125","nodeType":"YulIdentifier","src":"8174:7:125"},{"name":"headStart","nativeSrc":"8183:9:125","nodeType":"YulIdentifier","src":"8183:9:125"}],"functionName":{"name":"sub","nativeSrc":"8170:3:125","nodeType":"YulIdentifier","src":"8170:3:125"},"nativeSrc":"8170:23:125","nodeType":"YulFunctionCall","src":"8170:23:125"},{"kind":"number","nativeSrc":"8195:3:125","nodeType":"YulLiteral","src":"8195:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"8166:3:125","nodeType":"YulIdentifier","src":"8166:3:125"},"nativeSrc":"8166:33:125","nodeType":"YulFunctionCall","src":"8166:33:125"},"nativeSrc":"8163:53:125","nodeType":"YulIf","src":"8163:53:125"},{"nativeSrc":"8225:37:125","nodeType":"YulVariableDeclaration","src":"8225:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8252:9:125","nodeType":"YulIdentifier","src":"8252:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"8239:12:125","nodeType":"YulIdentifier","src":"8239:12:125"},"nativeSrc":"8239:23:125","nodeType":"YulFunctionCall","src":"8239:23:125"},"variables":[{"name":"offset","nativeSrc":"8229:6:125","nodeType":"YulTypedName","src":"8229:6:125","type":""}]},{"body":{"nativeSrc":"8305:16:125","nodeType":"YulBlock","src":"8305:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8314:1:125","nodeType":"YulLiteral","src":"8314:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8317:1:125","nodeType":"YulLiteral","src":"8317:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8307:6:125","nodeType":"YulIdentifier","src":"8307:6:125"},"nativeSrc":"8307:12:125","nodeType":"YulFunctionCall","src":"8307:12:125"},"nativeSrc":"8307:12:125","nodeType":"YulExpressionStatement","src":"8307:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"8277:6:125","nodeType":"YulIdentifier","src":"8277:6:125"},{"kind":"number","nativeSrc":"8285:18:125","nodeType":"YulLiteral","src":"8285:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8274:2:125","nodeType":"YulIdentifier","src":"8274:2:125"},"nativeSrc":"8274:30:125","nodeType":"YulFunctionCall","src":"8274:30:125"},"nativeSrc":"8271:50:125","nodeType":"YulIf","src":"8271:50:125"},{"nativeSrc":"8330:60:125","nodeType":"YulAssignment","src":"8330:60:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8362:9:125","nodeType":"YulIdentifier","src":"8362:9:125"},{"name":"offset","nativeSrc":"8373:6:125","nodeType":"YulIdentifier","src":"8373:6:125"}],"functionName":{"name":"add","nativeSrc":"8358:3:125","nodeType":"YulIdentifier","src":"8358:3:125"},"nativeSrc":"8358:22:125","nodeType":"YulFunctionCall","src":"8358:22:125"},{"name":"dataEnd","nativeSrc":"8382:7:125","nodeType":"YulIdentifier","src":"8382:7:125"}],"functionName":{"name":"abi_decode_string","nativeSrc":"8340:17:125","nodeType":"YulIdentifier","src":"8340:17:125"},"nativeSrc":"8340:50:125","nodeType":"YulFunctionCall","src":"8340:50:125"},"variableNames":[{"name":"value0","nativeSrc":"8330:6:125","nodeType":"YulIdentifier","src":"8330:6:125"}]},{"nativeSrc":"8399:48:125","nodeType":"YulVariableDeclaration","src":"8399:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8432:9:125","nodeType":"YulIdentifier","src":"8432:9:125"},{"kind":"number","nativeSrc":"8443:2:125","nodeType":"YulLiteral","src":"8443:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8428:3:125","nodeType":"YulIdentifier","src":"8428:3:125"},"nativeSrc":"8428:18:125","nodeType":"YulFunctionCall","src":"8428:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"8415:12:125","nodeType":"YulIdentifier","src":"8415:12:125"},"nativeSrc":"8415:32:125","nodeType":"YulFunctionCall","src":"8415:32:125"},"variables":[{"name":"offset_1","nativeSrc":"8403:8:125","nodeType":"YulTypedName","src":"8403:8:125","type":""}]},{"body":{"nativeSrc":"8492:16:125","nodeType":"YulBlock","src":"8492:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8501:1:125","nodeType":"YulLiteral","src":"8501:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8504:1:125","nodeType":"YulLiteral","src":"8504:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8494:6:125","nodeType":"YulIdentifier","src":"8494:6:125"},"nativeSrc":"8494:12:125","nodeType":"YulFunctionCall","src":"8494:12:125"},"nativeSrc":"8494:12:125","nodeType":"YulExpressionStatement","src":"8494:12:125"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"8462:8:125","nodeType":"YulIdentifier","src":"8462:8:125"},{"kind":"number","nativeSrc":"8472:18:125","nodeType":"YulLiteral","src":"8472:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8459:2:125","nodeType":"YulIdentifier","src":"8459:2:125"},"nativeSrc":"8459:32:125","nodeType":"YulFunctionCall","src":"8459:32:125"},"nativeSrc":"8456:52:125","nodeType":"YulIf","src":"8456:52:125"},{"nativeSrc":"8517:62:125","nodeType":"YulAssignment","src":"8517:62:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8549:9:125","nodeType":"YulIdentifier","src":"8549:9:125"},{"name":"offset_1","nativeSrc":"8560:8:125","nodeType":"YulIdentifier","src":"8560:8:125"}],"functionName":{"name":"add","nativeSrc":"8545:3:125","nodeType":"YulIdentifier","src":"8545:3:125"},"nativeSrc":"8545:24:125","nodeType":"YulFunctionCall","src":"8545:24:125"},{"name":"dataEnd","nativeSrc":"8571:7:125","nodeType":"YulIdentifier","src":"8571:7:125"}],"functionName":{"name":"abi_decode_string","nativeSrc":"8527:17:125","nodeType":"YulIdentifier","src":"8527:17:125"},"nativeSrc":"8527:52:125","nodeType":"YulFunctionCall","src":"8527:52:125"},"variableNames":[{"name":"value1","nativeSrc":"8517:6:125","nodeType":"YulIdentifier","src":"8517:6:125"}]},{"nativeSrc":"8588:14:125","nodeType":"YulVariableDeclaration","src":"8588:14:125","value":{"kind":"number","nativeSrc":"8601:1:125","nodeType":"YulLiteral","src":"8601:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"8592:5:125","nodeType":"YulTypedName","src":"8592:5:125","type":""}]},{"nativeSrc":"8611:41:125","nodeType":"YulAssignment","src":"8611:41:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8637:9:125","nodeType":"YulIdentifier","src":"8637:9:125"},{"kind":"number","nativeSrc":"8648:2:125","nodeType":"YulLiteral","src":"8648:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8633:3:125","nodeType":"YulIdentifier","src":"8633:3:125"},"nativeSrc":"8633:18:125","nodeType":"YulFunctionCall","src":"8633:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"8620:12:125","nodeType":"YulIdentifier","src":"8620:12:125"},"nativeSrc":"8620:32:125","nodeType":"YulFunctionCall","src":"8620:32:125"},"variableNames":[{"name":"value","nativeSrc":"8611:5:125","nodeType":"YulIdentifier","src":"8611:5:125"}]},{"nativeSrc":"8661:15:125","nodeType":"YulAssignment","src":"8661:15:125","value":{"name":"value","nativeSrc":"8671:5:125","nodeType":"YulIdentifier","src":"8671:5:125"},"variableNames":[{"name":"value2","nativeSrc":"8661:6:125","nodeType":"YulIdentifier","src":"8661:6:125"}]},{"nativeSrc":"8685:16:125","nodeType":"YulVariableDeclaration","src":"8685:16:125","value":{"kind":"number","nativeSrc":"8700:1:125","nodeType":"YulLiteral","src":"8700:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"8689:7:125","nodeType":"YulTypedName","src":"8689:7:125","type":""}]},{"nativeSrc":"8710:43:125","nodeType":"YulAssignment","src":"8710:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8738:9:125","nodeType":"YulIdentifier","src":"8738:9:125"},{"kind":"number","nativeSrc":"8749:2:125","nodeType":"YulLiteral","src":"8749:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8734:3:125","nodeType":"YulIdentifier","src":"8734:3:125"},"nativeSrc":"8734:18:125","nodeType":"YulFunctionCall","src":"8734:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"8721:12:125","nodeType":"YulIdentifier","src":"8721:12:125"},"nativeSrc":"8721:32:125","nodeType":"YulFunctionCall","src":"8721:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"8710:7:125","nodeType":"YulIdentifier","src":"8710:7:125"}]},{"nativeSrc":"8762:17:125","nodeType":"YulAssignment","src":"8762:17:125","value":{"name":"value_1","nativeSrc":"8772:7:125","nodeType":"YulIdentifier","src":"8772:7:125"},"variableNames":[{"name":"value3","nativeSrc":"8762:6:125","nodeType":"YulIdentifier","src":"8762:6:125"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint256","nativeSrc":"8012:773:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8095:9:125","nodeType":"YulTypedName","src":"8095:9:125","type":""},{"name":"dataEnd","nativeSrc":"8106:7:125","nodeType":"YulTypedName","src":"8106:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8118:6:125","nodeType":"YulTypedName","src":"8118:6:125","type":""},{"name":"value1","nativeSrc":"8126:6:125","nodeType":"YulTypedName","src":"8126:6:125","type":""},{"name":"value2","nativeSrc":"8134:6:125","nodeType":"YulTypedName","src":"8134:6:125","type":""},{"name":"value3","nativeSrc":"8142:6:125","nodeType":"YulTypedName","src":"8142:6:125","type":""}],"src":"8012:773:125"},{"body":{"nativeSrc":"8857:174:125","nodeType":"YulBlock","src":"8857:174:125","statements":[{"body":{"nativeSrc":"8903:16:125","nodeType":"YulBlock","src":"8903:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8912:1:125","nodeType":"YulLiteral","src":"8912:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8915:1:125","nodeType":"YulLiteral","src":"8915:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8905:6:125","nodeType":"YulIdentifier","src":"8905:6:125"},"nativeSrc":"8905:12:125","nodeType":"YulFunctionCall","src":"8905:12:125"},"nativeSrc":"8905:12:125","nodeType":"YulExpressionStatement","src":"8905:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8878:7:125","nodeType":"YulIdentifier","src":"8878:7:125"},{"name":"headStart","nativeSrc":"8887:9:125","nodeType":"YulIdentifier","src":"8887:9:125"}],"functionName":{"name":"sub","nativeSrc":"8874:3:125","nodeType":"YulIdentifier","src":"8874:3:125"},"nativeSrc":"8874:23:125","nodeType":"YulFunctionCall","src":"8874:23:125"},{"kind":"number","nativeSrc":"8899:2:125","nodeType":"YulLiteral","src":"8899:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8870:3:125","nodeType":"YulIdentifier","src":"8870:3:125"},"nativeSrc":"8870:32:125","nodeType":"YulFunctionCall","src":"8870:32:125"},"nativeSrc":"8867:52:125","nodeType":"YulIf","src":"8867:52:125"},{"nativeSrc":"8928:36:125","nodeType":"YulVariableDeclaration","src":"8928:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8954:9:125","nodeType":"YulIdentifier","src":"8954:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"8941:12:125","nodeType":"YulIdentifier","src":"8941:12:125"},"nativeSrc":"8941:23:125","nodeType":"YulFunctionCall","src":"8941:23:125"},"variables":[{"name":"value","nativeSrc":"8932:5:125","nodeType":"YulTypedName","src":"8932:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8995:5:125","nodeType":"YulIdentifier","src":"8995:5:125"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"8973:21:125","nodeType":"YulIdentifier","src":"8973:21:125"},"nativeSrc":"8973:28:125","nodeType":"YulFunctionCall","src":"8973:28:125"},"nativeSrc":"8973:28:125","nodeType":"YulExpressionStatement","src":"8973:28:125"},{"nativeSrc":"9010:15:125","nodeType":"YulAssignment","src":"9010:15:125","value":{"name":"value","nativeSrc":"9020:5:125","nodeType":"YulIdentifier","src":"9020:5:125"},"variableNames":[{"name":"value0","nativeSrc":"9010:6:125","nodeType":"YulIdentifier","src":"9010:6:125"}]}]},"name":"abi_decode_tuple_t_bool","nativeSrc":"8790:241:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8823:9:125","nodeType":"YulTypedName","src":"8823:9:125","type":""},{"name":"dataEnd","nativeSrc":"8834:7:125","nodeType":"YulTypedName","src":"8834:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8846:6:125","nodeType":"YulTypedName","src":"8846:6:125","type":""}],"src":"8790:241:125"},{"body":{"nativeSrc":"9393:881:125","nodeType":"YulBlock","src":"9393:881:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9410:9:125","nodeType":"YulIdentifier","src":"9410:9:125"},{"arguments":[{"name":"value0","nativeSrc":"9425:6:125","nodeType":"YulIdentifier","src":"9425:6:125"},{"arguments":[{"kind":"number","nativeSrc":"9437:3:125","nodeType":"YulLiteral","src":"9437:3:125","type":"","value":"248"},{"kind":"number","nativeSrc":"9442:3:125","nodeType":"YulLiteral","src":"9442:3:125","type":"","value":"255"}],"functionName":{"name":"shl","nativeSrc":"9433:3:125","nodeType":"YulIdentifier","src":"9433:3:125"},"nativeSrc":"9433:13:125","nodeType":"YulFunctionCall","src":"9433:13:125"}],"functionName":{"name":"and","nativeSrc":"9421:3:125","nodeType":"YulIdentifier","src":"9421:3:125"},"nativeSrc":"9421:26:125","nodeType":"YulFunctionCall","src":"9421:26:125"}],"functionName":{"name":"mstore","nativeSrc":"9403:6:125","nodeType":"YulIdentifier","src":"9403:6:125"},"nativeSrc":"9403:45:125","nodeType":"YulFunctionCall","src":"9403:45:125"},"nativeSrc":"9403:45:125","nodeType":"YulExpressionStatement","src":"9403:45:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9468:9:125","nodeType":"YulIdentifier","src":"9468:9:125"},{"kind":"number","nativeSrc":"9479:2:125","nodeType":"YulLiteral","src":"9479:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9464:3:125","nodeType":"YulIdentifier","src":"9464:3:125"},"nativeSrc":"9464:18:125","nodeType":"YulFunctionCall","src":"9464:18:125"},{"kind":"number","nativeSrc":"9484:3:125","nodeType":"YulLiteral","src":"9484:3:125","type":"","value":"224"}],"functionName":{"name":"mstore","nativeSrc":"9457:6:125","nodeType":"YulIdentifier","src":"9457:6:125"},"nativeSrc":"9457:31:125","nodeType":"YulFunctionCall","src":"9457:31:125"},"nativeSrc":"9457:31:125","nodeType":"YulExpressionStatement","src":"9457:31:125"},{"nativeSrc":"9497:60:125","nodeType":"YulVariableDeclaration","src":"9497:60:125","value":{"arguments":[{"name":"value1","nativeSrc":"9529:6:125","nodeType":"YulIdentifier","src":"9529:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"9541:9:125","nodeType":"YulIdentifier","src":"9541:9:125"},{"kind":"number","nativeSrc":"9552:3:125","nodeType":"YulLiteral","src":"9552:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"9537:3:125","nodeType":"YulIdentifier","src":"9537:3:125"},"nativeSrc":"9537:19:125","nodeType":"YulFunctionCall","src":"9537:19:125"}],"functionName":{"name":"abi_encode_string","nativeSrc":"9511:17:125","nodeType":"YulIdentifier","src":"9511:17:125"},"nativeSrc":"9511:46:125","nodeType":"YulFunctionCall","src":"9511:46:125"},"variables":[{"name":"tail_1","nativeSrc":"9501:6:125","nodeType":"YulTypedName","src":"9501:6:125","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9577:9:125","nodeType":"YulIdentifier","src":"9577:9:125"},{"kind":"number","nativeSrc":"9588:2:125","nodeType":"YulLiteral","src":"9588:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9573:3:125","nodeType":"YulIdentifier","src":"9573:3:125"},"nativeSrc":"9573:18:125","nodeType":"YulFunctionCall","src":"9573:18:125"},{"arguments":[{"name":"tail_1","nativeSrc":"9597:6:125","nodeType":"YulIdentifier","src":"9597:6:125"},{"name":"headStart","nativeSrc":"9605:9:125","nodeType":"YulIdentifier","src":"9605:9:125"}],"functionName":{"name":"sub","nativeSrc":"9593:3:125","nodeType":"YulIdentifier","src":"9593:3:125"},"nativeSrc":"9593:22:125","nodeType":"YulFunctionCall","src":"9593:22:125"}],"functionName":{"name":"mstore","nativeSrc":"9566:6:125","nodeType":"YulIdentifier","src":"9566:6:125"},"nativeSrc":"9566:50:125","nodeType":"YulFunctionCall","src":"9566:50:125"},"nativeSrc":"9566:50:125","nodeType":"YulExpressionStatement","src":"9566:50:125"},{"nativeSrc":"9625:47:125","nodeType":"YulVariableDeclaration","src":"9625:47:125","value":{"arguments":[{"name":"value2","nativeSrc":"9657:6:125","nodeType":"YulIdentifier","src":"9657:6:125"},{"name":"tail_1","nativeSrc":"9665:6:125","nodeType":"YulIdentifier","src":"9665:6:125"}],"functionName":{"name":"abi_encode_string","nativeSrc":"9639:17:125","nodeType":"YulIdentifier","src":"9639:17:125"},"nativeSrc":"9639:33:125","nodeType":"YulFunctionCall","src":"9639:33:125"},"variables":[{"name":"tail_2","nativeSrc":"9629:6:125","nodeType":"YulTypedName","src":"9629:6:125","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9692:9:125","nodeType":"YulIdentifier","src":"9692:9:125"},{"kind":"number","nativeSrc":"9703:2:125","nodeType":"YulLiteral","src":"9703:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9688:3:125","nodeType":"YulIdentifier","src":"9688:3:125"},"nativeSrc":"9688:18:125","nodeType":"YulFunctionCall","src":"9688:18:125"},{"name":"value3","nativeSrc":"9708:6:125","nodeType":"YulIdentifier","src":"9708:6:125"}],"functionName":{"name":"mstore","nativeSrc":"9681:6:125","nodeType":"YulIdentifier","src":"9681:6:125"},"nativeSrc":"9681:34:125","nodeType":"YulFunctionCall","src":"9681:34:125"},"nativeSrc":"9681:34:125","nodeType":"YulExpressionStatement","src":"9681:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9735:9:125","nodeType":"YulIdentifier","src":"9735:9:125"},{"kind":"number","nativeSrc":"9746:3:125","nodeType":"YulLiteral","src":"9746:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"9731:3:125","nodeType":"YulIdentifier","src":"9731:3:125"},"nativeSrc":"9731:19:125","nodeType":"YulFunctionCall","src":"9731:19:125"},{"arguments":[{"name":"value4","nativeSrc":"9756:6:125","nodeType":"YulIdentifier","src":"9756:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9772:3:125","nodeType":"YulLiteral","src":"9772:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"9777:1:125","nodeType":"YulLiteral","src":"9777:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"9768:3:125","nodeType":"YulIdentifier","src":"9768:3:125"},"nativeSrc":"9768:11:125","nodeType":"YulFunctionCall","src":"9768:11:125"},{"kind":"number","nativeSrc":"9781:1:125","nodeType":"YulLiteral","src":"9781:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"9764:3:125","nodeType":"YulIdentifier","src":"9764:3:125"},"nativeSrc":"9764:19:125","nodeType":"YulFunctionCall","src":"9764:19:125"}],"functionName":{"name":"and","nativeSrc":"9752:3:125","nodeType":"YulIdentifier","src":"9752:3:125"},"nativeSrc":"9752:32:125","nodeType":"YulFunctionCall","src":"9752:32:125"}],"functionName":{"name":"mstore","nativeSrc":"9724:6:125","nodeType":"YulIdentifier","src":"9724:6:125"},"nativeSrc":"9724:61:125","nodeType":"YulFunctionCall","src":"9724:61:125"},"nativeSrc":"9724:61:125","nodeType":"YulExpressionStatement","src":"9724:61:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9805:9:125","nodeType":"YulIdentifier","src":"9805:9:125"},{"kind":"number","nativeSrc":"9816:3:125","nodeType":"YulLiteral","src":"9816:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"9801:3:125","nodeType":"YulIdentifier","src":"9801:3:125"},"nativeSrc":"9801:19:125","nodeType":"YulFunctionCall","src":"9801:19:125"},{"name":"value5","nativeSrc":"9822:6:125","nodeType":"YulIdentifier","src":"9822:6:125"}],"functionName":{"name":"mstore","nativeSrc":"9794:6:125","nodeType":"YulIdentifier","src":"9794:6:125"},"nativeSrc":"9794:35:125","nodeType":"YulFunctionCall","src":"9794:35:125"},"nativeSrc":"9794:35:125","nodeType":"YulExpressionStatement","src":"9794:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9849:9:125","nodeType":"YulIdentifier","src":"9849:9:125"},{"kind":"number","nativeSrc":"9860:3:125","nodeType":"YulLiteral","src":"9860:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"9845:3:125","nodeType":"YulIdentifier","src":"9845:3:125"},"nativeSrc":"9845:19:125","nodeType":"YulFunctionCall","src":"9845:19:125"},{"arguments":[{"name":"tail_2","nativeSrc":"9870:6:125","nodeType":"YulIdentifier","src":"9870:6:125"},{"name":"headStart","nativeSrc":"9878:9:125","nodeType":"YulIdentifier","src":"9878:9:125"}],"functionName":{"name":"sub","nativeSrc":"9866:3:125","nodeType":"YulIdentifier","src":"9866:3:125"},"nativeSrc":"9866:22:125","nodeType":"YulFunctionCall","src":"9866:22:125"}],"functionName":{"name":"mstore","nativeSrc":"9838:6:125","nodeType":"YulIdentifier","src":"9838:6:125"},"nativeSrc":"9838:51:125","nodeType":"YulFunctionCall","src":"9838:51:125"},"nativeSrc":"9838:51:125","nodeType":"YulExpressionStatement","src":"9838:51:125"},{"nativeSrc":"9898:17:125","nodeType":"YulVariableDeclaration","src":"9898:17:125","value":{"name":"tail_2","nativeSrc":"9909:6:125","nodeType":"YulIdentifier","src":"9909:6:125"},"variables":[{"name":"pos","nativeSrc":"9902:3:125","nodeType":"YulTypedName","src":"9902:3:125","type":""}]},{"nativeSrc":"9924:27:125","nodeType":"YulVariableDeclaration","src":"9924:27:125","value":{"arguments":[{"name":"value6","nativeSrc":"9944:6:125","nodeType":"YulIdentifier","src":"9944:6:125"}],"functionName":{"name":"mload","nativeSrc":"9938:5:125","nodeType":"YulIdentifier","src":"9938:5:125"},"nativeSrc":"9938:13:125","nodeType":"YulFunctionCall","src":"9938:13:125"},"variables":[{"name":"length","nativeSrc":"9928:6:125","nodeType":"YulTypedName","src":"9928:6:125","type":""}]},{"expression":{"arguments":[{"name":"tail_2","nativeSrc":"9967:6:125","nodeType":"YulIdentifier","src":"9967:6:125"},{"name":"length","nativeSrc":"9975:6:125","nodeType":"YulIdentifier","src":"9975:6:125"}],"functionName":{"name":"mstore","nativeSrc":"9960:6:125","nodeType":"YulIdentifier","src":"9960:6:125"},"nativeSrc":"9960:22:125","nodeType":"YulFunctionCall","src":"9960:22:125"},"nativeSrc":"9960:22:125","nodeType":"YulExpressionStatement","src":"9960:22:125"},{"nativeSrc":"9991:22:125","nodeType":"YulAssignment","src":"9991:22:125","value":{"arguments":[{"name":"tail_2","nativeSrc":"10002:6:125","nodeType":"YulIdentifier","src":"10002:6:125"},{"kind":"number","nativeSrc":"10010:2:125","nodeType":"YulLiteral","src":"10010:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9998:3:125","nodeType":"YulIdentifier","src":"9998:3:125"},"nativeSrc":"9998:15:125","nodeType":"YulFunctionCall","src":"9998:15:125"},"variableNames":[{"name":"pos","nativeSrc":"9991:3:125","nodeType":"YulIdentifier","src":"9991:3:125"}]},{"nativeSrc":"10022:29:125","nodeType":"YulVariableDeclaration","src":"10022:29:125","value":{"arguments":[{"name":"value6","nativeSrc":"10040:6:125","nodeType":"YulIdentifier","src":"10040:6:125"},{"kind":"number","nativeSrc":"10048:2:125","nodeType":"YulLiteral","src":"10048:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10036:3:125","nodeType":"YulIdentifier","src":"10036:3:125"},"nativeSrc":"10036:15:125","nodeType":"YulFunctionCall","src":"10036:15:125"},"variables":[{"name":"srcPtr","nativeSrc":"10026:6:125","nodeType":"YulTypedName","src":"10026:6:125","type":""}]},{"nativeSrc":"10060:10:125","nodeType":"YulVariableDeclaration","src":"10060:10:125","value":{"kind":"number","nativeSrc":"10069:1:125","nodeType":"YulLiteral","src":"10069:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"10064:1:125","nodeType":"YulTypedName","src":"10064:1:125","type":""}]},{"body":{"nativeSrc":"10128:120:125","nodeType":"YulBlock","src":"10128:120:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"10149:3:125","nodeType":"YulIdentifier","src":"10149:3:125"},{"arguments":[{"name":"srcPtr","nativeSrc":"10160:6:125","nodeType":"YulIdentifier","src":"10160:6:125"}],"functionName":{"name":"mload","nativeSrc":"10154:5:125","nodeType":"YulIdentifier","src":"10154:5:125"},"nativeSrc":"10154:13:125","nodeType":"YulFunctionCall","src":"10154:13:125"}],"functionName":{"name":"mstore","nativeSrc":"10142:6:125","nodeType":"YulIdentifier","src":"10142:6:125"},"nativeSrc":"10142:26:125","nodeType":"YulFunctionCall","src":"10142:26:125"},"nativeSrc":"10142:26:125","nodeType":"YulExpressionStatement","src":"10142:26:125"},{"nativeSrc":"10181:19:125","nodeType":"YulAssignment","src":"10181:19:125","value":{"arguments":[{"name":"pos","nativeSrc":"10192:3:125","nodeType":"YulIdentifier","src":"10192:3:125"},{"kind":"number","nativeSrc":"10197:2:125","nodeType":"YulLiteral","src":"10197:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10188:3:125","nodeType":"YulIdentifier","src":"10188:3:125"},"nativeSrc":"10188:12:125","nodeType":"YulFunctionCall","src":"10188:12:125"},"variableNames":[{"name":"pos","nativeSrc":"10181:3:125","nodeType":"YulIdentifier","src":"10181:3:125"}]},{"nativeSrc":"10213:25:125","nodeType":"YulAssignment","src":"10213:25:125","value":{"arguments":[{"name":"srcPtr","nativeSrc":"10227:6:125","nodeType":"YulIdentifier","src":"10227:6:125"},{"kind":"number","nativeSrc":"10235:2:125","nodeType":"YulLiteral","src":"10235:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10223:3:125","nodeType":"YulIdentifier","src":"10223:3:125"},"nativeSrc":"10223:15:125","nodeType":"YulFunctionCall","src":"10223:15:125"},"variableNames":[{"name":"srcPtr","nativeSrc":"10213:6:125","nodeType":"YulIdentifier","src":"10213:6:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"10090:1:125","nodeType":"YulIdentifier","src":"10090:1:125"},{"name":"length","nativeSrc":"10093:6:125","nodeType":"YulIdentifier","src":"10093:6:125"}],"functionName":{"name":"lt","nativeSrc":"10087:2:125","nodeType":"YulIdentifier","src":"10087:2:125"},"nativeSrc":"10087:13:125","nodeType":"YulFunctionCall","src":"10087:13:125"},"nativeSrc":"10079:169:125","nodeType":"YulForLoop","post":{"nativeSrc":"10101:18:125","nodeType":"YulBlock","src":"10101:18:125","statements":[{"nativeSrc":"10103:14:125","nodeType":"YulAssignment","src":"10103:14:125","value":{"arguments":[{"name":"i","nativeSrc":"10112:1:125","nodeType":"YulIdentifier","src":"10112:1:125"},{"kind":"number","nativeSrc":"10115:1:125","nodeType":"YulLiteral","src":"10115:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"10108:3:125","nodeType":"YulIdentifier","src":"10108:3:125"},"nativeSrc":"10108:9:125","nodeType":"YulFunctionCall","src":"10108:9:125"},"variableNames":[{"name":"i","nativeSrc":"10103:1:125","nodeType":"YulIdentifier","src":"10103:1:125"}]}]},"pre":{"nativeSrc":"10083:3:125","nodeType":"YulBlock","src":"10083:3:125","statements":[]},"src":"10079:169:125"},{"nativeSrc":"10257:11:125","nodeType":"YulAssignment","src":"10257:11:125","value":{"name":"pos","nativeSrc":"10265:3:125","nodeType":"YulIdentifier","src":"10265:3:125"},"variableNames":[{"name":"tail","nativeSrc":"10257:4:125","nodeType":"YulIdentifier","src":"10257:4:125"}]}]},"name":"abi_encode_tuple_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"9036:1238:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9314:9:125","nodeType":"YulTypedName","src":"9314:9:125","type":""},{"name":"value6","nativeSrc":"9325:6:125","nodeType":"YulTypedName","src":"9325:6:125","type":""},{"name":"value5","nativeSrc":"9333:6:125","nodeType":"YulTypedName","src":"9333:6:125","type":""},{"name":"value4","nativeSrc":"9341:6:125","nodeType":"YulTypedName","src":"9341:6:125","type":""},{"name":"value3","nativeSrc":"9349:6:125","nodeType":"YulTypedName","src":"9349:6:125","type":""},{"name":"value2","nativeSrc":"9357:6:125","nodeType":"YulTypedName","src":"9357:6:125","type":""},{"name":"value1","nativeSrc":"9365:6:125","nodeType":"YulTypedName","src":"9365:6:125","type":""},{"name":"value0","nativeSrc":"9373:6:125","nodeType":"YulTypedName","src":"9373:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9384:4:125","nodeType":"YulTypedName","src":"9384:4:125","type":""}],"src":"9036:1238:125"},{"body":{"nativeSrc":"10371:177:125","nodeType":"YulBlock","src":"10371:177:125","statements":[{"body":{"nativeSrc":"10417:16:125","nodeType":"YulBlock","src":"10417:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10426:1:125","nodeType":"YulLiteral","src":"10426:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10429:1:125","nodeType":"YulLiteral","src":"10429:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10419:6:125","nodeType":"YulIdentifier","src":"10419:6:125"},"nativeSrc":"10419:12:125","nodeType":"YulFunctionCall","src":"10419:12:125"},"nativeSrc":"10419:12:125","nodeType":"YulExpressionStatement","src":"10419:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10392:7:125","nodeType":"YulIdentifier","src":"10392:7:125"},{"name":"headStart","nativeSrc":"10401:9:125","nodeType":"YulIdentifier","src":"10401:9:125"}],"functionName":{"name":"sub","nativeSrc":"10388:3:125","nodeType":"YulIdentifier","src":"10388:3:125"},"nativeSrc":"10388:23:125","nodeType":"YulFunctionCall","src":"10388:23:125"},{"kind":"number","nativeSrc":"10413:2:125","nodeType":"YulLiteral","src":"10413:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"10384:3:125","nodeType":"YulIdentifier","src":"10384:3:125"},"nativeSrc":"10384:32:125","nodeType":"YulFunctionCall","src":"10384:32:125"},"nativeSrc":"10381:52:125","nodeType":"YulIf","src":"10381:52:125"},{"nativeSrc":"10442:36:125","nodeType":"YulVariableDeclaration","src":"10442:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10468:9:125","nodeType":"YulIdentifier","src":"10468:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"10455:12:125","nodeType":"YulIdentifier","src":"10455:12:125"},"nativeSrc":"10455:23:125","nodeType":"YulFunctionCall","src":"10455:23:125"},"variables":[{"name":"value","nativeSrc":"10446:5:125","nodeType":"YulTypedName","src":"10446:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10512:5:125","nodeType":"YulIdentifier","src":"10512:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10487:24:125","nodeType":"YulIdentifier","src":"10487:24:125"},"nativeSrc":"10487:31:125","nodeType":"YulFunctionCall","src":"10487:31:125"},"nativeSrc":"10487:31:125","nodeType":"YulExpressionStatement","src":"10487:31:125"},{"nativeSrc":"10527:15:125","nodeType":"YulAssignment","src":"10527:15:125","value":{"name":"value","nativeSrc":"10537:5:125","nodeType":"YulIdentifier","src":"10537:5:125"},"variableNames":[{"name":"value0","nativeSrc":"10527:6:125","nodeType":"YulIdentifier","src":"10527:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_ILPWhitelist_$14383","nativeSrc":"10279:269:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10337:9:125","nodeType":"YulTypedName","src":"10337:9:125","type":""},{"name":"dataEnd","nativeSrc":"10348:7:125","nodeType":"YulTypedName","src":"10348:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10360:6:125","nodeType":"YulTypedName","src":"10360:6:125","type":""}],"src":"10279:269:125"},{"body":{"nativeSrc":"10640:280:125","nodeType":"YulBlock","src":"10640:280:125","statements":[{"body":{"nativeSrc":"10686:16:125","nodeType":"YulBlock","src":"10686:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10695:1:125","nodeType":"YulLiteral","src":"10695:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10698:1:125","nodeType":"YulLiteral","src":"10698:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10688:6:125","nodeType":"YulIdentifier","src":"10688:6:125"},"nativeSrc":"10688:12:125","nodeType":"YulFunctionCall","src":"10688:12:125"},"nativeSrc":"10688:12:125","nodeType":"YulExpressionStatement","src":"10688:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10661:7:125","nodeType":"YulIdentifier","src":"10661:7:125"},{"name":"headStart","nativeSrc":"10670:9:125","nodeType":"YulIdentifier","src":"10670:9:125"}],"functionName":{"name":"sub","nativeSrc":"10657:3:125","nodeType":"YulIdentifier","src":"10657:3:125"},"nativeSrc":"10657:23:125","nodeType":"YulFunctionCall","src":"10657:23:125"},{"kind":"number","nativeSrc":"10682:2:125","nodeType":"YulLiteral","src":"10682:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"10653:3:125","nodeType":"YulIdentifier","src":"10653:3:125"},"nativeSrc":"10653:32:125","nodeType":"YulFunctionCall","src":"10653:32:125"},"nativeSrc":"10650:52:125","nodeType":"YulIf","src":"10650:52:125"},{"nativeSrc":"10711:14:125","nodeType":"YulVariableDeclaration","src":"10711:14:125","value":{"kind":"number","nativeSrc":"10724:1:125","nodeType":"YulLiteral","src":"10724:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"10715:5:125","nodeType":"YulTypedName","src":"10715:5:125","type":""}]},{"nativeSrc":"10734:32:125","nodeType":"YulAssignment","src":"10734:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10756:9:125","nodeType":"YulIdentifier","src":"10756:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"10743:12:125","nodeType":"YulIdentifier","src":"10743:12:125"},"nativeSrc":"10743:23:125","nodeType":"YulFunctionCall","src":"10743:23:125"},"variableNames":[{"name":"value","nativeSrc":"10734:5:125","nodeType":"YulIdentifier","src":"10734:5:125"}]},{"nativeSrc":"10775:15:125","nodeType":"YulAssignment","src":"10775:15:125","value":{"name":"value","nativeSrc":"10785:5:125","nodeType":"YulIdentifier","src":"10785:5:125"},"variableNames":[{"name":"value0","nativeSrc":"10775:6:125","nodeType":"YulIdentifier","src":"10775:6:125"}]},{"nativeSrc":"10799:47:125","nodeType":"YulVariableDeclaration","src":"10799:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10831:9:125","nodeType":"YulIdentifier","src":"10831:9:125"},{"kind":"number","nativeSrc":"10842:2:125","nodeType":"YulLiteral","src":"10842:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10827:3:125","nodeType":"YulIdentifier","src":"10827:3:125"},"nativeSrc":"10827:18:125","nodeType":"YulFunctionCall","src":"10827:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"10814:12:125","nodeType":"YulIdentifier","src":"10814:12:125"},"nativeSrc":"10814:32:125","nodeType":"YulFunctionCall","src":"10814:32:125"},"variables":[{"name":"value_1","nativeSrc":"10803:7:125","nodeType":"YulTypedName","src":"10803:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"10880:7:125","nodeType":"YulIdentifier","src":"10880:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10855:24:125","nodeType":"YulIdentifier","src":"10855:24:125"},"nativeSrc":"10855:33:125","nodeType":"YulFunctionCall","src":"10855:33:125"},"nativeSrc":"10855:33:125","nodeType":"YulExpressionStatement","src":"10855:33:125"},{"nativeSrc":"10897:17:125","nodeType":"YulAssignment","src":"10897:17:125","value":{"name":"value_1","nativeSrc":"10907:7:125","nodeType":"YulIdentifier","src":"10907:7:125"},"variableNames":[{"name":"value1","nativeSrc":"10897:6:125","nodeType":"YulIdentifier","src":"10897:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_address","nativeSrc":"10553:367:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10598:9:125","nodeType":"YulTypedName","src":"10598:9:125","type":""},{"name":"dataEnd","nativeSrc":"10609:7:125","nodeType":"YulTypedName","src":"10609:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10621:6:125","nodeType":"YulTypedName","src":"10621:6:125","type":""},{"name":"value1","nativeSrc":"10629:6:125","nodeType":"YulTypedName","src":"10629:6:125","type":""}],"src":"10553:367:125"},{"body":{"nativeSrc":"11048:102:125","nodeType":"YulBlock","src":"11048:102:125","statements":[{"nativeSrc":"11058:26:125","nodeType":"YulAssignment","src":"11058:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11070:9:125","nodeType":"YulIdentifier","src":"11070:9:125"},{"kind":"number","nativeSrc":"11081:2:125","nodeType":"YulLiteral","src":"11081:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11066:3:125","nodeType":"YulIdentifier","src":"11066:3:125"},"nativeSrc":"11066:18:125","nodeType":"YulFunctionCall","src":"11066:18:125"},"variableNames":[{"name":"tail","nativeSrc":"11058:4:125","nodeType":"YulIdentifier","src":"11058:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11100:9:125","nodeType":"YulIdentifier","src":"11100:9:125"},{"arguments":[{"name":"value0","nativeSrc":"11115:6:125","nodeType":"YulIdentifier","src":"11115:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11131:3:125","nodeType":"YulLiteral","src":"11131:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"11136:1:125","nodeType":"YulLiteral","src":"11136:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11127:3:125","nodeType":"YulIdentifier","src":"11127:3:125"},"nativeSrc":"11127:11:125","nodeType":"YulFunctionCall","src":"11127:11:125"},{"kind":"number","nativeSrc":"11140:1:125","nodeType":"YulLiteral","src":"11140:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11123:3:125","nodeType":"YulIdentifier","src":"11123:3:125"},"nativeSrc":"11123:19:125","nodeType":"YulFunctionCall","src":"11123:19:125"}],"functionName":{"name":"and","nativeSrc":"11111:3:125","nodeType":"YulIdentifier","src":"11111:3:125"},"nativeSrc":"11111:32:125","nodeType":"YulFunctionCall","src":"11111:32:125"}],"functionName":{"name":"mstore","nativeSrc":"11093:6:125","nodeType":"YulIdentifier","src":"11093:6:125"},"nativeSrc":"11093:51:125","nodeType":"YulFunctionCall","src":"11093:51:125"},"nativeSrc":"11093:51:125","nodeType":"YulExpressionStatement","src":"11093:51:125"}]},"name":"abi_encode_tuple_t_contract$_ILPWhitelist_$14383__to_t_address__fromStack_reversed","nativeSrc":"10925:225:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11017:9:125","nodeType":"YulTypedName","src":"11017:9:125","type":""},{"name":"value0","nativeSrc":"11028:6:125","nodeType":"YulTypedName","src":"11028:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11039:4:125","nodeType":"YulTypedName","src":"11039:4:125","type":""}],"src":"10925:225:125"},{"body":{"nativeSrc":"11225:156:125","nodeType":"YulBlock","src":"11225:156:125","statements":[{"body":{"nativeSrc":"11271:16:125","nodeType":"YulBlock","src":"11271:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11280:1:125","nodeType":"YulLiteral","src":"11280:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11283:1:125","nodeType":"YulLiteral","src":"11283:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11273:6:125","nodeType":"YulIdentifier","src":"11273:6:125"},"nativeSrc":"11273:12:125","nodeType":"YulFunctionCall","src":"11273:12:125"},"nativeSrc":"11273:12:125","nodeType":"YulExpressionStatement","src":"11273:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11246:7:125","nodeType":"YulIdentifier","src":"11246:7:125"},{"name":"headStart","nativeSrc":"11255:9:125","nodeType":"YulIdentifier","src":"11255:9:125"}],"functionName":{"name":"sub","nativeSrc":"11242:3:125","nodeType":"YulIdentifier","src":"11242:3:125"},"nativeSrc":"11242:23:125","nodeType":"YulFunctionCall","src":"11242:23:125"},{"kind":"number","nativeSrc":"11267:2:125","nodeType":"YulLiteral","src":"11267:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"11238:3:125","nodeType":"YulIdentifier","src":"11238:3:125"},"nativeSrc":"11238:32:125","nodeType":"YulFunctionCall","src":"11238:32:125"},"nativeSrc":"11235:52:125","nodeType":"YulIf","src":"11235:52:125"},{"nativeSrc":"11296:14:125","nodeType":"YulVariableDeclaration","src":"11296:14:125","value":{"kind":"number","nativeSrc":"11309:1:125","nodeType":"YulLiteral","src":"11309:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"11300:5:125","nodeType":"YulTypedName","src":"11300:5:125","type":""}]},{"nativeSrc":"11319:32:125","nodeType":"YulAssignment","src":"11319:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11341:9:125","nodeType":"YulIdentifier","src":"11341:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"11328:12:125","nodeType":"YulIdentifier","src":"11328:12:125"},"nativeSrc":"11328:23:125","nodeType":"YulFunctionCall","src":"11328:23:125"},"variableNames":[{"name":"value","nativeSrc":"11319:5:125","nodeType":"YulIdentifier","src":"11319:5:125"}]},{"nativeSrc":"11360:15:125","nodeType":"YulAssignment","src":"11360:15:125","value":{"name":"value","nativeSrc":"11370:5:125","nodeType":"YulIdentifier","src":"11370:5:125"},"variableNames":[{"name":"value0","nativeSrc":"11360:6:125","nodeType":"YulIdentifier","src":"11360:6:125"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"11155:226:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11191:9:125","nodeType":"YulTypedName","src":"11191:9:125","type":""},{"name":"dataEnd","nativeSrc":"11202:7:125","nodeType":"YulTypedName","src":"11202:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11214:6:125","nodeType":"YulTypedName","src":"11214:6:125","type":""}],"src":"11155:226:125"},{"body":{"nativeSrc":"11506:466:125","nodeType":"YulBlock","src":"11506:466:125","statements":[{"body":{"nativeSrc":"11553:16:125","nodeType":"YulBlock","src":"11553:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11562:1:125","nodeType":"YulLiteral","src":"11562:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11565:1:125","nodeType":"YulLiteral","src":"11565:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11555:6:125","nodeType":"YulIdentifier","src":"11555:6:125"},"nativeSrc":"11555:12:125","nodeType":"YulFunctionCall","src":"11555:12:125"},"nativeSrc":"11555:12:125","nodeType":"YulExpressionStatement","src":"11555:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11527:7:125","nodeType":"YulIdentifier","src":"11527:7:125"},{"name":"headStart","nativeSrc":"11536:9:125","nodeType":"YulIdentifier","src":"11536:9:125"}],"functionName":{"name":"sub","nativeSrc":"11523:3:125","nodeType":"YulIdentifier","src":"11523:3:125"},"nativeSrc":"11523:23:125","nodeType":"YulFunctionCall","src":"11523:23:125"},{"kind":"number","nativeSrc":"11548:3:125","nodeType":"YulLiteral","src":"11548:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"11519:3:125","nodeType":"YulIdentifier","src":"11519:3:125"},"nativeSrc":"11519:33:125","nodeType":"YulFunctionCall","src":"11519:33:125"},"nativeSrc":"11516:53:125","nodeType":"YulIf","src":"11516:53:125"},{"nativeSrc":"11578:14:125","nodeType":"YulVariableDeclaration","src":"11578:14:125","value":{"kind":"number","nativeSrc":"11591:1:125","nodeType":"YulLiteral","src":"11591:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"11582:5:125","nodeType":"YulTypedName","src":"11582:5:125","type":""}]},{"nativeSrc":"11601:32:125","nodeType":"YulAssignment","src":"11601:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11623:9:125","nodeType":"YulIdentifier","src":"11623:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"11610:12:125","nodeType":"YulIdentifier","src":"11610:12:125"},"nativeSrc":"11610:23:125","nodeType":"YulFunctionCall","src":"11610:23:125"},"variableNames":[{"name":"value","nativeSrc":"11601:5:125","nodeType":"YulIdentifier","src":"11601:5:125"}]},{"nativeSrc":"11642:15:125","nodeType":"YulAssignment","src":"11642:15:125","value":{"name":"value","nativeSrc":"11652:5:125","nodeType":"YulIdentifier","src":"11652:5:125"},"variableNames":[{"name":"value0","nativeSrc":"11642:6:125","nodeType":"YulIdentifier","src":"11642:6:125"}]},{"nativeSrc":"11666:16:125","nodeType":"YulVariableDeclaration","src":"11666:16:125","value":{"kind":"number","nativeSrc":"11681:1:125","nodeType":"YulLiteral","src":"11681:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"11670:7:125","nodeType":"YulTypedName","src":"11670:7:125","type":""}]},{"nativeSrc":"11691:43:125","nodeType":"YulAssignment","src":"11691:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11719:9:125","nodeType":"YulIdentifier","src":"11719:9:125"},{"kind":"number","nativeSrc":"11730:2:125","nodeType":"YulLiteral","src":"11730:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11715:3:125","nodeType":"YulIdentifier","src":"11715:3:125"},"nativeSrc":"11715:18:125","nodeType":"YulFunctionCall","src":"11715:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"11702:12:125","nodeType":"YulIdentifier","src":"11702:12:125"},"nativeSrc":"11702:32:125","nodeType":"YulFunctionCall","src":"11702:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"11691:7:125","nodeType":"YulIdentifier","src":"11691:7:125"}]},{"nativeSrc":"11743:17:125","nodeType":"YulAssignment","src":"11743:17:125","value":{"name":"value_1","nativeSrc":"11753:7:125","nodeType":"YulIdentifier","src":"11753:7:125"},"variableNames":[{"name":"value1","nativeSrc":"11743:6:125","nodeType":"YulIdentifier","src":"11743:6:125"}]},{"nativeSrc":"11769:16:125","nodeType":"YulVariableDeclaration","src":"11769:16:125","value":{"kind":"number","nativeSrc":"11784:1:125","nodeType":"YulLiteral","src":"11784:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"11773:7:125","nodeType":"YulTypedName","src":"11773:7:125","type":""}]},{"nativeSrc":"11794:43:125","nodeType":"YulAssignment","src":"11794:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11822:9:125","nodeType":"YulIdentifier","src":"11822:9:125"},{"kind":"number","nativeSrc":"11833:2:125","nodeType":"YulLiteral","src":"11833:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11818:3:125","nodeType":"YulIdentifier","src":"11818:3:125"},"nativeSrc":"11818:18:125","nodeType":"YulFunctionCall","src":"11818:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"11805:12:125","nodeType":"YulIdentifier","src":"11805:12:125"},"nativeSrc":"11805:32:125","nodeType":"YulFunctionCall","src":"11805:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"11794:7:125","nodeType":"YulIdentifier","src":"11794:7:125"}]},{"nativeSrc":"11846:17:125","nodeType":"YulAssignment","src":"11846:17:125","value":{"name":"value_2","nativeSrc":"11856:7:125","nodeType":"YulIdentifier","src":"11856:7:125"},"variableNames":[{"name":"value2","nativeSrc":"11846:6:125","nodeType":"YulIdentifier","src":"11846:6:125"}]},{"nativeSrc":"11872:16:125","nodeType":"YulVariableDeclaration","src":"11872:16:125","value":{"kind":"number","nativeSrc":"11887:1:125","nodeType":"YulLiteral","src":"11887:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"11876:7:125","nodeType":"YulTypedName","src":"11876:7:125","type":""}]},{"nativeSrc":"11897:43:125","nodeType":"YulAssignment","src":"11897:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11925:9:125","nodeType":"YulIdentifier","src":"11925:9:125"},{"kind":"number","nativeSrc":"11936:2:125","nodeType":"YulLiteral","src":"11936:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11921:3:125","nodeType":"YulIdentifier","src":"11921:3:125"},"nativeSrc":"11921:18:125","nodeType":"YulFunctionCall","src":"11921:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"11908:12:125","nodeType":"YulIdentifier","src":"11908:12:125"},"nativeSrc":"11908:32:125","nodeType":"YulFunctionCall","src":"11908:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"11897:7:125","nodeType":"YulIdentifier","src":"11897:7:125"}]},{"nativeSrc":"11949:17:125","nodeType":"YulAssignment","src":"11949:17:125","value":{"name":"value_3","nativeSrc":"11959:7:125","nodeType":"YulIdentifier","src":"11959:7:125"},"variableNames":[{"name":"value3","nativeSrc":"11949:6:125","nodeType":"YulIdentifier","src":"11949:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256t_uint256t_int256","nativeSrc":"11386:586:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11448:9:125","nodeType":"YulTypedName","src":"11448:9:125","type":""},{"name":"dataEnd","nativeSrc":"11459:7:125","nodeType":"YulTypedName","src":"11459:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11471:6:125","nodeType":"YulTypedName","src":"11471:6:125","type":""},{"name":"value1","nativeSrc":"11479:6:125","nodeType":"YulTypedName","src":"11479:6:125","type":""},{"name":"value2","nativeSrc":"11487:6:125","nodeType":"YulTypedName","src":"11487:6:125","type":""},{"name":"value3","nativeSrc":"11495:6:125","nodeType":"YulTypedName","src":"11495:6:125","type":""}],"src":"11386:586:125"},{"body":{"nativeSrc":"12096:102:125","nodeType":"YulBlock","src":"12096:102:125","statements":[{"nativeSrc":"12106:26:125","nodeType":"YulAssignment","src":"12106:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12118:9:125","nodeType":"YulIdentifier","src":"12118:9:125"},{"kind":"number","nativeSrc":"12129:2:125","nodeType":"YulLiteral","src":"12129:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12114:3:125","nodeType":"YulIdentifier","src":"12114:3:125"},"nativeSrc":"12114:18:125","nodeType":"YulFunctionCall","src":"12114:18:125"},"variableNames":[{"name":"tail","nativeSrc":"12106:4:125","nodeType":"YulIdentifier","src":"12106:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12148:9:125","nodeType":"YulIdentifier","src":"12148:9:125"},{"arguments":[{"name":"value0","nativeSrc":"12163:6:125","nodeType":"YulIdentifier","src":"12163:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12179:3:125","nodeType":"YulLiteral","src":"12179:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"12184:1:125","nodeType":"YulLiteral","src":"12184:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12175:3:125","nodeType":"YulIdentifier","src":"12175:3:125"},"nativeSrc":"12175:11:125","nodeType":"YulFunctionCall","src":"12175:11:125"},{"kind":"number","nativeSrc":"12188:1:125","nodeType":"YulLiteral","src":"12188:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12171:3:125","nodeType":"YulIdentifier","src":"12171:3:125"},"nativeSrc":"12171:19:125","nodeType":"YulFunctionCall","src":"12171:19:125"}],"functionName":{"name":"and","nativeSrc":"12159:3:125","nodeType":"YulIdentifier","src":"12159:3:125"},"nativeSrc":"12159:32:125","nodeType":"YulFunctionCall","src":"12159:32:125"}],"functionName":{"name":"mstore","nativeSrc":"12141:6:125","nodeType":"YulIdentifier","src":"12141:6:125"},"nativeSrc":"12141:51:125","nodeType":"YulFunctionCall","src":"12141:51:125"},"nativeSrc":"12141:51:125","nodeType":"YulExpressionStatement","src":"12141:51:125"}]},"name":"abi_encode_tuple_t_contract$_IERC4626_$22463__to_t_address__fromStack_reversed","nativeSrc":"11977:221:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12065:9:125","nodeType":"YulTypedName","src":"12065:9:125","type":""},{"name":"value0","nativeSrc":"12076:6:125","nodeType":"YulTypedName","src":"12076:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12087:4:125","nodeType":"YulTypedName","src":"12087:4:125","type":""}],"src":"11977:221:125"},{"body":{"nativeSrc":"12305:289:125","nodeType":"YulBlock","src":"12305:289:125","statements":[{"body":{"nativeSrc":"12351:16:125","nodeType":"YulBlock","src":"12351:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12360:1:125","nodeType":"YulLiteral","src":"12360:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12363:1:125","nodeType":"YulLiteral","src":"12363:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12353:6:125","nodeType":"YulIdentifier","src":"12353:6:125"},"nativeSrc":"12353:12:125","nodeType":"YulFunctionCall","src":"12353:12:125"},"nativeSrc":"12353:12:125","nodeType":"YulExpressionStatement","src":"12353:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12326:7:125","nodeType":"YulIdentifier","src":"12326:7:125"},{"name":"headStart","nativeSrc":"12335:9:125","nodeType":"YulIdentifier","src":"12335:9:125"}],"functionName":{"name":"sub","nativeSrc":"12322:3:125","nodeType":"YulIdentifier","src":"12322:3:125"},"nativeSrc":"12322:23:125","nodeType":"YulFunctionCall","src":"12322:23:125"},{"kind":"number","nativeSrc":"12347:2:125","nodeType":"YulLiteral","src":"12347:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"12318:3:125","nodeType":"YulIdentifier","src":"12318:3:125"},"nativeSrc":"12318:32:125","nodeType":"YulFunctionCall","src":"12318:32:125"},"nativeSrc":"12315:52:125","nodeType":"YulIf","src":"12315:52:125"},{"nativeSrc":"12376:36:125","nodeType":"YulVariableDeclaration","src":"12376:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12402:9:125","nodeType":"YulIdentifier","src":"12402:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"12389:12:125","nodeType":"YulIdentifier","src":"12389:12:125"},"nativeSrc":"12389:23:125","nodeType":"YulFunctionCall","src":"12389:23:125"},"variables":[{"name":"value","nativeSrc":"12380:5:125","nodeType":"YulTypedName","src":"12380:5:125","type":""}]},{"body":{"nativeSrc":"12445:16:125","nodeType":"YulBlock","src":"12445:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12454:1:125","nodeType":"YulLiteral","src":"12454:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12457:1:125","nodeType":"YulLiteral","src":"12457:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12447:6:125","nodeType":"YulIdentifier","src":"12447:6:125"},"nativeSrc":"12447:12:125","nodeType":"YulFunctionCall","src":"12447:12:125"},"nativeSrc":"12447:12:125","nodeType":"YulExpressionStatement","src":"12447:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"12434:5:125","nodeType":"YulIdentifier","src":"12434:5:125"},{"kind":"number","nativeSrc":"12441:1:125","nodeType":"YulLiteral","src":"12441:1:125","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"12431:2:125","nodeType":"YulIdentifier","src":"12431:2:125"},"nativeSrc":"12431:12:125","nodeType":"YulFunctionCall","src":"12431:12:125"}],"functionName":{"name":"iszero","nativeSrc":"12424:6:125","nodeType":"YulIdentifier","src":"12424:6:125"},"nativeSrc":"12424:20:125","nodeType":"YulFunctionCall","src":"12424:20:125"},"nativeSrc":"12421:40:125","nodeType":"YulIf","src":"12421:40:125"},{"nativeSrc":"12470:15:125","nodeType":"YulAssignment","src":"12470:15:125","value":{"name":"value","nativeSrc":"12480:5:125","nodeType":"YulIdentifier","src":"12480:5:125"},"variableNames":[{"name":"value0","nativeSrc":"12470:6:125","nodeType":"YulIdentifier","src":"12470:6:125"}]},{"nativeSrc":"12494:16:125","nodeType":"YulVariableDeclaration","src":"12494:16:125","value":{"kind":"number","nativeSrc":"12509:1:125","nodeType":"YulLiteral","src":"12509:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"12498:7:125","nodeType":"YulTypedName","src":"12498:7:125","type":""}]},{"nativeSrc":"12519:43:125","nodeType":"YulAssignment","src":"12519:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12547:9:125","nodeType":"YulIdentifier","src":"12547:9:125"},{"kind":"number","nativeSrc":"12558:2:125","nodeType":"YulLiteral","src":"12558:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12543:3:125","nodeType":"YulIdentifier","src":"12543:3:125"},"nativeSrc":"12543:18:125","nodeType":"YulFunctionCall","src":"12543:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"12530:12:125","nodeType":"YulIdentifier","src":"12530:12:125"},"nativeSrc":"12530:32:125","nodeType":"YulFunctionCall","src":"12530:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"12519:7:125","nodeType":"YulIdentifier","src":"12519:7:125"}]},{"nativeSrc":"12571:17:125","nodeType":"YulAssignment","src":"12571:17:125","value":{"name":"value_1","nativeSrc":"12581:7:125","nodeType":"YulIdentifier","src":"12581:7:125"},"variableNames":[{"name":"value1","nativeSrc":"12571:6:125","nodeType":"YulIdentifier","src":"12571:6:125"}]}]},"name":"abi_decode_tuple_t_enum$_Parameter_$14171t_uint256","nativeSrc":"12203:391:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12263:9:125","nodeType":"YulTypedName","src":"12263:9:125","type":""},{"name":"dataEnd","nativeSrc":"12274:7:125","nodeType":"YulTypedName","src":"12274:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12286:6:125","nodeType":"YulTypedName","src":"12286:6:125","type":""},{"name":"value1","nativeSrc":"12294:6:125","nodeType":"YulTypedName","src":"12294:6:125","type":""}],"src":"12203:391:125"},{"body":{"nativeSrc":"12700:102:125","nodeType":"YulBlock","src":"12700:102:125","statements":[{"nativeSrc":"12710:26:125","nodeType":"YulAssignment","src":"12710:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12722:9:125","nodeType":"YulIdentifier","src":"12722:9:125"},{"kind":"number","nativeSrc":"12733:2:125","nodeType":"YulLiteral","src":"12733:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12718:3:125","nodeType":"YulIdentifier","src":"12718:3:125"},"nativeSrc":"12718:18:125","nodeType":"YulFunctionCall","src":"12718:18:125"},"variableNames":[{"name":"tail","nativeSrc":"12710:4:125","nodeType":"YulIdentifier","src":"12710:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12752:9:125","nodeType":"YulIdentifier","src":"12752:9:125"},{"arguments":[{"name":"value0","nativeSrc":"12767:6:125","nodeType":"YulIdentifier","src":"12767:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12783:3:125","nodeType":"YulLiteral","src":"12783:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"12788:1:125","nodeType":"YulLiteral","src":"12788:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12779:3:125","nodeType":"YulIdentifier","src":"12779:3:125"},"nativeSrc":"12779:11:125","nodeType":"YulFunctionCall","src":"12779:11:125"},{"kind":"number","nativeSrc":"12792:1:125","nodeType":"YulLiteral","src":"12792:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12775:3:125","nodeType":"YulIdentifier","src":"12775:3:125"},"nativeSrc":"12775:19:125","nodeType":"YulFunctionCall","src":"12775:19:125"}],"functionName":{"name":"and","nativeSrc":"12763:3:125","nodeType":"YulIdentifier","src":"12763:3:125"},"nativeSrc":"12763:32:125","nodeType":"YulFunctionCall","src":"12763:32:125"}],"functionName":{"name":"mstore","nativeSrc":"12745:6:125","nodeType":"YulIdentifier","src":"12745:6:125"},"nativeSrc":"12745:51:125","nodeType":"YulFunctionCall","src":"12745:51:125"},"nativeSrc":"12745:51:125","nodeType":"YulExpressionStatement","src":"12745:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"12599:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12669:9:125","nodeType":"YulTypedName","src":"12669:9:125","type":""},{"name":"value0","nativeSrc":"12680:6:125","nodeType":"YulTypedName","src":"12680:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12691:4:125","nodeType":"YulTypedName","src":"12691:4:125","type":""}],"src":"12599:203:125"},{"body":{"nativeSrc":"12894:177:125","nodeType":"YulBlock","src":"12894:177:125","statements":[{"body":{"nativeSrc":"12940:16:125","nodeType":"YulBlock","src":"12940:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12949:1:125","nodeType":"YulLiteral","src":"12949:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12952:1:125","nodeType":"YulLiteral","src":"12952:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12942:6:125","nodeType":"YulIdentifier","src":"12942:6:125"},"nativeSrc":"12942:12:125","nodeType":"YulFunctionCall","src":"12942:12:125"},"nativeSrc":"12942:12:125","nodeType":"YulExpressionStatement","src":"12942:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12915:7:125","nodeType":"YulIdentifier","src":"12915:7:125"},{"name":"headStart","nativeSrc":"12924:9:125","nodeType":"YulIdentifier","src":"12924:9:125"}],"functionName":{"name":"sub","nativeSrc":"12911:3:125","nodeType":"YulIdentifier","src":"12911:3:125"},"nativeSrc":"12911:23:125","nodeType":"YulFunctionCall","src":"12911:23:125"},{"kind":"number","nativeSrc":"12936:2:125","nodeType":"YulLiteral","src":"12936:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"12907:3:125","nodeType":"YulIdentifier","src":"12907:3:125"},"nativeSrc":"12907:32:125","nodeType":"YulFunctionCall","src":"12907:32:125"},"nativeSrc":"12904:52:125","nodeType":"YulIf","src":"12904:52:125"},{"nativeSrc":"12965:36:125","nodeType":"YulVariableDeclaration","src":"12965:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12991:9:125","nodeType":"YulIdentifier","src":"12991:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"12978:12:125","nodeType":"YulIdentifier","src":"12978:12:125"},"nativeSrc":"12978:23:125","nodeType":"YulFunctionCall","src":"12978:23:125"},"variables":[{"name":"value","nativeSrc":"12969:5:125","nodeType":"YulTypedName","src":"12969:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13035:5:125","nodeType":"YulIdentifier","src":"13035:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"13010:24:125","nodeType":"YulIdentifier","src":"13010:24:125"},"nativeSrc":"13010:31:125","nodeType":"YulFunctionCall","src":"13010:31:125"},"nativeSrc":"13010:31:125","nodeType":"YulExpressionStatement","src":"13010:31:125"},{"nativeSrc":"13050:15:125","nodeType":"YulAssignment","src":"13050:15:125","value":{"name":"value","nativeSrc":"13060:5:125","nodeType":"YulIdentifier","src":"13060:5:125"},"variableNames":[{"name":"value0","nativeSrc":"13050:6:125","nodeType":"YulIdentifier","src":"13050:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_ICooler_$14162","nativeSrc":"12807:264:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12860:9:125","nodeType":"YulTypedName","src":"12860:9:125","type":""},{"name":"dataEnd","nativeSrc":"12871:7:125","nodeType":"YulTypedName","src":"12871:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12883:6:125","nodeType":"YulTypedName","src":"12883:6:125","type":""}],"src":"12807:264:125"},{"body":{"nativeSrc":"13119:71:125","nodeType":"YulBlock","src":"13119:71:125","statements":[{"body":{"nativeSrc":"13168:16:125","nodeType":"YulBlock","src":"13168:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13177:1:125","nodeType":"YulLiteral","src":"13177:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"13180:1:125","nodeType":"YulLiteral","src":"13180:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13170:6:125","nodeType":"YulIdentifier","src":"13170:6:125"},"nativeSrc":"13170:12:125","nodeType":"YulFunctionCall","src":"13170:12:125"},"nativeSrc":"13170:12:125","nodeType":"YulExpressionStatement","src":"13170:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"13142:5:125","nodeType":"YulIdentifier","src":"13142:5:125"},{"arguments":[{"name":"value","nativeSrc":"13153:5:125","nodeType":"YulIdentifier","src":"13153:5:125"},{"kind":"number","nativeSrc":"13160:4:125","nodeType":"YulLiteral","src":"13160:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"13149:3:125","nodeType":"YulIdentifier","src":"13149:3:125"},"nativeSrc":"13149:16:125","nodeType":"YulFunctionCall","src":"13149:16:125"}],"functionName":{"name":"eq","nativeSrc":"13139:2:125","nodeType":"YulIdentifier","src":"13139:2:125"},"nativeSrc":"13139:27:125","nodeType":"YulFunctionCall","src":"13139:27:125"}],"functionName":{"name":"iszero","nativeSrc":"13132:6:125","nodeType":"YulIdentifier","src":"13132:6:125"},"nativeSrc":"13132:35:125","nodeType":"YulFunctionCall","src":"13132:35:125"},"nativeSrc":"13129:55:125","nodeType":"YulIf","src":"13129:55:125"}]},"name":"validator_revert_uint8","nativeSrc":"13076:114:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"13108:5:125","nodeType":"YulTypedName","src":"13108:5:125","type":""}],"src":"13076:114:125"},{"body":{"nativeSrc":"13365:839:125","nodeType":"YulBlock","src":"13365:839:125","statements":[{"body":{"nativeSrc":"13412:16:125","nodeType":"YulBlock","src":"13412:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13421:1:125","nodeType":"YulLiteral","src":"13421:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"13424:1:125","nodeType":"YulLiteral","src":"13424:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13414:6:125","nodeType":"YulIdentifier","src":"13414:6:125"},"nativeSrc":"13414:12:125","nodeType":"YulFunctionCall","src":"13414:12:125"},"nativeSrc":"13414:12:125","nodeType":"YulExpressionStatement","src":"13414:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13386:7:125","nodeType":"YulIdentifier","src":"13386:7:125"},{"name":"headStart","nativeSrc":"13395:9:125","nodeType":"YulIdentifier","src":"13395:9:125"}],"functionName":{"name":"sub","nativeSrc":"13382:3:125","nodeType":"YulIdentifier","src":"13382:3:125"},"nativeSrc":"13382:23:125","nodeType":"YulFunctionCall","src":"13382:23:125"},{"kind":"number","nativeSrc":"13407:3:125","nodeType":"YulLiteral","src":"13407:3:125","type":"","value":"224"}],"functionName":{"name":"slt","nativeSrc":"13378:3:125","nodeType":"YulIdentifier","src":"13378:3:125"},"nativeSrc":"13378:33:125","nodeType":"YulFunctionCall","src":"13378:33:125"},"nativeSrc":"13375:53:125","nodeType":"YulIf","src":"13375:53:125"},{"nativeSrc":"13437:36:125","nodeType":"YulVariableDeclaration","src":"13437:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"13463:9:125","nodeType":"YulIdentifier","src":"13463:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"13450:12:125","nodeType":"YulIdentifier","src":"13450:12:125"},"nativeSrc":"13450:23:125","nodeType":"YulFunctionCall","src":"13450:23:125"},"variables":[{"name":"value","nativeSrc":"13441:5:125","nodeType":"YulTypedName","src":"13441:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13507:5:125","nodeType":"YulIdentifier","src":"13507:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"13482:24:125","nodeType":"YulIdentifier","src":"13482:24:125"},"nativeSrc":"13482:31:125","nodeType":"YulFunctionCall","src":"13482:31:125"},"nativeSrc":"13482:31:125","nodeType":"YulExpressionStatement","src":"13482:31:125"},{"nativeSrc":"13522:15:125","nodeType":"YulAssignment","src":"13522:15:125","value":{"name":"value","nativeSrc":"13532:5:125","nodeType":"YulIdentifier","src":"13532:5:125"},"variableNames":[{"name":"value0","nativeSrc":"13522:6:125","nodeType":"YulIdentifier","src":"13522:6:125"}]},{"nativeSrc":"13546:47:125","nodeType":"YulVariableDeclaration","src":"13546:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13578:9:125","nodeType":"YulIdentifier","src":"13578:9:125"},{"kind":"number","nativeSrc":"13589:2:125","nodeType":"YulLiteral","src":"13589:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13574:3:125","nodeType":"YulIdentifier","src":"13574:3:125"},"nativeSrc":"13574:18:125","nodeType":"YulFunctionCall","src":"13574:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"13561:12:125","nodeType":"YulIdentifier","src":"13561:12:125"},"nativeSrc":"13561:32:125","nodeType":"YulFunctionCall","src":"13561:32:125"},"variables":[{"name":"value_1","nativeSrc":"13550:7:125","nodeType":"YulTypedName","src":"13550:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"13627:7:125","nodeType":"YulIdentifier","src":"13627:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"13602:24:125","nodeType":"YulIdentifier","src":"13602:24:125"},"nativeSrc":"13602:33:125","nodeType":"YulFunctionCall","src":"13602:33:125"},"nativeSrc":"13602:33:125","nodeType":"YulExpressionStatement","src":"13602:33:125"},{"nativeSrc":"13644:17:125","nodeType":"YulAssignment","src":"13644:17:125","value":{"name":"value_1","nativeSrc":"13654:7:125","nodeType":"YulIdentifier","src":"13654:7:125"},"variableNames":[{"name":"value1","nativeSrc":"13644:6:125","nodeType":"YulIdentifier","src":"13644:6:125"}]},{"nativeSrc":"13670:16:125","nodeType":"YulVariableDeclaration","src":"13670:16:125","value":{"kind":"number","nativeSrc":"13685:1:125","nodeType":"YulLiteral","src":"13685:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"13674:7:125","nodeType":"YulTypedName","src":"13674:7:125","type":""}]},{"nativeSrc":"13695:43:125","nodeType":"YulAssignment","src":"13695:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13723:9:125","nodeType":"YulIdentifier","src":"13723:9:125"},{"kind":"number","nativeSrc":"13734:2:125","nodeType":"YulLiteral","src":"13734:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13719:3:125","nodeType":"YulIdentifier","src":"13719:3:125"},"nativeSrc":"13719:18:125","nodeType":"YulFunctionCall","src":"13719:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"13706:12:125","nodeType":"YulIdentifier","src":"13706:12:125"},"nativeSrc":"13706:32:125","nodeType":"YulFunctionCall","src":"13706:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"13695:7:125","nodeType":"YulIdentifier","src":"13695:7:125"}]},{"nativeSrc":"13747:17:125","nodeType":"YulAssignment","src":"13747:17:125","value":{"name":"value_2","nativeSrc":"13757:7:125","nodeType":"YulIdentifier","src":"13757:7:125"},"variableNames":[{"name":"value2","nativeSrc":"13747:6:125","nodeType":"YulIdentifier","src":"13747:6:125"}]},{"nativeSrc":"13773:16:125","nodeType":"YulVariableDeclaration","src":"13773:16:125","value":{"kind":"number","nativeSrc":"13788:1:125","nodeType":"YulLiteral","src":"13788:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"13777:7:125","nodeType":"YulTypedName","src":"13777:7:125","type":""}]},{"nativeSrc":"13798:43:125","nodeType":"YulAssignment","src":"13798:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13826:9:125","nodeType":"YulIdentifier","src":"13826:9:125"},{"kind":"number","nativeSrc":"13837:2:125","nodeType":"YulLiteral","src":"13837:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13822:3:125","nodeType":"YulIdentifier","src":"13822:3:125"},"nativeSrc":"13822:18:125","nodeType":"YulFunctionCall","src":"13822:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"13809:12:125","nodeType":"YulIdentifier","src":"13809:12:125"},"nativeSrc":"13809:32:125","nodeType":"YulFunctionCall","src":"13809:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"13798:7:125","nodeType":"YulIdentifier","src":"13798:7:125"}]},{"nativeSrc":"13850:17:125","nodeType":"YulAssignment","src":"13850:17:125","value":{"name":"value_3","nativeSrc":"13860:7:125","nodeType":"YulIdentifier","src":"13860:7:125"},"variableNames":[{"name":"value3","nativeSrc":"13850:6:125","nodeType":"YulIdentifier","src":"13850:6:125"}]},{"nativeSrc":"13876:48:125","nodeType":"YulVariableDeclaration","src":"13876:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13908:9:125","nodeType":"YulIdentifier","src":"13908:9:125"},{"kind":"number","nativeSrc":"13919:3:125","nodeType":"YulLiteral","src":"13919:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"13904:3:125","nodeType":"YulIdentifier","src":"13904:3:125"},"nativeSrc":"13904:19:125","nodeType":"YulFunctionCall","src":"13904:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"13891:12:125","nodeType":"YulIdentifier","src":"13891:12:125"},"nativeSrc":"13891:33:125","nodeType":"YulFunctionCall","src":"13891:33:125"},"variables":[{"name":"value_4","nativeSrc":"13880:7:125","nodeType":"YulTypedName","src":"13880:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"13956:7:125","nodeType":"YulIdentifier","src":"13956:7:125"}],"functionName":{"name":"validator_revert_uint8","nativeSrc":"13933:22:125","nodeType":"YulIdentifier","src":"13933:22:125"},"nativeSrc":"13933:31:125","nodeType":"YulFunctionCall","src":"13933:31:125"},"nativeSrc":"13933:31:125","nodeType":"YulExpressionStatement","src":"13933:31:125"},{"nativeSrc":"13973:17:125","nodeType":"YulAssignment","src":"13973:17:125","value":{"name":"value_4","nativeSrc":"13983:7:125","nodeType":"YulIdentifier","src":"13983:7:125"},"variableNames":[{"name":"value4","nativeSrc":"13973:6:125","nodeType":"YulIdentifier","src":"13973:6:125"}]},{"nativeSrc":"13999:16:125","nodeType":"YulVariableDeclaration","src":"13999:16:125","value":{"kind":"number","nativeSrc":"14014:1:125","nodeType":"YulLiteral","src":"14014:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"14003:7:125","nodeType":"YulTypedName","src":"14003:7:125","type":""}]},{"nativeSrc":"14024:44:125","nodeType":"YulAssignment","src":"14024:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14052:9:125","nodeType":"YulIdentifier","src":"14052:9:125"},{"kind":"number","nativeSrc":"14063:3:125","nodeType":"YulLiteral","src":"14063:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"14048:3:125","nodeType":"YulIdentifier","src":"14048:3:125"},"nativeSrc":"14048:19:125","nodeType":"YulFunctionCall","src":"14048:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"14035:12:125","nodeType":"YulIdentifier","src":"14035:12:125"},"nativeSrc":"14035:33:125","nodeType":"YulFunctionCall","src":"14035:33:125"},"variableNames":[{"name":"value_5","nativeSrc":"14024:7:125","nodeType":"YulIdentifier","src":"14024:7:125"}]},{"nativeSrc":"14077:17:125","nodeType":"YulAssignment","src":"14077:17:125","value":{"name":"value_5","nativeSrc":"14087:7:125","nodeType":"YulIdentifier","src":"14087:7:125"},"variableNames":[{"name":"value5","nativeSrc":"14077:6:125","nodeType":"YulIdentifier","src":"14077:6:125"}]},{"nativeSrc":"14103:16:125","nodeType":"YulVariableDeclaration","src":"14103:16:125","value":{"kind":"number","nativeSrc":"14118:1:125","nodeType":"YulLiteral","src":"14118:1:125","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"14107:7:125","nodeType":"YulTypedName","src":"14107:7:125","type":""}]},{"nativeSrc":"14128:44:125","nodeType":"YulAssignment","src":"14128:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14156:9:125","nodeType":"YulIdentifier","src":"14156:9:125"},{"kind":"number","nativeSrc":"14167:3:125","nodeType":"YulLiteral","src":"14167:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"14152:3:125","nodeType":"YulIdentifier","src":"14152:3:125"},"nativeSrc":"14152:19:125","nodeType":"YulFunctionCall","src":"14152:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"14139:12:125","nodeType":"YulIdentifier","src":"14139:12:125"},"nativeSrc":"14139:33:125","nodeType":"YulFunctionCall","src":"14139:33:125"},"variableNames":[{"name":"value_6","nativeSrc":"14128:7:125","nodeType":"YulIdentifier","src":"14128:7:125"}]},{"nativeSrc":"14181:17:125","nodeType":"YulAssignment","src":"14181:17:125","value":{"name":"value_6","nativeSrc":"14191:7:125","nodeType":"YulIdentifier","src":"14191:7:125"},"variableNames":[{"name":"value6","nativeSrc":"14181:6:125","nodeType":"YulIdentifier","src":"14181:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32","nativeSrc":"13195:1009:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13283:9:125","nodeType":"YulTypedName","src":"13283:9:125","type":""},{"name":"dataEnd","nativeSrc":"13294:7:125","nodeType":"YulTypedName","src":"13294:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13306:6:125","nodeType":"YulTypedName","src":"13306:6:125","type":""},{"name":"value1","nativeSrc":"13314:6:125","nodeType":"YulTypedName","src":"13314:6:125","type":""},{"name":"value2","nativeSrc":"13322:6:125","nodeType":"YulTypedName","src":"13322:6:125","type":""},{"name":"value3","nativeSrc":"13330:6:125","nodeType":"YulTypedName","src":"13330:6:125","type":""},{"name":"value4","nativeSrc":"13338:6:125","nodeType":"YulTypedName","src":"13338:6:125","type":""},{"name":"value5","nativeSrc":"13346:6:125","nodeType":"YulTypedName","src":"13346:6:125","type":""},{"name":"value6","nativeSrc":"13354:6:125","nodeType":"YulTypedName","src":"13354:6:125","type":""}],"src":"13195:1009:125"},{"body":{"nativeSrc":"14296:301:125","nodeType":"YulBlock","src":"14296:301:125","statements":[{"body":{"nativeSrc":"14342:16:125","nodeType":"YulBlock","src":"14342:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14351:1:125","nodeType":"YulLiteral","src":"14351:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"14354:1:125","nodeType":"YulLiteral","src":"14354:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14344:6:125","nodeType":"YulIdentifier","src":"14344:6:125"},"nativeSrc":"14344:12:125","nodeType":"YulFunctionCall","src":"14344:12:125"},"nativeSrc":"14344:12:125","nodeType":"YulExpressionStatement","src":"14344:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14317:7:125","nodeType":"YulIdentifier","src":"14317:7:125"},{"name":"headStart","nativeSrc":"14326:9:125","nodeType":"YulIdentifier","src":"14326:9:125"}],"functionName":{"name":"sub","nativeSrc":"14313:3:125","nodeType":"YulIdentifier","src":"14313:3:125"},"nativeSrc":"14313:23:125","nodeType":"YulFunctionCall","src":"14313:23:125"},{"kind":"number","nativeSrc":"14338:2:125","nodeType":"YulLiteral","src":"14338:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"14309:3:125","nodeType":"YulIdentifier","src":"14309:3:125"},"nativeSrc":"14309:32:125","nodeType":"YulFunctionCall","src":"14309:32:125"},"nativeSrc":"14306:52:125","nodeType":"YulIf","src":"14306:52:125"},{"nativeSrc":"14367:36:125","nodeType":"YulVariableDeclaration","src":"14367:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14393:9:125","nodeType":"YulIdentifier","src":"14393:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"14380:12:125","nodeType":"YulIdentifier","src":"14380:12:125"},"nativeSrc":"14380:23:125","nodeType":"YulFunctionCall","src":"14380:23:125"},"variables":[{"name":"value","nativeSrc":"14371:5:125","nodeType":"YulTypedName","src":"14371:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"14437:5:125","nodeType":"YulIdentifier","src":"14437:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"14412:24:125","nodeType":"YulIdentifier","src":"14412:24:125"},"nativeSrc":"14412:31:125","nodeType":"YulFunctionCall","src":"14412:31:125"},"nativeSrc":"14412:31:125","nodeType":"YulExpressionStatement","src":"14412:31:125"},{"nativeSrc":"14452:15:125","nodeType":"YulAssignment","src":"14452:15:125","value":{"name":"value","nativeSrc":"14462:5:125","nodeType":"YulIdentifier","src":"14462:5:125"},"variableNames":[{"name":"value0","nativeSrc":"14452:6:125","nodeType":"YulIdentifier","src":"14452:6:125"}]},{"nativeSrc":"14476:47:125","nodeType":"YulVariableDeclaration","src":"14476:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14508:9:125","nodeType":"YulIdentifier","src":"14508:9:125"},{"kind":"number","nativeSrc":"14519:2:125","nodeType":"YulLiteral","src":"14519:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14504:3:125","nodeType":"YulIdentifier","src":"14504:3:125"},"nativeSrc":"14504:18:125","nodeType":"YulFunctionCall","src":"14504:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"14491:12:125","nodeType":"YulIdentifier","src":"14491:12:125"},"nativeSrc":"14491:32:125","nodeType":"YulFunctionCall","src":"14491:32:125"},"variables":[{"name":"value_1","nativeSrc":"14480:7:125","nodeType":"YulTypedName","src":"14480:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"14557:7:125","nodeType":"YulIdentifier","src":"14557:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"14532:24:125","nodeType":"YulIdentifier","src":"14532:24:125"},"nativeSrc":"14532:33:125","nodeType":"YulFunctionCall","src":"14532:33:125"},"nativeSrc":"14532:33:125","nodeType":"YulExpressionStatement","src":"14532:33:125"},{"nativeSrc":"14574:17:125","nodeType":"YulAssignment","src":"14574:17:125","value":{"name":"value_1","nativeSrc":"14584:7:125","nodeType":"YulIdentifier","src":"14584:7:125"},"variableNames":[{"name":"value1","nativeSrc":"14574:6:125","nodeType":"YulIdentifier","src":"14574:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"14209:388:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14254:9:125","nodeType":"YulTypedName","src":"14254:9:125","type":""},{"name":"dataEnd","nativeSrc":"14265:7:125","nodeType":"YulTypedName","src":"14265:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"14277:6:125","nodeType":"YulTypedName","src":"14277:6:125","type":""},{"name":"value1","nativeSrc":"14285:6:125","nodeType":"YulTypedName","src":"14285:6:125","type":""}],"src":"14209:388:125"},{"body":{"nativeSrc":"14727:102:125","nodeType":"YulBlock","src":"14727:102:125","statements":[{"nativeSrc":"14737:26:125","nodeType":"YulAssignment","src":"14737:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14749:9:125","nodeType":"YulIdentifier","src":"14749:9:125"},{"kind":"number","nativeSrc":"14760:2:125","nodeType":"YulLiteral","src":"14760:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14745:3:125","nodeType":"YulIdentifier","src":"14745:3:125"},"nativeSrc":"14745:18:125","nodeType":"YulFunctionCall","src":"14745:18:125"},"variableNames":[{"name":"tail","nativeSrc":"14737:4:125","nodeType":"YulIdentifier","src":"14737:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14779:9:125","nodeType":"YulIdentifier","src":"14779:9:125"},{"arguments":[{"name":"value0","nativeSrc":"14794:6:125","nodeType":"YulIdentifier","src":"14794:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"14810:3:125","nodeType":"YulLiteral","src":"14810:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"14815:1:125","nodeType":"YulLiteral","src":"14815:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"14806:3:125","nodeType":"YulIdentifier","src":"14806:3:125"},"nativeSrc":"14806:11:125","nodeType":"YulFunctionCall","src":"14806:11:125"},{"kind":"number","nativeSrc":"14819:1:125","nodeType":"YulLiteral","src":"14819:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"14802:3:125","nodeType":"YulIdentifier","src":"14802:3:125"},"nativeSrc":"14802:19:125","nodeType":"YulFunctionCall","src":"14802:19:125"}],"functionName":{"name":"and","nativeSrc":"14790:3:125","nodeType":"YulIdentifier","src":"14790:3:125"},"nativeSrc":"14790:32:125","nodeType":"YulFunctionCall","src":"14790:32:125"}],"functionName":{"name":"mstore","nativeSrc":"14772:6:125","nodeType":"YulIdentifier","src":"14772:6:125"},"nativeSrc":"14772:51:125","nodeType":"YulFunctionCall","src":"14772:51:125"},"nativeSrc":"14772:51:125","nodeType":"YulExpressionStatement","src":"14772:51:125"}]},"name":"abi_encode_tuple_t_contract$_IERC20Metadata_$24925__to_t_address__fromStack_reversed","nativeSrc":"14602:227:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14696:9:125","nodeType":"YulTypedName","src":"14696:9:125","type":""},{"name":"value0","nativeSrc":"14707:6:125","nodeType":"YulTypedName","src":"14707:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14718:4:125","nodeType":"YulTypedName","src":"14718:4:125","type":""}],"src":"14602:227:125"},{"body":{"nativeSrc":"14866:95:125","nodeType":"YulBlock","src":"14866:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14883:1:125","nodeType":"YulLiteral","src":"14883:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"14890:3:125","nodeType":"YulLiteral","src":"14890:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"14895:10:125","nodeType":"YulLiteral","src":"14895:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"14886:3:125","nodeType":"YulIdentifier","src":"14886:3:125"},"nativeSrc":"14886:20:125","nodeType":"YulFunctionCall","src":"14886:20:125"}],"functionName":{"name":"mstore","nativeSrc":"14876:6:125","nodeType":"YulIdentifier","src":"14876:6:125"},"nativeSrc":"14876:31:125","nodeType":"YulFunctionCall","src":"14876:31:125"},"nativeSrc":"14876:31:125","nodeType":"YulExpressionStatement","src":"14876:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14923:1:125","nodeType":"YulLiteral","src":"14923:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"14926:4:125","nodeType":"YulLiteral","src":"14926:4:125","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"14916:6:125","nodeType":"YulIdentifier","src":"14916:6:125"},"nativeSrc":"14916:15:125","nodeType":"YulFunctionCall","src":"14916:15:125"},"nativeSrc":"14916:15:125","nodeType":"YulExpressionStatement","src":"14916:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14947:1:125","nodeType":"YulLiteral","src":"14947:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"14950:4:125","nodeType":"YulLiteral","src":"14950:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"14940:6:125","nodeType":"YulIdentifier","src":"14940:6:125"},"nativeSrc":"14940:15:125","nodeType":"YulFunctionCall","src":"14940:15:125"},"nativeSrc":"14940:15:125","nodeType":"YulExpressionStatement","src":"14940:15:125"}]},"name":"panic_error_0x11","nativeSrc":"14834:127:125","nodeType":"YulFunctionDefinition","src":"14834:127:125"},{"body":{"nativeSrc":"15015:79:125","nodeType":"YulBlock","src":"15015:79:125","statements":[{"nativeSrc":"15025:17:125","nodeType":"YulAssignment","src":"15025:17:125","value":{"arguments":[{"name":"x","nativeSrc":"15037:1:125","nodeType":"YulIdentifier","src":"15037:1:125"},{"name":"y","nativeSrc":"15040:1:125","nodeType":"YulIdentifier","src":"15040:1:125"}],"functionName":{"name":"sub","nativeSrc":"15033:3:125","nodeType":"YulIdentifier","src":"15033:3:125"},"nativeSrc":"15033:9:125","nodeType":"YulFunctionCall","src":"15033:9:125"},"variableNames":[{"name":"diff","nativeSrc":"15025:4:125","nodeType":"YulIdentifier","src":"15025:4:125"}]},{"body":{"nativeSrc":"15066:22:125","nodeType":"YulBlock","src":"15066:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"15068:16:125","nodeType":"YulIdentifier","src":"15068:16:125"},"nativeSrc":"15068:18:125","nodeType":"YulFunctionCall","src":"15068:18:125"},"nativeSrc":"15068:18:125","nodeType":"YulExpressionStatement","src":"15068:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"15057:4:125","nodeType":"YulIdentifier","src":"15057:4:125"},{"name":"x","nativeSrc":"15063:1:125","nodeType":"YulIdentifier","src":"15063:1:125"}],"functionName":{"name":"gt","nativeSrc":"15054:2:125","nodeType":"YulIdentifier","src":"15054:2:125"},"nativeSrc":"15054:11:125","nodeType":"YulFunctionCall","src":"15054:11:125"},"nativeSrc":"15051:37:125","nodeType":"YulIf","src":"15051:37:125"}]},"name":"checked_sub_t_uint256","nativeSrc":"14966:128:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"14997:1:125","nodeType":"YulTypedName","src":"14997:1:125","type":""},{"name":"y","nativeSrc":"15000:1:125","nodeType":"YulTypedName","src":"15000:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"15006:4:125","nodeType":"YulTypedName","src":"15006:4:125","type":""}],"src":"14966:128:125"},{"body":{"nativeSrc":"15154:325:125","nodeType":"YulBlock","src":"15154:325:125","statements":[{"nativeSrc":"15164:22:125","nodeType":"YulAssignment","src":"15164:22:125","value":{"arguments":[{"kind":"number","nativeSrc":"15178:1:125","nodeType":"YulLiteral","src":"15178:1:125","type":"","value":"1"},{"name":"data","nativeSrc":"15181:4:125","nodeType":"YulIdentifier","src":"15181:4:125"}],"functionName":{"name":"shr","nativeSrc":"15174:3:125","nodeType":"YulIdentifier","src":"15174:3:125"},"nativeSrc":"15174:12:125","nodeType":"YulFunctionCall","src":"15174:12:125"},"variableNames":[{"name":"length","nativeSrc":"15164:6:125","nodeType":"YulIdentifier","src":"15164:6:125"}]},{"nativeSrc":"15195:38:125","nodeType":"YulVariableDeclaration","src":"15195:38:125","value":{"arguments":[{"name":"data","nativeSrc":"15225:4:125","nodeType":"YulIdentifier","src":"15225:4:125"},{"kind":"number","nativeSrc":"15231:1:125","nodeType":"YulLiteral","src":"15231:1:125","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"15221:3:125","nodeType":"YulIdentifier","src":"15221:3:125"},"nativeSrc":"15221:12:125","nodeType":"YulFunctionCall","src":"15221:12:125"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"15199:18:125","nodeType":"YulTypedName","src":"15199:18:125","type":""}]},{"body":{"nativeSrc":"15272:31:125","nodeType":"YulBlock","src":"15272:31:125","statements":[{"nativeSrc":"15274:27:125","nodeType":"YulAssignment","src":"15274:27:125","value":{"arguments":[{"name":"length","nativeSrc":"15288:6:125","nodeType":"YulIdentifier","src":"15288:6:125"},{"kind":"number","nativeSrc":"15296:4:125","nodeType":"YulLiteral","src":"15296:4:125","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"15284:3:125","nodeType":"YulIdentifier","src":"15284:3:125"},"nativeSrc":"15284:17:125","nodeType":"YulFunctionCall","src":"15284:17:125"},"variableNames":[{"name":"length","nativeSrc":"15274:6:125","nodeType":"YulIdentifier","src":"15274:6:125"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"15252:18:125","nodeType":"YulIdentifier","src":"15252:18:125"}],"functionName":{"name":"iszero","nativeSrc":"15245:6:125","nodeType":"YulIdentifier","src":"15245:6:125"},"nativeSrc":"15245:26:125","nodeType":"YulFunctionCall","src":"15245:26:125"},"nativeSrc":"15242:61:125","nodeType":"YulIf","src":"15242:61:125"},{"body":{"nativeSrc":"15362:111:125","nodeType":"YulBlock","src":"15362:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15383:1:125","nodeType":"YulLiteral","src":"15383:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"15390:3:125","nodeType":"YulLiteral","src":"15390:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"15395:10:125","nodeType":"YulLiteral","src":"15395:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"15386:3:125","nodeType":"YulIdentifier","src":"15386:3:125"},"nativeSrc":"15386:20:125","nodeType":"YulFunctionCall","src":"15386:20:125"}],"functionName":{"name":"mstore","nativeSrc":"15376:6:125","nodeType":"YulIdentifier","src":"15376:6:125"},"nativeSrc":"15376:31:125","nodeType":"YulFunctionCall","src":"15376:31:125"},"nativeSrc":"15376:31:125","nodeType":"YulExpressionStatement","src":"15376:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"15427:1:125","nodeType":"YulLiteral","src":"15427:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"15430:4:125","nodeType":"YulLiteral","src":"15430:4:125","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"15420:6:125","nodeType":"YulIdentifier","src":"15420:6:125"},"nativeSrc":"15420:15:125","nodeType":"YulFunctionCall","src":"15420:15:125"},"nativeSrc":"15420:15:125","nodeType":"YulExpressionStatement","src":"15420:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"15455:1:125","nodeType":"YulLiteral","src":"15455:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"15458:4:125","nodeType":"YulLiteral","src":"15458:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"15448:6:125","nodeType":"YulIdentifier","src":"15448:6:125"},"nativeSrc":"15448:15:125","nodeType":"YulFunctionCall","src":"15448:15:125"},"nativeSrc":"15448:15:125","nodeType":"YulExpressionStatement","src":"15448:15:125"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"15318:18:125","nodeType":"YulIdentifier","src":"15318:18:125"},{"arguments":[{"name":"length","nativeSrc":"15341:6:125","nodeType":"YulIdentifier","src":"15341:6:125"},{"kind":"number","nativeSrc":"15349:2:125","nodeType":"YulLiteral","src":"15349:2:125","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"15338:2:125","nodeType":"YulIdentifier","src":"15338:2:125"},"nativeSrc":"15338:14:125","nodeType":"YulFunctionCall","src":"15338:14:125"}],"functionName":{"name":"eq","nativeSrc":"15315:2:125","nodeType":"YulIdentifier","src":"15315:2:125"},"nativeSrc":"15315:38:125","nodeType":"YulFunctionCall","src":"15315:38:125"},"nativeSrc":"15312:161:125","nodeType":"YulIf","src":"15312:161:125"}]},"name":"extract_byte_array_length","nativeSrc":"15099:380:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"15134:4:125","nodeType":"YulTypedName","src":"15134:4:125","type":""}],"returnVariables":[{"name":"length","nativeSrc":"15143:6:125","nodeType":"YulTypedName","src":"15143:6:125","type":""}],"src":"15099:380:125"},{"body":{"nativeSrc":"15565:170:125","nodeType":"YulBlock","src":"15565:170:125","statements":[{"body":{"nativeSrc":"15611:16:125","nodeType":"YulBlock","src":"15611:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15620:1:125","nodeType":"YulLiteral","src":"15620:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"15623:1:125","nodeType":"YulLiteral","src":"15623:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15613:6:125","nodeType":"YulIdentifier","src":"15613:6:125"},"nativeSrc":"15613:12:125","nodeType":"YulFunctionCall","src":"15613:12:125"},"nativeSrc":"15613:12:125","nodeType":"YulExpressionStatement","src":"15613:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15586:7:125","nodeType":"YulIdentifier","src":"15586:7:125"},{"name":"headStart","nativeSrc":"15595:9:125","nodeType":"YulIdentifier","src":"15595:9:125"}],"functionName":{"name":"sub","nativeSrc":"15582:3:125","nodeType":"YulIdentifier","src":"15582:3:125"},"nativeSrc":"15582:23:125","nodeType":"YulFunctionCall","src":"15582:23:125"},{"kind":"number","nativeSrc":"15607:2:125","nodeType":"YulLiteral","src":"15607:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"15578:3:125","nodeType":"YulIdentifier","src":"15578:3:125"},"nativeSrc":"15578:32:125","nodeType":"YulFunctionCall","src":"15578:32:125"},"nativeSrc":"15575:52:125","nodeType":"YulIf","src":"15575:52:125"},{"nativeSrc":"15636:29:125","nodeType":"YulVariableDeclaration","src":"15636:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"15655:9:125","nodeType":"YulIdentifier","src":"15655:9:125"}],"functionName":{"name":"mload","nativeSrc":"15649:5:125","nodeType":"YulIdentifier","src":"15649:5:125"},"nativeSrc":"15649:16:125","nodeType":"YulFunctionCall","src":"15649:16:125"},"variables":[{"name":"value","nativeSrc":"15640:5:125","nodeType":"YulTypedName","src":"15640:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"15699:5:125","nodeType":"YulIdentifier","src":"15699:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"15674:24:125","nodeType":"YulIdentifier","src":"15674:24:125"},"nativeSrc":"15674:31:125","nodeType":"YulFunctionCall","src":"15674:31:125"},"nativeSrc":"15674:31:125","nodeType":"YulExpressionStatement","src":"15674:31:125"},{"nativeSrc":"15714:15:125","nodeType":"YulAssignment","src":"15714:15:125","value":{"name":"value","nativeSrc":"15724:5:125","nodeType":"YulIdentifier","src":"15724:5:125"},"variableNames":[{"name":"value0","nativeSrc":"15714:6:125","nodeType":"YulIdentifier","src":"15714:6:125"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"15484:251:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15531:9:125","nodeType":"YulTypedName","src":"15531:9:125","type":""},{"name":"dataEnd","nativeSrc":"15542:7:125","nodeType":"YulTypedName","src":"15542:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15554:6:125","nodeType":"YulTypedName","src":"15554:6:125","type":""}],"src":"15484:251:125"},{"body":{"nativeSrc":"15821:103:125","nodeType":"YulBlock","src":"15821:103:125","statements":[{"body":{"nativeSrc":"15867:16:125","nodeType":"YulBlock","src":"15867:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15876:1:125","nodeType":"YulLiteral","src":"15876:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"15879:1:125","nodeType":"YulLiteral","src":"15879:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15869:6:125","nodeType":"YulIdentifier","src":"15869:6:125"},"nativeSrc":"15869:12:125","nodeType":"YulFunctionCall","src":"15869:12:125"},"nativeSrc":"15869:12:125","nodeType":"YulExpressionStatement","src":"15869:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15842:7:125","nodeType":"YulIdentifier","src":"15842:7:125"},{"name":"headStart","nativeSrc":"15851:9:125","nodeType":"YulIdentifier","src":"15851:9:125"}],"functionName":{"name":"sub","nativeSrc":"15838:3:125","nodeType":"YulIdentifier","src":"15838:3:125"},"nativeSrc":"15838:23:125","nodeType":"YulFunctionCall","src":"15838:23:125"},{"kind":"number","nativeSrc":"15863:2:125","nodeType":"YulLiteral","src":"15863:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"15834:3:125","nodeType":"YulIdentifier","src":"15834:3:125"},"nativeSrc":"15834:32:125","nodeType":"YulFunctionCall","src":"15834:32:125"},"nativeSrc":"15831:52:125","nodeType":"YulIf","src":"15831:52:125"},{"nativeSrc":"15892:26:125","nodeType":"YulAssignment","src":"15892:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"15908:9:125","nodeType":"YulIdentifier","src":"15908:9:125"}],"functionName":{"name":"mload","nativeSrc":"15902:5:125","nodeType":"YulIdentifier","src":"15902:5:125"},"nativeSrc":"15902:16:125","nodeType":"YulFunctionCall","src":"15902:16:125"},"variableNames":[{"name":"value0","nativeSrc":"15892:6:125","nodeType":"YulIdentifier","src":"15892:6:125"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"15740:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15787:9:125","nodeType":"YulTypedName","src":"15787:9:125","type":""},{"name":"dataEnd","nativeSrc":"15798:7:125","nodeType":"YulTypedName","src":"15798:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15810:6:125","nodeType":"YulTypedName","src":"15810:6:125","type":""}],"src":"15740:184:125"},{"body":{"nativeSrc":"16086:214:125","nodeType":"YulBlock","src":"16086:214:125","statements":[{"nativeSrc":"16096:26:125","nodeType":"YulAssignment","src":"16096:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"16108:9:125","nodeType":"YulIdentifier","src":"16108:9:125"},{"kind":"number","nativeSrc":"16119:2:125","nodeType":"YulLiteral","src":"16119:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16104:3:125","nodeType":"YulIdentifier","src":"16104:3:125"},"nativeSrc":"16104:18:125","nodeType":"YulFunctionCall","src":"16104:18:125"},"variableNames":[{"name":"tail","nativeSrc":"16096:4:125","nodeType":"YulIdentifier","src":"16096:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16138:9:125","nodeType":"YulIdentifier","src":"16138:9:125"},{"name":"value0","nativeSrc":"16149:6:125","nodeType":"YulIdentifier","src":"16149:6:125"}],"functionName":{"name":"mstore","nativeSrc":"16131:6:125","nodeType":"YulIdentifier","src":"16131:6:125"},"nativeSrc":"16131:25:125","nodeType":"YulFunctionCall","src":"16131:25:125"},"nativeSrc":"16131:25:125","nodeType":"YulExpressionStatement","src":"16131:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16176:9:125","nodeType":"YulIdentifier","src":"16176:9:125"},{"kind":"number","nativeSrc":"16187:2:125","nodeType":"YulLiteral","src":"16187:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16172:3:125","nodeType":"YulIdentifier","src":"16172:3:125"},"nativeSrc":"16172:18:125","nodeType":"YulFunctionCall","src":"16172:18:125"},{"arguments":[{"name":"value1","nativeSrc":"16196:6:125","nodeType":"YulIdentifier","src":"16196:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16212:3:125","nodeType":"YulLiteral","src":"16212:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"16217:1:125","nodeType":"YulLiteral","src":"16217:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16208:3:125","nodeType":"YulIdentifier","src":"16208:3:125"},"nativeSrc":"16208:11:125","nodeType":"YulFunctionCall","src":"16208:11:125"},{"kind":"number","nativeSrc":"16221:1:125","nodeType":"YulLiteral","src":"16221:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16204:3:125","nodeType":"YulIdentifier","src":"16204:3:125"},"nativeSrc":"16204:19:125","nodeType":"YulFunctionCall","src":"16204:19:125"}],"functionName":{"name":"and","nativeSrc":"16192:3:125","nodeType":"YulIdentifier","src":"16192:3:125"},"nativeSrc":"16192:32:125","nodeType":"YulFunctionCall","src":"16192:32:125"}],"functionName":{"name":"mstore","nativeSrc":"16165:6:125","nodeType":"YulIdentifier","src":"16165:6:125"},"nativeSrc":"16165:60:125","nodeType":"YulFunctionCall","src":"16165:60:125"},"nativeSrc":"16165:60:125","nodeType":"YulExpressionStatement","src":"16165:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16245:9:125","nodeType":"YulIdentifier","src":"16245:9:125"},{"kind":"number","nativeSrc":"16256:2:125","nodeType":"YulLiteral","src":"16256:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16241:3:125","nodeType":"YulIdentifier","src":"16241:3:125"},"nativeSrc":"16241:18:125","nodeType":"YulFunctionCall","src":"16241:18:125"},{"arguments":[{"name":"value2","nativeSrc":"16265:6:125","nodeType":"YulIdentifier","src":"16265:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16281:3:125","nodeType":"YulLiteral","src":"16281:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"16286:1:125","nodeType":"YulLiteral","src":"16286:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16277:3:125","nodeType":"YulIdentifier","src":"16277:3:125"},"nativeSrc":"16277:11:125","nodeType":"YulFunctionCall","src":"16277:11:125"},{"kind":"number","nativeSrc":"16290:1:125","nodeType":"YulLiteral","src":"16290:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16273:3:125","nodeType":"YulIdentifier","src":"16273:3:125"},"nativeSrc":"16273:19:125","nodeType":"YulFunctionCall","src":"16273:19:125"}],"functionName":{"name":"and","nativeSrc":"16261:3:125","nodeType":"YulIdentifier","src":"16261:3:125"},"nativeSrc":"16261:32:125","nodeType":"YulFunctionCall","src":"16261:32:125"}],"functionName":{"name":"mstore","nativeSrc":"16234:6:125","nodeType":"YulIdentifier","src":"16234:6:125"},"nativeSrc":"16234:60:125","nodeType":"YulFunctionCall","src":"16234:60:125"},"nativeSrc":"16234:60:125","nodeType":"YulExpressionStatement","src":"16234:60:125"}]},"name":"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed","nativeSrc":"15929:371:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16039:9:125","nodeType":"YulTypedName","src":"16039:9:125","type":""},{"name":"value2","nativeSrc":"16050:6:125","nodeType":"YulTypedName","src":"16050:6:125","type":""},{"name":"value1","nativeSrc":"16058:6:125","nodeType":"YulTypedName","src":"16058:6:125","type":""},{"name":"value0","nativeSrc":"16066:6:125","nodeType":"YulTypedName","src":"16066:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16077:4:125","nodeType":"YulTypedName","src":"16077:4:125","type":""}],"src":"15929:371:125"},{"body":{"nativeSrc":"16353:152:125","nodeType":"YulBlock","src":"16353:152:125","statements":[{"nativeSrc":"16363:17:125","nodeType":"YulAssignment","src":"16363:17:125","value":{"arguments":[{"name":"x","nativeSrc":"16375:1:125","nodeType":"YulIdentifier","src":"16375:1:125"},{"name":"y","nativeSrc":"16378:1:125","nodeType":"YulIdentifier","src":"16378:1:125"}],"functionName":{"name":"sub","nativeSrc":"16371:3:125","nodeType":"YulIdentifier","src":"16371:3:125"},"nativeSrc":"16371:9:125","nodeType":"YulFunctionCall","src":"16371:9:125"},"variableNames":[{"name":"diff","nativeSrc":"16363:4:125","nodeType":"YulIdentifier","src":"16363:4:125"}]},{"nativeSrc":"16389:19:125","nodeType":"YulVariableDeclaration","src":"16389:19:125","value":{"arguments":[{"name":"y","nativeSrc":"16403:1:125","nodeType":"YulIdentifier","src":"16403:1:125"},{"kind":"number","nativeSrc":"16406:1:125","nodeType":"YulLiteral","src":"16406:1:125","type":"","value":"0"}],"functionName":{"name":"slt","nativeSrc":"16399:3:125","nodeType":"YulIdentifier","src":"16399:3:125"},"nativeSrc":"16399:9:125","nodeType":"YulFunctionCall","src":"16399:9:125"},"variables":[{"name":"_1","nativeSrc":"16393:2:125","nodeType":"YulTypedName","src":"16393:2:125","type":""}]},{"body":{"nativeSrc":"16477:22:125","nodeType":"YulBlock","src":"16477:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"16479:16:125","nodeType":"YulIdentifier","src":"16479:16:125"},"nativeSrc":"16479:18:125","nodeType":"YulFunctionCall","src":"16479:18:125"},"nativeSrc":"16479:18:125","nodeType":"YulExpressionStatement","src":"16479:18:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"16434:2:125","nodeType":"YulIdentifier","src":"16434:2:125"}],"functionName":{"name":"iszero","nativeSrc":"16427:6:125","nodeType":"YulIdentifier","src":"16427:6:125"},"nativeSrc":"16427:10:125","nodeType":"YulFunctionCall","src":"16427:10:125"},{"arguments":[{"name":"diff","nativeSrc":"16443:4:125","nodeType":"YulIdentifier","src":"16443:4:125"},{"name":"x","nativeSrc":"16449:1:125","nodeType":"YulIdentifier","src":"16449:1:125"}],"functionName":{"name":"sgt","nativeSrc":"16439:3:125","nodeType":"YulIdentifier","src":"16439:3:125"},"nativeSrc":"16439:12:125","nodeType":"YulFunctionCall","src":"16439:12:125"}],"functionName":{"name":"and","nativeSrc":"16423:3:125","nodeType":"YulIdentifier","src":"16423:3:125"},"nativeSrc":"16423:29:125","nodeType":"YulFunctionCall","src":"16423:29:125"},{"arguments":[{"name":"_1","nativeSrc":"16458:2:125","nodeType":"YulIdentifier","src":"16458:2:125"},{"arguments":[{"name":"diff","nativeSrc":"16466:4:125","nodeType":"YulIdentifier","src":"16466:4:125"},{"name":"x","nativeSrc":"16472:1:125","nodeType":"YulIdentifier","src":"16472:1:125"}],"functionName":{"name":"slt","nativeSrc":"16462:3:125","nodeType":"YulIdentifier","src":"16462:3:125"},"nativeSrc":"16462:12:125","nodeType":"YulFunctionCall","src":"16462:12:125"}],"functionName":{"name":"and","nativeSrc":"16454:3:125","nodeType":"YulIdentifier","src":"16454:3:125"},"nativeSrc":"16454:21:125","nodeType":"YulFunctionCall","src":"16454:21:125"}],"functionName":{"name":"or","nativeSrc":"16420:2:125","nodeType":"YulIdentifier","src":"16420:2:125"},"nativeSrc":"16420:56:125","nodeType":"YulFunctionCall","src":"16420:56:125"},"nativeSrc":"16417:82:125","nodeType":"YulIf","src":"16417:82:125"}]},"name":"checked_sub_t_int256","nativeSrc":"16305:200:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"16335:1:125","nodeType":"YulTypedName","src":"16335:1:125","type":""},{"name":"y","nativeSrc":"16338:1:125","nodeType":"YulTypedName","src":"16338:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"16344:4:125","nodeType":"YulTypedName","src":"16344:4:125","type":""}],"src":"16305:200:125"},{"body":{"nativeSrc":"16682:214:125","nodeType":"YulBlock","src":"16682:214:125","statements":[{"nativeSrc":"16692:26:125","nodeType":"YulAssignment","src":"16692:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"16704:9:125","nodeType":"YulIdentifier","src":"16704:9:125"},{"kind":"number","nativeSrc":"16715:2:125","nodeType":"YulLiteral","src":"16715:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16700:3:125","nodeType":"YulIdentifier","src":"16700:3:125"},"nativeSrc":"16700:18:125","nodeType":"YulFunctionCall","src":"16700:18:125"},"variableNames":[{"name":"tail","nativeSrc":"16692:4:125","nodeType":"YulIdentifier","src":"16692:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16734:9:125","nodeType":"YulIdentifier","src":"16734:9:125"},{"arguments":[{"name":"value0","nativeSrc":"16749:6:125","nodeType":"YulIdentifier","src":"16749:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16765:3:125","nodeType":"YulLiteral","src":"16765:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"16770:1:125","nodeType":"YulLiteral","src":"16770:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16761:3:125","nodeType":"YulIdentifier","src":"16761:3:125"},"nativeSrc":"16761:11:125","nodeType":"YulFunctionCall","src":"16761:11:125"},{"kind":"number","nativeSrc":"16774:1:125","nodeType":"YulLiteral","src":"16774:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16757:3:125","nodeType":"YulIdentifier","src":"16757:3:125"},"nativeSrc":"16757:19:125","nodeType":"YulFunctionCall","src":"16757:19:125"}],"functionName":{"name":"and","nativeSrc":"16745:3:125","nodeType":"YulIdentifier","src":"16745:3:125"},"nativeSrc":"16745:32:125","nodeType":"YulFunctionCall","src":"16745:32:125"}],"functionName":{"name":"mstore","nativeSrc":"16727:6:125","nodeType":"YulIdentifier","src":"16727:6:125"},"nativeSrc":"16727:51:125","nodeType":"YulFunctionCall","src":"16727:51:125"},"nativeSrc":"16727:51:125","nodeType":"YulExpressionStatement","src":"16727:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16798:9:125","nodeType":"YulIdentifier","src":"16798:9:125"},{"kind":"number","nativeSrc":"16809:2:125","nodeType":"YulLiteral","src":"16809:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16794:3:125","nodeType":"YulIdentifier","src":"16794:3:125"},"nativeSrc":"16794:18:125","nodeType":"YulFunctionCall","src":"16794:18:125"},{"arguments":[{"name":"value1","nativeSrc":"16818:6:125","nodeType":"YulIdentifier","src":"16818:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16834:3:125","nodeType":"YulLiteral","src":"16834:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"16839:1:125","nodeType":"YulLiteral","src":"16839:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16830:3:125","nodeType":"YulIdentifier","src":"16830:3:125"},"nativeSrc":"16830:11:125","nodeType":"YulFunctionCall","src":"16830:11:125"},{"kind":"number","nativeSrc":"16843:1:125","nodeType":"YulLiteral","src":"16843:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16826:3:125","nodeType":"YulIdentifier","src":"16826:3:125"},"nativeSrc":"16826:19:125","nodeType":"YulFunctionCall","src":"16826:19:125"}],"functionName":{"name":"and","nativeSrc":"16814:3:125","nodeType":"YulIdentifier","src":"16814:3:125"},"nativeSrc":"16814:32:125","nodeType":"YulFunctionCall","src":"16814:32:125"}],"functionName":{"name":"mstore","nativeSrc":"16787:6:125","nodeType":"YulIdentifier","src":"16787:6:125"},"nativeSrc":"16787:60:125","nodeType":"YulFunctionCall","src":"16787:60:125"},"nativeSrc":"16787:60:125","nodeType":"YulExpressionStatement","src":"16787:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16867:9:125","nodeType":"YulIdentifier","src":"16867:9:125"},{"kind":"number","nativeSrc":"16878:2:125","nodeType":"YulLiteral","src":"16878:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16863:3:125","nodeType":"YulIdentifier","src":"16863:3:125"},"nativeSrc":"16863:18:125","nodeType":"YulFunctionCall","src":"16863:18:125"},{"name":"value2","nativeSrc":"16883:6:125","nodeType":"YulIdentifier","src":"16883:6:125"}],"functionName":{"name":"mstore","nativeSrc":"16856:6:125","nodeType":"YulIdentifier","src":"16856:6:125"},"nativeSrc":"16856:34:125","nodeType":"YulFunctionCall","src":"16856:34:125"},"nativeSrc":"16856:34:125","nodeType":"YulExpressionStatement","src":"16856:34:125"}]},"name":"abi_encode_tuple_t_contract$_EToken_$7681_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nativeSrc":"16510:386:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16635:9:125","nodeType":"YulTypedName","src":"16635:9:125","type":""},{"name":"value2","nativeSrc":"16646:6:125","nodeType":"YulTypedName","src":"16646:6:125","type":""},{"name":"value1","nativeSrc":"16654:6:125","nodeType":"YulTypedName","src":"16654:6:125","type":""},{"name":"value0","nativeSrc":"16662:6:125","nodeType":"YulTypedName","src":"16662:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16673:4:125","nodeType":"YulTypedName","src":"16673:4:125","type":""}],"src":"16510:386:125"},{"body":{"nativeSrc":"16981:202:125","nodeType":"YulBlock","src":"16981:202:125","statements":[{"body":{"nativeSrc":"17027:16:125","nodeType":"YulBlock","src":"17027:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17036:1:125","nodeType":"YulLiteral","src":"17036:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"17039:1:125","nodeType":"YulLiteral","src":"17039:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17029:6:125","nodeType":"YulIdentifier","src":"17029:6:125"},"nativeSrc":"17029:12:125","nodeType":"YulFunctionCall","src":"17029:12:125"},"nativeSrc":"17029:12:125","nodeType":"YulExpressionStatement","src":"17029:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17002:7:125","nodeType":"YulIdentifier","src":"17002:7:125"},{"name":"headStart","nativeSrc":"17011:9:125","nodeType":"YulIdentifier","src":"17011:9:125"}],"functionName":{"name":"sub","nativeSrc":"16998:3:125","nodeType":"YulIdentifier","src":"16998:3:125"},"nativeSrc":"16998:23:125","nodeType":"YulFunctionCall","src":"16998:23:125"},{"kind":"number","nativeSrc":"17023:2:125","nodeType":"YulLiteral","src":"17023:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"16994:3:125","nodeType":"YulIdentifier","src":"16994:3:125"},"nativeSrc":"16994:32:125","nodeType":"YulFunctionCall","src":"16994:32:125"},"nativeSrc":"16991:52:125","nodeType":"YulIf","src":"16991:52:125"},{"nativeSrc":"17052:29:125","nodeType":"YulVariableDeclaration","src":"17052:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17071:9:125","nodeType":"YulIdentifier","src":"17071:9:125"}],"functionName":{"name":"mload","nativeSrc":"17065:5:125","nodeType":"YulIdentifier","src":"17065:5:125"},"nativeSrc":"17065:16:125","nodeType":"YulFunctionCall","src":"17065:16:125"},"variables":[{"name":"value","nativeSrc":"17056:5:125","nodeType":"YulTypedName","src":"17056:5:125","type":""}]},{"body":{"nativeSrc":"17137:16:125","nodeType":"YulBlock","src":"17137:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17146:1:125","nodeType":"YulLiteral","src":"17146:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"17149:1:125","nodeType":"YulLiteral","src":"17149:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17139:6:125","nodeType":"YulIdentifier","src":"17139:6:125"},"nativeSrc":"17139:12:125","nodeType":"YulFunctionCall","src":"17139:12:125"},"nativeSrc":"17139:12:125","nodeType":"YulExpressionStatement","src":"17139:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"17103:5:125","nodeType":"YulIdentifier","src":"17103:5:125"},{"arguments":[{"name":"value","nativeSrc":"17114:5:125","nodeType":"YulIdentifier","src":"17114:5:125"},{"kind":"number","nativeSrc":"17121:12:125","nodeType":"YulLiteral","src":"17121:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"17110:3:125","nodeType":"YulIdentifier","src":"17110:3:125"},"nativeSrc":"17110:24:125","nodeType":"YulFunctionCall","src":"17110:24:125"}],"functionName":{"name":"eq","nativeSrc":"17100:2:125","nodeType":"YulIdentifier","src":"17100:2:125"},"nativeSrc":"17100:35:125","nodeType":"YulFunctionCall","src":"17100:35:125"}],"functionName":{"name":"iszero","nativeSrc":"17093:6:125","nodeType":"YulIdentifier","src":"17093:6:125"},"nativeSrc":"17093:43:125","nodeType":"YulFunctionCall","src":"17093:43:125"},"nativeSrc":"17090:63:125","nodeType":"YulIf","src":"17090:63:125"},{"nativeSrc":"17162:15:125","nodeType":"YulAssignment","src":"17162:15:125","value":{"name":"value","nativeSrc":"17172:5:125","nodeType":"YulIdentifier","src":"17172:5:125"},"variableNames":[{"name":"value0","nativeSrc":"17162:6:125","nodeType":"YulIdentifier","src":"17162:6:125"}]}]},"name":"abi_decode_tuple_t_uint40_fromMemory","nativeSrc":"16901:282:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16947:9:125","nodeType":"YulTypedName","src":"16947:9:125","type":""},{"name":"dataEnd","nativeSrc":"16958:7:125","nodeType":"YulTypedName","src":"16958:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"16970:6:125","nodeType":"YulTypedName","src":"16970:6:125","type":""}],"src":"16901:282:125"},{"body":{"nativeSrc":"17306:102:125","nodeType":"YulBlock","src":"17306:102:125","statements":[{"nativeSrc":"17316:26:125","nodeType":"YulAssignment","src":"17316:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17328:9:125","nodeType":"YulIdentifier","src":"17328:9:125"},{"kind":"number","nativeSrc":"17339:2:125","nodeType":"YulLiteral","src":"17339:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17324:3:125","nodeType":"YulIdentifier","src":"17324:3:125"},"nativeSrc":"17324:18:125","nodeType":"YulFunctionCall","src":"17324:18:125"},"variableNames":[{"name":"tail","nativeSrc":"17316:4:125","nodeType":"YulIdentifier","src":"17316:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17358:9:125","nodeType":"YulIdentifier","src":"17358:9:125"},{"arguments":[{"name":"value0","nativeSrc":"17373:6:125","nodeType":"YulIdentifier","src":"17373:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17389:3:125","nodeType":"YulLiteral","src":"17389:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"17394:1:125","nodeType":"YulLiteral","src":"17394:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"17385:3:125","nodeType":"YulIdentifier","src":"17385:3:125"},"nativeSrc":"17385:11:125","nodeType":"YulFunctionCall","src":"17385:11:125"},{"kind":"number","nativeSrc":"17398:1:125","nodeType":"YulLiteral","src":"17398:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"17381:3:125","nodeType":"YulIdentifier","src":"17381:3:125"},"nativeSrc":"17381:19:125","nodeType":"YulFunctionCall","src":"17381:19:125"}],"functionName":{"name":"and","nativeSrc":"17369:3:125","nodeType":"YulIdentifier","src":"17369:3:125"},"nativeSrc":"17369:32:125","nodeType":"YulFunctionCall","src":"17369:32:125"}],"functionName":{"name":"mstore","nativeSrc":"17351:6:125","nodeType":"YulIdentifier","src":"17351:6:125"},"nativeSrc":"17351:51:125","nodeType":"YulFunctionCall","src":"17351:51:125"},"nativeSrc":"17351:51:125","nodeType":"YulExpressionStatement","src":"17351:51:125"}]},"name":"abi_encode_tuple_t_contract$_ICooler_$14162__to_t_address__fromStack_reversed","nativeSrc":"17188:220:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17275:9:125","nodeType":"YulTypedName","src":"17275:9:125","type":""},{"name":"value0","nativeSrc":"17286:6:125","nodeType":"YulTypedName","src":"17286:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17297:4:125","nodeType":"YulTypedName","src":"17297:4:125","type":""}],"src":"17188:220:125"},{"body":{"nativeSrc":"17491:167:125","nodeType":"YulBlock","src":"17491:167:125","statements":[{"body":{"nativeSrc":"17537:16:125","nodeType":"YulBlock","src":"17537:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17546:1:125","nodeType":"YulLiteral","src":"17546:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"17549:1:125","nodeType":"YulLiteral","src":"17549:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17539:6:125","nodeType":"YulIdentifier","src":"17539:6:125"},"nativeSrc":"17539:12:125","nodeType":"YulFunctionCall","src":"17539:12:125"},"nativeSrc":"17539:12:125","nodeType":"YulExpressionStatement","src":"17539:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17512:7:125","nodeType":"YulIdentifier","src":"17512:7:125"},{"name":"headStart","nativeSrc":"17521:9:125","nodeType":"YulIdentifier","src":"17521:9:125"}],"functionName":{"name":"sub","nativeSrc":"17508:3:125","nodeType":"YulIdentifier","src":"17508:3:125"},"nativeSrc":"17508:23:125","nodeType":"YulFunctionCall","src":"17508:23:125"},{"kind":"number","nativeSrc":"17533:2:125","nodeType":"YulLiteral","src":"17533:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"17504:3:125","nodeType":"YulIdentifier","src":"17504:3:125"},"nativeSrc":"17504:32:125","nodeType":"YulFunctionCall","src":"17504:32:125"},"nativeSrc":"17501:52:125","nodeType":"YulIf","src":"17501:52:125"},{"nativeSrc":"17562:29:125","nodeType":"YulVariableDeclaration","src":"17562:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17581:9:125","nodeType":"YulIdentifier","src":"17581:9:125"}],"functionName":{"name":"mload","nativeSrc":"17575:5:125","nodeType":"YulIdentifier","src":"17575:5:125"},"nativeSrc":"17575:16:125","nodeType":"YulFunctionCall","src":"17575:16:125"},"variables":[{"name":"value","nativeSrc":"17566:5:125","nodeType":"YulTypedName","src":"17566:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"17622:5:125","nodeType":"YulIdentifier","src":"17622:5:125"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"17600:21:125","nodeType":"YulIdentifier","src":"17600:21:125"},"nativeSrc":"17600:28:125","nodeType":"YulFunctionCall","src":"17600:28:125"},"nativeSrc":"17600:28:125","nodeType":"YulExpressionStatement","src":"17600:28:125"},{"nativeSrc":"17637:15:125","nodeType":"YulAssignment","src":"17637:15:125","value":{"name":"value","nativeSrc":"17647:5:125","nodeType":"YulIdentifier","src":"17647:5:125"},"variableNames":[{"name":"value0","nativeSrc":"17637:6:125","nodeType":"YulIdentifier","src":"17637:6:125"}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nativeSrc":"17413:245:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17457:9:125","nodeType":"YulTypedName","src":"17457:9:125","type":""},{"name":"dataEnd","nativeSrc":"17468:7:125","nodeType":"YulTypedName","src":"17468:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17480:6:125","nodeType":"YulTypedName","src":"17480:6:125","type":""}],"src":"17413:245:125"},{"body":{"nativeSrc":"17792:145:125","nodeType":"YulBlock","src":"17792:145:125","statements":[{"nativeSrc":"17802:26:125","nodeType":"YulAssignment","src":"17802:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17814:9:125","nodeType":"YulIdentifier","src":"17814:9:125"},{"kind":"number","nativeSrc":"17825:2:125","nodeType":"YulLiteral","src":"17825:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17810:3:125","nodeType":"YulIdentifier","src":"17810:3:125"},"nativeSrc":"17810:18:125","nodeType":"YulFunctionCall","src":"17810:18:125"},"variableNames":[{"name":"tail","nativeSrc":"17802:4:125","nodeType":"YulIdentifier","src":"17802:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17844:9:125","nodeType":"YulIdentifier","src":"17844:9:125"},{"arguments":[{"name":"value0","nativeSrc":"17859:6:125","nodeType":"YulIdentifier","src":"17859:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17875:3:125","nodeType":"YulLiteral","src":"17875:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"17880:1:125","nodeType":"YulLiteral","src":"17880:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"17871:3:125","nodeType":"YulIdentifier","src":"17871:3:125"},"nativeSrc":"17871:11:125","nodeType":"YulFunctionCall","src":"17871:11:125"},{"kind":"number","nativeSrc":"17884:1:125","nodeType":"YulLiteral","src":"17884:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"17867:3:125","nodeType":"YulIdentifier","src":"17867:3:125"},"nativeSrc":"17867:19:125","nodeType":"YulFunctionCall","src":"17867:19:125"}],"functionName":{"name":"and","nativeSrc":"17855:3:125","nodeType":"YulIdentifier","src":"17855:3:125"},"nativeSrc":"17855:32:125","nodeType":"YulFunctionCall","src":"17855:32:125"}],"functionName":{"name":"mstore","nativeSrc":"17837:6:125","nodeType":"YulIdentifier","src":"17837:6:125"},"nativeSrc":"17837:51:125","nodeType":"YulFunctionCall","src":"17837:51:125"},"nativeSrc":"17837:51:125","nodeType":"YulExpressionStatement","src":"17837:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17908:9:125","nodeType":"YulIdentifier","src":"17908:9:125"},{"kind":"number","nativeSrc":"17919:2:125","nodeType":"YulLiteral","src":"17919:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17904:3:125","nodeType":"YulIdentifier","src":"17904:3:125"},"nativeSrc":"17904:18:125","nodeType":"YulFunctionCall","src":"17904:18:125"},{"name":"value1","nativeSrc":"17924:6:125","nodeType":"YulIdentifier","src":"17924:6:125"}],"functionName":{"name":"mstore","nativeSrc":"17897:6:125","nodeType":"YulIdentifier","src":"17897:6:125"},"nativeSrc":"17897:34:125","nodeType":"YulFunctionCall","src":"17897:34:125"},"nativeSrc":"17897:34:125","nodeType":"YulExpressionStatement","src":"17897:34:125"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"17663:274:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17753:9:125","nodeType":"YulTypedName","src":"17753:9:125","type":""},{"name":"value1","nativeSrc":"17764:6:125","nodeType":"YulTypedName","src":"17764:6:125","type":""},{"name":"value0","nativeSrc":"17772:6:125","nodeType":"YulTypedName","src":"17772:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17783:4:125","nodeType":"YulTypedName","src":"17783:4:125","type":""}],"src":"17663:274:125"},{"body":{"nativeSrc":"18142:284:125","nodeType":"YulBlock","src":"18142:284:125","statements":[{"nativeSrc":"18152:27:125","nodeType":"YulAssignment","src":"18152:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18164:9:125","nodeType":"YulIdentifier","src":"18164:9:125"},{"kind":"number","nativeSrc":"18175:3:125","nodeType":"YulLiteral","src":"18175:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"18160:3:125","nodeType":"YulIdentifier","src":"18160:3:125"},"nativeSrc":"18160:19:125","nodeType":"YulFunctionCall","src":"18160:19:125"},"variableNames":[{"name":"tail","nativeSrc":"18152:4:125","nodeType":"YulIdentifier","src":"18152:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18195:9:125","nodeType":"YulIdentifier","src":"18195:9:125"},{"arguments":[{"name":"value0","nativeSrc":"18210:6:125","nodeType":"YulIdentifier","src":"18210:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18226:3:125","nodeType":"YulLiteral","src":"18226:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"18231:1:125","nodeType":"YulLiteral","src":"18231:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18222:3:125","nodeType":"YulIdentifier","src":"18222:3:125"},"nativeSrc":"18222:11:125","nodeType":"YulFunctionCall","src":"18222:11:125"},{"kind":"number","nativeSrc":"18235:1:125","nodeType":"YulLiteral","src":"18235:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18218:3:125","nodeType":"YulIdentifier","src":"18218:3:125"},"nativeSrc":"18218:19:125","nodeType":"YulFunctionCall","src":"18218:19:125"}],"functionName":{"name":"and","nativeSrc":"18206:3:125","nodeType":"YulIdentifier","src":"18206:3:125"},"nativeSrc":"18206:32:125","nodeType":"YulFunctionCall","src":"18206:32:125"}],"functionName":{"name":"mstore","nativeSrc":"18188:6:125","nodeType":"YulIdentifier","src":"18188:6:125"},"nativeSrc":"18188:51:125","nodeType":"YulFunctionCall","src":"18188:51:125"},"nativeSrc":"18188:51:125","nodeType":"YulExpressionStatement","src":"18188:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18259:9:125","nodeType":"YulIdentifier","src":"18259:9:125"},{"kind":"number","nativeSrc":"18270:2:125","nodeType":"YulLiteral","src":"18270:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18255:3:125","nodeType":"YulIdentifier","src":"18255:3:125"},"nativeSrc":"18255:18:125","nodeType":"YulFunctionCall","src":"18255:18:125"},{"arguments":[{"name":"value1","nativeSrc":"18279:6:125","nodeType":"YulIdentifier","src":"18279:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18295:3:125","nodeType":"YulLiteral","src":"18295:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"18300:1:125","nodeType":"YulLiteral","src":"18300:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18291:3:125","nodeType":"YulIdentifier","src":"18291:3:125"},"nativeSrc":"18291:11:125","nodeType":"YulFunctionCall","src":"18291:11:125"},{"kind":"number","nativeSrc":"18304:1:125","nodeType":"YulLiteral","src":"18304:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18287:3:125","nodeType":"YulIdentifier","src":"18287:3:125"},"nativeSrc":"18287:19:125","nodeType":"YulFunctionCall","src":"18287:19:125"}],"functionName":{"name":"and","nativeSrc":"18275:3:125","nodeType":"YulIdentifier","src":"18275:3:125"},"nativeSrc":"18275:32:125","nodeType":"YulFunctionCall","src":"18275:32:125"}],"functionName":{"name":"mstore","nativeSrc":"18248:6:125","nodeType":"YulIdentifier","src":"18248:6:125"},"nativeSrc":"18248:60:125","nodeType":"YulFunctionCall","src":"18248:60:125"},"nativeSrc":"18248:60:125","nodeType":"YulExpressionStatement","src":"18248:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18328:9:125","nodeType":"YulIdentifier","src":"18328:9:125"},{"kind":"number","nativeSrc":"18339:2:125","nodeType":"YulLiteral","src":"18339:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18324:3:125","nodeType":"YulIdentifier","src":"18324:3:125"},"nativeSrc":"18324:18:125","nodeType":"YulFunctionCall","src":"18324:18:125"},{"arguments":[{"name":"value2","nativeSrc":"18348:6:125","nodeType":"YulIdentifier","src":"18348:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18364:3:125","nodeType":"YulLiteral","src":"18364:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"18369:1:125","nodeType":"YulLiteral","src":"18369:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18360:3:125","nodeType":"YulIdentifier","src":"18360:3:125"},"nativeSrc":"18360:11:125","nodeType":"YulFunctionCall","src":"18360:11:125"},{"kind":"number","nativeSrc":"18373:1:125","nodeType":"YulLiteral","src":"18373:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18356:3:125","nodeType":"YulIdentifier","src":"18356:3:125"},"nativeSrc":"18356:19:125","nodeType":"YulFunctionCall","src":"18356:19:125"}],"functionName":{"name":"and","nativeSrc":"18344:3:125","nodeType":"YulIdentifier","src":"18344:3:125"},"nativeSrc":"18344:32:125","nodeType":"YulFunctionCall","src":"18344:32:125"}],"functionName":{"name":"mstore","nativeSrc":"18317:6:125","nodeType":"YulIdentifier","src":"18317:6:125"},"nativeSrc":"18317:60:125","nodeType":"YulFunctionCall","src":"18317:60:125"},"nativeSrc":"18317:60:125","nodeType":"YulExpressionStatement","src":"18317:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18397:9:125","nodeType":"YulIdentifier","src":"18397:9:125"},{"kind":"number","nativeSrc":"18408:2:125","nodeType":"YulLiteral","src":"18408:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18393:3:125","nodeType":"YulIdentifier","src":"18393:3:125"},"nativeSrc":"18393:18:125","nodeType":"YulFunctionCall","src":"18393:18:125"},{"name":"value3","nativeSrc":"18413:6:125","nodeType":"YulIdentifier","src":"18413:6:125"}],"functionName":{"name":"mstore","nativeSrc":"18386:6:125","nodeType":"YulIdentifier","src":"18386:6:125"},"nativeSrc":"18386:34:125","nodeType":"YulFunctionCall","src":"18386:34:125"},"nativeSrc":"18386:34:125","nodeType":"YulExpressionStatement","src":"18386:34:125"}]},"name":"abi_encode_tuple_t_contract$_EToken_$7681_t_address_t_address_t_uint256__to_t_address_t_address_t_address_t_uint256__fromStack_reversed","nativeSrc":"17942:484:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18087:9:125","nodeType":"YulTypedName","src":"18087:9:125","type":""},{"name":"value3","nativeSrc":"18098:6:125","nodeType":"YulTypedName","src":"18098:6:125","type":""},{"name":"value2","nativeSrc":"18106:6:125","nodeType":"YulTypedName","src":"18106:6:125","type":""},{"name":"value1","nativeSrc":"18114:6:125","nodeType":"YulTypedName","src":"18114:6:125","type":""},{"name":"value0","nativeSrc":"18122:6:125","nodeType":"YulTypedName","src":"18122:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18133:4:125","nodeType":"YulTypedName","src":"18133:4:125","type":""}],"src":"17942:484:125"},{"body":{"nativeSrc":"18536:170:125","nodeType":"YulBlock","src":"18536:170:125","statements":[{"body":{"nativeSrc":"18582:16:125","nodeType":"YulBlock","src":"18582:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18591:1:125","nodeType":"YulLiteral","src":"18591:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"18594:1:125","nodeType":"YulLiteral","src":"18594:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18584:6:125","nodeType":"YulIdentifier","src":"18584:6:125"},"nativeSrc":"18584:12:125","nodeType":"YulFunctionCall","src":"18584:12:125"},"nativeSrc":"18584:12:125","nodeType":"YulExpressionStatement","src":"18584:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18557:7:125","nodeType":"YulIdentifier","src":"18557:7:125"},{"name":"headStart","nativeSrc":"18566:9:125","nodeType":"YulIdentifier","src":"18566:9:125"}],"functionName":{"name":"sub","nativeSrc":"18553:3:125","nodeType":"YulIdentifier","src":"18553:3:125"},"nativeSrc":"18553:23:125","nodeType":"YulFunctionCall","src":"18553:23:125"},{"kind":"number","nativeSrc":"18578:2:125","nodeType":"YulLiteral","src":"18578:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"18549:3:125","nodeType":"YulIdentifier","src":"18549:3:125"},"nativeSrc":"18549:32:125","nodeType":"YulFunctionCall","src":"18549:32:125"},"nativeSrc":"18546:52:125","nodeType":"YulIf","src":"18546:52:125"},{"nativeSrc":"18607:29:125","nodeType":"YulVariableDeclaration","src":"18607:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18626:9:125","nodeType":"YulIdentifier","src":"18626:9:125"}],"functionName":{"name":"mload","nativeSrc":"18620:5:125","nodeType":"YulIdentifier","src":"18620:5:125"},"nativeSrc":"18620:16:125","nodeType":"YulFunctionCall","src":"18620:16:125"},"variables":[{"name":"value","nativeSrc":"18611:5:125","nodeType":"YulTypedName","src":"18611:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"18670:5:125","nodeType":"YulIdentifier","src":"18670:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"18645:24:125","nodeType":"YulIdentifier","src":"18645:24:125"},"nativeSrc":"18645:31:125","nodeType":"YulFunctionCall","src":"18645:31:125"},"nativeSrc":"18645:31:125","nodeType":"YulExpressionStatement","src":"18645:31:125"},{"nativeSrc":"18685:15:125","nodeType":"YulAssignment","src":"18685:15:125","value":{"name":"value","nativeSrc":"18695:5:125","nodeType":"YulIdentifier","src":"18695:5:125"},"variableNames":[{"name":"value0","nativeSrc":"18685:6:125","nodeType":"YulIdentifier","src":"18685:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory","nativeSrc":"18431:275:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18502:9:125","nodeType":"YulTypedName","src":"18502:9:125","type":""},{"name":"dataEnd","nativeSrc":"18513:7:125","nodeType":"YulTypedName","src":"18513:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18525:6:125","nodeType":"YulTypedName","src":"18525:6:125","type":""}],"src":"18431:275:125"},{"body":{"nativeSrc":"18790:168:125","nodeType":"YulBlock","src":"18790:168:125","statements":[{"body":{"nativeSrc":"18836:16:125","nodeType":"YulBlock","src":"18836:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18845:1:125","nodeType":"YulLiteral","src":"18845:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"18848:1:125","nodeType":"YulLiteral","src":"18848:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18838:6:125","nodeType":"YulIdentifier","src":"18838:6:125"},"nativeSrc":"18838:12:125","nodeType":"YulFunctionCall","src":"18838:12:125"},"nativeSrc":"18838:12:125","nodeType":"YulExpressionStatement","src":"18838:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18811:7:125","nodeType":"YulIdentifier","src":"18811:7:125"},{"name":"headStart","nativeSrc":"18820:9:125","nodeType":"YulIdentifier","src":"18820:9:125"}],"functionName":{"name":"sub","nativeSrc":"18807:3:125","nodeType":"YulIdentifier","src":"18807:3:125"},"nativeSrc":"18807:23:125","nodeType":"YulFunctionCall","src":"18807:23:125"},{"kind":"number","nativeSrc":"18832:2:125","nodeType":"YulLiteral","src":"18832:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"18803:3:125","nodeType":"YulIdentifier","src":"18803:3:125"},"nativeSrc":"18803:32:125","nodeType":"YulFunctionCall","src":"18803:32:125"},"nativeSrc":"18800:52:125","nodeType":"YulIf","src":"18800:52:125"},{"nativeSrc":"18861:29:125","nodeType":"YulVariableDeclaration","src":"18861:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18880:9:125","nodeType":"YulIdentifier","src":"18880:9:125"}],"functionName":{"name":"mload","nativeSrc":"18874:5:125","nodeType":"YulIdentifier","src":"18874:5:125"},"nativeSrc":"18874:16:125","nodeType":"YulFunctionCall","src":"18874:16:125"},"variables":[{"name":"value","nativeSrc":"18865:5:125","nodeType":"YulTypedName","src":"18865:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"18922:5:125","nodeType":"YulIdentifier","src":"18922:5:125"}],"functionName":{"name":"validator_revert_uint8","nativeSrc":"18899:22:125","nodeType":"YulIdentifier","src":"18899:22:125"},"nativeSrc":"18899:29:125","nodeType":"YulFunctionCall","src":"18899:29:125"},"nativeSrc":"18899:29:125","nodeType":"YulExpressionStatement","src":"18899:29:125"},{"nativeSrc":"18937:15:125","nodeType":"YulAssignment","src":"18937:15:125","value":{"name":"value","nativeSrc":"18947:5:125","nodeType":"YulIdentifier","src":"18947:5:125"},"variableNames":[{"name":"value0","nativeSrc":"18937:6:125","nodeType":"YulIdentifier","src":"18937:6:125"}]}]},"name":"abi_decode_tuple_t_uint8_fromMemory","nativeSrc":"18711:247:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18756:9:125","nodeType":"YulTypedName","src":"18756:9:125","type":""},{"name":"dataEnd","nativeSrc":"18767:7:125","nodeType":"YulTypedName","src":"18767:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18779:6:125","nodeType":"YulTypedName","src":"18779:6:125","type":""}],"src":"18711:247:125"},{"body":{"nativeSrc":"19071:101:125","nodeType":"YulBlock","src":"19071:101:125","statements":[{"nativeSrc":"19081:26:125","nodeType":"YulAssignment","src":"19081:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"19093:9:125","nodeType":"YulIdentifier","src":"19093:9:125"},{"kind":"number","nativeSrc":"19104:2:125","nodeType":"YulLiteral","src":"19104:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19089:3:125","nodeType":"YulIdentifier","src":"19089:3:125"},"nativeSrc":"19089:18:125","nodeType":"YulFunctionCall","src":"19089:18:125"},"variableNames":[{"name":"tail","nativeSrc":"19081:4:125","nodeType":"YulIdentifier","src":"19081:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19123:9:125","nodeType":"YulIdentifier","src":"19123:9:125"},{"arguments":[{"name":"value0","nativeSrc":"19138:6:125","nodeType":"YulIdentifier","src":"19138:6:125"},{"kind":"number","nativeSrc":"19146:18:125","nodeType":"YulLiteral","src":"19146:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19134:3:125","nodeType":"YulIdentifier","src":"19134:3:125"},"nativeSrc":"19134:31:125","nodeType":"YulFunctionCall","src":"19134:31:125"}],"functionName":{"name":"mstore","nativeSrc":"19116:6:125","nodeType":"YulIdentifier","src":"19116:6:125"},"nativeSrc":"19116:50:125","nodeType":"YulFunctionCall","src":"19116:50:125"},"nativeSrc":"19116:50:125","nodeType":"YulExpressionStatement","src":"19116:50:125"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"18963:209:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19040:9:125","nodeType":"YulTypedName","src":"19040:9:125","type":""},{"name":"value0","nativeSrc":"19051:6:125","nodeType":"YulTypedName","src":"19051:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19062:4:125","nodeType":"YulTypedName","src":"19062:4:125","type":""}],"src":"18963:209:125"},{"body":{"nativeSrc":"19351:171:125","nodeType":"YulBlock","src":"19351:171:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19368:9:125","nodeType":"YulIdentifier","src":"19368:9:125"},{"kind":"number","nativeSrc":"19379:2:125","nodeType":"YulLiteral","src":"19379:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"19361:6:125","nodeType":"YulIdentifier","src":"19361:6:125"},"nativeSrc":"19361:21:125","nodeType":"YulFunctionCall","src":"19361:21:125"},"nativeSrc":"19361:21:125","nodeType":"YulExpressionStatement","src":"19361:21:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19402:9:125","nodeType":"YulIdentifier","src":"19402:9:125"},{"kind":"number","nativeSrc":"19413:2:125","nodeType":"YulLiteral","src":"19413:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19398:3:125","nodeType":"YulIdentifier","src":"19398:3:125"},"nativeSrc":"19398:18:125","nodeType":"YulFunctionCall","src":"19398:18:125"},{"kind":"number","nativeSrc":"19418:2:125","nodeType":"YulLiteral","src":"19418:2:125","type":"","value":"21"}],"functionName":{"name":"mstore","nativeSrc":"19391:6:125","nodeType":"YulIdentifier","src":"19391:6:125"},"nativeSrc":"19391:30:125","nodeType":"YulFunctionCall","src":"19391:30:125"},"nativeSrc":"19391:30:125","nodeType":"YulExpressionStatement","src":"19391:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19441:9:125","nodeType":"YulIdentifier","src":"19441:9:125"},{"kind":"number","nativeSrc":"19452:2:125","nodeType":"YulLiteral","src":"19452:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19437:3:125","nodeType":"YulIdentifier","src":"19437:3:125"},"nativeSrc":"19437:18:125","nodeType":"YulFunctionCall","src":"19437:18:125"},{"hexValue":"4549503731323a20556e696e697469616c697a6564","kind":"string","nativeSrc":"19457:23:125","nodeType":"YulLiteral","src":"19457:23:125","type":"","value":"EIP712: Uninitialized"}],"functionName":{"name":"mstore","nativeSrc":"19430:6:125","nodeType":"YulIdentifier","src":"19430:6:125"},"nativeSrc":"19430:51:125","nodeType":"YulFunctionCall","src":"19430:51:125"},"nativeSrc":"19430:51:125","nodeType":"YulExpressionStatement","src":"19430:51:125"},{"nativeSrc":"19490:26:125","nodeType":"YulAssignment","src":"19490:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"19502:9:125","nodeType":"YulIdentifier","src":"19502:9:125"},{"kind":"number","nativeSrc":"19513:2:125","nodeType":"YulLiteral","src":"19513:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"19498:3:125","nodeType":"YulIdentifier","src":"19498:3:125"},"nativeSrc":"19498:18:125","nodeType":"YulFunctionCall","src":"19498:18:125"},"variableNames":[{"name":"tail","nativeSrc":"19490:4:125","nodeType":"YulIdentifier","src":"19490:4:125"}]}]},"name":"abi_encode_tuple_t_stringliteral_2e5045ff73280aa8e8acd8c82710f23812497f87f7f576e2220a2ddd0d45eade__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"19177:345:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19328:9:125","nodeType":"YulTypedName","src":"19328:9:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19342:4:125","nodeType":"YulTypedName","src":"19342:4:125","type":""}],"src":"19177:345:125"},{"body":{"nativeSrc":"19629:170:125","nodeType":"YulBlock","src":"19629:170:125","statements":[{"body":{"nativeSrc":"19675:16:125","nodeType":"YulBlock","src":"19675:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19684:1:125","nodeType":"YulLiteral","src":"19684:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"19687:1:125","nodeType":"YulLiteral","src":"19687:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19677:6:125","nodeType":"YulIdentifier","src":"19677:6:125"},"nativeSrc":"19677:12:125","nodeType":"YulFunctionCall","src":"19677:12:125"},"nativeSrc":"19677:12:125","nodeType":"YulExpressionStatement","src":"19677:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"19650:7:125","nodeType":"YulIdentifier","src":"19650:7:125"},{"name":"headStart","nativeSrc":"19659:9:125","nodeType":"YulIdentifier","src":"19659:9:125"}],"functionName":{"name":"sub","nativeSrc":"19646:3:125","nodeType":"YulIdentifier","src":"19646:3:125"},"nativeSrc":"19646:23:125","nodeType":"YulFunctionCall","src":"19646:23:125"},{"kind":"number","nativeSrc":"19671:2:125","nodeType":"YulLiteral","src":"19671:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"19642:3:125","nodeType":"YulIdentifier","src":"19642:3:125"},"nativeSrc":"19642:32:125","nodeType":"YulFunctionCall","src":"19642:32:125"},"nativeSrc":"19639:52:125","nodeType":"YulIf","src":"19639:52:125"},{"nativeSrc":"19700:29:125","nodeType":"YulVariableDeclaration","src":"19700:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"19719:9:125","nodeType":"YulIdentifier","src":"19719:9:125"}],"functionName":{"name":"mload","nativeSrc":"19713:5:125","nodeType":"YulIdentifier","src":"19713:5:125"},"nativeSrc":"19713:16:125","nodeType":"YulFunctionCall","src":"19713:16:125"},"variables":[{"name":"value","nativeSrc":"19704:5:125","nodeType":"YulTypedName","src":"19704:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"19763:5:125","nodeType":"YulIdentifier","src":"19763:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"19738:24:125","nodeType":"YulIdentifier","src":"19738:24:125"},"nativeSrc":"19738:31:125","nodeType":"YulFunctionCall","src":"19738:31:125"},"nativeSrc":"19738:31:125","nodeType":"YulExpressionStatement","src":"19738:31:125"},{"nativeSrc":"19778:15:125","nodeType":"YulAssignment","src":"19778:15:125","value":{"name":"value","nativeSrc":"19788:5:125","nodeType":"YulIdentifier","src":"19788:5:125"},"variableNames":[{"name":"value0","nativeSrc":"19778:6:125","nodeType":"YulIdentifier","src":"19778:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory","nativeSrc":"19527:272:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19595:9:125","nodeType":"YulTypedName","src":"19595:9:125","type":""},{"name":"dataEnd","nativeSrc":"19606:7:125","nodeType":"YulTypedName","src":"19606:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"19618:6:125","nodeType":"YulTypedName","src":"19618:6:125","type":""}],"src":"19527:272:125"},{"body":{"nativeSrc":"19977:171:125","nodeType":"YulBlock","src":"19977:171:125","statements":[{"nativeSrc":"19987:26:125","nodeType":"YulAssignment","src":"19987:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"19999:9:125","nodeType":"YulIdentifier","src":"19999:9:125"},{"kind":"number","nativeSrc":"20010:2:125","nodeType":"YulLiteral","src":"20010:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19995:3:125","nodeType":"YulIdentifier","src":"19995:3:125"},"nativeSrc":"19995:18:125","nodeType":"YulFunctionCall","src":"19995:18:125"},"variableNames":[{"name":"tail","nativeSrc":"19987:4:125","nodeType":"YulIdentifier","src":"19987:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20029:9:125","nodeType":"YulIdentifier","src":"20029:9:125"},{"arguments":[{"name":"value0","nativeSrc":"20044:6:125","nodeType":"YulIdentifier","src":"20044:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20060:3:125","nodeType":"YulLiteral","src":"20060:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"20065:1:125","nodeType":"YulLiteral","src":"20065:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"20056:3:125","nodeType":"YulIdentifier","src":"20056:3:125"},"nativeSrc":"20056:11:125","nodeType":"YulFunctionCall","src":"20056:11:125"},{"kind":"number","nativeSrc":"20069:1:125","nodeType":"YulLiteral","src":"20069:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"20052:3:125","nodeType":"YulIdentifier","src":"20052:3:125"},"nativeSrc":"20052:19:125","nodeType":"YulFunctionCall","src":"20052:19:125"}],"functionName":{"name":"and","nativeSrc":"20040:3:125","nodeType":"YulIdentifier","src":"20040:3:125"},"nativeSrc":"20040:32:125","nodeType":"YulFunctionCall","src":"20040:32:125"}],"functionName":{"name":"mstore","nativeSrc":"20022:6:125","nodeType":"YulIdentifier","src":"20022:6:125"},"nativeSrc":"20022:51:125","nodeType":"YulFunctionCall","src":"20022:51:125"},"nativeSrc":"20022:51:125","nodeType":"YulExpressionStatement","src":"20022:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20093:9:125","nodeType":"YulIdentifier","src":"20093:9:125"},{"kind":"number","nativeSrc":"20104:2:125","nodeType":"YulLiteral","src":"20104:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20089:3:125","nodeType":"YulIdentifier","src":"20089:3:125"},"nativeSrc":"20089:18:125","nodeType":"YulFunctionCall","src":"20089:18:125"},{"arguments":[{"name":"value1","nativeSrc":"20113:6:125","nodeType":"YulIdentifier","src":"20113:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20129:3:125","nodeType":"YulLiteral","src":"20129:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"20134:1:125","nodeType":"YulLiteral","src":"20134:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"20125:3:125","nodeType":"YulIdentifier","src":"20125:3:125"},"nativeSrc":"20125:11:125","nodeType":"YulFunctionCall","src":"20125:11:125"},{"kind":"number","nativeSrc":"20138:1:125","nodeType":"YulLiteral","src":"20138:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"20121:3:125","nodeType":"YulIdentifier","src":"20121:3:125"},"nativeSrc":"20121:19:125","nodeType":"YulFunctionCall","src":"20121:19:125"}],"functionName":{"name":"and","nativeSrc":"20109:3:125","nodeType":"YulIdentifier","src":"20109:3:125"},"nativeSrc":"20109:32:125","nodeType":"YulFunctionCall","src":"20109:32:125"}],"functionName":{"name":"mstore","nativeSrc":"20082:6:125","nodeType":"YulIdentifier","src":"20082:6:125"},"nativeSrc":"20082:60:125","nodeType":"YulFunctionCall","src":"20082:60:125"},"nativeSrc":"20082:60:125","nodeType":"YulExpressionStatement","src":"20082:60:125"}]},"name":"abi_encode_tuple_t_contract$_ILPWhitelist_$14383_t_contract$_ILPWhitelist_$14383__to_t_address_t_address__fromStack_reversed","nativeSrc":"19804:344:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19938:9:125","nodeType":"YulTypedName","src":"19938:9:125","type":""},{"name":"value1","nativeSrc":"19949:6:125","nodeType":"YulTypedName","src":"19949:6:125","type":""},{"name":"value0","nativeSrc":"19957:6:125","nodeType":"YulTypedName","src":"19957:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19968:4:125","nodeType":"YulTypedName","src":"19968:4:125","type":""}],"src":"19804:344:125"},{"body":{"nativeSrc":"20269:102:125","nodeType":"YulBlock","src":"20269:102:125","statements":[{"nativeSrc":"20279:26:125","nodeType":"YulAssignment","src":"20279:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"20291:9:125","nodeType":"YulIdentifier","src":"20291:9:125"},{"kind":"number","nativeSrc":"20302:2:125","nodeType":"YulLiteral","src":"20302:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20287:3:125","nodeType":"YulIdentifier","src":"20287:3:125"},"nativeSrc":"20287:18:125","nodeType":"YulFunctionCall","src":"20287:18:125"},"variableNames":[{"name":"tail","nativeSrc":"20279:4:125","nodeType":"YulIdentifier","src":"20279:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20321:9:125","nodeType":"YulIdentifier","src":"20321:9:125"},{"arguments":[{"name":"value0","nativeSrc":"20336:6:125","nodeType":"YulIdentifier","src":"20336:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20352:3:125","nodeType":"YulLiteral","src":"20352:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"20357:1:125","nodeType":"YulLiteral","src":"20357:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"20348:3:125","nodeType":"YulIdentifier","src":"20348:3:125"},"nativeSrc":"20348:11:125","nodeType":"YulFunctionCall","src":"20348:11:125"},{"kind":"number","nativeSrc":"20361:1:125","nodeType":"YulLiteral","src":"20361:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"20344:3:125","nodeType":"YulIdentifier","src":"20344:3:125"},"nativeSrc":"20344:19:125","nodeType":"YulFunctionCall","src":"20344:19:125"}],"functionName":{"name":"and","nativeSrc":"20332:3:125","nodeType":"YulIdentifier","src":"20332:3:125"},"nativeSrc":"20332:32:125","nodeType":"YulFunctionCall","src":"20332:32:125"}],"functionName":{"name":"mstore","nativeSrc":"20314:6:125","nodeType":"YulIdentifier","src":"20314:6:125"},"nativeSrc":"20314:51:125","nodeType":"YulFunctionCall","src":"20314:51:125"},"nativeSrc":"20314:51:125","nodeType":"YulExpressionStatement","src":"20314:51:125"}]},"name":"abi_encode_tuple_t_contract$_EToken_$7681__to_t_address__fromStack_reversed","nativeSrc":"20153:218:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20238:9:125","nodeType":"YulTypedName","src":"20238:9:125","type":""},{"name":"value0","nativeSrc":"20249:6:125","nodeType":"YulTypedName","src":"20249:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20260:4:125","nodeType":"YulTypedName","src":"20260:4:125","type":""}],"src":"20153:218:125"},{"body":{"nativeSrc":"20424:77:125","nodeType":"YulBlock","src":"20424:77:125","statements":[{"nativeSrc":"20434:16:125","nodeType":"YulAssignment","src":"20434:16:125","value":{"arguments":[{"name":"x","nativeSrc":"20445:1:125","nodeType":"YulIdentifier","src":"20445:1:125"},{"name":"y","nativeSrc":"20448:1:125","nodeType":"YulIdentifier","src":"20448:1:125"}],"functionName":{"name":"add","nativeSrc":"20441:3:125","nodeType":"YulIdentifier","src":"20441:3:125"},"nativeSrc":"20441:9:125","nodeType":"YulFunctionCall","src":"20441:9:125"},"variableNames":[{"name":"sum","nativeSrc":"20434:3:125","nodeType":"YulIdentifier","src":"20434:3:125"}]},{"body":{"nativeSrc":"20473:22:125","nodeType":"YulBlock","src":"20473:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"20475:16:125","nodeType":"YulIdentifier","src":"20475:16:125"},"nativeSrc":"20475:18:125","nodeType":"YulFunctionCall","src":"20475:18:125"},"nativeSrc":"20475:18:125","nodeType":"YulExpressionStatement","src":"20475:18:125"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"20465:1:125","nodeType":"YulIdentifier","src":"20465:1:125"},{"name":"sum","nativeSrc":"20468:3:125","nodeType":"YulIdentifier","src":"20468:3:125"}],"functionName":{"name":"gt","nativeSrc":"20462:2:125","nodeType":"YulIdentifier","src":"20462:2:125"},"nativeSrc":"20462:10:125","nodeType":"YulFunctionCall","src":"20462:10:125"},"nativeSrc":"20459:36:125","nodeType":"YulIf","src":"20459:36:125"}]},"name":"checked_add_t_uint256","nativeSrc":"20376:125:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"20407:1:125","nodeType":"YulTypedName","src":"20407:1:125","type":""},{"name":"y","nativeSrc":"20410:1:125","nodeType":"YulTypedName","src":"20410:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"20416:3:125","nodeType":"YulTypedName","src":"20416:3:125","type":""}],"src":"20376:125:125"},{"body":{"nativeSrc":"20635:145:125","nodeType":"YulBlock","src":"20635:145:125","statements":[{"nativeSrc":"20645:26:125","nodeType":"YulAssignment","src":"20645:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"20657:9:125","nodeType":"YulIdentifier","src":"20657:9:125"},{"kind":"number","nativeSrc":"20668:2:125","nodeType":"YulLiteral","src":"20668:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20653:3:125","nodeType":"YulIdentifier","src":"20653:3:125"},"nativeSrc":"20653:18:125","nodeType":"YulFunctionCall","src":"20653:18:125"},"variableNames":[{"name":"tail","nativeSrc":"20645:4:125","nodeType":"YulIdentifier","src":"20645:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20687:9:125","nodeType":"YulIdentifier","src":"20687:9:125"},{"name":"value0","nativeSrc":"20698:6:125","nodeType":"YulIdentifier","src":"20698:6:125"}],"functionName":{"name":"mstore","nativeSrc":"20680:6:125","nodeType":"YulIdentifier","src":"20680:6:125"},"nativeSrc":"20680:25:125","nodeType":"YulFunctionCall","src":"20680:25:125"},"nativeSrc":"20680:25:125","nodeType":"YulExpressionStatement","src":"20680:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20725:9:125","nodeType":"YulIdentifier","src":"20725:9:125"},{"kind":"number","nativeSrc":"20736:2:125","nodeType":"YulLiteral","src":"20736:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20721:3:125","nodeType":"YulIdentifier","src":"20721:3:125"},"nativeSrc":"20721:18:125","nodeType":"YulFunctionCall","src":"20721:18:125"},{"arguments":[{"name":"value1","nativeSrc":"20745:6:125","nodeType":"YulIdentifier","src":"20745:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20761:3:125","nodeType":"YulLiteral","src":"20761:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"20766:1:125","nodeType":"YulLiteral","src":"20766:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"20757:3:125","nodeType":"YulIdentifier","src":"20757:3:125"},"nativeSrc":"20757:11:125","nodeType":"YulFunctionCall","src":"20757:11:125"},{"kind":"number","nativeSrc":"20770:1:125","nodeType":"YulLiteral","src":"20770:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"20753:3:125","nodeType":"YulIdentifier","src":"20753:3:125"},"nativeSrc":"20753:19:125","nodeType":"YulFunctionCall","src":"20753:19:125"}],"functionName":{"name":"and","nativeSrc":"20741:3:125","nodeType":"YulIdentifier","src":"20741:3:125"},"nativeSrc":"20741:32:125","nodeType":"YulFunctionCall","src":"20741:32:125"}],"functionName":{"name":"mstore","nativeSrc":"20714:6:125","nodeType":"YulIdentifier","src":"20714:6:125"},"nativeSrc":"20714:60:125","nodeType":"YulFunctionCall","src":"20714:60:125"},"nativeSrc":"20714:60:125","nodeType":"YulExpressionStatement","src":"20714:60:125"}]},"name":"abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed","nativeSrc":"20506:274:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20596:9:125","nodeType":"YulTypedName","src":"20596:9:125","type":""},{"name":"value1","nativeSrc":"20607:6:125","nodeType":"YulTypedName","src":"20607:6:125","type":""},{"name":"value0","nativeSrc":"20615:6:125","nodeType":"YulTypedName","src":"20615:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20626:4:125","nodeType":"YulTypedName","src":"20626:4:125","type":""}],"src":"20506:274:125"},{"body":{"nativeSrc":"20817:95:125","nodeType":"YulBlock","src":"20817:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20834:1:125","nodeType":"YulLiteral","src":"20834:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"20841:3:125","nodeType":"YulLiteral","src":"20841:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"20846:10:125","nodeType":"YulLiteral","src":"20846:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"20837:3:125","nodeType":"YulIdentifier","src":"20837:3:125"},"nativeSrc":"20837:20:125","nodeType":"YulFunctionCall","src":"20837:20:125"}],"functionName":{"name":"mstore","nativeSrc":"20827:6:125","nodeType":"YulIdentifier","src":"20827:6:125"},"nativeSrc":"20827:31:125","nodeType":"YulFunctionCall","src":"20827:31:125"},"nativeSrc":"20827:31:125","nodeType":"YulExpressionStatement","src":"20827:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"20874:1:125","nodeType":"YulLiteral","src":"20874:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"20877:4:125","nodeType":"YulLiteral","src":"20877:4:125","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"20867:6:125","nodeType":"YulIdentifier","src":"20867:6:125"},"nativeSrc":"20867:15:125","nodeType":"YulFunctionCall","src":"20867:15:125"},"nativeSrc":"20867:15:125","nodeType":"YulExpressionStatement","src":"20867:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"20898:1:125","nodeType":"YulLiteral","src":"20898:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"20901:4:125","nodeType":"YulLiteral","src":"20901:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"20891:6:125","nodeType":"YulIdentifier","src":"20891:6:125"},"nativeSrc":"20891:15:125","nodeType":"YulFunctionCall","src":"20891:15:125"},"nativeSrc":"20891:15:125","nodeType":"YulExpressionStatement","src":"20891:15:125"}]},"name":"panic_error_0x21","nativeSrc":"20785:127:125","nodeType":"YulFunctionDefinition","src":"20785:127:125"},{"body":{"nativeSrc":"20968:186:125","nodeType":"YulBlock","src":"20968:186:125","statements":[{"body":{"nativeSrc":"21010:111:125","nodeType":"YulBlock","src":"21010:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21031:1:125","nodeType":"YulLiteral","src":"21031:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"21038:3:125","nodeType":"YulLiteral","src":"21038:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"21043:10:125","nodeType":"YulLiteral","src":"21043:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"21034:3:125","nodeType":"YulIdentifier","src":"21034:3:125"},"nativeSrc":"21034:20:125","nodeType":"YulFunctionCall","src":"21034:20:125"}],"functionName":{"name":"mstore","nativeSrc":"21024:6:125","nodeType":"YulIdentifier","src":"21024:6:125"},"nativeSrc":"21024:31:125","nodeType":"YulFunctionCall","src":"21024:31:125"},"nativeSrc":"21024:31:125","nodeType":"YulExpressionStatement","src":"21024:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"21075:1:125","nodeType":"YulLiteral","src":"21075:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"21078:4:125","nodeType":"YulLiteral","src":"21078:4:125","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"21068:6:125","nodeType":"YulIdentifier","src":"21068:6:125"},"nativeSrc":"21068:15:125","nodeType":"YulFunctionCall","src":"21068:15:125"},"nativeSrc":"21068:15:125","nodeType":"YulExpressionStatement","src":"21068:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"21103:1:125","nodeType":"YulLiteral","src":"21103:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"21106:4:125","nodeType":"YulLiteral","src":"21106:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"21096:6:125","nodeType":"YulIdentifier","src":"21096:6:125"},"nativeSrc":"21096:15:125","nodeType":"YulFunctionCall","src":"21096:15:125"},"nativeSrc":"21096:15:125","nodeType":"YulExpressionStatement","src":"21096:15:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20991:5:125","nodeType":"YulIdentifier","src":"20991:5:125"},{"kind":"number","nativeSrc":"20998:1:125","nodeType":"YulLiteral","src":"20998:1:125","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"20988:2:125","nodeType":"YulIdentifier","src":"20988:2:125"},"nativeSrc":"20988:12:125","nodeType":"YulFunctionCall","src":"20988:12:125"}],"functionName":{"name":"iszero","nativeSrc":"20981:6:125","nodeType":"YulIdentifier","src":"20981:6:125"},"nativeSrc":"20981:20:125","nodeType":"YulFunctionCall","src":"20981:20:125"},"nativeSrc":"20978:143:125","nodeType":"YulIf","src":"20978:143:125"},{"expression":{"arguments":[{"name":"pos","nativeSrc":"21137:3:125","nodeType":"YulIdentifier","src":"21137:3:125"},{"name":"value","nativeSrc":"21142:5:125","nodeType":"YulIdentifier","src":"21142:5:125"}],"functionName":{"name":"mstore","nativeSrc":"21130:6:125","nodeType":"YulIdentifier","src":"21130:6:125"},"nativeSrc":"21130:18:125","nodeType":"YulFunctionCall","src":"21130:18:125"},"nativeSrc":"21130:18:125","nodeType":"YulExpressionStatement","src":"21130:18:125"}]},"name":"abi_encode_enum_Parameter","nativeSrc":"20917:237:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"20952:5:125","nodeType":"YulTypedName","src":"20952:5:125","type":""},{"name":"pos","nativeSrc":"20959:3:125","nodeType":"YulTypedName","src":"20959:3:125","type":""}],"src":"20917:237:125"},{"body":{"nativeSrc":"21273:95:125","nodeType":"YulBlock","src":"21273:95:125","statements":[{"nativeSrc":"21283:26:125","nodeType":"YulAssignment","src":"21283:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"21295:9:125","nodeType":"YulIdentifier","src":"21295:9:125"},{"kind":"number","nativeSrc":"21306:2:125","nodeType":"YulLiteral","src":"21306:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21291:3:125","nodeType":"YulIdentifier","src":"21291:3:125"},"nativeSrc":"21291:18:125","nodeType":"YulFunctionCall","src":"21291:18:125"},"variableNames":[{"name":"tail","nativeSrc":"21283:4:125","nodeType":"YulIdentifier","src":"21283:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"21344:6:125","nodeType":"YulIdentifier","src":"21344:6:125"},{"name":"headStart","nativeSrc":"21352:9:125","nodeType":"YulIdentifier","src":"21352:9:125"}],"functionName":{"name":"abi_encode_enum_Parameter","nativeSrc":"21318:25:125","nodeType":"YulIdentifier","src":"21318:25:125"},"nativeSrc":"21318:44:125","nodeType":"YulFunctionCall","src":"21318:44:125"},"nativeSrc":"21318:44:125","nodeType":"YulExpressionStatement","src":"21318:44:125"}]},"name":"abi_encode_tuple_t_enum$_Parameter_$14171__to_t_uint8__fromStack_reversed","nativeSrc":"21159:209:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21242:9:125","nodeType":"YulTypedName","src":"21242:9:125","type":""},{"name":"value0","nativeSrc":"21253:6:125","nodeType":"YulTypedName","src":"21253:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21264:4:125","nodeType":"YulTypedName","src":"21264:4:125","type":""}],"src":"21159:209:125"},{"body":{"nativeSrc":"21515:138:125","nodeType":"YulBlock","src":"21515:138:125","statements":[{"nativeSrc":"21525:26:125","nodeType":"YulAssignment","src":"21525:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"21537:9:125","nodeType":"YulIdentifier","src":"21537:9:125"},{"kind":"number","nativeSrc":"21548:2:125","nodeType":"YulLiteral","src":"21548:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21533:3:125","nodeType":"YulIdentifier","src":"21533:3:125"},"nativeSrc":"21533:18:125","nodeType":"YulFunctionCall","src":"21533:18:125"},"variableNames":[{"name":"tail","nativeSrc":"21525:4:125","nodeType":"YulIdentifier","src":"21525:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"21586:6:125","nodeType":"YulIdentifier","src":"21586:6:125"},{"name":"headStart","nativeSrc":"21594:9:125","nodeType":"YulIdentifier","src":"21594:9:125"}],"functionName":{"name":"abi_encode_enum_Parameter","nativeSrc":"21560:25:125","nodeType":"YulIdentifier","src":"21560:25:125"},"nativeSrc":"21560:44:125","nodeType":"YulFunctionCall","src":"21560:44:125"},"nativeSrc":"21560:44:125","nodeType":"YulExpressionStatement","src":"21560:44:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21624:9:125","nodeType":"YulIdentifier","src":"21624:9:125"},{"kind":"number","nativeSrc":"21635:2:125","nodeType":"YulLiteral","src":"21635:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21620:3:125","nodeType":"YulIdentifier","src":"21620:3:125"},"nativeSrc":"21620:18:125","nodeType":"YulFunctionCall","src":"21620:18:125"},{"name":"value1","nativeSrc":"21640:6:125","nodeType":"YulIdentifier","src":"21640:6:125"}],"functionName":{"name":"mstore","nativeSrc":"21613:6:125","nodeType":"YulIdentifier","src":"21613:6:125"},"nativeSrc":"21613:34:125","nodeType":"YulFunctionCall","src":"21613:34:125"},"nativeSrc":"21613:34:125","nodeType":"YulExpressionStatement","src":"21613:34:125"}]},"name":"abi_encode_tuple_t_enum$_Parameter_$14171_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"21373:280:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21476:9:125","nodeType":"YulTypedName","src":"21476:9:125","type":""},{"name":"value1","nativeSrc":"21487:6:125","nodeType":"YulTypedName","src":"21487:6:125","type":""},{"name":"value0","nativeSrc":"21495:6:125","nodeType":"YulTypedName","src":"21495:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21506:4:125","nodeType":"YulTypedName","src":"21506:4:125","type":""}],"src":"21373:280:125"},{"body":{"nativeSrc":"21701:93:125","nodeType":"YulBlock","src":"21701:93:125","statements":[{"body":{"nativeSrc":"21737:22:125","nodeType":"YulBlock","src":"21737:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"21739:16:125","nodeType":"YulIdentifier","src":"21739:16:125"},"nativeSrc":"21739:18:125","nodeType":"YulFunctionCall","src":"21739:18:125"},"nativeSrc":"21739:18:125","nodeType":"YulExpressionStatement","src":"21739:18:125"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"21717:5:125","nodeType":"YulIdentifier","src":"21717:5:125"},{"arguments":[{"kind":"number","nativeSrc":"21728:3:125","nodeType":"YulLiteral","src":"21728:3:125","type":"","value":"255"},{"kind":"number","nativeSrc":"21733:1:125","nodeType":"YulLiteral","src":"21733:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"21724:3:125","nodeType":"YulIdentifier","src":"21724:3:125"},"nativeSrc":"21724:11:125","nodeType":"YulFunctionCall","src":"21724:11:125"}],"functionName":{"name":"eq","nativeSrc":"21714:2:125","nodeType":"YulIdentifier","src":"21714:2:125"},"nativeSrc":"21714:22:125","nodeType":"YulFunctionCall","src":"21714:22:125"},"nativeSrc":"21711:48:125","nodeType":"YulIf","src":"21711:48:125"},{"nativeSrc":"21768:20:125","nodeType":"YulAssignment","src":"21768:20:125","value":{"arguments":[{"kind":"number","nativeSrc":"21779:1:125","nodeType":"YulLiteral","src":"21779:1:125","type":"","value":"0"},{"name":"value","nativeSrc":"21782:5:125","nodeType":"YulIdentifier","src":"21782:5:125"}],"functionName":{"name":"sub","nativeSrc":"21775:3:125","nodeType":"YulIdentifier","src":"21775:3:125"},"nativeSrc":"21775:13:125","nodeType":"YulFunctionCall","src":"21775:13:125"},"variableNames":[{"name":"ret","nativeSrc":"21768:3:125","nodeType":"YulIdentifier","src":"21768:3:125"}]}]},"name":"negate_t_int256","nativeSrc":"21658:136:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"21683:5:125","nodeType":"YulTypedName","src":"21683:5:125","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"21693:3:125","nodeType":"YulTypedName","src":"21693:3:125","type":""}],"src":"21658:136:125"},{"body":{"nativeSrc":"21962:171:125","nodeType":"YulBlock","src":"21962:171:125","statements":[{"nativeSrc":"21972:26:125","nodeType":"YulAssignment","src":"21972:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"21984:9:125","nodeType":"YulIdentifier","src":"21984:9:125"},{"kind":"number","nativeSrc":"21995:2:125","nodeType":"YulLiteral","src":"21995:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21980:3:125","nodeType":"YulIdentifier","src":"21980:3:125"},"nativeSrc":"21980:18:125","nodeType":"YulFunctionCall","src":"21980:18:125"},"variableNames":[{"name":"tail","nativeSrc":"21972:4:125","nodeType":"YulIdentifier","src":"21972:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22014:9:125","nodeType":"YulIdentifier","src":"22014:9:125"},{"arguments":[{"name":"value0","nativeSrc":"22029:6:125","nodeType":"YulIdentifier","src":"22029:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22045:3:125","nodeType":"YulLiteral","src":"22045:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"22050:1:125","nodeType":"YulLiteral","src":"22050:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22041:3:125","nodeType":"YulIdentifier","src":"22041:3:125"},"nativeSrc":"22041:11:125","nodeType":"YulFunctionCall","src":"22041:11:125"},{"kind":"number","nativeSrc":"22054:1:125","nodeType":"YulLiteral","src":"22054:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22037:3:125","nodeType":"YulIdentifier","src":"22037:3:125"},"nativeSrc":"22037:19:125","nodeType":"YulFunctionCall","src":"22037:19:125"}],"functionName":{"name":"and","nativeSrc":"22025:3:125","nodeType":"YulIdentifier","src":"22025:3:125"},"nativeSrc":"22025:32:125","nodeType":"YulFunctionCall","src":"22025:32:125"}],"functionName":{"name":"mstore","nativeSrc":"22007:6:125","nodeType":"YulIdentifier","src":"22007:6:125"},"nativeSrc":"22007:51:125","nodeType":"YulFunctionCall","src":"22007:51:125"},"nativeSrc":"22007:51:125","nodeType":"YulExpressionStatement","src":"22007:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22078:9:125","nodeType":"YulIdentifier","src":"22078:9:125"},{"kind":"number","nativeSrc":"22089:2:125","nodeType":"YulLiteral","src":"22089:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22074:3:125","nodeType":"YulIdentifier","src":"22074:3:125"},"nativeSrc":"22074:18:125","nodeType":"YulFunctionCall","src":"22074:18:125"},{"arguments":[{"name":"value1","nativeSrc":"22098:6:125","nodeType":"YulIdentifier","src":"22098:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22114:3:125","nodeType":"YulLiteral","src":"22114:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"22119:1:125","nodeType":"YulLiteral","src":"22119:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22110:3:125","nodeType":"YulIdentifier","src":"22110:3:125"},"nativeSrc":"22110:11:125","nodeType":"YulFunctionCall","src":"22110:11:125"},{"kind":"number","nativeSrc":"22123:1:125","nodeType":"YulLiteral","src":"22123:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22106:3:125","nodeType":"YulIdentifier","src":"22106:3:125"},"nativeSrc":"22106:19:125","nodeType":"YulFunctionCall","src":"22106:19:125"}],"functionName":{"name":"and","nativeSrc":"22094:3:125","nodeType":"YulIdentifier","src":"22094:3:125"},"nativeSrc":"22094:32:125","nodeType":"YulFunctionCall","src":"22094:32:125"}],"functionName":{"name":"mstore","nativeSrc":"22067:6:125","nodeType":"YulIdentifier","src":"22067:6:125"},"nativeSrc":"22067:60:125","nodeType":"YulFunctionCall","src":"22067:60:125"},"nativeSrc":"22067:60:125","nodeType":"YulExpressionStatement","src":"22067:60:125"}]},"name":"abi_encode_tuple_t_contract$_ICooler_$14162_t_contract$_ICooler_$14162__to_t_address_t_address__fromStack_reversed","nativeSrc":"21799:334:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21923:9:125","nodeType":"YulTypedName","src":"21923:9:125","type":""},{"name":"value1","nativeSrc":"21934:6:125","nodeType":"YulTypedName","src":"21934:6:125","type":""},{"name":"value0","nativeSrc":"21942:6:125","nodeType":"YulTypedName","src":"21942:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21953:4:125","nodeType":"YulTypedName","src":"21953:4:125","type":""}],"src":"21799:334:125"},{"body":{"nativeSrc":"22379:346:125","nodeType":"YulBlock","src":"22379:346:125","statements":[{"nativeSrc":"22389:27:125","nodeType":"YulAssignment","src":"22389:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"22401:9:125","nodeType":"YulIdentifier","src":"22401:9:125"},{"kind":"number","nativeSrc":"22412:3:125","nodeType":"YulLiteral","src":"22412:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"22397:3:125","nodeType":"YulIdentifier","src":"22397:3:125"},"nativeSrc":"22397:19:125","nodeType":"YulFunctionCall","src":"22397:19:125"},"variableNames":[{"name":"tail","nativeSrc":"22389:4:125","nodeType":"YulIdentifier","src":"22389:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22432:9:125","nodeType":"YulIdentifier","src":"22432:9:125"},{"name":"value0","nativeSrc":"22443:6:125","nodeType":"YulIdentifier","src":"22443:6:125"}],"functionName":{"name":"mstore","nativeSrc":"22425:6:125","nodeType":"YulIdentifier","src":"22425:6:125"},"nativeSrc":"22425:25:125","nodeType":"YulFunctionCall","src":"22425:25:125"},"nativeSrc":"22425:25:125","nodeType":"YulExpressionStatement","src":"22425:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22470:9:125","nodeType":"YulIdentifier","src":"22470:9:125"},{"kind":"number","nativeSrc":"22481:2:125","nodeType":"YulLiteral","src":"22481:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22466:3:125","nodeType":"YulIdentifier","src":"22466:3:125"},"nativeSrc":"22466:18:125","nodeType":"YulFunctionCall","src":"22466:18:125"},{"arguments":[{"name":"value1","nativeSrc":"22490:6:125","nodeType":"YulIdentifier","src":"22490:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22506:3:125","nodeType":"YulLiteral","src":"22506:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"22511:1:125","nodeType":"YulLiteral","src":"22511:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22502:3:125","nodeType":"YulIdentifier","src":"22502:3:125"},"nativeSrc":"22502:11:125","nodeType":"YulFunctionCall","src":"22502:11:125"},{"kind":"number","nativeSrc":"22515:1:125","nodeType":"YulLiteral","src":"22515:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22498:3:125","nodeType":"YulIdentifier","src":"22498:3:125"},"nativeSrc":"22498:19:125","nodeType":"YulFunctionCall","src":"22498:19:125"}],"functionName":{"name":"and","nativeSrc":"22486:3:125","nodeType":"YulIdentifier","src":"22486:3:125"},"nativeSrc":"22486:32:125","nodeType":"YulFunctionCall","src":"22486:32:125"}],"functionName":{"name":"mstore","nativeSrc":"22459:6:125","nodeType":"YulIdentifier","src":"22459:6:125"},"nativeSrc":"22459:60:125","nodeType":"YulFunctionCall","src":"22459:60:125"},"nativeSrc":"22459:60:125","nodeType":"YulExpressionStatement","src":"22459:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22539:9:125","nodeType":"YulIdentifier","src":"22539:9:125"},{"kind":"number","nativeSrc":"22550:2:125","nodeType":"YulLiteral","src":"22550:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22535:3:125","nodeType":"YulIdentifier","src":"22535:3:125"},"nativeSrc":"22535:18:125","nodeType":"YulFunctionCall","src":"22535:18:125"},{"arguments":[{"name":"value2","nativeSrc":"22559:6:125","nodeType":"YulIdentifier","src":"22559:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22575:3:125","nodeType":"YulLiteral","src":"22575:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"22580:1:125","nodeType":"YulLiteral","src":"22580:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22571:3:125","nodeType":"YulIdentifier","src":"22571:3:125"},"nativeSrc":"22571:11:125","nodeType":"YulFunctionCall","src":"22571:11:125"},{"kind":"number","nativeSrc":"22584:1:125","nodeType":"YulLiteral","src":"22584:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22567:3:125","nodeType":"YulIdentifier","src":"22567:3:125"},"nativeSrc":"22567:19:125","nodeType":"YulFunctionCall","src":"22567:19:125"}],"functionName":{"name":"and","nativeSrc":"22555:3:125","nodeType":"YulIdentifier","src":"22555:3:125"},"nativeSrc":"22555:32:125","nodeType":"YulFunctionCall","src":"22555:32:125"}],"functionName":{"name":"mstore","nativeSrc":"22528:6:125","nodeType":"YulIdentifier","src":"22528:6:125"},"nativeSrc":"22528:60:125","nodeType":"YulFunctionCall","src":"22528:60:125"},"nativeSrc":"22528:60:125","nodeType":"YulExpressionStatement","src":"22528:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22608:9:125","nodeType":"YulIdentifier","src":"22608:9:125"},{"kind":"number","nativeSrc":"22619:2:125","nodeType":"YulLiteral","src":"22619:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"22604:3:125","nodeType":"YulIdentifier","src":"22604:3:125"},"nativeSrc":"22604:18:125","nodeType":"YulFunctionCall","src":"22604:18:125"},{"name":"value3","nativeSrc":"22624:6:125","nodeType":"YulIdentifier","src":"22624:6:125"}],"functionName":{"name":"mstore","nativeSrc":"22597:6:125","nodeType":"YulIdentifier","src":"22597:6:125"},"nativeSrc":"22597:34:125","nodeType":"YulFunctionCall","src":"22597:34:125"},"nativeSrc":"22597:34:125","nodeType":"YulExpressionStatement","src":"22597:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22651:9:125","nodeType":"YulIdentifier","src":"22651:9:125"},{"kind":"number","nativeSrc":"22662:3:125","nodeType":"YulLiteral","src":"22662:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"22647:3:125","nodeType":"YulIdentifier","src":"22647:3:125"},"nativeSrc":"22647:19:125","nodeType":"YulFunctionCall","src":"22647:19:125"},{"name":"value4","nativeSrc":"22668:6:125","nodeType":"YulIdentifier","src":"22668:6:125"}],"functionName":{"name":"mstore","nativeSrc":"22640:6:125","nodeType":"YulIdentifier","src":"22640:6:125"},"nativeSrc":"22640:35:125","nodeType":"YulFunctionCall","src":"22640:35:125"},"nativeSrc":"22640:35:125","nodeType":"YulExpressionStatement","src":"22640:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22695:9:125","nodeType":"YulIdentifier","src":"22695:9:125"},{"kind":"number","nativeSrc":"22706:3:125","nodeType":"YulLiteral","src":"22706:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"22691:3:125","nodeType":"YulIdentifier","src":"22691:3:125"},"nativeSrc":"22691:19:125","nodeType":"YulFunctionCall","src":"22691:19:125"},{"name":"value5","nativeSrc":"22712:6:125","nodeType":"YulIdentifier","src":"22712:6:125"}],"functionName":{"name":"mstore","nativeSrc":"22684:6:125","nodeType":"YulIdentifier","src":"22684:6:125"},"nativeSrc":"22684:35:125","nodeType":"YulFunctionCall","src":"22684:35:125"},"nativeSrc":"22684:35:125","nodeType":"YulExpressionStatement","src":"22684:35:125"}]},"name":"abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"22138:587:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22308:9:125","nodeType":"YulTypedName","src":"22308:9:125","type":""},{"name":"value5","nativeSrc":"22319:6:125","nodeType":"YulTypedName","src":"22319:6:125","type":""},{"name":"value4","nativeSrc":"22327:6:125","nodeType":"YulTypedName","src":"22327:6:125","type":""},{"name":"value3","nativeSrc":"22335:6:125","nodeType":"YulTypedName","src":"22335:6:125","type":""},{"name":"value2","nativeSrc":"22343:6:125","nodeType":"YulTypedName","src":"22343:6:125","type":""},{"name":"value1","nativeSrc":"22351:6:125","nodeType":"YulTypedName","src":"22351:6:125","type":""},{"name":"value0","nativeSrc":"22359:6:125","nodeType":"YulTypedName","src":"22359:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22370:4:125","nodeType":"YulTypedName","src":"22370:4:125","type":""}],"src":"22138:587:125"},{"body":{"nativeSrc":"22859:171:125","nodeType":"YulBlock","src":"22859:171:125","statements":[{"nativeSrc":"22869:26:125","nodeType":"YulAssignment","src":"22869:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"22881:9:125","nodeType":"YulIdentifier","src":"22881:9:125"},{"kind":"number","nativeSrc":"22892:2:125","nodeType":"YulLiteral","src":"22892:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22877:3:125","nodeType":"YulIdentifier","src":"22877:3:125"},"nativeSrc":"22877:18:125","nodeType":"YulFunctionCall","src":"22877:18:125"},"variableNames":[{"name":"tail","nativeSrc":"22869:4:125","nodeType":"YulIdentifier","src":"22869:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22911:9:125","nodeType":"YulIdentifier","src":"22911:9:125"},{"arguments":[{"name":"value0","nativeSrc":"22926:6:125","nodeType":"YulIdentifier","src":"22926:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22942:3:125","nodeType":"YulLiteral","src":"22942:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"22947:1:125","nodeType":"YulLiteral","src":"22947:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22938:3:125","nodeType":"YulIdentifier","src":"22938:3:125"},"nativeSrc":"22938:11:125","nodeType":"YulFunctionCall","src":"22938:11:125"},{"kind":"number","nativeSrc":"22951:1:125","nodeType":"YulLiteral","src":"22951:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22934:3:125","nodeType":"YulIdentifier","src":"22934:3:125"},"nativeSrc":"22934:19:125","nodeType":"YulFunctionCall","src":"22934:19:125"}],"functionName":{"name":"and","nativeSrc":"22922:3:125","nodeType":"YulIdentifier","src":"22922:3:125"},"nativeSrc":"22922:32:125","nodeType":"YulFunctionCall","src":"22922:32:125"}],"functionName":{"name":"mstore","nativeSrc":"22904:6:125","nodeType":"YulIdentifier","src":"22904:6:125"},"nativeSrc":"22904:51:125","nodeType":"YulFunctionCall","src":"22904:51:125"},"nativeSrc":"22904:51:125","nodeType":"YulExpressionStatement","src":"22904:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22975:9:125","nodeType":"YulIdentifier","src":"22975:9:125"},{"kind":"number","nativeSrc":"22986:2:125","nodeType":"YulLiteral","src":"22986:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22971:3:125","nodeType":"YulIdentifier","src":"22971:3:125"},"nativeSrc":"22971:18:125","nodeType":"YulFunctionCall","src":"22971:18:125"},{"arguments":[{"name":"value1","nativeSrc":"22995:6:125","nodeType":"YulIdentifier","src":"22995:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23011:3:125","nodeType":"YulLiteral","src":"23011:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"23016:1:125","nodeType":"YulLiteral","src":"23016:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"23007:3:125","nodeType":"YulIdentifier","src":"23007:3:125"},"nativeSrc":"23007:11:125","nodeType":"YulFunctionCall","src":"23007:11:125"},{"kind":"number","nativeSrc":"23020:1:125","nodeType":"YulLiteral","src":"23020:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"23003:3:125","nodeType":"YulIdentifier","src":"23003:3:125"},"nativeSrc":"23003:19:125","nodeType":"YulFunctionCall","src":"23003:19:125"}],"functionName":{"name":"and","nativeSrc":"22991:3:125","nodeType":"YulIdentifier","src":"22991:3:125"},"nativeSrc":"22991:32:125","nodeType":"YulFunctionCall","src":"22991:32:125"}],"functionName":{"name":"mstore","nativeSrc":"22964:6:125","nodeType":"YulIdentifier","src":"22964:6:125"},"nativeSrc":"22964:60:125","nodeType":"YulFunctionCall","src":"22964:60:125"},"nativeSrc":"22964:60:125","nodeType":"YulExpressionStatement","src":"22964:60:125"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nativeSrc":"22730:300:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22820:9:125","nodeType":"YulTypedName","src":"22820:9:125","type":""},{"name":"value1","nativeSrc":"22831:6:125","nodeType":"YulTypedName","src":"22831:6:125","type":""},{"name":"value0","nativeSrc":"22839:6:125","nodeType":"YulTypedName","src":"22839:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22850:4:125","nodeType":"YulTypedName","src":"22850:4:125","type":""}],"src":"22730:300:125"},{"body":{"nativeSrc":"23067:95:125","nodeType":"YulBlock","src":"23067:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23084:1:125","nodeType":"YulLiteral","src":"23084:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"23091:3:125","nodeType":"YulLiteral","src":"23091:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"23096:10:125","nodeType":"YulLiteral","src":"23096:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"23087:3:125","nodeType":"YulIdentifier","src":"23087:3:125"},"nativeSrc":"23087:20:125","nodeType":"YulFunctionCall","src":"23087:20:125"}],"functionName":{"name":"mstore","nativeSrc":"23077:6:125","nodeType":"YulIdentifier","src":"23077:6:125"},"nativeSrc":"23077:31:125","nodeType":"YulFunctionCall","src":"23077:31:125"},"nativeSrc":"23077:31:125","nodeType":"YulExpressionStatement","src":"23077:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"23124:1:125","nodeType":"YulLiteral","src":"23124:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"23127:4:125","nodeType":"YulLiteral","src":"23127:4:125","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"23117:6:125","nodeType":"YulIdentifier","src":"23117:6:125"},"nativeSrc":"23117:15:125","nodeType":"YulFunctionCall","src":"23117:15:125"},"nativeSrc":"23117:15:125","nodeType":"YulExpressionStatement","src":"23117:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"23148:1:125","nodeType":"YulLiteral","src":"23148:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"23151:4:125","nodeType":"YulLiteral","src":"23151:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"23141:6:125","nodeType":"YulIdentifier","src":"23141:6:125"},"nativeSrc":"23141:15:125","nodeType":"YulFunctionCall","src":"23141:15:125"},"nativeSrc":"23141:15:125","nodeType":"YulExpressionStatement","src":"23141:15:125"}]},"name":"panic_error_0x12","nativeSrc":"23035:127:125","nodeType":"YulFunctionDefinition","src":"23035:127:125"},{"body":{"nativeSrc":"23324:188:125","nodeType":"YulBlock","src":"23324:188:125","statements":[{"nativeSrc":"23334:26:125","nodeType":"YulAssignment","src":"23334:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"23346:9:125","nodeType":"YulIdentifier","src":"23346:9:125"},{"kind":"number","nativeSrc":"23357:2:125","nodeType":"YulLiteral","src":"23357:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23342:3:125","nodeType":"YulIdentifier","src":"23342:3:125"},"nativeSrc":"23342:18:125","nodeType":"YulFunctionCall","src":"23342:18:125"},"variableNames":[{"name":"tail","nativeSrc":"23334:4:125","nodeType":"YulIdentifier","src":"23334:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"23376:9:125","nodeType":"YulIdentifier","src":"23376:9:125"},{"arguments":[{"name":"value0","nativeSrc":"23391:6:125","nodeType":"YulIdentifier","src":"23391:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23407:3:125","nodeType":"YulLiteral","src":"23407:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"23412:1:125","nodeType":"YulLiteral","src":"23412:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"23403:3:125","nodeType":"YulIdentifier","src":"23403:3:125"},"nativeSrc":"23403:11:125","nodeType":"YulFunctionCall","src":"23403:11:125"},{"kind":"number","nativeSrc":"23416:1:125","nodeType":"YulLiteral","src":"23416:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"23399:3:125","nodeType":"YulIdentifier","src":"23399:3:125"},"nativeSrc":"23399:19:125","nodeType":"YulFunctionCall","src":"23399:19:125"}],"functionName":{"name":"and","nativeSrc":"23387:3:125","nodeType":"YulIdentifier","src":"23387:3:125"},"nativeSrc":"23387:32:125","nodeType":"YulFunctionCall","src":"23387:32:125"}],"functionName":{"name":"mstore","nativeSrc":"23369:6:125","nodeType":"YulIdentifier","src":"23369:6:125"},"nativeSrc":"23369:51:125","nodeType":"YulFunctionCall","src":"23369:51:125"},"nativeSrc":"23369:51:125","nodeType":"YulExpressionStatement","src":"23369:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23440:9:125","nodeType":"YulIdentifier","src":"23440:9:125"},{"kind":"number","nativeSrc":"23451:2:125","nodeType":"YulLiteral","src":"23451:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23436:3:125","nodeType":"YulIdentifier","src":"23436:3:125"},"nativeSrc":"23436:18:125","nodeType":"YulFunctionCall","src":"23436:18:125"},{"name":"value1","nativeSrc":"23456:6:125","nodeType":"YulIdentifier","src":"23456:6:125"}],"functionName":{"name":"mstore","nativeSrc":"23429:6:125","nodeType":"YulIdentifier","src":"23429:6:125"},"nativeSrc":"23429:34:125","nodeType":"YulFunctionCall","src":"23429:34:125"},"nativeSrc":"23429:34:125","nodeType":"YulExpressionStatement","src":"23429:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23483:9:125","nodeType":"YulIdentifier","src":"23483:9:125"},{"kind":"number","nativeSrc":"23494:2:125","nodeType":"YulLiteral","src":"23494:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23479:3:125","nodeType":"YulIdentifier","src":"23479:3:125"},"nativeSrc":"23479:18:125","nodeType":"YulFunctionCall","src":"23479:18:125"},{"name":"value2","nativeSrc":"23499:6:125","nodeType":"YulIdentifier","src":"23499:6:125"}],"functionName":{"name":"mstore","nativeSrc":"23472:6:125","nodeType":"YulIdentifier","src":"23472:6:125"},"nativeSrc":"23472:34:125","nodeType":"YulFunctionCall","src":"23472:34:125"},"nativeSrc":"23472:34:125","nodeType":"YulExpressionStatement","src":"23472:34:125"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"23167:345:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23277:9:125","nodeType":"YulTypedName","src":"23277:9:125","type":""},{"name":"value2","nativeSrc":"23288:6:125","nodeType":"YulTypedName","src":"23288:6:125","type":""},{"name":"value1","nativeSrc":"23296:6:125","nodeType":"YulTypedName","src":"23296:6:125","type":""},{"name":"value0","nativeSrc":"23304:6:125","nodeType":"YulTypedName","src":"23304:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"23315:4:125","nodeType":"YulTypedName","src":"23315:4:125","type":""}],"src":"23167:345:125"},{"body":{"nativeSrc":"23565:122:125","nodeType":"YulBlock","src":"23565:122:125","statements":[{"nativeSrc":"23575:51:125","nodeType":"YulAssignment","src":"23575:51:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"23591:1:125","nodeType":"YulIdentifier","src":"23591:1:125"},{"kind":"number","nativeSrc":"23594:10:125","nodeType":"YulLiteral","src":"23594:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"23587:3:125","nodeType":"YulIdentifier","src":"23587:3:125"},"nativeSrc":"23587:18:125","nodeType":"YulFunctionCall","src":"23587:18:125"},{"arguments":[{"name":"y","nativeSrc":"23611:1:125","nodeType":"YulIdentifier","src":"23611:1:125"},{"kind":"number","nativeSrc":"23614:10:125","nodeType":"YulLiteral","src":"23614:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"23607:3:125","nodeType":"YulIdentifier","src":"23607:3:125"},"nativeSrc":"23607:18:125","nodeType":"YulFunctionCall","src":"23607:18:125"}],"functionName":{"name":"sub","nativeSrc":"23583:3:125","nodeType":"YulIdentifier","src":"23583:3:125"},"nativeSrc":"23583:43:125","nodeType":"YulFunctionCall","src":"23583:43:125"},"variableNames":[{"name":"diff","nativeSrc":"23575:4:125","nodeType":"YulIdentifier","src":"23575:4:125"}]},{"body":{"nativeSrc":"23659:22:125","nodeType":"YulBlock","src":"23659:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"23661:16:125","nodeType":"YulIdentifier","src":"23661:16:125"},"nativeSrc":"23661:18:125","nodeType":"YulFunctionCall","src":"23661:18:125"},"nativeSrc":"23661:18:125","nodeType":"YulExpressionStatement","src":"23661:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"23641:4:125","nodeType":"YulIdentifier","src":"23641:4:125"},{"kind":"number","nativeSrc":"23647:10:125","nodeType":"YulLiteral","src":"23647:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"gt","nativeSrc":"23638:2:125","nodeType":"YulIdentifier","src":"23638:2:125"},"nativeSrc":"23638:20:125","nodeType":"YulFunctionCall","src":"23638:20:125"},"nativeSrc":"23635:46:125","nodeType":"YulIf","src":"23635:46:125"}]},"name":"checked_sub_t_uint32","nativeSrc":"23517:170:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"23547:1:125","nodeType":"YulTypedName","src":"23547:1:125","type":""},{"name":"y","nativeSrc":"23550:1:125","nodeType":"YulTypedName","src":"23550:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"23556:4:125","nodeType":"YulTypedName","src":"23556:4:125","type":""}],"src":"23517:170:125"},{"body":{"nativeSrc":"23744:116:125","nodeType":"YulBlock","src":"23744:116:125","statements":[{"nativeSrc":"23754:20:125","nodeType":"YulAssignment","src":"23754:20:125","value":{"arguments":[{"name":"x","nativeSrc":"23769:1:125","nodeType":"YulIdentifier","src":"23769:1:125"},{"name":"y","nativeSrc":"23772:1:125","nodeType":"YulIdentifier","src":"23772:1:125"}],"functionName":{"name":"mul","nativeSrc":"23765:3:125","nodeType":"YulIdentifier","src":"23765:3:125"},"nativeSrc":"23765:9:125","nodeType":"YulFunctionCall","src":"23765:9:125"},"variableNames":[{"name":"product","nativeSrc":"23754:7:125","nodeType":"YulIdentifier","src":"23754:7:125"}]},{"body":{"nativeSrc":"23832:22:125","nodeType":"YulBlock","src":"23832:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"23834:16:125","nodeType":"YulIdentifier","src":"23834:16:125"},"nativeSrc":"23834:18:125","nodeType":"YulFunctionCall","src":"23834:18:125"},"nativeSrc":"23834:18:125","nodeType":"YulExpressionStatement","src":"23834:18:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nativeSrc":"23803:1:125","nodeType":"YulIdentifier","src":"23803:1:125"}],"functionName":{"name":"iszero","nativeSrc":"23796:6:125","nodeType":"YulIdentifier","src":"23796:6:125"},"nativeSrc":"23796:9:125","nodeType":"YulFunctionCall","src":"23796:9:125"},{"arguments":[{"name":"y","nativeSrc":"23810:1:125","nodeType":"YulIdentifier","src":"23810:1:125"},{"arguments":[{"name":"product","nativeSrc":"23817:7:125","nodeType":"YulIdentifier","src":"23817:7:125"},{"name":"x","nativeSrc":"23826:1:125","nodeType":"YulIdentifier","src":"23826:1:125"}],"functionName":{"name":"div","nativeSrc":"23813:3:125","nodeType":"YulIdentifier","src":"23813:3:125"},"nativeSrc":"23813:15:125","nodeType":"YulFunctionCall","src":"23813:15:125"}],"functionName":{"name":"eq","nativeSrc":"23807:2:125","nodeType":"YulIdentifier","src":"23807:2:125"},"nativeSrc":"23807:22:125","nodeType":"YulFunctionCall","src":"23807:22:125"}],"functionName":{"name":"or","nativeSrc":"23793:2:125","nodeType":"YulIdentifier","src":"23793:2:125"},"nativeSrc":"23793:37:125","nodeType":"YulFunctionCall","src":"23793:37:125"}],"functionName":{"name":"iszero","nativeSrc":"23786:6:125","nodeType":"YulIdentifier","src":"23786:6:125"},"nativeSrc":"23786:45:125","nodeType":"YulFunctionCall","src":"23786:45:125"},"nativeSrc":"23783:71:125","nodeType":"YulIf","src":"23783:71:125"}]},"name":"checked_mul_t_uint256","nativeSrc":"23692:168:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"23723:1:125","nodeType":"YulTypedName","src":"23723:1:125","type":""},{"name":"y","nativeSrc":"23726:1:125","nodeType":"YulTypedName","src":"23726:1:125","type":""}],"returnVariables":[{"name":"product","nativeSrc":"23732:7:125","nodeType":"YulTypedName","src":"23732:7:125","type":""}],"src":"23692:168:125"},{"body":{"nativeSrc":"23911:171:125","nodeType":"YulBlock","src":"23911:171:125","statements":[{"body":{"nativeSrc":"23942:111:125","nodeType":"YulBlock","src":"23942:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23963:1:125","nodeType":"YulLiteral","src":"23963:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"23970:3:125","nodeType":"YulLiteral","src":"23970:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"23975:10:125","nodeType":"YulLiteral","src":"23975:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"23966:3:125","nodeType":"YulIdentifier","src":"23966:3:125"},"nativeSrc":"23966:20:125","nodeType":"YulFunctionCall","src":"23966:20:125"}],"functionName":{"name":"mstore","nativeSrc":"23956:6:125","nodeType":"YulIdentifier","src":"23956:6:125"},"nativeSrc":"23956:31:125","nodeType":"YulFunctionCall","src":"23956:31:125"},"nativeSrc":"23956:31:125","nodeType":"YulExpressionStatement","src":"23956:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"24007:1:125","nodeType":"YulLiteral","src":"24007:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"24010:4:125","nodeType":"YulLiteral","src":"24010:4:125","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"24000:6:125","nodeType":"YulIdentifier","src":"24000:6:125"},"nativeSrc":"24000:15:125","nodeType":"YulFunctionCall","src":"24000:15:125"},"nativeSrc":"24000:15:125","nodeType":"YulExpressionStatement","src":"24000:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"24035:1:125","nodeType":"YulLiteral","src":"24035:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"24038:4:125","nodeType":"YulLiteral","src":"24038:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"24028:6:125","nodeType":"YulIdentifier","src":"24028:6:125"},"nativeSrc":"24028:15:125","nodeType":"YulFunctionCall","src":"24028:15:125"},"nativeSrc":"24028:15:125","nodeType":"YulExpressionStatement","src":"24028:15:125"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"23931:1:125","nodeType":"YulIdentifier","src":"23931:1:125"}],"functionName":{"name":"iszero","nativeSrc":"23924:6:125","nodeType":"YulIdentifier","src":"23924:6:125"},"nativeSrc":"23924:9:125","nodeType":"YulFunctionCall","src":"23924:9:125"},"nativeSrc":"23921:132:125","nodeType":"YulIf","src":"23921:132:125"},{"nativeSrc":"24062:14:125","nodeType":"YulAssignment","src":"24062:14:125","value":{"arguments":[{"name":"x","nativeSrc":"24071:1:125","nodeType":"YulIdentifier","src":"24071:1:125"},{"name":"y","nativeSrc":"24074:1:125","nodeType":"YulIdentifier","src":"24074:1:125"}],"functionName":{"name":"div","nativeSrc":"24067:3:125","nodeType":"YulIdentifier","src":"24067:3:125"},"nativeSrc":"24067:9:125","nodeType":"YulFunctionCall","src":"24067:9:125"},"variableNames":[{"name":"r","nativeSrc":"24062:1:125","nodeType":"YulIdentifier","src":"24062:1:125"}]}]},"name":"checked_div_t_uint256","nativeSrc":"23865:217:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"23896:1:125","nodeType":"YulTypedName","src":"23896:1:125","type":""},{"name":"y","nativeSrc":"23899:1:125","nodeType":"YulTypedName","src":"23899:1:125","type":""}],"returnVariables":[{"name":"r","nativeSrc":"23905:1:125","nodeType":"YulTypedName","src":"23905:1:125","type":""}],"src":"23865:217:125"},{"body":{"nativeSrc":"24242:162:125","nodeType":"YulBlock","src":"24242:162:125","statements":[{"nativeSrc":"24252:26:125","nodeType":"YulAssignment","src":"24252:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"24264:9:125","nodeType":"YulIdentifier","src":"24264:9:125"},{"kind":"number","nativeSrc":"24275:2:125","nodeType":"YulLiteral","src":"24275:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"24260:3:125","nodeType":"YulIdentifier","src":"24260:3:125"},"nativeSrc":"24260:18:125","nodeType":"YulFunctionCall","src":"24260:18:125"},"variableNames":[{"name":"tail","nativeSrc":"24252:4:125","nodeType":"YulIdentifier","src":"24252:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"24294:9:125","nodeType":"YulIdentifier","src":"24294:9:125"},{"name":"value0","nativeSrc":"24305:6:125","nodeType":"YulIdentifier","src":"24305:6:125"}],"functionName":{"name":"mstore","nativeSrc":"24287:6:125","nodeType":"YulIdentifier","src":"24287:6:125"},"nativeSrc":"24287:25:125","nodeType":"YulFunctionCall","src":"24287:25:125"},"nativeSrc":"24287:25:125","nodeType":"YulExpressionStatement","src":"24287:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24332:9:125","nodeType":"YulIdentifier","src":"24332:9:125"},{"kind":"number","nativeSrc":"24343:2:125","nodeType":"YulLiteral","src":"24343:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24328:3:125","nodeType":"YulIdentifier","src":"24328:3:125"},"nativeSrc":"24328:18:125","nodeType":"YulFunctionCall","src":"24328:18:125"},{"name":"value1","nativeSrc":"24348:6:125","nodeType":"YulIdentifier","src":"24348:6:125"}],"functionName":{"name":"mstore","nativeSrc":"24321:6:125","nodeType":"YulIdentifier","src":"24321:6:125"},"nativeSrc":"24321:34:125","nodeType":"YulFunctionCall","src":"24321:34:125"},"nativeSrc":"24321:34:125","nodeType":"YulExpressionStatement","src":"24321:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24375:9:125","nodeType":"YulIdentifier","src":"24375:9:125"},{"kind":"number","nativeSrc":"24386:2:125","nodeType":"YulLiteral","src":"24386:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"24371:3:125","nodeType":"YulIdentifier","src":"24371:3:125"},"nativeSrc":"24371:18:125","nodeType":"YulFunctionCall","src":"24371:18:125"},{"name":"value2","nativeSrc":"24391:6:125","nodeType":"YulIdentifier","src":"24391:6:125"}],"functionName":{"name":"mstore","nativeSrc":"24364:6:125","nodeType":"YulIdentifier","src":"24364:6:125"},"nativeSrc":"24364:34:125","nodeType":"YulFunctionCall","src":"24364:34:125"},"nativeSrc":"24364:34:125","nodeType":"YulExpressionStatement","src":"24364:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_int256__to_t_uint256_t_uint256_t_int256__fromStack_reversed","nativeSrc":"24087:317:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24195:9:125","nodeType":"YulTypedName","src":"24195:9:125","type":""},{"name":"value2","nativeSrc":"24206:6:125","nodeType":"YulTypedName","src":"24206:6:125","type":""},{"name":"value1","nativeSrc":"24214:6:125","nodeType":"YulTypedName","src":"24214:6:125","type":""},{"name":"value0","nativeSrc":"24222:6:125","nodeType":"YulTypedName","src":"24222:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"24233:4:125","nodeType":"YulTypedName","src":"24233:4:125","type":""}],"src":"24087:317:125"},{"body":{"nativeSrc":"24490:103:125","nodeType":"YulBlock","src":"24490:103:125","statements":[{"body":{"nativeSrc":"24536:16:125","nodeType":"YulBlock","src":"24536:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24545:1:125","nodeType":"YulLiteral","src":"24545:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"24548:1:125","nodeType":"YulLiteral","src":"24548:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24538:6:125","nodeType":"YulIdentifier","src":"24538:6:125"},"nativeSrc":"24538:12:125","nodeType":"YulFunctionCall","src":"24538:12:125"},"nativeSrc":"24538:12:125","nodeType":"YulExpressionStatement","src":"24538:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"24511:7:125","nodeType":"YulIdentifier","src":"24511:7:125"},{"name":"headStart","nativeSrc":"24520:9:125","nodeType":"YulIdentifier","src":"24520:9:125"}],"functionName":{"name":"sub","nativeSrc":"24507:3:125","nodeType":"YulIdentifier","src":"24507:3:125"},"nativeSrc":"24507:23:125","nodeType":"YulFunctionCall","src":"24507:23:125"},{"kind":"number","nativeSrc":"24532:2:125","nodeType":"YulLiteral","src":"24532:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"24503:3:125","nodeType":"YulIdentifier","src":"24503:3:125"},"nativeSrc":"24503:32:125","nodeType":"YulFunctionCall","src":"24503:32:125"},"nativeSrc":"24500:52:125","nodeType":"YulIf","src":"24500:52:125"},{"nativeSrc":"24561:26:125","nodeType":"YulAssignment","src":"24561:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"24577:9:125","nodeType":"YulIdentifier","src":"24577:9:125"}],"functionName":{"name":"mload","nativeSrc":"24571:5:125","nodeType":"YulIdentifier","src":"24571:5:125"},"nativeSrc":"24571:16:125","nodeType":"YulFunctionCall","src":"24571:16:125"},"variableNames":[{"name":"value0","nativeSrc":"24561:6:125","nodeType":"YulIdentifier","src":"24561:6:125"}]}]},"name":"abi_decode_tuple_t_bytes32_fromMemory","nativeSrc":"24409:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24456:9:125","nodeType":"YulTypedName","src":"24456:9:125","type":""},{"name":"dataEnd","nativeSrc":"24467:7:125","nodeType":"YulTypedName","src":"24467:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"24479:6:125","nodeType":"YulTypedName","src":"24479:6:125","type":""}],"src":"24409:184:125"},{"body":{"nativeSrc":"24645:169:125","nodeType":"YulBlock","src":"24645:169:125","statements":[{"nativeSrc":"24655:16:125","nodeType":"YulAssignment","src":"24655:16:125","value":{"arguments":[{"name":"x","nativeSrc":"24666:1:125","nodeType":"YulIdentifier","src":"24666:1:125"},{"name":"y","nativeSrc":"24669:1:125","nodeType":"YulIdentifier","src":"24669:1:125"}],"functionName":{"name":"add","nativeSrc":"24662:3:125","nodeType":"YulIdentifier","src":"24662:3:125"},"nativeSrc":"24662:9:125","nodeType":"YulFunctionCall","src":"24662:9:125"},"variableNames":[{"name":"sum","nativeSrc":"24655:3:125","nodeType":"YulIdentifier","src":"24655:3:125"}]},{"nativeSrc":"24680:21:125","nodeType":"YulVariableDeclaration","src":"24680:21:125","value":{"arguments":[{"name":"sum","nativeSrc":"24694:3:125","nodeType":"YulIdentifier","src":"24694:3:125"},{"name":"y","nativeSrc":"24699:1:125","nodeType":"YulIdentifier","src":"24699:1:125"}],"functionName":{"name":"slt","nativeSrc":"24690:3:125","nodeType":"YulIdentifier","src":"24690:3:125"},"nativeSrc":"24690:11:125","nodeType":"YulFunctionCall","src":"24690:11:125"},"variables":[{"name":"_1","nativeSrc":"24684:2:125","nodeType":"YulTypedName","src":"24684:2:125","type":""}]},{"nativeSrc":"24710:19:125","nodeType":"YulVariableDeclaration","src":"24710:19:125","value":{"arguments":[{"name":"x","nativeSrc":"24724:1:125","nodeType":"YulIdentifier","src":"24724:1:125"},{"kind":"number","nativeSrc":"24727:1:125","nodeType":"YulLiteral","src":"24727:1:125","type":"","value":"0"}],"functionName":{"name":"slt","nativeSrc":"24720:3:125","nodeType":"YulIdentifier","src":"24720:3:125"},"nativeSrc":"24720:9:125","nodeType":"YulFunctionCall","src":"24720:9:125"},"variables":[{"name":"_2","nativeSrc":"24714:2:125","nodeType":"YulTypedName","src":"24714:2:125","type":""}]},{"body":{"nativeSrc":"24786:22:125","nodeType":"YulBlock","src":"24786:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"24788:16:125","nodeType":"YulIdentifier","src":"24788:16:125"},"nativeSrc":"24788:18:125","nodeType":"YulFunctionCall","src":"24788:18:125"},"nativeSrc":"24788:18:125","nodeType":"YulExpressionStatement","src":"24788:18:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"24755:2:125","nodeType":"YulIdentifier","src":"24755:2:125"}],"functionName":{"name":"iszero","nativeSrc":"24748:6:125","nodeType":"YulIdentifier","src":"24748:6:125"},"nativeSrc":"24748:10:125","nodeType":"YulFunctionCall","src":"24748:10:125"},{"name":"_1","nativeSrc":"24760:2:125","nodeType":"YulIdentifier","src":"24760:2:125"}],"functionName":{"name":"and","nativeSrc":"24744:3:125","nodeType":"YulIdentifier","src":"24744:3:125"},"nativeSrc":"24744:19:125","nodeType":"YulFunctionCall","src":"24744:19:125"},{"arguments":[{"name":"_2","nativeSrc":"24769:2:125","nodeType":"YulIdentifier","src":"24769:2:125"},{"arguments":[{"name":"_1","nativeSrc":"24780:2:125","nodeType":"YulIdentifier","src":"24780:2:125"}],"functionName":{"name":"iszero","nativeSrc":"24773:6:125","nodeType":"YulIdentifier","src":"24773:6:125"},"nativeSrc":"24773:10:125","nodeType":"YulFunctionCall","src":"24773:10:125"}],"functionName":{"name":"and","nativeSrc":"24765:3:125","nodeType":"YulIdentifier","src":"24765:3:125"},"nativeSrc":"24765:19:125","nodeType":"YulFunctionCall","src":"24765:19:125"}],"functionName":{"name":"or","nativeSrc":"24741:2:125","nodeType":"YulIdentifier","src":"24741:2:125"},"nativeSrc":"24741:44:125","nodeType":"YulFunctionCall","src":"24741:44:125"},"nativeSrc":"24738:70:125","nodeType":"YulIf","src":"24738:70:125"}]},"name":"checked_add_t_int256","nativeSrc":"24598:216:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"24628:1:125","nodeType":"YulTypedName","src":"24628:1:125","type":""},{"name":"y","nativeSrc":"24631:1:125","nodeType":"YulTypedName","src":"24631:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"24637:3:125","nodeType":"YulTypedName","src":"24637:3:125","type":""}],"src":"24598:216:125"},{"body":{"nativeSrc":"24918:76:125","nodeType":"YulBlock","src":"24918:76:125","statements":[{"nativeSrc":"24928:26:125","nodeType":"YulAssignment","src":"24928:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"24940:9:125","nodeType":"YulIdentifier","src":"24940:9:125"},{"kind":"number","nativeSrc":"24951:2:125","nodeType":"YulLiteral","src":"24951:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24936:3:125","nodeType":"YulIdentifier","src":"24936:3:125"},"nativeSrc":"24936:18:125","nodeType":"YulFunctionCall","src":"24936:18:125"},"variableNames":[{"name":"tail","nativeSrc":"24928:4:125","nodeType":"YulIdentifier","src":"24928:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"24970:9:125","nodeType":"YulIdentifier","src":"24970:9:125"},{"name":"value0","nativeSrc":"24981:6:125","nodeType":"YulIdentifier","src":"24981:6:125"}],"functionName":{"name":"mstore","nativeSrc":"24963:6:125","nodeType":"YulIdentifier","src":"24963:6:125"},"nativeSrc":"24963:25:125","nodeType":"YulFunctionCall","src":"24963:25:125"},"nativeSrc":"24963:25:125","nodeType":"YulExpressionStatement","src":"24963:25:125"}]},"name":"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed","nativeSrc":"24819:175:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24887:9:125","nodeType":"YulTypedName","src":"24887:9:125","type":""},{"name":"value0","nativeSrc":"24898:6:125","nodeType":"YulTypedName","src":"24898:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"24909:4:125","nodeType":"YulTypedName","src":"24909:4:125","type":""}],"src":"24819:175:125"},{"body":{"nativeSrc":"25156:214:125","nodeType":"YulBlock","src":"25156:214:125","statements":[{"nativeSrc":"25166:26:125","nodeType":"YulAssignment","src":"25166:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"25178:9:125","nodeType":"YulIdentifier","src":"25178:9:125"},{"kind":"number","nativeSrc":"25189:2:125","nodeType":"YulLiteral","src":"25189:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25174:3:125","nodeType":"YulIdentifier","src":"25174:3:125"},"nativeSrc":"25174:18:125","nodeType":"YulFunctionCall","src":"25174:18:125"},"variableNames":[{"name":"tail","nativeSrc":"25166:4:125","nodeType":"YulIdentifier","src":"25166:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25208:9:125","nodeType":"YulIdentifier","src":"25208:9:125"},{"arguments":[{"name":"value0","nativeSrc":"25223:6:125","nodeType":"YulIdentifier","src":"25223:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25239:3:125","nodeType":"YulLiteral","src":"25239:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"25244:1:125","nodeType":"YulLiteral","src":"25244:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"25235:3:125","nodeType":"YulIdentifier","src":"25235:3:125"},"nativeSrc":"25235:11:125","nodeType":"YulFunctionCall","src":"25235:11:125"},{"kind":"number","nativeSrc":"25248:1:125","nodeType":"YulLiteral","src":"25248:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"25231:3:125","nodeType":"YulIdentifier","src":"25231:3:125"},"nativeSrc":"25231:19:125","nodeType":"YulFunctionCall","src":"25231:19:125"}],"functionName":{"name":"and","nativeSrc":"25219:3:125","nodeType":"YulIdentifier","src":"25219:3:125"},"nativeSrc":"25219:32:125","nodeType":"YulFunctionCall","src":"25219:32:125"}],"functionName":{"name":"mstore","nativeSrc":"25201:6:125","nodeType":"YulIdentifier","src":"25201:6:125"},"nativeSrc":"25201:51:125","nodeType":"YulFunctionCall","src":"25201:51:125"},"nativeSrc":"25201:51:125","nodeType":"YulExpressionStatement","src":"25201:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25272:9:125","nodeType":"YulIdentifier","src":"25272:9:125"},{"kind":"number","nativeSrc":"25283:2:125","nodeType":"YulLiteral","src":"25283:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25268:3:125","nodeType":"YulIdentifier","src":"25268:3:125"},"nativeSrc":"25268:18:125","nodeType":"YulFunctionCall","src":"25268:18:125"},{"arguments":[{"name":"value1","nativeSrc":"25292:6:125","nodeType":"YulIdentifier","src":"25292:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25308:3:125","nodeType":"YulLiteral","src":"25308:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"25313:1:125","nodeType":"YulLiteral","src":"25313:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"25304:3:125","nodeType":"YulIdentifier","src":"25304:3:125"},"nativeSrc":"25304:11:125","nodeType":"YulFunctionCall","src":"25304:11:125"},{"kind":"number","nativeSrc":"25317:1:125","nodeType":"YulLiteral","src":"25317:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"25300:3:125","nodeType":"YulIdentifier","src":"25300:3:125"},"nativeSrc":"25300:19:125","nodeType":"YulFunctionCall","src":"25300:19:125"}],"functionName":{"name":"and","nativeSrc":"25288:3:125","nodeType":"YulIdentifier","src":"25288:3:125"},"nativeSrc":"25288:32:125","nodeType":"YulFunctionCall","src":"25288:32:125"}],"functionName":{"name":"mstore","nativeSrc":"25261:6:125","nodeType":"YulIdentifier","src":"25261:6:125"},"nativeSrc":"25261:60:125","nodeType":"YulFunctionCall","src":"25261:60:125"},"nativeSrc":"25261:60:125","nodeType":"YulExpressionStatement","src":"25261:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25341:9:125","nodeType":"YulIdentifier","src":"25341:9:125"},{"kind":"number","nativeSrc":"25352:2:125","nodeType":"YulLiteral","src":"25352:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25337:3:125","nodeType":"YulIdentifier","src":"25337:3:125"},"nativeSrc":"25337:18:125","nodeType":"YulFunctionCall","src":"25337:18:125"},{"name":"value2","nativeSrc":"25357:6:125","nodeType":"YulIdentifier","src":"25357:6:125"}],"functionName":{"name":"mstore","nativeSrc":"25330:6:125","nodeType":"YulIdentifier","src":"25330:6:125"},"nativeSrc":"25330:34:125","nodeType":"YulFunctionCall","src":"25330:34:125"},"nativeSrc":"25330:34:125","nodeType":"YulExpressionStatement","src":"25330:34:125"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nativeSrc":"24999:371:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25109:9:125","nodeType":"YulTypedName","src":"25109:9:125","type":""},{"name":"value2","nativeSrc":"25120:6:125","nodeType":"YulTypedName","src":"25120:6:125","type":""},{"name":"value1","nativeSrc":"25128:6:125","nodeType":"YulTypedName","src":"25128:6:125","type":""},{"name":"value0","nativeSrc":"25136:6:125","nodeType":"YulTypedName","src":"25136:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25147:4:125","nodeType":"YulTypedName","src":"25147:4:125","type":""}],"src":"24999:371:125"},{"body":{"nativeSrc":"25588:276:125","nodeType":"YulBlock","src":"25588:276:125","statements":[{"nativeSrc":"25598:27:125","nodeType":"YulAssignment","src":"25598:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"25610:9:125","nodeType":"YulIdentifier","src":"25610:9:125"},{"kind":"number","nativeSrc":"25621:3:125","nodeType":"YulLiteral","src":"25621:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"25606:3:125","nodeType":"YulIdentifier","src":"25606:3:125"},"nativeSrc":"25606:19:125","nodeType":"YulFunctionCall","src":"25606:19:125"},"variableNames":[{"name":"tail","nativeSrc":"25598:4:125","nodeType":"YulIdentifier","src":"25598:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25641:9:125","nodeType":"YulIdentifier","src":"25641:9:125"},{"name":"value0","nativeSrc":"25652:6:125","nodeType":"YulIdentifier","src":"25652:6:125"}],"functionName":{"name":"mstore","nativeSrc":"25634:6:125","nodeType":"YulIdentifier","src":"25634:6:125"},"nativeSrc":"25634:25:125","nodeType":"YulFunctionCall","src":"25634:25:125"},"nativeSrc":"25634:25:125","nodeType":"YulExpressionStatement","src":"25634:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25679:9:125","nodeType":"YulIdentifier","src":"25679:9:125"},{"kind":"number","nativeSrc":"25690:2:125","nodeType":"YulLiteral","src":"25690:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25675:3:125","nodeType":"YulIdentifier","src":"25675:3:125"},"nativeSrc":"25675:18:125","nodeType":"YulFunctionCall","src":"25675:18:125"},{"name":"value1","nativeSrc":"25695:6:125","nodeType":"YulIdentifier","src":"25695:6:125"}],"functionName":{"name":"mstore","nativeSrc":"25668:6:125","nodeType":"YulIdentifier","src":"25668:6:125"},"nativeSrc":"25668:34:125","nodeType":"YulFunctionCall","src":"25668:34:125"},"nativeSrc":"25668:34:125","nodeType":"YulExpressionStatement","src":"25668:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25722:9:125","nodeType":"YulIdentifier","src":"25722:9:125"},{"kind":"number","nativeSrc":"25733:2:125","nodeType":"YulLiteral","src":"25733:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25718:3:125","nodeType":"YulIdentifier","src":"25718:3:125"},"nativeSrc":"25718:18:125","nodeType":"YulFunctionCall","src":"25718:18:125"},{"name":"value2","nativeSrc":"25738:6:125","nodeType":"YulIdentifier","src":"25738:6:125"}],"functionName":{"name":"mstore","nativeSrc":"25711:6:125","nodeType":"YulIdentifier","src":"25711:6:125"},"nativeSrc":"25711:34:125","nodeType":"YulFunctionCall","src":"25711:34:125"},"nativeSrc":"25711:34:125","nodeType":"YulExpressionStatement","src":"25711:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25765:9:125","nodeType":"YulIdentifier","src":"25765:9:125"},{"kind":"number","nativeSrc":"25776:2:125","nodeType":"YulLiteral","src":"25776:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25761:3:125","nodeType":"YulIdentifier","src":"25761:3:125"},"nativeSrc":"25761:18:125","nodeType":"YulFunctionCall","src":"25761:18:125"},{"name":"value3","nativeSrc":"25781:6:125","nodeType":"YulIdentifier","src":"25781:6:125"}],"functionName":{"name":"mstore","nativeSrc":"25754:6:125","nodeType":"YulIdentifier","src":"25754:6:125"},"nativeSrc":"25754:34:125","nodeType":"YulFunctionCall","src":"25754:34:125"},"nativeSrc":"25754:34:125","nodeType":"YulExpressionStatement","src":"25754:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25808:9:125","nodeType":"YulIdentifier","src":"25808:9:125"},{"kind":"number","nativeSrc":"25819:3:125","nodeType":"YulLiteral","src":"25819:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"25804:3:125","nodeType":"YulIdentifier","src":"25804:3:125"},"nativeSrc":"25804:19:125","nodeType":"YulFunctionCall","src":"25804:19:125"},{"arguments":[{"name":"value4","nativeSrc":"25829:6:125","nodeType":"YulIdentifier","src":"25829:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25845:3:125","nodeType":"YulLiteral","src":"25845:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"25850:1:125","nodeType":"YulLiteral","src":"25850:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"25841:3:125","nodeType":"YulIdentifier","src":"25841:3:125"},"nativeSrc":"25841:11:125","nodeType":"YulFunctionCall","src":"25841:11:125"},{"kind":"number","nativeSrc":"25854:1:125","nodeType":"YulLiteral","src":"25854:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"25837:3:125","nodeType":"YulIdentifier","src":"25837:3:125"},"nativeSrc":"25837:19:125","nodeType":"YulFunctionCall","src":"25837:19:125"}],"functionName":{"name":"and","nativeSrc":"25825:3:125","nodeType":"YulIdentifier","src":"25825:3:125"},"nativeSrc":"25825:32:125","nodeType":"YulFunctionCall","src":"25825:32:125"}],"functionName":{"name":"mstore","nativeSrc":"25797:6:125","nodeType":"YulIdentifier","src":"25797:6:125"},"nativeSrc":"25797:61:125","nodeType":"YulFunctionCall","src":"25797:61:125"},"nativeSrc":"25797:61:125","nodeType":"YulExpressionStatement","src":"25797:61:125"}]},"name":"abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed","nativeSrc":"25375:489:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25525:9:125","nodeType":"YulTypedName","src":"25525:9:125","type":""},{"name":"value4","nativeSrc":"25536:6:125","nodeType":"YulTypedName","src":"25536:6:125","type":""},{"name":"value3","nativeSrc":"25544:6:125","nodeType":"YulTypedName","src":"25544:6:125","type":""},{"name":"value2","nativeSrc":"25552:6:125","nodeType":"YulTypedName","src":"25552:6:125","type":""},{"name":"value1","nativeSrc":"25560:6:125","nodeType":"YulTypedName","src":"25560:6:125","type":""},{"name":"value0","nativeSrc":"25568:6:125","nodeType":"YulTypedName","src":"25568:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25579:4:125","nodeType":"YulTypedName","src":"25579:4:125","type":""}],"src":"25375:489:125"},{"body":{"nativeSrc":"26006:130:125","nodeType":"YulBlock","src":"26006:130:125","statements":[{"nativeSrc":"26016:26:125","nodeType":"YulAssignment","src":"26016:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"26028:9:125","nodeType":"YulIdentifier","src":"26028:9:125"},{"kind":"number","nativeSrc":"26039:2:125","nodeType":"YulLiteral","src":"26039:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"26024:3:125","nodeType":"YulIdentifier","src":"26024:3:125"},"nativeSrc":"26024:18:125","nodeType":"YulFunctionCall","src":"26024:18:125"},"variableNames":[{"name":"tail","nativeSrc":"26016:4:125","nodeType":"YulIdentifier","src":"26016:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"26058:9:125","nodeType":"YulIdentifier","src":"26058:9:125"},{"arguments":[{"name":"value0","nativeSrc":"26073:6:125","nodeType":"YulIdentifier","src":"26073:6:125"},{"kind":"number","nativeSrc":"26081:4:125","nodeType":"YulLiteral","src":"26081:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"26069:3:125","nodeType":"YulIdentifier","src":"26069:3:125"},"nativeSrc":"26069:17:125","nodeType":"YulFunctionCall","src":"26069:17:125"}],"functionName":{"name":"mstore","nativeSrc":"26051:6:125","nodeType":"YulIdentifier","src":"26051:6:125"},"nativeSrc":"26051:36:125","nodeType":"YulFunctionCall","src":"26051:36:125"},"nativeSrc":"26051:36:125","nodeType":"YulExpressionStatement","src":"26051:36:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26107:9:125","nodeType":"YulIdentifier","src":"26107:9:125"},{"kind":"number","nativeSrc":"26118:2:125","nodeType":"YulLiteral","src":"26118:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"26103:3:125","nodeType":"YulIdentifier","src":"26103:3:125"},"nativeSrc":"26103:18:125","nodeType":"YulFunctionCall","src":"26103:18:125"},{"name":"value1","nativeSrc":"26123:6:125","nodeType":"YulIdentifier","src":"26123:6:125"}],"functionName":{"name":"mstore","nativeSrc":"26096:6:125","nodeType":"YulIdentifier","src":"26096:6:125"},"nativeSrc":"26096:34:125","nodeType":"YulFunctionCall","src":"26096:34:125"},"nativeSrc":"26096:34:125","nodeType":"YulExpressionStatement","src":"26096:34:125"}]},"name":"abi_encode_tuple_t_rational_128_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"25869:267:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25967:9:125","nodeType":"YulTypedName","src":"25967:9:125","type":""},{"name":"value1","nativeSrc":"25978:6:125","nodeType":"YulTypedName","src":"25978:6:125","type":""},{"name":"value0","nativeSrc":"25986:6:125","nodeType":"YulTypedName","src":"25986:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25997:4:125","nodeType":"YulTypedName","src":"25997:4:125","type":""}],"src":"25869:267:125"},{"body":{"nativeSrc":"26197:65:125","nodeType":"YulBlock","src":"26197:65:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26214:1:125","nodeType":"YulLiteral","src":"26214:1:125","type":"","value":"0"},{"name":"ptr","nativeSrc":"26217:3:125","nodeType":"YulIdentifier","src":"26217:3:125"}],"functionName":{"name":"mstore","nativeSrc":"26207:6:125","nodeType":"YulIdentifier","src":"26207:6:125"},"nativeSrc":"26207:14:125","nodeType":"YulFunctionCall","src":"26207:14:125"},"nativeSrc":"26207:14:125","nodeType":"YulExpressionStatement","src":"26207:14:125"},{"nativeSrc":"26230:26:125","nodeType":"YulAssignment","src":"26230:26:125","value":{"arguments":[{"kind":"number","nativeSrc":"26248:1:125","nodeType":"YulLiteral","src":"26248:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"26251:4:125","nodeType":"YulLiteral","src":"26251:4:125","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"26238:9:125","nodeType":"YulIdentifier","src":"26238:9:125"},"nativeSrc":"26238:18:125","nodeType":"YulFunctionCall","src":"26238:18:125"},"variableNames":[{"name":"data","nativeSrc":"26230:4:125","nodeType":"YulIdentifier","src":"26230:4:125"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"26141:121:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"26180:3:125","nodeType":"YulTypedName","src":"26180:3:125","type":""}],"returnVariables":[{"name":"data","nativeSrc":"26188:4:125","nodeType":"YulTypedName","src":"26188:4:125","type":""}],"src":"26141:121:125"},{"body":{"nativeSrc":"26348:437:125","nodeType":"YulBlock","src":"26348:437:125","statements":[{"body":{"nativeSrc":"26381:398:125","nodeType":"YulBlock","src":"26381:398:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26402:1:125","nodeType":"YulLiteral","src":"26402:1:125","type":"","value":"0"},{"name":"array","nativeSrc":"26405:5:125","nodeType":"YulIdentifier","src":"26405:5:125"}],"functionName":{"name":"mstore","nativeSrc":"26395:6:125","nodeType":"YulIdentifier","src":"26395:6:125"},"nativeSrc":"26395:16:125","nodeType":"YulFunctionCall","src":"26395:16:125"},"nativeSrc":"26395:16:125","nodeType":"YulExpressionStatement","src":"26395:16:125"},{"nativeSrc":"26424:30:125","nodeType":"YulVariableDeclaration","src":"26424:30:125","value":{"arguments":[{"kind":"number","nativeSrc":"26446:1:125","nodeType":"YulLiteral","src":"26446:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"26449:4:125","nodeType":"YulLiteral","src":"26449:4:125","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"26436:9:125","nodeType":"YulIdentifier","src":"26436:9:125"},"nativeSrc":"26436:18:125","nodeType":"YulFunctionCall","src":"26436:18:125"},"variables":[{"name":"data","nativeSrc":"26428:4:125","nodeType":"YulTypedName","src":"26428:4:125","type":""}]},{"nativeSrc":"26467:57:125","nodeType":"YulVariableDeclaration","src":"26467:57:125","value":{"arguments":[{"name":"data","nativeSrc":"26490:4:125","nodeType":"YulIdentifier","src":"26490:4:125"},{"arguments":[{"kind":"number","nativeSrc":"26500:1:125","nodeType":"YulLiteral","src":"26500:1:125","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"26507:10:125","nodeType":"YulIdentifier","src":"26507:10:125"},{"kind":"number","nativeSrc":"26519:2:125","nodeType":"YulLiteral","src":"26519:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"26503:3:125","nodeType":"YulIdentifier","src":"26503:3:125"},"nativeSrc":"26503:19:125","nodeType":"YulFunctionCall","src":"26503:19:125"}],"functionName":{"name":"shr","nativeSrc":"26496:3:125","nodeType":"YulIdentifier","src":"26496:3:125"},"nativeSrc":"26496:27:125","nodeType":"YulFunctionCall","src":"26496:27:125"}],"functionName":{"name":"add","nativeSrc":"26486:3:125","nodeType":"YulIdentifier","src":"26486:3:125"},"nativeSrc":"26486:38:125","nodeType":"YulFunctionCall","src":"26486:38:125"},"variables":[{"name":"deleteStart","nativeSrc":"26471:11:125","nodeType":"YulTypedName","src":"26471:11:125","type":""}]},{"body":{"nativeSrc":"26561:23:125","nodeType":"YulBlock","src":"26561:23:125","statements":[{"nativeSrc":"26563:19:125","nodeType":"YulAssignment","src":"26563:19:125","value":{"name":"data","nativeSrc":"26578:4:125","nodeType":"YulIdentifier","src":"26578:4:125"},"variableNames":[{"name":"deleteStart","nativeSrc":"26563:11:125","nodeType":"YulIdentifier","src":"26563:11:125"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"26543:10:125","nodeType":"YulIdentifier","src":"26543:10:125"},{"kind":"number","nativeSrc":"26555:4:125","nodeType":"YulLiteral","src":"26555:4:125","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"26540:2:125","nodeType":"YulIdentifier","src":"26540:2:125"},"nativeSrc":"26540:20:125","nodeType":"YulFunctionCall","src":"26540:20:125"},"nativeSrc":"26537:47:125","nodeType":"YulIf","src":"26537:47:125"},{"nativeSrc":"26597:41:125","nodeType":"YulVariableDeclaration","src":"26597:41:125","value":{"arguments":[{"name":"data","nativeSrc":"26611:4:125","nodeType":"YulIdentifier","src":"26611:4:125"},{"arguments":[{"kind":"number","nativeSrc":"26621:1:125","nodeType":"YulLiteral","src":"26621:1:125","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"26628:3:125","nodeType":"YulIdentifier","src":"26628:3:125"},{"kind":"number","nativeSrc":"26633:2:125","nodeType":"YulLiteral","src":"26633:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"26624:3:125","nodeType":"YulIdentifier","src":"26624:3:125"},"nativeSrc":"26624:12:125","nodeType":"YulFunctionCall","src":"26624:12:125"}],"functionName":{"name":"shr","nativeSrc":"26617:3:125","nodeType":"YulIdentifier","src":"26617:3:125"},"nativeSrc":"26617:20:125","nodeType":"YulFunctionCall","src":"26617:20:125"}],"functionName":{"name":"add","nativeSrc":"26607:3:125","nodeType":"YulIdentifier","src":"26607:3:125"},"nativeSrc":"26607:31:125","nodeType":"YulFunctionCall","src":"26607:31:125"},"variables":[{"name":"_1","nativeSrc":"26601:2:125","nodeType":"YulTypedName","src":"26601:2:125","type":""}]},{"nativeSrc":"26651:24:125","nodeType":"YulVariableDeclaration","src":"26651:24:125","value":{"name":"deleteStart","nativeSrc":"26664:11:125","nodeType":"YulIdentifier","src":"26664:11:125"},"variables":[{"name":"start","nativeSrc":"26655:5:125","nodeType":"YulTypedName","src":"26655:5:125","type":""}]},{"body":{"nativeSrc":"26749:20:125","nodeType":"YulBlock","src":"26749:20:125","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"26758:5:125","nodeType":"YulIdentifier","src":"26758:5:125"},{"kind":"number","nativeSrc":"26765:1:125","nodeType":"YulLiteral","src":"26765:1:125","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"26751:6:125","nodeType":"YulIdentifier","src":"26751:6:125"},"nativeSrc":"26751:16:125","nodeType":"YulFunctionCall","src":"26751:16:125"},"nativeSrc":"26751:16:125","nodeType":"YulExpressionStatement","src":"26751:16:125"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"26699:5:125","nodeType":"YulIdentifier","src":"26699:5:125"},{"name":"_1","nativeSrc":"26706:2:125","nodeType":"YulIdentifier","src":"26706:2:125"}],"functionName":{"name":"lt","nativeSrc":"26696:2:125","nodeType":"YulIdentifier","src":"26696:2:125"},"nativeSrc":"26696:13:125","nodeType":"YulFunctionCall","src":"26696:13:125"},"nativeSrc":"26688:81:125","nodeType":"YulForLoop","post":{"nativeSrc":"26710:26:125","nodeType":"YulBlock","src":"26710:26:125","statements":[{"nativeSrc":"26712:22:125","nodeType":"YulAssignment","src":"26712:22:125","value":{"arguments":[{"name":"start","nativeSrc":"26725:5:125","nodeType":"YulIdentifier","src":"26725:5:125"},{"kind":"number","nativeSrc":"26732:1:125","nodeType":"YulLiteral","src":"26732:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"26721:3:125","nodeType":"YulIdentifier","src":"26721:3:125"},"nativeSrc":"26721:13:125","nodeType":"YulFunctionCall","src":"26721:13:125"},"variableNames":[{"name":"start","nativeSrc":"26712:5:125","nodeType":"YulIdentifier","src":"26712:5:125"}]}]},"pre":{"nativeSrc":"26692:3:125","nodeType":"YulBlock","src":"26692:3:125","statements":[]},"src":"26688:81:125"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"26364:3:125","nodeType":"YulIdentifier","src":"26364:3:125"},{"kind":"number","nativeSrc":"26369:2:125","nodeType":"YulLiteral","src":"26369:2:125","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"26361:2:125","nodeType":"YulIdentifier","src":"26361:2:125"},"nativeSrc":"26361:11:125","nodeType":"YulFunctionCall","src":"26361:11:125"},"nativeSrc":"26358:421:125","nodeType":"YulIf","src":"26358:421:125"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"26267:518:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"26320:5:125","nodeType":"YulTypedName","src":"26320:5:125","type":""},{"name":"len","nativeSrc":"26327:3:125","nodeType":"YulTypedName","src":"26327:3:125","type":""},{"name":"startIndex","nativeSrc":"26332:10:125","nodeType":"YulTypedName","src":"26332:10:125","type":""}],"src":"26267:518:125"},{"body":{"nativeSrc":"26875:81:125","nodeType":"YulBlock","src":"26875:81:125","statements":[{"nativeSrc":"26885:65:125","nodeType":"YulAssignment","src":"26885:65:125","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"26900:4:125","nodeType":"YulIdentifier","src":"26900:4:125"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"26918:1:125","nodeType":"YulLiteral","src":"26918:1:125","type":"","value":"3"},{"name":"len","nativeSrc":"26921:3:125","nodeType":"YulIdentifier","src":"26921:3:125"}],"functionName":{"name":"shl","nativeSrc":"26914:3:125","nodeType":"YulIdentifier","src":"26914:3:125"},"nativeSrc":"26914:11:125","nodeType":"YulFunctionCall","src":"26914:11:125"},{"arguments":[{"kind":"number","nativeSrc":"26931:1:125","nodeType":"YulLiteral","src":"26931:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"26927:3:125","nodeType":"YulIdentifier","src":"26927:3:125"},"nativeSrc":"26927:6:125","nodeType":"YulFunctionCall","src":"26927:6:125"}],"functionName":{"name":"shr","nativeSrc":"26910:3:125","nodeType":"YulIdentifier","src":"26910:3:125"},"nativeSrc":"26910:24:125","nodeType":"YulFunctionCall","src":"26910:24:125"}],"functionName":{"name":"not","nativeSrc":"26906:3:125","nodeType":"YulIdentifier","src":"26906:3:125"},"nativeSrc":"26906:29:125","nodeType":"YulFunctionCall","src":"26906:29:125"}],"functionName":{"name":"and","nativeSrc":"26896:3:125","nodeType":"YulIdentifier","src":"26896:3:125"},"nativeSrc":"26896:40:125","nodeType":"YulFunctionCall","src":"26896:40:125"},{"arguments":[{"kind":"number","nativeSrc":"26942:1:125","nodeType":"YulLiteral","src":"26942:1:125","type":"","value":"1"},{"name":"len","nativeSrc":"26945:3:125","nodeType":"YulIdentifier","src":"26945:3:125"}],"functionName":{"name":"shl","nativeSrc":"26938:3:125","nodeType":"YulIdentifier","src":"26938:3:125"},"nativeSrc":"26938:11:125","nodeType":"YulFunctionCall","src":"26938:11:125"}],"functionName":{"name":"or","nativeSrc":"26893:2:125","nodeType":"YulIdentifier","src":"26893:2:125"},"nativeSrc":"26893:57:125","nodeType":"YulFunctionCall","src":"26893:57:125"},"variableNames":[{"name":"used","nativeSrc":"26885:4:125","nodeType":"YulIdentifier","src":"26885:4:125"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"26790:166:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"26852:4:125","nodeType":"YulTypedName","src":"26852:4:125","type":""},{"name":"len","nativeSrc":"26858:3:125","nodeType":"YulTypedName","src":"26858:3:125","type":""}],"returnVariables":[{"name":"used","nativeSrc":"26866:4:125","nodeType":"YulTypedName","src":"26866:4:125","type":""}],"src":"26790:166:125"},{"body":{"nativeSrc":"27057:1203:125","nodeType":"YulBlock","src":"27057:1203:125","statements":[{"nativeSrc":"27067:24:125","nodeType":"YulVariableDeclaration","src":"27067:24:125","value":{"arguments":[{"name":"src","nativeSrc":"27087:3:125","nodeType":"YulIdentifier","src":"27087:3:125"}],"functionName":{"name":"mload","nativeSrc":"27081:5:125","nodeType":"YulIdentifier","src":"27081:5:125"},"nativeSrc":"27081:10:125","nodeType":"YulFunctionCall","src":"27081:10:125"},"variables":[{"name":"newLen","nativeSrc":"27071:6:125","nodeType":"YulTypedName","src":"27071:6:125","type":""}]},{"body":{"nativeSrc":"27134:22:125","nodeType":"YulBlock","src":"27134:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"27136:16:125","nodeType":"YulIdentifier","src":"27136:16:125"},"nativeSrc":"27136:18:125","nodeType":"YulFunctionCall","src":"27136:18:125"},"nativeSrc":"27136:18:125","nodeType":"YulExpressionStatement","src":"27136:18:125"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"27106:6:125","nodeType":"YulIdentifier","src":"27106:6:125"},{"kind":"number","nativeSrc":"27114:18:125","nodeType":"YulLiteral","src":"27114:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"27103:2:125","nodeType":"YulIdentifier","src":"27103:2:125"},"nativeSrc":"27103:30:125","nodeType":"YulFunctionCall","src":"27103:30:125"},"nativeSrc":"27100:56:125","nodeType":"YulIf","src":"27100:56:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"27209:4:125","nodeType":"YulIdentifier","src":"27209:4:125"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"27247:4:125","nodeType":"YulIdentifier","src":"27247:4:125"}],"functionName":{"name":"sload","nativeSrc":"27241:5:125","nodeType":"YulIdentifier","src":"27241:5:125"},"nativeSrc":"27241:11:125","nodeType":"YulFunctionCall","src":"27241:11:125"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"27215:25:125","nodeType":"YulIdentifier","src":"27215:25:125"},"nativeSrc":"27215:38:125","nodeType":"YulFunctionCall","src":"27215:38:125"},{"name":"newLen","nativeSrc":"27255:6:125","nodeType":"YulIdentifier","src":"27255:6:125"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"27165:43:125","nodeType":"YulIdentifier","src":"27165:43:125"},"nativeSrc":"27165:97:125","nodeType":"YulFunctionCall","src":"27165:97:125"},"nativeSrc":"27165:97:125","nodeType":"YulExpressionStatement","src":"27165:97:125"},{"nativeSrc":"27271:18:125","nodeType":"YulVariableDeclaration","src":"27271:18:125","value":{"kind":"number","nativeSrc":"27288:1:125","nodeType":"YulLiteral","src":"27288:1:125","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"27275:9:125","nodeType":"YulTypedName","src":"27275:9:125","type":""}]},{"nativeSrc":"27298:17:125","nodeType":"YulAssignment","src":"27298:17:125","value":{"kind":"number","nativeSrc":"27311:4:125","nodeType":"YulLiteral","src":"27311:4:125","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"27298:9:125","nodeType":"YulIdentifier","src":"27298:9:125"}]},{"cases":[{"body":{"nativeSrc":"27361:642:125","nodeType":"YulBlock","src":"27361:642:125","statements":[{"nativeSrc":"27375:35:125","nodeType":"YulVariableDeclaration","src":"27375:35:125","value":{"arguments":[{"name":"newLen","nativeSrc":"27394:6:125","nodeType":"YulIdentifier","src":"27394:6:125"},{"arguments":[{"kind":"number","nativeSrc":"27406:2:125","nodeType":"YulLiteral","src":"27406:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"27402:3:125","nodeType":"YulIdentifier","src":"27402:3:125"},"nativeSrc":"27402:7:125","nodeType":"YulFunctionCall","src":"27402:7:125"}],"functionName":{"name":"and","nativeSrc":"27390:3:125","nodeType":"YulIdentifier","src":"27390:3:125"},"nativeSrc":"27390:20:125","nodeType":"YulFunctionCall","src":"27390:20:125"},"variables":[{"name":"loopEnd","nativeSrc":"27379:7:125","nodeType":"YulTypedName","src":"27379:7:125","type":""}]},{"nativeSrc":"27423:49:125","nodeType":"YulVariableDeclaration","src":"27423:49:125","value":{"arguments":[{"name":"slot","nativeSrc":"27467:4:125","nodeType":"YulIdentifier","src":"27467:4:125"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"27437:29:125","nodeType":"YulIdentifier","src":"27437:29:125"},"nativeSrc":"27437:35:125","nodeType":"YulFunctionCall","src":"27437:35:125"},"variables":[{"name":"dstPtr","nativeSrc":"27427:6:125","nodeType":"YulTypedName","src":"27427:6:125","type":""}]},{"nativeSrc":"27485:10:125","nodeType":"YulVariableDeclaration","src":"27485:10:125","value":{"kind":"number","nativeSrc":"27494:1:125","nodeType":"YulLiteral","src":"27494:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"27489:1:125","nodeType":"YulTypedName","src":"27489:1:125","type":""}]},{"body":{"nativeSrc":"27565:165:125","nodeType":"YulBlock","src":"27565:165:125","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"27590:6:125","nodeType":"YulIdentifier","src":"27590:6:125"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"27608:3:125","nodeType":"YulIdentifier","src":"27608:3:125"},{"name":"srcOffset","nativeSrc":"27613:9:125","nodeType":"YulIdentifier","src":"27613:9:125"}],"functionName":{"name":"add","nativeSrc":"27604:3:125","nodeType":"YulIdentifier","src":"27604:3:125"},"nativeSrc":"27604:19:125","nodeType":"YulFunctionCall","src":"27604:19:125"}],"functionName":{"name":"mload","nativeSrc":"27598:5:125","nodeType":"YulIdentifier","src":"27598:5:125"},"nativeSrc":"27598:26:125","nodeType":"YulFunctionCall","src":"27598:26:125"}],"functionName":{"name":"sstore","nativeSrc":"27583:6:125","nodeType":"YulIdentifier","src":"27583:6:125"},"nativeSrc":"27583:42:125","nodeType":"YulFunctionCall","src":"27583:42:125"},"nativeSrc":"27583:42:125","nodeType":"YulExpressionStatement","src":"27583:42:125"},{"nativeSrc":"27642:24:125","nodeType":"YulAssignment","src":"27642:24:125","value":{"arguments":[{"name":"dstPtr","nativeSrc":"27656:6:125","nodeType":"YulIdentifier","src":"27656:6:125"},{"kind":"number","nativeSrc":"27664:1:125","nodeType":"YulLiteral","src":"27664:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"27652:3:125","nodeType":"YulIdentifier","src":"27652:3:125"},"nativeSrc":"27652:14:125","nodeType":"YulFunctionCall","src":"27652:14:125"},"variableNames":[{"name":"dstPtr","nativeSrc":"27642:6:125","nodeType":"YulIdentifier","src":"27642:6:125"}]},{"nativeSrc":"27683:33:125","nodeType":"YulAssignment","src":"27683:33:125","value":{"arguments":[{"name":"srcOffset","nativeSrc":"27700:9:125","nodeType":"YulIdentifier","src":"27700:9:125"},{"kind":"number","nativeSrc":"27711:4:125","nodeType":"YulLiteral","src":"27711:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"27696:3:125","nodeType":"YulIdentifier","src":"27696:3:125"},"nativeSrc":"27696:20:125","nodeType":"YulFunctionCall","src":"27696:20:125"},"variableNames":[{"name":"srcOffset","nativeSrc":"27683:9:125","nodeType":"YulIdentifier","src":"27683:9:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"27519:1:125","nodeType":"YulIdentifier","src":"27519:1:125"},{"name":"loopEnd","nativeSrc":"27522:7:125","nodeType":"YulIdentifier","src":"27522:7:125"}],"functionName":{"name":"lt","nativeSrc":"27516:2:125","nodeType":"YulIdentifier","src":"27516:2:125"},"nativeSrc":"27516:14:125","nodeType":"YulFunctionCall","src":"27516:14:125"},"nativeSrc":"27508:222:125","nodeType":"YulForLoop","post":{"nativeSrc":"27531:21:125","nodeType":"YulBlock","src":"27531:21:125","statements":[{"nativeSrc":"27533:17:125","nodeType":"YulAssignment","src":"27533:17:125","value":{"arguments":[{"name":"i","nativeSrc":"27542:1:125","nodeType":"YulIdentifier","src":"27542:1:125"},{"kind":"number","nativeSrc":"27545:4:125","nodeType":"YulLiteral","src":"27545:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"27538:3:125","nodeType":"YulIdentifier","src":"27538:3:125"},"nativeSrc":"27538:12:125","nodeType":"YulFunctionCall","src":"27538:12:125"},"variableNames":[{"name":"i","nativeSrc":"27533:1:125","nodeType":"YulIdentifier","src":"27533:1:125"}]}]},"pre":{"nativeSrc":"27512:3:125","nodeType":"YulBlock","src":"27512:3:125","statements":[]},"src":"27508:222:125"},{"body":{"nativeSrc":"27778:166:125","nodeType":"YulBlock","src":"27778:166:125","statements":[{"nativeSrc":"27796:43:125","nodeType":"YulVariableDeclaration","src":"27796:43:125","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"27823:3:125","nodeType":"YulIdentifier","src":"27823:3:125"},{"name":"srcOffset","nativeSrc":"27828:9:125","nodeType":"YulIdentifier","src":"27828:9:125"}],"functionName":{"name":"add","nativeSrc":"27819:3:125","nodeType":"YulIdentifier","src":"27819:3:125"},"nativeSrc":"27819:19:125","nodeType":"YulFunctionCall","src":"27819:19:125"}],"functionName":{"name":"mload","nativeSrc":"27813:5:125","nodeType":"YulIdentifier","src":"27813:5:125"},"nativeSrc":"27813:26:125","nodeType":"YulFunctionCall","src":"27813:26:125"},"variables":[{"name":"lastValue","nativeSrc":"27800:9:125","nodeType":"YulTypedName","src":"27800:9:125","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"27863:6:125","nodeType":"YulIdentifier","src":"27863:6:125"},{"arguments":[{"name":"lastValue","nativeSrc":"27875:9:125","nodeType":"YulIdentifier","src":"27875:9:125"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"27902:1:125","nodeType":"YulLiteral","src":"27902:1:125","type":"","value":"3"},{"name":"newLen","nativeSrc":"27905:6:125","nodeType":"YulIdentifier","src":"27905:6:125"}],"functionName":{"name":"shl","nativeSrc":"27898:3:125","nodeType":"YulIdentifier","src":"27898:3:125"},"nativeSrc":"27898:14:125","nodeType":"YulFunctionCall","src":"27898:14:125"},{"kind":"number","nativeSrc":"27914:3:125","nodeType":"YulLiteral","src":"27914:3:125","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"27894:3:125","nodeType":"YulIdentifier","src":"27894:3:125"},"nativeSrc":"27894:24:125","nodeType":"YulFunctionCall","src":"27894:24:125"},{"arguments":[{"kind":"number","nativeSrc":"27924:1:125","nodeType":"YulLiteral","src":"27924:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"27920:3:125","nodeType":"YulIdentifier","src":"27920:3:125"},"nativeSrc":"27920:6:125","nodeType":"YulFunctionCall","src":"27920:6:125"}],"functionName":{"name":"shr","nativeSrc":"27890:3:125","nodeType":"YulIdentifier","src":"27890:3:125"},"nativeSrc":"27890:37:125","nodeType":"YulFunctionCall","src":"27890:37:125"}],"functionName":{"name":"not","nativeSrc":"27886:3:125","nodeType":"YulIdentifier","src":"27886:3:125"},"nativeSrc":"27886:42:125","nodeType":"YulFunctionCall","src":"27886:42:125"}],"functionName":{"name":"and","nativeSrc":"27871:3:125","nodeType":"YulIdentifier","src":"27871:3:125"},"nativeSrc":"27871:58:125","nodeType":"YulFunctionCall","src":"27871:58:125"}],"functionName":{"name":"sstore","nativeSrc":"27856:6:125","nodeType":"YulIdentifier","src":"27856:6:125"},"nativeSrc":"27856:74:125","nodeType":"YulFunctionCall","src":"27856:74:125"},"nativeSrc":"27856:74:125","nodeType":"YulExpressionStatement","src":"27856:74:125"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"27749:7:125","nodeType":"YulIdentifier","src":"27749:7:125"},{"name":"newLen","nativeSrc":"27758:6:125","nodeType":"YulIdentifier","src":"27758:6:125"}],"functionName":{"name":"lt","nativeSrc":"27746:2:125","nodeType":"YulIdentifier","src":"27746:2:125"},"nativeSrc":"27746:19:125","nodeType":"YulFunctionCall","src":"27746:19:125"},"nativeSrc":"27743:201:125","nodeType":"YulIf","src":"27743:201:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"27964:4:125","nodeType":"YulIdentifier","src":"27964:4:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"27978:1:125","nodeType":"YulLiteral","src":"27978:1:125","type":"","value":"1"},{"name":"newLen","nativeSrc":"27981:6:125","nodeType":"YulIdentifier","src":"27981:6:125"}],"functionName":{"name":"shl","nativeSrc":"27974:3:125","nodeType":"YulIdentifier","src":"27974:3:125"},"nativeSrc":"27974:14:125","nodeType":"YulFunctionCall","src":"27974:14:125"},{"kind":"number","nativeSrc":"27990:1:125","nodeType":"YulLiteral","src":"27990:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"27970:3:125","nodeType":"YulIdentifier","src":"27970:3:125"},"nativeSrc":"27970:22:125","nodeType":"YulFunctionCall","src":"27970:22:125"}],"functionName":{"name":"sstore","nativeSrc":"27957:6:125","nodeType":"YulIdentifier","src":"27957:6:125"},"nativeSrc":"27957:36:125","nodeType":"YulFunctionCall","src":"27957:36:125"},"nativeSrc":"27957:36:125","nodeType":"YulExpressionStatement","src":"27957:36:125"}]},"nativeSrc":"27354:649:125","nodeType":"YulCase","src":"27354:649:125","value":{"kind":"number","nativeSrc":"27359:1:125","nodeType":"YulLiteral","src":"27359:1:125","type":"","value":"1"}},{"body":{"nativeSrc":"28020:234:125","nodeType":"YulBlock","src":"28020:234:125","statements":[{"nativeSrc":"28034:14:125","nodeType":"YulVariableDeclaration","src":"28034:14:125","value":{"kind":"number","nativeSrc":"28047:1:125","nodeType":"YulLiteral","src":"28047:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"28038:5:125","nodeType":"YulTypedName","src":"28038:5:125","type":""}]},{"body":{"nativeSrc":"28083:67:125","nodeType":"YulBlock","src":"28083:67:125","statements":[{"nativeSrc":"28101:35:125","nodeType":"YulAssignment","src":"28101:35:125","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"28120:3:125","nodeType":"YulIdentifier","src":"28120:3:125"},{"name":"srcOffset","nativeSrc":"28125:9:125","nodeType":"YulIdentifier","src":"28125:9:125"}],"functionName":{"name":"add","nativeSrc":"28116:3:125","nodeType":"YulIdentifier","src":"28116:3:125"},"nativeSrc":"28116:19:125","nodeType":"YulFunctionCall","src":"28116:19:125"}],"functionName":{"name":"mload","nativeSrc":"28110:5:125","nodeType":"YulIdentifier","src":"28110:5:125"},"nativeSrc":"28110:26:125","nodeType":"YulFunctionCall","src":"28110:26:125"},"variableNames":[{"name":"value","nativeSrc":"28101:5:125","nodeType":"YulIdentifier","src":"28101:5:125"}]}]},"condition":{"name":"newLen","nativeSrc":"28064:6:125","nodeType":"YulIdentifier","src":"28064:6:125"},"nativeSrc":"28061:89:125","nodeType":"YulIf","src":"28061:89:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"28170:4:125","nodeType":"YulIdentifier","src":"28170:4:125"},{"arguments":[{"name":"value","nativeSrc":"28229:5:125","nodeType":"YulIdentifier","src":"28229:5:125"},{"name":"newLen","nativeSrc":"28236:6:125","nodeType":"YulIdentifier","src":"28236:6:125"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"28176:52:125","nodeType":"YulIdentifier","src":"28176:52:125"},"nativeSrc":"28176:67:125","nodeType":"YulFunctionCall","src":"28176:67:125"}],"functionName":{"name":"sstore","nativeSrc":"28163:6:125","nodeType":"YulIdentifier","src":"28163:6:125"},"nativeSrc":"28163:81:125","nodeType":"YulFunctionCall","src":"28163:81:125"},"nativeSrc":"28163:81:125","nodeType":"YulExpressionStatement","src":"28163:81:125"}]},"nativeSrc":"28012:242:125","nodeType":"YulCase","src":"28012:242:125","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"27334:6:125","nodeType":"YulIdentifier","src":"27334:6:125"},{"kind":"number","nativeSrc":"27342:2:125","nodeType":"YulLiteral","src":"27342:2:125","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"27331:2:125","nodeType":"YulIdentifier","src":"27331:2:125"},"nativeSrc":"27331:14:125","nodeType":"YulFunctionCall","src":"27331:14:125"},"nativeSrc":"27324:930:125","nodeType":"YulSwitch","src":"27324:930:125"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"26961:1299:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"27042:4:125","nodeType":"YulTypedName","src":"27042:4:125","type":""},{"name":"src","nativeSrc":"27048:3:125","nodeType":"YulTypedName","src":"27048:3:125","type":""}],"src":"26961:1299:125"},{"body":{"nativeSrc":"28401:130:125","nodeType":"YulBlock","src":"28401:130:125","statements":[{"nativeSrc":"28411:26:125","nodeType":"YulAssignment","src":"28411:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"28423:9:125","nodeType":"YulIdentifier","src":"28423:9:125"},{"kind":"number","nativeSrc":"28434:2:125","nodeType":"YulLiteral","src":"28434:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28419:3:125","nodeType":"YulIdentifier","src":"28419:3:125"},"nativeSrc":"28419:18:125","nodeType":"YulFunctionCall","src":"28419:18:125"},"variableNames":[{"name":"tail","nativeSrc":"28411:4:125","nodeType":"YulIdentifier","src":"28411:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28453:9:125","nodeType":"YulIdentifier","src":"28453:9:125"},{"arguments":[{"name":"value0","nativeSrc":"28468:6:125","nodeType":"YulIdentifier","src":"28468:6:125"},{"kind":"number","nativeSrc":"28476:4:125","nodeType":"YulLiteral","src":"28476:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"28464:3:125","nodeType":"YulIdentifier","src":"28464:3:125"},"nativeSrc":"28464:17:125","nodeType":"YulFunctionCall","src":"28464:17:125"}],"functionName":{"name":"mstore","nativeSrc":"28446:6:125","nodeType":"YulIdentifier","src":"28446:6:125"},"nativeSrc":"28446:36:125","nodeType":"YulFunctionCall","src":"28446:36:125"},"nativeSrc":"28446:36:125","nodeType":"YulExpressionStatement","src":"28446:36:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28502:9:125","nodeType":"YulIdentifier","src":"28502:9:125"},{"kind":"number","nativeSrc":"28513:2:125","nodeType":"YulLiteral","src":"28513:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28498:3:125","nodeType":"YulIdentifier","src":"28498:3:125"},"nativeSrc":"28498:18:125","nodeType":"YulFunctionCall","src":"28498:18:125"},{"name":"value1","nativeSrc":"28518:6:125","nodeType":"YulIdentifier","src":"28518:6:125"}],"functionName":{"name":"mstore","nativeSrc":"28491:6:125","nodeType":"YulIdentifier","src":"28491:6:125"},"nativeSrc":"28491:34:125","nodeType":"YulFunctionCall","src":"28491:34:125"},"nativeSrc":"28491:34:125","nodeType":"YulExpressionStatement","src":"28491:34:125"}]},"name":"abi_encode_tuple_t_rational_16_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"28265:266:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28362:9:125","nodeType":"YulTypedName","src":"28362:9:125","type":""},{"name":"value1","nativeSrc":"28373:6:125","nodeType":"YulTypedName","src":"28373:6:125","type":""},{"name":"value0","nativeSrc":"28381:6:125","nodeType":"YulTypedName","src":"28381:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28392:4:125","nodeType":"YulTypedName","src":"28392:4:125","type":""}],"src":"28265:266:125"},{"body":{"nativeSrc":"28717:217:125","nodeType":"YulBlock","src":"28717:217:125","statements":[{"nativeSrc":"28727:27:125","nodeType":"YulAssignment","src":"28727:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"28739:9:125","nodeType":"YulIdentifier","src":"28739:9:125"},{"kind":"number","nativeSrc":"28750:3:125","nodeType":"YulLiteral","src":"28750:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"28735:3:125","nodeType":"YulIdentifier","src":"28735:3:125"},"nativeSrc":"28735:19:125","nodeType":"YulFunctionCall","src":"28735:19:125"},"variableNames":[{"name":"tail","nativeSrc":"28727:4:125","nodeType":"YulIdentifier","src":"28727:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28770:9:125","nodeType":"YulIdentifier","src":"28770:9:125"},{"name":"value0","nativeSrc":"28781:6:125","nodeType":"YulIdentifier","src":"28781:6:125"}],"functionName":{"name":"mstore","nativeSrc":"28763:6:125","nodeType":"YulIdentifier","src":"28763:6:125"},"nativeSrc":"28763:25:125","nodeType":"YulFunctionCall","src":"28763:25:125"},"nativeSrc":"28763:25:125","nodeType":"YulExpressionStatement","src":"28763:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28808:9:125","nodeType":"YulIdentifier","src":"28808:9:125"},{"kind":"number","nativeSrc":"28819:2:125","nodeType":"YulLiteral","src":"28819:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28804:3:125","nodeType":"YulIdentifier","src":"28804:3:125"},"nativeSrc":"28804:18:125","nodeType":"YulFunctionCall","src":"28804:18:125"},{"arguments":[{"name":"value1","nativeSrc":"28828:6:125","nodeType":"YulIdentifier","src":"28828:6:125"},{"kind":"number","nativeSrc":"28836:4:125","nodeType":"YulLiteral","src":"28836:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"28824:3:125","nodeType":"YulIdentifier","src":"28824:3:125"},"nativeSrc":"28824:17:125","nodeType":"YulFunctionCall","src":"28824:17:125"}],"functionName":{"name":"mstore","nativeSrc":"28797:6:125","nodeType":"YulIdentifier","src":"28797:6:125"},"nativeSrc":"28797:45:125","nodeType":"YulFunctionCall","src":"28797:45:125"},"nativeSrc":"28797:45:125","nodeType":"YulExpressionStatement","src":"28797:45:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28862:9:125","nodeType":"YulIdentifier","src":"28862:9:125"},{"kind":"number","nativeSrc":"28873:2:125","nodeType":"YulLiteral","src":"28873:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28858:3:125","nodeType":"YulIdentifier","src":"28858:3:125"},"nativeSrc":"28858:18:125","nodeType":"YulFunctionCall","src":"28858:18:125"},{"name":"value2","nativeSrc":"28878:6:125","nodeType":"YulIdentifier","src":"28878:6:125"}],"functionName":{"name":"mstore","nativeSrc":"28851:6:125","nodeType":"YulIdentifier","src":"28851:6:125"},"nativeSrc":"28851:34:125","nodeType":"YulFunctionCall","src":"28851:34:125"},"nativeSrc":"28851:34:125","nodeType":"YulExpressionStatement","src":"28851:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28905:9:125","nodeType":"YulIdentifier","src":"28905:9:125"},{"kind":"number","nativeSrc":"28916:2:125","nodeType":"YulLiteral","src":"28916:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"28901:3:125","nodeType":"YulIdentifier","src":"28901:3:125"},"nativeSrc":"28901:18:125","nodeType":"YulFunctionCall","src":"28901:18:125"},{"name":"value3","nativeSrc":"28921:6:125","nodeType":"YulIdentifier","src":"28921:6:125"}],"functionName":{"name":"mstore","nativeSrc":"28894:6:125","nodeType":"YulIdentifier","src":"28894:6:125"},"nativeSrc":"28894:34:125","nodeType":"YulFunctionCall","src":"28894:34:125"},"nativeSrc":"28894:34:125","nodeType":"YulExpressionStatement","src":"28894:34:125"}]},"name":"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"28536:398:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28662:9:125","nodeType":"YulTypedName","src":"28662:9:125","type":""},{"name":"value3","nativeSrc":"28673:6:125","nodeType":"YulTypedName","src":"28673:6:125","type":""},{"name":"value2","nativeSrc":"28681:6:125","nodeType":"YulTypedName","src":"28681:6:125","type":""},{"name":"value1","nativeSrc":"28689:6:125","nodeType":"YulTypedName","src":"28689:6:125","type":""},{"name":"value0","nativeSrc":"28697:6:125","nodeType":"YulTypedName","src":"28697:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28708:4:125","nodeType":"YulTypedName","src":"28708:4:125","type":""}],"src":"28536:398:125"},{"body":{"nativeSrc":"29075:130:125","nodeType":"YulBlock","src":"29075:130:125","statements":[{"nativeSrc":"29085:26:125","nodeType":"YulAssignment","src":"29085:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"29097:9:125","nodeType":"YulIdentifier","src":"29097:9:125"},{"kind":"number","nativeSrc":"29108:2:125","nodeType":"YulLiteral","src":"29108:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29093:3:125","nodeType":"YulIdentifier","src":"29093:3:125"},"nativeSrc":"29093:18:125","nodeType":"YulFunctionCall","src":"29093:18:125"},"variableNames":[{"name":"tail","nativeSrc":"29085:4:125","nodeType":"YulIdentifier","src":"29085:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29127:9:125","nodeType":"YulIdentifier","src":"29127:9:125"},{"arguments":[{"name":"value0","nativeSrc":"29142:6:125","nodeType":"YulIdentifier","src":"29142:6:125"},{"kind":"number","nativeSrc":"29150:4:125","nodeType":"YulLiteral","src":"29150:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"29138:3:125","nodeType":"YulIdentifier","src":"29138:3:125"},"nativeSrc":"29138:17:125","nodeType":"YulFunctionCall","src":"29138:17:125"}],"functionName":{"name":"mstore","nativeSrc":"29120:6:125","nodeType":"YulIdentifier","src":"29120:6:125"},"nativeSrc":"29120:36:125","nodeType":"YulFunctionCall","src":"29120:36:125"},"nativeSrc":"29120:36:125","nodeType":"YulExpressionStatement","src":"29120:36:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29176:9:125","nodeType":"YulIdentifier","src":"29176:9:125"},{"kind":"number","nativeSrc":"29187:2:125","nodeType":"YulLiteral","src":"29187:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29172:3:125","nodeType":"YulIdentifier","src":"29172:3:125"},"nativeSrc":"29172:18:125","nodeType":"YulFunctionCall","src":"29172:18:125"},{"name":"value1","nativeSrc":"29192:6:125","nodeType":"YulIdentifier","src":"29192:6:125"}],"functionName":{"name":"mstore","nativeSrc":"29165:6:125","nodeType":"YulIdentifier","src":"29165:6:125"},"nativeSrc":"29165:34:125","nodeType":"YulFunctionCall","src":"29165:34:125"},"nativeSrc":"29165:34:125","nodeType":"YulExpressionStatement","src":"29165:34:125"}]},"name":"abi_encode_tuple_t_rational_96_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"28939:266:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29036:9:125","nodeType":"YulTypedName","src":"29036:9:125","type":""},{"name":"value1","nativeSrc":"29047:6:125","nodeType":"YulTypedName","src":"29047:6:125","type":""},{"name":"value0","nativeSrc":"29055:6:125","nodeType":"YulTypedName","src":"29055:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29066:4:125","nodeType":"YulTypedName","src":"29066:4:125","type":""}],"src":"28939:266:125"}]},"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_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_string(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_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string(value0, add(headStart, 32))\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_addresst_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_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_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 validator_revert_bool(value)\n    {\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IERC4626_$22463t_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        validator_revert_bool(value_1)\n        value1 := value_1\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        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 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_decode_tuple_t_uint256t_addresst_addresst_address(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { 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        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        let value_3 := calldataload(add(headStart, 96))\n        validator_revert_address(value_3)\n        value3 := value_3\n    }\n    function abi_decode_tuple_t_uint256t_addresst_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { 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        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\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_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_uint256t_uint256t_uint256t_int256t_addresst_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 192) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := calldataload(add(headStart, 128))\n        validator_revert_address(value_4)\n        value4 := value_4\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 160))\n        value5 := value_5\n    }\n    function abi_encode_tuple_t_contract$_IPolicyPool_$14638__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 panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function abi_decode_available_length_bytes(src, length, end) -> array\n    {\n        let size := 0\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let result := and(add(length, 31), not(31))\n        size := add(result, 0x20)\n        let memPtr := 0\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(result, 63), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        array := memPtr\n        mstore(memPtr, length)\n        if gt(add(src, length), end) { revert(0, 0) }\n        calldatacopy(add(memPtr, 0x20), src, length)\n        mstore(add(add(memPtr, length), 0x20), 0)\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptr(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 offset := calldataload(add(headStart, 32))\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        value1 := abi_decode_available_length_bytes(add(_1, 32), calldataload(_1), dataEnd)\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_decode_string(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        array := abi_decode_available_length_bytes(add(offset, 0x20), calldataload(offset), end)\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        value0 := abi_decode_string(add(headStart, offset), dataEnd)\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        value1 := abi_decode_string(add(headStart, offset_1), dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 96))\n        value3 := value_1\n    }\n    function abi_decode_tuple_t_bool(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value6, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, shl(248, 255)))\n        mstore(add(headStart, 32), 224)\n        let tail_1 := abi_encode_string(value1, add(headStart, 224))\n        mstore(add(headStart, 64), sub(tail_1, headStart))\n        let tail_2 := abi_encode_string(value2, tail_1)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 160), value5)\n        mstore(add(headStart, 192), sub(tail_2, headStart))\n        let pos := tail_2\n        let length := mload(value6)\n        mstore(tail_2, length)\n        pos := add(tail_2, 32)\n        let srcPtr := add(value6, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, 32)\n            srcPtr := add(srcPtr, 32)\n        }\n        tail := pos\n    }\n    function abi_decode_tuple_t_contract$_ILPWhitelist_$14383(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_uint256t_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_encode_tuple_t_contract$_ILPWhitelist_$14383__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_uint256(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_decode_tuple_t_uint256t_uint256t_uint256t_int256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n    }\n    function abi_encode_tuple_t_contract$_IERC4626_$22463__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_enum$_Parameter_$14171t_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(lt(value, 4)) { revert(0, 0) }\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_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_contract$_ICooler_$14162(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_uint8(value)\n    {\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { 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 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := calldataload(add(headStart, 128))\n        validator_revert_uint8(value_4)\n        value4 := value_4\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 160))\n        value5 := value_5\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 192))\n        value6 := value_6\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_encode_tuple_t_contract$_IERC20Metadata_$24925__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 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 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_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        validator_revert_address(value)\n        value0 := value\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_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\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    }\n    function checked_sub_t_int256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        let _1 := slt(y, 0)\n        if or(and(iszero(_1), sgt(diff, x)), and(_1, slt(diff, x))) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_contract$_EToken_$7681_t_address_t_uint256__to_t_address_t_address_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), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_decode_tuple_t_uint40_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, 0xffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_encode_tuple_t_contract$_ICooler_$14162__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_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_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_tuple_t_contract$_EToken_$7681_t_address_t_address_t_uint256__to_t_address_t_address_t_address_t_uint256__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), value3)\n    }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint8_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_uint8(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_rational_1_by_1__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_stringliteral_2e5045ff73280aa8e8acd8c82710f23812497f87f7f576e2220a2ddd0d45eade__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), \"EIP712: Uninitialized\")\n        tail := add(headStart, 96)\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_contract$_ILPWhitelist_$14383_t_contract$_ILPWhitelist_$14383__to_t_address_t_address__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(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_contract$_EToken_$7681__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) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\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_enum_Parameter(value, pos)\n    {\n        if iszero(lt(value, 4))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n        mstore(pos, value)\n    }\n    function abi_encode_tuple_t_enum$_Parameter_$14171__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        abi_encode_enum_Parameter(value0, headStart)\n    }\n    function abi_encode_tuple_t_enum$_Parameter_$14171_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        abi_encode_enum_Parameter(value0, headStart)\n        mstore(add(headStart, 32), value1)\n    }\n    function negate_t_int256(value) -> ret\n    {\n        if eq(value, shl(255, 1)) { panic_error_0x11() }\n        ret := sub(0, value)\n    }\n    function abi_encode_tuple_t_contract$_ICooler_$14162_t_contract$_ICooler_$14162__to_t_address_t_address__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(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        mstore(headStart, value0)\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), value3)\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__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(160, 1), 1)))\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\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 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 checked_mul_t_uint256(x, y) -> product\n    {\n        product := mul(x, y)\n        if iszero(or(iszero(x), eq(y, div(product, x)))) { panic_error_0x11() }\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function abi_encode_tuple_t_uint256_t_uint256_t_int256__to_t_uint256_t_uint256_t_int256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_decode_tuple_t_bytes32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function checked_add_t_int256(x, y) -> sum\n    {\n        sum := add(x, y)\n        let _1 := slt(sum, y)\n        let _2 := slt(x, 0)\n        if or(and(iszero(_2), _1), and(_2, iszero(_1))) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_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), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_rational_128_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 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, 0xffffffffffffffff) { 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_rational_16_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 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    function abi_encode_tuple_t_rational_96_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":125,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"10959":[{"length":32,"start":1438},{"length":32,"start":3817},{"length":32,"start":4515},{"length":32,"start":5016},{"length":32,"start":6740},{"length":32,"start":7213},{"length":32,"start":9631},{"length":32,"start":10537},{"length":32,"start":10802},{"length":32,"start":16254}],"23450":[{"length":32,"start":12695},{"length":32,"start":12736},{"length":32,"start":13560}]},"linkReferences":{},"object":"608060405260043610610371575f3560e01c80637d919a97116101c8578063ad3cb1cc116100fd578063d17e6c931161009d578063dfcb48bd1161006d578063dfcb48bd146109ce578063e3a8e29c146109e2578063e5a6b10f14610a01578063ee01a18314610a15575f5ffd5b8063d17e6c9314610952578063d336078c14610971578063d505accf14610990578063dd62ed3e146109af575f5ffd5b8063c1cca2b3116100d8578063c1cca2b3146108e3578063c3df9dac14610902578063cda4bcc214610921578063cf6a9a9414610935575f5ffd5b8063ad3cb1cc14610882578063b1bf962d146108b2578063ba4e8df5146108cf575f5ffd5b80639d90724d11610168578063a227dc4111610143578063a227dc4114610808578063a7f8a5e214610827578063a9059cbb14610844578063ac860f7414610863575f5ffd5b80639d90724d146107b1578063a08f2203146107d5578063a0ce552d146107e9575f5ffd5b8063854cff2f116101a3578063854cff2f14610742578063918344d31461076157806393e59dc11461078057806395d89b411461079d575f5ffd5b80637d919a97146106e85780637ecebe00146106fc57806384b0196e1461071b575f5ffd5b806333481fc9116102a95780634ffcda8c116102495780636fe0e395116102195780636fe0e3951461066c57806370a082311461068b57806376c7fc55146106aa57806379d989fb146106c9575f5ffd5b80634ffcda8c1461061157806352d1902d146106305780636c321c8a146106445780636c6f454214610658575f5ffd5b80634d15eb03116102845780634d15eb03146105905780634eb978a4146105d65780634f1ef286146105ea5780634fe0bd1e146105fd575f5ffd5b806333481fc91461053e5780633644e5151461055d5780633ad2820b14610571575f5ffd5b806318160ddd1161031457806323b872dd116102ef57806323b872dd146104bb57806323e103a8146104da5780632e2d2984146104f9578063313ce56714610518575f5ffd5b806318160ddd14610467578063194448e51461047b5780631da24f3e1461049c575f5ffd5b8063095ea7b31161034f578063095ea7b3146103ec5780630afbcdc91461040b578063159ec2df1461043f57806316db000f14610453575f5ffd5b806301ffc9a7146103755780630600a865146103a957806306fdde03146103cb575b5f5ffd5b348015610380575f5ffd5b5061039461038f36600461489c565b610a29565b60405190151581526020015b60405180910390f35b3480156103b4575f5ffd5b506103bd610a8a565b6040519081526020016103a0565b3480156103d6575f5ffd5b506103df610ae6565b6040516103a091906148f1565b3480156103f7575f5ffd5b50610394610406366004614917565b610b8b565b348015610416575f5ffd5b5061042a610425366004614941565b610ba2565b604080519283526020830191909152016103a0565b34801561044a575f5ffd5b506103bd610bc4565b34801561045e575f5ffd5b506103bd610c04565b348015610472575f5ffd5b506103bd610c26565b348015610486575f5ffd5b5061049a610495366004614969565b610c54565b005b3480156104a7575f5ffd5b506103bd6104b6366004614941565b610eae565b3480156104c6575f5ffd5b506103946104d53660046149a0565b610eb8565b3480156104e5575f5ffd5b506103bd6104f43660046149de565b610edd565b348015610504575f5ffd5b5061049a610513366004614a2e565b611198565b348015610523575f5ffd5b5061052c611395565b60405160ff90911681526020016103a0565b348015610549575f5ffd5b506103bd610558366004614941565b611475565b348015610568575f5ffd5b506103bd6114f7565b34801561057c575f5ffd5b5061049a61058b366004614a6d565b611500565b34801561059b575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020016103a0565b3480156105e1575f5ffd5b5061049a6115a6565b61049a6105f8366004614b49565b6116d6565b348015610608575f5ffd5b506103bd6116f5565b34801561061c575f5ffd5b5061049a61062b366004614ba9565b611709565b34801561063b575f5ffd5b506103bd61186c565b34801561064f575f5ffd5b506103bd611887565b348015610663575f5ffd5b506103bd611905565b348015610677575f5ffd5b5061049a610686366004614bf0565b611918565b348015610696575f5ffd5b506103bd6106a5366004614941565b611a30565b3480156106b5575f5ffd5b5061049a6106c4366004614941565b611a49565b3480156106d4575f5ffd5b506103bd6106e3366004614c64565b611b2d565b3480156106f3575f5ffd5b506032546103bd565b348015610707575f5ffd5b506103bd610716366004614941565b611b67565b348015610726575f5ffd5b5061072f611b71565b6040516103a09796959493929190614c7f565b34801561074d575f5ffd5b5061049a61075c366004614941565b611c1a565b34801561076c575f5ffd5b5061049a61077b366004614d15565b611d55565b34801561078b575f5ffd5b506067546001600160a01b03166105be565b3480156107a8575f5ffd5b506103df611e9a565b3480156107bc575f5ffd5b50606554600160801b90046001600160801b03166103bd565b3480156107e0575f5ffd5b506103bd611ed8565b3480156107f4575f5ffd5b5061049a610803366004614d38565b611fcb565b348015610813575f5ffd5b5061049a610822366004614d4f565b61201e565b348015610832575f5ffd5b506068546001600160a01b03166105be565b34801561084f575f5ffd5b5061039461085e366004614917565b612076565b34801561086e575f5ffd5b5061049a61087d366004614d38565b612083565b34801561088d575f5ffd5b506103df604051806040016040528060058152602001640352e302e360dc1b81525081565b3480156108bd575f5ffd5b506064546001600160801b03166103bd565b3480156108da575f5ffd5b506103bd612209565b3480156108ee575f5ffd5b5061049a6108fd366004614d7e565b612222565b34801561090d575f5ffd5b506103bd61091c366004614d15565b612426565b34801561092c575f5ffd5b506103bd612573565b348015610940575f5ffd5b506069546001600160a01b03166105be565b34801561095d575f5ffd5b5061049a61096c366004614941565b61258c565b34801561097c575f5ffd5b506103bd61098b366004614d38565b6126c7565b34801561099b575f5ffd5b5061049a6109aa366004614dab565b612767565b3480156109ba575f5ffd5b506103bd6109c9366004614e17565b6128bc565b3480156109d9575f5ffd5b506103bd612905565b3480156109ed575f5ffd5b5061049a6109fc366004614941565b61291e565b348015610a0c575f5ffd5b506105be612a2f565b348015610a20575f5ffd5b506103bd612ab0565b5f610a3382612ac9565b80610a4e57506001600160e01b031982166336372b0760e01b145b80610a6957506001600160e01b0319821663a219a02560e01b145b80610a8457506001600160e01b03198216636d5136b160e11b145b92915050565b5f5f610ab9610a97612209565b670de0b6b3a7640000610ab26065546001600160801b031690565b9190612afe565b90505f610ac4610c26565b9050818110610ade57610ad78282614e57565b9250505090565b5f9250505090565b60605f5f5160206151885f395f51905f525b9050806003018054610b0990614e6a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3590614e6a565b8015610b805780601f10610b5757610100808354040283529160200191610b80565b820191905f5260205f20905b815481529060010190602001808311610b6357829003601f168201915b505050505091505090565b5f33610b98818585612bae565b5060019392505050565b5f5f610bad83612bbb565b60645490946001600160801b039091169350915050565b5f5f610bce610c26565b9050805f03610bde575f91505090565b606554610bfe906001600160801b03600160801b82048116911683612afe565b91505090565b5f610c0f6064612beb565b610c17610c26565b610c219190614e57565b905090565b606480545f91610c21916001600160801b031690610c45906065612c0f565b6001600160601b031690612c8b565b5f5f610c5e612a2f565b90506001600160a01b0384161580610ce65750806001600160a01b0316846001600160a01b03166338d52e0f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cb7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cdb9190614ea2565b6001600160a01b0316145b610d0357604051638959269160e01b815260040160405180910390fd5b5f610d166068546001600160a01b031690565b90505f6001600160a01b03821615610e2b576040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610d6c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d909190614ebd565b90508015610e29578515610db157610da88382612ca9565b95509150610e29565b604051635d043b2960e11b815260048101829052306024820181905260448201526001600160a01b0384169063ba087652906064016020604051808303815f875af1158015610e02573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e269190614ebd565b91505b505b606880546001600160a01b0319166001600160a01b038816179055610e5c60325482610e579190614ed4565b612dec565b5f60325560405184151581526001600160a01b0380881691908416907f243f9479bbdaf9f3395e726975293ee3724f3819f4322a018c98afb9de70a1e0906020015b60405180910390a3505050505050565b5f610a8482612bbb565b5f33610ec5858285612e01565b610ed0858585612e5f565b60019150505b9392505050565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f275760405163799e780f60e01b815260040160405180910390fd5b5f610f3a6068546001600160a01b031690565b6001600160a01b031614610f5057610f506115a6565b5f610f6a610f5d85611a30565b610f65610a8a565b612ebc565b90505f198603610f78578095505b855f03610f88575f915050611190565b6069546001600160a01b03161580610fad57506069546001600160a01b038681169116145b8061102f5750606954604051632e704af760e11b81526001600160a01b0390911690635ce095ee90610fe790309088908b90600401614ef3565b602060405180830381865afa158015611002573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110269190614f17565b64ffffffffff16155b6069546001600160a01b03169061106a57604051632bc34ba360e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b508581808211156110975760405163087da9fd60e01b815260048101929092526024820152604401611061565b50506067546001600160a01b0316158061111f5750606754604051639051c76360e01b81526001600160a01b0390911690639051c763906110e090309088908b90600401614ef3565b602060405180830381865afa1580156110fb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061111f9190614f3b565b848790916111515760405163d38a933960e01b81526001600160a01b0390921660048301526024820152604401611061565b5050836001600160a01b0316856001600160a01b03161461117757611177848688612e01565b6111818487612ecb565b61118b8387612eff565b859150505b949350505050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146111e15760405163799e780f60e01b815260040160405180910390fd5b6067546001600160a01b0316158061130a57506067546040516337ee20dd60e01b81526001600160a01b03909116906337ee20dd9061122890309086908890600401614ef3565b602060405180830381865afa158015611243573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112679190614f3b565b801561130a5750806001600160a01b0316826001600160a01b0316148061130a5750606754604051635fcdca3760e01b81523060048201526001600160a01b03848116602483015283811660448301526064820186905290911690635fcdca3790608401602060405180830381865afa1580156112e6573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061130a9190614f3b565b8284909161133c576040516306d6c99360e51b81526001600160a01b0390921660048301526024820152604401611061565b50506113488184612fb8565b611350612ab0565b611358611887565b101561139057611366611887565b61136e612ab0565b6040516362464ab760e01b815260048101929092526024820152604401611061565b505050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114169190614ea2565b6001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611451573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c219190614f56565b6001600160a01b0381165f90815260666020526040812080548390600160e01b900463ffffffff166114c657604051633d56093960e21b81526001600160a01b039091166004820152602401611061565b508054610ed6906001600160801b03166114e86114e1612573565b8490612fec565b6001600160601b031690613086565b5f610c216130a3565b335f81815260666020526040902054600160e01b900463ffffffff1661154557604051634e63eda360e11b81526001600160a01b039091166004820152602401611061565b50611552868686866130ac565b801561159e576115628282612eff565b816001600160a01b0316867fc8e60e828d888d5921f45ececd1bc138a29c2b6aacc8ab8a762f3f096492c56183604051610e9e91815260200190565b505050505050565b5f6115b96068546001600160a01b031690565b90506001600160a01b0381166115e257604051638959269160e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201525f906001600160a01b038316906307a2d13a9082906370a0823190602401602060405180830381865afa15801561162e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116529190614ebd565b6040518263ffffffff1660e01b815260040161167091815260200190565b602060405180830381865afa15801561168b573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116af9190614ebd565b90505f603254826116c09190614ed4565b9050801561139057603282905561139081612dec565b6116de61318c565b6116e782613232565b6116f1828261323b565b5050565b5f610c21611701610c26565b6065906132f7565b335f81815260666020526040902054600160e01b900463ffffffff1661174e57604051634e63eda360e11b81526001600160a01b039091166004820152602401611061565b50611757611ed8565b8211156117895781611767611ed8565b6040516308f31df360e01b815260048101929092526024820152604401611061565b61179660645f606561331f565b80516064805460208401516040909401516001600160801b039093166001600160e01b031990911617600160801b6001600160601b0390941693909302929092176001600160e01b0316600160e01b63ffffffff928316021790915561180390606590849084906133dc16565b80516020909101516001600160801b03908116600160801b0291161760655560405183907f266dc24a75ea4c7d7c74f89a78dc3a44307babf0b588230497189fc46d71693d9061185f9084908690918252602082015260400190565b60405180910390a2505050565b5f6118756134ed565b505f5160206151c85f395f51905f5290565b5f610c21670de0b6b3a7640000306001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118d0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118f49190614ebd565b6065546001600160801b0316610ab2565b5f610c216065546001600160801b031690565b5f611921613536565b805490915060ff600160401b820416159067ffffffffffffffff165f811580156119485750825b90505f8267ffffffffffffffff1660011480156119645750303b155b905081158015611972575080155b156119905760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156119ba57845460ff60401b1916600160401b1785555b6119c261355e565b6119cc898961356e565b6119d589613580565b6119df87876135ab565b8315611a2557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b5f610a84611a3d83612bbb565b610c4560646065612c0f565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611a925760405163799e780f60e01b815260040160405180910390fd5b806001600160a01b038116611ac657604051633d56093960e21b81526001600160a01b039091166004820152602401611061565b505f611ad182611475565b6001600160a01b0383165f818152606660205260408082209190915551919250907fe2ebfbed0df9004eae018a4ae91b24baa0cd1d83f495fab6dde3a1493f9dc6c690611b219084815260200190565b60405180910390a25050565b5f8115611b4f57610a84611b4360646065612c0f565b6001600160601b031690565b606454600160801b90046001600160601b0316610a84565b5f610a8482613611565b5f60608082808083815f5160206151a85f395f51905f528054909150158015611b9c57506001810154155b611be05760405162461bcd60e51b81526020600482015260156024820152741152540dcc4c8e88155b9a5b9a5d1a585b1a5e9959605a1b6044820152606401611061565b611be8613639565b611bf0613677565b604080515f80825260208201909252600f60f81b9c939b5091995046985030975095509350915050565b6001600160a01b0381161580611cc057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c91573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611cb59190614ea2565b6001600160a01b0316145b8190611ceb57604051637ef0808b60e01b81526001600160a01b039091166004820152602401611061565b50606754604080516001600160a01b03928316815291831660208301527fdb0a396bdd47d29c2b55a6631f0b286785ea8ed9f585d34c8e32cdb022c3bc82910160405180910390a1606780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381165f90815260666020526040902080548290600160e01b900463ffffffff16611da657604051633d56093960e21b81526001600160a01b039091166004820152602401611061565b50611dbb83611db3612573565b83919061368d565b506001600160a01b0383165f908152606660209081526040918290208351815492850151949093015163ffffffff16600160e01b026001600160e01b036001600160601b03909516600160801b026001600160e01b03199093166001600160801b03909416939093179190911792909216179055611e38836136c9565b816001600160a01b03167fa1aeb41f04a9a2aa1450e8edd0fa1a0a7971ff65c7bbb7b2ca0379b9327edbaf84604051611e7391815260200190565b60405180910390a2611390333085611e89612a2f565b6001600160a01b0316929190613732565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060915f5160206151885f395f51905f5291610b0990614e6a565b5f5f611ee2610c26565b6069549091506001600160a01b031615611fa25760695460405163f3f4370360e01b81523060048201525f916001600160a01b03169063f3f4370390602401602060405180830381865afa158015611f3c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f609190614ebd565b9050818110611f71575f9150611f9c565b611f99611f7e8284614e57565b610f65611f89612905565b8590670de0b6b3a7640000612afe565b91505b50611fc0565b611fbd611fad612905565b8290670de0b6b3a7640000612afe565b90505b610bfe6065826132f7565b611fd53382612ecb565b611fe6611fe182613768565b6136c9565b60405181815233907fa17978b5145b36c8c694b15cd193ab32fac45fbb1b2378e56ca71b11a5bc57229060200160405180910390a250565b335f81815260666020526040902054600160e01b900463ffffffff1661206357604051634e63eda360e11b81526001600160a01b039091166004820152602401611061565b50612070848484846130ac565b50505050565b5f33610b98818585612e5f565b5f6120966068546001600160a01b031690565b90506001600160a01b0381166120bf57604051638959269160e01b815260040160405180910390fd5b5f6120c8613798565b90505f1983036120da57809250612109565b8281808211156121065760405163531309fb60e11b815260048101929092526024820152604401611061565b50505b8260325f82825461211a9190614f71565b909155506121289050612a2f565b60405163095ea7b360e01b81526001600160a01b03848116600483015260248201869052919091169063095ea7b3906044016020604051808303815f875af1158015612176573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061219a9190614f3b565b50604051636e553f6560e01b8152600481018490523060248201526001600160a01b03831690636e553f65906044016020604051808303815f875af11580156121e5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120709190614ebd565b6067545f90610c2190600160a01b900461ffff16613809565b5f82600381111561223557612235614f84565b036122aa57670b1a2bc2ec500000811015801561225a575067120a871cc00200008111155b829061227a5760405163f8f0178560e01b81526004016110619190614fb8565b506122848161381e565b6067805461ffff92909216600160a01b0261ffff60a01b199092169190911790556123e9565b60018260038111156122be576122be614f84565b0361231e5781670de0b6b3a76400008211156122ee5760405163f8f0178560e01b81526004016110619190614fb8565b506122f88161381e565b6067805461ffff92909216600160b01b0261ffff60b01b199092169190911790556123e9565b600282600381111561233257612332614f84565b036123925781670de0b6b3a76400008211156123625760405163f8f0178560e01b81526004016110619190614fb8565b5061236c8161381e565b6067805461ffff92909216600160c01b0261ffff60c01b199092169190911790556123e9565b816706f05b59d3b200008211156123bd5760405163f8f0178560e01b81526004016110619190614fb8565b506123c78161381e565b6067805461ffff92909216600160d01b0261ffff60d01b199092169190911790555b7feeeae4504d4c033c7da36bf41d8ece7c21842071ca9f9b423f8e8e36483dcd96828260405161241a929190614fc6565b60405180910390a15050565b335f81815260666020526040812054909190600160e01b900463ffffffff1661246e57604051634e63eda360e11b81526001600160a01b039091166004820152602401611061565b508261247c81610f65610c04565b9350835f0361248c579050610a84565b6124ad84612498612573565b335f9081526066602052604090209190613837565b50335f908152606660209081526040918290208351815492850151949093015163ffffffff16600160e01b026001600160e01b036001600160601b03909516600160801b026001600160e01b03199093166001600160801b03909416939093179190911792909216179055612524611fe185614fe1565b61252e8385612eff565b604080518581526020810183905233917f98697a4799dbd9db66c7168304c43cba77a27a50d2785625e09072e0d91fdd53910160405180910390a26111908482614e57565b6067545f90610c2190600160d01b900461ffff16613809565b6001600160a01b038116158061263257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015612603573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126279190614ea2565b6001600160a01b0316145b819061265d5760405163f4ae198760e01b81526001600160a01b039091166004820152602401611061565b50606954604080516001600160a01b03928316815291831660208301527ff9f12db81524e0e7d35f2779daf818e6824509f85b09470f5c1c4d29304a756b910160405180910390a1606980546001600160a01b0319166001600160a01b0392909216919091179055565b5f6126d06115a6565b5f6126e36068546001600160a01b031690565b90505f1983036127565760405163ce96cb7760e01b81523060048201526001600160a01b0382169063ce96cb7790602401602060405180830381865afa15801561272f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127539190614ebd565b92505b6127608184613867565b5090919050565b8342111561278b5760405163313c898160e11b815260048101859052602401611061565b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886127f58c6001600160a01b03165f9081527f5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb006020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090505f61284f8261391a565b90505f61285e82878787613946565b9050896001600160a01b0316816001600160a01b0316146128a5576040516325c0072360e11b81526001600160a01b0380831660048301528b166024820152604401611061565b6128b08a8a8a612bae565b50505050505050505050565b6001600160a01b039182165f9081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b6067545f90610c2190600160c01b900461ffff16613809565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146129675760405163799e780f60e01b815260040160405180910390fd5b806001600160a01b03811661299b57604051633d56093960e21b81526001600160a01b039091166004820152602401611061565b506001600160a01b0381165f90815260666020526040902080548290600160e01b900463ffffffff16156129ee57604051630a3e8f9b60e11b81526001600160a01b039091166004820152602401611061565b506129f881613972565b6040516001600160a01b038316907f66c0f28249c4fc4db79872a4405be78a93f19c65ac9ef2f173867a149065bcf2905f90a25050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a8c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c219190614ea2565b6067545f90610c2190600160b01b900461ffff16613809565b5f6001600160e01b031982166301ffc9a760e01b1480610a8457506001600160e01b03198216634d15eb0360e01b1492915050565b5f5f5f612b0b868661398e565b91509150815f03612b2f57838181612b2557612b25614ffb565b0492505050610ed6565b818411612b4657612b4660038515026011186139aa565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b61139083838360016139bb565b5f805f5160206151885f395f51905f525b6001600160a01b039093165f9081526020939093525050604090205490565b80545f90610a84906001600160801b03166305f5e100670de0b6b3a7640000613a9f565b81545f908190612c2d908490600160e01b900463ffffffff16613ad4565b9050805f03612c4f5750508154600160801b90046001600160601b0316610a84565b835461119090612c73908390670de0b6b3a7640000906001600160801b0316613b20565b8554600160801b90046001600160601b031690613b3b565b5f610ed6826001600160601b0385165b670de0b6b3a7640000613b20565b604051636c82bbbf60e11b81523060048201525f9081906001600160a01b0385169063d905777e90602401602060405180830381865afa925050508015612d0d575060408051601f3d908101601f19168201909252612d0a91810190614ebd565b60015b15612d245783811015612d2257600191508093505b505b604051635d043b2960e11b815260048101849052306024820181905260448201526001600160a01b0385169063ba087652906064016020604051808303815f875af1925050508015612d93575060408051601f3d908101601f19168201909252612d9091810190614ebd565b60015b612de257836001600160a01b03167f25bce30047860a48c9d8830dbf31873be5434f4d28f14a5808a4ea8e35d0829684604051612dd291815260200190565b60405180910390a2506001612de5565b91505b9250929050565b612df5816136c9565b612dfe81613b57565b50565b5f612e0c84846128bc565b90505f198110156120705781811015612e5157604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401611061565b61207084848484035f6139bb565b6001600160a01b038316612e8857604051634b637e8f60e11b81525f6004820152602401611061565b6001600160a01b038216612eb15760405163ec442f0560e01b81525f6004820152602401611061565b611390838383613b8d565b5f828218828410028218610ed6565b6001600160a01b038216612ef457604051634b637e8f60e11b81525f6004820152602401611061565b6116f1825f83613b8d565b816001600160a01b038116612f3357604051636427f27360e11b81526001600160a01b039091166004820152602401611061565b50805f03612f3f575050565b5f612f48613798565b905081811015612f8b575f612f656068546001600160a01b031690565b90506001600160a01b03811615612f8957612f8981612f848486614e57565b613867565b505b6001600160a01b0383163014611390576113908383612fa8612a2f565b6001600160a01b03169190613e15565b6001600160a01b038216612fe15760405163ec442f0560e01b81525f6004820152602401611061565b6116f15f8383613b8d565b81545f90429063ffffffff808316600160e01b90920416101561306657835461305e906301e133809061302c90600160e01b900463ffffffff168461500f565b61303c9063ffffffff168661502b565b6130469190615042565b8554600160801b90046001600160601b031690613e4a565b915050610a84565b50508154600160801b90046001600160601b0316610a84565b5092915050565b5f610ed6826001600160601b038516670de0b6b3a7640000613a9f565b5f610c21613e6d565b6130b9606482606561331f565b80516064805460208401516040909401516001600160801b039093166001600160e01b031990911617600160801b6001600160601b0390941693909302929092176001600160e01b0316600160e01b63ffffffff92831602179091556131269060659085908590613ee016565b80516020918201516001600160801b03908116600160801b0291161760655560408051848152918201859052810182905284907f82e3211b2071ba731d809bc922f607d914d7cb7d76b03e72acbe7753613e21f39060600160405180910390a250505050565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061321257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166132065f5160206151c85f395f51905f52546001600160a01b031690565b6001600160a01b031614155b156132305760405163703e46dd60e11b815260040160405180910390fd5b565b612dfe81613f7c565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015613295575060408051601f3d908101601f1916820190925261329291810190614ebd565b60015b6132bd57604051634c9c8ce360e01b81526001600160a01b0383166004820152602401611061565b5f5160206151c85f395f51905f5281146132ed57604051632a87526960e21b815260048101829052602401611061565b611390838361402d565b81545f906001600160801b0316808311156133165761305e8184614e57565b5f915050610a84565b604080516060810182525f80825260208201819052918101919091528354613355908390600160e01b900463ffffffff16613ad4565b61335f9084615061565b84549093505f906133a090613388908690670de0b6b3a7640000906001600160801b0316614082565b8654600160801b90046001600160601b03169061409d565b6040805160608101825287546001600160801b031681526001600160601b03909216602083015263ffffffff4216908201529150509392505050565b604080518082019091525f808252602082015283546001600160801b03165f0361343d576040518060400160405280613414856140e7565b6001600160801b0316815260200161342b846140e7565b6001600160801b031690529050610ed6565b83546001600160801b03165f6134538583614f71565b90505f6134aa61346c8688670de0b6b3a7640000613b20565b885461349190600160801b90046001600160801b031686670de0b6b3a7640000613b20565b61349b9190614f71565b670de0b6b3a764000084613b20565b905060405180604001604052806134c0846140e7565b6001600160801b031681526020016134d7836140e7565b6001600160801b03168152509350505050610ed6565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146132305760405163703e46dd60e11b815260040160405180910390fd5b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610a84565b61356661411a565b61323061413f565b61357661411a565b6116f18282614147565b61358861411a565b612dfe81604051806040016040528060018152602001603160f81b815250614197565b6135b361411a565b6135bd6064613972565b6040805160a0810182525f80825261271060208301529181018290526060810182905260800152606780546001600160e01b03191661027160a41b179055613606600283612222565b6116f1600382612222565b5f807f5ab42ced628888259c08ac98db1eb0cf702fc1501344311d8b100cd1bfe4bb00612bcc565b7fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d10280546060915f5160206151a85f395f51905f5291610b0990614e6a565b60605f5f5160206151a85f395f51905f52610af8565b604080516060810182525f80825260208201819052918101829052906136bd85856136b88287612fec565b6141f6565b91509150935093915050565b6136d6606482606561331f565b805160648054602084015160409094015163ffffffff16600160e01b026001600160e01b036001600160601b03909516600160801b026001600160e01b03199092166001600160801b0390941693909317179290921617905550565b6137408484848460016142bf565b61207057604051635274afe760e01b81526001600160a01b0385166004820152602401611061565b5f6001600160ff1b038211156137945760405163123baf0360e11b815260048101839052602401611061565b5090565b5f6137a1612a2f565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa1580156137e5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c219190614ebd565b5f610a84655af3107a400061ffff841661502b565b5f610a84613832655af3107a400084615042565b61432c565b604080516060810182525f80825260208201819052918101829052906136bd85856138628287612fec565b61435a565b604051632d182be560e21b815260048101829052306024820181905260448201526001600160a01b0383169063b460af94906064016020604051808303815f875af11580156138b8573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138dc9190614ebd565b50603254811115613900576138f860325482610e579190614e57565b5f6032555050565b8060325f8282546139119190614e57565b90915550505050565b5f610a846139266130a3565b8360405161190160f01b8152600281019290925260228201526042902090565b5f5f5f5f613956888888886143ea565b92509250925061396682826144b2565b50909695505050505050565b63ffffffff4216600160e01b026503782dace9d960921b179055565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f5160206151885f395f51905f526001600160a01b0385166139f25760405163e602df0560e01b81525f6004820152602401611061565b6001600160a01b038416613a1b57604051634a1406b160e11b81525f6004820152602401611061565b6001600160a01b038086165f90815260018301602090815260408083209388168352929052208390558115613a9857836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051613a8f91815260200190565b60405180910390a35b5050505050565b5f613ab95f8380613ab257613ab2614ffb565b8587091190565b8284860281613aca57613aca614ffb565b0401949350505050565b81545f90610ed6906001600160801b03166301e13380613afa63ffffffff861642614e57565b8654613b169190600160801b90046001600160801b031661502b565b612c9b9190615042565b5f8183850281613b3257613b32614ffb565b04949350505050565b5f610ed6613b52836001600160601b038616614f71565b61456a565b6040518181527f731c439c5bae15be1344eec709967e046b4f7d3f7e37abeffc5247f448fa18bf9060200160405180910390a150565b5f6001600160a01b038416613c0a57613ba9606483606561459d565b815160648054602085015160409095015163ffffffff16600160e01b026001600160e01b036001600160601b03909616600160801b026001600160e01b03199092166001600160801b03909416939093171793909316179091559050613d06565b6001600160a01b038316613c2557613ba960648360656145c8565b6067546001600160a01b03161580613cb95750606754604051635fcdca3760e01b81523060048201526001600160a01b03868116602483015285811660448301526064820185905290911690635fcdca3790608401602060405180830381865afa158015613c95573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cb99190614f3b565b848484909192613cdf576040516325cff2d360e11b815260040161106193929190614ef3565b50613d039150839050613cf460646065612c0f565b6001600160601b0316906145f3565b90505b5f5160206151885f395f51905f526001600160a01b03851615613da3576001600160a01b0385165f9081526020829052604090205482811015613d855785613d5482610c4560646065612c0f565b60405163391434e360e21b81526001600160a01b039092166004830152602482015260448101859052606401611061565b6001600160a01b0386165f9081526020839052604090209083900390555b6001600160a01b03841615613dd0576001600160a01b0384165f9081526020829052604090208054830190555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051613a8f91815260200190565b613e228383836001614610565b61139057604051635274afe760e01b81526001600160a01b0384166004820152602401611061565b5f610ed6613b526001600160601b038516612c9b670de0b6b3a764000086614f71565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f613e97614672565b613e9f6146da565b60408051602081019490945283019190915260608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b604080518082019091525f808252602082015283546001600160801b0316839003613f1e5750604080518082019091525f8082526020820152610ed6565b83546001600160801b03165f613f348583614e57565b90505f6134aa613f4d8688670de0b6b3a7640000613b20565b8854613f7290600160801b90046001600160801b031686670de0b6b3a7640000613b20565b61349b9190614e57565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015613fe2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140069190614ea2565b6001600160a01b031614612dfe5760405163d2b3d33f60e01b815260040160405180910390fd5b6140368261471c565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561407a57611390828261477f565b6116f1614810565b5f818385028161409457614094614ffb565b05949350505050565b5f806140b2836001600160601b038616615061565b9050806305f5e1008110156140dd57604051636c53fb2b60e01b815260040161106191815260200190565b506111908161456a565b5f6001600160801b03821115613794576040516306dfcc6560e41b81526080600482015260248101839052604401611061565b61412261482f565b61323057604051631afcd79f60e31b815260040160405180910390fd5b61323061411a565b61414f61411a565b5f5160206151885f395f51905f527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0361418884826150cc565b506004810161207083826150cc565b61419f61411a565b5f5160206151a85f395f51905f527fa16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d1026141d884826150cc565b50600381016141e783826150cc565b505f8082556001909101555050565b604080516060810182525f80825260208201819052918101829052906142256001600160601b038416856145f3565b85549091506001600160801b03168181038181111590810281614264576142556001600160601b03871688614848565b93506142618484614e57565b90505b805f0361427757670de0b6b3a764000095505b604051806060016040528061428b836140e7565b6001600160801b03168152602001876001600160601b031681526020014263ffffffff168152509450505050935093915050565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f5114831661431b57838315161561430f573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b5f61ffff821115613794576040516306dfcc6560e41b81526010600482015260248101839052604401611061565b604080516060810182525f80825260208201819052918101829052906143896001600160601b03841685614848565b604080516060810190915286549192509081906143b9906143b49085906001600160801b0316614f71565b6140e7565b6001600160801b03168152602001846001600160601b031681526020014263ffffffff168152509150935093915050565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084111561442357505f915060039050826144a8565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015614474573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b03811661449f57505f9250600191508290506144a8565b92505f91508190505b9450945094915050565b5f8260038111156144c5576144c5614f84565b036144ce575050565b60018260038111156144e2576144e2614f84565b036145005760405163f645eedf60e01b815260040160405180910390fd5b600282600381111561451457614514614f84565b036145355760405163fce698f760e01b815260048101829052602401611061565b600382600381111561454957614549614f84565b036116f1576040516335e2f38360e21b815260048101829052602401611061565b5f6001600160601b03821115613794576040516306dfcc6560e41b81526060600482015260248101839052604401611061565b604080516060810182525f80825260208201819052918101829052906136bd85856138628287612c0f565b604080516060810182525f80825260208201819052918101829052906136bd85856136b88287612c0f565b5f610ed682670de0b6b3a76400006001600160601b038616613a9f565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f5114831661466657838315161561465a573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b5f5f5160206151a85f395f51905f528161468a613639565b8051909150156146a257805160209091012092915050565b815480156146b1579392505050565b7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470935050505090565b5f5f5160206151a85f395f51905f52816146f2613677565b80519091501561470a57805160209091012092915050565b600182015480156146b1579392505050565b806001600160a01b03163b5f0361475157604051634c9c8ce360e01b81526001600160a01b0382166004820152602401611061565b5f5160206151c85f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f61478c8484614865565b90508080156147ad57505f3d11806147ad57505f846001600160a01b03163b115b156147ba5761305e614878565b80156147e457604051639996b31560e01b81526001600160a01b0385166004820152602401611061565b3d156147f7576147f2614891565b61307f565b60405163d6bda27560e01b815260040160405180910390fd5b34156132305760405163b398979f60e01b815260040160405180910390fd5b5f614838613536565b54600160401b900460ff16919050565b5f610ed682670de0b6b3a76400006001600160601b038616613b20565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f602082840312156148ac575f5ffd5b81356001600160e01b031981168114610ed6575f5ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610ed660208301846148c3565b6001600160a01b0381168114612dfe575f5ffd5b5f5f60408385031215614928575f5ffd5b823561493381614903565b946020939093013593505050565b5f60208284031215614951575f5ffd5b8135610ed681614903565b8015158114612dfe575f5ffd5b5f5f6040838503121561497a575f5ffd5b823561498581614903565b915060208301356149958161495c565b809150509250929050565b5f5f5f606084860312156149b2575f5ffd5b83356149bd81614903565b925060208401356149cd81614903565b929592945050506040919091013590565b5f5f5f5f608085870312156149f1575f5ffd5b843593506020850135614a0381614903565b92506040850135614a1381614903565b91506060850135614a2381614903565b939692955090935050565b5f5f5f60608486031215614a40575f5ffd5b833592506020840135614a5281614903565b91506040840135614a6281614903565b809150509250925092565b5f5f5f5f5f5f60c08789031215614a82575f5ffd5b863595506020870135945060408701359350606087013592506080870135614aa981614903565b9598949750929591949360a090920135925050565b634e487b7160e01b5f52604160045260245ffd5b5f5f67ffffffffffffffff841115614aec57614aec614abe565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff82111715614b1b57614b1b614abe565b604052838152905080828401851015614b32575f5ffd5b838360208301375f60208583010152509392505050565b5f5f60408385031215614b5a575f5ffd5b8235614b6581614903565b9150602083013567ffffffffffffffff811115614b80575f5ffd5b8301601f81018513614b90575f5ffd5b614b9f85823560208401614ad2565b9150509250929050565b5f5f5f60608486031215614bbb575f5ffd5b505081359360208301359350604090920135919050565b5f82601f830112614be1575f5ffd5b610ed683833560208501614ad2565b5f5f5f5f60808587031215614c03575f5ffd5b843567ffffffffffffffff811115614c19575f5ffd5b614c2587828801614bd2565b945050602085013567ffffffffffffffff811115614c41575f5ffd5b614c4d87828801614bd2565b949794965050505060408301359260600135919050565b5f60208284031215614c74575f5ffd5b8135610ed68161495c565b60ff60f81b8816815260e060208201525f614c9d60e08301896148c3565b8281036040840152614caf81896148c3565b606084018890526001600160a01b038716608085015260a0840186905283810360c0850152845180825260208087019350909101905f5b81811015614d04578351835260209384019390920191600101614ce6565b50909b9a5050505050505050505050565b5f5f60408385031215614d26575f5ffd5b82359150602083013561499581614903565b5f60208284031215614d48575f5ffd5b5035919050565b5f5f5f5f60808587031215614d62575f5ffd5b5050823594602084013594506040840135936060013592509050565b5f5f60408385031215614d8f575f5ffd5b823560048110614933575f5ffd5b60ff81168114612dfe575f5ffd5b5f5f5f5f5f5f5f60e0888a031215614dc1575f5ffd5b8735614dcc81614903565b96506020880135614ddc81614903565b955060408801359450606088013593506080880135614dfa81614d9d565b9699959850939692959460a0840135945060c09093013592915050565b5f5f60408385031215614e28575f5ffd5b8235614e3381614903565b9150602083013561499581614903565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610a8457610a84614e43565b600181811c90821680614e7e57607f821691505b602082108103614e9c57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215614eb2575f5ffd5b8151610ed681614903565b5f60208284031215614ecd575f5ffd5b5051919050565b8181035f83128015838313168383128216171561307f5761307f614e43565b6001600160a01b039384168152919092166020820152604081019190915260600190565b5f60208284031215614f27575f5ffd5b815164ffffffffff81168114610ed6575f5ffd5b5f60208284031215614f4b575f5ffd5b8151610ed68161495c565b5f60208284031215614f66575f5ffd5b8151610ed681614d9d565b80820180821115610a8457610a84614e43565b634e487b7160e01b5f52602160045260245ffd5b60048110614fb457634e487b7160e01b5f52602160045260245ffd5b9052565b60208101610a848284614f98565b60408101614fd48285614f98565b8260208301529392505050565b5f600160ff1b8201614ff557614ff5614e43565b505f0390565b634e487b7160e01b5f52601260045260245ffd5b63ffffffff8281168282160390811115610a8457610a84614e43565b8082028115828204841417610a8457610a84614e43565b5f8261505c57634e487b7160e01b5f52601260045260245ffd5b500490565b8082018281125f83128015821682158216171561508057615080614e43565b505092915050565b601f82111561139057805f5260205f20601f840160051c810160208510156150ad5750805b601f840160051c820191505b81811015613a98575f81556001016150b9565b815167ffffffffffffffff8111156150e6576150e6614abe565b6150fa816150f48454614e6a565b84615088565b6020601f82116001811461512c575f83156151155750848201515b5f19600385901b1c1916600184901b178455613a98565b5f84815260208120601f198516915b8281101561515b578785015182556020948501946001909201910161513b565b508482101561517857868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00a16a46d94261c7517cc8ff89f61c0ce93598e3c849801011dee649a6a557d100360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca26469706673582212209b125e81f4beac5ad6ba57f67dad9c77fb08bb1cd1d397c3c72d7632245dcc7b64736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x371 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7D919A97 GT PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0xFD JUMPI DUP1 PUSH4 0xD17E6C93 GT PUSH2 0x9D JUMPI DUP1 PUSH4 0xDFCB48BD GT PUSH2 0x6D JUMPI DUP1 PUSH4 0xDFCB48BD EQ PUSH2 0x9CE JUMPI DUP1 PUSH4 0xE3A8E29C EQ PUSH2 0x9E2 JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0xA01 JUMPI DUP1 PUSH4 0xEE01A183 EQ PUSH2 0xA15 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xD17E6C93 EQ PUSH2 0x952 JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0x971 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x990 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x9AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC1CCA2B3 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0xC1CCA2B3 EQ PUSH2 0x8E3 JUMPI DUP1 PUSH4 0xC3DF9DAC EQ PUSH2 0x902 JUMPI DUP1 PUSH4 0xCDA4BCC2 EQ PUSH2 0x921 JUMPI DUP1 PUSH4 0xCF6A9A94 EQ PUSH2 0x935 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x882 JUMPI DUP1 PUSH4 0xB1BF962D EQ PUSH2 0x8B2 JUMPI DUP1 PUSH4 0xBA4E8DF5 EQ PUSH2 0x8CF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x9D90724D GT PUSH2 0x168 JUMPI DUP1 PUSH4 0xA227DC41 GT PUSH2 0x143 JUMPI DUP1 PUSH4 0xA227DC41 EQ PUSH2 0x808 JUMPI DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0x827 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x844 JUMPI DUP1 PUSH4 0xAC860F74 EQ PUSH2 0x863 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x9D90724D EQ PUSH2 0x7B1 JUMPI DUP1 PUSH4 0xA08F2203 EQ PUSH2 0x7D5 JUMPI DUP1 PUSH4 0xA0CE552D EQ PUSH2 0x7E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x854CFF2F GT PUSH2 0x1A3 JUMPI DUP1 PUSH4 0x854CFF2F EQ PUSH2 0x742 JUMPI DUP1 PUSH4 0x918344D3 EQ PUSH2 0x761 JUMPI DUP1 PUSH4 0x93E59DC1 EQ PUSH2 0x780 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x79D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x7D919A97 EQ PUSH2 0x6E8 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x6FC JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x71B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x33481FC9 GT PUSH2 0x2A9 JUMPI DUP1 PUSH4 0x4FFCDA8C GT PUSH2 0x249 JUMPI DUP1 PUSH4 0x6FE0E395 GT PUSH2 0x219 JUMPI DUP1 PUSH4 0x6FE0E395 EQ PUSH2 0x66C JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x68B JUMPI DUP1 PUSH4 0x76C7FC55 EQ PUSH2 0x6AA JUMPI DUP1 PUSH4 0x79D989FB EQ PUSH2 0x6C9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4FFCDA8C EQ PUSH2 0x611 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x630 JUMPI DUP1 PUSH4 0x6C321C8A EQ PUSH2 0x644 JUMPI DUP1 PUSH4 0x6C6F4542 EQ PUSH2 0x658 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D15EB03 GT PUSH2 0x284 JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x590 JUMPI DUP1 PUSH4 0x4EB978A4 EQ PUSH2 0x5D6 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x5EA JUMPI DUP1 PUSH4 0x4FE0BD1E EQ PUSH2 0x5FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x33481FC9 EQ PUSH2 0x53E JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x55D JUMPI DUP1 PUSH4 0x3AD2820B EQ PUSH2 0x571 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0x314 JUMPI DUP1 PUSH4 0x23B872DD GT PUSH2 0x2EF JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x4BB JUMPI DUP1 PUSH4 0x23E103A8 EQ PUSH2 0x4DA JUMPI DUP1 PUSH4 0x2E2D2984 EQ PUSH2 0x4F9 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x518 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD EQ PUSH2 0x467 JUMPI DUP1 PUSH4 0x194448E5 EQ PUSH2 0x47B JUMPI DUP1 PUSH4 0x1DA24F3E EQ PUSH2 0x49C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x34F JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x3EC JUMPI DUP1 PUSH4 0xAFBCDC9 EQ PUSH2 0x40B JUMPI DUP1 PUSH4 0x159EC2DF EQ PUSH2 0x43F JUMPI DUP1 PUSH4 0x16DB000F EQ PUSH2 0x453 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x375 JUMPI DUP1 PUSH4 0x600A865 EQ PUSH2 0x3A9 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x3CB JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x380 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x38F CALLDATASIZE PUSH1 0x4 PUSH2 0x489C JUMP JUMPDEST PUSH2 0xA29 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 0x3B4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0xA8A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DF PUSH2 0xAE6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3A0 SWAP2 SWAP1 PUSH2 0x48F1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3F7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x406 CALLDATASIZE PUSH1 0x4 PUSH2 0x4917 JUMP JUMPDEST PUSH2 0xB8B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x416 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42A PUSH2 0x425 CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0xBA2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x3A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x44A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0xBC4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x45E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0xC04 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x472 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0xC26 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x486 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x495 CALLDATASIZE PUSH1 0x4 PUSH2 0x4969 JUMP JUMPDEST PUSH2 0xC54 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x4B6 CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0xEAE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4C6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x4D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x49A0 JUMP JUMPDEST PUSH2 0xEB8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4E5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x4F4 CALLDATASIZE PUSH1 0x4 PUSH2 0x49DE JUMP JUMPDEST PUSH2 0xEDD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x504 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x513 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A2E JUMP JUMPDEST PUSH2 0x1198 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x523 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x52C PUSH2 0x1395 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x549 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x558 CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0x1475 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x568 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x14F7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x57C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x58B CALLDATASIZE PUSH1 0x4 PUSH2 0x4A6D JUMP JUMPDEST PUSH2 0x1500 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x59B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3A0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5E1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x15A6 JUMP JUMPDEST PUSH2 0x49A PUSH2 0x5F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x4B49 JUMP JUMPDEST PUSH2 0x16D6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x608 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x16F5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x61C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x62B CALLDATASIZE PUSH1 0x4 PUSH2 0x4BA9 JUMP JUMPDEST PUSH2 0x1709 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x63B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x186C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x64F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x1887 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x663 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x1905 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x677 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x686 CALLDATASIZE PUSH1 0x4 PUSH2 0x4BF0 JUMP JUMPDEST PUSH2 0x1918 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x696 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x6A5 CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0x1A30 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x6C4 CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0x1A49 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6D4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x6E3 CALLDATASIZE PUSH1 0x4 PUSH2 0x4C64 JUMP JUMPDEST PUSH2 0x1B2D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x32 SLOAD PUSH2 0x3BD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x707 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x716 CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0x1B67 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x726 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x72F PUSH2 0x1B71 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3A0 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4C7F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x74D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x75C CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0x1C1A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x76C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x77B CALLDATASIZE PUSH1 0x4 PUSH2 0x4D15 JUMP JUMPDEST PUSH2 0x1D55 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x78B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x67 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x5BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7A8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DF PUSH2 0x1E9A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x3BD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7E0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x1ED8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7F4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x803 CALLDATASIZE PUSH1 0x4 PUSH2 0x4D38 JUMP JUMPDEST PUSH2 0x1FCB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x813 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x822 CALLDATASIZE PUSH1 0x4 PUSH2 0x4D4F JUMP JUMPDEST PUSH2 0x201E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x832 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x5BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x84F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x394 PUSH2 0x85E CALLDATASIZE PUSH1 0x4 PUSH2 0x4917 JUMP JUMPDEST PUSH2 0x2076 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x86E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x87D CALLDATASIZE PUSH1 0x4 PUSH2 0x4D38 JUMP JUMPDEST PUSH2 0x2083 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x88D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DF PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x3BD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8DA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x2209 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x8FD CALLDATASIZE PUSH1 0x4 PUSH2 0x4D7E JUMP JUMPDEST PUSH2 0x2222 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x90D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x91C CALLDATASIZE PUSH1 0x4 PUSH2 0x4D15 JUMP JUMPDEST PUSH2 0x2426 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x92C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x2573 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x940 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x69 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x5BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x95D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x96C CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0x258C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x97C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x98B CALLDATASIZE PUSH1 0x4 PUSH2 0x4D38 JUMP JUMPDEST PUSH2 0x26C7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x99B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x9AA CALLDATASIZE PUSH1 0x4 PUSH2 0x4DAB JUMP JUMPDEST PUSH2 0x2767 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x9C9 CALLDATASIZE PUSH1 0x4 PUSH2 0x4E17 JUMP JUMPDEST PUSH2 0x28BC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x2905 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x49A PUSH2 0x9FC CALLDATASIZE PUSH1 0x4 PUSH2 0x4941 JUMP JUMPDEST PUSH2 0x291E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA0C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5BE PUSH2 0x2A2F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA20 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3BD PUSH2 0x2AB0 JUMP JUMPDEST PUSH0 PUSH2 0xA33 DUP3 PUSH2 0x2AC9 JUMP JUMPDEST DUP1 PUSH2 0xA4E JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x36372B07 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xA69 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA219A025 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xA84 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x6D5136B1 PUSH1 0xE1 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xAB9 PUSH2 0xA97 PUSH2 0x2209 JUMP JUMPDEST PUSH8 0xDE0B6B3A7640000 PUSH2 0xAB2 PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x2AFE JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0xAC4 PUSH2 0xC26 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT PUSH2 0xADE JUMPI PUSH2 0xAD7 DUP3 DUP3 PUSH2 0x4E57 JUMP JUMPDEST SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH0 SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5188 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST SWAP1 POP DUP1 PUSH1 0x3 ADD DUP1 SLOAD PUSH2 0xB09 SWAP1 PUSH2 0x4E6A 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 0xB35 SWAP1 PUSH2 0x4E6A JUMP JUMPDEST DUP1 ISZERO PUSH2 0xB80 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xB57 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xB80 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 0xB63 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0xB98 DUP2 DUP6 DUP6 PUSH2 0x2BAE JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xBAD DUP4 PUSH2 0x2BBB JUMP JUMPDEST PUSH1 0x64 SLOAD SWAP1 SWAP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP2 AND SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xBCE PUSH2 0xC26 JUMP JUMPDEST SWAP1 POP DUP1 PUSH0 SUB PUSH2 0xBDE JUMPI PUSH0 SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x65 SLOAD PUSH2 0xBFE SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB PUSH1 0x1 PUSH1 0x80 SHL DUP3 DIV DUP2 AND SWAP2 AND DUP4 PUSH2 0x2AFE JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xC0F PUSH1 0x64 PUSH2 0x2BEB JUMP JUMPDEST PUSH2 0xC17 PUSH2 0xC26 JUMP JUMPDEST PUSH2 0xC21 SWAP2 SWAP1 PUSH2 0x4E57 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x64 DUP1 SLOAD PUSH0 SWAP2 PUSH2 0xC21 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 PUSH2 0xC45 SWAP1 PUSH1 0x65 PUSH2 0x2C0F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x2C8B JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xC5E PUSH2 0x2A2F JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO DUP1 PUSH2 0xCE6 JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x38D52E0F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xCB7 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 0xCDB SWAP2 SWAP1 PUSH2 0x4EA2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0xD03 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0xD16 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0xE2B JUMPI 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 DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB 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 0x4EBD JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0xE29 JUMPI DUP6 ISZERO PUSH2 0xDB1 JUMPI PUSH2 0xDA8 DUP4 DUP3 PUSH2 0x2CA9 JUMP JUMPDEST SWAP6 POP SWAP2 POP PUSH2 0xE29 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xE02 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 0xE26 SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST SWAP2 POP JUMPDEST POP JUMPDEST PUSH1 0x68 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND OR SWAP1 SSTORE PUSH2 0xE5C PUSH1 0x32 SLOAD DUP3 PUSH2 0xE57 SWAP2 SWAP1 PUSH2 0x4ED4 JUMP JUMPDEST PUSH2 0x2DEC JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE PUSH1 0x40 MLOAD DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND SWAP2 SWAP1 DUP5 AND SWAP1 PUSH32 0x243F9479BBDAF9F3395E726975293EE3724F3819F4322A018C98AFB9DE70A1E0 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA84 DUP3 PUSH2 0x2BBB JUMP JUMPDEST PUSH0 CALLER PUSH2 0xEC5 DUP6 DUP3 DUP6 PUSH2 0x2E01 JUMP JUMPDEST PUSH2 0xED0 DUP6 DUP6 DUP6 PUSH2 0x2E5F JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xF27 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0xF3A PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF50 JUMPI PUSH2 0xF50 PUSH2 0x15A6 JUMP JUMPDEST PUSH0 PUSH2 0xF6A PUSH2 0xF5D DUP6 PUSH2 0x1A30 JUMP JUMPDEST PUSH2 0xF65 PUSH2 0xA8A JUMP JUMPDEST PUSH2 0x2EBC JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP7 SUB PUSH2 0xF78 JUMPI DUP1 SWAP6 POP JUMPDEST DUP6 PUSH0 SUB PUSH2 0xF88 JUMPI PUSH0 SWAP2 POP POP PUSH2 0x1190 JUMP JUMPDEST PUSH1 0x69 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 PUSH2 0xFAD JUMPI POP PUSH1 0x69 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 AND EQ JUMPDEST DUP1 PUSH2 0x102F JUMPI POP PUSH1 0x69 SLOAD PUSH1 0x40 MLOAD PUSH4 0x2E704AF7 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x5CE095EE SWAP1 PUSH2 0xFE7 SWAP1 ADDRESS SWAP1 DUP9 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x4EF3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1002 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 0x1026 SWAP2 SWAP1 PUSH2 0x4F17 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND ISZERO JUMPDEST PUSH1 0x69 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH2 0x106A JUMPI PUSH1 0x40 MLOAD PUSH4 0x2BC34BA3 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 DUP6 DUP2 DUP1 DUP3 GT ISZERO PUSH2 0x1097 JUMPI PUSH1 0x40 MLOAD PUSH4 0x87DA9FD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST POP POP PUSH1 0x67 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 PUSH2 0x111F JUMPI POP PUSH1 0x67 SLOAD PUSH1 0x40 MLOAD PUSH4 0x9051C763 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x9051C763 SWAP1 PUSH2 0x10E0 SWAP1 ADDRESS SWAP1 DUP9 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x4EF3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x10FB 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 0x111F SWAP2 SWAP1 PUSH2 0x4F3B JUMP JUMPDEST DUP5 DUP8 SWAP1 SWAP2 PUSH2 0x1151 JUMPI PUSH1 0x40 MLOAD PUSH4 0xD38A9339 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST POP POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1177 JUMPI PUSH2 0x1177 DUP5 DUP7 DUP9 PUSH2 0x2E01 JUMP JUMPDEST PUSH2 0x1181 DUP5 DUP8 PUSH2 0x2ECB JUMP JUMPDEST PUSH2 0x118B DUP4 DUP8 PUSH2 0x2EFF JUMP JUMPDEST DUP6 SWAP2 POP POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x11E1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x67 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 PUSH2 0x130A JUMPI POP PUSH1 0x67 SLOAD PUSH1 0x40 MLOAD PUSH4 0x37EE20DD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x37EE20DD SWAP1 PUSH2 0x1228 SWAP1 ADDRESS SWAP1 DUP7 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x4EF3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1243 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 0x1267 SWAP2 SWAP1 PUSH2 0x4F3B JUMP JUMPDEST DUP1 ISZERO PUSH2 0x130A JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x130A JUMPI POP PUSH1 0x67 SLOAD PUSH1 0x40 MLOAD PUSH4 0x5FCDCA37 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP4 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD DUP7 SWAP1 MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x5FCDCA37 SWAP1 PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x12E6 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 0x130A SWAP2 SWAP1 PUSH2 0x4F3B JUMP JUMPDEST DUP3 DUP5 SWAP1 SWAP2 PUSH2 0x133C JUMPI PUSH1 0x40 MLOAD PUSH4 0x6D6C993 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST POP POP PUSH2 0x1348 DUP2 DUP5 PUSH2 0x2FB8 JUMP JUMPDEST PUSH2 0x1350 PUSH2 0x2AB0 JUMP JUMPDEST PUSH2 0x1358 PUSH2 0x1887 JUMP JUMPDEST LT ISZERO PUSH2 0x1390 JUMPI PUSH2 0x1366 PUSH2 0x1887 JUMP JUMPDEST PUSH2 0x136E PUSH2 0x2AB0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x62464AB7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13F2 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 0x1416 SWAP2 SWAP1 PUSH2 0x4EA2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1451 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 0xC21 SWAP2 SWAP1 PUSH2 0x4F56 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x14C6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3D560939 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 0x1061 JUMP JUMPDEST POP DUP1 SLOAD PUSH2 0xED6 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x14E8 PUSH2 0x14E1 PUSH2 0x2573 JUMP JUMPDEST DUP5 SWAP1 PUSH2 0x2FEC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x3086 JUMP JUMPDEST PUSH0 PUSH2 0xC21 PUSH2 0x30A3 JUMP JUMPDEST CALLER PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x1545 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4E63EDA3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST POP PUSH2 0x1552 DUP7 DUP7 DUP7 DUP7 PUSH2 0x30AC JUMP JUMPDEST DUP1 ISZERO PUSH2 0x159E JUMPI PUSH2 0x1562 DUP3 DUP3 PUSH2 0x2EFF JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH32 0xC8E60E828D888D5921F45ECECD1BC138A29C2B6AACC8AB8A762F3F096492C561 DUP4 PUSH1 0x40 MLOAD PUSH2 0xE9E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x15B9 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x15E2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT 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 DUP4 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x162E 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 0x1652 SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1670 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x168B 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 0x16AF SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x32 SLOAD DUP3 PUSH2 0x16C0 SWAP2 SWAP1 PUSH2 0x4ED4 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x1390 JUMPI PUSH1 0x32 DUP3 SWAP1 SSTORE PUSH2 0x1390 DUP2 PUSH2 0x2DEC JUMP JUMPDEST PUSH2 0x16DE PUSH2 0x318C JUMP JUMPDEST PUSH2 0x16E7 DUP3 PUSH2 0x3232 JUMP JUMPDEST PUSH2 0x16F1 DUP3 DUP3 PUSH2 0x323B JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0xC21 PUSH2 0x1701 PUSH2 0xC26 JUMP JUMPDEST PUSH1 0x65 SWAP1 PUSH2 0x32F7 JUMP JUMPDEST CALLER PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x174E JUMPI PUSH1 0x40 MLOAD PUSH4 0x4E63EDA3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST POP PUSH2 0x1757 PUSH2 0x1ED8 JUMP JUMPDEST DUP3 GT ISZERO PUSH2 0x1789 JUMPI DUP2 PUSH2 0x1767 PUSH2 0x1ED8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x8F31DF3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x1796 PUSH1 0x64 PUSH0 PUSH1 0x65 PUSH2 0x331F JUMP JUMPDEST DUP1 MLOAD PUSH1 0x64 DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP1 SWAP5 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND OR PUSH1 0x1 PUSH1 0x80 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 MUL SWAP3 SWAP1 SWAP3 OR PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x1 PUSH1 0xE0 SHL PUSH4 0xFFFFFFFF SWAP3 DUP4 AND MUL OR SWAP1 SWAP2 SSTORE PUSH2 0x1803 SWAP1 PUSH1 0x65 SWAP1 DUP5 SWAP1 DUP5 SWAP1 PUSH2 0x33DC AND JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP2 AND OR PUSH1 0x65 SSTORE PUSH1 0x40 MLOAD DUP4 SWAP1 PUSH32 0x266DC24A75EA4C7D7C74F89A78DC3A44307BABF0B588230497189FC46D71693D SWAP1 PUSH2 0x185F SWAP1 DUP5 SWAP1 DUP7 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1875 PUSH2 0x34ED JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xC21 PUSH8 0xDE0B6B3A7640000 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x18160DDD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x18D0 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 0x18F4 SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0xAB2 JUMP JUMPDEST PUSH0 PUSH2 0xC21 PUSH1 0x65 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x1921 PUSH2 0x3536 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x1948 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x1964 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x1972 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x1990 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x19BA JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x19C2 PUSH2 0x355E JUMP JUMPDEST PUSH2 0x19CC DUP10 DUP10 PUSH2 0x356E JUMP JUMPDEST PUSH2 0x19D5 DUP10 PUSH2 0x3580 JUMP JUMPDEST PUSH2 0x19DF DUP8 DUP8 PUSH2 0x35AB JUMP JUMPDEST DUP4 ISZERO PUSH2 0x1A25 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA84 PUSH2 0x1A3D DUP4 PUSH2 0x2BBB JUMP JUMPDEST PUSH2 0xC45 PUSH1 0x64 PUSH1 0x65 PUSH2 0x2C0F JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x1A92 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1AC6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3D560939 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 0x1061 JUMP JUMPDEST POP PUSH0 PUSH2 0x1AD1 DUP3 PUSH2 0x1475 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE MLOAD SWAP2 SWAP3 POP SWAP1 PUSH32 0xE2EBFBED0DF9004EAE018A4AE91B24BAA0CD1D83F495FAB6DDE3A1493F9DC6C6 SWAP1 PUSH2 0x1B21 SWAP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 DUP2 ISZERO PUSH2 0x1B4F JUMPI PUSH2 0xA84 PUSH2 0x1B43 PUSH1 0x64 PUSH1 0x65 PUSH2 0x2C0F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x64 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0xA84 JUMP JUMPDEST PUSH0 PUSH2 0xA84 DUP3 PUSH2 0x3611 JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP1 DUP3 DUP1 DUP1 DUP4 DUP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51A8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD SWAP1 SWAP2 POP ISZERO DUP1 ISZERO PUSH2 0x1B9C JUMPI POP PUSH1 0x1 DUP2 ADD SLOAD ISZERO JUMPDEST PUSH2 0x1BE0 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 0x1152540DCC4C8E88155B9A5B9A5D1A585B1A5E9959 PUSH1 0x5A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x1BE8 PUSH2 0x3639 JUMP JUMPDEST PUSH2 0x1BF0 PUSH2 0x3677 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0xF PUSH1 0xF8 SHL SWAP13 SWAP4 SWAP12 POP SWAP2 SWAP10 POP CHAINID SWAP9 POP ADDRESS SWAP8 POP SWAP6 POP SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO DUP1 PUSH2 0x1CC0 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1C91 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 0x1CB5 SWAP2 SWAP1 PUSH2 0x4EA2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP2 SWAP1 PUSH2 0x1CEB JUMPI PUSH1 0x40 MLOAD PUSH4 0x7EF0808B 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 0x1061 JUMP JUMPDEST POP PUSH1 0x67 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0xDB0A396BDD47D29C2B55A6631F0B286785EA8ED9F585D34C8E32CDB022C3BC82 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x67 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x1DA6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x3D560939 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 0x1061 JUMP JUMPDEST POP PUSH2 0x1DBB DUP4 PUSH2 0x1DB3 PUSH2 0x2573 JUMP JUMPDEST DUP4 SWAP2 SWAP1 PUSH2 0x368D JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP3 DUP6 ADD MLOAD SWAP5 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP2 SWAP1 SWAP2 OR SWAP3 SWAP1 SWAP3 AND OR SWAP1 SSTORE PUSH2 0x1E38 DUP4 PUSH2 0x36C9 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xA1AEB41F04A9A2AA1450E8EDD0FA1A0A7971FF65C7BBB7B2CA0379B9327EDBAF DUP5 PUSH1 0x40 MLOAD PUSH2 0x1E73 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x1390 CALLER ADDRESS DUP6 PUSH2 0x1E89 PUSH2 0x2A2F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x3732 JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE04 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5188 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0xB09 SWAP1 PUSH2 0x4E6A JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1EE2 PUSH2 0xC26 JUMP JUMPDEST PUSH1 0x69 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1FA2 JUMPI PUSH1 0x69 SLOAD PUSH1 0x40 MLOAD PUSH4 0xF3F43703 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xF3F43703 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1F3C 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 0x1F60 SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT PUSH2 0x1F71 JUMPI PUSH0 SWAP2 POP PUSH2 0x1F9C JUMP JUMPDEST PUSH2 0x1F99 PUSH2 0x1F7E DUP3 DUP5 PUSH2 0x4E57 JUMP JUMPDEST PUSH2 0xF65 PUSH2 0x1F89 PUSH2 0x2905 JUMP JUMPDEST DUP6 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x2AFE JUMP JUMPDEST SWAP2 POP JUMPDEST POP PUSH2 0x1FC0 JUMP JUMPDEST PUSH2 0x1FBD PUSH2 0x1FAD PUSH2 0x2905 JUMP JUMPDEST DUP3 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x2AFE JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH2 0xBFE PUSH1 0x65 DUP3 PUSH2 0x32F7 JUMP JUMPDEST PUSH2 0x1FD5 CALLER DUP3 PUSH2 0x2ECB JUMP JUMPDEST PUSH2 0x1FE6 PUSH2 0x1FE1 DUP3 PUSH2 0x3768 JUMP JUMPDEST PUSH2 0x36C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE CALLER SWAP1 PUSH32 0xA17978B5145B36C8C694B15CD193AB32FAC45FBB1B2378E56CA71B11A5BC5722 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMP JUMPDEST CALLER PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x2063 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4E63EDA3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST POP PUSH2 0x2070 DUP5 DUP5 DUP5 DUP5 PUSH2 0x30AC JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0xB98 DUP2 DUP6 DUP6 PUSH2 0x2E5F JUMP JUMPDEST PUSH0 PUSH2 0x2096 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x20BF JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x20C8 PUSH2 0x3798 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x20DA JUMPI DUP1 SWAP3 POP PUSH2 0x2109 JUMP JUMPDEST DUP3 DUP2 DUP1 DUP3 GT ISZERO PUSH2 0x2106 JUMPI PUSH1 0x40 MLOAD PUSH4 0x531309FB PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x211A SWAP2 SWAP1 PUSH2 0x4F71 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x2128 SWAP1 POP PUSH2 0x2A2F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2176 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 0x219A SWAP2 SWAP1 PUSH2 0x4F3B JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x21E5 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 0x2070 SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH0 SWAP1 PUSH2 0xC21 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x3809 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2235 JUMPI PUSH2 0x2235 PUSH2 0x4F84 JUMP JUMPDEST SUB PUSH2 0x22AA JUMPI PUSH8 0xB1A2BC2EC500000 DUP2 LT ISZERO DUP1 ISZERO PUSH2 0x225A JUMPI POP PUSH8 0x120A871CC0020000 DUP2 GT ISZERO JUMPDEST DUP3 SWAP1 PUSH2 0x227A JUMPI PUSH1 0x40 MLOAD PUSH4 0xF8F01785 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1061 SWAP2 SWAP1 PUSH2 0x4FB8 JUMP JUMPDEST POP PUSH2 0x2284 DUP2 PUSH2 0x381E JUMP JUMPDEST PUSH1 0x67 DUP1 SLOAD PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xA0 SHL MUL PUSH2 0xFFFF PUSH1 0xA0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x23E9 JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x22BE JUMPI PUSH2 0x22BE PUSH2 0x4F84 JUMP JUMPDEST SUB PUSH2 0x231E JUMPI DUP2 PUSH8 0xDE0B6B3A7640000 DUP3 GT ISZERO PUSH2 0x22EE JUMPI PUSH1 0x40 MLOAD PUSH4 0xF8F01785 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1061 SWAP2 SWAP1 PUSH2 0x4FB8 JUMP JUMPDEST POP PUSH2 0x22F8 DUP2 PUSH2 0x381E JUMP JUMPDEST PUSH1 0x67 DUP1 SLOAD PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xB0 SHL MUL PUSH2 0xFFFF PUSH1 0xB0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x23E9 JUMP JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2332 JUMPI PUSH2 0x2332 PUSH2 0x4F84 JUMP JUMPDEST SUB PUSH2 0x2392 JUMPI DUP2 PUSH8 0xDE0B6B3A7640000 DUP3 GT ISZERO PUSH2 0x2362 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF8F01785 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1061 SWAP2 SWAP1 PUSH2 0x4FB8 JUMP JUMPDEST POP PUSH2 0x236C DUP2 PUSH2 0x381E JUMP JUMPDEST PUSH1 0x67 DUP1 SLOAD PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xC0 SHL MUL PUSH2 0xFFFF PUSH1 0xC0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x23E9 JUMP JUMPDEST DUP2 PUSH8 0x6F05B59D3B20000 DUP3 GT ISZERO PUSH2 0x23BD JUMPI PUSH1 0x40 MLOAD PUSH4 0xF8F01785 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1061 SWAP2 SWAP1 PUSH2 0x4FB8 JUMP JUMPDEST POP PUSH2 0x23C7 DUP2 PUSH2 0x381E JUMP JUMPDEST PUSH1 0x67 DUP1 SLOAD PUSH2 0xFFFF SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xD0 SHL MUL PUSH2 0xFFFF PUSH1 0xD0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMPDEST PUSH32 0xEEEAE4504D4C033C7DA36BF41D8ECE7C21842071CA9F9B423F8E8E36483DCD96 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH2 0x241A SWAP3 SWAP2 SWAP1 PUSH2 0x4FC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST CALLER PUSH0 DUP2 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x246E JUMPI PUSH1 0x40 MLOAD PUSH4 0x4E63EDA3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST POP DUP3 PUSH2 0x247C DUP2 PUSH2 0xF65 PUSH2 0xC04 JUMP JUMPDEST SWAP4 POP DUP4 PUSH0 SUB PUSH2 0x248C JUMPI SWAP1 POP PUSH2 0xA84 JUMP JUMPDEST PUSH2 0x24AD DUP5 PUSH2 0x2498 PUSH2 0x2573 JUMP JUMPDEST CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP2 SWAP1 PUSH2 0x3837 JUMP JUMPDEST POP CALLER PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP4 MLOAD DUP2 SLOAD SWAP3 DUP6 ADD MLOAD SWAP5 SWAP1 SWAP4 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP2 SWAP1 SWAP2 OR SWAP3 SWAP1 SWAP3 AND OR SWAP1 SSTORE PUSH2 0x2524 PUSH2 0x1FE1 DUP6 PUSH2 0x4FE1 JUMP JUMPDEST PUSH2 0x252E DUP4 DUP6 PUSH2 0x2EFF JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE CALLER SWAP2 PUSH32 0x98697A4799DBD9DB66C7168304C43CBA77A27A50D2785625E09072E0D91FDD53 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x1190 DUP5 DUP3 PUSH2 0x4E57 JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH0 SWAP1 PUSH2 0xC21 SWAP1 PUSH1 0x1 PUSH1 0xD0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO DUP1 PUSH2 0x2632 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2603 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 0x2627 SWAP2 SWAP1 PUSH2 0x4EA2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP2 SWAP1 PUSH2 0x265D JUMPI PUSH1 0x40 MLOAD PUSH4 0xF4AE1987 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 0x1061 JUMP JUMPDEST POP PUSH1 0x69 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0xF9F12DB81524E0E7D35F2779DAF818E6824509F85B09470F5C1C4D29304A756B SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x69 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 PUSH2 0x26D0 PUSH2 0x15A6 JUMP JUMPDEST PUSH0 PUSH2 0x26E3 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x2756 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x272F 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 0x2753 SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST SWAP3 POP JUMPDEST PUSH2 0x2760 DUP2 DUP5 PUSH2 0x3867 JUMP JUMPDEST POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x278B JUMPI PUSH1 0x40 MLOAD PUSH4 0x313C8981 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x27F5 DUP13 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x5AB42CED628888259C08AC98DB1EB0CF702FC1501344311D8B100CD1BFE4BB00 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND SWAP1 DUP7 ADD MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x60 DUP5 ADD MSTORE PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xE0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH0 PUSH2 0x284F DUP3 PUSH2 0x391A JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x285E DUP3 DUP8 DUP8 DUP8 PUSH2 0x3946 JUMP JUMPDEST SWAP1 POP DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x28A5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x25C00723 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x4 DUP4 ADD MSTORE DUP12 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x28B0 DUP11 DUP11 DUP11 PUSH2 0x2BAE JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE01 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 0x67 SLOAD PUSH0 SWAP1 PUSH2 0xC21 SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x3809 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x2967 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x299B JUMPI PUSH1 0x40 MLOAD PUSH4 0x3D560939 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 0x1061 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x66 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0x29EE JUMPI PUSH1 0x40 MLOAD PUSH4 0xA3E8F9B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST POP PUSH2 0x29F8 DUP2 PUSH2 0x3972 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0x66C0F28249C4FC4DB79872A4405BE78A93F19C65AC9EF2F173867A149065BCF2 SWAP1 PUSH0 SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2A8C 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 0xC21 SWAP2 SWAP1 PUSH2 0x4EA2 JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH0 SWAP1 PUSH2 0xC21 SWAP1 PUSH1 0x1 PUSH1 0xB0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x3809 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0xA84 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x2B0B DUP7 DUP7 PUSH2 0x398E JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x2B2F JUMPI DUP4 DUP2 DUP2 PUSH2 0x2B25 JUMPI PUSH2 0x2B25 PUSH2 0x4FFB JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0xED6 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x2B46 JUMPI PUSH2 0x2B46 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x39AA JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1390 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x39BB JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5188 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP4 SWAP1 SWAP4 MSTORE POP POP PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH0 SWAP1 PUSH2 0xA84 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH4 0x5F5E100 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3A9F JUMP JUMPDEST DUP2 SLOAD PUSH0 SWAP1 DUP2 SWAP1 PUSH2 0x2C2D SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x3AD4 JUMP JUMPDEST SWAP1 POP DUP1 PUSH0 SUB PUSH2 0x2C4F JUMPI POP POP DUP2 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0xA84 JUMP JUMPDEST DUP4 SLOAD PUSH2 0x1190 SWAP1 PUSH2 0x2C73 SWAP1 DUP4 SWAP1 PUSH8 0xDE0B6B3A7640000 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x3B20 JUMP JUMPDEST DUP6 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x3B3B JUMP JUMPDEST PUSH0 PUSH2 0xED6 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP6 AND JUMPDEST PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B20 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6C82BBBF PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xD905777E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2D0D JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x2D0A SWAP2 DUP2 ADD SWAP1 PUSH2 0x4EBD JUMP JUMPDEST PUSH1 0x1 JUMPDEST ISZERO PUSH2 0x2D24 JUMPI DUP4 DUP2 LT ISZERO PUSH2 0x2D22 JUMPI PUSH1 0x1 SWAP2 POP DUP1 SWAP4 POP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2D93 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x2D90 SWAP2 DUP2 ADD SWAP1 PUSH2 0x4EBD JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2DE2 JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x25BCE30047860A48C9D8830DBF31873BE5434F4D28F14A5808A4EA8E35D08296 DUP5 PUSH1 0x40 MLOAD PUSH2 0x2DD2 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 PUSH2 0x2DE5 JUMP JUMPDEST SWAP2 POP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x2DF5 DUP2 PUSH2 0x36C9 JUMP JUMPDEST PUSH2 0x2DFE DUP2 PUSH2 0x3B57 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x2E0C DUP5 DUP5 PUSH2 0x28BC JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 LT ISZERO PUSH2 0x2070 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x2E51 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 PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x2070 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x39BB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x2E88 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2EB1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x1390 DUP4 DUP4 DUP4 PUSH2 0x3B8D JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0xED6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2EF4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x16F1 DUP3 PUSH0 DUP4 PUSH2 0x3B8D JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x2F33 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6427F273 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST POP DUP1 PUSH0 SUB PUSH2 0x2F3F JUMPI POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2F48 PUSH2 0x3798 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x2F8B JUMPI PUSH0 PUSH2 0x2F65 PUSH1 0x68 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x2F89 JUMPI PUSH2 0x2F89 DUP2 PUSH2 0x2F84 DUP5 DUP7 PUSH2 0x4E57 JUMP JUMPDEST PUSH2 0x3867 JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ADDRESS EQ PUSH2 0x1390 JUMPI PUSH2 0x1390 DUP4 DUP4 PUSH2 0x2FA8 PUSH2 0x2A2F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x3E15 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2FE1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x16F1 PUSH0 DUP4 DUP4 PUSH2 0x3B8D JUMP JUMPDEST DUP2 SLOAD PUSH0 SWAP1 TIMESTAMP SWAP1 PUSH4 0xFFFFFFFF DUP1 DUP4 AND PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 SWAP3 DIV AND LT ISZERO PUSH2 0x3066 JUMPI DUP4 SLOAD PUSH2 0x305E SWAP1 PUSH4 0x1E13380 SWAP1 PUSH2 0x302C SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP5 PUSH2 0x500F JUMP JUMPDEST PUSH2 0x303C SWAP1 PUSH4 0xFFFFFFFF AND DUP7 PUSH2 0x502B JUMP JUMPDEST PUSH2 0x3046 SWAP2 SWAP1 PUSH2 0x5042 JUMP JUMPDEST DUP6 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x3E4A JUMP JUMPDEST SWAP2 POP POP PUSH2 0xA84 JUMP JUMPDEST POP POP DUP2 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0xA84 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xED6 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP6 AND PUSH8 0xDE0B6B3A7640000 PUSH2 0x3A9F JUMP JUMPDEST PUSH0 PUSH2 0xC21 PUSH2 0x3E6D JUMP JUMPDEST PUSH2 0x30B9 PUSH1 0x64 DUP3 PUSH1 0x65 PUSH2 0x331F JUMP JUMPDEST DUP1 MLOAD PUSH1 0x64 DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP1 SWAP5 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND OR PUSH1 0x1 PUSH1 0x80 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 MUL SWAP3 SWAP1 SWAP3 OR PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x1 PUSH1 0xE0 SHL PUSH4 0xFFFFFFFF SWAP3 DUP4 AND MUL OR SWAP1 SWAP2 SSTORE PUSH2 0x3126 SWAP1 PUSH1 0x65 SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH2 0x3EE0 AND JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 SWAP2 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP2 AND OR PUSH1 0x65 SSTORE PUSH1 0x40 DUP1 MLOAD DUP5 DUP2 MSTORE SWAP2 DUP3 ADD DUP6 SWAP1 MSTORE DUP2 ADD DUP3 SWAP1 MSTORE DUP5 SWAP1 PUSH32 0x82E3211B2071BA731D809BC922F607D914D7CB7D76B03E72ACBE7753613E21F3 SWAP1 PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x3212 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x3206 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x3230 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x2DFE DUP2 PUSH2 0x3F7C JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x3295 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x3292 SWAP2 DUP2 ADD SWAP1 PUSH2 0x4EBD JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x32BD JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x32ED JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x1390 DUP4 DUP4 PUSH2 0x402D JUMP JUMPDEST DUP2 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP1 DUP4 GT ISZERO PUSH2 0x3316 JUMPI PUSH2 0x305E DUP2 DUP5 PUSH2 0x4E57 JUMP JUMPDEST PUSH0 SWAP2 POP POP PUSH2 0xA84 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP4 SLOAD PUSH2 0x3355 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x3AD4 JUMP JUMPDEST PUSH2 0x335F SWAP1 DUP5 PUSH2 0x5061 JUMP JUMPDEST DUP5 SLOAD SWAP1 SWAP4 POP PUSH0 SWAP1 PUSH2 0x33A0 SWAP1 PUSH2 0x3388 SWAP1 DUP7 SWAP1 PUSH8 0xDE0B6B3A7640000 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x4082 JUMP JUMPDEST DUP7 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x409D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE DUP8 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP3 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH4 0xFFFFFFFF TIMESTAMP AND SWAP1 DUP3 ADD MSTORE SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH0 SUB PUSH2 0x343D JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x3414 DUP6 PUSH2 0x40E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x342B DUP5 PUSH2 0x40E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP1 MSTORE SWAP1 POP PUSH2 0xED6 JUMP JUMPDEST DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH0 PUSH2 0x3453 DUP6 DUP4 PUSH2 0x4F71 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x34AA PUSH2 0x346C DUP7 DUP9 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B20 JUMP JUMPDEST DUP9 SLOAD PUSH2 0x3491 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP7 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B20 JUMP JUMPDEST PUSH2 0x349B SWAP2 SWAP1 PUSH2 0x4F71 JUMP JUMPDEST PUSH8 0xDE0B6B3A7640000 DUP5 PUSH2 0x3B20 JUMP JUMPDEST SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x34C0 DUP5 PUSH2 0x40E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x34D7 DUP4 PUSH2 0x40E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE POP SWAP4 POP POP POP POP PUSH2 0xED6 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x3230 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0xA84 JUMP JUMPDEST PUSH2 0x3566 PUSH2 0x411A JUMP JUMPDEST PUSH2 0x3230 PUSH2 0x413F JUMP JUMPDEST PUSH2 0x3576 PUSH2 0x411A JUMP JUMPDEST PUSH2 0x16F1 DUP3 DUP3 PUSH2 0x4147 JUMP JUMPDEST PUSH2 0x3588 PUSH2 0x411A JUMP JUMPDEST PUSH2 0x2DFE DUP2 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x31 PUSH1 0xF8 SHL DUP2 MSTORE POP PUSH2 0x4197 JUMP JUMPDEST PUSH2 0x35B3 PUSH2 0x411A JUMP JUMPDEST PUSH2 0x35BD PUSH1 0x64 PUSH2 0x3972 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH2 0x2710 PUSH1 0x20 DUP4 ADD MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x80 ADD MSTORE PUSH1 0x67 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH2 0x271 PUSH1 0xA4 SHL OR SWAP1 SSTORE PUSH2 0x3606 PUSH1 0x2 DUP4 PUSH2 0x2222 JUMP JUMPDEST PUSH2 0x16F1 PUSH1 0x3 DUP3 PUSH2 0x2222 JUMP JUMPDEST PUSH0 DUP1 PUSH32 0x5AB42CED628888259C08AC98DB1EB0CF702FC1501344311D8B100CD1BFE4BB00 PUSH2 0x2BCC JUMP JUMPDEST PUSH32 0xA16A46D94261C7517CC8FF89F61C0CE93598E3C849801011DEE649A6A557D102 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51A8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0xB09 SWAP1 PUSH2 0x4E6A JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51A8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0xAF8 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x36BD DUP6 DUP6 PUSH2 0x36B8 DUP3 DUP8 PUSH2 0x2FEC JUMP JUMPDEST PUSH2 0x41F6 JUMP JUMPDEST SWAP2 POP SWAP2 POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x36D6 PUSH1 0x64 DUP3 PUSH1 0x65 PUSH2 0x331F JUMP JUMPDEST DUP1 MLOAD PUSH1 0x64 DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP1 SWAP5 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP6 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR OR SWAP3 SWAP1 SWAP3 AND OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x3740 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x42BF JUMP JUMPDEST PUSH2 0x2070 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFF SHL SUB DUP3 GT ISZERO PUSH2 0x3794 JUMPI PUSH1 0x40 MLOAD PUSH4 0x123BAF03 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x37A1 PUSH2 0x2A2F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 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 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x37E5 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 0xC21 SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST PUSH0 PUSH2 0xA84 PUSH6 0x5AF3107A4000 PUSH2 0xFFFF DUP5 AND PUSH2 0x502B JUMP JUMPDEST PUSH0 PUSH2 0xA84 PUSH2 0x3832 PUSH6 0x5AF3107A4000 DUP5 PUSH2 0x5042 JUMP JUMPDEST PUSH2 0x432C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x36BD DUP6 DUP6 PUSH2 0x3862 DUP3 DUP8 PUSH2 0x2FEC JUMP JUMPDEST PUSH2 0x435A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x38B8 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 0x38DC SWAP2 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST POP PUSH1 0x32 SLOAD DUP2 GT ISZERO PUSH2 0x3900 JUMPI PUSH2 0x38F8 PUSH1 0x32 SLOAD DUP3 PUSH2 0xE57 SWAP2 SWAP1 PUSH2 0x4E57 JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE POP POP JUMP JUMPDEST DUP1 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x3911 SWAP2 SWAP1 PUSH2 0x4E57 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA84 PUSH2 0x3926 PUSH2 0x30A3 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH2 0x1901 PUSH1 0xF0 SHL DUP2 MSTORE PUSH1 0x2 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x3956 DUP9 DUP9 DUP9 DUP9 PUSH2 0x43EA JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x3966 DUP3 DUP3 PUSH2 0x44B2 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF TIMESTAMP AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH6 0x3782DACE9D9 PUSH1 0x92 SHL OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5188 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH2 0x39F2 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3A1B JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP4 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP4 SWAP1 SSTORE DUP2 ISZERO PUSH2 0x3A98 JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3A8F SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3AB9 PUSH0 DUP4 DUP1 PUSH2 0x3AB2 JUMPI PUSH2 0x3AB2 PUSH2 0x4FFB JUMP JUMPDEST DUP6 DUP8 MULMOD GT SWAP1 JUMP JUMPDEST DUP3 DUP5 DUP7 MUL DUP2 PUSH2 0x3ACA JUMPI PUSH2 0x3ACA PUSH2 0x4FFB JUMP JUMPDEST DIV ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 SLOAD PUSH0 SWAP1 PUSH2 0xED6 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH4 0x1E13380 PUSH2 0x3AFA PUSH4 0xFFFFFFFF DUP7 AND TIMESTAMP PUSH2 0x4E57 JUMP JUMPDEST DUP7 SLOAD PUSH2 0x3B16 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x502B JUMP JUMPDEST PUSH2 0x2C9B SWAP2 SWAP1 PUSH2 0x5042 JUMP JUMPDEST PUSH0 DUP2 DUP4 DUP6 MUL DUP2 PUSH2 0x3B32 JUMPI PUSH2 0x3B32 PUSH2 0x4FFB JUMP JUMPDEST DIV SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xED6 PUSH2 0x3B52 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH2 0x4F71 JUMP JUMPDEST PUSH2 0x456A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x731C439C5BAE15BE1344EEC709967E046B4F7D3F7E37ABEFFC5247F448FA18BF SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3C0A JUMPI PUSH2 0x3BA9 PUSH1 0x64 DUP4 PUSH1 0x65 PUSH2 0x459D JUMP JUMPDEST DUP2 MLOAD PUSH1 0x64 DUP1 SLOAD PUSH1 0x20 DUP6 ADD MLOAD PUSH1 0x40 SWAP1 SWAP6 ADD MLOAD PUSH4 0xFFFFFFFF AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP1 SWAP7 AND PUSH1 0x1 PUSH1 0x80 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR OR SWAP4 SWAP1 SWAP4 AND OR SWAP1 SWAP2 SSTORE SWAP1 POP PUSH2 0x3D06 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3C25 JUMPI PUSH2 0x3BA9 PUSH1 0x64 DUP4 PUSH1 0x65 PUSH2 0x45C8 JUMP JUMPDEST PUSH1 0x67 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO DUP1 PUSH2 0x3CB9 JUMPI POP PUSH1 0x67 SLOAD PUSH1 0x40 MLOAD PUSH4 0x5FCDCA37 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP6 DUP2 AND PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD DUP6 SWAP1 MSTORE SWAP1 SWAP2 AND SWAP1 PUSH4 0x5FCDCA37 SWAP1 PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3C95 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 0x3CB9 SWAP2 SWAP1 PUSH2 0x4F3B JUMP JUMPDEST DUP5 DUP5 DUP5 SWAP1 SWAP2 SWAP3 PUSH2 0x3CDF JUMPI PUSH1 0x40 MLOAD PUSH4 0x25CFF2D3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1061 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4EF3 JUMP JUMPDEST POP PUSH2 0x3D03 SWAP2 POP DUP4 SWAP1 POP PUSH2 0x3CF4 PUSH1 0x64 PUSH1 0x65 PUSH2 0x2C0F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 PUSH2 0x45F3 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5188 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND ISZERO PUSH2 0x3DA3 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3D85 JUMPI DUP6 PUSH2 0x3D54 DUP3 PUSH2 0xC45 PUSH1 0x64 PUSH1 0x65 PUSH2 0x2C0F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP4 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP4 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x3DD0 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP4 ADD SWAP1 SSTORE JUMPDEST DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP6 PUSH1 0x40 MLOAD PUSH2 0x3A8F SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH2 0x3E22 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x4610 JUMP JUMPDEST PUSH2 0x1390 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH0 PUSH2 0xED6 PUSH2 0x3B52 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP6 AND PUSH2 0x2C9B PUSH8 0xDE0B6B3A7640000 DUP7 PUSH2 0x4F71 JUMP JUMPDEST PUSH0 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH2 0x3E97 PUSH2 0x4672 JUMP JUMPDEST PUSH2 0x3E9F PUSH2 0x46DA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0xC0 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP4 SWAP1 SUB PUSH2 0x3F1E JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0xED6 JUMP JUMPDEST DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH0 PUSH2 0x3F34 DUP6 DUP4 PUSH2 0x4E57 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x34AA PUSH2 0x3F4D DUP7 DUP9 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B20 JUMP JUMPDEST DUP9 SLOAD PUSH2 0x3F72 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP7 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3B20 JUMP JUMPDEST PUSH2 0x349B SWAP2 SWAP1 PUSH2 0x4E57 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3FE2 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 0x4006 SWAP2 SWAP1 PUSH2 0x4EA2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2DFE JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4036 DUP3 PUSH2 0x471C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x407A JUMPI PUSH2 0x1390 DUP3 DUP3 PUSH2 0x477F JUMP JUMPDEST PUSH2 0x16F1 PUSH2 0x4810 JUMP JUMPDEST PUSH0 DUP2 DUP4 DUP6 MUL DUP2 PUSH2 0x4094 JUMPI PUSH2 0x4094 PUSH2 0x4FFB JUMP JUMPDEST SDIV SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x40B2 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH2 0x5061 JUMP JUMPDEST SWAP1 POP DUP1 PUSH4 0x5F5E100 DUP2 LT ISZERO PUSH2 0x40DD JUMPI PUSH1 0x40 MLOAD PUSH4 0x6C53FB2B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1061 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP PUSH2 0x1190 DUP2 PUSH2 0x456A JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 GT ISZERO PUSH2 0x3794 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x80 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH2 0x4122 PUSH2 0x482F JUMP JUMPDEST PUSH2 0x3230 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3230 PUSH2 0x411A JUMP JUMPDEST PUSH2 0x414F PUSH2 0x411A JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5188 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 PUSH2 0x4188 DUP5 DUP3 PUSH2 0x50CC JUMP JUMPDEST POP PUSH1 0x4 DUP2 ADD PUSH2 0x2070 DUP4 DUP3 PUSH2 0x50CC JUMP JUMPDEST PUSH2 0x419F PUSH2 0x411A JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51A8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0xA16A46D94261C7517CC8FF89F61C0CE93598E3C849801011DEE649A6A557D102 PUSH2 0x41D8 DUP5 DUP3 PUSH2 0x50CC JUMP JUMPDEST POP PUSH1 0x3 DUP2 ADD PUSH2 0x41E7 DUP4 DUP3 PUSH2 0x50CC JUMP JUMPDEST POP PUSH0 DUP1 DUP3 SSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SSTORE POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x4225 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP5 AND DUP6 PUSH2 0x45F3 JUMP JUMPDEST DUP6 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO SWAP1 DUP2 MUL DUP2 PUSH2 0x4264 JUMPI PUSH2 0x4255 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP8 AND DUP9 PUSH2 0x4848 JUMP JUMPDEST SWAP4 POP PUSH2 0x4261 DUP5 DUP5 PUSH2 0x4E57 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP1 PUSH0 SUB PUSH2 0x4277 JUMPI PUSH8 0xDE0B6B3A7640000 SWAP6 POP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x428B DUP4 PUSH2 0x40E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP5 POP POP POP POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x431B JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x430F JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xFFFF DUP3 GT ISZERO PUSH2 0x3794 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x10 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x4389 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP5 AND DUP6 PUSH2 0x4848 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD SWAP1 SWAP2 MSTORE DUP7 SLOAD SWAP2 SWAP3 POP SWAP1 DUP2 SWAP1 PUSH2 0x43B9 SWAP1 PUSH2 0x43B4 SWAP1 DUP6 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x4F71 JUMP JUMPDEST PUSH2 0x40E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP SWAP2 POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0x4423 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x44A8 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 0x4474 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 0x449F JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x44A8 JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x44C5 JUMPI PUSH2 0x44C5 PUSH2 0x4F84 JUMP JUMPDEST SUB PUSH2 0x44CE JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x44E2 JUMPI PUSH2 0x44E2 PUSH2 0x4F84 JUMP JUMPDEST SUB PUSH2 0x4500 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 0x4514 JUMPI PUSH2 0x4514 PUSH2 0x4F84 JUMP JUMPDEST SUB PUSH2 0x4535 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x4549 JUMPI PUSH2 0x4549 PUSH2 0x4F84 JUMP JUMPDEST SUB PUSH2 0x16F1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP3 GT ISZERO PUSH2 0x3794 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x60 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x36BD DUP6 DUP6 PUSH2 0x3862 DUP3 DUP8 PUSH2 0x2C0F JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 PUSH2 0x36BD DUP6 DUP6 PUSH2 0x36B8 DUP3 DUP8 PUSH2 0x2C0F JUMP JUMPDEST PUSH0 PUSH2 0xED6 DUP3 PUSH8 0xDE0B6B3A7640000 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH2 0x3A9F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x4666 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x465A JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51A8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x468A PUSH2 0x3639 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x46A2 JUMPI DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 SLOAD DUP1 ISZERO PUSH2 0x46B1 JUMPI SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0xC5D2460186F7233C927E7DB2DCC703C0E500B653CA82273B7BFAD8045D85A470 SWAP4 POP POP POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51A8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x46F2 PUSH2 0x3677 JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x470A JUMPI DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SLOAD DUP1 ISZERO PUSH2 0x46B1 JUMPI SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x4751 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1061 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x478C DUP5 DUP5 PUSH2 0x4865 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x47AD JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x47AD JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x47BA JUMPI PUSH2 0x305E PUSH2 0x4878 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x47E4 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 0x1061 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x47F7 JUMPI PUSH2 0x47F2 PUSH2 0x4891 JUMP JUMPDEST PUSH2 0x307F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLVALUE ISZERO PUSH2 0x3230 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x4838 PUSH2 0x3536 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xED6 DUP3 PUSH8 0xDE0B6B3A7640000 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP7 AND PUSH2 0x3B20 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x48AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xED6 JUMPI PUSH0 PUSH0 REVERT 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 PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0xED6 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x48C3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2DFE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4928 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4933 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4951 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xED6 DUP2 PUSH2 0x4903 JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x2DFE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x497A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4985 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4995 DUP2 PUSH2 0x495C JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x49B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x49BD DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x49CD DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x49F1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x4A03 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x4A13 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x4A23 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4A40 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x4A52 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x4A62 DUP2 PUSH2 0x4903 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x4A82 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH1 0x60 DUP8 ADD CALLDATALOAD SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD PUSH2 0x4AA9 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP3 SWAP6 SWAP2 SWAP5 SWAP4 PUSH1 0xA0 SWAP1 SWAP3 ADD CALLDATALOAD SWAP3 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP5 GT ISZERO PUSH2 0x4AEC JUMPI PUSH2 0x4AEC PUSH2 0x4ABE JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x4B1B JUMPI PUSH2 0x4B1B PUSH2 0x4ABE JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP6 LT ISZERO PUSH2 0x4B32 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4B5A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4B65 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4B80 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x4B90 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4B9F DUP6 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x4AD2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4BBB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP2 CALLDATALOAD SWAP4 PUSH1 0x20 DUP4 ADD CALLDATALOAD SWAP4 POP PUSH1 0x40 SWAP1 SWAP3 ADD CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x4BE1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xED6 DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x4AD2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4C03 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4C19 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4C25 DUP8 DUP3 DUP9 ADD PUSH2 0x4BD2 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4C41 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4C4D DUP8 DUP3 DUP9 ADD PUSH2 0x4BD2 JUMP JUMPDEST SWAP5 SWAP8 SWAP5 SWAP7 POP POP POP POP PUSH1 0x40 DUP4 ADD CALLDATALOAD SWAP3 PUSH1 0x60 ADD CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4C74 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xED6 DUP2 PUSH2 0x495C JUMP JUMPDEST PUSH1 0xFF PUSH1 0xF8 SHL DUP9 AND DUP2 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0x4C9D PUSH1 0xE0 DUP4 ADD DUP10 PUSH2 0x48C3 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x4CAF DUP2 DUP10 PUSH2 0x48C3 JUMP JUMPDEST PUSH1 0x60 DUP5 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD DUP7 SWAP1 MSTORE DUP4 DUP2 SUB PUSH1 0xC0 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP8 ADD SWAP4 POP SWAP1 SWAP2 ADD SWAP1 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x4D04 JUMPI DUP4 MLOAD DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x4CE6 JUMP JUMPDEST POP SWAP1 SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4D26 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4995 DUP2 PUSH2 0x4903 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4D48 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4D62 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 CALLDATALOAD SWAP5 PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP4 PUSH1 0x60 ADD CALLDATALOAD SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4D8F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x4 DUP2 LT PUSH2 0x4933 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x2DFE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x4DC1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x4DCC DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD PUSH2 0x4DDC DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH2 0x4DFA DUP2 PUSH2 0x4D9D JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4E28 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4E33 DUP2 PUSH2 0x4903 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4995 DUP2 PUSH2 0x4903 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 0xA84 JUMPI PUSH2 0xA84 PUSH2 0x4E43 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4E7E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x4E9C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4EB2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xED6 DUP2 PUSH2 0x4903 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4ECD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP2 DUP2 SUB PUSH0 DUP4 SLT DUP1 ISZERO DUP4 DUP4 SGT AND DUP4 DUP4 SLT DUP3 AND OR ISZERO PUSH2 0x307F JUMPI PUSH2 0x307F PUSH2 0x4E43 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4F27 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xED6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4F4B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xED6 DUP2 PUSH2 0x495C JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4F66 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xED6 DUP2 PUSH2 0x4D9D JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xA84 JUMPI PUSH2 0xA84 PUSH2 0x4E43 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x4FB4 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0xA84 DUP3 DUP5 PUSH2 0x4F98 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4FD4 DUP3 DUP6 PUSH2 0x4F98 JUMP JUMPDEST DUP3 PUSH1 0x20 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x4FF5 JUMPI PUSH2 0x4FF5 PUSH2 0x4E43 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0xA84 JUMPI PUSH2 0xA84 PUSH2 0x4E43 JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0xA84 JUMPI PUSH2 0xA84 PUSH2 0x4E43 JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x505C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x5080 JUMPI PUSH2 0x5080 PUSH2 0x4E43 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x1390 JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x50AD JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3A98 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x50B9 JUMP JUMPDEST DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x50E6 JUMPI PUSH2 0x50E6 PUSH2 0x4ABE JUMP JUMPDEST PUSH2 0x50FA DUP2 PUSH2 0x50F4 DUP5 SLOAD PUSH2 0x4E6A JUMP JUMPDEST DUP5 PUSH2 0x5088 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x512C JUMPI PUSH0 DUP4 ISZERO PUSH2 0x5115 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 0x3A98 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x515B JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x513B JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x5178 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 INVALID MSTORE 0xC6 ORIGIN SELFBALANCE RJUMPI 0xF47D 0xB1 SWAP14 TLOAD RJUMP 0x4600 ADDRESS 0xC4 SWAP8 CREATE PUSH8 0xCA4CEBF71BA98EEA 0xDA 0xBE KECCAK256 0xBA 0xCE STOP LOG1 PUSH11 0x46D94261C7517CC8FF89F6 SHR 0xC 0xE9 CALLDATALOAD SWAP9 CALLF 0xC849 DUP1 LT GT 0xDE DUPN 0x49 0xA6 0xA5 JUMPI DATALOADN 0x36 ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCA26469706673582212209B SLT MCOPY DUP2 DELEGATECALL 0xBE 0xAC GAS 0xD6 0xBA JUMPI 0xF6 PUSH30 0xAD9C77FB08BB1CD1D397C3C72D7632245DCC7B64736F6C634300081E0033 ","sourceMap":"1883:26155:22:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10801:307;;;;;;;;;;-1:-1:-1;10801:307:22;;;;;:::i;:::-;;:::i;:::-;;;470:14:125;;463:22;445:41;;433:2;418:18;10801:307:22;;;;;;;;20215:279;;;;;;;;;;;;;:::i;:::-;;;643:25:125;;;631:2;616:18;20215:279:22;497:177:125;2715:144:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5132:186::-;;;;;;;;;;-1:-1:-1;5132:186:44;;;;;:::i;:::-;;:::i;13825:162:22:-;;;;;;;;;;-1:-1:-1;13825:162:22;;;;;:::i;:::-;;:::i;:::-;;;;2132:25:125;;;2188:2;2173:18;;2166:34;;;;2105:18;13825:162:22;1958:248:125;16338:211:22;;;;;;;;;;;;;:::i;23207:152::-;;;;;;;;;;;;;:::i;11379:144::-;;;;;;;;;;;;;:::i;6826:990:27:-;;;;;;;;;;-1:-1:-1;6826:990:27;;;;;:::i;:::-;;:::i;:::-;;13475:110:22;;;;;;;;;;-1:-1:-1;13475:110:22;;;;;:::i;:::-;;:::i;5910:244:44:-;;;;;;;;;;-1:-1:-1;5910:244:44;;;;;:::i;:::-;;:::i;20498:1665:22:-;;;;;;;;;;-1:-1:-1;20498:1665:22;;;;;:::i;:::-;;:::i;19647:538::-;;;;;;;;;;-1:-1:-1;19647:538:22;;;;;:::i;:::-;;:::i;11234:116::-;;;;;;;;;;;;;:::i;:::-;;;4592:4:125;4580:17;;;4562:36;;4550:2;4535:18;11234:116:22;4420:184:125;24434:300:22;;;;;;;;;;-1:-1:-1;24434:300:22;;;;;:::i;:::-;;:::i;3055:104:45:-;;;;;;;;;;;;;:::i;18972:422:22:-;;;;;;;;;;-1:-1:-1;18972:422:22;;;;;:::i;:::-;;:::i;2366:94:25:-;;;;;;;;;;-1:-1:-1;2444:11:25;2366:94;;;-1:-1:-1;;;;;5830:32:125;;;5812:51;;5800:2;5785:18;2366:94:25;5645:224:125;11927:366:27;;;;;;;;;;;;;:::i;3911:214:76:-;;;;;;:::i;:::-;;:::i;14685:108:22:-;;;;;;;;;;;;;:::i;17779:455::-;;;;;;;;;;-1:-1:-1;17779:455:22;;;;;:::i;:::-;;:::i;3466:126:76:-;;;;;;;;;;;;;:::i;17652:123:22:-;;;;;;;;;;;;;:::i;16072:96::-;;;;;;;;;;;;;:::i;9699:336::-;;;;;;;;;;-1:-1:-1;9699:336:22;;;;;:::i;:::-;;:::i;11552:165::-;;;;;;;;;;-1:-1:-1;11552:165:22;;;;;:::i;:::-;;:::i;22686:279::-;;;;;;;;;;-1:-1:-1;22686:279:22;;;;;:::i;:::-;;:::i;14403:194::-;;;;;;;;;;-1:-1:-1;14403:194:22;;;;;:::i;:::-;;:::i;5400:81:27:-;;;;;;;;;;-1:-1:-1;5467:9:27;;5400:81;;2809:154:45;;;;;;;;;;-1:-1:-1;2809:154:45;;;;;:::i;:::-;;:::i;5061:903:52:-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:::i;26939:336:22:-;;;;;;;;;;-1:-1:-1;26939:336:22;;;;;:::i;:::-;;:::i;23865:539::-;;;;;;;;;;-1:-1:-1;23865:539:22;;;;;:::i;:::-;;:::i;27279:93::-;;;;;;;;;;-1:-1:-1;27350:7:22;:17;-1:-1:-1;;;;;27350:17:22;27279:93;;2972:148:44;;;;;;;;;;;;;:::i;16198:110:22:-;;;;;;;;;;-1:-1:-1;16285:4:22;:17;-1:-1:-1;;;16285:17:22;;-1:-1:-1;;;;;16285:17:22;16198:110;;15000:468;;;;;;;;;;;;;:::i;22167:187::-;;;;;;;;;;-1:-1:-1;22167:187:22;;;;;:::i;:::-;;:::i;18740:228::-;;;;;;;;;;-1:-1:-1;18740:228:22;;;;;:::i;:::-;;:::i;15498:91::-;;;;;;;;;;-1:-1:-1;15573:11:22;;-1:-1:-1;;;;;15573:11:22;15498:91;;4419:178:44;;;;;;;;;;-1:-1:-1;4419:178:44;;;;;:::i;:::-;;:::i;11246:445:27:-;;;;;;;;;;-1:-1:-1;11246:445:27;;;;;:::i;:::-;;:::i;1732:58:76:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1732:58:76;;;;;14210:104:22;;;;;;;;;;-1:-1:-1;14292:9:22;:16;-1:-1:-1;;;;;14292:16:22;14210:104;;16670:117;;;;;;;;;;;;;:::i;24990:1945::-;;;;;;;;;;-1:-1:-1;24990:1945:22;;;;;:::i;:::-;;:::i;23363:498::-;;;;;;;;;;-1:-1:-1;23363:498:22;;;;;:::i;:::-;;:::i;24861:125::-;;;;;;;;;;;;;:::i;27664:93::-;;;;;;;;;;-1:-1:-1;27744:7:22;;-1:-1:-1;;;;;27744:7:22;27664:93;;27376:284;;;;;;;;;;-1:-1:-1;27376:284:22;;;;;:::i;:::-;;:::i;10717:268:27:-;;;;;;;;;;-1:-1:-1;10717:268:27;;;;;:::i;:::-;;:::i;2098:672:45:-;;;;;;;;;;-1:-1:-1;2098:672:45;;;;;:::i;:::-;;:::i;4630:195:44:-;;;;;;;;;;-1:-1:-1;4630:195:44;;;;;:::i;:::-;;:::i;17048:113:22:-;;;;;;;;;;;;;:::i;22358:324::-;;;;;;;;;;-1:-1:-1;22358:324:22;;;;;:::i;:::-;;:::i;2464:97:25:-;;;;;;;;;;;;;:::i;17417:113:22:-;;;;;;;;;;;;;:::i;10801:307::-;10886:4;10911:36;10935:11;10911:23;:36::i;:::-;:85;;;-1:-1:-1;;;;;;;10957:39:22;;-1:-1:-1;;;10957:39:22;10911:85;:142;;;-1:-1:-1;;;;;;;11006:47:22;;-1:-1:-1;;;11006:47:22;10911:142;:192;;;-1:-1:-1;;;;;;;11063:40:22;;-1:-1:-1;;;11063:40:22;10911:192;10898:205;10801:307;-1:-1:-1;;10801:307:22:o;20215:279::-;20282:7;20297:14;20314:52;20338:22;:20;:22::i;:::-;2178:4;20314:16;:4;15809:7:21;-1:-1:-1;;;;;15809:7:21;;15720:102;20314:16:22;:23;:52;:23;:52::i;:::-;20297:69;;20372:20;20395:13;:11;:13::i;:::-;20372:36;;20434:6;20418:12;:22;20414:75;;20449:21;20464:6;20449:12;:21;:::i;:::-;20442:28;;;;20215:279;:::o;20414:75::-;20488:1;20481:8;;;;20215:279;:::o;2715:144:44:-;2760:13;2785:22;-1:-1:-1;;;;;;;;;;;2810:18:44;2785:43;;2845:1;:7;;2838:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2715:144;:::o;5132:186::-;5205:4;987:10:48;5259:31:44;987:10:48;5275:7:44;5284:5;5259:8;:31::i;:::-;-1:-1:-1;5307:4:44;;5132:186;-1:-1:-1;;;5132:186:44:o;13825:162:22:-;13901:7;13910;13933:21;13949:4;13933:15;:21::i;:::-;13964:9;:16;13925:57;;-1:-1:-1;;;;;13964:16:22;;;;-1:-1:-1;13825:162:22;-1:-1:-1;;13825:162:22:o;16338:211::-;16397:7;16412:10;16425:13;:11;:13::i;:::-;16412:26;;16448:2;16454:1;16448:7;16444:101;;16464:1;16457:8;;;16338:211;:::o;16444:101::-;16525:4;:8;16491:47;;-1:-1:-1;;;;;;;;16499:17:22;;;;;16525:8;16535:2;16491:33;:47::i;:::-;16484:54;;;16338:211;:::o;23207:152::-;23261:7;23299:20;:9;:18;:20::i;:::-;23283:13;:11;:13::i;:::-;:36;;;;:::i;:::-;23276:43;;23207:152;:::o;11379:144::-;11501:9;:16;;11440:7;;11462:56;;-1:-1:-1;;;;;11501:16:22;;11462:28;;11485:4;11462:22;:28::i;:::-;-1:-1:-1;;;;;11462:38:22;;;:56::i;6826:990:27:-;6900:11;6917:20;6940:10;:8;:10::i;:::-;6917:33;-1:-1:-1;;;;;;6964:36:27;;;;:79;;;7037:5;-1:-1:-1;;;;;7004:39:27;:13;-1:-1:-1;;;;;7004:19:27;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;7004:39:27;;6964:79;6956:109;;;;-1:-1:-1;;;6956:109:27;;;;;;;;;;;;7071:14;7088:12;15573:11:22;;-1:-1:-1;;;;;15573:11:22;;15498:91;7088:12:27;7071:29;-1:-1:-1;7106:18:27;-1:-1:-1;;;;;7135:28:27;;;7131:459;;7192:30;;-1:-1:-1;;;7192:30:27;;7216:4;7192:30;;;5812:51:125;7173:16:27;;-1:-1:-1;;;;;7192:15:27;;;;;5785:18:125;;7192:30:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7173:49;-1:-1:-1;7234:13:27;;7230:354;;7263:5;7259:317;;;7381:33;7398:5;7405:8;7381:16;:33::i;:::-;7358:56;-1:-1:-1;7358:56:27;-1:-1:-1;7259:317:27;;;7513:52;;-1:-1:-1;;;7513:52:27;;;;;16131:25:125;;;7544:4:27;16172:18:125;;;16165:60;;;16241:18;;;16234:60;-1:-1:-1;;;;;7513:12:27;;;;;16104:18:125;;7513:52:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7500:65;;7259:317;7165:425;7131:459;15657:11:22;:19;;-1:-1:-1;;;;;;15657:19:22;-1:-1:-1;;;;;15657:19:22;;;;;7680:54:27;7723:9;;7702:10;7695:38;;;;:::i;:::-;7680:14;:54::i;:::-;7752:1;7740:9;:13;7764:47;;470:14:125;;463:22;445:41;;-1:-1:-1;;;;;7764:47:27;;;;;;;;;;433:2:125;418:18;7764:47:27;;;;;;;;6894:922;;;;6826:990;;:::o;13475:110:22:-;13537:7;13559:21;13575:4;13559:15;:21::i;5910:244:44:-;5997:4;987:10:48;6053:37:44;6069:4;987:10:48;6084:5:44;6053:15;:37::i;:::-;6100:26;6110:4;6116:2;6120:5;6100:9;:26::i;:::-;6143:4;6136:11;;;5910:244;;;;;;:::o;20498:1665:22:-;20643:7;1373:10:25;-1:-1:-1;;;;;1395:11:25;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:25;;;;;;;;;;;;21063:1:22::1;21038:12;15573:11:::0;;-1:-1:-1;;;;;15573:11:22;;15498:91;21038:12:::1;-1:-1:-1::0;;;;;21030:35:22::1;;21026:182;;21185:16;:14;:16::i;:::-;21213:19;21235:47;21244:16;21254:5;21244:9;:16::i;:::-;21262:19;:17;:19::i;:::-;21235:8;:47::i;:::-;21213:69;;-1:-1:-1::0;;21292:6:22::1;:27:::0;21288:53:::1;;21330:11;21321:20;;21288:53;21351:6;21361:1;21351:11:::0;21347:25:::1;;21371:1;21364:8;;;;;21347:25;21401:7;::::0;-1:-1:-1;;;;;21401:7:22::1;21393:30:::0;;:60:::1;;-1:-1:-1::0;21435:7:22::1;::::0;-1:-1:-1;;;;;21427:26:22;;::::1;21435:7:::0;::::1;21427:26;21393:60;:112;;;-1:-1:-1::0;21457:7:22::1;::::0;:43:::1;::::0;-1:-1:-1;;;21457:43:22;;-1:-1:-1;;;;;21457:7:22;;::::1;::::0;:22:::1;::::0;:43:::1;::::0;21480:4:::1;::::0;21486:5;;21493:6;;21457:43:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;::::0;21393:112:::1;21540:7;::::0;-1:-1:-1;;;;;21540:7:22::1;::::0;21378:176:::1;;;::::0;-1:-1:-1;;;21378:176:22;;-1:-1:-1;;;;;5830:32:125;;;21378:176:22::1;::::0;::::1;5812:51:125::0;5785:18;;21378:176:22::1;;;;;;;;;-1:-1:-1::0;21568:6:22;21578:11;21568:21;;::::1;;21560:71;;;::::0;-1:-1:-1;;;21560:71:22;;::::1;::::0;::::1;2132:25:125::0;;;;2173:18;;;2166:34;2105:18;;21560:71:22::1;1958:248:125::0;21560:71:22::1;-1:-1:-1::0;;21854:7:22::1;:17:::0;-1:-1:-1;;;;;21854:17:22::1;21846:40:::0;;:100:::1;;-1:-1:-1::0;21890:7:22::1;:17:::0;:56:::1;::::0;-1:-1:-1;;;21890:56:22;;-1:-1:-1;;;;;21890:17:22;;::::1;::::0;:35:::1;::::0;:56:::1;::::0;21926:4:::1;::::0;21932:5;;21939:6;;21890:56:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21979:5;21986:6;21831:168;;;;;::::0;-1:-1:-1;;;21831:168:22;;-1:-1:-1;;;;;17855:32:125;;;21831:168:22::1;::::0;::::1;17837:51:125::0;17904:18;;;17897:34;17810:18;;21831:168:22::1;17663:274:125::0;21831:168:22::1;;;22019:5;-1:-1:-1::0;;;;;22009:15:22::1;:6;-1:-1:-1::0;;;;;22009:15:22::1;;22005:74;;22034:38;22050:5;22057:6;22065;22034:15;:38::i;:::-;22084:20;22090:5;22097:6;22084:5;:20::i;:::-;22110:29;22122:8;22132:6;22110:11;:29::i;:::-;22152:6;22145:13;;;1432:1:25;20498:1665:22::0;;;;;;:::o;19647:538::-;1373:10:25;-1:-1:-1;;;;;1395:11:25;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:25;;;;;;;;;;;;19776:7:22::1;:17:::0;-1:-1:-1;;;;;19776:17:22::1;19768:40:::0;;:211:::1;;-1:-1:-1::0;19821:7:22::1;:17:::0;:54:::1;::::0;-1:-1:-1;;;19821:54:22;;-1:-1:-1;;;;;19821:17:22;;::::1;::::0;:32:::1;::::0;:54:::1;::::0;19854:4:::1;::::0;19860:6;;19868;;19821:54:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;19900:8;-1:-1:-1::0;;;;;19890:18:22::1;:6;-1:-1:-1::0;;;;;19890:18:22::1;;:87;;;-1:-1:-1::0;19912:7:22::1;:17:::0;:65:::1;::::0;-1:-1:-1;;;19912:65:22;;19946:4:::1;19912:65;::::0;::::1;18188:51:125::0;-1:-1:-1;;;;;18275:32:125;;;18255:18;;;18248:60;18344:32;;;18324:18;;;18317:60;18393:18;;;18386:34;;;19912:17:22;;::::1;::::0;:33:::1;::::0;18160:19:125;;19912:65:22::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20009:6;20017;19753:277;;;;;::::0;-1:-1:-1;;;19753:277:22;;-1:-1:-1;;;;;17855:32:125;;;19753:277:22::1;::::0;::::1;17837:51:125::0;17904:18;;;17897:34;17810:18;;19753:277:22::1;17663:274:125::0;19753:277:22::1;;;20036:23;20042:8;20052:6;20036:5;:23::i;:::-;20089:20;:18;:20::i;:::-;20069:17;:15;:17::i;:::-;:40;20065:115;;;20140:17;:15;:17::i;:::-;20159:20;:18;:20::i;:::-;20118:62;::::0;-1:-1:-1;;;20118:62:22;;::::1;::::0;::::1;2132:25:125::0;;;;2173:18;;;2166:34;2105:18;;20118:62:22::1;1958:248:125::0;20065:115:22::1;19647:538:::0;;;:::o;11234:116::-;11292:5;11312:11;-1:-1:-1;;;;;11312:20:22;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;11312:31:22;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;24434:300::-;-1:-1:-1;;;;;24557:16:22;;24507:7;24557:16;;;:6;:16;;;;;24587:15;;24557:16;;-1:-1:-1;;;24587:15:22;;;;24579:56;;;;-1:-1:-1;;;24579:56:22;;-1:-1:-1;;;;;5830:32:125;;;24579:56:22;;;5812:51:125;5785:18;;24579:56:22;5645:224:125;24579:56:22;-1:-1:-1;24716:11:22;;24648:81;;-1:-1:-1;;;;;24716:11:22;24648:45;24666:26;:24;:26::i;:::-;24648:4;;:17;:45::i;:::-;-1:-1:-1;;;;;24648:59:22;;;:81::i;3055:104:45:-;3106:7;3132:20;:18;:20::i;18972:422:22:-;987:10:48;8660:20:22;;;;:6;:20;;;;;:31;-1:-1:-1;;;8660:31:22;;;;8652:73;;;;-1:-1:-1;;;8652:73:22;;-1:-1:-1;;;;;5830:32:125;;;8652:73:22;;;5812:51:125;5785:18;;8652:73:22;5645:224:125;8652:73:22;;19190:63:::1;19201:8;19211:9;19222:18;19242:10;19190;:63::i;:::-;19263:17:::0;;19259:131:::1;;19290:35;19302:8;19312:12;19290:11;:35::i;:::-;19360:8;-1:-1:-1::0;;;;;19338:45:22::1;19350:8;19338:45;19370:12;19338:45;;;;643:25:125::0;;631:2;616:18;;497:177;19259:131:22::1;18972:422:::0;;;;;;:::o;11927:366:27:-;11966:11;11980:12;15573:11:22;;-1:-1:-1;;;;;15573:11:22;;15498:91;11980:12:27;11966:26;-1:-1:-1;;;;;;12006:25:27;;11998:55;;;;-1:-1:-1;;;11998:55:27;;;;;;;;;;;;12103:27;;-1:-1:-1;;;12103:27:27;;12124:4;12103:27;;;5812:51:125;12059:22:27;;-1:-1:-1;;;;;12084:18:27;;;;;;;12103:12;;5785:18:125;;12103:27:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12084:47;;;;;;;;;;;;;643:25:125;;631:2;616:18;;497:177;12084:47:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12059:72;;12137:13;12185:9;;12160:14;12153:42;;;;:::i;:::-;12137:58;-1:-1:-1;12205:11:27;;12201:88;;12226:9;:26;;;12260:22;12275:6;12260:14;:22::i;3911:214:76:-;2568:13;:11;:13::i;:::-;4026:36:::1;4044:17;4026;:36::i;:::-;4072:46;4094:17;4113:4;4072:21;:46::i;:::-;3911:214:::0;;:::o;14685:108:22:-;14732:7;14754:34;14774:13;:11;:13::i;:::-;14754:4;;:19;:34::i;17779:455::-;987:10:48;8660:20:22;;;;:6;:20;;;;;:31;-1:-1:-1;;;8660:31:22;;;;8652:73;;;;-1:-1:-1;;;8652:73:22;;-1:-1:-1;;;;;5830:32:125;;;8652:73:22;;;5812:51:125;5785:18;;8652:73:22;5645:224:125;8652:73:22;;17914:22:::1;:20;:22::i;:::-;17902:9;:34;17898:99;;;17963:9;17974:22;:20;:22::i;:::-;17945:52;::::0;-1:-1:-1;;;17945:52:22;;::::1;::::0;::::1;2132:25:125::0;;;;2173:18;;;2166:34;2105:18;;17945:52:22::1;1958:248:125::0;17898:99:22::1;18015:33;:9;18040:1;18043:4;18015:24;:33::i;:::-;18003:45:::0;;:9:::1;:45:::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;-1:-1:-1;;;;;18003:45:22;;::::1;-1:-1:-1::0;;;;;;18003:45:22;;;;-1:-1:-1;;;;;;;;18003:45:22;;::::1;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;;18003:45:22::1;-1:-1:-1::0;;;18003:45:22::1;::::0;;::::1;;;::::0;;;18129:39:::1;::::0;:4:::1;::::0;18138:9;;18149:18;;18129:8:::1;:39;:::i;:::-;18122:46:::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;;;;;18122:46:22;;::::1;-1:-1:-1::0;;;18122:46:22::1;::::0;::::1;;:4;:46:::0;18179:50:::1;::::0;18189:8;;18179:50:::1;::::0;::::1;::::0;18199:18;;18219:9;;2132:25:125;;;2188:2;2173:18;;2166:34;2120:2;2105:18;;1958:248;18179:50:22::1;;;;;;;;17779:455:::0;;;:::o;3466:126:76:-;3527:7;2839:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;3466:126:76;:::o;17652:123:22:-;17700:7;17722:48;2178:4;17751;-1:-1:-1;;;;;17751:16:22;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17722:4;15809:7:21;-1:-1:-1;;;;;15809:7:21;17722:16:22;15720:102:21;16072:96:22;16125:7;16147:16;:4;15809:7:21;-1:-1:-1;;;;;15809:7:21;;15720:102;9699:336:22;4158:30:75;4191:26;:24;:26::i;:::-;4302:15;;4158:59;;-1:-1:-1;4302:15:75;-1:-1:-1;;;4302:15:75;;;4301:16;;4348:14;;4279:19;4724:16;;:34;;;;;4744:14;4724:34;4704:54;;4768:17;4788:11;:16;;4803:1;4788:16;:50;;;;-1:-1:-1;4816:4:75;4808:25;:30;4788:50;4768:70;;4854:12;4853:13;:30;;;;;4871:12;4870:13;4853:30;4849:91;;;4906:23;;-1:-1:-1;;;4906:23:75;;;;;;;;;;;4849:91;4949:18;;-1:-1:-1;;4949:18:75;4966:1;4949:18;;;4977:67;;;;5011:22;;-1:-1:-1;;;;5011:22:75;-1:-1:-1;;;5011:22:75;;;4977:67;9872:16:22::1;:14;:16::i;:::-;9894:28;9907:5;9914:7;9894:12;:28::i;:::-;9928:25;9947:5;9928:18;:25::i;:::-;9959:71;9983:19;10004:25;9959:23;:71::i;:::-;5068:14:75::0;5064:101;;;5098:23;;-1:-1:-1;;;;5098:23:75;;;5140:14;;-1:-1:-1;19116:50:125;;5140:14:75;;19104:2:125;19089:18;5140:14:75;;;;;;;5064:101;4092:1079;;;;;9699:336:22;;;;:::o;11552:165::-;11626:7;11648:64;11687:24;11703:7;11687:15;:24::i;:::-;11648:28;:9;11671:4;11648:22;:28::i;22686:279::-;1373:10:25;-1:-1:-1;;;;;1395:11:25;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:25;;;;;;;;;;;;22775:8:22;-1:-1:-1;;;;;22775:22:22;::::1;22767:58;;;::::0;-1:-1:-1;;;22767:58:22;;-1:-1:-1;;;;;5830:32:125;;;22767:58:22::1;::::0;::::1;5812:51:125::0;5785:18;;22767:58:22::1;5645:224:125::0;22767:58:22::1;;22831:21;22855:17;22863:8;22855:7;:17::i;:::-;-1:-1:-1::0;;;;;22885:16:22;::::1;;::::0;;;:6:::1;:16;::::0;;;;;22878:23;;;;22912:48;22831:41;;-1:-1:-1;22885:16:22;22912:48:::1;::::0;::::1;::::0;22831:41;643:25:125;;631:2;616:18;;497:177;22912:48:22::1;;;;;;;;22761:204;22686:279:::0;:::o;14403:194::-;14472:7;14491;14487:105;;;14507:40;:28;:9;14530:4;14507:22;:28::i;:::-;-1:-1:-1;;;;;14507:38:22;;5931:101:21;14487:105:22;14565:9;:15;-1:-1:-1;;;14565:15:22;;-1:-1:-1;;;;;14565:15:22;:27;5931:101:21;2809:154:45;2911:7;2937:19;2950:5;2937:12;:19::i;5061:903:52:-;5159:13;5186:18;;5159:13;;;5186:18;5159:13;-1:-1:-1;;;;;;;;;;;5665:13:52;;5399:45;;-1:-1:-1;5665:18:52;:43;;;;-1:-1:-1;5687:16:52;;;;:21;5665:43;5657:77;;;;-1:-1:-1;;;5657:77:52;;19379:2:125;5657:77:52;;;19361:21:125;19418:2;19398:18;;;19391:30;-1:-1:-1;;;19437:18:125;;;19430:51;19498:18;;5657:77:52;19177:345:125;5657:77:52;5796:13;:11;:13::i;:::-;5823:16;:14;:16::i;:::-;5931;;;5915:1;5931:16;;;;;;;;;-1:-1:-1;;;5745:212:52;;;-1:-1:-1;5745:212:52;;-1:-1:-1;5853:13:52;;-1:-1:-1;5888:4:52;;-1:-1:-1;5915:1:52;-1:-1:-1;5931:16:52;-1:-1:-1;5745:212:52;-1:-1:-1;;5061:903:52:o;26939:336:22:-;-1:-1:-1;;;;;27018:35:22;;;;:110;;;27117:11;-1:-1:-1;;;;;27057:71:22;27086:12;-1:-1:-1;;;;;27057:54:22;;:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;27057:71:22;;27018:110;27153:12;27003:169;;;;;-1:-1:-1;;;27003:169:22;;-1:-1:-1;;;;;5830:32:125;;;27003:169:22;;;5812:51:125;5785:18;;27003:169:22;5645:224:125;27003:169:22;-1:-1:-1;27200:7:22;:17;27183:49;;;-1:-1:-1;;;;;27200:17:22;;;20022:51:125;;20109:32;;;20104:2;20089:18;;20082:60;27183:49:22;;19995:18:125;27183:49:22;;;;;;;27238:7;:32;;-1:-1:-1;;;;;;27238:32:22;-1:-1:-1;;;;;27238:32:22;;;;;;;;;;26939:336::o;23865:539::-;-1:-1:-1;;;;;24035:18:22;;24000:32;24035:18;;;:6;:18;;;;;24067:15;;24035:18;;-1:-1:-1;;;24067:15:22;;;;24059:58;;;;-1:-1:-1;;;24059:58:22;;-1:-1:-1;;;;;5830:32:125;;;24059:58:22;;;5812:51:125;5785:18;;24059:58:22;5645:224:125;24059:58:22;;24148:44;24157:6;24165:26;:24;:26::i;:::-;24148:4;;:44;:8;:44::i;:::-;-1:-1:-1;;;;;;24124:18:22;;;;;;:6;:18;;;;;;;;;24123:69;;;;;;;;;;;;;;;-1:-1:-1;;;24123:69:22;-1:-1:-1;;;;;;;;;;24123:69:22;;;-1:-1:-1;;;24123:69:22;-1:-1:-1;;;;;;24123:69:22;;;-1:-1:-1;;;;;24123:69:22;;;;;;;;;;;;;;;;;;24198:31;24221:6;24198:15;:31::i;:::-;24259:10;-1:-1:-1;;;;;24240:38:22;;24271:6;24240:38;;;;643:25:125;;631:2;616:18;;497:177;24240:38:22;;;;;;;;24335:64;987:10:48;24385:4:22;24392:6;24335:10;:8;:10::i;:::-;-1:-1:-1;;;;;24335:27:22;;:64;;:27;:64::i;2972:148:44:-;3104:9;3097:16;;3019:13;;-1:-1:-1;;;;;;;;;;;2082:20:44;3097:16;;;:::i;15000:468:22:-;15053:7;15068:10;15081:13;:11;:13::i;:::-;15112:7;;15068:26;;-1:-1:-1;;;;;;15112:7:22;15104:30;15100:328;;15170:7;;:32;;-1:-1:-1;;;15170:32:22;;15197:4;15170:32;;;5812:51:125;15144:23:22;;-1:-1:-1;;;;;15170:7:22;;:26;;5785:18:125;;15170:32:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15144:58;;15233:2;15214:15;:21;15210:150;;15252:1;15247:6;;15210:150;;;15283:68;15292:20;15297:15;15292:2;:20;:::i;:::-;15314:36;15324:20;:18;:20::i;:::-;15314:2;;2178:4;15314:9;:36::i;15283:68::-;15278:73;;15210:150;15136:230;15100:328;;;15385:36;15395:20;:18;:20::i;:::-;15385:2;;2178:4;15385:9;:36::i;:::-;15380:41;;15100:328;15440:23;:4;15460:2;15440:19;:23::i;22167:187::-;22229:27;987:10:48;22249:6:22;22229:5;:27::i;:::-;22262:34;22278:17;:6;:15;:17::i;:::-;22262:15;:34::i;:::-;22307:42;;643:25:125;;;987:10:48;;22307:42:22;;631:2:125;616:18;22307:42:22;;;;;;;22167:187;:::o;18740:228::-;987:10:48;8660:20:22;;;;:6;:20;;;;;:31;-1:-1:-1;;;8660:31:22;;;;8652:73;;;;-1:-1:-1;;;8652:73:22;;-1:-1:-1;;;;;5830:32:125;;;8652:73:22;;;5812:51:125;5785:18;;8652:73:22;5645:224:125;8652:73:22;;18900:63:::1;18911:8;18921:9;18932:18;18952:10;18900;:63::i;:::-;18740:228:::0;;;;:::o;4419:178:44:-;4488:4;987:10:48;4542:27:44;987:10:48;4559:2:44;4563:5;4542:9;:27::i;11246:445:27:-;11308:11;11322:12;15573:11:22;;-1:-1:-1;;;;;15573:11:22;;15498:91;11322:12:27;11308:26;-1:-1:-1;;;;;;11348:25:27;;11340:55;;;;-1:-1:-1;;;11340:55:27;;;;;;;;;;;;11401:15;11419:10;:8;:10::i;:::-;11401:28;;-1:-1:-1;;11439:6:27;:27;11435:143;;11485:7;11476:16;;11435:143;;;11521:6;11531:7;11521:17;;;;11513:58;;;;-1:-1:-1;;;11513:58:27;;;;;2132:25:125;;;;2173:18;;;2166:34;2105:18;;11513:58:27;1958:248:125;11513:58:27;;;11435:143;11596:6;11583:9;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;11608:10:27;;-1:-1:-1;11608:8:27;:10::i;:::-;:39;;-1:-1:-1;;;11608:39:27;;-1:-1:-1;;;;;17855:32:125;;;11608:39:27;;;17837:51:125;17904:18;;;17897:34;;;11608:18:27;;;;;;;17810::125;;11608:39:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;11653:33:27;;-1:-1:-1;;;11653:33:27;;;;;20680:25:125;;;11680:4:27;20721:18:125;;;20714:60;-1:-1:-1;;;;;11653:10:27;;;;;20653:18:125;;11653:33:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;16670:117:22:-;16753:7;:28;16723:7;;16745:37;;-1:-1:-1;;;16753:28:22;;;;16745:7;:37::i;24990:1945::-;25069:30;25060:5;:39;;;;;;;;:::i;:::-;;25056:1831;;2332:6;25117:8;:23;;:50;;;;;2389:6;25144:8;:23;;25117:50;25186:5;25109:84;;;;;-1:-1:-1;;;25109:84:22;;;;;;;;:::i;:::-;;25232:17;25240:8;25232:7;:17::i;:::-;25201:7;:48;;;;;;;-1:-1:-1;;;25201:48:22;-1:-1:-1;;;;25201:48:22;;;;;;;;;25056:1831;;;25275:28;25266:5;:37;;;;;;;;:::i;:::-;;25262:1625;;25355:5;2178:4;25321:15;;;25313:49;;;;-1:-1:-1;;;25313:49:22;;;;;;;;:::i;:::-;;25399:17;25407:8;25399:7;:17::i;:::-;25370:7;:46;;;;;;;-1:-1:-1;;;25370:46:22;-1:-1:-1;;;;25370:46:22;;;;;;;;;25262:1625;;;25442:28;25433:5;:37;;;;;;;;:::i;:::-;;25429:1458;;25522:5;2178:4;25488:15;;;25480:49;;;;-1:-1:-1;;;25480:49:22;;;;;;;;:::i;:::-;;25566:17;25574:8;25566:7;:17::i;:::-;25537:7;:46;;;;;;;-1:-1:-1;;;25537:46:22;-1:-1:-1;;;;25537:46:22;;;;;;;;;25429:1458;;;26813:5;2451:6;26767:27;;;26759:61;;;;-1:-1:-1;;;26759:61:22;;;;;;;;:::i;:::-;;26863:17;26871:8;26863:7;:17::i;:::-;26828:7;:52;;;;;;;-1:-1:-1;;;26828:52:22;-1:-1:-1;;;;26828:52:22;;;;;;;;;25429:1458;26897:33;26914:5;26921:8;26897:33;;;;;;;:::i;:::-;;;;;;;;24990:1945;;:::o;23363:498::-;987:10:48;23459:7:22;8660:20;;;:6;:20;;;;;:31;23459:7;;987:10:48;-1:-1:-1;;;8660:31:22;;;;8652:73;;;;-1:-1:-1;;;8652:73:22;;-1:-1:-1;;;;;5830:32:125;;;8652:73:22;;;5812:51:125;5785:18;;8652:73:22;5645:224:125;8652:73:22;-1:-1:-1;23496:6:22;23517:41:::1;23496:6:::0;23534:23:::1;:21;:23::i;23517:41::-;23508:50;;23568:6;23578:1;23568:11:::0;23564:35:::1;;23588:11:::0;-1:-1:-1;23581:18:22::1;;23564:35;23632:60;23657:6;23665:26;:24;:26::i;:::-;987:10:48::0;23632:20:22::1;::::0;;;:6:::1;:20;::::0;;;;;;:24:::1;:60::i;:::-;-1:-1:-1::0;987:10:48;23606:20:22::1;::::0;;;:6:::1;:20;::::0;;;;;;;;23605:87;;;;;;::::1;::::0;;;;::::1;::::0;::::1;;-1:-1:-1::0;;;23605:87:22::1;-1:-1:-1::0;;;;;;;;;;23605:87:22;;::::1;-1:-1:-1::0;;;23605:87:22::1;-1:-1:-1::0;;;;;;23605:87:22;;;-1:-1:-1;;;;;23605:87:22;;::::1;::::0;;;;;;;::::1;::::0;;;::::1;;::::0;;23698:32:::1;23714:15;23722:6:::0;23714:15:::1;:::i;23698:32::-;23736:29;23748:8;23758:6;23736:11;:29::i;:::-;23776:47;::::0;;2132:25:125;;;2188:2;2173:18;;2166:34;;;987:10:48;;23776:47:22::1;::::0;2105:18:125;23776:47:22::1;;;;;;;23836:20;23850:6:::0;23836:11;:20:::1;:::i;24861:125::-:0;24948:7;:32;24918:7;;24940:41;;-1:-1:-1;;;24948:32:22;;;;24940:7;:41::i;27376:284::-;-1:-1:-1;;;;;27444:32:22;;;;:104;;;27537:11;-1:-1:-1;;;;;27480:68:22;27509:9;-1:-1:-1;;;;;27480:51:22;;:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;27480:68:22;;27444:104;27570:9;27429:157;;;;;-1:-1:-1;;;27429:157:22;;-1:-1:-1;;;;;5830:32:125;;;27429:157:22;;;5812:51:125;5785:18;;27429:157:22;5645:224:125;27429:157:22;-1:-1:-1;27611:7:22;;27597:33;;;-1:-1:-1;;;;;27611:7:22;;;20022:51:125;;20109:32;;;20104:2;20089:18;;20082:60;27597:33:22;;19995:18:125;27597:33:22;;;;;;;27636:7;:19;;-1:-1:-1;;;;;;27636:19:22;-1:-1:-1;;;;;27636:19:22;;;;;;;;;;27376:284::o;10717:268:27:-;10783:18;10809:16;:14;:16::i;:::-;10831:11;10845:12;15573:11:22;;-1:-1:-1;;;;;15573:11:22;;15498:91;10845:12:27;10831:26;;-1:-1:-1;;10867:6:27;:27;10863:71;;10905:29;;-1:-1:-1;;;10905:29:27;;10928:4;10905:29;;;5812:51:125;-1:-1:-1;;;;;10905:14:27;;;;;5785:18:125;;10905:29:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10896:38;;10863:71;10940:21;10950:2;10954:6;10940:9;:21::i;:::-;-1:-1:-1;10974:6:27;;10717:268;-1:-1:-1;10717:268:27:o;2098:672:45:-;2319:8;2301:15;:26;2297:97;;;2350:33;;-1:-1:-1;;;2350:33:45;;;;;643:25:125;;;616:18;;2350:33:45;497:177:125;2297:97:45;2404:18;1294:95;2463:5;2470:7;2479:5;2486:16;2496:5;-1:-1:-1;;;;;1975:16:50;1618:7;1975:16;;;1026:21;1975:16;;;;;:18;;;;;;;;;1558:452;2486:16:45;2435:78;;;;;;22425:25:125;;;;-1:-1:-1;;;;;22486:32:125;;;22466:18;;;22459:60;22555:32;;;;22535:18;;;22528:60;22604:18;;;22597:34;22647:19;;;22640:35;22691:19;;;22684:35;;;22397:19;;2435:78:45;;;;;;;;;;;;2425:89;;;;;;2404:110;;2525:12;2540:28;2557:10;2540:16;:28::i;:::-;2525:43;;2579:14;2596:28;2610:4;2616:1;2619;2622;2596:13;:28::i;:::-;2579:45;;2648:5;-1:-1:-1;;;;;2638:15:45;:6;-1:-1:-1;;;;;2638:15:45;;2634:88;;2676:35;;-1:-1:-1;;;2676:35:45;;-1:-1:-1;;;;;20040:32:125;;;2676:35:45;;;20022:51:125;20109:32;;20089:18;;;20082:60;19995:18;;2676:35:45;19804:344:125;2634:88:45;2732:31;2741:5;2748:7;2757:5;2732:8;:31::i;:::-;2287:483;;;2098:672;;;;;;;:::o;4630:195:44:-;-1:-1:-1;;;;;4789:20:44;;;4710:7;4789:20;;;:13;:20;;;;;;;;:29;;;;;;;;;;;;;4630:195::o;17048:113:22:-;17129:7;:26;17099:7;;17121:35;;-1:-1:-1;;;17129:26:22;;;;17121:7;:35::i;22358:324::-;1373:10:25;-1:-1:-1;;;;;1395:11:25;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:25;;;;;;;;;;;;22444:8:22;-1:-1:-1;;;;;22444:22:22;::::1;22436:58;;;::::0;-1:-1:-1;;;22436:58:22;;-1:-1:-1;;;;;5830:32:125;;;22436:58:22::1;::::0;::::1;5812:51:125::0;5785:18;;22436:58:22::1;5645:224:125::0;22436:58:22::1;-1:-1:-1::0;;;;;;22535:16:22;::::1;22500:32;22535:16:::0;;;:6:::1;:16;::::0;;;;22565:15;;22535:16;;-1:-1:-1;;;22565:15:22;::::1;;;:20:::0;22557:61:::1;;;::::0;-1:-1:-1;;;22557:61:22;;-1:-1:-1;;;;;5830:32:125;;;22557:61:22::1;::::0;::::1;5812:51:125::0;5785:18;;22557:61:22::1;5645:224:125::0;22557:61:22::1;;22624:11;:4;:9;:11::i;:::-;22646:31;::::0;-1:-1:-1;;;;;22646:31:22;::::1;::::0;::::1;::::0;;;::::1;22430:252;22358:324:::0;:::o;2464:97:25:-;2505:14;2534:11;-1:-1:-1;;;;;2534:20:25;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;17417:113:22:-;17498:7;:26;17468:7;;17490:35;;-1:-1:-1;;;17498:26:22;;;;17490:7;:35::i;2156:206:25:-;2241:4;-1:-1:-1;;;;;;2260:40:25;;-1:-1:-1;;;2260:40:25;;:97;;-1:-1:-1;;;;;;;2304:53:25;;-1:-1:-1;;;2304:53:25;2253:104;2156:206;-1:-1:-1;;2156:206:25:o;7258:3683:105:-;7340:14;7391:12;7405:11;7420:12;7427:1;7430;7420:6;:12::i;:::-;7390:42;;;;7514:4;7522:1;7514:9;7510:365;;7849:11;7843:3;:17;;;;;:::i;:::-;;7836:24;;;;;;7510:365;8000:4;7985:11;:19;7981:142;;8024:84;5328:5;8044:16;;5327:36;940:4:95;5322:42:105;8024:11;:84::i;:::-;8375:17;8526:11;8523:1;8520;8513:25;8918:12;8948:15;;;8933:31;;9083:22;;;;;9816:1;9797;:15;;9796:21;;10049;;;10045:25;;10034:36;10119:21;;;10115:25;;10104:36;10191:21;;;10187:25;;10176:36;10262:21;;;10258:25;;10247:36;10335:21;;;10331:25;;10320:36;10409:21;;;10405:25;;;10394:36;9325:12;;;;9321:23;;;9346:1;9317:31;8638:18;;;8628:29;;;9432:11;;;;8681:19;;;;9176:14;;;;9425:18;;;;10884:13;;-1:-1:-1;;7258:3683:105;;;;;:::o;9923:128:44:-;10007:37;10016:5;10023:7;10032:5;10039:4;10007:8;:37::i;4053:171::-;4118:7;;-1:-1:-1;;;;;;;;;;;4162:18:44;-1:-1:-1;;;;;4197:20:44;;;:11;:20;;;;;;;;-1:-1:-1;;4197:20:44;;;;;4053:171::o;12393:160:21:-;12511:19;;12469:7;;12491:57;;-1:-1:-1;;;;;12511:19:21;573:3;699:4;12491:11;:57::i;6716:323::-;6866:23;;6813:9;;;;6852:38;;6861:3;;-1:-1:-1;;;6866:23:21;;;;6852:8;:38::i;:::-;6830:60;;6900:11;6915:1;6900:16;6896:47;;-1:-1:-1;;6925:18:21;;-1:-1:-1;;;6925:18:21;;-1:-1:-1;;;;;6925:18:21;6918:25;;6896:47;7012:19;;6955:79;;6978:55;;6986:11;;699:4;;-1:-1:-1;;;;;7012:19:21;6978:7;:55::i;:::-;6955:18;;-1:-1:-1;;;6955:18:21;;-1:-1:-1;;;;;6955:18:21;;:22;:79::i;2760:149::-;2837:7;2859:45;2867:12;-1:-1:-1;;;;;2881:15:21;;:17;699:4;2859:7;:45::i;9360:617:27:-;9505:36;;-1:-1:-1;;;9505:36:27;;9535:4;9505:36;;;5812:51:125;9462:18:27;;;;-1:-1:-1;;;;;9505:21:27;;;;;5785:18:125;;9505:36:27;;;;;;;;;;;;;;;;;;-1:-1:-1;9505:36:27;;;;;;;;-1:-1:-1;;9505:36:27;;;;;;;;;;;;:::i;:::-;;;9501:234;;;9588:14;9579:6;:23;9575:94;;;9623:4;9614:13;;9654:6;9637:23;;9575:94;9542:184;9501:234;9744:64;;-1:-1:-1;;;9744:64:27;;;;;16131:25:125;;;9787:4:27;16172:18:125;;;16165:60;;;16241:18;;;16234:60;-1:-1:-1;;;;;9744:18:27;;;;;16104::125;;9744:64:27;;;;;;;;;;;;;;;;;;;-1:-1:-1;9744:64:27;;;;;;;;-1:-1:-1;;9744:64:27;;;;;;;;;;;;:::i;:::-;;;9740:233;;9917:11;-1:-1:-1;;;;;9888:57:27;;9930:14;9888:57;;;;643:25:125;;631:2;616:18;;497:177;9888:57:27;;;;;;;;-1:-1:-1;9962:4:27;9740:233;;;9855:6;-1:-1:-1;9740:233:27;9360:617;;;;;:::o;19398:131:22:-;19463:25;19479:8;19463:15;:25::i;:::-;19494:30;19515:8;19494:20;:30::i;:::-;19398:131;:::o;11669:476:44:-;11768:24;11795:25;11805:5;11812:7;11795:9;:25::i;:::-;11768:52;;-1:-1:-1;;11834:16:44;:36;11830:309;;;11909:5;11890:16;:24;11886:130;;;11941:60;;-1:-1:-1;;;11941:60:44;;-1:-1:-1;;;;;23387:32:125;;11941:60:44;;;23369:51:125;23436:18;;;23429:34;;;23479:18;;;23472:34;;;23342:18;;11941:60:44;23167:345:125;11886:130:44;12057:57;12066:5;12073:7;12101:5;12082:16;:24;12108:5;12057:8;:57::i;6527:300::-;-1:-1:-1;;;;;6610:18:44;;6606:86;;6651:30;;-1:-1:-1;;;6651:30:44;;6678:1;6651:30;;;5812:51:125;5785:18;;6651:30:44;5645:224:125;6606:86:44;-1:-1:-1;;;;;6705:16:44;;6701:86;;6744:32;;-1:-1:-1;;;6744:32:44;;6773:1;6744:32;;;5812:51:125;5785:18;;6744:32:44;5645:224:125;6701:86:44;6796:24;6804:4;6810:2;6814:5;6796:7;:24::i;5633:111:105:-;5691:7;5328:5;;;5725;;;5327:36;5322:42;;5717:20;5087:294;9181:206:44;-1:-1:-1;;;;;9251:21:44;;9247:89;;9295:30;;-1:-1:-1;;;9295:30:44;;9322:1;9295:30;;;5812:51:125;5785:18;;9295:30:44;5645:224:125;9247:89:44;9345:35;9353:7;9370:1;9374:5;9345:7;:35::i;4034:510:27:-;4115:11;-1:-1:-1;;;;;4115:25:27;;4107:71;;;;-1:-1:-1;;;4107:71:27;;-1:-1:-1;;;;;5830:32:125;;;4107:71:27;;;5812:51:125;5785:18;;4107:71:27;5645:224:125;4107:71:27;;4188:6;4198:1;4188:11;4184:24;;4034:510;;:::o;4184:24::-;4213:15;4231:10;:8;:10::i;:::-;4213:28;;4261:6;4251:7;:16;4247:209;;;4277:11;4291:12;15573:11:22;;-1:-1:-1;;;;;15573:11:22;;15498:91;4291:12:27;4277:26;-1:-1:-1;;;;;;4315:25:27;;;4311:81;;4352:31;4362:2;4366:16;4375:7;4366:6;:16;:::i;:::-;4352:9;:31::i;:::-;4269:187;4247:209;-1:-1:-1;;;;;4465:28:27;;4488:4;4465:28;4461:78;;4495:44;4519:11;4532:6;4495:10;:8;:10::i;:::-;-1:-1:-1;;;;;4495:23:27;;:44;:23;:44::i;8655:208:44:-;-1:-1:-1;;;;;8725:21:44;;8721:91;;8769:32;;-1:-1:-1;;;8769:32:44;;8798:1;8769:32;;;5812:51:125;5785:18;;8769:32:44;5645:224:125;8721:91:44;8821:35;8837:1;8841:7;8850:5;8821:7;:35::i;6212:366:21:-;6374:23;;6314:5;;6348:15;;6374:30;;;;-1:-1:-1;;;6374:23:21;;;;:30;6370:204;;;6476:23;;6421:100;;524:8;;6469:30;;-1:-1:-1;;;6476:23:21;;;;6469:4;:30;:::i;:::-;6446:54;;6461:39;;6446:12;:54;:::i;:::-;6445:75;;;;:::i;:::-;6421:18;;-1:-1:-1;;;6421:18:21;;-1:-1:-1;;;;;6421:18:21;;:23;:100::i;:::-;6414:107;;;;;6370:204;-1:-1:-1;;6549:18:21;;-1:-1:-1;;;6549:18:21;;-1:-1:-1;;;;;6549:18:21;6542:25;;6370:204;6321:257;6212:366;;;;:::o;3286:157::-;3367:7;3389:49;3401:12;-1:-1:-1;;;;;3415:15:21;;699:4;3389:11;:49::i;3919:109:52:-;3972:7;3998:23;:21;:23::i;18238:498:22:-;18562:42;:9;18587:10;18599:4;18562:24;:42::i;:::-;18550:54;;:9;:54;;;;;;;;;;;-1:-1:-1;;;;;18550:54:22;;;-1:-1:-1;;;;;;18550:54:22;;;;-1:-1:-1;;;;;;;;18550:54:22;;;;;;;;;;;-1:-1:-1;;;;;18550:54:22;-1:-1:-1;;;18550:54:22;;;;;;;;;18617:39;;:4;;18626:9;;18637:18;;18617:8;:39;:::i;:::-;18610:46;;;;;;;-1:-1:-1;;;;;18610:46:22;;;-1:-1:-1;;;18610:46:22;;;;:4;:46;18667:64;;;24287:25:125;;;24328:18;;;24321:34;;;24371:18;;24364:34;;;18679:8:22;;18667:64;;24275:2:125;24260:18;18667:64:22;;;;;;;18238:498;;;;:::o;4328:312:76:-;4408:4;-1:-1:-1;;;;;4417:6:76;4400:23;;;:120;;;4514:6;-1:-1:-1;;;;;4478:42:76;:32;-1:-1:-1;;;;;;;;;;;1519:53:72;-1:-1:-1;;;;;1519:53:72;;1441:138;4478:32:76;-1:-1:-1;;;;;4478:42:76;;;4400:120;4383:251;;;4594:29;;-1:-1:-1;;;4594:29:76;;;;;;;;;;;4383:251;4328:312::o;1807:106:25:-;1880:28;1900:7;1880:19;:28::i;5782:538:76:-;5899:17;-1:-1:-1;;;;;5881:50:76;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5881:52:76;;;;;;;;-1:-1:-1;;5881:52:76;;;;;;;;;;;;:::i;:::-;;;5877:437;;6243:60;;-1:-1:-1;;;6243:60:76;;-1:-1:-1;;;;;5830:32:125;;6243:60:76;;;5812:51:125;5785:18;;6243:60:76;5645:224:125;5877:437:76;-1:-1:-1;;;;;;;;;;;5975:40:76;;5971:120;;6042:34;;-1:-1:-1;;;6042:34:76;;;;;643:25:125;;;616:18;;6042:34:76;497:177:125;5971:120:76;6104:54;6134:17;6153:4;6104:29;:54::i;15423:210:21:-;15546:7;;15508;;-1:-1:-1;;;;;15546:7:21;15564:18;;;15560:68;;;15591:18;15605:4;15591:11;:18;:::i;15560:68::-;15627:1;15620:8;;;;;11748:518;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;12020:23:21;;12006:38;;12015:3;;-1:-1:-1;;;12020:23:21;;;;12006:8;:38::i;:::-;11989:56;;;;:::i;:::-;12128:19;;11989:56;;-1:-1:-1;12051:14:21;;12068:83;;12091:59;;11989:56;;739:4;;-1:-1:-1;;;;;12128:19:21;12091:7;:59::i;:::-;12068:18;;-1:-1:-1;;;12068:18:21;;-1:-1:-1;;;;;12068:18:21;;:22;:83::i;:::-;12164:97;;;;;;;;12186:19;;-1:-1:-1;;;;;12186:19:21;12164:97;;-1:-1:-1;;;;;12164:97:21;;;;;;;;12243:15;12164:97;;;;;;-1:-1:-1;;11748:518:21;;;;;:::o;13071:740::-;-1:-1:-1;;;;;;;;;;;;;;;;;13222:7:21;;-1:-1:-1;;;;;13222:7:21;;:12;13218:589;;13251:80;;;;;;;;13261:22;:10;:20;:22::i;:::-;-1:-1:-1;;;;;13251:80:21;;;;;13299:30;:18;:28;:30::i;:::-;-1:-1:-1;;;;;13251:80:21;;;13244:87;-1:-1:-1;13244:87:21;;13218:589;13378:7;;-1:-1:-1;;;;;13378:7:21;13352:15;13411:20;13421:10;13378:7;13411:20;:::i;:::-;13394:37;;13536:23;13562:149;13630:44;13638:18;13658:10;699:4;13630:7;:44::i;:::-;13595:16;;13579:48;;-1:-1:-1;;;13595:16:21;;-1:-1:-1;;;;;13595:16:21;13614:7;699:4;13579:7;:48::i;:::-;:95;;;;:::i;:::-;699:4;13697:6;13562:7;:149::i;:::-;13536:175;;13727:73;;;;;;;;13737:18;:6;:16;:18::i;:::-;-1:-1:-1;;;;;13727:73:21;;;;;13771:27;:15;:25;:27::i;:::-;-1:-1:-1;;;;;13727:73:21;;;;13720:80;;;;;;;4757:213:76;4831:4;-1:-1:-1;;;;;4840:6:76;4823:23;;4819:145;;4924:29;;-1:-1:-1;;;4924:29:76;;;;;;;;;;;9071:205:75;9129:30;;3147:66;9186:27;8819:122;3293:91:27;6929:20:75;:18;:20::i;:::-;3351:28:27::1;:26;:28::i;2281:147:44:-:0;6929:20:75;:18;:20::i;:::-;2383:38:44::1;2406:5;2413:7;2383:22;:38::i;1847:125:45:-:0;6929:20:75;:18;:20::i;:::-;1931:34:45::1;1955:4;1931:34;;;;;;;;;;;;;-1:-1:-1::0;;;1931:34:45::1;;::::0;:23:::1;:34::i;10090:681:22:-:0;6929:20:75;:18;:20::i;:::-;10231:16:22::1;:9;:14;:16::i;:::-;10358:265;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;10358:265:22;;;2285:3:::1;10358:265;::::0;::::1;::::0;;;;;;;;;;;;;;;;10348:7:::1;:275:::0;;-1:-1:-1;;;;;;10348:275:22;-1:-1:-1;;;10348:275:22;;;10630:59:::1;10639:28;10669:19:::0;10630:8:::1;:59::i;:::-;10695:71;10704:34;10740:25;10695:8;:71::i;1280:164:50:-:0;1340:7;;1026:21;1385:19;907:156;6188:155:52;6329:7;6322:14;;6242:13;;-1:-1:-1;;;;;;;;;;;2743:21:52;6322:14;;;:::i;6570:161::-;6627:13;6652:23;-1:-1:-1;;;;;;;;;;;6678:19:52;2624:156;10306:267:21;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;10500:68:21;10505:12;10519:6;10527:40;10505:12;10554;10527;:40::i;:::-;10500:4;:68::i;:::-;10493:75;;;;10306:267;;;;;;:::o;19533:110:22:-;19600:38;:9;19625:6;19633:4;19600:24;:38::i;:::-;19588:50;;:9;:50;;;;;;;;;;;;;-1:-1:-1;;;19588:50:22;-1:-1:-1;;;;;;;;;;19588:50:22;;;-1:-1:-1;;;19588:50:22;-1:-1:-1;;;;;;19588:50:22;;;-1:-1:-1;;;;;19588:50:22;;;;;;;;;;;;;;;-1:-1:-1;19533:110:22:o;1662:232:82:-;1767:47;1785:5;1792:4;1798:2;1802:5;1809:4;1767:17;:47::i;:::-;1762:126;;1837:40;;-1:-1:-1;;;1837:40:82;;-1:-1:-1;;;;;5830:32:125;;1837:40:82;;;5812:51:125;5785:18;;1837:40:82;5645:224:125;34380:314:106;34436:6;-1:-1:-1;;;;;34557:5:106;:33;34553:105;;;34613:34;;-1:-1:-1;;;34613:34:106;;;;;643:25:125;;;616:18;;34613:34:106;497:177:125;34553:105:106;-1:-1:-1;34681:5:106;34380:314::o;10077:121:27:-;10120:7;10157:10;:8;:10::i;:::-;10142:51;;-1:-1:-1;;;10142:51:27;;10187:4;10142:51;;;5812::125;-1:-1:-1;;;;;10142:36:27;;;;;;;5785:18:125;;10142:51:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;15736:156:22:-;15790:7;15851:36;2234:4;15851:14;;;:36;:::i;15896:146::-;15951:6;15997:40;15998:27;2234:4;15998:5;:27;:::i;:::-;15997:38;:40::i;9915:267:21:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;10109:68:21;10114:12;10128:6;10136:40;10114:12;10163;10136;:40::i;:::-;10109:4;:68::i;8525:386:27:-;8597:58;;-1:-1:-1;;;8597:58:27;;;;;16131:25:125;;;8634:4:27;16172:18:125;;;16165:60;;;16241:18;;;16234:60;-1:-1:-1;;;;;8597:20:27;;;;;16104:18:125;;8597:58:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8674:9;;8665:6;:18;8661:246;;;8797:42;8828:9;;8819:6;:18;;;;:::i;8797:42::-;8859:1;8847:9;:13;3911:214:76;;:::o;8661:246:27:-;8894:6;8881:9;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;8525:386:27;;:::o;4850:176:52:-;4927:7;4953:66;4986:20;:18;:20::i;:::-;5008:10;4049:4:101;4043:11;-1:-1:-1;;;4067:23:101;;4119:4;4110:14;;4103:39;;;;4171:4;4162:14;;4155:34;4227:4;4212:20;;;3874:374;8826:260:99;8911:7;8931:17;8950:18;8970:16;8990:25;9001:4;9007:1;9010;9013;8990:10;:25::i;:::-;8930:85;;;;;;9025:28;9037:5;9044:8;9025:11;:28::i;:::-;-1:-1:-1;9070:9:99;;8826:260;-1:-1:-1;;;;;;8826:260:99:o;7043:183:21:-;7172:49;7205:15;7172:49;-1:-1:-1;;;7172:49:21;-1:-1:-1;;;7172:49:21;;;7043:183::o;1027:550:105:-;1088:12;;-1:-1:-1;;1471:1:105;1468;1461:20;1501:9;;;;1549:11;;;1535:12;;;;1531:30;;;;;1027:550;-1:-1:-1;;1027:550:105:o;1776:194:95:-;1881:10;1875:4;1868:24;1918:4;1912;1905:18;1949:4;1943;1936:18;10900:487:44;-1:-1:-1;;;;;;;;;;;;;;;;11065:19:44;;11061:89;;11107:32;;-1:-1:-1;;;11107:32:44;;11136:1;11107:32;;;5812:51:125;5785:18;;11107:32:44;5645:224:125;11061:89:44;-1:-1:-1;;;;;11163:21:44;;11159:90;;11207:31;;-1:-1:-1;;;11207:31:44;;11235:1;11207:31;;;5812:51:125;5785:18;;11207:31:44;5645:224:125;11159:90:44;-1:-1:-1;;;;;11258:20:44;;;;;;;:13;;;:20;;;;;;;;:29;;;;;;;;;:37;;;11305:76;;;;11355:7;-1:-1:-1;;;;;11339:31:44;11348:5;-1:-1:-1;;;;;11339:31:44;;11364:5;11339:31;;;;643:25:125;;631:2;616:18;;497:177;11339:31:44;;;;;;;;11305:76;10998:389;10900:487;;;;:::o;2191:178:21:-;2268:7;2322:36;2356:1;2351;2338:15;;;;;:::i;:::-;2348:1;2345;2338:15;:19;;34795:145:106;2322:36:21;2318:1;2313;2309;:5;2308:11;;;;;:::i;:::-;;:50;;2191:178;-1:-1:-1;;;;2191:178:21:o;14942:252::-;15067:7;;15014;;15042:147;;-1:-1:-1;;;;;15067:7:21;524:8;15115:32;15133:14;;;15115:15;:32;:::i;:::-;15094:16;;15086:62;;;-1:-1:-1;;;15094:16:21;;-1:-1:-1;;;;;15094:16:21;15086:62;:::i;:::-;15085:83;;;;:::i;1596:135::-;1669:7;1719:1;1714;1710;:5;1709:11;;;;;:::i;:::-;;;1596:135;-1:-1:-1;;;;1596:135:21:o;5126:150::-;5191:14;5231:39;5232:26;5252:6;-1:-1:-1;;;;;5232:15:21;;:26;:::i;:::-;5231:37;:39::i;5829:100:27:-;5898:26;;643:25:125;;;5898:26:27;;631:2:125;616:18;5898:26:27;;;;;;;5829:100;:::o;11756:1326:22:-;11846:19;-1:-1:-1;;;;;11875:18:22;;11871:499;;11944:26;:9;11958:5;11965:4;11944:13;:26::i;:::-;11917:53;;11918:9;11917:53;;;;;;;;;;;;;-1:-1:-1;;;11917:53:22;-1:-1:-1;;;;;;;;;;11917:53:22;;;-1:-1:-1;;;11917:53:22;-1:-1:-1;;;;;;11917:53:22;;;-1:-1:-1;;;;;11917:53:22;;;;;;;;;;;;;;;;;-1:-1:-1;11871:499:22;;;-1:-1:-1;;;;;11987:16:22;;11983:387;;12054:26;:9;12068:5;12075:4;12054:13;:26::i;11983:387::-;12144:7;:17;-1:-1:-1;;;;;12144:17:22;12136:40;;:100;;-1:-1:-1;12180:7:22;:17;:56;;-1:-1:-1;;;12180:56:22;;12214:4;12180:56;;;18188:51:125;-1:-1:-1;;;;;18275:32:125;;;18255:18;;;18248:60;18344:32;;;18324:18;;;18317:60;18393:18;;;18386:34;;;12180:17:22;;;;:33;;18160:19:125;;12180:56:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12269:4;12275:2;12279:5;12119:174;;;;;;;-1:-1:-1;;;12119:174:22;;;;;;;;;;:::i;:::-;-1:-1:-1;12315:48:22;;-1:-1:-1;12357:5:22;;-1:-1:-1;12315:28:22;:9;12338:4;12315:22;:28::i;:::-;-1:-1:-1;;;;;12315:41:22;;;:48::i;:::-;12301:62;;11983:387;-1:-1:-1;;;;;;;;;;;;;;;;12439:18:22;;;12435:390;;-1:-1:-1;;;;;12489:17:22;;12467:19;12489:17;;;;;;;;;;;12518:25;;;12514:147;;;12587:4;12593:51;12632:11;12593:28;:9;12616:4;12593:22;:28::i;:51::-;12562:90;;-1:-1:-1;;;12562:90:22;;-1:-1:-1;;;;;23387:32:125;;;12562:90:22;;;23369:51:125;23436:18;;;23429:34;23479:18;;;23472:34;;;23342:18;;12562:90:22;23167:345:125;12514:147:22;-1:-1:-1;;;;;12765:17:22;;:11;:17;;;;;;;;;;12785:25;;;;12765:45;;12435:390;-1:-1:-1;;;;;12835:16:22;;;12831:210;;-1:-1:-1;;;;;12996:15:22;;:11;:15;;;;;;;;;;:30;;;;;;12831:210;13067:2;-1:-1:-1;;;;;13052:25:22;13061:4;-1:-1:-1;;;;;13052:25:22;;13071:5;13052:25;;;;643::125;;631:2;616:18;;497:177;1219:204:82;1306:37;1320:5;1327:2;1331:5;1338:4;1306:13;:37::i;:::-;1301:116;;1366:40;;-1:-1:-1;;;1366:40:82;;-1:-1:-1;;;;;5830:32:125;;1366:40:82;;;5812:51:125;5785:18;;1366:40:82;5645:224:125;4743:168:21;4809:14;4849:56;:45;-1:-1:-1;;;;;4857:15:21;;4876:12;699:4;4876:6;:12;:::i;4034:191:52:-;4089:7;1977:95;4147:17;:15;:17::i;:::-;4166:20;:18;:20::i;:::-;4125:92;;;;;;25634:25:125;;;;25675:18;;25668:34;;;;25718:18;;;25711:34;4188:13:52;25761:18:125;;;25754:34;4211:4:52;25804:19:125;;;25797:61;25606:19;;4125:92:52;;;;;;;;;;;;4115:103;;;;;;4108:110;;4034:191;:::o;14163:699:21:-;-1:-1:-1;;;;;;;;;;;;;;;;;14314:7:21;;-1:-1:-1;;;;;14314:7:21;:21;;;14310:548;;-1:-1:-1;14352:30:21;;;;;;;;;-1:-1:-1;14352:30:21;;;;;;;14345:37;;14310:548;14429:7;;-1:-1:-1;;;;;14429:7:21;14403:15;14462:20;14472:10;14429:7;14462:20;:::i;:::-;14445:37;;14587:23;14613:149;14681:44;14689:18;14709:10;699:4;14681:7;:44::i;:::-;14646:16;;14630:48;;-1:-1:-1;;;14646:16:21;;-1:-1:-1;;;;;14646:16:21;14665:7;699:4;14630:7;:48::i;:::-;:95;;;;:::i;1917:180:25:-;2041:11;-1:-1:-1;;;;;1995:57:25;2016:7;-1:-1:-1;;;;;1995:40:25;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1995:57:25;;1991:101;;2061:31;;-1:-1:-1;;;2061:31:25;;;;;;;;;;;2264:344:72;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:72;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;2454:148::-;2573:18;:16;:18::i;1881:131:21:-;1951:6;2000:1;1995;1991;:5;1990:11;;;;;:::i;:::-;;;1881:131;-1:-1:-1;;;;1881:131:21:o;5602:270::-;5666:14;;5718:34;5746:6;-1:-1:-1;;;;;5725:15:21;;5718:34;:::i;:::-;5688:65;-1:-1:-1;5688:65:21;573:3;5767:24;;;5759:61;;;;-1:-1:-1;;;5759:61:21;;;;;;643:25:125;;631:2;616:18;;497:177;5759:61:21;;5844:22;:11;:20;:22::i;9264:218:106:-;9321:7;-1:-1:-1;;;;;9344:25:106;;9340:105;;;9392:42;;-1:-1:-1;;;9392:42:106;;9423:3;9392:42;;;26051:36:125;26103:18;;;26096:34;;;26024:18;;9392:42:106;25869:267:125;7082:141:75;7149:17;:15;:17::i;:::-;7144:73;;7189:17;;-1:-1:-1;;;7189:17:75;;;;;;;;;;;1737:66:25;6929:20:75;:18;:20::i;2434:216:44:-;6929:20:75;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;2599:7:44;:15:::1;2609:5:::0;2599:7;:15:::1;:::i;:::-;-1:-1:-1::0;2624:9:44::1;::::0;::::1;:19;2636:7:::0;2624:9;:19:::1;:::i;3503:330:52:-:0;6929:20:75;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;3670:7:52;:14:::1;3680:4:::0;3670:7;:14:::1;:::i;:::-;-1:-1:-1::0;3694:10:52::1;::::0;::::1;:20;3707:7:::0;3694:10;:20:::1;:::i;:::-;-1:-1:-1::0;3795:1:52::1;3779:17:::0;;;3806:16:::1;::::0;;::::1;:20:::0;-1:-1:-1;;3503:330:52:o;8913:883:21:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;9104:26:21;-1:-1:-1;;;;;9104:18:21;;9123:6;9104:18;:26::i;:::-;9164:19;;9092:38;;-1:-1:-1;;;;;;9164:19:21;2189:5:105;;;2218:6;;;;;2247:28;;2218:6;9265:294:21;;9444:22;-1:-1:-1;;;;;9444:14:21;;9459:6;9444:14;:22::i;:::-;9432:34;-1:-1:-1;9486:21:21;9432:34;9486:9;:21;:::i;:::-;9474:33;;9265:294;9568:9;9581:1;9568:14;9564:88;;658:4;9628:17;;9564:88;9672:96;;;;;;;;9708:21;:9;:19;:21::i;:::-;-1:-1:-1;;;;;9672:96:21;;;;;9693:5;-1:-1:-1;;;;;9672:96:21;;;;;9750:15;9672:96;;;;;9657:134;;;;;8913:883;;;;;;:::o;10165:1393:82:-;10460:4;10454:11;-1:-1:-1;;;10323:12:82;10478:22;;;-1:-1:-1;;;;;10526:26:82;;;10520:4;10513:40;10579:24;;10573:4;10566:38;10624:4;10617:19;;;10323:12;10700:4;10323:12;10688:4;10323:12;;10672:5;10665;10660:45;10649:56;;10917:1;10910:4;10904:11;10901:18;10892:7;10888:32;10878:606;;11049:6;11039:7;11032:15;11028:28;11025:165;;;11105:16;11099:4;11094:3;11079:43;11155:16;11150:3;11143:29;11025:165;11466:1;11458:5;11446:18;11443:25;11424:16;11417:24;11413:56;11404:7;11400:70;11389:81;;10878:606;11504:4;11497:17;-1:-1:-1;11540:1:82;11534:4;11527:15;10165:1393;;-1:-1:-1;;;;;10165:1393:82:o;16296:213:106:-;16352:6;16382:16;16374:24;;16370:103;;;16421:41;;-1:-1:-1;;;16421:41:106;;16452:2;16421:41;;;26051:36:125;26103:18;;;26096:34;;;26024:18;;16421:41:106;25869:267:125;7644:423:21;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;7835:22:21;-1:-1:-1;;;;;7835:14:21;;7850:6;7835:14;:22::i;:::-;7878:161;;;;;;;;;7940:19;;7823:34;;-1:-1:-1;7878:161:21;;;7931:54;;7932:40;;7823:34;;-1:-1:-1;;;;;7940:19:21;7932:40;:::i;:::-;7931:52;:54::i;:::-;-1:-1:-1;;;;;7878:161:21;;;;;7908:5;-1:-1:-1;;;;;7878:161:21;;;;;8014:15;7878:161;;;;;7863:199;;7644:423;;;;;;:::o;7142:1551:99:-;7268:17;;;8222:66;8209:79;;8205:164;;;-1:-1:-1;8320:1:99;;-1:-1:-1;8324:30:99;;-1:-1:-1;8356:1:99;8304:54;;8205:164;8480:24;;;8463:14;8480:24;;;;;;;;;28763:25:125;;;28836:4;28824:17;;28804:18;;;28797:45;;;;28858:18;;;28851:34;;;28901:18;;;28894:34;;;8480:24:99;;28735:19:125;;8480:24:99;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8480:24:99;;-1:-1:-1;;8480:24:99;;;-1:-1:-1;;;;;;;8518:20:99;;8514:113;;-1:-1:-1;8570:1:99;;-1:-1:-1;8574:29:99;;-1:-1:-1;8570:1:99;;-1:-1:-1;8554:62:99;;8514:113;8645:6;-1:-1:-1;8653:20:99;;-1:-1:-1;8653:20:99;;-1:-1:-1;7142:1551:99;;;;;;;;;:::o;11630:532::-;11725:20;11716:5;:29;;;;;;;;:::i;:::-;;11712:444;;11630:532;;:::o;11712:444::-;11821:29;11812:5;:38;;;;;;;;:::i;:::-;;11808:348;;11873:23;;-1:-1:-1;;;11873:23:99;;;;;;;;;;;11808:348;11926:35;11917:5;:44;;;;;;;;:::i;:::-;;11913:243;;11984:46;;-1:-1:-1;;;11984:46:99;;;;;643:25:125;;;616:18;;11984:46:99;497:177:125;11913:243:99;12060:30;12051:5;:39;;;;;;;;:::i;:::-;;12047:109;;12113:32;;-1:-1:-1;;;12113:32:99;;;;;643:25:125;;;616:18;;12113:32:99;497:177:125;11296:213:106;11352:6;-1:-1:-1;;;;;11374:24:106;;11370:103;;;11421:41;;-1:-1:-1;;;11421:41:106;;11452:2;11421:41;;;26051:36:125;26103:18;;;26096:34;;;26024:18;;11421:41:106;25869:267:125;10681:253:21;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;10870:59:21;10875:12;10889:6;10897:31;10875:12;10924:3;10897:12;:31::i;11047:253::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;11236:59:21;11241:12;11255:6;11263:31;11241:12;11290:3;11263:12;:31::i;4375:158::-;4456:7;4478:50;4490:13;699:4;-1:-1:-1;;;;;4510:15:21;;4478:11;:50::i;8373:1244:82:-;8600:4;8594:11;-1:-1:-1;;;8467:12:82;8618:22;;;-1:-1:-1;;;;;8666:24:82;;8660:4;8653:38;8711:4;8704:19;;;8467:12;8787:4;8467:12;8775:4;8467:12;;8759:5;8752;8747:45;8736:56;;9004:1;8997:4;8991:11;8988:18;8979:7;8975:32;8965:606;;9136:6;9126:7;9119:15;9115:28;9112:165;;;9192:16;9186:4;9181:3;9166:43;9242:16;9237:3;9230:29;9112:165;9553:1;9545:5;9533:18;9530:25;9511:16;9504:24;9500:56;9491:7;9487:70;9476:81;;8965:606;9591:4;9584:17;-1:-1:-1;8373:1244:82;;-1:-1:-1;;;;8373:1244:82:o;6946:687:52:-;6996:7;-1:-1:-1;;;;;;;;;;;6996:7:52;7091:13;:11;:13::i;:::-;7118:18;;7070:34;;-1:-1:-1;7118:22:52;7114:513;;7163:22;;;;;;;;6946:687;-1:-1:-1;;6946:687:52:o;7114:513::-;7460:13;;7491:15;;7487:130;;7533:10;6946:687;-1:-1:-1;;;6946:687:52:o;7487:130::-;7589:13;7582:20;;;;;6946:687;:::o;7854:723::-;7907:7;-1:-1:-1;;;;;;;;;;;7907:7:52;8005:16;:14;:16::i;:::-;8035:21;;7981:40;;-1:-1:-1;8035:25:52;8031:540;;8083:25;;;;;;;;7854:723;-1:-1:-1;;7854:723:52:o;8031:540::-;8395:16;;;;8429:18;;8425:136;;8474:13;7854:723;-1:-1:-1;;;7854:723:52:o;1671:281:72:-;1748:17;-1:-1:-1;;;;;1748:29:72;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:72;;-1:-1:-1;;;;;5830:32:125;;1805:47:72;;;5812:51:125;5785:18;;1805:47:72;5645:224:125;1744:119:72;-1:-1:-1;;;;;;;;;;;1872:73:72;;-1:-1:-1;;;;;;1872:73:72;-1:-1:-1;;;;;1872:73:72;;;;;;;;;;1671:281::o;4691:549:87:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:87;4583:16:91;4886:33:87;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:87;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;4870:364::-;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:87;;-1:-1:-1;;;;;5830:32:125;;5045:24:87;;;5812:51:125;5785:18;;5045:24:87;5645:224:125;5011:223:87;4583:16:91;5090:33:87;5086:148;;5139:27;:25;:27::i;:::-;5086:148;;;5204:19;;-1:-1:-1;;;5204:19:87;;;;;;;;;;;6113:122:72;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:72;;;;;;;;;;;8485:120:75;8535:4;8558:26;:24;:26::i;:::-;:40;-1:-1:-1;;;8558:40:75;;;;;;-1:-1:-1;8485:120:75:o;3862:150:21:-;3939:7;3961:46;3969:13;699:4;-1:-1:-1;;;;;3989:15:21;;3961:7;:46::i;3383:242:91:-;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:91:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;14:286:125;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:125;;209:43;;199:71;;266:1;263;256:12;679:289;721:3;759:5;753:12;786:6;781:3;774:19;842:6;835:4;828:5;824:16;817:4;812:3;808:14;802:47;894:1;887:4;878:6;873:3;869:16;865:27;858:38;957:4;950:2;946:7;941:2;933:6;929:15;925:29;920:3;916:39;912:50;905:57;;;679:289;;;;:::o;973:220::-;1122:2;1111:9;1104:21;1085:4;1142:45;1183:2;1172:9;1168:18;1160:6;1142:45;:::i;1198:131::-;-1:-1:-1;;;;;1273:31:125;;1263:42;;1253:70;;1319:1;1316;1309:12;1334:367;1402:6;1410;1463:2;1451:9;1442:7;1438:23;1434:32;1431:52;;;1479:1;1476;1469:12;1431:52;1518:9;1505:23;1537:31;1562:5;1537:31;:::i;:::-;1587:5;1665:2;1650:18;;;;1637:32;;-1:-1:-1;;;1334:367:125:o;1706:247::-;1765:6;1818:2;1806:9;1797:7;1793:23;1789:32;1786:52;;;1834:1;1831;1824:12;1786:52;1873:9;1860:23;1892:31;1917:5;1892:31;:::i;2211:118::-;2297:5;2290:13;2283:21;2276:5;2273:32;2263:60;;2319:1;2316;2309:12;2334:400;2417:6;2425;2478:2;2466:9;2457:7;2453:23;2449:32;2446:52;;;2494:1;2491;2484:12;2446:52;2533:9;2520:23;2552:31;2577:5;2552:31;:::i;:::-;2602:5;-1:-1:-1;2659:2:125;2644:18;;2631:32;2672:30;2631:32;2672:30;:::i;:::-;2721:7;2711:17;;;2334:400;;;;;:::o;2739:508::-;2816:6;2824;2832;2885:2;2873:9;2864:7;2860:23;2856:32;2853:52;;;2901:1;2898;2891:12;2853:52;2940:9;2927:23;2959:31;2984:5;2959:31;:::i;:::-;3009:5;-1:-1:-1;3066:2:125;3051:18;;3038:32;3079:33;3038:32;3079:33;:::i;:::-;2739:508;;3131:7;;-1:-1:-1;;;3211:2:125;3196:18;;;;3183:32;;2739:508::o;3252:650::-;3338:6;3346;3354;3362;3415:3;3403:9;3394:7;3390:23;3386:33;3383:53;;;3432:1;3429;3422:12;3383:53;3477:23;;;-1:-1:-1;3576:2:125;3561:18;;3548:32;3589:33;3548:32;3589:33;:::i;:::-;3641:7;-1:-1:-1;3700:2:125;3685:18;;3672:32;3713:33;3672:32;3713:33;:::i;:::-;3765:7;-1:-1:-1;3824:2:125;3809:18;;3796:32;3837:33;3796:32;3837:33;:::i;:::-;3252:650;;;;-1:-1:-1;3252:650:125;;-1:-1:-1;;3252:650:125:o;3907:508::-;3984:6;3992;4000;4053:2;4041:9;4032:7;4028:23;4024:32;4021:52;;;4069:1;4066;4059:12;4021:52;4114:23;;;-1:-1:-1;4213:2:125;4198:18;;4185:32;4226:33;4185:32;4226:33;:::i;:::-;4278:7;-1:-1:-1;4337:2:125;4322:18;;4309:32;4350:33;4309:32;4350:33;:::i;:::-;4402:7;4392:17;;;3907:508;;;;;:::o;4791:849::-;4894:6;4902;4910;4918;4926;4934;4987:3;4975:9;4966:7;4962:23;4958:33;4955:53;;;5004:1;5001;4994:12;4955:53;5049:23;;;-1:-1:-1;5169:2:125;5154:18;;5141:32;;-1:-1:-1;5272:2:125;5257:18;;5244:32;;-1:-1:-1;5375:2:125;5360:18;;5347:32;;-1:-1:-1;5457:3:125;5442:19;;5429:33;5471;5429;5471;:::i;:::-;4791:849;;;;-1:-1:-1;4791:849:125;;;;;5603:3;5588:19;;;5575:33;;-1:-1:-1;;4791:849:125:o;5874:127::-;5935:10;5930:3;5926:20;5923:1;5916:31;5966:4;5963:1;5956:15;5990:4;5987:1;5980:15;6006:715;6070:5;6102:1;6126:18;6118:6;6115:30;6112:56;;;6148:18;;:::i;:::-;-1:-1:-1;6303:2:125;6297:9;-1:-1:-1;;6216:2:125;6195:15;;6191:29;;6361:2;6349:15;6345:29;6333:42;;6426:22;;;6405:18;6390:34;;6387:62;6384:88;;;6452:18;;:::i;:::-;6488:2;6481:22;6536;;;6521:6;-1:-1:-1;6521:6:125;6573:16;;;6570:25;-1:-1:-1;6567:45:125;;;6608:1;6605;6598:12;6567:45;6658:6;6653:3;6646:4;6638:6;6634:17;6621:44;6713:1;6706:4;6697:6;6689;6685:19;6681:30;6674:41;;6006:715;;;;;:::o;6726:584::-;6803:6;6811;6864:2;6852:9;6843:7;6839:23;6835:32;6832:52;;;6880:1;6877;6870:12;6832:52;6919:9;6906:23;6938:31;6963:5;6938:31;:::i;:::-;6988:5;-1:-1:-1;7044:2:125;7029:18;;7016:32;7071:18;7060:30;;7057:50;;;7103:1;7100;7093:12;7057:50;7126:22;;7179:4;7171:13;;7167:27;-1:-1:-1;7157:55:125;;7208:1;7205;7198:12;7157:55;7231:73;7296:7;7291:2;7278:16;7273:2;7269;7265:11;7231:73;:::i;:::-;7221:83;;;6726:584;;;;;:::o;7315:466::-;7392:6;7400;7408;7461:2;7449:9;7440:7;7436:23;7432:32;7429:52;;;7477:1;7474;7467:12;7429:52;-1:-1:-1;;7522:23:125;;;7642:2;7627:18;;7614:32;;-1:-1:-1;7745:2:125;7730:18;;;7717:32;;7315:466;-1:-1:-1;7315:466:125:o;7786:221::-;7829:5;7882:3;7875:4;7867:6;7863:17;7859:27;7849:55;;7900:1;7897;7890:12;7849:55;7922:79;7997:3;7988:6;7975:20;7968:4;7960:6;7956:17;7922:79;:::i;8012:773::-;8118:6;8126;8134;8142;8195:3;8183:9;8174:7;8170:23;8166:33;8163:53;;;8212:1;8209;8202:12;8163:53;8252:9;8239:23;8285:18;8277:6;8274:30;8271:50;;;8317:1;8314;8307:12;8271:50;8340;8382:7;8373:6;8362:9;8358:22;8340:50;:::i;:::-;8330:60;;;8443:2;8432:9;8428:18;8415:32;8472:18;8462:8;8459:32;8456:52;;;8504:1;8501;8494:12;8456:52;8527;8571:7;8560:8;8549:9;8545:24;8527:52;:::i;:::-;8012:773;;8517:62;;-1:-1:-1;;;;8648:2:125;8633:18;;8620:32;;8749:2;8734:18;8721:32;;8012:773;-1:-1:-1;8012:773:125:o;8790:241::-;8846:6;8899:2;8887:9;8878:7;8874:23;8870:32;8867:52;;;8915:1;8912;8905:12;8867:52;8954:9;8941:23;8973:28;8995:5;8973:28;:::i;9036:1238::-;9442:3;9437;9433:13;9425:6;9421:26;9410:9;9403:45;9484:3;9479:2;9468:9;9464:18;9457:31;9384:4;9511:46;9552:3;9541:9;9537:19;9529:6;9511:46;:::i;:::-;9605:9;9597:6;9593:22;9588:2;9577:9;9573:18;9566:50;9639:33;9665:6;9657;9639:33;:::i;:::-;9703:2;9688:18;;9681:34;;;-1:-1:-1;;;;;9752:32:125;;9746:3;9731:19;;9724:61;9772:3;9801:19;;9794:35;;;9866:22;;;9860:3;9845:19;;9838:51;9938:13;;9960:22;;;10010:2;10036:15;;;;-1:-1:-1;9998:15:125;;;;-1:-1:-1;10079:169:125;10093:6;10090:1;10087:13;10079:169;;;10154:13;;10142:26;;10197:2;10223:15;;;;10188:12;;;;10115:1;10108:9;10079:169;;;-1:-1:-1;10265:3:125;;9036:1238;-1:-1:-1;;;;;;;;;;;9036:1238:125:o;10553:367::-;10621:6;10629;10682:2;10670:9;10661:7;10657:23;10653:32;10650:52;;;10698:1;10695;10688:12;10650:52;10743:23;;;-1:-1:-1;10842:2:125;10827:18;;10814:32;10855:33;10814:32;10855:33;:::i;11155:226::-;11214:6;11267:2;11255:9;11246:7;11242:23;11238:32;11235:52;;;11283:1;11280;11273:12;11235:52;-1:-1:-1;11328:23:125;;11155:226;-1:-1:-1;11155:226:125:o;11386:586::-;11471:6;11479;11487;11495;11548:3;11536:9;11527:7;11523:23;11519:33;11516:53;;;11565:1;11562;11555:12;11516:53;-1:-1:-1;;11610:23:125;;;11730:2;11715:18;;11702:32;;-1:-1:-1;11833:2:125;11818:18;;11805:32;;11936:2;11921:18;11908:32;;-1:-1:-1;11386:586:125;-1:-1:-1;11386:586:125:o;12203:391::-;12286:6;12294;12347:2;12335:9;12326:7;12322:23;12318:32;12315:52;;;12363:1;12360;12353:12;12315:52;12402:9;12389:23;12441:1;12434:5;12431:12;12421:40;;12457:1;12454;12447:12;13076:114;13160:4;13153:5;13149:16;13142:5;13139:27;13129:55;;13180:1;13177;13170:12;13195:1009;13306:6;13314;13322;13330;13338;13346;13354;13407:3;13395:9;13386:7;13382:23;13378:33;13375:53;;;13424:1;13421;13414:12;13375:53;13463:9;13450:23;13482:31;13507:5;13482:31;:::i;:::-;13532:5;-1:-1:-1;13589:2:125;13574:18;;13561:32;13602:33;13561:32;13602:33;:::i;:::-;13654:7;-1:-1:-1;13734:2:125;13719:18;;13706:32;;-1:-1:-1;13837:2:125;13822:18;;13809:32;;-1:-1:-1;13919:3:125;13904:19;;13891:33;13933:31;13891:33;13933:31;:::i;:::-;13195:1009;;;;-1:-1:-1;13195:1009:125;;;;13983:7;14063:3;14048:19;;14035:33;;-1:-1:-1;14167:3:125;14152:19;;;14139:33;;13195:1009;-1:-1:-1;;13195:1009:125:o;14209:388::-;14277:6;14285;14338:2;14326:9;14317:7;14313:23;14309:32;14306:52;;;14354:1;14351;14344:12;14306:52;14393:9;14380:23;14412:31;14437:5;14412:31;:::i;:::-;14462:5;-1:-1:-1;14519:2:125;14504:18;;14491:32;14532:33;14491:32;14532:33;:::i;14834:127::-;14895:10;14890:3;14886:20;14883:1;14876:31;14926:4;14923:1;14916:15;14950:4;14947:1;14940:15;14966:128;15033:9;;;15054:11;;;15051:37;;;15068:18;;:::i;15099:380::-;15178:1;15174:12;;;;15221;;;15242:61;;15296:4;15288:6;15284:17;15274:27;;15242:61;15349:2;15341:6;15338:14;15318:18;15315:38;15312:161;;15395:10;15390:3;15386:20;15383:1;15376:31;15430:4;15427:1;15420:15;15458:4;15455:1;15448:15;15312:161;;15099:380;;;:::o;15484:251::-;15554:6;15607:2;15595:9;15586:7;15582:23;15578:32;15575:52;;;15623:1;15620;15613:12;15575:52;15655:9;15649:16;15674:31;15699:5;15674:31;:::i;15740:184::-;15810:6;15863:2;15851:9;15842:7;15838:23;15834:32;15831:52;;;15879:1;15876;15869:12;15831:52;-1:-1:-1;15902:16:125;;15740:184;-1:-1:-1;15740:184:125:o;16305:200::-;16371:9;;;16344:4;16399:9;;16427:10;;16439:12;;;16423:29;16462:12;;;16454:21;;16420:56;16417:82;;;16479:18;;:::i;16510:386::-;-1:-1:-1;;;;;16745:32:125;;;16727:51;;16814:32;;;;16809:2;16794:18;;16787:60;16878:2;16863:18;;16856:34;;;;16715:2;16700:18;;16510:386::o;16901:282::-;16970:6;17023:2;17011:9;17002:7;16998:23;16994:32;16991:52;;;17039:1;17036;17029:12;16991:52;17071:9;17065:16;17121:12;17114:5;17110:24;17103:5;17100:35;17090:63;;17149:1;17146;17139:12;17413:245;17480:6;17533:2;17521:9;17512:7;17508:23;17504:32;17501:52;;;17549:1;17546;17539:12;17501:52;17581:9;17575:16;17600:28;17622:5;17600:28;:::i;18711:247::-;18779:6;18832:2;18820:9;18811:7;18807:23;18803:32;18800:52;;;18848:1;18845;18838:12;18800:52;18880:9;18874:16;18899:29;18922:5;18899:29;:::i;20376:125::-;20441:9;;;20462:10;;;20459:36;;;20475:18;;:::i;20785:127::-;20846:10;20841:3;20837:20;20834:1;20827:31;20877:4;20874:1;20867:15;20901:4;20898:1;20891:15;20917:237;20998:1;20991:5;20988:12;20978:143;;21043:10;21038:3;21034:20;21031:1;21024:31;21078:4;21075:1;21068:15;21106:4;21103:1;21096:15;20978:143;21130:18;;20917:237::o;21159:209::-;21306:2;21291:18;;21318:44;21295:9;21344:6;21318:44;:::i;21373:280::-;21548:2;21533:18;;21560:44;21537:9;21586:6;21560:44;:::i;:::-;21640:6;21635:2;21624:9;21620:18;21613:34;21373:280;;;;;:::o;21658:136::-;21693:3;-1:-1:-1;;;21714:22:125;;21711:48;;21739:18;;:::i;:::-;-1:-1:-1;21779:1:125;21775:13;;21658:136::o;23035:127::-;23096:10;23091:3;23087:20;23084:1;23077:31;23127:4;23124:1;23117:15;23151:4;23148:1;23141:15;23517:170;23614:10;23607:18;;;23587;;;23583:43;;23638:20;;23635:46;;;23661:18;;:::i;23692:168::-;23765:9;;;23796;;23813:15;;;23807:22;;23793:37;23783:71;;23834:18;;:::i;23865:217::-;23905:1;23931;23921:132;;23975:10;23970:3;23966:20;23963:1;23956:31;24010:4;24007:1;24000:15;24038:4;24035:1;24028:15;23921:132;-1:-1:-1;24067:9:125;;23865:217::o;24598:216::-;24662:9;;;24690:11;;;24637:3;24720:9;;24748:10;;24744:19;;24773:10;;24765:19;;24741:44;24738:70;;;24788:18;;:::i;:::-;24738:70;;24598:216;;;;:::o;26267:518::-;26369:2;26364:3;26361:11;26358:421;;;26405:5;26402:1;26395:16;26449:4;26446:1;26436:18;26519:2;26507:10;26503:19;26500:1;26496:27;26490:4;26486:38;26555:4;26543:10;26540:20;26537:47;;;-1:-1:-1;26578:4:125;26537:47;26633:2;26628:3;26624:12;26621:1;26617:20;26611:4;26607:31;26597:41;;26688:81;26706:2;26699:5;26696:13;26688:81;;;26765:1;26751:16;;26732:1;26721:13;26688:81;;26961:1299;27087:3;27081:10;27114:18;27106:6;27103:30;27100:56;;;27136:18;;:::i;:::-;27165:97;27255:6;27215:38;27247:4;27241:11;27215:38;:::i;:::-;27209:4;27165:97;:::i;:::-;27311:4;27342:2;27331:14;;27359:1;27354:649;;;;28047:1;28064:6;28061:89;;;-1:-1:-1;28116:19:125;;;28110:26;28061:89;-1:-1:-1;;26918:1:125;26914:11;;;26910:24;26906:29;26896:40;26942:1;26938:11;;;26893:57;28163:81;;27324:930;;27354:649;26214:1;26207:14;;;26251:4;26238:18;;-1:-1:-1;;27390:20:125;;;27508:222;27522:7;27519:1;27516:14;27508:222;;;27604:19;;;27598:26;27583:42;;27711:4;27696:20;;;;27664:1;27652:14;;;;27538:12;27508:222;;;27512:3;27758:6;27749:7;27746:19;27743:201;;;27819:19;;;27813:26;-1:-1:-1;;27902:1:125;27898:14;;;27914:3;27894:24;27890:37;27886:42;27871:58;27856:74;;27743:201;-1:-1:-1;;;;27990:1:125;27974:14;;;27970:22;27957:36;;-1:-1:-1;26961:1299:125:o"},"methodIdentifiers":{"DOMAIN_SEPARATOR()":"3644e515","UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","addBorrower(address)":"e3a8e29c","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","cooler()":"cf6a9a94","currency()":"e5a6b10f","decimals()":"313ce567","deposit(uint256,address,address)":"2e2d2984","depositIntoYieldVault(uint256)":"ac860f74","eip712Domain()":"84b0196e","fundsAvailable()":"4fe0bd1e","fundsAvailableToLock()":"a08f2203","getCurrentScale(bool)":"79d989fb","getLoan(address)":"33481fc9","getScaledUserBalanceAndSupply(address)":"0afbcdc9","initialize(string,string,uint256,uint256)":"6fe0e395","internalLoan(uint256,address)":"c3df9dac","internalLoanInterestRate()":"cda4bcc2","investedInYV()":"7d919a97","liquidityRequirement()":"ba4e8df5","lockScr(uint256,uint256,uint256)":"4ffcda8c","maxNegativeAdjustment()":"16db000f","maxUtilizationRate()":"dfcb48bd","minUtilizationRate()":"ee01a183","name()":"06fdde03","nonces(address)":"7ecebe00","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","policyPool()":"4d15eb03","proxiableUUID()":"52d1902d","recordEarnings()":"4eb978a4","redistribute(uint256)":"a0ce552d","removeBorrower(address)":"76c7fc55","repayLoan(uint256,address)":"918344d3","scaledBalanceOf(address)":"1da24f3e","scaledTotalSupply()":"b1bf962d","scr()":"6c6f4542","scrInterestRate()":"9d90724d","setCooler(address)":"d17e6c93","setParam(uint8,uint256)":"c1cca2b3","setWhitelist(address)":"854cff2f","setYieldVault(address,bool)":"194448e5","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","tokenInterestRate()":"159ec2df","totalSupply()":"18160ddd","totalWithdrawable()":"0600a865","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","unlockScr(uint256,uint256,uint256,int256)":"a227dc41","unlockScrWithRefund(uint256,uint256,uint256,int256,address,uint256)":"3ad2820b","upgradeToAndCall(address,bytes)":"4f1ef286","utilizationRate()":"6c321c8a","whitelist()":"93e59dc1","withdraw(uint256,address,address,address)":"23e103a8","withdrawFromYieldVault(uint256)":"d336078c","yieldVault()":"a7f8a5e2"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"policyPool_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"BorrowerAlreadyAdded\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"DepositNotWhitelisted\",\"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\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"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\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"ERC2612ExpiredSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC2612InvalidSigner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"requested\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxWithdraw\",\"type\":\"uint256\"}],\"name\":\"ExceedsMaxWithdraw\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"InvalidBorrower\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"contract ICooler\",\"name\":\"cooler\",\"type\":\"address\"}],\"name\":\"InvalidCooler\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"enum IEToken.Parameter\",\"name\":\"parameter\",\"type\":\"uint8\"}],\"name\":\"InvalidParameter\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"contract ILPWhitelist\",\"name\":\"whitelist\",\"type\":\"address\"}],\"name\":\"InvalidWhitelist\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidYieldVault\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"required\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"available\",\"type\":\"uint256\"}],\"name\":\"NotEnoughCash\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"required\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"available\",\"type\":\"uint256\"}],\"name\":\"NotEnoughScrFunds\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"OnlyBorrower\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ReserveInvalidReceiver\",\"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\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"rejectedScale\",\"type\":\"uint256\"}],\"name\":\"ScaleTooSmall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from_\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to_\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"TransferNotWhitelisted\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangePolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"actualUtilization\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minUtilization\",\"type\":\"uint256\"}],\"name\":\"UtilizationRateTooLow\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"WithdrawalNotWhitelisted\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"contract ICooler\",\"name\":\"cooler\",\"type\":\"address\"}],\"name\":\"WithdrawalsRequireCooldown\",\"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\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"CoCRefunded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"contract ICooler\",\"name\":\"oldCooler\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"contract ICooler\",\"name\":\"newCooler\",\"type\":\"address\"}],\"name\":\"CoolerChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"distributedProfit\",\"type\":\"uint256\"}],\"name\":\"ETokensRedistributed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"earnings\",\"type\":\"int256\"}],\"name\":\"EarningsRecorded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"ErrorIgnoredDeinvestingVault\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"InternalBorrowerAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"defaultedDebt\",\"type\":\"uint256\"}],\"name\":\"InternalBorrowerRemoved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amountAsked\",\"type\":\"uint256\"}],\"name\":\"InternalLoan\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"InternalLoanRepaid\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"enum IEToken.Parameter\",\"name\":\"param\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newValue\",\"type\":\"uint256\"}],\"name\":\"ParameterChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"interestRate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SCRLocked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"interestRate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"adjustment\",\"type\":\"int256\"}],\"name\":\"SCRUnlocked\",\"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\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"contract ILPWhitelist\",\"name\":\"oldWhitelist\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"contract ILPWhitelist\",\"name\":\"newWhitelist\",\"type\":\"address\"}],\"name\":\"WhitelistChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"newVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"forced\",\"type\":\"bool\"}],\"name\":\"YieldVaultChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"addBorrower\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"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\":\"cooler\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"depositIntoYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"fundsAvailable\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"fundsAvailableToLock\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"updated\",\"type\":\"bool\"}],\"name\":\"getCurrentScale\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"getLoan\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getScaledUserBalanceAndSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"maxUtilizationRate_\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"internalLoanInterestRate_\",\"type\":\"uint256\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"internalLoan\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"internalLoanInterestRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"investedInYV\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"liquidityRequirement\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"scrAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"policyInterestRate\",\"type\":\"uint256\"}],\"name\":\"lockScr\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"maxNegativeAdjustment\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"maxUtilizationRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"minUtilizationRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"recordEarnings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redistribute\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"removeBorrower\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"onBehalfOf\",\"type\":\"address\"}],\"name\":\"repayLoan\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"scaledBalanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"scaledTotalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"scr\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"scrInterestRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ICooler\",\"name\":\"newCooler\",\"type\":\"address\"}],\"name\":\"setCooler\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"enum IEToken.Parameter\",\"name\":\"param\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"newValue\",\"type\":\"uint256\"}],\"name\":\"setParam\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract ILPWhitelist\",\"name\":\"lpWhitelist_\",\"type\":\"address\"}],\"name\":\"setWhitelist\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"newYieldVault\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"force\",\"type\":\"bool\"}],\"name\":\"setYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"tokenInterestRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalWithdrawable\",\"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\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"scrAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"policyInterestRate\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"adjustment\",\"type\":\"int256\"}],\"name\":\"unlockScr\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"scrAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"policyInterestRate\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"adjustment\",\"type\":\"int256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"refundAmount\",\"type\":\"uint256\"}],\"name\":\"unlockScrWithRefund\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"utilizationRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"whitelist\",\"outputs\":[{\"internalType\":\"contract ILPWhitelist\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFromYieldVault\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"deinvested\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"yieldVault\",\"outputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"Implementation of the interest/earnings bearing token for the Ensuro protocol.      `_tsScaled.scale` scales the balances stored in _balances. _tsScaled (totalSupply scaled) grows      continuoulsly at tokenInterestRate().      Every operation that changes the utilization rate (_scr.scr/totalSupply) or the _scr.interestRate, updates      first the _tsScaled.scale accumulating the interest accrued since _tsScaled.lastUpdate.\",\"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.\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"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.\"}}],\"ERC2612ExpiredSignature(uint256)\":[{\"details\":\"Permit deadline has expired.\"}],\"ERC2612InvalidSigner(address,address)\":[{\"details\":\"Mismatched signature.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotEnoughCash(uint256,uint256)\":[{\"params\":{\"available\":\"The currently available liquid balance\",\"required\":\"The requested amount of liquid funds\"}}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"ReserveInvalidReceiver(address)\":[{\"params\":{\"receiver\":\"The receiver that was provided (cannot be the zero address)\"}}],\"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.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"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.\"},\"CoCRefunded(uint256,address,uint256)\":{\"details\":\"This happends when a policy is cancelled with refund. It doesn't affect the totalSupply since it should be not yet accrued money.\",\"params\":{\"amount\":\"The amount of the refund\",\"policyId\":\"The owner of the burned tokens (the cooler)\",\"receiver\":\"The user that received the refund\"}},\"CoolerChanged(address,address)\":{\"details\":\"The event reports the old and new cooler\"},\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"ETokensRedistributed(address,uint256)\":{\"details\":\"This typically happens when a cooldown is executed and there were profits during the period\",\"params\":{\"distributedProfit\":\"The amount that is distributed between all the LPs\",\"owner\":\"The owner of the burned tokens (the cooler)\"}},\"EarningsRecorded(int256)\":{\"params\":{\"earnings\":\"The amount of earnings generated since last record. It's positive in the case of earnings or negative when there are losses.\"}},\"ErrorIgnoredDeinvestingVault(address,uint256)\":{\"params\":{\"oldVault\":\"The vault that failed to redeem\",\"shares\":\"The number of shares attempted to redeem\"}},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"InternalBorrowerRemoved(address,uint256)\":{\"params\":{\"borrower\":\"The address of the borrower, a {PremiumsAccount}\",\"defaultedDebt\":\"The unpaid amount left by the borrower\"}},\"InternalLoan(address,uint256,uint256)\":{\"details\":\"These funds are used to cover the losses and may be later repaid if the performance of the product improves and accumulates surplus.\",\"params\":{\"amountAsked\":\"The amount originally asked\",\"borrower\":\"The address of the borrower, a {PremiumsAccount}\",\"value\":\"The amount of the loan\"}},\"InternalLoanRepaid(address,uint256)\":{\"params\":{\"borrower\":\"The address of the borrower, a {PremiumsAccount}\",\"value\":\"The amount of the repayment\"}},\"ParameterChanged(uint8,uint256)\":{\"params\":{\"newValue\":\"The new value set\",\"param\":\"Type of parameter change\"}},\"SCRLocked(uint256,uint256,uint256)\":{\"params\":{\"interestRate\":\"The annualized interestRate paid for the capital (wad)\",\"policyId\":\"The id of the policy that locks the capital\",\"value\":\"The amount locked\"}},\"SCRUnlocked(uint256,uint256,uint256,int256)\":{\"params\":{\"adjustment\":\"Discrete amount of adjustment done to the totalSupply to reflect when more or less                   than the received cost of capital has been accrued since the SCR was locked.\",\"interestRate\":\"The annualized interestRate that was paid for the capital (wad)\",\"policyId\":\"The id of the policy that unlocks the capital (should be the that locked before with SCRLocked)\",\"value\":\"The amount unlocked\"}},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"},\"WhitelistChanged(address,address)\":{\"details\":\"The event reports the old and new whitelist\"},\"YieldVaultChanged(address,address,bool)\":{\"details\":\"When replacing an existing vault, the reserve attempts to redeem the full position (unless `force` is used).\",\"params\":{\"forced\":\"True if the switch ignored a partial/failed deinvestment and proceeded anyway\",\"newVault\":\"The new yield vault (can be `address(0)`)\",\"oldVault\":\"The previous yield vault (can be `address(0)`)\"}}},\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"addBorrower(address)\":{\"details\":\"Borrowers (typically PremiumsAccounts) can: - lock/unlock SCR via {lockScr}/{unlockScr}/{unlockScrWithRefund} - take internal loans via {internalLoan}\",\"params\":{\"borrower\":\"The address of the _borrower_, a PremiumsAccount that has this eToken as senior or junior eToken.\"}},\"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\":\"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\":\"Returns the value of tokens owned by `account`.\"},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"deposit(uint256,address,address)\":{\"details\":\"Called from the PolicyPool, assumes the amount has already been transferred. `amount` of eToken are minted and given to the provider in exchange of the liquidity provided.\",\"params\":{\"amount\":\"The amount deposited.\",\"caller\":\"The user that initiates the deposit\",\"receiver\":\"The user that will receive the minted eTokens\"}},\"depositIntoYieldVault(uint256)\":{\"custom:pre\":\"_balance() >= amount\",\"params\":{\"amount\":\"Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\"}},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"fundsAvailable()\":{\"details\":\"Returns the amount of totalSupply that isn't utilized as SCR.\"},\"fundsAvailableToLock()\":{\"details\":\"Returns the funds that can be treated as available to lock as SCR, after applying the      max utilization cap and (if a Cooler is configured) subtracting pending withdrawals.\"},\"getCurrentScale(bool)\":{\"params\":{\"updated\":\"When it's false, it returns the last scale stored. When it's true, it projects that scale applying                the accrued returns of the scr\"}},\"getScaledUserBalanceAndSupply(address)\":{\"details\":\"Returns the scaled balance of the user and the scaled total supply.\",\"params\":{\"user\":\"The address of the user\"},\"returns\":{\"_0\":\"The scaled balance of the user\",\"_1\":\"The scaled balance and the scaled total supply*\"}},\"initialize(string,string,uint256,uint256)\":{\"details\":\"Initializes the eToken\",\"params\":{\"internalLoanInterestRate_\":\"Annualized interest rate charged on internal loans, in WAD (1e18)\",\"maxUtilizationRate_\":\"Max utilization rate (scr / totalSupply), in WAD (1e18)\",\"name_\":\"Name of the eToken\",\"symbol_\":\"Symbol of the eToken\"}},\"internalLoan(uint256,address)\":{\"details\":\"This reduces the `totalSupply()` of the eToken, and stores a debt that will be repaid (hopefully) with `repayLoan`.\",\"params\":{\"amount\":\"The amount required\",\"receiver\":\"The received of the funds lent. This is usually the policyholder if the loan is used for a payout.\"},\"returns\":{\"_0\":\"Returns the amount that wasn't able to fulfil. `amount - lent`\"}},\"internalLoanInterestRate()\":{\"details\":\"Returns the annualized interest rate charged to borrowers (see PremiumsAccount) when they take funds\"},\"liquidityRequirement()\":{\"details\":\"Returns the factor applied to SCR when computing the non-withdrawable. Typically 1.0 (in wad).\"},\"lockScr(uint256,uint256,uint256)\":{\"params\":{\"policyId\":\"The id of the policy that locks the capital\",\"policyInterestRate\":\"The annualized interest rate (wad) to be paid for the `scrAmount`\",\"scrAmount\":\"The amount to lock\"}},\"maxNegativeAdjustment()\":{\"details\":\"Returns the maximum negative adjustment (discrete loss) the eToken can accept without breaking consistency.      The limit comes from limits in the internal scale that takes scaledTotalSupply() to totalSupply()\"},\"maxUtilizationRate()\":{\"details\":\"Returns the maximum utilization rate (UR) that is acceptable when locking funds.      The UR can be higher than this value as a consequence of withdrawals or other operations,      but not as a consequence of a lockScr call.\"},\"minUtilizationRate()\":{\"details\":\"Returns the minimum utilization rate (UR) that is acceptable after deposits.      The UR can be lower than this value as a consequence of SCR unlocks or other operations,      but not as a consequence of a deposit call.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"nonces(address)\":{\"details\":\"Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also applies here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]. CAUTION: See Security Considerations above.\"},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"recordEarnings()\":{\"custom:emits\":\"{EarningsRecorded}\",\"details\":\"Computes the value of the assets invested in the yieldVault() and then calls `_yieldEarnings` to      reflect the earnings/losses in the way defined for each reserve.\"},\"redistribute(uint256)\":{\"params\":{\"amount\":\"The amount of eTokens to burn\"}},\"removeBorrower(address)\":{\"params\":{\"borrower\":\"The address of the _borrower_, a PremiumsAccount that has this eToken as senior or junior eToken.\"}},\"repayLoan(uint256,address)\":{\"params\":{\"amount\":\"The amount to repaid, that will be transferred from `msg.sender` balance.\",\"onBehalfOf\":\"The address of the borrower that took the loan. Usually `onBehalfOf == msg.sender` but we keep it open because in some cases with might need someone else pays the debt.\"}},\"scaledBalanceOf(address)\":{\"details\":\"Returns the scaled balance of the user. The scaled balance is the sum of all the updated stored balance divided by the EToken's scale index\",\"params\":{\"user\":\"The user whose balance is calculated\"},\"returns\":{\"_0\":\"The scaled balance of the user*\"}},\"scaledTotalSupply()\":{\"returns\":{\"_0\":\"The total supply in scaled/raw units.\"}},\"setYieldVault(address,bool)\":{\"custom:emits\":\"{YieldVaultChanged}\",\"params\":{\"force\":\"When a previous yield vault exists, before setting the new one, the funds are deinvested. When              `force` is true, an error in the deinvestment of the assets (or some assets not withdrawable)              will be ignored. When `force` is false, it will revert if `oldVault.balanceOf(address(this)) != 0`.\",\"newYieldVault\":\"The address of the new yield vault to assign to the reserve. If is `address(0)` it means                      the reserve will not have a yield vault. If not `address(0)` it MUST be an IERC4626                      where `newYieldVault.asset()` equals `.currency()`\"}},\"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.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"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`.\"},\"unlockScr(uint256,uint256,uint256,int256)\":{\"details\":\"The capital no longer needed as solvency, enabling withdrawal.\",\"params\":{\"adjustment\":\"Discrete amount of adjustment done to the totalSupply to reflect when more or less                   than the received cost of capital has been accrued since the SCR was locked.\",\"policyId\":\"The id of the policy that locked the scr originally\",\"policyInterestRate\":\"The annualized interest rate that was paid for the `scrAmount`, must be the same that                           was sent in `lockScr` call.\",\"scrAmount\":\"The amount to unlock\"}},\"unlockScrWithRefund(uint256,uint256,uint256,int256,address,uint256)\":{\"details\":\"The capital no longer needed as solvency . It refunds part of the Coc received that wasn't accrued (or if it was already accrued, it is adjusted). The refund doesn't affect the totalSupply. It just changes the reserves.\",\"params\":{\"policyId\":\"The id of the policy that locked the scr originally\",\"policyInterestRate\":\"The annualized interest rate that was paid for the `scrAmount`, must be the same that was sent in `lockScr` call.\",\"receiver\":\"The address of the receiver of the refund\",\"refundAmount\":\"The amount to refund\",\"scrAmount\":\"The amount to unlock\"}},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"},\"utilizationRate()\":{\"details\":\"Returns the percentage of the total supply that is used as SCR (solvency capital backing risks)\"},\"withdraw(uint256,address,address,address)\":{\"details\":\"`withdrawn` eTokens are be burned and the user receives the same amount in `currency()`. If `amount == type(uint256).max`, it withdraws up to `maxWithdraw` (i.e., as much as possible). Otherwise, it reverts if `amount > maxWithdraw`.\",\"params\":{\"amount\":\"The amount to withdraw. If `amount == type(uint256).max`, withdraws up to `maxWithdraw`.\",\"caller\":\"The user that initiates the withdrawal\",\"owner\":\"The owner of the eTokens (either caller==owner or caller has allowance)\",\"receiver\":\"The address that will receive the resulting `currency()`\"}},\"withdrawFromYieldVault(uint256)\":{\"custom:pre\":\"yieldVault() != address(0)yieldVault().maxWithdraw(address(this)) >= amount             (this condition is not checked here; exceeding it is expected to revert in the vault during _deinvest()).\",\"params\":{\"amount\":\"Amount to withdraw from the `yieldVault()`. If equal type(uint256).max, deinvests maxWithdraw()\"},\"returns\":{\"deinvested\":\"The amount that was deinvested and added as liquid funds to the reserve\"}}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"}},\"title\":\"Ensuro ERC20 EToken - interest-bearing token\",\"version\":1},\"userdoc\":{\"errors\":{\"BorrowerAlreadyAdded(address)\":[{\"notice\":\"Thrown when trying to add a borrower twice\"}],\"DepositNotWhitelisted(address,uint256)\":[{\"notice\":\"Thrown when a deposit is rejected by the Whitelist\"}],\"ExceedsMaxWithdraw(uint256,uint256)\":[{\"notice\":\"Thrown when trying to withdraw an amount that exceeds either the user funds or totalWithdrawable()\"}],\"InvalidBorrower(address)\":[{\"notice\":\"Thrown when trying to repayLoan or query a loan of a non-borrower\"}],\"InvalidCooler(address)\":[{\"notice\":\"Thrown when trying to change the cooler to a contract that doesn't belong to the same policyPool()\"}],\"InvalidParameter(uint8)\":[{\"notice\":\"Thrown on setParam when the given value doesn't match the specific validations\"}],\"InvalidWhitelist(address)\":[{\"notice\":\"Thrown when trying to change the whitelist to a contract that doesn't belong to the same policyPool()\"}],\"InvalidYieldVault()\":[{\"notice\":\"Thrown when the yield vault is unset or invalid for the configured currency.\"}],\"NotEnoughCash(uint256,uint256)\":[{\"notice\":\"Thrown when trying to invest more cash than currently liquid in the reserve.\"}],\"NotEnoughScrFunds(uint256,uint256)\":[{\"notice\":\"Thrown when trying to lock more funds than the ones that are available\"}],\"OnlyBorrower(address)\":[{\"notice\":\"Thrown when called by a non-borrower on borrower operations (internalLoan and lock/unlock scr)\"}],\"ReserveInvalidReceiver(address)\":[{\"notice\":\"Thrown when attempting to transfer to the zero address.\"}],\"TransferNotWhitelisted(address,address,uint256)\":[{\"notice\":\"Thrown when a transfer is rejected by the Whitelist\"}],\"UtilizationRateTooLow(uint256,uint256)\":[{\"notice\":\"Thrown when a deposit leaves the utilizationRate under the minUtilization\"}],\"WithdrawalNotWhitelisted(address,uint256)\":[{\"notice\":\"Thrown when a withdrawal is rejected by the Whitelist\"}],\"WithdrawalsRequireCooldown(address)\":[{\"notice\":\"Thrown when trying to execute an instant withdraw when the eToken has non-zero cooldownPeriod\"}]},\"events\":{\"CoCRefunded(uint256,address,uint256)\":{\"notice\":\"Event emitted when part of a previously received CoC is refunded\"},\"CoolerChanged(address,address)\":{\"notice\":\"Event emitted when the cooler is changed\"},\"ETokensRedistributed(address,uint256)\":{\"notice\":\"Event emitted when tokens are burn, redistributing the value to the rest of LPs\"},\"EarningsRecorded(int256)\":{\"notice\":\"Event emitted when investment yields are accounted in the reserve\"},\"ErrorIgnoredDeinvestingVault(address,uint256)\":{\"notice\":\"Emitted when a forced deinvestment ignored a redeem failure.\"},\"InternalBorrowerAdded(address)\":{\"notice\":\"Event emitted when a new borrower (PremiumsAccount) is added\"},\"InternalBorrowerRemoved(address,uint256)\":{\"notice\":\"Event emitted when a borrower is removed (it can't lock funds or take loans anymore)\"},\"InternalLoan(address,uint256,uint256)\":{\"notice\":\"Event emitted when a PremiumsAccount takes funds (loan) from the eToken\"},\"InternalLoanRepaid(address,uint256)\":{\"notice\":\"Event emitted when a PremiumsAccount repays a loan previously taken\"},\"ParameterChanged(uint8,uint256)\":{\"notice\":\"Event emitted when a parameter was changed\"},\"SCRLocked(uint256,uint256,uint256)\":{\"notice\":\"Event emitted when part of the funds of the eToken are locked as solvency capital.\"},\"SCRUnlocked(uint256,uint256,uint256,int256)\":{\"notice\":\"Event emitted when the locked funds are unlocked and no longer used as solvency capital.\"},\"WhitelistChanged(address,address)\":{\"notice\":\"Event emitted when the whitelist is changed\"},\"YieldVaultChanged(address,address,bool)\":{\"notice\":\"Emitted when the yield vault is changed.\"}},\"kind\":\"user\",\"methods\":{\"addBorrower(address)\":{\"notice\":\"Adds an authorized _borrower_ to the eToken. This _borrower_ will be allowed to lock/unlock funds and to take loans.\"},\"cooler()\":{\"notice\":\"Returns the cooler contract plugged into the eToken\"},\"deposit(uint256,address,address)\":{\"notice\":\"Registers a deposit of liquidity in the pool.\"},\"depositIntoYieldVault(uint256)\":{\"notice\":\"Moves money that's liquid in the contract to the yield vault, to generate yields\"},\"getCurrentScale(bool)\":{\"notice\":\"Returns the number that scales the shares to reflect the earnings or losses (rebasing token)\"},\"getLoan(address)\":{\"notice\":\"Returns the updated debt (principal + interest) of the `borrower`.\"},\"internalLoan(uint256,address)\":{\"notice\":\"Lends `amount` to the borrower (msg.sender), transferring the money to `receiver`.\"},\"investedInYV()\":{\"notice\":\"Returns the amount of funds that were invested in the yieldVault, up to the last recorded earnings / losses\"},\"lockScr(uint256,uint256,uint256)\":{\"notice\":\"Locks part of the liquidity of the EToken as solvency capital.\"},\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"},\"redistribute(uint256)\":{\"notice\":\"Redistributes a given amount of eTokens of the caller between the remaining LPs\"},\"removeBorrower(address)\":{\"notice\":\"Removes an authorized _borrower_ to the eToken. The _borrower_ can't no longer lock funds or take loans.\"},\"repayLoan(uint256,address)\":{\"notice\":\"Repays a loan taken with `internalLoan`.\"},\"scaledTotalSupply()\":{\"notice\":\"Returns the total supply in scaled/raw units (without applying the current scale index). Equals the sum of {scaledBalanceOf} across all users.\"},\"scr()\":{\"notice\":\"Returns the amount of capital that's locked as solvency capital for active policies.\"},\"scrInterestRate()\":{\"notice\":\"The weighted average annualized interest rate paid by the currently locked `scr()`.\"},\"setYieldVault(address,bool)\":{\"notice\":\"Sets the new yield vault for this reserve. If the reserve had previously a yield vault, it will deinvest all the funds, making all of the liquid in the reserve balance.\"},\"tokenInterestRate()\":{\"notice\":\"The annualized interest rate at which the `totalSupply()` grows\"},\"totalWithdrawable()\":{\"notice\":\"Returns the total amount that can be withdrawn\"},\"unlockScr(uint256,uint256,uint256,int256)\":{\"notice\":\"Unlocks solvency capital previously locked with `lockScr`.\"},\"unlockScrWithRefund(uint256,uint256,uint256,int256,address,uint256)\":{\"notice\":\"Unlocks solvency capital previously locked with `lockScr`, doing a refund of the CoC previously received\"},\"withdraw(uint256,address,address,address)\":{\"notice\":\"Withdraws an amount from an eToken.\"},\"withdrawFromYieldVault(uint256)\":{\"notice\":\"Deinvest from the vault a given amount.\"},\"yieldVault()\":{\"notice\":\"Returns the address of the yield vault, where the part of the funds are invested to generate additional      yields. Can be `address(0)` if no yieldVault has been set.\"}},\"notice\":\"These are the liquidity pools where users provide funds to cover insurance products\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/EToken.sol\":\"EToken\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/ETKLib.sol\":{\"keccak256\":\"0x7c15a3ce23b9fcb12344a7757b9d29a29971d20f562de1f2bf483b3165706ab8\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://7debcfafaf2775084c4404d1ddd1b86361256918c34a2706b0be2066df6b46f6\",\"dweb:/ipfs/QmXzPjm9TMc6QEE1CbZ7pjhPKBBJmWDKy8xWXiM7pBgfWk\"]},\"@ensuro/core/contracts/EToken.sol\":{\"keccak256\":\"0x905b99ea4e4514b1167a3b8ff670d4738c681d882d341c5dfb88d02e761ee5e7\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://94ca117df11ffc002afe9a2d342f86a293fdb393a3c177d8ec54d5d9887a7a1f\",\"dweb:/ipfs/QmP9nH7G4SzBkaauPvkqZw983iNgcPxzTjqLdHg7HkPnVy\"]},\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@ensuro/core/contracts/PolicyPoolComponent.sol\":{\"keccak256\":\"0x59be0e577af81ab215ac850da84692d6ae7a465917701260f390bc92240c4707\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://c55648f183f32e74d6d83cfc2a8eb606c75a6c3bc598e8ec2a38f9fb3b676f8c\",\"dweb:/ipfs/QmdDFuZz6cn9ywUuxv4bTY3STMWQMWTAzitbocywFMoByb\"]},\"@ensuro/core/contracts/Reserve.sol\":{\"keccak256\":\"0x2c4bd6d6c13fd006af456f228df1242eb857f5ec27fe09175579ded50dc28392\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b573114bbfb87368b5fbc535b2bf05b4bffb797618054f54e589eb078c6d4a9e\",\"dweb:/ipfs/QmP3gkDPDYhdLVh86nAtndb4CGNTMdM2FNantCKPTjD3TA\"]},\"@ensuro/core/contracts/interfaces/ICooler.sol\":{\"keccak256\":\"0xd2f546d8a15bbc201e1811a050fce315eb72016c4360bf31066a8041f4159cae\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://3a974feacac260a76883322b18e3f0251aa3430f24bab1b7b4c21853a3498a9a\",\"dweb:/ipfs/QmQFixSYSFiJem2UYPJa2ky2eorFNXBncDZ1yrxPMRK66F\"]},\"@ensuro/core/contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"@ensuro/core/contracts/interfaces/ILPWhitelist.sol\":{\"keccak256\":\"0x71555d613cf2e4efa341593f2611adc078e4b3f745a15db0c3cba2717f1312eb\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://474679208452130bd5f1acb2ee3c8585f219a441925af65121fee370882de42a\",\"dweb:/ipfs/QmcPoJQnQWKZteafe1T2sEVQHG1YPX8a731W7hqZZVyyxq\"]},\"@ensuro/core/contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"@ensuro/core/contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"@ensuro/core/contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\":{\"keccak256\":\"0xd518def45c722a6e803e1e26e625db25e01497f672ca566cca585d234ec903b0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6e7de3fccd96783244790cde282435ce0fd3a44ab4ccb10f17005c743202882f\",\"dweb:/ipfs/QmYSepstTqs5UPJvjeJXkWU5R659yReqrSgSGGh65hkbdK\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol\":{\"keccak256\":\"0x2abba89aa289a6c0e38404a5b2e0020ca133e1ae0c790bdfc4cc99a1e2af93ba\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://babdfa68f728f6063f378692ac75dc086d3a7d7a4c04f53779c4365d0b2d1124\",\"dweb:/ipfs/QmNZe3zu6FvpN9xBMadQsxip11VAUyqJWHTbrBGCqes9SC\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts-upgradeable/utils/NoncesUpgradeable.sol\":{\"keccak256\":\"0xe82a34ce4440f4c0a144fcd5c837c05bcd6bfbd947ba184f3e9904c14ed280ad\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f05905d8f1f2941589c625b74f2ca7fb3f2a8d8b9e55c0b31072404720a1cb95\",\"dweb:/ipfs/QmVCzDUqSaUYGLSqwkeEQHBMTrJQtUMjEsBBEsGYBdyazE\"]},\"@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol\":{\"keccak256\":\"0x5c9adc83ba1c3bed191e5c3d462737f02b48d8a6e4aecbad9e6df6ac257fe6c4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5d2cfe337601df0454355fc8e949db2840c7a8a305dfeb50c9c0041ea39d42b8\",\"dweb:/ipfs/QmeXh9iqjQ6t5t4NqUjmv8vaDV1jDrSwXQVkVdyDjk2ZUm\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0xfb223a85dd0b2175cfbbaa325a744e2cd74ecd17c3df2b77b0722f991d2725ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84bf1dea0589ec49c8d15d559cc6d86ee493048a89b2d4adb60fbe705a3d89ae\",\"dweb:/ipfs/Qmd56n556d529wk2pRMhYhm5nhMDhviwereodDikjs68w1\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x53befc41288eaa87edcd3a7be7e8475a32e44c6a29f9bf52fae789781301d9ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a1d7fab53c4ceaf42391b83d9b36d7e9cc524a8da125cffdcd32c56560f9d1c9\",\"dweb:/ipfs/QmaRZdVhQdqNXofeimibkBG65q9GVcXVZEGpycwwX3znC6\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x360cf86214a764694dae1522a38200b1737fe90e46dcf56a0f89de143071cc20\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e393290a46ca6d1fa1addb40709d26e1d250638ab6acdd103b5af21768ebc7b\",\"dweb:/ipfs/QmPwT3tXwQ9NbGtZ99XRq7sr8LCQP8XaCrzw49JdXGn7us\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x6abeed5940e1da7bb329e458db9a1c5c4ea6f86d651b952af99c6bddcd6bbb94\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fe75e9a6b759c5d7fd82fb59bd4f58c672b36f0a69b84f4789b7c7895d3e61c\",\"dweb:/ipfs/QmX28wsir8w5sS3acfJMNHcBwoPsDpqCu7WDkPnUWLMNiZ\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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":[{"astId":11093,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"__gap","offset":0,"slot":"0","type":"t_array(t_uint256)50_storage"},{"astId":12869,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"_invested","offset":0,"slot":"50","type":"t_uint256"},{"astId":13499,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"__gap","offset":0,"slot":"51","type":"t_array(t_uint256)49_storage"},{"astId":5845,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"_tsScaled","offset":0,"slot":"100","type":"t_struct(ScaledAmount)4819_storage"},{"astId":5848,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"_scr","offset":0,"slot":"101","type":"t_struct(Scr)4824_storage"},{"astId":5854,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"_loans","offset":0,"slot":"102","type":"t_mapping(t_address,t_struct(ScaledAmount)4819_storage)"},{"astId":5871,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"_params","offset":0,"slot":"103","type":"t_struct(PackedParams)5867_storage"},{"astId":5875,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"_yieldVault","offset":0,"slot":"104","type":"t_contract(IERC4626)22463"},{"astId":5879,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"_cooler","offset":0,"slot":"105","type":"t_contract(ICooler)14162"},{"astId":7680,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"__gap","offset":0,"slot":"106","type":"t_array(t_uint256)44_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)44_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[44]","numberOfBytes":"1408"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_contract(ICooler)14162":{"encoding":"inplace","label":"contract ICooler","numberOfBytes":"20"},"t_contract(IERC4626)22463":{"encoding":"inplace","label":"contract IERC4626","numberOfBytes":"20"},"t_contract(ILPWhitelist)14383":{"encoding":"inplace","label":"contract ILPWhitelist","numberOfBytes":"20"},"t_mapping(t_address,t_struct(ScaledAmount)4819_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct ETKLib.ScaledAmount)","numberOfBytes":"32","value":"t_struct(ScaledAmount)4819_storage"},"t_struct(PackedParams)5867_storage":{"encoding":"inplace","label":"struct EToken.PackedParams","members":[{"astId":5858,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"whitelist","offset":0,"slot":"0","type":"t_contract(ILPWhitelist)14383"},{"astId":5860,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"liquidityRequirement","offset":20,"slot":"0","type":"t_uint16"},{"astId":5862,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"minUtilizationRate","offset":22,"slot":"0","type":"t_uint16"},{"astId":5864,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"maxUtilizationRate","offset":24,"slot":"0","type":"t_uint16"},{"astId":5866,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"internalLoanInterestRate","offset":26,"slot":"0","type":"t_uint16"}],"numberOfBytes":"32"},"t_struct(ScaledAmount)4819_storage":{"encoding":"inplace","label":"struct ETKLib.ScaledAmount","members":[{"astId":4813,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"amount","offset":0,"slot":"0","type":"t_uint128"},{"astId":4816,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"scale","offset":16,"slot":"0","type":"t_userDefinedValueType(Scale)4792"},{"astId":4818,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"lastUpdate","offset":28,"slot":"0","type":"t_uint32"}],"numberOfBytes":"32"},"t_struct(Scr)4824_storage":{"encoding":"inplace","label":"struct ETKLib.Scr","members":[{"astId":4821,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"scr","offset":0,"slot":"0","type":"t_uint128"},{"astId":4823,"contract":"@ensuro/core/contracts/EToken.sol:EToken","label":"interestRate","offset":16,"slot":"0","type":"t_uint128"}],"numberOfBytes":"32"},"t_uint128":{"encoding":"inplace","label":"uint128","numberOfBytes":"16"},"t_uint16":{"encoding":"inplace","label":"uint16","numberOfBytes":"2"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint32":{"encoding":"inplace","label":"uint32","numberOfBytes":"4"},"t_userDefinedValueType(Scale)4792":{"encoding":"inplace","label":"ETKLib.Scale","numberOfBytes":"12"}}}}},"@ensuro/core/contracts/Policy.sol":{"Policy":{"abi":[{"inputs":[{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"PremiumExceedsPayout","type":"error"},{"inputs":[{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"minPremium","type":"uint256"}],"name":"PremiumLessThanMinimum","type":"error"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"ZeroHash","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220293f303e400c1781470ba720e55fd4235d60f18d18b4891a3e053c5d9563576264736f6c634300081e0033","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 0x29 EXTCODEHASH ADDRESS RETURNDATACOPY BLOCKHASH 0xC OR DUP2 SELFBALANCE SIGNEXTEND 0xA7 KECCAK256 JUMPF 0x5FD4 0x23 TSTORE PUSH1 0xF1 DUP14 XOR 0xB4 DUP10 BYTE RETURNDATACOPY SDIV EXTCODECOPY TSTORE SWAP6 PUSH4 0x57626473 PUSH16 0x6C634300081E00330000000000000000 ","sourceMap":"565:11197:23:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;565:11197:23;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220293f303e400c1781470ba720e55fd4235d60f18d18b4891a3e053c5d9563576264736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x29 EXTCODEHASH ADDRESS RETURNDATACOPY BLOCKHASH 0xC OR DUP2 SELFBALANCE SIGNEXTEND 0xA7 KECCAK256 JUMPF 0x5FD4 0x23 TSTORE PUSH1 0xF1 DUP14 XOR 0xB4 DUP10 BYTE RETURNDATACOPY SDIV EXTCODECOPY TSTORE SWAP6 PUSH4 0x57626473 PUSH16 0x6C634300081E00330000000000000000 ","sourceMap":"565:11197:23:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"PremiumExceedsPayout\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minPremium\",\"type\":\"uint256\"}],\"name\":\"PremiumLessThanMinimum\",\"type\":\"error\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"ZeroHash\",\"type\":\"error\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"Tracks how the premium is distributed, the probability of payout, duration and how the capital is locked. It is never stored on-chain, but instead we store a hash and we receive the policy on each operation\",\"errors\":{\"PremiumLessThanMinimum(uint256,uint256)\":[{\"details\":\"The minPremium is the one that results of computing the CoCs, purePremium and ensuroCommission for the given parameters, assuming partnerCommission = 0.\"}]},\"kind\":\"dev\",\"methods\":{},\"title\":\"Policy library\",\"version\":1},\"userdoc\":{\"errors\":{\"PremiumExceedsPayout(uint256,uint256)\":[{\"notice\":\"Raised when the premium exceeds the payoutreceived premium is less than the minimum\"}],\"PremiumLessThanMinimum(uint256,uint256)\":[{\"notice\":\"Raised when the received premium is less than the minimum\"}],\"ZeroHash((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":[{\"notice\":\"Raised when the computed hash is bytes32(0)\"}]},\"kind\":\"user\",\"methods\":{},\"notice\":\"Library for PolicyData struct. This struct represents an active policy, the premium and solvency breakdown\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/Policy.sol\":\"Policy\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/core/contracts/PolicyPool.sol":{"PolicyPool":{"abi":[{"inputs":[{"internalType":"contract IERC20Metadata","name":"currency_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[],"name":"ComponentAlreadyInThePool","type":"error"},{"inputs":[{"internalType":"enum PolicyPool.ComponentKind","name":"kind","type":"uint8"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ComponentInUseCannotRemove","type":"error"},{"inputs":[],"name":"ComponentMustBeActiveOrDeprecated","type":"error"},{"inputs":[],"name":"ComponentNotDeprecated","type":"error"},{"inputs":[],"name":"ComponentNotFound","type":"error"},{"inputs":[],"name":"ComponentNotFoundOrNotActive","type":"error"},{"inputs":[],"name":"ComponentNotLinkedToThisPool","type":"error"},{"inputs":[{"internalType":"contract IPolicyPoolComponent","name":"component","type":"address"},{"internalType":"enum PolicyPool.ComponentKind","name":"expectedKind","type":"uint8"}],"name":"ComponentNotTheRightKind","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"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"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[{"internalType":"uint128","name":"activeExposure","type":"uint128"},{"internalType":"uint128","name":"exposureLimit","type":"uint128"}],"name":"ExposureLimitExceeded","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"InvalidComponentStatus","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[{"internalType":"bytes4","name":"response","type":"bytes4"}],"name":"InvalidNotificationResponse","type":"error"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policyToCancel","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"name":"InvalidPolicyCancellation","type":"error"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"newPolicy","type":"tuple"}],"name":"InvalidPolicyReplacement","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"InvalidReceiver","type":"error"},{"inputs":[],"name":"NoEmptyName","type":"error"},{"inputs":[],"name":"NoEmptySymbol","type":"error"},{"inputs":[],"name":"NoZeroAccess","type":"error"},{"inputs":[],"name":"NoZeroCurrency","type":"error"},{"inputs":[],"name":"NoZeroTreasury","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"OnlyRiskModuleAllowed","type":"error"},{"inputs":[{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"policyPayout","type":"uint256"}],"name":"PayoutExceedsLimit","type":"error"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"PolicyAlreadyExists","type":"error"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"PolicyAlreadyExpired","type":"error"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint256","name":"now","type":"uint256"}],"name":"PolicyNotExpired","type":"error"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"PolicyNotFound","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[],"name":"UpgradeCannotChangeCurrency","type":"error"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"ZeroHash","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"oldBaseURI","type":"string"},{"indexed":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IPolicyPoolComponent","name":"component","type":"address"},{"indexed":false,"internalType":"enum PolicyPool.ComponentKind","name":"kind","type":"uint8"},{"indexed":false,"internalType":"enum PolicyPool.ComponentStatus","name":"newStatus","type":"uint8"}],"name":"ComponentStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IEToken","name":"eToken","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"policyId","type":"uint256"},{"indexed":false,"internalType":"contract IPolicyHolder","name":"holder","type":"address"}],"name":"ExpirationNotificationFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":false,"internalType":"uint128","name":"oldLimit","type":"uint128"},{"indexed":false,"internalType":"uint128","name":"newLimit","type":"uint128"}],"name":"ExposureLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"indexed":false,"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"NewPolicy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":true,"internalType":"uint256","name":"cancelledPolicyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"name":"PolicyCancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":true,"internalType":"uint256","name":"oldPolicyId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newPolicyId","type":"uint256"}],"name":"PolicyReplaced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":true,"internalType":"uint256","name":"policyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"payout","type":"uint256"}],"name":"PolicyResolved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldTreasury","type":"address"},{"indexed":false,"internalType":"address","name":"newTreasury","type":"address"}],"name":"TreasuryChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IEToken","name":"eToken","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IPolicyPoolComponent","name":"component","type":"address"},{"internalType":"enum PolicyPool.ComponentKind","name":"kind","type":"uint8"}],"name":"addComponent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policyToCancel","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"name":"cancelPolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IPolicyPoolComponent","name":"component","type":"address"},{"internalType":"enum PolicyPool.ComponentStatus","name":"newStatus","type":"uint8"}],"name":"changeComponentStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"depositWithPermit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"expirePolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IPolicyPoolComponent","name":"component","type":"address"}],"name":"getComponentStatus","outputs":[{"internalType":"enum PolicyPool.ComponentStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IRiskModule","name":"rm","type":"address"}],"name":"getExposure","outputs":[{"internalType":"uint256","name":"active","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"getPolicyHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"treasury_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"address","name":"payer","type":"address"},{"internalType":"address","name":"policyHolder","type":"address"},{"internalType":"uint96","name":"internalId","type":"uint96"}],"name":"newPolicy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IPolicyPoolComponent","name":"component","type":"address"}],"name":"removeComponent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"newPolicy_","type":"tuple"},{"internalType":"address","name":"payer","type":"address"},{"internalType":"uint96","name":"internalId","type":"uint96"}],"name":"replacePolicy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"resolvePolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"nftBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IRiskModule","name":"rm","type":"address"},{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setExposureLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"treasury_","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"amountWithdrawn","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_8659":{"entryPoint":null,"id":8659,"parameterSlots":1,"returnSlots":0},"@_disableInitializers_23388":{"entryPoint":114,"id":23388,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_23433":{"entryPoint":null,"id":23433,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_23419":{"entryPoint":null,"id":23419,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory":{"entryPoint":292,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:535:125","nodeType":"YulBlock","src":"0:535:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"119:209:125","nodeType":"YulBlock","src":"119:209:125","statements":[{"body":{"nativeSrc":"165:16:125","nodeType":"YulBlock","src":"165:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"174:1:125","nodeType":"YulLiteral","src":"174:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"177:1:125","nodeType":"YulLiteral","src":"177:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"167:6:125","nodeType":"YulIdentifier","src":"167:6:125"},"nativeSrc":"167:12:125","nodeType":"YulFunctionCall","src":"167:12:125"},"nativeSrc":"167:12:125","nodeType":"YulExpressionStatement","src":"167:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"140:7:125","nodeType":"YulIdentifier","src":"140:7:125"},{"name":"headStart","nativeSrc":"149:9:125","nodeType":"YulIdentifier","src":"149:9:125"}],"functionName":{"name":"sub","nativeSrc":"136:3:125","nodeType":"YulIdentifier","src":"136:3:125"},"nativeSrc":"136:23:125","nodeType":"YulFunctionCall","src":"136:23:125"},{"kind":"number","nativeSrc":"161:2:125","nodeType":"YulLiteral","src":"161:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"132:3:125","nodeType":"YulIdentifier","src":"132:3:125"},"nativeSrc":"132:32:125","nodeType":"YulFunctionCall","src":"132:32:125"},"nativeSrc":"129:52:125","nodeType":"YulIf","src":"129:52:125"},{"nativeSrc":"190:29:125","nodeType":"YulVariableDeclaration","src":"190:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"209:9:125","nodeType":"YulIdentifier","src":"209:9:125"}],"functionName":{"name":"mload","nativeSrc":"203:5:125","nodeType":"YulIdentifier","src":"203:5:125"},"nativeSrc":"203:16:125","nodeType":"YulFunctionCall","src":"203:16:125"},"variables":[{"name":"value","nativeSrc":"194:5:125","nodeType":"YulTypedName","src":"194:5:125","type":""}]},{"body":{"nativeSrc":"282:16:125","nodeType":"YulBlock","src":"282:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"291:1:125","nodeType":"YulLiteral","src":"291:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"294:1:125","nodeType":"YulLiteral","src":"294:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"284:6:125","nodeType":"YulIdentifier","src":"284:6:125"},"nativeSrc":"284:12:125","nodeType":"YulFunctionCall","src":"284:12:125"},"nativeSrc":"284:12:125","nodeType":"YulExpressionStatement","src":"284:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"241:5:125","nodeType":"YulIdentifier","src":"241:5:125"},{"arguments":[{"name":"value","nativeSrc":"252:5:125","nodeType":"YulIdentifier","src":"252:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"267:3:125","nodeType":"YulLiteral","src":"267:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"272:1:125","nodeType":"YulLiteral","src":"272:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"263:3:125","nodeType":"YulIdentifier","src":"263:3:125"},"nativeSrc":"263:11:125","nodeType":"YulFunctionCall","src":"263:11:125"},{"kind":"number","nativeSrc":"276:1:125","nodeType":"YulLiteral","src":"276:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"259:3:125","nodeType":"YulIdentifier","src":"259:3:125"},"nativeSrc":"259:19:125","nodeType":"YulFunctionCall","src":"259:19:125"}],"functionName":{"name":"and","nativeSrc":"248:3:125","nodeType":"YulIdentifier","src":"248:3:125"},"nativeSrc":"248:31:125","nodeType":"YulFunctionCall","src":"248:31:125"}],"functionName":{"name":"eq","nativeSrc":"238:2:125","nodeType":"YulIdentifier","src":"238:2:125"},"nativeSrc":"238:42:125","nodeType":"YulFunctionCall","src":"238:42:125"}],"functionName":{"name":"iszero","nativeSrc":"231:6:125","nodeType":"YulIdentifier","src":"231:6:125"},"nativeSrc":"231:50:125","nodeType":"YulFunctionCall","src":"231:50:125"},"nativeSrc":"228:70:125","nodeType":"YulIf","src":"228:70:125"},{"nativeSrc":"307:15:125","nodeType":"YulAssignment","src":"307:15:125","value":{"name":"value","nativeSrc":"317:5:125","nodeType":"YulIdentifier","src":"317:5:125"},"variableNames":[{"name":"value0","nativeSrc":"307:6:125","nodeType":"YulIdentifier","src":"307:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory","nativeSrc":"14:314:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"85:9:125","nodeType":"YulTypedName","src":"85:9:125","type":""},{"name":"dataEnd","nativeSrc":"96:7:125","nodeType":"YulTypedName","src":"96:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"108:6:125","nodeType":"YulTypedName","src":"108:6:125","type":""}],"src":"14:314:125"},{"body":{"nativeSrc":"432:101:125","nodeType":"YulBlock","src":"432:101:125","statements":[{"nativeSrc":"442:26:125","nodeType":"YulAssignment","src":"442:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"454:9:125","nodeType":"YulIdentifier","src":"454:9:125"},{"kind":"number","nativeSrc":"465:2:125","nodeType":"YulLiteral","src":"465:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"450:3:125","nodeType":"YulIdentifier","src":"450:3:125"},"nativeSrc":"450:18:125","nodeType":"YulFunctionCall","src":"450:18:125"},"variableNames":[{"name":"tail","nativeSrc":"442:4:125","nodeType":"YulIdentifier","src":"442:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"484:9:125","nodeType":"YulIdentifier","src":"484:9:125"},{"arguments":[{"name":"value0","nativeSrc":"499:6:125","nodeType":"YulIdentifier","src":"499:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"515:2:125","nodeType":"YulLiteral","src":"515:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"519:1:125","nodeType":"YulLiteral","src":"519:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"511:3:125","nodeType":"YulIdentifier","src":"511:3:125"},"nativeSrc":"511:10:125","nodeType":"YulFunctionCall","src":"511:10:125"},{"kind":"number","nativeSrc":"523:1:125","nodeType":"YulLiteral","src":"523:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"507:3:125","nodeType":"YulIdentifier","src":"507:3:125"},"nativeSrc":"507:18:125","nodeType":"YulFunctionCall","src":"507:18:125"}],"functionName":{"name":"and","nativeSrc":"495:3:125","nodeType":"YulIdentifier","src":"495:3:125"},"nativeSrc":"495:31:125","nodeType":"YulFunctionCall","src":"495:31:125"}],"functionName":{"name":"mstore","nativeSrc":"477:6:125","nodeType":"YulIdentifier","src":"477:6:125"},"nativeSrc":"477:50:125","nodeType":"YulFunctionCall","src":"477:50:125"},"nativeSrc":"477:50:125","nodeType":"YulExpressionStatement","src":"477:50:125"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"333:200:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"401:9:125","nodeType":"YulTypedName","src":"401:9:125","type":""},{"name":"value0","nativeSrc":"412:6:125","nodeType":"YulTypedName","src":"412:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"423:4:125","nodeType":"YulTypedName","src":"423:4:125","type":""}],"src":"333:200:125"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$24925_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_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}","id":125,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60c060405230608052348015610013575f5ffd5b5060405161541f38038061541f83398101604081905261003291610124565b6001600160a01b0381166100595760405163559a03cd60e01b815260040160405180910390fd5b610061610072565b6001600160a01b031660a052610151565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100c25760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101215780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b5f60208284031215610134575f5ffd5b81516001600160a01b038116811461014a575f5ffd5b9392505050565b60805160a0516152606101bf5f395f818161075001528181610bb801528181610c6701528181610cb001528181610cef01528181610e19015281816124b701528181612bf201528181612e0f015261375801525f8181612b5301528181612b7c0152612d6801526152605ff3fe60806040526004361061023e575f3560e01c80636f86c89711610134578063ad3cb1cc116100b3578063dfcd412e11610078578063dfcd412e14610723578063e5a6b10f14610742578063e985e9c514610774578063f0f4426014610793578063f45346dc146107b2578063f720bbbf146107d1575f5ffd5b8063ad3cb1cc14610677578063b88d4fde146106a7578063bd644c56146106c6578063c87b56dd146106e5578063de27010a14610704575f5ffd5b806395d89b41116100f957806395d89b411461059b5780639760905e146105af5780639e2d8922146105ce578063a22cb4651461062c578063ac9650d81461064b575f5ffd5b80636f86c897146104f157806370a0823114610510578063792da09e1461052f57806382afd23b1461055a5780638456cb5914610587575f5ffd5b80634f1ef286116101c057806361d027b31161018557806361d027b3146104595780636352211e14610475578063663d8337146104945780636b8734e7146104b35780636f520b73146104d2575f5ffd5b80634f1ef286146103d157806352d1902d146103e457806355f804b3146103f85780635c975abb146104175780635fcbf4451461043a575f5ffd5b80630d100acb116102065780630d100acb1461030e57806323b872dd1461033b57806333d6157a1461035a5780633f4ba83a1461039e57806342842e0e146103b2575f5ffd5b806301ffc9a71461024257806306fdde0314610276578063077f224a14610297578063081812fc146102b8578063095ea7b3146102ef575b5f5ffd5b34801561024d575f5ffd5b5061026161025c36600461426b565b6107f0565b60405190151581526020015b60405180910390f35b348015610281575f5ffd5b5061028a61081b565b60405161026d91906142b4565b3480156102a2575f5ffd5b506102b66102b13660046143a6565b6108bc565b005b3480156102c3575f5ffd5b506102d76102d236600461441c565b610a08565b6040516001600160a01b03909116815260200161026d565b3480156102fa575f5ffd5b506102b6610309366004614433565b610a1c565b348015610319575f5ffd5b5061032d610328366004614533565b610a2b565b60405190815260200161026d565b348015610346575f5ffd5b506102b661035536600461458d565b610e90565b348015610365575f5ffd5b506103916103743660046145cb565b6001600160a01b03165f9081526001602052604090205460ff1690565b60405161026d9190614616565b3480156103a9575f5ffd5b506102b6610f19565b3480156103bd575f5ffd5b506102b66103cc36600461458d565b610f23565b6102b66103df366004614629565b610f42565b3480156103ef575f5ffd5b5061032d610f5d565b348015610403575f5ffd5b506102b6610412366004614675565b610f78565b348015610422575f5ffd5b505f51602061520b5f395f51905f525460ff16610261565b348015610445575f5ffd5b506102b66104543660046146ed565b610fc1565b348015610464575f5ffd5b505f546001600160a01b03166102d7565b348015610480575f5ffd5b506102d761048f36600461441c565b6110b4565b34801561049f575f5ffd5b5061032d6104ae366004614735565b6110be565b3480156104be575f5ffd5b506102b66104cd3660046146ed565b6115c4565b3480156104dd575f5ffd5b506102b66104ec366004614783565b611a9f565b3480156104fc575f5ffd5b506102b661050b3660046145cb565b611cec565b34801561051b575f5ffd5b5061032d61052a3660046145cb565b61219a565b34801561053a575f5ffd5b5061032d61054936600461441c565b5f9081526002602052604090205490565b348015610565575f5ffd5b5061026161057436600461441c565b5f90815260026020526040902054151590565b348015610592575f5ffd5b506102b66121f2565b3480156105a6575f5ffd5b5061028a6121fa565b3480156105ba575f5ffd5b506102b66105c9366004614433565b612238565b3480156105d9575f5ffd5b506106176105e83660046145cb565b6001600160a01b03165f908152600460205260409020546001600160801b0380821692600160801b9092041690565b6040805192835260208301919091520161026d565b348015610637575f5ffd5b506102b66106463660046147cb565b612317565b348015610656575f5ffd5b5061066a6106653660046147f7565b612322565b60405161026d9190614856565b348015610682575f5ffd5b5061028a604051806040016040528060058152602001640352e302e360dc1b81525081565b3480156106b2575f5ffd5b506102b66106c13660046148b9565b612407565b3480156106d1575f5ffd5b506102b66106e0366004614920565b61241f565b3480156106f0575f5ffd5b5061028a6106ff36600461441c565b612440565b34801561070f575f5ffd5b506102b661071e36600461494b565b6124a5565b34801561072e575f5ffd5b5061032d61073d3660046149bc565b612563565b34801561074d575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000006102d7565b34801561077f575f5ffd5b5061026161078e366004614a0c565b61269a565b34801561079e575f5ffd5b506102b66107ad3660046145cb565b6126e6565b3480156107bd575f5ffd5b506102b66107cc366004614a38565b6126f2565b3480156107dc575f5ffd5b506102b66107eb366004614a6c565b612705565b5f6107fa8261278a565b8061081557506001600160e01b0319821663c476978760e01b145b92915050565b5f5160206151cb5f395f51905f52805460609190819061083a90614a87565b80601f016020809104026020016040519081016040528092919081815260200182805461086690614a87565b80156108b15780601f10610888576101008083540402835291602001916108b1565b820191905f5260205f20905b81548152906001019060200180831161089457829003601f168201915b505050505091505090565b5f6108c56127d9565b805490915060ff600160401b82041615906001600160401b03165f811580156108eb5750825b90505f826001600160401b031660011480156109065750303b155b905081158015610914575080155b156109325760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561095c57845460ff60401b1916600160401b1785555b87515f0361097c57604051620beefb60e01b815260040160405180910390fd5b86515f0361099d576040516343b47bcb60e01b815260040160405180910390fd5b6109a78888612801565b6109af612813565b6109b88661281b565b83156109fe57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b5f610a1282612823565b506108158261285a565b610a27828233612893565b5050565b5f610a346128a0565b33610a408160026128d0565b5f816001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a7d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa19190614ab9565b9050610aae8160036128d0565b610ab8828561290b565b80885264ffffffffff42166101408901525f9081526002602052604090205487519015610b04576040516315e46fbb60e01b8152600401610afb91815260200190565b60405180910390fd5b50610b0e87612937565b87515f9081526002602090815260408083209390935589518351918201909352908152610b3c918791612989565b610b4c82600189602001516129a0565b60405163f79ac18360e01b81526001600160a01b0382169063f79ac18390610b78908a90600401614b6b565b5f604051808303815f87803b158015610b8f575f5ffd5b505af1158015610ba1573d5f5f3e3d5ffd5b50505060a0880151610be291506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169088908490612a97565b5f5f826001600160a01b0316635e4458596040518163ffffffff1660e01b81526004016040805180830381865afa158015610c1f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c439190614b7a565b6101208b0151919350915015610c9157610120890151610c91906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016908a908490612a97565b61010089015115610cda57610100890151610cda906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016908a908590612a97565b5f5460c08a0151610d1d916001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116928c929190911690612a97565b5f8960e00151118015610da15750836001600160a01b031663521eb2736040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d67573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d8b9190614ab9565b6001600160a01b0316886001600160a01b031614155b15610e4157610e4188856001600160a01b031663521eb2736040518163ffffffff1660e01b8152600401602060405180830381865afa158015610de6573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e0a9190614ab9565b60e08c01516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016929190612a97565b836001600160a01b03167f988ac1a1c4820f963124b6fa0394627ad4fa3de7583a76399b998c1d7e43af3f8a604051610e7a9190614b6b565b60405180910390a2505095519695505050505050565b6001600160a01b038216610eb957604051633250574960e11b81525f6004820152602401610afb565b5f610ec5838333612acd565b9050836001600160a01b0316816001600160a01b031614610f13576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610afb565b50505050565b610f21612ae9565b565b610f3d83838360405180602001604052805f815250612407565b505050565b610f4a612b48565b610f5382612bec565b610a278282612ca1565b5f610f66612d5d565b505f5160206151eb5f395f51905f5290565b7fc41b7cb64e5be01af4afc2641afc861432136270f4206b7773f229b658b9669960038383604051610fac93929190614bcf565b60405180910390a16003610f3d828483614caf565b6001600160a01b0382165f90815260016020526040812090815460ff166003811115610fef57610fef6145e6565b0361100d57604051637d91856360e01b815260040160405180910390fd5b5f826003811115611020576110206145e6565b0361103e576040516332b409a160e01b815260040160405180910390fd5b80548290829060ff1916600183600381111561105c5761105c6145e6565b021790555080546040516001600160a01b038516917ffe4c6998a06520b63340a48710b374432cb395da90e4e5360e1ec7aeefebecef916110a791610100900460ff16908690614d68565b60405180910390a2505050565b5f61081582612823565b5f6110c76128a0565b6110de6110d936879003870187614d8e565b612da6565b33853560601c811461110357604051634ace04f960e01b815260040160405180910390fd5b61110e8160026128d0565b5f816001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561114b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061116f9190614ab9565b905061117c8160036128d0565b64ffffffffff421661119661018089016101608a01614da9565b64ffffffffff161180156111bd57504264ffffffffff1686610160015164ffffffffff1610155b8735906111e057604051630422552f60e11b8152600401610afb91815260200190565b5085610140015164ffffffffff16876101400160208101906112029190614da9565b64ffffffffff1614801561121e57508560a001518760a0013511155b801561123257508560c001518760c0013511155b8015611248575085610100015187610100013511155b801561125e575085610120015187610120013511155b801561127257508560e001518760e0013511155b87879091611295576040516301ff548560e61b8152600401610afb929190614e5c565b50506112a1828561290b565b8087525f90815260026020526040902054865190156112d6576040516315e46fbb60e01b8152600401610afb91815260200190565b506112e086612937565b86515f908152600260205260408120919091556112fd88356110b4565b905061131b81885f015160405180602001604052805f815250612989565b87602001358760200151111561134f5761134a8360018a602001358a602001516113459190614e8d565b6129a0565b611368565b611368835f89602001518b602001356113459190614e8d565b87355f908152600260205260408082209190915551636ae360b360e11b81526001600160a01b0383169063d5c6c166906113a8908b908b90600401614e5c565b5f604051808303815f87803b1580156113bf575f5ffd5b505af11580156113d1573d5f5f3e3d5ffd5b505050506113e986838960a001518b60a00135612def565b5f5f836001600160a01b0316635e4458596040518163ffffffff1660e01b81526004016040805180830381865afa158015611426573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061144a9190614b7a565b9150915061146488828b61012001518d6101200135612def565b61147a88838b61010001518d6101000135612def565b5f5460c0808b015161149d928b926001600160a01b0390911691908e0135612def565b5f856001600160a01b031663521eb2736040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114da573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114fe9190614ab9565b9050806001600160a01b0316896001600160a01b03161461152d5761152d89828c60e001518e60e00135612def565b856001600160a01b03167f988ac1a1c4820f963124b6fa0394627ad4fa3de7583a76399b998c1d7e43af3f8b6040516115669190614b6b565b60405180910390a289516040518c35906001600160a01b038916907f4ff4ac703cb703b7ea535d47e65e64b4cabf11b3e2eb41f152dab17971953add905f90a489516115b4908c3590612e3e565b5050965198975050505050505050565b6001600160a01b0382165f90815260016020526040812090815460ff1660038111156115f2576115f26145e6565b146116105760405163cf9a96f360e01b815260040160405180910390fd5b306001600160a01b0316836001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015611656573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061167a9190614ab9565b6001600160a01b0316146116a157604051630fdee24360e11b815260040160405180910390fd5b60018260038111156116b5576116b56145e6565b14801561173157506040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906116f090636d5136b160e11b90600401614ea0565b602060405180830381865afa15801561170b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061172f9190614eb5565b155b806117c75750600382600381111561174b5761174b6145e6565b1480156117c757506040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906117869063f7e4b01b60e01b90600401614ea0565b602060405180830381865afa1580156117a1573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117c59190614eb5565b155b8061185d575060028260038111156117e1576117e16145e6565b14801561185d57506040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061181c906321b7e09b60e01b90600401614ea0565b602060405180830381865afa158015611837573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061185b9190614eb5565b155b1561187f57828260405163502c9a5f60e01b8152600401610afb929190614ed0565b8054600160ff198216811783558391839161ffff19909116176101008360038111156118ad576118ad6145e6565b021790555060038260038111156118c6576118c66145e6565b03611a63575f8390505f816001600160a01b031663536ebbfc6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561190c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119309190614ab9565b90506001600160a01b03811615611998576040516338ea38a760e21b81526001600160a01b03838116600483015282169063e3a8e29c906024015f604051808303815f87803b158015611981575f5ffd5b505af1158015611993573d5f5f3e3d5ffd5b505050505b816001600160a01b0316637b83037b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119d4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119f89190614ab9565b90506001600160a01b03811615611a60576040516338ea38a760e21b81526001600160a01b03838116600483015282169063e3a8e29c906024015f604051808303815f87803b158015611a49575f5ffd5b505af1158015611a5b573d5f5f3e3d5ffd5b505050505b50505b826001600160a01b03167ffe4c6998a06520b63340a48710b374432cb395da90e4e5360e1ec7aeefebecef8360016040516110a7929190614d68565b611aa76128a0565b611ab96110d936869003860186614d8e565b33843560601c8114611ade57604051634ace04f960e01b815260040160405180910390fd5b611ae9816002612f25565b5f816001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b26573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b4a9190614ab9565b9050611b57816003612f25565b64ffffffffff4216611b7161018088016101608901614da9565b64ffffffffff1611865f013590611b9e57604051630422552f60e11b8152600401610afb91815260200190565b508560a001358511158015611bb857508561010001358411155b8015611bc957508561012001358311155b8686868690919293611bf25760405163a02db78360e01b8152600401610afb9493929190614ee9565b505050505f611c03875f01356110b4565b9050611c14835f89602001356129a0565b86355f90815260026020526040808220919091555163770fcd3560e11b81526001600160a01b0383169063ee1f9a6a90611c5a908a908a908a908a908890600401614f16565b5f604051808303815f87803b158015611c71575f5ffd5b505af1158015611c83573d5f5f3e3d5ffd5b50506040805189815260208101899052908101879052893592506001600160a01b03861691507f825c3ee6eecaa4b0dc3573e9732b65613d705cadfc4ba69cc76cb7d9227e59719060600160405180910390a3611ce38735878787612f84565b50505050505050565b6001600160a01b0381165f9081526001602052604090206002815460ff166003811115611d1b57611d1b6145e6565b14611d3957604051635c92b23960e11b815260040160405180910390fd5b60018154610100900460ff166003811115611d5657611d566145e6565b03611e5157816001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d97573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dbb9190614f55565b15611e4c57805f0160019054906101000a900460ff16826001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e0d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e319190614f55565b604051631d0ec0ab60e01b8152600401610afb929190614f6c565b61212a565b60028154610100900460ff166003811115611e6e57611e6e6145e6565b03611ee0576001600160a01b0382165f908152600460205260409020546001600160801b031615611e4c5780546001600160a01b0383165f90815260046020819052604091829020549151631d0ec0ab60e01b8152610afb93610100900460ff16926001600160801b03169101614f83565b5f829050806001600160a01b03166326ccbd226040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f20573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f449190614f55565b15611f9657815f0160019054906101000a900460ff16816001600160a01b03166326ccbd226040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e0d573d5f5f3e3d5ffd5b5f816001600160a01b031663536ebbfc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fd3573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ff79190614ab9565b90506001600160a01b0381161561205f576040516376c7fc5560e01b81526001600160a01b0383811660048301528216906376c7fc55906024015f604051808303815f87803b158015612048575f5ffd5b505af115801561205a573d5f5f3e3d5ffd5b505050505b816001600160a01b0316637b83037b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561209b573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120bf9190614ab9565b90506001600160a01b03811615612127576040516376c7fc5560e01b81526001600160a01b0383811660048301528216906376c7fc55906024015f604051808303815f87803b158015612110575f5ffd5b505af1158015612122573d5f5f3e3d5ffd5b505050505b50505b80546040516001600160a01b038416917ffe4c6998a06520b63340a48710b374432cb395da90e4e5360e1ec7aeefebecef9161217091610100900460ff16905f90614d68565b60405180910390a2506001600160a01b03165f908152600160205260409020805461ffff19169055565b5f5f5160206151cb5f395f51905f526001600160a01b0383166121d2576040516322718ad960e21b81525f6004820152602401610afb565b6001600160a01b039092165f908152600390920160205250604090205490565b610f21613082565b7f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930180546060915f5160206151cb5f395f51905f529161083a90614a87565b6001600160a01b0382165f90815260046020526040812090612259836130ca565b82549091506001600160801b0390811690829081168211156122a157604051630ce06d1360e31b81526001600160801b03928316600482015291166024820152604401610afb565b5050815460408051600160801b9092046001600160801b039081168352831660208301526001600160a01b038616917f7e1092696182a6d6922c9583db468951527f21f67f9f2f4911ed3f7bbf02b330910160405180910390a281546001600160801b03918216600160801b0291161790555050565b610a27338383613101565b604080515f815260208101909152606090826001600160401b0381111561234b5761234b6142c6565b60405190808252806020026020018201604052801561237e57816020015b60608152602001906001900390816123695790505b5091505f5b838110156123ff576123da308686848181106123a1576123a1614fa8565b90506020028101906123b39190614fbc565b856040516020016123c69392919061501c565b6040516020818303038152906040526131b0565b8382815181106123ec576123ec614fa8565b6020908102919091010152600101612383565b505092915050565b612412848484610e90565b610f133385858585613250565b6124276128a0565b610a2761243936849003840184614d8e565b825f61336f565b606061244b82612823565b505f6124556135f4565b90505f8151116124735760405180602001604052805f81525061249e565b8061247d84613684565b60405160200161248e929190615031565b6040516020818303038152906040525b9392505050565b6124ad6128a0565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663d505accf336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604481018990526064810187905260ff8616608482015260a4810185905260c4810184905260e4015f604051808303815f87803b158015612546575f5ffd5b505af1925050508015612557575060015b50611ce3878787613713565b5f61256c6128a0565b826001600160a01b0381166125a057604051639cfea58360e01b81526001600160a01b039091166004820152602401610afb565b506125ac856001612f25565b6001600160a01b0385166323e103a885336040516001600160e01b031960e085901b16815260048101929092526001600160a01b0390811660248301528086166044830152861660648201526084016020604051808303815f875af1158015612617573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061263b9190614f55565b90506001600160a01b03831633604080516001600160a01b03868116825260208201869052928316928916917fe826ecb5c03d4897f8ab426ee94064e06179dff39cd9fdd0776904cd935c95d8910160405180910390a4949350505050565b6001600160a01b039182165f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab00793056020908152604080832093909416825291909152205460ff1690565b6126ef8161385e565b50565b6126fa6128a0565b610f3d838383613713565b61270d6128a0565b4261272061018083016101608401614da9565b64ffffffffff16111561277057803561274161018083016101608401614da9565b60405163312bfdd760e11b8152600481019290925264ffffffffff166024820152426044820152606401610afb565b6126ef61278236839003830183614d8e565b5f600161336f565b5f6001600160e01b031982166380ac58cd60e01b14806127ba57506001600160e01b03198216635b5e139f60e01b145b8061081557506301ffc9a760e01b6001600160e01b0319831614610815565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610815565b6128096138ec565b610a278282613911565b610f216138ec565b6126e66138ec565b5f5f61282e83613941565b90506001600160a01b03811661081557604051637e27328960e01b815260048101849052602401610afb565b5f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930460205260409020546001600160a01b031690565b610f3d838383600161397a565b5f51602061520b5f395f51905f525460ff1615610f215760405163d93c066560e01b815260040160405180910390fd5b60016128dc8383613a8d565b60038111156128ed576128ed6145e6565b14610a2757604051630422f25f60e01b815260040160405180910390fd5b5f61249e6bffffffffffffffffffffffff83166bffffffffffffffffffffffff19606086901b16615045565b5f816040516020016129499190614b6b565b60408051601f1981840301815291905280516020909101209050818161298357604051636ee9f64760e01b8152600401610afb9190614b6b565b50919050565b6129938383613afe565b610f3d335f858585613250565b6001600160a01b0383165f9081526004602052604090208215612a4a576129c6826130ca565b815482905f906129e09084906001600160801b0316615058565b82546101009290920a6001600160801b0381810219909316918316021790915582548082169250600160801b90041680821115612a4357604051630ce06d1360e31b81526001600160801b03928316600482015291166024820152604401610afb565b5050610f13565b612a53826130ca565b815482905f90612a6d9084906001600160801b0316615077565b92506101000a8154816001600160801b0302191690836001600160801b0316021790555050505050565b612aa5848484846001613b5f565b610f1357604051635274afe760e01b81526001600160a01b0385166004820152602401610afb565b5f612ad66128a0565b612ae1848484613bcc565b949350505050565b612af1613cce565b5f51602061520b5f395f51905f52805460ff191681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a150565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480612bce57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316612bc25f5160206151eb5f395f51905f52546001600160a01b031690565b6001600160a01b031614155b15610f215760405163703e46dd60e11b815260040160405180910390fd5b5f8190507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c56573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c7a9190614ab9565b6001600160a01b031614610a27576040516324a41b4360e11b815260040160405180910390fd5b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015612cfb575060408051601f3d908101601f19168201909252612cf891810190614f55565b60015b612d2357604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610afb565b5f5160206151eb5f395f51905f528114612d5357604051632a87526960e21b815260048101829052602401610afb565b610f3d8383613cfd565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f215760405163703e46dd60e11b815260040160405180910390fd5b805115801590612dcc575080515f90815260026020526040902054612dca82612937565b145b815190610a27576040516321df5fa560e11b8152600401610afb91815260200190565b5f612dfa8284614e8d565b90508015612e3757612e376001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016868684612a97565b5050505050565b5f612e48836110b4565b9050612e5b81630162fc8560e11b613d52565b612e6457505050565b5f6001600160a01b038216635ee0c7dd336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101879052606481018690526084016020604051808303815f875af1158015612ecc573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ef09190615096565b90506001600160e01b03198116635ee0c7dd60e01b14610f1357806040516381784a5160e01b8152600401610afb9190614ea0565b5f612f308383613a8d565b90506001816003811115612f4657612f466145e6565b14158015612f6657506002816003811115612f6357612f636145e6565b14155b15610f3d5760405163d08ef1ff60e01b815260040160405180910390fd5b5f612f8e856110b4565b9050612fa181630162fc8560e11b613d52565b612fab5750610f13565b5f6001600160a01b0382166362eb345e336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101899052606481018890526084810187905260a4810186905260c4016020604051808303815f875af1158015613021573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130459190615096565b90506001600160e01b031981166331759a2f60e11b1461307a57806040516381784a5160e01b8152600401610afb9190614ea0565b505050505050565b61308a6128a0565b5f51602061520b5f395f51905f52805460ff191660011781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833612b2a565b5f6001600160801b038211156130fd576040516306dfcc6560e41b81526080600482015260248101839052604401610afb565b5090565b5f5160206151cb5f395f51905f526001600160a01b03831661314157604051630b61174360e31b81526001600160a01b0384166004820152602401610afb565b6001600160a01b038481165f818152600584016020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a350505050565b60605f6131bd8484613d6d565b90508080156131de57505f3d11806131de57505f846001600160a01b03163b115b156131f3576131eb613d80565b915050610815565b801561321d57604051639996b31560e01b81526001600160a01b0385166004820152602401610afb565b3d156132305761322b613d99565b613249565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b6001600160a01b0383163b15612e3757604051630a85bd0160e11b81526001600160a01b0384169063150b7a02906132929088908890879087906004016150b1565b6020604051808303815f875af19250505080156132cc575060408051601f3d908101601f191682019092526132c991810190615096565b60015b613333573d8080156132f9576040519150601f19603f3d011682016040523d82523d5f602084013e6132fe565b606091505b5080515f0361332b57604051633250574960e11b81526001600160a01b0385166004820152602401610afb565b805160208201fd5b6001600160e01b03198116630a85bd0160e11b1461307a57604051633250574960e11b81526001600160a01b0385166004820152602401610afb565b61337883612da6565b825160601c8115801561339457506001600160a01b0381163314155b156133b257604051634ace04f960e01b815260040160405180910390fd5b8215806133ca57504284610160015164ffffffffff16115b8451906133ed57604051630422552f60e11b8152600401610afb91815260200190565b506133f9816002612f25565b602084015183908082111561342a576040516317d3b4f960e01b815260048101929092526024820152604401610afb565b50505f5f841190505f826001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561346f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134939190614ab9565b90506134a0816003612f25565b85515f908152600260205260408120558115613529575f6134c3875f01516110b4565b604051631dda289960e01b81529091506001600160a01b03831690631dda2899906134f69084908b908b906004016150e3565b5f604051808303815f87803b15801561350d575f5ffd5b505af115801561351f573d5f5f3e3d5ffd5b5050505050613583565b6040516376185ff160e01b81526001600160a01b038216906376185ff190613555908990600401614b6b565b5f604051808303815f87803b15801561356c575f5ffd5b505af115801561357e573d5f5f3e3d5ffd5b505050505b613592835f88602001516129a0565b85516040518681526001600160a01b038516907f54f4a270ea08f88dc23b2520d6b063fecb24d956c4496f447926d736338f545e9060200160405180910390a384156135e95785516135e49086613da4565b61307a565b855161307a90613e8b565b60606003805461360390614a87565b80601f016020809104026020016040519081016040528092919081815260200182805461362f90614a87565b801561367a5780601f106136515761010080835404028352916020019161367a565b820191905f5260205f20905b81548152906001019060200180831161365d57829003601f168201915b5050505050905090565b60605f61369083613f79565b60010190505f816001600160401b038111156136ae576136ae6142c6565b6040519080825280601f01601f1916602001820160405280156136d8576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846136e257509392505050565b806001600160a01b03811661374757604051639cfea58360e01b81526001600160a01b039091166004820152602401610afb565b506137538360016128d0565b6137887f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316338585612a97565b6001600160a01b038316632e2d298483336040516001600160e01b031960e085901b16815260048101929092526001600160a01b039081166024830152841660448201526064015f604051808303815f87803b1580156137e6575f5ffd5b505af11580156137f8573d5f5f3e3d5ffd5b50505050806001600160a01b031661380d3390565b6001600160a01b0316846001600160a01b03167f7cfff908a4b583f36430b25d75964c458d8ede8a99bd61be750e97ee1b2f3a968560405161385191815260200190565b60405180910390a4505050565b6001600160a01b038116613885576040516307a2ee8b60e11b815260040160405180910390fd5b5f54604080516001600160a01b03928316815291831660208301527f8c3aa5f43a388513435861bf27dfad7829cd248696fed367c62d441f62954496910160405180910390a15f80546001600160a01b0319166001600160a01b0392909216919091179055565b6138f4614050565b610f2157604051631afcd79f60e31b815260040160405180910390fd5b6139196138ec565b5f5160206151cb5f395f51905f52806139328482615110565b5060018101610f138382615110565b5f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930260205260409020546001600160a01b031690565b5f5160206151cb5f395f51905f52818061399c57506001600160a01b03831615155b15613a5d575f6139ab85612823565b90506001600160a01b038416158015906139d75750836001600160a01b0316816001600160a01b031614155b80156139ea57506139e8818561269a565b155b15613a135760405163a9fbf51f60e01b81526001600160a01b0385166004820152602401610afb565b8215613a5b5784866001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5f93845260040160205250506040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382165f908152600160205260408120826003811115613ab657613ab66145e6565b8154610100900460ff166003811115613ad157613ad16145e6565b14613af357838360405163502c9a5f60e01b8152600401610afb929190614ed0565b5460ff169392505050565b6001600160a01b038216613b2757604051633250574960e11b81525f6004820152602401610afb565b5f613b3383835f612acd565b90506001600160a01b03811615610f3d576040516339e3563760e11b81525f6004820152602401610afb565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f51148316613bbb578383151615613baf573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b5f5f5160206151cb5f395f51905f5281613be585613941565b90506001600160a01b03841615613c0157613c01818587614069565b6001600160a01b03811615613c3d57613c1c5f865f5f61397a565b6001600160a01b0381165f908152600383016020526040902080545f190190555b6001600160a01b03861615613c6d576001600160a01b0386165f9081526003830160205260409020805460010190555b5f85815260028301602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a495945050505050565b5f51602061520b5f395f51905f525460ff16610f2157604051638dfc202b60e01b815260040160405180910390fd5b613d06826140cd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115613d4a57610f3d82826131b0565b610a27614130565b5f613d5c8361414f565b801561249e575061249e838361419a565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f613dae836110b4565b9050613dc181630162fc8560e11b613d52565b613dca57505050565b5f6001600160a01b03821663d6281d3e336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101879052606481018690526084016020604051808303815f875af1158015613e32573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e569190615096565b90506001600160e01b03198116636b140e9f60e11b14610f1357806040516381784a5160e01b8152600401610afb9190614ea0565b5f613e95826110b4565b9050613ea881630162fc8560e11b613d52565b613eb0575050565b6001600160a01b03811663e8e617b7620249f0336040516001600160e01b031960e085901b1681526001600160a01b039091166004820152306024820152604481018690526064016020604051808303815f8887f193505050508015613f33575060408051601f3d908101601f19168201909252613f3091810190615096565b60015b610f3d576040516001600160a01b038216815282907f6ce8016f81523f240956bca9a698e643d09e84e7d0e931470b1016baf1027bd09060200160405180910390a25050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310613fb75772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310613fe3576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061400157662386f26fc10000830492506010015b6305f5e1008310614019576305f5e100830492506008015b612710831061402d57612710830492506004015b6064831061403f576064830492506002015b600a83106108155760010192915050565b5f6140596127d9565b54600160401b900460ff16919050565b6140748383836141be565b610f3d576001600160a01b0383166140a257604051637e27328960e01b815260048101829052602401610afb565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610afb565b806001600160a01b03163b5f0361410257604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610afb565b5f5160206151eb5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b3415610f215760405163b398979f60e01b815260040160405180910390fd5b5f614161826301ffc9a760e01b61419a565b1561418e575f8061417a846001600160e01b0319614222565b91509150818015612ae15750159392505050565b505f919050565b919050565b5f5f5f6141a78585614222565b915091508180156141b55750805b95945050505050565b5f6001600160a01b03831615801590612ae15750826001600160a01b0316846001600160a01b031614806141f757506141f7848461269a565b80612ae15750826001600160a01b03166142108361285a565b6001600160a01b031614949350505050565b6301ffc9a760e01b5f818152600483905290819060208260248188617530fa92505f511515601f3d11169150509250929050565b6001600160e01b0319811681146126ef575f5ffd5b5f6020828403121561427b575f5ffd5b813561249e81614256565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61249e6020830184614286565b634e487b7160e01b5f52604160045260245ffd5b60405161018081016001600160401b03811182821017156142fd576142fd6142c6565b60405290565b5f82601f830112614312575f5ffd5b8135602083015f5f6001600160401b03841115614331576143316142c6565b50604051601f19601f85018116603f011681018181106001600160401b038211171561435f5761435f6142c6565b604052838152905080828401871015614376575f5ffd5b838360208301375f602085830101528094505050505092915050565b6001600160a01b03811681146126ef575f5ffd5b5f5f5f606084860312156143b8575f5ffd5b83356001600160401b038111156143cd575f5ffd5b6143d986828701614303565b93505060208401356001600160401b038111156143f4575f5ffd5b61440086828701614303565b925050604084013561441181614392565b809150509250925092565b5f6020828403121561442c575f5ffd5b5035919050565b5f5f60408385031215614444575f5ffd5b823561444f81614392565b946020939093013593505050565b803564ffffffffff81168114614195575f5ffd5b5f6101808284031215614482575f5ffd5b61448a6142da565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e080840135908201526101008084013590820152610120808401359082015290506144f9610140830161445d565b61014082015261450c610160830161445d565b61016082015292915050565b80356bffffffffffffffffffffffff81168114614195575f5ffd5b5f5f5f5f6101e08587031215614547575f5ffd5b6145518686614471565b935061018085013561456281614392565b92506101a085013561457381614392565b91506145826101c08601614518565b905092959194509250565b5f5f5f6060848603121561459f575f5ffd5b83356145aa81614392565b925060208401356145ba81614392565b929592945050506040919091013590565b5f602082840312156145db575f5ffd5b813561249e81614392565b634e487b7160e01b5f52602160045260245ffd5b600481106126ef57634e487b7160e01b5f52602160045260245ffd5b60208101614623836145fa565b91905290565b5f5f6040838503121561463a575f5ffd5b823561464581614392565b915060208301356001600160401b0381111561465f575f5ffd5b61466b85828601614303565b9150509250929050565b5f5f60208385031215614686575f5ffd5b82356001600160401b0381111561469b575f5ffd5b8301601f810185136146ab575f5ffd5b80356001600160401b038111156146c0575f5ffd5b8560208284010111156146d1575f5ffd5b6020919091019590945092505050565b600481106126ef575f5ffd5b5f5f604083850312156146fe575f5ffd5b823561470981614392565b91506020830135614719816146e1565b809150509250929050565b5f6101808284031215612983575f5ffd5b5f5f5f5f6103408587031215614749575f5ffd5b6147538686614724565b9350614763866101808701614471565b925061030085013561477481614392565b91506145826103208601614518565b5f5f5f5f6101e08587031215614797575f5ffd5b6147a18686614724565b9661018086013596506101a0860135956101c00135945092505050565b80151581146126ef575f5ffd5b5f5f604083850312156147dc575f5ffd5b82356147e781614392565b91506020830135614719816147be565b5f5f60208385031215614808575f5ffd5b82356001600160401b0381111561481d575f5ffd5b8301601f8101851361482d575f5ffd5b80356001600160401b03811115614842575f5ffd5b8560208260051b84010111156146d1575f5ffd5b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b828110156148ad57603f19878603018452614898858351614286565b9450602093840193919091019060010161487c565b50929695505050505050565b5f5f5f5f608085870312156148cc575f5ffd5b84356148d781614392565b935060208501356148e781614392565b92506040850135915060608501356001600160401b03811115614908575f5ffd5b61491487828801614303565b91505092959194509250565b5f5f6101a08385031215614932575f5ffd5b61493c8484614724565b94610180939093013593505050565b5f5f5f5f5f5f5f60e0888a031215614961575f5ffd5b873561496c81614392565b965060208801359550604088013561498381614392565b945060608801359350608088013560ff8116811461499f575f5ffd5b9699959850939692959460a0840135945060c09093013592915050565b5f5f5f5f608085870312156149cf575f5ffd5b84356149da81614392565b93506020850135925060408501356149f181614392565b91506060850135614a0181614392565b939692955090935050565b5f5f60408385031215614a1d575f5ffd5b8235614a2881614392565b9150602083013561471981614392565b5f5f5f60608486031215614a4a575f5ffd5b8335614a5581614392565b925060208401359150604084013561441181614392565b5f6101808284031215614a7d575f5ffd5b61249e8383614724565b600181811c90821680614a9b57607f821691505b60208210810361298357634e487b7160e01b5f52602260045260245ffd5b5f60208284031215614ac9575f5ffd5b815161249e81614392565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e0830152610100810151610100830152610120810151610120830152610140810151614b5061014084018264ffffffffff169052565b50610160810151610f3d61016084018264ffffffffff169052565b61018081016108158284614ad4565b5f5f60408385031215614b8b575f5ffd5b8251614b9681614392565b602084015190925061471981614392565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b604081525f5f8554614be081614a87565b806040860152600182165f8114614bfe5760018114614c1a57614c4b565b60ff1983166060870152606082151560051b8701019350614c4b565b885f5260205f205f5b83811015614c4257815488820160600152600190910190602001614c23565b87016060019450505b5050508281036020840152614c61818587614ba7565b9695505050505050565b601f821115610f3d57805f5260205f20601f840160051c81016020851015614c905750805b601f840160051c820191505b81811015612e37575f8155600101614c9c565b6001600160401b03831115614cc657614cc66142c6565b614cda83614cd48354614a87565b83614c6b565b5f601f841160018114614d0b575f8515614cf45750838201355b5f19600387901b1c1916600186901b178355612e37565b5f83815260208120601f198716915b82811015614d3a5786850135825560209485019460019092019101614d1a565b5086821015614d56575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60408101614d75846145fa565b838252614d81836145fa565b8260208301529392505050565b5f6101808284031215614d9f575f5ffd5b61249e8383614471565b5f60208284031215614db9575f5ffd5b61249e8261445d565b803582526020808201359083015260408082013590830152606080820135908301526080808201359083015260a0808201359083015260c0808201359083015260e0808201359083015261010080820135908301526101208082013590830152614e2f610140820161445d565b64ffffffffff16610140830152614e49610160820161445d565b64ffffffffff8116610160840152505050565b6103008101614e6b8285614dc2565b61249e610180830184614ad4565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561081557610815614e79565b6001600160e01b031991909116815260200190565b5f60208284031215614ec5575f5ffd5b815161249e816147be565b6001600160a01b038316815260408101614d81836145fa565b6101e08101614ef88287614dc2565b84610180830152836101a0830152826101c083015295945050505050565b6102008101614f258288614dc2565b6101808201959095526101a08101939093526101c08301919091526001600160a01b03166101e090910152919050565b5f60208284031215614f65575f5ffd5b5051919050565b60408101614f79846145fa565b9281526020015290565b60408101614f90846145fa565b9281526001600160801b039190911660209091015290565b634e487b7160e01b5f52603260045260245ffd5b5f5f8335601e19843603018112614fd1575f5ffd5b8301803591506001600160401b03821115614fea575f5ffd5b602001915036819003821315614ffe575f5ffd5b9250929050565b5f81518060208401855e5f93019283525090919050565b828482375f8382015f8152614c618185615005565b5f612ae161503f8386615005565b84615005565b8082018082111561081557610815614e79565b6001600160801b03818116838216019081111561081557610815614e79565b6001600160801b03828116828216039081111561081557610815614e79565b5f602082840312156150a6575f5ffd5b815161249e81614256565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90614c6190830184614286565b6001600160a01b03841681526101c081016151016020830185614ad4565b826101a0830152949350505050565b81516001600160401b03811115615129576151296142c6565b61513d816151378454614a87565b84614c6b565b6020601f82116001811461516f575f83156151585750848201515b5f19600385901b1c1916600184901b178455612e37565b5f84815260208120601f198516915b8281101561519e578785015182556020948501946001909201910161517e565b50848210156151bb57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbccd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300a26469706673582212205c4657bf2d579a6da6c96909adb50a9ad7851fd2f4a2c93ae965420f20889a3064736f6c634300081e0033","opcodes":"PUSH1 0xC0 PUSH1 0x40 MSTORE ADDRESS PUSH1 0x80 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x13 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x541F CODESIZE SUB DUP1 PUSH2 0x541F DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x32 SWAP2 PUSH2 0x124 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x59 JUMPI PUSH1 0x40 MLOAD PUSH4 0x559A03CD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x61 PUSH2 0x72 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xA0 MSTORE PUSH2 0x151 JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xC2 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x121 JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x134 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x14A JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH2 0x5260 PUSH2 0x1BF PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x750 ADD MSTORE DUP2 DUP2 PUSH2 0xBB8 ADD MSTORE DUP2 DUP2 PUSH2 0xC67 ADD MSTORE DUP2 DUP2 PUSH2 0xCB0 ADD MSTORE DUP2 DUP2 PUSH2 0xCEF ADD MSTORE DUP2 DUP2 PUSH2 0xE19 ADD MSTORE DUP2 DUP2 PUSH2 0x24B7 ADD MSTORE DUP2 DUP2 PUSH2 0x2BF2 ADD MSTORE DUP2 DUP2 PUSH2 0x2E0F ADD MSTORE PUSH2 0x3758 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x2B53 ADD MSTORE DUP2 DUP2 PUSH2 0x2B7C ADD MSTORE PUSH2 0x2D68 ADD MSTORE PUSH2 0x5260 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x23E JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6F86C897 GT PUSH2 0x134 JUMPI DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0xB3 JUMPI DUP1 PUSH4 0xDFCD412E GT PUSH2 0x78 JUMPI DUP1 PUSH4 0xDFCD412E EQ PUSH2 0x723 JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x742 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x774 JUMPI DUP1 PUSH4 0xF0F44260 EQ PUSH2 0x793 JUMPI DUP1 PUSH4 0xF45346DC EQ PUSH2 0x7B2 JUMPI DUP1 PUSH4 0xF720BBBF EQ PUSH2 0x7D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x677 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x6A7 JUMPI DUP1 PUSH4 0xBD644C56 EQ PUSH2 0x6C6 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x6E5 JUMPI DUP1 PUSH4 0xDE27010A EQ PUSH2 0x704 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 GT PUSH2 0xF9 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x59B JUMPI DUP1 PUSH4 0x9760905E EQ PUSH2 0x5AF JUMPI DUP1 PUSH4 0x9E2D8922 EQ PUSH2 0x5CE JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x62C JUMPI DUP1 PUSH4 0xAC9650D8 EQ PUSH2 0x64B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6F86C897 EQ PUSH2 0x4F1 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x510 JUMPI DUP1 PUSH4 0x792DA09E EQ PUSH2 0x52F JUMPI DUP1 PUSH4 0x82AFD23B EQ PUSH2 0x55A JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x587 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4F1EF286 GT PUSH2 0x1C0 JUMPI DUP1 PUSH4 0x61D027B3 GT PUSH2 0x185 JUMPI DUP1 PUSH4 0x61D027B3 EQ PUSH2 0x459 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x475 JUMPI DUP1 PUSH4 0x663D8337 EQ PUSH2 0x494 JUMPI DUP1 PUSH4 0x6B8734E7 EQ PUSH2 0x4B3 JUMPI DUP1 PUSH4 0x6F520B73 EQ PUSH2 0x4D2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x3D1 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x3E4 JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x3F8 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x417 JUMPI DUP1 PUSH4 0x5FCBF445 EQ PUSH2 0x43A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xD100ACB GT PUSH2 0x206 JUMPI DUP1 PUSH4 0xD100ACB EQ PUSH2 0x30E JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x33B JUMPI DUP1 PUSH4 0x33D6157A EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x39E JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x3B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x242 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x276 JUMPI DUP1 PUSH4 0x77F224A EQ PUSH2 0x297 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x2B8 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2EF JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x24D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x261 PUSH2 0x25C CALLDATASIZE PUSH1 0x4 PUSH2 0x426B JUMP JUMPDEST PUSH2 0x7F0 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 0x281 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x28A PUSH2 0x81B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x42B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x2B1 CALLDATASIZE PUSH1 0x4 PUSH2 0x43A6 JUMP JUMPDEST PUSH2 0x8BC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2D7 PUSH2 0x2D2 CALLDATASIZE PUSH1 0x4 PUSH2 0x441C JUMP JUMPDEST PUSH2 0xA08 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x26D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x309 CALLDATASIZE PUSH1 0x4 PUSH2 0x4433 JUMP JUMPDEST PUSH2 0xA1C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x319 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x328 CALLDATASIZE PUSH1 0x4 PUSH2 0x4533 JUMP JUMPDEST PUSH2 0xA2B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x26D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x346 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x355 CALLDATASIZE PUSH1 0x4 PUSH2 0x458D JUMP JUMPDEST PUSH2 0xE90 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x365 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x391 PUSH2 0x374 CALLDATASIZE PUSH1 0x4 PUSH2 0x45CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x4616 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0xF19 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x3CC CALLDATASIZE PUSH1 0x4 PUSH2 0x458D JUMP JUMPDEST PUSH2 0xF23 JUMP JUMPDEST PUSH2 0x2B6 PUSH2 0x3DF CALLDATASIZE PUSH1 0x4 PUSH2 0x4629 JUMP JUMPDEST PUSH2 0xF42 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0xF5D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x403 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x412 CALLDATASIZE PUSH1 0x4 PUSH2 0x4675 JUMP JUMPDEST PUSH2 0xF78 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x422 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x520B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0xFF AND PUSH2 0x261 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x445 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x454 CALLDATASIZE PUSH1 0x4 PUSH2 0x46ED JUMP JUMPDEST PUSH2 0xFC1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x464 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2D7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x480 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2D7 PUSH2 0x48F CALLDATASIZE PUSH1 0x4 PUSH2 0x441C JUMP JUMPDEST PUSH2 0x10B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x49F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x4AE CALLDATASIZE PUSH1 0x4 PUSH2 0x4735 JUMP JUMPDEST PUSH2 0x10BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4BE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x4CD CALLDATASIZE PUSH1 0x4 PUSH2 0x46ED JUMP JUMPDEST PUSH2 0x15C4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4DD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x4EC CALLDATASIZE PUSH1 0x4 PUSH2 0x4783 JUMP JUMPDEST PUSH2 0x1A9F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4FC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x50B CALLDATASIZE PUSH1 0x4 PUSH2 0x45CB JUMP JUMPDEST PUSH2 0x1CEC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x51B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x52A CALLDATASIZE PUSH1 0x4 PUSH2 0x45CB JUMP JUMPDEST PUSH2 0x219A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x549 CALLDATASIZE PUSH1 0x4 PUSH2 0x441C JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x565 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x261 PUSH2 0x574 CALLDATASIZE PUSH1 0x4 PUSH2 0x441C JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD ISZERO ISZERO SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x592 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x21F2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5A6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x28A PUSH2 0x21FA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x5C9 CALLDATASIZE PUSH1 0x4 PUSH2 0x4433 JUMP JUMPDEST PUSH2 0x2238 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x617 PUSH2 0x5E8 CALLDATASIZE PUSH1 0x4 PUSH2 0x45CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP3 AND SWAP3 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 SWAP3 DIV AND SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x26D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x637 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x646 CALLDATASIZE PUSH1 0x4 PUSH2 0x47CB JUMP JUMPDEST PUSH2 0x2317 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x656 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x66A PUSH2 0x665 CALLDATASIZE PUSH1 0x4 PUSH2 0x47F7 JUMP JUMPDEST PUSH2 0x2322 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x4856 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x682 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x28A PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x6C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x48B9 JUMP JUMPDEST PUSH2 0x2407 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x6E0 CALLDATASIZE PUSH1 0x4 PUSH2 0x4920 JUMP JUMPDEST PUSH2 0x241F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x28A PUSH2 0x6FF CALLDATASIZE PUSH1 0x4 PUSH2 0x441C JUMP JUMPDEST PUSH2 0x2440 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x70F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x71E CALLDATASIZE PUSH1 0x4 PUSH2 0x494B JUMP JUMPDEST PUSH2 0x24A5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x72E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x73D CALLDATASIZE PUSH1 0x4 PUSH2 0x49BC JUMP JUMPDEST PUSH2 0x2563 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x74D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x2D7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x77F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x261 PUSH2 0x78E CALLDATASIZE PUSH1 0x4 PUSH2 0x4A0C JUMP JUMPDEST PUSH2 0x269A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x79E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x7AD CALLDATASIZE PUSH1 0x4 PUSH2 0x45CB JUMP JUMPDEST PUSH2 0x26E6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x7CC CALLDATASIZE PUSH1 0x4 PUSH2 0x4A38 JUMP JUMPDEST PUSH2 0x26F2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x7EB CALLDATASIZE PUSH1 0x4 PUSH2 0x4A6C JUMP JUMPDEST PUSH2 0x2705 JUMP JUMPDEST PUSH0 PUSH2 0x7FA DUP3 PUSH2 0x278A JUMP JUMPDEST DUP1 PUSH2 0x815 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xC4769787 PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x60 SWAP2 SWAP1 DUP2 SWAP1 PUSH2 0x83A SWAP1 PUSH2 0x4A87 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 0x866 SWAP1 PUSH2 0x4A87 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x8B1 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x888 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x8B1 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 0x894 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x8C5 PUSH2 0x27D9 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x8EB JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x906 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x914 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x932 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x95C JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST DUP8 MLOAD PUSH0 SUB PUSH2 0x97C JUMPI PUSH1 0x40 MLOAD PUSH3 0xBEEFB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP7 MLOAD PUSH0 SUB PUSH2 0x99D JUMPI PUSH1 0x40 MLOAD PUSH4 0x43B47BCB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9A7 DUP9 DUP9 PUSH2 0x2801 JUMP JUMPDEST PUSH2 0x9AF PUSH2 0x2813 JUMP JUMPDEST PUSH2 0x9B8 DUP7 PUSH2 0x281B JUMP JUMPDEST DUP4 ISZERO PUSH2 0x9FE JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA12 DUP3 PUSH2 0x2823 JUMP JUMPDEST POP PUSH2 0x815 DUP3 PUSH2 0x285A JUMP JUMPDEST PUSH2 0xA27 DUP3 DUP3 CALLER PUSH2 0x2893 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA34 PUSH2 0x28A0 JUMP JUMPDEST CALLER PUSH2 0xA40 DUP2 PUSH1 0x2 PUSH2 0x28D0 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xA7D 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 0xAA1 SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP PUSH2 0xAAE DUP2 PUSH1 0x3 PUSH2 0x28D0 JUMP JUMPDEST PUSH2 0xAB8 DUP3 DUP6 PUSH2 0x290B JUMP JUMPDEST DUP1 DUP9 MSTORE PUSH5 0xFFFFFFFFFF TIMESTAMP AND PUSH2 0x140 DUP10 ADD MSTORE PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP8 MLOAD SWAP1 ISZERO PUSH2 0xB04 JUMPI PUSH1 0x40 MLOAD PUSH4 0x15E46FBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH2 0xB0E DUP8 PUSH2 0x2937 JUMP JUMPDEST DUP8 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE DUP10 MLOAD DUP4 MLOAD SWAP2 DUP3 ADD SWAP1 SWAP4 MSTORE SWAP1 DUP2 MSTORE PUSH2 0xB3C SWAP2 DUP8 SWAP2 PUSH2 0x2989 JUMP JUMPDEST PUSH2 0xB4C DUP3 PUSH1 0x1 DUP10 PUSH1 0x20 ADD MLOAD PUSH2 0x29A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xF79AC183 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0xF79AC183 SWAP1 PUSH2 0xB78 SWAP1 DUP11 SWAP1 PUSH1 0x4 ADD PUSH2 0x4B6B JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB8F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xBA1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP PUSH1 0xA0 DUP9 ADD MLOAD PUSH2 0xBE2 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 DUP9 SWAP1 DUP5 SWAP1 PUSH2 0x2A97 JUMP JUMPDEST PUSH0 PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x5E445859 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC1F 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 0xC43 SWAP2 SWAP1 PUSH2 0x4B7A JUMP JUMPDEST PUSH2 0x120 DUP12 ADD MLOAD SWAP2 SWAP4 POP SWAP2 POP ISZERO PUSH2 0xC91 JUMPI PUSH2 0x120 DUP10 ADD MLOAD PUSH2 0xC91 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 DUP11 SWAP1 DUP5 SWAP1 PUSH2 0x2A97 JUMP JUMPDEST PUSH2 0x100 DUP10 ADD MLOAD ISZERO PUSH2 0xCDA JUMPI PUSH2 0x100 DUP10 ADD MLOAD PUSH2 0xCDA SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 DUP11 SWAP1 DUP6 SWAP1 PUSH2 0x2A97 JUMP JUMPDEST PUSH0 SLOAD PUSH1 0xC0 DUP11 ADD MLOAD PUSH2 0xD1D SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND SWAP3 DUP13 SWAP3 SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH2 0x2A97 JUMP JUMPDEST PUSH0 DUP10 PUSH1 0xE0 ADD MLOAD GT DUP1 ISZERO PUSH2 0xDA1 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x521EB273 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD67 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 0xD8B SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0xE41 JUMPI PUSH2 0xE41 DUP9 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x521EB273 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xDE6 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 0xE0A SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST PUSH1 0xE0 DUP13 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP3 SWAP2 SWAP1 PUSH2 0x2A97 JUMP JUMPDEST DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x988AC1A1C4820F963124B6FA0394627AD4FA3DE7583A76399B998C1D7E43AF3F DUP11 PUSH1 0x40 MLOAD PUSH2 0xE7A SWAP2 SWAP1 PUSH2 0x4B6B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP SWAP6 MLOAD SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xEB9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 PUSH2 0xEC5 DUP4 DUP4 CALLER PUSH2 0x2ACD JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF13 JUMPI PUSH1 0x40 MLOAD PUSH4 0x64283D7B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xAFB JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xF21 PUSH2 0x2AE9 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0xF3D DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0x2407 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xF4A PUSH2 0x2B48 JUMP JUMPDEST PUSH2 0xF53 DUP3 PUSH2 0x2BEC JUMP JUMPDEST PUSH2 0xA27 DUP3 DUP3 PUSH2 0x2CA1 JUMP JUMPDEST PUSH0 PUSH2 0xF66 PUSH2 0x2D5D JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51EB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH32 0xC41B7CB64E5BE01AF4AFC2641AFC861432136270F4206B7773F229B658B96699 PUSH1 0x3 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0xFAC SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4BCF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x3 PUSH2 0xF3D DUP3 DUP5 DUP4 PUSH2 0x4CAF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP2 SLOAD PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xFEF JUMPI PUSH2 0xFEF PUSH2 0x45E6 JUMP JUMPDEST SUB PUSH2 0x100D JUMPI PUSH1 0x40 MLOAD PUSH4 0x7D918563 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1020 JUMPI PUSH2 0x1020 PUSH2 0x45E6 JUMP JUMPDEST SUB PUSH2 0x103E JUMPI PUSH1 0x40 MLOAD PUSH4 0x32B409A1 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD DUP3 SWAP1 DUP3 SWAP1 PUSH1 0xFF NOT AND PUSH1 0x1 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x105C JUMPI PUSH2 0x105C PUSH2 0x45E6 JUMP JUMPDEST MUL OR SWAP1 SSTORE POP DUP1 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP2 PUSH32 0xFE4C6998A06520B63340A48710B374432CB395DA90E4E5360E1EC7AEEFEBECEF SWAP2 PUSH2 0x10A7 SWAP2 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND SWAP1 DUP7 SWAP1 PUSH2 0x4D68 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x815 DUP3 PUSH2 0x2823 JUMP JUMPDEST PUSH0 PUSH2 0x10C7 PUSH2 0x28A0 JUMP JUMPDEST PUSH2 0x10DE PUSH2 0x10D9 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x4D8E JUMP JUMPDEST PUSH2 0x2DA6 JUMP JUMPDEST CALLER DUP6 CALLDATALOAD PUSH1 0x60 SHR DUP2 EQ PUSH2 0x1103 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4ACE04F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x110E DUP2 PUSH1 0x2 PUSH2 0x28D0 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x114B 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 0x116F SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP PUSH2 0x117C DUP2 PUSH1 0x3 PUSH2 0x28D0 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF TIMESTAMP AND PUSH2 0x1196 PUSH2 0x180 DUP10 ADD PUSH2 0x160 DUP11 ADD PUSH2 0x4DA9 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND GT DUP1 ISZERO PUSH2 0x11BD JUMPI POP TIMESTAMP PUSH5 0xFFFFFFFFFF AND DUP7 PUSH2 0x160 ADD MLOAD PUSH5 0xFFFFFFFFFF AND LT ISZERO JUMPDEST DUP8 CALLDATALOAD SWAP1 PUSH2 0x11E0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x422552F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP DUP6 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND DUP8 PUSH2 0x140 ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1202 SWAP2 SWAP1 PUSH2 0x4DA9 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND EQ DUP1 ISZERO PUSH2 0x121E JUMPI POP DUP6 PUSH1 0xA0 ADD MLOAD DUP8 PUSH1 0xA0 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1232 JUMPI POP DUP6 PUSH1 0xC0 ADD MLOAD DUP8 PUSH1 0xC0 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1248 JUMPI POP DUP6 PUSH2 0x100 ADD MLOAD DUP8 PUSH2 0x100 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x125E JUMPI POP DUP6 PUSH2 0x120 ADD MLOAD DUP8 PUSH2 0x120 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1272 JUMPI POP DUP6 PUSH1 0xE0 ADD MLOAD DUP8 PUSH1 0xE0 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP8 DUP8 SWAP1 SWAP2 PUSH2 0x1295 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1FF5485 PUSH1 0xE6 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP3 SWAP2 SWAP1 PUSH2 0x4E5C JUMP JUMPDEST POP POP PUSH2 0x12A1 DUP3 DUP6 PUSH2 0x290B JUMP JUMPDEST DUP1 DUP8 MSTORE PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP7 MLOAD SWAP1 ISZERO PUSH2 0x12D6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x15E46FBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP PUSH2 0x12E0 DUP7 PUSH2 0x2937 JUMP JUMPDEST DUP7 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE PUSH2 0x12FD DUP9 CALLDATALOAD PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x131B DUP2 DUP9 PUSH0 ADD MLOAD PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0x2989 JUMP JUMPDEST DUP8 PUSH1 0x20 ADD CALLDATALOAD DUP8 PUSH1 0x20 ADD MLOAD GT ISZERO PUSH2 0x134F JUMPI PUSH2 0x134A DUP4 PUSH1 0x1 DUP11 PUSH1 0x20 ADD CALLDATALOAD DUP11 PUSH1 0x20 ADD MLOAD PUSH2 0x1345 SWAP2 SWAP1 PUSH2 0x4E8D JUMP JUMPDEST PUSH2 0x29A0 JUMP JUMPDEST PUSH2 0x1368 JUMP JUMPDEST PUSH2 0x1368 DUP4 PUSH0 DUP10 PUSH1 0x20 ADD MLOAD DUP12 PUSH1 0x20 ADD CALLDATALOAD PUSH2 0x1345 SWAP2 SWAP1 PUSH2 0x4E8D JUMP JUMPDEST DUP8 CALLDATALOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE MLOAD PUSH4 0x6AE360B3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xD5C6C166 SWAP1 PUSH2 0x13A8 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x4E5C JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x13BF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x13D1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH2 0x13E9 DUP7 DUP4 DUP10 PUSH1 0xA0 ADD MLOAD DUP12 PUSH1 0xA0 ADD CALLDATALOAD PUSH2 0x2DEF JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x5E445859 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1426 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 0x144A SWAP2 SWAP1 PUSH2 0x4B7A JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1464 DUP9 DUP3 DUP12 PUSH2 0x120 ADD MLOAD DUP14 PUSH2 0x120 ADD CALLDATALOAD PUSH2 0x2DEF JUMP JUMPDEST PUSH2 0x147A DUP9 DUP4 DUP12 PUSH2 0x100 ADD MLOAD DUP14 PUSH2 0x100 ADD CALLDATALOAD PUSH2 0x2DEF JUMP JUMPDEST PUSH0 SLOAD PUSH1 0xC0 DUP1 DUP12 ADD MLOAD PUSH2 0x149D SWAP3 DUP12 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP2 SWAP1 DUP15 ADD CALLDATALOAD PUSH2 0x2DEF JUMP JUMPDEST PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x521EB273 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x14DA 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 0x14FE SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x152D JUMPI PUSH2 0x152D DUP10 DUP3 DUP13 PUSH1 0xE0 ADD MLOAD DUP15 PUSH1 0xE0 ADD CALLDATALOAD PUSH2 0x2DEF JUMP JUMPDEST DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x988AC1A1C4820F963124B6FA0394627AD4FA3DE7583A76399B998C1D7E43AF3F DUP12 PUSH1 0x40 MLOAD PUSH2 0x1566 SWAP2 SWAP1 PUSH2 0x4B6B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP10 MLOAD PUSH1 0x40 MLOAD DUP13 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND SWAP1 PUSH32 0x4FF4AC703CB703B7EA535D47E65E64B4CABF11B3E2EB41F152DAB17971953ADD SWAP1 PUSH0 SWAP1 LOG4 DUP10 MLOAD PUSH2 0x15B4 SWAP1 DUP13 CALLDATALOAD SWAP1 PUSH2 0x2E3E JUMP JUMPDEST POP POP SWAP7 MLOAD SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP2 SLOAD PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x15F2 JUMPI PUSH2 0x15F2 PUSH2 0x45E6 JUMP JUMPDEST EQ PUSH2 0x1610 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF9A96F3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1656 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 0x167A SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x16A1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFDEE243 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x16B5 JUMPI PUSH2 0x16B5 PUSH2 0x45E6 JUMP JUMPDEST EQ DUP1 ISZERO PUSH2 0x1731 JUMPI POP PUSH1 0x40 MLOAD PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x1FFC9A7 SWAP1 PUSH2 0x16F0 SWAP1 PUSH4 0x6D5136B1 PUSH1 0xE1 SHL SWAP1 PUSH1 0x4 ADD PUSH2 0x4EA0 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x170B 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 0x172F SWAP2 SWAP1 PUSH2 0x4EB5 JUMP JUMPDEST ISZERO JUMPDEST DUP1 PUSH2 0x17C7 JUMPI POP PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x174B JUMPI PUSH2 0x174B PUSH2 0x45E6 JUMP JUMPDEST EQ DUP1 ISZERO PUSH2 0x17C7 JUMPI POP PUSH1 0x40 MLOAD PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x1FFC9A7 SWAP1 PUSH2 0x1786 SWAP1 PUSH4 0xF7E4B01B PUSH1 0xE0 SHL SWAP1 PUSH1 0x4 ADD PUSH2 0x4EA0 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x17A1 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 0x17C5 SWAP2 SWAP1 PUSH2 0x4EB5 JUMP JUMPDEST ISZERO JUMPDEST DUP1 PUSH2 0x185D JUMPI POP PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x17E1 JUMPI PUSH2 0x17E1 PUSH2 0x45E6 JUMP JUMPDEST EQ DUP1 ISZERO PUSH2 0x185D JUMPI POP PUSH1 0x40 MLOAD PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x1FFC9A7 SWAP1 PUSH2 0x181C SWAP1 PUSH4 0x21B7E09B PUSH1 0xE0 SHL SWAP1 PUSH1 0x4 ADD PUSH2 0x4EA0 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1837 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 0x185B SWAP2 SWAP1 PUSH2 0x4EB5 JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x187F JUMPI DUP3 DUP3 PUSH1 0x40 MLOAD PUSH4 0x502C9A5F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP3 SWAP2 SWAP1 PUSH2 0x4ED0 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0xFF NOT DUP3 AND DUP2 OR DUP4 SSTORE DUP4 SWAP2 DUP4 SWAP2 PUSH2 0xFFFF NOT SWAP1 SWAP2 AND OR PUSH2 0x100 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x18AD JUMPI PUSH2 0x18AD PUSH2 0x45E6 JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x18C6 JUMPI PUSH2 0x18C6 PUSH2 0x45E6 JUMP JUMPDEST SUB PUSH2 0x1A63 JUMPI PUSH0 DUP4 SWAP1 POP PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x536EBBFC PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x190C 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 0x1930 SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x1998 JUMPI PUSH1 0x40 MLOAD PUSH4 0x38EA38A7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0xE3A8E29C SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1981 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1993 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x7B83037B PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x19D4 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 0x19F8 SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x1A60 JUMPI PUSH1 0x40 MLOAD PUSH4 0x38EA38A7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0xE3A8E29C SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1A49 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1A5B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFE4C6998A06520B63340A48710B374432CB395DA90E4E5360E1EC7AEEFEBECEF DUP4 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x10A7 SWAP3 SWAP2 SWAP1 PUSH2 0x4D68 JUMP JUMPDEST PUSH2 0x1AA7 PUSH2 0x28A0 JUMP JUMPDEST PUSH2 0x1AB9 PUSH2 0x10D9 CALLDATASIZE DUP7 SWAP1 SUB DUP7 ADD DUP7 PUSH2 0x4D8E JUMP JUMPDEST CALLER DUP5 CALLDATALOAD PUSH1 0x60 SHR DUP2 EQ PUSH2 0x1ADE JUMPI PUSH1 0x40 MLOAD PUSH4 0x4ACE04F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1AE9 DUP2 PUSH1 0x2 PUSH2 0x2F25 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1B26 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 0x1B4A SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP PUSH2 0x1B57 DUP2 PUSH1 0x3 PUSH2 0x2F25 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF TIMESTAMP AND PUSH2 0x1B71 PUSH2 0x180 DUP9 ADD PUSH2 0x160 DUP10 ADD PUSH2 0x4DA9 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND GT DUP7 PUSH0 ADD CALLDATALOAD SWAP1 PUSH2 0x1B9E JUMPI PUSH1 0x40 MLOAD PUSH4 0x422552F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP DUP6 PUSH1 0xA0 ADD CALLDATALOAD DUP6 GT ISZERO DUP1 ISZERO PUSH2 0x1BB8 JUMPI POP DUP6 PUSH2 0x100 ADD CALLDATALOAD DUP5 GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1BC9 JUMPI POP DUP6 PUSH2 0x120 ADD CALLDATALOAD DUP4 GT ISZERO JUMPDEST DUP7 DUP7 DUP7 DUP7 SWAP1 SWAP2 SWAP3 SWAP4 PUSH2 0x1BF2 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA02DB783 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4EE9 JUMP JUMPDEST POP POP POP POP PUSH0 PUSH2 0x1C03 DUP8 PUSH0 ADD CALLDATALOAD PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x1C14 DUP4 PUSH0 DUP10 PUSH1 0x20 ADD CALLDATALOAD PUSH2 0x29A0 JUMP JUMPDEST DUP7 CALLDATALOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE MLOAD PUSH4 0x770FCD35 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xEE1F9A6A SWAP1 PUSH2 0x1C5A SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x4F16 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1C71 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1C83 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD DUP10 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP10 SWAP1 MSTORE SWAP1 DUP2 ADD DUP8 SWAP1 MSTORE DUP10 CALLDATALOAD SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP2 POP PUSH32 0x825C3EE6EECAA4B0DC3573E9732B65613D705CADFC4BA69CC76CB7D9227E5971 SWAP1 PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x1CE3 DUP8 CALLDATALOAD DUP8 DUP8 DUP8 PUSH2 0x2F84 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x2 DUP2 SLOAD PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1D1B JUMPI PUSH2 0x1D1B PUSH2 0x45E6 JUMP JUMPDEST EQ PUSH2 0x1D39 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5C92B239 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1D56 JUMPI PUSH2 0x1D56 PUSH2 0x45E6 JUMP JUMPDEST SUB PUSH2 0x1E51 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x18160DDD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1D97 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 0x1DBB SWAP2 SWAP1 PUSH2 0x4F55 JUMP JUMPDEST ISZERO PUSH2 0x1E4C JUMPI DUP1 PUSH0 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x18160DDD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1E0D 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 0x1E31 SWAP2 SWAP1 PUSH2 0x4F55 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1D0EC0AB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP3 SWAP2 SWAP1 PUSH2 0x4F6C JUMP JUMPDEST PUSH2 0x212A JUMP JUMPDEST PUSH1 0x2 DUP2 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1E6E JUMPI PUSH2 0x1E6E PUSH2 0x45E6 JUMP JUMPDEST SUB PUSH2 0x1EE0 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND ISZERO PUSH2 0x1E4C JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD SWAP2 MLOAD PUSH4 0x1D0EC0AB PUSH1 0xE0 SHL DUP2 MSTORE PUSH2 0xAFB SWAP4 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 ADD PUSH2 0x4F83 JUMP JUMPDEST PUSH0 DUP3 SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x26CCBD22 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1F20 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 0x1F44 SWAP2 SWAP1 PUSH2 0x4F55 JUMP JUMPDEST ISZERO PUSH2 0x1F96 JUMPI DUP2 PUSH0 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x26CCBD22 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1E0D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x536EBBFC PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1FD3 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 0x1FF7 SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x205F JUMPI PUSH1 0x40 MLOAD PUSH4 0x76C7FC55 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0x76C7FC55 SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2048 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x205A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x7B83037B PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x209B 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 0x20BF SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x2127 JUMPI PUSH1 0x40 MLOAD PUSH4 0x76C7FC55 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0x76C7FC55 SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2110 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2122 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST POP POP JUMPDEST DUP1 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP2 PUSH32 0xFE4C6998A06520B63340A48710B374432CB395DA90E4E5360E1EC7AEEFEBECEF SWAP2 PUSH2 0x2170 SWAP2 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND SWAP1 PUSH0 SWAP1 PUSH2 0x4D68 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0xFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x21D2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x22718AD9 PUSH1 0xE2 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 SWAP1 SWAP3 ADD PUSH1 0x20 MSTORE POP PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xF21 PUSH2 0x3082 JUMP JUMPDEST PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079301 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x83A SWAP1 PUSH2 0x4A87 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x2259 DUP4 PUSH2 0x30CA JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND SWAP1 DUP3 SWAP1 DUP2 AND DUP3 GT ISZERO PUSH2 0x22A1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE06D13 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST POP POP DUP2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 SWAP3 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND DUP4 MSTORE DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP2 PUSH32 0x7E1092696182A6D6922C9583DB468951527F21F67F9F2F4911ED3F7BBF02B330 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP2 DUP3 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP2 AND OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0xA27 CALLER DUP4 DUP4 PUSH2 0x3101 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 0x234B JUMPI PUSH2 0x234B PUSH2 0x42C6 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x237E JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x2369 JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x23FF JUMPI PUSH2 0x23DA ADDRESS DUP7 DUP7 DUP5 DUP2 DUP2 LT PUSH2 0x23A1 JUMPI PUSH2 0x23A1 PUSH2 0x4FA8 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x23B3 SWAP2 SWAP1 PUSH2 0x4FBC JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x23C6 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x501C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x31B0 JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x23EC JUMPI PUSH2 0x23EC PUSH2 0x4FA8 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0x2383 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2412 DUP5 DUP5 DUP5 PUSH2 0xE90 JUMP JUMPDEST PUSH2 0xF13 CALLER DUP6 DUP6 DUP6 DUP6 PUSH2 0x3250 JUMP JUMPDEST PUSH2 0x2427 PUSH2 0x28A0 JUMP JUMPDEST PUSH2 0xA27 PUSH2 0x2439 CALLDATASIZE DUP5 SWAP1 SUB DUP5 ADD DUP5 PUSH2 0x4D8E JUMP JUMPDEST DUP3 PUSH0 PUSH2 0x336F JUMP JUMPDEST PUSH1 0x60 PUSH2 0x244B DUP3 PUSH2 0x2823 JUMP JUMPDEST POP PUSH0 PUSH2 0x2455 PUSH2 0x35F4 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 MLOAD GT PUSH2 0x2473 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0x249E JUMP JUMPDEST DUP1 PUSH2 0x247D DUP5 PUSH2 0x3684 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x248E SWAP3 SWAP2 SWAP1 PUSH2 0x5031 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x24AD PUSH2 0x28A0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xD505ACCF CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP10 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0xFF DUP7 AND PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xC4 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0xE4 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2546 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2557 JUMPI POP PUSH1 0x1 JUMPDEST POP PUSH2 0x1CE3 DUP8 DUP8 DUP8 PUSH2 0x3713 JUMP JUMPDEST PUSH0 PUSH2 0x256C PUSH2 0x28A0 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x25A0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9CFEA583 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 0xAFB JUMP JUMPDEST POP PUSH2 0x25AC DUP6 PUSH1 0x1 PUSH2 0x2F25 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH4 0x23E103A8 DUP6 CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP1 DUP7 AND PUSH1 0x44 DUP4 ADD MSTORE DUP7 AND PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2617 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 0x263B SWAP2 SWAP1 PUSH2 0x4F55 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND CALLER PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP7 SWAP1 MSTORE SWAP3 DUP4 AND SWAP3 DUP10 AND SWAP2 PUSH32 0xE826ECB5C03D4897F8AB426EE94064E06179DFF39CD9FDD0776904CD935C95D8 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079305 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x26EF DUP2 PUSH2 0x385E JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x26FA PUSH2 0x28A0 JUMP JUMPDEST PUSH2 0xF3D DUP4 DUP4 DUP4 PUSH2 0x3713 JUMP JUMPDEST PUSH2 0x270D PUSH2 0x28A0 JUMP JUMPDEST TIMESTAMP PUSH2 0x2720 PUSH2 0x180 DUP4 ADD PUSH2 0x160 DUP5 ADD PUSH2 0x4DA9 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND GT ISZERO PUSH2 0x2770 JUMPI DUP1 CALLDATALOAD PUSH2 0x2741 PUSH2 0x180 DUP4 ADD PUSH2 0x160 DUP5 ADD PUSH2 0x4DA9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x312BFDD7 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH5 0xFFFFFFFFFF AND PUSH1 0x24 DUP3 ADD MSTORE TIMESTAMP PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH2 0x26EF PUSH2 0x2782 CALLDATASIZE DUP4 SWAP1 SUB DUP4 ADD DUP4 PUSH2 0x4D8E JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH2 0x336F JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x27BA JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x815 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x815 JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x815 JUMP JUMPDEST PUSH2 0x2809 PUSH2 0x38EC JUMP JUMPDEST PUSH2 0xA27 DUP3 DUP3 PUSH2 0x3911 JUMP JUMPDEST PUSH2 0xF21 PUSH2 0x38EC JUMP JUMPDEST PUSH2 0x26E6 PUSH2 0x38EC JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x282E DUP4 PUSH2 0x3941 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x815 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7E273289 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079304 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0xF3D DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x397A JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x520B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0xFF AND ISZERO PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0xD93C0665 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH2 0x28DC DUP4 DUP4 PUSH2 0x3A8D JUMP JUMPDEST PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x28ED JUMPI PUSH2 0x28ED PUSH2 0x45E6 JUMP JUMPDEST EQ PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH4 0x422F25F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x249E PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP4 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT PUSH1 0x60 DUP7 SWAP1 SHL AND PUSH2 0x5045 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2949 SWAP2 SWAP1 PUSH2 0x4B6B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP1 POP DUP2 DUP2 PUSH2 0x2983 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6EE9F647 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 SWAP1 PUSH2 0x4B6B JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2993 DUP4 DUP4 PUSH2 0x3AFE JUMP JUMPDEST PUSH2 0xF3D CALLER PUSH0 DUP6 DUP6 DUP6 PUSH2 0x3250 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP3 ISZERO PUSH2 0x2A4A JUMPI PUSH2 0x29C6 DUP3 PUSH2 0x30CA JUMP JUMPDEST DUP2 SLOAD DUP3 SWAP1 PUSH0 SWAP1 PUSH2 0x29E0 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x5058 JUMP JUMPDEST DUP3 SLOAD PUSH2 0x100 SWAP3 SWAP1 SWAP3 EXP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 DUP2 MUL NOT SWAP1 SWAP4 AND SWAP2 DUP4 AND MUL OR SWAP1 SWAP2 SSTORE DUP3 SLOAD DUP1 DUP3 AND SWAP3 POP PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND DUP1 DUP3 GT ISZERO PUSH2 0x2A43 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE06D13 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST POP POP PUSH2 0xF13 JUMP JUMPDEST PUSH2 0x2A53 DUP3 PUSH2 0x30CA JUMP JUMPDEST DUP2 SLOAD DUP3 SWAP1 PUSH0 SWAP1 PUSH2 0x2A6D SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x5077 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND MUL OR SWAP1 SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2AA5 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x3B5F JUMP JUMPDEST PUSH2 0xF13 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 PUSH2 0x2AD6 PUSH2 0x28A0 JUMP JUMPDEST PUSH2 0x2AE1 DUP5 DUP5 DUP5 PUSH2 0x3BCC JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x2AF1 PUSH2 0x3CCE JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x520B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0xFF NOT AND DUP2 SSTORE PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA CALLER JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x2BCE JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2BC2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51EB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2C56 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 0x2C7A SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH4 0x24A41B43 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2CFB JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x2CF8 SWAP2 DUP2 ADD SWAP1 PUSH2 0x4F55 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2D23 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51EB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x2D53 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH2 0xF3D DUP4 DUP4 PUSH2 0x3CFD JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD ISZERO DUP1 ISZERO SWAP1 PUSH2 0x2DCC JUMPI POP DUP1 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x2DCA DUP3 PUSH2 0x2937 JUMP JUMPDEST EQ JUMPDEST DUP2 MLOAD SWAP1 PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH4 0x21DF5FA5 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x2DFA DUP3 DUP5 PUSH2 0x4E8D JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x2E37 JUMPI PUSH2 0x2E37 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP7 DUP7 DUP5 PUSH2 0x2A97 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2E48 DUP4 PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x2E5B DUP2 PUSH4 0x162FC85 PUSH1 0xE1 SHL PUSH2 0x3D52 JUMP JUMPDEST PUSH2 0x2E64 JUMPI POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH4 0x5EE0C7DD CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2ECC 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 0x2EF0 SWAP2 SWAP1 PUSH2 0x5096 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL EQ PUSH2 0xF13 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH4 0x81784A51 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 SWAP1 PUSH2 0x4EA0 JUMP JUMPDEST PUSH0 PUSH2 0x2F30 DUP4 DUP4 PUSH2 0x3A8D JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2F46 JUMPI PUSH2 0x2F46 PUSH2 0x45E6 JUMP JUMPDEST EQ ISZERO DUP1 ISZERO PUSH2 0x2F66 JUMPI POP PUSH1 0x2 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2F63 JUMPI PUSH2 0x2F63 PUSH2 0x45E6 JUMP JUMPDEST EQ ISZERO JUMPDEST ISZERO PUSH2 0xF3D JUMPI PUSH1 0x40 MLOAD PUSH4 0xD08EF1FF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x2F8E DUP6 PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x2FA1 DUP2 PUSH4 0x162FC85 PUSH1 0xE1 SHL PUSH2 0x3D52 JUMP JUMPDEST PUSH2 0x2FAB JUMPI POP PUSH2 0xF13 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH4 0x62EB345E CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP10 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP9 SWAP1 MSTORE PUSH1 0x84 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0xA4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xC4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3021 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 0x3045 SWAP2 SWAP1 PUSH2 0x5096 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x31759A2F PUSH1 0xE1 SHL EQ PUSH2 0x307A JUMPI DUP1 PUSH1 0x40 MLOAD PUSH4 0x81784A51 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 SWAP1 PUSH2 0x4EA0 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x308A PUSH2 0x28A0 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x520B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR DUP2 SSTORE PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 CALLER PUSH2 0x2B2A JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 GT ISZERO PUSH2 0x30FD JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x80 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3141 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB611743 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x5 DUP5 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP9 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP8 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD SWAP2 DUP3 MSTORE PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x31BD DUP5 DUP5 PUSH2 0x3D6D JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x31DE JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x31DE JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x31F3 JUMPI PUSH2 0x31EB PUSH2 0x3D80 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x815 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x321D 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 0xAFB JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x3230 JUMPI PUSH2 0x322B PUSH2 0x3D99 JUMP JUMPDEST PUSH2 0x3249 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND EXTCODESIZE ISZERO PUSH2 0x2E37 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x3292 SWAP1 DUP9 SWAP1 DUP9 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x50B1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x32CC JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x32C9 SWAP2 DUP2 ADD SWAP1 PUSH2 0x5096 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x3333 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x32F9 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 0x32FE JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH0 SUB PUSH2 0x332B JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP3 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ PUSH2 0x307A JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH2 0x3378 DUP4 PUSH2 0x2DA6 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x60 SHR DUP2 ISZERO DUP1 ISZERO PUSH2 0x3394 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ ISZERO JUMPDEST ISZERO PUSH2 0x33B2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4ACE04F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 ISZERO DUP1 PUSH2 0x33CA JUMPI POP TIMESTAMP DUP5 PUSH2 0x160 ADD MLOAD PUSH5 0xFFFFFFFFFF AND GT JUMPDEST DUP5 MLOAD SWAP1 PUSH2 0x33ED JUMPI PUSH1 0x40 MLOAD PUSH4 0x422552F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP PUSH2 0x33F9 DUP2 PUSH1 0x2 PUSH2 0x2F25 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD DUP4 SWAP1 DUP1 DUP3 GT ISZERO PUSH2 0x342A JUMPI PUSH1 0x40 MLOAD PUSH4 0x17D3B4F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST POP POP PUSH0 PUSH0 DUP5 GT SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x346F 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 0x3493 SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP PUSH2 0x34A0 DUP2 PUSH1 0x3 PUSH2 0x2F25 JUMP JUMPDEST DUP6 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE DUP2 ISZERO PUSH2 0x3529 JUMPI PUSH0 PUSH2 0x34C3 DUP8 PUSH0 ADD MLOAD PUSH2 0x10B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1DDA2899 PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x1DDA2899 SWAP1 PUSH2 0x34F6 SWAP1 DUP5 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x50E3 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x350D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x351F JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP PUSH2 0x3583 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x76185FF1 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0x76185FF1 SWAP1 PUSH2 0x3555 SWAP1 DUP10 SWAP1 PUSH1 0x4 ADD PUSH2 0x4B6B JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x356C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x357E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH2 0x3592 DUP4 PUSH0 DUP9 PUSH1 0x20 ADD MLOAD PUSH2 0x29A0 JUMP JUMPDEST DUP6 MLOAD PUSH1 0x40 MLOAD DUP7 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0x54F4A270EA08F88DC23B2520D6B063FECB24D956C4496F447926D736338F545E SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP5 ISZERO PUSH2 0x35E9 JUMPI DUP6 MLOAD PUSH2 0x35E4 SWAP1 DUP7 PUSH2 0x3DA4 JUMP JUMPDEST PUSH2 0x307A JUMP JUMPDEST DUP6 MLOAD PUSH2 0x307A SWAP1 PUSH2 0x3E8B JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x3603 SWAP1 PUSH2 0x4A87 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 0x362F SWAP1 PUSH2 0x4A87 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x367A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3651 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x367A 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 0x365D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x3690 DUP4 PUSH2 0x3F79 JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x36AE JUMPI PUSH2 0x36AE PUSH2 0x42C6 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x36D8 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0x36E2 JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x3747 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9CFEA583 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 0xAFB JUMP JUMPDEST POP PUSH2 0x3753 DUP4 PUSH1 0x1 PUSH2 0x28D0 JUMP JUMPDEST PUSH2 0x3788 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP6 DUP6 PUSH2 0x2A97 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH4 0x2E2D2984 DUP4 CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP5 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x37E6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x37F8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x380D CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x7CFFF908A4B583F36430B25D75964C458D8EDE8A99BD61BE750E97EE1B2F3A96 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3851 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x3885 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7A2EE8B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0x8C3AA5F43A388513435861BF27DFAD7829CD248696FED367C62D441F62954496 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x38F4 PUSH2 0x4050 JUMP JUMPDEST PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3919 PUSH2 0x38EC JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 PUSH2 0x3932 DUP5 DUP3 PUSH2 0x5110 JUMP JUMPDEST POP PUSH1 0x1 DUP2 ADD PUSH2 0xF13 DUP4 DUP3 PUSH2 0x5110 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079302 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 DUP1 PUSH2 0x399C JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x3A5D JUMPI PUSH0 PUSH2 0x39AB DUP6 PUSH2 0x2823 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x39D7 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x39EA JUMPI POP PUSH2 0x39E8 DUP2 DUP6 PUSH2 0x269A JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x3A13 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA9FBF51F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST DUP3 ISZERO PUSH2 0x3A5B JUMPI DUP5 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP JUMPDEST PUSH0 SWAP4 DUP5 MSTORE PUSH1 0x4 ADD PUSH1 0x20 MSTORE POP POP PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3AB6 JUMPI PUSH2 0x3AB6 PUSH2 0x45E6 JUMP JUMPDEST DUP2 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3AD1 JUMPI PUSH2 0x3AD1 PUSH2 0x45E6 JUMP JUMPDEST EQ PUSH2 0x3AF3 JUMPI DUP4 DUP4 PUSH1 0x40 MLOAD PUSH4 0x502C9A5F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP3 SWAP2 SWAP1 PUSH2 0x4ED0 JUMP JUMPDEST SLOAD PUSH1 0xFF AND SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3B27 JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 PUSH2 0x3B33 DUP4 DUP4 PUSH0 PUSH2 0x2ACD JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0xF3D JUMPI PUSH1 0x40 MLOAD PUSH4 0x39E35637 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x3BBB JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x3BAF JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x3BE5 DUP6 PUSH2 0x3941 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x3C01 JUMPI PUSH2 0x3C01 DUP2 DUP6 DUP8 PUSH2 0x4069 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x3C3D JUMPI PUSH2 0x3C1C PUSH0 DUP7 PUSH0 PUSH0 PUSH2 0x397A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH0 NOT ADD SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND ISZERO PUSH2 0x3C6D JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0x2 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP9 SWAP4 SWAP2 DUP6 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x520B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0xFF AND PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0x8DFC202B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3D06 DUP3 PUSH2 0x40CD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x3D4A JUMPI PUSH2 0xF3D DUP3 DUP3 PUSH2 0x31B0 JUMP JUMPDEST PUSH2 0xA27 PUSH2 0x4130 JUMP JUMPDEST PUSH0 PUSH2 0x3D5C DUP4 PUSH2 0x414F JUMP JUMPDEST DUP1 ISZERO PUSH2 0x249E JUMPI POP PUSH2 0x249E DUP4 DUP4 PUSH2 0x419A JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH2 0x3DAE DUP4 PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x3DC1 DUP2 PUSH4 0x162FC85 PUSH1 0xE1 SHL PUSH2 0x3D52 JUMP JUMPDEST PUSH2 0x3DCA JUMPI POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH4 0xD6281D3E CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3E32 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 0x3E56 SWAP2 SWAP1 PUSH2 0x5096 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x6B140E9F PUSH1 0xE1 SHL EQ PUSH2 0xF13 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH4 0x81784A51 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 SWAP1 PUSH2 0x4EA0 JUMP JUMPDEST PUSH0 PUSH2 0x3E95 DUP3 PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x3EA8 DUP2 PUSH4 0x162FC85 PUSH1 0xE1 SHL PUSH2 0x3D52 JUMP JUMPDEST PUSH2 0x3EB0 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH4 0xE8E617B7 PUSH3 0x249F0 CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP8 CALL SWAP4 POP POP POP POP DUP1 ISZERO PUSH2 0x3F33 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x3F30 SWAP2 DUP2 ADD SWAP1 PUSH2 0x5096 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xF3D JUMPI PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP2 MSTORE DUP3 SWAP1 PUSH32 0x6CE8016F81523F240956BCA9A698E643D09E84E7D0E931470B1016BAF1027BD0 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0x3FB7 JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x3FE3 JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x4001 JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x4019 JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x402D JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x403F JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x815 JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x4059 PUSH2 0x27D9 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x4074 DUP4 DUP4 DUP4 PUSH2 0x41BE JUMP JUMPDEST PUSH2 0xF3D JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x40A2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7E273289 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x177E802F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x4102 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51EB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x4161 DUP3 PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH2 0x419A JUMP JUMPDEST ISZERO PUSH2 0x418E JUMPI PUSH0 DUP1 PUSH2 0x417A DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x4222 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH2 0x2AE1 JUMPI POP ISZERO SWAP4 SWAP3 POP POP POP JUMP JUMPDEST POP PUSH0 SWAP2 SWAP1 POP JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x41A7 DUP6 DUP6 PUSH2 0x4222 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH2 0x41B5 JUMPI POP DUP1 JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x2AE1 JUMPI POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x41F7 JUMPI POP PUSH2 0x41F7 DUP5 DUP5 PUSH2 0x269A JUMP JUMPDEST DUP1 PUSH2 0x2AE1 JUMPI POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x4210 DUP4 PUSH2 0x285A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x4 DUP4 SWAP1 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 PUSH1 0x24 DUP2 DUP9 PUSH2 0x7530 STATICCALL SWAP3 POP PUSH0 MLOAD ISZERO ISZERO PUSH1 0x1F RETURNDATASIZE GT AND SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x26EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x427B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x249E DUP2 PUSH2 0x4256 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 PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x249E PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4286 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x42FD JUMPI PUSH2 0x42FD PUSH2 0x42C6 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x4312 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 DUP4 ADD PUSH0 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 GT ISZERO PUSH2 0x4331 JUMPI PUSH2 0x4331 PUSH2 0x42C6 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x435F JUMPI PUSH2 0x435F PUSH2 0x42C6 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP8 LT ISZERO PUSH2 0x4376 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE DUP1 SWAP5 POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x26EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x43B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x43CD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x43D9 DUP7 DUP3 DUP8 ADD PUSH2 0x4303 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x43F4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4400 DUP7 DUP3 DUP8 ADD PUSH2 0x4303 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x4411 DUP2 PUSH2 0x4392 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x442C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4444 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x444F DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x4195 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4482 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x448A PUSH2 0x42DA JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0x44F9 PUSH2 0x140 DUP4 ADD PUSH2 0x445D JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x450C PUSH2 0x160 DUP4 ADD PUSH2 0x445D JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x4195 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4547 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4551 DUP7 DUP7 PUSH2 0x4471 JUMP JUMPDEST SWAP4 POP PUSH2 0x180 DUP6 ADD CALLDATALOAD PUSH2 0x4562 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP3 POP PUSH2 0x1A0 DUP6 ADD CALLDATALOAD PUSH2 0x4573 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP2 POP PUSH2 0x4582 PUSH2 0x1C0 DUP7 ADD PUSH2 0x4518 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x459F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x45AA DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x45BA DUP2 PUSH2 0x4392 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 0x45DB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x249E DUP2 PUSH2 0x4392 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x26EF JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0x4623 DUP4 PUSH2 0x45FA JUMP JUMPDEST SWAP2 SWAP1 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x463A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4645 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x465F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x466B DUP6 DUP3 DUP7 ADD PUSH2 0x4303 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4686 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x469B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x46AB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x46C0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x46D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x26EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x46FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4709 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4719 DUP2 PUSH2 0x46E1 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2983 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x340 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4749 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4753 DUP7 DUP7 PUSH2 0x4724 JUMP JUMPDEST SWAP4 POP PUSH2 0x4763 DUP7 PUSH2 0x180 DUP8 ADD PUSH2 0x4471 JUMP JUMPDEST SWAP3 POP PUSH2 0x300 DUP6 ADD CALLDATALOAD PUSH2 0x4774 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP2 POP PUSH2 0x4582 PUSH2 0x320 DUP7 ADD PUSH2 0x4518 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4797 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x47A1 DUP7 DUP7 PUSH2 0x4724 JUMP JUMPDEST SWAP7 PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP7 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP6 PUSH2 0x1C0 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x26EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x47DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x47E7 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4719 DUP2 PUSH2 0x47BE JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4808 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x481D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x482D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4842 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP5 ADD ADD GT ISZERO PUSH2 0x46D1 JUMPI PUSH0 PUSH0 REVERT 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 0x48AD JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x4898 DUP6 DUP4 MLOAD PUSH2 0x4286 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x487C JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x48CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x48D7 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x48E7 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4908 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4914 DUP8 DUP3 DUP9 ADD PUSH2 0x4303 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1A0 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4932 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x493C DUP5 DUP5 PUSH2 0x4724 JUMP JUMPDEST SWAP5 PUSH2 0x180 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x4961 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x496C DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD PUSH2 0x4983 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x499F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x49CF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x49DA DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x49F1 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x4A01 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4A1D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4A28 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4719 DUP2 PUSH2 0x4392 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4A4A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4A55 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x4411 DUP2 PUSH2 0x4392 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4A7D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x249E DUP4 DUP4 PUSH2 0x4724 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4A9B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x2983 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4AC9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x249E DUP2 PUSH2 0x4392 JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0x4B50 PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP2 ADD MLOAD PUSH2 0xF3D PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST PUSH2 0x180 DUP2 ADD PUSH2 0x815 DUP3 DUP5 PUSH2 0x4AD4 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4B8B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x4B96 DUP2 PUSH2 0x4392 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x4719 DUP2 PUSH2 0x4392 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 0x40 DUP2 MSTORE PUSH0 PUSH0 DUP6 SLOAD PUSH2 0x4BE0 DUP2 PUSH2 0x4A87 JUMP JUMPDEST DUP1 PUSH1 0x40 DUP7 ADD MSTORE PUSH1 0x1 DUP3 AND PUSH0 DUP2 EQ PUSH2 0x4BFE JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x4C1A JUMPI PUSH2 0x4C4B JUMP JUMPDEST PUSH1 0xFF NOT DUP4 AND PUSH1 0x60 DUP8 ADD MSTORE PUSH1 0x60 DUP3 ISZERO ISZERO PUSH1 0x5 SHL DUP8 ADD ADD SWAP4 POP PUSH2 0x4C4B JUMP JUMPDEST DUP9 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x4C42 JUMPI DUP2 SLOAD DUP9 DUP3 ADD PUSH1 0x60 ADD MSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x20 ADD PUSH2 0x4C23 JUMP JUMPDEST DUP8 ADD PUSH1 0x60 ADD SWAP5 POP POP JUMPDEST POP POP POP DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x4C61 DUP2 DUP6 DUP8 PUSH2 0x4BA7 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0xF3D JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x4C90 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2E37 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x4C9C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT ISZERO PUSH2 0x4CC6 JUMPI PUSH2 0x4CC6 PUSH2 0x42C6 JUMP JUMPDEST PUSH2 0x4CDA DUP4 PUSH2 0x4CD4 DUP4 SLOAD PUSH2 0x4A87 JUMP JUMPDEST DUP4 PUSH2 0x4C6B JUMP JUMPDEST PUSH0 PUSH1 0x1F DUP5 GT PUSH1 0x1 DUP2 EQ PUSH2 0x4D0B JUMPI PUSH0 DUP6 ISZERO PUSH2 0x4CF4 JUMPI POP DUP4 DUP3 ADD CALLDATALOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP7 SWAP1 SHL OR DUP4 SSTORE PUSH2 0x2E37 JUMP JUMPDEST PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP8 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4D3A JUMPI DUP7 DUP6 ADD CALLDATALOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x4D1A JUMP JUMPDEST POP DUP7 DUP3 LT ISZERO PUSH2 0x4D56 JUMPI PUSH0 NOT PUSH1 0xF8 DUP9 PUSH1 0x3 SHL AND SHR NOT DUP5 DUP8 ADD CALLDATALOAD AND DUP2 SSTORE JUMPDEST POP POP PUSH1 0x1 DUP6 PUSH1 0x1 SHL ADD DUP4 SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4D75 DUP5 PUSH2 0x45FA JUMP JUMPDEST DUP4 DUP3 MSTORE PUSH2 0x4D81 DUP4 PUSH2 0x45FA JUMP JUMPDEST DUP3 PUSH1 0x20 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4D9F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x249E DUP4 DUP4 PUSH2 0x4471 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4DB9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x249E DUP3 PUSH2 0x445D JUMP JUMPDEST DUP1 CALLDATALOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x40 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x60 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x80 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0xA0 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0xC0 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0xE0 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH2 0x100 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH2 0x120 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH2 0x4E2F PUSH2 0x140 DUP3 ADD PUSH2 0x445D JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND PUSH2 0x140 DUP4 ADD MSTORE PUSH2 0x4E49 PUSH2 0x160 DUP3 ADD PUSH2 0x445D JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP2 AND PUSH2 0x160 DUP5 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0x4E6B DUP3 DUP6 PUSH2 0x4DC2 JUMP JUMPDEST PUSH2 0x249E PUSH2 0x180 DUP4 ADD DUP5 PUSH2 0x4AD4 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 0x815 JUMPI PUSH2 0x815 PUSH2 0x4E79 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4EC5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x249E DUP2 PUSH2 0x47BE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0x40 DUP2 ADD PUSH2 0x4D81 DUP4 PUSH2 0x45FA JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0x4EF8 DUP3 DUP8 PUSH2 0x4DC2 JUMP JUMPDEST DUP5 PUSH2 0x180 DUP4 ADD MSTORE DUP4 PUSH2 0x1A0 DUP4 ADD MSTORE DUP3 PUSH2 0x1C0 DUP4 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x200 DUP2 ADD PUSH2 0x4F25 DUP3 DUP9 PUSH2 0x4DC2 JUMP JUMPDEST PUSH2 0x180 DUP3 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH2 0x1A0 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH2 0x1C0 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1E0 SWAP1 SWAP2 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4F65 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4F79 DUP5 PUSH2 0x45FA JUMP JUMPDEST SWAP3 DUP2 MSTORE PUSH1 0x20 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4F90 DUP5 PUSH2 0x45FA JUMP JUMPDEST SWAP3 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x20 SWAP1 SWAP2 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x4FD1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x4FEA JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x4FFE JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP 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 0x4C61 DUP2 DUP6 PUSH2 0x5005 JUMP JUMPDEST PUSH0 PUSH2 0x2AE1 PUSH2 0x503F DUP4 DUP7 PUSH2 0x5005 JUMP JUMPDEST DUP5 PUSH2 0x5005 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x815 JUMPI PUSH2 0x815 PUSH2 0x4E79 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x815 JUMPI PUSH2 0x815 PUSH2 0x4E79 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x815 JUMPI PUSH2 0x815 PUSH2 0x4E79 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x50A6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x249E DUP2 PUSH2 0x4256 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x4C61 SWAP1 DUP4 ADD DUP5 PUSH2 0x4286 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP2 MSTORE PUSH2 0x1C0 DUP2 ADD PUSH2 0x5101 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x4AD4 JUMP JUMPDEST DUP3 PUSH2 0x1A0 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5129 JUMPI PUSH2 0x5129 PUSH2 0x42C6 JUMP JUMPDEST PUSH2 0x513D DUP2 PUSH2 0x5137 DUP5 SLOAD PUSH2 0x4A87 JUMP JUMPDEST DUP5 PUSH2 0x4C6B JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x516F JUMPI PUSH0 DUP4 ISZERO PUSH2 0x5158 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 0x2E37 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x519E JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x517E JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x51BB 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 INVALID DUP1 0xBB 0x2B PUSH4 0x8CC20BC4 0xD0 0xA6 0xD PUSH7 0x940F3AB4A00C1D PUSH28 0x313497CA82FB0B4AB0079300360894A13BA1A3210667C828492DB98D 0xCA RETURNDATACOPY KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCCD5ED15C6E187E77E9AEE8 DUP2 DUP5 0xC2 0x1F 0x4F 0x21 DUP3 0xAB PC 0x27 0xCB EXTCODESIZE PUSH31 0x7FBEDCD63F03300A26469706673582212205C4657BF2D579A6DA6C96909AD 0xB5 EXP SWAP11 0xD7 DUP6 0x1F 0xD2 DELEGATECALL LOG2 0xC9 GASPRICE 0xE9 PUSH6 0x420F20889A30 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"2428:36682:24:-:0;;;1084:4:76;1041:48;;14256:165:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;14304:32:24;;14300:61;;14345:16;;-1:-1:-1;;;14345:16:24;;;;;;;;;;;14300:61;14367:22;:20;:22::i;:::-;-1:-1:-1;;;;;14395:21:24;;;2428:36682;;7709:422:75;3147:66;7898:15;;;;;;;7894:76;;;7936:23;;-1:-1:-1;;;7936:23:75;;;;;;;;;;;7894:76;7983:14;;-1:-1:-1;;;;;7983:14:75;;;:34;7979:146;;8033:33;;-1:-1:-1;;;;;;8033:33:75;-1:-1:-1;;;;;8033:33:75;;;;;8085:29;;477:50:125;;;8085:29:75;;465:2:125;450:18;8085:29:75;;;;;;;7979:146;7758:373;7709:422::o;14:314:125:-;108:6;161:2;149:9;140:7;136:23;132:32;129:52;;;177:1;174;167:12;129:52;203:16;;-1:-1:-1;;;;;248:31:125;;238:42;;228:70;;294:1;291;284:12;228:70;317:5;14:314;-1:-1:-1;;;14:314:125:o;333:200::-;2428:36682:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@UPGRADE_INTERFACE_VERSION_23454":{"entryPoint":null,"id":23454,"parameterSlots":0,"returnSlots":0},"@__ERC721_init_17633":{"entryPoint":10241,"id":17633,"parameterSlots":2,"returnSlots":0},"@__ERC721_init_unchained_17661":{"entryPoint":14609,"id":17661,"parameterSlots":2,"returnSlots":0},"@__Pausable_init_18950":{"entryPoint":10259,"id":18950,"parameterSlots":0,"returnSlots":0},"@__PolicyPool_init_unchained_8740":{"entryPoint":10267,"id":8740,"parameterSlots":1,"returnSlots":0},"@_approve_18477":{"entryPoint":10387,"id":18477,"parameterSlots":3,"returnSlots":0},"@_approve_18551":{"entryPoint":14714,"id":18551,"parameterSlots":4,"returnSlots":0},"@_authorizeUpgrade_8763":{"entryPoint":11244,"id":8763,"parameterSlots":1,"returnSlots":0},"@_baseURI_10890":{"entryPoint":13812,"id":10890,"parameterSlots":0,"returnSlots":1},"@_changeExposure_10586":{"entryPoint":10656,"id":10586,"parameterSlots":3,"returnSlots":0},"@_checkAuthorized_18097":{"entryPoint":16489,"id":18097,"parameterSlots":3,"returnSlots":0},"@_checkInitializing_23342":{"entryPoint":14572,"id":23342,"parameterSlots":0,"returnSlots":0},"@_checkNonPayable_23119":{"entryPoint":16688,"id":23119,"parameterSlots":0,"returnSlots":0},"@_checkNotDelegated_23548":{"entryPoint":11613,"id":23548,"parameterSlots":0,"returnSlots":0},"@_checkProxy_23532":{"entryPoint":11080,"id":23532,"parameterSlots":0,"returnSlots":0},"@_componentStatus_9292":{"entryPoint":14989,"id":9292,"parameterSlots":2,"returnSlots":1},"@_contextSuffixLength_18671":{"entryPoint":null,"id":18671,"parameterSlots":0,"returnSlots":1},"@_deposit_9403":{"entryPoint":14099,"id":9403,"parameterSlots":3,"returnSlots":0},"@_getApproved_18024":{"entryPoint":10330,"id":18024,"parameterSlots":1,"returnSlots":1},"@_getERC721Storage_17617":{"entryPoint":null,"id":17617,"parameterSlots":0,"returnSlots":1},"@_getInitializableStorage_23433":{"entryPoint":10201,"id":23433,"parameterSlots":0,"returnSlots":1},"@_getPausableStorage_18912":{"entryPoint":null,"id":18912,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_23419":{"entryPoint":null,"id":23419,"parameterSlots":0,"returnSlots":1},"@_isAuthorized_18060":{"entryPoint":16830,"id":18060,"parameterSlots":3,"returnSlots":1},"@_isInitializing_23410":{"entryPoint":16464,"id":23410,"parameterSlots":0,"returnSlots":1},"@_mint_18273":{"entryPoint":15102,"id":18273,"parameterSlots":2,"returnSlots":0},"@_msgSender_18654":{"entryPoint":null,"id":18654,"parameterSlots":0,"returnSlots":1},"@_notifyCancellation_10880":{"entryPoint":12164,"id":10880,"parameterSlots":4,"returnSlots":0},"@_notifyExpiration_10770":{"entryPoint":16011,"id":10770,"parameterSlots":1,"returnSlots":0},"@_notifyPayout_10715":{"entryPoint":15780,"id":10715,"parameterSlots":2,"returnSlots":0},"@_notifyReplacement_10822":{"entryPoint":11838,"id":10822,"parameterSlots":2,"returnSlots":0},"@_ownerOf_18004":{"entryPoint":14657,"id":18004,"parameterSlots":1,"returnSlots":1},"@_pause_19021":{"entryPoint":12418,"id":19021,"parameterSlots":0,"returnSlots":0},"@_requireCompActiveOrDeprecated_9342":{"entryPoint":12069,"id":9342,"parameterSlots":2,"returnSlots":0},"@_requireCompActive_9312":{"entryPoint":10448,"id":9312,"parameterSlots":2,"returnSlots":0},"@_requireNotPaused_18984":{"entryPoint":10400,"id":18984,"parameterSlots":0,"returnSlots":0},"@_requireOwned_18625":{"entryPoint":10275,"id":18625,"parameterSlots":1,"returnSlots":1},"@_requirePaused_18997":{"entryPoint":15566,"id":18997,"parameterSlots":0,"returnSlots":0},"@_resolvePolicy_10534":{"entryPoint":13167,"id":10534,"parameterSlots":3,"returnSlots":0},"@_safeMint_18318":{"entryPoint":10633,"id":18318,"parameterSlots":3,"returnSlots":0},"@_safeTransferFrom_25392":{"entryPoint":15199,"id":25392,"parameterSlots":5,"returnSlots":1},"@_setApprovalForAll_18596":{"entryPoint":12545,"id":18596,"parameterSlots":3,"returnSlots":0},"@_setImplementation_22899":{"entryPoint":16589,"id":22899,"parameterSlots":1,"returnSlots":0},"@_setTreasury_8815":{"entryPoint":14430,"id":8815,"parameterSlots":1,"returnSlots":0},"@_transferIfNonZero_10261":{"entryPoint":11759,"id":10261,"parameterSlots":4,"returnSlots":0},"@_trySupportsInterface_33532":{"entryPoint":16930,"id":33532,"parameterSlots":2,"returnSlots":2},"@_unpause_19045":{"entryPoint":10985,"id":19045,"parameterSlots":0,"returnSlots":0},"@_update_10928":{"entryPoint":10957,"id":10928,"parameterSlots":3,"returnSlots":1},"@_update_18223":{"entryPoint":15308,"id":18223,"parameterSlots":3,"returnSlots":1},"@_upgradeToAndCallUUPS_23599":{"entryPoint":11425,"id":23599,"parameterSlots":2,"returnSlots":0},"@_validatePolicy_10288":{"entryPoint":11686,"id":10288,"parameterSlots":1,"returnSlots":0},"@addComponent_9011":{"entryPoint":5572,"id":9011,"parameterSlots":2,"returnSlots":0},"@approve_17833":{"entryPoint":2588,"id":17833,"parameterSlots":2,"returnSlots":0},"@balanceOf_17727":{"entryPoint":8602,"id":17727,"parameterSlots":1,"returnSlots":1},"@bubbleRevert_26962":{"entryPoint":15769,"id":26962,"parameterSlots":0,"returnSlots":0},"@cancelPolicy_10230":{"entryPoint":6815,"id":10230,"parameterSlots":4,"returnSlots":0},"@changeComponentStatus_9240":{"entryPoint":4033,"id":9240,"parameterSlots":2,"returnSlots":0},"@checkOnERC721Received_25655":{"entryPoint":12880,"id":25655,"parameterSlots":5,"returnSlots":0},"@currency_8790":{"entryPoint":null,"id":8790,"parameterSlots":0,"returnSlots":1},"@delegatecallNoReturn_26924":{"entryPoint":15725,"id":26924,"parameterSlots":2,"returnSlots":1},"@depositWithPermit_9477":{"entryPoint":9381,"id":9477,"parameterSlots":7,"returnSlots":0},"@deposit_9424":{"entryPoint":9970,"id":9424,"parameterSlots":3,"returnSlots":0},"@expirePolicy_10320":{"entryPoint":9989,"id":10320,"parameterSlots":1,"returnSlots":0},"@extractRiskModule_8267":{"entryPoint":null,"id":8267,"parameterSlots":1,"returnSlots":1},"@functionDelegateCall_25956":{"entryPoint":12720,"id":25956,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_31145":{"entryPoint":null,"id":31145,"parameterSlots":1,"returnSlots":1},"@getApproved_17850":{"entryPoint":2568,"id":17850,"parameterSlots":1,"returnSlots":1},"@getComponentStatus_9256":{"entryPoint":null,"id":9256,"parameterSlots":1,"returnSlots":1},"@getExposure_10663":{"entryPoint":null,"id":10663,"parameterSlots":1,"returnSlots":2},"@getImplementation_22872":{"entryPoint":null,"id":22872,"parameterSlots":0,"returnSlots":1},"@getPolicyHash_10372":{"entryPoint":null,"id":10372,"parameterSlots":1,"returnSlots":1},"@hash_8248":{"entryPoint":10551,"id":8248,"parameterSlots":1,"returnSlots":1},"@initialize_8706":{"entryPoint":2236,"id":8706,"parameterSlots":3,"returnSlots":0},"@isActive_10358":{"entryPoint":null,"id":10358,"parameterSlots":1,"returnSlots":1},"@isApprovedForAll_17890":{"entryPoint":9882,"id":17890,"parameterSlots":2,"returnSlots":1},"@log10_34998":{"entryPoint":16249,"id":34998,"parameterSlots":1,"returnSlots":1},"@makePolicyId_8313":{"entryPoint":10507,"id":8313,"parameterSlots":2,"returnSlots":1},"@multicall_18774":{"entryPoint":8994,"id":18774,"parameterSlots":2,"returnSlots":1},"@name_17756":{"entryPoint":2075,"id":17756,"parameterSlots":0,"returnSlots":1},"@newPolicy_9752":{"entryPoint":2603,"id":9752,"parameterSlots":4,"returnSlots":1},"@ownerOf_17740":{"entryPoint":4276,"id":17740,"parameterSlots":1,"returnSlots":1},"@pause_8771":{"entryPoint":8690,"id":8771,"parameterSlots":0,"returnSlots":0},"@paused_18972":{"entryPoint":null,"id":18972,"parameterSlots":0,"returnSlots":1},"@proxiableUUID_23490":{"entryPoint":3933,"id":23490,"parameterSlots":0,"returnSlots":1},"@removeComponent_9190":{"entryPoint":7404,"id":9190,"parameterSlots":1,"returnSlots":0},"@replacePolicy_10077":{"entryPoint":4286,"id":10077,"parameterSlots":4,"returnSlots":1},"@resolvePolicy_10339":{"entryPoint":9247,"id":10339,"parameterSlots":2,"returnSlots":0},"@returnDataSize_26948":{"entryPoint":null,"id":26948,"parameterSlots":0,"returnSlots":1},"@returnData_26956":{"entryPoint":15744,"id":26956,"parameterSlots":0,"returnSlots":1},"@safeTransferFrom_17954":{"entryPoint":3875,"id":17954,"parameterSlots":3,"returnSlots":0},"@safeTransferFrom_17984":{"entryPoint":9223,"id":17984,"parameterSlots":4,"returnSlots":0},"@safeTransferFrom_25041":{"entryPoint":10903,"id":25041,"parameterSlots":4,"returnSlots":0},"@setApprovalForAll_17866":{"entryPoint":8983,"id":17866,"parameterSlots":2,"returnSlots":0},"@setBaseURI_10906":{"entryPoint":3960,"id":10906,"parameterSlots":2,"returnSlots":0},"@setExposureLimit_10634":{"entryPoint":8760,"id":10634,"parameterSlots":2,"returnSlots":0},"@setTreasury_8826":{"entryPoint":9958,"id":8826,"parameterSlots":1,"returnSlots":0},"@supportsERC165InterfaceUnchecked_33512":{"entryPoint":16794,"id":33512,"parameterSlots":2,"returnSlots":1},"@supportsERC165_33366":{"entryPoint":16719,"id":33366,"parameterSlots":1,"returnSlots":1},"@supportsInterface_17692":{"entryPoint":10122,"id":17692,"parameterSlots":1,"returnSlots":1},"@supportsInterface_19429":{"entryPoint":null,"id":19429,"parameterSlots":1,"returnSlots":1},"@supportsInterface_33386":{"entryPoint":15698,"id":33386,"parameterSlots":2,"returnSlots":1},"@supportsInterface_8728":{"entryPoint":2032,"id":8728,"parameterSlots":1,"returnSlots":1},"@symbol_17772":{"entryPoint":8698,"id":17772,"parameterSlots":0,"returnSlots":1},"@toString_31350":{"entryPoint":13956,"id":31350,"parameterSlots":1,"returnSlots":1},"@toUint128_35662":{"entryPoint":12490,"id":35662,"parameterSlots":1,"returnSlots":1},"@tokenURI_17808":{"entryPoint":9280,"id":17808,"parameterSlots":1,"returnSlots":1},"@transferFrom_17936":{"entryPoint":3728,"id":17936,"parameterSlots":3,"returnSlots":0},"@treasury_8836":{"entryPoint":null,"id":8836,"parameterSlots":0,"returnSlots":1},"@unpause_8779":{"entryPoint":3865,"id":8779,"parameterSlots":0,"returnSlots":0},"@upgradeToAndCall_22935":{"entryPoint":15613,"id":22935,"parameterSlots":2,"returnSlots":0},"@upgradeToAndCall_23510":{"entryPoint":3906,"id":23510,"parameterSlots":2,"returnSlots":0},"@withdraw_9537":{"entryPoint":9571,"id":9537,"parameterSlots":4,"returnSlots":1},"abi_decode_string":{"entryPoint":17155,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_struct_PolicyData":{"entryPoint":17521,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_struct_PolicyData_calldata":{"entryPoint":18212,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":18956,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":17805,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr":{"entryPoint":18617,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_bool":{"entryPoint":18379,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes_memory_ptr":{"entryPoint":17961,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":17459,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":18423,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":20149,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":17003,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4_fromMemory":{"entryPoint":20630,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IEToken_$14336_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IEToken_$14336t_contract$_IEToken_$14336_fromMemory":{"entryPoint":19322,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IEToken_$14336t_uint256t_address":{"entryPoint":19000,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_contract$_IEToken_$14336t_uint256t_addresst_address":{"entryPoint":18876,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_contract$_IEToken_$14336t_uint256t_addresst_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":18763,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_contract$_IPolicyPoolComponent_$14655":{"entryPoint":17867,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPoolComponent_$14655t_enum$_ComponentKind_$8398":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IPolicyPoolComponent_$14655t_enum$_ComponentStatus_$8392":{"entryPoint":18157,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IPremiumsAccount_$14743_fromMemory":{"entryPoint":19129,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IRiskModule_$14762":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IRiskModule_$14762t_uint256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_string_calldata_ptr":{"entryPoint":18037,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_address":{"entryPoint":17318,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptr":{"entryPoint":19052,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_struct$_PolicyData_$7744_memory_ptrt_addresst_uint96":{"entryPoint":18229,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_uint256":{"entryPoint":18720,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_uint256t_uint256t_uint256":{"entryPoint":18307,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptr":{"entryPoint":19854,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_addresst_addresst_uint96":{"entryPoint":17715,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_uint256":{"entryPoint":17436,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":20309,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint40":{"entryPoint":19881,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint40":{"entryPoint":17501,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint96":{"entryPoint":17688,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_bytes":{"entryPoint":20485,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string":{"entryPoint":17030,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string_calldata":{"entryPoint":19367,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_struct_PolicyData":{"entryPoint":19156,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_struct_PolicyData_calldata":{"entryPoint":19906,"id":null,"parameterSlots":2,"returnSlots":0},"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":20508,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":20529,"id":null,"parameterSlots":3,"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__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":20657,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256__to_t_address_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint256_t_uint256__to_t_address_t_address_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":7,"returnSlots":1},"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":8,"returnSlots":1},"abi_encode_tuple_t_address_t_struct$_PolicyData_$7744_memory_ptr_t_uint256__to_t_address_t_struct$_PolicyData_$7744_memory_ptr_t_uint256__fromStack_reversed":{"entryPoint":20707,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_address__to_t_address_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"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":18518,"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_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed":{"entryPoint":20128,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC20Metadata_$24925__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyHolder_$14449__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPoolComponent_$14655_t_enum$_ComponentKind_$8398__to_t_address_t_uint8__fromStack_reversed":{"entryPoint":20176,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_enum$_ComponentKind_$8398_t_enum$_ComponentStatus_$8392__to_t_uint8_t_uint8__fromStack_reversed":{"entryPoint":19816,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_enum$_ComponentKind_$8398_t_uint128__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":20355,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_enum$_ComponentKind_$8398_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":20332,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_enum$_ComponentStatus_$8392__to_t_uint8__fromStack_reversed":{"entryPoint":17942,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_128_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__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":17076,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_storage_t_string_calldata_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed":{"entryPoint":19407,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$7744_calldata_ptr_t_struct$_PolicyData_$7744_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr_t_struct$_PolicyData_$7744_memory_ptr__fromStack_reversed":{"entryPoint":20060,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$7744_calldata_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":20201,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$7744_calldata_ptr_t_uint256_t_uint256_t_uint256_t_address__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256_t_address__fromStack_reversed":{"entryPoint":20246,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr__fromStack_reversed":{"entryPoint":19307,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint128_t_uint128__to_t_uint128_t_uint128__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"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_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address_t_address_t_address__to_t_uint256_t_address_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"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_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint40_t_uint256__to_t_uint256_t_uint40_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_uint40":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":20412,"id":null,"parameterSlots":2,"returnSlots":2},"allocate_memory":{"entryPoint":17114,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_uint128":{"entryPoint":20568,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":20549,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint128":{"entryPoint":20599,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":20109,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":19563,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_calldata_ptr_to_t_string_storage":{"entryPoint":19631,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":20752,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":19079,"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_0x11":{"entryPoint":20089,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":17894,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":20392,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":17094,"id":null,"parameterSlots":0,"returnSlots":0},"validator_assert_enum_ComponentStatus":{"entryPoint":17914,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_address":{"entryPoint":17298,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_bool":{"entryPoint":18366,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_bytes4":{"entryPoint":16982,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_enum_ComponentStatus":{"entryPoint":18145,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:42329:125","nodeType":"YulBlock","src":"0:42329:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"58:87:125","nodeType":"YulBlock","src":"58:87:125","statements":[{"body":{"nativeSrc":"123:16:125","nodeType":"YulBlock","src":"123:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:125","nodeType":"YulLiteral","src":"132:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:125","nodeType":"YulLiteral","src":"135:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:125","nodeType":"YulIdentifier","src":"125:6:125"},"nativeSrc":"125:12:125","nodeType":"YulFunctionCall","src":"125:12:125"},"nativeSrc":"125:12:125","nodeType":"YulExpressionStatement","src":"125:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"81:5:125","nodeType":"YulIdentifier","src":"81:5:125"},{"arguments":[{"name":"value","nativeSrc":"92:5:125","nodeType":"YulIdentifier","src":"92:5:125"},{"arguments":[{"kind":"number","nativeSrc":"103:3:125","nodeType":"YulLiteral","src":"103:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"108:10:125","nodeType":"YulLiteral","src":"108:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"99:3:125","nodeType":"YulIdentifier","src":"99:3:125"},"nativeSrc":"99:20:125","nodeType":"YulFunctionCall","src":"99:20:125"}],"functionName":{"name":"and","nativeSrc":"88:3:125","nodeType":"YulIdentifier","src":"88:3:125"},"nativeSrc":"88:32:125","nodeType":"YulFunctionCall","src":"88:32:125"}],"functionName":{"name":"eq","nativeSrc":"78:2:125","nodeType":"YulIdentifier","src":"78:2:125"},"nativeSrc":"78:43:125","nodeType":"YulFunctionCall","src":"78:43:125"}],"functionName":{"name":"iszero","nativeSrc":"71:6:125","nodeType":"YulIdentifier","src":"71:6:125"},"nativeSrc":"71:51:125","nodeType":"YulFunctionCall","src":"71:51:125"},"nativeSrc":"68:71:125","nodeType":"YulIf","src":"68:71:125"}]},"name":"validator_revert_bytes4","nativeSrc":"14:131:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"47:5:125","nodeType":"YulTypedName","src":"47:5:125","type":""}],"src":"14:131:125"},{"body":{"nativeSrc":"219:176:125","nodeType":"YulBlock","src":"219:176:125","statements":[{"body":{"nativeSrc":"265:16:125","nodeType":"YulBlock","src":"265:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"274:1:125","nodeType":"YulLiteral","src":"274:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"277:1:125","nodeType":"YulLiteral","src":"277:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"267:6:125","nodeType":"YulIdentifier","src":"267:6:125"},"nativeSrc":"267:12:125","nodeType":"YulFunctionCall","src":"267:12:125"},"nativeSrc":"267:12:125","nodeType":"YulExpressionStatement","src":"267:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"240:7:125","nodeType":"YulIdentifier","src":"240:7:125"},{"name":"headStart","nativeSrc":"249:9:125","nodeType":"YulIdentifier","src":"249:9:125"}],"functionName":{"name":"sub","nativeSrc":"236:3:125","nodeType":"YulIdentifier","src":"236:3:125"},"nativeSrc":"236:23:125","nodeType":"YulFunctionCall","src":"236:23:125"},{"kind":"number","nativeSrc":"261:2:125","nodeType":"YulLiteral","src":"261:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"232:3:125","nodeType":"YulIdentifier","src":"232:3:125"},"nativeSrc":"232:32:125","nodeType":"YulFunctionCall","src":"232:32:125"},"nativeSrc":"229:52:125","nodeType":"YulIf","src":"229:52:125"},{"nativeSrc":"290:36:125","nodeType":"YulVariableDeclaration","src":"290:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"316:9:125","nodeType":"YulIdentifier","src":"316:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"303:12:125","nodeType":"YulIdentifier","src":"303:12:125"},"nativeSrc":"303:23:125","nodeType":"YulFunctionCall","src":"303:23:125"},"variables":[{"name":"value","nativeSrc":"294:5:125","nodeType":"YulTypedName","src":"294:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"359:5:125","nodeType":"YulIdentifier","src":"359:5:125"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"335:23:125","nodeType":"YulIdentifier","src":"335:23:125"},"nativeSrc":"335:30:125","nodeType":"YulFunctionCall","src":"335:30:125"},"nativeSrc":"335:30:125","nodeType":"YulExpressionStatement","src":"335:30:125"},{"nativeSrc":"374:15:125","nodeType":"YulAssignment","src":"374:15:125","value":{"name":"value","nativeSrc":"384:5:125","nodeType":"YulIdentifier","src":"384:5:125"},"variableNames":[{"name":"value0","nativeSrc":"374:6:125","nodeType":"YulIdentifier","src":"374:6:125"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"150:245:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"185:9:125","nodeType":"YulTypedName","src":"185:9:125","type":""},{"name":"dataEnd","nativeSrc":"196:7:125","nodeType":"YulTypedName","src":"196:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"208:6:125","nodeType":"YulTypedName","src":"208:6:125","type":""}],"src":"150:245:125"},{"body":{"nativeSrc":"495:92:125","nodeType":"YulBlock","src":"495:92:125","statements":[{"nativeSrc":"505:26:125","nodeType":"YulAssignment","src":"505:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"517:9:125","nodeType":"YulIdentifier","src":"517:9:125"},{"kind":"number","nativeSrc":"528:2:125","nodeType":"YulLiteral","src":"528:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"513:3:125","nodeType":"YulIdentifier","src":"513:3:125"},"nativeSrc":"513:18:125","nodeType":"YulFunctionCall","src":"513:18:125"},"variableNames":[{"name":"tail","nativeSrc":"505:4:125","nodeType":"YulIdentifier","src":"505:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"547:9:125","nodeType":"YulIdentifier","src":"547:9:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"572:6:125","nodeType":"YulIdentifier","src":"572:6:125"}],"functionName":{"name":"iszero","nativeSrc":"565:6:125","nodeType":"YulIdentifier","src":"565:6:125"},"nativeSrc":"565:14:125","nodeType":"YulFunctionCall","src":"565:14:125"}],"functionName":{"name":"iszero","nativeSrc":"558:6:125","nodeType":"YulIdentifier","src":"558:6:125"},"nativeSrc":"558:22:125","nodeType":"YulFunctionCall","src":"558:22:125"}],"functionName":{"name":"mstore","nativeSrc":"540:6:125","nodeType":"YulIdentifier","src":"540:6:125"},"nativeSrc":"540:41:125","nodeType":"YulFunctionCall","src":"540:41:125"},"nativeSrc":"540:41:125","nodeType":"YulExpressionStatement","src":"540:41:125"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"400:187:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"464:9:125","nodeType":"YulTypedName","src":"464:9:125","type":""},{"name":"value0","nativeSrc":"475:6:125","nodeType":"YulTypedName","src":"475:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"486:4:125","nodeType":"YulTypedName","src":"486:4:125","type":""}],"src":"400:187:125"},{"body":{"nativeSrc":"642:239:125","nodeType":"YulBlock","src":"642:239:125","statements":[{"nativeSrc":"652:26:125","nodeType":"YulVariableDeclaration","src":"652:26:125","value":{"arguments":[{"name":"value","nativeSrc":"672:5:125","nodeType":"YulIdentifier","src":"672:5:125"}],"functionName":{"name":"mload","nativeSrc":"666:5:125","nodeType":"YulIdentifier","src":"666:5:125"},"nativeSrc":"666:12:125","nodeType":"YulFunctionCall","src":"666:12:125"},"variables":[{"name":"length","nativeSrc":"656:6:125","nodeType":"YulTypedName","src":"656:6:125","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"694:3:125","nodeType":"YulIdentifier","src":"694:3:125"},{"name":"length","nativeSrc":"699:6:125","nodeType":"YulIdentifier","src":"699:6:125"}],"functionName":{"name":"mstore","nativeSrc":"687:6:125","nodeType":"YulIdentifier","src":"687:6:125"},"nativeSrc":"687:19:125","nodeType":"YulFunctionCall","src":"687:19:125"},"nativeSrc":"687:19:125","nodeType":"YulExpressionStatement","src":"687:19:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"725:3:125","nodeType":"YulIdentifier","src":"725:3:125"},{"kind":"number","nativeSrc":"730:4:125","nodeType":"YulLiteral","src":"730:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"721:3:125","nodeType":"YulIdentifier","src":"721:3:125"},"nativeSrc":"721:14:125","nodeType":"YulFunctionCall","src":"721:14:125"},{"arguments":[{"name":"value","nativeSrc":"741:5:125","nodeType":"YulIdentifier","src":"741:5:125"},{"kind":"number","nativeSrc":"748:4:125","nodeType":"YulLiteral","src":"748:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"737:3:125","nodeType":"YulIdentifier","src":"737:3:125"},"nativeSrc":"737:16:125","nodeType":"YulFunctionCall","src":"737:16:125"},{"name":"length","nativeSrc":"755:6:125","nodeType":"YulIdentifier","src":"755:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"715:5:125","nodeType":"YulIdentifier","src":"715:5:125"},"nativeSrc":"715:47:125","nodeType":"YulFunctionCall","src":"715:47:125"},"nativeSrc":"715:47:125","nodeType":"YulExpressionStatement","src":"715:47:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"786:3:125","nodeType":"YulIdentifier","src":"786:3:125"},{"name":"length","nativeSrc":"791:6:125","nodeType":"YulIdentifier","src":"791:6:125"}],"functionName":{"name":"add","nativeSrc":"782:3:125","nodeType":"YulIdentifier","src":"782:3:125"},"nativeSrc":"782:16:125","nodeType":"YulFunctionCall","src":"782:16:125"},{"kind":"number","nativeSrc":"800:4:125","nodeType":"YulLiteral","src":"800:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"778:3:125","nodeType":"YulIdentifier","src":"778:3:125"},"nativeSrc":"778:27:125","nodeType":"YulFunctionCall","src":"778:27:125"},{"kind":"number","nativeSrc":"807:1:125","nodeType":"YulLiteral","src":"807:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"771:6:125","nodeType":"YulIdentifier","src":"771:6:125"},"nativeSrc":"771:38:125","nodeType":"YulFunctionCall","src":"771:38:125"},"nativeSrc":"771:38:125","nodeType":"YulExpressionStatement","src":"771:38:125"},{"nativeSrc":"818:57:125","nodeType":"YulAssignment","src":"818:57:125","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"833:3:125","nodeType":"YulIdentifier","src":"833:3:125"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"846:6:125","nodeType":"YulIdentifier","src":"846:6:125"},{"kind":"number","nativeSrc":"854:2:125","nodeType":"YulLiteral","src":"854:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"842:3:125","nodeType":"YulIdentifier","src":"842:3:125"},"nativeSrc":"842:15:125","nodeType":"YulFunctionCall","src":"842:15:125"},{"arguments":[{"kind":"number","nativeSrc":"863:2:125","nodeType":"YulLiteral","src":"863:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"859:3:125","nodeType":"YulIdentifier","src":"859:3:125"},"nativeSrc":"859:7:125","nodeType":"YulFunctionCall","src":"859:7:125"}],"functionName":{"name":"and","nativeSrc":"838:3:125","nodeType":"YulIdentifier","src":"838:3:125"},"nativeSrc":"838:29:125","nodeType":"YulFunctionCall","src":"838:29:125"}],"functionName":{"name":"add","nativeSrc":"829:3:125","nodeType":"YulIdentifier","src":"829:3:125"},"nativeSrc":"829:39:125","nodeType":"YulFunctionCall","src":"829:39:125"},{"kind":"number","nativeSrc":"870:4:125","nodeType":"YulLiteral","src":"870:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"825:3:125","nodeType":"YulIdentifier","src":"825:3:125"},"nativeSrc":"825:50:125","nodeType":"YulFunctionCall","src":"825:50:125"},"variableNames":[{"name":"end","nativeSrc":"818:3:125","nodeType":"YulIdentifier","src":"818:3:125"}]}]},"name":"abi_encode_string","nativeSrc":"592:289:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"619:5:125","nodeType":"YulTypedName","src":"619:5:125","type":""},{"name":"pos","nativeSrc":"626:3:125","nodeType":"YulTypedName","src":"626:3:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"634:3:125","nodeType":"YulTypedName","src":"634:3:125","type":""}],"src":"592:289:125"},{"body":{"nativeSrc":"1007:99:125","nodeType":"YulBlock","src":"1007:99:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1024:9:125","nodeType":"YulIdentifier","src":"1024:9:125"},{"kind":"number","nativeSrc":"1035:2:125","nodeType":"YulLiteral","src":"1035:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"1017:6:125","nodeType":"YulIdentifier","src":"1017:6:125"},"nativeSrc":"1017:21:125","nodeType":"YulFunctionCall","src":"1017:21:125"},"nativeSrc":"1017:21:125","nodeType":"YulExpressionStatement","src":"1017:21:125"},{"nativeSrc":"1047:53:125","nodeType":"YulAssignment","src":"1047:53:125","value":{"arguments":[{"name":"value0","nativeSrc":"1073:6:125","nodeType":"YulIdentifier","src":"1073:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"1085:9:125","nodeType":"YulIdentifier","src":"1085:9:125"},{"kind":"number","nativeSrc":"1096:2:125","nodeType":"YulLiteral","src":"1096:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1081:3:125","nodeType":"YulIdentifier","src":"1081:3:125"},"nativeSrc":"1081:18:125","nodeType":"YulFunctionCall","src":"1081:18:125"}],"functionName":{"name":"abi_encode_string","nativeSrc":"1055:17:125","nodeType":"YulIdentifier","src":"1055:17:125"},"nativeSrc":"1055:45:125","nodeType":"YulFunctionCall","src":"1055:45:125"},"variableNames":[{"name":"tail","nativeSrc":"1047:4:125","nodeType":"YulIdentifier","src":"1047:4:125"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"886:220:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"976:9:125","nodeType":"YulTypedName","src":"976:9:125","type":""},{"name":"value0","nativeSrc":"987:6:125","nodeType":"YulTypedName","src":"987:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"998:4:125","nodeType":"YulTypedName","src":"998:4:125","type":""}],"src":"886:220:125"},{"body":{"nativeSrc":"1143:95:125","nodeType":"YulBlock","src":"1143:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1160:1:125","nodeType":"YulLiteral","src":"1160:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1167:3:125","nodeType":"YulLiteral","src":"1167:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"1172:10:125","nodeType":"YulLiteral","src":"1172:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1163:3:125","nodeType":"YulIdentifier","src":"1163:3:125"},"nativeSrc":"1163:20:125","nodeType":"YulFunctionCall","src":"1163:20:125"}],"functionName":{"name":"mstore","nativeSrc":"1153:6:125","nodeType":"YulIdentifier","src":"1153:6:125"},"nativeSrc":"1153:31:125","nodeType":"YulFunctionCall","src":"1153:31:125"},"nativeSrc":"1153:31:125","nodeType":"YulExpressionStatement","src":"1153:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1200:1:125","nodeType":"YulLiteral","src":"1200:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"1203:4:125","nodeType":"YulLiteral","src":"1203:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"1193:6:125","nodeType":"YulIdentifier","src":"1193:6:125"},"nativeSrc":"1193:15:125","nodeType":"YulFunctionCall","src":"1193:15:125"},"nativeSrc":"1193:15:125","nodeType":"YulExpressionStatement","src":"1193:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1224:1:125","nodeType":"YulLiteral","src":"1224:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1227:4:125","nodeType":"YulLiteral","src":"1227:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1217:6:125","nodeType":"YulIdentifier","src":"1217:6:125"},"nativeSrc":"1217:15:125","nodeType":"YulFunctionCall","src":"1217:15:125"},"nativeSrc":"1217:15:125","nodeType":"YulExpressionStatement","src":"1217:15:125"}]},"name":"panic_error_0x41","nativeSrc":"1111:127:125","nodeType":"YulFunctionDefinition","src":"1111:127:125"},{"body":{"nativeSrc":"1284:209:125","nodeType":"YulBlock","src":"1284:209:125","statements":[{"nativeSrc":"1294:19:125","nodeType":"YulAssignment","src":"1294:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"1310:2:125","nodeType":"YulLiteral","src":"1310:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1304:5:125","nodeType":"YulIdentifier","src":"1304:5:125"},"nativeSrc":"1304:9:125","nodeType":"YulFunctionCall","src":"1304:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"1294:6:125","nodeType":"YulIdentifier","src":"1294:6:125"}]},{"nativeSrc":"1322:37:125","nodeType":"YulVariableDeclaration","src":"1322:37:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"1344:6:125","nodeType":"YulIdentifier","src":"1344:6:125"},{"kind":"number","nativeSrc":"1352:6:125","nodeType":"YulLiteral","src":"1352:6:125","type":"","value":"0x0180"}],"functionName":{"name":"add","nativeSrc":"1340:3:125","nodeType":"YulIdentifier","src":"1340:3:125"},"nativeSrc":"1340:19:125","nodeType":"YulFunctionCall","src":"1340:19:125"},"variables":[{"name":"newFreePtr","nativeSrc":"1326:10:125","nodeType":"YulTypedName","src":"1326:10:125","type":""}]},{"body":{"nativeSrc":"1434:22:125","nodeType":"YulBlock","src":"1434:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1436:16:125","nodeType":"YulIdentifier","src":"1436:16:125"},"nativeSrc":"1436:18:125","nodeType":"YulFunctionCall","src":"1436:18:125"},"nativeSrc":"1436:18:125","nodeType":"YulExpressionStatement","src":"1436:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"1377:10:125","nodeType":"YulIdentifier","src":"1377:10:125"},{"kind":"number","nativeSrc":"1389:18:125","nodeType":"YulLiteral","src":"1389:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1374:2:125","nodeType":"YulIdentifier","src":"1374:2:125"},"nativeSrc":"1374:34:125","nodeType":"YulFunctionCall","src":"1374:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"1413:10:125","nodeType":"YulIdentifier","src":"1413:10:125"},{"name":"memPtr","nativeSrc":"1425:6:125","nodeType":"YulIdentifier","src":"1425:6:125"}],"functionName":{"name":"lt","nativeSrc":"1410:2:125","nodeType":"YulIdentifier","src":"1410:2:125"},"nativeSrc":"1410:22:125","nodeType":"YulFunctionCall","src":"1410:22:125"}],"functionName":{"name":"or","nativeSrc":"1371:2:125","nodeType":"YulIdentifier","src":"1371:2:125"},"nativeSrc":"1371:62:125","nodeType":"YulFunctionCall","src":"1371:62:125"},"nativeSrc":"1368:88:125","nodeType":"YulIf","src":"1368:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1472:2:125","nodeType":"YulLiteral","src":"1472:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1476:10:125","nodeType":"YulIdentifier","src":"1476:10:125"}],"functionName":{"name":"mstore","nativeSrc":"1465:6:125","nodeType":"YulIdentifier","src":"1465:6:125"},"nativeSrc":"1465:22:125","nodeType":"YulFunctionCall","src":"1465:22:125"},"nativeSrc":"1465:22:125","nodeType":"YulExpressionStatement","src":"1465:22:125"}]},"name":"allocate_memory","nativeSrc":"1243:250:125","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"1273:6:125","nodeType":"YulTypedName","src":"1273:6:125","type":""}],"src":"1243:250:125"},{"body":{"nativeSrc":"1551:836:125","nodeType":"YulBlock","src":"1551:836:125","statements":[{"body":{"nativeSrc":"1600:16:125","nodeType":"YulBlock","src":"1600:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1609:1:125","nodeType":"YulLiteral","src":"1609:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1612:1:125","nodeType":"YulLiteral","src":"1612:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1602:6:125","nodeType":"YulIdentifier","src":"1602:6:125"},"nativeSrc":"1602:12:125","nodeType":"YulFunctionCall","src":"1602:12:125"},"nativeSrc":"1602:12:125","nodeType":"YulExpressionStatement","src":"1602:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"1579:6:125","nodeType":"YulIdentifier","src":"1579:6:125"},{"kind":"number","nativeSrc":"1587:4:125","nodeType":"YulLiteral","src":"1587:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"1575:3:125","nodeType":"YulIdentifier","src":"1575:3:125"},"nativeSrc":"1575:17:125","nodeType":"YulFunctionCall","src":"1575:17:125"},{"name":"end","nativeSrc":"1594:3:125","nodeType":"YulIdentifier","src":"1594:3:125"}],"functionName":{"name":"slt","nativeSrc":"1571:3:125","nodeType":"YulIdentifier","src":"1571:3:125"},"nativeSrc":"1571:27:125","nodeType":"YulFunctionCall","src":"1571:27:125"}],"functionName":{"name":"iszero","nativeSrc":"1564:6:125","nodeType":"YulIdentifier","src":"1564:6:125"},"nativeSrc":"1564:35:125","nodeType":"YulFunctionCall","src":"1564:35:125"},"nativeSrc":"1561:55:125","nodeType":"YulIf","src":"1561:55:125"},{"nativeSrc":"1625:34:125","nodeType":"YulVariableDeclaration","src":"1625:34:125","value":{"arguments":[{"name":"offset","nativeSrc":"1652:6:125","nodeType":"YulIdentifier","src":"1652:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"1639:12:125","nodeType":"YulIdentifier","src":"1639:12:125"},"nativeSrc":"1639:20:125","nodeType":"YulFunctionCall","src":"1639:20:125"},"variables":[{"name":"length","nativeSrc":"1629:6:125","nodeType":"YulTypedName","src":"1629:6:125","type":""}]},{"nativeSrc":"1668:28:125","nodeType":"YulVariableDeclaration","src":"1668:28:125","value":{"arguments":[{"name":"offset","nativeSrc":"1683:6:125","nodeType":"YulIdentifier","src":"1683:6:125"},{"kind":"number","nativeSrc":"1691:4:125","nodeType":"YulLiteral","src":"1691:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1679:3:125","nodeType":"YulIdentifier","src":"1679:3:125"},"nativeSrc":"1679:17:125","nodeType":"YulFunctionCall","src":"1679:17:125"},"variables":[{"name":"src","nativeSrc":"1672:3:125","nodeType":"YulTypedName","src":"1672:3:125","type":""}]},{"nativeSrc":"1705:16:125","nodeType":"YulVariableDeclaration","src":"1705:16:125","value":{"kind":"number","nativeSrc":"1720:1:125","nodeType":"YulLiteral","src":"1720:1:125","type":"","value":"0"},"variables":[{"name":"array_1","nativeSrc":"1709:7:125","nodeType":"YulTypedName","src":"1709:7:125","type":""}]},{"nativeSrc":"1730:13:125","nodeType":"YulVariableDeclaration","src":"1730:13:125","value":{"kind":"number","nativeSrc":"1742:1:125","nodeType":"YulLiteral","src":"1742:1:125","type":"","value":"0"},"variables":[{"name":"size","nativeSrc":"1734:4:125","nodeType":"YulTypedName","src":"1734:4:125","type":""}]},{"body":{"nativeSrc":"1786:22:125","nodeType":"YulBlock","src":"1786:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1788:16:125","nodeType":"YulIdentifier","src":"1788:16:125"},"nativeSrc":"1788:18:125","nodeType":"YulFunctionCall","src":"1788:18:125"},"nativeSrc":"1788:18:125","nodeType":"YulExpressionStatement","src":"1788:18:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1758:6:125","nodeType":"YulIdentifier","src":"1758:6:125"},{"kind":"number","nativeSrc":"1766:18:125","nodeType":"YulLiteral","src":"1766:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1755:2:125","nodeType":"YulIdentifier","src":"1755:2:125"},"nativeSrc":"1755:30:125","nodeType":"YulFunctionCall","src":"1755:30:125"},"nativeSrc":"1752:56:125","nodeType":"YulIf","src":"1752:56:125"},{"nativeSrc":"1817:43:125","nodeType":"YulVariableDeclaration","src":"1817:43:125","value":{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1839:6:125","nodeType":"YulIdentifier","src":"1839:6:125"},{"kind":"number","nativeSrc":"1847:2:125","nodeType":"YulLiteral","src":"1847:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1835:3:125","nodeType":"YulIdentifier","src":"1835:3:125"},"nativeSrc":"1835:15:125","nodeType":"YulFunctionCall","src":"1835:15:125"},{"arguments":[{"kind":"number","nativeSrc":"1856:2:125","nodeType":"YulLiteral","src":"1856:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1852:3:125","nodeType":"YulIdentifier","src":"1852:3:125"},"nativeSrc":"1852:7:125","nodeType":"YulFunctionCall","src":"1852:7:125"}],"functionName":{"name":"and","nativeSrc":"1831:3:125","nodeType":"YulIdentifier","src":"1831:3:125"},"nativeSrc":"1831:29:125","nodeType":"YulFunctionCall","src":"1831:29:125"},"variables":[{"name":"result","nativeSrc":"1821:6:125","nodeType":"YulTypedName","src":"1821:6:125","type":""}]},{"nativeSrc":"1869:25:125","nodeType":"YulAssignment","src":"1869:25:125","value":{"arguments":[{"name":"result","nativeSrc":"1881:6:125","nodeType":"YulIdentifier","src":"1881:6:125"},{"kind":"number","nativeSrc":"1889:4:125","nodeType":"YulLiteral","src":"1889:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1877:3:125","nodeType":"YulIdentifier","src":"1877:3:125"},"nativeSrc":"1877:17:125","nodeType":"YulFunctionCall","src":"1877:17:125"},"variableNames":[{"name":"size","nativeSrc":"1869:4:125","nodeType":"YulIdentifier","src":"1869:4:125"}]},{"nativeSrc":"1903:15:125","nodeType":"YulVariableDeclaration","src":"1903:15:125","value":{"kind":"number","nativeSrc":"1917:1:125","nodeType":"YulLiteral","src":"1917:1:125","type":"","value":"0"},"variables":[{"name":"memPtr","nativeSrc":"1907:6:125","nodeType":"YulTypedName","src":"1907:6:125","type":""}]},{"nativeSrc":"1927:19:125","nodeType":"YulAssignment","src":"1927:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"1943:2:125","nodeType":"YulLiteral","src":"1943:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1937:5:125","nodeType":"YulIdentifier","src":"1937:5:125"},"nativeSrc":"1937:9:125","nodeType":"YulFunctionCall","src":"1937:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"1927:6:125","nodeType":"YulIdentifier","src":"1927:6:125"}]},{"nativeSrc":"1955:60:125","nodeType":"YulVariableDeclaration","src":"1955:60:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"1977:6:125","nodeType":"YulIdentifier","src":"1977:6:125"},{"arguments":[{"arguments":[{"name":"result","nativeSrc":"1993:6:125","nodeType":"YulIdentifier","src":"1993:6:125"},{"kind":"number","nativeSrc":"2001:2:125","nodeType":"YulLiteral","src":"2001:2:125","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"1989:3:125","nodeType":"YulIdentifier","src":"1989:3:125"},"nativeSrc":"1989:15:125","nodeType":"YulFunctionCall","src":"1989:15:125"},{"arguments":[{"kind":"number","nativeSrc":"2010:2:125","nodeType":"YulLiteral","src":"2010:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"2006:3:125","nodeType":"YulIdentifier","src":"2006:3:125"},"nativeSrc":"2006:7:125","nodeType":"YulFunctionCall","src":"2006:7:125"}],"functionName":{"name":"and","nativeSrc":"1985:3:125","nodeType":"YulIdentifier","src":"1985:3:125"},"nativeSrc":"1985:29:125","nodeType":"YulFunctionCall","src":"1985:29:125"}],"functionName":{"name":"add","nativeSrc":"1973:3:125","nodeType":"YulIdentifier","src":"1973:3:125"},"nativeSrc":"1973:42:125","nodeType":"YulFunctionCall","src":"1973:42:125"},"variables":[{"name":"newFreePtr","nativeSrc":"1959:10:125","nodeType":"YulTypedName","src":"1959:10:125","type":""}]},{"body":{"nativeSrc":"2090:22:125","nodeType":"YulBlock","src":"2090:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2092:16:125","nodeType":"YulIdentifier","src":"2092:16:125"},"nativeSrc":"2092:18:125","nodeType":"YulFunctionCall","src":"2092:18:125"},"nativeSrc":"2092:18:125","nodeType":"YulExpressionStatement","src":"2092:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"2033:10:125","nodeType":"YulIdentifier","src":"2033:10:125"},{"kind":"number","nativeSrc":"2045:18:125","nodeType":"YulLiteral","src":"2045:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2030:2:125","nodeType":"YulIdentifier","src":"2030:2:125"},"nativeSrc":"2030:34:125","nodeType":"YulFunctionCall","src":"2030:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"2069:10:125","nodeType":"YulIdentifier","src":"2069:10:125"},{"name":"memPtr","nativeSrc":"2081:6:125","nodeType":"YulIdentifier","src":"2081:6:125"}],"functionName":{"name":"lt","nativeSrc":"2066:2:125","nodeType":"YulIdentifier","src":"2066:2:125"},"nativeSrc":"2066:22:125","nodeType":"YulFunctionCall","src":"2066:22:125"}],"functionName":{"name":"or","nativeSrc":"2027:2:125","nodeType":"YulIdentifier","src":"2027:2:125"},"nativeSrc":"2027:62:125","nodeType":"YulFunctionCall","src":"2027:62:125"},"nativeSrc":"2024:88:125","nodeType":"YulIf","src":"2024:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2128:2:125","nodeType":"YulLiteral","src":"2128:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"2132:10:125","nodeType":"YulIdentifier","src":"2132:10:125"}],"functionName":{"name":"mstore","nativeSrc":"2121:6:125","nodeType":"YulIdentifier","src":"2121:6:125"},"nativeSrc":"2121:22:125","nodeType":"YulFunctionCall","src":"2121:22:125"},"nativeSrc":"2121:22:125","nodeType":"YulExpressionStatement","src":"2121:22:125"},{"nativeSrc":"2152:17:125","nodeType":"YulAssignment","src":"2152:17:125","value":{"name":"memPtr","nativeSrc":"2163:6:125","nodeType":"YulIdentifier","src":"2163:6:125"},"variableNames":[{"name":"array_1","nativeSrc":"2152:7:125","nodeType":"YulIdentifier","src":"2152:7:125"}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"2185:6:125","nodeType":"YulIdentifier","src":"2185:6:125"},{"name":"length","nativeSrc":"2193:6:125","nodeType":"YulIdentifier","src":"2193:6:125"}],"functionName":{"name":"mstore","nativeSrc":"2178:6:125","nodeType":"YulIdentifier","src":"2178:6:125"},"nativeSrc":"2178:22:125","nodeType":"YulFunctionCall","src":"2178:22:125"},"nativeSrc":"2178:22:125","nodeType":"YulExpressionStatement","src":"2178:22:125"},{"body":{"nativeSrc":"2238:16:125","nodeType":"YulBlock","src":"2238:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2247:1:125","nodeType":"YulLiteral","src":"2247:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2250:1:125","nodeType":"YulLiteral","src":"2250:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2240:6:125","nodeType":"YulIdentifier","src":"2240:6:125"},"nativeSrc":"2240:12:125","nodeType":"YulFunctionCall","src":"2240:12:125"},"nativeSrc":"2240:12:125","nodeType":"YulExpressionStatement","src":"2240:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"2219:3:125","nodeType":"YulIdentifier","src":"2219:3:125"},{"name":"length","nativeSrc":"2224:6:125","nodeType":"YulIdentifier","src":"2224:6:125"}],"functionName":{"name":"add","nativeSrc":"2215:3:125","nodeType":"YulIdentifier","src":"2215:3:125"},"nativeSrc":"2215:16:125","nodeType":"YulFunctionCall","src":"2215:16:125"},{"name":"end","nativeSrc":"2233:3:125","nodeType":"YulIdentifier","src":"2233:3:125"}],"functionName":{"name":"gt","nativeSrc":"2212:2:125","nodeType":"YulIdentifier","src":"2212:2:125"},"nativeSrc":"2212:25:125","nodeType":"YulFunctionCall","src":"2212:25:125"},"nativeSrc":"2209:45:125","nodeType":"YulIf","src":"2209:45:125"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"2280:6:125","nodeType":"YulIdentifier","src":"2280:6:125"},{"kind":"number","nativeSrc":"2288:4:125","nodeType":"YulLiteral","src":"2288:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2276:3:125","nodeType":"YulIdentifier","src":"2276:3:125"},"nativeSrc":"2276:17:125","nodeType":"YulFunctionCall","src":"2276:17:125"},{"name":"src","nativeSrc":"2295:3:125","nodeType":"YulIdentifier","src":"2295:3:125"},{"name":"length","nativeSrc":"2300:6:125","nodeType":"YulIdentifier","src":"2300:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"2263:12:125","nodeType":"YulIdentifier","src":"2263:12:125"},"nativeSrc":"2263:44:125","nodeType":"YulFunctionCall","src":"2263:44:125"},"nativeSrc":"2263:44:125","nodeType":"YulExpressionStatement","src":"2263:44:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"2331:6:125","nodeType":"YulIdentifier","src":"2331:6:125"},{"name":"length","nativeSrc":"2339:6:125","nodeType":"YulIdentifier","src":"2339:6:125"}],"functionName":{"name":"add","nativeSrc":"2327:3:125","nodeType":"YulIdentifier","src":"2327:3:125"},"nativeSrc":"2327:19:125","nodeType":"YulFunctionCall","src":"2327:19:125"},{"kind":"number","nativeSrc":"2348:4:125","nodeType":"YulLiteral","src":"2348:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2323:3:125","nodeType":"YulIdentifier","src":"2323:3:125"},"nativeSrc":"2323:30:125","nodeType":"YulFunctionCall","src":"2323:30:125"},{"kind":"number","nativeSrc":"2355:1:125","nodeType":"YulLiteral","src":"2355:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"2316:6:125","nodeType":"YulIdentifier","src":"2316:6:125"},"nativeSrc":"2316:41:125","nodeType":"YulFunctionCall","src":"2316:41:125"},"nativeSrc":"2316:41:125","nodeType":"YulExpressionStatement","src":"2316:41:125"},{"nativeSrc":"2366:15:125","nodeType":"YulAssignment","src":"2366:15:125","value":{"name":"memPtr","nativeSrc":"2375:6:125","nodeType":"YulIdentifier","src":"2375:6:125"},"variableNames":[{"name":"array","nativeSrc":"2366:5:125","nodeType":"YulIdentifier","src":"2366:5:125"}]}]},"name":"abi_decode_string","nativeSrc":"1498:889:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"1525:6:125","nodeType":"YulTypedName","src":"1525:6:125","type":""},{"name":"end","nativeSrc":"1533:3:125","nodeType":"YulTypedName","src":"1533:3:125","type":""}],"returnVariables":[{"name":"array","nativeSrc":"1541:5:125","nodeType":"YulTypedName","src":"1541:5:125","type":""}],"src":"1498:889:125"},{"body":{"nativeSrc":"2437:86:125","nodeType":"YulBlock","src":"2437:86:125","statements":[{"body":{"nativeSrc":"2501:16:125","nodeType":"YulBlock","src":"2501:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2510:1:125","nodeType":"YulLiteral","src":"2510:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2513:1:125","nodeType":"YulLiteral","src":"2513:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2503:6:125","nodeType":"YulIdentifier","src":"2503:6:125"},"nativeSrc":"2503:12:125","nodeType":"YulFunctionCall","src":"2503:12:125"},"nativeSrc":"2503:12:125","nodeType":"YulExpressionStatement","src":"2503:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2460:5:125","nodeType":"YulIdentifier","src":"2460:5:125"},{"arguments":[{"name":"value","nativeSrc":"2471:5:125","nodeType":"YulIdentifier","src":"2471:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2486:3:125","nodeType":"YulLiteral","src":"2486:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"2491:1:125","nodeType":"YulLiteral","src":"2491:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2482:3:125","nodeType":"YulIdentifier","src":"2482:3:125"},"nativeSrc":"2482:11:125","nodeType":"YulFunctionCall","src":"2482:11:125"},{"kind":"number","nativeSrc":"2495:1:125","nodeType":"YulLiteral","src":"2495:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2478:3:125","nodeType":"YulIdentifier","src":"2478:3:125"},"nativeSrc":"2478:19:125","nodeType":"YulFunctionCall","src":"2478:19:125"}],"functionName":{"name":"and","nativeSrc":"2467:3:125","nodeType":"YulIdentifier","src":"2467:3:125"},"nativeSrc":"2467:31:125","nodeType":"YulFunctionCall","src":"2467:31:125"}],"functionName":{"name":"eq","nativeSrc":"2457:2:125","nodeType":"YulIdentifier","src":"2457:2:125"},"nativeSrc":"2457:42:125","nodeType":"YulFunctionCall","src":"2457:42:125"}],"functionName":{"name":"iszero","nativeSrc":"2450:6:125","nodeType":"YulIdentifier","src":"2450:6:125"},"nativeSrc":"2450:50:125","nodeType":"YulFunctionCall","src":"2450:50:125"},"nativeSrc":"2447:70:125","nodeType":"YulIf","src":"2447:70:125"}]},"name":"validator_revert_address","nativeSrc":"2392:131:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"2426:5:125","nodeType":"YulTypedName","src":"2426:5:125","type":""}],"src":"2392:131:125"},{"body":{"nativeSrc":"2652:549:125","nodeType":"YulBlock","src":"2652:549:125","statements":[{"body":{"nativeSrc":"2698:16:125","nodeType":"YulBlock","src":"2698:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2707:1:125","nodeType":"YulLiteral","src":"2707:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2710:1:125","nodeType":"YulLiteral","src":"2710:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2700:6:125","nodeType":"YulIdentifier","src":"2700:6:125"},"nativeSrc":"2700:12:125","nodeType":"YulFunctionCall","src":"2700:12:125"},"nativeSrc":"2700:12:125","nodeType":"YulExpressionStatement","src":"2700:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2673:7:125","nodeType":"YulIdentifier","src":"2673:7:125"},{"name":"headStart","nativeSrc":"2682:9:125","nodeType":"YulIdentifier","src":"2682:9:125"}],"functionName":{"name":"sub","nativeSrc":"2669:3:125","nodeType":"YulIdentifier","src":"2669:3:125"},"nativeSrc":"2669:23:125","nodeType":"YulFunctionCall","src":"2669:23:125"},{"kind":"number","nativeSrc":"2694:2:125","nodeType":"YulLiteral","src":"2694:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2665:3:125","nodeType":"YulIdentifier","src":"2665:3:125"},"nativeSrc":"2665:32:125","nodeType":"YulFunctionCall","src":"2665:32:125"},"nativeSrc":"2662:52:125","nodeType":"YulIf","src":"2662:52:125"},{"nativeSrc":"2723:37:125","nodeType":"YulVariableDeclaration","src":"2723:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2750:9:125","nodeType":"YulIdentifier","src":"2750:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"2737:12:125","nodeType":"YulIdentifier","src":"2737:12:125"},"nativeSrc":"2737:23:125","nodeType":"YulFunctionCall","src":"2737:23:125"},"variables":[{"name":"offset","nativeSrc":"2727:6:125","nodeType":"YulTypedName","src":"2727:6:125","type":""}]},{"body":{"nativeSrc":"2803:16:125","nodeType":"YulBlock","src":"2803:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2812:1:125","nodeType":"YulLiteral","src":"2812:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2815:1:125","nodeType":"YulLiteral","src":"2815:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2805:6:125","nodeType":"YulIdentifier","src":"2805:6:125"},"nativeSrc":"2805:12:125","nodeType":"YulFunctionCall","src":"2805:12:125"},"nativeSrc":"2805:12:125","nodeType":"YulExpressionStatement","src":"2805:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"2775:6:125","nodeType":"YulIdentifier","src":"2775:6:125"},{"kind":"number","nativeSrc":"2783:18:125","nodeType":"YulLiteral","src":"2783:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2772:2:125","nodeType":"YulIdentifier","src":"2772:2:125"},"nativeSrc":"2772:30:125","nodeType":"YulFunctionCall","src":"2772:30:125"},"nativeSrc":"2769:50:125","nodeType":"YulIf","src":"2769:50:125"},{"nativeSrc":"2828:60:125","nodeType":"YulAssignment","src":"2828:60:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2860:9:125","nodeType":"YulIdentifier","src":"2860:9:125"},{"name":"offset","nativeSrc":"2871:6:125","nodeType":"YulIdentifier","src":"2871:6:125"}],"functionName":{"name":"add","nativeSrc":"2856:3:125","nodeType":"YulIdentifier","src":"2856:3:125"},"nativeSrc":"2856:22:125","nodeType":"YulFunctionCall","src":"2856:22:125"},{"name":"dataEnd","nativeSrc":"2880:7:125","nodeType":"YulIdentifier","src":"2880:7:125"}],"functionName":{"name":"abi_decode_string","nativeSrc":"2838:17:125","nodeType":"YulIdentifier","src":"2838:17:125"},"nativeSrc":"2838:50:125","nodeType":"YulFunctionCall","src":"2838:50:125"},"variableNames":[{"name":"value0","nativeSrc":"2828:6:125","nodeType":"YulIdentifier","src":"2828:6:125"}]},{"nativeSrc":"2897:48:125","nodeType":"YulVariableDeclaration","src":"2897:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2930:9:125","nodeType":"YulIdentifier","src":"2930:9:125"},{"kind":"number","nativeSrc":"2941:2:125","nodeType":"YulLiteral","src":"2941:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2926:3:125","nodeType":"YulIdentifier","src":"2926:3:125"},"nativeSrc":"2926:18:125","nodeType":"YulFunctionCall","src":"2926:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"2913:12:125","nodeType":"YulIdentifier","src":"2913:12:125"},"nativeSrc":"2913:32:125","nodeType":"YulFunctionCall","src":"2913:32:125"},"variables":[{"name":"offset_1","nativeSrc":"2901:8:125","nodeType":"YulTypedName","src":"2901:8:125","type":""}]},{"body":{"nativeSrc":"2990:16:125","nodeType":"YulBlock","src":"2990:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2999:1:125","nodeType":"YulLiteral","src":"2999:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3002:1:125","nodeType":"YulLiteral","src":"3002:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2992:6:125","nodeType":"YulIdentifier","src":"2992:6:125"},"nativeSrc":"2992:12:125","nodeType":"YulFunctionCall","src":"2992:12:125"},"nativeSrc":"2992:12:125","nodeType":"YulExpressionStatement","src":"2992:12:125"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"2960:8:125","nodeType":"YulIdentifier","src":"2960:8:125"},{"kind":"number","nativeSrc":"2970:18:125","nodeType":"YulLiteral","src":"2970:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2957:2:125","nodeType":"YulIdentifier","src":"2957:2:125"},"nativeSrc":"2957:32:125","nodeType":"YulFunctionCall","src":"2957:32:125"},"nativeSrc":"2954:52:125","nodeType":"YulIf","src":"2954:52:125"},{"nativeSrc":"3015:62:125","nodeType":"YulAssignment","src":"3015:62:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3047:9:125","nodeType":"YulIdentifier","src":"3047:9:125"},{"name":"offset_1","nativeSrc":"3058:8:125","nodeType":"YulIdentifier","src":"3058:8:125"}],"functionName":{"name":"add","nativeSrc":"3043:3:125","nodeType":"YulIdentifier","src":"3043:3:125"},"nativeSrc":"3043:24:125","nodeType":"YulFunctionCall","src":"3043:24:125"},{"name":"dataEnd","nativeSrc":"3069:7:125","nodeType":"YulIdentifier","src":"3069:7:125"}],"functionName":{"name":"abi_decode_string","nativeSrc":"3025:17:125","nodeType":"YulIdentifier","src":"3025:17:125"},"nativeSrc":"3025:52:125","nodeType":"YulFunctionCall","src":"3025:52:125"},"variableNames":[{"name":"value1","nativeSrc":"3015:6:125","nodeType":"YulIdentifier","src":"3015:6:125"}]},{"nativeSrc":"3086:45:125","nodeType":"YulVariableDeclaration","src":"3086:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3116:9:125","nodeType":"YulIdentifier","src":"3116:9:125"},{"kind":"number","nativeSrc":"3127:2:125","nodeType":"YulLiteral","src":"3127:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3112:3:125","nodeType":"YulIdentifier","src":"3112:3:125"},"nativeSrc":"3112:18:125","nodeType":"YulFunctionCall","src":"3112:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3099:12:125","nodeType":"YulIdentifier","src":"3099:12:125"},"nativeSrc":"3099:32:125","nodeType":"YulFunctionCall","src":"3099:32:125"},"variables":[{"name":"value","nativeSrc":"3090:5:125","nodeType":"YulTypedName","src":"3090:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3165:5:125","nodeType":"YulIdentifier","src":"3165:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3140:24:125","nodeType":"YulIdentifier","src":"3140:24:125"},"nativeSrc":"3140:31:125","nodeType":"YulFunctionCall","src":"3140:31:125"},"nativeSrc":"3140:31:125","nodeType":"YulExpressionStatement","src":"3140:31:125"},{"nativeSrc":"3180:15:125","nodeType":"YulAssignment","src":"3180:15:125","value":{"name":"value","nativeSrc":"3190:5:125","nodeType":"YulIdentifier","src":"3190:5:125"},"variableNames":[{"name":"value2","nativeSrc":"3180:6:125","nodeType":"YulIdentifier","src":"3180:6:125"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_address","nativeSrc":"2528:673:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2602:9:125","nodeType":"YulTypedName","src":"2602:9:125","type":""},{"name":"dataEnd","nativeSrc":"2613:7:125","nodeType":"YulTypedName","src":"2613:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2625:6:125","nodeType":"YulTypedName","src":"2625:6:125","type":""},{"name":"value1","nativeSrc":"2633:6:125","nodeType":"YulTypedName","src":"2633:6:125","type":""},{"name":"value2","nativeSrc":"2641:6:125","nodeType":"YulTypedName","src":"2641:6:125","type":""}],"src":"2528:673:125"},{"body":{"nativeSrc":"3276:156:125","nodeType":"YulBlock","src":"3276:156:125","statements":[{"body":{"nativeSrc":"3322:16:125","nodeType":"YulBlock","src":"3322:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3331:1:125","nodeType":"YulLiteral","src":"3331:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3334:1:125","nodeType":"YulLiteral","src":"3334:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3324:6:125","nodeType":"YulIdentifier","src":"3324:6:125"},"nativeSrc":"3324:12:125","nodeType":"YulFunctionCall","src":"3324:12:125"},"nativeSrc":"3324:12:125","nodeType":"YulExpressionStatement","src":"3324:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3297:7:125","nodeType":"YulIdentifier","src":"3297:7:125"},{"name":"headStart","nativeSrc":"3306:9:125","nodeType":"YulIdentifier","src":"3306:9:125"}],"functionName":{"name":"sub","nativeSrc":"3293:3:125","nodeType":"YulIdentifier","src":"3293:3:125"},"nativeSrc":"3293:23:125","nodeType":"YulFunctionCall","src":"3293:23:125"},{"kind":"number","nativeSrc":"3318:2:125","nodeType":"YulLiteral","src":"3318:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"3289:3:125","nodeType":"YulIdentifier","src":"3289:3:125"},"nativeSrc":"3289:32:125","nodeType":"YulFunctionCall","src":"3289:32:125"},"nativeSrc":"3286:52:125","nodeType":"YulIf","src":"3286:52:125"},{"nativeSrc":"3347:14:125","nodeType":"YulVariableDeclaration","src":"3347:14:125","value":{"kind":"number","nativeSrc":"3360:1:125","nodeType":"YulLiteral","src":"3360:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3351:5:125","nodeType":"YulTypedName","src":"3351:5:125","type":""}]},{"nativeSrc":"3370:32:125","nodeType":"YulAssignment","src":"3370:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3392:9:125","nodeType":"YulIdentifier","src":"3392:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"3379:12:125","nodeType":"YulIdentifier","src":"3379:12:125"},"nativeSrc":"3379:23:125","nodeType":"YulFunctionCall","src":"3379:23:125"},"variableNames":[{"name":"value","nativeSrc":"3370:5:125","nodeType":"YulIdentifier","src":"3370:5:125"}]},{"nativeSrc":"3411:15:125","nodeType":"YulAssignment","src":"3411:15:125","value":{"name":"value","nativeSrc":"3421:5:125","nodeType":"YulIdentifier","src":"3421:5:125"},"variableNames":[{"name":"value0","nativeSrc":"3411:6:125","nodeType":"YulIdentifier","src":"3411:6:125"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"3206:226:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3242:9:125","nodeType":"YulTypedName","src":"3242:9:125","type":""},{"name":"dataEnd","nativeSrc":"3253:7:125","nodeType":"YulTypedName","src":"3253:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3265:6:125","nodeType":"YulTypedName","src":"3265:6:125","type":""}],"src":"3206:226:125"},{"body":{"nativeSrc":"3538:102:125","nodeType":"YulBlock","src":"3538:102:125","statements":[{"nativeSrc":"3548:26:125","nodeType":"YulAssignment","src":"3548:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3560:9:125","nodeType":"YulIdentifier","src":"3560:9:125"},{"kind":"number","nativeSrc":"3571:2:125","nodeType":"YulLiteral","src":"3571:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3556:3:125","nodeType":"YulIdentifier","src":"3556:3:125"},"nativeSrc":"3556:18:125","nodeType":"YulFunctionCall","src":"3556:18:125"},"variableNames":[{"name":"tail","nativeSrc":"3548:4:125","nodeType":"YulIdentifier","src":"3548:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3590:9:125","nodeType":"YulIdentifier","src":"3590:9:125"},{"arguments":[{"name":"value0","nativeSrc":"3605:6:125","nodeType":"YulIdentifier","src":"3605:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3621:3:125","nodeType":"YulLiteral","src":"3621:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"3626:1:125","nodeType":"YulLiteral","src":"3626:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3617:3:125","nodeType":"YulIdentifier","src":"3617:3:125"},"nativeSrc":"3617:11:125","nodeType":"YulFunctionCall","src":"3617:11:125"},{"kind":"number","nativeSrc":"3630:1:125","nodeType":"YulLiteral","src":"3630:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3613:3:125","nodeType":"YulIdentifier","src":"3613:3:125"},"nativeSrc":"3613:19:125","nodeType":"YulFunctionCall","src":"3613:19:125"}],"functionName":{"name":"and","nativeSrc":"3601:3:125","nodeType":"YulIdentifier","src":"3601:3:125"},"nativeSrc":"3601:32:125","nodeType":"YulFunctionCall","src":"3601:32:125"}],"functionName":{"name":"mstore","nativeSrc":"3583:6:125","nodeType":"YulIdentifier","src":"3583:6:125"},"nativeSrc":"3583:51:125","nodeType":"YulFunctionCall","src":"3583:51:125"},"nativeSrc":"3583:51:125","nodeType":"YulExpressionStatement","src":"3583:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"3437:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3507:9:125","nodeType":"YulTypedName","src":"3507:9:125","type":""},{"name":"value0","nativeSrc":"3518:6:125","nodeType":"YulTypedName","src":"3518:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3529:4:125","nodeType":"YulTypedName","src":"3529:4:125","type":""}],"src":"3437:203:125"},{"body":{"nativeSrc":"3732:280:125","nodeType":"YulBlock","src":"3732:280:125","statements":[{"body":{"nativeSrc":"3778:16:125","nodeType":"YulBlock","src":"3778:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3787:1:125","nodeType":"YulLiteral","src":"3787:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3790:1:125","nodeType":"YulLiteral","src":"3790:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3780:6:125","nodeType":"YulIdentifier","src":"3780:6:125"},"nativeSrc":"3780:12:125","nodeType":"YulFunctionCall","src":"3780:12:125"},"nativeSrc":"3780:12:125","nodeType":"YulExpressionStatement","src":"3780:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3753:7:125","nodeType":"YulIdentifier","src":"3753:7:125"},{"name":"headStart","nativeSrc":"3762:9:125","nodeType":"YulIdentifier","src":"3762:9:125"}],"functionName":{"name":"sub","nativeSrc":"3749:3:125","nodeType":"YulIdentifier","src":"3749:3:125"},"nativeSrc":"3749:23:125","nodeType":"YulFunctionCall","src":"3749:23:125"},{"kind":"number","nativeSrc":"3774:2:125","nodeType":"YulLiteral","src":"3774:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3745:3:125","nodeType":"YulIdentifier","src":"3745:3:125"},"nativeSrc":"3745:32:125","nodeType":"YulFunctionCall","src":"3745:32:125"},"nativeSrc":"3742:52:125","nodeType":"YulIf","src":"3742:52:125"},{"nativeSrc":"3803:36:125","nodeType":"YulVariableDeclaration","src":"3803:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3829:9:125","nodeType":"YulIdentifier","src":"3829:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"3816:12:125","nodeType":"YulIdentifier","src":"3816:12:125"},"nativeSrc":"3816:23:125","nodeType":"YulFunctionCall","src":"3816:23:125"},"variables":[{"name":"value","nativeSrc":"3807:5:125","nodeType":"YulTypedName","src":"3807:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3873:5:125","nodeType":"YulIdentifier","src":"3873:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3848:24:125","nodeType":"YulIdentifier","src":"3848:24:125"},"nativeSrc":"3848:31:125","nodeType":"YulFunctionCall","src":"3848:31:125"},"nativeSrc":"3848:31:125","nodeType":"YulExpressionStatement","src":"3848:31:125"},{"nativeSrc":"3888:15:125","nodeType":"YulAssignment","src":"3888:15:125","value":{"name":"value","nativeSrc":"3898:5:125","nodeType":"YulIdentifier","src":"3898:5:125"},"variableNames":[{"name":"value0","nativeSrc":"3888:6:125","nodeType":"YulIdentifier","src":"3888:6:125"}]},{"nativeSrc":"3912:16:125","nodeType":"YulVariableDeclaration","src":"3912:16:125","value":{"kind":"number","nativeSrc":"3927:1:125","nodeType":"YulLiteral","src":"3927:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"3916:7:125","nodeType":"YulTypedName","src":"3916:7:125","type":""}]},{"nativeSrc":"3937:43:125","nodeType":"YulAssignment","src":"3937:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3965:9:125","nodeType":"YulIdentifier","src":"3965:9:125"},{"kind":"number","nativeSrc":"3976:2:125","nodeType":"YulLiteral","src":"3976:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3961:3:125","nodeType":"YulIdentifier","src":"3961:3:125"},"nativeSrc":"3961:18:125","nodeType":"YulFunctionCall","src":"3961:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3948:12:125","nodeType":"YulIdentifier","src":"3948:12:125"},"nativeSrc":"3948:32:125","nodeType":"YulFunctionCall","src":"3948:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"3937:7:125","nodeType":"YulIdentifier","src":"3937:7:125"}]},{"nativeSrc":"3989:17:125","nodeType":"YulAssignment","src":"3989:17:125","value":{"name":"value_1","nativeSrc":"3999:7:125","nodeType":"YulIdentifier","src":"3999:7:125"},"variableNames":[{"name":"value1","nativeSrc":"3989:6:125","nodeType":"YulIdentifier","src":"3989:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"3645:367:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3690:9:125","nodeType":"YulTypedName","src":"3690:9:125","type":""},{"name":"dataEnd","nativeSrc":"3701:7:125","nodeType":"YulTypedName","src":"3701:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3713:6:125","nodeType":"YulTypedName","src":"3713:6:125","type":""},{"name":"value1","nativeSrc":"3721:6:125","nodeType":"YulTypedName","src":"3721:6:125","type":""}],"src":"3645:367:125"},{"body":{"nativeSrc":"4065:117:125","nodeType":"YulBlock","src":"4065:117:125","statements":[{"nativeSrc":"4075:29:125","nodeType":"YulAssignment","src":"4075:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"4097:6:125","nodeType":"YulIdentifier","src":"4097:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"4084:12:125","nodeType":"YulIdentifier","src":"4084:12:125"},"nativeSrc":"4084:20:125","nodeType":"YulFunctionCall","src":"4084:20:125"},"variableNames":[{"name":"value","nativeSrc":"4075:5:125","nodeType":"YulIdentifier","src":"4075:5:125"}]},{"body":{"nativeSrc":"4160:16:125","nodeType":"YulBlock","src":"4160:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4169:1:125","nodeType":"YulLiteral","src":"4169:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4172:1:125","nodeType":"YulLiteral","src":"4172:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4162:6:125","nodeType":"YulIdentifier","src":"4162:6:125"},"nativeSrc":"4162:12:125","nodeType":"YulFunctionCall","src":"4162:12:125"},"nativeSrc":"4162:12:125","nodeType":"YulExpressionStatement","src":"4162:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4126:5:125","nodeType":"YulIdentifier","src":"4126:5:125"},{"arguments":[{"name":"value","nativeSrc":"4137:5:125","nodeType":"YulIdentifier","src":"4137:5:125"},{"kind":"number","nativeSrc":"4144:12:125","nodeType":"YulLiteral","src":"4144:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"4133:3:125","nodeType":"YulIdentifier","src":"4133:3:125"},"nativeSrc":"4133:24:125","nodeType":"YulFunctionCall","src":"4133:24:125"}],"functionName":{"name":"eq","nativeSrc":"4123:2:125","nodeType":"YulIdentifier","src":"4123:2:125"},"nativeSrc":"4123:35:125","nodeType":"YulFunctionCall","src":"4123:35:125"}],"functionName":{"name":"iszero","nativeSrc":"4116:6:125","nodeType":"YulIdentifier","src":"4116:6:125"},"nativeSrc":"4116:43:125","nodeType":"YulFunctionCall","src":"4116:43:125"},"nativeSrc":"4113:63:125","nodeType":"YulIf","src":"4113:63:125"}]},"name":"abi_decode_uint40","nativeSrc":"4017:165:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"4044:6:125","nodeType":"YulTypedName","src":"4044:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"4055:5:125","nodeType":"YulTypedName","src":"4055:5:125","type":""}],"src":"4017:165:125"},{"body":{"nativeSrc":"4254:1414:125","nodeType":"YulBlock","src":"4254:1414:125","statements":[{"body":{"nativeSrc":"4300:16:125","nodeType":"YulBlock","src":"4300:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4309:1:125","nodeType":"YulLiteral","src":"4309:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4312:1:125","nodeType":"YulLiteral","src":"4312:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4302:6:125","nodeType":"YulIdentifier","src":"4302:6:125"},"nativeSrc":"4302:12:125","nodeType":"YulFunctionCall","src":"4302:12:125"},"nativeSrc":"4302:12:125","nodeType":"YulExpressionStatement","src":"4302:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"4275:3:125","nodeType":"YulIdentifier","src":"4275:3:125"},{"name":"headStart","nativeSrc":"4280:9:125","nodeType":"YulIdentifier","src":"4280:9:125"}],"functionName":{"name":"sub","nativeSrc":"4271:3:125","nodeType":"YulIdentifier","src":"4271:3:125"},"nativeSrc":"4271:19:125","nodeType":"YulFunctionCall","src":"4271:19:125"},{"kind":"number","nativeSrc":"4292:6:125","nodeType":"YulLiteral","src":"4292:6:125","type":"","value":"0x0180"}],"functionName":{"name":"slt","nativeSrc":"4267:3:125","nodeType":"YulIdentifier","src":"4267:3:125"},"nativeSrc":"4267:32:125","nodeType":"YulFunctionCall","src":"4267:32:125"},"nativeSrc":"4264:52:125","nodeType":"YulIf","src":"4264:52:125"},{"nativeSrc":"4325:26:125","nodeType":"YulAssignment","src":"4325:26:125","value":{"arguments":[],"functionName":{"name":"allocate_memory","nativeSrc":"4334:15:125","nodeType":"YulIdentifier","src":"4334:15:125"},"nativeSrc":"4334:17:125","nodeType":"YulFunctionCall","src":"4334:17:125"},"variableNames":[{"name":"value","nativeSrc":"4325:5:125","nodeType":"YulIdentifier","src":"4325:5:125"}]},{"nativeSrc":"4360:16:125","nodeType":"YulVariableDeclaration","src":"4360:16:125","value":{"kind":"number","nativeSrc":"4375:1:125","nodeType":"YulLiteral","src":"4375:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"4364:7:125","nodeType":"YulTypedName","src":"4364:7:125","type":""}]},{"nativeSrc":"4385:34:125","nodeType":"YulAssignment","src":"4385:34:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4409:9:125","nodeType":"YulIdentifier","src":"4409:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"4396:12:125","nodeType":"YulIdentifier","src":"4396:12:125"},"nativeSrc":"4396:23:125","nodeType":"YulFunctionCall","src":"4396:23:125"},"variableNames":[{"name":"value_1","nativeSrc":"4385:7:125","nodeType":"YulIdentifier","src":"4385:7:125"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4435:5:125","nodeType":"YulIdentifier","src":"4435:5:125"},{"name":"value_1","nativeSrc":"4442:7:125","nodeType":"YulIdentifier","src":"4442:7:125"}],"functionName":{"name":"mstore","nativeSrc":"4428:6:125","nodeType":"YulIdentifier","src":"4428:6:125"},"nativeSrc":"4428:22:125","nodeType":"YulFunctionCall","src":"4428:22:125"},"nativeSrc":"4428:22:125","nodeType":"YulExpressionStatement","src":"4428:22:125"},{"nativeSrc":"4459:16:125","nodeType":"YulVariableDeclaration","src":"4459:16:125","value":{"kind":"number","nativeSrc":"4474:1:125","nodeType":"YulLiteral","src":"4474:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"4463:7:125","nodeType":"YulTypedName","src":"4463:7:125","type":""}]},{"nativeSrc":"4484:43:125","nodeType":"YulAssignment","src":"4484:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4512:9:125","nodeType":"YulIdentifier","src":"4512:9:125"},{"kind":"number","nativeSrc":"4523:2:125","nodeType":"YulLiteral","src":"4523:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4508:3:125","nodeType":"YulIdentifier","src":"4508:3:125"},"nativeSrc":"4508:18:125","nodeType":"YulFunctionCall","src":"4508:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"4495:12:125","nodeType":"YulIdentifier","src":"4495:12:125"},"nativeSrc":"4495:32:125","nodeType":"YulFunctionCall","src":"4495:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"4484:7:125","nodeType":"YulIdentifier","src":"4484:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4547:5:125","nodeType":"YulIdentifier","src":"4547:5:125"},{"kind":"number","nativeSrc":"4554:2:125","nodeType":"YulLiteral","src":"4554:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4543:3:125","nodeType":"YulIdentifier","src":"4543:3:125"},"nativeSrc":"4543:14:125","nodeType":"YulFunctionCall","src":"4543:14:125"},{"name":"value_2","nativeSrc":"4559:7:125","nodeType":"YulIdentifier","src":"4559:7:125"}],"functionName":{"name":"mstore","nativeSrc":"4536:6:125","nodeType":"YulIdentifier","src":"4536:6:125"},"nativeSrc":"4536:31:125","nodeType":"YulFunctionCall","src":"4536:31:125"},"nativeSrc":"4536:31:125","nodeType":"YulExpressionStatement","src":"4536:31:125"},{"nativeSrc":"4576:16:125","nodeType":"YulVariableDeclaration","src":"4576:16:125","value":{"kind":"number","nativeSrc":"4591:1:125","nodeType":"YulLiteral","src":"4591:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"4580:7:125","nodeType":"YulTypedName","src":"4580:7:125","type":""}]},{"nativeSrc":"4601:43:125","nodeType":"YulAssignment","src":"4601:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4629:9:125","nodeType":"YulIdentifier","src":"4629:9:125"},{"kind":"number","nativeSrc":"4640:2:125","nodeType":"YulLiteral","src":"4640:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4625:3:125","nodeType":"YulIdentifier","src":"4625:3:125"},"nativeSrc":"4625:18:125","nodeType":"YulFunctionCall","src":"4625:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"4612:12:125","nodeType":"YulIdentifier","src":"4612:12:125"},"nativeSrc":"4612:32:125","nodeType":"YulFunctionCall","src":"4612:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"4601:7:125","nodeType":"YulIdentifier","src":"4601:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4664:5:125","nodeType":"YulIdentifier","src":"4664:5:125"},{"kind":"number","nativeSrc":"4671:2:125","nodeType":"YulLiteral","src":"4671:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4660:3:125","nodeType":"YulIdentifier","src":"4660:3:125"},"nativeSrc":"4660:14:125","nodeType":"YulFunctionCall","src":"4660:14:125"},{"name":"value_3","nativeSrc":"4676:7:125","nodeType":"YulIdentifier","src":"4676:7:125"}],"functionName":{"name":"mstore","nativeSrc":"4653:6:125","nodeType":"YulIdentifier","src":"4653:6:125"},"nativeSrc":"4653:31:125","nodeType":"YulFunctionCall","src":"4653:31:125"},"nativeSrc":"4653:31:125","nodeType":"YulExpressionStatement","src":"4653:31:125"},{"nativeSrc":"4693:16:125","nodeType":"YulVariableDeclaration","src":"4693:16:125","value":{"kind":"number","nativeSrc":"4708:1:125","nodeType":"YulLiteral","src":"4708:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"4697:7:125","nodeType":"YulTypedName","src":"4697:7:125","type":""}]},{"nativeSrc":"4718:43:125","nodeType":"YulAssignment","src":"4718:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4746:9:125","nodeType":"YulIdentifier","src":"4746:9:125"},{"kind":"number","nativeSrc":"4757:2:125","nodeType":"YulLiteral","src":"4757:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4742:3:125","nodeType":"YulIdentifier","src":"4742:3:125"},"nativeSrc":"4742:18:125","nodeType":"YulFunctionCall","src":"4742:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"4729:12:125","nodeType":"YulIdentifier","src":"4729:12:125"},"nativeSrc":"4729:32:125","nodeType":"YulFunctionCall","src":"4729:32:125"},"variableNames":[{"name":"value_4","nativeSrc":"4718:7:125","nodeType":"YulIdentifier","src":"4718:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4781:5:125","nodeType":"YulIdentifier","src":"4781:5:125"},{"kind":"number","nativeSrc":"4788:2:125","nodeType":"YulLiteral","src":"4788:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4777:3:125","nodeType":"YulIdentifier","src":"4777:3:125"},"nativeSrc":"4777:14:125","nodeType":"YulFunctionCall","src":"4777:14:125"},{"name":"value_4","nativeSrc":"4793:7:125","nodeType":"YulIdentifier","src":"4793:7:125"}],"functionName":{"name":"mstore","nativeSrc":"4770:6:125","nodeType":"YulIdentifier","src":"4770:6:125"},"nativeSrc":"4770:31:125","nodeType":"YulFunctionCall","src":"4770:31:125"},"nativeSrc":"4770:31:125","nodeType":"YulExpressionStatement","src":"4770:31:125"},{"nativeSrc":"4810:16:125","nodeType":"YulVariableDeclaration","src":"4810:16:125","value":{"kind":"number","nativeSrc":"4825:1:125","nodeType":"YulLiteral","src":"4825:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"4814:7:125","nodeType":"YulTypedName","src":"4814:7:125","type":""}]},{"nativeSrc":"4835:44:125","nodeType":"YulAssignment","src":"4835:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4863:9:125","nodeType":"YulIdentifier","src":"4863:9:125"},{"kind":"number","nativeSrc":"4874:3:125","nodeType":"YulLiteral","src":"4874:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4859:3:125","nodeType":"YulIdentifier","src":"4859:3:125"},"nativeSrc":"4859:19:125","nodeType":"YulFunctionCall","src":"4859:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"4846:12:125","nodeType":"YulIdentifier","src":"4846:12:125"},"nativeSrc":"4846:33:125","nodeType":"YulFunctionCall","src":"4846:33:125"},"variableNames":[{"name":"value_5","nativeSrc":"4835:7:125","nodeType":"YulIdentifier","src":"4835:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4899:5:125","nodeType":"YulIdentifier","src":"4899:5:125"},{"kind":"number","nativeSrc":"4906:3:125","nodeType":"YulLiteral","src":"4906:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4895:3:125","nodeType":"YulIdentifier","src":"4895:3:125"},"nativeSrc":"4895:15:125","nodeType":"YulFunctionCall","src":"4895:15:125"},{"name":"value_5","nativeSrc":"4912:7:125","nodeType":"YulIdentifier","src":"4912:7:125"}],"functionName":{"name":"mstore","nativeSrc":"4888:6:125","nodeType":"YulIdentifier","src":"4888:6:125"},"nativeSrc":"4888:32:125","nodeType":"YulFunctionCall","src":"4888:32:125"},"nativeSrc":"4888:32:125","nodeType":"YulExpressionStatement","src":"4888:32:125"},{"nativeSrc":"4929:16:125","nodeType":"YulVariableDeclaration","src":"4929:16:125","value":{"kind":"number","nativeSrc":"4944:1:125","nodeType":"YulLiteral","src":"4944:1:125","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"4933:7:125","nodeType":"YulTypedName","src":"4933:7:125","type":""}]},{"nativeSrc":"4954:44:125","nodeType":"YulAssignment","src":"4954:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4982:9:125","nodeType":"YulIdentifier","src":"4982:9:125"},{"kind":"number","nativeSrc":"4993:3:125","nodeType":"YulLiteral","src":"4993:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"4978:3:125","nodeType":"YulIdentifier","src":"4978:3:125"},"nativeSrc":"4978:19:125","nodeType":"YulFunctionCall","src":"4978:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"4965:12:125","nodeType":"YulIdentifier","src":"4965:12:125"},"nativeSrc":"4965:33:125","nodeType":"YulFunctionCall","src":"4965:33:125"},"variableNames":[{"name":"value_6","nativeSrc":"4954:7:125","nodeType":"YulIdentifier","src":"4954:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5018:5:125","nodeType":"YulIdentifier","src":"5018:5:125"},{"kind":"number","nativeSrc":"5025:3:125","nodeType":"YulLiteral","src":"5025:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"5014:3:125","nodeType":"YulIdentifier","src":"5014:3:125"},"nativeSrc":"5014:15:125","nodeType":"YulFunctionCall","src":"5014:15:125"},{"name":"value_6","nativeSrc":"5031:7:125","nodeType":"YulIdentifier","src":"5031:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5007:6:125","nodeType":"YulIdentifier","src":"5007:6:125"},"nativeSrc":"5007:32:125","nodeType":"YulFunctionCall","src":"5007:32:125"},"nativeSrc":"5007:32:125","nodeType":"YulExpressionStatement","src":"5007:32:125"},{"nativeSrc":"5048:16:125","nodeType":"YulVariableDeclaration","src":"5048:16:125","value":{"kind":"number","nativeSrc":"5063:1:125","nodeType":"YulLiteral","src":"5063:1:125","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"5052:7:125","nodeType":"YulTypedName","src":"5052:7:125","type":""}]},{"nativeSrc":"5073:44:125","nodeType":"YulAssignment","src":"5073:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5101:9:125","nodeType":"YulIdentifier","src":"5101:9:125"},{"kind":"number","nativeSrc":"5112:3:125","nodeType":"YulLiteral","src":"5112:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"5097:3:125","nodeType":"YulIdentifier","src":"5097:3:125"},"nativeSrc":"5097:19:125","nodeType":"YulFunctionCall","src":"5097:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"5084:12:125","nodeType":"YulIdentifier","src":"5084:12:125"},"nativeSrc":"5084:33:125","nodeType":"YulFunctionCall","src":"5084:33:125"},"variableNames":[{"name":"value_7","nativeSrc":"5073:7:125","nodeType":"YulIdentifier","src":"5073:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5137:5:125","nodeType":"YulIdentifier","src":"5137:5:125"},{"kind":"number","nativeSrc":"5144:3:125","nodeType":"YulLiteral","src":"5144:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"5133:3:125","nodeType":"YulIdentifier","src":"5133:3:125"},"nativeSrc":"5133:15:125","nodeType":"YulFunctionCall","src":"5133:15:125"},{"name":"value_7","nativeSrc":"5150:7:125","nodeType":"YulIdentifier","src":"5150:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5126:6:125","nodeType":"YulIdentifier","src":"5126:6:125"},"nativeSrc":"5126:32:125","nodeType":"YulFunctionCall","src":"5126:32:125"},"nativeSrc":"5126:32:125","nodeType":"YulExpressionStatement","src":"5126:32:125"},{"nativeSrc":"5167:16:125","nodeType":"YulVariableDeclaration","src":"5167:16:125","value":{"kind":"number","nativeSrc":"5182:1:125","nodeType":"YulLiteral","src":"5182:1:125","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"5171:7:125","nodeType":"YulTypedName","src":"5171:7:125","type":""}]},{"nativeSrc":"5192:44:125","nodeType":"YulAssignment","src":"5192:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5220:9:125","nodeType":"YulIdentifier","src":"5220:9:125"},{"kind":"number","nativeSrc":"5231:3:125","nodeType":"YulLiteral","src":"5231:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"5216:3:125","nodeType":"YulIdentifier","src":"5216:3:125"},"nativeSrc":"5216:19:125","nodeType":"YulFunctionCall","src":"5216:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"5203:12:125","nodeType":"YulIdentifier","src":"5203:12:125"},"nativeSrc":"5203:33:125","nodeType":"YulFunctionCall","src":"5203:33:125"},"variableNames":[{"name":"value_8","nativeSrc":"5192:7:125","nodeType":"YulIdentifier","src":"5192:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5256:5:125","nodeType":"YulIdentifier","src":"5256:5:125"},{"kind":"number","nativeSrc":"5263:3:125","nodeType":"YulLiteral","src":"5263:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"5252:3:125","nodeType":"YulIdentifier","src":"5252:3:125"},"nativeSrc":"5252:15:125","nodeType":"YulFunctionCall","src":"5252:15:125"},{"name":"value_8","nativeSrc":"5269:7:125","nodeType":"YulIdentifier","src":"5269:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5245:6:125","nodeType":"YulIdentifier","src":"5245:6:125"},"nativeSrc":"5245:32:125","nodeType":"YulFunctionCall","src":"5245:32:125"},"nativeSrc":"5245:32:125","nodeType":"YulExpressionStatement","src":"5245:32:125"},{"nativeSrc":"5286:16:125","nodeType":"YulVariableDeclaration","src":"5286:16:125","value":{"kind":"number","nativeSrc":"5301:1:125","nodeType":"YulLiteral","src":"5301:1:125","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"5290:7:125","nodeType":"YulTypedName","src":"5290:7:125","type":""}]},{"nativeSrc":"5311:44:125","nodeType":"YulAssignment","src":"5311:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5339:9:125","nodeType":"YulIdentifier","src":"5339:9:125"},{"kind":"number","nativeSrc":"5350:3:125","nodeType":"YulLiteral","src":"5350:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"5335:3:125","nodeType":"YulIdentifier","src":"5335:3:125"},"nativeSrc":"5335:19:125","nodeType":"YulFunctionCall","src":"5335:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"5322:12:125","nodeType":"YulIdentifier","src":"5322:12:125"},"nativeSrc":"5322:33:125","nodeType":"YulFunctionCall","src":"5322:33:125"},"variableNames":[{"name":"value_9","nativeSrc":"5311:7:125","nodeType":"YulIdentifier","src":"5311:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5375:5:125","nodeType":"YulIdentifier","src":"5375:5:125"},{"kind":"number","nativeSrc":"5382:3:125","nodeType":"YulLiteral","src":"5382:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"5371:3:125","nodeType":"YulIdentifier","src":"5371:3:125"},"nativeSrc":"5371:15:125","nodeType":"YulFunctionCall","src":"5371:15:125"},{"name":"value_9","nativeSrc":"5388:7:125","nodeType":"YulIdentifier","src":"5388:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5364:6:125","nodeType":"YulIdentifier","src":"5364:6:125"},"nativeSrc":"5364:32:125","nodeType":"YulFunctionCall","src":"5364:32:125"},"nativeSrc":"5364:32:125","nodeType":"YulExpressionStatement","src":"5364:32:125"},{"nativeSrc":"5405:17:125","nodeType":"YulVariableDeclaration","src":"5405:17:125","value":{"kind":"number","nativeSrc":"5421:1:125","nodeType":"YulLiteral","src":"5421:1:125","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"5409:8:125","nodeType":"YulTypedName","src":"5409:8:125","type":""}]},{"nativeSrc":"5431:45:125","nodeType":"YulAssignment","src":"5431:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5460:9:125","nodeType":"YulIdentifier","src":"5460:9:125"},{"kind":"number","nativeSrc":"5471:3:125","nodeType":"YulLiteral","src":"5471:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"5456:3:125","nodeType":"YulIdentifier","src":"5456:3:125"},"nativeSrc":"5456:19:125","nodeType":"YulFunctionCall","src":"5456:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"5443:12:125","nodeType":"YulIdentifier","src":"5443:12:125"},"nativeSrc":"5443:33:125","nodeType":"YulFunctionCall","src":"5443:33:125"},"variableNames":[{"name":"value_10","nativeSrc":"5431:8:125","nodeType":"YulIdentifier","src":"5431:8:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5496:5:125","nodeType":"YulIdentifier","src":"5496:5:125"},{"kind":"number","nativeSrc":"5503:3:125","nodeType":"YulLiteral","src":"5503:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"5492:3:125","nodeType":"YulIdentifier","src":"5492:3:125"},"nativeSrc":"5492:15:125","nodeType":"YulFunctionCall","src":"5492:15:125"},{"name":"value_10","nativeSrc":"5509:8:125","nodeType":"YulIdentifier","src":"5509:8:125"}],"functionName":{"name":"mstore","nativeSrc":"5485:6:125","nodeType":"YulIdentifier","src":"5485:6:125"},"nativeSrc":"5485:33:125","nodeType":"YulFunctionCall","src":"5485:33:125"},"nativeSrc":"5485:33:125","nodeType":"YulExpressionStatement","src":"5485:33:125"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5538:5:125","nodeType":"YulIdentifier","src":"5538:5:125"},{"kind":"number","nativeSrc":"5545:3:125","nodeType":"YulLiteral","src":"5545:3:125","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"5534:3:125","nodeType":"YulIdentifier","src":"5534:3:125"},"nativeSrc":"5534:15:125","nodeType":"YulFunctionCall","src":"5534:15:125"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5573:9:125","nodeType":"YulIdentifier","src":"5573:9:125"},{"kind":"number","nativeSrc":"5584:3:125","nodeType":"YulLiteral","src":"5584:3:125","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"5569:3:125","nodeType":"YulIdentifier","src":"5569:3:125"},"nativeSrc":"5569:19:125","nodeType":"YulFunctionCall","src":"5569:19:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"5551:17:125","nodeType":"YulIdentifier","src":"5551:17:125"},"nativeSrc":"5551:38:125","nodeType":"YulFunctionCall","src":"5551:38:125"}],"functionName":{"name":"mstore","nativeSrc":"5527:6:125","nodeType":"YulIdentifier","src":"5527:6:125"},"nativeSrc":"5527:63:125","nodeType":"YulFunctionCall","src":"5527:63:125"},"nativeSrc":"5527:63:125","nodeType":"YulExpressionStatement","src":"5527:63:125"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5610:5:125","nodeType":"YulIdentifier","src":"5610:5:125"},{"kind":"number","nativeSrc":"5617:3:125","nodeType":"YulLiteral","src":"5617:3:125","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"5606:3:125","nodeType":"YulIdentifier","src":"5606:3:125"},"nativeSrc":"5606:15:125","nodeType":"YulFunctionCall","src":"5606:15:125"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5645:9:125","nodeType":"YulIdentifier","src":"5645:9:125"},{"kind":"number","nativeSrc":"5656:3:125","nodeType":"YulLiteral","src":"5656:3:125","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"5641:3:125","nodeType":"YulIdentifier","src":"5641:3:125"},"nativeSrc":"5641:19:125","nodeType":"YulFunctionCall","src":"5641:19:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"5623:17:125","nodeType":"YulIdentifier","src":"5623:17:125"},"nativeSrc":"5623:38:125","nodeType":"YulFunctionCall","src":"5623:38:125"}],"functionName":{"name":"mstore","nativeSrc":"5599:6:125","nodeType":"YulIdentifier","src":"5599:6:125"},"nativeSrc":"5599:63:125","nodeType":"YulFunctionCall","src":"5599:63:125"},"nativeSrc":"5599:63:125","nodeType":"YulExpressionStatement","src":"5599:63:125"}]},"name":"abi_decode_struct_PolicyData","nativeSrc":"4187:1481:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4225:9:125","nodeType":"YulTypedName","src":"4225:9:125","type":""},{"name":"end","nativeSrc":"4236:3:125","nodeType":"YulTypedName","src":"4236:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"4244:5:125","nodeType":"YulTypedName","src":"4244:5:125","type":""}],"src":"4187:1481:125"},{"body":{"nativeSrc":"5721:131:125","nodeType":"YulBlock","src":"5721:131:125","statements":[{"nativeSrc":"5731:29:125","nodeType":"YulAssignment","src":"5731:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"5753:6:125","nodeType":"YulIdentifier","src":"5753:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"5740:12:125","nodeType":"YulIdentifier","src":"5740:12:125"},"nativeSrc":"5740:20:125","nodeType":"YulFunctionCall","src":"5740:20:125"},"variableNames":[{"name":"value","nativeSrc":"5731:5:125","nodeType":"YulIdentifier","src":"5731:5:125"}]},{"body":{"nativeSrc":"5830:16:125","nodeType":"YulBlock","src":"5830:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5839:1:125","nodeType":"YulLiteral","src":"5839:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5842:1:125","nodeType":"YulLiteral","src":"5842:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5832:6:125","nodeType":"YulIdentifier","src":"5832:6:125"},"nativeSrc":"5832:12:125","nodeType":"YulFunctionCall","src":"5832:12:125"},"nativeSrc":"5832:12:125","nodeType":"YulExpressionStatement","src":"5832:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5782:5:125","nodeType":"YulIdentifier","src":"5782:5:125"},{"arguments":[{"name":"value","nativeSrc":"5793:5:125","nodeType":"YulIdentifier","src":"5793:5:125"},{"kind":"number","nativeSrc":"5800:26:125","nodeType":"YulLiteral","src":"5800:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"5789:3:125","nodeType":"YulIdentifier","src":"5789:3:125"},"nativeSrc":"5789:38:125","nodeType":"YulFunctionCall","src":"5789:38:125"}],"functionName":{"name":"eq","nativeSrc":"5779:2:125","nodeType":"YulIdentifier","src":"5779:2:125"},"nativeSrc":"5779:49:125","nodeType":"YulFunctionCall","src":"5779:49:125"}],"functionName":{"name":"iszero","nativeSrc":"5772:6:125","nodeType":"YulIdentifier","src":"5772:6:125"},"nativeSrc":"5772:57:125","nodeType":"YulFunctionCall","src":"5772:57:125"},"nativeSrc":"5769:77:125","nodeType":"YulIf","src":"5769:77:125"}]},"name":"abi_decode_uint96","nativeSrc":"5673:179:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"5700:6:125","nodeType":"YulTypedName","src":"5700:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"5711:5:125","nodeType":"YulTypedName","src":"5711:5:125","type":""}],"src":"5673:179:125"},{"body":{"nativeSrc":"6005:437:125","nodeType":"YulBlock","src":"6005:437:125","statements":[{"body":{"nativeSrc":"6052:16:125","nodeType":"YulBlock","src":"6052:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6061:1:125","nodeType":"YulLiteral","src":"6061:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6064:1:125","nodeType":"YulLiteral","src":"6064:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6054:6:125","nodeType":"YulIdentifier","src":"6054:6:125"},"nativeSrc":"6054:12:125","nodeType":"YulFunctionCall","src":"6054:12:125"},"nativeSrc":"6054:12:125","nodeType":"YulExpressionStatement","src":"6054:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6026:7:125","nodeType":"YulIdentifier","src":"6026:7:125"},{"name":"headStart","nativeSrc":"6035:9:125","nodeType":"YulIdentifier","src":"6035:9:125"}],"functionName":{"name":"sub","nativeSrc":"6022:3:125","nodeType":"YulIdentifier","src":"6022:3:125"},"nativeSrc":"6022:23:125","nodeType":"YulFunctionCall","src":"6022:23:125"},{"kind":"number","nativeSrc":"6047:3:125","nodeType":"YulLiteral","src":"6047:3:125","type":"","value":"480"}],"functionName":{"name":"slt","nativeSrc":"6018:3:125","nodeType":"YulIdentifier","src":"6018:3:125"},"nativeSrc":"6018:33:125","nodeType":"YulFunctionCall","src":"6018:33:125"},"nativeSrc":"6015:53:125","nodeType":"YulIf","src":"6015:53:125"},{"nativeSrc":"6077:58:125","nodeType":"YulAssignment","src":"6077:58:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6116:9:125","nodeType":"YulIdentifier","src":"6116:9:125"},{"name":"dataEnd","nativeSrc":"6127:7:125","nodeType":"YulIdentifier","src":"6127:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"6087:28:125","nodeType":"YulIdentifier","src":"6087:28:125"},"nativeSrc":"6087:48:125","nodeType":"YulFunctionCall","src":"6087:48:125"},"variableNames":[{"name":"value0","nativeSrc":"6077:6:125","nodeType":"YulIdentifier","src":"6077:6:125"}]},{"nativeSrc":"6144:46:125","nodeType":"YulVariableDeclaration","src":"6144:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6174:9:125","nodeType":"YulIdentifier","src":"6174:9:125"},{"kind":"number","nativeSrc":"6185:3:125","nodeType":"YulLiteral","src":"6185:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"6170:3:125","nodeType":"YulIdentifier","src":"6170:3:125"},"nativeSrc":"6170:19:125","nodeType":"YulFunctionCall","src":"6170:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"6157:12:125","nodeType":"YulIdentifier","src":"6157:12:125"},"nativeSrc":"6157:33:125","nodeType":"YulFunctionCall","src":"6157:33:125"},"variables":[{"name":"value","nativeSrc":"6148:5:125","nodeType":"YulTypedName","src":"6148:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6224:5:125","nodeType":"YulIdentifier","src":"6224:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6199:24:125","nodeType":"YulIdentifier","src":"6199:24:125"},"nativeSrc":"6199:31:125","nodeType":"YulFunctionCall","src":"6199:31:125"},"nativeSrc":"6199:31:125","nodeType":"YulExpressionStatement","src":"6199:31:125"},{"nativeSrc":"6239:15:125","nodeType":"YulAssignment","src":"6239:15:125","value":{"name":"value","nativeSrc":"6249:5:125","nodeType":"YulIdentifier","src":"6249:5:125"},"variableNames":[{"name":"value1","nativeSrc":"6239:6:125","nodeType":"YulIdentifier","src":"6239:6:125"}]},{"nativeSrc":"6263:48:125","nodeType":"YulVariableDeclaration","src":"6263:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6295:9:125","nodeType":"YulIdentifier","src":"6295:9:125"},{"kind":"number","nativeSrc":"6306:3:125","nodeType":"YulLiteral","src":"6306:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"6291:3:125","nodeType":"YulIdentifier","src":"6291:3:125"},"nativeSrc":"6291:19:125","nodeType":"YulFunctionCall","src":"6291:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"6278:12:125","nodeType":"YulIdentifier","src":"6278:12:125"},"nativeSrc":"6278:33:125","nodeType":"YulFunctionCall","src":"6278:33:125"},"variables":[{"name":"value_1","nativeSrc":"6267:7:125","nodeType":"YulTypedName","src":"6267:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"6345:7:125","nodeType":"YulIdentifier","src":"6345:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6320:24:125","nodeType":"YulIdentifier","src":"6320:24:125"},"nativeSrc":"6320:33:125","nodeType":"YulFunctionCall","src":"6320:33:125"},"nativeSrc":"6320:33:125","nodeType":"YulExpressionStatement","src":"6320:33:125"},{"nativeSrc":"6362:17:125","nodeType":"YulAssignment","src":"6362:17:125","value":{"name":"value_1","nativeSrc":"6372:7:125","nodeType":"YulIdentifier","src":"6372:7:125"},"variableNames":[{"name":"value2","nativeSrc":"6362:6:125","nodeType":"YulIdentifier","src":"6362:6:125"}]},{"nativeSrc":"6388:48:125","nodeType":"YulAssignment","src":"6388:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6420:9:125","nodeType":"YulIdentifier","src":"6420:9:125"},{"kind":"number","nativeSrc":"6431:3:125","nodeType":"YulLiteral","src":"6431:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"6416:3:125","nodeType":"YulIdentifier","src":"6416:3:125"},"nativeSrc":"6416:19:125","nodeType":"YulFunctionCall","src":"6416:19:125"}],"functionName":{"name":"abi_decode_uint96","nativeSrc":"6398:17:125","nodeType":"YulIdentifier","src":"6398:17:125"},"nativeSrc":"6398:38:125","nodeType":"YulFunctionCall","src":"6398:38:125"},"variableNames":[{"name":"value3","nativeSrc":"6388:6:125","nodeType":"YulIdentifier","src":"6388:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_addresst_addresst_uint96","nativeSrc":"5857:585:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5947:9:125","nodeType":"YulTypedName","src":"5947:9:125","type":""},{"name":"dataEnd","nativeSrc":"5958:7:125","nodeType":"YulTypedName","src":"5958:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5970:6:125","nodeType":"YulTypedName","src":"5970:6:125","type":""},{"name":"value1","nativeSrc":"5978:6:125","nodeType":"YulTypedName","src":"5978:6:125","type":""},{"name":"value2","nativeSrc":"5986:6:125","nodeType":"YulTypedName","src":"5986:6:125","type":""},{"name":"value3","nativeSrc":"5994:6:125","nodeType":"YulTypedName","src":"5994:6:125","type":""}],"src":"5857:585:125"},{"body":{"nativeSrc":"6548:76:125","nodeType":"YulBlock","src":"6548:76:125","statements":[{"nativeSrc":"6558:26:125","nodeType":"YulAssignment","src":"6558:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6570:9:125","nodeType":"YulIdentifier","src":"6570:9:125"},{"kind":"number","nativeSrc":"6581:2:125","nodeType":"YulLiteral","src":"6581:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6566:3:125","nodeType":"YulIdentifier","src":"6566:3:125"},"nativeSrc":"6566:18:125","nodeType":"YulFunctionCall","src":"6566:18:125"},"variableNames":[{"name":"tail","nativeSrc":"6558:4:125","nodeType":"YulIdentifier","src":"6558:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6600:9:125","nodeType":"YulIdentifier","src":"6600:9:125"},{"name":"value0","nativeSrc":"6611:6:125","nodeType":"YulIdentifier","src":"6611:6:125"}],"functionName":{"name":"mstore","nativeSrc":"6593:6:125","nodeType":"YulIdentifier","src":"6593:6:125"},"nativeSrc":"6593:25:125","nodeType":"YulFunctionCall","src":"6593:25:125"},"nativeSrc":"6593:25:125","nodeType":"YulExpressionStatement","src":"6593:25:125"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"6447:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6517:9:125","nodeType":"YulTypedName","src":"6517:9:125","type":""},{"name":"value0","nativeSrc":"6528:6:125","nodeType":"YulTypedName","src":"6528:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6539:4:125","nodeType":"YulTypedName","src":"6539:4:125","type":""}],"src":"6447:177:125"},{"body":{"nativeSrc":"6733:404:125","nodeType":"YulBlock","src":"6733:404:125","statements":[{"body":{"nativeSrc":"6779:16:125","nodeType":"YulBlock","src":"6779:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6788:1:125","nodeType":"YulLiteral","src":"6788:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6791:1:125","nodeType":"YulLiteral","src":"6791:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6781:6:125","nodeType":"YulIdentifier","src":"6781:6:125"},"nativeSrc":"6781:12:125","nodeType":"YulFunctionCall","src":"6781:12:125"},"nativeSrc":"6781:12:125","nodeType":"YulExpressionStatement","src":"6781:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6754:7:125","nodeType":"YulIdentifier","src":"6754:7:125"},{"name":"headStart","nativeSrc":"6763:9:125","nodeType":"YulIdentifier","src":"6763:9:125"}],"functionName":{"name":"sub","nativeSrc":"6750:3:125","nodeType":"YulIdentifier","src":"6750:3:125"},"nativeSrc":"6750:23:125","nodeType":"YulFunctionCall","src":"6750:23:125"},{"kind":"number","nativeSrc":"6775:2:125","nodeType":"YulLiteral","src":"6775:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"6746:3:125","nodeType":"YulIdentifier","src":"6746:3:125"},"nativeSrc":"6746:32:125","nodeType":"YulFunctionCall","src":"6746:32:125"},"nativeSrc":"6743:52:125","nodeType":"YulIf","src":"6743:52:125"},{"nativeSrc":"6804:36:125","nodeType":"YulVariableDeclaration","src":"6804:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6830:9:125","nodeType":"YulIdentifier","src":"6830:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"6817:12:125","nodeType":"YulIdentifier","src":"6817:12:125"},"nativeSrc":"6817:23:125","nodeType":"YulFunctionCall","src":"6817:23:125"},"variables":[{"name":"value","nativeSrc":"6808:5:125","nodeType":"YulTypedName","src":"6808:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6874:5:125","nodeType":"YulIdentifier","src":"6874:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6849:24:125","nodeType":"YulIdentifier","src":"6849:24:125"},"nativeSrc":"6849:31:125","nodeType":"YulFunctionCall","src":"6849:31:125"},"nativeSrc":"6849:31:125","nodeType":"YulExpressionStatement","src":"6849:31:125"},{"nativeSrc":"6889:15:125","nodeType":"YulAssignment","src":"6889:15:125","value":{"name":"value","nativeSrc":"6899:5:125","nodeType":"YulIdentifier","src":"6899:5:125"},"variableNames":[{"name":"value0","nativeSrc":"6889:6:125","nodeType":"YulIdentifier","src":"6889:6:125"}]},{"nativeSrc":"6913:47:125","nodeType":"YulVariableDeclaration","src":"6913:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6945:9:125","nodeType":"YulIdentifier","src":"6945:9:125"},{"kind":"number","nativeSrc":"6956:2:125","nodeType":"YulLiteral","src":"6956:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6941:3:125","nodeType":"YulIdentifier","src":"6941:3:125"},"nativeSrc":"6941:18:125","nodeType":"YulFunctionCall","src":"6941:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"6928:12:125","nodeType":"YulIdentifier","src":"6928:12:125"},"nativeSrc":"6928:32:125","nodeType":"YulFunctionCall","src":"6928:32:125"},"variables":[{"name":"value_1","nativeSrc":"6917:7:125","nodeType":"YulTypedName","src":"6917:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"6994:7:125","nodeType":"YulIdentifier","src":"6994:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6969:24:125","nodeType":"YulIdentifier","src":"6969:24:125"},"nativeSrc":"6969:33:125","nodeType":"YulFunctionCall","src":"6969:33:125"},"nativeSrc":"6969:33:125","nodeType":"YulExpressionStatement","src":"6969:33:125"},{"nativeSrc":"7011:17:125","nodeType":"YulAssignment","src":"7011:17:125","value":{"name":"value_1","nativeSrc":"7021:7:125","nodeType":"YulIdentifier","src":"7021:7:125"},"variableNames":[{"name":"value1","nativeSrc":"7011:6:125","nodeType":"YulIdentifier","src":"7011:6:125"}]},{"nativeSrc":"7037:16:125","nodeType":"YulVariableDeclaration","src":"7037:16:125","value":{"kind":"number","nativeSrc":"7052:1:125","nodeType":"YulLiteral","src":"7052:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"7041:7:125","nodeType":"YulTypedName","src":"7041:7:125","type":""}]},{"nativeSrc":"7062:43:125","nodeType":"YulAssignment","src":"7062:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7090:9:125","nodeType":"YulIdentifier","src":"7090:9:125"},{"kind":"number","nativeSrc":"7101:2:125","nodeType":"YulLiteral","src":"7101:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7086:3:125","nodeType":"YulIdentifier","src":"7086:3:125"},"nativeSrc":"7086:18:125","nodeType":"YulFunctionCall","src":"7086:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"7073:12:125","nodeType":"YulIdentifier","src":"7073:12:125"},"nativeSrc":"7073:32:125","nodeType":"YulFunctionCall","src":"7073:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"7062:7:125","nodeType":"YulIdentifier","src":"7062:7:125"}]},{"nativeSrc":"7114:17:125","nodeType":"YulAssignment","src":"7114:17:125","value":{"name":"value_2","nativeSrc":"7124:7:125","nodeType":"YulIdentifier","src":"7124:7:125"},"variableNames":[{"name":"value2","nativeSrc":"7114:6:125","nodeType":"YulIdentifier","src":"7114:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"6629:508:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6683:9:125","nodeType":"YulTypedName","src":"6683:9:125","type":""},{"name":"dataEnd","nativeSrc":"6694:7:125","nodeType":"YulTypedName","src":"6694:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6706:6:125","nodeType":"YulTypedName","src":"6706:6:125","type":""},{"name":"value1","nativeSrc":"6714:6:125","nodeType":"YulTypedName","src":"6714:6:125","type":""},{"name":"value2","nativeSrc":"6722:6:125","nodeType":"YulTypedName","src":"6722:6:125","type":""}],"src":"6629:508:125"},{"body":{"nativeSrc":"7242:177:125","nodeType":"YulBlock","src":"7242:177:125","statements":[{"body":{"nativeSrc":"7288:16:125","nodeType":"YulBlock","src":"7288:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7297:1:125","nodeType":"YulLiteral","src":"7297:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7300:1:125","nodeType":"YulLiteral","src":"7300:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7290:6:125","nodeType":"YulIdentifier","src":"7290:6:125"},"nativeSrc":"7290:12:125","nodeType":"YulFunctionCall","src":"7290:12:125"},"nativeSrc":"7290:12:125","nodeType":"YulExpressionStatement","src":"7290:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7263:7:125","nodeType":"YulIdentifier","src":"7263:7:125"},{"name":"headStart","nativeSrc":"7272:9:125","nodeType":"YulIdentifier","src":"7272:9:125"}],"functionName":{"name":"sub","nativeSrc":"7259:3:125","nodeType":"YulIdentifier","src":"7259:3:125"},"nativeSrc":"7259:23:125","nodeType":"YulFunctionCall","src":"7259:23:125"},{"kind":"number","nativeSrc":"7284:2:125","nodeType":"YulLiteral","src":"7284:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"7255:3:125","nodeType":"YulIdentifier","src":"7255:3:125"},"nativeSrc":"7255:32:125","nodeType":"YulFunctionCall","src":"7255:32:125"},"nativeSrc":"7252:52:125","nodeType":"YulIf","src":"7252:52:125"},{"nativeSrc":"7313:36:125","nodeType":"YulVariableDeclaration","src":"7313:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7339:9:125","nodeType":"YulIdentifier","src":"7339:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"7326:12:125","nodeType":"YulIdentifier","src":"7326:12:125"},"nativeSrc":"7326:23:125","nodeType":"YulFunctionCall","src":"7326:23:125"},"variables":[{"name":"value","nativeSrc":"7317:5:125","nodeType":"YulTypedName","src":"7317:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7383:5:125","nodeType":"YulIdentifier","src":"7383:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7358:24:125","nodeType":"YulIdentifier","src":"7358:24:125"},"nativeSrc":"7358:31:125","nodeType":"YulFunctionCall","src":"7358:31:125"},"nativeSrc":"7358:31:125","nodeType":"YulExpressionStatement","src":"7358:31:125"},{"nativeSrc":"7398:15:125","nodeType":"YulAssignment","src":"7398:15:125","value":{"name":"value","nativeSrc":"7408:5:125","nodeType":"YulIdentifier","src":"7408:5:125"},"variableNames":[{"name":"value0","nativeSrc":"7398:6:125","nodeType":"YulIdentifier","src":"7398:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPoolComponent_$14655","nativeSrc":"7142:277:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7208:9:125","nodeType":"YulTypedName","src":"7208:9:125","type":""},{"name":"dataEnd","nativeSrc":"7219:7:125","nodeType":"YulTypedName","src":"7219:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7231:6:125","nodeType":"YulTypedName","src":"7231:6:125","type":""}],"src":"7142:277:125"},{"body":{"nativeSrc":"7456:95:125","nodeType":"YulBlock","src":"7456:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7473:1:125","nodeType":"YulLiteral","src":"7473:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"7480:3:125","nodeType":"YulLiteral","src":"7480:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"7485:10:125","nodeType":"YulLiteral","src":"7485:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"7476:3:125","nodeType":"YulIdentifier","src":"7476:3:125"},"nativeSrc":"7476:20:125","nodeType":"YulFunctionCall","src":"7476:20:125"}],"functionName":{"name":"mstore","nativeSrc":"7466:6:125","nodeType":"YulIdentifier","src":"7466:6:125"},"nativeSrc":"7466:31:125","nodeType":"YulFunctionCall","src":"7466:31:125"},"nativeSrc":"7466:31:125","nodeType":"YulExpressionStatement","src":"7466:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7513:1:125","nodeType":"YulLiteral","src":"7513:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"7516:4:125","nodeType":"YulLiteral","src":"7516:4:125","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"7506:6:125","nodeType":"YulIdentifier","src":"7506:6:125"},"nativeSrc":"7506:15:125","nodeType":"YulFunctionCall","src":"7506:15:125"},"nativeSrc":"7506:15:125","nodeType":"YulExpressionStatement","src":"7506:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7537:1:125","nodeType":"YulLiteral","src":"7537:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7540:4:125","nodeType":"YulLiteral","src":"7540:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"7530:6:125","nodeType":"YulIdentifier","src":"7530:6:125"},"nativeSrc":"7530:15:125","nodeType":"YulFunctionCall","src":"7530:15:125"},"nativeSrc":"7530:15:125","nodeType":"YulExpressionStatement","src":"7530:15:125"}]},"name":"panic_error_0x21","nativeSrc":"7424:127:125","nodeType":"YulFunctionDefinition","src":"7424:127:125"},{"body":{"nativeSrc":"7614:159:125","nodeType":"YulBlock","src":"7614:159:125","statements":[{"body":{"nativeSrc":"7656:111:125","nodeType":"YulBlock","src":"7656:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7677:1:125","nodeType":"YulLiteral","src":"7677:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"7684:3:125","nodeType":"YulLiteral","src":"7684:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"7689:10:125","nodeType":"YulLiteral","src":"7689:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"7680:3:125","nodeType":"YulIdentifier","src":"7680:3:125"},"nativeSrc":"7680:20:125","nodeType":"YulFunctionCall","src":"7680:20:125"}],"functionName":{"name":"mstore","nativeSrc":"7670:6:125","nodeType":"YulIdentifier","src":"7670:6:125"},"nativeSrc":"7670:31:125","nodeType":"YulFunctionCall","src":"7670:31:125"},"nativeSrc":"7670:31:125","nodeType":"YulExpressionStatement","src":"7670:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7721:1:125","nodeType":"YulLiteral","src":"7721:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"7724:4:125","nodeType":"YulLiteral","src":"7724:4:125","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"7714:6:125","nodeType":"YulIdentifier","src":"7714:6:125"},"nativeSrc":"7714:15:125","nodeType":"YulFunctionCall","src":"7714:15:125"},"nativeSrc":"7714:15:125","nodeType":"YulExpressionStatement","src":"7714:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7749:1:125","nodeType":"YulLiteral","src":"7749:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7752:4:125","nodeType":"YulLiteral","src":"7752:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"7742:6:125","nodeType":"YulIdentifier","src":"7742:6:125"},"nativeSrc":"7742:15:125","nodeType":"YulFunctionCall","src":"7742:15:125"},"nativeSrc":"7742:15:125","nodeType":"YulExpressionStatement","src":"7742:15:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7637:5:125","nodeType":"YulIdentifier","src":"7637:5:125"},{"kind":"number","nativeSrc":"7644:1:125","nodeType":"YulLiteral","src":"7644:1:125","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"7634:2:125","nodeType":"YulIdentifier","src":"7634:2:125"},"nativeSrc":"7634:12:125","nodeType":"YulFunctionCall","src":"7634:12:125"}],"functionName":{"name":"iszero","nativeSrc":"7627:6:125","nodeType":"YulIdentifier","src":"7627:6:125"},"nativeSrc":"7627:20:125","nodeType":"YulFunctionCall","src":"7627:20:125"},"nativeSrc":"7624:143:125","nodeType":"YulIf","src":"7624:143:125"}]},"name":"validator_assert_enum_ComponentStatus","nativeSrc":"7556:217:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"7603:5:125","nodeType":"YulTypedName","src":"7603:5:125","type":""}],"src":"7556:217:125"},{"body":{"nativeSrc":"7897:130:125","nodeType":"YulBlock","src":"7897:130:125","statements":[{"nativeSrc":"7907:26:125","nodeType":"YulAssignment","src":"7907:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7919:9:125","nodeType":"YulIdentifier","src":"7919:9:125"},{"kind":"number","nativeSrc":"7930:2:125","nodeType":"YulLiteral","src":"7930:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7915:3:125","nodeType":"YulIdentifier","src":"7915:3:125"},"nativeSrc":"7915:18:125","nodeType":"YulFunctionCall","src":"7915:18:125"},"variableNames":[{"name":"tail","nativeSrc":"7907:4:125","nodeType":"YulIdentifier","src":"7907:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"7980:6:125","nodeType":"YulIdentifier","src":"7980:6:125"}],"functionName":{"name":"validator_assert_enum_ComponentStatus","nativeSrc":"7942:37:125","nodeType":"YulIdentifier","src":"7942:37:125"},"nativeSrc":"7942:45:125","nodeType":"YulFunctionCall","src":"7942:45:125"},"nativeSrc":"7942:45:125","nodeType":"YulExpressionStatement","src":"7942:45:125"},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8003:9:125","nodeType":"YulIdentifier","src":"8003:9:125"},{"name":"value0","nativeSrc":"8014:6:125","nodeType":"YulIdentifier","src":"8014:6:125"}],"functionName":{"name":"mstore","nativeSrc":"7996:6:125","nodeType":"YulIdentifier","src":"7996:6:125"},"nativeSrc":"7996:25:125","nodeType":"YulFunctionCall","src":"7996:25:125"},"nativeSrc":"7996:25:125","nodeType":"YulExpressionStatement","src":"7996:25:125"}]},"name":"abi_encode_tuple_t_enum$_ComponentStatus_$8392__to_t_uint8__fromStack_reversed","nativeSrc":"7778:249:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7866:9:125","nodeType":"YulTypedName","src":"7866:9:125","type":""},{"name":"value0","nativeSrc":"7877:6:125","nodeType":"YulTypedName","src":"7877:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7888:4:125","nodeType":"YulTypedName","src":"7888:4:125","type":""}],"src":"7778:249:125"},{"body":{"nativeSrc":"8128:360:125","nodeType":"YulBlock","src":"8128:360:125","statements":[{"body":{"nativeSrc":"8174:16:125","nodeType":"YulBlock","src":"8174:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8183:1:125","nodeType":"YulLiteral","src":"8183:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8186:1:125","nodeType":"YulLiteral","src":"8186:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8176:6:125","nodeType":"YulIdentifier","src":"8176:6:125"},"nativeSrc":"8176:12:125","nodeType":"YulFunctionCall","src":"8176:12:125"},"nativeSrc":"8176:12:125","nodeType":"YulExpressionStatement","src":"8176:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8149:7:125","nodeType":"YulIdentifier","src":"8149:7:125"},{"name":"headStart","nativeSrc":"8158:9:125","nodeType":"YulIdentifier","src":"8158:9:125"}],"functionName":{"name":"sub","nativeSrc":"8145:3:125","nodeType":"YulIdentifier","src":"8145:3:125"},"nativeSrc":"8145:23:125","nodeType":"YulFunctionCall","src":"8145:23:125"},{"kind":"number","nativeSrc":"8170:2:125","nodeType":"YulLiteral","src":"8170:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"8141:3:125","nodeType":"YulIdentifier","src":"8141:3:125"},"nativeSrc":"8141:32:125","nodeType":"YulFunctionCall","src":"8141:32:125"},"nativeSrc":"8138:52:125","nodeType":"YulIf","src":"8138:52:125"},{"nativeSrc":"8199:36:125","nodeType":"YulVariableDeclaration","src":"8199:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8225:9:125","nodeType":"YulIdentifier","src":"8225:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"8212:12:125","nodeType":"YulIdentifier","src":"8212:12:125"},"nativeSrc":"8212:23:125","nodeType":"YulFunctionCall","src":"8212:23:125"},"variables":[{"name":"value","nativeSrc":"8203:5:125","nodeType":"YulTypedName","src":"8203:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8269:5:125","nodeType":"YulIdentifier","src":"8269:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8244:24:125","nodeType":"YulIdentifier","src":"8244:24:125"},"nativeSrc":"8244:31:125","nodeType":"YulFunctionCall","src":"8244:31:125"},"nativeSrc":"8244:31:125","nodeType":"YulExpressionStatement","src":"8244:31:125"},{"nativeSrc":"8284:15:125","nodeType":"YulAssignment","src":"8284:15:125","value":{"name":"value","nativeSrc":"8294:5:125","nodeType":"YulIdentifier","src":"8294:5:125"},"variableNames":[{"name":"value0","nativeSrc":"8284:6:125","nodeType":"YulIdentifier","src":"8284:6:125"}]},{"nativeSrc":"8308:46:125","nodeType":"YulVariableDeclaration","src":"8308:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8339:9:125","nodeType":"YulIdentifier","src":"8339:9:125"},{"kind":"number","nativeSrc":"8350:2:125","nodeType":"YulLiteral","src":"8350:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8335:3:125","nodeType":"YulIdentifier","src":"8335:3:125"},"nativeSrc":"8335:18:125","nodeType":"YulFunctionCall","src":"8335:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"8322:12:125","nodeType":"YulIdentifier","src":"8322:12:125"},"nativeSrc":"8322:32:125","nodeType":"YulFunctionCall","src":"8322:32:125"},"variables":[{"name":"offset","nativeSrc":"8312:6:125","nodeType":"YulTypedName","src":"8312:6:125","type":""}]},{"body":{"nativeSrc":"8397:16:125","nodeType":"YulBlock","src":"8397:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8406:1:125","nodeType":"YulLiteral","src":"8406:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8409:1:125","nodeType":"YulLiteral","src":"8409:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8399:6:125","nodeType":"YulIdentifier","src":"8399:6:125"},"nativeSrc":"8399:12:125","nodeType":"YulFunctionCall","src":"8399:12:125"},"nativeSrc":"8399:12:125","nodeType":"YulExpressionStatement","src":"8399:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"8369:6:125","nodeType":"YulIdentifier","src":"8369:6:125"},{"kind":"number","nativeSrc":"8377:18:125","nodeType":"YulLiteral","src":"8377:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8366:2:125","nodeType":"YulIdentifier","src":"8366:2:125"},"nativeSrc":"8366:30:125","nodeType":"YulFunctionCall","src":"8366:30:125"},"nativeSrc":"8363:50:125","nodeType":"YulIf","src":"8363:50:125"},{"nativeSrc":"8422:60:125","nodeType":"YulAssignment","src":"8422:60:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8454:9:125","nodeType":"YulIdentifier","src":"8454:9:125"},{"name":"offset","nativeSrc":"8465:6:125","nodeType":"YulIdentifier","src":"8465:6:125"}],"functionName":{"name":"add","nativeSrc":"8450:3:125","nodeType":"YulIdentifier","src":"8450:3:125"},"nativeSrc":"8450:22:125","nodeType":"YulFunctionCall","src":"8450:22:125"},{"name":"dataEnd","nativeSrc":"8474:7:125","nodeType":"YulIdentifier","src":"8474:7:125"}],"functionName":{"name":"abi_decode_string","nativeSrc":"8432:17:125","nodeType":"YulIdentifier","src":"8432:17:125"},"nativeSrc":"8432:50:125","nodeType":"YulFunctionCall","src":"8432:50:125"},"variableNames":[{"name":"value1","nativeSrc":"8422:6:125","nodeType":"YulIdentifier","src":"8422:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr","nativeSrc":"8032:456:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8086:9:125","nodeType":"YulTypedName","src":"8086:9:125","type":""},{"name":"dataEnd","nativeSrc":"8097:7:125","nodeType":"YulTypedName","src":"8097:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8109:6:125","nodeType":"YulTypedName","src":"8109:6:125","type":""},{"name":"value1","nativeSrc":"8117:6:125","nodeType":"YulTypedName","src":"8117:6:125","type":""}],"src":"8032:456:125"},{"body":{"nativeSrc":"8594:76:125","nodeType":"YulBlock","src":"8594:76:125","statements":[{"nativeSrc":"8604:26:125","nodeType":"YulAssignment","src":"8604:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8616:9:125","nodeType":"YulIdentifier","src":"8616:9:125"},{"kind":"number","nativeSrc":"8627:2:125","nodeType":"YulLiteral","src":"8627:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8612:3:125","nodeType":"YulIdentifier","src":"8612:3:125"},"nativeSrc":"8612:18:125","nodeType":"YulFunctionCall","src":"8612:18:125"},"variableNames":[{"name":"tail","nativeSrc":"8604:4:125","nodeType":"YulIdentifier","src":"8604:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8646:9:125","nodeType":"YulIdentifier","src":"8646:9:125"},{"name":"value0","nativeSrc":"8657:6:125","nodeType":"YulIdentifier","src":"8657:6:125"}],"functionName":{"name":"mstore","nativeSrc":"8639:6:125","nodeType":"YulIdentifier","src":"8639:6:125"},"nativeSrc":"8639:25:125","nodeType":"YulFunctionCall","src":"8639:25:125"},"nativeSrc":"8639:25:125","nodeType":"YulExpressionStatement","src":"8639:25:125"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"8493:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8563:9:125","nodeType":"YulTypedName","src":"8563:9:125","type":""},{"name":"value0","nativeSrc":"8574:6:125","nodeType":"YulTypedName","src":"8574:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8585:4:125","nodeType":"YulTypedName","src":"8585:4:125","type":""}],"src":"8493:177:125"},{"body":{"nativeSrc":"8765:497:125","nodeType":"YulBlock","src":"8765:497:125","statements":[{"body":{"nativeSrc":"8811:16:125","nodeType":"YulBlock","src":"8811:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8820:1:125","nodeType":"YulLiteral","src":"8820:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8823:1:125","nodeType":"YulLiteral","src":"8823:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8813:6:125","nodeType":"YulIdentifier","src":"8813:6:125"},"nativeSrc":"8813:12:125","nodeType":"YulFunctionCall","src":"8813:12:125"},"nativeSrc":"8813:12:125","nodeType":"YulExpressionStatement","src":"8813:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8786:7:125","nodeType":"YulIdentifier","src":"8786:7:125"},{"name":"headStart","nativeSrc":"8795:9:125","nodeType":"YulIdentifier","src":"8795:9:125"}],"functionName":{"name":"sub","nativeSrc":"8782:3:125","nodeType":"YulIdentifier","src":"8782:3:125"},"nativeSrc":"8782:23:125","nodeType":"YulFunctionCall","src":"8782:23:125"},{"kind":"number","nativeSrc":"8807:2:125","nodeType":"YulLiteral","src":"8807:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8778:3:125","nodeType":"YulIdentifier","src":"8778:3:125"},"nativeSrc":"8778:32:125","nodeType":"YulFunctionCall","src":"8778:32:125"},"nativeSrc":"8775:52:125","nodeType":"YulIf","src":"8775:52:125"},{"nativeSrc":"8836:37:125","nodeType":"YulVariableDeclaration","src":"8836:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8863:9:125","nodeType":"YulIdentifier","src":"8863:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"8850:12:125","nodeType":"YulIdentifier","src":"8850:12:125"},"nativeSrc":"8850:23:125","nodeType":"YulFunctionCall","src":"8850:23:125"},"variables":[{"name":"offset","nativeSrc":"8840:6:125","nodeType":"YulTypedName","src":"8840:6:125","type":""}]},{"body":{"nativeSrc":"8916:16:125","nodeType":"YulBlock","src":"8916:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8925:1:125","nodeType":"YulLiteral","src":"8925:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8928:1:125","nodeType":"YulLiteral","src":"8928:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8918:6:125","nodeType":"YulIdentifier","src":"8918:6:125"},"nativeSrc":"8918:12:125","nodeType":"YulFunctionCall","src":"8918:12:125"},"nativeSrc":"8918:12:125","nodeType":"YulExpressionStatement","src":"8918:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"8888:6:125","nodeType":"YulIdentifier","src":"8888:6:125"},{"kind":"number","nativeSrc":"8896:18:125","nodeType":"YulLiteral","src":"8896:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8885:2:125","nodeType":"YulIdentifier","src":"8885:2:125"},"nativeSrc":"8885:30:125","nodeType":"YulFunctionCall","src":"8885:30:125"},"nativeSrc":"8882:50:125","nodeType":"YulIf","src":"8882:50:125"},{"nativeSrc":"8941:32:125","nodeType":"YulVariableDeclaration","src":"8941:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8955:9:125","nodeType":"YulIdentifier","src":"8955:9:125"},{"name":"offset","nativeSrc":"8966:6:125","nodeType":"YulIdentifier","src":"8966:6:125"}],"functionName":{"name":"add","nativeSrc":"8951:3:125","nodeType":"YulIdentifier","src":"8951:3:125"},"nativeSrc":"8951:22:125","nodeType":"YulFunctionCall","src":"8951:22:125"},"variables":[{"name":"_1","nativeSrc":"8945:2:125","nodeType":"YulTypedName","src":"8945:2:125","type":""}]},{"body":{"nativeSrc":"9021:16:125","nodeType":"YulBlock","src":"9021:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9030:1:125","nodeType":"YulLiteral","src":"9030:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9033:1:125","nodeType":"YulLiteral","src":"9033:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9023:6:125","nodeType":"YulIdentifier","src":"9023:6:125"},"nativeSrc":"9023:12:125","nodeType":"YulFunctionCall","src":"9023:12:125"},"nativeSrc":"9023:12:125","nodeType":"YulExpressionStatement","src":"9023:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"9000:2:125","nodeType":"YulIdentifier","src":"9000:2:125"},{"kind":"number","nativeSrc":"9004:4:125","nodeType":"YulLiteral","src":"9004:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"8996:3:125","nodeType":"YulIdentifier","src":"8996:3:125"},"nativeSrc":"8996:13:125","nodeType":"YulFunctionCall","src":"8996:13:125"},{"name":"dataEnd","nativeSrc":"9011:7:125","nodeType":"YulIdentifier","src":"9011:7:125"}],"functionName":{"name":"slt","nativeSrc":"8992:3:125","nodeType":"YulIdentifier","src":"8992:3:125"},"nativeSrc":"8992:27:125","nodeType":"YulFunctionCall","src":"8992:27:125"}],"functionName":{"name":"iszero","nativeSrc":"8985:6:125","nodeType":"YulIdentifier","src":"8985:6:125"},"nativeSrc":"8985:35:125","nodeType":"YulFunctionCall","src":"8985:35:125"},"nativeSrc":"8982:55:125","nodeType":"YulIf","src":"8982:55:125"},{"nativeSrc":"9046:30:125","nodeType":"YulVariableDeclaration","src":"9046:30:125","value":{"arguments":[{"name":"_1","nativeSrc":"9073:2:125","nodeType":"YulIdentifier","src":"9073:2:125"}],"functionName":{"name":"calldataload","nativeSrc":"9060:12:125","nodeType":"YulIdentifier","src":"9060:12:125"},"nativeSrc":"9060:16:125","nodeType":"YulFunctionCall","src":"9060:16:125"},"variables":[{"name":"length","nativeSrc":"9050:6:125","nodeType":"YulTypedName","src":"9050:6:125","type":""}]},{"body":{"nativeSrc":"9119:16:125","nodeType":"YulBlock","src":"9119:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9128:1:125","nodeType":"YulLiteral","src":"9128:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9131:1:125","nodeType":"YulLiteral","src":"9131:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9121:6:125","nodeType":"YulIdentifier","src":"9121:6:125"},"nativeSrc":"9121:12:125","nodeType":"YulFunctionCall","src":"9121:12:125"},"nativeSrc":"9121:12:125","nodeType":"YulExpressionStatement","src":"9121:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"9091:6:125","nodeType":"YulIdentifier","src":"9091:6:125"},{"kind":"number","nativeSrc":"9099:18:125","nodeType":"YulLiteral","src":"9099:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"9088:2:125","nodeType":"YulIdentifier","src":"9088:2:125"},"nativeSrc":"9088:30:125","nodeType":"YulFunctionCall","src":"9088:30:125"},"nativeSrc":"9085:50:125","nodeType":"YulIf","src":"9085:50:125"},{"body":{"nativeSrc":"9185:16:125","nodeType":"YulBlock","src":"9185:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9194:1:125","nodeType":"YulLiteral","src":"9194:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9197:1:125","nodeType":"YulLiteral","src":"9197:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9187:6:125","nodeType":"YulIdentifier","src":"9187:6:125"},"nativeSrc":"9187:12:125","nodeType":"YulFunctionCall","src":"9187:12:125"},"nativeSrc":"9187:12:125","nodeType":"YulExpressionStatement","src":"9187:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"9158:2:125","nodeType":"YulIdentifier","src":"9158:2:125"},{"name":"length","nativeSrc":"9162:6:125","nodeType":"YulIdentifier","src":"9162:6:125"}],"functionName":{"name":"add","nativeSrc":"9154:3:125","nodeType":"YulIdentifier","src":"9154:3:125"},"nativeSrc":"9154:15:125","nodeType":"YulFunctionCall","src":"9154:15:125"},{"kind":"number","nativeSrc":"9171:2:125","nodeType":"YulLiteral","src":"9171:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9150:3:125","nodeType":"YulIdentifier","src":"9150:3:125"},"nativeSrc":"9150:24:125","nodeType":"YulFunctionCall","src":"9150:24:125"},{"name":"dataEnd","nativeSrc":"9176:7:125","nodeType":"YulIdentifier","src":"9176:7:125"}],"functionName":{"name":"gt","nativeSrc":"9147:2:125","nodeType":"YulIdentifier","src":"9147:2:125"},"nativeSrc":"9147:37:125","nodeType":"YulFunctionCall","src":"9147:37:125"},"nativeSrc":"9144:57:125","nodeType":"YulIf","src":"9144:57:125"},{"nativeSrc":"9210:21:125","nodeType":"YulAssignment","src":"9210:21:125","value":{"arguments":[{"name":"_1","nativeSrc":"9224:2:125","nodeType":"YulIdentifier","src":"9224:2:125"},{"kind":"number","nativeSrc":"9228:2:125","nodeType":"YulLiteral","src":"9228:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9220:3:125","nodeType":"YulIdentifier","src":"9220:3:125"},"nativeSrc":"9220:11:125","nodeType":"YulFunctionCall","src":"9220:11:125"},"variableNames":[{"name":"value0","nativeSrc":"9210:6:125","nodeType":"YulIdentifier","src":"9210:6:125"}]},{"nativeSrc":"9240:16:125","nodeType":"YulAssignment","src":"9240:16:125","value":{"name":"length","nativeSrc":"9250:6:125","nodeType":"YulIdentifier","src":"9250:6:125"},"variableNames":[{"name":"value1","nativeSrc":"9240:6:125","nodeType":"YulIdentifier","src":"9240:6:125"}]}]},"name":"abi_decode_tuple_t_string_calldata_ptr","nativeSrc":"8675:587:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8723:9:125","nodeType":"YulTypedName","src":"8723:9:125","type":""},{"name":"dataEnd","nativeSrc":"8734:7:125","nodeType":"YulTypedName","src":"8734:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8746:6:125","nodeType":"YulTypedName","src":"8746:6:125","type":""},{"name":"value1","nativeSrc":"8754:6:125","nodeType":"YulTypedName","src":"8754:6:125","type":""}],"src":"8675:587:125"},{"body":{"nativeSrc":"9325:56:125","nodeType":"YulBlock","src":"9325:56:125","statements":[{"body":{"nativeSrc":"9359:16:125","nodeType":"YulBlock","src":"9359:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9368:1:125","nodeType":"YulLiteral","src":"9368:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9371:1:125","nodeType":"YulLiteral","src":"9371:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9361:6:125","nodeType":"YulIdentifier","src":"9361:6:125"},"nativeSrc":"9361:12:125","nodeType":"YulFunctionCall","src":"9361:12:125"},"nativeSrc":"9361:12:125","nodeType":"YulExpressionStatement","src":"9361:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"9348:5:125","nodeType":"YulIdentifier","src":"9348:5:125"},{"kind":"number","nativeSrc":"9355:1:125","nodeType":"YulLiteral","src":"9355:1:125","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"9345:2:125","nodeType":"YulIdentifier","src":"9345:2:125"},"nativeSrc":"9345:12:125","nodeType":"YulFunctionCall","src":"9345:12:125"}],"functionName":{"name":"iszero","nativeSrc":"9338:6:125","nodeType":"YulIdentifier","src":"9338:6:125"},"nativeSrc":"9338:20:125","nodeType":"YulFunctionCall","src":"9338:20:125"},"nativeSrc":"9335:40:125","nodeType":"YulIf","src":"9335:40:125"}]},"name":"validator_revert_enum_ComponentStatus","nativeSrc":"9267:114:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"9314:5:125","nodeType":"YulTypedName","src":"9314:5:125","type":""}],"src":"9267:114:125"},{"body":{"nativeSrc":"9523:314:125","nodeType":"YulBlock","src":"9523:314:125","statements":[{"body":{"nativeSrc":"9569:16:125","nodeType":"YulBlock","src":"9569:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9578:1:125","nodeType":"YulLiteral","src":"9578:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9581:1:125","nodeType":"YulLiteral","src":"9581:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9571:6:125","nodeType":"YulIdentifier","src":"9571:6:125"},"nativeSrc":"9571:12:125","nodeType":"YulFunctionCall","src":"9571:12:125"},"nativeSrc":"9571:12:125","nodeType":"YulExpressionStatement","src":"9571:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9544:7:125","nodeType":"YulIdentifier","src":"9544:7:125"},{"name":"headStart","nativeSrc":"9553:9:125","nodeType":"YulIdentifier","src":"9553:9:125"}],"functionName":{"name":"sub","nativeSrc":"9540:3:125","nodeType":"YulIdentifier","src":"9540:3:125"},"nativeSrc":"9540:23:125","nodeType":"YulFunctionCall","src":"9540:23:125"},{"kind":"number","nativeSrc":"9565:2:125","nodeType":"YulLiteral","src":"9565:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"9536:3:125","nodeType":"YulIdentifier","src":"9536:3:125"},"nativeSrc":"9536:32:125","nodeType":"YulFunctionCall","src":"9536:32:125"},"nativeSrc":"9533:52:125","nodeType":"YulIf","src":"9533:52:125"},{"nativeSrc":"9594:36:125","nodeType":"YulVariableDeclaration","src":"9594:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"9620:9:125","nodeType":"YulIdentifier","src":"9620:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"9607:12:125","nodeType":"YulIdentifier","src":"9607:12:125"},"nativeSrc":"9607:23:125","nodeType":"YulFunctionCall","src":"9607:23:125"},"variables":[{"name":"value","nativeSrc":"9598:5:125","nodeType":"YulTypedName","src":"9598:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"9664:5:125","nodeType":"YulIdentifier","src":"9664:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"9639:24:125","nodeType":"YulIdentifier","src":"9639:24:125"},"nativeSrc":"9639:31:125","nodeType":"YulFunctionCall","src":"9639:31:125"},"nativeSrc":"9639:31:125","nodeType":"YulExpressionStatement","src":"9639:31:125"},{"nativeSrc":"9679:15:125","nodeType":"YulAssignment","src":"9679:15:125","value":{"name":"value","nativeSrc":"9689:5:125","nodeType":"YulIdentifier","src":"9689:5:125"},"variableNames":[{"name":"value0","nativeSrc":"9679:6:125","nodeType":"YulIdentifier","src":"9679:6:125"}]},{"nativeSrc":"9703:47:125","nodeType":"YulVariableDeclaration","src":"9703:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9735:9:125","nodeType":"YulIdentifier","src":"9735:9:125"},{"kind":"number","nativeSrc":"9746:2:125","nodeType":"YulLiteral","src":"9746:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9731:3:125","nodeType":"YulIdentifier","src":"9731:3:125"},"nativeSrc":"9731:18:125","nodeType":"YulFunctionCall","src":"9731:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"9718:12:125","nodeType":"YulIdentifier","src":"9718:12:125"},"nativeSrc":"9718:32:125","nodeType":"YulFunctionCall","src":"9718:32:125"},"variables":[{"name":"value_1","nativeSrc":"9707:7:125","nodeType":"YulTypedName","src":"9707:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"9797:7:125","nodeType":"YulIdentifier","src":"9797:7:125"}],"functionName":{"name":"validator_revert_enum_ComponentStatus","nativeSrc":"9759:37:125","nodeType":"YulIdentifier","src":"9759:37:125"},"nativeSrc":"9759:46:125","nodeType":"YulFunctionCall","src":"9759:46:125"},"nativeSrc":"9759:46:125","nodeType":"YulExpressionStatement","src":"9759:46:125"},{"nativeSrc":"9814:17:125","nodeType":"YulAssignment","src":"9814:17:125","value":{"name":"value_1","nativeSrc":"9824:7:125","nodeType":"YulIdentifier","src":"9824:7:125"},"variableNames":[{"name":"value1","nativeSrc":"9814:6:125","nodeType":"YulIdentifier","src":"9814:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPoolComponent_$14655t_enum$_ComponentStatus_$8392","nativeSrc":"9386:451:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9481:9:125","nodeType":"YulTypedName","src":"9481:9:125","type":""},{"name":"dataEnd","nativeSrc":"9492:7:125","nodeType":"YulTypedName","src":"9492:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9504:6:125","nodeType":"YulTypedName","src":"9504:6:125","type":""},{"name":"value1","nativeSrc":"9512:6:125","nodeType":"YulTypedName","src":"9512:6:125","type":""}],"src":"9386:451:125"},{"body":{"nativeSrc":"9915:86:125","nodeType":"YulBlock","src":"9915:86:125","statements":[{"body":{"nativeSrc":"9955:16:125","nodeType":"YulBlock","src":"9955:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9964:1:125","nodeType":"YulLiteral","src":"9964:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9967:1:125","nodeType":"YulLiteral","src":"9967:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9957:6:125","nodeType":"YulIdentifier","src":"9957:6:125"},"nativeSrc":"9957:12:125","nodeType":"YulFunctionCall","src":"9957:12:125"},"nativeSrc":"9957:12:125","nodeType":"YulExpressionStatement","src":"9957:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"9936:3:125","nodeType":"YulIdentifier","src":"9936:3:125"},{"name":"offset","nativeSrc":"9941:6:125","nodeType":"YulIdentifier","src":"9941:6:125"}],"functionName":{"name":"sub","nativeSrc":"9932:3:125","nodeType":"YulIdentifier","src":"9932:3:125"},"nativeSrc":"9932:16:125","nodeType":"YulFunctionCall","src":"9932:16:125"},{"kind":"number","nativeSrc":"9950:3:125","nodeType":"YulLiteral","src":"9950:3:125","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"9928:3:125","nodeType":"YulIdentifier","src":"9928:3:125"},"nativeSrc":"9928:26:125","nodeType":"YulFunctionCall","src":"9928:26:125"},"nativeSrc":"9925:46:125","nodeType":"YulIf","src":"9925:46:125"},{"nativeSrc":"9980:15:125","nodeType":"YulAssignment","src":"9980:15:125","value":{"name":"offset","nativeSrc":"9989:6:125","nodeType":"YulIdentifier","src":"9989:6:125"},"variableNames":[{"name":"value","nativeSrc":"9980:5:125","nodeType":"YulIdentifier","src":"9980:5:125"}]}]},"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"9842:159:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"9889:6:125","nodeType":"YulTypedName","src":"9889:6:125","type":""},{"name":"end","nativeSrc":"9897:3:125","nodeType":"YulTypedName","src":"9897:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"9905:5:125","nodeType":"YulTypedName","src":"9905:5:125","type":""}],"src":"9842:159:125"},{"body":{"nativeSrc":"10184:398:125","nodeType":"YulBlock","src":"10184:398:125","statements":[{"body":{"nativeSrc":"10231:16:125","nodeType":"YulBlock","src":"10231:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10240:1:125","nodeType":"YulLiteral","src":"10240:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10243:1:125","nodeType":"YulLiteral","src":"10243:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10233:6:125","nodeType":"YulIdentifier","src":"10233:6:125"},"nativeSrc":"10233:12:125","nodeType":"YulFunctionCall","src":"10233:12:125"},"nativeSrc":"10233:12:125","nodeType":"YulExpressionStatement","src":"10233:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10205:7:125","nodeType":"YulIdentifier","src":"10205:7:125"},{"name":"headStart","nativeSrc":"10214:9:125","nodeType":"YulIdentifier","src":"10214:9:125"}],"functionName":{"name":"sub","nativeSrc":"10201:3:125","nodeType":"YulIdentifier","src":"10201:3:125"},"nativeSrc":"10201:23:125","nodeType":"YulFunctionCall","src":"10201:23:125"},{"kind":"number","nativeSrc":"10226:3:125","nodeType":"YulLiteral","src":"10226:3:125","type":"","value":"832"}],"functionName":{"name":"slt","nativeSrc":"10197:3:125","nodeType":"YulIdentifier","src":"10197:3:125"},"nativeSrc":"10197:33:125","nodeType":"YulFunctionCall","src":"10197:33:125"},"nativeSrc":"10194:53:125","nodeType":"YulIf","src":"10194:53:125"},{"nativeSrc":"10256:67:125","nodeType":"YulAssignment","src":"10256:67:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10304:9:125","nodeType":"YulIdentifier","src":"10304:9:125"},{"name":"dataEnd","nativeSrc":"10315:7:125","nodeType":"YulIdentifier","src":"10315:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"10266:37:125","nodeType":"YulIdentifier","src":"10266:37:125"},"nativeSrc":"10266:57:125","nodeType":"YulFunctionCall","src":"10266:57:125"},"variableNames":[{"name":"value0","nativeSrc":"10256:6:125","nodeType":"YulIdentifier","src":"10256:6:125"}]},{"nativeSrc":"10332:68:125","nodeType":"YulAssignment","src":"10332:68:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10375:9:125","nodeType":"YulIdentifier","src":"10375:9:125"},{"kind":"number","nativeSrc":"10386:3:125","nodeType":"YulLiteral","src":"10386:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"10371:3:125","nodeType":"YulIdentifier","src":"10371:3:125"},"nativeSrc":"10371:19:125","nodeType":"YulFunctionCall","src":"10371:19:125"},{"name":"dataEnd","nativeSrc":"10392:7:125","nodeType":"YulIdentifier","src":"10392:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"10342:28:125","nodeType":"YulIdentifier","src":"10342:28:125"},"nativeSrc":"10342:58:125","nodeType":"YulFunctionCall","src":"10342:58:125"},"variableNames":[{"name":"value1","nativeSrc":"10332:6:125","nodeType":"YulIdentifier","src":"10332:6:125"}]},{"nativeSrc":"10409:46:125","nodeType":"YulVariableDeclaration","src":"10409:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10439:9:125","nodeType":"YulIdentifier","src":"10439:9:125"},{"kind":"number","nativeSrc":"10450:3:125","nodeType":"YulLiteral","src":"10450:3:125","type":"","value":"768"}],"functionName":{"name":"add","nativeSrc":"10435:3:125","nodeType":"YulIdentifier","src":"10435:3:125"},"nativeSrc":"10435:19:125","nodeType":"YulFunctionCall","src":"10435:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"10422:12:125","nodeType":"YulIdentifier","src":"10422:12:125"},"nativeSrc":"10422:33:125","nodeType":"YulFunctionCall","src":"10422:33:125"},"variables":[{"name":"value","nativeSrc":"10413:5:125","nodeType":"YulTypedName","src":"10413:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10489:5:125","nodeType":"YulIdentifier","src":"10489:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10464:24:125","nodeType":"YulIdentifier","src":"10464:24:125"},"nativeSrc":"10464:31:125","nodeType":"YulFunctionCall","src":"10464:31:125"},"nativeSrc":"10464:31:125","nodeType":"YulExpressionStatement","src":"10464:31:125"},{"nativeSrc":"10504:15:125","nodeType":"YulAssignment","src":"10504:15:125","value":{"name":"value","nativeSrc":"10514:5:125","nodeType":"YulIdentifier","src":"10514:5:125"},"variableNames":[{"name":"value2","nativeSrc":"10504:6:125","nodeType":"YulIdentifier","src":"10504:6:125"}]},{"nativeSrc":"10528:48:125","nodeType":"YulAssignment","src":"10528:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10560:9:125","nodeType":"YulIdentifier","src":"10560:9:125"},{"kind":"number","nativeSrc":"10571:3:125","nodeType":"YulLiteral","src":"10571:3:125","type":"","value":"800"}],"functionName":{"name":"add","nativeSrc":"10556:3:125","nodeType":"YulIdentifier","src":"10556:3:125"},"nativeSrc":"10556:19:125","nodeType":"YulFunctionCall","src":"10556:19:125"}],"functionName":{"name":"abi_decode_uint96","nativeSrc":"10538:17:125","nodeType":"YulIdentifier","src":"10538:17:125"},"nativeSrc":"10538:38:125","nodeType":"YulFunctionCall","src":"10538:38:125"},"variableNames":[{"name":"value3","nativeSrc":"10528:6:125","nodeType":"YulIdentifier","src":"10528:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_struct$_PolicyData_$7744_memory_ptrt_addresst_uint96","nativeSrc":"10006:576:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10126:9:125","nodeType":"YulTypedName","src":"10126:9:125","type":""},{"name":"dataEnd","nativeSrc":"10137:7:125","nodeType":"YulTypedName","src":"10137:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10149:6:125","nodeType":"YulTypedName","src":"10149:6:125","type":""},{"name":"value1","nativeSrc":"10157:6:125","nodeType":"YulTypedName","src":"10157:6:125","type":""},{"name":"value2","nativeSrc":"10165:6:125","nodeType":"YulTypedName","src":"10165:6:125","type":""},{"name":"value3","nativeSrc":"10173:6:125","nodeType":"YulTypedName","src":"10173:6:125","type":""}],"src":"10006:576:125"},{"body":{"nativeSrc":"10722:314:125","nodeType":"YulBlock","src":"10722:314:125","statements":[{"body":{"nativeSrc":"10768:16:125","nodeType":"YulBlock","src":"10768:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10777:1:125","nodeType":"YulLiteral","src":"10777:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10780:1:125","nodeType":"YulLiteral","src":"10780:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10770:6:125","nodeType":"YulIdentifier","src":"10770:6:125"},"nativeSrc":"10770:12:125","nodeType":"YulFunctionCall","src":"10770:12:125"},"nativeSrc":"10770:12:125","nodeType":"YulExpressionStatement","src":"10770:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10743:7:125","nodeType":"YulIdentifier","src":"10743:7:125"},{"name":"headStart","nativeSrc":"10752:9:125","nodeType":"YulIdentifier","src":"10752:9:125"}],"functionName":{"name":"sub","nativeSrc":"10739:3:125","nodeType":"YulIdentifier","src":"10739:3:125"},"nativeSrc":"10739:23:125","nodeType":"YulFunctionCall","src":"10739:23:125"},{"kind":"number","nativeSrc":"10764:2:125","nodeType":"YulLiteral","src":"10764:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"10735:3:125","nodeType":"YulIdentifier","src":"10735:3:125"},"nativeSrc":"10735:32:125","nodeType":"YulFunctionCall","src":"10735:32:125"},"nativeSrc":"10732:52:125","nodeType":"YulIf","src":"10732:52:125"},{"nativeSrc":"10793:36:125","nodeType":"YulVariableDeclaration","src":"10793:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10819:9:125","nodeType":"YulIdentifier","src":"10819:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"10806:12:125","nodeType":"YulIdentifier","src":"10806:12:125"},"nativeSrc":"10806:23:125","nodeType":"YulFunctionCall","src":"10806:23:125"},"variables":[{"name":"value","nativeSrc":"10797:5:125","nodeType":"YulTypedName","src":"10797:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10863:5:125","nodeType":"YulIdentifier","src":"10863:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10838:24:125","nodeType":"YulIdentifier","src":"10838:24:125"},"nativeSrc":"10838:31:125","nodeType":"YulFunctionCall","src":"10838:31:125"},"nativeSrc":"10838:31:125","nodeType":"YulExpressionStatement","src":"10838:31:125"},{"nativeSrc":"10878:15:125","nodeType":"YulAssignment","src":"10878:15:125","value":{"name":"value","nativeSrc":"10888:5:125","nodeType":"YulIdentifier","src":"10888:5:125"},"variableNames":[{"name":"value0","nativeSrc":"10878:6:125","nodeType":"YulIdentifier","src":"10878:6:125"}]},{"nativeSrc":"10902:47:125","nodeType":"YulVariableDeclaration","src":"10902:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10934:9:125","nodeType":"YulIdentifier","src":"10934:9:125"},{"kind":"number","nativeSrc":"10945:2:125","nodeType":"YulLiteral","src":"10945:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10930:3:125","nodeType":"YulIdentifier","src":"10930:3:125"},"nativeSrc":"10930:18:125","nodeType":"YulFunctionCall","src":"10930:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"10917:12:125","nodeType":"YulIdentifier","src":"10917:12:125"},"nativeSrc":"10917:32:125","nodeType":"YulFunctionCall","src":"10917:32:125"},"variables":[{"name":"value_1","nativeSrc":"10906:7:125","nodeType":"YulTypedName","src":"10906:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"10996:7:125","nodeType":"YulIdentifier","src":"10996:7:125"}],"functionName":{"name":"validator_revert_enum_ComponentStatus","nativeSrc":"10958:37:125","nodeType":"YulIdentifier","src":"10958:37:125"},"nativeSrc":"10958:46:125","nodeType":"YulFunctionCall","src":"10958:46:125"},"nativeSrc":"10958:46:125","nodeType":"YulExpressionStatement","src":"10958:46:125"},{"nativeSrc":"11013:17:125","nodeType":"YulAssignment","src":"11013:17:125","value":{"name":"value_1","nativeSrc":"11023:7:125","nodeType":"YulIdentifier","src":"11023:7:125"},"variableNames":[{"name":"value1","nativeSrc":"11013:6:125","nodeType":"YulIdentifier","src":"11013:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPoolComponent_$14655t_enum$_ComponentKind_$8398","nativeSrc":"10587:449:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10680:9:125","nodeType":"YulTypedName","src":"10680:9:125","type":""},{"name":"dataEnd","nativeSrc":"10691:7:125","nodeType":"YulTypedName","src":"10691:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10703:6:125","nodeType":"YulTypedName","src":"10703:6:125","type":""},{"name":"value1","nativeSrc":"10711:6:125","nodeType":"YulTypedName","src":"10711:6:125","type":""}],"src":"10587:449:125"},{"body":{"nativeSrc":"11192:451:125","nodeType":"YulBlock","src":"11192:451:125","statements":[{"body":{"nativeSrc":"11239:16:125","nodeType":"YulBlock","src":"11239:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11248:1:125","nodeType":"YulLiteral","src":"11248:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11251:1:125","nodeType":"YulLiteral","src":"11251:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11241:6:125","nodeType":"YulIdentifier","src":"11241:6:125"},"nativeSrc":"11241:12:125","nodeType":"YulFunctionCall","src":"11241:12:125"},"nativeSrc":"11241:12:125","nodeType":"YulExpressionStatement","src":"11241:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11213:7:125","nodeType":"YulIdentifier","src":"11213:7:125"},{"name":"headStart","nativeSrc":"11222:9:125","nodeType":"YulIdentifier","src":"11222:9:125"}],"functionName":{"name":"sub","nativeSrc":"11209:3:125","nodeType":"YulIdentifier","src":"11209:3:125"},"nativeSrc":"11209:23:125","nodeType":"YulFunctionCall","src":"11209:23:125"},{"kind":"number","nativeSrc":"11234:3:125","nodeType":"YulLiteral","src":"11234:3:125","type":"","value":"480"}],"functionName":{"name":"slt","nativeSrc":"11205:3:125","nodeType":"YulIdentifier","src":"11205:3:125"},"nativeSrc":"11205:33:125","nodeType":"YulFunctionCall","src":"11205:33:125"},"nativeSrc":"11202:53:125","nodeType":"YulIf","src":"11202:53:125"},{"nativeSrc":"11264:67:125","nodeType":"YulAssignment","src":"11264:67:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11312:9:125","nodeType":"YulIdentifier","src":"11312:9:125"},{"name":"dataEnd","nativeSrc":"11323:7:125","nodeType":"YulIdentifier","src":"11323:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"11274:37:125","nodeType":"YulIdentifier","src":"11274:37:125"},"nativeSrc":"11274:57:125","nodeType":"YulFunctionCall","src":"11274:57:125"},"variableNames":[{"name":"value0","nativeSrc":"11264:6:125","nodeType":"YulIdentifier","src":"11264:6:125"}]},{"nativeSrc":"11340:14:125","nodeType":"YulVariableDeclaration","src":"11340:14:125","value":{"kind":"number","nativeSrc":"11353:1:125","nodeType":"YulLiteral","src":"11353:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"11344:5:125","nodeType":"YulTypedName","src":"11344:5:125","type":""}]},{"nativeSrc":"11363:42:125","nodeType":"YulAssignment","src":"11363:42:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11389:9:125","nodeType":"YulIdentifier","src":"11389:9:125"},{"kind":"number","nativeSrc":"11400:3:125","nodeType":"YulLiteral","src":"11400:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"11385:3:125","nodeType":"YulIdentifier","src":"11385:3:125"},"nativeSrc":"11385:19:125","nodeType":"YulFunctionCall","src":"11385:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"11372:12:125","nodeType":"YulIdentifier","src":"11372:12:125"},"nativeSrc":"11372:33:125","nodeType":"YulFunctionCall","src":"11372:33:125"},"variableNames":[{"name":"value","nativeSrc":"11363:5:125","nodeType":"YulIdentifier","src":"11363:5:125"}]},{"nativeSrc":"11414:15:125","nodeType":"YulAssignment","src":"11414:15:125","value":{"name":"value","nativeSrc":"11424:5:125","nodeType":"YulIdentifier","src":"11424:5:125"},"variableNames":[{"name":"value1","nativeSrc":"11414:6:125","nodeType":"YulIdentifier","src":"11414:6:125"}]},{"nativeSrc":"11438:16:125","nodeType":"YulVariableDeclaration","src":"11438:16:125","value":{"kind":"number","nativeSrc":"11453:1:125","nodeType":"YulLiteral","src":"11453:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"11442:7:125","nodeType":"YulTypedName","src":"11442:7:125","type":""}]},{"nativeSrc":"11463:44:125","nodeType":"YulAssignment","src":"11463:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11491:9:125","nodeType":"YulIdentifier","src":"11491:9:125"},{"kind":"number","nativeSrc":"11502:3:125","nodeType":"YulLiteral","src":"11502:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"11487:3:125","nodeType":"YulIdentifier","src":"11487:3:125"},"nativeSrc":"11487:19:125","nodeType":"YulFunctionCall","src":"11487:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"11474:12:125","nodeType":"YulIdentifier","src":"11474:12:125"},"nativeSrc":"11474:33:125","nodeType":"YulFunctionCall","src":"11474:33:125"},"variableNames":[{"name":"value_1","nativeSrc":"11463:7:125","nodeType":"YulIdentifier","src":"11463:7:125"}]},{"nativeSrc":"11516:17:125","nodeType":"YulAssignment","src":"11516:17:125","value":{"name":"value_1","nativeSrc":"11526:7:125","nodeType":"YulIdentifier","src":"11526:7:125"},"variableNames":[{"name":"value2","nativeSrc":"11516:6:125","nodeType":"YulIdentifier","src":"11516:6:125"}]},{"nativeSrc":"11542:16:125","nodeType":"YulVariableDeclaration","src":"11542:16:125","value":{"kind":"number","nativeSrc":"11557:1:125","nodeType":"YulLiteral","src":"11557:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"11546:7:125","nodeType":"YulTypedName","src":"11546:7:125","type":""}]},{"nativeSrc":"11567:44:125","nodeType":"YulAssignment","src":"11567:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11595:9:125","nodeType":"YulIdentifier","src":"11595:9:125"},{"kind":"number","nativeSrc":"11606:3:125","nodeType":"YulLiteral","src":"11606:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"11591:3:125","nodeType":"YulIdentifier","src":"11591:3:125"},"nativeSrc":"11591:19:125","nodeType":"YulFunctionCall","src":"11591:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"11578:12:125","nodeType":"YulIdentifier","src":"11578:12:125"},"nativeSrc":"11578:33:125","nodeType":"YulFunctionCall","src":"11578:33:125"},"variableNames":[{"name":"value_2","nativeSrc":"11567:7:125","nodeType":"YulIdentifier","src":"11567:7:125"}]},{"nativeSrc":"11620:17:125","nodeType":"YulAssignment","src":"11620:17:125","value":{"name":"value_2","nativeSrc":"11630:7:125","nodeType":"YulIdentifier","src":"11630:7:125"},"variableNames":[{"name":"value3","nativeSrc":"11620:6:125","nodeType":"YulIdentifier","src":"11620:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_uint256t_uint256t_uint256","nativeSrc":"11041:602:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11134:9:125","nodeType":"YulTypedName","src":"11134:9:125","type":""},{"name":"dataEnd","nativeSrc":"11145:7:125","nodeType":"YulTypedName","src":"11145:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11157:6:125","nodeType":"YulTypedName","src":"11157:6:125","type":""},{"name":"value1","nativeSrc":"11165:6:125","nodeType":"YulTypedName","src":"11165:6:125","type":""},{"name":"value2","nativeSrc":"11173:6:125","nodeType":"YulTypedName","src":"11173:6:125","type":""},{"name":"value3","nativeSrc":"11181:6:125","nodeType":"YulTypedName","src":"11181:6:125","type":""}],"src":"11041:602:125"},{"body":{"nativeSrc":"11718:177:125","nodeType":"YulBlock","src":"11718:177:125","statements":[{"body":{"nativeSrc":"11764:16:125","nodeType":"YulBlock","src":"11764:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11773:1:125","nodeType":"YulLiteral","src":"11773:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11776:1:125","nodeType":"YulLiteral","src":"11776:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11766:6:125","nodeType":"YulIdentifier","src":"11766:6:125"},"nativeSrc":"11766:12:125","nodeType":"YulFunctionCall","src":"11766:12:125"},"nativeSrc":"11766:12:125","nodeType":"YulExpressionStatement","src":"11766:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11739:7:125","nodeType":"YulIdentifier","src":"11739:7:125"},{"name":"headStart","nativeSrc":"11748:9:125","nodeType":"YulIdentifier","src":"11748:9:125"}],"functionName":{"name":"sub","nativeSrc":"11735:3:125","nodeType":"YulIdentifier","src":"11735:3:125"},"nativeSrc":"11735:23:125","nodeType":"YulFunctionCall","src":"11735:23:125"},{"kind":"number","nativeSrc":"11760:2:125","nodeType":"YulLiteral","src":"11760:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"11731:3:125","nodeType":"YulIdentifier","src":"11731:3:125"},"nativeSrc":"11731:32:125","nodeType":"YulFunctionCall","src":"11731:32:125"},"nativeSrc":"11728:52:125","nodeType":"YulIf","src":"11728:52:125"},{"nativeSrc":"11789:36:125","nodeType":"YulVariableDeclaration","src":"11789:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11815:9:125","nodeType":"YulIdentifier","src":"11815:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"11802:12:125","nodeType":"YulIdentifier","src":"11802:12:125"},"nativeSrc":"11802:23:125","nodeType":"YulFunctionCall","src":"11802:23:125"},"variables":[{"name":"value","nativeSrc":"11793:5:125","nodeType":"YulTypedName","src":"11793:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11859:5:125","nodeType":"YulIdentifier","src":"11859:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"11834:24:125","nodeType":"YulIdentifier","src":"11834:24:125"},"nativeSrc":"11834:31:125","nodeType":"YulFunctionCall","src":"11834:31:125"},"nativeSrc":"11834:31:125","nodeType":"YulExpressionStatement","src":"11834:31:125"},{"nativeSrc":"11874:15:125","nodeType":"YulAssignment","src":"11874:15:125","value":{"name":"value","nativeSrc":"11884:5:125","nodeType":"YulIdentifier","src":"11884:5:125"},"variableNames":[{"name":"value0","nativeSrc":"11874:6:125","nodeType":"YulIdentifier","src":"11874:6:125"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"11648:247:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11684:9:125","nodeType":"YulTypedName","src":"11684:9:125","type":""},{"name":"dataEnd","nativeSrc":"11695:7:125","nodeType":"YulTypedName","src":"11695:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11707:6:125","nodeType":"YulTypedName","src":"11707:6:125","type":""}],"src":"11648:247:125"},{"body":{"nativeSrc":"12008:280:125","nodeType":"YulBlock","src":"12008:280:125","statements":[{"body":{"nativeSrc":"12054:16:125","nodeType":"YulBlock","src":"12054:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12063:1:125","nodeType":"YulLiteral","src":"12063:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12066:1:125","nodeType":"YulLiteral","src":"12066:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12056:6:125","nodeType":"YulIdentifier","src":"12056:6:125"},"nativeSrc":"12056:12:125","nodeType":"YulFunctionCall","src":"12056:12:125"},"nativeSrc":"12056:12:125","nodeType":"YulExpressionStatement","src":"12056:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12029:7:125","nodeType":"YulIdentifier","src":"12029:7:125"},{"name":"headStart","nativeSrc":"12038:9:125","nodeType":"YulIdentifier","src":"12038:9:125"}],"functionName":{"name":"sub","nativeSrc":"12025:3:125","nodeType":"YulIdentifier","src":"12025:3:125"},"nativeSrc":"12025:23:125","nodeType":"YulFunctionCall","src":"12025:23:125"},{"kind":"number","nativeSrc":"12050:2:125","nodeType":"YulLiteral","src":"12050:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"12021:3:125","nodeType":"YulIdentifier","src":"12021:3:125"},"nativeSrc":"12021:32:125","nodeType":"YulFunctionCall","src":"12021:32:125"},"nativeSrc":"12018:52:125","nodeType":"YulIf","src":"12018:52:125"},{"nativeSrc":"12079:36:125","nodeType":"YulVariableDeclaration","src":"12079:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12105:9:125","nodeType":"YulIdentifier","src":"12105:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"12092:12:125","nodeType":"YulIdentifier","src":"12092:12:125"},"nativeSrc":"12092:23:125","nodeType":"YulFunctionCall","src":"12092:23:125"},"variables":[{"name":"value","nativeSrc":"12083:5:125","nodeType":"YulTypedName","src":"12083:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12149:5:125","nodeType":"YulIdentifier","src":"12149:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"12124:24:125","nodeType":"YulIdentifier","src":"12124:24:125"},"nativeSrc":"12124:31:125","nodeType":"YulFunctionCall","src":"12124:31:125"},"nativeSrc":"12124:31:125","nodeType":"YulExpressionStatement","src":"12124:31:125"},{"nativeSrc":"12164:15:125","nodeType":"YulAssignment","src":"12164:15:125","value":{"name":"value","nativeSrc":"12174:5:125","nodeType":"YulIdentifier","src":"12174:5:125"},"variableNames":[{"name":"value0","nativeSrc":"12164:6:125","nodeType":"YulIdentifier","src":"12164:6:125"}]},{"nativeSrc":"12188:16:125","nodeType":"YulVariableDeclaration","src":"12188:16:125","value":{"kind":"number","nativeSrc":"12203:1:125","nodeType":"YulLiteral","src":"12203:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"12192:7:125","nodeType":"YulTypedName","src":"12192:7:125","type":""}]},{"nativeSrc":"12213:43:125","nodeType":"YulAssignment","src":"12213:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12241:9:125","nodeType":"YulIdentifier","src":"12241:9:125"},{"kind":"number","nativeSrc":"12252:2:125","nodeType":"YulLiteral","src":"12252:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12237:3:125","nodeType":"YulIdentifier","src":"12237:3:125"},"nativeSrc":"12237:18:125","nodeType":"YulFunctionCall","src":"12237:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"12224:12:125","nodeType":"YulIdentifier","src":"12224:12:125"},"nativeSrc":"12224:32:125","nodeType":"YulFunctionCall","src":"12224:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"12213:7:125","nodeType":"YulIdentifier","src":"12213:7:125"}]},{"nativeSrc":"12265:17:125","nodeType":"YulAssignment","src":"12265:17:125","value":{"name":"value_1","nativeSrc":"12275:7:125","nodeType":"YulIdentifier","src":"12275:7:125"},"variableNames":[{"name":"value1","nativeSrc":"12265:6:125","nodeType":"YulIdentifier","src":"12265:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IRiskModule_$14762t_uint256","nativeSrc":"11900:388:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11966:9:125","nodeType":"YulTypedName","src":"11966:9:125","type":""},{"name":"dataEnd","nativeSrc":"11977:7:125","nodeType":"YulTypedName","src":"11977:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11989:6:125","nodeType":"YulTypedName","src":"11989:6:125","type":""},{"name":"value1","nativeSrc":"11997:6:125","nodeType":"YulTypedName","src":"11997:6:125","type":""}],"src":"11900:388:125"},{"body":{"nativeSrc":"12384:177:125","nodeType":"YulBlock","src":"12384:177:125","statements":[{"body":{"nativeSrc":"12430:16:125","nodeType":"YulBlock","src":"12430:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12439:1:125","nodeType":"YulLiteral","src":"12439:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12442:1:125","nodeType":"YulLiteral","src":"12442:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12432:6:125","nodeType":"YulIdentifier","src":"12432:6:125"},"nativeSrc":"12432:12:125","nodeType":"YulFunctionCall","src":"12432:12:125"},"nativeSrc":"12432:12:125","nodeType":"YulExpressionStatement","src":"12432:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12405:7:125","nodeType":"YulIdentifier","src":"12405:7:125"},{"name":"headStart","nativeSrc":"12414:9:125","nodeType":"YulIdentifier","src":"12414:9:125"}],"functionName":{"name":"sub","nativeSrc":"12401:3:125","nodeType":"YulIdentifier","src":"12401:3:125"},"nativeSrc":"12401:23:125","nodeType":"YulFunctionCall","src":"12401:23:125"},{"kind":"number","nativeSrc":"12426:2:125","nodeType":"YulLiteral","src":"12426:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"12397:3:125","nodeType":"YulIdentifier","src":"12397:3:125"},"nativeSrc":"12397:32:125","nodeType":"YulFunctionCall","src":"12397:32:125"},"nativeSrc":"12394:52:125","nodeType":"YulIf","src":"12394:52:125"},{"nativeSrc":"12455:36:125","nodeType":"YulVariableDeclaration","src":"12455:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12481:9:125","nodeType":"YulIdentifier","src":"12481:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"12468:12:125","nodeType":"YulIdentifier","src":"12468:12:125"},"nativeSrc":"12468:23:125","nodeType":"YulFunctionCall","src":"12468:23:125"},"variables":[{"name":"value","nativeSrc":"12459:5:125","nodeType":"YulTypedName","src":"12459:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12525:5:125","nodeType":"YulIdentifier","src":"12525:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"12500:24:125","nodeType":"YulIdentifier","src":"12500:24:125"},"nativeSrc":"12500:31:125","nodeType":"YulFunctionCall","src":"12500:31:125"},"nativeSrc":"12500:31:125","nodeType":"YulExpressionStatement","src":"12500:31:125"},{"nativeSrc":"12540:15:125","nodeType":"YulAssignment","src":"12540:15:125","value":{"name":"value","nativeSrc":"12550:5:125","nodeType":"YulIdentifier","src":"12550:5:125"},"variableNames":[{"name":"value0","nativeSrc":"12540:6:125","nodeType":"YulIdentifier","src":"12540:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IRiskModule_$14762","nativeSrc":"12293:268:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12350:9:125","nodeType":"YulTypedName","src":"12350:9:125","type":""},{"name":"dataEnd","nativeSrc":"12361:7:125","nodeType":"YulTypedName","src":"12361:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12373:6:125","nodeType":"YulTypedName","src":"12373:6:125","type":""}],"src":"12293:268:125"},{"body":{"nativeSrc":"12695:119:125","nodeType":"YulBlock","src":"12695:119:125","statements":[{"nativeSrc":"12705:26:125","nodeType":"YulAssignment","src":"12705:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12717:9:125","nodeType":"YulIdentifier","src":"12717:9:125"},{"kind":"number","nativeSrc":"12728:2:125","nodeType":"YulLiteral","src":"12728:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12713:3:125","nodeType":"YulIdentifier","src":"12713:3:125"},"nativeSrc":"12713:18:125","nodeType":"YulFunctionCall","src":"12713:18:125"},"variableNames":[{"name":"tail","nativeSrc":"12705:4:125","nodeType":"YulIdentifier","src":"12705:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12747:9:125","nodeType":"YulIdentifier","src":"12747:9:125"},{"name":"value0","nativeSrc":"12758:6:125","nodeType":"YulIdentifier","src":"12758:6:125"}],"functionName":{"name":"mstore","nativeSrc":"12740:6:125","nodeType":"YulIdentifier","src":"12740:6:125"},"nativeSrc":"12740:25:125","nodeType":"YulFunctionCall","src":"12740:25:125"},"nativeSrc":"12740:25:125","nodeType":"YulExpressionStatement","src":"12740:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12785:9:125","nodeType":"YulIdentifier","src":"12785:9:125"},{"kind":"number","nativeSrc":"12796:2:125","nodeType":"YulLiteral","src":"12796:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12781:3:125","nodeType":"YulIdentifier","src":"12781:3:125"},"nativeSrc":"12781:18:125","nodeType":"YulFunctionCall","src":"12781:18:125"},{"name":"value1","nativeSrc":"12801:6:125","nodeType":"YulIdentifier","src":"12801:6:125"}],"functionName":{"name":"mstore","nativeSrc":"12774:6:125","nodeType":"YulIdentifier","src":"12774:6:125"},"nativeSrc":"12774:34:125","nodeType":"YulFunctionCall","src":"12774:34:125"},"nativeSrc":"12774:34:125","nodeType":"YulExpressionStatement","src":"12774:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"12566:248:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12656:9:125","nodeType":"YulTypedName","src":"12656:9:125","type":""},{"name":"value1","nativeSrc":"12667:6:125","nodeType":"YulTypedName","src":"12667:6:125","type":""},{"name":"value0","nativeSrc":"12675:6:125","nodeType":"YulTypedName","src":"12675:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12686:4:125","nodeType":"YulTypedName","src":"12686:4:125","type":""}],"src":"12566:248:125"},{"body":{"nativeSrc":"12861:76:125","nodeType":"YulBlock","src":"12861:76:125","statements":[{"body":{"nativeSrc":"12915:16:125","nodeType":"YulBlock","src":"12915:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12924:1:125","nodeType":"YulLiteral","src":"12924:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12927:1:125","nodeType":"YulLiteral","src":"12927:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12917:6:125","nodeType":"YulIdentifier","src":"12917:6:125"},"nativeSrc":"12917:12:125","nodeType":"YulFunctionCall","src":"12917:12:125"},"nativeSrc":"12917:12:125","nodeType":"YulExpressionStatement","src":"12917:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"12884:5:125","nodeType":"YulIdentifier","src":"12884:5:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"12905:5:125","nodeType":"YulIdentifier","src":"12905:5:125"}],"functionName":{"name":"iszero","nativeSrc":"12898:6:125","nodeType":"YulIdentifier","src":"12898:6:125"},"nativeSrc":"12898:13:125","nodeType":"YulFunctionCall","src":"12898:13:125"}],"functionName":{"name":"iszero","nativeSrc":"12891:6:125","nodeType":"YulIdentifier","src":"12891:6:125"},"nativeSrc":"12891:21:125","nodeType":"YulFunctionCall","src":"12891:21:125"}],"functionName":{"name":"eq","nativeSrc":"12881:2:125","nodeType":"YulIdentifier","src":"12881:2:125"},"nativeSrc":"12881:32:125","nodeType":"YulFunctionCall","src":"12881:32:125"}],"functionName":{"name":"iszero","nativeSrc":"12874:6:125","nodeType":"YulIdentifier","src":"12874:6:125"},"nativeSrc":"12874:40:125","nodeType":"YulFunctionCall","src":"12874:40:125"},"nativeSrc":"12871:60:125","nodeType":"YulIf","src":"12871:60:125"}]},"name":"validator_revert_bool","nativeSrc":"12819:118:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"12850:5:125","nodeType":"YulTypedName","src":"12850:5:125","type":""}],"src":"12819:118:125"},{"body":{"nativeSrc":"13026:298:125","nodeType":"YulBlock","src":"13026:298:125","statements":[{"body":{"nativeSrc":"13072:16:125","nodeType":"YulBlock","src":"13072:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13081:1:125","nodeType":"YulLiteral","src":"13081:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"13084:1:125","nodeType":"YulLiteral","src":"13084:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13074:6:125","nodeType":"YulIdentifier","src":"13074:6:125"},"nativeSrc":"13074:12:125","nodeType":"YulFunctionCall","src":"13074:12:125"},"nativeSrc":"13074:12:125","nodeType":"YulExpressionStatement","src":"13074:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13047:7:125","nodeType":"YulIdentifier","src":"13047:7:125"},{"name":"headStart","nativeSrc":"13056:9:125","nodeType":"YulIdentifier","src":"13056:9:125"}],"functionName":{"name":"sub","nativeSrc":"13043:3:125","nodeType":"YulIdentifier","src":"13043:3:125"},"nativeSrc":"13043:23:125","nodeType":"YulFunctionCall","src":"13043:23:125"},{"kind":"number","nativeSrc":"13068:2:125","nodeType":"YulLiteral","src":"13068:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"13039:3:125","nodeType":"YulIdentifier","src":"13039:3:125"},"nativeSrc":"13039:32:125","nodeType":"YulFunctionCall","src":"13039:32:125"},"nativeSrc":"13036:52:125","nodeType":"YulIf","src":"13036:52:125"},{"nativeSrc":"13097:36:125","nodeType":"YulVariableDeclaration","src":"13097:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"13123:9:125","nodeType":"YulIdentifier","src":"13123:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"13110:12:125","nodeType":"YulIdentifier","src":"13110:12:125"},"nativeSrc":"13110:23:125","nodeType":"YulFunctionCall","src":"13110:23:125"},"variables":[{"name":"value","nativeSrc":"13101:5:125","nodeType":"YulTypedName","src":"13101:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13167:5:125","nodeType":"YulIdentifier","src":"13167:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"13142:24:125","nodeType":"YulIdentifier","src":"13142:24:125"},"nativeSrc":"13142:31:125","nodeType":"YulFunctionCall","src":"13142:31:125"},"nativeSrc":"13142:31:125","nodeType":"YulExpressionStatement","src":"13142:31:125"},{"nativeSrc":"13182:15:125","nodeType":"YulAssignment","src":"13182:15:125","value":{"name":"value","nativeSrc":"13192:5:125","nodeType":"YulIdentifier","src":"13192:5:125"},"variableNames":[{"name":"value0","nativeSrc":"13182:6:125","nodeType":"YulIdentifier","src":"13182:6:125"}]},{"nativeSrc":"13206:47:125","nodeType":"YulVariableDeclaration","src":"13206:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13238:9:125","nodeType":"YulIdentifier","src":"13238:9:125"},{"kind":"number","nativeSrc":"13249:2:125","nodeType":"YulLiteral","src":"13249:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13234:3:125","nodeType":"YulIdentifier","src":"13234:3:125"},"nativeSrc":"13234:18:125","nodeType":"YulFunctionCall","src":"13234:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"13221:12:125","nodeType":"YulIdentifier","src":"13221:12:125"},"nativeSrc":"13221:32:125","nodeType":"YulFunctionCall","src":"13221:32:125"},"variables":[{"name":"value_1","nativeSrc":"13210:7:125","nodeType":"YulTypedName","src":"13210:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"13284:7:125","nodeType":"YulIdentifier","src":"13284:7:125"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"13262:21:125","nodeType":"YulIdentifier","src":"13262:21:125"},"nativeSrc":"13262:30:125","nodeType":"YulFunctionCall","src":"13262:30:125"},"nativeSrc":"13262:30:125","nodeType":"YulExpressionStatement","src":"13262:30:125"},{"nativeSrc":"13301:17:125","nodeType":"YulAssignment","src":"13301:17:125","value":{"name":"value_1","nativeSrc":"13311:7:125","nodeType":"YulIdentifier","src":"13311:7:125"},"variableNames":[{"name":"value1","nativeSrc":"13301:6:125","nodeType":"YulIdentifier","src":"13301:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bool","nativeSrc":"12942:382:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12984:9:125","nodeType":"YulTypedName","src":"12984:9:125","type":""},{"name":"dataEnd","nativeSrc":"12995:7:125","nodeType":"YulTypedName","src":"12995:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13007:6:125","nodeType":"YulTypedName","src":"13007:6:125","type":""},{"name":"value1","nativeSrc":"13015:6:125","nodeType":"YulTypedName","src":"13015:6:125","type":""}],"src":"12942:382:125"},{"body":{"nativeSrc":"13445:505:125","nodeType":"YulBlock","src":"13445:505:125","statements":[{"body":{"nativeSrc":"13491:16:125","nodeType":"YulBlock","src":"13491:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13500:1:125","nodeType":"YulLiteral","src":"13500:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"13503:1:125","nodeType":"YulLiteral","src":"13503:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13493:6:125","nodeType":"YulIdentifier","src":"13493:6:125"},"nativeSrc":"13493:12:125","nodeType":"YulFunctionCall","src":"13493:12:125"},"nativeSrc":"13493:12:125","nodeType":"YulExpressionStatement","src":"13493:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13466:7:125","nodeType":"YulIdentifier","src":"13466:7:125"},{"name":"headStart","nativeSrc":"13475:9:125","nodeType":"YulIdentifier","src":"13475:9:125"}],"functionName":{"name":"sub","nativeSrc":"13462:3:125","nodeType":"YulIdentifier","src":"13462:3:125"},"nativeSrc":"13462:23:125","nodeType":"YulFunctionCall","src":"13462:23:125"},{"kind":"number","nativeSrc":"13487:2:125","nodeType":"YulLiteral","src":"13487:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"13458:3:125","nodeType":"YulIdentifier","src":"13458:3:125"},"nativeSrc":"13458:32:125","nodeType":"YulFunctionCall","src":"13458:32:125"},"nativeSrc":"13455:52:125","nodeType":"YulIf","src":"13455:52:125"},{"nativeSrc":"13516:37:125","nodeType":"YulVariableDeclaration","src":"13516:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"13543:9:125","nodeType":"YulIdentifier","src":"13543:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"13530:12:125","nodeType":"YulIdentifier","src":"13530:12:125"},"nativeSrc":"13530:23:125","nodeType":"YulFunctionCall","src":"13530:23:125"},"variables":[{"name":"offset","nativeSrc":"13520:6:125","nodeType":"YulTypedName","src":"13520:6:125","type":""}]},{"body":{"nativeSrc":"13596:16:125","nodeType":"YulBlock","src":"13596:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13605:1:125","nodeType":"YulLiteral","src":"13605:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"13608:1:125","nodeType":"YulLiteral","src":"13608:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13598:6:125","nodeType":"YulIdentifier","src":"13598:6:125"},"nativeSrc":"13598:12:125","nodeType":"YulFunctionCall","src":"13598:12:125"},"nativeSrc":"13598:12:125","nodeType":"YulExpressionStatement","src":"13598:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"13568:6:125","nodeType":"YulIdentifier","src":"13568:6:125"},{"kind":"number","nativeSrc":"13576:18:125","nodeType":"YulLiteral","src":"13576:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"13565:2:125","nodeType":"YulIdentifier","src":"13565:2:125"},"nativeSrc":"13565:30:125","nodeType":"YulFunctionCall","src":"13565:30:125"},"nativeSrc":"13562:50:125","nodeType":"YulIf","src":"13562:50:125"},{"nativeSrc":"13621:32:125","nodeType":"YulVariableDeclaration","src":"13621:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"13635:9:125","nodeType":"YulIdentifier","src":"13635:9:125"},{"name":"offset","nativeSrc":"13646:6:125","nodeType":"YulIdentifier","src":"13646:6:125"}],"functionName":{"name":"add","nativeSrc":"13631:3:125","nodeType":"YulIdentifier","src":"13631:3:125"},"nativeSrc":"13631:22:125","nodeType":"YulFunctionCall","src":"13631:22:125"},"variables":[{"name":"_1","nativeSrc":"13625:2:125","nodeType":"YulTypedName","src":"13625:2:125","type":""}]},{"body":{"nativeSrc":"13701:16:125","nodeType":"YulBlock","src":"13701:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13710:1:125","nodeType":"YulLiteral","src":"13710:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"13713:1:125","nodeType":"YulLiteral","src":"13713:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13703:6:125","nodeType":"YulIdentifier","src":"13703:6:125"},"nativeSrc":"13703:12:125","nodeType":"YulFunctionCall","src":"13703:12:125"},"nativeSrc":"13703:12:125","nodeType":"YulExpressionStatement","src":"13703:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"13680:2:125","nodeType":"YulIdentifier","src":"13680:2:125"},{"kind":"number","nativeSrc":"13684:4:125","nodeType":"YulLiteral","src":"13684:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"13676:3:125","nodeType":"YulIdentifier","src":"13676:3:125"},"nativeSrc":"13676:13:125","nodeType":"YulFunctionCall","src":"13676:13:125"},{"name":"dataEnd","nativeSrc":"13691:7:125","nodeType":"YulIdentifier","src":"13691:7:125"}],"functionName":{"name":"slt","nativeSrc":"13672:3:125","nodeType":"YulIdentifier","src":"13672:3:125"},"nativeSrc":"13672:27:125","nodeType":"YulFunctionCall","src":"13672:27:125"}],"functionName":{"name":"iszero","nativeSrc":"13665:6:125","nodeType":"YulIdentifier","src":"13665:6:125"},"nativeSrc":"13665:35:125","nodeType":"YulFunctionCall","src":"13665:35:125"},"nativeSrc":"13662:55:125","nodeType":"YulIf","src":"13662:55:125"},{"nativeSrc":"13726:30:125","nodeType":"YulVariableDeclaration","src":"13726:30:125","value":{"arguments":[{"name":"_1","nativeSrc":"13753:2:125","nodeType":"YulIdentifier","src":"13753:2:125"}],"functionName":{"name":"calldataload","nativeSrc":"13740:12:125","nodeType":"YulIdentifier","src":"13740:12:125"},"nativeSrc":"13740:16:125","nodeType":"YulFunctionCall","src":"13740:16:125"},"variables":[{"name":"length","nativeSrc":"13730:6:125","nodeType":"YulTypedName","src":"13730:6:125","type":""}]},{"body":{"nativeSrc":"13799:16:125","nodeType":"YulBlock","src":"13799:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13808:1:125","nodeType":"YulLiteral","src":"13808:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"13811:1:125","nodeType":"YulLiteral","src":"13811:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13801:6:125","nodeType":"YulIdentifier","src":"13801:6:125"},"nativeSrc":"13801:12:125","nodeType":"YulFunctionCall","src":"13801:12:125"},"nativeSrc":"13801:12:125","nodeType":"YulExpressionStatement","src":"13801:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"13771:6:125","nodeType":"YulIdentifier","src":"13771:6:125"},{"kind":"number","nativeSrc":"13779:18:125","nodeType":"YulLiteral","src":"13779:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"13768:2:125","nodeType":"YulIdentifier","src":"13768:2:125"},"nativeSrc":"13768:30:125","nodeType":"YulFunctionCall","src":"13768:30:125"},"nativeSrc":"13765:50:125","nodeType":"YulIf","src":"13765:50:125"},{"body":{"nativeSrc":"13873:16:125","nodeType":"YulBlock","src":"13873:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13882:1:125","nodeType":"YulLiteral","src":"13882:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"13885:1:125","nodeType":"YulLiteral","src":"13885:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13875:6:125","nodeType":"YulIdentifier","src":"13875:6:125"},"nativeSrc":"13875:12:125","nodeType":"YulFunctionCall","src":"13875:12:125"},"nativeSrc":"13875:12:125","nodeType":"YulExpressionStatement","src":"13875:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"13838:2:125","nodeType":"YulIdentifier","src":"13838:2:125"},{"arguments":[{"kind":"number","nativeSrc":"13846:1:125","nodeType":"YulLiteral","src":"13846:1:125","type":"","value":"5"},{"name":"length","nativeSrc":"13849:6:125","nodeType":"YulIdentifier","src":"13849:6:125"}],"functionName":{"name":"shl","nativeSrc":"13842:3:125","nodeType":"YulIdentifier","src":"13842:3:125"},"nativeSrc":"13842:14:125","nodeType":"YulFunctionCall","src":"13842:14:125"}],"functionName":{"name":"add","nativeSrc":"13834:3:125","nodeType":"YulIdentifier","src":"13834:3:125"},"nativeSrc":"13834:23:125","nodeType":"YulFunctionCall","src":"13834:23:125"},{"kind":"number","nativeSrc":"13859:2:125","nodeType":"YulLiteral","src":"13859:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13830:3:125","nodeType":"YulIdentifier","src":"13830:3:125"},"nativeSrc":"13830:32:125","nodeType":"YulFunctionCall","src":"13830:32:125"},{"name":"dataEnd","nativeSrc":"13864:7:125","nodeType":"YulIdentifier","src":"13864:7:125"}],"functionName":{"name":"gt","nativeSrc":"13827:2:125","nodeType":"YulIdentifier","src":"13827:2:125"},"nativeSrc":"13827:45:125","nodeType":"YulFunctionCall","src":"13827:45:125"},"nativeSrc":"13824:65:125","nodeType":"YulIf","src":"13824:65:125"},{"nativeSrc":"13898:21:125","nodeType":"YulAssignment","src":"13898:21:125","value":{"arguments":[{"name":"_1","nativeSrc":"13912:2:125","nodeType":"YulIdentifier","src":"13912:2:125"},{"kind":"number","nativeSrc":"13916:2:125","nodeType":"YulLiteral","src":"13916:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13908:3:125","nodeType":"YulIdentifier","src":"13908:3:125"},"nativeSrc":"13908:11:125","nodeType":"YulFunctionCall","src":"13908:11:125"},"variableNames":[{"name":"value0","nativeSrc":"13898:6:125","nodeType":"YulIdentifier","src":"13898:6:125"}]},{"nativeSrc":"13928:16:125","nodeType":"YulAssignment","src":"13928:16:125","value":{"name":"length","nativeSrc":"13938:6:125","nodeType":"YulIdentifier","src":"13938:6:125"},"variableNames":[{"name":"value1","nativeSrc":"13928:6:125","nodeType":"YulIdentifier","src":"13928:6:125"}]}]},"name":"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","nativeSrc":"13329:621:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13403:9:125","nodeType":"YulTypedName","src":"13403:9:125","type":""},{"name":"dataEnd","nativeSrc":"13414:7:125","nodeType":"YulTypedName","src":"13414:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13426:6:125","nodeType":"YulTypedName","src":"13426:6:125","type":""},{"name":"value1","nativeSrc":"13434:6:125","nodeType":"YulTypedName","src":"13434:6:125","type":""}],"src":"13329:621:125"},{"body":{"nativeSrc":"14124:611:125","nodeType":"YulBlock","src":"14124:611:125","statements":[{"nativeSrc":"14134:32:125","nodeType":"YulVariableDeclaration","src":"14134:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14152:9:125","nodeType":"YulIdentifier","src":"14152:9:125"},{"kind":"number","nativeSrc":"14163:2:125","nodeType":"YulLiteral","src":"14163:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14148:3:125","nodeType":"YulIdentifier","src":"14148:3:125"},"nativeSrc":"14148:18:125","nodeType":"YulFunctionCall","src":"14148:18:125"},"variables":[{"name":"tail_1","nativeSrc":"14138:6:125","nodeType":"YulTypedName","src":"14138:6:125","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14182:9:125","nodeType":"YulIdentifier","src":"14182:9:125"},{"kind":"number","nativeSrc":"14193:2:125","nodeType":"YulLiteral","src":"14193:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"14175:6:125","nodeType":"YulIdentifier","src":"14175:6:125"},"nativeSrc":"14175:21:125","nodeType":"YulFunctionCall","src":"14175:21:125"},"nativeSrc":"14175:21:125","nodeType":"YulExpressionStatement","src":"14175:21:125"},{"nativeSrc":"14205:17:125","nodeType":"YulVariableDeclaration","src":"14205:17:125","value":{"name":"tail_1","nativeSrc":"14216:6:125","nodeType":"YulIdentifier","src":"14216:6:125"},"variables":[{"name":"pos","nativeSrc":"14209:3:125","nodeType":"YulTypedName","src":"14209:3:125","type":""}]},{"nativeSrc":"14231:27:125","nodeType":"YulVariableDeclaration","src":"14231:27:125","value":{"arguments":[{"name":"value0","nativeSrc":"14251:6:125","nodeType":"YulIdentifier","src":"14251:6:125"}],"functionName":{"name":"mload","nativeSrc":"14245:5:125","nodeType":"YulIdentifier","src":"14245:5:125"},"nativeSrc":"14245:13:125","nodeType":"YulFunctionCall","src":"14245:13:125"},"variables":[{"name":"length","nativeSrc":"14235:6:125","nodeType":"YulTypedName","src":"14235:6:125","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"14274:6:125","nodeType":"YulIdentifier","src":"14274:6:125"},{"name":"length","nativeSrc":"14282:6:125","nodeType":"YulIdentifier","src":"14282:6:125"}],"functionName":{"name":"mstore","nativeSrc":"14267:6:125","nodeType":"YulIdentifier","src":"14267:6:125"},"nativeSrc":"14267:22:125","nodeType":"YulFunctionCall","src":"14267:22:125"},"nativeSrc":"14267:22:125","nodeType":"YulExpressionStatement","src":"14267:22:125"},{"nativeSrc":"14298:25:125","nodeType":"YulAssignment","src":"14298:25:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14309:9:125","nodeType":"YulIdentifier","src":"14309:9:125"},{"kind":"number","nativeSrc":"14320:2:125","nodeType":"YulLiteral","src":"14320:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14305:3:125","nodeType":"YulIdentifier","src":"14305:3:125"},"nativeSrc":"14305:18:125","nodeType":"YulFunctionCall","src":"14305:18:125"},"variableNames":[{"name":"pos","nativeSrc":"14298:3:125","nodeType":"YulIdentifier","src":"14298:3:125"}]},{"nativeSrc":"14332:53:125","nodeType":"YulVariableDeclaration","src":"14332:53:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14354:9:125","nodeType":"YulIdentifier","src":"14354:9:125"},{"arguments":[{"kind":"number","nativeSrc":"14369:1:125","nodeType":"YulLiteral","src":"14369:1:125","type":"","value":"5"},{"name":"length","nativeSrc":"14372:6:125","nodeType":"YulIdentifier","src":"14372:6:125"}],"functionName":{"name":"shl","nativeSrc":"14365:3:125","nodeType":"YulIdentifier","src":"14365:3:125"},"nativeSrc":"14365:14:125","nodeType":"YulFunctionCall","src":"14365:14:125"}],"functionName":{"name":"add","nativeSrc":"14350:3:125","nodeType":"YulIdentifier","src":"14350:3:125"},"nativeSrc":"14350:30:125","nodeType":"YulFunctionCall","src":"14350:30:125"},{"kind":"number","nativeSrc":"14382:2:125","nodeType":"YulLiteral","src":"14382:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14346:3:125","nodeType":"YulIdentifier","src":"14346:3:125"},"nativeSrc":"14346:39:125","nodeType":"YulFunctionCall","src":"14346:39:125"},"variables":[{"name":"tail_2","nativeSrc":"14336:6:125","nodeType":"YulTypedName","src":"14336:6:125","type":""}]},{"nativeSrc":"14394:29:125","nodeType":"YulVariableDeclaration","src":"14394:29:125","value":{"arguments":[{"name":"value0","nativeSrc":"14412:6:125","nodeType":"YulIdentifier","src":"14412:6:125"},{"kind":"number","nativeSrc":"14420:2:125","nodeType":"YulLiteral","src":"14420:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14408:3:125","nodeType":"YulIdentifier","src":"14408:3:125"},"nativeSrc":"14408:15:125","nodeType":"YulFunctionCall","src":"14408:15:125"},"variables":[{"name":"srcPtr","nativeSrc":"14398:6:125","nodeType":"YulTypedName","src":"14398:6:125","type":""}]},{"nativeSrc":"14432:10:125","nodeType":"YulVariableDeclaration","src":"14432:10:125","value":{"kind":"number","nativeSrc":"14441:1:125","nodeType":"YulLiteral","src":"14441:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"14436:1:125","nodeType":"YulTypedName","src":"14436:1:125","type":""}]},{"body":{"nativeSrc":"14500:206:125","nodeType":"YulBlock","src":"14500:206:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"14521:3:125","nodeType":"YulIdentifier","src":"14521:3:125"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"14534:6:125","nodeType":"YulIdentifier","src":"14534:6:125"},{"name":"headStart","nativeSrc":"14542:9:125","nodeType":"YulIdentifier","src":"14542:9:125"}],"functionName":{"name":"sub","nativeSrc":"14530:3:125","nodeType":"YulIdentifier","src":"14530:3:125"},"nativeSrc":"14530:22:125","nodeType":"YulFunctionCall","src":"14530:22:125"},{"arguments":[{"kind":"number","nativeSrc":"14558:2:125","nodeType":"YulLiteral","src":"14558:2:125","type":"","value":"63"}],"functionName":{"name":"not","nativeSrc":"14554:3:125","nodeType":"YulIdentifier","src":"14554:3:125"},"nativeSrc":"14554:7:125","nodeType":"YulFunctionCall","src":"14554:7:125"}],"functionName":{"name":"add","nativeSrc":"14526:3:125","nodeType":"YulIdentifier","src":"14526:3:125"},"nativeSrc":"14526:36:125","nodeType":"YulFunctionCall","src":"14526:36:125"}],"functionName":{"name":"mstore","nativeSrc":"14514:6:125","nodeType":"YulIdentifier","src":"14514:6:125"},"nativeSrc":"14514:49:125","nodeType":"YulFunctionCall","src":"14514:49:125"},"nativeSrc":"14514:49:125","nodeType":"YulExpressionStatement","src":"14514:49:125"},{"nativeSrc":"14576:50:125","nodeType":"YulAssignment","src":"14576:50:125","value":{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"14610:6:125","nodeType":"YulIdentifier","src":"14610:6:125"}],"functionName":{"name":"mload","nativeSrc":"14604:5:125","nodeType":"YulIdentifier","src":"14604:5:125"},"nativeSrc":"14604:13:125","nodeType":"YulFunctionCall","src":"14604:13:125"},{"name":"tail_2","nativeSrc":"14619:6:125","nodeType":"YulIdentifier","src":"14619:6:125"}],"functionName":{"name":"abi_encode_string","nativeSrc":"14586:17:125","nodeType":"YulIdentifier","src":"14586:17:125"},"nativeSrc":"14586:40:125","nodeType":"YulFunctionCall","src":"14586:40:125"},"variableNames":[{"name":"tail_2","nativeSrc":"14576:6:125","nodeType":"YulIdentifier","src":"14576:6:125"}]},{"nativeSrc":"14639:25:125","nodeType":"YulAssignment","src":"14639:25:125","value":{"arguments":[{"name":"srcPtr","nativeSrc":"14653:6:125","nodeType":"YulIdentifier","src":"14653:6:125"},{"kind":"number","nativeSrc":"14661:2:125","nodeType":"YulLiteral","src":"14661:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14649:3:125","nodeType":"YulIdentifier","src":"14649:3:125"},"nativeSrc":"14649:15:125","nodeType":"YulFunctionCall","src":"14649:15:125"},"variableNames":[{"name":"srcPtr","nativeSrc":"14639:6:125","nodeType":"YulIdentifier","src":"14639:6:125"}]},{"nativeSrc":"14677:19:125","nodeType":"YulAssignment","src":"14677:19:125","value":{"arguments":[{"name":"pos","nativeSrc":"14688:3:125","nodeType":"YulIdentifier","src":"14688:3:125"},{"kind":"number","nativeSrc":"14693:2:125","nodeType":"YulLiteral","src":"14693:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14684:3:125","nodeType":"YulIdentifier","src":"14684:3:125"},"nativeSrc":"14684:12:125","nodeType":"YulFunctionCall","src":"14684:12:125"},"variableNames":[{"name":"pos","nativeSrc":"14677:3:125","nodeType":"YulIdentifier","src":"14677:3:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"14462:1:125","nodeType":"YulIdentifier","src":"14462:1:125"},{"name":"length","nativeSrc":"14465:6:125","nodeType":"YulIdentifier","src":"14465:6:125"}],"functionName":{"name":"lt","nativeSrc":"14459:2:125","nodeType":"YulIdentifier","src":"14459:2:125"},"nativeSrc":"14459:13:125","nodeType":"YulFunctionCall","src":"14459:13:125"},"nativeSrc":"14451:255:125","nodeType":"YulForLoop","post":{"nativeSrc":"14473:18:125","nodeType":"YulBlock","src":"14473:18:125","statements":[{"nativeSrc":"14475:14:125","nodeType":"YulAssignment","src":"14475:14:125","value":{"arguments":[{"name":"i","nativeSrc":"14484:1:125","nodeType":"YulIdentifier","src":"14484:1:125"},{"kind":"number","nativeSrc":"14487:1:125","nodeType":"YulLiteral","src":"14487:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"14480:3:125","nodeType":"YulIdentifier","src":"14480:3:125"},"nativeSrc":"14480:9:125","nodeType":"YulFunctionCall","src":"14480:9:125"},"variableNames":[{"name":"i","nativeSrc":"14475:1:125","nodeType":"YulIdentifier","src":"14475:1:125"}]}]},"pre":{"nativeSrc":"14455:3:125","nodeType":"YulBlock","src":"14455:3:125","statements":[]},"src":"14451:255:125"},{"nativeSrc":"14715:14:125","nodeType":"YulAssignment","src":"14715:14:125","value":{"name":"tail_2","nativeSrc":"14723:6:125","nodeType":"YulIdentifier","src":"14723:6:125"},"variableNames":[{"name":"tail","nativeSrc":"14715:4:125","nodeType":"YulIdentifier","src":"14715:4:125"}]}]},"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":"13955:780:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14093:9:125","nodeType":"YulTypedName","src":"14093:9:125","type":""},{"name":"value0","nativeSrc":"14104:6:125","nodeType":"YulTypedName","src":"14104:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14115:4:125","nodeType":"YulTypedName","src":"14115:4:125","type":""}],"src":"13955:780:125"},{"body":{"nativeSrc":"14870:588:125","nodeType":"YulBlock","src":"14870:588:125","statements":[{"body":{"nativeSrc":"14917:16:125","nodeType":"YulBlock","src":"14917:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14926:1:125","nodeType":"YulLiteral","src":"14926:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"14929:1:125","nodeType":"YulLiteral","src":"14929:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14919:6:125","nodeType":"YulIdentifier","src":"14919:6:125"},"nativeSrc":"14919:12:125","nodeType":"YulFunctionCall","src":"14919:12:125"},"nativeSrc":"14919:12:125","nodeType":"YulExpressionStatement","src":"14919:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14891:7:125","nodeType":"YulIdentifier","src":"14891:7:125"},{"name":"headStart","nativeSrc":"14900:9:125","nodeType":"YulIdentifier","src":"14900:9:125"}],"functionName":{"name":"sub","nativeSrc":"14887:3:125","nodeType":"YulIdentifier","src":"14887:3:125"},"nativeSrc":"14887:23:125","nodeType":"YulFunctionCall","src":"14887:23:125"},{"kind":"number","nativeSrc":"14912:3:125","nodeType":"YulLiteral","src":"14912:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"14883:3:125","nodeType":"YulIdentifier","src":"14883:3:125"},"nativeSrc":"14883:33:125","nodeType":"YulFunctionCall","src":"14883:33:125"},"nativeSrc":"14880:53:125","nodeType":"YulIf","src":"14880:53:125"},{"nativeSrc":"14942:36:125","nodeType":"YulVariableDeclaration","src":"14942:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14968:9:125","nodeType":"YulIdentifier","src":"14968:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"14955:12:125","nodeType":"YulIdentifier","src":"14955:12:125"},"nativeSrc":"14955:23:125","nodeType":"YulFunctionCall","src":"14955:23:125"},"variables":[{"name":"value","nativeSrc":"14946:5:125","nodeType":"YulTypedName","src":"14946:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"15012:5:125","nodeType":"YulIdentifier","src":"15012:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"14987:24:125","nodeType":"YulIdentifier","src":"14987:24:125"},"nativeSrc":"14987:31:125","nodeType":"YulFunctionCall","src":"14987:31:125"},"nativeSrc":"14987:31:125","nodeType":"YulExpressionStatement","src":"14987:31:125"},{"nativeSrc":"15027:15:125","nodeType":"YulAssignment","src":"15027:15:125","value":{"name":"value","nativeSrc":"15037:5:125","nodeType":"YulIdentifier","src":"15037:5:125"},"variableNames":[{"name":"value0","nativeSrc":"15027:6:125","nodeType":"YulIdentifier","src":"15027:6:125"}]},{"nativeSrc":"15051:47:125","nodeType":"YulVariableDeclaration","src":"15051:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15083:9:125","nodeType":"YulIdentifier","src":"15083:9:125"},{"kind":"number","nativeSrc":"15094:2:125","nodeType":"YulLiteral","src":"15094:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15079:3:125","nodeType":"YulIdentifier","src":"15079:3:125"},"nativeSrc":"15079:18:125","nodeType":"YulFunctionCall","src":"15079:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"15066:12:125","nodeType":"YulIdentifier","src":"15066:12:125"},"nativeSrc":"15066:32:125","nodeType":"YulFunctionCall","src":"15066:32:125"},"variables":[{"name":"value_1","nativeSrc":"15055:7:125","nodeType":"YulTypedName","src":"15055:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"15132:7:125","nodeType":"YulIdentifier","src":"15132:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"15107:24:125","nodeType":"YulIdentifier","src":"15107:24:125"},"nativeSrc":"15107:33:125","nodeType":"YulFunctionCall","src":"15107:33:125"},"nativeSrc":"15107:33:125","nodeType":"YulExpressionStatement","src":"15107:33:125"},{"nativeSrc":"15149:17:125","nodeType":"YulAssignment","src":"15149:17:125","value":{"name":"value_1","nativeSrc":"15159:7:125","nodeType":"YulIdentifier","src":"15159:7:125"},"variableNames":[{"name":"value1","nativeSrc":"15149:6:125","nodeType":"YulIdentifier","src":"15149:6:125"}]},{"nativeSrc":"15175:16:125","nodeType":"YulVariableDeclaration","src":"15175:16:125","value":{"kind":"number","nativeSrc":"15190:1:125","nodeType":"YulLiteral","src":"15190:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"15179:7:125","nodeType":"YulTypedName","src":"15179:7:125","type":""}]},{"nativeSrc":"15200:43:125","nodeType":"YulAssignment","src":"15200:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15228:9:125","nodeType":"YulIdentifier","src":"15228:9:125"},{"kind":"number","nativeSrc":"15239:2:125","nodeType":"YulLiteral","src":"15239:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15224:3:125","nodeType":"YulIdentifier","src":"15224:3:125"},"nativeSrc":"15224:18:125","nodeType":"YulFunctionCall","src":"15224:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"15211:12:125","nodeType":"YulIdentifier","src":"15211:12:125"},"nativeSrc":"15211:32:125","nodeType":"YulFunctionCall","src":"15211:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"15200:7:125","nodeType":"YulIdentifier","src":"15200:7:125"}]},{"nativeSrc":"15252:17:125","nodeType":"YulAssignment","src":"15252:17:125","value":{"name":"value_2","nativeSrc":"15262:7:125","nodeType":"YulIdentifier","src":"15262:7:125"},"variableNames":[{"name":"value2","nativeSrc":"15252:6:125","nodeType":"YulIdentifier","src":"15252:6:125"}]},{"nativeSrc":"15278:46:125","nodeType":"YulVariableDeclaration","src":"15278:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15309:9:125","nodeType":"YulIdentifier","src":"15309:9:125"},{"kind":"number","nativeSrc":"15320:2:125","nodeType":"YulLiteral","src":"15320:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15305:3:125","nodeType":"YulIdentifier","src":"15305:3:125"},"nativeSrc":"15305:18:125","nodeType":"YulFunctionCall","src":"15305:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"15292:12:125","nodeType":"YulIdentifier","src":"15292:12:125"},"nativeSrc":"15292:32:125","nodeType":"YulFunctionCall","src":"15292:32:125"},"variables":[{"name":"offset","nativeSrc":"15282:6:125","nodeType":"YulTypedName","src":"15282:6:125","type":""}]},{"body":{"nativeSrc":"15367:16:125","nodeType":"YulBlock","src":"15367:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15376:1:125","nodeType":"YulLiteral","src":"15376:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"15379:1:125","nodeType":"YulLiteral","src":"15379:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15369:6:125","nodeType":"YulIdentifier","src":"15369:6:125"},"nativeSrc":"15369:12:125","nodeType":"YulFunctionCall","src":"15369:12:125"},"nativeSrc":"15369:12:125","nodeType":"YulExpressionStatement","src":"15369:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"15339:6:125","nodeType":"YulIdentifier","src":"15339:6:125"},{"kind":"number","nativeSrc":"15347:18:125","nodeType":"YulLiteral","src":"15347:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"15336:2:125","nodeType":"YulIdentifier","src":"15336:2:125"},"nativeSrc":"15336:30:125","nodeType":"YulFunctionCall","src":"15336:30:125"},"nativeSrc":"15333:50:125","nodeType":"YulIf","src":"15333:50:125"},{"nativeSrc":"15392:60:125","nodeType":"YulAssignment","src":"15392:60:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15424:9:125","nodeType":"YulIdentifier","src":"15424:9:125"},{"name":"offset","nativeSrc":"15435:6:125","nodeType":"YulIdentifier","src":"15435:6:125"}],"functionName":{"name":"add","nativeSrc":"15420:3:125","nodeType":"YulIdentifier","src":"15420:3:125"},"nativeSrc":"15420:22:125","nodeType":"YulFunctionCall","src":"15420:22:125"},{"name":"dataEnd","nativeSrc":"15444:7:125","nodeType":"YulIdentifier","src":"15444:7:125"}],"functionName":{"name":"abi_decode_string","nativeSrc":"15402:17:125","nodeType":"YulIdentifier","src":"15402:17:125"},"nativeSrc":"15402:50:125","nodeType":"YulFunctionCall","src":"15402:50:125"},"variableNames":[{"name":"value3","nativeSrc":"15392:6:125","nodeType":"YulIdentifier","src":"15392:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr","nativeSrc":"14740:718:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14812:9:125","nodeType":"YulTypedName","src":"14812:9:125","type":""},{"name":"dataEnd","nativeSrc":"14823:7:125","nodeType":"YulTypedName","src":"14823:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"14835:6:125","nodeType":"YulTypedName","src":"14835:6:125","type":""},{"name":"value1","nativeSrc":"14843:6:125","nodeType":"YulTypedName","src":"14843:6:125","type":""},{"name":"value2","nativeSrc":"14851:6:125","nodeType":"YulTypedName","src":"14851:6:125","type":""},{"name":"value3","nativeSrc":"14859:6:125","nodeType":"YulTypedName","src":"14859:6:125","type":""}],"src":"14740:718:125"},{"body":{"nativeSrc":"15580:243:125","nodeType":"YulBlock","src":"15580:243:125","statements":[{"body":{"nativeSrc":"15627:16:125","nodeType":"YulBlock","src":"15627:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15636:1:125","nodeType":"YulLiteral","src":"15636:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"15639:1:125","nodeType":"YulLiteral","src":"15639:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15629:6:125","nodeType":"YulIdentifier","src":"15629:6:125"},"nativeSrc":"15629:12:125","nodeType":"YulFunctionCall","src":"15629:12:125"},"nativeSrc":"15629:12:125","nodeType":"YulExpressionStatement","src":"15629:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15601:7:125","nodeType":"YulIdentifier","src":"15601:7:125"},{"name":"headStart","nativeSrc":"15610:9:125","nodeType":"YulIdentifier","src":"15610:9:125"}],"functionName":{"name":"sub","nativeSrc":"15597:3:125","nodeType":"YulIdentifier","src":"15597:3:125"},"nativeSrc":"15597:23:125","nodeType":"YulFunctionCall","src":"15597:23:125"},{"kind":"number","nativeSrc":"15622:3:125","nodeType":"YulLiteral","src":"15622:3:125","type":"","value":"416"}],"functionName":{"name":"slt","nativeSrc":"15593:3:125","nodeType":"YulIdentifier","src":"15593:3:125"},"nativeSrc":"15593:33:125","nodeType":"YulFunctionCall","src":"15593:33:125"},"nativeSrc":"15590:53:125","nodeType":"YulIf","src":"15590:53:125"},{"nativeSrc":"15652:67:125","nodeType":"YulAssignment","src":"15652:67:125","value":{"arguments":[{"name":"headStart","nativeSrc":"15700:9:125","nodeType":"YulIdentifier","src":"15700:9:125"},{"name":"dataEnd","nativeSrc":"15711:7:125","nodeType":"YulIdentifier","src":"15711:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"15662:37:125","nodeType":"YulIdentifier","src":"15662:37:125"},"nativeSrc":"15662:57:125","nodeType":"YulFunctionCall","src":"15662:57:125"},"variableNames":[{"name":"value0","nativeSrc":"15652:6:125","nodeType":"YulIdentifier","src":"15652:6:125"}]},{"nativeSrc":"15728:14:125","nodeType":"YulVariableDeclaration","src":"15728:14:125","value":{"kind":"number","nativeSrc":"15741:1:125","nodeType":"YulLiteral","src":"15741:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"15732:5:125","nodeType":"YulTypedName","src":"15732:5:125","type":""}]},{"nativeSrc":"15751:42:125","nodeType":"YulAssignment","src":"15751:42:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15777:9:125","nodeType":"YulIdentifier","src":"15777:9:125"},{"kind":"number","nativeSrc":"15788:3:125","nodeType":"YulLiteral","src":"15788:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"15773:3:125","nodeType":"YulIdentifier","src":"15773:3:125"},"nativeSrc":"15773:19:125","nodeType":"YulFunctionCall","src":"15773:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"15760:12:125","nodeType":"YulIdentifier","src":"15760:12:125"},"nativeSrc":"15760:33:125","nodeType":"YulFunctionCall","src":"15760:33:125"},"variableNames":[{"name":"value","nativeSrc":"15751:5:125","nodeType":"YulIdentifier","src":"15751:5:125"}]},{"nativeSrc":"15802:15:125","nodeType":"YulAssignment","src":"15802:15:125","value":{"name":"value","nativeSrc":"15812:5:125","nodeType":"YulIdentifier","src":"15812:5:125"},"variableNames":[{"name":"value1","nativeSrc":"15802:6:125","nodeType":"YulIdentifier","src":"15802:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_uint256","nativeSrc":"15463:360:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15538:9:125","nodeType":"YulTypedName","src":"15538:9:125","type":""},{"name":"dataEnd","nativeSrc":"15549:7:125","nodeType":"YulTypedName","src":"15549:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15561:6:125","nodeType":"YulTypedName","src":"15561:6:125","type":""},{"name":"value1","nativeSrc":"15569:6:125","nodeType":"YulTypedName","src":"15569:6:125","type":""}],"src":"15463:360:125"},{"body":{"nativeSrc":"16015:867:125","nodeType":"YulBlock","src":"16015:867:125","statements":[{"body":{"nativeSrc":"16062:16:125","nodeType":"YulBlock","src":"16062:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16071:1:125","nodeType":"YulLiteral","src":"16071:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"16074:1:125","nodeType":"YulLiteral","src":"16074:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16064:6:125","nodeType":"YulIdentifier","src":"16064:6:125"},"nativeSrc":"16064:12:125","nodeType":"YulFunctionCall","src":"16064:12:125"},"nativeSrc":"16064:12:125","nodeType":"YulExpressionStatement","src":"16064:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"16036:7:125","nodeType":"YulIdentifier","src":"16036:7:125"},{"name":"headStart","nativeSrc":"16045:9:125","nodeType":"YulIdentifier","src":"16045:9:125"}],"functionName":{"name":"sub","nativeSrc":"16032:3:125","nodeType":"YulIdentifier","src":"16032:3:125"},"nativeSrc":"16032:23:125","nodeType":"YulFunctionCall","src":"16032:23:125"},{"kind":"number","nativeSrc":"16057:3:125","nodeType":"YulLiteral","src":"16057:3:125","type":"","value":"224"}],"functionName":{"name":"slt","nativeSrc":"16028:3:125","nodeType":"YulIdentifier","src":"16028:3:125"},"nativeSrc":"16028:33:125","nodeType":"YulFunctionCall","src":"16028:33:125"},"nativeSrc":"16025:53:125","nodeType":"YulIf","src":"16025:53:125"},{"nativeSrc":"16087:36:125","nodeType":"YulVariableDeclaration","src":"16087:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"16113:9:125","nodeType":"YulIdentifier","src":"16113:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"16100:12:125","nodeType":"YulIdentifier","src":"16100:12:125"},"nativeSrc":"16100:23:125","nodeType":"YulFunctionCall","src":"16100:23:125"},"variables":[{"name":"value","nativeSrc":"16091:5:125","nodeType":"YulTypedName","src":"16091:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"16157:5:125","nodeType":"YulIdentifier","src":"16157:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"16132:24:125","nodeType":"YulIdentifier","src":"16132:24:125"},"nativeSrc":"16132:31:125","nodeType":"YulFunctionCall","src":"16132:31:125"},"nativeSrc":"16132:31:125","nodeType":"YulExpressionStatement","src":"16132:31:125"},{"nativeSrc":"16172:15:125","nodeType":"YulAssignment","src":"16172:15:125","value":{"name":"value","nativeSrc":"16182:5:125","nodeType":"YulIdentifier","src":"16182:5:125"},"variableNames":[{"name":"value0","nativeSrc":"16172:6:125","nodeType":"YulIdentifier","src":"16172:6:125"}]},{"nativeSrc":"16196:16:125","nodeType":"YulVariableDeclaration","src":"16196:16:125","value":{"kind":"number","nativeSrc":"16211:1:125","nodeType":"YulLiteral","src":"16211:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"16200:7:125","nodeType":"YulTypedName","src":"16200:7:125","type":""}]},{"nativeSrc":"16221:43:125","nodeType":"YulAssignment","src":"16221:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16249:9:125","nodeType":"YulIdentifier","src":"16249:9:125"},{"kind":"number","nativeSrc":"16260:2:125","nodeType":"YulLiteral","src":"16260:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16245:3:125","nodeType":"YulIdentifier","src":"16245:3:125"},"nativeSrc":"16245:18:125","nodeType":"YulFunctionCall","src":"16245:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"16232:12:125","nodeType":"YulIdentifier","src":"16232:12:125"},"nativeSrc":"16232:32:125","nodeType":"YulFunctionCall","src":"16232:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"16221:7:125","nodeType":"YulIdentifier","src":"16221:7:125"}]},{"nativeSrc":"16273:17:125","nodeType":"YulAssignment","src":"16273:17:125","value":{"name":"value_1","nativeSrc":"16283:7:125","nodeType":"YulIdentifier","src":"16283:7:125"},"variableNames":[{"name":"value1","nativeSrc":"16273:6:125","nodeType":"YulIdentifier","src":"16273:6:125"}]},{"nativeSrc":"16299:47:125","nodeType":"YulVariableDeclaration","src":"16299:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16331:9:125","nodeType":"YulIdentifier","src":"16331:9:125"},{"kind":"number","nativeSrc":"16342:2:125","nodeType":"YulLiteral","src":"16342:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16327:3:125","nodeType":"YulIdentifier","src":"16327:3:125"},"nativeSrc":"16327:18:125","nodeType":"YulFunctionCall","src":"16327:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"16314:12:125","nodeType":"YulIdentifier","src":"16314:12:125"},"nativeSrc":"16314:32:125","nodeType":"YulFunctionCall","src":"16314:32:125"},"variables":[{"name":"value_2","nativeSrc":"16303:7:125","nodeType":"YulTypedName","src":"16303:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"16380:7:125","nodeType":"YulIdentifier","src":"16380:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"16355:24:125","nodeType":"YulIdentifier","src":"16355:24:125"},"nativeSrc":"16355:33:125","nodeType":"YulFunctionCall","src":"16355:33:125"},"nativeSrc":"16355:33:125","nodeType":"YulExpressionStatement","src":"16355:33:125"},{"nativeSrc":"16397:17:125","nodeType":"YulAssignment","src":"16397:17:125","value":{"name":"value_2","nativeSrc":"16407:7:125","nodeType":"YulIdentifier","src":"16407:7:125"},"variableNames":[{"name":"value2","nativeSrc":"16397:6:125","nodeType":"YulIdentifier","src":"16397:6:125"}]},{"nativeSrc":"16423:16:125","nodeType":"YulVariableDeclaration","src":"16423:16:125","value":{"kind":"number","nativeSrc":"16438:1:125","nodeType":"YulLiteral","src":"16438:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"16427:7:125","nodeType":"YulTypedName","src":"16427:7:125","type":""}]},{"nativeSrc":"16448:43:125","nodeType":"YulAssignment","src":"16448:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16476:9:125","nodeType":"YulIdentifier","src":"16476:9:125"},{"kind":"number","nativeSrc":"16487:2:125","nodeType":"YulLiteral","src":"16487:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16472:3:125","nodeType":"YulIdentifier","src":"16472:3:125"},"nativeSrc":"16472:18:125","nodeType":"YulFunctionCall","src":"16472:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"16459:12:125","nodeType":"YulIdentifier","src":"16459:12:125"},"nativeSrc":"16459:32:125","nodeType":"YulFunctionCall","src":"16459:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"16448:7:125","nodeType":"YulIdentifier","src":"16448:7:125"}]},{"nativeSrc":"16500:17:125","nodeType":"YulAssignment","src":"16500:17:125","value":{"name":"value_3","nativeSrc":"16510:7:125","nodeType":"YulIdentifier","src":"16510:7:125"},"variableNames":[{"name":"value3","nativeSrc":"16500:6:125","nodeType":"YulIdentifier","src":"16500:6:125"}]},{"nativeSrc":"16526:48:125","nodeType":"YulVariableDeclaration","src":"16526:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16558:9:125","nodeType":"YulIdentifier","src":"16558:9:125"},{"kind":"number","nativeSrc":"16569:3:125","nodeType":"YulLiteral","src":"16569:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"16554:3:125","nodeType":"YulIdentifier","src":"16554:3:125"},"nativeSrc":"16554:19:125","nodeType":"YulFunctionCall","src":"16554:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"16541:12:125","nodeType":"YulIdentifier","src":"16541:12:125"},"nativeSrc":"16541:33:125","nodeType":"YulFunctionCall","src":"16541:33:125"},"variables":[{"name":"value_4","nativeSrc":"16530:7:125","nodeType":"YulTypedName","src":"16530:7:125","type":""}]},{"body":{"nativeSrc":"16626:16:125","nodeType":"YulBlock","src":"16626:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16635:1:125","nodeType":"YulLiteral","src":"16635:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"16638:1:125","nodeType":"YulLiteral","src":"16638:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16628:6:125","nodeType":"YulIdentifier","src":"16628:6:125"},"nativeSrc":"16628:12:125","nodeType":"YulFunctionCall","src":"16628:12:125"},"nativeSrc":"16628:12:125","nodeType":"YulExpressionStatement","src":"16628:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"16596:7:125","nodeType":"YulIdentifier","src":"16596:7:125"},{"arguments":[{"name":"value_4","nativeSrc":"16609:7:125","nodeType":"YulIdentifier","src":"16609:7:125"},{"kind":"number","nativeSrc":"16618:4:125","nodeType":"YulLiteral","src":"16618:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"16605:3:125","nodeType":"YulIdentifier","src":"16605:3:125"},"nativeSrc":"16605:18:125","nodeType":"YulFunctionCall","src":"16605:18:125"}],"functionName":{"name":"eq","nativeSrc":"16593:2:125","nodeType":"YulIdentifier","src":"16593:2:125"},"nativeSrc":"16593:31:125","nodeType":"YulFunctionCall","src":"16593:31:125"}],"functionName":{"name":"iszero","nativeSrc":"16586:6:125","nodeType":"YulIdentifier","src":"16586:6:125"},"nativeSrc":"16586:39:125","nodeType":"YulFunctionCall","src":"16586:39:125"},"nativeSrc":"16583:59:125","nodeType":"YulIf","src":"16583:59:125"},{"nativeSrc":"16651:17:125","nodeType":"YulAssignment","src":"16651:17:125","value":{"name":"value_4","nativeSrc":"16661:7:125","nodeType":"YulIdentifier","src":"16661:7:125"},"variableNames":[{"name":"value4","nativeSrc":"16651:6:125","nodeType":"YulIdentifier","src":"16651:6:125"}]},{"nativeSrc":"16677:16:125","nodeType":"YulVariableDeclaration","src":"16677:16:125","value":{"kind":"number","nativeSrc":"16692:1:125","nodeType":"YulLiteral","src":"16692:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"16681:7:125","nodeType":"YulTypedName","src":"16681:7:125","type":""}]},{"nativeSrc":"16702:44:125","nodeType":"YulAssignment","src":"16702:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16730:9:125","nodeType":"YulIdentifier","src":"16730:9:125"},{"kind":"number","nativeSrc":"16741:3:125","nodeType":"YulLiteral","src":"16741:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"16726:3:125","nodeType":"YulIdentifier","src":"16726:3:125"},"nativeSrc":"16726:19:125","nodeType":"YulFunctionCall","src":"16726:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"16713:12:125","nodeType":"YulIdentifier","src":"16713:12:125"},"nativeSrc":"16713:33:125","nodeType":"YulFunctionCall","src":"16713:33:125"},"variableNames":[{"name":"value_5","nativeSrc":"16702:7:125","nodeType":"YulIdentifier","src":"16702:7:125"}]},{"nativeSrc":"16755:17:125","nodeType":"YulAssignment","src":"16755:17:125","value":{"name":"value_5","nativeSrc":"16765:7:125","nodeType":"YulIdentifier","src":"16765:7:125"},"variableNames":[{"name":"value5","nativeSrc":"16755:6:125","nodeType":"YulIdentifier","src":"16755:6:125"}]},{"nativeSrc":"16781:16:125","nodeType":"YulVariableDeclaration","src":"16781:16:125","value":{"kind":"number","nativeSrc":"16796:1:125","nodeType":"YulLiteral","src":"16796:1:125","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"16785:7:125","nodeType":"YulTypedName","src":"16785:7:125","type":""}]},{"nativeSrc":"16806:44:125","nodeType":"YulAssignment","src":"16806:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16834:9:125","nodeType":"YulIdentifier","src":"16834:9:125"},{"kind":"number","nativeSrc":"16845:3:125","nodeType":"YulLiteral","src":"16845:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"16830:3:125","nodeType":"YulIdentifier","src":"16830:3:125"},"nativeSrc":"16830:19:125","nodeType":"YulFunctionCall","src":"16830:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"16817:12:125","nodeType":"YulIdentifier","src":"16817:12:125"},"nativeSrc":"16817:33:125","nodeType":"YulFunctionCall","src":"16817:33:125"},"variableNames":[{"name":"value_6","nativeSrc":"16806:7:125","nodeType":"YulIdentifier","src":"16806:7:125"}]},{"nativeSrc":"16859:17:125","nodeType":"YulAssignment","src":"16859:17:125","value":{"name":"value_6","nativeSrc":"16869:7:125","nodeType":"YulIdentifier","src":"16869:7:125"},"variableNames":[{"name":"value6","nativeSrc":"16859:6:125","nodeType":"YulIdentifier","src":"16859:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$14336t_uint256t_addresst_uint256t_uint8t_bytes32t_bytes32","nativeSrc":"15828:1054:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15933:9:125","nodeType":"YulTypedName","src":"15933:9:125","type":""},{"name":"dataEnd","nativeSrc":"15944:7:125","nodeType":"YulTypedName","src":"15944:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15956:6:125","nodeType":"YulTypedName","src":"15956:6:125","type":""},{"name":"value1","nativeSrc":"15964:6:125","nodeType":"YulTypedName","src":"15964:6:125","type":""},{"name":"value2","nativeSrc":"15972:6:125","nodeType":"YulTypedName","src":"15972:6:125","type":""},{"name":"value3","nativeSrc":"15980:6:125","nodeType":"YulTypedName","src":"15980:6:125","type":""},{"name":"value4","nativeSrc":"15988:6:125","nodeType":"YulTypedName","src":"15988:6:125","type":""},{"name":"value5","nativeSrc":"15996:6:125","nodeType":"YulTypedName","src":"15996:6:125","type":""},{"name":"value6","nativeSrc":"16004:6:125","nodeType":"YulTypedName","src":"16004:6:125","type":""}],"src":"15828:1054:125"},{"body":{"nativeSrc":"17025:529:125","nodeType":"YulBlock","src":"17025:529:125","statements":[{"body":{"nativeSrc":"17072:16:125","nodeType":"YulBlock","src":"17072:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17081:1:125","nodeType":"YulLiteral","src":"17081:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"17084:1:125","nodeType":"YulLiteral","src":"17084:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17074:6:125","nodeType":"YulIdentifier","src":"17074:6:125"},"nativeSrc":"17074:12:125","nodeType":"YulFunctionCall","src":"17074:12:125"},"nativeSrc":"17074:12:125","nodeType":"YulExpressionStatement","src":"17074:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17046:7:125","nodeType":"YulIdentifier","src":"17046:7:125"},{"name":"headStart","nativeSrc":"17055:9:125","nodeType":"YulIdentifier","src":"17055:9:125"}],"functionName":{"name":"sub","nativeSrc":"17042:3:125","nodeType":"YulIdentifier","src":"17042:3:125"},"nativeSrc":"17042:23:125","nodeType":"YulFunctionCall","src":"17042:23:125"},{"kind":"number","nativeSrc":"17067:3:125","nodeType":"YulLiteral","src":"17067:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"17038:3:125","nodeType":"YulIdentifier","src":"17038:3:125"},"nativeSrc":"17038:33:125","nodeType":"YulFunctionCall","src":"17038:33:125"},"nativeSrc":"17035:53:125","nodeType":"YulIf","src":"17035:53:125"},{"nativeSrc":"17097:36:125","nodeType":"YulVariableDeclaration","src":"17097:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17123:9:125","nodeType":"YulIdentifier","src":"17123:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"17110:12:125","nodeType":"YulIdentifier","src":"17110:12:125"},"nativeSrc":"17110:23:125","nodeType":"YulFunctionCall","src":"17110:23:125"},"variables":[{"name":"value","nativeSrc":"17101:5:125","nodeType":"YulTypedName","src":"17101:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"17167:5:125","nodeType":"YulIdentifier","src":"17167:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"17142:24:125","nodeType":"YulIdentifier","src":"17142:24:125"},"nativeSrc":"17142:31:125","nodeType":"YulFunctionCall","src":"17142:31:125"},"nativeSrc":"17142:31:125","nodeType":"YulExpressionStatement","src":"17142:31:125"},{"nativeSrc":"17182:15:125","nodeType":"YulAssignment","src":"17182:15:125","value":{"name":"value","nativeSrc":"17192:5:125","nodeType":"YulIdentifier","src":"17192:5:125"},"variableNames":[{"name":"value0","nativeSrc":"17182:6:125","nodeType":"YulIdentifier","src":"17182:6:125"}]},{"nativeSrc":"17206:16:125","nodeType":"YulVariableDeclaration","src":"17206:16:125","value":{"kind":"number","nativeSrc":"17221:1:125","nodeType":"YulLiteral","src":"17221:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"17210:7:125","nodeType":"YulTypedName","src":"17210:7:125","type":""}]},{"nativeSrc":"17231:43:125","nodeType":"YulAssignment","src":"17231:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17259:9:125","nodeType":"YulIdentifier","src":"17259:9:125"},{"kind":"number","nativeSrc":"17270:2:125","nodeType":"YulLiteral","src":"17270:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17255:3:125","nodeType":"YulIdentifier","src":"17255:3:125"},"nativeSrc":"17255:18:125","nodeType":"YulFunctionCall","src":"17255:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"17242:12:125","nodeType":"YulIdentifier","src":"17242:12:125"},"nativeSrc":"17242:32:125","nodeType":"YulFunctionCall","src":"17242:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"17231:7:125","nodeType":"YulIdentifier","src":"17231:7:125"}]},{"nativeSrc":"17283:17:125","nodeType":"YulAssignment","src":"17283:17:125","value":{"name":"value_1","nativeSrc":"17293:7:125","nodeType":"YulIdentifier","src":"17293:7:125"},"variableNames":[{"name":"value1","nativeSrc":"17283:6:125","nodeType":"YulIdentifier","src":"17283:6:125"}]},{"nativeSrc":"17309:47:125","nodeType":"YulVariableDeclaration","src":"17309:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17341:9:125","nodeType":"YulIdentifier","src":"17341:9:125"},{"kind":"number","nativeSrc":"17352:2:125","nodeType":"YulLiteral","src":"17352:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17337:3:125","nodeType":"YulIdentifier","src":"17337:3:125"},"nativeSrc":"17337:18:125","nodeType":"YulFunctionCall","src":"17337:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"17324:12:125","nodeType":"YulIdentifier","src":"17324:12:125"},"nativeSrc":"17324:32:125","nodeType":"YulFunctionCall","src":"17324:32:125"},"variables":[{"name":"value_2","nativeSrc":"17313:7:125","nodeType":"YulTypedName","src":"17313:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"17390:7:125","nodeType":"YulIdentifier","src":"17390:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"17365:24:125","nodeType":"YulIdentifier","src":"17365:24:125"},"nativeSrc":"17365:33:125","nodeType":"YulFunctionCall","src":"17365:33:125"},"nativeSrc":"17365:33:125","nodeType":"YulExpressionStatement","src":"17365:33:125"},{"nativeSrc":"17407:17:125","nodeType":"YulAssignment","src":"17407:17:125","value":{"name":"value_2","nativeSrc":"17417:7:125","nodeType":"YulIdentifier","src":"17417:7:125"},"variableNames":[{"name":"value2","nativeSrc":"17407:6:125","nodeType":"YulIdentifier","src":"17407:6:125"}]},{"nativeSrc":"17433:47:125","nodeType":"YulVariableDeclaration","src":"17433:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17465:9:125","nodeType":"YulIdentifier","src":"17465:9:125"},{"kind":"number","nativeSrc":"17476:2:125","nodeType":"YulLiteral","src":"17476:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"17461:3:125","nodeType":"YulIdentifier","src":"17461:3:125"},"nativeSrc":"17461:18:125","nodeType":"YulFunctionCall","src":"17461:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"17448:12:125","nodeType":"YulIdentifier","src":"17448:12:125"},"nativeSrc":"17448:32:125","nodeType":"YulFunctionCall","src":"17448:32:125"},"variables":[{"name":"value_3","nativeSrc":"17437:7:125","nodeType":"YulTypedName","src":"17437:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"17514:7:125","nodeType":"YulIdentifier","src":"17514:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"17489:24:125","nodeType":"YulIdentifier","src":"17489:24:125"},"nativeSrc":"17489:33:125","nodeType":"YulFunctionCall","src":"17489:33:125"},"nativeSrc":"17489:33:125","nodeType":"YulExpressionStatement","src":"17489:33:125"},{"nativeSrc":"17531:17:125","nodeType":"YulAssignment","src":"17531:17:125","value":{"name":"value_3","nativeSrc":"17541:7:125","nodeType":"YulIdentifier","src":"17541:7:125"},"variableNames":[{"name":"value3","nativeSrc":"17531:6:125","nodeType":"YulIdentifier","src":"17531:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$14336t_uint256t_addresst_address","nativeSrc":"16887:667:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16967:9:125","nodeType":"YulTypedName","src":"16967:9:125","type":""},{"name":"dataEnd","nativeSrc":"16978:7:125","nodeType":"YulTypedName","src":"16978:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"16990:6:125","nodeType":"YulTypedName","src":"16990:6:125","type":""},{"name":"value1","nativeSrc":"16998:6:125","nodeType":"YulTypedName","src":"16998:6:125","type":""},{"name":"value2","nativeSrc":"17006:6:125","nodeType":"YulTypedName","src":"17006:6:125","type":""},{"name":"value3","nativeSrc":"17014:6:125","nodeType":"YulTypedName","src":"17014:6:125","type":""}],"src":"16887:667:125"},{"body":{"nativeSrc":"17684:102:125","nodeType":"YulBlock","src":"17684:102:125","statements":[{"nativeSrc":"17694:26:125","nodeType":"YulAssignment","src":"17694:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17706:9:125","nodeType":"YulIdentifier","src":"17706:9:125"},{"kind":"number","nativeSrc":"17717:2:125","nodeType":"YulLiteral","src":"17717:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17702:3:125","nodeType":"YulIdentifier","src":"17702:3:125"},"nativeSrc":"17702:18:125","nodeType":"YulFunctionCall","src":"17702:18:125"},"variableNames":[{"name":"tail","nativeSrc":"17694:4:125","nodeType":"YulIdentifier","src":"17694:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17736:9:125","nodeType":"YulIdentifier","src":"17736:9:125"},{"arguments":[{"name":"value0","nativeSrc":"17751:6:125","nodeType":"YulIdentifier","src":"17751:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17767:3:125","nodeType":"YulLiteral","src":"17767:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"17772:1:125","nodeType":"YulLiteral","src":"17772:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"17763:3:125","nodeType":"YulIdentifier","src":"17763:3:125"},"nativeSrc":"17763:11:125","nodeType":"YulFunctionCall","src":"17763:11:125"},{"kind":"number","nativeSrc":"17776:1:125","nodeType":"YulLiteral","src":"17776:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"17759:3:125","nodeType":"YulIdentifier","src":"17759:3:125"},"nativeSrc":"17759:19:125","nodeType":"YulFunctionCall","src":"17759:19:125"}],"functionName":{"name":"and","nativeSrc":"17747:3:125","nodeType":"YulIdentifier","src":"17747:3:125"},"nativeSrc":"17747:32:125","nodeType":"YulFunctionCall","src":"17747:32:125"}],"functionName":{"name":"mstore","nativeSrc":"17729:6:125","nodeType":"YulIdentifier","src":"17729:6:125"},"nativeSrc":"17729:51:125","nodeType":"YulFunctionCall","src":"17729:51:125"},"nativeSrc":"17729:51:125","nodeType":"YulExpressionStatement","src":"17729:51:125"}]},"name":"abi_encode_tuple_t_contract$_IERC20Metadata_$24925__to_t_address__fromStack_reversed","nativeSrc":"17559:227:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17653:9:125","nodeType":"YulTypedName","src":"17653:9:125","type":""},{"name":"value0","nativeSrc":"17664:6:125","nodeType":"YulTypedName","src":"17664:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17675:4:125","nodeType":"YulTypedName","src":"17675:4:125","type":""}],"src":"17559:227:125"},{"body":{"nativeSrc":"17878:301:125","nodeType":"YulBlock","src":"17878:301:125","statements":[{"body":{"nativeSrc":"17924:16:125","nodeType":"YulBlock","src":"17924:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17933:1:125","nodeType":"YulLiteral","src":"17933:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"17936:1:125","nodeType":"YulLiteral","src":"17936:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17926:6:125","nodeType":"YulIdentifier","src":"17926:6:125"},"nativeSrc":"17926:12:125","nodeType":"YulFunctionCall","src":"17926:12:125"},"nativeSrc":"17926:12:125","nodeType":"YulExpressionStatement","src":"17926:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17899:7:125","nodeType":"YulIdentifier","src":"17899:7:125"},{"name":"headStart","nativeSrc":"17908:9:125","nodeType":"YulIdentifier","src":"17908:9:125"}],"functionName":{"name":"sub","nativeSrc":"17895:3:125","nodeType":"YulIdentifier","src":"17895:3:125"},"nativeSrc":"17895:23:125","nodeType":"YulFunctionCall","src":"17895:23:125"},{"kind":"number","nativeSrc":"17920:2:125","nodeType":"YulLiteral","src":"17920:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"17891:3:125","nodeType":"YulIdentifier","src":"17891:3:125"},"nativeSrc":"17891:32:125","nodeType":"YulFunctionCall","src":"17891:32:125"},"nativeSrc":"17888:52:125","nodeType":"YulIf","src":"17888:52:125"},{"nativeSrc":"17949:36:125","nodeType":"YulVariableDeclaration","src":"17949:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17975:9:125","nodeType":"YulIdentifier","src":"17975:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"17962:12:125","nodeType":"YulIdentifier","src":"17962:12:125"},"nativeSrc":"17962:23:125","nodeType":"YulFunctionCall","src":"17962:23:125"},"variables":[{"name":"value","nativeSrc":"17953:5:125","nodeType":"YulTypedName","src":"17953:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"18019:5:125","nodeType":"YulIdentifier","src":"18019:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"17994:24:125","nodeType":"YulIdentifier","src":"17994:24:125"},"nativeSrc":"17994:31:125","nodeType":"YulFunctionCall","src":"17994:31:125"},"nativeSrc":"17994:31:125","nodeType":"YulExpressionStatement","src":"17994:31:125"},{"nativeSrc":"18034:15:125","nodeType":"YulAssignment","src":"18034:15:125","value":{"name":"value","nativeSrc":"18044:5:125","nodeType":"YulIdentifier","src":"18044:5:125"},"variableNames":[{"name":"value0","nativeSrc":"18034:6:125","nodeType":"YulIdentifier","src":"18034:6:125"}]},{"nativeSrc":"18058:47:125","nodeType":"YulVariableDeclaration","src":"18058:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18090:9:125","nodeType":"YulIdentifier","src":"18090:9:125"},{"kind":"number","nativeSrc":"18101:2:125","nodeType":"YulLiteral","src":"18101:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18086:3:125","nodeType":"YulIdentifier","src":"18086:3:125"},"nativeSrc":"18086:18:125","nodeType":"YulFunctionCall","src":"18086:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"18073:12:125","nodeType":"YulIdentifier","src":"18073:12:125"},"nativeSrc":"18073:32:125","nodeType":"YulFunctionCall","src":"18073:32:125"},"variables":[{"name":"value_1","nativeSrc":"18062:7:125","nodeType":"YulTypedName","src":"18062:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"18139:7:125","nodeType":"YulIdentifier","src":"18139:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"18114:24:125","nodeType":"YulIdentifier","src":"18114:24:125"},"nativeSrc":"18114:33:125","nodeType":"YulFunctionCall","src":"18114:33:125"},"nativeSrc":"18114:33:125","nodeType":"YulExpressionStatement","src":"18114:33:125"},{"nativeSrc":"18156:17:125","nodeType":"YulAssignment","src":"18156:17:125","value":{"name":"value_1","nativeSrc":"18166:7:125","nodeType":"YulIdentifier","src":"18166:7:125"},"variableNames":[{"name":"value1","nativeSrc":"18156:6:125","nodeType":"YulIdentifier","src":"18156:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"17791:388:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17836:9:125","nodeType":"YulTypedName","src":"17836:9:125","type":""},{"name":"dataEnd","nativeSrc":"17847:7:125","nodeType":"YulTypedName","src":"17847:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17859:6:125","nodeType":"YulTypedName","src":"17859:6:125","type":""},{"name":"value1","nativeSrc":"17867:6:125","nodeType":"YulTypedName","src":"17867:6:125","type":""}],"src":"17791:388:125"},{"body":{"nativeSrc":"18305:404:125","nodeType":"YulBlock","src":"18305:404:125","statements":[{"body":{"nativeSrc":"18351:16:125","nodeType":"YulBlock","src":"18351:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18360:1:125","nodeType":"YulLiteral","src":"18360:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"18363:1:125","nodeType":"YulLiteral","src":"18363:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18353:6:125","nodeType":"YulIdentifier","src":"18353:6:125"},"nativeSrc":"18353:12:125","nodeType":"YulFunctionCall","src":"18353:12:125"},"nativeSrc":"18353:12:125","nodeType":"YulExpressionStatement","src":"18353:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18326:7:125","nodeType":"YulIdentifier","src":"18326:7:125"},{"name":"headStart","nativeSrc":"18335:9:125","nodeType":"YulIdentifier","src":"18335:9:125"}],"functionName":{"name":"sub","nativeSrc":"18322:3:125","nodeType":"YulIdentifier","src":"18322:3:125"},"nativeSrc":"18322:23:125","nodeType":"YulFunctionCall","src":"18322:23:125"},{"kind":"number","nativeSrc":"18347:2:125","nodeType":"YulLiteral","src":"18347:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"18318:3:125","nodeType":"YulIdentifier","src":"18318:3:125"},"nativeSrc":"18318:32:125","nodeType":"YulFunctionCall","src":"18318:32:125"},"nativeSrc":"18315:52:125","nodeType":"YulIf","src":"18315:52:125"},{"nativeSrc":"18376:36:125","nodeType":"YulVariableDeclaration","src":"18376:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18402:9:125","nodeType":"YulIdentifier","src":"18402:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"18389:12:125","nodeType":"YulIdentifier","src":"18389:12:125"},"nativeSrc":"18389:23:125","nodeType":"YulFunctionCall","src":"18389:23:125"},"variables":[{"name":"value","nativeSrc":"18380:5:125","nodeType":"YulTypedName","src":"18380:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"18446:5:125","nodeType":"YulIdentifier","src":"18446:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"18421:24:125","nodeType":"YulIdentifier","src":"18421:24:125"},"nativeSrc":"18421:31:125","nodeType":"YulFunctionCall","src":"18421:31:125"},"nativeSrc":"18421:31:125","nodeType":"YulExpressionStatement","src":"18421:31:125"},{"nativeSrc":"18461:15:125","nodeType":"YulAssignment","src":"18461:15:125","value":{"name":"value","nativeSrc":"18471:5:125","nodeType":"YulIdentifier","src":"18471:5:125"},"variableNames":[{"name":"value0","nativeSrc":"18461:6:125","nodeType":"YulIdentifier","src":"18461:6:125"}]},{"nativeSrc":"18485:16:125","nodeType":"YulVariableDeclaration","src":"18485:16:125","value":{"kind":"number","nativeSrc":"18500:1:125","nodeType":"YulLiteral","src":"18500:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"18489:7:125","nodeType":"YulTypedName","src":"18489:7:125","type":""}]},{"nativeSrc":"18510:43:125","nodeType":"YulAssignment","src":"18510:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18538:9:125","nodeType":"YulIdentifier","src":"18538:9:125"},{"kind":"number","nativeSrc":"18549:2:125","nodeType":"YulLiteral","src":"18549:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18534:3:125","nodeType":"YulIdentifier","src":"18534:3:125"},"nativeSrc":"18534:18:125","nodeType":"YulFunctionCall","src":"18534:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"18521:12:125","nodeType":"YulIdentifier","src":"18521:12:125"},"nativeSrc":"18521:32:125","nodeType":"YulFunctionCall","src":"18521:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"18510:7:125","nodeType":"YulIdentifier","src":"18510:7:125"}]},{"nativeSrc":"18562:17:125","nodeType":"YulAssignment","src":"18562:17:125","value":{"name":"value_1","nativeSrc":"18572:7:125","nodeType":"YulIdentifier","src":"18572:7:125"},"variableNames":[{"name":"value1","nativeSrc":"18562:6:125","nodeType":"YulIdentifier","src":"18562:6:125"}]},{"nativeSrc":"18588:47:125","nodeType":"YulVariableDeclaration","src":"18588:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18620:9:125","nodeType":"YulIdentifier","src":"18620:9:125"},{"kind":"number","nativeSrc":"18631:2:125","nodeType":"YulLiteral","src":"18631:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18616:3:125","nodeType":"YulIdentifier","src":"18616:3:125"},"nativeSrc":"18616:18:125","nodeType":"YulFunctionCall","src":"18616:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"18603:12:125","nodeType":"YulIdentifier","src":"18603:12:125"},"nativeSrc":"18603:32:125","nodeType":"YulFunctionCall","src":"18603:32:125"},"variables":[{"name":"value_2","nativeSrc":"18592:7:125","nodeType":"YulTypedName","src":"18592:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"18669:7:125","nodeType":"YulIdentifier","src":"18669:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"18644:24:125","nodeType":"YulIdentifier","src":"18644:24:125"},"nativeSrc":"18644:33:125","nodeType":"YulFunctionCall","src":"18644:33:125"},"nativeSrc":"18644:33:125","nodeType":"YulExpressionStatement","src":"18644:33:125"},{"nativeSrc":"18686:17:125","nodeType":"YulAssignment","src":"18686:17:125","value":{"name":"value_2","nativeSrc":"18696:7:125","nodeType":"YulIdentifier","src":"18696:7:125"},"variableNames":[{"name":"value2","nativeSrc":"18686:6:125","nodeType":"YulIdentifier","src":"18686:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$14336t_uint256t_address","nativeSrc":"18184:525:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18255:9:125","nodeType":"YulTypedName","src":"18255:9:125","type":""},{"name":"dataEnd","nativeSrc":"18266:7:125","nodeType":"YulTypedName","src":"18266:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18278:6:125","nodeType":"YulTypedName","src":"18278:6:125","type":""},{"name":"value1","nativeSrc":"18286:6:125","nodeType":"YulTypedName","src":"18286:6:125","type":""},{"name":"value2","nativeSrc":"18294:6:125","nodeType":"YulTypedName","src":"18294:6:125","type":""}],"src":"18184:525:125"},{"body":{"nativeSrc":"18814:145:125","nodeType":"YulBlock","src":"18814:145:125","statements":[{"body":{"nativeSrc":"18861:16:125","nodeType":"YulBlock","src":"18861:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18870:1:125","nodeType":"YulLiteral","src":"18870:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"18873:1:125","nodeType":"YulLiteral","src":"18873:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18863:6:125","nodeType":"YulIdentifier","src":"18863:6:125"},"nativeSrc":"18863:12:125","nodeType":"YulFunctionCall","src":"18863:12:125"},"nativeSrc":"18863:12:125","nodeType":"YulExpressionStatement","src":"18863:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18835:7:125","nodeType":"YulIdentifier","src":"18835:7:125"},{"name":"headStart","nativeSrc":"18844:9:125","nodeType":"YulIdentifier","src":"18844:9:125"}],"functionName":{"name":"sub","nativeSrc":"18831:3:125","nodeType":"YulIdentifier","src":"18831:3:125"},"nativeSrc":"18831:23:125","nodeType":"YulFunctionCall","src":"18831:23:125"},{"kind":"number","nativeSrc":"18856:3:125","nodeType":"YulLiteral","src":"18856:3:125","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"18827:3:125","nodeType":"YulIdentifier","src":"18827:3:125"},"nativeSrc":"18827:33:125","nodeType":"YulFunctionCall","src":"18827:33:125"},"nativeSrc":"18824:53:125","nodeType":"YulIf","src":"18824:53:125"},{"nativeSrc":"18886:67:125","nodeType":"YulAssignment","src":"18886:67:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18934:9:125","nodeType":"YulIdentifier","src":"18934:9:125"},{"name":"dataEnd","nativeSrc":"18945:7:125","nodeType":"YulIdentifier","src":"18945:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"18896:37:125","nodeType":"YulIdentifier","src":"18896:37:125"},"nativeSrc":"18896:57:125","nodeType":"YulFunctionCall","src":"18896:57:125"},"variableNames":[{"name":"value0","nativeSrc":"18886:6:125","nodeType":"YulIdentifier","src":"18886:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptr","nativeSrc":"18714:245:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18780:9:125","nodeType":"YulTypedName","src":"18780:9:125","type":""},{"name":"dataEnd","nativeSrc":"18791:7:125","nodeType":"YulTypedName","src":"18791:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18803:6:125","nodeType":"YulTypedName","src":"18803:6:125","type":""}],"src":"18714:245:125"},{"body":{"nativeSrc":"19019:325:125","nodeType":"YulBlock","src":"19019:325:125","statements":[{"nativeSrc":"19029:22:125","nodeType":"YulAssignment","src":"19029:22:125","value":{"arguments":[{"kind":"number","nativeSrc":"19043:1:125","nodeType":"YulLiteral","src":"19043:1:125","type":"","value":"1"},{"name":"data","nativeSrc":"19046:4:125","nodeType":"YulIdentifier","src":"19046:4:125"}],"functionName":{"name":"shr","nativeSrc":"19039:3:125","nodeType":"YulIdentifier","src":"19039:3:125"},"nativeSrc":"19039:12:125","nodeType":"YulFunctionCall","src":"19039:12:125"},"variableNames":[{"name":"length","nativeSrc":"19029:6:125","nodeType":"YulIdentifier","src":"19029:6:125"}]},{"nativeSrc":"19060:38:125","nodeType":"YulVariableDeclaration","src":"19060:38:125","value":{"arguments":[{"name":"data","nativeSrc":"19090:4:125","nodeType":"YulIdentifier","src":"19090:4:125"},{"kind":"number","nativeSrc":"19096:1:125","nodeType":"YulLiteral","src":"19096:1:125","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"19086:3:125","nodeType":"YulIdentifier","src":"19086:3:125"},"nativeSrc":"19086:12:125","nodeType":"YulFunctionCall","src":"19086:12:125"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"19064:18:125","nodeType":"YulTypedName","src":"19064:18:125","type":""}]},{"body":{"nativeSrc":"19137:31:125","nodeType":"YulBlock","src":"19137:31:125","statements":[{"nativeSrc":"19139:27:125","nodeType":"YulAssignment","src":"19139:27:125","value":{"arguments":[{"name":"length","nativeSrc":"19153:6:125","nodeType":"YulIdentifier","src":"19153:6:125"},{"kind":"number","nativeSrc":"19161:4:125","nodeType":"YulLiteral","src":"19161:4:125","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"19149:3:125","nodeType":"YulIdentifier","src":"19149:3:125"},"nativeSrc":"19149:17:125","nodeType":"YulFunctionCall","src":"19149:17:125"},"variableNames":[{"name":"length","nativeSrc":"19139:6:125","nodeType":"YulIdentifier","src":"19139:6:125"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"19117:18:125","nodeType":"YulIdentifier","src":"19117:18:125"}],"functionName":{"name":"iszero","nativeSrc":"19110:6:125","nodeType":"YulIdentifier","src":"19110:6:125"},"nativeSrc":"19110:26:125","nodeType":"YulFunctionCall","src":"19110:26:125"},"nativeSrc":"19107:61:125","nodeType":"YulIf","src":"19107:61:125"},{"body":{"nativeSrc":"19227:111:125","nodeType":"YulBlock","src":"19227:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19248:1:125","nodeType":"YulLiteral","src":"19248:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"19255:3:125","nodeType":"YulLiteral","src":"19255:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"19260:10:125","nodeType":"YulLiteral","src":"19260:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"19251:3:125","nodeType":"YulIdentifier","src":"19251:3:125"},"nativeSrc":"19251:20:125","nodeType":"YulFunctionCall","src":"19251:20:125"}],"functionName":{"name":"mstore","nativeSrc":"19241:6:125","nodeType":"YulIdentifier","src":"19241:6:125"},"nativeSrc":"19241:31:125","nodeType":"YulFunctionCall","src":"19241:31:125"},"nativeSrc":"19241:31:125","nodeType":"YulExpressionStatement","src":"19241:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"19292:1:125","nodeType":"YulLiteral","src":"19292:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"19295:4:125","nodeType":"YulLiteral","src":"19295:4:125","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"19285:6:125","nodeType":"YulIdentifier","src":"19285:6:125"},"nativeSrc":"19285:15:125","nodeType":"YulFunctionCall","src":"19285:15:125"},"nativeSrc":"19285:15:125","nodeType":"YulExpressionStatement","src":"19285:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"19320:1:125","nodeType":"YulLiteral","src":"19320:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"19323:4:125","nodeType":"YulLiteral","src":"19323:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"19313:6:125","nodeType":"YulIdentifier","src":"19313:6:125"},"nativeSrc":"19313:15:125","nodeType":"YulFunctionCall","src":"19313:15:125"},"nativeSrc":"19313:15:125","nodeType":"YulExpressionStatement","src":"19313:15:125"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"19183:18:125","nodeType":"YulIdentifier","src":"19183:18:125"},{"arguments":[{"name":"length","nativeSrc":"19206:6:125","nodeType":"YulIdentifier","src":"19206:6:125"},{"kind":"number","nativeSrc":"19214:2:125","nodeType":"YulLiteral","src":"19214:2:125","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"19203:2:125","nodeType":"YulIdentifier","src":"19203:2:125"},"nativeSrc":"19203:14:125","nodeType":"YulFunctionCall","src":"19203:14:125"}],"functionName":{"name":"eq","nativeSrc":"19180:2:125","nodeType":"YulIdentifier","src":"19180:2:125"},"nativeSrc":"19180:38:125","nodeType":"YulFunctionCall","src":"19180:38:125"},"nativeSrc":"19177:161:125","nodeType":"YulIf","src":"19177:161:125"}]},"name":"extract_byte_array_length","nativeSrc":"18964:380:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"18999:4:125","nodeType":"YulTypedName","src":"18999:4:125","type":""}],"returnVariables":[{"name":"length","nativeSrc":"19008:6:125","nodeType":"YulTypedName","src":"19008:6:125","type":""}],"src":"18964:380:125"},{"body":{"nativeSrc":"19457:101:125","nodeType":"YulBlock","src":"19457:101:125","statements":[{"nativeSrc":"19467:26:125","nodeType":"YulAssignment","src":"19467:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"19479:9:125","nodeType":"YulIdentifier","src":"19479:9:125"},{"kind":"number","nativeSrc":"19490:2:125","nodeType":"YulLiteral","src":"19490:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19475:3:125","nodeType":"YulIdentifier","src":"19475:3:125"},"nativeSrc":"19475:18:125","nodeType":"YulFunctionCall","src":"19475:18:125"},"variableNames":[{"name":"tail","nativeSrc":"19467:4:125","nodeType":"YulIdentifier","src":"19467:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19509:9:125","nodeType":"YulIdentifier","src":"19509:9:125"},{"arguments":[{"name":"value0","nativeSrc":"19524:6:125","nodeType":"YulIdentifier","src":"19524:6:125"},{"kind":"number","nativeSrc":"19532:18:125","nodeType":"YulLiteral","src":"19532:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19520:3:125","nodeType":"YulIdentifier","src":"19520:3:125"},"nativeSrc":"19520:31:125","nodeType":"YulFunctionCall","src":"19520:31:125"}],"functionName":{"name":"mstore","nativeSrc":"19502:6:125","nodeType":"YulIdentifier","src":"19502:6:125"},"nativeSrc":"19502:50:125","nodeType":"YulFunctionCall","src":"19502:50:125"},"nativeSrc":"19502:50:125","nodeType":"YulExpressionStatement","src":"19502:50:125"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"19349:209:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19426:9:125","nodeType":"YulTypedName","src":"19426:9:125","type":""},{"name":"value0","nativeSrc":"19437:6:125","nodeType":"YulTypedName","src":"19437:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19448:4:125","nodeType":"YulTypedName","src":"19448:4:125","type":""}],"src":"19349:209:125"},{"body":{"nativeSrc":"19670:170:125","nodeType":"YulBlock","src":"19670:170:125","statements":[{"body":{"nativeSrc":"19716:16:125","nodeType":"YulBlock","src":"19716:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19725:1:125","nodeType":"YulLiteral","src":"19725:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"19728:1:125","nodeType":"YulLiteral","src":"19728:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19718:6:125","nodeType":"YulIdentifier","src":"19718:6:125"},"nativeSrc":"19718:12:125","nodeType":"YulFunctionCall","src":"19718:12:125"},"nativeSrc":"19718:12:125","nodeType":"YulExpressionStatement","src":"19718:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"19691:7:125","nodeType":"YulIdentifier","src":"19691:7:125"},{"name":"headStart","nativeSrc":"19700:9:125","nodeType":"YulIdentifier","src":"19700:9:125"}],"functionName":{"name":"sub","nativeSrc":"19687:3:125","nodeType":"YulIdentifier","src":"19687:3:125"},"nativeSrc":"19687:23:125","nodeType":"YulFunctionCall","src":"19687:23:125"},{"kind":"number","nativeSrc":"19712:2:125","nodeType":"YulLiteral","src":"19712:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"19683:3:125","nodeType":"YulIdentifier","src":"19683:3:125"},"nativeSrc":"19683:32:125","nodeType":"YulFunctionCall","src":"19683:32:125"},"nativeSrc":"19680:52:125","nodeType":"YulIf","src":"19680:52:125"},{"nativeSrc":"19741:29:125","nodeType":"YulVariableDeclaration","src":"19741:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"19760:9:125","nodeType":"YulIdentifier","src":"19760:9:125"}],"functionName":{"name":"mload","nativeSrc":"19754:5:125","nodeType":"YulIdentifier","src":"19754:5:125"},"nativeSrc":"19754:16:125","nodeType":"YulFunctionCall","src":"19754:16:125"},"variables":[{"name":"value","nativeSrc":"19745:5:125","nodeType":"YulTypedName","src":"19745:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"19804:5:125","nodeType":"YulIdentifier","src":"19804:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"19779:24:125","nodeType":"YulIdentifier","src":"19779:24:125"},"nativeSrc":"19779:31:125","nodeType":"YulFunctionCall","src":"19779:31:125"},"nativeSrc":"19779:31:125","nodeType":"YulExpressionStatement","src":"19779:31:125"},{"nativeSrc":"19819:15:125","nodeType":"YulAssignment","src":"19819:15:125","value":{"name":"value","nativeSrc":"19829:5:125","nodeType":"YulIdentifier","src":"19829:5:125"},"variableNames":[{"name":"value0","nativeSrc":"19819:6:125","nodeType":"YulIdentifier","src":"19819:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IPremiumsAccount_$14743_fromMemory","nativeSrc":"19563:277:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19636:9:125","nodeType":"YulTypedName","src":"19636:9:125","type":""},{"name":"dataEnd","nativeSrc":"19647:7:125","nodeType":"YulTypedName","src":"19647:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"19659:6:125","nodeType":"YulTypedName","src":"19659:6:125","type":""}],"src":"19563:277:125"},{"body":{"nativeSrc":"19888:53:125","nodeType":"YulBlock","src":"19888:53:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"19905:3:125","nodeType":"YulIdentifier","src":"19905:3:125"},{"arguments":[{"name":"value","nativeSrc":"19914:5:125","nodeType":"YulIdentifier","src":"19914:5:125"},{"kind":"number","nativeSrc":"19921:12:125","nodeType":"YulLiteral","src":"19921:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"19910:3:125","nodeType":"YulIdentifier","src":"19910:3:125"},"nativeSrc":"19910:24:125","nodeType":"YulFunctionCall","src":"19910:24:125"}],"functionName":{"name":"mstore","nativeSrc":"19898:6:125","nodeType":"YulIdentifier","src":"19898:6:125"},"nativeSrc":"19898:37:125","nodeType":"YulFunctionCall","src":"19898:37:125"},"nativeSrc":"19898:37:125","nodeType":"YulExpressionStatement","src":"19898:37:125"}]},"name":"abi_encode_uint40","nativeSrc":"19845:96:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"19872:5:125","nodeType":"YulTypedName","src":"19872:5:125","type":""},{"name":"pos","nativeSrc":"19879:3:125","nodeType":"YulTypedName","src":"19879:3:125","type":""}],"src":"19845:96:125"},{"body":{"nativeSrc":"20000:781:125","nodeType":"YulBlock","src":"20000:781:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"20017:3:125","nodeType":"YulIdentifier","src":"20017:3:125"},{"arguments":[{"name":"value","nativeSrc":"20028:5:125","nodeType":"YulIdentifier","src":"20028:5:125"}],"functionName":{"name":"mload","nativeSrc":"20022:5:125","nodeType":"YulIdentifier","src":"20022:5:125"},"nativeSrc":"20022:12:125","nodeType":"YulFunctionCall","src":"20022:12:125"}],"functionName":{"name":"mstore","nativeSrc":"20010:6:125","nodeType":"YulIdentifier","src":"20010:6:125"},"nativeSrc":"20010:25:125","nodeType":"YulFunctionCall","src":"20010:25:125"},"nativeSrc":"20010:25:125","nodeType":"YulExpressionStatement","src":"20010:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20055:3:125","nodeType":"YulIdentifier","src":"20055:3:125"},{"kind":"number","nativeSrc":"20060:4:125","nodeType":"YulLiteral","src":"20060:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"20051:3:125","nodeType":"YulIdentifier","src":"20051:3:125"},"nativeSrc":"20051:14:125","nodeType":"YulFunctionCall","src":"20051:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20077:5:125","nodeType":"YulIdentifier","src":"20077:5:125"},{"kind":"number","nativeSrc":"20084:4:125","nodeType":"YulLiteral","src":"20084:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"20073:3:125","nodeType":"YulIdentifier","src":"20073:3:125"},"nativeSrc":"20073:16:125","nodeType":"YulFunctionCall","src":"20073:16:125"}],"functionName":{"name":"mload","nativeSrc":"20067:5:125","nodeType":"YulIdentifier","src":"20067:5:125"},"nativeSrc":"20067:23:125","nodeType":"YulFunctionCall","src":"20067:23:125"}],"functionName":{"name":"mstore","nativeSrc":"20044:6:125","nodeType":"YulIdentifier","src":"20044:6:125"},"nativeSrc":"20044:47:125","nodeType":"YulFunctionCall","src":"20044:47:125"},"nativeSrc":"20044:47:125","nodeType":"YulExpressionStatement","src":"20044:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20111:3:125","nodeType":"YulIdentifier","src":"20111:3:125"},{"kind":"number","nativeSrc":"20116:4:125","nodeType":"YulLiteral","src":"20116:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"20107:3:125","nodeType":"YulIdentifier","src":"20107:3:125"},"nativeSrc":"20107:14:125","nodeType":"YulFunctionCall","src":"20107:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20133:5:125","nodeType":"YulIdentifier","src":"20133:5:125"},{"kind":"number","nativeSrc":"20140:4:125","nodeType":"YulLiteral","src":"20140:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"20129:3:125","nodeType":"YulIdentifier","src":"20129:3:125"},"nativeSrc":"20129:16:125","nodeType":"YulFunctionCall","src":"20129:16:125"}],"functionName":{"name":"mload","nativeSrc":"20123:5:125","nodeType":"YulIdentifier","src":"20123:5:125"},"nativeSrc":"20123:23:125","nodeType":"YulFunctionCall","src":"20123:23:125"}],"functionName":{"name":"mstore","nativeSrc":"20100:6:125","nodeType":"YulIdentifier","src":"20100:6:125"},"nativeSrc":"20100:47:125","nodeType":"YulFunctionCall","src":"20100:47:125"},"nativeSrc":"20100:47:125","nodeType":"YulExpressionStatement","src":"20100:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20167:3:125","nodeType":"YulIdentifier","src":"20167:3:125"},{"kind":"number","nativeSrc":"20172:4:125","nodeType":"YulLiteral","src":"20172:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"20163:3:125","nodeType":"YulIdentifier","src":"20163:3:125"},"nativeSrc":"20163:14:125","nodeType":"YulFunctionCall","src":"20163:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20189:5:125","nodeType":"YulIdentifier","src":"20189:5:125"},{"kind":"number","nativeSrc":"20196:4:125","nodeType":"YulLiteral","src":"20196:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"20185:3:125","nodeType":"YulIdentifier","src":"20185:3:125"},"nativeSrc":"20185:16:125","nodeType":"YulFunctionCall","src":"20185:16:125"}],"functionName":{"name":"mload","nativeSrc":"20179:5:125","nodeType":"YulIdentifier","src":"20179:5:125"},"nativeSrc":"20179:23:125","nodeType":"YulFunctionCall","src":"20179:23:125"}],"functionName":{"name":"mstore","nativeSrc":"20156:6:125","nodeType":"YulIdentifier","src":"20156:6:125"},"nativeSrc":"20156:47:125","nodeType":"YulFunctionCall","src":"20156:47:125"},"nativeSrc":"20156:47:125","nodeType":"YulExpressionStatement","src":"20156:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20223:3:125","nodeType":"YulIdentifier","src":"20223:3:125"},{"kind":"number","nativeSrc":"20228:4:125","nodeType":"YulLiteral","src":"20228:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"20219:3:125","nodeType":"YulIdentifier","src":"20219:3:125"},"nativeSrc":"20219:14:125","nodeType":"YulFunctionCall","src":"20219:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20245:5:125","nodeType":"YulIdentifier","src":"20245:5:125"},{"kind":"number","nativeSrc":"20252:4:125","nodeType":"YulLiteral","src":"20252:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"20241:3:125","nodeType":"YulIdentifier","src":"20241:3:125"},"nativeSrc":"20241:16:125","nodeType":"YulFunctionCall","src":"20241:16:125"}],"functionName":{"name":"mload","nativeSrc":"20235:5:125","nodeType":"YulIdentifier","src":"20235:5:125"},"nativeSrc":"20235:23:125","nodeType":"YulFunctionCall","src":"20235:23:125"}],"functionName":{"name":"mstore","nativeSrc":"20212:6:125","nodeType":"YulIdentifier","src":"20212:6:125"},"nativeSrc":"20212:47:125","nodeType":"YulFunctionCall","src":"20212:47:125"},"nativeSrc":"20212:47:125","nodeType":"YulExpressionStatement","src":"20212:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20279:3:125","nodeType":"YulIdentifier","src":"20279:3:125"},{"kind":"number","nativeSrc":"20284:4:125","nodeType":"YulLiteral","src":"20284:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"20275:3:125","nodeType":"YulIdentifier","src":"20275:3:125"},"nativeSrc":"20275:14:125","nodeType":"YulFunctionCall","src":"20275:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20301:5:125","nodeType":"YulIdentifier","src":"20301:5:125"},{"kind":"number","nativeSrc":"20308:4:125","nodeType":"YulLiteral","src":"20308:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"20297:3:125","nodeType":"YulIdentifier","src":"20297:3:125"},"nativeSrc":"20297:16:125","nodeType":"YulFunctionCall","src":"20297:16:125"}],"functionName":{"name":"mload","nativeSrc":"20291:5:125","nodeType":"YulIdentifier","src":"20291:5:125"},"nativeSrc":"20291:23:125","nodeType":"YulFunctionCall","src":"20291:23:125"}],"functionName":{"name":"mstore","nativeSrc":"20268:6:125","nodeType":"YulIdentifier","src":"20268:6:125"},"nativeSrc":"20268:47:125","nodeType":"YulFunctionCall","src":"20268:47:125"},"nativeSrc":"20268:47:125","nodeType":"YulExpressionStatement","src":"20268:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20335:3:125","nodeType":"YulIdentifier","src":"20335:3:125"},{"kind":"number","nativeSrc":"20340:4:125","nodeType":"YulLiteral","src":"20340:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"20331:3:125","nodeType":"YulIdentifier","src":"20331:3:125"},"nativeSrc":"20331:14:125","nodeType":"YulFunctionCall","src":"20331:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20357:5:125","nodeType":"YulIdentifier","src":"20357:5:125"},{"kind":"number","nativeSrc":"20364:4:125","nodeType":"YulLiteral","src":"20364:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"20353:3:125","nodeType":"YulIdentifier","src":"20353:3:125"},"nativeSrc":"20353:16:125","nodeType":"YulFunctionCall","src":"20353:16:125"}],"functionName":{"name":"mload","nativeSrc":"20347:5:125","nodeType":"YulIdentifier","src":"20347:5:125"},"nativeSrc":"20347:23:125","nodeType":"YulFunctionCall","src":"20347:23:125"}],"functionName":{"name":"mstore","nativeSrc":"20324:6:125","nodeType":"YulIdentifier","src":"20324:6:125"},"nativeSrc":"20324:47:125","nodeType":"YulFunctionCall","src":"20324:47:125"},"nativeSrc":"20324:47:125","nodeType":"YulExpressionStatement","src":"20324:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20391:3:125","nodeType":"YulIdentifier","src":"20391:3:125"},{"kind":"number","nativeSrc":"20396:4:125","nodeType":"YulLiteral","src":"20396:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"20387:3:125","nodeType":"YulIdentifier","src":"20387:3:125"},"nativeSrc":"20387:14:125","nodeType":"YulFunctionCall","src":"20387:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20413:5:125","nodeType":"YulIdentifier","src":"20413:5:125"},{"kind":"number","nativeSrc":"20420:4:125","nodeType":"YulLiteral","src":"20420:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"20409:3:125","nodeType":"YulIdentifier","src":"20409:3:125"},"nativeSrc":"20409:16:125","nodeType":"YulFunctionCall","src":"20409:16:125"}],"functionName":{"name":"mload","nativeSrc":"20403:5:125","nodeType":"YulIdentifier","src":"20403:5:125"},"nativeSrc":"20403:23:125","nodeType":"YulFunctionCall","src":"20403:23:125"}],"functionName":{"name":"mstore","nativeSrc":"20380:6:125","nodeType":"YulIdentifier","src":"20380:6:125"},"nativeSrc":"20380:47:125","nodeType":"YulFunctionCall","src":"20380:47:125"},"nativeSrc":"20380:47:125","nodeType":"YulExpressionStatement","src":"20380:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20447:3:125","nodeType":"YulIdentifier","src":"20447:3:125"},{"kind":"number","nativeSrc":"20452:6:125","nodeType":"YulLiteral","src":"20452:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"20443:3:125","nodeType":"YulIdentifier","src":"20443:3:125"},"nativeSrc":"20443:16:125","nodeType":"YulFunctionCall","src":"20443:16:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20471:5:125","nodeType":"YulIdentifier","src":"20471:5:125"},{"kind":"number","nativeSrc":"20478:6:125","nodeType":"YulLiteral","src":"20478:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"20467:3:125","nodeType":"YulIdentifier","src":"20467:3:125"},"nativeSrc":"20467:18:125","nodeType":"YulFunctionCall","src":"20467:18:125"}],"functionName":{"name":"mload","nativeSrc":"20461:5:125","nodeType":"YulIdentifier","src":"20461:5:125"},"nativeSrc":"20461:25:125","nodeType":"YulFunctionCall","src":"20461:25:125"}],"functionName":{"name":"mstore","nativeSrc":"20436:6:125","nodeType":"YulIdentifier","src":"20436:6:125"},"nativeSrc":"20436:51:125","nodeType":"YulFunctionCall","src":"20436:51:125"},"nativeSrc":"20436:51:125","nodeType":"YulExpressionStatement","src":"20436:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20507:3:125","nodeType":"YulIdentifier","src":"20507:3:125"},{"kind":"number","nativeSrc":"20512:6:125","nodeType":"YulLiteral","src":"20512:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"20503:3:125","nodeType":"YulIdentifier","src":"20503:3:125"},"nativeSrc":"20503:16:125","nodeType":"YulFunctionCall","src":"20503:16:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20531:5:125","nodeType":"YulIdentifier","src":"20531:5:125"},{"kind":"number","nativeSrc":"20538:6:125","nodeType":"YulLiteral","src":"20538:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"20527:3:125","nodeType":"YulIdentifier","src":"20527:3:125"},"nativeSrc":"20527:18:125","nodeType":"YulFunctionCall","src":"20527:18:125"}],"functionName":{"name":"mload","nativeSrc":"20521:5:125","nodeType":"YulIdentifier","src":"20521:5:125"},"nativeSrc":"20521:25:125","nodeType":"YulFunctionCall","src":"20521:25:125"}],"functionName":{"name":"mstore","nativeSrc":"20496:6:125","nodeType":"YulIdentifier","src":"20496:6:125"},"nativeSrc":"20496:51:125","nodeType":"YulFunctionCall","src":"20496:51:125"},"nativeSrc":"20496:51:125","nodeType":"YulExpressionStatement","src":"20496:51:125"},{"nativeSrc":"20556:45:125","nodeType":"YulVariableDeclaration","src":"20556:45:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20586:5:125","nodeType":"YulIdentifier","src":"20586:5:125"},{"kind":"number","nativeSrc":"20593:6:125","nodeType":"YulLiteral","src":"20593:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"20582:3:125","nodeType":"YulIdentifier","src":"20582:3:125"},"nativeSrc":"20582:18:125","nodeType":"YulFunctionCall","src":"20582:18:125"}],"functionName":{"name":"mload","nativeSrc":"20576:5:125","nodeType":"YulIdentifier","src":"20576:5:125"},"nativeSrc":"20576:25:125","nodeType":"YulFunctionCall","src":"20576:25:125"},"variables":[{"name":"memberValue0","nativeSrc":"20560:12:125","nodeType":"YulTypedName","src":"20560:12:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"20628:12:125","nodeType":"YulIdentifier","src":"20628:12:125"},{"arguments":[{"name":"pos","nativeSrc":"20646:3:125","nodeType":"YulIdentifier","src":"20646:3:125"},{"kind":"number","nativeSrc":"20651:6:125","nodeType":"YulLiteral","src":"20651:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"20642:3:125","nodeType":"YulIdentifier","src":"20642:3:125"},"nativeSrc":"20642:16:125","nodeType":"YulFunctionCall","src":"20642:16:125"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"20610:17:125","nodeType":"YulIdentifier","src":"20610:17:125"},"nativeSrc":"20610:49:125","nodeType":"YulFunctionCall","src":"20610:49:125"},"nativeSrc":"20610:49:125","nodeType":"YulExpressionStatement","src":"20610:49:125"},{"nativeSrc":"20668:47:125","nodeType":"YulVariableDeclaration","src":"20668:47:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"20700:5:125","nodeType":"YulIdentifier","src":"20700:5:125"},{"kind":"number","nativeSrc":"20707:6:125","nodeType":"YulLiteral","src":"20707:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"20696:3:125","nodeType":"YulIdentifier","src":"20696:3:125"},"nativeSrc":"20696:18:125","nodeType":"YulFunctionCall","src":"20696:18:125"}],"functionName":{"name":"mload","nativeSrc":"20690:5:125","nodeType":"YulIdentifier","src":"20690:5:125"},"nativeSrc":"20690:25:125","nodeType":"YulFunctionCall","src":"20690:25:125"},"variables":[{"name":"memberValue0_1","nativeSrc":"20672:14:125","nodeType":"YulTypedName","src":"20672:14:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nativeSrc":"20742:14:125","nodeType":"YulIdentifier","src":"20742:14:125"},{"arguments":[{"name":"pos","nativeSrc":"20762:3:125","nodeType":"YulIdentifier","src":"20762:3:125"},{"kind":"number","nativeSrc":"20767:6:125","nodeType":"YulLiteral","src":"20767:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"20758:3:125","nodeType":"YulIdentifier","src":"20758:3:125"},"nativeSrc":"20758:16:125","nodeType":"YulFunctionCall","src":"20758:16:125"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"20724:17:125","nodeType":"YulIdentifier","src":"20724:17:125"},"nativeSrc":"20724:51:125","nodeType":"YulFunctionCall","src":"20724:51:125"},"nativeSrc":"20724:51:125","nodeType":"YulExpressionStatement","src":"20724:51:125"}]},"name":"abi_encode_struct_PolicyData","nativeSrc":"19946:835:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"19984:5:125","nodeType":"YulTypedName","src":"19984:5:125","type":""},{"name":"pos","nativeSrc":"19991:3:125","nodeType":"YulTypedName","src":"19991:3:125","type":""}],"src":"19946:835:125"},{"body":{"nativeSrc":"20943:99:125","nodeType":"YulBlock","src":"20943:99:125","statements":[{"nativeSrc":"20953:27:125","nodeType":"YulAssignment","src":"20953:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"20965:9:125","nodeType":"YulIdentifier","src":"20965:9:125"},{"kind":"number","nativeSrc":"20976:3:125","nodeType":"YulLiteral","src":"20976:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"20961:3:125","nodeType":"YulIdentifier","src":"20961:3:125"},"nativeSrc":"20961:19:125","nodeType":"YulFunctionCall","src":"20961:19:125"},"variableNames":[{"name":"tail","nativeSrc":"20953:4:125","nodeType":"YulIdentifier","src":"20953:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"21018:6:125","nodeType":"YulIdentifier","src":"21018:6:125"},{"name":"headStart","nativeSrc":"21026:9:125","nodeType":"YulIdentifier","src":"21026:9:125"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"20989:28:125","nodeType":"YulIdentifier","src":"20989:28:125"},"nativeSrc":"20989:47:125","nodeType":"YulFunctionCall","src":"20989:47:125"},"nativeSrc":"20989:47:125","nodeType":"YulExpressionStatement","src":"20989:47:125"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr__fromStack_reversed","nativeSrc":"20786:256:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20912:9:125","nodeType":"YulTypedName","src":"20912:9:125","type":""},{"name":"value0","nativeSrc":"20923:6:125","nodeType":"YulTypedName","src":"20923:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20934:4:125","nodeType":"YulTypedName","src":"20934:4:125","type":""}],"src":"20786:256:125"},{"body":{"nativeSrc":"21179:287:125","nodeType":"YulBlock","src":"21179:287:125","statements":[{"body":{"nativeSrc":"21225:16:125","nodeType":"YulBlock","src":"21225:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21234:1:125","nodeType":"YulLiteral","src":"21234:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"21237:1:125","nodeType":"YulLiteral","src":"21237:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21227:6:125","nodeType":"YulIdentifier","src":"21227:6:125"},"nativeSrc":"21227:12:125","nodeType":"YulFunctionCall","src":"21227:12:125"},"nativeSrc":"21227:12:125","nodeType":"YulExpressionStatement","src":"21227:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"21200:7:125","nodeType":"YulIdentifier","src":"21200:7:125"},{"name":"headStart","nativeSrc":"21209:9:125","nodeType":"YulIdentifier","src":"21209:9:125"}],"functionName":{"name":"sub","nativeSrc":"21196:3:125","nodeType":"YulIdentifier","src":"21196:3:125"},"nativeSrc":"21196:23:125","nodeType":"YulFunctionCall","src":"21196:23:125"},{"kind":"number","nativeSrc":"21221:2:125","nodeType":"YulLiteral","src":"21221:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"21192:3:125","nodeType":"YulIdentifier","src":"21192:3:125"},"nativeSrc":"21192:32:125","nodeType":"YulFunctionCall","src":"21192:32:125"},"nativeSrc":"21189:52:125","nodeType":"YulIf","src":"21189:52:125"},{"nativeSrc":"21250:29:125","nodeType":"YulVariableDeclaration","src":"21250:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"21269:9:125","nodeType":"YulIdentifier","src":"21269:9:125"}],"functionName":{"name":"mload","nativeSrc":"21263:5:125","nodeType":"YulIdentifier","src":"21263:5:125"},"nativeSrc":"21263:16:125","nodeType":"YulFunctionCall","src":"21263:16:125"},"variables":[{"name":"value","nativeSrc":"21254:5:125","nodeType":"YulTypedName","src":"21254:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"21313:5:125","nodeType":"YulIdentifier","src":"21313:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"21288:24:125","nodeType":"YulIdentifier","src":"21288:24:125"},"nativeSrc":"21288:31:125","nodeType":"YulFunctionCall","src":"21288:31:125"},"nativeSrc":"21288:31:125","nodeType":"YulExpressionStatement","src":"21288:31:125"},{"nativeSrc":"21328:15:125","nodeType":"YulAssignment","src":"21328:15:125","value":{"name":"value","nativeSrc":"21338:5:125","nodeType":"YulIdentifier","src":"21338:5:125"},"variableNames":[{"name":"value0","nativeSrc":"21328:6:125","nodeType":"YulIdentifier","src":"21328:6:125"}]},{"nativeSrc":"21352:40:125","nodeType":"YulVariableDeclaration","src":"21352:40:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21377:9:125","nodeType":"YulIdentifier","src":"21377:9:125"},{"kind":"number","nativeSrc":"21388:2:125","nodeType":"YulLiteral","src":"21388:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21373:3:125","nodeType":"YulIdentifier","src":"21373:3:125"},"nativeSrc":"21373:18:125","nodeType":"YulFunctionCall","src":"21373:18:125"}],"functionName":{"name":"mload","nativeSrc":"21367:5:125","nodeType":"YulIdentifier","src":"21367:5:125"},"nativeSrc":"21367:25:125","nodeType":"YulFunctionCall","src":"21367:25:125"},"variables":[{"name":"value_1","nativeSrc":"21356:7:125","nodeType":"YulTypedName","src":"21356:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"21426:7:125","nodeType":"YulIdentifier","src":"21426:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"21401:24:125","nodeType":"YulIdentifier","src":"21401:24:125"},"nativeSrc":"21401:33:125","nodeType":"YulFunctionCall","src":"21401:33:125"},"nativeSrc":"21401:33:125","nodeType":"YulExpressionStatement","src":"21401:33:125"},{"nativeSrc":"21443:17:125","nodeType":"YulAssignment","src":"21443:17:125","value":{"name":"value_1","nativeSrc":"21453:7:125","nodeType":"YulIdentifier","src":"21453:7:125"},"variableNames":[{"name":"value1","nativeSrc":"21443:6:125","nodeType":"YulIdentifier","src":"21443:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$14336t_contract$_IEToken_$14336_fromMemory","nativeSrc":"21047:419:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21137:9:125","nodeType":"YulTypedName","src":"21137:9:125","type":""},{"name":"dataEnd","nativeSrc":"21148:7:125","nodeType":"YulTypedName","src":"21148:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"21160:6:125","nodeType":"YulTypedName","src":"21160:6:125","type":""},{"name":"value1","nativeSrc":"21168:6:125","nodeType":"YulTypedName","src":"21168:6:125","type":""}],"src":"21047:419:125"},{"body":{"nativeSrc":"21552:170:125","nodeType":"YulBlock","src":"21552:170:125","statements":[{"body":{"nativeSrc":"21598:16:125","nodeType":"YulBlock","src":"21598:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21607:1:125","nodeType":"YulLiteral","src":"21607:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"21610:1:125","nodeType":"YulLiteral","src":"21610:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21600:6:125","nodeType":"YulIdentifier","src":"21600:6:125"},"nativeSrc":"21600:12:125","nodeType":"YulFunctionCall","src":"21600:12:125"},"nativeSrc":"21600:12:125","nodeType":"YulExpressionStatement","src":"21600:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"21573:7:125","nodeType":"YulIdentifier","src":"21573:7:125"},{"name":"headStart","nativeSrc":"21582:9:125","nodeType":"YulIdentifier","src":"21582:9:125"}],"functionName":{"name":"sub","nativeSrc":"21569:3:125","nodeType":"YulIdentifier","src":"21569:3:125"},"nativeSrc":"21569:23:125","nodeType":"YulFunctionCall","src":"21569:23:125"},{"kind":"number","nativeSrc":"21594:2:125","nodeType":"YulLiteral","src":"21594:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"21565:3:125","nodeType":"YulIdentifier","src":"21565:3:125"},"nativeSrc":"21565:32:125","nodeType":"YulFunctionCall","src":"21565:32:125"},"nativeSrc":"21562:52:125","nodeType":"YulIf","src":"21562:52:125"},{"nativeSrc":"21623:29:125","nodeType":"YulVariableDeclaration","src":"21623:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"21642:9:125","nodeType":"YulIdentifier","src":"21642:9:125"}],"functionName":{"name":"mload","nativeSrc":"21636:5:125","nodeType":"YulIdentifier","src":"21636:5:125"},"nativeSrc":"21636:16:125","nodeType":"YulFunctionCall","src":"21636:16:125"},"variables":[{"name":"value","nativeSrc":"21627:5:125","nodeType":"YulTypedName","src":"21627:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"21686:5:125","nodeType":"YulIdentifier","src":"21686:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"21661:24:125","nodeType":"YulIdentifier","src":"21661:24:125"},"nativeSrc":"21661:31:125","nodeType":"YulFunctionCall","src":"21661:31:125"},"nativeSrc":"21661:31:125","nodeType":"YulExpressionStatement","src":"21661:31:125"},{"nativeSrc":"21701:15:125","nodeType":"YulAssignment","src":"21701:15:125","value":{"name":"value","nativeSrc":"21711:5:125","nodeType":"YulIdentifier","src":"21711:5:125"},"variableNames":[{"name":"value0","nativeSrc":"21701:6:125","nodeType":"YulIdentifier","src":"21701:6:125"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"21471:251:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21518:9:125","nodeType":"YulTypedName","src":"21518:9:125","type":""},{"name":"dataEnd","nativeSrc":"21529:7:125","nodeType":"YulTypedName","src":"21529:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"21541:6:125","nodeType":"YulTypedName","src":"21541:6:125","type":""}],"src":"21471:251:125"},{"body":{"nativeSrc":"21884:214:125","nodeType":"YulBlock","src":"21884:214:125","statements":[{"nativeSrc":"21894:26:125","nodeType":"YulAssignment","src":"21894:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"21906:9:125","nodeType":"YulIdentifier","src":"21906:9:125"},{"kind":"number","nativeSrc":"21917:2:125","nodeType":"YulLiteral","src":"21917:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"21902:3:125","nodeType":"YulIdentifier","src":"21902:3:125"},"nativeSrc":"21902:18:125","nodeType":"YulFunctionCall","src":"21902:18:125"},"variableNames":[{"name":"tail","nativeSrc":"21894:4:125","nodeType":"YulIdentifier","src":"21894:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"21936:9:125","nodeType":"YulIdentifier","src":"21936:9:125"},{"arguments":[{"name":"value0","nativeSrc":"21951:6:125","nodeType":"YulIdentifier","src":"21951:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21967:3:125","nodeType":"YulLiteral","src":"21967:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"21972:1:125","nodeType":"YulLiteral","src":"21972:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"21963:3:125","nodeType":"YulIdentifier","src":"21963:3:125"},"nativeSrc":"21963:11:125","nodeType":"YulFunctionCall","src":"21963:11:125"},{"kind":"number","nativeSrc":"21976:1:125","nodeType":"YulLiteral","src":"21976:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"21959:3:125","nodeType":"YulIdentifier","src":"21959:3:125"},"nativeSrc":"21959:19:125","nodeType":"YulFunctionCall","src":"21959:19:125"}],"functionName":{"name":"and","nativeSrc":"21947:3:125","nodeType":"YulIdentifier","src":"21947:3:125"},"nativeSrc":"21947:32:125","nodeType":"YulFunctionCall","src":"21947:32:125"}],"functionName":{"name":"mstore","nativeSrc":"21929:6:125","nodeType":"YulIdentifier","src":"21929:6:125"},"nativeSrc":"21929:51:125","nodeType":"YulFunctionCall","src":"21929:51:125"},"nativeSrc":"21929:51:125","nodeType":"YulExpressionStatement","src":"21929:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22000:9:125","nodeType":"YulIdentifier","src":"22000:9:125"},{"kind":"number","nativeSrc":"22011:2:125","nodeType":"YulLiteral","src":"22011:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21996:3:125","nodeType":"YulIdentifier","src":"21996:3:125"},"nativeSrc":"21996:18:125","nodeType":"YulFunctionCall","src":"21996:18:125"},{"name":"value1","nativeSrc":"22016:6:125","nodeType":"YulIdentifier","src":"22016:6:125"}],"functionName":{"name":"mstore","nativeSrc":"21989:6:125","nodeType":"YulIdentifier","src":"21989:6:125"},"nativeSrc":"21989:34:125","nodeType":"YulFunctionCall","src":"21989:34:125"},"nativeSrc":"21989:34:125","nodeType":"YulExpressionStatement","src":"21989:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22043:9:125","nodeType":"YulIdentifier","src":"22043:9:125"},{"kind":"number","nativeSrc":"22054:2:125","nodeType":"YulLiteral","src":"22054:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22039:3:125","nodeType":"YulIdentifier","src":"22039:3:125"},"nativeSrc":"22039:18:125","nodeType":"YulFunctionCall","src":"22039:18:125"},{"arguments":[{"name":"value2","nativeSrc":"22063:6:125","nodeType":"YulIdentifier","src":"22063:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22079:3:125","nodeType":"YulLiteral","src":"22079:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"22084:1:125","nodeType":"YulLiteral","src":"22084:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22075:3:125","nodeType":"YulIdentifier","src":"22075:3:125"},"nativeSrc":"22075:11:125","nodeType":"YulFunctionCall","src":"22075:11:125"},{"kind":"number","nativeSrc":"22088:1:125","nodeType":"YulLiteral","src":"22088:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22071:3:125","nodeType":"YulIdentifier","src":"22071:3:125"},"nativeSrc":"22071:19:125","nodeType":"YulFunctionCall","src":"22071:19:125"}],"functionName":{"name":"and","nativeSrc":"22059:3:125","nodeType":"YulIdentifier","src":"22059:3:125"},"nativeSrc":"22059:32:125","nodeType":"YulFunctionCall","src":"22059:32:125"}],"functionName":{"name":"mstore","nativeSrc":"22032:6:125","nodeType":"YulIdentifier","src":"22032:6:125"},"nativeSrc":"22032:60:125","nodeType":"YulFunctionCall","src":"22032:60:125"},"nativeSrc":"22032:60:125","nodeType":"YulExpressionStatement","src":"22032:60:125"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_address__to_t_address_t_uint256_t_address__fromStack_reversed","nativeSrc":"21727:371:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21837:9:125","nodeType":"YulTypedName","src":"21837:9:125","type":""},{"name":"value2","nativeSrc":"21848:6:125","nodeType":"YulTypedName","src":"21848:6:125","type":""},{"name":"value1","nativeSrc":"21856:6:125","nodeType":"YulTypedName","src":"21856:6:125","type":""},{"name":"value0","nativeSrc":"21864:6:125","nodeType":"YulTypedName","src":"21864:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21875:4:125","nodeType":"YulTypedName","src":"21875:4:125","type":""}],"src":"21727:371:125"},{"body":{"nativeSrc":"22159:65:125","nodeType":"YulBlock","src":"22159:65:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22176:1:125","nodeType":"YulLiteral","src":"22176:1:125","type":"","value":"0"},{"name":"ptr","nativeSrc":"22179:3:125","nodeType":"YulIdentifier","src":"22179:3:125"}],"functionName":{"name":"mstore","nativeSrc":"22169:6:125","nodeType":"YulIdentifier","src":"22169:6:125"},"nativeSrc":"22169:14:125","nodeType":"YulFunctionCall","src":"22169:14:125"},"nativeSrc":"22169:14:125","nodeType":"YulExpressionStatement","src":"22169:14:125"},{"nativeSrc":"22192:26:125","nodeType":"YulAssignment","src":"22192:26:125","value":{"arguments":[{"kind":"number","nativeSrc":"22210:1:125","nodeType":"YulLiteral","src":"22210:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"22213:4:125","nodeType":"YulLiteral","src":"22213:4:125","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"22200:9:125","nodeType":"YulIdentifier","src":"22200:9:125"},"nativeSrc":"22200:18:125","nodeType":"YulFunctionCall","src":"22200:18:125"},"variableNames":[{"name":"data","nativeSrc":"22192:4:125","nodeType":"YulIdentifier","src":"22192:4:125"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"22103:121:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"22142:3:125","nodeType":"YulTypedName","src":"22142:3:125","type":""}],"returnVariables":[{"name":"data","nativeSrc":"22150:4:125","nodeType":"YulTypedName","src":"22150:4:125","type":""}],"src":"22103:121:125"},{"body":{"nativeSrc":"22296:200:125","nodeType":"YulBlock","src":"22296:200:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"22313:3:125","nodeType":"YulIdentifier","src":"22313:3:125"},{"name":"length","nativeSrc":"22318:6:125","nodeType":"YulIdentifier","src":"22318:6:125"}],"functionName":{"name":"mstore","nativeSrc":"22306:6:125","nodeType":"YulIdentifier","src":"22306:6:125"},"nativeSrc":"22306:19:125","nodeType":"YulFunctionCall","src":"22306:19:125"},"nativeSrc":"22306:19:125","nodeType":"YulExpressionStatement","src":"22306:19:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"22351:3:125","nodeType":"YulIdentifier","src":"22351:3:125"},{"kind":"number","nativeSrc":"22356:4:125","nodeType":"YulLiteral","src":"22356:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"22347:3:125","nodeType":"YulIdentifier","src":"22347:3:125"},"nativeSrc":"22347:14:125","nodeType":"YulFunctionCall","src":"22347:14:125"},{"name":"start","nativeSrc":"22363:5:125","nodeType":"YulIdentifier","src":"22363:5:125"},{"name":"length","nativeSrc":"22370:6:125","nodeType":"YulIdentifier","src":"22370:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"22334:12:125","nodeType":"YulIdentifier","src":"22334:12:125"},"nativeSrc":"22334:43:125","nodeType":"YulFunctionCall","src":"22334:43:125"},"nativeSrc":"22334:43:125","nodeType":"YulExpressionStatement","src":"22334:43:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"22401:3:125","nodeType":"YulIdentifier","src":"22401:3:125"},{"name":"length","nativeSrc":"22406:6:125","nodeType":"YulIdentifier","src":"22406:6:125"}],"functionName":{"name":"add","nativeSrc":"22397:3:125","nodeType":"YulIdentifier","src":"22397:3:125"},"nativeSrc":"22397:16:125","nodeType":"YulFunctionCall","src":"22397:16:125"},{"kind":"number","nativeSrc":"22415:4:125","nodeType":"YulLiteral","src":"22415:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"22393:3:125","nodeType":"YulIdentifier","src":"22393:3:125"},"nativeSrc":"22393:27:125","nodeType":"YulFunctionCall","src":"22393:27:125"},{"kind":"number","nativeSrc":"22422:1:125","nodeType":"YulLiteral","src":"22422:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"22386:6:125","nodeType":"YulIdentifier","src":"22386:6:125"},"nativeSrc":"22386:38:125","nodeType":"YulFunctionCall","src":"22386:38:125"},"nativeSrc":"22386:38:125","nodeType":"YulExpressionStatement","src":"22386:38:125"},{"nativeSrc":"22433:57:125","nodeType":"YulAssignment","src":"22433:57:125","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"22448:3:125","nodeType":"YulIdentifier","src":"22448:3:125"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"22461:6:125","nodeType":"YulIdentifier","src":"22461:6:125"},{"kind":"number","nativeSrc":"22469:2:125","nodeType":"YulLiteral","src":"22469:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"22457:3:125","nodeType":"YulIdentifier","src":"22457:3:125"},"nativeSrc":"22457:15:125","nodeType":"YulFunctionCall","src":"22457:15:125"},{"arguments":[{"kind":"number","nativeSrc":"22478:2:125","nodeType":"YulLiteral","src":"22478:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"22474:3:125","nodeType":"YulIdentifier","src":"22474:3:125"},"nativeSrc":"22474:7:125","nodeType":"YulFunctionCall","src":"22474:7:125"}],"functionName":{"name":"and","nativeSrc":"22453:3:125","nodeType":"YulIdentifier","src":"22453:3:125"},"nativeSrc":"22453:29:125","nodeType":"YulFunctionCall","src":"22453:29:125"}],"functionName":{"name":"add","nativeSrc":"22444:3:125","nodeType":"YulIdentifier","src":"22444:3:125"},"nativeSrc":"22444:39:125","nodeType":"YulFunctionCall","src":"22444:39:125"},{"kind":"number","nativeSrc":"22485:4:125","nodeType":"YulLiteral","src":"22485:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"22440:3:125","nodeType":"YulIdentifier","src":"22440:3:125"},"nativeSrc":"22440:50:125","nodeType":"YulFunctionCall","src":"22440:50:125"},"variableNames":[{"name":"end","nativeSrc":"22433:3:125","nodeType":"YulIdentifier","src":"22433:3:125"}]}]},"name":"abi_encode_string_calldata","nativeSrc":"22229:267:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nativeSrc":"22265:5:125","nodeType":"YulTypedName","src":"22265:5:125","type":""},{"name":"length","nativeSrc":"22272:6:125","nodeType":"YulTypedName","src":"22272:6:125","type":""},{"name":"pos","nativeSrc":"22280:3:125","nodeType":"YulTypedName","src":"22280:3:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"22288:3:125","nodeType":"YulTypedName","src":"22288:3:125","type":""}],"src":"22229:267:125"},{"body":{"nativeSrc":"22677:887:125","nodeType":"YulBlock","src":"22677:887:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22694:9:125","nodeType":"YulIdentifier","src":"22694:9:125"},{"kind":"number","nativeSrc":"22705:2:125","nodeType":"YulLiteral","src":"22705:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"22687:6:125","nodeType":"YulIdentifier","src":"22687:6:125"},"nativeSrc":"22687:21:125","nodeType":"YulFunctionCall","src":"22687:21:125"},"nativeSrc":"22687:21:125","nodeType":"YulExpressionStatement","src":"22687:21:125"},{"nativeSrc":"22717:12:125","nodeType":"YulVariableDeclaration","src":"22717:12:125","value":{"kind":"number","nativeSrc":"22728:1:125","nodeType":"YulLiteral","src":"22728:1:125","type":"","value":"0"},"variables":[{"name":"ret","nativeSrc":"22721:3:125","nodeType":"YulTypedName","src":"22721:3:125","type":""}]},{"nativeSrc":"22738:30:125","nodeType":"YulVariableDeclaration","src":"22738:30:125","value":{"arguments":[{"name":"value0","nativeSrc":"22761:6:125","nodeType":"YulIdentifier","src":"22761:6:125"}],"functionName":{"name":"sload","nativeSrc":"22755:5:125","nodeType":"YulIdentifier","src":"22755:5:125"},"nativeSrc":"22755:13:125","nodeType":"YulFunctionCall","src":"22755:13:125"},"variables":[{"name":"slotValue","nativeSrc":"22742:9:125","nodeType":"YulTypedName","src":"22742:9:125","type":""}]},{"nativeSrc":"22777:50:125","nodeType":"YulVariableDeclaration","src":"22777:50:125","value":{"arguments":[{"name":"slotValue","nativeSrc":"22817:9:125","nodeType":"YulIdentifier","src":"22817:9:125"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"22791:25:125","nodeType":"YulIdentifier","src":"22791:25:125"},"nativeSrc":"22791:36:125","nodeType":"YulFunctionCall","src":"22791:36:125"},"variables":[{"name":"length","nativeSrc":"22781:6:125","nodeType":"YulTypedName","src":"22781:6:125","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22847:9:125","nodeType":"YulIdentifier","src":"22847:9:125"},{"kind":"number","nativeSrc":"22858:2:125","nodeType":"YulLiteral","src":"22858:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22843:3:125","nodeType":"YulIdentifier","src":"22843:3:125"},"nativeSrc":"22843:18:125","nodeType":"YulFunctionCall","src":"22843:18:125"},{"name":"length","nativeSrc":"22863:6:125","nodeType":"YulIdentifier","src":"22863:6:125"}],"functionName":{"name":"mstore","nativeSrc":"22836:6:125","nodeType":"YulIdentifier","src":"22836:6:125"},"nativeSrc":"22836:34:125","nodeType":"YulFunctionCall","src":"22836:34:125"},"nativeSrc":"22836:34:125","nodeType":"YulExpressionStatement","src":"22836:34:125"},{"cases":[{"body":{"nativeSrc":"22919:151:125","nodeType":"YulBlock","src":"22919:151:125","statements":[{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22944:9:125","nodeType":"YulIdentifier","src":"22944:9:125"},{"kind":"number","nativeSrc":"22955:2:125","nodeType":"YulLiteral","src":"22955:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"22940:3:125","nodeType":"YulIdentifier","src":"22940:3:125"},"nativeSrc":"22940:18:125","nodeType":"YulFunctionCall","src":"22940:18:125"},{"arguments":[{"name":"slotValue","nativeSrc":"22964:9:125","nodeType":"YulIdentifier","src":"22964:9:125"},{"arguments":[{"kind":"number","nativeSrc":"22979:3:125","nodeType":"YulLiteral","src":"22979:3:125","type":"","value":"255"}],"functionName":{"name":"not","nativeSrc":"22975:3:125","nodeType":"YulIdentifier","src":"22975:3:125"},"nativeSrc":"22975:8:125","nodeType":"YulFunctionCall","src":"22975:8:125"}],"functionName":{"name":"and","nativeSrc":"22960:3:125","nodeType":"YulIdentifier","src":"22960:3:125"},"nativeSrc":"22960:24:125","nodeType":"YulFunctionCall","src":"22960:24:125"}],"functionName":{"name":"mstore","nativeSrc":"22933:6:125","nodeType":"YulIdentifier","src":"22933:6:125"},"nativeSrc":"22933:52:125","nodeType":"YulFunctionCall","src":"22933:52:125"},"nativeSrc":"22933:52:125","nodeType":"YulExpressionStatement","src":"22933:52:125"},{"nativeSrc":"22998:62:125","nodeType":"YulAssignment","src":"22998:62:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23013:9:125","nodeType":"YulIdentifier","src":"23013:9:125"},{"arguments":[{"kind":"number","nativeSrc":"23028:1:125","nodeType":"YulLiteral","src":"23028:1:125","type":"","value":"5"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"23045:6:125","nodeType":"YulIdentifier","src":"23045:6:125"}],"functionName":{"name":"iszero","nativeSrc":"23038:6:125","nodeType":"YulIdentifier","src":"23038:6:125"},"nativeSrc":"23038:14:125","nodeType":"YulFunctionCall","src":"23038:14:125"}],"functionName":{"name":"iszero","nativeSrc":"23031:6:125","nodeType":"YulIdentifier","src":"23031:6:125"},"nativeSrc":"23031:22:125","nodeType":"YulFunctionCall","src":"23031:22:125"}],"functionName":{"name":"shl","nativeSrc":"23024:3:125","nodeType":"YulIdentifier","src":"23024:3:125"},"nativeSrc":"23024:30:125","nodeType":"YulFunctionCall","src":"23024:30:125"}],"functionName":{"name":"add","nativeSrc":"23009:3:125","nodeType":"YulIdentifier","src":"23009:3:125"},"nativeSrc":"23009:46:125","nodeType":"YulFunctionCall","src":"23009:46:125"},{"kind":"number","nativeSrc":"23057:2:125","nodeType":"YulLiteral","src":"23057:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23005:3:125","nodeType":"YulIdentifier","src":"23005:3:125"},"nativeSrc":"23005:55:125","nodeType":"YulFunctionCall","src":"23005:55:125"},"variableNames":[{"name":"ret","nativeSrc":"22998:3:125","nodeType":"YulIdentifier","src":"22998:3:125"}]}]},"nativeSrc":"22912:158:125","nodeType":"YulCase","src":"22912:158:125","value":{"kind":"number","nativeSrc":"22917:1:125","nodeType":"YulLiteral","src":"22917:1:125","type":"","value":"0"}},{"body":{"nativeSrc":"23086:350:125","nodeType":"YulBlock","src":"23086:350:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23107:1:125","nodeType":"YulLiteral","src":"23107:1:125","type":"","value":"0"},{"name":"value0","nativeSrc":"23110:6:125","nodeType":"YulIdentifier","src":"23110:6:125"}],"functionName":{"name":"mstore","nativeSrc":"23100:6:125","nodeType":"YulIdentifier","src":"23100:6:125"},"nativeSrc":"23100:17:125","nodeType":"YulFunctionCall","src":"23100:17:125"},"nativeSrc":"23100:17:125","nodeType":"YulExpressionStatement","src":"23100:17:125"},{"nativeSrc":"23130:33:125","nodeType":"YulVariableDeclaration","src":"23130:33:125","value":{"arguments":[{"kind":"number","nativeSrc":"23155:1:125","nodeType":"YulLiteral","src":"23155:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"23158:4:125","nodeType":"YulLiteral","src":"23158:4:125","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"23145:9:125","nodeType":"YulIdentifier","src":"23145:9:125"},"nativeSrc":"23145:18:125","nodeType":"YulFunctionCall","src":"23145:18:125"},"variables":[{"name":"dataPos","nativeSrc":"23134:7:125","nodeType":"YulTypedName","src":"23134:7:125","type":""}]},{"nativeSrc":"23176:10:125","nodeType":"YulVariableDeclaration","src":"23176:10:125","value":{"kind":"number","nativeSrc":"23185:1:125","nodeType":"YulLiteral","src":"23185:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"23180:1:125","nodeType":"YulTypedName","src":"23180:1:125","type":""}]},{"body":{"nativeSrc":"23255:125:125","nodeType":"YulBlock","src":"23255:125:125","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23288:9:125","nodeType":"YulIdentifier","src":"23288:9:125"},{"name":"i","nativeSrc":"23299:1:125","nodeType":"YulIdentifier","src":"23299:1:125"}],"functionName":{"name":"add","nativeSrc":"23284:3:125","nodeType":"YulIdentifier","src":"23284:3:125"},"nativeSrc":"23284:17:125","nodeType":"YulFunctionCall","src":"23284:17:125"},{"kind":"number","nativeSrc":"23303:2:125","nodeType":"YulLiteral","src":"23303:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23280:3:125","nodeType":"YulIdentifier","src":"23280:3:125"},"nativeSrc":"23280:26:125","nodeType":"YulFunctionCall","src":"23280:26:125"},{"arguments":[{"name":"dataPos","nativeSrc":"23314:7:125","nodeType":"YulIdentifier","src":"23314:7:125"}],"functionName":{"name":"sload","nativeSrc":"23308:5:125","nodeType":"YulIdentifier","src":"23308:5:125"},"nativeSrc":"23308:14:125","nodeType":"YulFunctionCall","src":"23308:14:125"}],"functionName":{"name":"mstore","nativeSrc":"23273:6:125","nodeType":"YulIdentifier","src":"23273:6:125"},"nativeSrc":"23273:50:125","nodeType":"YulFunctionCall","src":"23273:50:125"},"nativeSrc":"23273:50:125","nodeType":"YulExpressionStatement","src":"23273:50:125"},{"nativeSrc":"23340:26:125","nodeType":"YulAssignment","src":"23340:26:125","value":{"arguments":[{"name":"dataPos","nativeSrc":"23355:7:125","nodeType":"YulIdentifier","src":"23355:7:125"},{"kind":"number","nativeSrc":"23364:1:125","nodeType":"YulLiteral","src":"23364:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"23351:3:125","nodeType":"YulIdentifier","src":"23351:3:125"},"nativeSrc":"23351:15:125","nodeType":"YulFunctionCall","src":"23351:15:125"},"variableNames":[{"name":"dataPos","nativeSrc":"23340:7:125","nodeType":"YulIdentifier","src":"23340:7:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"23210:1:125","nodeType":"YulIdentifier","src":"23210:1:125"},{"name":"length","nativeSrc":"23213:6:125","nodeType":"YulIdentifier","src":"23213:6:125"}],"functionName":{"name":"lt","nativeSrc":"23207:2:125","nodeType":"YulIdentifier","src":"23207:2:125"},"nativeSrc":"23207:13:125","nodeType":"YulFunctionCall","src":"23207:13:125"},"nativeSrc":"23199:181:125","nodeType":"YulForLoop","post":{"nativeSrc":"23221:21:125","nodeType":"YulBlock","src":"23221:21:125","statements":[{"nativeSrc":"23223:17:125","nodeType":"YulAssignment","src":"23223:17:125","value":{"arguments":[{"name":"i","nativeSrc":"23232:1:125","nodeType":"YulIdentifier","src":"23232:1:125"},{"kind":"number","nativeSrc":"23235:4:125","nodeType":"YulLiteral","src":"23235:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"23228:3:125","nodeType":"YulIdentifier","src":"23228:3:125"},"nativeSrc":"23228:12:125","nodeType":"YulFunctionCall","src":"23228:12:125"},"variableNames":[{"name":"i","nativeSrc":"23223:1:125","nodeType":"YulIdentifier","src":"23223:1:125"}]}]},"pre":{"nativeSrc":"23203:3:125","nodeType":"YulBlock","src":"23203:3:125","statements":[]},"src":"23199:181:125"},{"nativeSrc":"23393:33:125","nodeType":"YulAssignment","src":"23393:33:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23408:9:125","nodeType":"YulIdentifier","src":"23408:9:125"},{"name":"i","nativeSrc":"23419:1:125","nodeType":"YulIdentifier","src":"23419:1:125"}],"functionName":{"name":"add","nativeSrc":"23404:3:125","nodeType":"YulIdentifier","src":"23404:3:125"},"nativeSrc":"23404:17:125","nodeType":"YulFunctionCall","src":"23404:17:125"},{"kind":"number","nativeSrc":"23423:2:125","nodeType":"YulLiteral","src":"23423:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23400:3:125","nodeType":"YulIdentifier","src":"23400:3:125"},"nativeSrc":"23400:26:125","nodeType":"YulFunctionCall","src":"23400:26:125"},"variableNames":[{"name":"ret","nativeSrc":"23393:3:125","nodeType":"YulIdentifier","src":"23393:3:125"}]}]},"nativeSrc":"23079:357:125","nodeType":"YulCase","src":"23079:357:125","value":{"kind":"number","nativeSrc":"23084:1:125","nodeType":"YulLiteral","src":"23084:1:125","type":"","value":"1"}}],"expression":{"arguments":[{"name":"slotValue","nativeSrc":"22890:9:125","nodeType":"YulIdentifier","src":"22890:9:125"},{"kind":"number","nativeSrc":"22901:1:125","nodeType":"YulLiteral","src":"22901:1:125","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"22886:3:125","nodeType":"YulIdentifier","src":"22886:3:125"},"nativeSrc":"22886:17:125","nodeType":"YulFunctionCall","src":"22886:17:125"},"nativeSrc":"22879:557:125","nodeType":"YulSwitch","src":"22879:557:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23456:9:125","nodeType":"YulIdentifier","src":"23456:9:125"},{"kind":"number","nativeSrc":"23467:4:125","nodeType":"YulLiteral","src":"23467:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"23452:3:125","nodeType":"YulIdentifier","src":"23452:3:125"},"nativeSrc":"23452:20:125","nodeType":"YulFunctionCall","src":"23452:20:125"},{"arguments":[{"name":"ret","nativeSrc":"23478:3:125","nodeType":"YulIdentifier","src":"23478:3:125"},{"name":"headStart","nativeSrc":"23483:9:125","nodeType":"YulIdentifier","src":"23483:9:125"}],"functionName":{"name":"sub","nativeSrc":"23474:3:125","nodeType":"YulIdentifier","src":"23474:3:125"},"nativeSrc":"23474:19:125","nodeType":"YulFunctionCall","src":"23474:19:125"}],"functionName":{"name":"mstore","nativeSrc":"23445:6:125","nodeType":"YulIdentifier","src":"23445:6:125"},"nativeSrc":"23445:49:125","nodeType":"YulFunctionCall","src":"23445:49:125"},"nativeSrc":"23445:49:125","nodeType":"YulExpressionStatement","src":"23445:49:125"},{"nativeSrc":"23503:55:125","nodeType":"YulAssignment","src":"23503:55:125","value":{"arguments":[{"name":"value1","nativeSrc":"23538:6:125","nodeType":"YulIdentifier","src":"23538:6:125"},{"name":"value2","nativeSrc":"23546:6:125","nodeType":"YulIdentifier","src":"23546:6:125"},{"name":"ret","nativeSrc":"23554:3:125","nodeType":"YulIdentifier","src":"23554:3:125"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"23511:26:125","nodeType":"YulIdentifier","src":"23511:26:125"},"nativeSrc":"23511:47:125","nodeType":"YulFunctionCall","src":"23511:47:125"},"variableNames":[{"name":"tail","nativeSrc":"23503:4:125","nodeType":"YulIdentifier","src":"23503:4:125"}]}]},"name":"abi_encode_tuple_t_string_storage_t_string_calldata_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed","nativeSrc":"22501:1063:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22630:9:125","nodeType":"YulTypedName","src":"22630:9:125","type":""},{"name":"value2","nativeSrc":"22641:6:125","nodeType":"YulTypedName","src":"22641:6:125","type":""},{"name":"value1","nativeSrc":"22649:6:125","nodeType":"YulTypedName","src":"22649:6:125","type":""},{"name":"value0","nativeSrc":"22657:6:125","nodeType":"YulTypedName","src":"22657:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22668:4:125","nodeType":"YulTypedName","src":"22668:4:125","type":""}],"src":"22501:1063:125"},{"body":{"nativeSrc":"23650:437:125","nodeType":"YulBlock","src":"23650:437:125","statements":[{"body":{"nativeSrc":"23683:398:125","nodeType":"YulBlock","src":"23683:398:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23704:1:125","nodeType":"YulLiteral","src":"23704:1:125","type":"","value":"0"},{"name":"array","nativeSrc":"23707:5:125","nodeType":"YulIdentifier","src":"23707:5:125"}],"functionName":{"name":"mstore","nativeSrc":"23697:6:125","nodeType":"YulIdentifier","src":"23697:6:125"},"nativeSrc":"23697:16:125","nodeType":"YulFunctionCall","src":"23697:16:125"},"nativeSrc":"23697:16:125","nodeType":"YulExpressionStatement","src":"23697:16:125"},{"nativeSrc":"23726:30:125","nodeType":"YulVariableDeclaration","src":"23726:30:125","value":{"arguments":[{"kind":"number","nativeSrc":"23748:1:125","nodeType":"YulLiteral","src":"23748:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"23751:4:125","nodeType":"YulLiteral","src":"23751:4:125","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"23738:9:125","nodeType":"YulIdentifier","src":"23738:9:125"},"nativeSrc":"23738:18:125","nodeType":"YulFunctionCall","src":"23738:18:125"},"variables":[{"name":"data","nativeSrc":"23730:4:125","nodeType":"YulTypedName","src":"23730:4:125","type":""}]},{"nativeSrc":"23769:57:125","nodeType":"YulVariableDeclaration","src":"23769:57:125","value":{"arguments":[{"name":"data","nativeSrc":"23792:4:125","nodeType":"YulIdentifier","src":"23792:4:125"},{"arguments":[{"kind":"number","nativeSrc":"23802:1:125","nodeType":"YulLiteral","src":"23802:1:125","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"23809:10:125","nodeType":"YulIdentifier","src":"23809:10:125"},{"kind":"number","nativeSrc":"23821:2:125","nodeType":"YulLiteral","src":"23821:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"23805:3:125","nodeType":"YulIdentifier","src":"23805:3:125"},"nativeSrc":"23805:19:125","nodeType":"YulFunctionCall","src":"23805:19:125"}],"functionName":{"name":"shr","nativeSrc":"23798:3:125","nodeType":"YulIdentifier","src":"23798:3:125"},"nativeSrc":"23798:27:125","nodeType":"YulFunctionCall","src":"23798:27:125"}],"functionName":{"name":"add","nativeSrc":"23788:3:125","nodeType":"YulIdentifier","src":"23788:3:125"},"nativeSrc":"23788:38:125","nodeType":"YulFunctionCall","src":"23788:38:125"},"variables":[{"name":"deleteStart","nativeSrc":"23773:11:125","nodeType":"YulTypedName","src":"23773:11:125","type":""}]},{"body":{"nativeSrc":"23863:23:125","nodeType":"YulBlock","src":"23863:23:125","statements":[{"nativeSrc":"23865:19:125","nodeType":"YulAssignment","src":"23865:19:125","value":{"name":"data","nativeSrc":"23880:4:125","nodeType":"YulIdentifier","src":"23880:4:125"},"variableNames":[{"name":"deleteStart","nativeSrc":"23865:11:125","nodeType":"YulIdentifier","src":"23865:11:125"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"23845:10:125","nodeType":"YulIdentifier","src":"23845:10:125"},{"kind":"number","nativeSrc":"23857:4:125","nodeType":"YulLiteral","src":"23857:4:125","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"23842:2:125","nodeType":"YulIdentifier","src":"23842:2:125"},"nativeSrc":"23842:20:125","nodeType":"YulFunctionCall","src":"23842:20:125"},"nativeSrc":"23839:47:125","nodeType":"YulIf","src":"23839:47:125"},{"nativeSrc":"23899:41:125","nodeType":"YulVariableDeclaration","src":"23899:41:125","value":{"arguments":[{"name":"data","nativeSrc":"23913:4:125","nodeType":"YulIdentifier","src":"23913:4:125"},{"arguments":[{"kind":"number","nativeSrc":"23923:1:125","nodeType":"YulLiteral","src":"23923:1:125","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"23930:3:125","nodeType":"YulIdentifier","src":"23930:3:125"},{"kind":"number","nativeSrc":"23935:2:125","nodeType":"YulLiteral","src":"23935:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"23926:3:125","nodeType":"YulIdentifier","src":"23926:3:125"},"nativeSrc":"23926:12:125","nodeType":"YulFunctionCall","src":"23926:12:125"}],"functionName":{"name":"shr","nativeSrc":"23919:3:125","nodeType":"YulIdentifier","src":"23919:3:125"},"nativeSrc":"23919:20:125","nodeType":"YulFunctionCall","src":"23919:20:125"}],"functionName":{"name":"add","nativeSrc":"23909:3:125","nodeType":"YulIdentifier","src":"23909:3:125"},"nativeSrc":"23909:31:125","nodeType":"YulFunctionCall","src":"23909:31:125"},"variables":[{"name":"_1","nativeSrc":"23903:2:125","nodeType":"YulTypedName","src":"23903:2:125","type":""}]},{"nativeSrc":"23953:24:125","nodeType":"YulVariableDeclaration","src":"23953:24:125","value":{"name":"deleteStart","nativeSrc":"23966:11:125","nodeType":"YulIdentifier","src":"23966:11:125"},"variables":[{"name":"start","nativeSrc":"23957:5:125","nodeType":"YulTypedName","src":"23957:5:125","type":""}]},{"body":{"nativeSrc":"24051:20:125","nodeType":"YulBlock","src":"24051:20:125","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"24060:5:125","nodeType":"YulIdentifier","src":"24060:5:125"},{"kind":"number","nativeSrc":"24067:1:125","nodeType":"YulLiteral","src":"24067:1:125","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"24053:6:125","nodeType":"YulIdentifier","src":"24053:6:125"},"nativeSrc":"24053:16:125","nodeType":"YulFunctionCall","src":"24053:16:125"},"nativeSrc":"24053:16:125","nodeType":"YulExpressionStatement","src":"24053:16:125"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"24001:5:125","nodeType":"YulIdentifier","src":"24001:5:125"},{"name":"_1","nativeSrc":"24008:2:125","nodeType":"YulIdentifier","src":"24008:2:125"}],"functionName":{"name":"lt","nativeSrc":"23998:2:125","nodeType":"YulIdentifier","src":"23998:2:125"},"nativeSrc":"23998:13:125","nodeType":"YulFunctionCall","src":"23998:13:125"},"nativeSrc":"23990:81:125","nodeType":"YulForLoop","post":{"nativeSrc":"24012:26:125","nodeType":"YulBlock","src":"24012:26:125","statements":[{"nativeSrc":"24014:22:125","nodeType":"YulAssignment","src":"24014:22:125","value":{"arguments":[{"name":"start","nativeSrc":"24027:5:125","nodeType":"YulIdentifier","src":"24027:5:125"},{"kind":"number","nativeSrc":"24034:1:125","nodeType":"YulLiteral","src":"24034:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"24023:3:125","nodeType":"YulIdentifier","src":"24023:3:125"},"nativeSrc":"24023:13:125","nodeType":"YulFunctionCall","src":"24023:13:125"},"variableNames":[{"name":"start","nativeSrc":"24014:5:125","nodeType":"YulIdentifier","src":"24014:5:125"}]}]},"pre":{"nativeSrc":"23994:3:125","nodeType":"YulBlock","src":"23994:3:125","statements":[]},"src":"23990:81:125"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"23666:3:125","nodeType":"YulIdentifier","src":"23666:3:125"},{"kind":"number","nativeSrc":"23671:2:125","nodeType":"YulLiteral","src":"23671:2:125","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"23663:2:125","nodeType":"YulIdentifier","src":"23663:2:125"},"nativeSrc":"23663:11:125","nodeType":"YulFunctionCall","src":"23663:11:125"},"nativeSrc":"23660:421:125","nodeType":"YulIf","src":"23660:421:125"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"23569:518:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"23622:5:125","nodeType":"YulTypedName","src":"23622:5:125","type":""},{"name":"len","nativeSrc":"23629:3:125","nodeType":"YulTypedName","src":"23629:3:125","type":""},{"name":"startIndex","nativeSrc":"23634:10:125","nodeType":"YulTypedName","src":"23634:10:125","type":""}],"src":"23569:518:125"},{"body":{"nativeSrc":"24177:81:125","nodeType":"YulBlock","src":"24177:81:125","statements":[{"nativeSrc":"24187:65:125","nodeType":"YulAssignment","src":"24187:65:125","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"24202:4:125","nodeType":"YulIdentifier","src":"24202:4:125"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"24220:1:125","nodeType":"YulLiteral","src":"24220:1:125","type":"","value":"3"},{"name":"len","nativeSrc":"24223:3:125","nodeType":"YulIdentifier","src":"24223:3:125"}],"functionName":{"name":"shl","nativeSrc":"24216:3:125","nodeType":"YulIdentifier","src":"24216:3:125"},"nativeSrc":"24216:11:125","nodeType":"YulFunctionCall","src":"24216:11:125"},{"arguments":[{"kind":"number","nativeSrc":"24233:1:125","nodeType":"YulLiteral","src":"24233:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"24229:3:125","nodeType":"YulIdentifier","src":"24229:3:125"},"nativeSrc":"24229:6:125","nodeType":"YulFunctionCall","src":"24229:6:125"}],"functionName":{"name":"shr","nativeSrc":"24212:3:125","nodeType":"YulIdentifier","src":"24212:3:125"},"nativeSrc":"24212:24:125","nodeType":"YulFunctionCall","src":"24212:24:125"}],"functionName":{"name":"not","nativeSrc":"24208:3:125","nodeType":"YulIdentifier","src":"24208:3:125"},"nativeSrc":"24208:29:125","nodeType":"YulFunctionCall","src":"24208:29:125"}],"functionName":{"name":"and","nativeSrc":"24198:3:125","nodeType":"YulIdentifier","src":"24198:3:125"},"nativeSrc":"24198:40:125","nodeType":"YulFunctionCall","src":"24198:40:125"},{"arguments":[{"kind":"number","nativeSrc":"24244:1:125","nodeType":"YulLiteral","src":"24244:1:125","type":"","value":"1"},{"name":"len","nativeSrc":"24247:3:125","nodeType":"YulIdentifier","src":"24247:3:125"}],"functionName":{"name":"shl","nativeSrc":"24240:3:125","nodeType":"YulIdentifier","src":"24240:3:125"},"nativeSrc":"24240:11:125","nodeType":"YulFunctionCall","src":"24240:11:125"}],"functionName":{"name":"or","nativeSrc":"24195:2:125","nodeType":"YulIdentifier","src":"24195:2:125"},"nativeSrc":"24195:57:125","nodeType":"YulFunctionCall","src":"24195:57:125"},"variableNames":[{"name":"used","nativeSrc":"24187:4:125","nodeType":"YulIdentifier","src":"24187:4:125"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"24092:166:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"24154:4:125","nodeType":"YulTypedName","src":"24154:4:125","type":""},{"name":"len","nativeSrc":"24160:3:125","nodeType":"YulTypedName","src":"24160:3:125","type":""}],"returnVariables":[{"name":"used","nativeSrc":"24168:4:125","nodeType":"YulTypedName","src":"24168:4:125","type":""}],"src":"24092:166:125"},{"body":{"nativeSrc":"24366:1095:125","nodeType":"YulBlock","src":"24366:1095:125","statements":[{"body":{"nativeSrc":"24407:22:125","nodeType":"YulBlock","src":"24407:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"24409:16:125","nodeType":"YulIdentifier","src":"24409:16:125"},"nativeSrc":"24409:18:125","nodeType":"YulFunctionCall","src":"24409:18:125"},"nativeSrc":"24409:18:125","nodeType":"YulExpressionStatement","src":"24409:18:125"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"24382:3:125","nodeType":"YulIdentifier","src":"24382:3:125"},{"kind":"number","nativeSrc":"24387:18:125","nodeType":"YulLiteral","src":"24387:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"24379:2:125","nodeType":"YulIdentifier","src":"24379:2:125"},"nativeSrc":"24379:27:125","nodeType":"YulFunctionCall","src":"24379:27:125"},"nativeSrc":"24376:53:125","nodeType":"YulIf","src":"24376:53:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"24482:4:125","nodeType":"YulIdentifier","src":"24482:4:125"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"24520:4:125","nodeType":"YulIdentifier","src":"24520:4:125"}],"functionName":{"name":"sload","nativeSrc":"24514:5:125","nodeType":"YulIdentifier","src":"24514:5:125"},"nativeSrc":"24514:11:125","nodeType":"YulFunctionCall","src":"24514:11:125"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"24488:25:125","nodeType":"YulIdentifier","src":"24488:25:125"},"nativeSrc":"24488:38:125","nodeType":"YulFunctionCall","src":"24488:38:125"},{"name":"len","nativeSrc":"24528:3:125","nodeType":"YulIdentifier","src":"24528:3:125"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"24438:43:125","nodeType":"YulIdentifier","src":"24438:43:125"},"nativeSrc":"24438:94:125","nodeType":"YulFunctionCall","src":"24438:94:125"},"nativeSrc":"24438:94:125","nodeType":"YulExpressionStatement","src":"24438:94:125"},{"nativeSrc":"24541:18:125","nodeType":"YulVariableDeclaration","src":"24541:18:125","value":{"kind":"number","nativeSrc":"24558:1:125","nodeType":"YulLiteral","src":"24558:1:125","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"24545:9:125","nodeType":"YulTypedName","src":"24545:9:125","type":""}]},{"cases":[{"body":{"nativeSrc":"24602:601:125","nodeType":"YulBlock","src":"24602:601:125","statements":[{"nativeSrc":"24616:32:125","nodeType":"YulVariableDeclaration","src":"24616:32:125","value":{"arguments":[{"name":"len","nativeSrc":"24635:3:125","nodeType":"YulIdentifier","src":"24635:3:125"},{"arguments":[{"kind":"number","nativeSrc":"24644:2:125","nodeType":"YulLiteral","src":"24644:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"24640:3:125","nodeType":"YulIdentifier","src":"24640:3:125"},"nativeSrc":"24640:7:125","nodeType":"YulFunctionCall","src":"24640:7:125"}],"functionName":{"name":"and","nativeSrc":"24631:3:125","nodeType":"YulIdentifier","src":"24631:3:125"},"nativeSrc":"24631:17:125","nodeType":"YulFunctionCall","src":"24631:17:125"},"variables":[{"name":"loopEnd","nativeSrc":"24620:7:125","nodeType":"YulTypedName","src":"24620:7:125","type":""}]},{"nativeSrc":"24661:49:125","nodeType":"YulVariableDeclaration","src":"24661:49:125","value":{"arguments":[{"name":"slot","nativeSrc":"24705:4:125","nodeType":"YulIdentifier","src":"24705:4:125"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"24675:29:125","nodeType":"YulIdentifier","src":"24675:29:125"},"nativeSrc":"24675:35:125","nodeType":"YulFunctionCall","src":"24675:35:125"},"variables":[{"name":"dstPtr","nativeSrc":"24665:6:125","nodeType":"YulTypedName","src":"24665:6:125","type":""}]},{"nativeSrc":"24723:10:125","nodeType":"YulVariableDeclaration","src":"24723:10:125","value":{"kind":"number","nativeSrc":"24732:1:125","nodeType":"YulLiteral","src":"24732:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"24727:1:125","nodeType":"YulTypedName","src":"24727:1:125","type":""}]},{"body":{"nativeSrc":"24803:172:125","nodeType":"YulBlock","src":"24803:172:125","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"24828:6:125","nodeType":"YulIdentifier","src":"24828:6:125"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"24853:3:125","nodeType":"YulIdentifier","src":"24853:3:125"},{"name":"srcOffset","nativeSrc":"24858:9:125","nodeType":"YulIdentifier","src":"24858:9:125"}],"functionName":{"name":"add","nativeSrc":"24849:3:125","nodeType":"YulIdentifier","src":"24849:3:125"},"nativeSrc":"24849:19:125","nodeType":"YulFunctionCall","src":"24849:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"24836:12:125","nodeType":"YulIdentifier","src":"24836:12:125"},"nativeSrc":"24836:33:125","nodeType":"YulFunctionCall","src":"24836:33:125"}],"functionName":{"name":"sstore","nativeSrc":"24821:6:125","nodeType":"YulIdentifier","src":"24821:6:125"},"nativeSrc":"24821:49:125","nodeType":"YulFunctionCall","src":"24821:49:125"},"nativeSrc":"24821:49:125","nodeType":"YulExpressionStatement","src":"24821:49:125"},{"nativeSrc":"24887:24:125","nodeType":"YulAssignment","src":"24887:24:125","value":{"arguments":[{"name":"dstPtr","nativeSrc":"24901:6:125","nodeType":"YulIdentifier","src":"24901:6:125"},{"kind":"number","nativeSrc":"24909:1:125","nodeType":"YulLiteral","src":"24909:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"24897:3:125","nodeType":"YulIdentifier","src":"24897:3:125"},"nativeSrc":"24897:14:125","nodeType":"YulFunctionCall","src":"24897:14:125"},"variableNames":[{"name":"dstPtr","nativeSrc":"24887:6:125","nodeType":"YulIdentifier","src":"24887:6:125"}]},{"nativeSrc":"24928:33:125","nodeType":"YulAssignment","src":"24928:33:125","value":{"arguments":[{"name":"srcOffset","nativeSrc":"24945:9:125","nodeType":"YulIdentifier","src":"24945:9:125"},{"kind":"number","nativeSrc":"24956:4:125","nodeType":"YulLiteral","src":"24956:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"24941:3:125","nodeType":"YulIdentifier","src":"24941:3:125"},"nativeSrc":"24941:20:125","nodeType":"YulFunctionCall","src":"24941:20:125"},"variableNames":[{"name":"srcOffset","nativeSrc":"24928:9:125","nodeType":"YulIdentifier","src":"24928:9:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"24757:1:125","nodeType":"YulIdentifier","src":"24757:1:125"},{"name":"loopEnd","nativeSrc":"24760:7:125","nodeType":"YulIdentifier","src":"24760:7:125"}],"functionName":{"name":"lt","nativeSrc":"24754:2:125","nodeType":"YulIdentifier","src":"24754:2:125"},"nativeSrc":"24754:14:125","nodeType":"YulFunctionCall","src":"24754:14:125"},"nativeSrc":"24746:229:125","nodeType":"YulForLoop","post":{"nativeSrc":"24769:21:125","nodeType":"YulBlock","src":"24769:21:125","statements":[{"nativeSrc":"24771:17:125","nodeType":"YulAssignment","src":"24771:17:125","value":{"arguments":[{"name":"i","nativeSrc":"24780:1:125","nodeType":"YulIdentifier","src":"24780:1:125"},{"kind":"number","nativeSrc":"24783:4:125","nodeType":"YulLiteral","src":"24783:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"24776:3:125","nodeType":"YulIdentifier","src":"24776:3:125"},"nativeSrc":"24776:12:125","nodeType":"YulFunctionCall","src":"24776:12:125"},"variableNames":[{"name":"i","nativeSrc":"24771:1:125","nodeType":"YulIdentifier","src":"24771:1:125"}]}]},"pre":{"nativeSrc":"24750:3:125","nodeType":"YulBlock","src":"24750:3:125","statements":[]},"src":"24746:229:125"},{"body":{"nativeSrc":"25020:127:125","nodeType":"YulBlock","src":"25020:127:125","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"25045:6:125","nodeType":"YulIdentifier","src":"25045:6:125"},{"arguments":[{"arguments":[{"arguments":[{"name":"src","nativeSrc":"25074:3:125","nodeType":"YulIdentifier","src":"25074:3:125"},{"name":"srcOffset","nativeSrc":"25079:9:125","nodeType":"YulIdentifier","src":"25079:9:125"}],"functionName":{"name":"add","nativeSrc":"25070:3:125","nodeType":"YulIdentifier","src":"25070:3:125"},"nativeSrc":"25070:19:125","nodeType":"YulFunctionCall","src":"25070:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"25057:12:125","nodeType":"YulIdentifier","src":"25057:12:125"},"nativeSrc":"25057:33:125","nodeType":"YulFunctionCall","src":"25057:33:125"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25108:1:125","nodeType":"YulLiteral","src":"25108:1:125","type":"","value":"3"},{"name":"len","nativeSrc":"25111:3:125","nodeType":"YulIdentifier","src":"25111:3:125"}],"functionName":{"name":"shl","nativeSrc":"25104:3:125","nodeType":"YulIdentifier","src":"25104:3:125"},"nativeSrc":"25104:11:125","nodeType":"YulFunctionCall","src":"25104:11:125"},{"kind":"number","nativeSrc":"25117:3:125","nodeType":"YulLiteral","src":"25117:3:125","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"25100:3:125","nodeType":"YulIdentifier","src":"25100:3:125"},"nativeSrc":"25100:21:125","nodeType":"YulFunctionCall","src":"25100:21:125"},{"arguments":[{"kind":"number","nativeSrc":"25127:1:125","nodeType":"YulLiteral","src":"25127:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"25123:3:125","nodeType":"YulIdentifier","src":"25123:3:125"},"nativeSrc":"25123:6:125","nodeType":"YulFunctionCall","src":"25123:6:125"}],"functionName":{"name":"shr","nativeSrc":"25096:3:125","nodeType":"YulIdentifier","src":"25096:3:125"},"nativeSrc":"25096:34:125","nodeType":"YulFunctionCall","src":"25096:34:125"}],"functionName":{"name":"not","nativeSrc":"25092:3:125","nodeType":"YulIdentifier","src":"25092:3:125"},"nativeSrc":"25092:39:125","nodeType":"YulFunctionCall","src":"25092:39:125"}],"functionName":{"name":"and","nativeSrc":"25053:3:125","nodeType":"YulIdentifier","src":"25053:3:125"},"nativeSrc":"25053:79:125","nodeType":"YulFunctionCall","src":"25053:79:125"}],"functionName":{"name":"sstore","nativeSrc":"25038:6:125","nodeType":"YulIdentifier","src":"25038:6:125"},"nativeSrc":"25038:95:125","nodeType":"YulFunctionCall","src":"25038:95:125"},"nativeSrc":"25038:95:125","nodeType":"YulExpressionStatement","src":"25038:95:125"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"24994:7:125","nodeType":"YulIdentifier","src":"24994:7:125"},{"name":"len","nativeSrc":"25003:3:125","nodeType":"YulIdentifier","src":"25003:3:125"}],"functionName":{"name":"lt","nativeSrc":"24991:2:125","nodeType":"YulIdentifier","src":"24991:2:125"},"nativeSrc":"24991:16:125","nodeType":"YulFunctionCall","src":"24991:16:125"},"nativeSrc":"24988:159:125","nodeType":"YulIf","src":"24988:159:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"25167:4:125","nodeType":"YulIdentifier","src":"25167:4:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25181:1:125","nodeType":"YulLiteral","src":"25181:1:125","type":"","value":"1"},{"name":"len","nativeSrc":"25184:3:125","nodeType":"YulIdentifier","src":"25184:3:125"}],"functionName":{"name":"shl","nativeSrc":"25177:3:125","nodeType":"YulIdentifier","src":"25177:3:125"},"nativeSrc":"25177:11:125","nodeType":"YulFunctionCall","src":"25177:11:125"},{"kind":"number","nativeSrc":"25190:1:125","nodeType":"YulLiteral","src":"25190:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"25173:3:125","nodeType":"YulIdentifier","src":"25173:3:125"},"nativeSrc":"25173:19:125","nodeType":"YulFunctionCall","src":"25173:19:125"}],"functionName":{"name":"sstore","nativeSrc":"25160:6:125","nodeType":"YulIdentifier","src":"25160:6:125"},"nativeSrc":"25160:33:125","nodeType":"YulFunctionCall","src":"25160:33:125"},"nativeSrc":"25160:33:125","nodeType":"YulExpressionStatement","src":"25160:33:125"}]},"nativeSrc":"24595:608:125","nodeType":"YulCase","src":"24595:608:125","value":{"kind":"number","nativeSrc":"24600:1:125","nodeType":"YulLiteral","src":"24600:1:125","type":"","value":"1"}},{"body":{"nativeSrc":"25220:235:125","nodeType":"YulBlock","src":"25220:235:125","statements":[{"nativeSrc":"25234:14:125","nodeType":"YulVariableDeclaration","src":"25234:14:125","value":{"kind":"number","nativeSrc":"25247:1:125","nodeType":"YulLiteral","src":"25247:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"25238:5:125","nodeType":"YulTypedName","src":"25238:5:125","type":""}]},{"body":{"nativeSrc":"25280:74:125","nodeType":"YulBlock","src":"25280:74:125","statements":[{"nativeSrc":"25298:42:125","nodeType":"YulAssignment","src":"25298:42:125","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"25324:3:125","nodeType":"YulIdentifier","src":"25324:3:125"},{"name":"srcOffset","nativeSrc":"25329:9:125","nodeType":"YulIdentifier","src":"25329:9:125"}],"functionName":{"name":"add","nativeSrc":"25320:3:125","nodeType":"YulIdentifier","src":"25320:3:125"},"nativeSrc":"25320:19:125","nodeType":"YulFunctionCall","src":"25320:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"25307:12:125","nodeType":"YulIdentifier","src":"25307:12:125"},"nativeSrc":"25307:33:125","nodeType":"YulFunctionCall","src":"25307:33:125"},"variableNames":[{"name":"value","nativeSrc":"25298:5:125","nodeType":"YulIdentifier","src":"25298:5:125"}]}]},"condition":{"name":"len","nativeSrc":"25264:3:125","nodeType":"YulIdentifier","src":"25264:3:125"},"nativeSrc":"25261:93:125","nodeType":"YulIf","src":"25261:93:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"25374:4:125","nodeType":"YulIdentifier","src":"25374:4:125"},{"arguments":[{"name":"value","nativeSrc":"25433:5:125","nodeType":"YulIdentifier","src":"25433:5:125"},{"name":"len","nativeSrc":"25440:3:125","nodeType":"YulIdentifier","src":"25440:3:125"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"25380:52:125","nodeType":"YulIdentifier","src":"25380:52:125"},"nativeSrc":"25380:64:125","nodeType":"YulFunctionCall","src":"25380:64:125"}],"functionName":{"name":"sstore","nativeSrc":"25367:6:125","nodeType":"YulIdentifier","src":"25367:6:125"},"nativeSrc":"25367:78:125","nodeType":"YulFunctionCall","src":"25367:78:125"},"nativeSrc":"25367:78:125","nodeType":"YulExpressionStatement","src":"25367:78:125"}]},"nativeSrc":"25212:243:125","nodeType":"YulCase","src":"25212:243:125","value":"default"}],"expression":{"arguments":[{"name":"len","nativeSrc":"24578:3:125","nodeType":"YulIdentifier","src":"24578:3:125"},{"kind":"number","nativeSrc":"24583:2:125","nodeType":"YulLiteral","src":"24583:2:125","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"24575:2:125","nodeType":"YulIdentifier","src":"24575:2:125"},"nativeSrc":"24575:11:125","nodeType":"YulFunctionCall","src":"24575:11:125"},"nativeSrc":"24568:887:125","nodeType":"YulSwitch","src":"24568:887:125"}]},"name":"copy_byte_array_to_storage_from_t_string_calldata_ptr_to_t_string_storage","nativeSrc":"24263:1198:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"24346:4:125","nodeType":"YulTypedName","src":"24346:4:125","type":""},{"name":"src","nativeSrc":"24352:3:125","nodeType":"YulTypedName","src":"24352:3:125","type":""},{"name":"len","nativeSrc":"24357:3:125","nodeType":"YulTypedName","src":"24357:3:125","type":""}],"src":"24263:1198:125"},{"body":{"nativeSrc":"25629:227:125","nodeType":"YulBlock","src":"25629:227:125","statements":[{"nativeSrc":"25639:26:125","nodeType":"YulAssignment","src":"25639:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"25651:9:125","nodeType":"YulIdentifier","src":"25651:9:125"},{"kind":"number","nativeSrc":"25662:2:125","nodeType":"YulLiteral","src":"25662:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25647:3:125","nodeType":"YulIdentifier","src":"25647:3:125"},"nativeSrc":"25647:18:125","nodeType":"YulFunctionCall","src":"25647:18:125"},"variableNames":[{"name":"tail","nativeSrc":"25639:4:125","nodeType":"YulIdentifier","src":"25639:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"25712:6:125","nodeType":"YulIdentifier","src":"25712:6:125"}],"functionName":{"name":"validator_assert_enum_ComponentStatus","nativeSrc":"25674:37:125","nodeType":"YulIdentifier","src":"25674:37:125"},"nativeSrc":"25674:45:125","nodeType":"YulFunctionCall","src":"25674:45:125"},"nativeSrc":"25674:45:125","nodeType":"YulExpressionStatement","src":"25674:45:125"},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25735:9:125","nodeType":"YulIdentifier","src":"25735:9:125"},{"name":"value0","nativeSrc":"25746:6:125","nodeType":"YulIdentifier","src":"25746:6:125"}],"functionName":{"name":"mstore","nativeSrc":"25728:6:125","nodeType":"YulIdentifier","src":"25728:6:125"},"nativeSrc":"25728:25:125","nodeType":"YulFunctionCall","src":"25728:25:125"},"nativeSrc":"25728:25:125","nodeType":"YulExpressionStatement","src":"25728:25:125"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"25800:6:125","nodeType":"YulIdentifier","src":"25800:6:125"}],"functionName":{"name":"validator_assert_enum_ComponentStatus","nativeSrc":"25762:37:125","nodeType":"YulIdentifier","src":"25762:37:125"},"nativeSrc":"25762:45:125","nodeType":"YulFunctionCall","src":"25762:45:125"},"nativeSrc":"25762:45:125","nodeType":"YulExpressionStatement","src":"25762:45:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25827:9:125","nodeType":"YulIdentifier","src":"25827:9:125"},{"kind":"number","nativeSrc":"25838:2:125","nodeType":"YulLiteral","src":"25838:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25823:3:125","nodeType":"YulIdentifier","src":"25823:3:125"},"nativeSrc":"25823:18:125","nodeType":"YulFunctionCall","src":"25823:18:125"},{"name":"value1","nativeSrc":"25843:6:125","nodeType":"YulIdentifier","src":"25843:6:125"}],"functionName":{"name":"mstore","nativeSrc":"25816:6:125","nodeType":"YulIdentifier","src":"25816:6:125"},"nativeSrc":"25816:34:125","nodeType":"YulFunctionCall","src":"25816:34:125"},"nativeSrc":"25816:34:125","nodeType":"YulExpressionStatement","src":"25816:34:125"}]},"name":"abi_encode_tuple_t_enum$_ComponentKind_$8398_t_enum$_ComponentStatus_$8392__to_t_uint8_t_uint8__fromStack_reversed","nativeSrc":"25466:390:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25590:9:125","nodeType":"YulTypedName","src":"25590:9:125","type":""},{"name":"value1","nativeSrc":"25601:6:125","nodeType":"YulTypedName","src":"25601:6:125","type":""},{"name":"value0","nativeSrc":"25609:6:125","nodeType":"YulTypedName","src":"25609:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25620:4:125","nodeType":"YulTypedName","src":"25620:4:125","type":""}],"src":"25466:390:125"},{"body":{"nativeSrc":"25959:136:125","nodeType":"YulBlock","src":"25959:136:125","statements":[{"body":{"nativeSrc":"26006:16:125","nodeType":"YulBlock","src":"26006:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26015:1:125","nodeType":"YulLiteral","src":"26015:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"26018:1:125","nodeType":"YulLiteral","src":"26018:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"26008:6:125","nodeType":"YulIdentifier","src":"26008:6:125"},"nativeSrc":"26008:12:125","nodeType":"YulFunctionCall","src":"26008:12:125"},"nativeSrc":"26008:12:125","nodeType":"YulExpressionStatement","src":"26008:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"25980:7:125","nodeType":"YulIdentifier","src":"25980:7:125"},{"name":"headStart","nativeSrc":"25989:9:125","nodeType":"YulIdentifier","src":"25989:9:125"}],"functionName":{"name":"sub","nativeSrc":"25976:3:125","nodeType":"YulIdentifier","src":"25976:3:125"},"nativeSrc":"25976:23:125","nodeType":"YulFunctionCall","src":"25976:23:125"},{"kind":"number","nativeSrc":"26001:3:125","nodeType":"YulLiteral","src":"26001:3:125","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"25972:3:125","nodeType":"YulIdentifier","src":"25972:3:125"},"nativeSrc":"25972:33:125","nodeType":"YulFunctionCall","src":"25972:33:125"},"nativeSrc":"25969:53:125","nodeType":"YulIf","src":"25969:53:125"},{"nativeSrc":"26031:58:125","nodeType":"YulAssignment","src":"26031:58:125","value":{"arguments":[{"name":"headStart","nativeSrc":"26070:9:125","nodeType":"YulIdentifier","src":"26070:9:125"},{"name":"dataEnd","nativeSrc":"26081:7:125","nodeType":"YulIdentifier","src":"26081:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"26041:28:125","nodeType":"YulIdentifier","src":"26041:28:125"},"nativeSrc":"26041:48:125","nodeType":"YulFunctionCall","src":"26041:48:125"},"variableNames":[{"name":"value0","nativeSrc":"26031:6:125","nodeType":"YulIdentifier","src":"26031:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptr","nativeSrc":"25861:234:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25925:9:125","nodeType":"YulTypedName","src":"25925:9:125","type":""},{"name":"dataEnd","nativeSrc":"25936:7:125","nodeType":"YulTypedName","src":"25936:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"25948:6:125","nodeType":"YulTypedName","src":"25948:6:125","type":""}],"src":"25861:234:125"},{"body":{"nativeSrc":"26169:115:125","nodeType":"YulBlock","src":"26169:115:125","statements":[{"body":{"nativeSrc":"26215:16:125","nodeType":"YulBlock","src":"26215:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26224:1:125","nodeType":"YulLiteral","src":"26224:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"26227:1:125","nodeType":"YulLiteral","src":"26227:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"26217:6:125","nodeType":"YulIdentifier","src":"26217:6:125"},"nativeSrc":"26217:12:125","nodeType":"YulFunctionCall","src":"26217:12:125"},"nativeSrc":"26217:12:125","nodeType":"YulExpressionStatement","src":"26217:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"26190:7:125","nodeType":"YulIdentifier","src":"26190:7:125"},{"name":"headStart","nativeSrc":"26199:9:125","nodeType":"YulIdentifier","src":"26199:9:125"}],"functionName":{"name":"sub","nativeSrc":"26186:3:125","nodeType":"YulIdentifier","src":"26186:3:125"},"nativeSrc":"26186:23:125","nodeType":"YulFunctionCall","src":"26186:23:125"},{"kind":"number","nativeSrc":"26211:2:125","nodeType":"YulLiteral","src":"26211:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"26182:3:125","nodeType":"YulIdentifier","src":"26182:3:125"},"nativeSrc":"26182:32:125","nodeType":"YulFunctionCall","src":"26182:32:125"},"nativeSrc":"26179:52:125","nodeType":"YulIf","src":"26179:52:125"},{"nativeSrc":"26240:38:125","nodeType":"YulAssignment","src":"26240:38:125","value":{"arguments":[{"name":"headStart","nativeSrc":"26268:9:125","nodeType":"YulIdentifier","src":"26268:9:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"26250:17:125","nodeType":"YulIdentifier","src":"26250:17:125"},"nativeSrc":"26250:28:125","nodeType":"YulFunctionCall","src":"26250:28:125"},"variableNames":[{"name":"value0","nativeSrc":"26240:6:125","nodeType":"YulIdentifier","src":"26240:6:125"}]}]},"name":"abi_decode_tuple_t_uint40","nativeSrc":"26100:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26135:9:125","nodeType":"YulTypedName","src":"26135:9:125","type":""},{"name":"dataEnd","nativeSrc":"26146:7:125","nodeType":"YulTypedName","src":"26146:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"26158:6:125","nodeType":"YulTypedName","src":"26158:6:125","type":""}],"src":"26100:184:125"},{"body":{"nativeSrc":"26352:1398:125","nodeType":"YulBlock","src":"26352:1398:125","statements":[{"nativeSrc":"26362:16:125","nodeType":"YulVariableDeclaration","src":"26362:16:125","value":{"kind":"number","nativeSrc":"26377:1:125","nodeType":"YulLiteral","src":"26377:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"26366:7:125","nodeType":"YulTypedName","src":"26366:7:125","type":""}]},{"nativeSrc":"26387:30:125","nodeType":"YulAssignment","src":"26387:30:125","value":{"arguments":[{"name":"value","nativeSrc":"26411:5:125","nodeType":"YulIdentifier","src":"26411:5:125"}],"functionName":{"name":"calldataload","nativeSrc":"26398:12:125","nodeType":"YulIdentifier","src":"26398:12:125"},"nativeSrc":"26398:19:125","nodeType":"YulFunctionCall","src":"26398:19:125"},"variableNames":[{"name":"value_1","nativeSrc":"26387:7:125","nodeType":"YulIdentifier","src":"26387:7:125"}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"26433:3:125","nodeType":"YulIdentifier","src":"26433:3:125"},{"name":"value_1","nativeSrc":"26438:7:125","nodeType":"YulIdentifier","src":"26438:7:125"}],"functionName":{"name":"mstore","nativeSrc":"26426:6:125","nodeType":"YulIdentifier","src":"26426:6:125"},"nativeSrc":"26426:20:125","nodeType":"YulFunctionCall","src":"26426:20:125"},"nativeSrc":"26426:20:125","nodeType":"YulExpressionStatement","src":"26426:20:125"},{"nativeSrc":"26455:16:125","nodeType":"YulVariableDeclaration","src":"26455:16:125","value":{"kind":"number","nativeSrc":"26470:1:125","nodeType":"YulLiteral","src":"26470:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"26459:7:125","nodeType":"YulTypedName","src":"26459:7:125","type":""}]},{"nativeSrc":"26480:41:125","nodeType":"YulAssignment","src":"26480:41:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"26508:5:125","nodeType":"YulIdentifier","src":"26508:5:125"},{"kind":"number","nativeSrc":"26515:4:125","nodeType":"YulLiteral","src":"26515:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"26504:3:125","nodeType":"YulIdentifier","src":"26504:3:125"},"nativeSrc":"26504:16:125","nodeType":"YulFunctionCall","src":"26504:16:125"}],"functionName":{"name":"calldataload","nativeSrc":"26491:12:125","nodeType":"YulIdentifier","src":"26491:12:125"},"nativeSrc":"26491:30:125","nodeType":"YulFunctionCall","src":"26491:30:125"},"variableNames":[{"name":"value_2","nativeSrc":"26480:7:125","nodeType":"YulIdentifier","src":"26480:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"26541:3:125","nodeType":"YulIdentifier","src":"26541:3:125"},{"kind":"number","nativeSrc":"26546:4:125","nodeType":"YulLiteral","src":"26546:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"26537:3:125","nodeType":"YulIdentifier","src":"26537:3:125"},"nativeSrc":"26537:14:125","nodeType":"YulFunctionCall","src":"26537:14:125"},{"name":"value_2","nativeSrc":"26553:7:125","nodeType":"YulIdentifier","src":"26553:7:125"}],"functionName":{"name":"mstore","nativeSrc":"26530:6:125","nodeType":"YulIdentifier","src":"26530:6:125"},"nativeSrc":"26530:31:125","nodeType":"YulFunctionCall","src":"26530:31:125"},"nativeSrc":"26530:31:125","nodeType":"YulExpressionStatement","src":"26530:31:125"},{"nativeSrc":"26570:16:125","nodeType":"YulVariableDeclaration","src":"26570:16:125","value":{"kind":"number","nativeSrc":"26585:1:125","nodeType":"YulLiteral","src":"26585:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"26574:7:125","nodeType":"YulTypedName","src":"26574:7:125","type":""}]},{"nativeSrc":"26595:41:125","nodeType":"YulAssignment","src":"26595:41:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"26623:5:125","nodeType":"YulIdentifier","src":"26623:5:125"},{"kind":"number","nativeSrc":"26630:4:125","nodeType":"YulLiteral","src":"26630:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"26619:3:125","nodeType":"YulIdentifier","src":"26619:3:125"},"nativeSrc":"26619:16:125","nodeType":"YulFunctionCall","src":"26619:16:125"}],"functionName":{"name":"calldataload","nativeSrc":"26606:12:125","nodeType":"YulIdentifier","src":"26606:12:125"},"nativeSrc":"26606:30:125","nodeType":"YulFunctionCall","src":"26606:30:125"},"variableNames":[{"name":"value_3","nativeSrc":"26595:7:125","nodeType":"YulIdentifier","src":"26595:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"26656:3:125","nodeType":"YulIdentifier","src":"26656:3:125"},{"kind":"number","nativeSrc":"26661:4:125","nodeType":"YulLiteral","src":"26661:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"26652:3:125","nodeType":"YulIdentifier","src":"26652:3:125"},"nativeSrc":"26652:14:125","nodeType":"YulFunctionCall","src":"26652:14:125"},{"name":"value_3","nativeSrc":"26668:7:125","nodeType":"YulIdentifier","src":"26668:7:125"}],"functionName":{"name":"mstore","nativeSrc":"26645:6:125","nodeType":"YulIdentifier","src":"26645:6:125"},"nativeSrc":"26645:31:125","nodeType":"YulFunctionCall","src":"26645:31:125"},"nativeSrc":"26645:31:125","nodeType":"YulExpressionStatement","src":"26645:31:125"},{"nativeSrc":"26685:16:125","nodeType":"YulVariableDeclaration","src":"26685:16:125","value":{"kind":"number","nativeSrc":"26700:1:125","nodeType":"YulLiteral","src":"26700:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"26689:7:125","nodeType":"YulTypedName","src":"26689:7:125","type":""}]},{"nativeSrc":"26710:41:125","nodeType":"YulAssignment","src":"26710:41:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"26738:5:125","nodeType":"YulIdentifier","src":"26738:5:125"},{"kind":"number","nativeSrc":"26745:4:125","nodeType":"YulLiteral","src":"26745:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"26734:3:125","nodeType":"YulIdentifier","src":"26734:3:125"},"nativeSrc":"26734:16:125","nodeType":"YulFunctionCall","src":"26734:16:125"}],"functionName":{"name":"calldataload","nativeSrc":"26721:12:125","nodeType":"YulIdentifier","src":"26721:12:125"},"nativeSrc":"26721:30:125","nodeType":"YulFunctionCall","src":"26721:30:125"},"variableNames":[{"name":"value_4","nativeSrc":"26710:7:125","nodeType":"YulIdentifier","src":"26710:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"26771:3:125","nodeType":"YulIdentifier","src":"26771:3:125"},{"kind":"number","nativeSrc":"26776:4:125","nodeType":"YulLiteral","src":"26776:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"26767:3:125","nodeType":"YulIdentifier","src":"26767:3:125"},"nativeSrc":"26767:14:125","nodeType":"YulFunctionCall","src":"26767:14:125"},{"name":"value_4","nativeSrc":"26783:7:125","nodeType":"YulIdentifier","src":"26783:7:125"}],"functionName":{"name":"mstore","nativeSrc":"26760:6:125","nodeType":"YulIdentifier","src":"26760:6:125"},"nativeSrc":"26760:31:125","nodeType":"YulFunctionCall","src":"26760:31:125"},"nativeSrc":"26760:31:125","nodeType":"YulExpressionStatement","src":"26760:31:125"},{"nativeSrc":"26800:16:125","nodeType":"YulVariableDeclaration","src":"26800:16:125","value":{"kind":"number","nativeSrc":"26815:1:125","nodeType":"YulLiteral","src":"26815:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"26804:7:125","nodeType":"YulTypedName","src":"26804:7:125","type":""}]},{"nativeSrc":"26825:41:125","nodeType":"YulAssignment","src":"26825:41:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"26853:5:125","nodeType":"YulIdentifier","src":"26853:5:125"},{"kind":"number","nativeSrc":"26860:4:125","nodeType":"YulLiteral","src":"26860:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"26849:3:125","nodeType":"YulIdentifier","src":"26849:3:125"},"nativeSrc":"26849:16:125","nodeType":"YulFunctionCall","src":"26849:16:125"}],"functionName":{"name":"calldataload","nativeSrc":"26836:12:125","nodeType":"YulIdentifier","src":"26836:12:125"},"nativeSrc":"26836:30:125","nodeType":"YulFunctionCall","src":"26836:30:125"},"variableNames":[{"name":"value_5","nativeSrc":"26825:7:125","nodeType":"YulIdentifier","src":"26825:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"26886:3:125","nodeType":"YulIdentifier","src":"26886:3:125"},{"kind":"number","nativeSrc":"26891:4:125","nodeType":"YulLiteral","src":"26891:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"26882:3:125","nodeType":"YulIdentifier","src":"26882:3:125"},"nativeSrc":"26882:14:125","nodeType":"YulFunctionCall","src":"26882:14:125"},{"name":"value_5","nativeSrc":"26898:7:125","nodeType":"YulIdentifier","src":"26898:7:125"}],"functionName":{"name":"mstore","nativeSrc":"26875:6:125","nodeType":"YulIdentifier","src":"26875:6:125"},"nativeSrc":"26875:31:125","nodeType":"YulFunctionCall","src":"26875:31:125"},"nativeSrc":"26875:31:125","nodeType":"YulExpressionStatement","src":"26875:31:125"},{"nativeSrc":"26915:16:125","nodeType":"YulVariableDeclaration","src":"26915:16:125","value":{"kind":"number","nativeSrc":"26930:1:125","nodeType":"YulLiteral","src":"26930:1:125","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"26919:7:125","nodeType":"YulTypedName","src":"26919:7:125","type":""}]},{"nativeSrc":"26940:41:125","nodeType":"YulAssignment","src":"26940:41:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"26968:5:125","nodeType":"YulIdentifier","src":"26968:5:125"},{"kind":"number","nativeSrc":"26975:4:125","nodeType":"YulLiteral","src":"26975:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"26964:3:125","nodeType":"YulIdentifier","src":"26964:3:125"},"nativeSrc":"26964:16:125","nodeType":"YulFunctionCall","src":"26964:16:125"}],"functionName":{"name":"calldataload","nativeSrc":"26951:12:125","nodeType":"YulIdentifier","src":"26951:12:125"},"nativeSrc":"26951:30:125","nodeType":"YulFunctionCall","src":"26951:30:125"},"variableNames":[{"name":"value_6","nativeSrc":"26940:7:125","nodeType":"YulIdentifier","src":"26940:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"27001:3:125","nodeType":"YulIdentifier","src":"27001:3:125"},{"kind":"number","nativeSrc":"27006:4:125","nodeType":"YulLiteral","src":"27006:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"26997:3:125","nodeType":"YulIdentifier","src":"26997:3:125"},"nativeSrc":"26997:14:125","nodeType":"YulFunctionCall","src":"26997:14:125"},{"name":"value_6","nativeSrc":"27013:7:125","nodeType":"YulIdentifier","src":"27013:7:125"}],"functionName":{"name":"mstore","nativeSrc":"26990:6:125","nodeType":"YulIdentifier","src":"26990:6:125"},"nativeSrc":"26990:31:125","nodeType":"YulFunctionCall","src":"26990:31:125"},"nativeSrc":"26990:31:125","nodeType":"YulExpressionStatement","src":"26990:31:125"},{"nativeSrc":"27030:16:125","nodeType":"YulVariableDeclaration","src":"27030:16:125","value":{"kind":"number","nativeSrc":"27045:1:125","nodeType":"YulLiteral","src":"27045:1:125","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"27034:7:125","nodeType":"YulTypedName","src":"27034:7:125","type":""}]},{"nativeSrc":"27055:41:125","nodeType":"YulAssignment","src":"27055:41:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"27083:5:125","nodeType":"YulIdentifier","src":"27083:5:125"},{"kind":"number","nativeSrc":"27090:4:125","nodeType":"YulLiteral","src":"27090:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"27079:3:125","nodeType":"YulIdentifier","src":"27079:3:125"},"nativeSrc":"27079:16:125","nodeType":"YulFunctionCall","src":"27079:16:125"}],"functionName":{"name":"calldataload","nativeSrc":"27066:12:125","nodeType":"YulIdentifier","src":"27066:12:125"},"nativeSrc":"27066:30:125","nodeType":"YulFunctionCall","src":"27066:30:125"},"variableNames":[{"name":"value_7","nativeSrc":"27055:7:125","nodeType":"YulIdentifier","src":"27055:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"27116:3:125","nodeType":"YulIdentifier","src":"27116:3:125"},{"kind":"number","nativeSrc":"27121:4:125","nodeType":"YulLiteral","src":"27121:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"27112:3:125","nodeType":"YulIdentifier","src":"27112:3:125"},"nativeSrc":"27112:14:125","nodeType":"YulFunctionCall","src":"27112:14:125"},{"name":"value_7","nativeSrc":"27128:7:125","nodeType":"YulIdentifier","src":"27128:7:125"}],"functionName":{"name":"mstore","nativeSrc":"27105:6:125","nodeType":"YulIdentifier","src":"27105:6:125"},"nativeSrc":"27105:31:125","nodeType":"YulFunctionCall","src":"27105:31:125"},"nativeSrc":"27105:31:125","nodeType":"YulExpressionStatement","src":"27105:31:125"},{"nativeSrc":"27145:16:125","nodeType":"YulVariableDeclaration","src":"27145:16:125","value":{"kind":"number","nativeSrc":"27160:1:125","nodeType":"YulLiteral","src":"27160:1:125","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"27149:7:125","nodeType":"YulTypedName","src":"27149:7:125","type":""}]},{"nativeSrc":"27170:41:125","nodeType":"YulAssignment","src":"27170:41:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"27198:5:125","nodeType":"YulIdentifier","src":"27198:5:125"},{"kind":"number","nativeSrc":"27205:4:125","nodeType":"YulLiteral","src":"27205:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"27194:3:125","nodeType":"YulIdentifier","src":"27194:3:125"},"nativeSrc":"27194:16:125","nodeType":"YulFunctionCall","src":"27194:16:125"}],"functionName":{"name":"calldataload","nativeSrc":"27181:12:125","nodeType":"YulIdentifier","src":"27181:12:125"},"nativeSrc":"27181:30:125","nodeType":"YulFunctionCall","src":"27181:30:125"},"variableNames":[{"name":"value_8","nativeSrc":"27170:7:125","nodeType":"YulIdentifier","src":"27170:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"27231:3:125","nodeType":"YulIdentifier","src":"27231:3:125"},{"kind":"number","nativeSrc":"27236:4:125","nodeType":"YulLiteral","src":"27236:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"27227:3:125","nodeType":"YulIdentifier","src":"27227:3:125"},"nativeSrc":"27227:14:125","nodeType":"YulFunctionCall","src":"27227:14:125"},{"name":"value_8","nativeSrc":"27243:7:125","nodeType":"YulIdentifier","src":"27243:7:125"}],"functionName":{"name":"mstore","nativeSrc":"27220:6:125","nodeType":"YulIdentifier","src":"27220:6:125"},"nativeSrc":"27220:31:125","nodeType":"YulFunctionCall","src":"27220:31:125"},"nativeSrc":"27220:31:125","nodeType":"YulExpressionStatement","src":"27220:31:125"},{"nativeSrc":"27260:16:125","nodeType":"YulVariableDeclaration","src":"27260:16:125","value":{"kind":"number","nativeSrc":"27275:1:125","nodeType":"YulLiteral","src":"27275:1:125","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"27264:7:125","nodeType":"YulTypedName","src":"27264:7:125","type":""}]},{"nativeSrc":"27285:43:125","nodeType":"YulAssignment","src":"27285:43:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"27313:5:125","nodeType":"YulIdentifier","src":"27313:5:125"},{"kind":"number","nativeSrc":"27320:6:125","nodeType":"YulLiteral","src":"27320:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"27309:3:125","nodeType":"YulIdentifier","src":"27309:3:125"},"nativeSrc":"27309:18:125","nodeType":"YulFunctionCall","src":"27309:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"27296:12:125","nodeType":"YulIdentifier","src":"27296:12:125"},"nativeSrc":"27296:32:125","nodeType":"YulFunctionCall","src":"27296:32:125"},"variableNames":[{"name":"value_9","nativeSrc":"27285:7:125","nodeType":"YulIdentifier","src":"27285:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"27348:3:125","nodeType":"YulIdentifier","src":"27348:3:125"},{"kind":"number","nativeSrc":"27353:6:125","nodeType":"YulLiteral","src":"27353:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"27344:3:125","nodeType":"YulIdentifier","src":"27344:3:125"},"nativeSrc":"27344:16:125","nodeType":"YulFunctionCall","src":"27344:16:125"},{"name":"value_9","nativeSrc":"27362:7:125","nodeType":"YulIdentifier","src":"27362:7:125"}],"functionName":{"name":"mstore","nativeSrc":"27337:6:125","nodeType":"YulIdentifier","src":"27337:6:125"},"nativeSrc":"27337:33:125","nodeType":"YulFunctionCall","src":"27337:33:125"},"nativeSrc":"27337:33:125","nodeType":"YulExpressionStatement","src":"27337:33:125"},{"nativeSrc":"27379:17:125","nodeType":"YulVariableDeclaration","src":"27379:17:125","value":{"kind":"number","nativeSrc":"27395:1:125","nodeType":"YulLiteral","src":"27395:1:125","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"27383:8:125","nodeType":"YulTypedName","src":"27383:8:125","type":""}]},{"nativeSrc":"27405:44:125","nodeType":"YulAssignment","src":"27405:44:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"27434:5:125","nodeType":"YulIdentifier","src":"27434:5:125"},{"kind":"number","nativeSrc":"27441:6:125","nodeType":"YulLiteral","src":"27441:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"27430:3:125","nodeType":"YulIdentifier","src":"27430:3:125"},"nativeSrc":"27430:18:125","nodeType":"YulFunctionCall","src":"27430:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"27417:12:125","nodeType":"YulIdentifier","src":"27417:12:125"},"nativeSrc":"27417:32:125","nodeType":"YulFunctionCall","src":"27417:32:125"},"variableNames":[{"name":"value_10","nativeSrc":"27405:8:125","nodeType":"YulIdentifier","src":"27405:8:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"27469:3:125","nodeType":"YulIdentifier","src":"27469:3:125"},{"kind":"number","nativeSrc":"27474:6:125","nodeType":"YulLiteral","src":"27474:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"27465:3:125","nodeType":"YulIdentifier","src":"27465:3:125"},"nativeSrc":"27465:16:125","nodeType":"YulFunctionCall","src":"27465:16:125"},{"name":"value_10","nativeSrc":"27483:8:125","nodeType":"YulIdentifier","src":"27483:8:125"}],"functionName":{"name":"mstore","nativeSrc":"27458:6:125","nodeType":"YulIdentifier","src":"27458:6:125"},"nativeSrc":"27458:34:125","nodeType":"YulFunctionCall","src":"27458:34:125"},"nativeSrc":"27458:34:125","nodeType":"YulExpressionStatement","src":"27458:34:125"},{"nativeSrc":"27501:57:125","nodeType":"YulVariableDeclaration","src":"27501:57:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"27543:5:125","nodeType":"YulIdentifier","src":"27543:5:125"},{"kind":"number","nativeSrc":"27550:6:125","nodeType":"YulLiteral","src":"27550:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"27539:3:125","nodeType":"YulIdentifier","src":"27539:3:125"},"nativeSrc":"27539:18:125","nodeType":"YulFunctionCall","src":"27539:18:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"27521:17:125","nodeType":"YulIdentifier","src":"27521:17:125"},"nativeSrc":"27521:37:125","nodeType":"YulFunctionCall","src":"27521:37:125"},"variables":[{"name":"memberValue0","nativeSrc":"27505:12:125","nodeType":"YulTypedName","src":"27505:12:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"27585:12:125","nodeType":"YulIdentifier","src":"27585:12:125"},{"arguments":[{"name":"pos","nativeSrc":"27603:3:125","nodeType":"YulIdentifier","src":"27603:3:125"},{"kind":"number","nativeSrc":"27608:6:125","nodeType":"YulLiteral","src":"27608:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"27599:3:125","nodeType":"YulIdentifier","src":"27599:3:125"},"nativeSrc":"27599:16:125","nodeType":"YulFunctionCall","src":"27599:16:125"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"27567:17:125","nodeType":"YulIdentifier","src":"27567:17:125"},"nativeSrc":"27567:49:125","nodeType":"YulFunctionCall","src":"27567:49:125"},"nativeSrc":"27567:49:125","nodeType":"YulExpressionStatement","src":"27567:49:125"},{"nativeSrc":"27625:59:125","nodeType":"YulVariableDeclaration","src":"27625:59:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"27669:5:125","nodeType":"YulIdentifier","src":"27669:5:125"},{"kind":"number","nativeSrc":"27676:6:125","nodeType":"YulLiteral","src":"27676:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"27665:3:125","nodeType":"YulIdentifier","src":"27665:3:125"},"nativeSrc":"27665:18:125","nodeType":"YulFunctionCall","src":"27665:18:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"27647:17:125","nodeType":"YulIdentifier","src":"27647:17:125"},"nativeSrc":"27647:37:125","nodeType":"YulFunctionCall","src":"27647:37:125"},"variables":[{"name":"memberValue0_1","nativeSrc":"27629:14:125","nodeType":"YulTypedName","src":"27629:14:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nativeSrc":"27711:14:125","nodeType":"YulIdentifier","src":"27711:14:125"},{"arguments":[{"name":"pos","nativeSrc":"27731:3:125","nodeType":"YulIdentifier","src":"27731:3:125"},{"kind":"number","nativeSrc":"27736:6:125","nodeType":"YulLiteral","src":"27736:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"27727:3:125","nodeType":"YulIdentifier","src":"27727:3:125"},"nativeSrc":"27727:16:125","nodeType":"YulFunctionCall","src":"27727:16:125"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"27693:17:125","nodeType":"YulIdentifier","src":"27693:17:125"},"nativeSrc":"27693:51:125","nodeType":"YulFunctionCall","src":"27693:51:125"},"nativeSrc":"27693:51:125","nodeType":"YulExpressionStatement","src":"27693:51:125"}]},"name":"abi_encode_struct_PolicyData_calldata","nativeSrc":"26289:1461:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"26336:5:125","nodeType":"YulTypedName","src":"26336:5:125","type":""},{"name":"pos","nativeSrc":"26343:3:125","nodeType":"YulTypedName","src":"26343:3:125","type":""}],"src":"26289:1461:125"},{"body":{"nativeSrc":"27998:174:125","nodeType":"YulBlock","src":"27998:174:125","statements":[{"nativeSrc":"28008:27:125","nodeType":"YulAssignment","src":"28008:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"28020:9:125","nodeType":"YulIdentifier","src":"28020:9:125"},{"kind":"number","nativeSrc":"28031:3:125","nodeType":"YulLiteral","src":"28031:3:125","type":"","value":"768"}],"functionName":{"name":"add","nativeSrc":"28016:3:125","nodeType":"YulIdentifier","src":"28016:3:125"},"nativeSrc":"28016:19:125","nodeType":"YulFunctionCall","src":"28016:19:125"},"variableNames":[{"name":"tail","nativeSrc":"28008:4:125","nodeType":"YulIdentifier","src":"28008:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"28082:6:125","nodeType":"YulIdentifier","src":"28082:6:125"},{"name":"headStart","nativeSrc":"28090:9:125","nodeType":"YulIdentifier","src":"28090:9:125"}],"functionName":{"name":"abi_encode_struct_PolicyData_calldata","nativeSrc":"28044:37:125","nodeType":"YulIdentifier","src":"28044:37:125"},"nativeSrc":"28044:56:125","nodeType":"YulFunctionCall","src":"28044:56:125"},"nativeSrc":"28044:56:125","nodeType":"YulExpressionStatement","src":"28044:56:125"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"28138:6:125","nodeType":"YulIdentifier","src":"28138:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"28150:9:125","nodeType":"YulIdentifier","src":"28150:9:125"},{"kind":"number","nativeSrc":"28161:3:125","nodeType":"YulLiteral","src":"28161:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"28146:3:125","nodeType":"YulIdentifier","src":"28146:3:125"},"nativeSrc":"28146:19:125","nodeType":"YulFunctionCall","src":"28146:19:125"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"28109:28:125","nodeType":"YulIdentifier","src":"28109:28:125"},"nativeSrc":"28109:57:125","nodeType":"YulFunctionCall","src":"28109:57:125"},"nativeSrc":"28109:57:125","nodeType":"YulExpressionStatement","src":"28109:57:125"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$7744_calldata_ptr_t_struct$_PolicyData_$7744_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr_t_struct$_PolicyData_$7744_memory_ptr__fromStack_reversed","nativeSrc":"27755:417:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27959:9:125","nodeType":"YulTypedName","src":"27959:9:125","type":""},{"name":"value1","nativeSrc":"27970:6:125","nodeType":"YulTypedName","src":"27970:6:125","type":""},{"name":"value0","nativeSrc":"27978:6:125","nodeType":"YulTypedName","src":"27978:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"27989:4:125","nodeType":"YulTypedName","src":"27989:4:125","type":""}],"src":"27755:417:125"},{"body":{"nativeSrc":"28209:95:125","nodeType":"YulBlock","src":"28209:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"28226:1:125","nodeType":"YulLiteral","src":"28226:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"28233:3:125","nodeType":"YulLiteral","src":"28233:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"28238:10:125","nodeType":"YulLiteral","src":"28238:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"28229:3:125","nodeType":"YulIdentifier","src":"28229:3:125"},"nativeSrc":"28229:20:125","nodeType":"YulFunctionCall","src":"28229:20:125"}],"functionName":{"name":"mstore","nativeSrc":"28219:6:125","nodeType":"YulIdentifier","src":"28219:6:125"},"nativeSrc":"28219:31:125","nodeType":"YulFunctionCall","src":"28219:31:125"},"nativeSrc":"28219:31:125","nodeType":"YulExpressionStatement","src":"28219:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"28266:1:125","nodeType":"YulLiteral","src":"28266:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"28269:4:125","nodeType":"YulLiteral","src":"28269:4:125","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"28259:6:125","nodeType":"YulIdentifier","src":"28259:6:125"},"nativeSrc":"28259:15:125","nodeType":"YulFunctionCall","src":"28259:15:125"},"nativeSrc":"28259:15:125","nodeType":"YulExpressionStatement","src":"28259:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"28290:1:125","nodeType":"YulLiteral","src":"28290:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"28293:4:125","nodeType":"YulLiteral","src":"28293:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"28283:6:125","nodeType":"YulIdentifier","src":"28283:6:125"},"nativeSrc":"28283:15:125","nodeType":"YulFunctionCall","src":"28283:15:125"},"nativeSrc":"28283:15:125","nodeType":"YulExpressionStatement","src":"28283:15:125"}]},"name":"panic_error_0x11","nativeSrc":"28177:127:125","nodeType":"YulFunctionDefinition","src":"28177:127:125"},{"body":{"nativeSrc":"28358:79:125","nodeType":"YulBlock","src":"28358:79:125","statements":[{"nativeSrc":"28368:17:125","nodeType":"YulAssignment","src":"28368:17:125","value":{"arguments":[{"name":"x","nativeSrc":"28380:1:125","nodeType":"YulIdentifier","src":"28380:1:125"},{"name":"y","nativeSrc":"28383:1:125","nodeType":"YulIdentifier","src":"28383:1:125"}],"functionName":{"name":"sub","nativeSrc":"28376:3:125","nodeType":"YulIdentifier","src":"28376:3:125"},"nativeSrc":"28376:9:125","nodeType":"YulFunctionCall","src":"28376:9:125"},"variableNames":[{"name":"diff","nativeSrc":"28368:4:125","nodeType":"YulIdentifier","src":"28368:4:125"}]},{"body":{"nativeSrc":"28409:22:125","nodeType":"YulBlock","src":"28409:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"28411:16:125","nodeType":"YulIdentifier","src":"28411:16:125"},"nativeSrc":"28411:18:125","nodeType":"YulFunctionCall","src":"28411:18:125"},"nativeSrc":"28411:18:125","nodeType":"YulExpressionStatement","src":"28411:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"28400:4:125","nodeType":"YulIdentifier","src":"28400:4:125"},{"name":"x","nativeSrc":"28406:1:125","nodeType":"YulIdentifier","src":"28406:1:125"}],"functionName":{"name":"gt","nativeSrc":"28397:2:125","nodeType":"YulIdentifier","src":"28397:2:125"},"nativeSrc":"28397:11:125","nodeType":"YulFunctionCall","src":"28397:11:125"},"nativeSrc":"28394:37:125","nodeType":"YulIf","src":"28394:37:125"}]},"name":"checked_sub_t_uint256","nativeSrc":"28309:128:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"28340:1:125","nodeType":"YulTypedName","src":"28340:1:125","type":""},{"name":"y","nativeSrc":"28343:1:125","nodeType":"YulTypedName","src":"28343:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"28349:4:125","nodeType":"YulTypedName","src":"28349:4:125","type":""}],"src":"28309:128:125"},{"body":{"nativeSrc":"28544:170:125","nodeType":"YulBlock","src":"28544:170:125","statements":[{"body":{"nativeSrc":"28590:16:125","nodeType":"YulBlock","src":"28590:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"28599:1:125","nodeType":"YulLiteral","src":"28599:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"28602:1:125","nodeType":"YulLiteral","src":"28602:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"28592:6:125","nodeType":"YulIdentifier","src":"28592:6:125"},"nativeSrc":"28592:12:125","nodeType":"YulFunctionCall","src":"28592:12:125"},"nativeSrc":"28592:12:125","nodeType":"YulExpressionStatement","src":"28592:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"28565:7:125","nodeType":"YulIdentifier","src":"28565:7:125"},{"name":"headStart","nativeSrc":"28574:9:125","nodeType":"YulIdentifier","src":"28574:9:125"}],"functionName":{"name":"sub","nativeSrc":"28561:3:125","nodeType":"YulIdentifier","src":"28561:3:125"},"nativeSrc":"28561:23:125","nodeType":"YulFunctionCall","src":"28561:23:125"},{"kind":"number","nativeSrc":"28586:2:125","nodeType":"YulLiteral","src":"28586:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"28557:3:125","nodeType":"YulIdentifier","src":"28557:3:125"},"nativeSrc":"28557:32:125","nodeType":"YulFunctionCall","src":"28557:32:125"},"nativeSrc":"28554:52:125","nodeType":"YulIf","src":"28554:52:125"},{"nativeSrc":"28615:29:125","nodeType":"YulVariableDeclaration","src":"28615:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"28634:9:125","nodeType":"YulIdentifier","src":"28634:9:125"}],"functionName":{"name":"mload","nativeSrc":"28628:5:125","nodeType":"YulIdentifier","src":"28628:5:125"},"nativeSrc":"28628:16:125","nodeType":"YulFunctionCall","src":"28628:16:125"},"variables":[{"name":"value","nativeSrc":"28619:5:125","nodeType":"YulTypedName","src":"28619:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"28678:5:125","nodeType":"YulIdentifier","src":"28678:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"28653:24:125","nodeType":"YulIdentifier","src":"28653:24:125"},"nativeSrc":"28653:31:125","nodeType":"YulFunctionCall","src":"28653:31:125"},"nativeSrc":"28653:31:125","nodeType":"YulExpressionStatement","src":"28653:31:125"},{"nativeSrc":"28693:15:125","nodeType":"YulAssignment","src":"28693:15:125","value":{"name":"value","nativeSrc":"28703:5:125","nodeType":"YulIdentifier","src":"28703:5:125"},"variableNames":[{"name":"value0","nativeSrc":"28693:6:125","nodeType":"YulIdentifier","src":"28693:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory","nativeSrc":"28442:272:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28510:9:125","nodeType":"YulTypedName","src":"28510:9:125","type":""},{"name":"dataEnd","nativeSrc":"28521:7:125","nodeType":"YulTypedName","src":"28521:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"28533:6:125","nodeType":"YulTypedName","src":"28533:6:125","type":""}],"src":"28442:272:125"},{"body":{"nativeSrc":"28818:103:125","nodeType":"YulBlock","src":"28818:103:125","statements":[{"nativeSrc":"28828:26:125","nodeType":"YulAssignment","src":"28828:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"28840:9:125","nodeType":"YulIdentifier","src":"28840:9:125"},{"kind":"number","nativeSrc":"28851:2:125","nodeType":"YulLiteral","src":"28851:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28836:3:125","nodeType":"YulIdentifier","src":"28836:3:125"},"nativeSrc":"28836:18:125","nodeType":"YulFunctionCall","src":"28836:18:125"},"variableNames":[{"name":"tail","nativeSrc":"28828:4:125","nodeType":"YulIdentifier","src":"28828:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28870:9:125","nodeType":"YulIdentifier","src":"28870:9:125"},{"arguments":[{"name":"value0","nativeSrc":"28885:6:125","nodeType":"YulIdentifier","src":"28885:6:125"},{"arguments":[{"kind":"number","nativeSrc":"28897:3:125","nodeType":"YulLiteral","src":"28897:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"28902:10:125","nodeType":"YulLiteral","src":"28902:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"28893:3:125","nodeType":"YulIdentifier","src":"28893:3:125"},"nativeSrc":"28893:20:125","nodeType":"YulFunctionCall","src":"28893:20:125"}],"functionName":{"name":"and","nativeSrc":"28881:3:125","nodeType":"YulIdentifier","src":"28881:3:125"},"nativeSrc":"28881:33:125","nodeType":"YulFunctionCall","src":"28881:33:125"}],"functionName":{"name":"mstore","nativeSrc":"28863:6:125","nodeType":"YulIdentifier","src":"28863:6:125"},"nativeSrc":"28863:52:125","nodeType":"YulFunctionCall","src":"28863:52:125"},"nativeSrc":"28863:52:125","nodeType":"YulExpressionStatement","src":"28863:52:125"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nativeSrc":"28719:202:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28787:9:125","nodeType":"YulTypedName","src":"28787:9:125","type":""},{"name":"value0","nativeSrc":"28798:6:125","nodeType":"YulTypedName","src":"28798:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28809:4:125","nodeType":"YulTypedName","src":"28809:4:125","type":""}],"src":"28719:202:125"},{"body":{"nativeSrc":"29004:167:125","nodeType":"YulBlock","src":"29004:167:125","statements":[{"body":{"nativeSrc":"29050:16:125","nodeType":"YulBlock","src":"29050:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"29059:1:125","nodeType":"YulLiteral","src":"29059:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"29062:1:125","nodeType":"YulLiteral","src":"29062:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"29052:6:125","nodeType":"YulIdentifier","src":"29052:6:125"},"nativeSrc":"29052:12:125","nodeType":"YulFunctionCall","src":"29052:12:125"},"nativeSrc":"29052:12:125","nodeType":"YulExpressionStatement","src":"29052:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"29025:7:125","nodeType":"YulIdentifier","src":"29025:7:125"},{"name":"headStart","nativeSrc":"29034:9:125","nodeType":"YulIdentifier","src":"29034:9:125"}],"functionName":{"name":"sub","nativeSrc":"29021:3:125","nodeType":"YulIdentifier","src":"29021:3:125"},"nativeSrc":"29021:23:125","nodeType":"YulFunctionCall","src":"29021:23:125"},{"kind":"number","nativeSrc":"29046:2:125","nodeType":"YulLiteral","src":"29046:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"29017:3:125","nodeType":"YulIdentifier","src":"29017:3:125"},"nativeSrc":"29017:32:125","nodeType":"YulFunctionCall","src":"29017:32:125"},"nativeSrc":"29014:52:125","nodeType":"YulIf","src":"29014:52:125"},{"nativeSrc":"29075:29:125","nodeType":"YulVariableDeclaration","src":"29075:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"29094:9:125","nodeType":"YulIdentifier","src":"29094:9:125"}],"functionName":{"name":"mload","nativeSrc":"29088:5:125","nodeType":"YulIdentifier","src":"29088:5:125"},"nativeSrc":"29088:16:125","nodeType":"YulFunctionCall","src":"29088:16:125"},"variables":[{"name":"value","nativeSrc":"29079:5:125","nodeType":"YulTypedName","src":"29079:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"29135:5:125","nodeType":"YulIdentifier","src":"29135:5:125"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"29113:21:125","nodeType":"YulIdentifier","src":"29113:21:125"},"nativeSrc":"29113:28:125","nodeType":"YulFunctionCall","src":"29113:28:125"},"nativeSrc":"29113:28:125","nodeType":"YulExpressionStatement","src":"29113:28:125"},{"nativeSrc":"29150:15:125","nodeType":"YulAssignment","src":"29150:15:125","value":{"name":"value","nativeSrc":"29160:5:125","nodeType":"YulIdentifier","src":"29160:5:125"},"variableNames":[{"name":"value0","nativeSrc":"29150:6:125","nodeType":"YulIdentifier","src":"29150:6:125"}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nativeSrc":"28926:245:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28970:9:125","nodeType":"YulTypedName","src":"28970:9:125","type":""},{"name":"dataEnd","nativeSrc":"28981:7:125","nodeType":"YulTypedName","src":"28981:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"28993:6:125","nodeType":"YulTypedName","src":"28993:6:125","type":""}],"src":"28926:245:125"},{"body":{"nativeSrc":"29351:199:125","nodeType":"YulBlock","src":"29351:199:125","statements":[{"nativeSrc":"29361:26:125","nodeType":"YulAssignment","src":"29361:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"29373:9:125","nodeType":"YulIdentifier","src":"29373:9:125"},{"kind":"number","nativeSrc":"29384:2:125","nodeType":"YulLiteral","src":"29384:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29369:3:125","nodeType":"YulIdentifier","src":"29369:3:125"},"nativeSrc":"29369:18:125","nodeType":"YulFunctionCall","src":"29369:18:125"},"variableNames":[{"name":"tail","nativeSrc":"29361:4:125","nodeType":"YulIdentifier","src":"29361:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29403:9:125","nodeType":"YulIdentifier","src":"29403:9:125"},{"arguments":[{"name":"value0","nativeSrc":"29418:6:125","nodeType":"YulIdentifier","src":"29418:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29434:3:125","nodeType":"YulLiteral","src":"29434:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"29439:1:125","nodeType":"YulLiteral","src":"29439:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"29430:3:125","nodeType":"YulIdentifier","src":"29430:3:125"},"nativeSrc":"29430:11:125","nodeType":"YulFunctionCall","src":"29430:11:125"},{"kind":"number","nativeSrc":"29443:1:125","nodeType":"YulLiteral","src":"29443:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"29426:3:125","nodeType":"YulIdentifier","src":"29426:3:125"},"nativeSrc":"29426:19:125","nodeType":"YulFunctionCall","src":"29426:19:125"}],"functionName":{"name":"and","nativeSrc":"29414:3:125","nodeType":"YulIdentifier","src":"29414:3:125"},"nativeSrc":"29414:32:125","nodeType":"YulFunctionCall","src":"29414:32:125"}],"functionName":{"name":"mstore","nativeSrc":"29396:6:125","nodeType":"YulIdentifier","src":"29396:6:125"},"nativeSrc":"29396:51:125","nodeType":"YulFunctionCall","src":"29396:51:125"},"nativeSrc":"29396:51:125","nodeType":"YulExpressionStatement","src":"29396:51:125"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"29494:6:125","nodeType":"YulIdentifier","src":"29494:6:125"}],"functionName":{"name":"validator_assert_enum_ComponentStatus","nativeSrc":"29456:37:125","nodeType":"YulIdentifier","src":"29456:37:125"},"nativeSrc":"29456:45:125","nodeType":"YulFunctionCall","src":"29456:45:125"},"nativeSrc":"29456:45:125","nodeType":"YulExpressionStatement","src":"29456:45:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29521:9:125","nodeType":"YulIdentifier","src":"29521:9:125"},{"kind":"number","nativeSrc":"29532:2:125","nodeType":"YulLiteral","src":"29532:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29517:3:125","nodeType":"YulIdentifier","src":"29517:3:125"},"nativeSrc":"29517:18:125","nodeType":"YulFunctionCall","src":"29517:18:125"},{"name":"value1","nativeSrc":"29537:6:125","nodeType":"YulIdentifier","src":"29537:6:125"}],"functionName":{"name":"mstore","nativeSrc":"29510:6:125","nodeType":"YulIdentifier","src":"29510:6:125"},"nativeSrc":"29510:34:125","nodeType":"YulFunctionCall","src":"29510:34:125"},"nativeSrc":"29510:34:125","nodeType":"YulExpressionStatement","src":"29510:34:125"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPoolComponent_$14655_t_enum$_ComponentKind_$8398__to_t_address_t_uint8__fromStack_reversed","nativeSrc":"29176:374:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29312:9:125","nodeType":"YulTypedName","src":"29312:9:125","type":""},{"name":"value1","nativeSrc":"29323:6:125","nodeType":"YulTypedName","src":"29323:6:125","type":""},{"name":"value0","nativeSrc":"29331:6:125","nodeType":"YulTypedName","src":"29331:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29342:4:125","nodeType":"YulTypedName","src":"29342:4:125","type":""}],"src":"29176:374:125"},{"body":{"nativeSrc":"29653:170:125","nodeType":"YulBlock","src":"29653:170:125","statements":[{"body":{"nativeSrc":"29699:16:125","nodeType":"YulBlock","src":"29699:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"29708:1:125","nodeType":"YulLiteral","src":"29708:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"29711:1:125","nodeType":"YulLiteral","src":"29711:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"29701:6:125","nodeType":"YulIdentifier","src":"29701:6:125"},"nativeSrc":"29701:12:125","nodeType":"YulFunctionCall","src":"29701:12:125"},"nativeSrc":"29701:12:125","nodeType":"YulExpressionStatement","src":"29701:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"29674:7:125","nodeType":"YulIdentifier","src":"29674:7:125"},{"name":"headStart","nativeSrc":"29683:9:125","nodeType":"YulIdentifier","src":"29683:9:125"}],"functionName":{"name":"sub","nativeSrc":"29670:3:125","nodeType":"YulIdentifier","src":"29670:3:125"},"nativeSrc":"29670:23:125","nodeType":"YulFunctionCall","src":"29670:23:125"},{"kind":"number","nativeSrc":"29695:2:125","nodeType":"YulLiteral","src":"29695:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"29666:3:125","nodeType":"YulIdentifier","src":"29666:3:125"},"nativeSrc":"29666:32:125","nodeType":"YulFunctionCall","src":"29666:32:125"},"nativeSrc":"29663:52:125","nodeType":"YulIf","src":"29663:52:125"},{"nativeSrc":"29724:29:125","nodeType":"YulVariableDeclaration","src":"29724:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"29743:9:125","nodeType":"YulIdentifier","src":"29743:9:125"}],"functionName":{"name":"mload","nativeSrc":"29737:5:125","nodeType":"YulIdentifier","src":"29737:5:125"},"nativeSrc":"29737:16:125","nodeType":"YulFunctionCall","src":"29737:16:125"},"variables":[{"name":"value","nativeSrc":"29728:5:125","nodeType":"YulTypedName","src":"29728:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"29787:5:125","nodeType":"YulIdentifier","src":"29787:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"29762:24:125","nodeType":"YulIdentifier","src":"29762:24:125"},"nativeSrc":"29762:31:125","nodeType":"YulFunctionCall","src":"29762:31:125"},"nativeSrc":"29762:31:125","nodeType":"YulExpressionStatement","src":"29762:31:125"},{"nativeSrc":"29802:15:125","nodeType":"YulAssignment","src":"29802:15:125","value":{"name":"value","nativeSrc":"29812:5:125","nodeType":"YulIdentifier","src":"29812:5:125"},"variableNames":[{"name":"value0","nativeSrc":"29802:6:125","nodeType":"YulIdentifier","src":"29802:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$14336_fromMemory","nativeSrc":"29555:268:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29619:9:125","nodeType":"YulTypedName","src":"29619:9:125","type":""},{"name":"dataEnd","nativeSrc":"29630:7:125","nodeType":"YulTypedName","src":"29630:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"29642:6:125","nodeType":"YulTypedName","src":"29642:6:125","type":""}],"src":"29555:268:125"},{"body":{"nativeSrc":"30071:240:125","nodeType":"YulBlock","src":"30071:240:125","statements":[{"nativeSrc":"30081:27:125","nodeType":"YulAssignment","src":"30081:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"30093:9:125","nodeType":"YulIdentifier","src":"30093:9:125"},{"kind":"number","nativeSrc":"30104:3:125","nodeType":"YulLiteral","src":"30104:3:125","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"30089:3:125","nodeType":"YulIdentifier","src":"30089:3:125"},"nativeSrc":"30089:19:125","nodeType":"YulFunctionCall","src":"30089:19:125"},"variableNames":[{"name":"tail","nativeSrc":"30081:4:125","nodeType":"YulIdentifier","src":"30081:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"30155:6:125","nodeType":"YulIdentifier","src":"30155:6:125"},{"name":"headStart","nativeSrc":"30163:9:125","nodeType":"YulIdentifier","src":"30163:9:125"}],"functionName":{"name":"abi_encode_struct_PolicyData_calldata","nativeSrc":"30117:37:125","nodeType":"YulIdentifier","src":"30117:37:125"},"nativeSrc":"30117:56:125","nodeType":"YulFunctionCall","src":"30117:56:125"},"nativeSrc":"30117:56:125","nodeType":"YulExpressionStatement","src":"30117:56:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30193:9:125","nodeType":"YulIdentifier","src":"30193:9:125"},{"kind":"number","nativeSrc":"30204:3:125","nodeType":"YulLiteral","src":"30204:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"30189:3:125","nodeType":"YulIdentifier","src":"30189:3:125"},"nativeSrc":"30189:19:125","nodeType":"YulFunctionCall","src":"30189:19:125"},{"name":"value1","nativeSrc":"30210:6:125","nodeType":"YulIdentifier","src":"30210:6:125"}],"functionName":{"name":"mstore","nativeSrc":"30182:6:125","nodeType":"YulIdentifier","src":"30182:6:125"},"nativeSrc":"30182:35:125","nodeType":"YulFunctionCall","src":"30182:35:125"},"nativeSrc":"30182:35:125","nodeType":"YulExpressionStatement","src":"30182:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30237:9:125","nodeType":"YulIdentifier","src":"30237:9:125"},{"kind":"number","nativeSrc":"30248:3:125","nodeType":"YulLiteral","src":"30248:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"30233:3:125","nodeType":"YulIdentifier","src":"30233:3:125"},"nativeSrc":"30233:19:125","nodeType":"YulFunctionCall","src":"30233:19:125"},{"name":"value2","nativeSrc":"30254:6:125","nodeType":"YulIdentifier","src":"30254:6:125"}],"functionName":{"name":"mstore","nativeSrc":"30226:6:125","nodeType":"YulIdentifier","src":"30226:6:125"},"nativeSrc":"30226:35:125","nodeType":"YulFunctionCall","src":"30226:35:125"},"nativeSrc":"30226:35:125","nodeType":"YulExpressionStatement","src":"30226:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30281:9:125","nodeType":"YulIdentifier","src":"30281:9:125"},{"kind":"number","nativeSrc":"30292:3:125","nodeType":"YulLiteral","src":"30292:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"30277:3:125","nodeType":"YulIdentifier","src":"30277:3:125"},"nativeSrc":"30277:19:125","nodeType":"YulFunctionCall","src":"30277:19:125"},{"name":"value3","nativeSrc":"30298:6:125","nodeType":"YulIdentifier","src":"30298:6:125"}],"functionName":{"name":"mstore","nativeSrc":"30270:6:125","nodeType":"YulIdentifier","src":"30270:6:125"},"nativeSrc":"30270:35:125","nodeType":"YulFunctionCall","src":"30270:35:125"},"nativeSrc":"30270:35:125","nodeType":"YulExpressionStatement","src":"30270:35:125"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$7744_calldata_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"29828:483:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30016:9:125","nodeType":"YulTypedName","src":"30016:9:125","type":""},{"name":"value3","nativeSrc":"30027:6:125","nodeType":"YulTypedName","src":"30027:6:125","type":""},{"name":"value2","nativeSrc":"30035:6:125","nodeType":"YulTypedName","src":"30035:6:125","type":""},{"name":"value1","nativeSrc":"30043:6:125","nodeType":"YulTypedName","src":"30043:6:125","type":""},{"name":"value0","nativeSrc":"30051:6:125","nodeType":"YulTypedName","src":"30051:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30062:4:125","nodeType":"YulTypedName","src":"30062:4:125","type":""}],"src":"29828:483:125"},{"body":{"nativeSrc":"30587:310:125","nodeType":"YulBlock","src":"30587:310:125","statements":[{"nativeSrc":"30597:27:125","nodeType":"YulAssignment","src":"30597:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"30609:9:125","nodeType":"YulIdentifier","src":"30609:9:125"},{"kind":"number","nativeSrc":"30620:3:125","nodeType":"YulLiteral","src":"30620:3:125","type":"","value":"512"}],"functionName":{"name":"add","nativeSrc":"30605:3:125","nodeType":"YulIdentifier","src":"30605:3:125"},"nativeSrc":"30605:19:125","nodeType":"YulFunctionCall","src":"30605:19:125"},"variableNames":[{"name":"tail","nativeSrc":"30597:4:125","nodeType":"YulIdentifier","src":"30597:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"30671:6:125","nodeType":"YulIdentifier","src":"30671:6:125"},{"name":"headStart","nativeSrc":"30679:9:125","nodeType":"YulIdentifier","src":"30679:9:125"}],"functionName":{"name":"abi_encode_struct_PolicyData_calldata","nativeSrc":"30633:37:125","nodeType":"YulIdentifier","src":"30633:37:125"},"nativeSrc":"30633:56:125","nodeType":"YulFunctionCall","src":"30633:56:125"},"nativeSrc":"30633:56:125","nodeType":"YulExpressionStatement","src":"30633:56:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30709:9:125","nodeType":"YulIdentifier","src":"30709:9:125"},{"kind":"number","nativeSrc":"30720:3:125","nodeType":"YulLiteral","src":"30720:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"30705:3:125","nodeType":"YulIdentifier","src":"30705:3:125"},"nativeSrc":"30705:19:125","nodeType":"YulFunctionCall","src":"30705:19:125"},{"name":"value1","nativeSrc":"30726:6:125","nodeType":"YulIdentifier","src":"30726:6:125"}],"functionName":{"name":"mstore","nativeSrc":"30698:6:125","nodeType":"YulIdentifier","src":"30698:6:125"},"nativeSrc":"30698:35:125","nodeType":"YulFunctionCall","src":"30698:35:125"},"nativeSrc":"30698:35:125","nodeType":"YulExpressionStatement","src":"30698:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30753:9:125","nodeType":"YulIdentifier","src":"30753:9:125"},{"kind":"number","nativeSrc":"30764:3:125","nodeType":"YulLiteral","src":"30764:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"30749:3:125","nodeType":"YulIdentifier","src":"30749:3:125"},"nativeSrc":"30749:19:125","nodeType":"YulFunctionCall","src":"30749:19:125"},{"name":"value2","nativeSrc":"30770:6:125","nodeType":"YulIdentifier","src":"30770:6:125"}],"functionName":{"name":"mstore","nativeSrc":"30742:6:125","nodeType":"YulIdentifier","src":"30742:6:125"},"nativeSrc":"30742:35:125","nodeType":"YulFunctionCall","src":"30742:35:125"},"nativeSrc":"30742:35:125","nodeType":"YulExpressionStatement","src":"30742:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30797:9:125","nodeType":"YulIdentifier","src":"30797:9:125"},{"kind":"number","nativeSrc":"30808:3:125","nodeType":"YulLiteral","src":"30808:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"30793:3:125","nodeType":"YulIdentifier","src":"30793:3:125"},"nativeSrc":"30793:19:125","nodeType":"YulFunctionCall","src":"30793:19:125"},{"name":"value3","nativeSrc":"30814:6:125","nodeType":"YulIdentifier","src":"30814:6:125"}],"functionName":{"name":"mstore","nativeSrc":"30786:6:125","nodeType":"YulIdentifier","src":"30786:6:125"},"nativeSrc":"30786:35:125","nodeType":"YulFunctionCall","src":"30786:35:125"},"nativeSrc":"30786:35:125","nodeType":"YulExpressionStatement","src":"30786:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30841:9:125","nodeType":"YulIdentifier","src":"30841:9:125"},{"kind":"number","nativeSrc":"30852:3:125","nodeType":"YulLiteral","src":"30852:3:125","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"30837:3:125","nodeType":"YulIdentifier","src":"30837:3:125"},"nativeSrc":"30837:19:125","nodeType":"YulFunctionCall","src":"30837:19:125"},{"arguments":[{"name":"value4","nativeSrc":"30862:6:125","nodeType":"YulIdentifier","src":"30862:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30878:3:125","nodeType":"YulLiteral","src":"30878:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"30883:1:125","nodeType":"YulLiteral","src":"30883:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"30874:3:125","nodeType":"YulIdentifier","src":"30874:3:125"},"nativeSrc":"30874:11:125","nodeType":"YulFunctionCall","src":"30874:11:125"},{"kind":"number","nativeSrc":"30887:1:125","nodeType":"YulLiteral","src":"30887:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"30870:3:125","nodeType":"YulIdentifier","src":"30870:3:125"},"nativeSrc":"30870:19:125","nodeType":"YulFunctionCall","src":"30870:19:125"}],"functionName":{"name":"and","nativeSrc":"30858:3:125","nodeType":"YulIdentifier","src":"30858:3:125"},"nativeSrc":"30858:32:125","nodeType":"YulFunctionCall","src":"30858:32:125"}],"functionName":{"name":"mstore","nativeSrc":"30830:6:125","nodeType":"YulIdentifier","src":"30830:6:125"},"nativeSrc":"30830:61:125","nodeType":"YulFunctionCall","src":"30830:61:125"},"nativeSrc":"30830:61:125","nodeType":"YulExpressionStatement","src":"30830:61:125"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$7744_calldata_ptr_t_uint256_t_uint256_t_uint256_t_address__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256_t_address__fromStack_reversed","nativeSrc":"30316:581:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30524:9:125","nodeType":"YulTypedName","src":"30524:9:125","type":""},{"name":"value4","nativeSrc":"30535:6:125","nodeType":"YulTypedName","src":"30535:6:125","type":""},{"name":"value3","nativeSrc":"30543:6:125","nodeType":"YulTypedName","src":"30543:6:125","type":""},{"name":"value2","nativeSrc":"30551:6:125","nodeType":"YulTypedName","src":"30551:6:125","type":""},{"name":"value1","nativeSrc":"30559:6:125","nodeType":"YulTypedName","src":"30559:6:125","type":""},{"name":"value0","nativeSrc":"30567:6:125","nodeType":"YulTypedName","src":"30567:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30578:4:125","nodeType":"YulTypedName","src":"30578:4:125","type":""}],"src":"30316:581:125"},{"body":{"nativeSrc":"31059:162:125","nodeType":"YulBlock","src":"31059:162:125","statements":[{"nativeSrc":"31069:26:125","nodeType":"YulAssignment","src":"31069:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"31081:9:125","nodeType":"YulIdentifier","src":"31081:9:125"},{"kind":"number","nativeSrc":"31092:2:125","nodeType":"YulLiteral","src":"31092:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"31077:3:125","nodeType":"YulIdentifier","src":"31077:3:125"},"nativeSrc":"31077:18:125","nodeType":"YulFunctionCall","src":"31077:18:125"},"variableNames":[{"name":"tail","nativeSrc":"31069:4:125","nodeType":"YulIdentifier","src":"31069:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31111:9:125","nodeType":"YulIdentifier","src":"31111:9:125"},{"name":"value0","nativeSrc":"31122:6:125","nodeType":"YulIdentifier","src":"31122:6:125"}],"functionName":{"name":"mstore","nativeSrc":"31104:6:125","nodeType":"YulIdentifier","src":"31104:6:125"},"nativeSrc":"31104:25:125","nodeType":"YulFunctionCall","src":"31104:25:125"},"nativeSrc":"31104:25:125","nodeType":"YulExpressionStatement","src":"31104:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31149:9:125","nodeType":"YulIdentifier","src":"31149:9:125"},{"kind":"number","nativeSrc":"31160:2:125","nodeType":"YulLiteral","src":"31160:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"31145:3:125","nodeType":"YulIdentifier","src":"31145:3:125"},"nativeSrc":"31145:18:125","nodeType":"YulFunctionCall","src":"31145:18:125"},{"name":"value1","nativeSrc":"31165:6:125","nodeType":"YulIdentifier","src":"31165:6:125"}],"functionName":{"name":"mstore","nativeSrc":"31138:6:125","nodeType":"YulIdentifier","src":"31138:6:125"},"nativeSrc":"31138:34:125","nodeType":"YulFunctionCall","src":"31138:34:125"},"nativeSrc":"31138:34:125","nodeType":"YulExpressionStatement","src":"31138:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31192:9:125","nodeType":"YulIdentifier","src":"31192:9:125"},{"kind":"number","nativeSrc":"31203:2:125","nodeType":"YulLiteral","src":"31203:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31188:3:125","nodeType":"YulIdentifier","src":"31188:3:125"},"nativeSrc":"31188:18:125","nodeType":"YulFunctionCall","src":"31188:18:125"},{"name":"value2","nativeSrc":"31208:6:125","nodeType":"YulIdentifier","src":"31208:6:125"}],"functionName":{"name":"mstore","nativeSrc":"31181:6:125","nodeType":"YulIdentifier","src":"31181:6:125"},"nativeSrc":"31181:34:125","nodeType":"YulFunctionCall","src":"31181:34:125"},"nativeSrc":"31181:34:125","nodeType":"YulExpressionStatement","src":"31181:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"30902:319:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31012:9:125","nodeType":"YulTypedName","src":"31012:9:125","type":""},{"name":"value2","nativeSrc":"31023:6:125","nodeType":"YulTypedName","src":"31023:6:125","type":""},{"name":"value1","nativeSrc":"31031:6:125","nodeType":"YulTypedName","src":"31031:6:125","type":""},{"name":"value0","nativeSrc":"31039:6:125","nodeType":"YulTypedName","src":"31039:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31050:4:125","nodeType":"YulTypedName","src":"31050:4:125","type":""}],"src":"30902:319:125"},{"body":{"nativeSrc":"31307:103:125","nodeType":"YulBlock","src":"31307:103:125","statements":[{"body":{"nativeSrc":"31353:16:125","nodeType":"YulBlock","src":"31353:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"31362:1:125","nodeType":"YulLiteral","src":"31362:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"31365:1:125","nodeType":"YulLiteral","src":"31365:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"31355:6:125","nodeType":"YulIdentifier","src":"31355:6:125"},"nativeSrc":"31355:12:125","nodeType":"YulFunctionCall","src":"31355:12:125"},"nativeSrc":"31355:12:125","nodeType":"YulExpressionStatement","src":"31355:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"31328:7:125","nodeType":"YulIdentifier","src":"31328:7:125"},{"name":"headStart","nativeSrc":"31337:9:125","nodeType":"YulIdentifier","src":"31337:9:125"}],"functionName":{"name":"sub","nativeSrc":"31324:3:125","nodeType":"YulIdentifier","src":"31324:3:125"},"nativeSrc":"31324:23:125","nodeType":"YulFunctionCall","src":"31324:23:125"},{"kind":"number","nativeSrc":"31349:2:125","nodeType":"YulLiteral","src":"31349:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"31320:3:125","nodeType":"YulIdentifier","src":"31320:3:125"},"nativeSrc":"31320:32:125","nodeType":"YulFunctionCall","src":"31320:32:125"},"nativeSrc":"31317:52:125","nodeType":"YulIf","src":"31317:52:125"},{"nativeSrc":"31378:26:125","nodeType":"YulAssignment","src":"31378:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"31394:9:125","nodeType":"YulIdentifier","src":"31394:9:125"}],"functionName":{"name":"mload","nativeSrc":"31388:5:125","nodeType":"YulIdentifier","src":"31388:5:125"},"nativeSrc":"31388:16:125","nodeType":"YulFunctionCall","src":"31388:16:125"},"variableNames":[{"name":"value0","nativeSrc":"31378:6:125","nodeType":"YulIdentifier","src":"31378:6:125"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"31226:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31273:9:125","nodeType":"YulTypedName","src":"31273:9:125","type":""},{"name":"dataEnd","nativeSrc":"31284:7:125","nodeType":"YulTypedName","src":"31284:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"31296:6:125","nodeType":"YulTypedName","src":"31296:6:125","type":""}],"src":"31226:184:125"},{"body":{"nativeSrc":"31560:173:125","nodeType":"YulBlock","src":"31560:173:125","statements":[{"nativeSrc":"31570:26:125","nodeType":"YulAssignment","src":"31570:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"31582:9:125","nodeType":"YulIdentifier","src":"31582:9:125"},{"kind":"number","nativeSrc":"31593:2:125","nodeType":"YulLiteral","src":"31593:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31578:3:125","nodeType":"YulIdentifier","src":"31578:3:125"},"nativeSrc":"31578:18:125","nodeType":"YulFunctionCall","src":"31578:18:125"},"variableNames":[{"name":"tail","nativeSrc":"31570:4:125","nodeType":"YulIdentifier","src":"31570:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"31643:6:125","nodeType":"YulIdentifier","src":"31643:6:125"}],"functionName":{"name":"validator_assert_enum_ComponentStatus","nativeSrc":"31605:37:125","nodeType":"YulIdentifier","src":"31605:37:125"},"nativeSrc":"31605:45:125","nodeType":"YulFunctionCall","src":"31605:45:125"},"nativeSrc":"31605:45:125","nodeType":"YulExpressionStatement","src":"31605:45:125"},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31666:9:125","nodeType":"YulIdentifier","src":"31666:9:125"},{"name":"value0","nativeSrc":"31677:6:125","nodeType":"YulIdentifier","src":"31677:6:125"}],"functionName":{"name":"mstore","nativeSrc":"31659:6:125","nodeType":"YulIdentifier","src":"31659:6:125"},"nativeSrc":"31659:25:125","nodeType":"YulFunctionCall","src":"31659:25:125"},"nativeSrc":"31659:25:125","nodeType":"YulExpressionStatement","src":"31659:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31704:9:125","nodeType":"YulIdentifier","src":"31704:9:125"},{"kind":"number","nativeSrc":"31715:2:125","nodeType":"YulLiteral","src":"31715:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"31700:3:125","nodeType":"YulIdentifier","src":"31700:3:125"},"nativeSrc":"31700:18:125","nodeType":"YulFunctionCall","src":"31700:18:125"},{"name":"value1","nativeSrc":"31720:6:125","nodeType":"YulIdentifier","src":"31720:6:125"}],"functionName":{"name":"mstore","nativeSrc":"31693:6:125","nodeType":"YulIdentifier","src":"31693:6:125"},"nativeSrc":"31693:34:125","nodeType":"YulFunctionCall","src":"31693:34:125"},"nativeSrc":"31693:34:125","nodeType":"YulExpressionStatement","src":"31693:34:125"}]},"name":"abi_encode_tuple_t_enum$_ComponentKind_$8398_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"31415:318:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31521:9:125","nodeType":"YulTypedName","src":"31521:9:125","type":""},{"name":"value1","nativeSrc":"31532:6:125","nodeType":"YulTypedName","src":"31532:6:125","type":""},{"name":"value0","nativeSrc":"31540:6:125","nodeType":"YulTypedName","src":"31540:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31551:4:125","nodeType":"YulTypedName","src":"31551:4:125","type":""}],"src":"31415:318:125"},{"body":{"nativeSrc":"31883:214:125","nodeType":"YulBlock","src":"31883:214:125","statements":[{"nativeSrc":"31893:26:125","nodeType":"YulAssignment","src":"31893:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"31905:9:125","nodeType":"YulIdentifier","src":"31905:9:125"},{"kind":"number","nativeSrc":"31916:2:125","nodeType":"YulLiteral","src":"31916:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31901:3:125","nodeType":"YulIdentifier","src":"31901:3:125"},"nativeSrc":"31901:18:125","nodeType":"YulFunctionCall","src":"31901:18:125"},"variableNames":[{"name":"tail","nativeSrc":"31893:4:125","nodeType":"YulIdentifier","src":"31893:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"31966:6:125","nodeType":"YulIdentifier","src":"31966:6:125"}],"functionName":{"name":"validator_assert_enum_ComponentStatus","nativeSrc":"31928:37:125","nodeType":"YulIdentifier","src":"31928:37:125"},"nativeSrc":"31928:45:125","nodeType":"YulFunctionCall","src":"31928:45:125"},"nativeSrc":"31928:45:125","nodeType":"YulExpressionStatement","src":"31928:45:125"},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31989:9:125","nodeType":"YulIdentifier","src":"31989:9:125"},{"name":"value0","nativeSrc":"32000:6:125","nodeType":"YulIdentifier","src":"32000:6:125"}],"functionName":{"name":"mstore","nativeSrc":"31982:6:125","nodeType":"YulIdentifier","src":"31982:6:125"},"nativeSrc":"31982:25:125","nodeType":"YulFunctionCall","src":"31982:25:125"},"nativeSrc":"31982:25:125","nodeType":"YulExpressionStatement","src":"31982:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32027:9:125","nodeType":"YulIdentifier","src":"32027:9:125"},{"kind":"number","nativeSrc":"32038:2:125","nodeType":"YulLiteral","src":"32038:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32023:3:125","nodeType":"YulIdentifier","src":"32023:3:125"},"nativeSrc":"32023:18:125","nodeType":"YulFunctionCall","src":"32023:18:125"},{"arguments":[{"name":"value1","nativeSrc":"32047:6:125","nodeType":"YulIdentifier","src":"32047:6:125"},{"kind":"number","nativeSrc":"32055:34:125","nodeType":"YulLiteral","src":"32055:34:125","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"32043:3:125","nodeType":"YulIdentifier","src":"32043:3:125"},"nativeSrc":"32043:47:125","nodeType":"YulFunctionCall","src":"32043:47:125"}],"functionName":{"name":"mstore","nativeSrc":"32016:6:125","nodeType":"YulIdentifier","src":"32016:6:125"},"nativeSrc":"32016:75:125","nodeType":"YulFunctionCall","src":"32016:75:125"},"nativeSrc":"32016:75:125","nodeType":"YulExpressionStatement","src":"32016:75:125"}]},"name":"abi_encode_tuple_t_enum$_ComponentKind_$8398_t_uint128__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"31738:359:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31844:9:125","nodeType":"YulTypedName","src":"31844:9:125","type":""},{"name":"value1","nativeSrc":"31855:6:125","nodeType":"YulTypedName","src":"31855:6:125","type":""},{"name":"value0","nativeSrc":"31863:6:125","nodeType":"YulTypedName","src":"31863:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31874:4:125","nodeType":"YulTypedName","src":"31874:4:125","type":""}],"src":"31738:359:125"},{"body":{"nativeSrc":"32231:201:125","nodeType":"YulBlock","src":"32231:201:125","statements":[{"nativeSrc":"32241:26:125","nodeType":"YulAssignment","src":"32241:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"32253:9:125","nodeType":"YulIdentifier","src":"32253:9:125"},{"kind":"number","nativeSrc":"32264:2:125","nodeType":"YulLiteral","src":"32264:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"32249:3:125","nodeType":"YulIdentifier","src":"32249:3:125"},"nativeSrc":"32249:18:125","nodeType":"YulFunctionCall","src":"32249:18:125"},"variableNames":[{"name":"tail","nativeSrc":"32241:4:125","nodeType":"YulIdentifier","src":"32241:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"32283:9:125","nodeType":"YulIdentifier","src":"32283:9:125"},{"arguments":[{"name":"value0","nativeSrc":"32298:6:125","nodeType":"YulIdentifier","src":"32298:6:125"},{"kind":"number","nativeSrc":"32306:34:125","nodeType":"YulLiteral","src":"32306:34:125","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"32294:3:125","nodeType":"YulIdentifier","src":"32294:3:125"},"nativeSrc":"32294:47:125","nodeType":"YulFunctionCall","src":"32294:47:125"}],"functionName":{"name":"mstore","nativeSrc":"32276:6:125","nodeType":"YulIdentifier","src":"32276:6:125"},"nativeSrc":"32276:66:125","nodeType":"YulFunctionCall","src":"32276:66:125"},"nativeSrc":"32276:66:125","nodeType":"YulExpressionStatement","src":"32276:66:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32362:9:125","nodeType":"YulIdentifier","src":"32362:9:125"},{"kind":"number","nativeSrc":"32373:2:125","nodeType":"YulLiteral","src":"32373:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32358:3:125","nodeType":"YulIdentifier","src":"32358:3:125"},"nativeSrc":"32358:18:125","nodeType":"YulFunctionCall","src":"32358:18:125"},{"arguments":[{"name":"value1","nativeSrc":"32382:6:125","nodeType":"YulIdentifier","src":"32382:6:125"},{"kind":"number","nativeSrc":"32390:34:125","nodeType":"YulLiteral","src":"32390:34:125","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"32378:3:125","nodeType":"YulIdentifier","src":"32378:3:125"},"nativeSrc":"32378:47:125","nodeType":"YulFunctionCall","src":"32378:47:125"}],"functionName":{"name":"mstore","nativeSrc":"32351:6:125","nodeType":"YulIdentifier","src":"32351:6:125"},"nativeSrc":"32351:75:125","nodeType":"YulFunctionCall","src":"32351:75:125"},"nativeSrc":"32351:75:125","nodeType":"YulExpressionStatement","src":"32351:75:125"}]},"name":"abi_encode_tuple_t_uint128_t_uint128__to_t_uint128_t_uint128__fromStack_reversed","nativeSrc":"32102:330:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32192:9:125","nodeType":"YulTypedName","src":"32192:9:125","type":""},{"name":"value1","nativeSrc":"32203:6:125","nodeType":"YulTypedName","src":"32203:6:125","type":""},{"name":"value0","nativeSrc":"32211:6:125","nodeType":"YulTypedName","src":"32211:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"32222:4:125","nodeType":"YulTypedName","src":"32222:4:125","type":""}],"src":"32102:330:125"},{"body":{"nativeSrc":"32567:201:125","nodeType":"YulBlock","src":"32567:201:125","statements":[{"body":{"nativeSrc":"32605:16:125","nodeType":"YulBlock","src":"32605:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32614:1:125","nodeType":"YulLiteral","src":"32614:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"32617:1:125","nodeType":"YulLiteral","src":"32617:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"32607:6:125","nodeType":"YulIdentifier","src":"32607:6:125"},"nativeSrc":"32607:12:125","nodeType":"YulFunctionCall","src":"32607:12:125"},"nativeSrc":"32607:12:125","nodeType":"YulExpressionStatement","src":"32607:12:125"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"32583:10:125","nodeType":"YulIdentifier","src":"32583:10:125"},{"name":"endIndex","nativeSrc":"32595:8:125","nodeType":"YulIdentifier","src":"32595:8:125"}],"functionName":{"name":"gt","nativeSrc":"32580:2:125","nodeType":"YulIdentifier","src":"32580:2:125"},"nativeSrc":"32580:24:125","nodeType":"YulFunctionCall","src":"32580:24:125"},"nativeSrc":"32577:44:125","nodeType":"YulIf","src":"32577:44:125"},{"body":{"nativeSrc":"32654:16:125","nodeType":"YulBlock","src":"32654:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32663:1:125","nodeType":"YulLiteral","src":"32663:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"32666:1:125","nodeType":"YulLiteral","src":"32666:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"32656:6:125","nodeType":"YulIdentifier","src":"32656:6:125"},"nativeSrc":"32656:12:125","nodeType":"YulFunctionCall","src":"32656:12:125"},"nativeSrc":"32656:12:125","nodeType":"YulExpressionStatement","src":"32656:12:125"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"32636:8:125","nodeType":"YulIdentifier","src":"32636:8:125"},{"name":"length","nativeSrc":"32646:6:125","nodeType":"YulIdentifier","src":"32646:6:125"}],"functionName":{"name":"gt","nativeSrc":"32633:2:125","nodeType":"YulIdentifier","src":"32633:2:125"},"nativeSrc":"32633:20:125","nodeType":"YulFunctionCall","src":"32633:20:125"},"nativeSrc":"32630:40:125","nodeType":"YulIf","src":"32630:40:125"},{"nativeSrc":"32679:36:125","nodeType":"YulAssignment","src":"32679:36:125","value":{"arguments":[{"name":"offset","nativeSrc":"32696:6:125","nodeType":"YulIdentifier","src":"32696:6:125"},{"name":"startIndex","nativeSrc":"32704:10:125","nodeType":"YulIdentifier","src":"32704:10:125"}],"functionName":{"name":"add","nativeSrc":"32692:3:125","nodeType":"YulIdentifier","src":"32692:3:125"},"nativeSrc":"32692:23:125","nodeType":"YulFunctionCall","src":"32692:23:125"},"variableNames":[{"name":"offsetOut","nativeSrc":"32679:9:125","nodeType":"YulIdentifier","src":"32679:9:125"}]},{"nativeSrc":"32724:38:125","nodeType":"YulAssignment","src":"32724:38:125","value":{"arguments":[{"name":"endIndex","nativeSrc":"32741:8:125","nodeType":"YulIdentifier","src":"32741:8:125"},{"name":"startIndex","nativeSrc":"32751:10:125","nodeType":"YulIdentifier","src":"32751:10:125"}],"functionName":{"name":"sub","nativeSrc":"32737:3:125","nodeType":"YulIdentifier","src":"32737:3:125"},"nativeSrc":"32737:25:125","nodeType":"YulFunctionCall","src":"32737:25:125"},"variableNames":[{"name":"lengthOut","nativeSrc":"32724:9:125","nodeType":"YulIdentifier","src":"32724:9:125"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"32437:331:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"32501:6:125","nodeType":"YulTypedName","src":"32501:6:125","type":""},{"name":"length","nativeSrc":"32509:6:125","nodeType":"YulTypedName","src":"32509:6:125","type":""},{"name":"startIndex","nativeSrc":"32517:10:125","nodeType":"YulTypedName","src":"32517:10:125","type":""},{"name":"endIndex","nativeSrc":"32529:8:125","nodeType":"YulTypedName","src":"32529:8:125","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"32542:9:125","nodeType":"YulTypedName","src":"32542:9:125","type":""},{"name":"lengthOut","nativeSrc":"32553:9:125","nodeType":"YulTypedName","src":"32553:9:125","type":""}],"src":"32437:331:125"},{"body":{"nativeSrc":"32805:95:125","nodeType":"YulBlock","src":"32805:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32822:1:125","nodeType":"YulLiteral","src":"32822:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"32829:3:125","nodeType":"YulLiteral","src":"32829:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"32834:10:125","nodeType":"YulLiteral","src":"32834:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"32825:3:125","nodeType":"YulIdentifier","src":"32825:3:125"},"nativeSrc":"32825:20:125","nodeType":"YulFunctionCall","src":"32825:20:125"}],"functionName":{"name":"mstore","nativeSrc":"32815:6:125","nodeType":"YulIdentifier","src":"32815:6:125"},"nativeSrc":"32815:31:125","nodeType":"YulFunctionCall","src":"32815:31:125"},"nativeSrc":"32815:31:125","nodeType":"YulExpressionStatement","src":"32815:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"32862:1:125","nodeType":"YulLiteral","src":"32862:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"32865:4:125","nodeType":"YulLiteral","src":"32865:4:125","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"32855:6:125","nodeType":"YulIdentifier","src":"32855:6:125"},"nativeSrc":"32855:15:125","nodeType":"YulFunctionCall","src":"32855:15:125"},"nativeSrc":"32855:15:125","nodeType":"YulExpressionStatement","src":"32855:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"32886:1:125","nodeType":"YulLiteral","src":"32886:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"32889:4:125","nodeType":"YulLiteral","src":"32889:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"32879:6:125","nodeType":"YulIdentifier","src":"32879:6:125"},"nativeSrc":"32879:15:125","nodeType":"YulFunctionCall","src":"32879:15:125"},"nativeSrc":"32879:15:125","nodeType":"YulExpressionStatement","src":"32879:15:125"}]},"name":"panic_error_0x32","nativeSrc":"32773:127:125","nodeType":"YulFunctionDefinition","src":"32773:127:125"},{"body":{"nativeSrc":"32999:427:125","nodeType":"YulBlock","src":"32999:427:125","statements":[{"nativeSrc":"33009:51:125","nodeType":"YulVariableDeclaration","src":"33009:51:125","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"33048:11:125","nodeType":"YulIdentifier","src":"33048:11:125"}],"functionName":{"name":"calldataload","nativeSrc":"33035:12:125","nodeType":"YulIdentifier","src":"33035:12:125"},"nativeSrc":"33035:25:125","nodeType":"YulFunctionCall","src":"33035:25:125"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"33013:18:125","nodeType":"YulTypedName","src":"33013:18:125","type":""}]},{"body":{"nativeSrc":"33149:16:125","nodeType":"YulBlock","src":"33149:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"33158:1:125","nodeType":"YulLiteral","src":"33158:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"33161:1:125","nodeType":"YulLiteral","src":"33161:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"33151:6:125","nodeType":"YulIdentifier","src":"33151:6:125"},"nativeSrc":"33151:12:125","nodeType":"YulFunctionCall","src":"33151:12:125"},"nativeSrc":"33151:12:125","nodeType":"YulExpressionStatement","src":"33151:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"33083:18:125","nodeType":"YulIdentifier","src":"33083:18:125"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"33111:12:125","nodeType":"YulIdentifier","src":"33111:12:125"},"nativeSrc":"33111:14:125","nodeType":"YulFunctionCall","src":"33111:14:125"},{"name":"base_ref","nativeSrc":"33127:8:125","nodeType":"YulIdentifier","src":"33127:8:125"}],"functionName":{"name":"sub","nativeSrc":"33107:3:125","nodeType":"YulIdentifier","src":"33107:3:125"},"nativeSrc":"33107:29:125","nodeType":"YulFunctionCall","src":"33107:29:125"},{"arguments":[{"kind":"number","nativeSrc":"33142:2:125","nodeType":"YulLiteral","src":"33142:2:125","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"33138:3:125","nodeType":"YulIdentifier","src":"33138:3:125"},"nativeSrc":"33138:7:125","nodeType":"YulFunctionCall","src":"33138:7:125"}],"functionName":{"name":"add","nativeSrc":"33103:3:125","nodeType":"YulIdentifier","src":"33103:3:125"},"nativeSrc":"33103:43:125","nodeType":"YulFunctionCall","src":"33103:43:125"}],"functionName":{"name":"slt","nativeSrc":"33079:3:125","nodeType":"YulIdentifier","src":"33079:3:125"},"nativeSrc":"33079:68:125","nodeType":"YulFunctionCall","src":"33079:68:125"}],"functionName":{"name":"iszero","nativeSrc":"33072:6:125","nodeType":"YulIdentifier","src":"33072:6:125"},"nativeSrc":"33072:76:125","nodeType":"YulFunctionCall","src":"33072:76:125"},"nativeSrc":"33069:96:125","nodeType":"YulIf","src":"33069:96:125"},{"nativeSrc":"33174:47:125","nodeType":"YulVariableDeclaration","src":"33174:47:125","value":{"arguments":[{"name":"base_ref","nativeSrc":"33192:8:125","nodeType":"YulIdentifier","src":"33192:8:125"},{"name":"rel_offset_of_tail","nativeSrc":"33202:18:125","nodeType":"YulIdentifier","src":"33202:18:125"}],"functionName":{"name":"add","nativeSrc":"33188:3:125","nodeType":"YulIdentifier","src":"33188:3:125"},"nativeSrc":"33188:33:125","nodeType":"YulFunctionCall","src":"33188:33:125"},"variables":[{"name":"addr_1","nativeSrc":"33178:6:125","nodeType":"YulTypedName","src":"33178:6:125","type":""}]},{"nativeSrc":"33230:30:125","nodeType":"YulAssignment","src":"33230:30:125","value":{"arguments":[{"name":"addr_1","nativeSrc":"33253:6:125","nodeType":"YulIdentifier","src":"33253:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"33240:12:125","nodeType":"YulIdentifier","src":"33240:12:125"},"nativeSrc":"33240:20:125","nodeType":"YulFunctionCall","src":"33240:20:125"},"variableNames":[{"name":"length","nativeSrc":"33230:6:125","nodeType":"YulIdentifier","src":"33230:6:125"}]},{"body":{"nativeSrc":"33303:16:125","nodeType":"YulBlock","src":"33303:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"33312:1:125","nodeType":"YulLiteral","src":"33312:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"33315:1:125","nodeType":"YulLiteral","src":"33315:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"33305:6:125","nodeType":"YulIdentifier","src":"33305:6:125"},"nativeSrc":"33305:12:125","nodeType":"YulFunctionCall","src":"33305:12:125"},"nativeSrc":"33305:12:125","nodeType":"YulExpressionStatement","src":"33305:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"33275:6:125","nodeType":"YulIdentifier","src":"33275:6:125"},{"kind":"number","nativeSrc":"33283:18:125","nodeType":"YulLiteral","src":"33283:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"33272:2:125","nodeType":"YulIdentifier","src":"33272:2:125"},"nativeSrc":"33272:30:125","nodeType":"YulFunctionCall","src":"33272:30:125"},"nativeSrc":"33269:50:125","nodeType":"YulIf","src":"33269:50:125"},{"nativeSrc":"33328:25:125","nodeType":"YulAssignment","src":"33328:25:125","value":{"arguments":[{"name":"addr_1","nativeSrc":"33340:6:125","nodeType":"YulIdentifier","src":"33340:6:125"},{"kind":"number","nativeSrc":"33348:4:125","nodeType":"YulLiteral","src":"33348:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"33336:3:125","nodeType":"YulIdentifier","src":"33336:3:125"},"nativeSrc":"33336:17:125","nodeType":"YulFunctionCall","src":"33336:17:125"},"variableNames":[{"name":"addr","nativeSrc":"33328:4:125","nodeType":"YulIdentifier","src":"33328:4:125"}]},{"body":{"nativeSrc":"33404:16:125","nodeType":"YulBlock","src":"33404:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"33413:1:125","nodeType":"YulLiteral","src":"33413:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"33416:1:125","nodeType":"YulLiteral","src":"33416:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"33406:6:125","nodeType":"YulIdentifier","src":"33406:6:125"},"nativeSrc":"33406:12:125","nodeType":"YulFunctionCall","src":"33406:12:125"},"nativeSrc":"33406:12:125","nodeType":"YulExpressionStatement","src":"33406:12:125"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"33369:4:125","nodeType":"YulIdentifier","src":"33369:4:125"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"33379:12:125","nodeType":"YulIdentifier","src":"33379:12:125"},"nativeSrc":"33379:14:125","nodeType":"YulFunctionCall","src":"33379:14:125"},{"name":"length","nativeSrc":"33395:6:125","nodeType":"YulIdentifier","src":"33395:6:125"}],"functionName":{"name":"sub","nativeSrc":"33375:3:125","nodeType":"YulIdentifier","src":"33375:3:125"},"nativeSrc":"33375:27:125","nodeType":"YulFunctionCall","src":"33375:27:125"}],"functionName":{"name":"sgt","nativeSrc":"33365:3:125","nodeType":"YulIdentifier","src":"33365:3:125"},"nativeSrc":"33365:38:125","nodeType":"YulFunctionCall","src":"33365:38:125"},"nativeSrc":"33362:58:125","nodeType":"YulIf","src":"33362:58:125"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"32905:521:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"32956:8:125","nodeType":"YulTypedName","src":"32956:8:125","type":""},{"name":"ptr_to_tail","nativeSrc":"32966:11:125","nodeType":"YulTypedName","src":"32966:11:125","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"32982:4:125","nodeType":"YulTypedName","src":"32982:4:125","type":""},{"name":"length","nativeSrc":"32988:6:125","nodeType":"YulTypedName","src":"32988:6:125","type":""}],"src":"32905:521:125"},{"body":{"nativeSrc":"33480:162:125","nodeType":"YulBlock","src":"33480:162:125","statements":[{"nativeSrc":"33490:26:125","nodeType":"YulVariableDeclaration","src":"33490:26:125","value":{"arguments":[{"name":"value","nativeSrc":"33510:5:125","nodeType":"YulIdentifier","src":"33510:5:125"}],"functionName":{"name":"mload","nativeSrc":"33504:5:125","nodeType":"YulIdentifier","src":"33504:5:125"},"nativeSrc":"33504:12:125","nodeType":"YulFunctionCall","src":"33504:12:125"},"variables":[{"name":"length","nativeSrc":"33494:6:125","nodeType":"YulTypedName","src":"33494:6:125","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"33531:3:125","nodeType":"YulIdentifier","src":"33531:3:125"},{"arguments":[{"name":"value","nativeSrc":"33540:5:125","nodeType":"YulIdentifier","src":"33540:5:125"},{"kind":"number","nativeSrc":"33547:4:125","nodeType":"YulLiteral","src":"33547:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"33536:3:125","nodeType":"YulIdentifier","src":"33536:3:125"},"nativeSrc":"33536:16:125","nodeType":"YulFunctionCall","src":"33536:16:125"},{"name":"length","nativeSrc":"33554:6:125","nodeType":"YulIdentifier","src":"33554:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"33525:5:125","nodeType":"YulIdentifier","src":"33525:5:125"},"nativeSrc":"33525:36:125","nodeType":"YulFunctionCall","src":"33525:36:125"},"nativeSrc":"33525:36:125","nodeType":"YulExpressionStatement","src":"33525:36:125"},{"nativeSrc":"33570:26:125","nodeType":"YulVariableDeclaration","src":"33570:26:125","value":{"arguments":[{"name":"pos","nativeSrc":"33584:3:125","nodeType":"YulIdentifier","src":"33584:3:125"},{"name":"length","nativeSrc":"33589:6:125","nodeType":"YulIdentifier","src":"33589:6:125"}],"functionName":{"name":"add","nativeSrc":"33580:3:125","nodeType":"YulIdentifier","src":"33580:3:125"},"nativeSrc":"33580:16:125","nodeType":"YulFunctionCall","src":"33580:16:125"},"variables":[{"name":"_1","nativeSrc":"33574:2:125","nodeType":"YulTypedName","src":"33574:2:125","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"33612:2:125","nodeType":"YulIdentifier","src":"33612:2:125"},{"kind":"number","nativeSrc":"33616:1:125","nodeType":"YulLiteral","src":"33616:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"33605:6:125","nodeType":"YulIdentifier","src":"33605:6:125"},"nativeSrc":"33605:13:125","nodeType":"YulFunctionCall","src":"33605:13:125"},"nativeSrc":"33605:13:125","nodeType":"YulExpressionStatement","src":"33605:13:125"},{"nativeSrc":"33627:9:125","nodeType":"YulAssignment","src":"33627:9:125","value":{"name":"_1","nativeSrc":"33634:2:125","nodeType":"YulIdentifier","src":"33634:2:125"},"variableNames":[{"name":"end","nativeSrc":"33627:3:125","nodeType":"YulIdentifier","src":"33627:3:125"}]}]},"name":"abi_encode_bytes","nativeSrc":"33431:211:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"33457:5:125","nodeType":"YulTypedName","src":"33457:5:125","type":""},{"name":"pos","nativeSrc":"33464:3:125","nodeType":"YulTypedName","src":"33464:3:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"33472:3:125","nodeType":"YulTypedName","src":"33472:3:125","type":""}],"src":"33431:211:125"},{"body":{"nativeSrc":"33840:150:125","nodeType":"YulBlock","src":"33840:150:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"33863:3:125","nodeType":"YulIdentifier","src":"33863:3:125"},{"name":"value0","nativeSrc":"33868:6:125","nodeType":"YulIdentifier","src":"33868:6:125"},{"name":"value1","nativeSrc":"33876:6:125","nodeType":"YulIdentifier","src":"33876:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"33850:12:125","nodeType":"YulIdentifier","src":"33850:12:125"},"nativeSrc":"33850:33:125","nodeType":"YulFunctionCall","src":"33850:33:125"},"nativeSrc":"33850:33:125","nodeType":"YulExpressionStatement","src":"33850:33:125"},{"nativeSrc":"33892:26:125","nodeType":"YulVariableDeclaration","src":"33892:26:125","value":{"arguments":[{"name":"pos","nativeSrc":"33906:3:125","nodeType":"YulIdentifier","src":"33906:3:125"},{"name":"value1","nativeSrc":"33911:6:125","nodeType":"YulIdentifier","src":"33911:6:125"}],"functionName":{"name":"add","nativeSrc":"33902:3:125","nodeType":"YulIdentifier","src":"33902:3:125"},"nativeSrc":"33902:16:125","nodeType":"YulFunctionCall","src":"33902:16:125"},"variables":[{"name":"_1","nativeSrc":"33896:2:125","nodeType":"YulTypedName","src":"33896:2:125","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"33934:2:125","nodeType":"YulIdentifier","src":"33934:2:125"},{"kind":"number","nativeSrc":"33938:1:125","nodeType":"YulLiteral","src":"33938:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"33927:6:125","nodeType":"YulIdentifier","src":"33927:6:125"},"nativeSrc":"33927:13:125","nodeType":"YulFunctionCall","src":"33927:13:125"},"nativeSrc":"33927:13:125","nodeType":"YulExpressionStatement","src":"33927:13:125"},{"nativeSrc":"33949:35:125","nodeType":"YulAssignment","src":"33949:35:125","value":{"arguments":[{"name":"value2","nativeSrc":"33973:6:125","nodeType":"YulIdentifier","src":"33973:6:125"},{"name":"_1","nativeSrc":"33981:2:125","nodeType":"YulIdentifier","src":"33981:2:125"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"33956:16:125","nodeType":"YulIdentifier","src":"33956:16:125"},"nativeSrc":"33956:28:125","nodeType":"YulFunctionCall","src":"33956:28:125"},"variableNames":[{"name":"end","nativeSrc":"33949:3:125","nodeType":"YulIdentifier","src":"33949:3:125"}]}]},"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":"33647:343:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"33800:3:125","nodeType":"YulTypedName","src":"33800:3:125","type":""},{"name":"value2","nativeSrc":"33805:6:125","nodeType":"YulTypedName","src":"33805:6:125","type":""},{"name":"value1","nativeSrc":"33813:6:125","nodeType":"YulTypedName","src":"33813:6:125","type":""},{"name":"value0","nativeSrc":"33821:6:125","nodeType":"YulTypedName","src":"33821:6:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"33832:3:125","nodeType":"YulTypedName","src":"33832:3:125","type":""}],"src":"33647:343:125"},{"body":{"nativeSrc":"34182:78:125","nodeType":"YulBlock","src":"34182:78:125","statements":[{"nativeSrc":"34192:62:125","nodeType":"YulAssignment","src":"34192:62:125","value":{"arguments":[{"name":"value1","nativeSrc":"34216:6:125","nodeType":"YulIdentifier","src":"34216:6:125"},{"arguments":[{"name":"value0","nativeSrc":"34241:6:125","nodeType":"YulIdentifier","src":"34241:6:125"},{"name":"pos","nativeSrc":"34249:3:125","nodeType":"YulIdentifier","src":"34249:3:125"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"34224:16:125","nodeType":"YulIdentifier","src":"34224:16:125"},"nativeSrc":"34224:29:125","nodeType":"YulFunctionCall","src":"34224:29:125"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"34199:16:125","nodeType":"YulIdentifier","src":"34199:16:125"},"nativeSrc":"34199:55:125","nodeType":"YulFunctionCall","src":"34199:55:125"},"variableNames":[{"name":"end","nativeSrc":"34192:3:125","nodeType":"YulIdentifier","src":"34192:3:125"}]}]},"name":"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"33995:265:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"34150:3:125","nodeType":"YulTypedName","src":"34150:3:125","type":""},{"name":"value1","nativeSrc":"34155:6:125","nodeType":"YulTypedName","src":"34155:6:125","type":""},{"name":"value0","nativeSrc":"34163:6:125","nodeType":"YulTypedName","src":"34163:6:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"34174:3:125","nodeType":"YulTypedName","src":"34174:3:125","type":""}],"src":"33995:265:125"},{"body":{"nativeSrc":"34530:401:125","nodeType":"YulBlock","src":"34530:401:125","statements":[{"nativeSrc":"34540:27:125","nodeType":"YulAssignment","src":"34540:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"34552:9:125","nodeType":"YulIdentifier","src":"34552:9:125"},{"kind":"number","nativeSrc":"34563:3:125","nodeType":"YulLiteral","src":"34563:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"34548:3:125","nodeType":"YulIdentifier","src":"34548:3:125"},"nativeSrc":"34548:19:125","nodeType":"YulFunctionCall","src":"34548:19:125"},"variableNames":[{"name":"tail","nativeSrc":"34540:4:125","nodeType":"YulIdentifier","src":"34540:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"34583:9:125","nodeType":"YulIdentifier","src":"34583:9:125"},{"arguments":[{"name":"value0","nativeSrc":"34598:6:125","nodeType":"YulIdentifier","src":"34598:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34614:3:125","nodeType":"YulLiteral","src":"34614:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"34619:1:125","nodeType":"YulLiteral","src":"34619:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"34610:3:125","nodeType":"YulIdentifier","src":"34610:3:125"},"nativeSrc":"34610:11:125","nodeType":"YulFunctionCall","src":"34610:11:125"},{"kind":"number","nativeSrc":"34623:1:125","nodeType":"YulLiteral","src":"34623:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"34606:3:125","nodeType":"YulIdentifier","src":"34606:3:125"},"nativeSrc":"34606:19:125","nodeType":"YulFunctionCall","src":"34606:19:125"}],"functionName":{"name":"and","nativeSrc":"34594:3:125","nodeType":"YulIdentifier","src":"34594:3:125"},"nativeSrc":"34594:32:125","nodeType":"YulFunctionCall","src":"34594:32:125"}],"functionName":{"name":"mstore","nativeSrc":"34576:6:125","nodeType":"YulIdentifier","src":"34576:6:125"},"nativeSrc":"34576:51:125","nodeType":"YulFunctionCall","src":"34576:51:125"},"nativeSrc":"34576:51:125","nodeType":"YulExpressionStatement","src":"34576:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34647:9:125","nodeType":"YulIdentifier","src":"34647:9:125"},{"kind":"number","nativeSrc":"34658:2:125","nodeType":"YulLiteral","src":"34658:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"34643:3:125","nodeType":"YulIdentifier","src":"34643:3:125"},"nativeSrc":"34643:18:125","nodeType":"YulFunctionCall","src":"34643:18:125"},{"arguments":[{"name":"value1","nativeSrc":"34667:6:125","nodeType":"YulIdentifier","src":"34667:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34683:3:125","nodeType":"YulLiteral","src":"34683:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"34688:1:125","nodeType":"YulLiteral","src":"34688:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"34679:3:125","nodeType":"YulIdentifier","src":"34679:3:125"},"nativeSrc":"34679:11:125","nodeType":"YulFunctionCall","src":"34679:11:125"},{"kind":"number","nativeSrc":"34692:1:125","nodeType":"YulLiteral","src":"34692:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"34675:3:125","nodeType":"YulIdentifier","src":"34675:3:125"},"nativeSrc":"34675:19:125","nodeType":"YulFunctionCall","src":"34675:19:125"}],"functionName":{"name":"and","nativeSrc":"34663:3:125","nodeType":"YulIdentifier","src":"34663:3:125"},"nativeSrc":"34663:32:125","nodeType":"YulFunctionCall","src":"34663:32:125"}],"functionName":{"name":"mstore","nativeSrc":"34636:6:125","nodeType":"YulIdentifier","src":"34636:6:125"},"nativeSrc":"34636:60:125","nodeType":"YulFunctionCall","src":"34636:60:125"},"nativeSrc":"34636:60:125","nodeType":"YulExpressionStatement","src":"34636:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34716:9:125","nodeType":"YulIdentifier","src":"34716:9:125"},{"kind":"number","nativeSrc":"34727:2:125","nodeType":"YulLiteral","src":"34727:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"34712:3:125","nodeType":"YulIdentifier","src":"34712:3:125"},"nativeSrc":"34712:18:125","nodeType":"YulFunctionCall","src":"34712:18:125"},{"name":"value2","nativeSrc":"34732:6:125","nodeType":"YulIdentifier","src":"34732:6:125"}],"functionName":{"name":"mstore","nativeSrc":"34705:6:125","nodeType":"YulIdentifier","src":"34705:6:125"},"nativeSrc":"34705:34:125","nodeType":"YulFunctionCall","src":"34705:34:125"},"nativeSrc":"34705:34:125","nodeType":"YulExpressionStatement","src":"34705:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34759:9:125","nodeType":"YulIdentifier","src":"34759:9:125"},{"kind":"number","nativeSrc":"34770:2:125","nodeType":"YulLiteral","src":"34770:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"34755:3:125","nodeType":"YulIdentifier","src":"34755:3:125"},"nativeSrc":"34755:18:125","nodeType":"YulFunctionCall","src":"34755:18:125"},{"name":"value3","nativeSrc":"34775:6:125","nodeType":"YulIdentifier","src":"34775:6:125"}],"functionName":{"name":"mstore","nativeSrc":"34748:6:125","nodeType":"YulIdentifier","src":"34748:6:125"},"nativeSrc":"34748:34:125","nodeType":"YulFunctionCall","src":"34748:34:125"},"nativeSrc":"34748:34:125","nodeType":"YulExpressionStatement","src":"34748:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34802:9:125","nodeType":"YulIdentifier","src":"34802:9:125"},{"kind":"number","nativeSrc":"34813:3:125","nodeType":"YulLiteral","src":"34813:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"34798:3:125","nodeType":"YulIdentifier","src":"34798:3:125"},"nativeSrc":"34798:19:125","nodeType":"YulFunctionCall","src":"34798:19:125"},{"arguments":[{"name":"value4","nativeSrc":"34823:6:125","nodeType":"YulIdentifier","src":"34823:6:125"},{"kind":"number","nativeSrc":"34831:4:125","nodeType":"YulLiteral","src":"34831:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"34819:3:125","nodeType":"YulIdentifier","src":"34819:3:125"},"nativeSrc":"34819:17:125","nodeType":"YulFunctionCall","src":"34819:17:125"}],"functionName":{"name":"mstore","nativeSrc":"34791:6:125","nodeType":"YulIdentifier","src":"34791:6:125"},"nativeSrc":"34791:46:125","nodeType":"YulFunctionCall","src":"34791:46:125"},"nativeSrc":"34791:46:125","nodeType":"YulExpressionStatement","src":"34791:46:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34857:9:125","nodeType":"YulIdentifier","src":"34857:9:125"},{"kind":"number","nativeSrc":"34868:3:125","nodeType":"YulLiteral","src":"34868:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"34853:3:125","nodeType":"YulIdentifier","src":"34853:3:125"},"nativeSrc":"34853:19:125","nodeType":"YulFunctionCall","src":"34853:19:125"},{"name":"value5","nativeSrc":"34874:6:125","nodeType":"YulIdentifier","src":"34874:6:125"}],"functionName":{"name":"mstore","nativeSrc":"34846:6:125","nodeType":"YulIdentifier","src":"34846:6:125"},"nativeSrc":"34846:35:125","nodeType":"YulFunctionCall","src":"34846:35:125"},"nativeSrc":"34846:35:125","nodeType":"YulExpressionStatement","src":"34846:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34901:9:125","nodeType":"YulIdentifier","src":"34901:9:125"},{"kind":"number","nativeSrc":"34912:3:125","nodeType":"YulLiteral","src":"34912:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"34897:3:125","nodeType":"YulIdentifier","src":"34897:3:125"},"nativeSrc":"34897:19:125","nodeType":"YulFunctionCall","src":"34897:19:125"},{"name":"value6","nativeSrc":"34918:6:125","nodeType":"YulIdentifier","src":"34918:6:125"}],"functionName":{"name":"mstore","nativeSrc":"34890:6:125","nodeType":"YulIdentifier","src":"34890:6:125"},"nativeSrc":"34890:35:125","nodeType":"YulFunctionCall","src":"34890:35:125"},"nativeSrc":"34890:35:125","nodeType":"YulExpressionStatement","src":"34890:35:125"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"34265:666:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34451:9:125","nodeType":"YulTypedName","src":"34451:9:125","type":""},{"name":"value6","nativeSrc":"34462:6:125","nodeType":"YulTypedName","src":"34462:6:125","type":""},{"name":"value5","nativeSrc":"34470:6:125","nodeType":"YulTypedName","src":"34470:6:125","type":""},{"name":"value4","nativeSrc":"34478:6:125","nodeType":"YulTypedName","src":"34478:6:125","type":""},{"name":"value3","nativeSrc":"34486:6:125","nodeType":"YulTypedName","src":"34486:6:125","type":""},{"name":"value2","nativeSrc":"34494:6:125","nodeType":"YulTypedName","src":"34494:6:125","type":""},{"name":"value1","nativeSrc":"34502:6:125","nodeType":"YulTypedName","src":"34502:6:125","type":""},{"name":"value0","nativeSrc":"34510:6:125","nodeType":"YulTypedName","src":"34510:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"34521:4:125","nodeType":"YulTypedName","src":"34521:4:125","type":""}],"src":"34265:666:125"},{"body":{"nativeSrc":"35121:284:125","nodeType":"YulBlock","src":"35121:284:125","statements":[{"nativeSrc":"35131:27:125","nodeType":"YulAssignment","src":"35131:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"35143:9:125","nodeType":"YulIdentifier","src":"35143:9:125"},{"kind":"number","nativeSrc":"35154:3:125","nodeType":"YulLiteral","src":"35154:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"35139:3:125","nodeType":"YulIdentifier","src":"35139:3:125"},"nativeSrc":"35139:19:125","nodeType":"YulFunctionCall","src":"35139:19:125"},"variableNames":[{"name":"tail","nativeSrc":"35131:4:125","nodeType":"YulIdentifier","src":"35131:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35174:9:125","nodeType":"YulIdentifier","src":"35174:9:125"},{"name":"value0","nativeSrc":"35185:6:125","nodeType":"YulIdentifier","src":"35185:6:125"}],"functionName":{"name":"mstore","nativeSrc":"35167:6:125","nodeType":"YulIdentifier","src":"35167:6:125"},"nativeSrc":"35167:25:125","nodeType":"YulFunctionCall","src":"35167:25:125"},"nativeSrc":"35167:25:125","nodeType":"YulExpressionStatement","src":"35167:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35212:9:125","nodeType":"YulIdentifier","src":"35212:9:125"},{"kind":"number","nativeSrc":"35223:2:125","nodeType":"YulLiteral","src":"35223:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35208:3:125","nodeType":"YulIdentifier","src":"35208:3:125"},"nativeSrc":"35208:18:125","nodeType":"YulFunctionCall","src":"35208:18:125"},{"arguments":[{"name":"value1","nativeSrc":"35232:6:125","nodeType":"YulIdentifier","src":"35232:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35248:3:125","nodeType":"YulLiteral","src":"35248:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"35253:1:125","nodeType":"YulLiteral","src":"35253:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"35244:3:125","nodeType":"YulIdentifier","src":"35244:3:125"},"nativeSrc":"35244:11:125","nodeType":"YulFunctionCall","src":"35244:11:125"},{"kind":"number","nativeSrc":"35257:1:125","nodeType":"YulLiteral","src":"35257:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"35240:3:125","nodeType":"YulIdentifier","src":"35240:3:125"},"nativeSrc":"35240:19:125","nodeType":"YulFunctionCall","src":"35240:19:125"}],"functionName":{"name":"and","nativeSrc":"35228:3:125","nodeType":"YulIdentifier","src":"35228:3:125"},"nativeSrc":"35228:32:125","nodeType":"YulFunctionCall","src":"35228:32:125"}],"functionName":{"name":"mstore","nativeSrc":"35201:6:125","nodeType":"YulIdentifier","src":"35201:6:125"},"nativeSrc":"35201:60:125","nodeType":"YulFunctionCall","src":"35201:60:125"},"nativeSrc":"35201:60:125","nodeType":"YulExpressionStatement","src":"35201:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35281:9:125","nodeType":"YulIdentifier","src":"35281:9:125"},{"kind":"number","nativeSrc":"35292:2:125","nodeType":"YulLiteral","src":"35292:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35277:3:125","nodeType":"YulIdentifier","src":"35277:3:125"},"nativeSrc":"35277:18:125","nodeType":"YulFunctionCall","src":"35277:18:125"},{"arguments":[{"name":"value2","nativeSrc":"35301:6:125","nodeType":"YulIdentifier","src":"35301:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35317:3:125","nodeType":"YulLiteral","src":"35317:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"35322:1:125","nodeType":"YulLiteral","src":"35322:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"35313:3:125","nodeType":"YulIdentifier","src":"35313:3:125"},"nativeSrc":"35313:11:125","nodeType":"YulFunctionCall","src":"35313:11:125"},{"kind":"number","nativeSrc":"35326:1:125","nodeType":"YulLiteral","src":"35326:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"35309:3:125","nodeType":"YulIdentifier","src":"35309:3:125"},"nativeSrc":"35309:19:125","nodeType":"YulFunctionCall","src":"35309:19:125"}],"functionName":{"name":"and","nativeSrc":"35297:3:125","nodeType":"YulIdentifier","src":"35297:3:125"},"nativeSrc":"35297:32:125","nodeType":"YulFunctionCall","src":"35297:32:125"}],"functionName":{"name":"mstore","nativeSrc":"35270:6:125","nodeType":"YulIdentifier","src":"35270:6:125"},"nativeSrc":"35270:60:125","nodeType":"YulFunctionCall","src":"35270:60:125"},"nativeSrc":"35270:60:125","nodeType":"YulExpressionStatement","src":"35270:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35350:9:125","nodeType":"YulIdentifier","src":"35350:9:125"},{"kind":"number","nativeSrc":"35361:2:125","nodeType":"YulLiteral","src":"35361:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35346:3:125","nodeType":"YulIdentifier","src":"35346:3:125"},"nativeSrc":"35346:18:125","nodeType":"YulFunctionCall","src":"35346:18:125"},{"arguments":[{"name":"value3","nativeSrc":"35370:6:125","nodeType":"YulIdentifier","src":"35370:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35386:3:125","nodeType":"YulLiteral","src":"35386:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"35391:1:125","nodeType":"YulLiteral","src":"35391:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"35382:3:125","nodeType":"YulIdentifier","src":"35382:3:125"},"nativeSrc":"35382:11:125","nodeType":"YulFunctionCall","src":"35382:11:125"},{"kind":"number","nativeSrc":"35395:1:125","nodeType":"YulLiteral","src":"35395:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"35378:3:125","nodeType":"YulIdentifier","src":"35378:3:125"},"nativeSrc":"35378:19:125","nodeType":"YulFunctionCall","src":"35378:19:125"}],"functionName":{"name":"and","nativeSrc":"35366:3:125","nodeType":"YulIdentifier","src":"35366:3:125"},"nativeSrc":"35366:32:125","nodeType":"YulFunctionCall","src":"35366:32:125"}],"functionName":{"name":"mstore","nativeSrc":"35339:6:125","nodeType":"YulIdentifier","src":"35339:6:125"},"nativeSrc":"35339:60:125","nodeType":"YulFunctionCall","src":"35339:60:125"},"nativeSrc":"35339:60:125","nodeType":"YulExpressionStatement","src":"35339:60:125"}]},"name":"abi_encode_tuple_t_uint256_t_address_t_address_t_address__to_t_uint256_t_address_t_address_t_address__fromStack_reversed","nativeSrc":"34936:469:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35066:9:125","nodeType":"YulTypedName","src":"35066:9:125","type":""},{"name":"value3","nativeSrc":"35077:6:125","nodeType":"YulTypedName","src":"35077:6:125","type":""},{"name":"value2","nativeSrc":"35085:6:125","nodeType":"YulTypedName","src":"35085:6:125","type":""},{"name":"value1","nativeSrc":"35093:6:125","nodeType":"YulTypedName","src":"35093:6:125","type":""},{"name":"value0","nativeSrc":"35101:6:125","nodeType":"YulTypedName","src":"35101:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35112:4:125","nodeType":"YulTypedName","src":"35112:4:125","type":""}],"src":"34936:469:125"},{"body":{"nativeSrc":"35539:145:125","nodeType":"YulBlock","src":"35539:145:125","statements":[{"nativeSrc":"35549:26:125","nodeType":"YulAssignment","src":"35549:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"35561:9:125","nodeType":"YulIdentifier","src":"35561:9:125"},{"kind":"number","nativeSrc":"35572:2:125","nodeType":"YulLiteral","src":"35572:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35557:3:125","nodeType":"YulIdentifier","src":"35557:3:125"},"nativeSrc":"35557:18:125","nodeType":"YulFunctionCall","src":"35557:18:125"},"variableNames":[{"name":"tail","nativeSrc":"35549:4:125","nodeType":"YulIdentifier","src":"35549:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35591:9:125","nodeType":"YulIdentifier","src":"35591:9:125"},{"arguments":[{"name":"value0","nativeSrc":"35606:6:125","nodeType":"YulIdentifier","src":"35606:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35622:3:125","nodeType":"YulLiteral","src":"35622:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"35627:1:125","nodeType":"YulLiteral","src":"35627:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"35618:3:125","nodeType":"YulIdentifier","src":"35618:3:125"},"nativeSrc":"35618:11:125","nodeType":"YulFunctionCall","src":"35618:11:125"},{"kind":"number","nativeSrc":"35631:1:125","nodeType":"YulLiteral","src":"35631:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"35614:3:125","nodeType":"YulIdentifier","src":"35614:3:125"},"nativeSrc":"35614:19:125","nodeType":"YulFunctionCall","src":"35614:19:125"}],"functionName":{"name":"and","nativeSrc":"35602:3:125","nodeType":"YulIdentifier","src":"35602:3:125"},"nativeSrc":"35602:32:125","nodeType":"YulFunctionCall","src":"35602:32:125"}],"functionName":{"name":"mstore","nativeSrc":"35584:6:125","nodeType":"YulIdentifier","src":"35584:6:125"},"nativeSrc":"35584:51:125","nodeType":"YulFunctionCall","src":"35584:51:125"},"nativeSrc":"35584:51:125","nodeType":"YulExpressionStatement","src":"35584:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35655:9:125","nodeType":"YulIdentifier","src":"35655:9:125"},{"kind":"number","nativeSrc":"35666:2:125","nodeType":"YulLiteral","src":"35666:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35651:3:125","nodeType":"YulIdentifier","src":"35651:3:125"},"nativeSrc":"35651:18:125","nodeType":"YulFunctionCall","src":"35651:18:125"},{"name":"value1","nativeSrc":"35671:6:125","nodeType":"YulIdentifier","src":"35671:6:125"}],"functionName":{"name":"mstore","nativeSrc":"35644:6:125","nodeType":"YulIdentifier","src":"35644:6:125"},"nativeSrc":"35644:34:125","nodeType":"YulFunctionCall","src":"35644:34:125"},"nativeSrc":"35644:34:125","nodeType":"YulExpressionStatement","src":"35644:34:125"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"35410:274:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35500:9:125","nodeType":"YulTypedName","src":"35500:9:125","type":""},{"name":"value1","nativeSrc":"35511:6:125","nodeType":"YulTypedName","src":"35511:6:125","type":""},{"name":"value0","nativeSrc":"35519:6:125","nodeType":"YulTypedName","src":"35519:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35530:4:125","nodeType":"YulTypedName","src":"35530:4:125","type":""}],"src":"35410:274:125"},{"body":{"nativeSrc":"35844:181:125","nodeType":"YulBlock","src":"35844:181:125","statements":[{"nativeSrc":"35854:26:125","nodeType":"YulAssignment","src":"35854:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"35866:9:125","nodeType":"YulIdentifier","src":"35866:9:125"},{"kind":"number","nativeSrc":"35877:2:125","nodeType":"YulLiteral","src":"35877:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35862:3:125","nodeType":"YulIdentifier","src":"35862:3:125"},"nativeSrc":"35862:18:125","nodeType":"YulFunctionCall","src":"35862:18:125"},"variableNames":[{"name":"tail","nativeSrc":"35854:4:125","nodeType":"YulIdentifier","src":"35854:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35896:9:125","nodeType":"YulIdentifier","src":"35896:9:125"},{"name":"value0","nativeSrc":"35907:6:125","nodeType":"YulIdentifier","src":"35907:6:125"}],"functionName":{"name":"mstore","nativeSrc":"35889:6:125","nodeType":"YulIdentifier","src":"35889:6:125"},"nativeSrc":"35889:25:125","nodeType":"YulFunctionCall","src":"35889:25:125"},"nativeSrc":"35889:25:125","nodeType":"YulExpressionStatement","src":"35889:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35934:9:125","nodeType":"YulIdentifier","src":"35934:9:125"},{"kind":"number","nativeSrc":"35945:2:125","nodeType":"YulLiteral","src":"35945:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35930:3:125","nodeType":"YulIdentifier","src":"35930:3:125"},"nativeSrc":"35930:18:125","nodeType":"YulFunctionCall","src":"35930:18:125"},{"arguments":[{"name":"value1","nativeSrc":"35954:6:125","nodeType":"YulIdentifier","src":"35954:6:125"},{"kind":"number","nativeSrc":"35962:12:125","nodeType":"YulLiteral","src":"35962:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"35950:3:125","nodeType":"YulIdentifier","src":"35950:3:125"},"nativeSrc":"35950:25:125","nodeType":"YulFunctionCall","src":"35950:25:125"}],"functionName":{"name":"mstore","nativeSrc":"35923:6:125","nodeType":"YulIdentifier","src":"35923:6:125"},"nativeSrc":"35923:53:125","nodeType":"YulFunctionCall","src":"35923:53:125"},"nativeSrc":"35923:53:125","nodeType":"YulExpressionStatement","src":"35923:53:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35996:9:125","nodeType":"YulIdentifier","src":"35996:9:125"},{"kind":"number","nativeSrc":"36007:2:125","nodeType":"YulLiteral","src":"36007:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35992:3:125","nodeType":"YulIdentifier","src":"35992:3:125"},"nativeSrc":"35992:18:125","nodeType":"YulFunctionCall","src":"35992:18:125"},{"name":"value2","nativeSrc":"36012:6:125","nodeType":"YulIdentifier","src":"36012:6:125"}],"functionName":{"name":"mstore","nativeSrc":"35985:6:125","nodeType":"YulIdentifier","src":"35985:6:125"},"nativeSrc":"35985:34:125","nodeType":"YulFunctionCall","src":"35985:34:125"},"nativeSrc":"35985:34:125","nodeType":"YulExpressionStatement","src":"35985:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint40_t_uint256__to_t_uint256_t_uint40_t_uint256__fromStack_reversed","nativeSrc":"35689:336:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35797:9:125","nodeType":"YulTypedName","src":"35797:9:125","type":""},{"name":"value2","nativeSrc":"35808:6:125","nodeType":"YulTypedName","src":"35808:6:125","type":""},{"name":"value1","nativeSrc":"35816:6:125","nodeType":"YulTypedName","src":"35816:6:125","type":""},{"name":"value0","nativeSrc":"35824:6:125","nodeType":"YulTypedName","src":"35824:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35835:4:125","nodeType":"YulTypedName","src":"35835:4:125","type":""}],"src":"35689:336:125"},{"body":{"nativeSrc":"36078:77:125","nodeType":"YulBlock","src":"36078:77:125","statements":[{"nativeSrc":"36088:16:125","nodeType":"YulAssignment","src":"36088:16:125","value":{"arguments":[{"name":"x","nativeSrc":"36099:1:125","nodeType":"YulIdentifier","src":"36099:1:125"},{"name":"y","nativeSrc":"36102:1:125","nodeType":"YulIdentifier","src":"36102:1:125"}],"functionName":{"name":"add","nativeSrc":"36095:3:125","nodeType":"YulIdentifier","src":"36095:3:125"},"nativeSrc":"36095:9:125","nodeType":"YulFunctionCall","src":"36095:9:125"},"variableNames":[{"name":"sum","nativeSrc":"36088:3:125","nodeType":"YulIdentifier","src":"36088:3:125"}]},{"body":{"nativeSrc":"36127:22:125","nodeType":"YulBlock","src":"36127:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"36129:16:125","nodeType":"YulIdentifier","src":"36129:16:125"},"nativeSrc":"36129:18:125","nodeType":"YulFunctionCall","src":"36129:18:125"},"nativeSrc":"36129:18:125","nodeType":"YulExpressionStatement","src":"36129:18:125"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"36119:1:125","nodeType":"YulIdentifier","src":"36119:1:125"},{"name":"sum","nativeSrc":"36122:3:125","nodeType":"YulIdentifier","src":"36122:3:125"}],"functionName":{"name":"gt","nativeSrc":"36116:2:125","nodeType":"YulIdentifier","src":"36116:2:125"},"nativeSrc":"36116:10:125","nodeType":"YulFunctionCall","src":"36116:10:125"},"nativeSrc":"36113:36:125","nodeType":"YulIf","src":"36113:36:125"}]},"name":"checked_add_t_uint256","nativeSrc":"36030:125:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"36061:1:125","nodeType":"YulTypedName","src":"36061:1:125","type":""},{"name":"y","nativeSrc":"36064:1:125","nodeType":"YulTypedName","src":"36064:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"36070:3:125","nodeType":"YulTypedName","src":"36070:3:125","type":""}],"src":"36030:125:125"},{"body":{"nativeSrc":"36208:192:125","nodeType":"YulBlock","src":"36208:192:125","statements":[{"nativeSrc":"36218:98:125","nodeType":"YulAssignment","src":"36218:98:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"36233:1:125","nodeType":"YulIdentifier","src":"36233:1:125"},{"kind":"number","nativeSrc":"36236:34:125","nodeType":"YulLiteral","src":"36236:34:125","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"36229:3:125","nodeType":"YulIdentifier","src":"36229:3:125"},"nativeSrc":"36229:42:125","nodeType":"YulFunctionCall","src":"36229:42:125"},{"arguments":[{"name":"y","nativeSrc":"36277:1:125","nodeType":"YulIdentifier","src":"36277:1:125"},{"kind":"number","nativeSrc":"36280:34:125","nodeType":"YulLiteral","src":"36280:34:125","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"36273:3:125","nodeType":"YulIdentifier","src":"36273:3:125"},"nativeSrc":"36273:42:125","nodeType":"YulFunctionCall","src":"36273:42:125"}],"functionName":{"name":"add","nativeSrc":"36225:3:125","nodeType":"YulIdentifier","src":"36225:3:125"},"nativeSrc":"36225:91:125","nodeType":"YulFunctionCall","src":"36225:91:125"},"variableNames":[{"name":"sum","nativeSrc":"36218:3:125","nodeType":"YulIdentifier","src":"36218:3:125"}]},{"body":{"nativeSrc":"36372:22:125","nodeType":"YulBlock","src":"36372:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"36374:16:125","nodeType":"YulIdentifier","src":"36374:16:125"},"nativeSrc":"36374:18:125","nodeType":"YulFunctionCall","src":"36374:18:125"},"nativeSrc":"36374:18:125","nodeType":"YulExpressionStatement","src":"36374:18:125"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"36331:3:125","nodeType":"YulIdentifier","src":"36331:3:125"},{"kind":"number","nativeSrc":"36336:34:125","nodeType":"YulLiteral","src":"36336:34:125","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"36328:2:125","nodeType":"YulIdentifier","src":"36328:2:125"},"nativeSrc":"36328:43:125","nodeType":"YulFunctionCall","src":"36328:43:125"},"nativeSrc":"36325:69:125","nodeType":"YulIf","src":"36325:69:125"}]},"name":"checked_add_t_uint128","nativeSrc":"36160:240:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"36191:1:125","nodeType":"YulTypedName","src":"36191:1:125","type":""},{"name":"y","nativeSrc":"36194:1:125","nodeType":"YulTypedName","src":"36194:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"36200:3:125","nodeType":"YulTypedName","src":"36200:3:125","type":""}],"src":"36160:240:125"},{"body":{"nativeSrc":"36454:194:125","nodeType":"YulBlock","src":"36454:194:125","statements":[{"nativeSrc":"36464:99:125","nodeType":"YulAssignment","src":"36464:99:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"36480:1:125","nodeType":"YulIdentifier","src":"36480:1:125"},{"kind":"number","nativeSrc":"36483:34:125","nodeType":"YulLiteral","src":"36483:34:125","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"36476:3:125","nodeType":"YulIdentifier","src":"36476:3:125"},"nativeSrc":"36476:42:125","nodeType":"YulFunctionCall","src":"36476:42:125"},{"arguments":[{"name":"y","nativeSrc":"36524:1:125","nodeType":"YulIdentifier","src":"36524:1:125"},{"kind":"number","nativeSrc":"36527:34:125","nodeType":"YulLiteral","src":"36527:34:125","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"36520:3:125","nodeType":"YulIdentifier","src":"36520:3:125"},"nativeSrc":"36520:42:125","nodeType":"YulFunctionCall","src":"36520:42:125"}],"functionName":{"name":"sub","nativeSrc":"36472:3:125","nodeType":"YulIdentifier","src":"36472:3:125"},"nativeSrc":"36472:91:125","nodeType":"YulFunctionCall","src":"36472:91:125"},"variableNames":[{"name":"diff","nativeSrc":"36464:4:125","nodeType":"YulIdentifier","src":"36464:4:125"}]},{"body":{"nativeSrc":"36620:22:125","nodeType":"YulBlock","src":"36620:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"36622:16:125","nodeType":"YulIdentifier","src":"36622:16:125"},"nativeSrc":"36622:18:125","nodeType":"YulFunctionCall","src":"36622:18:125"},"nativeSrc":"36622:18:125","nodeType":"YulExpressionStatement","src":"36622:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"36578:4:125","nodeType":"YulIdentifier","src":"36578:4:125"},{"kind":"number","nativeSrc":"36584:34:125","nodeType":"YulLiteral","src":"36584:34:125","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"36575:2:125","nodeType":"YulIdentifier","src":"36575:2:125"},"nativeSrc":"36575:44:125","nodeType":"YulFunctionCall","src":"36575:44:125"},"nativeSrc":"36572:70:125","nodeType":"YulIf","src":"36572:70:125"}]},"name":"checked_sub_t_uint128","nativeSrc":"36405:243:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"36436:1:125","nodeType":"YulTypedName","src":"36436:1:125","type":""},{"name":"y","nativeSrc":"36439:1:125","nodeType":"YulTypedName","src":"36439:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"36445:4:125","nodeType":"YulTypedName","src":"36445:4:125","type":""}],"src":"36405:243:125"},{"body":{"nativeSrc":"36758:170:125","nodeType":"YulBlock","src":"36758:170:125","statements":[{"body":{"nativeSrc":"36804:16:125","nodeType":"YulBlock","src":"36804:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"36813:1:125","nodeType":"YulLiteral","src":"36813:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"36816:1:125","nodeType":"YulLiteral","src":"36816:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"36806:6:125","nodeType":"YulIdentifier","src":"36806:6:125"},"nativeSrc":"36806:12:125","nodeType":"YulFunctionCall","src":"36806:12:125"},"nativeSrc":"36806:12:125","nodeType":"YulExpressionStatement","src":"36806:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"36779:7:125","nodeType":"YulIdentifier","src":"36779:7:125"},{"name":"headStart","nativeSrc":"36788:9:125","nodeType":"YulIdentifier","src":"36788:9:125"}],"functionName":{"name":"sub","nativeSrc":"36775:3:125","nodeType":"YulIdentifier","src":"36775:3:125"},"nativeSrc":"36775:23:125","nodeType":"YulFunctionCall","src":"36775:23:125"},{"kind":"number","nativeSrc":"36800:2:125","nodeType":"YulLiteral","src":"36800:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"36771:3:125","nodeType":"YulIdentifier","src":"36771:3:125"},"nativeSrc":"36771:32:125","nodeType":"YulFunctionCall","src":"36771:32:125"},"nativeSrc":"36768:52:125","nodeType":"YulIf","src":"36768:52:125"},{"nativeSrc":"36829:29:125","nodeType":"YulVariableDeclaration","src":"36829:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"36848:9:125","nodeType":"YulIdentifier","src":"36848:9:125"}],"functionName":{"name":"mload","nativeSrc":"36842:5:125","nodeType":"YulIdentifier","src":"36842:5:125"},"nativeSrc":"36842:16:125","nodeType":"YulFunctionCall","src":"36842:16:125"},"variables":[{"name":"value","nativeSrc":"36833:5:125","nodeType":"YulTypedName","src":"36833:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"36892:5:125","nodeType":"YulIdentifier","src":"36892:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"36867:24:125","nodeType":"YulIdentifier","src":"36867:24:125"},"nativeSrc":"36867:31:125","nodeType":"YulFunctionCall","src":"36867:31:125"},"nativeSrc":"36867:31:125","nodeType":"YulExpressionStatement","src":"36867:31:125"},{"nativeSrc":"36907:15:125","nodeType":"YulAssignment","src":"36907:15:125","value":{"name":"value","nativeSrc":"36917:5:125","nodeType":"YulIdentifier","src":"36917:5:125"},"variableNames":[{"name":"value0","nativeSrc":"36907:6:125","nodeType":"YulIdentifier","src":"36907:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory","nativeSrc":"36653:275:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36724:9:125","nodeType":"YulTypedName","src":"36724:9:125","type":""},{"name":"dataEnd","nativeSrc":"36735:7:125","nodeType":"YulTypedName","src":"36735:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"36747:6:125","nodeType":"YulTypedName","src":"36747:6:125","type":""}],"src":"36653:275:125"},{"body":{"nativeSrc":"37014:103:125","nodeType":"YulBlock","src":"37014:103:125","statements":[{"body":{"nativeSrc":"37060:16:125","nodeType":"YulBlock","src":"37060:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"37069:1:125","nodeType":"YulLiteral","src":"37069:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"37072:1:125","nodeType":"YulLiteral","src":"37072:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"37062:6:125","nodeType":"YulIdentifier","src":"37062:6:125"},"nativeSrc":"37062:12:125","nodeType":"YulFunctionCall","src":"37062:12:125"},"nativeSrc":"37062:12:125","nodeType":"YulExpressionStatement","src":"37062:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"37035:7:125","nodeType":"YulIdentifier","src":"37035:7:125"},{"name":"headStart","nativeSrc":"37044:9:125","nodeType":"YulIdentifier","src":"37044:9:125"}],"functionName":{"name":"sub","nativeSrc":"37031:3:125","nodeType":"YulIdentifier","src":"37031:3:125"},"nativeSrc":"37031:23:125","nodeType":"YulFunctionCall","src":"37031:23:125"},{"kind":"number","nativeSrc":"37056:2:125","nodeType":"YulLiteral","src":"37056:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"37027:3:125","nodeType":"YulIdentifier","src":"37027:3:125"},"nativeSrc":"37027:32:125","nodeType":"YulFunctionCall","src":"37027:32:125"},"nativeSrc":"37024:52:125","nodeType":"YulIf","src":"37024:52:125"},{"nativeSrc":"37085:26:125","nodeType":"YulAssignment","src":"37085:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"37101:9:125","nodeType":"YulIdentifier","src":"37101:9:125"}],"functionName":{"name":"mload","nativeSrc":"37095:5:125","nodeType":"YulIdentifier","src":"37095:5:125"},"nativeSrc":"37095:16:125","nodeType":"YulFunctionCall","src":"37095:16:125"},"variableNames":[{"name":"value0","nativeSrc":"37085:6:125","nodeType":"YulIdentifier","src":"37085:6:125"}]}]},"name":"abi_decode_tuple_t_bytes32_fromMemory","nativeSrc":"36933:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36980:9:125","nodeType":"YulTypedName","src":"36980:9:125","type":""},{"name":"dataEnd","nativeSrc":"36991:7:125","nodeType":"YulTypedName","src":"36991:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"37003:6:125","nodeType":"YulTypedName","src":"37003:6:125","type":""}],"src":"36933:184:125"},{"body":{"nativeSrc":"37307:258:125","nodeType":"YulBlock","src":"37307:258:125","statements":[{"nativeSrc":"37317:27:125","nodeType":"YulAssignment","src":"37317:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"37329:9:125","nodeType":"YulIdentifier","src":"37329:9:125"},{"kind":"number","nativeSrc":"37340:3:125","nodeType":"YulLiteral","src":"37340:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"37325:3:125","nodeType":"YulIdentifier","src":"37325:3:125"},"nativeSrc":"37325:19:125","nodeType":"YulFunctionCall","src":"37325:19:125"},"variableNames":[{"name":"tail","nativeSrc":"37317:4:125","nodeType":"YulIdentifier","src":"37317:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"37360:9:125","nodeType":"YulIdentifier","src":"37360:9:125"},{"arguments":[{"name":"value0","nativeSrc":"37375:6:125","nodeType":"YulIdentifier","src":"37375:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37391:3:125","nodeType":"YulLiteral","src":"37391:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"37396:1:125","nodeType":"YulLiteral","src":"37396:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"37387:3:125","nodeType":"YulIdentifier","src":"37387:3:125"},"nativeSrc":"37387:11:125","nodeType":"YulFunctionCall","src":"37387:11:125"},{"kind":"number","nativeSrc":"37400:1:125","nodeType":"YulLiteral","src":"37400:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"37383:3:125","nodeType":"YulIdentifier","src":"37383:3:125"},"nativeSrc":"37383:19:125","nodeType":"YulFunctionCall","src":"37383:19:125"}],"functionName":{"name":"and","nativeSrc":"37371:3:125","nodeType":"YulIdentifier","src":"37371:3:125"},"nativeSrc":"37371:32:125","nodeType":"YulFunctionCall","src":"37371:32:125"}],"functionName":{"name":"mstore","nativeSrc":"37353:6:125","nodeType":"YulIdentifier","src":"37353:6:125"},"nativeSrc":"37353:51:125","nodeType":"YulFunctionCall","src":"37353:51:125"},"nativeSrc":"37353:51:125","nodeType":"YulExpressionStatement","src":"37353:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37424:9:125","nodeType":"YulIdentifier","src":"37424:9:125"},{"kind":"number","nativeSrc":"37435:2:125","nodeType":"YulLiteral","src":"37435:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"37420:3:125","nodeType":"YulIdentifier","src":"37420:3:125"},"nativeSrc":"37420:18:125","nodeType":"YulFunctionCall","src":"37420:18:125"},{"arguments":[{"name":"value1","nativeSrc":"37444:6:125","nodeType":"YulIdentifier","src":"37444:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37460:3:125","nodeType":"YulLiteral","src":"37460:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"37465:1:125","nodeType":"YulLiteral","src":"37465:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"37456:3:125","nodeType":"YulIdentifier","src":"37456:3:125"},"nativeSrc":"37456:11:125","nodeType":"YulFunctionCall","src":"37456:11:125"},{"kind":"number","nativeSrc":"37469:1:125","nodeType":"YulLiteral","src":"37469:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"37452:3:125","nodeType":"YulIdentifier","src":"37452:3:125"},"nativeSrc":"37452:19:125","nodeType":"YulFunctionCall","src":"37452:19:125"}],"functionName":{"name":"and","nativeSrc":"37440:3:125","nodeType":"YulIdentifier","src":"37440:3:125"},"nativeSrc":"37440:32:125","nodeType":"YulFunctionCall","src":"37440:32:125"}],"functionName":{"name":"mstore","nativeSrc":"37413:6:125","nodeType":"YulIdentifier","src":"37413:6:125"},"nativeSrc":"37413:60:125","nodeType":"YulFunctionCall","src":"37413:60:125"},"nativeSrc":"37413:60:125","nodeType":"YulExpressionStatement","src":"37413:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37493:9:125","nodeType":"YulIdentifier","src":"37493:9:125"},{"kind":"number","nativeSrc":"37504:2:125","nodeType":"YulLiteral","src":"37504:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"37489:3:125","nodeType":"YulIdentifier","src":"37489:3:125"},"nativeSrc":"37489:18:125","nodeType":"YulFunctionCall","src":"37489:18:125"},{"name":"value2","nativeSrc":"37509:6:125","nodeType":"YulIdentifier","src":"37509:6:125"}],"functionName":{"name":"mstore","nativeSrc":"37482:6:125","nodeType":"YulIdentifier","src":"37482:6:125"},"nativeSrc":"37482:34:125","nodeType":"YulFunctionCall","src":"37482:34:125"},"nativeSrc":"37482:34:125","nodeType":"YulExpressionStatement","src":"37482:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37536:9:125","nodeType":"YulIdentifier","src":"37536:9:125"},{"kind":"number","nativeSrc":"37547:2:125","nodeType":"YulLiteral","src":"37547:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"37532:3:125","nodeType":"YulIdentifier","src":"37532:3:125"},"nativeSrc":"37532:18:125","nodeType":"YulFunctionCall","src":"37532:18:125"},{"name":"value3","nativeSrc":"37552:6:125","nodeType":"YulIdentifier","src":"37552:6:125"}],"functionName":{"name":"mstore","nativeSrc":"37525:6:125","nodeType":"YulIdentifier","src":"37525:6:125"},"nativeSrc":"37525:34:125","nodeType":"YulFunctionCall","src":"37525:34:125"},"nativeSrc":"37525:34:125","nodeType":"YulExpressionStatement","src":"37525:34:125"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256__to_t_address_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"37122:443:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37252:9:125","nodeType":"YulTypedName","src":"37252:9:125","type":""},{"name":"value3","nativeSrc":"37263:6:125","nodeType":"YulTypedName","src":"37263:6:125","type":""},{"name":"value2","nativeSrc":"37271:6:125","nodeType":"YulTypedName","src":"37271:6:125","type":""},{"name":"value1","nativeSrc":"37279:6:125","nodeType":"YulTypedName","src":"37279:6:125","type":""},{"name":"value0","nativeSrc":"37287:6:125","nodeType":"YulTypedName","src":"37287:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"37298:4:125","nodeType":"YulTypedName","src":"37298:4:125","type":""}],"src":"37122:443:125"},{"body":{"nativeSrc":"37650:169:125","nodeType":"YulBlock","src":"37650:169:125","statements":[{"body":{"nativeSrc":"37696:16:125","nodeType":"YulBlock","src":"37696:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"37705:1:125","nodeType":"YulLiteral","src":"37705:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"37708:1:125","nodeType":"YulLiteral","src":"37708:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"37698:6:125","nodeType":"YulIdentifier","src":"37698:6:125"},"nativeSrc":"37698:12:125","nodeType":"YulFunctionCall","src":"37698:12:125"},"nativeSrc":"37698:12:125","nodeType":"YulExpressionStatement","src":"37698:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"37671:7:125","nodeType":"YulIdentifier","src":"37671:7:125"},{"name":"headStart","nativeSrc":"37680:9:125","nodeType":"YulIdentifier","src":"37680:9:125"}],"functionName":{"name":"sub","nativeSrc":"37667:3:125","nodeType":"YulIdentifier","src":"37667:3:125"},"nativeSrc":"37667:23:125","nodeType":"YulFunctionCall","src":"37667:23:125"},{"kind":"number","nativeSrc":"37692:2:125","nodeType":"YulLiteral","src":"37692:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"37663:3:125","nodeType":"YulIdentifier","src":"37663:3:125"},"nativeSrc":"37663:32:125","nodeType":"YulFunctionCall","src":"37663:32:125"},"nativeSrc":"37660:52:125","nodeType":"YulIf","src":"37660:52:125"},{"nativeSrc":"37721:29:125","nodeType":"YulVariableDeclaration","src":"37721:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"37740:9:125","nodeType":"YulIdentifier","src":"37740:9:125"}],"functionName":{"name":"mload","nativeSrc":"37734:5:125","nodeType":"YulIdentifier","src":"37734:5:125"},"nativeSrc":"37734:16:125","nodeType":"YulFunctionCall","src":"37734:16:125"},"variables":[{"name":"value","nativeSrc":"37725:5:125","nodeType":"YulTypedName","src":"37725:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"37783:5:125","nodeType":"YulIdentifier","src":"37783:5:125"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"37759:23:125","nodeType":"YulIdentifier","src":"37759:23:125"},"nativeSrc":"37759:30:125","nodeType":"YulFunctionCall","src":"37759:30:125"},"nativeSrc":"37759:30:125","nodeType":"YulExpressionStatement","src":"37759:30:125"},{"nativeSrc":"37798:15:125","nodeType":"YulAssignment","src":"37798:15:125","value":{"name":"value","nativeSrc":"37808:5:125","nodeType":"YulIdentifier","src":"37808:5:125"},"variableNames":[{"name":"value0","nativeSrc":"37798:6:125","nodeType":"YulIdentifier","src":"37798:6:125"}]}]},"name":"abi_decode_tuple_t_bytes4_fromMemory","nativeSrc":"37570:249:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37616:9:125","nodeType":"YulTypedName","src":"37616:9:125","type":""},{"name":"dataEnd","nativeSrc":"37627:7:125","nodeType":"YulTypedName","src":"37627:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"37639:6:125","nodeType":"YulTypedName","src":"37639:6:125","type":""}],"src":"37570:249:125"},{"body":{"nativeSrc":"38065:346:125","nodeType":"YulBlock","src":"38065:346:125","statements":[{"nativeSrc":"38075:27:125","nodeType":"YulAssignment","src":"38075:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"38087:9:125","nodeType":"YulIdentifier","src":"38087:9:125"},{"kind":"number","nativeSrc":"38098:3:125","nodeType":"YulLiteral","src":"38098:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"38083:3:125","nodeType":"YulIdentifier","src":"38083:3:125"},"nativeSrc":"38083:19:125","nodeType":"YulFunctionCall","src":"38083:19:125"},"variableNames":[{"name":"tail","nativeSrc":"38075:4:125","nodeType":"YulIdentifier","src":"38075:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"38118:9:125","nodeType":"YulIdentifier","src":"38118:9:125"},{"arguments":[{"name":"value0","nativeSrc":"38133:6:125","nodeType":"YulIdentifier","src":"38133:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"38149:3:125","nodeType":"YulLiteral","src":"38149:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"38154:1:125","nodeType":"YulLiteral","src":"38154:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"38145:3:125","nodeType":"YulIdentifier","src":"38145:3:125"},"nativeSrc":"38145:11:125","nodeType":"YulFunctionCall","src":"38145:11:125"},{"kind":"number","nativeSrc":"38158:1:125","nodeType":"YulLiteral","src":"38158:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"38141:3:125","nodeType":"YulIdentifier","src":"38141:3:125"},"nativeSrc":"38141:19:125","nodeType":"YulFunctionCall","src":"38141:19:125"}],"functionName":{"name":"and","nativeSrc":"38129:3:125","nodeType":"YulIdentifier","src":"38129:3:125"},"nativeSrc":"38129:32:125","nodeType":"YulFunctionCall","src":"38129:32:125"}],"functionName":{"name":"mstore","nativeSrc":"38111:6:125","nodeType":"YulIdentifier","src":"38111:6:125"},"nativeSrc":"38111:51:125","nodeType":"YulFunctionCall","src":"38111:51:125"},"nativeSrc":"38111:51:125","nodeType":"YulExpressionStatement","src":"38111:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38182:9:125","nodeType":"YulIdentifier","src":"38182:9:125"},{"kind":"number","nativeSrc":"38193:2:125","nodeType":"YulLiteral","src":"38193:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"38178:3:125","nodeType":"YulIdentifier","src":"38178:3:125"},"nativeSrc":"38178:18:125","nodeType":"YulFunctionCall","src":"38178:18:125"},{"arguments":[{"name":"value1","nativeSrc":"38202:6:125","nodeType":"YulIdentifier","src":"38202:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"38218:3:125","nodeType":"YulLiteral","src":"38218:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"38223:1:125","nodeType":"YulLiteral","src":"38223:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"38214:3:125","nodeType":"YulIdentifier","src":"38214:3:125"},"nativeSrc":"38214:11:125","nodeType":"YulFunctionCall","src":"38214:11:125"},{"kind":"number","nativeSrc":"38227:1:125","nodeType":"YulLiteral","src":"38227:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"38210:3:125","nodeType":"YulIdentifier","src":"38210:3:125"},"nativeSrc":"38210:19:125","nodeType":"YulFunctionCall","src":"38210:19:125"}],"functionName":{"name":"and","nativeSrc":"38198:3:125","nodeType":"YulIdentifier","src":"38198:3:125"},"nativeSrc":"38198:32:125","nodeType":"YulFunctionCall","src":"38198:32:125"}],"functionName":{"name":"mstore","nativeSrc":"38171:6:125","nodeType":"YulIdentifier","src":"38171:6:125"},"nativeSrc":"38171:60:125","nodeType":"YulFunctionCall","src":"38171:60:125"},"nativeSrc":"38171:60:125","nodeType":"YulExpressionStatement","src":"38171:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38251:9:125","nodeType":"YulIdentifier","src":"38251:9:125"},{"kind":"number","nativeSrc":"38262:2:125","nodeType":"YulLiteral","src":"38262:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"38247:3:125","nodeType":"YulIdentifier","src":"38247:3:125"},"nativeSrc":"38247:18:125","nodeType":"YulFunctionCall","src":"38247:18:125"},{"name":"value2","nativeSrc":"38267:6:125","nodeType":"YulIdentifier","src":"38267:6:125"}],"functionName":{"name":"mstore","nativeSrc":"38240:6:125","nodeType":"YulIdentifier","src":"38240:6:125"},"nativeSrc":"38240:34:125","nodeType":"YulFunctionCall","src":"38240:34:125"},"nativeSrc":"38240:34:125","nodeType":"YulExpressionStatement","src":"38240:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38294:9:125","nodeType":"YulIdentifier","src":"38294:9:125"},{"kind":"number","nativeSrc":"38305:2:125","nodeType":"YulLiteral","src":"38305:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"38290:3:125","nodeType":"YulIdentifier","src":"38290:3:125"},"nativeSrc":"38290:18:125","nodeType":"YulFunctionCall","src":"38290:18:125"},{"name":"value3","nativeSrc":"38310:6:125","nodeType":"YulIdentifier","src":"38310:6:125"}],"functionName":{"name":"mstore","nativeSrc":"38283:6:125","nodeType":"YulIdentifier","src":"38283:6:125"},"nativeSrc":"38283:34:125","nodeType":"YulFunctionCall","src":"38283:34:125"},"nativeSrc":"38283:34:125","nodeType":"YulExpressionStatement","src":"38283:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38337:9:125","nodeType":"YulIdentifier","src":"38337:9:125"},{"kind":"number","nativeSrc":"38348:3:125","nodeType":"YulLiteral","src":"38348:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"38333:3:125","nodeType":"YulIdentifier","src":"38333:3:125"},"nativeSrc":"38333:19:125","nodeType":"YulFunctionCall","src":"38333:19:125"},{"name":"value4","nativeSrc":"38354:6:125","nodeType":"YulIdentifier","src":"38354:6:125"}],"functionName":{"name":"mstore","nativeSrc":"38326:6:125","nodeType":"YulIdentifier","src":"38326:6:125"},"nativeSrc":"38326:35:125","nodeType":"YulFunctionCall","src":"38326:35:125"},"nativeSrc":"38326:35:125","nodeType":"YulExpressionStatement","src":"38326:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38381:9:125","nodeType":"YulIdentifier","src":"38381:9:125"},{"kind":"number","nativeSrc":"38392:3:125","nodeType":"YulLiteral","src":"38392:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"38377:3:125","nodeType":"YulIdentifier","src":"38377:3:125"},"nativeSrc":"38377:19:125","nodeType":"YulFunctionCall","src":"38377:19:125"},{"name":"value5","nativeSrc":"38398:6:125","nodeType":"YulIdentifier","src":"38398:6:125"}],"functionName":{"name":"mstore","nativeSrc":"38370:6:125","nodeType":"YulIdentifier","src":"38370:6:125"},"nativeSrc":"38370:35:125","nodeType":"YulFunctionCall","src":"38370:35:125"},"nativeSrc":"38370:35:125","nodeType":"YulExpressionStatement","src":"38370:35:125"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint256_t_uint256__to_t_address_t_address_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"37824:587:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37994:9:125","nodeType":"YulTypedName","src":"37994:9:125","type":""},{"name":"value5","nativeSrc":"38005:6:125","nodeType":"YulTypedName","src":"38005:6:125","type":""},{"name":"value4","nativeSrc":"38013:6:125","nodeType":"YulTypedName","src":"38013:6:125","type":""},{"name":"value3","nativeSrc":"38021:6:125","nodeType":"YulTypedName","src":"38021:6:125","type":""},{"name":"value2","nativeSrc":"38029:6:125","nodeType":"YulTypedName","src":"38029:6:125","type":""},{"name":"value1","nativeSrc":"38037:6:125","nodeType":"YulTypedName","src":"38037:6:125","type":""},{"name":"value0","nativeSrc":"38045:6:125","nodeType":"YulTypedName","src":"38045:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"38056:4:125","nodeType":"YulTypedName","src":"38056:4:125","type":""}],"src":"37824:587:125"},{"body":{"nativeSrc":"38553:130:125","nodeType":"YulBlock","src":"38553:130:125","statements":[{"nativeSrc":"38563:26:125","nodeType":"YulAssignment","src":"38563:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"38575:9:125","nodeType":"YulIdentifier","src":"38575:9:125"},{"kind":"number","nativeSrc":"38586:2:125","nodeType":"YulLiteral","src":"38586:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"38571:3:125","nodeType":"YulIdentifier","src":"38571:3:125"},"nativeSrc":"38571:18:125","nodeType":"YulFunctionCall","src":"38571:18:125"},"variableNames":[{"name":"tail","nativeSrc":"38563:4:125","nodeType":"YulIdentifier","src":"38563:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"38605:9:125","nodeType":"YulIdentifier","src":"38605:9:125"},{"arguments":[{"name":"value0","nativeSrc":"38620:6:125","nodeType":"YulIdentifier","src":"38620:6:125"},{"kind":"number","nativeSrc":"38628:4:125","nodeType":"YulLiteral","src":"38628:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"38616:3:125","nodeType":"YulIdentifier","src":"38616:3:125"},"nativeSrc":"38616:17:125","nodeType":"YulFunctionCall","src":"38616:17:125"}],"functionName":{"name":"mstore","nativeSrc":"38598:6:125","nodeType":"YulIdentifier","src":"38598:6:125"},"nativeSrc":"38598:36:125","nodeType":"YulFunctionCall","src":"38598:36:125"},"nativeSrc":"38598:36:125","nodeType":"YulExpressionStatement","src":"38598:36:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38654:9:125","nodeType":"YulIdentifier","src":"38654:9:125"},{"kind":"number","nativeSrc":"38665:2:125","nodeType":"YulLiteral","src":"38665:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"38650:3:125","nodeType":"YulIdentifier","src":"38650:3:125"},"nativeSrc":"38650:18:125","nodeType":"YulFunctionCall","src":"38650:18:125"},{"name":"value1","nativeSrc":"38670:6:125","nodeType":"YulIdentifier","src":"38670:6:125"}],"functionName":{"name":"mstore","nativeSrc":"38643:6:125","nodeType":"YulIdentifier","src":"38643:6:125"},"nativeSrc":"38643:34:125","nodeType":"YulFunctionCall","src":"38643:34:125"},"nativeSrc":"38643:34:125","nodeType":"YulExpressionStatement","src":"38643:34:125"}]},"name":"abi_encode_tuple_t_rational_128_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"38416:267:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38514:9:125","nodeType":"YulTypedName","src":"38514:9:125","type":""},{"name":"value1","nativeSrc":"38525:6:125","nodeType":"YulTypedName","src":"38525:6:125","type":""},{"name":"value0","nativeSrc":"38533:6:125","nodeType":"YulTypedName","src":"38533:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"38544:4:125","nodeType":"YulTypedName","src":"38544:4:125","type":""}],"src":"38416:267:125"},{"body":{"nativeSrc":"38891:282:125","nodeType":"YulBlock","src":"38891:282:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"38908:9:125","nodeType":"YulIdentifier","src":"38908:9:125"},{"arguments":[{"name":"value0","nativeSrc":"38923:6:125","nodeType":"YulIdentifier","src":"38923:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"38939:3:125","nodeType":"YulLiteral","src":"38939:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"38944:1:125","nodeType":"YulLiteral","src":"38944:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"38935:3:125","nodeType":"YulIdentifier","src":"38935:3:125"},"nativeSrc":"38935:11:125","nodeType":"YulFunctionCall","src":"38935:11:125"},{"kind":"number","nativeSrc":"38948:1:125","nodeType":"YulLiteral","src":"38948:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"38931:3:125","nodeType":"YulIdentifier","src":"38931:3:125"},"nativeSrc":"38931:19:125","nodeType":"YulFunctionCall","src":"38931:19:125"}],"functionName":{"name":"and","nativeSrc":"38919:3:125","nodeType":"YulIdentifier","src":"38919:3:125"},"nativeSrc":"38919:32:125","nodeType":"YulFunctionCall","src":"38919:32:125"}],"functionName":{"name":"mstore","nativeSrc":"38901:6:125","nodeType":"YulIdentifier","src":"38901:6:125"},"nativeSrc":"38901:51:125","nodeType":"YulFunctionCall","src":"38901:51:125"},"nativeSrc":"38901:51:125","nodeType":"YulExpressionStatement","src":"38901:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38972:9:125","nodeType":"YulIdentifier","src":"38972:9:125"},{"kind":"number","nativeSrc":"38983:2:125","nodeType":"YulLiteral","src":"38983:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"38968:3:125","nodeType":"YulIdentifier","src":"38968:3:125"},"nativeSrc":"38968:18:125","nodeType":"YulFunctionCall","src":"38968:18:125"},{"arguments":[{"name":"value1","nativeSrc":"38992:6:125","nodeType":"YulIdentifier","src":"38992:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"39008:3:125","nodeType":"YulLiteral","src":"39008:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"39013:1:125","nodeType":"YulLiteral","src":"39013:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"39004:3:125","nodeType":"YulIdentifier","src":"39004:3:125"},"nativeSrc":"39004:11:125","nodeType":"YulFunctionCall","src":"39004:11:125"},{"kind":"number","nativeSrc":"39017:1:125","nodeType":"YulLiteral","src":"39017:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"39000:3:125","nodeType":"YulIdentifier","src":"39000:3:125"},"nativeSrc":"39000:19:125","nodeType":"YulFunctionCall","src":"39000:19:125"}],"functionName":{"name":"and","nativeSrc":"38988:3:125","nodeType":"YulIdentifier","src":"38988:3:125"},"nativeSrc":"38988:32:125","nodeType":"YulFunctionCall","src":"38988:32:125"}],"functionName":{"name":"mstore","nativeSrc":"38961:6:125","nodeType":"YulIdentifier","src":"38961:6:125"},"nativeSrc":"38961:60:125","nodeType":"YulFunctionCall","src":"38961:60:125"},"nativeSrc":"38961:60:125","nodeType":"YulExpressionStatement","src":"38961:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39041:9:125","nodeType":"YulIdentifier","src":"39041:9:125"},{"kind":"number","nativeSrc":"39052:2:125","nodeType":"YulLiteral","src":"39052:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"39037:3:125","nodeType":"YulIdentifier","src":"39037:3:125"},"nativeSrc":"39037:18:125","nodeType":"YulFunctionCall","src":"39037:18:125"},{"name":"value2","nativeSrc":"39057:6:125","nodeType":"YulIdentifier","src":"39057:6:125"}],"functionName":{"name":"mstore","nativeSrc":"39030:6:125","nodeType":"YulIdentifier","src":"39030:6:125"},"nativeSrc":"39030:34:125","nodeType":"YulFunctionCall","src":"39030:34:125"},"nativeSrc":"39030:34:125","nodeType":"YulExpressionStatement","src":"39030:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39084:9:125","nodeType":"YulIdentifier","src":"39084:9:125"},{"kind":"number","nativeSrc":"39095:2:125","nodeType":"YulLiteral","src":"39095:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"39080:3:125","nodeType":"YulIdentifier","src":"39080:3:125"},"nativeSrc":"39080:18:125","nodeType":"YulFunctionCall","src":"39080:18:125"},{"kind":"number","nativeSrc":"39100:3:125","nodeType":"YulLiteral","src":"39100:3:125","type":"","value":"128"}],"functionName":{"name":"mstore","nativeSrc":"39073:6:125","nodeType":"YulIdentifier","src":"39073:6:125"},"nativeSrc":"39073:31:125","nodeType":"YulFunctionCall","src":"39073:31:125"},"nativeSrc":"39073:31:125","nodeType":"YulExpressionStatement","src":"39073:31:125"},{"nativeSrc":"39113:54:125","nodeType":"YulAssignment","src":"39113:54:125","value":{"arguments":[{"name":"value3","nativeSrc":"39139:6:125","nodeType":"YulIdentifier","src":"39139:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"39151:9:125","nodeType":"YulIdentifier","src":"39151:9:125"},{"kind":"number","nativeSrc":"39162:3:125","nodeType":"YulLiteral","src":"39162:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"39147:3:125","nodeType":"YulIdentifier","src":"39147:3:125"},"nativeSrc":"39147:19:125","nodeType":"YulFunctionCall","src":"39147:19:125"}],"functionName":{"name":"abi_encode_string","nativeSrc":"39121:17:125","nodeType":"YulIdentifier","src":"39121:17:125"},"nativeSrc":"39121:46:125","nodeType":"YulFunctionCall","src":"39121:46:125"},"variableNames":[{"name":"tail","nativeSrc":"39113:4:125","nodeType":"YulIdentifier","src":"39113:4:125"}]}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"38688:485:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38836:9:125","nodeType":"YulTypedName","src":"38836:9:125","type":""},{"name":"value3","nativeSrc":"38847:6:125","nodeType":"YulTypedName","src":"38847:6:125","type":""},{"name":"value2","nativeSrc":"38855:6:125","nodeType":"YulTypedName","src":"38855:6:125","type":""},{"name":"value1","nativeSrc":"38863:6:125","nodeType":"YulTypedName","src":"38863:6:125","type":""},{"name":"value0","nativeSrc":"38871:6:125","nodeType":"YulTypedName","src":"38871:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"38882:4:125","nodeType":"YulTypedName","src":"38882:4:125","type":""}],"src":"38688:485:125"},{"body":{"nativeSrc":"39391:212:125","nodeType":"YulBlock","src":"39391:212:125","statements":[{"nativeSrc":"39401:27:125","nodeType":"YulAssignment","src":"39401:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"39413:9:125","nodeType":"YulIdentifier","src":"39413:9:125"},{"kind":"number","nativeSrc":"39424:3:125","nodeType":"YulLiteral","src":"39424:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"39409:3:125","nodeType":"YulIdentifier","src":"39409:3:125"},"nativeSrc":"39409:19:125","nodeType":"YulFunctionCall","src":"39409:19:125"},"variableNames":[{"name":"tail","nativeSrc":"39401:4:125","nodeType":"YulIdentifier","src":"39401:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"39444:9:125","nodeType":"YulIdentifier","src":"39444:9:125"},{"arguments":[{"name":"value0","nativeSrc":"39459:6:125","nodeType":"YulIdentifier","src":"39459:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"39475:3:125","nodeType":"YulLiteral","src":"39475:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"39480:1:125","nodeType":"YulLiteral","src":"39480:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"39471:3:125","nodeType":"YulIdentifier","src":"39471:3:125"},"nativeSrc":"39471:11:125","nodeType":"YulFunctionCall","src":"39471:11:125"},{"kind":"number","nativeSrc":"39484:1:125","nodeType":"YulLiteral","src":"39484:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"39467:3:125","nodeType":"YulIdentifier","src":"39467:3:125"},"nativeSrc":"39467:19:125","nodeType":"YulFunctionCall","src":"39467:19:125"}],"functionName":{"name":"and","nativeSrc":"39455:3:125","nodeType":"YulIdentifier","src":"39455:3:125"},"nativeSrc":"39455:32:125","nodeType":"YulFunctionCall","src":"39455:32:125"}],"functionName":{"name":"mstore","nativeSrc":"39437:6:125","nodeType":"YulIdentifier","src":"39437:6:125"},"nativeSrc":"39437:51:125","nodeType":"YulFunctionCall","src":"39437:51:125"},"nativeSrc":"39437:51:125","nodeType":"YulExpressionStatement","src":"39437:51:125"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"39526:6:125","nodeType":"YulIdentifier","src":"39526:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"39538:9:125","nodeType":"YulIdentifier","src":"39538:9:125"},{"kind":"number","nativeSrc":"39549:2:125","nodeType":"YulLiteral","src":"39549:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"39534:3:125","nodeType":"YulIdentifier","src":"39534:3:125"},"nativeSrc":"39534:18:125","nodeType":"YulFunctionCall","src":"39534:18:125"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"39497:28:125","nodeType":"YulIdentifier","src":"39497:28:125"},"nativeSrc":"39497:56:125","nodeType":"YulFunctionCall","src":"39497:56:125"},"nativeSrc":"39497:56:125","nodeType":"YulExpressionStatement","src":"39497:56:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39573:9:125","nodeType":"YulIdentifier","src":"39573:9:125"},{"kind":"number","nativeSrc":"39584:3:125","nodeType":"YulLiteral","src":"39584:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"39569:3:125","nodeType":"YulIdentifier","src":"39569:3:125"},"nativeSrc":"39569:19:125","nodeType":"YulFunctionCall","src":"39569:19:125"},{"name":"value2","nativeSrc":"39590:6:125","nodeType":"YulIdentifier","src":"39590:6:125"}],"functionName":{"name":"mstore","nativeSrc":"39562:6:125","nodeType":"YulIdentifier","src":"39562:6:125"},"nativeSrc":"39562:35:125","nodeType":"YulFunctionCall","src":"39562:35:125"},"nativeSrc":"39562:35:125","nodeType":"YulExpressionStatement","src":"39562:35:125"}]},"name":"abi_encode_tuple_t_address_t_struct$_PolicyData_$7744_memory_ptr_t_uint256__to_t_address_t_struct$_PolicyData_$7744_memory_ptr_t_uint256__fromStack_reversed","nativeSrc":"39178:425:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39344:9:125","nodeType":"YulTypedName","src":"39344:9:125","type":""},{"name":"value2","nativeSrc":"39355:6:125","nodeType":"YulTypedName","src":"39355:6:125","type":""},{"name":"value1","nativeSrc":"39363:6:125","nodeType":"YulTypedName","src":"39363:6:125","type":""},{"name":"value0","nativeSrc":"39371:6:125","nodeType":"YulTypedName","src":"39371:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39382:4:125","nodeType":"YulTypedName","src":"39382:4:125","type":""}],"src":"39178:425:125"},{"body":{"nativeSrc":"39640:95:125","nodeType":"YulBlock","src":"39640:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"39657:1:125","nodeType":"YulLiteral","src":"39657:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"39664:3:125","nodeType":"YulLiteral","src":"39664:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"39669:10:125","nodeType":"YulLiteral","src":"39669:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"39660:3:125","nodeType":"YulIdentifier","src":"39660:3:125"},"nativeSrc":"39660:20:125","nodeType":"YulFunctionCall","src":"39660:20:125"}],"functionName":{"name":"mstore","nativeSrc":"39650:6:125","nodeType":"YulIdentifier","src":"39650:6:125"},"nativeSrc":"39650:31:125","nodeType":"YulFunctionCall","src":"39650:31:125"},"nativeSrc":"39650:31:125","nodeType":"YulExpressionStatement","src":"39650:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"39697:1:125","nodeType":"YulLiteral","src":"39697:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"39700:4:125","nodeType":"YulLiteral","src":"39700:4:125","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"39690:6:125","nodeType":"YulIdentifier","src":"39690:6:125"},"nativeSrc":"39690:15:125","nodeType":"YulFunctionCall","src":"39690:15:125"},"nativeSrc":"39690:15:125","nodeType":"YulExpressionStatement","src":"39690:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"39721:1:125","nodeType":"YulLiteral","src":"39721:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"39724:4:125","nodeType":"YulLiteral","src":"39724:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"39714:6:125","nodeType":"YulIdentifier","src":"39714:6:125"},"nativeSrc":"39714:15:125","nodeType":"YulFunctionCall","src":"39714:15:125"},"nativeSrc":"39714:15:125","nodeType":"YulExpressionStatement","src":"39714:15:125"}]},"name":"panic_error_0x12","nativeSrc":"39608:127:125","nodeType":"YulFunctionDefinition","src":"39608:127:125"},{"body":{"nativeSrc":"39897:214:125","nodeType":"YulBlock","src":"39897:214:125","statements":[{"nativeSrc":"39907:26:125","nodeType":"YulAssignment","src":"39907:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"39919:9:125","nodeType":"YulIdentifier","src":"39919:9:125"},{"kind":"number","nativeSrc":"39930:2:125","nodeType":"YulLiteral","src":"39930:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"39915:3:125","nodeType":"YulIdentifier","src":"39915:3:125"},"nativeSrc":"39915:18:125","nodeType":"YulFunctionCall","src":"39915:18:125"},"variableNames":[{"name":"tail","nativeSrc":"39907:4:125","nodeType":"YulIdentifier","src":"39907:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"39949:9:125","nodeType":"YulIdentifier","src":"39949:9:125"},{"name":"value0","nativeSrc":"39960:6:125","nodeType":"YulIdentifier","src":"39960:6:125"}],"functionName":{"name":"mstore","nativeSrc":"39942:6:125","nodeType":"YulIdentifier","src":"39942:6:125"},"nativeSrc":"39942:25:125","nodeType":"YulFunctionCall","src":"39942:25:125"},"nativeSrc":"39942:25:125","nodeType":"YulExpressionStatement","src":"39942:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39987:9:125","nodeType":"YulIdentifier","src":"39987:9:125"},{"kind":"number","nativeSrc":"39998:2:125","nodeType":"YulLiteral","src":"39998:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"39983:3:125","nodeType":"YulIdentifier","src":"39983:3:125"},"nativeSrc":"39983:18:125","nodeType":"YulFunctionCall","src":"39983:18:125"},{"arguments":[{"name":"value1","nativeSrc":"40007:6:125","nodeType":"YulIdentifier","src":"40007:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40023:3:125","nodeType":"YulLiteral","src":"40023:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"40028:1:125","nodeType":"YulLiteral","src":"40028:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"40019:3:125","nodeType":"YulIdentifier","src":"40019:3:125"},"nativeSrc":"40019:11:125","nodeType":"YulFunctionCall","src":"40019:11:125"},{"kind":"number","nativeSrc":"40032:1:125","nodeType":"YulLiteral","src":"40032:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"40015:3:125","nodeType":"YulIdentifier","src":"40015:3:125"},"nativeSrc":"40015:19:125","nodeType":"YulFunctionCall","src":"40015:19:125"}],"functionName":{"name":"and","nativeSrc":"40003:3:125","nodeType":"YulIdentifier","src":"40003:3:125"},"nativeSrc":"40003:32:125","nodeType":"YulFunctionCall","src":"40003:32:125"}],"functionName":{"name":"mstore","nativeSrc":"39976:6:125","nodeType":"YulIdentifier","src":"39976:6:125"},"nativeSrc":"39976:60:125","nodeType":"YulFunctionCall","src":"39976:60:125"},"nativeSrc":"39976:60:125","nodeType":"YulExpressionStatement","src":"39976:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40056:9:125","nodeType":"YulIdentifier","src":"40056:9:125"},{"kind":"number","nativeSrc":"40067:2:125","nodeType":"YulLiteral","src":"40067:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"40052:3:125","nodeType":"YulIdentifier","src":"40052:3:125"},"nativeSrc":"40052:18:125","nodeType":"YulFunctionCall","src":"40052:18:125"},{"arguments":[{"name":"value2","nativeSrc":"40076:6:125","nodeType":"YulIdentifier","src":"40076:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40092:3:125","nodeType":"YulLiteral","src":"40092:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"40097:1:125","nodeType":"YulLiteral","src":"40097:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"40088:3:125","nodeType":"YulIdentifier","src":"40088:3:125"},"nativeSrc":"40088:11:125","nodeType":"YulFunctionCall","src":"40088:11:125"},{"kind":"number","nativeSrc":"40101:1:125","nodeType":"YulLiteral","src":"40101:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"40084:3:125","nodeType":"YulIdentifier","src":"40084:3:125"},"nativeSrc":"40084:19:125","nodeType":"YulFunctionCall","src":"40084:19:125"}],"functionName":{"name":"and","nativeSrc":"40072:3:125","nodeType":"YulIdentifier","src":"40072:3:125"},"nativeSrc":"40072:32:125","nodeType":"YulFunctionCall","src":"40072:32:125"}],"functionName":{"name":"mstore","nativeSrc":"40045:6:125","nodeType":"YulIdentifier","src":"40045:6:125"},"nativeSrc":"40045:60:125","nodeType":"YulFunctionCall","src":"40045:60:125"},"nativeSrc":"40045:60:125","nodeType":"YulExpressionStatement","src":"40045:60:125"}]},"name":"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed","nativeSrc":"39740:371:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39850:9:125","nodeType":"YulTypedName","src":"39850:9:125","type":""},{"name":"value2","nativeSrc":"39861:6:125","nodeType":"YulTypedName","src":"39861:6:125","type":""},{"name":"value1","nativeSrc":"39869:6:125","nodeType":"YulTypedName","src":"39869:6:125","type":""},{"name":"value0","nativeSrc":"39877:6:125","nodeType":"YulTypedName","src":"39877:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39888:4:125","nodeType":"YulTypedName","src":"39888:4:125","type":""}],"src":"39740:371:125"},{"body":{"nativeSrc":"40245:171:125","nodeType":"YulBlock","src":"40245:171:125","statements":[{"nativeSrc":"40255:26:125","nodeType":"YulAssignment","src":"40255:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"40267:9:125","nodeType":"YulIdentifier","src":"40267:9:125"},{"kind":"number","nativeSrc":"40278:2:125","nodeType":"YulLiteral","src":"40278:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"40263:3:125","nodeType":"YulIdentifier","src":"40263:3:125"},"nativeSrc":"40263:18:125","nodeType":"YulFunctionCall","src":"40263:18:125"},"variableNames":[{"name":"tail","nativeSrc":"40255:4:125","nodeType":"YulIdentifier","src":"40255:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"40297:9:125","nodeType":"YulIdentifier","src":"40297:9:125"},{"arguments":[{"name":"value0","nativeSrc":"40312:6:125","nodeType":"YulIdentifier","src":"40312:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40328:3:125","nodeType":"YulLiteral","src":"40328:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"40333:1:125","nodeType":"YulLiteral","src":"40333:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"40324:3:125","nodeType":"YulIdentifier","src":"40324:3:125"},"nativeSrc":"40324:11:125","nodeType":"YulFunctionCall","src":"40324:11:125"},{"kind":"number","nativeSrc":"40337:1:125","nodeType":"YulLiteral","src":"40337:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"40320:3:125","nodeType":"YulIdentifier","src":"40320:3:125"},"nativeSrc":"40320:19:125","nodeType":"YulFunctionCall","src":"40320:19:125"}],"functionName":{"name":"and","nativeSrc":"40308:3:125","nodeType":"YulIdentifier","src":"40308:3:125"},"nativeSrc":"40308:32:125","nodeType":"YulFunctionCall","src":"40308:32:125"}],"functionName":{"name":"mstore","nativeSrc":"40290:6:125","nodeType":"YulIdentifier","src":"40290:6:125"},"nativeSrc":"40290:51:125","nodeType":"YulFunctionCall","src":"40290:51:125"},"nativeSrc":"40290:51:125","nodeType":"YulExpressionStatement","src":"40290:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40361:9:125","nodeType":"YulIdentifier","src":"40361:9:125"},{"kind":"number","nativeSrc":"40372:2:125","nodeType":"YulLiteral","src":"40372:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"40357:3:125","nodeType":"YulIdentifier","src":"40357:3:125"},"nativeSrc":"40357:18:125","nodeType":"YulFunctionCall","src":"40357:18:125"},{"arguments":[{"name":"value1","nativeSrc":"40381:6:125","nodeType":"YulIdentifier","src":"40381:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40397:3:125","nodeType":"YulLiteral","src":"40397:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"40402:1:125","nodeType":"YulLiteral","src":"40402:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"40393:3:125","nodeType":"YulIdentifier","src":"40393:3:125"},"nativeSrc":"40393:11:125","nodeType":"YulFunctionCall","src":"40393:11:125"},{"kind":"number","nativeSrc":"40406:1:125","nodeType":"YulLiteral","src":"40406:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"40389:3:125","nodeType":"YulIdentifier","src":"40389:3:125"},"nativeSrc":"40389:19:125","nodeType":"YulFunctionCall","src":"40389:19:125"}],"functionName":{"name":"and","nativeSrc":"40377:3:125","nodeType":"YulIdentifier","src":"40377:3:125"},"nativeSrc":"40377:32:125","nodeType":"YulFunctionCall","src":"40377:32:125"}],"functionName":{"name":"mstore","nativeSrc":"40350:6:125","nodeType":"YulIdentifier","src":"40350:6:125"},"nativeSrc":"40350:60:125","nodeType":"YulFunctionCall","src":"40350:60:125"},"nativeSrc":"40350:60:125","nodeType":"YulExpressionStatement","src":"40350:60:125"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nativeSrc":"40116:300:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"40206:9:125","nodeType":"YulTypedName","src":"40206:9:125","type":""},{"name":"value1","nativeSrc":"40217:6:125","nodeType":"YulTypedName","src":"40217:6:125","type":""},{"name":"value0","nativeSrc":"40225:6:125","nodeType":"YulTypedName","src":"40225:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"40236:4:125","nodeType":"YulTypedName","src":"40236:4:125","type":""}],"src":"40116:300:125"},{"body":{"nativeSrc":"40517:1203:125","nodeType":"YulBlock","src":"40517:1203:125","statements":[{"nativeSrc":"40527:24:125","nodeType":"YulVariableDeclaration","src":"40527:24:125","value":{"arguments":[{"name":"src","nativeSrc":"40547:3:125","nodeType":"YulIdentifier","src":"40547:3:125"}],"functionName":{"name":"mload","nativeSrc":"40541:5:125","nodeType":"YulIdentifier","src":"40541:5:125"},"nativeSrc":"40541:10:125","nodeType":"YulFunctionCall","src":"40541:10:125"},"variables":[{"name":"newLen","nativeSrc":"40531:6:125","nodeType":"YulTypedName","src":"40531:6:125","type":""}]},{"body":{"nativeSrc":"40594:22:125","nodeType":"YulBlock","src":"40594:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"40596:16:125","nodeType":"YulIdentifier","src":"40596:16:125"},"nativeSrc":"40596:18:125","nodeType":"YulFunctionCall","src":"40596:18:125"},"nativeSrc":"40596:18:125","nodeType":"YulExpressionStatement","src":"40596:18:125"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"40566:6:125","nodeType":"YulIdentifier","src":"40566:6:125"},{"kind":"number","nativeSrc":"40574:18:125","nodeType":"YulLiteral","src":"40574:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"40563:2:125","nodeType":"YulIdentifier","src":"40563:2:125"},"nativeSrc":"40563:30:125","nodeType":"YulFunctionCall","src":"40563:30:125"},"nativeSrc":"40560:56:125","nodeType":"YulIf","src":"40560:56:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"40669:4:125","nodeType":"YulIdentifier","src":"40669:4:125"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"40707:4:125","nodeType":"YulIdentifier","src":"40707:4:125"}],"functionName":{"name":"sload","nativeSrc":"40701:5:125","nodeType":"YulIdentifier","src":"40701:5:125"},"nativeSrc":"40701:11:125","nodeType":"YulFunctionCall","src":"40701:11:125"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"40675:25:125","nodeType":"YulIdentifier","src":"40675:25:125"},"nativeSrc":"40675:38:125","nodeType":"YulFunctionCall","src":"40675:38:125"},{"name":"newLen","nativeSrc":"40715:6:125","nodeType":"YulIdentifier","src":"40715:6:125"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"40625:43:125","nodeType":"YulIdentifier","src":"40625:43:125"},"nativeSrc":"40625:97:125","nodeType":"YulFunctionCall","src":"40625:97:125"},"nativeSrc":"40625:97:125","nodeType":"YulExpressionStatement","src":"40625:97:125"},{"nativeSrc":"40731:18:125","nodeType":"YulVariableDeclaration","src":"40731:18:125","value":{"kind":"number","nativeSrc":"40748:1:125","nodeType":"YulLiteral","src":"40748:1:125","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"40735:9:125","nodeType":"YulTypedName","src":"40735:9:125","type":""}]},{"nativeSrc":"40758:17:125","nodeType":"YulAssignment","src":"40758:17:125","value":{"kind":"number","nativeSrc":"40771:4:125","nodeType":"YulLiteral","src":"40771:4:125","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"40758:9:125","nodeType":"YulIdentifier","src":"40758:9:125"}]},{"cases":[{"body":{"nativeSrc":"40821:642:125","nodeType":"YulBlock","src":"40821:642:125","statements":[{"nativeSrc":"40835:35:125","nodeType":"YulVariableDeclaration","src":"40835:35:125","value":{"arguments":[{"name":"newLen","nativeSrc":"40854:6:125","nodeType":"YulIdentifier","src":"40854:6:125"},{"arguments":[{"kind":"number","nativeSrc":"40866:2:125","nodeType":"YulLiteral","src":"40866:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"40862:3:125","nodeType":"YulIdentifier","src":"40862:3:125"},"nativeSrc":"40862:7:125","nodeType":"YulFunctionCall","src":"40862:7:125"}],"functionName":{"name":"and","nativeSrc":"40850:3:125","nodeType":"YulIdentifier","src":"40850:3:125"},"nativeSrc":"40850:20:125","nodeType":"YulFunctionCall","src":"40850:20:125"},"variables":[{"name":"loopEnd","nativeSrc":"40839:7:125","nodeType":"YulTypedName","src":"40839:7:125","type":""}]},{"nativeSrc":"40883:49:125","nodeType":"YulVariableDeclaration","src":"40883:49:125","value":{"arguments":[{"name":"slot","nativeSrc":"40927:4:125","nodeType":"YulIdentifier","src":"40927:4:125"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"40897:29:125","nodeType":"YulIdentifier","src":"40897:29:125"},"nativeSrc":"40897:35:125","nodeType":"YulFunctionCall","src":"40897:35:125"},"variables":[{"name":"dstPtr","nativeSrc":"40887:6:125","nodeType":"YulTypedName","src":"40887:6:125","type":""}]},{"nativeSrc":"40945:10:125","nodeType":"YulVariableDeclaration","src":"40945:10:125","value":{"kind":"number","nativeSrc":"40954:1:125","nodeType":"YulLiteral","src":"40954:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"40949:1:125","nodeType":"YulTypedName","src":"40949:1:125","type":""}]},{"body":{"nativeSrc":"41025:165:125","nodeType":"YulBlock","src":"41025:165:125","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"41050:6:125","nodeType":"YulIdentifier","src":"41050:6:125"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"41068:3:125","nodeType":"YulIdentifier","src":"41068:3:125"},{"name":"srcOffset","nativeSrc":"41073:9:125","nodeType":"YulIdentifier","src":"41073:9:125"}],"functionName":{"name":"add","nativeSrc":"41064:3:125","nodeType":"YulIdentifier","src":"41064:3:125"},"nativeSrc":"41064:19:125","nodeType":"YulFunctionCall","src":"41064:19:125"}],"functionName":{"name":"mload","nativeSrc":"41058:5:125","nodeType":"YulIdentifier","src":"41058:5:125"},"nativeSrc":"41058:26:125","nodeType":"YulFunctionCall","src":"41058:26:125"}],"functionName":{"name":"sstore","nativeSrc":"41043:6:125","nodeType":"YulIdentifier","src":"41043:6:125"},"nativeSrc":"41043:42:125","nodeType":"YulFunctionCall","src":"41043:42:125"},"nativeSrc":"41043:42:125","nodeType":"YulExpressionStatement","src":"41043:42:125"},{"nativeSrc":"41102:24:125","nodeType":"YulAssignment","src":"41102:24:125","value":{"arguments":[{"name":"dstPtr","nativeSrc":"41116:6:125","nodeType":"YulIdentifier","src":"41116:6:125"},{"kind":"number","nativeSrc":"41124:1:125","nodeType":"YulLiteral","src":"41124:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"41112:3:125","nodeType":"YulIdentifier","src":"41112:3:125"},"nativeSrc":"41112:14:125","nodeType":"YulFunctionCall","src":"41112:14:125"},"variableNames":[{"name":"dstPtr","nativeSrc":"41102:6:125","nodeType":"YulIdentifier","src":"41102:6:125"}]},{"nativeSrc":"41143:33:125","nodeType":"YulAssignment","src":"41143:33:125","value":{"arguments":[{"name":"srcOffset","nativeSrc":"41160:9:125","nodeType":"YulIdentifier","src":"41160:9:125"},{"kind":"number","nativeSrc":"41171:4:125","nodeType":"YulLiteral","src":"41171:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"41156:3:125","nodeType":"YulIdentifier","src":"41156:3:125"},"nativeSrc":"41156:20:125","nodeType":"YulFunctionCall","src":"41156:20:125"},"variableNames":[{"name":"srcOffset","nativeSrc":"41143:9:125","nodeType":"YulIdentifier","src":"41143:9:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"40979:1:125","nodeType":"YulIdentifier","src":"40979:1:125"},{"name":"loopEnd","nativeSrc":"40982:7:125","nodeType":"YulIdentifier","src":"40982:7:125"}],"functionName":{"name":"lt","nativeSrc":"40976:2:125","nodeType":"YulIdentifier","src":"40976:2:125"},"nativeSrc":"40976:14:125","nodeType":"YulFunctionCall","src":"40976:14:125"},"nativeSrc":"40968:222:125","nodeType":"YulForLoop","post":{"nativeSrc":"40991:21:125","nodeType":"YulBlock","src":"40991:21:125","statements":[{"nativeSrc":"40993:17:125","nodeType":"YulAssignment","src":"40993:17:125","value":{"arguments":[{"name":"i","nativeSrc":"41002:1:125","nodeType":"YulIdentifier","src":"41002:1:125"},{"kind":"number","nativeSrc":"41005:4:125","nodeType":"YulLiteral","src":"41005:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"40998:3:125","nodeType":"YulIdentifier","src":"40998:3:125"},"nativeSrc":"40998:12:125","nodeType":"YulFunctionCall","src":"40998:12:125"},"variableNames":[{"name":"i","nativeSrc":"40993:1:125","nodeType":"YulIdentifier","src":"40993:1:125"}]}]},"pre":{"nativeSrc":"40972:3:125","nodeType":"YulBlock","src":"40972:3:125","statements":[]},"src":"40968:222:125"},{"body":{"nativeSrc":"41238:166:125","nodeType":"YulBlock","src":"41238:166:125","statements":[{"nativeSrc":"41256:43:125","nodeType":"YulVariableDeclaration","src":"41256:43:125","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"41283:3:125","nodeType":"YulIdentifier","src":"41283:3:125"},{"name":"srcOffset","nativeSrc":"41288:9:125","nodeType":"YulIdentifier","src":"41288:9:125"}],"functionName":{"name":"add","nativeSrc":"41279:3:125","nodeType":"YulIdentifier","src":"41279:3:125"},"nativeSrc":"41279:19:125","nodeType":"YulFunctionCall","src":"41279:19:125"}],"functionName":{"name":"mload","nativeSrc":"41273:5:125","nodeType":"YulIdentifier","src":"41273:5:125"},"nativeSrc":"41273:26:125","nodeType":"YulFunctionCall","src":"41273:26:125"},"variables":[{"name":"lastValue","nativeSrc":"41260:9:125","nodeType":"YulTypedName","src":"41260:9:125","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"41323:6:125","nodeType":"YulIdentifier","src":"41323:6:125"},{"arguments":[{"name":"lastValue","nativeSrc":"41335:9:125","nodeType":"YulIdentifier","src":"41335:9:125"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"41362:1:125","nodeType":"YulLiteral","src":"41362:1:125","type":"","value":"3"},{"name":"newLen","nativeSrc":"41365:6:125","nodeType":"YulIdentifier","src":"41365:6:125"}],"functionName":{"name":"shl","nativeSrc":"41358:3:125","nodeType":"YulIdentifier","src":"41358:3:125"},"nativeSrc":"41358:14:125","nodeType":"YulFunctionCall","src":"41358:14:125"},{"kind":"number","nativeSrc":"41374:3:125","nodeType":"YulLiteral","src":"41374:3:125","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"41354:3:125","nodeType":"YulIdentifier","src":"41354:3:125"},"nativeSrc":"41354:24:125","nodeType":"YulFunctionCall","src":"41354:24:125"},{"arguments":[{"kind":"number","nativeSrc":"41384:1:125","nodeType":"YulLiteral","src":"41384:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"41380:3:125","nodeType":"YulIdentifier","src":"41380:3:125"},"nativeSrc":"41380:6:125","nodeType":"YulFunctionCall","src":"41380:6:125"}],"functionName":{"name":"shr","nativeSrc":"41350:3:125","nodeType":"YulIdentifier","src":"41350:3:125"},"nativeSrc":"41350:37:125","nodeType":"YulFunctionCall","src":"41350:37:125"}],"functionName":{"name":"not","nativeSrc":"41346:3:125","nodeType":"YulIdentifier","src":"41346:3:125"},"nativeSrc":"41346:42:125","nodeType":"YulFunctionCall","src":"41346:42:125"}],"functionName":{"name":"and","nativeSrc":"41331:3:125","nodeType":"YulIdentifier","src":"41331:3:125"},"nativeSrc":"41331:58:125","nodeType":"YulFunctionCall","src":"41331:58:125"}],"functionName":{"name":"sstore","nativeSrc":"41316:6:125","nodeType":"YulIdentifier","src":"41316:6:125"},"nativeSrc":"41316:74:125","nodeType":"YulFunctionCall","src":"41316:74:125"},"nativeSrc":"41316:74:125","nodeType":"YulExpressionStatement","src":"41316:74:125"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"41209:7:125","nodeType":"YulIdentifier","src":"41209:7:125"},{"name":"newLen","nativeSrc":"41218:6:125","nodeType":"YulIdentifier","src":"41218:6:125"}],"functionName":{"name":"lt","nativeSrc":"41206:2:125","nodeType":"YulIdentifier","src":"41206:2:125"},"nativeSrc":"41206:19:125","nodeType":"YulFunctionCall","src":"41206:19:125"},"nativeSrc":"41203:201:125","nodeType":"YulIf","src":"41203:201:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"41424:4:125","nodeType":"YulIdentifier","src":"41424:4:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"41438:1:125","nodeType":"YulLiteral","src":"41438:1:125","type":"","value":"1"},{"name":"newLen","nativeSrc":"41441:6:125","nodeType":"YulIdentifier","src":"41441:6:125"}],"functionName":{"name":"shl","nativeSrc":"41434:3:125","nodeType":"YulIdentifier","src":"41434:3:125"},"nativeSrc":"41434:14:125","nodeType":"YulFunctionCall","src":"41434:14:125"},{"kind":"number","nativeSrc":"41450:1:125","nodeType":"YulLiteral","src":"41450:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"41430:3:125","nodeType":"YulIdentifier","src":"41430:3:125"},"nativeSrc":"41430:22:125","nodeType":"YulFunctionCall","src":"41430:22:125"}],"functionName":{"name":"sstore","nativeSrc":"41417:6:125","nodeType":"YulIdentifier","src":"41417:6:125"},"nativeSrc":"41417:36:125","nodeType":"YulFunctionCall","src":"41417:36:125"},"nativeSrc":"41417:36:125","nodeType":"YulExpressionStatement","src":"41417:36:125"}]},"nativeSrc":"40814:649:125","nodeType":"YulCase","src":"40814:649:125","value":{"kind":"number","nativeSrc":"40819:1:125","nodeType":"YulLiteral","src":"40819:1:125","type":"","value":"1"}},{"body":{"nativeSrc":"41480:234:125","nodeType":"YulBlock","src":"41480:234:125","statements":[{"nativeSrc":"41494:14:125","nodeType":"YulVariableDeclaration","src":"41494:14:125","value":{"kind":"number","nativeSrc":"41507:1:125","nodeType":"YulLiteral","src":"41507:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"41498:5:125","nodeType":"YulTypedName","src":"41498:5:125","type":""}]},{"body":{"nativeSrc":"41543:67:125","nodeType":"YulBlock","src":"41543:67:125","statements":[{"nativeSrc":"41561:35:125","nodeType":"YulAssignment","src":"41561:35:125","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"41580:3:125","nodeType":"YulIdentifier","src":"41580:3:125"},{"name":"srcOffset","nativeSrc":"41585:9:125","nodeType":"YulIdentifier","src":"41585:9:125"}],"functionName":{"name":"add","nativeSrc":"41576:3:125","nodeType":"YulIdentifier","src":"41576:3:125"},"nativeSrc":"41576:19:125","nodeType":"YulFunctionCall","src":"41576:19:125"}],"functionName":{"name":"mload","nativeSrc":"41570:5:125","nodeType":"YulIdentifier","src":"41570:5:125"},"nativeSrc":"41570:26:125","nodeType":"YulFunctionCall","src":"41570:26:125"},"variableNames":[{"name":"value","nativeSrc":"41561:5:125","nodeType":"YulIdentifier","src":"41561:5:125"}]}]},"condition":{"name":"newLen","nativeSrc":"41524:6:125","nodeType":"YulIdentifier","src":"41524:6:125"},"nativeSrc":"41521:89:125","nodeType":"YulIf","src":"41521:89:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"41630:4:125","nodeType":"YulIdentifier","src":"41630:4:125"},{"arguments":[{"name":"value","nativeSrc":"41689:5:125","nodeType":"YulIdentifier","src":"41689:5:125"},{"name":"newLen","nativeSrc":"41696:6:125","nodeType":"YulIdentifier","src":"41696:6:125"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"41636:52:125","nodeType":"YulIdentifier","src":"41636:52:125"},"nativeSrc":"41636:67:125","nodeType":"YulFunctionCall","src":"41636:67:125"}],"functionName":{"name":"sstore","nativeSrc":"41623:6:125","nodeType":"YulIdentifier","src":"41623:6:125"},"nativeSrc":"41623:81:125","nodeType":"YulFunctionCall","src":"41623:81:125"},"nativeSrc":"41623:81:125","nodeType":"YulExpressionStatement","src":"41623:81:125"}]},"nativeSrc":"41472:242:125","nodeType":"YulCase","src":"41472:242:125","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"40794:6:125","nodeType":"YulIdentifier","src":"40794:6:125"},{"kind":"number","nativeSrc":"40802:2:125","nodeType":"YulLiteral","src":"40802:2:125","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"40791:2:125","nodeType":"YulIdentifier","src":"40791:2:125"},"nativeSrc":"40791:14:125","nodeType":"YulFunctionCall","src":"40791:14:125"},"nativeSrc":"40784:930:125","nodeType":"YulSwitch","src":"40784:930:125"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"40421:1299:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"40502:4:125","nodeType":"YulTypedName","src":"40502:4:125","type":""},{"name":"src","nativeSrc":"40508:3:125","nodeType":"YulTypedName","src":"40508:3:125","type":""}],"src":"40421:1299:125"},{"body":{"nativeSrc":"41882:214:125","nodeType":"YulBlock","src":"41882:214:125","statements":[{"nativeSrc":"41892:26:125","nodeType":"YulAssignment","src":"41892:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"41904:9:125","nodeType":"YulIdentifier","src":"41904:9:125"},{"kind":"number","nativeSrc":"41915:2:125","nodeType":"YulLiteral","src":"41915:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"41900:3:125","nodeType":"YulIdentifier","src":"41900:3:125"},"nativeSrc":"41900:18:125","nodeType":"YulFunctionCall","src":"41900:18:125"},"variableNames":[{"name":"tail","nativeSrc":"41892:4:125","nodeType":"YulIdentifier","src":"41892:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"41934:9:125","nodeType":"YulIdentifier","src":"41934:9:125"},{"arguments":[{"name":"value0","nativeSrc":"41949:6:125","nodeType":"YulIdentifier","src":"41949:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"41965:3:125","nodeType":"YulLiteral","src":"41965:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"41970:1:125","nodeType":"YulLiteral","src":"41970:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"41961:3:125","nodeType":"YulIdentifier","src":"41961:3:125"},"nativeSrc":"41961:11:125","nodeType":"YulFunctionCall","src":"41961:11:125"},{"kind":"number","nativeSrc":"41974:1:125","nodeType":"YulLiteral","src":"41974:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"41957:3:125","nodeType":"YulIdentifier","src":"41957:3:125"},"nativeSrc":"41957:19:125","nodeType":"YulFunctionCall","src":"41957:19:125"}],"functionName":{"name":"and","nativeSrc":"41945:3:125","nodeType":"YulIdentifier","src":"41945:3:125"},"nativeSrc":"41945:32:125","nodeType":"YulFunctionCall","src":"41945:32:125"}],"functionName":{"name":"mstore","nativeSrc":"41927:6:125","nodeType":"YulIdentifier","src":"41927:6:125"},"nativeSrc":"41927:51:125","nodeType":"YulFunctionCall","src":"41927:51:125"},"nativeSrc":"41927:51:125","nodeType":"YulExpressionStatement","src":"41927:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41998:9:125","nodeType":"YulIdentifier","src":"41998:9:125"},{"kind":"number","nativeSrc":"42009:2:125","nodeType":"YulLiteral","src":"42009:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"41994:3:125","nodeType":"YulIdentifier","src":"41994:3:125"},"nativeSrc":"41994:18:125","nodeType":"YulFunctionCall","src":"41994:18:125"},{"arguments":[{"name":"value1","nativeSrc":"42018:6:125","nodeType":"YulIdentifier","src":"42018:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42034:3:125","nodeType":"YulLiteral","src":"42034:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"42039:1:125","nodeType":"YulLiteral","src":"42039:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"42030:3:125","nodeType":"YulIdentifier","src":"42030:3:125"},"nativeSrc":"42030:11:125","nodeType":"YulFunctionCall","src":"42030:11:125"},{"kind":"number","nativeSrc":"42043:1:125","nodeType":"YulLiteral","src":"42043:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"42026:3:125","nodeType":"YulIdentifier","src":"42026:3:125"},"nativeSrc":"42026:19:125","nodeType":"YulFunctionCall","src":"42026:19:125"}],"functionName":{"name":"and","nativeSrc":"42014:3:125","nodeType":"YulIdentifier","src":"42014:3:125"},"nativeSrc":"42014:32:125","nodeType":"YulFunctionCall","src":"42014:32:125"}],"functionName":{"name":"mstore","nativeSrc":"41987:6:125","nodeType":"YulIdentifier","src":"41987:6:125"},"nativeSrc":"41987:60:125","nodeType":"YulFunctionCall","src":"41987:60:125"},"nativeSrc":"41987:60:125","nodeType":"YulExpressionStatement","src":"41987:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42067:9:125","nodeType":"YulIdentifier","src":"42067:9:125"},{"kind":"number","nativeSrc":"42078:2:125","nodeType":"YulLiteral","src":"42078:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"42063:3:125","nodeType":"YulIdentifier","src":"42063:3:125"},"nativeSrc":"42063:18:125","nodeType":"YulFunctionCall","src":"42063:18:125"},{"name":"value2","nativeSrc":"42083:6:125","nodeType":"YulIdentifier","src":"42083:6:125"}],"functionName":{"name":"mstore","nativeSrc":"42056:6:125","nodeType":"YulIdentifier","src":"42056:6:125"},"nativeSrc":"42056:34:125","nodeType":"YulFunctionCall","src":"42056:34:125"},"nativeSrc":"42056:34:125","nodeType":"YulExpressionStatement","src":"42056:34:125"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nativeSrc":"41725:371:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"41835:9:125","nodeType":"YulTypedName","src":"41835:9:125","type":""},{"name":"value2","nativeSrc":"41846:6:125","nodeType":"YulTypedName","src":"41846:6:125","type":""},{"name":"value1","nativeSrc":"41854:6:125","nodeType":"YulTypedName","src":"41854:6:125","type":""},{"name":"value0","nativeSrc":"41862:6:125","nodeType":"YulTypedName","src":"41862:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"41873:4:125","nodeType":"YulTypedName","src":"41873:4:125","type":""}],"src":"41725:371:125"},{"body":{"nativeSrc":"42225:102:125","nodeType":"YulBlock","src":"42225:102:125","statements":[{"nativeSrc":"42235:26:125","nodeType":"YulAssignment","src":"42235:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"42247:9:125","nodeType":"YulIdentifier","src":"42247:9:125"},{"kind":"number","nativeSrc":"42258:2:125","nodeType":"YulLiteral","src":"42258:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"42243:3:125","nodeType":"YulIdentifier","src":"42243:3:125"},"nativeSrc":"42243:18:125","nodeType":"YulFunctionCall","src":"42243:18:125"},"variableNames":[{"name":"tail","nativeSrc":"42235:4:125","nodeType":"YulIdentifier","src":"42235:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"42277:9:125","nodeType":"YulIdentifier","src":"42277:9:125"},{"arguments":[{"name":"value0","nativeSrc":"42292:6:125","nodeType":"YulIdentifier","src":"42292:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42308:3:125","nodeType":"YulLiteral","src":"42308:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"42313:1:125","nodeType":"YulLiteral","src":"42313:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"42304:3:125","nodeType":"YulIdentifier","src":"42304:3:125"},"nativeSrc":"42304:11:125","nodeType":"YulFunctionCall","src":"42304:11:125"},{"kind":"number","nativeSrc":"42317:1:125","nodeType":"YulLiteral","src":"42317:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"42300:3:125","nodeType":"YulIdentifier","src":"42300:3:125"},"nativeSrc":"42300:19:125","nodeType":"YulFunctionCall","src":"42300:19:125"}],"functionName":{"name":"and","nativeSrc":"42288:3:125","nodeType":"YulIdentifier","src":"42288:3:125"},"nativeSrc":"42288:32:125","nodeType":"YulFunctionCall","src":"42288:32:125"}],"functionName":{"name":"mstore","nativeSrc":"42270:6:125","nodeType":"YulIdentifier","src":"42270:6:125"},"nativeSrc":"42270:51:125","nodeType":"YulFunctionCall","src":"42270:51:125"},"nativeSrc":"42270:51:125","nodeType":"YulExpressionStatement","src":"42270:51:125"}]},"name":"abi_encode_tuple_t_contract$_IPolicyHolder_$14449__to_t_address__fromStack_reversed","nativeSrc":"42101:226:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"42194:9:125","nodeType":"YulTypedName","src":"42194:9:125","type":""},{"name":"value0","nativeSrc":"42205:6:125","nodeType":"YulTypedName","src":"42205:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"42216:4:125","nodeType":"YulTypedName","src":"42216:4:125","type":""}],"src":"42101:226:125"}]},"contents":"{\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_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_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_string(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_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string(value0, add(headStart, 32))\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function allocate_memory() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0180)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_string(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let length := calldataload(offset)\n        let src := add(offset, 0x20)\n        let array_1 := 0\n        let size := 0\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let result := and(add(length, 31), not(31))\n        size := add(result, 0x20)\n        let memPtr := 0\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(result, 63), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        array_1 := memPtr\n        mstore(memPtr, length)\n        if gt(add(src, length), end) { revert(0, 0) }\n        calldatacopy(add(memPtr, 0x20), src, length)\n        mstore(add(add(memPtr, length), 0x20), 0)\n        array := memPtr\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_string_memory_ptrt_string_memory_ptrt_address(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        value0 := abi_decode_string(add(headStart, offset), dataEnd)\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        value1 := abi_decode_string(add(headStart, offset_1), dataEnd)\n        let value := calldataload(add(headStart, 64))\n        validator_revert_address(value)\n        value2 := value\n    }\n    function abi_decode_tuple_t_uint256(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_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_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_decode_uint40(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_struct_PolicyData(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0x0180) { revert(0, 0) }\n        value := allocate_memory()\n        let value_1 := 0\n        value_1 := calldataload(headStart)\n        mstore(value, value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 32))\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 64))\n        mstore(add(value, 64), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 96))\n        mstore(add(value, 96), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(add(value, 128), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 160))\n        mstore(add(value, 160), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(value, 192), value_7)\n        let value_8 := 0\n        value_8 := calldataload(add(headStart, 224))\n        mstore(add(value, 224), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(headStart, 256))\n        mstore(add(value, 256), value_9)\n        let value_10 := 0\n        value_10 := calldataload(add(headStart, 288))\n        mstore(add(value, 288), value_10)\n        mstore(add(value, 320), abi_decode_uint40(add(headStart, 320)))\n        mstore(add(value, 352), abi_decode_uint40(add(headStart, 352)))\n    }\n    function abi_decode_uint96(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_addresst_addresst_uint96(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 480) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData(headStart, dataEnd)\n        let value := calldataload(add(headStart, 384))\n        validator_revert_address(value)\n        value1 := value\n        let value_1 := calldataload(add(headStart, 416))\n        validator_revert_address(value_1)\n        value2 := value_1\n        value3 := abi_decode_uint96(add(headStart, 448))\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        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 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPoolComponent_$14655(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 panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function validator_assert_enum_ComponentStatus(value)\n    {\n        if iszero(lt(value, 4))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_enum$_ComponentStatus_$8392__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        validator_assert_enum_ComponentStatus(value0)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptr(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 offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        value1 := abi_decode_string(add(headStart, offset), dataEnd)\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_string_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 _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        value0 := add(_1, 32)\n        value1 := length\n    }\n    function validator_revert_enum_ComponentStatus(value)\n    {\n        if iszero(lt(value, 4)) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPoolComponent_$14655t_enum$_ComponentStatus_$8392(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_enum_ComponentStatus(value_1)\n        value1 := value_1\n    }\n    function abi_decode_struct_PolicyData_calldata(offset, end) -> value\n    {\n        if slt(sub(end, offset), 384) { revert(0, 0) }\n        value := offset\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_struct$_PolicyData_$7744_memory_ptrt_addresst_uint96(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 832) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_calldata(headStart, dataEnd)\n        value1 := abi_decode_struct_PolicyData(add(headStart, 384), dataEnd)\n        let value := calldataload(add(headStart, 768))\n        validator_revert_address(value)\n        value2 := value\n        value3 := abi_decode_uint96(add(headStart, 800))\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPoolComponent_$14655t_enum$_ComponentKind_$8398(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_enum_ComponentStatus(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 480) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_calldata(headStart, dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 448))\n        value3 := value_2\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_contract$_IRiskModule_$14762t_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_decode_tuple_t_contract$_IRiskModule_$14762(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_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 validator_revert_bool(value)\n    {\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\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        validator_revert_bool(value_1)\n        value1 := value_1\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 _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, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_1, 32)\n        value1 := length\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_string(mload(srcPtr), tail_2)\n            srcPtr := add(srcPtr, 32)\n            pos := add(pos, 32)\n        }\n        tail := tail_2\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { 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 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let offset := calldataload(add(headStart, 96))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        value3 := abi_decode_string(add(headStart, offset), dataEnd)\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 416) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_calldata(headStart, dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$14336t_uint256t_addresst_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 224) { 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 value_2 := calldataload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := calldataload(add(headStart, 128))\n        if iszero(eq(value_4, and(value_4, 0xff))) { revert(0, 0) }\n        value4 := value_4\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 160))\n        value5 := value_5\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 192))\n        value6 := value_6\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$14336t_uint256t_addresst_address(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { 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 value_2 := calldataload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        let value_3 := calldataload(add(headStart, 96))\n        validator_revert_address(value_3)\n        value3 := value_3\n    }\n    function abi_encode_tuple_t_contract$_IERC20Metadata_$24925__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        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_contract$_IEToken_$14336t_uint256t_address(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 value_2 := calldataload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 384) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_calldata(headStart, dataEnd)\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_rational_1_by_1__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_decode_tuple_t_contract$_IPremiumsAccount_$14743_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_uint40(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffff))\n    }\n    function abi_encode_struct_PolicyData(value, pos)\n    {\n        mstore(pos, mload(value))\n        mstore(add(pos, 0x20), mload(add(value, 0x20)))\n        mstore(add(pos, 0x40), mload(add(value, 0x40)))\n        mstore(add(pos, 0x60), mload(add(value, 0x60)))\n        mstore(add(pos, 0x80), mload(add(value, 0x80)))\n        mstore(add(pos, 0xa0), mload(add(value, 0xa0)))\n        mstore(add(pos, 0xc0), mload(add(value, 0xc0)))\n        mstore(add(pos, 0xe0), mload(add(value, 0xe0)))\n        mstore(add(pos, 0x0100), mload(add(value, 0x0100)))\n        mstore(add(pos, 0x0120), mload(add(value, 0x0120)))\n        let memberValue0 := mload(add(value, 0x0140))\n        abi_encode_uint40(memberValue0, add(pos, 0x0140))\n        let memberValue0_1 := mload(add(value, 0x0160))\n        abi_encode_uint40(memberValue0_1, add(pos, 0x0160))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 384)\n        abi_encode_struct_PolicyData(value0, headStart)\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$14336t_contract$_IEToken_$14336_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\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        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_address__to_t_address_t_uint256_t_address__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), and(value2, sub(shl(160, 1), 1)))\n    }\n    function array_dataslot_string_storage(ptr) -> data\n    {\n        mstore(0, ptr)\n        data := keccak256(0, 0x20)\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_storage_t_string_calldata_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let ret := 0\n        let slotValue := sload(value0)\n        let length := extract_byte_array_length(slotValue)\n        mstore(add(headStart, 64), length)\n        switch and(slotValue, 1)\n        case 0 {\n            mstore(add(headStart, 96), and(slotValue, not(255)))\n            ret := add(add(headStart, shl(5, iszero(iszero(length)))), 96)\n        }\n        case 1 {\n            mstore(0, value0)\n            let dataPos := keccak256(0, 0x20)\n            let i := 0\n            for { } lt(i, length) { i := add(i, 0x20) }\n            {\n                mstore(add(add(headStart, i), 96), sload(dataPos))\n                dataPos := add(dataPos, 1)\n            }\n            ret := add(add(headStart, i), 96)\n        }\n        mstore(add(headStart, 0x20), sub(ret, headStart))\n        tail := abi_encode_string_calldata(value1, value2, ret)\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_calldata_ptr_to_t_string_storage(slot, src, len)\n    {\n        if gt(len, 0xffffffffffffffff) { panic_error_0x41() }\n        clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), len)\n        let srcOffset := 0\n        switch gt(len, 31)\n        case 1 {\n            let loopEnd := and(len, 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, calldataload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, 0x20)\n            }\n            if lt(loopEnd, len)\n            {\n                sstore(dstPtr, and(calldataload(add(src, srcOffset)), not(shr(and(shl(3, len), 248), not(0)))))\n            }\n            sstore(slot, add(shl(1, len), 1))\n        }\n        default {\n            let value := 0\n            if len\n            {\n                value := calldataload(add(src, srcOffset))\n            }\n            sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, len))\n        }\n    }\n    function abi_encode_tuple_t_enum$_ComponentKind_$8398_t_enum$_ComponentStatus_$8392__to_t_uint8_t_uint8__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        validator_assert_enum_ComponentStatus(value0)\n        mstore(headStart, value0)\n        validator_assert_enum_ComponentStatus(value1)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 384) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData(headStart, dataEnd)\n    }\n    function abi_decode_tuple_t_uint40(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint40(headStart)\n    }\n    function abi_encode_struct_PolicyData_calldata(value, pos)\n    {\n        let value_1 := 0\n        value_1 := calldataload(value)\n        mstore(pos, value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(value, 0x20))\n        mstore(add(pos, 0x20), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(value, 0x40))\n        mstore(add(pos, 0x40), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(value, 0x60))\n        mstore(add(pos, 0x60), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(value, 0x80))\n        mstore(add(pos, 0x80), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(value, 0xa0))\n        mstore(add(pos, 0xa0), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(value, 0xc0))\n        mstore(add(pos, 0xc0), value_7)\n        let value_8 := 0\n        value_8 := calldataload(add(value, 0xe0))\n        mstore(add(pos, 0xe0), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(value, 0x0100))\n        mstore(add(pos, 0x0100), value_9)\n        let value_10 := 0\n        value_10 := calldataload(add(value, 0x0120))\n        mstore(add(pos, 0x0120), value_10)\n        let memberValue0 := abi_decode_uint40(add(value, 0x0140))\n        abi_encode_uint40(memberValue0, add(pos, 0x0140))\n        let memberValue0_1 := abi_decode_uint40(add(value, 0x0160))\n        abi_encode_uint40(memberValue0_1, add(pos, 0x0160))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$7744_calldata_ptr_t_struct$_PolicyData_$7744_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr_t_struct$_PolicyData_$7744_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 768)\n        abi_encode_struct_PolicyData_calldata(value0, headStart)\n        abi_encode_struct_PolicyData(value1, add(headStart, 384))\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 abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\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_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_contract$_IPolicyPoolComponent_$14655_t_enum$_ComponentKind_$8398__to_t_address_t_uint8__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        validator_assert_enum_ComponentStatus(value1)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$14336_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$7744_calldata_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 480)\n        abi_encode_struct_PolicyData_calldata(value0, headStart)\n        mstore(add(headStart, 384), value1)\n        mstore(add(headStart, 416), value2)\n        mstore(add(headStart, 448), value3)\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$7744_calldata_ptr_t_uint256_t_uint256_t_uint256_t_address__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 512)\n        abi_encode_struct_PolicyData_calldata(value0, headStart)\n        mstore(add(headStart, 384), value1)\n        mstore(add(headStart, 416), value2)\n        mstore(add(headStart, 448), value3)\n        mstore(add(headStart, 480), and(value4, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\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_enum$_ComponentKind_$8398_t_uint256__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        validator_assert_enum_ComponentStatus(value0)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_enum$_ComponentKind_$8398_t_uint128__to_t_uint8_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        validator_assert_enum_ComponentStatus(value0)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint128_t_uint128__to_t_uint128_t_uint128__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffffffffffff))\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_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\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_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        end := abi_encode_bytes(value1, abi_encode_bytes(value0, pos))\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__to_t_address_t_address_t_uint256_t_uint256_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart, value6, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 224)\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), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, 0xff))\n        mstore(add(headStart, 160), value5)\n        mstore(add(headStart, 192), value6)\n    }\n    function abi_encode_tuple_t_uint256_t_address_t_address_t_address__to_t_uint256_t_address_t_address_t_address__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, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), and(value3, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_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_tuple_t_uint256_t_uint40_t_uint256__to_t_uint256_t_uint40_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffff))\n        mstore(add(headStart, 64), value2)\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 checked_add_t_uint128(x, y) -> sum\n    {\n        sum := add(and(x, 0xffffffffffffffffffffffffffffffff), and(y, 0xffffffffffffffffffffffffffffffff))\n        if gt(sum, 0xffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n    }\n    function checked_sub_t_uint128(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffffffffffffffffffffffffffff), and(y, 0xffffffffffffffffffffffffffffffff))\n        if gt(diff, 0xffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n    }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_bytes32_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_address_t_uint256_t_uint256__to_t_address_t_address_t_uint256_t_uint256__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), value2)\n        mstore(add(headStart, 96), value3)\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_uint256_t_uint256_t_uint256_t_uint256__to_t_address_t_address_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\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), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n    }\n    function abi_encode_tuple_t_rational_128_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 abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_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), value2)\n        mstore(add(headStart, 96), 128)\n        tail := abi_encode_string(value3, add(headStart, 128))\n    }\n    function abi_encode_tuple_t_address_t_struct$_PolicyData_$7744_memory_ptr_t_uint256__to_t_address_t_struct$_PolicyData_$7744_memory_ptr_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 448)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        abi_encode_struct_PolicyData(value1, add(headStart, 32))\n        mstore(add(headStart, 416), value2)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\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    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__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(160, 1), 1)))\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, 0xffffffffffffffff) { 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_t_address_t_uint256__to_t_address_t_address_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), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_contract$_IPolicyHolder_$14449__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}","id":125,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"8379":[{"length":32,"start":1872},{"length":32,"start":3000},{"length":32,"start":3175},{"length":32,"start":3248},{"length":32,"start":3311},{"length":32,"start":3609},{"length":32,"start":9399},{"length":32,"start":11250},{"length":32,"start":11791},{"length":32,"start":14168}],"23450":[{"length":32,"start":11091},{"length":32,"start":11132},{"length":32,"start":11624}]},"linkReferences":{},"object":"60806040526004361061023e575f3560e01c80636f86c89711610134578063ad3cb1cc116100b3578063dfcd412e11610078578063dfcd412e14610723578063e5a6b10f14610742578063e985e9c514610774578063f0f4426014610793578063f45346dc146107b2578063f720bbbf146107d1575f5ffd5b8063ad3cb1cc14610677578063b88d4fde146106a7578063bd644c56146106c6578063c87b56dd146106e5578063de27010a14610704575f5ffd5b806395d89b41116100f957806395d89b411461059b5780639760905e146105af5780639e2d8922146105ce578063a22cb4651461062c578063ac9650d81461064b575f5ffd5b80636f86c897146104f157806370a0823114610510578063792da09e1461052f57806382afd23b1461055a5780638456cb5914610587575f5ffd5b80634f1ef286116101c057806361d027b31161018557806361d027b3146104595780636352211e14610475578063663d8337146104945780636b8734e7146104b35780636f520b73146104d2575f5ffd5b80634f1ef286146103d157806352d1902d146103e457806355f804b3146103f85780635c975abb146104175780635fcbf4451461043a575f5ffd5b80630d100acb116102065780630d100acb1461030e57806323b872dd1461033b57806333d6157a1461035a5780633f4ba83a1461039e57806342842e0e146103b2575f5ffd5b806301ffc9a71461024257806306fdde0314610276578063077f224a14610297578063081812fc146102b8578063095ea7b3146102ef575b5f5ffd5b34801561024d575f5ffd5b5061026161025c36600461426b565b6107f0565b60405190151581526020015b60405180910390f35b348015610281575f5ffd5b5061028a61081b565b60405161026d91906142b4565b3480156102a2575f5ffd5b506102b66102b13660046143a6565b6108bc565b005b3480156102c3575f5ffd5b506102d76102d236600461441c565b610a08565b6040516001600160a01b03909116815260200161026d565b3480156102fa575f5ffd5b506102b6610309366004614433565b610a1c565b348015610319575f5ffd5b5061032d610328366004614533565b610a2b565b60405190815260200161026d565b348015610346575f5ffd5b506102b661035536600461458d565b610e90565b348015610365575f5ffd5b506103916103743660046145cb565b6001600160a01b03165f9081526001602052604090205460ff1690565b60405161026d9190614616565b3480156103a9575f5ffd5b506102b6610f19565b3480156103bd575f5ffd5b506102b66103cc36600461458d565b610f23565b6102b66103df366004614629565b610f42565b3480156103ef575f5ffd5b5061032d610f5d565b348015610403575f5ffd5b506102b6610412366004614675565b610f78565b348015610422575f5ffd5b505f51602061520b5f395f51905f525460ff16610261565b348015610445575f5ffd5b506102b66104543660046146ed565b610fc1565b348015610464575f5ffd5b505f546001600160a01b03166102d7565b348015610480575f5ffd5b506102d761048f36600461441c565b6110b4565b34801561049f575f5ffd5b5061032d6104ae366004614735565b6110be565b3480156104be575f5ffd5b506102b66104cd3660046146ed565b6115c4565b3480156104dd575f5ffd5b506102b66104ec366004614783565b611a9f565b3480156104fc575f5ffd5b506102b661050b3660046145cb565b611cec565b34801561051b575f5ffd5b5061032d61052a3660046145cb565b61219a565b34801561053a575f5ffd5b5061032d61054936600461441c565b5f9081526002602052604090205490565b348015610565575f5ffd5b5061026161057436600461441c565b5f90815260026020526040902054151590565b348015610592575f5ffd5b506102b66121f2565b3480156105a6575f5ffd5b5061028a6121fa565b3480156105ba575f5ffd5b506102b66105c9366004614433565b612238565b3480156105d9575f5ffd5b506106176105e83660046145cb565b6001600160a01b03165f908152600460205260409020546001600160801b0380821692600160801b9092041690565b6040805192835260208301919091520161026d565b348015610637575f5ffd5b506102b66106463660046147cb565b612317565b348015610656575f5ffd5b5061066a6106653660046147f7565b612322565b60405161026d9190614856565b348015610682575f5ffd5b5061028a604051806040016040528060058152602001640352e302e360dc1b81525081565b3480156106b2575f5ffd5b506102b66106c13660046148b9565b612407565b3480156106d1575f5ffd5b506102b66106e0366004614920565b61241f565b3480156106f0575f5ffd5b5061028a6106ff36600461441c565b612440565b34801561070f575f5ffd5b506102b661071e36600461494b565b6124a5565b34801561072e575f5ffd5b5061032d61073d3660046149bc565b612563565b34801561074d575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000006102d7565b34801561077f575f5ffd5b5061026161078e366004614a0c565b61269a565b34801561079e575f5ffd5b506102b66107ad3660046145cb565b6126e6565b3480156107bd575f5ffd5b506102b66107cc366004614a38565b6126f2565b3480156107dc575f5ffd5b506102b66107eb366004614a6c565b612705565b5f6107fa8261278a565b8061081557506001600160e01b0319821663c476978760e01b145b92915050565b5f5160206151cb5f395f51905f52805460609190819061083a90614a87565b80601f016020809104026020016040519081016040528092919081815260200182805461086690614a87565b80156108b15780601f10610888576101008083540402835291602001916108b1565b820191905f5260205f20905b81548152906001019060200180831161089457829003601f168201915b505050505091505090565b5f6108c56127d9565b805490915060ff600160401b82041615906001600160401b03165f811580156108eb5750825b90505f826001600160401b031660011480156109065750303b155b905081158015610914575080155b156109325760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561095c57845460ff60401b1916600160401b1785555b87515f0361097c57604051620beefb60e01b815260040160405180910390fd5b86515f0361099d576040516343b47bcb60e01b815260040160405180910390fd5b6109a78888612801565b6109af612813565b6109b88661281b565b83156109fe57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b5f610a1282612823565b506108158261285a565b610a27828233612893565b5050565b5f610a346128a0565b33610a408160026128d0565b5f816001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a7d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa19190614ab9565b9050610aae8160036128d0565b610ab8828561290b565b80885264ffffffffff42166101408901525f9081526002602052604090205487519015610b04576040516315e46fbb60e01b8152600401610afb91815260200190565b60405180910390fd5b50610b0e87612937565b87515f9081526002602090815260408083209390935589518351918201909352908152610b3c918791612989565b610b4c82600189602001516129a0565b60405163f79ac18360e01b81526001600160a01b0382169063f79ac18390610b78908a90600401614b6b565b5f604051808303815f87803b158015610b8f575f5ffd5b505af1158015610ba1573d5f5f3e3d5ffd5b50505060a0880151610be291506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169088908490612a97565b5f5f826001600160a01b0316635e4458596040518163ffffffff1660e01b81526004016040805180830381865afa158015610c1f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c439190614b7a565b6101208b0151919350915015610c9157610120890151610c91906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016908a908490612a97565b61010089015115610cda57610100890151610cda906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016908a908590612a97565b5f5460c08a0151610d1d916001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116928c929190911690612a97565b5f8960e00151118015610da15750836001600160a01b031663521eb2736040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d67573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d8b9190614ab9565b6001600160a01b0316886001600160a01b031614155b15610e4157610e4188856001600160a01b031663521eb2736040518163ffffffff1660e01b8152600401602060405180830381865afa158015610de6573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e0a9190614ab9565b60e08c01516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016929190612a97565b836001600160a01b03167f988ac1a1c4820f963124b6fa0394627ad4fa3de7583a76399b998c1d7e43af3f8a604051610e7a9190614b6b565b60405180910390a2505095519695505050505050565b6001600160a01b038216610eb957604051633250574960e11b81525f6004820152602401610afb565b5f610ec5838333612acd565b9050836001600160a01b0316816001600160a01b031614610f13576040516364283d7b60e01b81526001600160a01b0380861660048301526024820184905282166044820152606401610afb565b50505050565b610f21612ae9565b565b610f3d83838360405180602001604052805f815250612407565b505050565b610f4a612b48565b610f5382612bec565b610a278282612ca1565b5f610f66612d5d565b505f5160206151eb5f395f51905f5290565b7fc41b7cb64e5be01af4afc2641afc861432136270f4206b7773f229b658b9669960038383604051610fac93929190614bcf565b60405180910390a16003610f3d828483614caf565b6001600160a01b0382165f90815260016020526040812090815460ff166003811115610fef57610fef6145e6565b0361100d57604051637d91856360e01b815260040160405180910390fd5b5f826003811115611020576110206145e6565b0361103e576040516332b409a160e01b815260040160405180910390fd5b80548290829060ff1916600183600381111561105c5761105c6145e6565b021790555080546040516001600160a01b038516917ffe4c6998a06520b63340a48710b374432cb395da90e4e5360e1ec7aeefebecef916110a791610100900460ff16908690614d68565b60405180910390a2505050565b5f61081582612823565b5f6110c76128a0565b6110de6110d936879003870187614d8e565b612da6565b33853560601c811461110357604051634ace04f960e01b815260040160405180910390fd5b61110e8160026128d0565b5f816001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561114b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061116f9190614ab9565b905061117c8160036128d0565b64ffffffffff421661119661018089016101608a01614da9565b64ffffffffff161180156111bd57504264ffffffffff1686610160015164ffffffffff1610155b8735906111e057604051630422552f60e11b8152600401610afb91815260200190565b5085610140015164ffffffffff16876101400160208101906112029190614da9565b64ffffffffff1614801561121e57508560a001518760a0013511155b801561123257508560c001518760c0013511155b8015611248575085610100015187610100013511155b801561125e575085610120015187610120013511155b801561127257508560e001518760e0013511155b87879091611295576040516301ff548560e61b8152600401610afb929190614e5c565b50506112a1828561290b565b8087525f90815260026020526040902054865190156112d6576040516315e46fbb60e01b8152600401610afb91815260200190565b506112e086612937565b86515f908152600260205260408120919091556112fd88356110b4565b905061131b81885f015160405180602001604052805f815250612989565b87602001358760200151111561134f5761134a8360018a602001358a602001516113459190614e8d565b6129a0565b611368565b611368835f89602001518b602001356113459190614e8d565b87355f908152600260205260408082209190915551636ae360b360e11b81526001600160a01b0383169063d5c6c166906113a8908b908b90600401614e5c565b5f604051808303815f87803b1580156113bf575f5ffd5b505af11580156113d1573d5f5f3e3d5ffd5b505050506113e986838960a001518b60a00135612def565b5f5f836001600160a01b0316635e4458596040518163ffffffff1660e01b81526004016040805180830381865afa158015611426573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061144a9190614b7a565b9150915061146488828b61012001518d6101200135612def565b61147a88838b61010001518d6101000135612def565b5f5460c0808b015161149d928b926001600160a01b0390911691908e0135612def565b5f856001600160a01b031663521eb2736040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114da573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114fe9190614ab9565b9050806001600160a01b0316896001600160a01b03161461152d5761152d89828c60e001518e60e00135612def565b856001600160a01b03167f988ac1a1c4820f963124b6fa0394627ad4fa3de7583a76399b998c1d7e43af3f8b6040516115669190614b6b565b60405180910390a289516040518c35906001600160a01b038916907f4ff4ac703cb703b7ea535d47e65e64b4cabf11b3e2eb41f152dab17971953add905f90a489516115b4908c3590612e3e565b5050965198975050505050505050565b6001600160a01b0382165f90815260016020526040812090815460ff1660038111156115f2576115f26145e6565b146116105760405163cf9a96f360e01b815260040160405180910390fd5b306001600160a01b0316836001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015611656573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061167a9190614ab9565b6001600160a01b0316146116a157604051630fdee24360e11b815260040160405180910390fd5b60018260038111156116b5576116b56145e6565b14801561173157506040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906116f090636d5136b160e11b90600401614ea0565b602060405180830381865afa15801561170b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061172f9190614eb5565b155b806117c75750600382600381111561174b5761174b6145e6565b1480156117c757506040516301ffc9a760e01b81526001600160a01b038416906301ffc9a7906117869063f7e4b01b60e01b90600401614ea0565b602060405180830381865afa1580156117a1573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117c59190614eb5565b155b8061185d575060028260038111156117e1576117e16145e6565b14801561185d57506040516301ffc9a760e01b81526001600160a01b038416906301ffc9a79061181c906321b7e09b60e01b90600401614ea0565b602060405180830381865afa158015611837573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061185b9190614eb5565b155b1561187f57828260405163502c9a5f60e01b8152600401610afb929190614ed0565b8054600160ff198216811783558391839161ffff19909116176101008360038111156118ad576118ad6145e6565b021790555060038260038111156118c6576118c66145e6565b03611a63575f8390505f816001600160a01b031663536ebbfc6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561190c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119309190614ab9565b90506001600160a01b03811615611998576040516338ea38a760e21b81526001600160a01b03838116600483015282169063e3a8e29c906024015f604051808303815f87803b158015611981575f5ffd5b505af1158015611993573d5f5f3e3d5ffd5b505050505b816001600160a01b0316637b83037b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119d4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119f89190614ab9565b90506001600160a01b03811615611a60576040516338ea38a760e21b81526001600160a01b03838116600483015282169063e3a8e29c906024015f604051808303815f87803b158015611a49575f5ffd5b505af1158015611a5b573d5f5f3e3d5ffd5b505050505b50505b826001600160a01b03167ffe4c6998a06520b63340a48710b374432cb395da90e4e5360e1ec7aeefebecef8360016040516110a7929190614d68565b611aa76128a0565b611ab96110d936869003860186614d8e565b33843560601c8114611ade57604051634ace04f960e01b815260040160405180910390fd5b611ae9816002612f25565b5f816001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b26573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b4a9190614ab9565b9050611b57816003612f25565b64ffffffffff4216611b7161018088016101608901614da9565b64ffffffffff1611865f013590611b9e57604051630422552f60e11b8152600401610afb91815260200190565b508560a001358511158015611bb857508561010001358411155b8015611bc957508561012001358311155b8686868690919293611bf25760405163a02db78360e01b8152600401610afb9493929190614ee9565b505050505f611c03875f01356110b4565b9050611c14835f89602001356129a0565b86355f90815260026020526040808220919091555163770fcd3560e11b81526001600160a01b0383169063ee1f9a6a90611c5a908a908a908a908a908890600401614f16565b5f604051808303815f87803b158015611c71575f5ffd5b505af1158015611c83573d5f5f3e3d5ffd5b50506040805189815260208101899052908101879052893592506001600160a01b03861691507f825c3ee6eecaa4b0dc3573e9732b65613d705cadfc4ba69cc76cb7d9227e59719060600160405180910390a3611ce38735878787612f84565b50505050505050565b6001600160a01b0381165f9081526001602052604090206002815460ff166003811115611d1b57611d1b6145e6565b14611d3957604051635c92b23960e11b815260040160405180910390fd5b60018154610100900460ff166003811115611d5657611d566145e6565b03611e5157816001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d97573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dbb9190614f55565b15611e4c57805f0160019054906101000a900460ff16826001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e0d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e319190614f55565b604051631d0ec0ab60e01b8152600401610afb929190614f6c565b61212a565b60028154610100900460ff166003811115611e6e57611e6e6145e6565b03611ee0576001600160a01b0382165f908152600460205260409020546001600160801b031615611e4c5780546001600160a01b0383165f90815260046020819052604091829020549151631d0ec0ab60e01b8152610afb93610100900460ff16926001600160801b03169101614f83565b5f829050806001600160a01b03166326ccbd226040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f20573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f449190614f55565b15611f9657815f0160019054906101000a900460ff16816001600160a01b03166326ccbd226040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e0d573d5f5f3e3d5ffd5b5f816001600160a01b031663536ebbfc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fd3573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ff79190614ab9565b90506001600160a01b0381161561205f576040516376c7fc5560e01b81526001600160a01b0383811660048301528216906376c7fc55906024015f604051808303815f87803b158015612048575f5ffd5b505af115801561205a573d5f5f3e3d5ffd5b505050505b816001600160a01b0316637b83037b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561209b573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120bf9190614ab9565b90506001600160a01b03811615612127576040516376c7fc5560e01b81526001600160a01b0383811660048301528216906376c7fc55906024015f604051808303815f87803b158015612110575f5ffd5b505af1158015612122573d5f5f3e3d5ffd5b505050505b50505b80546040516001600160a01b038416917ffe4c6998a06520b63340a48710b374432cb395da90e4e5360e1ec7aeefebecef9161217091610100900460ff16905f90614d68565b60405180910390a2506001600160a01b03165f908152600160205260409020805461ffff19169055565b5f5f5160206151cb5f395f51905f526001600160a01b0383166121d2576040516322718ad960e21b81525f6004820152602401610afb565b6001600160a01b039092165f908152600390920160205250604090205490565b610f21613082565b7f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930180546060915f5160206151cb5f395f51905f529161083a90614a87565b6001600160a01b0382165f90815260046020526040812090612259836130ca565b82549091506001600160801b0390811690829081168211156122a157604051630ce06d1360e31b81526001600160801b03928316600482015291166024820152604401610afb565b5050815460408051600160801b9092046001600160801b039081168352831660208301526001600160a01b038616917f7e1092696182a6d6922c9583db468951527f21f67f9f2f4911ed3f7bbf02b330910160405180910390a281546001600160801b03918216600160801b0291161790555050565b610a27338383613101565b604080515f815260208101909152606090826001600160401b0381111561234b5761234b6142c6565b60405190808252806020026020018201604052801561237e57816020015b60608152602001906001900390816123695790505b5091505f5b838110156123ff576123da308686848181106123a1576123a1614fa8565b90506020028101906123b39190614fbc565b856040516020016123c69392919061501c565b6040516020818303038152906040526131b0565b8382815181106123ec576123ec614fa8565b6020908102919091010152600101612383565b505092915050565b612412848484610e90565b610f133385858585613250565b6124276128a0565b610a2761243936849003840184614d8e565b825f61336f565b606061244b82612823565b505f6124556135f4565b90505f8151116124735760405180602001604052805f81525061249e565b8061247d84613684565b60405160200161248e929190615031565b6040516020818303038152906040525b9392505050565b6124ad6128a0565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663d505accf336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604481018990526064810187905260ff8616608482015260a4810185905260c4810184905260e4015f604051808303815f87803b158015612546575f5ffd5b505af1925050508015612557575060015b50611ce3878787613713565b5f61256c6128a0565b826001600160a01b0381166125a057604051639cfea58360e01b81526001600160a01b039091166004820152602401610afb565b506125ac856001612f25565b6001600160a01b0385166323e103a885336040516001600160e01b031960e085901b16815260048101929092526001600160a01b0390811660248301528086166044830152861660648201526084016020604051808303815f875af1158015612617573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061263b9190614f55565b90506001600160a01b03831633604080516001600160a01b03868116825260208201869052928316928916917fe826ecb5c03d4897f8ab426ee94064e06179dff39cd9fdd0776904cd935c95d8910160405180910390a4949350505050565b6001600160a01b039182165f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab00793056020908152604080832093909416825291909152205460ff1690565b6126ef8161385e565b50565b6126fa6128a0565b610f3d838383613713565b61270d6128a0565b4261272061018083016101608401614da9565b64ffffffffff16111561277057803561274161018083016101608401614da9565b60405163312bfdd760e11b8152600481019290925264ffffffffff166024820152426044820152606401610afb565b6126ef61278236839003830183614d8e565b5f600161336f565b5f6001600160e01b031982166380ac58cd60e01b14806127ba57506001600160e01b03198216635b5e139f60e01b145b8061081557506301ffc9a760e01b6001600160e01b0319831614610815565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610815565b6128096138ec565b610a278282613911565b610f216138ec565b6126e66138ec565b5f5f61282e83613941565b90506001600160a01b03811661081557604051637e27328960e01b815260048101849052602401610afb565b5f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930460205260409020546001600160a01b031690565b610f3d838383600161397a565b5f51602061520b5f395f51905f525460ff1615610f215760405163d93c066560e01b815260040160405180910390fd5b60016128dc8383613a8d565b60038111156128ed576128ed6145e6565b14610a2757604051630422f25f60e01b815260040160405180910390fd5b5f61249e6bffffffffffffffffffffffff83166bffffffffffffffffffffffff19606086901b16615045565b5f816040516020016129499190614b6b565b60408051601f1981840301815291905280516020909101209050818161298357604051636ee9f64760e01b8152600401610afb9190614b6b565b50919050565b6129938383613afe565b610f3d335f858585613250565b6001600160a01b0383165f9081526004602052604090208215612a4a576129c6826130ca565b815482905f906129e09084906001600160801b0316615058565b82546101009290920a6001600160801b0381810219909316918316021790915582548082169250600160801b90041680821115612a4357604051630ce06d1360e31b81526001600160801b03928316600482015291166024820152604401610afb565b5050610f13565b612a53826130ca565b815482905f90612a6d9084906001600160801b0316615077565b92506101000a8154816001600160801b0302191690836001600160801b0316021790555050505050565b612aa5848484846001613b5f565b610f1357604051635274afe760e01b81526001600160a01b0385166004820152602401610afb565b5f612ad66128a0565b612ae1848484613bcc565b949350505050565b612af1613cce565b5f51602061520b5f395f51905f52805460ff191681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a150565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480612bce57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316612bc25f5160206151eb5f395f51905f52546001600160a01b031690565b6001600160a01b031614155b15610f215760405163703e46dd60e11b815260040160405180910390fd5b5f8190507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c56573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c7a9190614ab9565b6001600160a01b031614610a27576040516324a41b4360e11b815260040160405180910390fd5b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015612cfb575060408051601f3d908101601f19168201909252612cf891810190614f55565b60015b612d2357604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610afb565b5f5160206151eb5f395f51905f528114612d5357604051632a87526960e21b815260048101829052602401610afb565b610f3d8383613cfd565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f215760405163703e46dd60e11b815260040160405180910390fd5b805115801590612dcc575080515f90815260026020526040902054612dca82612937565b145b815190610a27576040516321df5fa560e11b8152600401610afb91815260200190565b5f612dfa8284614e8d565b90508015612e3757612e376001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016868684612a97565b5050505050565b5f612e48836110b4565b9050612e5b81630162fc8560e11b613d52565b612e6457505050565b5f6001600160a01b038216635ee0c7dd336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101879052606481018690526084016020604051808303815f875af1158015612ecc573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ef09190615096565b90506001600160e01b03198116635ee0c7dd60e01b14610f1357806040516381784a5160e01b8152600401610afb9190614ea0565b5f612f308383613a8d565b90506001816003811115612f4657612f466145e6565b14158015612f6657506002816003811115612f6357612f636145e6565b14155b15610f3d5760405163d08ef1ff60e01b815260040160405180910390fd5b5f612f8e856110b4565b9050612fa181630162fc8560e11b613d52565b612fab5750610f13565b5f6001600160a01b0382166362eb345e336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101899052606481018890526084810187905260a4810186905260c4016020604051808303815f875af1158015613021573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130459190615096565b90506001600160e01b031981166331759a2f60e11b1461307a57806040516381784a5160e01b8152600401610afb9190614ea0565b505050505050565b61308a6128a0565b5f51602061520b5f395f51905f52805460ff191660011781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833612b2a565b5f6001600160801b038211156130fd576040516306dfcc6560e41b81526080600482015260248101839052604401610afb565b5090565b5f5160206151cb5f395f51905f526001600160a01b03831661314157604051630b61174360e31b81526001600160a01b0384166004820152602401610afb565b6001600160a01b038481165f818152600584016020908152604080832094881680845294825291829020805460ff191687151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a350505050565b60605f6131bd8484613d6d565b90508080156131de57505f3d11806131de57505f846001600160a01b03163b115b156131f3576131eb613d80565b915050610815565b801561321d57604051639996b31560e01b81526001600160a01b0385166004820152602401610afb565b3d156132305761322b613d99565b613249565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b6001600160a01b0383163b15612e3757604051630a85bd0160e11b81526001600160a01b0384169063150b7a02906132929088908890879087906004016150b1565b6020604051808303815f875af19250505080156132cc575060408051601f3d908101601f191682019092526132c991810190615096565b60015b613333573d8080156132f9576040519150601f19603f3d011682016040523d82523d5f602084013e6132fe565b606091505b5080515f0361332b57604051633250574960e11b81526001600160a01b0385166004820152602401610afb565b805160208201fd5b6001600160e01b03198116630a85bd0160e11b1461307a57604051633250574960e11b81526001600160a01b0385166004820152602401610afb565b61337883612da6565b825160601c8115801561339457506001600160a01b0381163314155b156133b257604051634ace04f960e01b815260040160405180910390fd5b8215806133ca57504284610160015164ffffffffff16115b8451906133ed57604051630422552f60e11b8152600401610afb91815260200190565b506133f9816002612f25565b602084015183908082111561342a576040516317d3b4f960e01b815260048101929092526024820152604401610afb565b50505f5f841190505f826001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561346f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134939190614ab9565b90506134a0816003612f25565b85515f908152600260205260408120558115613529575f6134c3875f01516110b4565b604051631dda289960e01b81529091506001600160a01b03831690631dda2899906134f69084908b908b906004016150e3565b5f604051808303815f87803b15801561350d575f5ffd5b505af115801561351f573d5f5f3e3d5ffd5b5050505050613583565b6040516376185ff160e01b81526001600160a01b038216906376185ff190613555908990600401614b6b565b5f604051808303815f87803b15801561356c575f5ffd5b505af115801561357e573d5f5f3e3d5ffd5b505050505b613592835f88602001516129a0565b85516040518681526001600160a01b038516907f54f4a270ea08f88dc23b2520d6b063fecb24d956c4496f447926d736338f545e9060200160405180910390a384156135e95785516135e49086613da4565b61307a565b855161307a90613e8b565b60606003805461360390614a87565b80601f016020809104026020016040519081016040528092919081815260200182805461362f90614a87565b801561367a5780601f106136515761010080835404028352916020019161367a565b820191905f5260205f20905b81548152906001019060200180831161365d57829003601f168201915b5050505050905090565b60605f61369083613f79565b60010190505f816001600160401b038111156136ae576136ae6142c6565b6040519080825280601f01601f1916602001820160405280156136d8576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846136e257509392505050565b806001600160a01b03811661374757604051639cfea58360e01b81526001600160a01b039091166004820152602401610afb565b506137538360016128d0565b6137887f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316338585612a97565b6001600160a01b038316632e2d298483336040516001600160e01b031960e085901b16815260048101929092526001600160a01b039081166024830152841660448201526064015f604051808303815f87803b1580156137e6575f5ffd5b505af11580156137f8573d5f5f3e3d5ffd5b50505050806001600160a01b031661380d3390565b6001600160a01b0316846001600160a01b03167f7cfff908a4b583f36430b25d75964c458d8ede8a99bd61be750e97ee1b2f3a968560405161385191815260200190565b60405180910390a4505050565b6001600160a01b038116613885576040516307a2ee8b60e11b815260040160405180910390fd5b5f54604080516001600160a01b03928316815291831660208301527f8c3aa5f43a388513435861bf27dfad7829cd248696fed367c62d441f62954496910160405180910390a15f80546001600160a01b0319166001600160a01b0392909216919091179055565b6138f4614050565b610f2157604051631afcd79f60e31b815260040160405180910390fd5b6139196138ec565b5f5160206151cb5f395f51905f52806139328482615110565b5060018101610f138382615110565b5f9081527f80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab007930260205260409020546001600160a01b031690565b5f5160206151cb5f395f51905f52818061399c57506001600160a01b03831615155b15613a5d575f6139ab85612823565b90506001600160a01b038416158015906139d75750836001600160a01b0316816001600160a01b031614155b80156139ea57506139e8818561269a565b155b15613a135760405163a9fbf51f60e01b81526001600160a01b0385166004820152602401610afb565b8215613a5b5784866001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5f93845260040160205250506040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382165f908152600160205260408120826003811115613ab657613ab66145e6565b8154610100900460ff166003811115613ad157613ad16145e6565b14613af357838360405163502c9a5f60e01b8152600401610afb929190614ed0565b5460ff169392505050565b6001600160a01b038216613b2757604051633250574960e11b81525f6004820152602401610afb565b5f613b3383835f612acd565b90506001600160a01b03811615610f3d576040516339e3563760e11b81525f6004820152602401610afb565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f51148316613bbb578383151615613baf573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b5f5f5160206151cb5f395f51905f5281613be585613941565b90506001600160a01b03841615613c0157613c01818587614069565b6001600160a01b03811615613c3d57613c1c5f865f5f61397a565b6001600160a01b0381165f908152600383016020526040902080545f190190555b6001600160a01b03861615613c6d576001600160a01b0386165f9081526003830160205260409020805460010190555b5f85815260028301602052604080822080546001600160a01b0319166001600160a01b038a811691821790925591518893918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a495945050505050565b5f51602061520b5f395f51905f525460ff16610f2157604051638dfc202b60e01b815260040160405180910390fd5b613d06826140cd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115613d4a57610f3d82826131b0565b610a27614130565b5f613d5c8361414f565b801561249e575061249e838361419a565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f613dae836110b4565b9050613dc181630162fc8560e11b613d52565b613dca57505050565b5f6001600160a01b03821663d6281d3e336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260448101879052606481018690526084016020604051808303815f875af1158015613e32573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e569190615096565b90506001600160e01b03198116636b140e9f60e11b14610f1357806040516381784a5160e01b8152600401610afb9190614ea0565b5f613e95826110b4565b9050613ea881630162fc8560e11b613d52565b613eb0575050565b6001600160a01b03811663e8e617b7620249f0336040516001600160e01b031960e085901b1681526001600160a01b039091166004820152306024820152604481018690526064016020604051808303815f8887f193505050508015613f33575060408051601f3d908101601f19168201909252613f3091810190615096565b60015b610f3d576040516001600160a01b038216815282907f6ce8016f81523f240956bca9a698e643d09e84e7d0e931470b1016baf1027bd09060200160405180910390a25050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310613fb75772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310613fe3576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061400157662386f26fc10000830492506010015b6305f5e1008310614019576305f5e100830492506008015b612710831061402d57612710830492506004015b6064831061403f576064830492506002015b600a83106108155760010192915050565b5f6140596127d9565b54600160401b900460ff16919050565b6140748383836141be565b610f3d576001600160a01b0383166140a257604051637e27328960e01b815260048101829052602401610afb565b60405163177e802f60e01b81526001600160a01b038316600482015260248101829052604401610afb565b806001600160a01b03163b5f0361410257604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610afb565b5f5160206151eb5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b3415610f215760405163b398979f60e01b815260040160405180910390fd5b5f614161826301ffc9a760e01b61419a565b1561418e575f8061417a846001600160e01b0319614222565b91509150818015612ae15750159392505050565b505f919050565b919050565b5f5f5f6141a78585614222565b915091508180156141b55750805b95945050505050565b5f6001600160a01b03831615801590612ae15750826001600160a01b0316846001600160a01b031614806141f757506141f7848461269a565b80612ae15750826001600160a01b03166142108361285a565b6001600160a01b031614949350505050565b6301ffc9a760e01b5f818152600483905290819060208260248188617530fa92505f511515601f3d11169150509250929050565b6001600160e01b0319811681146126ef575f5ffd5b5f6020828403121561427b575f5ffd5b813561249e81614256565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61249e6020830184614286565b634e487b7160e01b5f52604160045260245ffd5b60405161018081016001600160401b03811182821017156142fd576142fd6142c6565b60405290565b5f82601f830112614312575f5ffd5b8135602083015f5f6001600160401b03841115614331576143316142c6565b50604051601f19601f85018116603f011681018181106001600160401b038211171561435f5761435f6142c6565b604052838152905080828401871015614376575f5ffd5b838360208301375f602085830101528094505050505092915050565b6001600160a01b03811681146126ef575f5ffd5b5f5f5f606084860312156143b8575f5ffd5b83356001600160401b038111156143cd575f5ffd5b6143d986828701614303565b93505060208401356001600160401b038111156143f4575f5ffd5b61440086828701614303565b925050604084013561441181614392565b809150509250925092565b5f6020828403121561442c575f5ffd5b5035919050565b5f5f60408385031215614444575f5ffd5b823561444f81614392565b946020939093013593505050565b803564ffffffffff81168114614195575f5ffd5b5f6101808284031215614482575f5ffd5b61448a6142da565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e080840135908201526101008084013590820152610120808401359082015290506144f9610140830161445d565b61014082015261450c610160830161445d565b61016082015292915050565b80356bffffffffffffffffffffffff81168114614195575f5ffd5b5f5f5f5f6101e08587031215614547575f5ffd5b6145518686614471565b935061018085013561456281614392565b92506101a085013561457381614392565b91506145826101c08601614518565b905092959194509250565b5f5f5f6060848603121561459f575f5ffd5b83356145aa81614392565b925060208401356145ba81614392565b929592945050506040919091013590565b5f602082840312156145db575f5ffd5b813561249e81614392565b634e487b7160e01b5f52602160045260245ffd5b600481106126ef57634e487b7160e01b5f52602160045260245ffd5b60208101614623836145fa565b91905290565b5f5f6040838503121561463a575f5ffd5b823561464581614392565b915060208301356001600160401b0381111561465f575f5ffd5b61466b85828601614303565b9150509250929050565b5f5f60208385031215614686575f5ffd5b82356001600160401b0381111561469b575f5ffd5b8301601f810185136146ab575f5ffd5b80356001600160401b038111156146c0575f5ffd5b8560208284010111156146d1575f5ffd5b6020919091019590945092505050565b600481106126ef575f5ffd5b5f5f604083850312156146fe575f5ffd5b823561470981614392565b91506020830135614719816146e1565b809150509250929050565b5f6101808284031215612983575f5ffd5b5f5f5f5f6103408587031215614749575f5ffd5b6147538686614724565b9350614763866101808701614471565b925061030085013561477481614392565b91506145826103208601614518565b5f5f5f5f6101e08587031215614797575f5ffd5b6147a18686614724565b9661018086013596506101a0860135956101c00135945092505050565b80151581146126ef575f5ffd5b5f5f604083850312156147dc575f5ffd5b82356147e781614392565b91506020830135614719816147be565b5f5f60208385031215614808575f5ffd5b82356001600160401b0381111561481d575f5ffd5b8301601f8101851361482d575f5ffd5b80356001600160401b03811115614842575f5ffd5b8560208260051b84010111156146d1575f5ffd5b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b828110156148ad57603f19878603018452614898858351614286565b9450602093840193919091019060010161487c565b50929695505050505050565b5f5f5f5f608085870312156148cc575f5ffd5b84356148d781614392565b935060208501356148e781614392565b92506040850135915060608501356001600160401b03811115614908575f5ffd5b61491487828801614303565b91505092959194509250565b5f5f6101a08385031215614932575f5ffd5b61493c8484614724565b94610180939093013593505050565b5f5f5f5f5f5f5f60e0888a031215614961575f5ffd5b873561496c81614392565b965060208801359550604088013561498381614392565b945060608801359350608088013560ff8116811461499f575f5ffd5b9699959850939692959460a0840135945060c09093013592915050565b5f5f5f5f608085870312156149cf575f5ffd5b84356149da81614392565b93506020850135925060408501356149f181614392565b91506060850135614a0181614392565b939692955090935050565b5f5f60408385031215614a1d575f5ffd5b8235614a2881614392565b9150602083013561471981614392565b5f5f5f60608486031215614a4a575f5ffd5b8335614a5581614392565b925060208401359150604084013561441181614392565b5f6101808284031215614a7d575f5ffd5b61249e8383614724565b600181811c90821680614a9b57607f821691505b60208210810361298357634e487b7160e01b5f52602260045260245ffd5b5f60208284031215614ac9575f5ffd5b815161249e81614392565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e0830152610100810151610100830152610120810151610120830152610140810151614b5061014084018264ffffffffff169052565b50610160810151610f3d61016084018264ffffffffff169052565b61018081016108158284614ad4565b5f5f60408385031215614b8b575f5ffd5b8251614b9681614392565b602084015190925061471981614392565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b604081525f5f8554614be081614a87565b806040860152600182165f8114614bfe5760018114614c1a57614c4b565b60ff1983166060870152606082151560051b8701019350614c4b565b885f5260205f205f5b83811015614c4257815488820160600152600190910190602001614c23565b87016060019450505b5050508281036020840152614c61818587614ba7565b9695505050505050565b601f821115610f3d57805f5260205f20601f840160051c81016020851015614c905750805b601f840160051c820191505b81811015612e37575f8155600101614c9c565b6001600160401b03831115614cc657614cc66142c6565b614cda83614cd48354614a87565b83614c6b565b5f601f841160018114614d0b575f8515614cf45750838201355b5f19600387901b1c1916600186901b178355612e37565b5f83815260208120601f198716915b82811015614d3a5786850135825560209485019460019092019101614d1a565b5086821015614d56575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60408101614d75846145fa565b838252614d81836145fa565b8260208301529392505050565b5f6101808284031215614d9f575f5ffd5b61249e8383614471565b5f60208284031215614db9575f5ffd5b61249e8261445d565b803582526020808201359083015260408082013590830152606080820135908301526080808201359083015260a0808201359083015260c0808201359083015260e0808201359083015261010080820135908301526101208082013590830152614e2f610140820161445d565b64ffffffffff16610140830152614e49610160820161445d565b64ffffffffff8116610160840152505050565b6103008101614e6b8285614dc2565b61249e610180830184614ad4565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561081557610815614e79565b6001600160e01b031991909116815260200190565b5f60208284031215614ec5575f5ffd5b815161249e816147be565b6001600160a01b038316815260408101614d81836145fa565b6101e08101614ef88287614dc2565b84610180830152836101a0830152826101c083015295945050505050565b6102008101614f258288614dc2565b6101808201959095526101a08101939093526101c08301919091526001600160a01b03166101e090910152919050565b5f60208284031215614f65575f5ffd5b5051919050565b60408101614f79846145fa565b9281526020015290565b60408101614f90846145fa565b9281526001600160801b039190911660209091015290565b634e487b7160e01b5f52603260045260245ffd5b5f5f8335601e19843603018112614fd1575f5ffd5b8301803591506001600160401b03821115614fea575f5ffd5b602001915036819003821315614ffe575f5ffd5b9250929050565b5f81518060208401855e5f93019283525090919050565b828482375f8382015f8152614c618185615005565b5f612ae161503f8386615005565b84615005565b8082018082111561081557610815614e79565b6001600160801b03818116838216019081111561081557610815614e79565b6001600160801b03828116828216039081111561081557610815614e79565b5f602082840312156150a6575f5ffd5b815161249e81614256565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90614c6190830184614286565b6001600160a01b03841681526101c081016151016020830185614ad4565b826101a0830152949350505050565b81516001600160401b03811115615129576151296142c6565b61513d816151378454614a87565b84614c6b565b6020601f82116001811461516f575f83156151585750848201515b5f19600385901b1c1916600184901b178455612e37565b5f84815260208120601f198516915b8281101561519e578785015182556020948501946001909201910161517e565b50848210156151bb57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe80bb2b638cc20bc4d0a60d66940f3ab4a00c1d7b313497ca82fb0b4ab0079300360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbccd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300a26469706673582212205c4657bf2d579a6da6c96909adb50a9ad7851fd2f4a2c93ae965420f20889a3064736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x23E JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6F86C897 GT PUSH2 0x134 JUMPI DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0xB3 JUMPI DUP1 PUSH4 0xDFCD412E GT PUSH2 0x78 JUMPI DUP1 PUSH4 0xDFCD412E EQ PUSH2 0x723 JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x742 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x774 JUMPI DUP1 PUSH4 0xF0F44260 EQ PUSH2 0x793 JUMPI DUP1 PUSH4 0xF45346DC EQ PUSH2 0x7B2 JUMPI DUP1 PUSH4 0xF720BBBF EQ PUSH2 0x7D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x677 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x6A7 JUMPI DUP1 PUSH4 0xBD644C56 EQ PUSH2 0x6C6 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x6E5 JUMPI DUP1 PUSH4 0xDE27010A EQ PUSH2 0x704 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95D89B41 GT PUSH2 0xF9 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x59B JUMPI DUP1 PUSH4 0x9760905E EQ PUSH2 0x5AF JUMPI DUP1 PUSH4 0x9E2D8922 EQ PUSH2 0x5CE JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x62C JUMPI DUP1 PUSH4 0xAC9650D8 EQ PUSH2 0x64B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6F86C897 EQ PUSH2 0x4F1 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x510 JUMPI DUP1 PUSH4 0x792DA09E EQ PUSH2 0x52F JUMPI DUP1 PUSH4 0x82AFD23B EQ PUSH2 0x55A JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x587 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4F1EF286 GT PUSH2 0x1C0 JUMPI DUP1 PUSH4 0x61D027B3 GT PUSH2 0x185 JUMPI DUP1 PUSH4 0x61D027B3 EQ PUSH2 0x459 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x475 JUMPI DUP1 PUSH4 0x663D8337 EQ PUSH2 0x494 JUMPI DUP1 PUSH4 0x6B8734E7 EQ PUSH2 0x4B3 JUMPI DUP1 PUSH4 0x6F520B73 EQ PUSH2 0x4D2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x3D1 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x3E4 JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x3F8 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x417 JUMPI DUP1 PUSH4 0x5FCBF445 EQ PUSH2 0x43A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xD100ACB GT PUSH2 0x206 JUMPI DUP1 PUSH4 0xD100ACB EQ PUSH2 0x30E JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x33B JUMPI DUP1 PUSH4 0x33D6157A EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x39E JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x3B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x242 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x276 JUMPI DUP1 PUSH4 0x77F224A EQ PUSH2 0x297 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x2B8 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2EF JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x24D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x261 PUSH2 0x25C CALLDATASIZE PUSH1 0x4 PUSH2 0x426B JUMP JUMPDEST PUSH2 0x7F0 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 0x281 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x28A PUSH2 0x81B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x42B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x2B1 CALLDATASIZE PUSH1 0x4 PUSH2 0x43A6 JUMP JUMPDEST PUSH2 0x8BC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2D7 PUSH2 0x2D2 CALLDATASIZE PUSH1 0x4 PUSH2 0x441C JUMP JUMPDEST PUSH2 0xA08 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x26D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x309 CALLDATASIZE PUSH1 0x4 PUSH2 0x4433 JUMP JUMPDEST PUSH2 0xA1C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x319 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x328 CALLDATASIZE PUSH1 0x4 PUSH2 0x4533 JUMP JUMPDEST PUSH2 0xA2B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x26D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x346 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x355 CALLDATASIZE PUSH1 0x4 PUSH2 0x458D JUMP JUMPDEST PUSH2 0xE90 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x365 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x391 PUSH2 0x374 CALLDATASIZE PUSH1 0x4 PUSH2 0x45CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x4616 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0xF19 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x3CC CALLDATASIZE PUSH1 0x4 PUSH2 0x458D JUMP JUMPDEST PUSH2 0xF23 JUMP JUMPDEST PUSH2 0x2B6 PUSH2 0x3DF CALLDATASIZE PUSH1 0x4 PUSH2 0x4629 JUMP JUMPDEST PUSH2 0xF42 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0xF5D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x403 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x412 CALLDATASIZE PUSH1 0x4 PUSH2 0x4675 JUMP JUMPDEST PUSH2 0xF78 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x422 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x520B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0xFF AND PUSH2 0x261 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x445 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x454 CALLDATASIZE PUSH1 0x4 PUSH2 0x46ED JUMP JUMPDEST PUSH2 0xFC1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x464 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2D7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x480 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2D7 PUSH2 0x48F CALLDATASIZE PUSH1 0x4 PUSH2 0x441C JUMP JUMPDEST PUSH2 0x10B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x49F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x4AE CALLDATASIZE PUSH1 0x4 PUSH2 0x4735 JUMP JUMPDEST PUSH2 0x10BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4BE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x4CD CALLDATASIZE PUSH1 0x4 PUSH2 0x46ED JUMP JUMPDEST PUSH2 0x15C4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4DD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x4EC CALLDATASIZE PUSH1 0x4 PUSH2 0x4783 JUMP JUMPDEST PUSH2 0x1A9F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4FC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x50B CALLDATASIZE PUSH1 0x4 PUSH2 0x45CB JUMP JUMPDEST PUSH2 0x1CEC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x51B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x52A CALLDATASIZE PUSH1 0x4 PUSH2 0x45CB JUMP JUMPDEST PUSH2 0x219A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x549 CALLDATASIZE PUSH1 0x4 PUSH2 0x441C JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x565 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x261 PUSH2 0x574 CALLDATASIZE PUSH1 0x4 PUSH2 0x441C JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD ISZERO ISZERO SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x592 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x21F2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5A6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x28A PUSH2 0x21FA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x5C9 CALLDATASIZE PUSH1 0x4 PUSH2 0x4433 JUMP JUMPDEST PUSH2 0x2238 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x617 PUSH2 0x5E8 CALLDATASIZE PUSH1 0x4 PUSH2 0x45CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP3 AND SWAP3 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 SWAP3 DIV AND SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP3 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ADD PUSH2 0x26D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x637 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x646 CALLDATASIZE PUSH1 0x4 PUSH2 0x47CB JUMP JUMPDEST PUSH2 0x2317 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x656 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x66A PUSH2 0x665 CALLDATASIZE PUSH1 0x4 PUSH2 0x47F7 JUMP JUMPDEST PUSH2 0x2322 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x4856 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x682 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x28A PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x6C1 CALLDATASIZE PUSH1 0x4 PUSH2 0x48B9 JUMP JUMPDEST PUSH2 0x2407 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x6E0 CALLDATASIZE PUSH1 0x4 PUSH2 0x4920 JUMP JUMPDEST PUSH2 0x241F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6F0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x28A PUSH2 0x6FF CALLDATASIZE PUSH1 0x4 PUSH2 0x441C JUMP JUMPDEST PUSH2 0x2440 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x70F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x71E CALLDATASIZE PUSH1 0x4 PUSH2 0x494B JUMP JUMPDEST PUSH2 0x24A5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x72E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x32D PUSH2 0x73D CALLDATASIZE PUSH1 0x4 PUSH2 0x49BC JUMP JUMPDEST PUSH2 0x2563 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x74D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x2D7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x77F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x261 PUSH2 0x78E CALLDATASIZE PUSH1 0x4 PUSH2 0x4A0C JUMP JUMPDEST PUSH2 0x269A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x79E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x7AD CALLDATASIZE PUSH1 0x4 PUSH2 0x45CB JUMP JUMPDEST PUSH2 0x26E6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x7CC CALLDATASIZE PUSH1 0x4 PUSH2 0x4A38 JUMP JUMPDEST PUSH2 0x26F2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2B6 PUSH2 0x7EB CALLDATASIZE PUSH1 0x4 PUSH2 0x4A6C JUMP JUMPDEST PUSH2 0x2705 JUMP JUMPDEST PUSH0 PUSH2 0x7FA DUP3 PUSH2 0x278A JUMP JUMPDEST DUP1 PUSH2 0x815 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xC4769787 PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x60 SWAP2 SWAP1 DUP2 SWAP1 PUSH2 0x83A SWAP1 PUSH2 0x4A87 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 0x866 SWAP1 PUSH2 0x4A87 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x8B1 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x888 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x8B1 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 0x894 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x8C5 PUSH2 0x27D9 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x8EB JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x906 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x914 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x932 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x95C JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST DUP8 MLOAD PUSH0 SUB PUSH2 0x97C JUMPI PUSH1 0x40 MLOAD PUSH3 0xBEEFB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP7 MLOAD PUSH0 SUB PUSH2 0x99D JUMPI PUSH1 0x40 MLOAD PUSH4 0x43B47BCB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9A7 DUP9 DUP9 PUSH2 0x2801 JUMP JUMPDEST PUSH2 0x9AF PUSH2 0x2813 JUMP JUMPDEST PUSH2 0x9B8 DUP7 PUSH2 0x281B JUMP JUMPDEST DUP4 ISZERO PUSH2 0x9FE JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA12 DUP3 PUSH2 0x2823 JUMP JUMPDEST POP PUSH2 0x815 DUP3 PUSH2 0x285A JUMP JUMPDEST PUSH2 0xA27 DUP3 DUP3 CALLER PUSH2 0x2893 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0xA34 PUSH2 0x28A0 JUMP JUMPDEST CALLER PUSH2 0xA40 DUP2 PUSH1 0x2 PUSH2 0x28D0 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xA7D 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 0xAA1 SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP PUSH2 0xAAE DUP2 PUSH1 0x3 PUSH2 0x28D0 JUMP JUMPDEST PUSH2 0xAB8 DUP3 DUP6 PUSH2 0x290B JUMP JUMPDEST DUP1 DUP9 MSTORE PUSH5 0xFFFFFFFFFF TIMESTAMP AND PUSH2 0x140 DUP10 ADD MSTORE PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP8 MLOAD SWAP1 ISZERO PUSH2 0xB04 JUMPI PUSH1 0x40 MLOAD PUSH4 0x15E46FBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH2 0xB0E DUP8 PUSH2 0x2937 JUMP JUMPDEST DUP8 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE DUP10 MLOAD DUP4 MLOAD SWAP2 DUP3 ADD SWAP1 SWAP4 MSTORE SWAP1 DUP2 MSTORE PUSH2 0xB3C SWAP2 DUP8 SWAP2 PUSH2 0x2989 JUMP JUMPDEST PUSH2 0xB4C DUP3 PUSH1 0x1 DUP10 PUSH1 0x20 ADD MLOAD PUSH2 0x29A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xF79AC183 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0xF79AC183 SWAP1 PUSH2 0xB78 SWAP1 DUP11 SWAP1 PUSH1 0x4 ADD PUSH2 0x4B6B JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xB8F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xBA1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP PUSH1 0xA0 DUP9 ADD MLOAD PUSH2 0xBE2 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 DUP9 SWAP1 DUP5 SWAP1 PUSH2 0x2A97 JUMP JUMPDEST PUSH0 PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x5E445859 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC1F 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 0xC43 SWAP2 SWAP1 PUSH2 0x4B7A JUMP JUMPDEST PUSH2 0x120 DUP12 ADD MLOAD SWAP2 SWAP4 POP SWAP2 POP ISZERO PUSH2 0xC91 JUMPI PUSH2 0x120 DUP10 ADD MLOAD PUSH2 0xC91 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 DUP11 SWAP1 DUP5 SWAP1 PUSH2 0x2A97 JUMP JUMPDEST PUSH2 0x100 DUP10 ADD MLOAD ISZERO PUSH2 0xCDA JUMPI PUSH2 0x100 DUP10 ADD MLOAD PUSH2 0xCDA SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 DUP11 SWAP1 DUP6 SWAP1 PUSH2 0x2A97 JUMP JUMPDEST PUSH0 SLOAD PUSH1 0xC0 DUP11 ADD MLOAD PUSH2 0xD1D SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND SWAP3 DUP13 SWAP3 SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH2 0x2A97 JUMP JUMPDEST PUSH0 DUP10 PUSH1 0xE0 ADD MLOAD GT DUP1 ISZERO PUSH2 0xDA1 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x521EB273 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD67 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 0xD8B SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0xE41 JUMPI PUSH2 0xE41 DUP9 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x521EB273 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xDE6 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 0xE0A SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST PUSH1 0xE0 DUP13 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP3 SWAP2 SWAP1 PUSH2 0x2A97 JUMP JUMPDEST DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x988AC1A1C4820F963124B6FA0394627AD4FA3DE7583A76399B998C1D7E43AF3F DUP11 PUSH1 0x40 MLOAD PUSH2 0xE7A SWAP2 SWAP1 PUSH2 0x4B6B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP SWAP6 MLOAD SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xEB9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 PUSH2 0xEC5 DUP4 DUP4 CALLER PUSH2 0x2ACD JUMP JUMPDEST SWAP1 POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF13 JUMPI PUSH1 0x40 MLOAD PUSH4 0x64283D7B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP5 SWAP1 MSTORE DUP3 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xAFB JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xF21 PUSH2 0x2AE9 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0xF3D DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0x2407 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xF4A PUSH2 0x2B48 JUMP JUMPDEST PUSH2 0xF53 DUP3 PUSH2 0x2BEC JUMP JUMPDEST PUSH2 0xA27 DUP3 DUP3 PUSH2 0x2CA1 JUMP JUMPDEST PUSH0 PUSH2 0xF66 PUSH2 0x2D5D JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51EB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH32 0xC41B7CB64E5BE01AF4AFC2641AFC861432136270F4206B7773F229B658B96699 PUSH1 0x3 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0xFAC SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4BCF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x3 PUSH2 0xF3D DUP3 DUP5 DUP4 PUSH2 0x4CAF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP2 SLOAD PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xFEF JUMPI PUSH2 0xFEF PUSH2 0x45E6 JUMP JUMPDEST SUB PUSH2 0x100D JUMPI PUSH1 0x40 MLOAD PUSH4 0x7D918563 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1020 JUMPI PUSH2 0x1020 PUSH2 0x45E6 JUMP JUMPDEST SUB PUSH2 0x103E JUMPI PUSH1 0x40 MLOAD PUSH4 0x32B409A1 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD DUP3 SWAP1 DUP3 SWAP1 PUSH1 0xFF NOT AND PUSH1 0x1 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x105C JUMPI PUSH2 0x105C PUSH2 0x45E6 JUMP JUMPDEST MUL OR SWAP1 SSTORE POP DUP1 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP2 PUSH32 0xFE4C6998A06520B63340A48710B374432CB395DA90E4E5360E1EC7AEEFEBECEF SWAP2 PUSH2 0x10A7 SWAP2 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND SWAP1 DUP7 SWAP1 PUSH2 0x4D68 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x815 DUP3 PUSH2 0x2823 JUMP JUMPDEST PUSH0 PUSH2 0x10C7 PUSH2 0x28A0 JUMP JUMPDEST PUSH2 0x10DE PUSH2 0x10D9 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x4D8E JUMP JUMPDEST PUSH2 0x2DA6 JUMP JUMPDEST CALLER DUP6 CALLDATALOAD PUSH1 0x60 SHR DUP2 EQ PUSH2 0x1103 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4ACE04F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x110E DUP2 PUSH1 0x2 PUSH2 0x28D0 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x114B 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 0x116F SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP PUSH2 0x117C DUP2 PUSH1 0x3 PUSH2 0x28D0 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF TIMESTAMP AND PUSH2 0x1196 PUSH2 0x180 DUP10 ADD PUSH2 0x160 DUP11 ADD PUSH2 0x4DA9 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND GT DUP1 ISZERO PUSH2 0x11BD JUMPI POP TIMESTAMP PUSH5 0xFFFFFFFFFF AND DUP7 PUSH2 0x160 ADD MLOAD PUSH5 0xFFFFFFFFFF AND LT ISZERO JUMPDEST DUP8 CALLDATALOAD SWAP1 PUSH2 0x11E0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x422552F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP DUP6 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND DUP8 PUSH2 0x140 ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x1202 SWAP2 SWAP1 PUSH2 0x4DA9 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND EQ DUP1 ISZERO PUSH2 0x121E JUMPI POP DUP6 PUSH1 0xA0 ADD MLOAD DUP8 PUSH1 0xA0 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1232 JUMPI POP DUP6 PUSH1 0xC0 ADD MLOAD DUP8 PUSH1 0xC0 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1248 JUMPI POP DUP6 PUSH2 0x100 ADD MLOAD DUP8 PUSH2 0x100 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x125E JUMPI POP DUP6 PUSH2 0x120 ADD MLOAD DUP8 PUSH2 0x120 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1272 JUMPI POP DUP6 PUSH1 0xE0 ADD MLOAD DUP8 PUSH1 0xE0 ADD CALLDATALOAD GT ISZERO JUMPDEST DUP8 DUP8 SWAP1 SWAP2 PUSH2 0x1295 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1FF5485 PUSH1 0xE6 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP3 SWAP2 SWAP1 PUSH2 0x4E5C JUMP JUMPDEST POP POP PUSH2 0x12A1 DUP3 DUP6 PUSH2 0x290B JUMP JUMPDEST DUP1 DUP8 MSTORE PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP7 MLOAD SWAP1 ISZERO PUSH2 0x12D6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x15E46FBB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP PUSH2 0x12E0 DUP7 PUSH2 0x2937 JUMP JUMPDEST DUP7 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE PUSH2 0x12FD DUP9 CALLDATALOAD PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x131B DUP2 DUP9 PUSH0 ADD MLOAD PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0x2989 JUMP JUMPDEST DUP8 PUSH1 0x20 ADD CALLDATALOAD DUP8 PUSH1 0x20 ADD MLOAD GT ISZERO PUSH2 0x134F JUMPI PUSH2 0x134A DUP4 PUSH1 0x1 DUP11 PUSH1 0x20 ADD CALLDATALOAD DUP11 PUSH1 0x20 ADD MLOAD PUSH2 0x1345 SWAP2 SWAP1 PUSH2 0x4E8D JUMP JUMPDEST PUSH2 0x29A0 JUMP JUMPDEST PUSH2 0x1368 JUMP JUMPDEST PUSH2 0x1368 DUP4 PUSH0 DUP10 PUSH1 0x20 ADD MLOAD DUP12 PUSH1 0x20 ADD CALLDATALOAD PUSH2 0x1345 SWAP2 SWAP1 PUSH2 0x4E8D JUMP JUMPDEST DUP8 CALLDATALOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE MLOAD PUSH4 0x6AE360B3 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xD5C6C166 SWAP1 PUSH2 0x13A8 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x4E5C JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x13BF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x13D1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH2 0x13E9 DUP7 DUP4 DUP10 PUSH1 0xA0 ADD MLOAD DUP12 PUSH1 0xA0 ADD CALLDATALOAD PUSH2 0x2DEF JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x5E445859 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1426 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 0x144A SWAP2 SWAP1 PUSH2 0x4B7A JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1464 DUP9 DUP3 DUP12 PUSH2 0x120 ADD MLOAD DUP14 PUSH2 0x120 ADD CALLDATALOAD PUSH2 0x2DEF JUMP JUMPDEST PUSH2 0x147A DUP9 DUP4 DUP12 PUSH2 0x100 ADD MLOAD DUP14 PUSH2 0x100 ADD CALLDATALOAD PUSH2 0x2DEF JUMP JUMPDEST PUSH0 SLOAD PUSH1 0xC0 DUP1 DUP12 ADD MLOAD PUSH2 0x149D SWAP3 DUP12 SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP2 SWAP1 DUP15 ADD CALLDATALOAD PUSH2 0x2DEF JUMP JUMPDEST PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x521EB273 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x14DA 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 0x14FE SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x152D JUMPI PUSH2 0x152D DUP10 DUP3 DUP13 PUSH1 0xE0 ADD MLOAD DUP15 PUSH1 0xE0 ADD CALLDATALOAD PUSH2 0x2DEF JUMP JUMPDEST DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x988AC1A1C4820F963124B6FA0394627AD4FA3DE7583A76399B998C1D7E43AF3F DUP12 PUSH1 0x40 MLOAD PUSH2 0x1566 SWAP2 SWAP1 PUSH2 0x4B6B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP10 MLOAD PUSH1 0x40 MLOAD DUP13 CALLDATALOAD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND SWAP1 PUSH32 0x4FF4AC703CB703B7EA535D47E65E64B4CABF11B3E2EB41F152DAB17971953ADD SWAP1 PUSH0 SWAP1 LOG4 DUP10 MLOAD PUSH2 0x15B4 SWAP1 DUP13 CALLDATALOAD SWAP1 PUSH2 0x2E3E JUMP JUMPDEST POP POP SWAP7 MLOAD SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 DUP2 SLOAD PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x15F2 JUMPI PUSH2 0x15F2 PUSH2 0x45E6 JUMP JUMPDEST EQ PUSH2 0x1610 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCF9A96F3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1656 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 0x167A SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x16A1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFDEE243 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x16B5 JUMPI PUSH2 0x16B5 PUSH2 0x45E6 JUMP JUMPDEST EQ DUP1 ISZERO PUSH2 0x1731 JUMPI POP PUSH1 0x40 MLOAD PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x1FFC9A7 SWAP1 PUSH2 0x16F0 SWAP1 PUSH4 0x6D5136B1 PUSH1 0xE1 SHL SWAP1 PUSH1 0x4 ADD PUSH2 0x4EA0 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x170B 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 0x172F SWAP2 SWAP1 PUSH2 0x4EB5 JUMP JUMPDEST ISZERO JUMPDEST DUP1 PUSH2 0x17C7 JUMPI POP PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x174B JUMPI PUSH2 0x174B PUSH2 0x45E6 JUMP JUMPDEST EQ DUP1 ISZERO PUSH2 0x17C7 JUMPI POP PUSH1 0x40 MLOAD PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x1FFC9A7 SWAP1 PUSH2 0x1786 SWAP1 PUSH4 0xF7E4B01B PUSH1 0xE0 SHL SWAP1 PUSH1 0x4 ADD PUSH2 0x4EA0 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x17A1 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 0x17C5 SWAP2 SWAP1 PUSH2 0x4EB5 JUMP JUMPDEST ISZERO JUMPDEST DUP1 PUSH2 0x185D JUMPI POP PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x17E1 JUMPI PUSH2 0x17E1 PUSH2 0x45E6 JUMP JUMPDEST EQ DUP1 ISZERO PUSH2 0x185D JUMPI POP PUSH1 0x40 MLOAD PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x1FFC9A7 SWAP1 PUSH2 0x181C SWAP1 PUSH4 0x21B7E09B PUSH1 0xE0 SHL SWAP1 PUSH1 0x4 ADD PUSH2 0x4EA0 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1837 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 0x185B SWAP2 SWAP1 PUSH2 0x4EB5 JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x187F JUMPI DUP3 DUP3 PUSH1 0x40 MLOAD PUSH4 0x502C9A5F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP3 SWAP2 SWAP1 PUSH2 0x4ED0 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0xFF NOT DUP3 AND DUP2 OR DUP4 SSTORE DUP4 SWAP2 DUP4 SWAP2 PUSH2 0xFFFF NOT SWAP1 SWAP2 AND OR PUSH2 0x100 DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x18AD JUMPI PUSH2 0x18AD PUSH2 0x45E6 JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x18C6 JUMPI PUSH2 0x18C6 PUSH2 0x45E6 JUMP JUMPDEST SUB PUSH2 0x1A63 JUMPI PUSH0 DUP4 SWAP1 POP PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x536EBBFC PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x190C 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 0x1930 SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x1998 JUMPI PUSH1 0x40 MLOAD PUSH4 0x38EA38A7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0xE3A8E29C SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1981 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1993 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x7B83037B PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x19D4 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 0x19F8 SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x1A60 JUMPI PUSH1 0x40 MLOAD PUSH4 0x38EA38A7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0xE3A8E29C SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1A49 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1A5B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFE4C6998A06520B63340A48710B374432CB395DA90E4E5360E1EC7AEEFEBECEF DUP4 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x10A7 SWAP3 SWAP2 SWAP1 PUSH2 0x4D68 JUMP JUMPDEST PUSH2 0x1AA7 PUSH2 0x28A0 JUMP JUMPDEST PUSH2 0x1AB9 PUSH2 0x10D9 CALLDATASIZE DUP7 SWAP1 SUB DUP7 ADD DUP7 PUSH2 0x4D8E JUMP JUMPDEST CALLER DUP5 CALLDATALOAD PUSH1 0x60 SHR DUP2 EQ PUSH2 0x1ADE JUMPI PUSH1 0x40 MLOAD PUSH4 0x4ACE04F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1AE9 DUP2 PUSH1 0x2 PUSH2 0x2F25 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1B26 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 0x1B4A SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP PUSH2 0x1B57 DUP2 PUSH1 0x3 PUSH2 0x2F25 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF TIMESTAMP AND PUSH2 0x1B71 PUSH2 0x180 DUP9 ADD PUSH2 0x160 DUP10 ADD PUSH2 0x4DA9 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND GT DUP7 PUSH0 ADD CALLDATALOAD SWAP1 PUSH2 0x1B9E JUMPI PUSH1 0x40 MLOAD PUSH4 0x422552F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP DUP6 PUSH1 0xA0 ADD CALLDATALOAD DUP6 GT ISZERO DUP1 ISZERO PUSH2 0x1BB8 JUMPI POP DUP6 PUSH2 0x100 ADD CALLDATALOAD DUP5 GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1BC9 JUMPI POP DUP6 PUSH2 0x120 ADD CALLDATALOAD DUP4 GT ISZERO JUMPDEST DUP7 DUP7 DUP7 DUP7 SWAP1 SWAP2 SWAP3 SWAP4 PUSH2 0x1BF2 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA02DB783 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4EE9 JUMP JUMPDEST POP POP POP POP PUSH0 PUSH2 0x1C03 DUP8 PUSH0 ADD CALLDATALOAD PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x1C14 DUP4 PUSH0 DUP10 PUSH1 0x20 ADD CALLDATALOAD PUSH2 0x29A0 JUMP JUMPDEST DUP7 CALLDATALOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE MLOAD PUSH4 0x770FCD35 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xEE1F9A6A SWAP1 PUSH2 0x1C5A SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x4F16 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1C71 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1C83 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP PUSH1 0x40 DUP1 MLOAD DUP10 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP10 SWAP1 MSTORE SWAP1 DUP2 ADD DUP8 SWAP1 MSTORE DUP10 CALLDATALOAD SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP2 POP PUSH32 0x825C3EE6EECAA4B0DC3573E9732B65613D705CADFC4BA69CC76CB7D9227E5971 SWAP1 PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x1CE3 DUP8 CALLDATALOAD DUP8 DUP8 DUP8 PUSH2 0x2F84 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x2 DUP2 SLOAD PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1D1B JUMPI PUSH2 0x1D1B PUSH2 0x45E6 JUMP JUMPDEST EQ PUSH2 0x1D39 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5C92B239 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1D56 JUMPI PUSH2 0x1D56 PUSH2 0x45E6 JUMP JUMPDEST SUB PUSH2 0x1E51 JUMPI DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x18160DDD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1D97 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 0x1DBB SWAP2 SWAP1 PUSH2 0x4F55 JUMP JUMPDEST ISZERO PUSH2 0x1E4C JUMPI DUP1 PUSH0 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x18160DDD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1E0D 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 0x1E31 SWAP2 SWAP1 PUSH2 0x4F55 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1D0EC0AB PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP3 SWAP2 SWAP1 PUSH2 0x4F6C JUMP JUMPDEST PUSH2 0x212A JUMP JUMPDEST PUSH1 0x2 DUP2 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1E6E JUMPI PUSH2 0x1E6E PUSH2 0x45E6 JUMP JUMPDEST SUB PUSH2 0x1EE0 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND ISZERO PUSH2 0x1E4C JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SLOAD SWAP2 MLOAD PUSH4 0x1D0EC0AB PUSH1 0xE0 SHL DUP2 MSTORE PUSH2 0xAFB SWAP4 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 ADD PUSH2 0x4F83 JUMP JUMPDEST PUSH0 DUP3 SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x26CCBD22 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1F20 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 0x1F44 SWAP2 SWAP1 PUSH2 0x4F55 JUMP JUMPDEST ISZERO PUSH2 0x1F96 JUMPI DUP2 PUSH0 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x26CCBD22 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1E0D JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x536EBBFC PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1FD3 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 0x1FF7 SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x205F JUMPI PUSH1 0x40 MLOAD PUSH4 0x76C7FC55 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0x76C7FC55 SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2048 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x205A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x7B83037B PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x209B 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 0x20BF SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x2127 JUMPI PUSH1 0x40 MLOAD PUSH4 0x76C7FC55 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0x76C7FC55 SWAP1 PUSH1 0x24 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2110 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2122 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST POP POP JUMPDEST DUP1 SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP2 PUSH32 0xFE4C6998A06520B63340A48710B374432CB395DA90E4E5360E1EC7AEEFEBECEF SWAP2 PUSH2 0x2170 SWAP2 PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND SWAP1 PUSH0 SWAP1 PUSH2 0x4D68 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH2 0xFFFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x21D2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x22718AD9 PUSH1 0xE2 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 SWAP1 SWAP3 ADD PUSH1 0x20 MSTORE POP PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xF21 PUSH2 0x3082 JUMP JUMPDEST PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079301 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x83A SWAP1 PUSH2 0x4A87 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x2259 DUP4 PUSH2 0x30CA JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND SWAP1 DUP3 SWAP1 DUP2 AND DUP3 GT ISZERO PUSH2 0x22A1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE06D13 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST POP POP DUP2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 SWAP3 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 DUP2 AND DUP4 MSTORE DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP2 PUSH32 0x7E1092696182A6D6922C9583DB468951527F21F67F9F2F4911ED3F7BBF02B330 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP2 DUP3 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP2 AND OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0xA27 CALLER DUP4 DUP4 PUSH2 0x3101 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 0x234B JUMPI PUSH2 0x234B PUSH2 0x42C6 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x237E JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x2369 JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x23FF JUMPI PUSH2 0x23DA ADDRESS DUP7 DUP7 DUP5 DUP2 DUP2 LT PUSH2 0x23A1 JUMPI PUSH2 0x23A1 PUSH2 0x4FA8 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x23B3 SWAP2 SWAP1 PUSH2 0x4FBC JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x23C6 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x501C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x31B0 JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x23EC JUMPI PUSH2 0x23EC PUSH2 0x4FA8 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0x2383 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2412 DUP5 DUP5 DUP5 PUSH2 0xE90 JUMP JUMPDEST PUSH2 0xF13 CALLER DUP6 DUP6 DUP6 DUP6 PUSH2 0x3250 JUMP JUMPDEST PUSH2 0x2427 PUSH2 0x28A0 JUMP JUMPDEST PUSH2 0xA27 PUSH2 0x2439 CALLDATASIZE DUP5 SWAP1 SUB DUP5 ADD DUP5 PUSH2 0x4D8E JUMP JUMPDEST DUP3 PUSH0 PUSH2 0x336F JUMP JUMPDEST PUSH1 0x60 PUSH2 0x244B DUP3 PUSH2 0x2823 JUMP JUMPDEST POP PUSH0 PUSH2 0x2455 PUSH2 0x35F4 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 MLOAD GT PUSH2 0x2473 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE POP PUSH2 0x249E JUMP JUMPDEST DUP1 PUSH2 0x247D DUP5 PUSH2 0x3684 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x248E SWAP3 SWAP2 SWAP1 PUSH2 0x5031 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x24AD PUSH2 0x28A0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xD505ACCF CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP10 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0xFF DUP7 AND PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xC4 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0xE4 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2546 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2557 JUMPI POP PUSH1 0x1 JUMPDEST POP PUSH2 0x1CE3 DUP8 DUP8 DUP8 PUSH2 0x3713 JUMP JUMPDEST PUSH0 PUSH2 0x256C PUSH2 0x28A0 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x25A0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9CFEA583 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 0xAFB JUMP JUMPDEST POP PUSH2 0x25AC DUP6 PUSH1 0x1 PUSH2 0x2F25 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH4 0x23E103A8 DUP6 CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP1 DUP7 AND PUSH1 0x44 DUP4 ADD MSTORE DUP7 AND PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2617 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 0x263B SWAP2 SWAP1 PUSH2 0x4F55 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND CALLER PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP7 SWAP1 MSTORE SWAP3 DUP4 AND SWAP3 DUP10 AND SWAP2 PUSH32 0xE826ECB5C03D4897F8AB426EE94064E06179DFF39CD9FDD0776904CD935C95D8 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079305 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH2 0x26EF DUP2 PUSH2 0x385E JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x26FA PUSH2 0x28A0 JUMP JUMPDEST PUSH2 0xF3D DUP4 DUP4 DUP4 PUSH2 0x3713 JUMP JUMPDEST PUSH2 0x270D PUSH2 0x28A0 JUMP JUMPDEST TIMESTAMP PUSH2 0x2720 PUSH2 0x180 DUP4 ADD PUSH2 0x160 DUP5 ADD PUSH2 0x4DA9 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND GT ISZERO PUSH2 0x2770 JUMPI DUP1 CALLDATALOAD PUSH2 0x2741 PUSH2 0x180 DUP4 ADD PUSH2 0x160 DUP5 ADD PUSH2 0x4DA9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x312BFDD7 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH5 0xFFFFFFFFFF AND PUSH1 0x24 DUP3 ADD MSTORE TIMESTAMP PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH2 0x26EF PUSH2 0x2782 CALLDATASIZE DUP4 SWAP1 SUB DUP4 ADD DUP4 PUSH2 0x4D8E JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH2 0x336F JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x27BA JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x815 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x815 JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x815 JUMP JUMPDEST PUSH2 0x2809 PUSH2 0x38EC JUMP JUMPDEST PUSH2 0xA27 DUP3 DUP3 PUSH2 0x3911 JUMP JUMPDEST PUSH2 0xF21 PUSH2 0x38EC JUMP JUMPDEST PUSH2 0x26E6 PUSH2 0x38EC JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x282E DUP4 PUSH2 0x3941 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x815 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7E273289 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079304 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0xF3D DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x397A JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x520B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0xFF AND ISZERO PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0xD93C0665 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH2 0x28DC DUP4 DUP4 PUSH2 0x3A8D JUMP JUMPDEST PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x28ED JUMPI PUSH2 0x28ED PUSH2 0x45E6 JUMP JUMPDEST EQ PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH4 0x422F25F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x249E PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP4 AND PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT PUSH1 0x60 DUP7 SWAP1 SHL AND PUSH2 0x5045 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2949 SWAP2 SWAP1 PUSH2 0x4B6B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP1 POP DUP2 DUP2 PUSH2 0x2983 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6EE9F647 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 SWAP1 PUSH2 0x4B6B JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2993 DUP4 DUP4 PUSH2 0x3AFE JUMP JUMPDEST PUSH2 0xF3D CALLER PUSH0 DUP6 DUP6 DUP6 PUSH2 0x3250 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP3 ISZERO PUSH2 0x2A4A JUMPI PUSH2 0x29C6 DUP3 PUSH2 0x30CA JUMP JUMPDEST DUP2 SLOAD DUP3 SWAP1 PUSH0 SWAP1 PUSH2 0x29E0 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x5058 JUMP JUMPDEST DUP3 SLOAD PUSH2 0x100 SWAP3 SWAP1 SWAP3 EXP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 DUP2 MUL NOT SWAP1 SWAP4 AND SWAP2 DUP4 AND MUL OR SWAP1 SWAP2 SSTORE DUP3 SLOAD DUP1 DUP3 AND SWAP3 POP PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND DUP1 DUP3 GT ISZERO PUSH2 0x2A43 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE06D13 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST POP POP PUSH2 0xF13 JUMP JUMPDEST PUSH2 0x2A53 DUP3 PUSH2 0x30CA JUMP JUMPDEST DUP2 SLOAD DUP3 SWAP1 PUSH0 SWAP1 PUSH2 0x2A6D SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x5077 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND MUL OR SWAP1 SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2AA5 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x3B5F JUMP JUMPDEST PUSH2 0xF13 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 PUSH2 0x2AD6 PUSH2 0x28A0 JUMP JUMPDEST PUSH2 0x2AE1 DUP5 DUP5 DUP5 PUSH2 0x3BCC JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x2AF1 PUSH2 0x3CCE JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x520B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0xFF NOT AND DUP2 SSTORE PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA CALLER JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x2BCE JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2BC2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51EB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2C56 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 0x2C7A SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH4 0x24A41B43 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2CFB JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x2CF8 SWAP2 DUP2 ADD SWAP1 PUSH2 0x4F55 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2D23 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51EB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x2D53 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH2 0xF3D DUP4 DUP4 PUSH2 0x3CFD JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD ISZERO DUP1 ISZERO SWAP1 PUSH2 0x2DCC JUMPI POP DUP1 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x2DCA DUP3 PUSH2 0x2937 JUMP JUMPDEST EQ JUMPDEST DUP2 MLOAD SWAP1 PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH4 0x21DF5FA5 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x2DFA DUP3 DUP5 PUSH2 0x4E8D JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x2E37 JUMPI PUSH2 0x2E37 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP7 DUP7 DUP5 PUSH2 0x2A97 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2E48 DUP4 PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x2E5B DUP2 PUSH4 0x162FC85 PUSH1 0xE1 SHL PUSH2 0x3D52 JUMP JUMPDEST PUSH2 0x2E64 JUMPI POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH4 0x5EE0C7DD CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2ECC 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 0x2EF0 SWAP2 SWAP1 PUSH2 0x5096 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL EQ PUSH2 0xF13 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH4 0x81784A51 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 SWAP1 PUSH2 0x4EA0 JUMP JUMPDEST PUSH0 PUSH2 0x2F30 DUP4 DUP4 PUSH2 0x3A8D JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2F46 JUMPI PUSH2 0x2F46 PUSH2 0x45E6 JUMP JUMPDEST EQ ISZERO DUP1 ISZERO PUSH2 0x2F66 JUMPI POP PUSH1 0x2 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2F63 JUMPI PUSH2 0x2F63 PUSH2 0x45E6 JUMP JUMPDEST EQ ISZERO JUMPDEST ISZERO PUSH2 0xF3D JUMPI PUSH1 0x40 MLOAD PUSH4 0xD08EF1FF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x2F8E DUP6 PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x2FA1 DUP2 PUSH4 0x162FC85 PUSH1 0xE1 SHL PUSH2 0x3D52 JUMP JUMPDEST PUSH2 0x2FAB JUMPI POP PUSH2 0xF13 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH4 0x62EB345E CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP10 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP9 SWAP1 MSTORE PUSH1 0x84 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0xA4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xC4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3021 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 0x3045 SWAP2 SWAP1 PUSH2 0x5096 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x31759A2F PUSH1 0xE1 SHL EQ PUSH2 0x307A JUMPI DUP1 PUSH1 0x40 MLOAD PUSH4 0x81784A51 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 SWAP1 PUSH2 0x4EA0 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x308A PUSH2 0x28A0 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x520B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR DUP2 SSTORE PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 CALLER PUSH2 0x2B2A JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 GT ISZERO PUSH2 0x30FD JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x80 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3141 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB611743 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH0 DUP2 DUP2 MSTORE PUSH1 0x5 DUP5 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP9 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP8 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD SWAP2 DUP3 MSTORE PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x31BD DUP5 DUP5 PUSH2 0x3D6D JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x31DE JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x31DE JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x31F3 JUMPI PUSH2 0x31EB PUSH2 0x3D80 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x815 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x321D 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 0xAFB JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x3230 JUMPI PUSH2 0x322B PUSH2 0x3D99 JUMP JUMPDEST PUSH2 0x3249 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND EXTCODESIZE ISZERO PUSH2 0x2E37 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x3292 SWAP1 DUP9 SWAP1 DUP9 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x50B1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x32CC JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x32C9 SWAP2 DUP2 ADD SWAP1 PUSH2 0x5096 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x3333 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x32F9 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 0x32FE JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH0 SUB PUSH2 0x332B JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP3 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ PUSH2 0x307A JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH2 0x3378 DUP4 PUSH2 0x2DA6 JUMP JUMPDEST DUP3 MLOAD PUSH1 0x60 SHR DUP2 ISZERO DUP1 ISZERO PUSH2 0x3394 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND CALLER EQ ISZERO JUMPDEST ISZERO PUSH2 0x33B2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4ACE04F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 ISZERO DUP1 PUSH2 0x33CA JUMPI POP TIMESTAMP DUP5 PUSH2 0x160 ADD MLOAD PUSH5 0xFFFFFFFFFF AND GT JUMPDEST DUP5 MLOAD SWAP1 PUSH2 0x33ED JUMPI PUSH1 0x40 MLOAD PUSH4 0x422552F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP PUSH2 0x33F9 DUP2 PUSH1 0x2 PUSH2 0x2F25 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD DUP4 SWAP1 DUP1 DUP3 GT ISZERO PUSH2 0x342A JUMPI PUSH1 0x40 MLOAD PUSH4 0x17D3B4F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST POP POP PUSH0 PUSH0 DUP5 GT SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x346F 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 0x3493 SWAP2 SWAP1 PUSH2 0x4AB9 JUMP JUMPDEST SWAP1 POP PUSH2 0x34A0 DUP2 PUSH1 0x3 PUSH2 0x2F25 JUMP JUMPDEST DUP6 MLOAD PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE DUP2 ISZERO PUSH2 0x3529 JUMPI PUSH0 PUSH2 0x34C3 DUP8 PUSH0 ADD MLOAD PUSH2 0x10B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x1DDA2899 PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x1DDA2899 SWAP1 PUSH2 0x34F6 SWAP1 DUP5 SWAP1 DUP12 SWAP1 DUP12 SWAP1 PUSH1 0x4 ADD PUSH2 0x50E3 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x350D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x351F JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP PUSH2 0x3583 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x76185FF1 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0x76185FF1 SWAP1 PUSH2 0x3555 SWAP1 DUP10 SWAP1 PUSH1 0x4 ADD PUSH2 0x4B6B JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x356C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x357E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH2 0x3592 DUP4 PUSH0 DUP9 PUSH1 0x20 ADD MLOAD PUSH2 0x29A0 JUMP JUMPDEST DUP6 MLOAD PUSH1 0x40 MLOAD DUP7 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0x54F4A270EA08F88DC23B2520D6B063FECB24D956C4496F447926D736338F545E SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP5 ISZERO PUSH2 0x35E9 JUMPI DUP6 MLOAD PUSH2 0x35E4 SWAP1 DUP7 PUSH2 0x3DA4 JUMP JUMPDEST PUSH2 0x307A JUMP JUMPDEST DUP6 MLOAD PUSH2 0x307A SWAP1 PUSH2 0x3E8B JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x3603 SWAP1 PUSH2 0x4A87 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 0x362F SWAP1 PUSH2 0x4A87 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x367A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3651 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x367A 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 0x365D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x3690 DUP4 PUSH2 0x3F79 JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x36AE JUMPI PUSH2 0x36AE PUSH2 0x42C6 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x36D8 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0x36E2 JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x3747 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9CFEA583 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 0xAFB JUMP JUMPDEST POP PUSH2 0x3753 DUP4 PUSH1 0x1 PUSH2 0x28D0 JUMP JUMPDEST PUSH2 0x3788 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER DUP6 DUP6 PUSH2 0x2A97 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH4 0x2E2D2984 DUP4 CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE DUP5 AND PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x37E6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x37F8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x380D CALLER SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x7CFFF908A4B583F36430B25D75964C458D8EDE8A99BD61BE750E97EE1B2F3A96 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3851 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x3885 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7A2EE8B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0x8C3AA5F43A388513435861BF27DFAD7829CD248696FED367C62D441F62954496 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x38F4 PUSH2 0x4050 JUMP JUMPDEST PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3919 PUSH2 0x38EC JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 PUSH2 0x3932 DUP5 DUP3 PUSH2 0x5110 JUMP JUMPDEST POP PUSH1 0x1 DUP2 ADD PUSH2 0xF13 DUP4 DUP3 PUSH2 0x5110 JUMP JUMPDEST PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x80BB2B638CC20BC4D0A60D66940F3AB4A00C1D7B313497CA82FB0B4AB0079302 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 DUP1 PUSH2 0x399C JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x3A5D JUMPI PUSH0 PUSH2 0x39AB DUP6 PUSH2 0x2823 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x39D7 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x39EA JUMPI POP PUSH2 0x39E8 DUP2 DUP6 PUSH2 0x269A JUMP JUMPDEST ISZERO JUMPDEST ISZERO PUSH2 0x3A13 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA9FBF51F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST DUP3 ISZERO PUSH2 0x3A5B JUMPI DUP5 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP JUMPDEST PUSH0 SWAP4 DUP5 MSTORE PUSH1 0x4 ADD PUSH1 0x20 MSTORE POP POP PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3AB6 JUMPI PUSH2 0x3AB6 PUSH2 0x45E6 JUMP JUMPDEST DUP2 SLOAD PUSH2 0x100 SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3AD1 JUMPI PUSH2 0x3AD1 PUSH2 0x45E6 JUMP JUMPDEST EQ PUSH2 0x3AF3 JUMPI DUP4 DUP4 PUSH1 0x40 MLOAD PUSH4 0x502C9A5F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP3 SWAP2 SWAP1 PUSH2 0x4ED0 JUMP JUMPDEST SLOAD PUSH1 0xFF AND SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3B27 JUMPI PUSH1 0x40 MLOAD PUSH4 0x32505749 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 PUSH2 0x3B33 DUP4 DUP4 PUSH0 PUSH2 0x2ACD JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0xF3D JUMPI PUSH1 0x40 MLOAD PUSH4 0x39E35637 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x3BBB JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x3BAF JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51CB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x3BE5 DUP6 PUSH2 0x3941 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0x3C01 JUMPI PUSH2 0x3C01 DUP2 DUP6 DUP8 PUSH2 0x4069 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x3C3D JUMPI PUSH2 0x3C1C PUSH0 DUP7 PUSH0 PUSH0 PUSH2 0x397A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH0 NOT ADD SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND ISZERO PUSH2 0x3C6D JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x3 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH1 0x2 DUP4 ADD PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP9 SWAP4 SWAP2 DUP6 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x520B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0xFF AND PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0x8DFC202B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3D06 DUP3 PUSH2 0x40CD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x3D4A JUMPI PUSH2 0xF3D DUP3 DUP3 PUSH2 0x31B0 JUMP JUMPDEST PUSH2 0xA27 PUSH2 0x4130 JUMP JUMPDEST PUSH0 PUSH2 0x3D5C DUP4 PUSH2 0x414F JUMP JUMPDEST DUP1 ISZERO PUSH2 0x249E JUMPI POP PUSH2 0x249E DUP4 DUP4 PUSH2 0x419A JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH2 0x3DAE DUP4 PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x3DC1 DUP2 PUSH4 0x162FC85 PUSH1 0xE1 SHL PUSH2 0x3D52 JUMP JUMPDEST PUSH2 0x3DCA JUMPI POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH4 0xD6281D3E CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x64 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x84 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3E32 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 0x3E56 SWAP2 SWAP1 PUSH2 0x5096 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x6B140E9F PUSH1 0xE1 SHL EQ PUSH2 0xF13 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH4 0x81784A51 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAFB SWAP2 SWAP1 PUSH2 0x4EA0 JUMP JUMPDEST PUSH0 PUSH2 0x3E95 DUP3 PUSH2 0x10B4 JUMP JUMPDEST SWAP1 POP PUSH2 0x3EA8 DUP2 PUSH4 0x162FC85 PUSH1 0xE1 SHL PUSH2 0x3D52 JUMP JUMPDEST PUSH2 0x3EB0 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH4 0xE8E617B7 PUSH3 0x249F0 CALLER PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP9 DUP8 CALL SWAP4 POP POP POP POP DUP1 ISZERO PUSH2 0x3F33 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x3F30 SWAP2 DUP2 ADD SWAP1 PUSH2 0x5096 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xF3D JUMPI PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND DUP2 MSTORE DUP3 SWAP1 PUSH32 0x6CE8016F81523F240956BCA9A698E643D09E84E7D0E931470B1016BAF1027BD0 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0x3FB7 JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x3FE3 JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x4001 JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x4019 JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x402D JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x403F JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x815 JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x4059 PUSH2 0x27D9 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x4074 DUP4 DUP4 DUP4 PUSH2 0x41BE JUMP JUMPDEST PUSH2 0xF3D JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x40A2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7E273289 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x177E802F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xAFB JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x4102 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xAFB JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x51EB PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0xF21 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x4161 DUP3 PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH2 0x419A JUMP JUMPDEST ISZERO PUSH2 0x418E JUMPI PUSH0 DUP1 PUSH2 0x417A DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x4222 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH2 0x2AE1 JUMPI POP ISZERO SWAP4 SWAP3 POP POP POP JUMP JUMPDEST POP PUSH0 SWAP2 SWAP1 POP JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x41A7 DUP6 DUP6 PUSH2 0x4222 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 DUP1 ISZERO PUSH2 0x41B5 JUMPI POP DUP1 JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO DUP1 ISZERO SWAP1 PUSH2 0x2AE1 JUMPI POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x41F7 JUMPI POP PUSH2 0x41F7 DUP5 DUP5 PUSH2 0x269A JUMP JUMPDEST DUP1 PUSH2 0x2AE1 JUMPI POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x4210 DUP4 PUSH2 0x285A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x4 DUP4 SWAP1 MSTORE SWAP1 DUP2 SWAP1 PUSH1 0x20 DUP3 PUSH1 0x24 DUP2 DUP9 PUSH2 0x7530 STATICCALL SWAP3 POP PUSH0 MLOAD ISZERO ISZERO PUSH1 0x1F RETURNDATASIZE GT AND SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x26EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x427B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x249E DUP2 PUSH2 0x4256 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 PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x249E PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4286 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x42FD JUMPI PUSH2 0x42FD PUSH2 0x42C6 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x4312 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 DUP4 ADD PUSH0 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 GT ISZERO PUSH2 0x4331 JUMPI PUSH2 0x4331 PUSH2 0x42C6 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x435F JUMPI PUSH2 0x435F PUSH2 0x42C6 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP8 LT ISZERO PUSH2 0x4376 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE DUP1 SWAP5 POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x26EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x43B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x43CD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x43D9 DUP7 DUP3 DUP8 ADD PUSH2 0x4303 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x43F4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4400 DUP7 DUP3 DUP8 ADD PUSH2 0x4303 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x4411 DUP2 PUSH2 0x4392 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x442C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4444 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x444F DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x4195 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4482 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x448A PUSH2 0x42DA JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0x44F9 PUSH2 0x140 DUP4 ADD PUSH2 0x445D JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x450C PUSH2 0x160 DUP4 ADD PUSH2 0x445D JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x4195 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4547 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4551 DUP7 DUP7 PUSH2 0x4471 JUMP JUMPDEST SWAP4 POP PUSH2 0x180 DUP6 ADD CALLDATALOAD PUSH2 0x4562 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP3 POP PUSH2 0x1A0 DUP6 ADD CALLDATALOAD PUSH2 0x4573 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP2 POP PUSH2 0x4582 PUSH2 0x1C0 DUP7 ADD PUSH2 0x4518 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x459F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x45AA DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x45BA DUP2 PUSH2 0x4392 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 0x45DB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x249E DUP2 PUSH2 0x4392 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x26EF JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0x4623 DUP4 PUSH2 0x45FA JUMP JUMPDEST SWAP2 SWAP1 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x463A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4645 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x465F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x466B DUP6 DUP3 DUP7 ADD PUSH2 0x4303 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4686 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x469B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x46AB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x46C0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x46D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x26EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x46FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4709 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4719 DUP2 PUSH2 0x46E1 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2983 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x340 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4749 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4753 DUP7 DUP7 PUSH2 0x4724 JUMP JUMPDEST SWAP4 POP PUSH2 0x4763 DUP7 PUSH2 0x180 DUP8 ADD PUSH2 0x4471 JUMP JUMPDEST SWAP3 POP PUSH2 0x300 DUP6 ADD CALLDATALOAD PUSH2 0x4774 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP2 POP PUSH2 0x4582 PUSH2 0x320 DUP7 ADD PUSH2 0x4518 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4797 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x47A1 DUP7 DUP7 PUSH2 0x4724 JUMP JUMPDEST SWAP7 PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP7 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP6 PUSH2 0x1C0 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x26EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x47DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x47E7 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4719 DUP2 PUSH2 0x47BE JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4808 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x481D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x482D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4842 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP5 ADD ADD GT ISZERO PUSH2 0x46D1 JUMPI PUSH0 PUSH0 REVERT 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 0x48AD JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x4898 DUP6 DUP4 MLOAD PUSH2 0x4286 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x487C JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x48CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x48D7 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x48E7 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4908 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4914 DUP8 DUP3 DUP9 ADD PUSH2 0x4303 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1A0 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4932 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x493C DUP5 DUP5 PUSH2 0x4724 JUMP JUMPDEST SWAP5 PUSH2 0x180 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x4961 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x496C DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD PUSH2 0x4983 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x499F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 SWAP3 SWAP6 SWAP5 PUSH1 0xA0 DUP5 ADD CALLDATALOAD SWAP5 POP PUSH1 0xC0 SWAP1 SWAP4 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x49CF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x49DA DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x49F1 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x4A01 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4A1D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4A28 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4719 DUP2 PUSH2 0x4392 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4A4A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4A55 DUP2 PUSH2 0x4392 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x4411 DUP2 PUSH2 0x4392 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4A7D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x249E DUP4 DUP4 PUSH2 0x4724 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4A9B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x2983 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4AC9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x249E DUP2 PUSH2 0x4392 JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0x4B50 PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP2 ADD MLOAD PUSH2 0xF3D PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST PUSH2 0x180 DUP2 ADD PUSH2 0x815 DUP3 DUP5 PUSH2 0x4AD4 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4B8B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x4B96 DUP2 PUSH2 0x4392 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x4719 DUP2 PUSH2 0x4392 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 0x40 DUP2 MSTORE PUSH0 PUSH0 DUP6 SLOAD PUSH2 0x4BE0 DUP2 PUSH2 0x4A87 JUMP JUMPDEST DUP1 PUSH1 0x40 DUP7 ADD MSTORE PUSH1 0x1 DUP3 AND PUSH0 DUP2 EQ PUSH2 0x4BFE JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x4C1A JUMPI PUSH2 0x4C4B JUMP JUMPDEST PUSH1 0xFF NOT DUP4 AND PUSH1 0x60 DUP8 ADD MSTORE PUSH1 0x60 DUP3 ISZERO ISZERO PUSH1 0x5 SHL DUP8 ADD ADD SWAP4 POP PUSH2 0x4C4B JUMP JUMPDEST DUP9 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x4C42 JUMPI DUP2 SLOAD DUP9 DUP3 ADD PUSH1 0x60 ADD MSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x20 ADD PUSH2 0x4C23 JUMP JUMPDEST DUP8 ADD PUSH1 0x60 ADD SWAP5 POP POP JUMPDEST POP POP POP DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x4C61 DUP2 DUP6 DUP8 PUSH2 0x4BA7 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0xF3D JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x4C90 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2E37 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x4C9C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 GT ISZERO PUSH2 0x4CC6 JUMPI PUSH2 0x4CC6 PUSH2 0x42C6 JUMP JUMPDEST PUSH2 0x4CDA DUP4 PUSH2 0x4CD4 DUP4 SLOAD PUSH2 0x4A87 JUMP JUMPDEST DUP4 PUSH2 0x4C6B JUMP JUMPDEST PUSH0 PUSH1 0x1F DUP5 GT PUSH1 0x1 DUP2 EQ PUSH2 0x4D0B JUMPI PUSH0 DUP6 ISZERO PUSH2 0x4CF4 JUMPI POP DUP4 DUP3 ADD CALLDATALOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP8 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP7 SWAP1 SHL OR DUP4 SSTORE PUSH2 0x2E37 JUMP JUMPDEST PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP8 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4D3A JUMPI DUP7 DUP6 ADD CALLDATALOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x4D1A JUMP JUMPDEST POP DUP7 DUP3 LT ISZERO PUSH2 0x4D56 JUMPI PUSH0 NOT PUSH1 0xF8 DUP9 PUSH1 0x3 SHL AND SHR NOT DUP5 DUP8 ADD CALLDATALOAD AND DUP2 SSTORE JUMPDEST POP POP PUSH1 0x1 DUP6 PUSH1 0x1 SHL ADD DUP4 SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4D75 DUP5 PUSH2 0x45FA JUMP JUMPDEST DUP4 DUP3 MSTORE PUSH2 0x4D81 DUP4 PUSH2 0x45FA JUMP JUMPDEST DUP3 PUSH1 0x20 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4D9F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x249E DUP4 DUP4 PUSH2 0x4471 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4DB9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x249E DUP3 PUSH2 0x445D JUMP JUMPDEST DUP1 CALLDATALOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x40 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x60 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x80 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0xA0 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0xC0 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH1 0xE0 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH2 0x100 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH2 0x120 DUP1 DUP3 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH2 0x4E2F PUSH2 0x140 DUP3 ADD PUSH2 0x445D JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND PUSH2 0x140 DUP4 ADD MSTORE PUSH2 0x4E49 PUSH2 0x160 DUP3 ADD PUSH2 0x445D JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP2 AND PUSH2 0x160 DUP5 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0x4E6B DUP3 DUP6 PUSH2 0x4DC2 JUMP JUMPDEST PUSH2 0x249E PUSH2 0x180 DUP4 ADD DUP5 PUSH2 0x4AD4 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 0x815 JUMPI PUSH2 0x815 PUSH2 0x4E79 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4EC5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x249E DUP2 PUSH2 0x47BE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0x40 DUP2 ADD PUSH2 0x4D81 DUP4 PUSH2 0x45FA JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0x4EF8 DUP3 DUP8 PUSH2 0x4DC2 JUMP JUMPDEST DUP5 PUSH2 0x180 DUP4 ADD MSTORE DUP4 PUSH2 0x1A0 DUP4 ADD MSTORE DUP3 PUSH2 0x1C0 DUP4 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x200 DUP2 ADD PUSH2 0x4F25 DUP3 DUP9 PUSH2 0x4DC2 JUMP JUMPDEST PUSH2 0x180 DUP3 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH2 0x1A0 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH2 0x1C0 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1E0 SWAP1 SWAP2 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4F65 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4F79 DUP5 PUSH2 0x45FA JUMP JUMPDEST SWAP3 DUP2 MSTORE PUSH1 0x20 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x4F90 DUP5 PUSH2 0x45FA JUMP JUMPDEST SWAP3 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x20 SWAP1 SWAP2 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x4FD1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x4FEA JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x4FFE JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP 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 0x4C61 DUP2 DUP6 PUSH2 0x5005 JUMP JUMPDEST PUSH0 PUSH2 0x2AE1 PUSH2 0x503F DUP4 DUP7 PUSH2 0x5005 JUMP JUMPDEST DUP5 PUSH2 0x5005 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x815 JUMPI PUSH2 0x815 PUSH2 0x4E79 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x815 JUMPI PUSH2 0x815 PUSH2 0x4E79 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x815 JUMPI PUSH2 0x815 PUSH2 0x4E79 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x50A6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x249E DUP2 PUSH2 0x4256 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH0 SWAP1 PUSH2 0x4C61 SWAP1 DUP4 ADD DUP5 PUSH2 0x4286 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP2 MSTORE PUSH2 0x1C0 DUP2 ADD PUSH2 0x5101 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x4AD4 JUMP JUMPDEST DUP3 PUSH2 0x1A0 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5129 JUMPI PUSH2 0x5129 PUSH2 0x42C6 JUMP JUMPDEST PUSH2 0x513D DUP2 PUSH2 0x5137 DUP5 SLOAD PUSH2 0x4A87 JUMP JUMPDEST DUP5 PUSH2 0x4C6B JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x516F JUMPI PUSH0 DUP4 ISZERO PUSH2 0x5158 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 0x2E37 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x519E JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x517E JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x51BB 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 INVALID DUP1 0xBB 0x2B PUSH4 0x8CC20BC4 0xD0 0xA6 0xD PUSH7 0x940F3AB4A00C1D PUSH28 0x313497CA82FB0B4AB0079300360894A13BA1A3210667C828492DB98D 0xCA RETURNDATACOPY KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCCD5ED15C6E187E77E9AEE8 DUP2 DUP5 0xC2 0x1F 0x4F 0x21 DUP3 0xAB PC 0x27 0xCB EXTCODESIZE PUSH31 0x7FBEDCD63F03300A26469706673582212205C4657BF2D579A6DA6C96909AD 0xB5 EXP SWAP11 0xD7 DUP6 0x1F 0xD2 DELEGATECALL LOG2 0xC9 GASPRICE 0xE9 PUSH6 0x420F20889A30 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"2428:36682:24:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15020:193;;;;;;;;;;-1:-1:-1;15020:193:24;;;;;:::i;:::-;;:::i;:::-;;;565:14:125;;558:22;540:41;;528:2;513:18;15020:193:24;;;;;;;;3462:146:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;14665:325:24:-;;;;;;;;;;-1:-1:-1;14665:325:24;;;;;:::i;:::-;;:::i;:::-;;4612:154:47;;;;;;;;;;-1:-1:-1;4612:154:47;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3601:32:125;;;3583:51;;3571:2;3556:18;4612:154:47;3437:203:125;4465:113:47;;;;;;;;;;-1:-1:-1;4465:113:47;;;;;:::i;:::-;;:::i;23851:1728:24:-;;;;;;;;;;-1:-1:-1;23851:1728:24;;;;;:::i;:::-;;:::i;:::-;;;6593:25:125;;;6581:2;6566:18;23851:1728:24;6447:177:125;5222:578:47;;;;;;;;;;-1:-1:-1;5222:578:47;;;;;:::i;:::-;;:::i;21139:147:24:-;;;;;;;;;;-1:-1:-1;21139:147:24;;;;;:::i;:::-;-1:-1:-1;;;;;21252:22:24;21222:15;21252:22;;;:11;:22;;;;;:29;;;;21139:147;;;;;;;;:::i;15978:47::-;;;;;;;;;;;;;:::i;5834:132:47:-;;;;;;;;;;-1:-1:-1;5834:132:47;;;;;:::i;:::-;;:::i;3911:214:76:-;;;;;;:::i;:::-;;:::i;3466:126::-;;;;;;;;;;;;;:::i;38520:145:24:-;;;;;;;;;;-1:-1:-1;38520:145:24;;;;;:::i;:::-;;:::i;2517::51:-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;2646:9:51;;;2517:145;;20550:405:24;;;;;;;;;;-1:-1:-1;20550:405:24;;;;;:::i;:::-;;:::i;16657:88::-;;;;;;;;;;-1:-1:-1;16709:7:24;16731:9;-1:-1:-1;;;;;16731:9:24;16657:88;;3302:118:47;;;;;;;;;;-1:-1:-1;3302:118:47;;;;;:::i;:::-;;:::i;25663:2913:24:-;;;;;;;;;;-1:-1:-1;25663:2913:24;;;;;:::i;:::-;;:::i;17371:1187::-;;;;;;;;;;-1:-1:-1;17371:1187:24;;;;;:::i;:::-;;:::i;28610:1433::-;;;;;;;;;;-1:-1:-1;28610:1433:24;;;;;:::i;:::-;;:::i;18878:1253::-;;;;;;;;;;-1:-1:-1;18878:1253:24;;;;;:::i;:::-;;:::i;3003:265:47:-;;;;;;;;;;-1:-1:-1;3003:265:47;;;;;:::i;:::-;;:::i;31114:119:24:-;;;;;;;;;;-1:-1:-1;31114:119:24;;;;;:::i;:::-;31187:7;31209:19;;;:9;:19;;;;;;;31114:119;30955:125;;;;;;;;;;-1:-1:-1;30955:125:24;;;;;:::i;:::-;31023:4;31042:19;;;:9;:19;;;;;;:33;;;30955:125;15800:43;;;;;;;;;;;;;:::i;3650:150:47:-;;;;;;;;;;;;;:::i;33878:369:24:-;;;;;;;;;;-1:-1:-1;33878:369:24;;;;;:::i;:::-;;:::i;34727:205::-;;;;;;;;;;-1:-1:-1;34727:205:24;;;;;:::i;:::-;-1:-1:-1;;;;;34852:17:24;34787:14;34852:17;;;:13;:17;;;;;34884:15;-1:-1:-1;;;;;34884:15:24;;;;-1:-1:-1;;;34913:14:24;;;;;34727:205;;;;;12740:25:125;;;12796:2;12781:18;;12774:34;;;;12713:18;34727:205:24;12566:248:125;4800:144:47;;;;;;;;;;-1:-1:-1;4800:144:47;;;;;:::i;:::-;;:::i;1539:482:49:-;;;;;;;;;;-1:-1:-1;1539:482:49;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1732:58:76:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1732:58:76;;;;;6000:233:47;;;;;;;;;;-1:-1:-1;6000:233:47;;;;;:::i;:::-;;:::i;30760:161:24:-;;;;;;;;;;-1:-1:-1;30760:161:24;;;;;:::i;:::-;;:::i;3842:255:47:-;;;;;;;;;;-1:-1:-1;3842:255:47;;;;;:::i;:::-;;:::i;22700:617:24:-;;;;;;;;;;-1:-1:-1;22700:617:24;;;;;:::i;:::-;;:::i;23351:466::-;;;;;;;;;;-1:-1:-1;23351:466:24;;;;;:::i;:::-;;:::i;16059:103::-;;;;;;;;;;-1:-1:-1;16148:9:24;16059:103;;4978:210:47;;;;;;;;;;-1:-1:-1;4978:210:47;;;;;:::i;:::-;;:::i;16540:83:24:-;;;;;;;;;;-1:-1:-1;16540:83:24;;;;;:::i;:::-;;:::i;22522:144::-;;;;;;;;;;-1:-1:-1;22522:144:24;;;;;:::i;:::-;;:::i;30471:255::-;;;;;;;;;;-1:-1:-1;30471:255:24;;;;;:::i;:::-;;:::i;15020:193::-;15105:4;15124:36;15148:11;15124:23;:36::i;:::-;:84;;;-1:-1:-1;;;;;;;15164:44:24;;-1:-1:-1;;;15164:44:24;15124:84;15117:91;15020:193;-1:-1:-1;;15020:193:24:o;3462:146:47:-;-1:-1:-1;;;;;;;;;;;3587:14:47;;3507:13;;2094:21;;;3587:14;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3462:146;:::o;14665:325:24:-;4158:30:75;4191:26;:24;:26::i;:::-;4302:15;;4158:59;;-1:-1:-1;4302:15:75;-1:-1:-1;;;4302:15:75;;;4301:16;;-1:-1:-1;;;;;4348:14:75;4279:19;4724:16;;:34;;;;;4744:14;4724:34;4704:54;;4768:17;4788:11;-1:-1:-1;;;;;4788:16:75;4803:1;4788:16;:50;;;;-1:-1:-1;4816:4:75;4808:25;:30;4788:50;4768:70;;4854:12;4853:13;:30;;;;;4871:12;4870:13;4853:30;4849:91;;;4906:23;;-1:-1:-1;;;4906:23:75;;;;;;;;;;;4849:91;4949:18;;-1:-1:-1;;4949:18:75;4966:1;4949:18;;;4977:67;;;;5011:22;;-1:-1:-1;;;;5011:22:75;-1:-1:-1;;;5011:22:75;;;4977:67;14783:5:24::1;14777:19;14800:1;14777:24:::0;14773:50:::1;;14810:13;;-1:-1:-1::0;;;14810:13:24::1;;;;;;;;;;;14773:50;14839:7;14833:21;14858:1;14833:26:::0;14829:54:::1;;14868:15;;-1:-1:-1::0;;;14868:15:24::1;;;;;;;;;;;14829:54;14889:29;14903:5;14910:7;14889:13;:29::i;:::-;14924:17;:15;:17::i;:::-;14947:38;14975:9;14947:27;:38::i;:::-;5068:14:75::0;5064:101;;;5098:23;;-1:-1:-1;;;;5098:23:75;;;5140:14;;-1:-1:-1;19502:50:125;;5140:14:75;;19490:2:125;19475:18;5140:14:75;;;;;;;5064:101;4092:1079;;;;;14665:325:24;;;:::o;4612:154:47:-;4679:7;4698:22;4712:7;4698:13;:22::i;:::-;;4738:21;4751:7;4738:12;:21::i;4465:113::-;4536:35;4545:2;4549:7;987:10:48;4536:8:47;:35::i;:::-;4465:113;;:::o;23851:1728:24:-;24020:7;2000:19:51;:17;:19::i;:::-;987:10:48;24097:57:24::1;987:10:48::0;24129:24:24::1;24097:18;:57::i;:::-;24160:19;24182:2;-1:-1:-1::0;;;;;24182:18:24::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24160:42;;24208:62;24235:2;24240:29;24208:18;:62::i;:::-;24304:44;24332:2;24337:10;24304:19;:44::i;:::-;24292:56:::0;;;24354:38:::1;24376:15;24354:38;:12;::::0;::::1;:38:::0;24292:9:::1;24406:20:::0;;;:9:::1;:20;::::0;;;;;24462:9;;;24406:34;24398:75:::1;;;;-1:-1:-1::0;;;24398:75:24::1;;;;;;6593:25:125::0;;6581:2;6566:18;;6447:177;24398:75:24::1;;;;;;;;;;24502:13;:6;:11;:13::i;:::-;24489:9:::0;;24479:20:::1;::::0;;;:9:::1;:20;::::0;;;;;;;:36;;;;24545:9;;24521:38;;;;::::1;::::0;;;;;;::::1;::::0;24531:12;;24521:9:::1;:38::i;:::-;24565:40;24581:2;24585:4;24591:6;:13;;;24565:15;:40::i;:::-;24632:24;::::0;-1:-1:-1;;;24632:24:24;;-1:-1:-1;;;;;24632:16:24;::::1;::::0;::::1;::::0;:24:::1;::::0;24649:6;;24632:24:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;24740:18:24::1;::::0;::::1;::::0;24693:66:::1;::::0;-1:-1:-1;;;;;;24693:9:24::1;:26;::::0;24720:5;;24735:2;;24693:26:::1;:66::i;:::-;24766:13;24781;24798:2;-1:-1:-1::0;;;;;24798:7:24::1;;:9;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24817:12;::::0;::::1;::::0;24765:42;;-1:-1:-1;24765:42:24;-1:-1:-1;24817:16:24;24813:85:::1;;24885:12;::::0;::::1;::::0;24835:63:::1;::::0;-1:-1:-1;;;;;24835:9:24::1;:26;::::0;24862:5;;24877;;24835:26:::1;:63::i;:::-;24908:12;::::0;::::1;::::0;:16;24904:85:::1;;24976:12;::::0;::::1;::::0;24926:63:::1;::::0;-1:-1:-1;;;;;24926:9:24::1;:26;::::0;24953:5;;24968;;24926:26:::1;:63::i;:::-;25029:9;::::0;25040:23:::1;::::0;::::1;::::0;24995:69:::1;::::0;-1:-1:-1;;;;;24995:9:24::1;:26:::0;::::1;::::0;25022:5;;25029:9;;;::::1;::::0;24995:26:::1;:69::i;:::-;25101:1;25074:6;:24;;;:28;:52;;;;;25115:2;-1:-1:-1::0;;;;;25115:9:24::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;25106:20:24::1;:5;-1:-1:-1::0;;;;;25106:20:24::1;;;25074:52;25070:136;;;25134:72;25161:5;25168:2;-1:-1:-1::0;;;;;25168:9:24::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25181:24;::::0;::::1;::::0;-1:-1:-1;;;;;25134:9:24::1;:26;::::0;:72;;:26:::1;:72::i;:::-;25541:2;-1:-1:-1::0;;;;;25531:21:24::1;;25545:6;25531:21;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;25565:9:24;;;23851:1728;-1:-1:-1;;;;;;23851:1728:24:o;5222:578:47:-;-1:-1:-1;;;;;5316:16:47;;5312:87;;5355:33;;-1:-1:-1;;;5355:33:47;;5385:1;5355:33;;;3583:51:125;3556:18;;5355:33:47;3437:203:125;5312:87:47;5617:21;5641:34;5649:2;5653:7;987:10:48;5641:7:47;:34::i;:::-;5617:58;;5706:4;-1:-1:-1;;;;;5689:21:47;:13;-1:-1:-1;;;;;5689:21:47;;5685:109;;5733:50;;-1:-1:-1;;;5733:50:47;;-1:-1:-1;;;;;21947:32:125;;;5733:50:47;;;21929:51:125;21996:18;;;21989:34;;;22059:32;;22039:18;;;22032:60;21902:18;;5733:50:47;21727:371:125;5685:109:47;5302:498;5222:578;;;:::o;15978:47:24:-;16010:10;:8;:10::i;:::-;15978:47::o;5834:132:47:-;5920:39;5937:4;5943:2;5947:7;5920:39;;;;;;;;;;;;:16;:39::i;:::-;5834:132;;;:::o;3911:214:76:-;2568:13;:11;:13::i;:::-;4026:36:::1;4044:17;4026;:36::i;:::-;4072:46;4094:17;4113:4;4072:21;:46::i;3466:126::-:0;3527:7;2839:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;3466:126:76;:::o;38520:145:24:-;38589:40;38604:11;38617;;38589:40;;;;;;;;:::i;:::-;;;;;;;;38635:11;:25;38649:11;;38635;:25;:::i;20550:405::-;-1:-1:-1;;;;;20680:22:24;;20655;20680;;;:11;:22;;;;;;20716:11;;;;:39;;;;;;;;:::i;:::-;;20708:69;;;;-1:-1:-1;;;20708:69:24;;;;;;;;;;;;20804:24;20791:9;:37;;;;;;;;:::i;:::-;;20783:72;;;;-1:-1:-1;;;20783:72:24;;;;;;;;;;;;20861:23;;20875:9;;20861:4;;-1:-1:-1;;20861:23:24;;20875:9;20861:23;;;;;;;;:::i;:::-;;;;;-1:-1:-1;20929:9:24;;20895:55;;-1:-1:-1;;;;;20895:55:24;;;;;;;20929:9;;;;;;20940;;20895:55;:::i;:::-;;;;;;;;20649:306;20550:405;;:::o;3302:118:47:-;3365:7;3391:22;3405:7;3391:13;:22::i;25663:2913:24:-;25856:7;2000:19:51;:17;:19::i;:::-;25885:26:24::1;;;::::0;;::::1;::::0;::::1;25901:9:::0;25885:26:::1;:::i;:::-;:15;:26::i;:::-;987:10:48::0;25994:12:24;::::1;11057:2:23::0;11045:14;25969:53:24;::::1;25965:89;;26031:23;;-1:-1:-1::0;;;26031:23:24::1;;;;;;;;;;;25965:89;26060:57;26087:2;26092:24;26060:18;:57::i;:::-;26123:19;26145:2;-1:-1:-1::0;;;;;26145:18:24::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26123:42;;26171:62;26198:2;26203:29;26171:18;:62::i;:::-;26254:46;26284:15;26254:46;:20;::::0;;;::::1;::::0;::::1;;:::i;:::-;:46;;;:98;;;;;26336:15;26304:48;;:10;:21;;;:48;;;;26254:98;26381:12:::0;::::1;::::0;26239:161:::1;;;;-1:-1:-1::0;;;26239:161:24::1;;;;;;6593:25:125::0;;6581:2;6566:18;;6447:177;26239:161:24::1;;26440:10;:16;;;26421:35;;:9;:15;;;;;;;;;;:::i;:::-;:35;;;:94;;;;;26493:10;:22;;;26468:9;:21;;;:47;;26421:94;:163;;;;;26557:10;:27;;;26527:9;:26;;;:57;;26421:163;:210;;;;;26615:10;:16;;;26596:9;:15;;;:35;;26421:210;:257;;;;;26662:10;:16;;;26643:9;:15;;;:35;;26421:257;:328;;;;;26721:10;:28;;;26690:9;:27;;;:59;;26421:328;26782:9;26793:10;26406:404;;;;;;-1:-1:-1::0;;;26406:404:24::1;;;;;;;;;:::i;:::-;;;26916:44;26944:2;26949:10;26916:19;:44::i;:::-;26900:60:::0;;;:13:::1;26974:24:::0;;;:9:::1;:24;::::0;;;;;27034:13;;;26974:38;26966:83:::1;;;;-1:-1:-1::0;;;26966:83:24::1;;;;;;6593:25:125::0;;6581:2;6566:18;;6447:177;26966:83:24::1;;27082:17;:10;:15;:17::i;:::-;27065:13:::0;;27055:24:::1;::::0;;;:9:::1;:24;::::0;;;;:44;;;;27128:21:::1;27136:12:::0;::::1;27128:7;:21::i;:::-;27105:44;;27155:42;27165:12;27179:10;:13;;;27155:42;;;;;;;;;;;::::0;:9:::1;:42::i;:::-;27227:9;:16;;;27207:10;:17;;;:36;27203:180;;;27245:63;27261:2;27265:4;27291:9;:16;;;27271:10;:17;;;:36;;;;:::i;:::-;27245:15;:63::i;:::-;27203:180;;;27319:64;27335:2;27339:5;27365:10;:17;;;27346:9;:16;;;:36;;;;:::i;27319:64::-;27406:12:::0;::::1;27396:23;::::0;;;:9:::1;:23;::::0;;;;;27389:30;;;;27446:40;-1:-1:-1;;;27446:40:24;;-1:-1:-1;;;;;27446:17:24;::::1;::::0;::::1;::::0;:40:::1;::::0;27406:9;;27475:10;;27446:40:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27523:85;27542:5;27557:2;27562:10;:22;;;27586:9;:21;;;27523:18;:85::i;:::-;27615:13;27630;27647:2;-1:-1:-1::0;;;;;27647:7:24::1;;:9;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27614:42;;;;27662:76;27681:5;27696;27704:10;:16;;;27722:9;:15;;;27662:18;:76::i;:::-;27744;27763:5;27778;27786:10;:16;;;27804:9;:15;;;27744:18;:76::i;:::-;27852:9;::::0;27863:27:::1;::::0;;::::1;::::0;27826:93:::1;::::0;27845:5;;-1:-1:-1;;;;;27852:9:24;;::::1;::::0;27863:27;27892:26;::::1;;27826:18;:93::i;:::-;27925:16;27944:2;-1:-1:-1::0;;;;;27944:9:24::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27925:30;;27974:8;-1:-1:-1::0;;;;;27965:17:24::1;:5;-1:-1:-1::0;;;;;27965:17:24::1;;27961:123;;27990:94;28009:5;28016:8;28026:10;:28;;;28056:9;:27;;;27990:18;:94::i;:::-;28419:2;-1:-1:-1::0;;;;;28409:25:24::1;;28423:10;28409:25;;;;;;:::i;:::-;;;;;;;;28478:13:::0;;28445:47:::1;::::0;28464:12;::::1;::::0;-1:-1:-1;;;;;28445:47:24;::::1;::::0;::::1;::::0;28478:13:::1;::::0;28445:47:::1;28531:13:::0;;28498:47:::1;::::0;28517:12;::::1;::::0;28498:18:::1;:47::i;:::-;-1:-1:-1::0;;28558:13:24;;;25663:2913;-1:-1:-1;;;;;;;;25663:2913:24:o;17371:1187::-;-1:-1:-1;;;;;17485:22:24;;17460;17485;;;:11;:22;;;;;;17517:11;;;;:39;;;;;;;;:::i;:::-;;17513:79;;17565:27;;-1:-1:-1;;;17565:27:24;;;;;;;;;;;17513:79;17628:4;-1:-1:-1;;;;;17602:30:24;:9;-1:-1:-1;;;;;17602:20:24;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;17602:30:24;;17598:73;;17641:30;;-1:-1:-1;;;17641:30:24;;;;;;;;;;;17598:73;17698:20;17690:4;:28;;;;;;;;:::i;:::-;;:87;;;;-1:-1:-1;17723:54:24;;-1:-1:-1;;;17723:54:24;;-1:-1:-1;;;;;17723:27:24;;;;;:54;;-1:-1:-1;;;17751:25:24;17723:54;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17722:55;17690:87;17689:206;;;-1:-1:-1;17797:29:24;17789:4;:37;;;;;;;;:::i;:::-;;:105;;;;-1:-1:-1;17831:63:24;;-1:-1:-1;;;17831:63:24;;-1:-1:-1;;;;;17831:27:24;;;;;:63;;-1:-1:-1;;;17859:34:24;17831:63;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17830:64;17789:105;17689:313;;;-1:-1:-1;17914:24:24;17906:4;:32;;;;;;;;:::i;:::-;;:95;;;;-1:-1:-1;17943:58:24;;-1:-1:-1;;;17943:58:24;;-1:-1:-1;;;;;17943:27:24;;;;;:58;;-1:-1:-1;;;17971:29:24;17943:58;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17942:59;17906:95;17678:379;;;18041:9;18052:4;18016:41;;-1:-1:-1;;;18016:41:24;;;;;;;;;:::i;17678:379::-;18064:36;;18078:22;-1:-1:-1;;18064:36:24;;;;;;18118:4;;18064:36;;-1:-1:-1;;18106:16:24;;;;;18118:4;18106:16;;;;;;;;:::i;:::-;;;;;-1:-1:-1;18140:29:24;18132:4;:37;;;;;;;;:::i;:::-;;18128:352;;18179:19;18226:9;18179:58;;18245:11;18259:2;-1:-1:-1;;;;;18259:12:24;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18245:28;-1:-1:-1;;;;;;18285:26:24;;;18281:79;;18323:28;;-1:-1:-1;;;18323:28:24;;-1:-1:-1;;;;;3601:32:125;;;18323:28:24;;;3583:51:125;18323:15:24;;;;;3556:18:125;;18323:28:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18281:79;18373:2;-1:-1:-1;;;;;18373:12:24;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18367:20;-1:-1:-1;;;;;;18399:26:24;;;18395:79;;18437:28;;-1:-1:-1;;;18437:28:24;;-1:-1:-1;;;;;3601:32:125;;;18437:28:24;;;3583:51:125;18437:15:24;;;;;3556:18:125;;18437:28:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18395:79;18171:309;;18128:352;18513:9;-1:-1:-1;;;;;18490:63:24;;18524:4;18530:22;18490:63;;;;;;;:::i;28610:1433::-;2000:19:51;:17;:19::i;:::-;28816:31:24::1;;;::::0;;::::1;::::0;::::1;28832:14:::0;28816:31:::1;:::i;:::-;987:10:48::0;28930:17:24;::::1;11057:2:23::0;11045:14;28905:58:24;::::1;28901:94;;28972:23;;-1:-1:-1::0;;;28972:23:24::1;;;;;;;;;;;28901:94;29001:69;29040:2;29045:24;29001:30;:69::i;:::-;29076:19;29098:2;-1:-1:-1::0;;;;;29098:18:24::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29076:42;;29124:74;29163:2;29168:29;29124:30;:74::i;:::-;29212:51;29247:15;29212:51;:25;::::0;;;::::1;::::0;::::1;;:::i;:::-;:51;;;29286:14;:17;;;29204:101;;;;;-1:-1:-1::0;;;29204:101:24::1;;;;;;6593:25:125::0;;6581:2;6566:18;;6447:177;29204:101:24::1;;29347:14;:26;;;29326:17;:47;;:94;;;;;29400:14;:20;;;29385:11;:35;;29326:94;:141;;;;;29447:14;:20;;;29432:11;:35;;29326:141;29501:14;29517:17;29536:11;29549;29311:256;;;;;;;;-1:-1:-1::0;;;29311:256:24::1;;;;;;;;;;;:::i;:::-;;;;;29589:20;29612:26;29620:14;:17;;;29612:7;:26::i;:::-;29589:49;;29644;29660:2;29664:5;29671:14;:21;;;29644:15;:49::i;:::-;29716:17:::0;::::1;29706:28;::::0;;;:9:::1;:28;::::0;;;;;29699:35;;;;29761:93;-1:-1:-1;;;29761:93:24;;-1:-1:-1;;;;;29761:18:24;::::1;::::0;::::1;::::0;:93:::1;::::0;29716:14;;29796:17;;29815:11;;29828;;29841:12;;29761:93:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;29866:83:24::1;::::0;;31104:25:125;;;31160:2;31145:18;;31138:34;;;31188:18;;;31181:34;;;29886:17:24;::::1;::::0;-1:-1:-1;;;;;;29866:83:24;::::1;::::0;-1:-1:-1;29866:83:24::1;::::0;31092:2:125;31077:18;29866:83:24::1;;;;;;;29955;29975:17:::0;::::1;29994::::0;30013:11;30026;29955:19:::1;:83::i;:::-;28796:1247;;;28610:1433:::0;;;;:::o;18878:1253::-;-1:-1:-1;;;;;18975:22:24;;18950;18975;;;:11;:22;;;;;19022:26;19007:11;;;;:41;;;;;;;;:::i;:::-;;19003:78;;19057:24;;-1:-1:-1;;;19057:24:24;;;;;;;;;;;19003:78;19104:20;19091:9;;;;;;;:33;;;;;;;;:::i;:::-;;19087:924;;19161:9;-1:-1:-1;;;;;19138:46:24;;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;19134:161;;19235:4;:9;;;;;;;;;;;;19269;-1:-1:-1;;;;;19246:46:24;;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19208:87;;-1:-1:-1;;;19208:87:24;;;;;;;;;:::i;19134:161::-;19087:924;;;19325:24;19312:9;;;;;;;:37;;;;;;;;:::i;:::-;;19308:703;;-1:-1:-1;;;;;19363:46:24;;;;;;:13;:46;;;;;:53;-1:-1:-1;;;;;19363:53:24;:58;19359:171;;19465:9;;-1:-1:-1;;;;;19476:46:24;;19465:9;19476:46;;;:13;:46;;;;;;;;;:53;19438:92;;-1:-1:-1;;;19438:92:24;;;;19465:9;;;;;;-1:-1:-1;;;;;19476:53:24;;19438:92;;:::i;19308:703::-;19605:19;19652:9;19605:58;;19675:2;-1:-1:-1;;;;;19675:15:24;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:22;19671:91;;19733:4;:9;;;;;;;;;;;;19744:2;-1:-1:-1;;;;;19744:15:24;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19671:91;19770:11;19784:2;-1:-1:-1;;;;;19784:12:24;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19770:28;-1:-1:-1;;;;;;19810:26:24;;;19806:82;;19848:31;;-1:-1:-1;;;19848:31:24;;-1:-1:-1;;;;;3601:32:125;;;19848:31:24;;;3583:51:125;19848:18:24;;;;;3556::125;;19848:31:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19806:82;19901:2;-1:-1:-1;;;;;19901:12:24;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19895:20;-1:-1:-1;;;;;;19927:26:24;;;19923:82;;19965:31;;-1:-1:-1;;;19965:31:24;;-1:-1:-1;;;;;3601:32:125;;;19965:31:24;;;3583:51:125;19965:18:24;;;;;3556::125;;19965:31:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19923:82;19543:468;;19308:703;20055:9;;20021:70;;-1:-1:-1;;;;;20021:70:24;;;;;;;20055:9;;;;;;;;20021:70;:::i;:::-;;;;;;;;-1:-1:-1;;;;;;20104:22:24;;;;;:11;:22;;;;;20097:29;;-1:-1:-1;;20097:29:24;;;18878:1253::o;3003:265:47:-;3066:7;-1:-1:-1;;;;;;;;;;;;;;;;3144:19:47;;3140:87;;3186:30;;-1:-1:-1;;;3186:30:47;;3213:1;3186:30;;;3583:51:125;3556:18;;3186:30:47;3437:203:125;3140:87:47;-1:-1:-1;;;;;3243:18:47;;;;;;;:11;;;;:18;;-1:-1:-1;3243:18:47;;;;;3003:265::o;15800:43:24:-;15830:8;:6;:8::i;3650:150:47:-;3784:9;3777:16;;3697:13;;-1:-1:-1;;;;;;;;;;;2094:21:47;3777:16;;;:::i;33878:369:24:-;-1:-1:-1;;;;;33981:17:24;;33953:25;33981:17;;;:13;:17;;;;;;34026:20;:8;:18;:20::i;:::-;34060:15;;34004:42;;-1:-1:-1;;;;;;34060:15:24;;;;34004:42;;34060:30;;;;;34052:92;;;;-1:-1:-1;;;34052:92:24;;-1:-1:-1;;;;;32294:47:125;;;34052:92:24;;;32276:66:125;32378:47;;32358:18;;;32351:75;32249:18;;34052:92:24;32102:330:125;34052:92:24;-1:-1:-1;;34180:14:24;;34155:53;;;-1:-1:-1;;;34180:14:24;;;-1:-1:-1;;;;;34180:14:24;;;32276:66:125;;32378:47;;32373:2;32358:18;;32351:75;-1:-1:-1;;;;;34155:53:24;;;;;32249:18:125;34155:53:24;;;;;;;34214:28;;-1:-1:-1;;;;;34214:28:24;;;-1:-1:-1;;;34214:28:24;;;;;;-1:-1:-1;;33878:369:24:o;4800:144:47:-;4885:52;987:10:48;4918:8:47;4928;4885:18;:52::i;1539:482:49:-;1703:12;;;1639:20;1703:12;;;;;;;;1605:22;;1814:4;-1:-1:-1;;;;;1802:24:49;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1792:34:49;-1:-1:-1;1841:9:49;1836:155;1856:15;;;1836:155;;;1905:75;1942:4;1962;;1967:1;1962:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;1971;1949:30;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1905:28;:75::i;:::-;1892:7;1900:1;1892:10;;;;;;;;:::i;:::-;;;;;;;;;;:88;1873:3;;1836:155;;;;2000:14;1539:482;;;;:::o;6000:233:47:-;6113:31;6126:4;6132:2;6136:7;6113:12;:31::i;:::-;6154:72;987:10:48;6202:4:47;6208:2;6212:7;6221:4;6154:33;:72::i;30760:161:24:-;2000:19:51;:17;:19::i;:::-;30879:37:24::1;;;::::0;;::::1;::::0;::::1;30894:6:::0;30879:37:::1;:::i;:::-;30902:6;30910:5;30879:14;:37::i;3842:255:47:-:0;3906:13;3931:22;3945:7;3931:13;:22::i;:::-;;3964:21;3988:10;:8;:10::i;:::-;3964:34;;4039:1;4021:7;4015:21;:25;:75;;;;;;;;;;;;;;;;;4057:7;4066:18;:7;:16;:18::i;:::-;4043:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4015:75;4008:82;3842:255;-1:-1:-1;;;3842:255:47:o;22700:617:24:-;2000:19:51;:17;:19::i;:::-;-1:-1:-1;;;;;22970:9:24::1;22949:39;;987:10:48::0;22949:95:24::1;::::0;-1:-1:-1;;;;;;22949:95:24::1;::::0;;;;;;-1:-1:-1;;;;;34594:32:125;;;22949:95:24::1;::::0;::::1;34576:51:125::0;23011:4:24::1;34643:18:125::0;;;34636:60;34712:18;;;34705:34;;;34755:18;;;34748:34;;;34831:4;34819:17;;34798:19;;;34791:46;34853:19;;;34846:35;;;34897:19;;;34890:35;;;34548:19;;22949:95:24::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22945:111:::0;23278:34:::1;23287:6;23295;23303:8;23278;:34::i;23351:466::-:0;23495:23;2000:19:51;:17;:19::i;:::-;23534:8:24;-1:-1:-1;;;;;23534:22:24;::::1;23526:58;;;::::0;-1:-1:-1;;;23526:58:24;;-1:-1:-1;;;;;3601:32:125;;;23526:58:24::1;::::0;::::1;3583:51:125::0;3556:18;;23526:58:24::1;3437:203:125::0;23526:58:24::1;;23590:69;23629:6;23638:20;23590:30;:69::i;:::-;-1:-1:-1::0;;;;;23683:15:24;::::1;;23699:6:::0;987:10:48;23683:54:24::1;::::0;-1:-1:-1;;;;;;23683:54:24::1;::::0;;;;;;::::1;::::0;::::1;35167:25:125::0;;;;-1:-1:-1;;;;;35228:32:125;;;35208:18;;;35201:60;35297:32;;;35277:18;;;35270:60;35366:32;;35346:18;;;35339:60;35139:19;;23683:54:24::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23665:72:::0;-1:-1:-1;;;;;;23748:64:24;::::1;987:10:48::0;23748:64:24::1;::::0;;-1:-1:-1;;;;;35602:32:125;;;35584:51;;35666:2;35651:18;;35644:34;;;23748:64:24;;::::1;::::0;;::::1;::::0;::::1;::::0;35557:18:125;23748:64:24::1;;;;;;;23351:466:::0;;;;;;:::o;4978:210:47:-;-1:-1:-1;;;;;5144:27:47;;;5066:4;5144:27;;;:20;:27;;;;;;;;:37;;;;;;;;;;;;;;;4978:210::o;16540:83:24:-;16595:23;16608:9;16595:12;:23::i;:::-;16540:83;:::o;22522:144::-;2000:19:51;:17;:19::i;:::-;22627:34:24::1;22636:6;22644;22652:8;22627;:34::i;30471:255::-:0;2000:19:51;:17;:19::i;:::-;30590:15:24::1;30570:17;::::0;;;::::1;::::0;::::1;;:::i;:::-;:35;;;30566:111;;;30631:9:::0;::::1;30642:17;::::0;;;::::1;::::0;::::1;;:::i;:::-;30614:63;::::0;-1:-1:-1;;;30614:63:24;;::::1;::::0;::::1;35889:25:125::0;;;;35962:12;35950:25;35930:18;;;35923:53;30661:15:24::1;35992:18:125::0;;;35985:34;35862:18;;30614:63:24::1;35689:336:125::0;30566:111:24::1;30690:31;;;::::0;;::::1;::::0;::::1;30705:6:::0;30690:31:::1;:::i;:::-;30713:1;30716:4;30690:14;:31::i;2658:311:47:-:0;2771:4;-1:-1:-1;;;;;;2806:40:47;;-1:-1:-1;;;2806:40:47;;:104;;-1:-1:-1;;;;;;;2862:48:47;;-1:-1:-1;;;2862:48:47;2806:104;:156;;;-1:-1:-1;;;;;;;;;;1119:40:53;;;2926:36:47;1020:146:53;9071:205:75;9129:30;;3147:66;9186:27;8819:122;2250:149:47;6929:20:75;:18;:20::i;:::-;2353:39:47::1;2377:5;2384:7;2353:23;:39::i;2287:60:51:-:0;6929:20:75;:18;:20::i;15268:116:24:-;6929:20:75;:18;:20::i;17574:241:47:-;17637:7;17656:13;17672:17;17681:7;17672:8;:17::i;:::-;17656:33;-1:-1:-1;;;;;;17703:19:47;;17699:88;;17745:31;;-1:-1:-1;;;17745:31:47;;;;;6593:25:125;;;6566:18;;17745:31:47;6447:177:125;7036:184:47;7106:7;7187:26;;;:17;:26;;;;;;-1:-1:-1;;;;;7187:26:47;;7036:184::o;15740:120::-;15820:33;15829:2;15833:7;15842:4;15848;15820:8;:33::i;2730:128:51:-;-1:-1:-1;;;;;;;;;;;2646:9:51;;;2791:61;;;2826:15;;-1:-1:-1;;;2826:15:51;;;;;;;;;;;21602:194:24;21730:22;21693:33;21710:9;21721:4;21693:16;:33::i;:::-;:59;;;;;;;;:::i;:::-;;21689:102;;21761:30;;-1:-1:-1;;;21761:30:24;;;;;;;;;;;11607:153:23;11683:7;11705:50;;;;-1:-1:-1;;11739:2:23;11706:35;;;;11705:50;:::i;10651:204::-;10714:15;10768:6;10757:18;;;;;;;;:::i;:::-;;;;-1:-1:-1;;10757:18:23;;;;;;;;;10747:29;;10757:18;10747:29;;;;;-1:-1:-1;10822:6:23;10790:21;10782:48;;;;-1:-1:-1;;;10782:48:23;;;;;;;;:::i;:::-;;10651:204;;;:::o;12225:207:47:-;12319:18;12325:2;12329:7;12319:5;:18::i;:::-;12347:78;987:10:48;12403:1:47;12407:2;12411:7;12420:4;12347:33;:78::i;32854:372:24:-;-1:-1:-1;;;;;32969:17:24;;32941:25;32969:17;;;:13;:17;;;;;32992:230;;;;33033:18;:6;:16;:18::i;:::-;33014:37;;:8;;:15;;:37;;;;-1:-1:-1;;;;;33014:37:24;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;33014:37:24;;;;;;;;;;;;;;;33086:14;;33067:15;;;;-1:-1:-1;;;;33086:14:24;;;33067:33;;;;33059:98;;;;-1:-1:-1;;;33059:98:24;;-1:-1:-1;;;;;32294:47:125;;;33059:98:24;;;32276:66:125;32378:47;;32358:18;;;32351:75;32249:18;;33059:98:24;32102:330:125;33059:98:24;;;32992:230;;;33197:18;:6;:16;:18::i;:::-;33178:37;;:8;;:15;;:37;;;;-1:-1:-1;;;;;33178:37:24;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;33178:37:24;;;;;-1:-1:-1;;;;;33178:37:24;;;;;;32935:291;32854:372;;;:::o;1662:232:82:-;1767:47;1785:5;1792:4;1798:2;1802:5;1809:4;1767:17;:47::i;:::-;1762:126;;1837:40;;-1:-1:-1;;;1837:40:82;;-1:-1:-1;;;;;3601:32:125;;1837:40:82;;;3583:51:125;3556:18;;1837:40:82;3437:203:125;38669:160:24;38770:7;2000:19:51;:17;:19::i;:::-;38792:32:24::1;38806:2;38810:7;38819:4;38792:13;:32::i;:::-;38785:39:::0;38669:160;-1:-1:-1;;;;38669:160:24:o;3499:178:51:-;2247:16;:14;:16::i;:::-;-1:-1:-1;;;;;;;;;;;3616:17:51;;-1:-1:-1;;3616:17:51::1;::::0;;3648:22:::1;987:10:48::0;3657:12:51::1;3648:22;::::0;-1:-1:-1;;;;;3601:32:125;;;3583:51;;3571:2;3556:18;3648:22:51::1;;;;;;;3547:130;3499:178::o:0;4328:312:76:-;4408:4;-1:-1:-1;;;;;4417:6:76;4400:23;;;:120;;;4514:6;-1:-1:-1;;;;;4478:42:76;:32;-1:-1:-1;;;;;;;;;;;1519:53:72;-1:-1:-1;;;;;1519:53:72;;1441:138;4478:32:76;-1:-1:-1;;;;;4478:42:76;;;4400:120;4383:251;;;4594:29;;-1:-1:-1;;;4594:29:76;;;;;;;;;;;15388:199:24;15461:19;15495:7;15461:42;;15535:9;-1:-1:-1;;;;;15513:31:24;:7;-1:-1:-1;;;;;15513:16:24;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;15513:31:24;;15509:73;;15553:29;;-1:-1:-1;;;15553:29:24;;;;;;;;;;;5782:538:76;5899:17;-1:-1:-1;;;;;5881:50:76;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5881:52:76;;;;;;;;-1:-1:-1;;5881:52:76;;;;;;;;;;;;:::i;:::-;;;5877:437;;6243:60;;-1:-1:-1;;;6243:60:76;;-1:-1:-1;;;;;3601:32:125;;6243:60:76;;;3583:51:125;3556:18;;6243:60:76;3437:203:125;5877:437:76;-1:-1:-1;;;;;;;;;;;5975:40:76;;5971:120;;6042:34;;-1:-1:-1;;;6042:34:76;;;;;6593:25:125;;;6566:18;;6042:34:76;6447:177:125;5971:120:76;6104:54;6134:17;6153:4;6104:29;:54::i;4757:213::-;4831:4;-1:-1:-1;;;;;4840:6:76;4823:23;;4819:145;;4924:29;;-1:-1:-1;;;4924:29:76;;;;;;;;;;;30263:174:24;30349:9;;:14;;;;:55;;-1:-1:-1;30394:9:24;;30384:20;;;;:9;:20;;;;;;30367:13;30394:6;30367:11;:13::i;:::-;:37;30349:55;30421:9;;;30341:91;;;;-1:-1:-1;;;30341:91:24;;;;;;6593:25:125;;6581:2;6566:18;;6447:177;30047:212:24;30149:11;30163;30170:4;30163;:11;:::i;:::-;30149:25;-1:-1:-1;30184:8:24;;30180:75;;30202:46;-1:-1:-1;;;;;30202:9:24;:26;30229:5;30236:6;30244:3;30202:26;:46::i;:::-;30143:116;30047:212;;;;:::o;36579:508::-;36664:16;36683:20;36691:11;36683:7;:20::i;:::-;36664:39;;36714:74;36746:8;-1:-1:-1;;;36714:31:24;:74::i;:::-;36709:88;;36790:7;36579:508;;:::o;36709:88::-;36803:13;-1:-1:-1;;;;;36819:40:24;;;987:10:48;36819:95:24;;-1:-1:-1;;;;;;36819:95:24;;;;;;;-1:-1:-1;;;;;37371:32:125;;;36819:95:24;;;37353:51:125;36882:4:24;37420:18:125;;;37413:60;37489:18;;;37482:34;;;37532:18;;;37525:34;;;37325:19;;36819:95:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36803:111;-1:-1:-1;;;;;;;36989:49:24;;-1:-1:-1;;;36989:49:24;36985:97;;37075:6;37047:35;;-1:-1:-1;;;37047:35:24;;;;;;;;:::i;21800:294::-;21899:22;21924:33;21941:9;21952:4;21924:16;:33::i;:::-;21899:58;-1:-1:-1;21977:22:24;21967:6;:32;;;;;;;;:::i;:::-;;;:72;;;;-1:-1:-1;22013:26:24;22003:6;:36;;;;;;;;:::i;:::-;;;21967:72;21963:126;;;22054:35;;-1:-1:-1;;;22054:35:24;;;;;;;;;;;37366:672;37526:16;37545:26;37553:17;37545:7;:26::i;:::-;37526:45;;37582:74;37614:8;-1:-1:-1;;;37582:31:24;:74::i;:::-;37577:88;;37658:7;;;37577:88;37671:13;-1:-1:-1;;;;;37687:41:24;;;987:10:48;37687:176:24;;-1:-1:-1;;;;;;37687:176:24;;;;;;;-1:-1:-1;;;;;38129:32:125;;;37687:176:24;;;38111:51:125;37764:4:24;38178:18:125;;;38171:60;38247:18;;;38240:34;;;38290:18;;;38283:34;;;38333:19;;;38326:35;;;38377:19;;;38370:35;;;38083:19;;37687:176:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37671:192;-1:-1:-1;;;;;;;37939:50:24;;-1:-1:-1;;;37939:50:24;37935:98;;38026:6;37998:35;;-1:-1:-1;;;37998:35:24;;;;;;;;:::i;37935:98::-;37520:518;;37366:672;;;;:::o;3191:176:51:-;2000:19;:17;:19::i;:::-;-1:-1:-1;;;;;;;;;;;3309:16:51;;-1:-1:-1;;3309:16:51::1;3321:4;3309:16;::::0;;3340:20:::1;987:10:48::0;3347:12:51::1;908:96:48::0;9264:218:106;9321:7;-1:-1:-1;;;;;9344:25:106;;9340:105;;;9392:42;;-1:-1:-1;;;9392:42:106;;9423:3;9392:42;;;38598:36:125;38650:18;;;38643:34;;;38571:18;;9392:42:106;38416:267:125;9340:105:106;-1:-1:-1;9469:5:106;9264:218::o;16970:369:47:-;-1:-1:-1;;;;;;;;;;;;;;;;17132:22:47;;17128:91;;17177:31;;-1:-1:-1;;;17177:31:47;;-1:-1:-1;;;;;3601:32:125;;17177:31:47;;;3583:51:125;3556:18;;17177:31:47;3437:203:125;17128:91:47;-1:-1:-1;;;;;17228:27:47;;;;;;;:20;;;:27;;;;;;;;:37;;;;;;;;;;;;;:48;;-1:-1:-1;;17228:48:47;;;;;;;;;;17291:41;;540::125;;;17291::47;;513:18:125;17291:41:47;;;;;;;17063:276;16970:369;;;:::o;4691:549:87:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:87;4583:16:91;4886:33:87;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:87;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:87;;-1:-1:-1;;;;;3601:32:125;;5045:24:87;;;3583:51:125;3556:18;;5045:24:87;3437:203:125;5011:223:87;4583:16:91;5090:33:87;5086:148;;5139:27;:25;:27::i;:::-;5086:148;;;5204:19;;-1:-1:-1;;;5204:19:87;;;;;;;;;;;5086:148;4788:452;4691:549;;;;:::o;994:926:86:-;-1:-1:-1;;;;;1174:14:86;;;:18;1170:744;;1212:67;;-1:-1:-1;;;1212:67:86;;-1:-1:-1;;;;;1212:36:86;;;;;:67;;1249:8;;1259:4;;1265:7;;1274:4;;1212:67;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1212:67:86;;;;;;;;-1:-1:-1;;1212:67:86;;;;;;;;;;;;:::i;:::-;;;1208:696;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1569:6;:13;1586:1;1569:18;1565:325;;1673:39;;-1:-1:-1;;;1673:39:86;;-1:-1:-1;;;;;3601:32:125;;1673:39:86;;;3583:51:125;3556:18;;1673:39:86;3437:203:125;1565:325:86;1842:6;1836:13;1829:4;1821:6;1817:17;1810:40;1208:696;-1:-1:-1;;;;;;1326:51:86;;-1:-1:-1;;;1326:51:86;1322:182;;1446:39;;-1:-1:-1;;;1446:39:86;;-1:-1:-1;;;;;3601:32:125;;1446:39:86;;;3583:51:125;3556:18;;1446:39:86;3437:203:125;31666:1184:24;31782:23;31798:6;31782:15;:23::i;:::-;31865:9;;11057:2:23;11045:14;31886:8:24;;:39;;;;-1:-1:-1;;;;;;31898:27:24;;987:10:48;31898:27:24;;31886:39;31882:75;;;31934:23;;-1:-1:-1;;;31934:23:24;;;;;;;;;;;31882:75;31971:11;;;:50;;;32006:15;31986:6;:17;;;:35;;;31971:50;32044:9;;;31963:92;;;;-1:-1:-1;;;31963:92:24;;;;;;6593:25:125;;6581:2;6566:18;;6447:177;31963:92:24;;32061:69;32100:2;32105:24;32061:30;:69::i;:::-;32155:13;;;;32145:6;;:23;;;;32137:75;;;;-1:-1:-1;;;32137:75:24;;;;;12740:25:125;;;;12781:18;;;12774:34;12713:18;;32137:75:24;12566:248:125;32137:75:24;;;32219:16;32247:1;32238:6;:10;32219:29;;32255:19;32277:2;-1:-1:-1;;;;;32277:18:24;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32255:42;;32303:74;32342:2;32347:29;32303:30;:74::i;:::-;32415:9;;32405:20;;;;:9;:20;;;;;32398:27;32451:181;;;;32476:19;32498:18;32506:6;:9;;;32498:7;:18::i;:::-;32524:56;;-1:-1:-1;;;32524:56:24;;32476:40;;-1:-1:-1;;;;;;32524:27:24;;;;;:56;;32476:40;;32565:6;;32573;;32524:56;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32468:119;32451:181;;;32601:24;;-1:-1:-1;;;32601:24:24;;-1:-1:-1;;;;;32601:16:24;;;;;:24;;32618:6;;32601:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32451:181;32638:41;32654:2;32658:5;32665:6;:13;;;32638:15;:41::i;:::-;32710:9;;32691:37;;6593:25:125;;;-1:-1:-1;;;;;32691:37:24;;;;;6581:2:125;6566:18;32691:37:24;;;;;;;32738:10;;32734:112;;32772:9;;32758:32;;32783:6;32758:13;:32::i;:::-;32734:112;;;32829:9;;32811:28;;:17;:28::i;38276:104::-;38336:13;38364:11;38357:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38276:104;:::o;1343:634:98:-;1399:13;1448:14;1465:17;1476:5;1465:10;:17::i;:::-;1485:1;1465:21;1448:38;;1500:20;1534:6;-1:-1:-1;;;;;1523:18:98;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1523:18:98;-1:-1:-1;1500:41:98;-1:-1:-1;1630:30:98;;;1646:4;1630:30;1687:247;-1:-1:-1;;1718:5:98;-1:-1:-1;;;1817:2:98;1806:14;;1801:32;1718:5;1788:46;1878:2;1869:11;;;-1:-1:-1;1898:21:98;1687:247;1898:21;-1:-1:-1;1954:6:98;1343:634;-1:-1:-1;;;1343:634:98:o;22098:390:24:-;22189:8;-1:-1:-1;;;;;22189:22:24;;22181:58;;;;-1:-1:-1;;;22181:58:24;;-1:-1:-1;;;;;3601:32:125;;;22181:58:24;;;3583:51:125;3556:18;;22181:58:24;3437:203:125;22181:58:24;;22245:57;22272:6;22281:20;22245:18;:57::i;:::-;22308:65;:9;-1:-1:-1;;;;;22308:26:24;987:10:48;22357:6:24;22366;22308:26;:65::i;:::-;-1:-1:-1;;;;;22379:14:24;;;22394:6;987:10:48;22379:46:24;;-1:-1:-1;;;;;;22379:46:24;;;;;;;;;;39942:25:125;;;;-1:-1:-1;;;;;40003:32:125;;;39983:18;;;39976:60;40072:32;;40052:18;;;40045:60;39915:18;;22379:46:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22466:8;-1:-1:-1;;;;;22436:47:24;22452:12;987:10:48;;908:96;22452:12:24;-1:-1:-1;;;;;22436:47:24;22444:6;-1:-1:-1;;;;;22436:47:24;;22476:6;22436:47;;;;6593:25:125;;6581:2;6566:18;;6447:177;22436:47:24;;;;;;;;22098:390;;;:::o;16166:188::-;-1:-1:-1;;;;;16226:23:24;;16222:52;;16258:16;;-1:-1:-1;;;16258:16:24;;;;;;;;;;;16222:52;16301:9;;16285:37;;;-1:-1:-1;;;;;16301:9:24;;;40290:51:125;;40377:32;;;40372:2;40357:18;;40350:60;16285:37:24;;40263:18:125;16285:37:24;;;;;;;16328:9;:21;;-1:-1:-1;;;;;;16328:21:24;-1:-1:-1;;;;;16328:21:24;;;;;;;;;;16166:188::o;7082:141:75:-;7149:17;:15;:17::i;:::-;7144:73;;7189:17;;-1:-1:-1;;;7189:17:75;;;;;;;;;;;2405:219:47;6929:20:75;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;2094:21:47;2573:15:::1;2583:5:::0;2094:21;2573:15:::1;:::i;:::-;-1:-1:-1::0;2598:9:47::1;::::0;::::1;:19;2610:7:::0;2598:9;:19:::1;:::i;6748:172::-:0;6814:7;6895:18;;;:9;:18;;;;;;-1:-1:-1;;;;;6895:18:47;;6748:172::o;16042:719::-;-1:-1:-1;;;;;;;;;;;16257:9:47;;:31;;-1:-1:-1;;;;;;16270:18:47;;;;16257:31;16253:460;;;16304:13;16320:22;16334:7;16320:13;:22::i;:::-;16304:38;-1:-1:-1;;;;;;16470:18:47;;;;;;:35;;;16501:4;-1:-1:-1;;;;;16492:13:47;:5;-1:-1:-1;;;;;16492:13:47;;;16470:35;:69;;;;;16510:29;16527:5;16534:4;16510:16;:29::i;:::-;16509:30;16470:69;16466:142;;;16566:27;;-1:-1:-1;;;16566:27:47;;-1:-1:-1;;;;;3601:32:125;;16566:27:47;;;3583:51:125;3556:18;;16566:27:47;3437:203:125;16466:142:47;16626:9;16622:81;;;16680:7;16676:2;-1:-1:-1;;;;;16660:28:47;16669:5;-1:-1:-1;;;;;16660:28:47;;;;;;;;;;;16622:81;16290:423;16253:460;16723:26;;;;:17;;:26;;-1:-1:-1;;16723:26:47;;;:31;;-1:-1:-1;;;;;;16723:31:47;-1:-1:-1;;;;;16723:31:47;;;;;;;;;;16042:719::o;21290:308:24:-;-1:-1:-1;;;;;21426:44:24;;21378:15;21426:44;;;:11;:44;;;;;21493:4;21480:17;;;;;;;;:::i;:::-;:9;;;;;;;:17;;;;;;;;:::i;:::-;;21476:93;;21552:9;21564:4;21506:63;;-1:-1:-1;;;21506:63:24;;;;;;;;;:::i;21476:93::-;21582:11;;;;21290:308;-1:-1:-1;;;21290:308:24:o;11226:327:47:-;-1:-1:-1;;;;;11293:16:47;;11289:87;;11332:33;;-1:-1:-1;;;11332:33:47;;11362:1;11332:33;;;3583:51:125;3556:18;;11332:33:47;3437:203:125;11289:87:47;11385:21;11409:32;11417:2;11421:7;11438:1;11409:7;:32::i;:::-;11385:56;-1:-1:-1;;;;;;11455:27:47;;;11451:96;;11505:31;;-1:-1:-1;;;11505:31:47;;11533:1;11505:31;;;3583:51:125;3556:18;;11505:31:47;3437:203:125;10165:1393:82;10460:4;10454:11;-1:-1:-1;;;10323:12:82;10478:22;;;-1:-1:-1;;;;;10526:26:82;;;10520:4;10513:40;10579:24;;10573:4;10566:38;10624:4;10617:19;;;10323:12;10700:4;10323:12;10688:4;10323:12;;10672:5;10665;10660:45;10649:56;;10917:1;10910:4;10904:11;10901:18;10892:7;10888:32;10878:606;;11049:6;11039:7;11032:15;11028:28;11025:165;;;11105:16;11099:4;11094:3;11079:43;11155:16;11150:3;11143:29;11025:165;11466:1;11458:5;11446:18;11443:25;11424:16;11417:24;11413:56;11404:7;11400:70;11389:81;;10878:606;11504:4;11497:17;-1:-1:-1;11540:1:82;11534:4;11527:15;10165:1393;;-1:-1:-1;;;;;10165:1393:82:o;10048:856:47:-;10134:7;-1:-1:-1;;;;;;;;;;;10134:7:47;10223:17;10232:7;10223:8;:17::i;:::-;10208:32;-1:-1:-1;;;;;;10300:18:47;;;10296:86;;10334:37;10351:4;10357;10363:7;10334:16;:37::i;:::-;-1:-1:-1;;;;;10426:18:47;;;10422:258;;10542:48;10559:1;10563:7;10580:1;10584:5;10542:8;:48::i;:::-;-1:-1:-1;;;;;10633:17:47;;;;;;:11;;;:17;;;;;:22;;-1:-1:-1;;10633:22:47;;;10422:258;-1:-1:-1;;;;;10694:16:47;;;10690:109;;-1:-1:-1;;;;;10754:15:47;;;;;;:11;;;:15;;;;;:20;;10773:1;10754:20;;;10690:109;10809:18;;;;:9;;;:18;;;;;;:23;;-1:-1:-1;;;;;;10809:23:47;-1:-1:-1;;;;;10809:23:47;;;;;;;;;10848:27;;10809:18;;10848:27;;;;;;;10893:4;10048:856;-1:-1:-1;;;;;10048:856:47:o;2930:126:51:-;-1:-1:-1;;;;;;;;;;;2646:9:51;;;2988:62;;3024:15;;-1:-1:-1;;;3024:15:51;;;;;;;;;;;2264:344:72;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:72;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;2454:148::-;2573:18;:16;:18::i;1465:283:103:-;1552:4;1660:23;1675:7;1660:14;:23::i;:::-;:81;;;;;1687:54;1720:7;1729:11;1687:32;:54::i;3383:242:91:-;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:91:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;35204:419:24;35276:16;35295:17;35303:8;35295:7;:17::i;:::-;35276:36;;35323:74;35355:8;-1:-1:-1;;;35323:31:24;:74::i;:::-;35318:88;;35399:7;35204:419;;:::o;35318:88::-;35412:13;-1:-1:-1;;;;;35428:40:24;;;987:10:48;35428:87:24;;-1:-1:-1;;;;;;35428:87:24;;;;;;;-1:-1:-1;;;;;37371:32:125;;;35428:87:24;;;37353:51:125;35491:4:24;37420:18:125;;;37413:60;37489:18;;;37482:34;;;37532:18;;;37525:34;;;37325:19;;35428:87:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35412:103;-1:-1:-1;;;;;;;35525:49:24;;-1:-1:-1;;;35525:49:24;35521:97;;35611:6;35583:35;;-1:-1:-1;;;35583:35:24;;;;;;;;:::i;35842:460::-;35902:16;35921:17;35929:8;35921:7;:17::i;:::-;35902:36;;35949:74;35981:8;-1:-1:-1;;;35949:31:24;:74::i;:::-;35944:88;;36025:7;35842:460;:::o;35944:88::-;-1:-1:-1;;;;;36042:39:24;;;2698:6;987:10:48;36042:101:24;;-1:-1:-1;;;;;;36042:101:24;;;;;;;-1:-1:-1;;;;;41945:32:125;;;36042:101:24;;;41927:51:125;36127:4:24;41994:18:125;;;41987:60;42063:18;;;42056:34;;;41900:18;;36042:101:24;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36042:101:24;;;;;;;;-1:-1:-1;;36042:101:24;;;;;;;;;;;;:::i;:::-;;;36038:260;;36214:63;;-1:-1:-1;;;;;3601:32:125;;3583:51;;36243:8:24;;36214:63;;3571:2:125;3556:18;36214:63:24;;;;;;;36285:7;35842:460;:::o;29170:916:105:-;29223:7;;-1:-1:-1;;;29298:17:105;;29294:103;;-1:-1:-1;;;29335:17:105;;;-1:-1:-1;29380:2:105;29370:12;29294:103;29423:8;29414:5;:17;29410:103;;29460:8;29451:17;;;-1:-1:-1;29496:2:105;29486:12;29410:103;29539:8;29530:5;:17;29526:103;;29576:8;29567:17;;;-1:-1:-1;29612:2:105;29602:12;29526:103;29655:7;29646:5;:16;29642:100;;29691:7;29682:16;;;-1:-1:-1;29726:1:105;29716:11;29642:100;29768:7;29759:5;:16;29755:100;;29804:7;29795:16;;;-1:-1:-1;29839:1:105;29829:11;29755:100;29881:7;29872:5;:16;29868:100;;29917:7;29908:16;;;-1:-1:-1;29952:1:105;29942:11;29868:100;29994:7;29985:5;:16;29981:66;;30031:1;30021:11;30073:6;29170:916;-1:-1:-1;;29170:916:105:o;8485:120:75:-;8535:4;8558:26;:24;:26::i;:::-;:40;-1:-1:-1;;;8558:40:75;;;;;;-1:-1:-1;8485:120:75:o;8235:368:47:-;8347:38;8361:5;8368:7;8377;8347:13;:38::i;:::-;8342:255;;-1:-1:-1;;;;;8405:19:47;;8401:186;;8451:31;;-1:-1:-1;;;8451:31:47;;;;;6593:25:125;;;6566:18;;8451:31:47;6447:177:125;8401:186:47;8528:44;;-1:-1:-1;;;8528:44:47;;-1:-1:-1;;;;;35602:32:125;;8528:44:47;;;35584:51:125;35651:18;;;35644:34;;;35557:18;;8528:44:47;35410:274:125;1671:281:72;1748:17;-1:-1:-1;;;;;1748:29:72;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:72;;-1:-1:-1;;;;;3601:32:125;;1805:47:72;;;3583:51:125;3556:18;;1805:47:72;3437:203:125;1744:119:72;-1:-1:-1;;;;;;;;;;;1872:73:72;;-1:-1:-1;;;;;;1872:73:72;-1:-1:-1;;;;;1872:73:72;;;;;;;;;;1671:281::o;6113:122::-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:72;;;;;;;;;;;719:528:103;783:4;976:68;1009:7;-1:-1:-1;;;976:32:103;:68::i;:::-;972:269;;;1061:12;;1093:52;1115:7;-1:-1:-1;;;;;;1093:21:103;:52::i;:::-;1060:85;;;;1166:7;:21;;;;-1:-1:-1;1177:10:103;;1159:28;-1:-1:-1;;;719:528:103:o;972:269::-;-1:-1:-1;1225:5:103;;719:528;-1:-1:-1;719:528:103:o;972:269::-;719:528;;;:::o;4504:238::-;4606:4;4623:12;4637:14;4655:43;4677:7;4686:11;4655:21;:43::i;:::-;4622:76;;;;4715:7;:20;;;;;4726:9;4715:20;4708:27;4504:238;-1:-1:-1;;;;;4504:238:103:o;7531:272:47:-;7634:4;-1:-1:-1;;;;;7669:21:47;;;;;;:127;;;7716:7;-1:-1:-1;;;;;7707:16:47;:5;-1:-1:-1;;;;;7707:16:47;;:52;;;;7727:32;7744:5;7751:7;7727:16;:32::i;:::-;7707:88;;;;7788:7;-1:-1:-1;;;;;7763:32:47;:21;7776:7;7763:12;:21::i;:::-;-1:-1:-1;;;;;7763:32:47;;;7531:272;-1:-1:-1;;;;7531:272:47:o;5217:628:103:-;-1:-1:-1;;;5329:12:103;5471:22;;;5513:4;5506:25;;;5329:12;;;5600:4;5329:12;5588:4;5329:12;5573:7;5566:5;5555:50;5544:61;;5759:4;5753:11;5746:19;5739:27;5673:4;5655:16;5652:26;5631:198;5618:211;;5457:382;5217:628;;;;;:::o;14:131:125:-;-1:-1:-1;;;;;;88:32:125;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:289::-;634:3;672:5;666:12;699:6;694:3;687:19;755:6;748:4;741:5;737:16;730:4;725:3;721:14;715:47;807:1;800:4;791:6;786:3;782:16;778:27;771:38;870:4;863:2;859:7;854:2;846:6;842:15;838:29;833:3;829:39;825:50;818:57;;;592:289;;;;:::o;886:220::-;1035:2;1024:9;1017:21;998:4;1055:45;1096:2;1085:9;1081:18;1073:6;1055:45;:::i;1111:127::-;1172:10;1167:3;1163:20;1160:1;1153:31;1203:4;1200:1;1193:15;1227:4;1224:1;1217:15;1243:250;1310:2;1304:9;1352:6;1340:19;;-1:-1:-1;;;;;1374:34:125;;1410:22;;;1371:62;1368:88;;;1436:18;;:::i;:::-;1472:2;1465:22;1243:250;:::o;1498:889::-;1541:5;1594:3;1587:4;1579:6;1575:17;1571:27;1561:55;;1612:1;1609;1602:12;1561:55;1652:6;1639:20;1691:4;1683:6;1679:17;1720:1;1742;-1:-1:-1;;;;;1758:6:125;1755:30;1752:56;;;1788:18;;:::i;:::-;-1:-1:-1;1943:2:125;1937:9;-1:-1:-1;;1856:2:125;1835:15;;1831:29;;2001:2;1989:15;1985:29;1973:42;;2066:22;;;-1:-1:-1;;;;;2030:34:125;;2027:62;2024:88;;;2092:18;;:::i;:::-;2128:2;2121:22;2178;;;2163:6;-1:-1:-1;2163:6:125;2215:16;;;2212:25;-1:-1:-1;2209:45:125;;;2250:1;2247;2240:12;2209:45;2300:6;2295:3;2288:4;2280:6;2276:17;2263:44;2355:1;2348:4;2339:6;2331;2327:19;2323:30;2316:41;2375:6;2366:15;;;;;;1498:889;;;;:::o;2392:131::-;-1:-1:-1;;;;;2467:31:125;;2457:42;;2447:70;;2513:1;2510;2503:12;2528:673;2625:6;2633;2641;2694:2;2682:9;2673:7;2669:23;2665:32;2662:52;;;2710:1;2707;2700:12;2662:52;2750:9;2737:23;-1:-1:-1;;;;;2775:6:125;2772:30;2769:50;;;2815:1;2812;2805:12;2769:50;2838;2880:7;2871:6;2860:9;2856:22;2838:50;:::i;:::-;2828:60;;;2941:2;2930:9;2926:18;2913:32;-1:-1:-1;;;;;2960:8:125;2957:32;2954:52;;;3002:1;2999;2992:12;2954:52;3025;3069:7;3058:8;3047:9;3043:24;3025:52;:::i;:::-;3015:62;;;3127:2;3116:9;3112:18;3099:32;3140:31;3165:5;3140:31;:::i;:::-;3190:5;3180:15;;;2528:673;;;;;:::o;3206:226::-;3265:6;3318:2;3306:9;3297:7;3293:23;3289:32;3286:52;;;3334:1;3331;3324:12;3286:52;-1:-1:-1;3379:23:125;;3206:226;-1:-1:-1;3206:226:125:o;3645:367::-;3713:6;3721;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3829:9;3816:23;3848:31;3873:5;3848:31;:::i;:::-;3898:5;3976:2;3961:18;;;;3948:32;;-1:-1:-1;;;3645:367:125:o;4017:165::-;4084:20;;4144:12;4133:24;;4123:35;;4113:63;;4172:1;4169;4162:12;4187:1481;4244:5;4292:6;4280:9;4275:3;4271:19;4267:32;4264:52;;;4312:1;4309;4302:12;4264:52;4334:17;;:::i;:::-;4396:23;;4428:22;;4523:2;4508:18;;;4495:32;4543:14;;;4536:31;4640:2;4625:18;;;4612:32;4660:14;;;4653:31;4757:2;4742:18;;;4729:32;4777:14;;;4770:31;4874:3;4859:19;;;4846:33;4895:15;;;4888:32;4993:3;4978:19;;;4965:33;5014:15;;;5007:32;5112:3;5097:19;;;5084:33;5133:15;;;5126:32;5231:3;5216:19;;;5203:33;5252:15;;;5245:32;5350:3;5335:19;;;5322:33;5371:15;;;5364:32;5471:3;5456:19;;;5443:33;5492:15;;;5485:33;4325:26;-1:-1:-1;5551:38:125;5584:3;5569:19;;5551:38;:::i;:::-;5545:3;5538:5;5534:15;5527:63;5623:38;5656:3;5645:9;5641:19;5623:38;:::i;:::-;5617:3;5610:5;5606:15;5599:63;4187:1481;;;;:::o;5673:179::-;5740:20;;5800:26;5789:38;;5779:49;;5769:77;;5842:1;5839;5832:12;5857:585;5970:6;5978;5986;5994;6047:3;6035:9;6026:7;6022:23;6018:33;6015:53;;;6064:1;6061;6054:12;6015:53;6087:48;6127:7;6116:9;6087:48;:::i;:::-;6077:58;;6185:3;6174:9;6170:19;6157:33;6199:31;6224:5;6199:31;:::i;:::-;6249:5;-1:-1:-1;6306:3:125;6291:19;;6278:33;6320;6278;6320;:::i;:::-;6372:7;-1:-1:-1;6398:38:125;6431:3;6416:19;;6398:38;:::i;:::-;6388:48;;5857:585;;;;;;;:::o;6629:508::-;6706:6;6714;6722;6775:2;6763:9;6754:7;6750:23;6746:32;6743:52;;;6791:1;6788;6781:12;6743:52;6830:9;6817:23;6849:31;6874:5;6849:31;:::i;:::-;6899:5;-1:-1:-1;6956:2:125;6941:18;;6928:32;6969:33;6928:32;6969:33;:::i;:::-;6629:508;;7021:7;;-1:-1:-1;;;7101:2:125;7086:18;;;;7073:32;;6629:508::o;7142:277::-;7231:6;7284:2;7272:9;7263:7;7259:23;7255:32;7252:52;;;7300:1;7297;7290:12;7252:52;7339:9;7326:23;7358:31;7383:5;7358:31;:::i;7424:127::-;7485:10;7480:3;7476:20;7473:1;7466:31;7516:4;7513:1;7506:15;7540:4;7537:1;7530:15;7556:217;7644:1;7637:5;7634:12;7624:143;;7689:10;7684:3;7680:20;7677:1;7670:31;7724:4;7721:1;7714:15;7752:4;7749:1;7742:15;7778:249;7930:2;7915:18;;7942:45;7980:6;7942:45;:::i;:::-;7996:25;;;7778:249;:::o;8032:456::-;8109:6;8117;8170:2;8158:9;8149:7;8145:23;8141:32;8138:52;;;8186:1;8183;8176:12;8138:52;8225:9;8212:23;8244:31;8269:5;8244:31;:::i;:::-;8294:5;-1:-1:-1;8350:2:125;8335:18;;8322:32;-1:-1:-1;;;;;8366:30:125;;8363:50;;;8409:1;8406;8399:12;8363:50;8432;8474:7;8465:6;8454:9;8450:22;8432:50;:::i;:::-;8422:60;;;8032:456;;;;;:::o;8675:587::-;8746:6;8754;8807:2;8795:9;8786:7;8782:23;8778:32;8775:52;;;8823:1;8820;8813:12;8775:52;8863:9;8850:23;-1:-1:-1;;;;;8888:6:125;8885:30;8882:50;;;8928:1;8925;8918:12;8882:50;8951:22;;9004:4;8996:13;;8992:27;-1:-1:-1;8982:55:125;;9033:1;9030;9023:12;8982:55;9073:2;9060:16;-1:-1:-1;;;;;9091:6:125;9088:30;9085:50;;;9131:1;9128;9121:12;9085:50;9176:7;9171:2;9162:6;9158:2;9154:15;9150:24;9147:37;9144:57;;;9197:1;9194;9187:12;9144:57;9228:2;9220:11;;;;;9250:6;;-1:-1:-1;8675:587:125;-1:-1:-1;;;8675:587:125:o;9267:114::-;9355:1;9348:5;9345:12;9335:40;;9371:1;9368;9361:12;9386:451;9504:6;9512;9565:2;9553:9;9544:7;9540:23;9536:32;9533:52;;;9581:1;9578;9571:12;9533:52;9620:9;9607:23;9639:31;9664:5;9639:31;:::i;:::-;9689:5;-1:-1:-1;9746:2:125;9731:18;;9718:32;9759:46;9718:32;9759:46;:::i;:::-;9824:7;9814:17;;;9386:451;;;;;:::o;9842:159::-;9905:5;9950:3;9941:6;9936:3;9932:16;9928:26;9925:46;;;9967:1;9964;9957:12;10006:576;10149:6;10157;10165;10173;10226:3;10214:9;10205:7;10201:23;10197:33;10194:53;;;10243:1;10240;10233:12;10194:53;10266:57;10315:7;10304:9;10266:57;:::i;:::-;10256:67;;10342:58;10392:7;10386:3;10375:9;10371:19;10342:58;:::i;:::-;10332:68;;10450:3;10439:9;10435:19;10422:33;10464:31;10489:5;10464:31;:::i;:::-;10514:5;-1:-1:-1;10538:38:125;10571:3;10556:19;;10538:38;:::i;11041:602::-;11157:6;11165;11173;11181;11234:3;11222:9;11213:7;11209:23;11205:33;11202:53;;;11251:1;11248;11241:12;11202:53;11274:57;11323:7;11312:9;11274:57;:::i;:::-;11264:67;11400:3;11385:19;;11372:33;;-1:-1:-1;11502:3:125;11487:19;;11474:33;;11606:3;11591:19;11578:33;;-1:-1:-1;11041:602:125;-1:-1:-1;;;11041:602:125:o;12819:118::-;12905:5;12898:13;12891:21;12884:5;12881:32;12871:60;;12927:1;12924;12917:12;12942:382;13007:6;13015;13068:2;13056:9;13047:7;13043:23;13039:32;13036:52;;;13084:1;13081;13074:12;13036:52;13123:9;13110:23;13142:31;13167:5;13142:31;:::i;:::-;13192:5;-1:-1:-1;13249:2:125;13234:18;;13221:32;13262:30;13221:32;13262:30;:::i;13329:621::-;13426:6;13434;13487:2;13475:9;13466:7;13462:23;13458:32;13455:52;;;13503:1;13500;13493:12;13455:52;13543:9;13530:23;-1:-1:-1;;;;;13568:6:125;13565:30;13562:50;;;13608:1;13605;13598:12;13562:50;13631:22;;13684:4;13676:13;;13672:27;-1:-1:-1;13662:55:125;;13713:1;13710;13703:12;13662:55;13753:2;13740:16;-1:-1:-1;;;;;13771:6:125;13768:30;13765:50;;;13811:1;13808;13801:12;13765:50;13864:7;13859:2;13849:6;13846:1;13842:14;13838:2;13834:23;13830:32;13827:45;13824:65;;;13885:1;13882;13875:12;13955:780;14115:4;14163:2;14152:9;14148:18;14193:2;14182:9;14175:21;14216:6;14251;14245:13;14282:6;14274;14267:22;14320:2;14309:9;14305:18;14298:25;;14382:2;14372:6;14369:1;14365:14;14354:9;14350:30;14346:39;14332:53;;14420:2;14412:6;14408:15;14441:1;14451:255;14465:6;14462:1;14459:13;14451:255;;;14558:2;14554:7;14542:9;14534:6;14530:22;14526:36;14521:3;14514:49;14586:40;14619:6;14610;14604:13;14586:40;:::i;:::-;14576:50;-1:-1:-1;14661:2:125;14684:12;;;;14649:15;;;;;14487:1;14480:9;14451:255;;;-1:-1:-1;14723:6:125;;13955:780;-1:-1:-1;;;;;;13955:780:125:o;14740:718::-;14835:6;14843;14851;14859;14912:3;14900:9;14891:7;14887:23;14883:33;14880:53;;;14929:1;14926;14919:12;14880:53;14968:9;14955:23;14987:31;15012:5;14987:31;:::i;:::-;15037:5;-1:-1:-1;15094:2:125;15079:18;;15066:32;15107:33;15066:32;15107:33;:::i;:::-;15159:7;-1:-1:-1;15239:2:125;15224:18;;15211:32;;-1:-1:-1;15320:2:125;15305:18;;15292:32;-1:-1:-1;;;;;15336:30:125;;15333:50;;;15379:1;15376;15369:12;15333:50;15402;15444:7;15435:6;15424:9;15420:22;15402:50;:::i;:::-;15392:60;;;14740:718;;;;;;;:::o;15463:360::-;15561:6;15569;15622:3;15610:9;15601:7;15597:23;15593:33;15590:53;;;15639:1;15636;15629:12;15590:53;15662:57;15711:7;15700:9;15662:57;:::i;:::-;15652:67;15788:3;15773:19;;;;15760:33;;-1:-1:-1;;;15463:360:125:o;15828:1054::-;15956:6;15964;15972;15980;15988;15996;16004;16057:3;16045:9;16036:7;16032:23;16028:33;16025:53;;;16074:1;16071;16064:12;16025:53;16113:9;16100:23;16132:31;16157:5;16132:31;:::i;:::-;16182:5;-1:-1:-1;16260:2:125;16245:18;;16232:32;;-1:-1:-1;16342:2:125;16327:18;;16314:32;16355:33;16314:32;16355:33;:::i;:::-;16407:7;-1:-1:-1;16487:2:125;16472:18;;16459:32;;-1:-1:-1;16569:3:125;16554:19;;16541:33;16618:4;16605:18;;16593:31;;16583:59;;16638:1;16635;16628:12;16583:59;15828:1054;;;;-1:-1:-1;15828:1054:125;;;;16661:7;16741:3;16726:19;;16713:33;;-1:-1:-1;16845:3:125;16830:19;;;16817:33;;15828:1054;-1:-1:-1;;15828:1054:125:o;16887:667::-;16990:6;16998;17006;17014;17067:3;17055:9;17046:7;17042:23;17038:33;17035:53;;;17084:1;17081;17074:12;17035:53;17123:9;17110:23;17142:31;17167:5;17142:31;:::i;:::-;17192:5;-1:-1:-1;17270:2:125;17255:18;;17242:32;;-1:-1:-1;17352:2:125;17337:18;;17324:32;17365:33;17324:32;17365:33;:::i;:::-;17417:7;-1:-1:-1;17476:2:125;17461:18;;17448:32;17489:33;17448:32;17489:33;:::i;:::-;16887:667;;;;-1:-1:-1;16887:667:125;;-1:-1:-1;;16887:667:125:o;17791:388::-;17859:6;17867;17920:2;17908:9;17899:7;17895:23;17891:32;17888:52;;;17936:1;17933;17926:12;17888:52;17975:9;17962:23;17994:31;18019:5;17994:31;:::i;:::-;18044:5;-1:-1:-1;18101:2:125;18086:18;;18073:32;18114:33;18073:32;18114:33;:::i;18184:525::-;18278:6;18286;18294;18347:2;18335:9;18326:7;18322:23;18318:32;18315:52;;;18363:1;18360;18353:12;18315:52;18402:9;18389:23;18421:31;18446:5;18421:31;:::i;:::-;18471:5;-1:-1:-1;18549:2:125;18534:18;;18521:32;;-1:-1:-1;18631:2:125;18616:18;;18603:32;18644:33;18603:32;18644:33;:::i;18714:245::-;18803:6;18856:3;18844:9;18835:7;18831:23;18827:33;18824:53;;;18873:1;18870;18863:12;18824:53;18896:57;18945:7;18934:9;18896:57;:::i;18964:380::-;19043:1;19039:12;;;;19086;;;19107:61;;19161:4;19153:6;19149:17;19139:27;;19107:61;19214:2;19206:6;19203:14;19183:18;19180:38;19177:161;;19260:10;19255:3;19251:20;19248:1;19241:31;19295:4;19292:1;19285:15;19323:4;19320:1;19313:15;19563:277;19659:6;19712:2;19700:9;19691:7;19687:23;19683:32;19680:52;;;19728:1;19725;19718:12;19680:52;19760:9;19754:16;19779:31;19804:5;19779:31;:::i;19946:835::-;20028:5;20022:12;20017:3;20010:25;20084:4;20077:5;20073:16;20067:23;20060:4;20055:3;20051:14;20044:47;20140:4;20133:5;20129:16;20123:23;20116:4;20111:3;20107:14;20100:47;20196:4;20189:5;20185:16;20179:23;20172:4;20167:3;20163:14;20156:47;20252:4;20245:5;20241:16;20235:23;20228:4;20223:3;20219:14;20212:47;20308:4;20301:5;20297:16;20291:23;20284:4;20279:3;20275:14;20268:47;20364:4;20357:5;20353:16;20347:23;20340:4;20335:3;20331:14;20324:47;20420:4;20413:5;20409:16;20403:23;20396:4;20391:3;20387:14;20380:47;20478:6;20471:5;20467:18;20461:25;20452:6;20447:3;20443:16;20436:51;20538:6;20531:5;20527:18;20521:25;20512:6;20507:3;20503:16;20496:51;20593:6;20586:5;20582:18;20576:25;20610:49;20651:6;20646:3;20642:16;20628:12;19921;19910:24;19898:37;;19845:96;20610:49;;20707:6;20700:5;20696:18;20690:25;20724:51;20767:6;20762:3;20758:16;20742:14;19921:12;19910:24;19898:37;;19845:96;20786:256;20976:3;20961:19;;20989:47;20965:9;21018:6;20989:47;:::i;21047:419::-;21160:6;21168;21221:2;21209:9;21200:7;21196:23;21192:32;21189:52;;;21237:1;21234;21227:12;21189:52;21269:9;21263:16;21288:31;21313:5;21288:31;:::i;:::-;21388:2;21373:18;;21367:25;21338:5;;-1:-1:-1;21401:33:125;21367:25;21401:33;:::i;22229:267::-;22318:6;22313:3;22306:19;22370:6;22363:5;22356:4;22351:3;22347:14;22334:43;-1:-1:-1;22422:1:125;22397:16;;;22415:4;22393:27;;;22386:38;;;;22478:2;22457:15;;;-1:-1:-1;;22453:29:125;22444:39;;;22440:50;;22229:267::o;22501:1063::-;22705:2;22694:9;22687:21;22668:4;22728:1;22761:6;22755:13;22791:36;22817:9;22791:36;:::i;:::-;22863:6;22858:2;22847:9;22843:18;22836:34;22901:1;22890:9;22886:17;22917:1;22912:158;;;;23084:1;23079:357;;;;22879:557;;22912:158;22979:3;22975:8;22964:9;22960:24;22955:2;22944:9;22940:18;22933:52;23057:2;23045:6;23038:14;23031:22;23028:1;23024:30;23013:9;23009:46;23005:55;22998:62;;22912:158;;23079:357;23110:6;23107:1;23100:17;23158:4;23155:1;23145:18;23185:1;23199:181;23213:6;23210:1;23207:13;23199:181;;;23308:14;;23284:17;;;23303:2;23280:26;23273:50;23364:1;23351:15;;;;23235:4;23228:12;23199:181;;;23404:17;;23423:2;23400:26;;-1:-1:-1;;22879:557:125;;;;23483:9;23478:3;23474:19;23467:4;23456:9;23452:20;23445:49;23511:47;23554:3;23546:6;23538;23511:47;:::i;:::-;23503:55;22501:1063;-1:-1:-1;;;;;;22501:1063:125:o;23569:518::-;23671:2;23666:3;23663:11;23660:421;;;23707:5;23704:1;23697:16;23751:4;23748:1;23738:18;23821:2;23809:10;23805:19;23802:1;23798:27;23792:4;23788:38;23857:4;23845:10;23842:20;23839:47;;;-1:-1:-1;23880:4:125;23839:47;23935:2;23930:3;23926:12;23923:1;23919:20;23913:4;23909:31;23899:41;;23990:81;24008:2;24001:5;23998:13;23990:81;;;24067:1;24053:16;;24034:1;24023:13;23990:81;;24263:1198;-1:-1:-1;;;;;24382:3:125;24379:27;24376:53;;;24409:18;;:::i;:::-;24438:94;24528:3;24488:38;24520:4;24514:11;24488:38;:::i;:::-;24482:4;24438:94;:::i;:::-;24558:1;24583:2;24578:3;24575:11;24600:1;24595:608;;;;25247:1;25264:3;25261:93;;;-1:-1:-1;25320:19:125;;;25307:33;25261:93;-1:-1:-1;;24220:1:125;24216:11;;;24212:24;24208:29;24198:40;24244:1;24240:11;;;24195:57;25367:78;;24568:887;;24595:608;22176:1;22169:14;;;22213:4;22200:18;;-1:-1:-1;;24631:17:125;;;24746:229;24760:7;24757:1;24754:14;24746:229;;;24849:19;;;24836:33;24821:49;;24956:4;24941:20;;;;24909:1;24897:14;;;;24776:12;24746:229;;;24750:3;25003;24994:7;24991:16;24988:159;;;25127:1;25123:6;25117:3;25111;25108:1;25104:11;25100:21;25096:34;25092:39;25079:9;25074:3;25070:19;25057:33;25053:79;25045:6;25038:95;24988:159;;;25190:1;25184:3;25181:1;25177:11;25173:19;25167:4;25160:33;24568:887;;24263:1198;;;:::o;25466:390::-;25662:2;25647:18;;25674:45;25712:6;25674:45;:::i;:::-;25746:6;25735:9;25728:25;25762:45;25800:6;25762:45;:::i;:::-;25843:6;25838:2;25827:9;25823:18;25816:34;25466:390;;;;;:::o;25861:234::-;25948:6;26001:3;25989:9;25980:7;25976:23;25972:33;25969:53;;;26018:1;26015;26008:12;25969:53;26041:48;26081:7;26070:9;26041:48;:::i;26100:184::-;26158:6;26211:2;26199:9;26190:7;26186:23;26182:32;26179:52;;;26227:1;26224;26217:12;26179:52;26250:28;26268:9;26250:28;:::i;26289:1461::-;26398:19;;26426:20;;26515:4;26504:16;;;26491:30;26537:14;;;26530:31;26630:4;26619:16;;;26606:30;26652:14;;;26645:31;26745:4;26734:16;;;26721:30;26767:14;;;26760:31;26860:4;26849:16;;;26836:30;26882:14;;;26875:31;26975:4;26964:16;;;26951:30;26997:14;;;26990:31;27090:4;27079:16;;;27066:30;27112:14;;;27105:31;27205:4;27194:16;;;27181:30;27227:14;;;27220:31;27320:6;27309:18;;;27296:32;27344:16;;;27337:33;27441:6;27430:18;;;27417:32;27465:16;;;27458:34;27521:37;27550:6;27539:18;;27521:37;:::i;:::-;19921:12;19910:24;27608:6;27599:16;;19898:37;27647;27676:6;27665:18;;27647:37;:::i;:::-;19921:12;19910:24;;27736:6;27727:16;;19898:37;5834:132:47;;;:::o;27755:417:125:-;28031:3;28016:19;;28044:56;28020:9;28082:6;28044:56;:::i;:::-;28109:57;28161:3;28150:9;28146:19;28138:6;28109:57;:::i;28177:127::-;28238:10;28233:3;28229:20;28226:1;28219:31;28269:4;28266:1;28259:15;28293:4;28290:1;28283:15;28309:128;28376:9;;;28397:11;;;28394:37;;;28411:18;;:::i;28719:202::-;-1:-1:-1;;;;;;28881:33:125;;;;28863:52;;28851:2;28836:18;;28719:202::o;28926:245::-;28993:6;29046:2;29034:9;29025:7;29021:23;29017:32;29014:52;;;29062:1;29059;29052:12;29014:52;29094:9;29088:16;29113:28;29135:5;29113:28;:::i;29176:374::-;-1:-1:-1;;;;;29414:32:125;;29396:51;;29384:2;29369:18;;29456:45;29494:6;29456:45;:::i;29828:483::-;30104:3;30089:19;;30117:56;30093:9;30155:6;30117:56;:::i;:::-;30210:6;30204:3;30193:9;30189:19;30182:35;30254:6;30248:3;30237:9;30233:19;30226:35;30298:6;30292:3;30281:9;30277:19;30270:35;29828:483;;;;;;;:::o;30316:581::-;30620:3;30605:19;;30633:56;30609:9;30671:6;30633:56;:::i;:::-;30720:3;30705:19;;30698:35;;;;30764:3;30749:19;;30742:35;;;;30808:3;30793:19;;30786:35;;;;-1:-1:-1;;;;;30858:32:125;30852:3;30837:19;;;30830:61;30316:581;;-1:-1:-1;30316:581:125:o;31226:184::-;31296:6;31349:2;31337:9;31328:7;31324:23;31320:32;31317:52;;;31365:1;31362;31355:12;31317:52;-1:-1:-1;31388:16:125;;31226:184;-1:-1:-1;31226:184:125:o;31415:318::-;31593:2;31578:18;;31605:45;31643:6;31605:45;:::i;:::-;31659:25;;;31715:2;31700:18;31693:34;31415:318;:::o;31738:359::-;31916:2;31901:18;;31928:45;31966:6;31928:45;:::i;:::-;31982:25;;;-1:-1:-1;;;;;32043:47:125;;;;32038:2;32023:18;;;32016:75;31738:359;:::o;32773:127::-;32834:10;32829:3;32825:20;32822:1;32815:31;32865:4;32862:1;32855:15;32889:4;32886:1;32879:15;32905:521;32982:4;32988:6;33048:11;33035:25;33142:2;33138:7;33127:8;33111:14;33107:29;33103:43;33083:18;33079:68;33069:96;;33161:1;33158;33151:12;33069:96;33188:33;;33240:20;;;-1:-1:-1;;;;;;33272:30:125;;33269:50;;;33315:1;33312;33305:12;33269:50;33348:4;33336:17;;-1:-1:-1;33379:14:125;33375:27;;;33365:38;;33362:58;;;33416:1;33413;33406:12;33362:58;32905:521;;;;;:::o;33431:211::-;33472:3;33510:5;33504:12;33554:6;33547:4;33540:5;33536:16;33531:3;33525:36;33616:1;33580:16;;33605:13;;;-1:-1:-1;33580:16:125;;33431:211;-1:-1:-1;33431:211:125:o;33647:343::-;33876:6;33868;33863:3;33850:33;33832:3;33911:6;33906:3;33902:16;33938:1;33934:2;33927:13;33956:28;33981:2;33973:6;33956:28;:::i;33995:265::-;34174:3;34199:55;34224:29;34249:3;34241:6;34224:29;:::i;:::-;34216:6;34199:55;:::i;36030:125::-;36095:9;;;36116:10;;;36113:36;;;36129:18;;:::i;36160:240::-;-1:-1:-1;;;;;36229:42:125;;;36273;;;36225:91;;36328:43;;36325:69;;;36374:18;;:::i;36405:243::-;-1:-1:-1;;;;;36520:42:125;;;36476;;;36472:91;;36575:44;;36572:70;;;36622:18;;:::i;37570:249::-;37639:6;37692:2;37680:9;37671:7;37667:23;37663:32;37660:52;;;37708:1;37705;37698:12;37660:52;37740:9;37734:16;37759:30;37783:5;37759:30;:::i;38688:485::-;-1:-1:-1;;;;;38919:32:125;;;38901:51;;38988:32;;38983:2;38968:18;;38961:60;39052:2;39037:18;;39030:34;;;39100:3;39095:2;39080:18;;39073:31;;;-1:-1:-1;;39121:46:125;;39147:19;;39139:6;39121:46;:::i;39178:425::-;-1:-1:-1;;;;;39455:32:125;;39437:51;;39424:3;39409:19;;39497:56;39549:2;39534:18;;39526:6;39497:56;:::i;:::-;39590:6;39584:3;39573:9;39569:19;39562:35;39178:425;;;;;;:::o;40421:1299::-;40547:3;40541:10;-1:-1:-1;;;;;40566:6:125;40563:30;40560:56;;;40596:18;;:::i;:::-;40625:97;40715:6;40675:38;40707:4;40701:11;40675:38;:::i;:::-;40669:4;40625:97;:::i;:::-;40771:4;40802:2;40791:14;;40819:1;40814:649;;;;41507:1;41524:6;41521:89;;;-1:-1:-1;41576:19:125;;;41570:26;41521:89;-1:-1:-1;;24220:1:125;24216:11;;;24212:24;24208:29;24198:40;24244:1;24240:11;;;24195:57;41623:81;;40784:930;;40814:649;22176:1;22169:14;;;22213:4;22200:18;;-1:-1:-1;;40850:20:125;;;40968:222;40982:7;40979:1;40976:14;40968:222;;;41064:19;;;41058:26;41043:42;;41171:4;41156:20;;;;41124:1;41112:14;;;;40998:12;40968:222;;;40972:3;41218:6;41209:7;41206:19;41203:201;;;41279:19;;;41273:26;-1:-1:-1;;41362:1:125;41358:14;;;41374:3;41354:24;41350:37;41346:42;41331:58;41316:74;;41203:201;-1:-1:-1;;;;41450:1:125;41434:14;;;41430:22;41417:36;;-1:-1:-1;40421:1299:125:o"},"methodIdentifiers":{"UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","addComponent(address,uint8)":"6b8734e7","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","cancelPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)":"6f520b73","changeComponentStatus(address,uint8)":"5fcbf445","currency()":"e5a6b10f","deposit(address,uint256,address)":"f45346dc","depositWithPermit(address,uint256,address,uint256,uint8,bytes32,bytes32)":"de27010a","expirePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"f720bbbf","getApproved(uint256)":"081812fc","getComponentStatus(address)":"33d6157a","getExposure(address)":"9e2d8922","getPolicyHash(uint256)":"792da09e","initialize(string,string,address)":"077f224a","isActive(uint256)":"82afd23b","isApprovedForAll(address,address)":"e985e9c5","multicall(bytes[])":"ac9650d8","name()":"06fdde03","newPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,address,uint96)":"0d100acb","ownerOf(uint256)":"6352211e","pause()":"8456cb59","paused()":"5c975abb","proxiableUUID()":"52d1902d","removeComponent(address)":"6f86c897","replacePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,uint96)":"663d8337","resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)":"bd644c56","safeTransferFrom(address,address,uint256)":"42842e0e","safeTransferFrom(address,address,uint256,bytes)":"b88d4fde","setApprovalForAll(address,bool)":"a22cb465","setBaseURI(string)":"55f804b3","setExposureLimit(address,uint256)":"9760905e","setTreasury(address)":"f0f44260","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","tokenURI(uint256)":"c87b56dd","transferFrom(address,address,uint256)":"23b872dd","treasury()":"61d027b3","unpause()":"3f4ba83a","upgradeToAndCall(address,bytes)":"4f1ef286","withdraw(address,uint256,address,address)":"dfcd412e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"currency_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ComponentAlreadyInThePool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"enum PolicyPool.ComponentKind\",\"name\":\"kind\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"ComponentInUseCannotRemove\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ComponentMustBeActiveOrDeprecated\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ComponentNotDeprecated\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ComponentNotFound\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ComponentNotFoundOrNotActive\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ComponentNotLinkedToThisPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"contract IPolicyPoolComponent\",\"name\":\"component\",\"type\":\"address\"},{\"internalType\":\"enum PolicyPool.ComponentKind\",\"name\":\"expectedKind\",\"type\":\"uint8\"}],\"name\":\"ComponentNotTheRightKind\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"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\"},{\"inputs\":[],\"name\":\"EnforcedPause\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ExpectedPause\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint128\",\"name\":\"activeExposure\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"exposureLimit\",\"type\":\"uint128\"}],\"name\":\"ExposureLimitExceeded\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidComponentStatus\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"response\",\"type\":\"bytes4\"}],\"name\":\"InvalidNotificationResponse\",\"type\":\"error\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policyToCancel\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"name\":\"InvalidPolicyCancellation\",\"type\":\"error\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"newPolicy\",\"type\":\"tuple\"}],\"name\":\"InvalidPolicyReplacement\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoEmptyName\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoEmptySymbol\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroAccess\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroCurrency\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroTreasury\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OnlyRiskModuleAllowed\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"policyPayout\",\"type\":\"uint256\"}],\"name\":\"PayoutExceedsLimit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"PolicyAlreadyExists\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"PolicyAlreadyExpired\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint256\",\"name\":\"now\",\"type\":\"uint256\"}],\"name\":\"PolicyNotExpired\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"PolicyNotFound\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangeCurrency\",\"type\":\"error\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"ZeroHash\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"oldBaseURI\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"newBaseURI\",\"type\":\"string\"}],\"name\":\"BaseURIChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IPolicyPoolComponent\",\"name\":\"component\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"enum PolicyPool.ComponentKind\",\"name\":\"kind\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"enum PolicyPool.ComponentStatus\",\"name\":\"newStatus\",\"type\":\"uint8\"}],\"name\":\"ComponentStatusChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"contract IPolicyHolder\",\"name\":\"holder\",\"type\":\"address\"}],\"name\":\"ExpirationNotificationFailed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"oldLimit\",\"type\":\"uint128\"},{\"indexed\":false,\"internalType\":\"uint128\",\"name\":\"newLimit\",\"type\":\"uint128\"}],\"name\":\"ExposureLimitChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"indexed\":false,\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"NewPolicy\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"cancelledPolicyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"name\":\"PolicyCancelled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"oldPolicyId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"newPolicyId\",\"type\":\"uint256\"}],\"name\":\"PolicyReplaced\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"PolicyResolved\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"oldTreasury\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newTreasury\",\"type\":\"address\"}],\"name\":\"TreasuryChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IPolicyPoolComponent\",\"name\":\"component\",\"type\":\"address\"},{\"internalType\":\"enum PolicyPool.ComponentKind\",\"name\":\"kind\",\"type\":\"uint8\"}],\"name\":\"addComponent\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policyToCancel\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"name\":\"cancelPolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IPolicyPoolComponent\",\"name\":\"component\",\"type\":\"address\"},{\"internalType\":\"enum PolicyPool.ComponentStatus\",\"name\":\"newStatus\",\"type\":\"uint8\"}],\"name\":\"changeComponentStatus\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"depositWithPermit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"expirePolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IPolicyPoolComponent\",\"name\":\"component\",\"type\":\"address\"}],\"name\":\"getComponentStatus\",\"outputs\":[{\"internalType\":\"enum PolicyPool.ComponentStatus\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IRiskModule\",\"name\":\"rm\",\"type\":\"address\"}],\"name\":\"getExposure\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"active\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"limit\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"getPolicyHash\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"address\",\"name\":\"treasury_\",\"type\":\"address\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"isActive\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"address\",\"name\":\"payer\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"policyHolder\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"}],\"name\":\"newPolicy\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IPolicyPoolComponent\",\"name\":\"component\",\"type\":\"address\"}],\"name\":\"removeComponent\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"newPolicy_\",\"type\":\"tuple\"},{\"internalType\":\"address\",\"name\":\"payer\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"}],\"name\":\"replacePolicy\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"resolvePolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"nftBaseURI_\",\"type\":\"string\"}],\"name\":\"setBaseURI\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IRiskModule\",\"name\":\"rm\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"newLimit\",\"type\":\"uint256\"}],\"name\":\"setExposureLimit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"treasury_\",\"type\":\"address\"}],\"name\":\"setTreasury\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"treasury\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unpause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amountWithdrawn\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"There's a single instance of PolicyPool contract for a given deployment of the protocol. It stores the registry of components (eTokens, PremiumsAccounts, and RiskModules). It also tracks the active exposure and exposure limit per risk module. This is also the contract that receives and sends the underlying asset (currency, typically USDC). The currency spending approvals should be done to this protocol for deposits or premium payments. This contract implements the ERC721 standard, because it mints and NFT for each policy created. The property of the NFT represents the one that will receive the payout. The active policies are tracked in _policies as hashes, but for gas optimization we just store the hash of the policy struct, and the struct needs to be stored off-chain and provided on every subsequent call.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ComponentInUseCannotRemove(uint8,uint256)\":[{\"details\":\"The \\\"in use\\\" definition can change from one component to the other. For eToken in use means `totalSupply() != 0`. For PremiumsAccount means `purePremiums() != 0`. For RiskModule means `activeExposure() != 0`.\"}],\"ComponentNotTheRightKind(address,uint8)\":[{\"details\":\"It might happen if a component declared as ComponentKind.eToken doesn't support the IEToken interface (or similar) or when in a given operation we expect a component to be a risk module and the stored kind is different.\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"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-721. 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.\"}}],\"EnforcedPause()\":[{\"details\":\"The operation failed because the contract is paused.\"}],\"ExpectedPause()\":[{\"details\":\"The operation failed because the contract is not paused.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"InvalidPolicyCancellation((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)\":[{\"details\":\"The refunds amounts can never exceed the original premium components.\",\"params\":{\"jrCocRefund\":\"The amount to refund from jrCoc charged\",\"policyToCancel\":\"The data of the policy being cancelled\",\"purePremiumRefund\":\"The amount to refund from pure premium charged\",\"srCocRefund\":\"The amount to refund from srCoc charged\"}}],\"InvalidPolicyReplacement((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":[{\"details\":\"This could occur if the policies have a different start, or if any of the premium components of the      newPolicy are lower than the same component of the original policy.\",\"params\":{\"newPolicy\":\"The proposed replacement policy data\",\"oldPolicy\":\"The original policy data\"}}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"PolicyNotExpired(uint256,uint40,uint256)\":[{\"params\":{\"expiration\":\"The timestamp when the policy expires\",\"now\":\"The current block timestamp\",\"policyId\":\"The ID of the policy that is not yet expired\"}}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when `owner` enables `approved` to manage the `tokenId` token.\"},\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\"},\"BaseURIChanged(string,string)\":{\"params\":{\"newBaseURI\":\"The baseURI after the change\",\"oldBaseURI\":\"The baseURI before the change\"}},\"ComponentStatusChanged(address,uint8,uint8)\":{\"params\":{\"component\":\"The address of the component, it can be an {EToken}, {RiskModule} or {PremiumsAccount}\",\"kind\":\"Value indicating the kind of component. See {ComponentKind}\",\"newStatus\":\"The status of the component after the operation. See {ComponentStatus}\"}},\"Deposit(address,address,address,uint256)\":{\"params\":{\"amount\":\"Amount in `currency()` paid for the eTokens (equal to the amount of eTokens received)\",\"eToken\":\"The eToken receiving the funds\",\"owner\":\"The user that will receive the minted eTokens\",\"sender\":\"The sender of the funds (the user calling `deposit` or `depositWithPermit`)\"}},\"ExpirationNotificationFailed(uint256,address)\":{\"params\":{\"holder\":\"The address of the contract that owns the policy\",\"policyId\":\"The id of the policy being expired\"}},\"ExposureLimitChanged(address,uint128,uint128)\":{\"params\":{\"newLimit\":\"Exposure limit after the change\",\"oldLimit\":\"Exposure limit before the change\",\"riskModule\":\"The risk module whose limit will be changed\"}},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"NewPolicy(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"details\":\"Contains all the data about the policy that is later required for doing operations with the policy like      resolution or expiration.\",\"params\":{\"policy\":\"The {Policy-PolicyData} struct with all the immutable fields of the policy.\",\"riskModule\":\"The risk module that created the policy\"}},\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"PolicyCancelled(address,uint256,uint256,uint256,uint256)\":{\"details\":\"After this, the policy is no longer active. The refund amounts are transferred to the policy holder.\",\"params\":{\"cancelledPolicyId\":\"The id of the cancelled policy.\",\"jrCocRefund\":\"The amount of Jr CoC refunded\",\"purePremiumRefund\":\"The amount of pure premium refunded\",\"riskModule\":\"The risk module that created the policy\",\"srCocRefund\":\"The amount of Sr CoC refunded\"}},\"PolicyReplaced(address,uint256,uint256)\":{\"details\":\"The event contains only the id of the replacement policy, the full data is available in the NewPolicy event.\",\"params\":{\"newPolicyId\":\"The id of the new policy.\",\"oldPolicyId\":\"The id of the replaced policy.\",\"riskModule\":\"The risk module that created the policy\"}},\"PolicyResolved(address,uint256,uint256)\":{\"details\":\"If the policy expired, the `payout` is 0, otherwise is the amount transferred to the policyholder.\",\"params\":{\"payout\":\"The payout that has been paid to the policy holder. 0 when the policy expired.\",\"policyId\":\"The unique id of the policy\",\"riskModule\":\"The risk module where that created the policy initially.\"}},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"},\"TreasuryChanged(address,address)\":{\"params\":{\"newTreasury\":\"The address of the treasury after the change\",\"oldTreasury\":\"The address of the treasury before the change\"}},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"},\"Withdraw(address,address,address,address,uint256)\":{\"params\":{\"amount\":\"Amount in `currency()` that will be received by `receiver`.\",\"eToken\":\"The eToken where the withdrawal will be done\",\"owner\":\"The owner of the burned eTokens\",\"receiver\":\"The user that receives the resulting funds (`currency()`)\",\"sender\":\"The user calling the withdraw method. Must be the owner or have spending approval from it.\"}}},\"kind\":\"dev\",\"methods\":{\"addComponent(address,uint8)\":{\"custom:emits\":\"ComponentStatusChanged with status active.\",\"custom:throws\":\"ComponentNotTheRightKind When there's a mismatch between the specified kind and supported interface\",\"details\":\"The component status will be `active`.\",\"params\":{\"component\":\"The address of component contract. Must be an {EToken}, {RiskModule} or {PremiumsAccount} linked to this specific {PolicyPool} and matching the `kind` specified in the next paramter.\",\"kind\":\"The type of component to be added.\"}},\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"cancelPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)\":{\"details\":\"After this call the policy is not claimable and funds are unlocked\",\"params\":{\"jrCocRefund\":\"The amount to refund from jrCoc (<= policyToCancel.jrCoc)\",\"policyToCancel\":\"A policy created previously and not expired, that will be cancelled\",\"purePremiumRefund\":\"The amount to refund from pure premiums (<= policyToCancel.purePremium)\",\"srCocRefund\":\"The amount to refund from srCoc (<= policyToCancel.jrCoc)\"}},\"changeComponentStatus(address,uint8)\":{\"custom:emits\":\"ComponentStatusChanged with the new status.\",\"custom:throws\":\"InvalidComponentStatus() when newStatus is inactive (use removeComponent() instead)\",\"params\":{\"component\":\"The address of component contract. Must be a component added before.\",\"newStatus\":\"The new status, must be either `active`, `deprecated` or `suspended`.\"}},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"deposit(address,uint256,address)\":{\"details\":\"Forwards the call to {EToken-deposit}, after transferring the funds.      The user will receive etokens for the same amount deposited.\",\"params\":{\"amount\":\"The amount to deposit\",\"eToken\":\"The address of the eToken to which the user wants to provide liquidity\",\"receiver\":\"The user that will receive the minted tokens\"}},\"depositWithPermit(address,uint256,address,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Forwards the call to {EToken-deposit}, after transferring the funds.      The user will receive etokens for the same amount deposited. EIP-2612 compatible version, allows sending a      signed permit in the same operation.\",\"params\":{\"amount\":\"The amount to deposit\",\"deadline\":\"The deadline of the permit\",\"eToken\":\"The address of the eToken to which the user wants to provide liquidity\",\"r\":\"Component of the secp256k1 signature\",\"receiver\":\"The user that will receive the minted tokens\",\"s\":\"Component of the secp256k1 signature\",\"v\":\"Component of the secp256k1 signature\"}},\"expirePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"details\":\"Resolves a policy with a payout 0, unlocking the solvency. Can be called by anyone, but only after      `Policy.expiration`.\",\"params\":{\"policy\":\"A policy previously created with `newPolicy`\"}},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"getComponentStatus(address)\":{\"params\":{\"component\":\"The address of the component\"},\"returns\":{\"_0\":\"The status of the component. See {ComponentStatus}\"}},\"getExposure(address)\":{\"details\":\"Returns both the active exposure (current cumulative losses) and the configured exposure limit for the given risk module.\",\"params\":{\"rm\":\"The risk module interface to query exposure data for\"},\"returns\":{\"active\":\" The current active exposure (cumulative losses) for the risk module\",\"limit\":\"  The configured maximum exposure limit for the risk module\"}},\"getPolicyHash(uint256)\":{\"details\":\"Returns `bytes32(0)` if the policy isn't active.\",\"params\":{\"policyId\":\"The id of the policy queried\"},\"returns\":{\"_0\":\"Returns the hash of a given policy id\"}},\"initialize(string,string,address)\":{\"details\":\"Initializes a Policy Pool\",\"params\":{\"name_\":\"The name of the ERC721 token.\",\"symbol_\":\"The symbol of the ERC721 token.\",\"treasury_\":\"The address of the treasury that will receive the protocol fees.\"}},\"isActive(uint256)\":{\"details\":\"A policy is active when it's still in the PolicyPool, not yet resolved or expired.      Be aware that a policy might be active but the `block.timestamp` might be after the expiration date, so it      can't be triggered with a payout.\",\"params\":{\"policyId\":\"The id of the policy queried\"},\"returns\":{\"_0\":\"Whether the policy is active or not\"}},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"multicall(bytes[])\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Receives and executes a batch of function calls on this contract.\"},\"name()\":{\"details\":\"Returns the token collection name.\"},\"newPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,address,uint96)\":{\"details\":\"It charges the premium and distributes it to the different parties (PremiumsAccount, ETokens, treasury)\",\"params\":{\"internalId\":\"A unique id within the RiskModule, that will be used to compute the policy id\",\"payer\":\"The address that will pay for the premium\",\"policy\":\"A policy created with {Policy-initialize}\",\"policyHolder\":\"The address of the policy holder\"},\"returns\":{\"_0\":\"The policy id, identifying the NFT and the policy\"}},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"pause()\":{\"details\":\"When the contract is paused, several operations are rejected: deposits, withdrawals, new policies, policy resolution and expiration, nft transfers.\"},\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"removeComponent(address)\":{\"custom:emits\":\"ComponentStatusChanged with status inactive.\",\"details\":\"The component needs to be in `deprecated` status before doing this operation.\",\"params\":{\"component\":\"The address of component contract. Must be a component added before.\"}},\"replacePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,uint96)\":{\"details\":\"After this call, the oldPolicy is no longer active and a new policy is created. Diferencial changes to      premiums and locked SCR.\",\"params\":{\"internalId\":\"A unique id within the RiskModule, that will be used to compute the policy id\",\"newPolicy_\":\"A policy created with {Policy-initialize}\",\"oldPolicy\":\"A policy created previously and not expired\",\"payer\":\"The address that will pay for the premium difference\"},\"returns\":{\"_0\":\"The policy id, identifying the NFT and the policy\"}},\"resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"details\":\"After this call the policy is no longer active and the funds have been unlocked.\",\"params\":{\"payout\":\"The amount to pay to the policyholder\",\"policy\":\"A policy previously created with `newPolicy`\"}},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC-721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or   {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the address zero. Emits an {ApprovalForAll} event.\"},\"setBaseURI(string)\":{\"custom:emits\":\"BaseURIChanged With the new and old URIs\"},\"setExposureLimit(address,uint256)\":{\"custom:emits\":\"ExposureLimitChanged with parameters: (risk module, old limit, new limit)\",\"custom:throws\":\"ExposureLimitExceeded if the new limit is less than the current active exposure\",\"details\":\"This function allows updating the exposure limit for a risk module.          The new limit must be greater than or equal to the current active exposure.\",\"params\":{\"newLimit\":\"The new exposure limit to set (will be converted to uint128)\",\"rm\":\"The risk module interface for which to update the exposure limit\"}},\"setTreasury(address)\":{\"custom:emits\":\"TreasuryChanged with the previous and current treasury\"},\"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.\"},\"symbol()\":{\"details\":\"Returns the token collection symbol.\"},\"tokenURI(uint256)\":{\"details\":\"Returns the Uniform Resource Identifier (URI) for `tokenId` token.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must understand this adds an external call which potentially creates a reentrancy vulnerability. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"},\"unpause()\":{\"details\":\"All the operations disabled when the contract was paused are re-enabled.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"},\"withdraw(address,uint256,address,address)\":{\"details\":\"Forwards the call to {EToken-withdraw}. `amount` of eTokens will be burned and the user will receive the      same amount in `currency()`.\",\"params\":{\"amount\":\"The amount to withdraw. If equal to type(uint256).max, means full withdrawal.               If the balance is not enough or can't be withdrawn (locked as SCR), it withdraws               as much as it can, but doesn't fails.\",\"eToken\":\"The address of the eToken from where the user wants to withdraw liquidity\",\"owner\":\"The user that owns the eTokens (must be msg.sender or have allowance)\",\"receiver\":\"The user that will receive the resulting `currency()`\"},\"returns\":{\"amountWithdrawn\":\"Returns the actual amount withdrawn.\"}}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"},\"_currency\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"},\"_policies\":{\"details\":\"It just saves the hash of the policies, the full {Policy-PolicyData} struct has to be sent for each operation (hash is used to verify).\"}},\"title\":\"Ensuro PolicyPool contract\",\"version\":1},\"userdoc\":{\"errors\":{\"ComponentAlreadyInThePool()\":[{\"notice\":\"Error when trying to add a component that was already added to the PolicyPool\"}],\"ComponentInUseCannotRemove(uint8,uint256)\":[{\"notice\":\"Error when trying to remove a component that is still in use.\"}],\"ComponentMustBeActiveOrDeprecated()\":[{\"notice\":\"Error when a component is not active or deprecated. Happens on some operations like eToken withdrawals or policy resolutions that accept the component might be active or deprecated and isn't on any of those states.\"}],\"ComponentNotDeprecated()\":[{\"notice\":\"Error when a component is not deprecated for the operation (see `removeComponent`), when it must.\"}],\"ComponentNotFound()\":[{\"notice\":\"Error when a component is not found in the pool (status = 0 = inactive)\"}],\"ComponentNotFoundOrNotActive()\":[{\"notice\":\"Error when a component is not found in the pool or is not active (status != active)\"}],\"ComponentNotLinkedToThisPool()\":[{\"notice\":\"Error when trying to add a component that isn't linked to this pool (`.policyPool() != this`)\"}],\"ComponentNotTheRightKind(address,uint8)\":[{\"notice\":\"Raised when a component is not of the right kind\"}],\"ExposureLimitExceeded(uint128,uint128)\":[{\"notice\":\"Thrown when an action would cause the active exposure to exceed the configured limit\"}],\"InvalidComponentStatus()\":[{\"notice\":\"Thrown when attempting to set a component status to `inactive` via changeComponentStatus, use removeComponent() instead.\"}],\"InvalidNotificationResponse(bytes4)\":[{\"notice\":\"Raised when IPolicyHolder doesn't return the expected selector answer when notified of policy payout, replacement or cancellation.\"}],\"InvalidPolicyCancellation((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)\":[{\"notice\":\"Thrown when attempting to cancel a policy with invalid refunds\"}],\"InvalidPolicyReplacement((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":[{\"notice\":\"Thrown when attempting to replace a policy with an invalid replacement\"}],\"InvalidReceiver(address)\":[{\"notice\":\"Thrown when an invalid receiver address (address(0)) is provided as received of deposit or withdraw\"}],\"NoEmptyName()\":[{\"notice\":\"Initialization error when empty name for the ERC721 is sent\"}],\"NoEmptySymbol()\":[{\"notice\":\"Initialization error when empty symbol for the ERC721 is sent\"}],\"NoZeroAccess()\":[{\"notice\":\"Constructor error when address(0) is sent as `access()`\"}],\"NoZeroCurrency()\":[{\"notice\":\"Constructor error when address(0) is sent as `currency()`\"}],\"NoZeroTreasury()\":[{\"notice\":\"Constructor error (or setTreasury) when address(0) is sent as `treasury()`\"}],\"OnlyRiskModuleAllowed()\":[{\"notice\":\"Error when a method intented to be called by riskModule (and by policy's risk module) is called by someone else.\"}],\"PayoutExceedsLimit(uint256,uint256)\":[{\"notice\":\"Thrown when a requested payout exceeds the policy's maximum payout limit\"}],\"PolicyAlreadyExists(uint256)\":[{\"notice\":\"Thrown when attempting to create a policy with an ID that already exists\"}],\"PolicyAlreadyExpired(uint256)\":[{\"notice\":\"Thrown when attempting to process an action (other than expiration) on a policy after its expiration date\"}],\"PolicyNotExpired(uint256,uint40,uint256)\":[{\"notice\":\"Thrown when attempting to expire a policy, but the policy is still active (policy.expiration > block.timestamp)\"}],\"PolicyNotFound(uint256)\":[{\"notice\":\"Thrown when attempting to execute an action on a policy that does not exist (or was already expired)\"}],\"UpgradeCannotChangeCurrency()\":[{\"notice\":\"Thrown when trying to change the currency during an upgrade\"}],\"ZeroHash((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":[{\"notice\":\"Raised when the computed hash is bytes32(0)\"}]},\"events\":{\"BaseURIChanged(string,string)\":{\"notice\":\"Event emitted when the baseURI (for policy NFTs) changes\"},\"ComponentStatusChanged(address,uint8,uint8)\":{\"notice\":\"Event emitted when a new component added/removed to the pool or the status changes.\"},\"Deposit(address,address,address,uint256)\":{\"notice\":\"Event emitted for every deposit into an eToken\"},\"ExpirationNotificationFailed(uint256,address)\":{\"notice\":\"Event emitted when a IPolicyHolder reverts on the expiration notification. The operation doesn't reverts\"},\"ExposureLimitChanged(address,uint128,uint128)\":{\"notice\":\"Event emitted when the exposure limit for a given risk module is changed\"},\"NewPolicy(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Event emitted every time a new policy is added to the pool\"},\"PolicyCancelled(address,uint256,uint256,uint256,uint256)\":{\"notice\":\"Event emitted when a policy is cancelled, and part of the paid premium is refunded.\"},\"PolicyReplaced(address,uint256,uint256)\":{\"notice\":\"Event emitted every time a new policy replaces an old Policy.\"},\"PolicyResolved(address,uint256,uint256)\":{\"notice\":\"Event emitted every time a policy is removed from the pool\"},\"TreasuryChanged(address,address)\":{\"notice\":\"Event emitted when the treasury (who receives ensuroCommission) changes\"},\"Withdraw(address,address,address,address,uint256)\":{\"notice\":\"Event emitted for every withdrawal from an eToken\"}},\"kind\":\"user\",\"methods\":{\"addComponent(address,uint8)\":{\"notice\":\"Adds a new component (either an {EToken}, {RiskModule} or {PremiumsAccount}) to the protocol.\"},\"cancelPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)\":{\"notice\":\"Cancels a policy, doing optional refunds of parts of the premium.\"},\"changeComponentStatus(address,uint8)\":{\"notice\":\"Changes the status of a component.\"},\"currency()\":{\"notice\":\"Reference to the main currency (ERC20, e.g. USDC) used in the protocol\"},\"deposit(address,uint256,address)\":{\"notice\":\"Deposits liquidity into an eToken\"},\"depositWithPermit(address,uint256,address,uint256,uint8,bytes32,bytes32)\":{\"notice\":\"Deposits liquidity into an eToken, EIP-2612 compatible version.\"},\"expirePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Expires a policy, unlocked the solvency.\"},\"getComponentStatus(address)\":{\"notice\":\"Returns the status of a component.\"},\"getExposure(address)\":{\"notice\":\"Retrieves the current exposure data for a specific risk module\"},\"getPolicyHash(uint256)\":{\"notice\":\"Returns the stored hash of the policy\"},\"isActive(uint256)\":{\"notice\":\"Returns whether a policy is active\"},\"newPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,address,uint96)\":{\"notice\":\"Creates a new Policy\"},\"pause()\":{\"notice\":\"Pauses the contract.\"},\"removeComponent(address)\":{\"notice\":\"Removes a component from the protocol\"},\"replacePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,uint96)\":{\"notice\":\"Replaces a policy with another\"},\"resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"notice\":\"Resolves a policy with a payout, sending the payment to the owner of the policy NFT.\"},\"setBaseURI(string)\":{\"notice\":\"Changes the baseURI of the minted policy NFTs\"},\"setExposureLimit(address,uint256)\":{\"notice\":\"Changes the maximum cumulative loss limit (exposure limit) for a given risk module\"},\"setTreasury(address)\":{\"notice\":\"Changes the address of the treasury, the one that receives the protocol fees.\"},\"treasury()\":{\"notice\":\"Address of the treasury, that receives protocol fees.\"},\"unpause()\":{\"notice\":\"Unpauses the contract.\"},\"withdraw(address,uint256,address,address)\":{\"notice\":\"Withdraws an amount from an eToken\"}},\"notice\":\"This is the main contract of the protocol.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/PolicyPool.sol\":\"PolicyPool\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@ensuro/core/contracts/PolicyPool.sol\":{\"keccak256\":\"0x1cac89599f41cb05f5445828ad531186b64c54f51717f5b6b960ba6c2c395434\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://939ce8017dcc32aa916ecdbd7f97744e3a1542b064ba27955d656052555d88f2\",\"dweb:/ipfs/QmY9hnZ3mMe2D51idzYE4TbZXgWLEZnkcsMd9BwUo9f6ME\"]},\"@ensuro/core/contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"@ensuro/core/contracts/interfaces/IPolicyHolder.sol\":{\"keccak256\":\"0xedfdb90379573eaab3213424a517042dd7f015cdb4ee734859609a019275797e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://321e424f1c9afd92e0cb38e4131ce30aaf7df551388b6d1d1abe60ea9dcd0e8a\",\"dweb:/ipfs/QmfFraGLbyy67ugA373JcZfPf7J34uzMHXbyBjoH9enWsK\"]},\"@ensuro/core/contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"@ensuro/core/contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"@ensuro/core/contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]},\"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol\":{\"keccak256\":\"0xb813cb6a31231d48456f46d35a82ff89a643e03d015027e0a34dd3a611370b69\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6ac2aa7e379a6804c0814ad4354c8626bceac3c37d641fc0105f666ebdd1aea7\",\"dweb:/ipfs/QmQ1a69VXEfVKP3Vgwk9CGd5surx3YQX5eNDvXDSf6aspG\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol\":{\"keccak256\":\"0x842cc1aad7ab31fce63200401deddce3a84f73fef96b3a4841b310b09ab9aa7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://90c6d93642c21475ba6240ad13a8d75f5df215e0363efc4cbe13f71e779d38d2\",\"dweb:/ipfs/QmXCGRb3aYGf9js21UfV7tATAo26o3gWRgM539WamvniP6\"]},\"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol\":{\"keccak256\":\"0x1149f6c3445a564f5b9cd27c2dc85c6bcaed254c67cb57a416bc7ca1f667ad1f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8a72ecd1a82f8ece4d83280a4920a6269e83bec971a27d0ce2e3a21d2ae08450\",\"dweb:/ipfs/QmSn68D8stm6b7m4nZndhTqincMQdoTqNrRXmAReV9Xb2r\"]},\"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol\":{\"keccak256\":\"0x16b88aca1f1c3aa38783416d86207ce6fe574fcd1993dfe54403b5c8b6c74224\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://29f3c5c687fe0d87742b013872f495e67656910530c916a69873860dc8fea812\",\"dweb:/ipfs/QmbspfQXmbhCANqqiunUFm9fiVVQwPet2YKQoJ58km442Y\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x53befc41288eaa87edcd3a7be7e8475a32e44c6a29f9bf52fae789781301d9ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a1d7fab53c4ceaf42391b83d9b36d7e9cc524a8da125cffdcd32c56560f9d1c9\",\"dweb:/ipfs/QmaRZdVhQdqNXofeimibkBG65q9GVcXVZEGpycwwX3znC6\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xf78f05f3b8c9f75570e85300d7b4600d7f6f6a198449273f31d44c1641adb46f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e28b872613b45e0e801d4995aa4380be2531147bfe2d85c1d6275f1de514fba3\",\"dweb:/ipfs/QmeeFcfShHYaS3BdgVj78nxR28ZaVUwbvr66ud8bT6kzw9\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0xf46268c37522320bb2119a5a394bc5c739a95c0c574c8d08e8c643f4d06e5c76\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://517e4b295f35b9947c72ad7379a6089439ece7bb6f4a2ea0a159da13046c039e\",\"dweb:/ipfs/QmZXzkSfLUbvujig3zVbpDHykpHhqLpvQtdiN3B5j4TA3u\"]},\"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol\":{\"keccak256\":\"0xc7efbc23214ad7dced8bf2249460f4bda114d57f6a0079f84040654280f455bd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1f5bd44efca8c8c0d74439e7b808d1f9c4af1df78f91fef8e8bbca8104645435\",\"dweb:/ipfs/Qmb42XSd8MKsEitp42sZkSFGqDRigk6QgGXtiJyJqUZJJ6\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":{\"keccak256\":\"0xc4c674aab142650b93c3fdf27452a07c0284aed63a86b54b4c4792e8f0f333fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://47778fa8fbb0bd759b5859b65193de857778c6112af8d5421acb11e68ed04d62\",\"dweb:/ipfs/QmakrnC3iS3t4UeRReEvWfhxgB3sAyPoz6LSkdK63UxiYb\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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":[{"astId":8382,"contract":"@ensuro/core/contracts/PolicyPool.sol:PolicyPool","label":"_treasury","offset":0,"slot":"0","type":"t_address"},{"astId":8413,"contract":"@ensuro/core/contracts/PolicyPool.sol:PolicyPool","label":"_components","offset":0,"slot":"1","type":"t_mapping(t_contract(IPolicyPoolComponent)14655,t_struct(Component)8406_storage)"},{"astId":8418,"contract":"@ensuro/core/contracts/PolicyPool.sol:PolicyPool","label":"_policies","offset":0,"slot":"2","type":"t_mapping(t_uint256,t_bytes32)"},{"astId":8426,"contract":"@ensuro/core/contracts/PolicyPool.sol:PolicyPool","label":"_nftBaseURI","offset":0,"slot":"3","type":"t_string_storage"},{"astId":8433,"contract":"@ensuro/core/contracts/PolicyPool.sol:PolicyPool","label":"_exposureByRm","offset":0,"slot":"4","type":"t_mapping(t_contract(IRiskModule)14762,t_struct(Exposure)8423_storage)"},{"astId":10933,"contract":"@ensuro/core/contracts/PolicyPool.sol:PolicyPool","label":"__gap","offset":0,"slot":"5","type":"t_array(t_uint256)45_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)45_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[45]","numberOfBytes":"1440"},"t_bytes32":{"encoding":"inplace","label":"bytes32","numberOfBytes":"32"},"t_contract(IPolicyPoolComponent)14655":{"encoding":"inplace","label":"contract IPolicyPoolComponent","numberOfBytes":"20"},"t_contract(IRiskModule)14762":{"encoding":"inplace","label":"contract IRiskModule","numberOfBytes":"20"},"t_enum(ComponentKind)8398":{"encoding":"inplace","label":"enum PolicyPool.ComponentKind","numberOfBytes":"1"},"t_enum(ComponentStatus)8392":{"encoding":"inplace","label":"enum PolicyPool.ComponentStatus","numberOfBytes":"1"},"t_mapping(t_contract(IPolicyPoolComponent)14655,t_struct(Component)8406_storage)":{"encoding":"mapping","key":"t_contract(IPolicyPoolComponent)14655","label":"mapping(contract IPolicyPoolComponent => struct PolicyPool.Component)","numberOfBytes":"32","value":"t_struct(Component)8406_storage"},"t_mapping(t_contract(IRiskModule)14762,t_struct(Exposure)8423_storage)":{"encoding":"mapping","key":"t_contract(IRiskModule)14762","label":"mapping(contract IRiskModule => struct PolicyPool.Exposure)","numberOfBytes":"32","value":"t_struct(Exposure)8423_storage"},"t_mapping(t_uint256,t_bytes32)":{"encoding":"mapping","key":"t_uint256","label":"mapping(uint256 => bytes32)","numberOfBytes":"32","value":"t_bytes32"},"t_string_storage":{"encoding":"bytes","label":"string","numberOfBytes":"32"},"t_struct(Component)8406_storage":{"encoding":"inplace","label":"struct PolicyPool.Component","members":[{"astId":8402,"contract":"@ensuro/core/contracts/PolicyPool.sol:PolicyPool","label":"status","offset":0,"slot":"0","type":"t_enum(ComponentStatus)8392"},{"astId":8405,"contract":"@ensuro/core/contracts/PolicyPool.sol:PolicyPool","label":"kind","offset":1,"slot":"0","type":"t_enum(ComponentKind)8398"}],"numberOfBytes":"32"},"t_struct(Exposure)8423_storage":{"encoding":"inplace","label":"struct PolicyPool.Exposure","members":[{"astId":8420,"contract":"@ensuro/core/contracts/PolicyPool.sol:PolicyPool","label":"active","offset":0,"slot":"0","type":"t_uint128"},{"astId":8422,"contract":"@ensuro/core/contracts/PolicyPool.sol:PolicyPool","label":"limit","offset":16,"slot":"0","type":"t_uint128"}],"numberOfBytes":"32"},"t_uint128":{"encoding":"inplace","label":"uint128","numberOfBytes":"16"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@ensuro/core/contracts/PolicyPoolComponent.sol":{"PolicyPoolComponent":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NoZeroPolicyPool","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"OnlyPolicyPool","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[],"name":"UpgradeCannotChangePolicyPool","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","currency()":"e5a6b10f","policyPool()":"4d15eb03","proxiableUUID()":"52d1902d","supportsInterface(bytes4)":"01ffc9a7","upgradeToAndCall(address,bytes)":"4f1ef286"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroPolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangePolicyPool\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"This is the base class of all the components of the protocol that are linked to the PolicyPool and created      after it.      Holds the reference to _policyPool as immutable, also provides access to common admin roles:      This contract also keeps track of the tweaks to avoid two tweaks of the same type are done in a short period.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"},\"_policyPool\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"}},\"title\":\"Base class for PolicyPool components\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/PolicyPoolComponent.sol\":\"PolicyPoolComponent\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@ensuro/core/contracts/PolicyPoolComponent.sol\":{\"keccak256\":\"0x59be0e577af81ab215ac850da84692d6ae7a465917701260f390bc92240c4707\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://c55648f183f32e74d6d83cfc2a8eb606c75a6c3bc598e8ec2a38f9fb3b676f8c\",\"dweb:/ipfs/QmdDFuZz6cn9ywUuxv4bTY3STMWQMWTAzitbocywFMoByb\"]},\"@ensuro/core/contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"@ensuro/core/contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"@ensuro/core/contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"@ensuro/core/contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":11093,"contract":"@ensuro/core/contracts/PolicyPoolComponent.sol:PolicyPoolComponent","label":"__gap","offset":0,"slot":"0","type":"t_array(t_uint256)50_storage"}],"types":{"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@ensuro/core/contracts/PremiumsAccount.sol":{"PremiumsAccount":{"abi":[{"inputs":[{"internalType":"contract IPolicyPool","name":"policyPool_","type":"address"},{"internalType":"contract IEToken","name":"juniorEtk_","type":"address"},{"internalType":"contract IEToken","name":"seniorEtk_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"uint256","name":"amountLeft","type":"uint256"}],"name":"CannotBeBorrowed","type":"error"},{"inputs":[{"internalType":"int256","name":"currentDeficit","type":"int256"},{"internalType":"int256","name":"newMaxDeficit","type":"int256"}],"name":"DeficitExceedsMaxDeficit","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"newDeficitRatio","type":"uint256"}],"name":"InvalidDeficitRatio","type":"error"},{"inputs":[{"internalType":"address","name":"destination","type":"address"}],"name":"InvalidDestination","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[{"internalType":"uint256","name":"loanLimit","type":"uint256"}],"name":"InvalidLoanLimit","type":"error"},{"inputs":[{"internalType":"contract IEToken","name":"oldEToken","type":"address"},{"internalType":"contract IEToken","name":"newEToken","type":"address"}],"name":"InvalidUpgradeETokenChanged","type":"error"},{"inputs":[],"name":"InvalidYieldVault","type":"error"},{"inputs":[{"internalType":"uint256","name":"losses","type":"uint256"},{"internalType":"uint256","name":"excess","type":"uint256"}],"name":"LossesCannotExceedMaxDeficit","type":"error"},{"inputs":[],"name":"NoZeroPolicyPool","type":"error"},{"inputs":[{"internalType":"uint256","name":"required","type":"uint256"},{"internalType":"uint256","name":"available","type":"uint256"}],"name":"NotEnoughCash","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"OnlyPolicyPool","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ReserveInvalidReceiver","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[],"name":"UpgradeCannotChangePolicyPool","type":"error"},{"inputs":[{"internalType":"uint256","name":"amountRequired","type":"uint256"},{"internalType":"int256","name":"surplus","type":"int256"}],"name":"WithdrawExceedsSurplus","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldRatio","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRatio","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"adjustment","type":"uint256"}],"name":"DeficitRatioChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"int256","name":"earnings","type":"int256"}],"name":"EarningsRecorded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"ErrorIgnoredDeinvestingVault","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newLimit","type":"uint256"},{"indexed":false,"internalType":"bool","name":"isSenior","type":"bool"}],"name":"LoanLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"moneyIn","type":"bool"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"WonPremiumsInOut","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":true,"internalType":"contract IERC4626","name":"newVault","type":"address"},{"indexed":false,"internalType":"bool","name":"forced","type":"bool"}],"name":"YieldVaultChanged","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activePurePremiums","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"borrowedActivePP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deficitRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositIntoYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"etks","outputs":[{"internalType":"contract IEToken","name":"","type":"address"},{"internalType":"contract IEToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"investedInYV","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"jrLoanLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"juniorEtk","outputs":[{"internalType":"contract IEToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"},{"internalType":"address","name":"policyHolder","type":"address"}],"name":"policyCancelled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"policyCreated","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"policyExpired","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"newPolicy","type":"tuple"}],"name":"policyReplaced","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"policyHolder","type":"address"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"policyResolvedWithPayout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purePremiums","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"receiveGrant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"recordEarnings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"repayLoans","outputs":[{"internalType":"uint256","name":"available","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seniorEtk","outputs":[{"internalType":"contract IEToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRatio","type":"uint256"},{"internalType":"bool","name":"adjustment","type":"bool"}],"name":"setDeficitRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimitJr","type":"uint256"},{"internalType":"uint256","name":"newLimitSr","type":"uint256"}],"name":"setLoanLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC4626","name":"newYieldVault","type":"address"},{"internalType":"bool","name":"force","type":"bool"}],"name":"setYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"srLoanLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"surplus","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFromYieldVault","outputs":[{"internalType":"uint256","name":"deinvested","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"withdrawWonPremiums","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wonPurePremiums","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"yieldVault","outputs":[{"internalType":"contract IERC4626","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_11009":{"entryPoint":null,"id":11009,"parameterSlots":1,"returnSlots":0},"@_11272":{"entryPoint":null,"id":11272,"parameterSlots":3,"returnSlots":0},"@_12919":{"entryPoint":null,"id":12919,"parameterSlots":1,"returnSlots":0},"@_disableInitializers_23388":{"entryPoint":131,"id":23388,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_23433":{"entryPoint":null,"id":23433,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_23419":{"entryPoint":null,"id":23419,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPool_$14638t_contract$_IEToken_$14336t_contract$_IEToken_$14336_fromMemory":{"entryPoint":329,"id":null,"parameterSlots":2,"returnSlots":3},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"validator_revert_contract_IPolicyPool":{"entryPoint":309,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:983:125","nodeType":"YulBlock","src":"0:983:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"72:86:125","nodeType":"YulBlock","src":"72:86:125","statements":[{"body":{"nativeSrc":"136:16:125","nodeType":"YulBlock","src":"136:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"145:1:125","nodeType":"YulLiteral","src":"145:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"148:1:125","nodeType":"YulLiteral","src":"148:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"138:6:125","nodeType":"YulIdentifier","src":"138:6:125"},"nativeSrc":"138:12:125","nodeType":"YulFunctionCall","src":"138:12:125"},"nativeSrc":"138:12:125","nodeType":"YulExpressionStatement","src":"138:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"95:5:125","nodeType":"YulIdentifier","src":"95:5:125"},{"arguments":[{"name":"value","nativeSrc":"106:5:125","nodeType":"YulIdentifier","src":"106:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"121:3:125","nodeType":"YulLiteral","src":"121:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"126:1:125","nodeType":"YulLiteral","src":"126:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"117:3:125","nodeType":"YulIdentifier","src":"117:3:125"},"nativeSrc":"117:11:125","nodeType":"YulFunctionCall","src":"117:11:125"},{"kind":"number","nativeSrc":"130:1:125","nodeType":"YulLiteral","src":"130:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"113:3:125","nodeType":"YulIdentifier","src":"113:3:125"},"nativeSrc":"113:19:125","nodeType":"YulFunctionCall","src":"113:19:125"}],"functionName":{"name":"and","nativeSrc":"102:3:125","nodeType":"YulIdentifier","src":"102:3:125"},"nativeSrc":"102:31:125","nodeType":"YulFunctionCall","src":"102:31:125"}],"functionName":{"name":"eq","nativeSrc":"92:2:125","nodeType":"YulIdentifier","src":"92:2:125"},"nativeSrc":"92:42:125","nodeType":"YulFunctionCall","src":"92:42:125"}],"functionName":{"name":"iszero","nativeSrc":"85:6:125","nodeType":"YulIdentifier","src":"85:6:125"},"nativeSrc":"85:50:125","nodeType":"YulFunctionCall","src":"85:50:125"},"nativeSrc":"82:70:125","nodeType":"YulIf","src":"82:70:125"}]},"name":"validator_revert_contract_IPolicyPool","nativeSrc":"14:144:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"61:5:125","nodeType":"YulTypedName","src":"61:5:125","type":""}],"src":"14:144:125"},{"body":{"nativeSrc":"333:443:125","nodeType":"YulBlock","src":"333:443:125","statements":[{"body":{"nativeSrc":"379:16:125","nodeType":"YulBlock","src":"379:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"388:1:125","nodeType":"YulLiteral","src":"388:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"391:1:125","nodeType":"YulLiteral","src":"391:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"381:6:125","nodeType":"YulIdentifier","src":"381:6:125"},"nativeSrc":"381:12:125","nodeType":"YulFunctionCall","src":"381:12:125"},"nativeSrc":"381:12:125","nodeType":"YulExpressionStatement","src":"381:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"354:7:125","nodeType":"YulIdentifier","src":"354:7:125"},{"name":"headStart","nativeSrc":"363:9:125","nodeType":"YulIdentifier","src":"363:9:125"}],"functionName":{"name":"sub","nativeSrc":"350:3:125","nodeType":"YulIdentifier","src":"350:3:125"},"nativeSrc":"350:23:125","nodeType":"YulFunctionCall","src":"350:23:125"},{"kind":"number","nativeSrc":"375:2:125","nodeType":"YulLiteral","src":"375:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"346:3:125","nodeType":"YulIdentifier","src":"346:3:125"},"nativeSrc":"346:32:125","nodeType":"YulFunctionCall","src":"346:32:125"},"nativeSrc":"343:52:125","nodeType":"YulIf","src":"343:52:125"},{"nativeSrc":"404:29:125","nodeType":"YulVariableDeclaration","src":"404:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"423:9:125","nodeType":"YulIdentifier","src":"423:9:125"}],"functionName":{"name":"mload","nativeSrc":"417:5:125","nodeType":"YulIdentifier","src":"417:5:125"},"nativeSrc":"417:16:125","nodeType":"YulFunctionCall","src":"417:16:125"},"variables":[{"name":"value","nativeSrc":"408:5:125","nodeType":"YulTypedName","src":"408:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"480:5:125","nodeType":"YulIdentifier","src":"480:5:125"}],"functionName":{"name":"validator_revert_contract_IPolicyPool","nativeSrc":"442:37:125","nodeType":"YulIdentifier","src":"442:37:125"},"nativeSrc":"442:44:125","nodeType":"YulFunctionCall","src":"442:44:125"},"nativeSrc":"442:44:125","nodeType":"YulExpressionStatement","src":"442:44:125"},{"nativeSrc":"495:15:125","nodeType":"YulAssignment","src":"495:15:125","value":{"name":"value","nativeSrc":"505:5:125","nodeType":"YulIdentifier","src":"505:5:125"},"variableNames":[{"name":"value0","nativeSrc":"495:6:125","nodeType":"YulIdentifier","src":"495:6:125"}]},{"nativeSrc":"519:40:125","nodeType":"YulVariableDeclaration","src":"519:40:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"544:9:125","nodeType":"YulIdentifier","src":"544:9:125"},{"kind":"number","nativeSrc":"555:2:125","nodeType":"YulLiteral","src":"555:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"540:3:125","nodeType":"YulIdentifier","src":"540:3:125"},"nativeSrc":"540:18:125","nodeType":"YulFunctionCall","src":"540:18:125"}],"functionName":{"name":"mload","nativeSrc":"534:5:125","nodeType":"YulIdentifier","src":"534:5:125"},"nativeSrc":"534:25:125","nodeType":"YulFunctionCall","src":"534:25:125"},"variables":[{"name":"value_1","nativeSrc":"523:7:125","nodeType":"YulTypedName","src":"523:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"606:7:125","nodeType":"YulIdentifier","src":"606:7:125"}],"functionName":{"name":"validator_revert_contract_IPolicyPool","nativeSrc":"568:37:125","nodeType":"YulIdentifier","src":"568:37:125"},"nativeSrc":"568:46:125","nodeType":"YulFunctionCall","src":"568:46:125"},"nativeSrc":"568:46:125","nodeType":"YulExpressionStatement","src":"568:46:125"},{"nativeSrc":"623:17:125","nodeType":"YulAssignment","src":"623:17:125","value":{"name":"value_1","nativeSrc":"633:7:125","nodeType":"YulIdentifier","src":"633:7:125"},"variableNames":[{"name":"value1","nativeSrc":"623:6:125","nodeType":"YulIdentifier","src":"623:6:125"}]},{"nativeSrc":"649:40:125","nodeType":"YulVariableDeclaration","src":"649:40:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"674:9:125","nodeType":"YulIdentifier","src":"674:9:125"},{"kind":"number","nativeSrc":"685:2:125","nodeType":"YulLiteral","src":"685:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"670:3:125","nodeType":"YulIdentifier","src":"670:3:125"},"nativeSrc":"670:18:125","nodeType":"YulFunctionCall","src":"670:18:125"}],"functionName":{"name":"mload","nativeSrc":"664:5:125","nodeType":"YulIdentifier","src":"664:5:125"},"nativeSrc":"664:25:125","nodeType":"YulFunctionCall","src":"664:25:125"},"variables":[{"name":"value_2","nativeSrc":"653:7:125","nodeType":"YulTypedName","src":"653:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"736:7:125","nodeType":"YulIdentifier","src":"736:7:125"}],"functionName":{"name":"validator_revert_contract_IPolicyPool","nativeSrc":"698:37:125","nodeType":"YulIdentifier","src":"698:37:125"},"nativeSrc":"698:46:125","nodeType":"YulFunctionCall","src":"698:46:125"},"nativeSrc":"698:46:125","nodeType":"YulExpressionStatement","src":"698:46:125"},{"nativeSrc":"753:17:125","nodeType":"YulAssignment","src":"753:17:125","value":{"name":"value_2","nativeSrc":"763:7:125","nodeType":"YulIdentifier","src":"763:7:125"},"variableNames":[{"name":"value2","nativeSrc":"753:6:125","nodeType":"YulIdentifier","src":"753:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$14638t_contract$_IEToken_$14336t_contract$_IEToken_$14336_fromMemory","nativeSrc":"163:613:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"283:9:125","nodeType":"YulTypedName","src":"283:9:125","type":""},{"name":"dataEnd","nativeSrc":"294:7:125","nodeType":"YulTypedName","src":"294:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"306:6:125","nodeType":"YulTypedName","src":"306:6:125","type":""},{"name":"value1","nativeSrc":"314:6:125","nodeType":"YulTypedName","src":"314:6:125","type":""},{"name":"value2","nativeSrc":"322:6:125","nodeType":"YulTypedName","src":"322:6:125","type":""}],"src":"163:613:125"},{"body":{"nativeSrc":"880:101:125","nodeType":"YulBlock","src":"880:101:125","statements":[{"nativeSrc":"890:26:125","nodeType":"YulAssignment","src":"890:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"902:9:125","nodeType":"YulIdentifier","src":"902:9:125"},{"kind":"number","nativeSrc":"913:2:125","nodeType":"YulLiteral","src":"913:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"898:3:125","nodeType":"YulIdentifier","src":"898:3:125"},"nativeSrc":"898:18:125","nodeType":"YulFunctionCall","src":"898:18:125"},"variableNames":[{"name":"tail","nativeSrc":"890:4:125","nodeType":"YulIdentifier","src":"890:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"932:9:125","nodeType":"YulIdentifier","src":"932:9:125"},{"arguments":[{"name":"value0","nativeSrc":"947:6:125","nodeType":"YulIdentifier","src":"947:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"963:2:125","nodeType":"YulLiteral","src":"963:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"967:1:125","nodeType":"YulLiteral","src":"967:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"959:3:125","nodeType":"YulIdentifier","src":"959:3:125"},"nativeSrc":"959:10:125","nodeType":"YulFunctionCall","src":"959:10:125"},{"kind":"number","nativeSrc":"971:1:125","nodeType":"YulLiteral","src":"971:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"955:3:125","nodeType":"YulIdentifier","src":"955:3:125"},"nativeSrc":"955:18:125","nodeType":"YulFunctionCall","src":"955:18:125"}],"functionName":{"name":"and","nativeSrc":"943:3:125","nodeType":"YulIdentifier","src":"943:3:125"},"nativeSrc":"943:31:125","nodeType":"YulFunctionCall","src":"943:31:125"}],"functionName":{"name":"mstore","nativeSrc":"925:6:125","nodeType":"YulIdentifier","src":"925:6:125"},"nativeSrc":"925:50:125","nodeType":"YulFunctionCall","src":"925:50:125"},"nativeSrc":"925:50:125","nodeType":"YulExpressionStatement","src":"925:50:125"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"781:200:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"849:9:125","nodeType":"YulTypedName","src":"849:9:125","type":""},{"name":"value0","nativeSrc":"860:6:125","nodeType":"YulTypedName","src":"860:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"871:4:125","nodeType":"YulTypedName","src":"871:4:125","type":""}],"src":"781:200:125"}]},"contents":"{\n    { }\n    function validator_revert_contract_IPolicyPool(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$_IPolicyPool_$14638t_contract$_IEToken_$14336t_contract$_IEToken_$14336_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_IPolicyPool(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IPolicyPool(value_1)\n        value1 := value_1\n        let value_2 := mload(add(headStart, 64))\n        validator_revert_contract_IPolicyPool(value_2)\n        value2 := value_2\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}","id":125,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"61010060405230608052348015610014575f5ffd5b50604051613e5a380380613e5a83398101604081905261003391610149565b82806001600160a01b03811661005c57604051636b23cf0160e01b815260040160405180910390fd5b610064610083565b6001600160a01b0390811660a05292831660c052501660e05250610193565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100d35760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101325780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6001600160a01b0381168114610132575f5ffd5b5f5f5f6060848603121561015b575f5ffd5b835161016681610135565b602085015190935061017781610135565b604085015190925061018881610135565b809150509250925092565b60805160a05160c05160e051613b916102c95f395f818161041b01528181610473015281816116470152818161173001528181611976015281816119ac01528181611b5c01528181611eef015281816121c60152818161226c01528181612a6c01528181612ef401528181612f2f0152612f5b01525f81816103b8015281816103f601528181610c97015281816114b20152818161159b015281816119df01528181611a1501528181611ab001528181611e2c01528181611f9b0152818161204b015281816120f40152818161298801528181612e3701528181612e720152612e9e01525f81816102f0015281816108f001528181610d8901528181611439015281816117ce0152818161187301528181611a44015261325501525f81816124430152818161246c01526126010152613b915ff3fe6080604052600436106101fc575f3560e01c806376185ff111610113578063ac860f741161009d578063e5a6b10f1161006d578063e5a6b10f146105e7578063e823584a146105fb578063ee1f9a6a1461060f578063f39a4bc51461062e578063f79ac18314610642575f5ffd5b8063ac860f741461054d578063ad3cb1cc1461056c578063d336078c146105a9578063d5c6c166146105c8575f5ffd5b80638129fc1c116100e35780638129fc1c146104bf57806381ced71f146104d357806397a146c0146104f2578063a0ce58b814610511578063a7f8a5e214610530575f5ffd5b806376185ff1146104465780637b83037b146104655780637bb62319146104975780637d919a97146104ab575f5ffd5b80634d15eb031161019457806350093f041161016457806350093f041461036357806352d1902d14610382578063536c9a4314610396578063536ebbfc146103aa5780635e445859146103dc575f5ffd5b80634d15eb03146102e25780634eb978a4146103285780634f1ef2861461033c5780634fe0bd1e1461034f575f5ffd5b80631dda2899116101cf5780631dda28991461028757806326ccbd22146102a65780632d8f892a146102ba5780634863c8b0146102ce575f5ffd5b806301ffc9a7146102005780631388856514610234578063194448e5146102525780631a548a2714610273575b5f5ffd5b34801561020b575f5ffd5b5061021f61021a3660046134ab565b610661565b60405190151581526020015b60405180910390f35b34801561023f575f5ffd5b506065545b60405190815260200161022b565b34801561025d575f5ffd5b5061027161026c3660046134f3565b61068c565b005b34801561027e575f5ffd5b50606454610244565b348015610292575f5ffd5b506102716102a1366004613541565b6108e5565b3480156102b1575f5ffd5b506102446109c0565b3480156102c5575f5ffd5b506102446109d6565b3480156102d9575f5ffd5b50610244610a0c565b3480156102ed575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b03909116815260200161022b565b348015610333575f5ffd5b50610271610a2d565b61027161034a3660046135ef565b610b62565b34801561035a575f5ffd5b50610244610b81565b34801561036e575f5ffd5b5061027161037d366004613696565b610b9f565b34801561038d575f5ffd5b50610244610d4b565b3480156103a1575f5ffd5b50610244610d67565b3480156103b5575f5ffd5b507f0000000000000000000000000000000000000000000000000000000000000000610310565b3480156103e7575f5ffd5b50604080516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811682527f00000000000000000000000000000000000000000000000000000000000000001660208201520161022b565b348015610451575f5ffd5b506102716104603660046136b9565b610d7e565b348015610470575f5ffd5b507f0000000000000000000000000000000000000000000000000000000000000000610310565b3480156104a2575f5ffd5b50610244610e04565b3480156104b6575f5ffd5b50603254610244565b3480156104ca575f5ffd5b50610271610e34565b3480156104de575f5ffd5b506102716104ed3660046136d4565b610f2b565b3480156104fd575f5ffd5b5061027161050c3660046136eb565b610f91565b34801561051c575f5ffd5b5061024461052b36600461370b565b6110f4565b34801561053b575f5ffd5b506066546001600160a01b0316610310565b348015610558575f5ffd5b506102716105673660046136d4565b611208565b348015610577575f5ffd5b5061059c604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161022b919061372e565b3480156105b4575f5ffd5b506102446105c33660046136d4565b61138e565b3480156105d3575f5ffd5b506102716105e2366004613763565b61142e565b3480156105f2575f5ffd5b506103106117cb565b348015610606575f5ffd5b5061024461184c565b34801561061a575f5ffd5b50610271610629366004613798565b611868565b348015610639575f5ffd5b50610244611936565b34801561064d575f5ffd5b5061027161065c3660046136b9565b611a39565b5f61066b82611bf0565b8061068657506001600160e01b0319821663f7e4b01b60e01b145b92915050565b5f5f6106966117cb565b90506001600160a01b038416158061071e5750806001600160a01b0316846001600160a01b03166338d52e0f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106ef573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061071391906137ee565b6001600160a01b0316145b61073b57604051638959269160e01b815260040160405180910390fd5b5f61074e6066546001600160a01b031690565b90505f6001600160a01b03821615610863576040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156107a4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107c89190613809565b905080156108615785156107e9576107e08382611c25565b95509150610861565b604051635d043b2960e11b815260048101829052306024820181905260448201526001600160a01b0384169063ba087652906064016020604051808303815f875af115801561083a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061085e9190613809565b91505b505b606680546001600160a01b0319166001600160a01b0388161790556108946032548261088f9190613834565b611d68565b5f60325560405184151581526001600160a01b0380881691908416907f243f9479bbdaf9f3395e726975293ee3724f3819f4322a018c98afb9de70a1e09060200160405180910390a3505050505050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461092e5760405163799e780f60e01b815260040160405180910390fd5b8160a0013560645f8282546109439190613853565b909155505f905061096061095b60a085013584613834565b611dcd565b905080156109955761097f61097a3685900385018561387f565b611e20565b61099081855f866040013511611f7d565b6109a7565b6109a761097a3685900385018561387f565b6109ba846109b58385613853565b6122fc565b50505050565b5f6065546064546109d19190613927565b905090565b6066545f90600160a01b900463ffffffff1615610a06576066546109d190600160a01b900463ffffffff166123b5565b505f1990565b6066545f906109d190655af3107a400090600160e01b900461ffff1661394e565b5f610a406066546001600160a01b031690565b90506001600160a01b038116610a6957604051638959269160e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201525f906001600160a01b038316906307a2d13a9082906370a0823190602401602060405180830381865afa158015610ab5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ad99190613809565b6040518263ffffffff1660e01b8152600401610af791815260200190565b602060405180830381865afa158015610b12573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b369190613809565b90505f60325482610b479190613834565b90508015610b5d576032829055610b5d81611d68565b505050565b610b6a612438565b610b73826124de565b610b7d82826124e7565b5050565b5f610b92610b8d610a0c565b6125a3565b6065546109d19190613834565b5f610bb8610bb3655af3107a400085613979565b6125c4565b9050670de0b6b3a76400008311158015610be4575082610be2655af3107a400061ffff841661394e565b145b8390610c0f576040516346c20ab760e01b8152600401610c0691815260200190565b60405180910390fd5b505f610c1a846125a3565b905082158015610c2b575080606554125b15610c6757606554610c3c90613998565b610c4582613998565b60405163287223f960e01b815260048101929092526024820152604401610c06565b5f816065541215610cc65781606554610c7f90613998565b610c899190613927565b60658390559050610cc681307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161515611f7d565b6066547f5b2441044bd7b1320018e9cf93f7a9a26d14db096298500121b8370aff51133d90610d0790655af3107a400090600160e01b900461ffff1661394e565b6040805191825260208201889052810183905260600160405180910390a150506066805461ffff909216600160e01b0261ffff60e01b199092169190911790555050565b5f610d546125f6565b505f516020613b3c5f395f51905f525b90565b5f5f6065541215610d7757505f90565b5060655490565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610dc75760405163799e780f60e01b815260040160405180910390fd5b8060a0013560645f828254610ddc9190613853565b90915550610def905060a082013561263f565b610e0161097a3683900383018361387f565b50565b6066545f90600160c01b900463ffffffff1615610a06576066546109d190600160c01b900463ffffffff166123b5565b5f610e3d612658565b805490915060ff600160401b820416159067ffffffffffffffff165f81158015610e645750825b90505f8267ffffffffffffffff166001148015610e805750303b155b905081158015610e8e575080155b15610eac5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ed657845460ff60401b1916600160401b1785555b610ede612680565b8315610f2457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b610f348161263f565b610f53333083610f426117cb565b6001600160a01b0316929190612698565b6040805160018152602081018390527fd60d524f1cae273480bb0a4ddfb992b6ac0b61c8e12ffbe2e4e31463f9e9019991015b60405180910390a150565b5f198214611043577f1366686786a1d0cde83e2e2241a477fcf29662506a51f052f72e47b15729bf0b610fc26109d6565b60408051918252602082018590525f9082015260600160405180910390a1610fe9826126ce565b6066805463ffffffff60a01b1916600160a01b63ffffffff93841681029190911791829055849261101e9291909104166123b5565b14829061104157604051634a8fd66f60e01b8152600401610c0691815260200190565b505b5f198114610b7d577f1366686786a1d0cde83e2e2241a477fcf29662506a51f052f72e47b15729bf0b611074610e04565b604080519182526020820184905260019082015260600160405180910390a161109c816126ce565b6066805463ffffffff60c01b1916600160c01b63ffffffff9384168102919091179182905583926110d19291909104166123b5565b148190610b5d57604051634a8fd66f60e01b8152600401610c0691815260200190565b5f816001600160a01b03811661112957604051638eaba6f960e01b81526001600160a01b039091166004820152602401610c06565b505f61113d6066546001600160a01b031690565b6001600160a01b03161461115357611153610a2d565b5f198303611175575f6065541361116b57505f610686565b60655492506111a7565b6065548390808213156111a45760405163241b522760e11b815260048101929092526024820152604401610c06565b50505b8260655f8282546111b89190613834565b909155506111c8905082846122fc565b604080515f8152602081018590527fd60d524f1cae273480bb0a4ddfb992b6ac0b61c8e12ffbe2e4e31463f9e90199910160405180910390a15090919050565b5f61121b6066546001600160a01b031690565b90506001600160a01b03811661124457604051638959269160e01b815260040160405180910390fd5b5f61124d612753565b90505f19830361125f5780925061128e565b82818082111561128b5760405163531309fb60e11b815260048101929092526024820152604401610c06565b50505b8260325f82825461129f91906139b2565b909155506112ad90506117cb565b60405163095ea7b360e01b81526001600160a01b03848116600483015260248201869052919091169063095ea7b3906044016020604051808303815f875af11580156112fb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061131f91906139c5565b50604051636e553f6560e01b8152600481018490523060248201526001600160a01b03831690636e553f65906044016020604051808303815f875af115801561136a573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ba9190613809565b5f611397610a2d565b5f6113aa6066546001600160a01b031690565b90505f19830361141d5760405163ce96cb7760e01b81523060048201526001600160a01b0382169063ce96cb7790602401602060405180830381865afa1580156113f6573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141a9190613809565b92505b61142781846127c4565b5090919050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146114775760405163799e780f60e01b815260040160405180910390fd5b61148960a08084013590830135613853565b60645f82825461149991906139b2565b9091555050604082013515611587576001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663a227dc41833560408501356114f56114f03688900388018861387f565b612877565b61150c6115073689900389018961387f565b6128bf565b61151e6115073689900389018961387f565b6115289190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526084015f604051808303815f87803b158015611570575f5ffd5b505af1158015611582573d5f5f3e3d5ffd5b505050505b604081013515611633576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016634ffcda8c823560408401356115d96114f03687900387018761387f565b6040516001600160e01b031960e086901b1681526004810193909352602483019190915260448201526064015f604051808303815f87803b15801561161c575f5ffd5b505af115801561162e573d5f5f3e3d5ffd5b505050505b60608201351561171c576001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663a227dc418335606085013561168a6116853688900388018861387f565b612902565b6116a161169c3689900389018961387f565b612943565b6116b361169c3689900389018961387f565b6116bd9190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526084015f604051808303815f87803b158015611705575f5ffd5b505af1158015611717573d5f5f3e3d5ffd5b505050505b606081013515610b7d576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016634ffcda8c8235606084013561176e6116853687900387018761387f565b6040516001600160e01b031960e086901b1681526004810193909352602483019190915260448201526064015f604051808303815f87803b1580156117b1575f5ffd5b505af11580156117c3573d5f5f3e3d5ffd5b505050505050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611828573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d191906137ee565b5f5f6065541215611863576065546109d190613998565b505f90565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146118b15760405163799e780f60e01b815260040160405180910390fd5b8460a0013560645f8282546118c69190613853565b909155505f90506118de61095b60a088013587613834565b90508015611916576119006118f83688900388018861387f565b85858561297c565b61191181835f896040013511611f7d565b611928565b6119286118f83688900388018861387f565b6117c3826109b58388613853565b5f8061194a6066546001600160a01b031690565b6001600160a01b03161461196057611960610a2d565b611968610b81565b905080158015906119a157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b156119d3576119d0817f0000000000000000000000000000000000000000000000000000000000000000612b49565b90505b8015801590611a0a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b15610d64576109d1817f0000000000000000000000000000000000000000000000000000000000000000612b49565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611a825760405163799e780f60e01b815260040160405180910390fd5b8060a0013560645f828254611a9791906139b2565b9091555050604081013515611b48576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016634ffcda8c82356040840135611aee6114f03687900387018761387f565b6040516001600160e01b031960e086901b1681526004810193909352602483019190915260448201526064015f604051808303815f87803b158015611b31575f5ffd5b505af1158015611b43573d5f5f3e3d5ffd5b505050505b606081013515610e01576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016634ffcda8c82356060840135611b9a6116853687900387018761387f565b6040516001600160e01b031960e086901b1681526004810193909352602483019190915260448201526064015b5f604051808303815f87803b158015611bde575f5ffd5b505af1158015610f24573d5f5f3e3d5ffd5b5f6001600160e01b031982166301ffc9a760e01b148061068657506001600160e01b03198216634d15eb0360e01b1492915050565b604051636c82bbbf60e11b81523060048201525f9081906001600160a01b0385169063d905777e90602401602060405180830381865afa925050508015611c89575060408051601f3d908101601f19168201909252611c8691810190613809565b60015b15611ca05783811015611c9e57600191508093505b505b604051635d043b2960e11b815260048101849052306024820181905260448201526001600160a01b0385169063ba087652906064016020604051808303815f875af1925050508015611d0f575060408051601f3d908101601f19168201909252611d0c91810190613809565b60015b611d5e57836001600160a01b03167f25bce30047860a48c9d8830dbf31873be5434f4d28f14a5808a4ea8e35d0829684604051611d4e91815260200190565b60405180910390a2506001611d61565b91505b9250929050565b5f8112611d7d57611d788161263f565b611dc4565b5f611d8a61095b83613998565b90508015611d9783613998565b829091611dc057604051630fc2324b60e11b815260048101929092526024820152604401610c06565b5050505b610e0181612d5e565b5f5f82606554611ddd9190613834565b90505f611deb610b8d610a0c565b9050808212611dff5750606555505f919050565b606581905580611e0e83613998565b611e189190613927565b949350505050565b604081015115611ee3577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a227dc41825f01518360400151611e6b85612877565b611e74866128bf565b866101000151611e849190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526084015f604051808303815f87803b158015611ecc575f5ffd5b505af1158015611ede573d5f5f3e3d5ffd5b505050505b606081015115610e01577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a227dc41825f01518360600151611f2e85612902565b611f3786612943565b866101200151611f479190613834565b6040516001600160e01b031960e087901b1681526004810194909452602484019290925260448301526064820152608401611bc7565b8281156121a1576040516333481fc960e01b81523060048201525f907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906333481fc990602401602060405180830381865afa158015611fe8573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061200c9190613809565b90506120166109d6565b61202086836139b2565b116120bc576040516330f7e76b60e21b8152600481018690526001600160a01b0385811660248301527f0000000000000000000000000000000000000000000000000000000000000000169063c3df9dac906044016020604051808303815f875af1158015612091573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120b59190613809565b915061219f565b6120c46109d6565b81101561219f575f6120d46109d6565b6120de87846139b2565b6120e89190613853565b90506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663c3df9dac6121238389613853565b6040516001600160e01b031960e084901b16815260048101919091526001600160a01b03881660248201526044016020604051808303815f875af115801561216d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121919190613809565b61219b90826139b2565b9250505b505b80156109ba576121af610e04565b6040516333481fc960e01b815230600482015282907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906333481fc990602401602060405180830381865afa158015612213573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122379190613809565b61224191906139b2565b116122d9576040516330f7e76b60e21b8152600481018290526001600160a01b0384811660248301527f0000000000000000000000000000000000000000000000000000000000000000169063c3df9dac906044016020604051808303815f875af11580156122b2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122d69190613809565b90505b808015610f245760405163093f664360e01b8152600401610c0691815260200190565b816001600160a01b03811661233057604051636427f27360e11b81526001600160a01b039091166004820152602401610c06565b50805f0361233c575050565b5f612345612753565b905081811015612388575f6123626066546001600160a01b031690565b90506001600160a01b0381161561238657612386816123818486613853565b6127c4565b505b6001600160a01b0383163014610b5d57610b5d83836123a56117cb565b6001600160a01b03169190612d8e565b5f6123be6117cb565b6001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123f9573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061241d91906139e0565b61242890600a613ae3565b6106869063ffffffff841661394e565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806124be57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166124b25f516020613b3c5f395f51905f52546001600160a01b031690565b6001600160a01b031614155b156124dc5760405163703e46dd60e11b815260040160405180910390fd5b565b610e0181612dc3565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015612541575060408051601f3d908101601f1916820190925261253e91810190613809565b60015b61256957604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610c06565b5f516020613b3c5f395f51905f52811461259957604051632a87526960e21b815260048101829052602401610c06565b610b5d8383612fad565b6064545f906125bb9083670de0b6b3a7640000613002565b61068690613998565b5f61ffff8211156125f2576040516306dfcc6560e41b81526010600482015260248101839052604401610c06565b5090565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146124dc5760405163703e46dd60e11b815260040160405180910390fd5b8060655f8282546126509190613927565b909155505050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610686565b6126886130b3565b6126906130d8565b6124dc6130e8565b6126a684848484600161312e565b6109ba57604051635274afe760e01b81526001600160a01b0385166004820152602401610c06565b5f6106866126da6117cb565b6001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015612715573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061273991906139e0565b61274490600a613ae3565b61274e9084613979565b61319b565b5f61275c6117cb565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa1580156127a0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d19190613809565b604051632d182be560e21b815260048101829052306024820181905260448201526001600160a01b0383169063b460af94906064016020604051808303815f875af1158015612815573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128399190613809565b5060325481111561285d576128556032548261088f9190613853565b5f6032555050565b8060325f82825461286e9190613853565b90915550505050565b5f610686670de0b6b3a764000061288d846131cb565b64ffffffffff1684604001516128a3919061394e565b6301e133808561010001516128b8919061394e565b9190613002565b5f6128c9826131cb565b64ffffffffff1682610140015164ffffffffff16426128e89190613853565b8361010001516128f8919061394e565b6106869190613979565b5f610686670de0b6b3a7640000612918846131cb565b64ffffffffff16846060015161292e919061394e565b6301e133808561012001516128b8919061394e565b5f61294d826131cb565b64ffffffffff1682610140015164ffffffffff164261296c9190613853565b8361012001516128f8919061394e565b604084015115612a60577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633ad2820b855f015186604001516129c788612877565b6129d0896128bf565b888a61010001516129e19190613853565b6129eb9190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526001600160a01b038416608482015260a4810186905260c4015f604051808303815f87803b158015612a49575f5ffd5b505af1158015612a5b573d5f5f3e3d5ffd5b505050505b6060840151156109ba577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633ad2820b855f01518660600151612aab88612902565b612ab489612943565b878a6101200151612ac59190613853565b612acf9190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526001600160a01b038416608482015260a4810185905260c4015f604051808303815f87803b158015612b2d575f5ffd5b505af1158015612b3f573d5f5f3e3d5ffd5b5050505050505050565b6040516333481fc960e01b81523060048201525f9081906001600160a01b038416906333481fc990602401602060405180830381865afa158015612b8f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bb39190613809565b9050805f03612bc55783915050610686565b5f612bd085836131e2565b90508060655f828254612be39190613834565b90915550612bf3905030826122fc565b80612bfc6117cb565b604051636eb1769f60e11b81523060048201526001600160a01b038781166024830152919091169063dd62ed3e90604401602060405180830381865afa158015612c48573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c6c9190613809565b1015612cee57612c7a6117cb565b60405163095ea7b360e01b81526001600160a01b03868116600483015260248201859052919091169063095ea7b3906044016020604051808303815f875af1158015612cc8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cec91906139c5565b505b60405163918344d360e01b8152600481018290523060248201526001600160a01b0385169063918344d3906044015f604051808303815f87803b158015612d33575f5ffd5b505af1158015612d45573d5f5f3e3d5ffd5b505050508085612d559190613853565b95945050505050565b6040518181527f731c439c5bae15be1344eec709967e046b4f7d3f7e37abeffc5247f448fa18bf90602001610f86565b612d9b83838360016131f1565b610b5d57604051635274afe760e01b81526001600160a01b0384166004820152602401610c06565b612dcc81613253565b5f8190505f5f826001600160a01b0316635e4458596040518163ffffffff1660e01b81526004016040805180830381865afa158015612e0d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e319190613af1565b915091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161480612e9c57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316155b7f0000000000000000000000000000000000000000000000000000000000000000839091612ef0576040516313afea8960e21b81526001600160a01b03928316600482015291166024820152604401610c06565b50507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161480612f5957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316155b7f00000000000000000000000000000000000000000000000000000000000000008290916117c3576040516313afea8960e21b81526001600160a01b03928316600482015291166024820152604401610c06565b612fb682613304565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115612ffa57610b5d8282613367565b610b7d613407565b5f5f5f61300f8686613426565b91509150815f036130335783818161302957613029613965565b04925050506130ac565b81841161304a5761304a6003851502601118613442565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150505b9392505050565b6130bb613453565b6124dc57604051631afcd79f60e31b815260040160405180910390fd5b6130e06130b3565b6124dc61346c565b6130f06130b3565b604080516080810182525f8082526020820181905291810191909152612710606090910152606680546001600160f01b03191661027160e41b179055565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f5114831661318a57838315161561317e573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b5f63ffffffff8211156125f2576040516306dfcc6560e41b81526020600482015260248101839052604401610c06565b5f8161014001518261016001516106869190613b1e565b5f8282188284100282186130ac565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f5114831661324757838315161561323b573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132b9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132dd91906137ee565b6001600160a01b031614610e015760405163d2b3d33f60e01b815260040160405180910390fd5b806001600160a01b03163b5f0361333957604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610c06565b5f516020613b3c5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f6133748484613474565b905080801561339557505f3d118061339557505f846001600160a01b03163b115b156133aa576133a2613487565b915050610686565b80156133d457604051639996b31560e01b81526001600160a01b0385166004820152602401610c06565b3d156133e7576133e26134a0565b613400565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b34156124dc5760405163b398979f60e01b815260040160405180910390fd5b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f61345c612658565b54600160401b900460ff16919050565b6124dc6130b3565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f602082840312156134bb575f5ffd5b81356001600160e01b0319811681146130ac575f5ffd5b6001600160a01b0381168114610e01575f5ffd5b8015158114610e01575f5ffd5b5f5f60408385031215613504575f5ffd5b823561350f816134d2565b9150602083013561351f816134e6565b809150509250929050565b5f610180828403121561353b575f5ffd5b50919050565b5f5f5f6101c08486031215613554575f5ffd5b833561355f816134d2565b925061356e856020860161352a565b929592945050506101a0919091013590565b634e487b7160e01b5f52604160045260245ffd5b604051610180810167ffffffffffffffff811182821017156135b8576135b8613580565b60405290565b604051601f8201601f1916810167ffffffffffffffff811182821017156135e7576135e7613580565b604052919050565b5f5f60408385031215613600575f5ffd5b823561360b816134d2565b9150602083013567ffffffffffffffff811115613626575f5ffd5b8301601f81018513613636575f5ffd5b803567ffffffffffffffff81111561365057613650613580565b613663601f8201601f19166020016135be565b818152866020838501011115613677575f5ffd5b816020840160208301375f602083830101528093505050509250929050565b5f5f604083850312156136a7575f5ffd5b82359150602083013561351f816134e6565b5f61018082840312156136ca575f5ffd5b6130ac838361352a565b5f602082840312156136e4575f5ffd5b5035919050565b5f5f604083850312156136fc575f5ffd5b50508035926020909101359150565b5f5f6040838503121561371c575f5ffd5b82359150602083013561351f816134d2565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f5f6103008385031215613775575f5ffd5b61377f848461352a565b915061378f84610180850161352a565b90509250929050565b5f5f5f5f5f61020086880312156137ad575f5ffd5b6137b7878761352a565b945061018086013593506101a086013592506101c086013591506101e08601356137e0816134d2565b809150509295509295909350565b5f602082840312156137fe575f5ffd5b81516130ac816134d2565b5f60208284031215613819575f5ffd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b8181035f83128015838313168383128216171561340057613400613820565b8181038181111561068657610686613820565b803564ffffffffff8116811461387a575f5ffd5b919050565b5f610180828403128015613891575f5ffd5b5061389a613594565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e08084013590820152610100808401359082015261012080840135908201526139076101408401613866565b61014082015261391a6101608401613866565b6101608201529392505050565b8082018281125f83128015821682158216171561394657613946613820565b505092915050565b808202811582820484141761068657610686613820565b634e487b7160e01b5f52601260045260245ffd5b5f8261399357634e487b7160e01b5f52601260045260245ffd5b500490565b5f600160ff1b82016139ac576139ac613820565b505f0390565b8082018082111561068657610686613820565b5f602082840312156139d5575f5ffd5b81516130ac816134e6565b5f602082840312156139f0575f5ffd5b815160ff811681146130ac575f5ffd5b6001815b6001841115613a3b57808504811115613a1f57613a1f613820565b6001841615613a2d57908102905b60019390931c928002613a04565b935093915050565b5f82613a5157506001610686565b81613a5d57505f610686565b8160018114613a735760028114613a7d57613a99565b6001915050610686565b60ff841115613a8e57613a8e613820565b50506001821b610686565b5060208310610133831016604e8410600b8410161715613abc575081810a610686565b613ac85f198484613a00565b805f1904821115613adb57613adb613820565b029392505050565b5f6130ac60ff841683613a43565b5f5f60408385031215613b02575f5ffd5b8251613b0d816134d2565b602084015190925061351f816134d2565b64ffffffffff82811682821603908111156106865761068661382056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca264697066735822122001467c3db5b56ef9762e1951fb6ea7a48d6eb0874dd5c1adc1581c654dd75ce364736f6c634300081e0033","opcodes":"PUSH2 0x100 PUSH1 0x40 MSTORE ADDRESS PUSH1 0x80 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x14 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x3E5A CODESIZE SUB DUP1 PUSH2 0x3E5A DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x33 SWAP2 PUSH2 0x149 JUMP JUMPDEST DUP3 DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x5C JUMPI PUSH1 0x40 MLOAD PUSH4 0x6B23CF01 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x83 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0xA0 MSTORE SWAP3 DUP4 AND PUSH1 0xC0 MSTORE POP AND PUSH1 0xE0 MSTORE POP PUSH2 0x193 JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xD3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x132 JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x132 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x15B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 MLOAD PUSH2 0x166 DUP2 PUSH2 0x135 JUMP JUMPDEST PUSH1 0x20 DUP6 ADD MLOAD SWAP1 SWAP4 POP PUSH2 0x177 DUP2 PUSH2 0x135 JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x188 DUP2 PUSH2 0x135 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0xE0 MLOAD PUSH2 0x3B91 PUSH2 0x2C9 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x41B ADD MSTORE DUP2 DUP2 PUSH2 0x473 ADD MSTORE DUP2 DUP2 PUSH2 0x1647 ADD MSTORE DUP2 DUP2 PUSH2 0x1730 ADD MSTORE DUP2 DUP2 PUSH2 0x1976 ADD MSTORE DUP2 DUP2 PUSH2 0x19AC ADD MSTORE DUP2 DUP2 PUSH2 0x1B5C ADD MSTORE DUP2 DUP2 PUSH2 0x1EEF ADD MSTORE DUP2 DUP2 PUSH2 0x21C6 ADD MSTORE DUP2 DUP2 PUSH2 0x226C ADD MSTORE DUP2 DUP2 PUSH2 0x2A6C ADD MSTORE DUP2 DUP2 PUSH2 0x2EF4 ADD MSTORE DUP2 DUP2 PUSH2 0x2F2F ADD MSTORE PUSH2 0x2F5B ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x3B8 ADD MSTORE DUP2 DUP2 PUSH2 0x3F6 ADD MSTORE DUP2 DUP2 PUSH2 0xC97 ADD MSTORE DUP2 DUP2 PUSH2 0x14B2 ADD MSTORE DUP2 DUP2 PUSH2 0x159B ADD MSTORE DUP2 DUP2 PUSH2 0x19DF ADD MSTORE DUP2 DUP2 PUSH2 0x1A15 ADD MSTORE DUP2 DUP2 PUSH2 0x1AB0 ADD MSTORE DUP2 DUP2 PUSH2 0x1E2C ADD MSTORE DUP2 DUP2 PUSH2 0x1F9B ADD MSTORE DUP2 DUP2 PUSH2 0x204B ADD MSTORE DUP2 DUP2 PUSH2 0x20F4 ADD MSTORE DUP2 DUP2 PUSH2 0x2988 ADD MSTORE DUP2 DUP2 PUSH2 0x2E37 ADD MSTORE DUP2 DUP2 PUSH2 0x2E72 ADD MSTORE PUSH2 0x2E9E ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x2F0 ADD MSTORE DUP2 DUP2 PUSH2 0x8F0 ADD MSTORE DUP2 DUP2 PUSH2 0xD89 ADD MSTORE DUP2 DUP2 PUSH2 0x1439 ADD MSTORE DUP2 DUP2 PUSH2 0x17CE ADD MSTORE DUP2 DUP2 PUSH2 0x1873 ADD MSTORE DUP2 DUP2 PUSH2 0x1A44 ADD MSTORE PUSH2 0x3255 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x2443 ADD MSTORE DUP2 DUP2 PUSH2 0x246C ADD MSTORE PUSH2 0x2601 ADD MSTORE PUSH2 0x3B91 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1FC JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x76185FF1 GT PUSH2 0x113 JUMPI DUP1 PUSH4 0xAC860F74 GT PUSH2 0x9D JUMPI DUP1 PUSH4 0xE5A6B10F GT PUSH2 0x6D JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x5E7 JUMPI DUP1 PUSH4 0xE823584A EQ PUSH2 0x5FB JUMPI DUP1 PUSH4 0xEE1F9A6A EQ PUSH2 0x60F JUMPI DUP1 PUSH4 0xF39A4BC5 EQ PUSH2 0x62E JUMPI DUP1 PUSH4 0xF79AC183 EQ PUSH2 0x642 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAC860F74 EQ PUSH2 0x54D JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x56C JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0x5A9 JUMPI DUP1 PUSH4 0xD5C6C166 EQ PUSH2 0x5C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8129FC1C GT PUSH2 0xE3 JUMPI DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x4BF JUMPI DUP1 PUSH4 0x81CED71F EQ PUSH2 0x4D3 JUMPI DUP1 PUSH4 0x97A146C0 EQ PUSH2 0x4F2 JUMPI DUP1 PUSH4 0xA0CE58B8 EQ PUSH2 0x511 JUMPI DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0x530 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x76185FF1 EQ PUSH2 0x446 JUMPI DUP1 PUSH4 0x7B83037B EQ PUSH2 0x465 JUMPI DUP1 PUSH4 0x7BB62319 EQ PUSH2 0x497 JUMPI DUP1 PUSH4 0x7D919A97 EQ PUSH2 0x4AB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D15EB03 GT PUSH2 0x194 JUMPI DUP1 PUSH4 0x50093F04 GT PUSH2 0x164 JUMPI DUP1 PUSH4 0x50093F04 EQ PUSH2 0x363 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x382 JUMPI DUP1 PUSH4 0x536C9A43 EQ PUSH2 0x396 JUMPI DUP1 PUSH4 0x536EBBFC EQ PUSH2 0x3AA JUMPI DUP1 PUSH4 0x5E445859 EQ PUSH2 0x3DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x2E2 JUMPI DUP1 PUSH4 0x4EB978A4 EQ PUSH2 0x328 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x33C JUMPI DUP1 PUSH4 0x4FE0BD1E EQ PUSH2 0x34F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1DDA2899 GT PUSH2 0x1CF JUMPI DUP1 PUSH4 0x1DDA2899 EQ PUSH2 0x287 JUMPI DUP1 PUSH4 0x26CCBD22 EQ PUSH2 0x2A6 JUMPI DUP1 PUSH4 0x2D8F892A EQ PUSH2 0x2BA JUMPI DUP1 PUSH4 0x4863C8B0 EQ PUSH2 0x2CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x200 JUMPI DUP1 PUSH4 0x13888565 EQ PUSH2 0x234 JUMPI DUP1 PUSH4 0x194448E5 EQ PUSH2 0x252 JUMPI DUP1 PUSH4 0x1A548A27 EQ PUSH2 0x273 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x20B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x21F PUSH2 0x21A CALLDATASIZE PUSH1 0x4 PUSH2 0x34AB JUMP JUMPDEST PUSH2 0x661 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 0x23F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x65 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x22B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x26C CALLDATASIZE PUSH1 0x4 PUSH2 0x34F3 JUMP JUMPDEST PUSH2 0x68C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x27E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x64 SLOAD PUSH2 0x244 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x292 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x2A1 CALLDATASIZE PUSH1 0x4 PUSH2 0x3541 JUMP JUMPDEST PUSH2 0x8E5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x9C0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x9D6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xA0C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x22B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x333 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0xA2D JUMP JUMPDEST PUSH2 0x271 PUSH2 0x34A CALLDATASIZE PUSH1 0x4 PUSH2 0x35EF JUMP JUMPDEST PUSH2 0xB62 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x35A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xB81 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x36E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x37D CALLDATASIZE PUSH1 0x4 PUSH2 0x3696 JUMP JUMPDEST PUSH2 0xB9F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x38D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xD4B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xD67 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x310 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3E7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND DUP3 MSTORE PUSH32 0x0 AND PUSH1 0x20 DUP3 ADD MSTORE ADD PUSH2 0x22B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x451 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x460 CALLDATASIZE PUSH1 0x4 PUSH2 0x36B9 JUMP JUMPDEST PUSH2 0xD7E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x470 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x310 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xE04 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x32 SLOAD PUSH2 0x244 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4CA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0xE34 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4DE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x4ED CALLDATASIZE PUSH1 0x4 PUSH2 0x36D4 JUMP JUMPDEST PUSH2 0xF2B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x50C CALLDATASIZE PUSH1 0x4 PUSH2 0x36EB JUMP JUMPDEST PUSH2 0xF91 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x51C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x52B CALLDATASIZE PUSH1 0x4 PUSH2 0x370B JUMP JUMPDEST PUSH2 0x10F4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x310 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x558 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x567 CALLDATASIZE PUSH1 0x4 PUSH2 0x36D4 JUMP JUMPDEST PUSH2 0x1208 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x577 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x59C PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x22B SWAP2 SWAP1 PUSH2 0x372E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x5C3 CALLDATASIZE PUSH1 0x4 PUSH2 0x36D4 JUMP JUMPDEST PUSH2 0x138E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x5E2 CALLDATASIZE PUSH1 0x4 PUSH2 0x3763 JUMP JUMPDEST PUSH2 0x142E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x310 PUSH2 0x17CB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x606 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x184C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x61A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x629 CALLDATASIZE PUSH1 0x4 PUSH2 0x3798 JUMP JUMPDEST PUSH2 0x1868 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x639 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x1936 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x64D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x65C CALLDATASIZE PUSH1 0x4 PUSH2 0x36B9 JUMP JUMPDEST PUSH2 0x1A39 JUMP JUMPDEST PUSH0 PUSH2 0x66B DUP3 PUSH2 0x1BF0 JUMP JUMPDEST DUP1 PUSH2 0x686 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xF7E4B01B PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x696 PUSH2 0x17CB JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO DUP1 PUSH2 0x71E JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x38D52E0F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x6EF 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 0x713 SWAP2 SWAP1 PUSH2 0x37EE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x73B JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x74E PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0x863 JUMPI 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 DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x7A4 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 0x7C8 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x861 JUMPI DUP6 ISZERO PUSH2 0x7E9 JUMPI PUSH2 0x7E0 DUP4 DUP3 PUSH2 0x1C25 JUMP JUMPDEST SWAP6 POP SWAP2 POP PUSH2 0x861 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x83A 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 0x85E SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP2 POP JUMPDEST POP JUMPDEST PUSH1 0x66 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND OR SWAP1 SSTORE PUSH2 0x894 PUSH1 0x32 SLOAD DUP3 PUSH2 0x88F SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH2 0x1D68 JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE PUSH1 0x40 MLOAD DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND SWAP2 SWAP1 DUP5 AND SWAP1 PUSH32 0x243F9479BBDAF9F3395E726975293EE3724F3819F4322A018C98AFB9DE70A1E0 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x92E JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0xA0 ADD CALLDATALOAD PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x943 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH0 SWAP1 POP PUSH2 0x960 PUSH2 0x95B PUSH1 0xA0 DUP6 ADD CALLDATALOAD DUP5 PUSH2 0x3834 JUMP JUMPDEST PUSH2 0x1DCD JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x995 JUMPI PUSH2 0x97F PUSH2 0x97A CALLDATASIZE DUP6 SWAP1 SUB DUP6 ADD DUP6 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x1E20 JUMP JUMPDEST PUSH2 0x990 DUP2 DUP6 PUSH0 DUP7 PUSH1 0x40 ADD CALLDATALOAD GT PUSH2 0x1F7D JUMP JUMPDEST PUSH2 0x9A7 JUMP JUMPDEST PUSH2 0x9A7 PUSH2 0x97A CALLDATASIZE DUP6 SWAP1 SUB DUP6 ADD DUP6 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x9BA DUP5 PUSH2 0x9B5 DUP4 DUP6 PUSH2 0x3853 JUMP JUMPDEST PUSH2 0x22FC JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x65 SLOAD PUSH1 0x64 SLOAD PUSH2 0x9D1 SWAP2 SWAP1 PUSH2 0x3927 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x66 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0xA06 JUMPI PUSH1 0x66 SLOAD PUSH2 0x9D1 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x23B5 JUMP JUMPDEST POP PUSH0 NOT SWAP1 JUMP JUMPDEST PUSH1 0x66 SLOAD PUSH0 SWAP1 PUSH2 0x9D1 SWAP1 PUSH6 0x5AF3107A4000 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x394E JUMP JUMPDEST PUSH0 PUSH2 0xA40 PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xA69 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT 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 DUP4 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xAB5 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 0xAD9 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAF7 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB12 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 0xB36 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x32 SLOAD DUP3 PUSH2 0xB47 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0xB5D JUMPI PUSH1 0x32 DUP3 SWAP1 SSTORE PUSH2 0xB5D DUP2 PUSH2 0x1D68 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xB6A PUSH2 0x2438 JUMP JUMPDEST PUSH2 0xB73 DUP3 PUSH2 0x24DE JUMP JUMPDEST PUSH2 0xB7D DUP3 DUP3 PUSH2 0x24E7 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0xB92 PUSH2 0xB8D PUSH2 0xA0C JUMP JUMPDEST PUSH2 0x25A3 JUMP JUMPDEST PUSH1 0x65 SLOAD PUSH2 0x9D1 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH0 PUSH2 0xBB8 PUSH2 0xBB3 PUSH6 0x5AF3107A4000 DUP6 PUSH2 0x3979 JUMP JUMPDEST PUSH2 0x25C4 JUMP JUMPDEST SWAP1 POP PUSH8 0xDE0B6B3A7640000 DUP4 GT ISZERO DUP1 ISZERO PUSH2 0xBE4 JUMPI POP DUP3 PUSH2 0xBE2 PUSH6 0x5AF3107A4000 PUSH2 0xFFFF DUP5 AND PUSH2 0x394E JUMP JUMPDEST EQ JUMPDEST DUP4 SWAP1 PUSH2 0xC0F JUMPI PUSH1 0x40 MLOAD PUSH4 0x46C20AB7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC06 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH0 PUSH2 0xC1A DUP5 PUSH2 0x25A3 JUMP JUMPDEST SWAP1 POP DUP3 ISZERO DUP1 ISZERO PUSH2 0xC2B JUMPI POP DUP1 PUSH1 0x65 SLOAD SLT JUMPDEST ISZERO PUSH2 0xC67 JUMPI PUSH1 0x65 SLOAD PUSH2 0xC3C SWAP1 PUSH2 0x3998 JUMP JUMPDEST PUSH2 0xC45 DUP3 PUSH2 0x3998 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x287223F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x65 SLOAD SLT ISZERO PUSH2 0xCC6 JUMPI DUP2 PUSH1 0x65 SLOAD PUSH2 0xC7F SWAP1 PUSH2 0x3998 JUMP JUMPDEST PUSH2 0xC89 SWAP2 SWAP1 PUSH2 0x3927 JUMP JUMPDEST PUSH1 0x65 DUP4 SWAP1 SSTORE SWAP1 POP PUSH2 0xCC6 DUP2 ADDRESS PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO PUSH2 0x1F7D JUMP JUMPDEST PUSH1 0x66 SLOAD PUSH32 0x5B2441044BD7B1320018E9CF93F7A9A26D14DB096298500121B8370AFF51133D SWAP1 PUSH2 0xD07 SWAP1 PUSH6 0x5AF3107A4000 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x394E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP9 SWAP1 MSTORE DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP PUSH1 0x66 DUP1 SLOAD PUSH2 0xFFFF SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH2 0xFFFF PUSH1 0xE0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD54 PUSH2 0x25F6 JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x3B3C PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x65 SLOAD SLT ISZERO PUSH2 0xD77 JUMPI POP PUSH0 SWAP1 JUMP JUMPDEST POP PUSH1 0x65 SLOAD SWAP1 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xDC7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xA0 ADD CALLDATALOAD PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xDDC SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xDEF SWAP1 POP PUSH1 0xA0 DUP3 ADD CALLDATALOAD PUSH2 0x263F JUMP JUMPDEST PUSH2 0xE01 PUSH2 0x97A CALLDATASIZE DUP4 SWAP1 SUB DUP4 ADD DUP4 PUSH2 0x387F JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x66 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0xA06 JUMPI PUSH1 0x66 SLOAD PUSH2 0x9D1 SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x23B5 JUMP JUMPDEST PUSH0 PUSH2 0xE3D PUSH2 0x2658 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0xE64 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0xE80 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xE8E JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xEAC JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0xED6 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0xEDE PUSH2 0x2680 JUMP JUMPDEST DUP4 ISZERO PUSH2 0xF24 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0xF34 DUP2 PUSH2 0x263F JUMP JUMPDEST PUSH2 0xF53 CALLER ADDRESS DUP4 PUSH2 0xF42 PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x2698 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE PUSH32 0xD60D524F1CAE273480BB0A4DDFB992B6AC0B61C8E12FFBE2E4E31463F9E90199 SWAP2 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH0 NOT DUP3 EQ PUSH2 0x1043 JUMPI PUSH32 0x1366686786A1D0CDE83E2E2241A477FCF29662506A51F052F72E47B15729BF0B PUSH2 0xFC2 PUSH2 0x9D6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP6 SWAP1 MSTORE PUSH0 SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0xFE9 DUP3 PUSH2 0x26CE JUMP JUMPDEST PUSH1 0x66 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xA0 SHL NOT AND PUSH1 0x1 PUSH1 0xA0 SHL PUSH4 0xFFFFFFFF SWAP4 DUP5 AND DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP2 DUP3 SWAP1 SSTORE DUP5 SWAP3 PUSH2 0x101E SWAP3 SWAP2 SWAP1 SWAP2 DIV AND PUSH2 0x23B5 JUMP JUMPDEST EQ DUP3 SWAP1 PUSH2 0x1041 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A8FD66F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC06 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP JUMPDEST PUSH0 NOT DUP2 EQ PUSH2 0xB7D JUMPI PUSH32 0x1366686786A1D0CDE83E2E2241A477FCF29662506A51F052F72E47B15729BF0B PUSH2 0x1074 PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP5 SWAP1 MSTORE PUSH1 0x1 SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0x109C DUP2 PUSH2 0x26CE JUMP JUMPDEST PUSH1 0x66 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xC0 SHL NOT AND PUSH1 0x1 PUSH1 0xC0 SHL PUSH4 0xFFFFFFFF SWAP4 DUP5 AND DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP2 DUP3 SWAP1 SSTORE DUP4 SWAP3 PUSH2 0x10D1 SWAP3 SWAP2 SWAP1 SWAP2 DIV AND PUSH2 0x23B5 JUMP JUMPDEST EQ DUP2 SWAP1 PUSH2 0xB5D JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A8FD66F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC06 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1129 JUMPI PUSH1 0x40 MLOAD PUSH4 0x8EABA6F9 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 0xC06 JUMP JUMPDEST POP PUSH0 PUSH2 0x113D PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1153 JUMPI PUSH2 0x1153 PUSH2 0xA2D JUMP JUMPDEST PUSH0 NOT DUP4 SUB PUSH2 0x1175 JUMPI PUSH0 PUSH1 0x65 SLOAD SGT PUSH2 0x116B JUMPI POP PUSH0 PUSH2 0x686 JUMP JUMPDEST PUSH1 0x65 SLOAD SWAP3 POP PUSH2 0x11A7 JUMP JUMPDEST PUSH1 0x65 SLOAD DUP4 SWAP1 DUP1 DUP3 SGT ISZERO PUSH2 0x11A4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x241B5227 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x65 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x11B8 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x11C8 SWAP1 POP DUP3 DUP5 PUSH2 0x22FC JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP6 SWAP1 MSTORE PUSH32 0xD60D524F1CAE273480BB0A4DDFB992B6AC0B61C8E12FFBE2E4E31463F9E90199 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x121B PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1244 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x124D PUSH2 0x2753 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x125F JUMPI DUP1 SWAP3 POP PUSH2 0x128E JUMP JUMPDEST DUP3 DUP2 DUP1 DUP3 GT ISZERO PUSH2 0x128B JUMPI PUSH1 0x40 MLOAD PUSH4 0x531309FB PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x129F SWAP2 SWAP1 PUSH2 0x39B2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x12AD SWAP1 POP PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x12FB 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 0x131F SWAP2 SWAP1 PUSH2 0x39C5 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x136A 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 0x9BA SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH0 PUSH2 0x1397 PUSH2 0xA2D JUMP JUMPDEST PUSH0 PUSH2 0x13AA PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x141D JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13F6 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 0x141A SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP3 POP JUMPDEST PUSH2 0x1427 DUP2 DUP5 PUSH2 0x27C4 JUMP JUMPDEST POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x1477 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1489 PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP4 ADD CALLDATALOAD PUSH2 0x3853 JUMP JUMPDEST PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1499 SWAP2 SWAP1 PUSH2 0x39B2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD ISZERO PUSH2 0x1587 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xA227DC41 DUP4 CALLDATALOAD PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x14F5 PUSH2 0x14F0 CALLDATASIZE DUP9 SWAP1 SUB DUP9 ADD DUP9 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x2877 JUMP JUMPDEST PUSH2 0x150C PUSH2 0x1507 CALLDATASIZE DUP10 SWAP1 SUB DUP10 ADD DUP10 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x28BF JUMP JUMPDEST PUSH2 0x151E PUSH2 0x1507 CALLDATASIZE DUP10 SWAP1 SUB DUP10 ADD DUP10 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x1528 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1570 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1582 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x40 DUP2 ADD CALLDATALOAD ISZERO PUSH2 0x1633 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x4FFCDA8C DUP3 CALLDATALOAD PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x15D9 PUSH2 0x14F0 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x24 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x161C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x162E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP3 ADD CALLDATALOAD ISZERO PUSH2 0x171C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xA227DC41 DUP4 CALLDATALOAD PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x168A PUSH2 0x1685 CALLDATASIZE DUP9 SWAP1 SUB DUP9 ADD DUP9 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x2902 JUMP JUMPDEST PUSH2 0x16A1 PUSH2 0x169C CALLDATASIZE DUP10 SWAP1 SUB DUP10 ADD DUP10 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x2943 JUMP JUMPDEST PUSH2 0x16B3 PUSH2 0x169C CALLDATASIZE DUP10 SWAP1 SUB DUP10 ADD DUP10 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x16BD SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1705 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1717 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP2 ADD CALLDATALOAD ISZERO PUSH2 0xB7D JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x4FFCDA8C DUP3 CALLDATALOAD PUSH1 0x60 DUP5 ADD CALLDATALOAD PUSH2 0x176E PUSH2 0x1685 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x24 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x17B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x17C3 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1828 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 0x9D1 SWAP2 SWAP1 PUSH2 0x37EE JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x65 SLOAD SLT ISZERO PUSH2 0x1863 JUMPI PUSH1 0x65 SLOAD PUSH2 0x9D1 SWAP1 PUSH2 0x3998 JUMP JUMPDEST POP PUSH0 SWAP1 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x18B1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 PUSH1 0xA0 ADD CALLDATALOAD PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x18C6 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH0 SWAP1 POP PUSH2 0x18DE PUSH2 0x95B PUSH1 0xA0 DUP9 ADD CALLDATALOAD DUP8 PUSH2 0x3834 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x1916 JUMPI PUSH2 0x1900 PUSH2 0x18F8 CALLDATASIZE DUP9 SWAP1 SUB DUP9 ADD DUP9 PUSH2 0x387F JUMP JUMPDEST DUP6 DUP6 DUP6 PUSH2 0x297C JUMP JUMPDEST PUSH2 0x1911 DUP2 DUP4 PUSH0 DUP10 PUSH1 0x40 ADD CALLDATALOAD GT PUSH2 0x1F7D JUMP JUMPDEST PUSH2 0x1928 JUMP JUMPDEST PUSH2 0x1928 PUSH2 0x18F8 CALLDATASIZE DUP9 SWAP1 SUB DUP9 ADD DUP9 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x17C3 DUP3 PUSH2 0x9B5 DUP4 DUP9 PUSH2 0x3853 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x194A PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1960 JUMPI PUSH2 0x1960 PUSH2 0xA2D JUMP JUMPDEST PUSH2 0x1968 PUSH2 0xB81 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x19A1 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x19D3 JUMPI PUSH2 0x19D0 DUP2 PUSH32 0x0 PUSH2 0x2B49 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x1A0A JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0xD64 JUMPI PUSH2 0x9D1 DUP2 PUSH32 0x0 PUSH2 0x2B49 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x1A82 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xA0 ADD CALLDATALOAD PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1A97 SWAP2 SWAP1 PUSH2 0x39B2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP2 ADD CALLDATALOAD ISZERO PUSH2 0x1B48 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x4FFCDA8C DUP3 CALLDATALOAD PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x1AEE PUSH2 0x14F0 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x24 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1B31 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1B43 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP2 ADD CALLDATALOAD ISZERO PUSH2 0xE01 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x4FFCDA8C DUP3 CALLDATALOAD PUSH1 0x60 DUP5 ADD CALLDATALOAD PUSH2 0x1B9A PUSH2 0x1685 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x24 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1BDE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xF24 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x686 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6C82BBBF PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xD905777E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1C89 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1C86 SWAP2 DUP2 ADD SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x1 JUMPDEST ISZERO PUSH2 0x1CA0 JUMPI DUP4 DUP2 LT ISZERO PUSH2 0x1C9E JUMPI PUSH1 0x1 SWAP2 POP DUP1 SWAP4 POP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1D0F JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1D0C SWAP2 DUP2 ADD SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1D5E JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x25BCE30047860A48C9D8830DBF31873BE5434F4D28F14A5808A4EA8E35D08296 DUP5 PUSH1 0x40 MLOAD PUSH2 0x1D4E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 PUSH2 0x1D61 JUMP JUMPDEST SWAP2 POP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SLT PUSH2 0x1D7D JUMPI PUSH2 0x1D78 DUP2 PUSH2 0x263F JUMP JUMPDEST PUSH2 0x1DC4 JUMP JUMPDEST PUSH0 PUSH2 0x1D8A PUSH2 0x95B DUP4 PUSH2 0x3998 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x1D97 DUP4 PUSH2 0x3998 JUMP JUMPDEST DUP3 SWAP1 SWAP2 PUSH2 0x1DC0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFC2324B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP POP POP JUMPDEST PUSH2 0xE01 DUP2 PUSH2 0x2D5E JUMP JUMPDEST PUSH0 PUSH0 DUP3 PUSH1 0x65 SLOAD PUSH2 0x1DDD SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1DEB PUSH2 0xB8D PUSH2 0xA0C JUMP JUMPDEST SWAP1 POP DUP1 DUP3 SLT PUSH2 0x1DFF JUMPI POP PUSH1 0x65 SSTORE POP PUSH0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x65 DUP2 SWAP1 SSTORE DUP1 PUSH2 0x1E0E DUP4 PUSH2 0x3998 JUMP JUMPDEST PUSH2 0x1E18 SWAP2 SWAP1 PUSH2 0x3927 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD ISZERO PUSH2 0x1EE3 JUMPI PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xA227DC41 DUP3 PUSH0 ADD MLOAD DUP4 PUSH1 0x40 ADD MLOAD PUSH2 0x1E6B DUP6 PUSH2 0x2877 JUMP JUMPDEST PUSH2 0x1E74 DUP7 PUSH2 0x28BF JUMP JUMPDEST DUP7 PUSH2 0x100 ADD MLOAD PUSH2 0x1E84 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1ECC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1EDE JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP2 ADD MLOAD ISZERO PUSH2 0xE01 JUMPI PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xA227DC41 DUP3 PUSH0 ADD MLOAD DUP4 PUSH1 0x60 ADD MLOAD PUSH2 0x1F2E DUP6 PUSH2 0x2902 JUMP JUMPDEST PUSH2 0x1F37 DUP7 PUSH2 0x2943 JUMP JUMPDEST DUP7 PUSH2 0x120 ADD MLOAD PUSH2 0x1F47 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1BC7 JUMP JUMPDEST DUP3 DUP2 ISZERO PUSH2 0x21A1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x33481FC9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x33481FC9 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1FE8 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 0x200C SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP PUSH2 0x2016 PUSH2 0x9D6 JUMP JUMPDEST PUSH2 0x2020 DUP7 DUP4 PUSH2 0x39B2 JUMP JUMPDEST GT PUSH2 0x20BC JUMPI PUSH1 0x40 MLOAD PUSH4 0x30F7E76B PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH32 0x0 AND SWAP1 PUSH4 0xC3DF9DAC SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2091 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 0x20B5 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP2 POP PUSH2 0x219F JUMP JUMPDEST PUSH2 0x20C4 PUSH2 0x9D6 JUMP JUMPDEST DUP2 LT ISZERO PUSH2 0x219F JUMPI PUSH0 PUSH2 0x20D4 PUSH2 0x9D6 JUMP JUMPDEST PUSH2 0x20DE DUP8 DUP5 PUSH2 0x39B2 JUMP JUMPDEST PUSH2 0x20E8 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xC3DF9DAC PUSH2 0x2123 DUP4 DUP10 PUSH2 0x3853 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x216D 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 0x2191 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH2 0x219B SWAP1 DUP3 PUSH2 0x39B2 JUMP JUMPDEST SWAP3 POP POP JUMPDEST POP JUMPDEST DUP1 ISZERO PUSH2 0x9BA JUMPI PUSH2 0x21AF PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x33481FC9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE DUP3 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x33481FC9 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2213 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 0x2237 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH2 0x2241 SWAP2 SWAP1 PUSH2 0x39B2 JUMP JUMPDEST GT PUSH2 0x22D9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x30F7E76B PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH32 0x0 AND SWAP1 PUSH4 0xC3DF9DAC SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x22B2 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 0x22D6 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP1 DUP1 ISZERO PUSH2 0xF24 JUMPI PUSH1 0x40 MLOAD PUSH4 0x93F6643 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC06 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x2330 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6427F273 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST POP DUP1 PUSH0 SUB PUSH2 0x233C JUMPI POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2345 PUSH2 0x2753 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x2388 JUMPI PUSH0 PUSH2 0x2362 PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x2386 JUMPI PUSH2 0x2386 DUP2 PUSH2 0x2381 DUP5 DUP7 PUSH2 0x3853 JUMP JUMPDEST PUSH2 0x27C4 JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ADDRESS EQ PUSH2 0xB5D JUMPI PUSH2 0xB5D DUP4 DUP4 PUSH2 0x23A5 PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x2D8E JUMP JUMPDEST PUSH0 PUSH2 0x23BE PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x23F9 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 0x241D SWAP2 SWAP1 PUSH2 0x39E0 JUMP JUMPDEST PUSH2 0x2428 SWAP1 PUSH1 0xA PUSH2 0x3AE3 JUMP JUMPDEST PUSH2 0x686 SWAP1 PUSH4 0xFFFFFFFF DUP5 AND PUSH2 0x394E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x24BE JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x24B2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x3B3C PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x24DC JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0xE01 DUP2 PUSH2 0x2DC3 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2541 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x253E SWAP2 DUP2 ADD SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2569 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x3B3C PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x2599 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH2 0xB5D DUP4 DUP4 PUSH2 0x2FAD JUMP JUMPDEST PUSH1 0x64 SLOAD PUSH0 SWAP1 PUSH2 0x25BB SWAP1 DUP4 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3002 JUMP JUMPDEST PUSH2 0x686 SWAP1 PUSH2 0x3998 JUMP JUMPDEST PUSH0 PUSH2 0xFFFF DUP3 GT ISZERO PUSH2 0x25F2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x10 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x24DC JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x65 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x2650 SWAP2 SWAP1 PUSH2 0x3927 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x686 JUMP JUMPDEST PUSH2 0x2688 PUSH2 0x30B3 JUMP JUMPDEST PUSH2 0x2690 PUSH2 0x30D8 JUMP JUMPDEST PUSH2 0x24DC PUSH2 0x30E8 JUMP JUMPDEST PUSH2 0x26A6 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x312E JUMP JUMPDEST PUSH2 0x9BA JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 PUSH2 0x686 PUSH2 0x26DA PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2715 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 0x2739 SWAP2 SWAP1 PUSH2 0x39E0 JUMP JUMPDEST PUSH2 0x2744 SWAP1 PUSH1 0xA PUSH2 0x3AE3 JUMP JUMPDEST PUSH2 0x274E SWAP1 DUP5 PUSH2 0x3979 JUMP JUMPDEST PUSH2 0x319B JUMP JUMPDEST PUSH0 PUSH2 0x275C PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 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 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x27A0 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 0x9D1 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2815 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 0x2839 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST POP PUSH1 0x32 SLOAD DUP2 GT ISZERO PUSH2 0x285D JUMPI PUSH2 0x2855 PUSH1 0x32 SLOAD DUP3 PUSH2 0x88F SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE POP POP JUMP JUMPDEST DUP1 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x286E SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x686 PUSH8 0xDE0B6B3A7640000 PUSH2 0x288D DUP5 PUSH2 0x31CB JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP5 PUSH1 0x40 ADD MLOAD PUSH2 0x28A3 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH4 0x1E13380 DUP6 PUSH2 0x100 ADD MLOAD PUSH2 0x28B8 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x3002 JUMP JUMPDEST PUSH0 PUSH2 0x28C9 DUP3 PUSH2 0x31CB JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x28E8 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST DUP4 PUSH2 0x100 ADD MLOAD PUSH2 0x28F8 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH2 0x686 SWAP2 SWAP1 PUSH2 0x3979 JUMP JUMPDEST PUSH0 PUSH2 0x686 PUSH8 0xDE0B6B3A7640000 PUSH2 0x2918 DUP5 PUSH2 0x31CB JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP5 PUSH1 0x60 ADD MLOAD PUSH2 0x292E SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH4 0x1E13380 DUP6 PUSH2 0x120 ADD MLOAD PUSH2 0x28B8 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH0 PUSH2 0x294D DUP3 PUSH2 0x31CB JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x296C SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST DUP4 PUSH2 0x120 ADD MLOAD PUSH2 0x28F8 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH1 0x40 DUP5 ADD MLOAD ISZERO PUSH2 0x2A60 JUMPI PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3AD2820B DUP6 PUSH0 ADD MLOAD DUP7 PUSH1 0x40 ADD MLOAD PUSH2 0x29C7 DUP9 PUSH2 0x2877 JUMP JUMPDEST PUSH2 0x29D0 DUP10 PUSH2 0x28BF JUMP JUMPDEST DUP9 DUP11 PUSH2 0x100 ADD MLOAD PUSH2 0x29E1 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST PUSH2 0x29EB SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xC4 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2A49 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2A5B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP5 ADD MLOAD ISZERO PUSH2 0x9BA JUMPI PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3AD2820B DUP6 PUSH0 ADD MLOAD DUP7 PUSH1 0x60 ADD MLOAD PUSH2 0x2AAB DUP9 PUSH2 0x2902 JUMP JUMPDEST PUSH2 0x2AB4 DUP10 PUSH2 0x2943 JUMP JUMPDEST DUP8 DUP11 PUSH2 0x120 ADD MLOAD PUSH2 0x2AC5 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST PUSH2 0x2ACF SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xC4 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2B2D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2B3F JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x33481FC9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x33481FC9 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2B8F 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 0x2BB3 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP DUP1 PUSH0 SUB PUSH2 0x2BC5 JUMPI DUP4 SWAP2 POP POP PUSH2 0x686 JUMP JUMPDEST PUSH0 PUSH2 0x2BD0 DUP6 DUP4 PUSH2 0x31E2 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x65 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x2BE3 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x2BF3 SWAP1 POP ADDRESS DUP3 PUSH2 0x22FC JUMP JUMPDEST DUP1 PUSH2 0x2BFC PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6EB1769F PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2C48 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 0x2C6C SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST LT ISZERO PUSH2 0x2CEE JUMPI PUSH2 0x2C7A PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2CC8 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 0x2CEC SWAP2 SWAP1 PUSH2 0x39C5 JUMP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x918344D3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x918344D3 SWAP1 PUSH1 0x44 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2D33 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2D45 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP DUP1 DUP6 PUSH2 0x2D55 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x731C439C5BAE15BE1344EEC709967E046B4F7D3F7E37ABEFFC5247F448FA18BF SWAP1 PUSH1 0x20 ADD PUSH2 0xF86 JUMP JUMPDEST PUSH2 0x2D9B DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x31F1 JUMP JUMPDEST PUSH2 0xB5D JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH2 0x2DCC DUP2 PUSH2 0x3253 JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH0 PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x5E445859 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2E0D 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 0x2E31 SWAP2 SWAP1 PUSH2 0x3AF1 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2E9C JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO JUMPDEST PUSH32 0x0 DUP4 SWAP1 SWAP2 PUSH2 0x2EF0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x13AFEA89 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2F59 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO JUMPDEST PUSH32 0x0 DUP3 SWAP1 SWAP2 PUSH2 0x17C3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x13AFEA89 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH2 0x2FB6 DUP3 PUSH2 0x3304 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x2FFA JUMPI PUSH2 0xB5D DUP3 DUP3 PUSH2 0x3367 JUMP JUMPDEST PUSH2 0xB7D PUSH2 0x3407 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x300F DUP7 DUP7 PUSH2 0x3426 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x3033 JUMPI DUP4 DUP2 DUP2 PUSH2 0x3029 JUMPI PUSH2 0x3029 PUSH2 0x3965 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x30AC JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x304A JUMPI PUSH2 0x304A PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x3442 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x30BB PUSH2 0x3453 JUMP JUMPDEST PUSH2 0x24DC JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x30E0 PUSH2 0x30B3 JUMP JUMPDEST PUSH2 0x24DC PUSH2 0x346C JUMP JUMPDEST PUSH2 0x30F0 PUSH2 0x30B3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x2710 PUSH1 0x60 SWAP1 SWAP2 ADD MSTORE PUSH1 0x66 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF0 SHL SUB NOT AND PUSH2 0x271 PUSH1 0xE4 SHL OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x318A JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x317E JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP3 GT ISZERO PUSH2 0x25F2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x140 ADD MLOAD DUP3 PUSH2 0x160 ADD MLOAD PUSH2 0x686 SWAP2 SWAP1 PUSH2 0x3B1E JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0x30AC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x3247 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x323B JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x32B9 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 0x32DD SWAP2 SWAP1 PUSH2 0x37EE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE01 JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x3339 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x3B3C PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x3374 DUP5 DUP5 PUSH2 0x3474 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x3395 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x3395 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x33AA JUMPI PUSH2 0x33A2 PUSH2 0x3487 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x686 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x33D4 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 0xC06 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x33E7 JUMPI PUSH2 0x33E2 PUSH2 0x34A0 JUMP JUMPDEST PUSH2 0x3400 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x24DC JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 PUSH2 0x345C PUSH2 0x2658 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x24DC PUSH2 0x30B3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x34BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x30AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE01 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xE01 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3504 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x350F DUP2 PUSH2 0x34D2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x351F DUP2 PUSH2 0x34E6 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x353B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1C0 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3554 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x355F DUP2 PUSH2 0x34D2 JUMP JUMPDEST SWAP3 POP PUSH2 0x356E DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x352A JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH2 0x1A0 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x35B8 JUMPI PUSH2 0x35B8 PUSH2 0x3580 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x35E7 JUMPI PUSH2 0x35E7 PUSH2 0x3580 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3600 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x360B DUP2 PUSH2 0x34D2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3626 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x3636 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3650 JUMPI PUSH2 0x3650 PUSH2 0x3580 JUMP JUMPDEST PUSH2 0x3663 PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x35BE JUMP JUMPDEST DUP2 DUP2 MSTORE DUP7 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x3677 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 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x36A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x351F DUP2 PUSH2 0x34E6 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x36CA JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x30AC DUP4 DUP4 PUSH2 0x352A JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x36E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x36FC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP1 CALLDATALOAD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x371C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x351F DUP2 PUSH2 0x34D2 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 PUSH0 PUSH0 PUSH2 0x300 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3775 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x377F DUP5 DUP5 PUSH2 0x352A JUMP JUMPDEST SWAP2 POP PUSH2 0x378F DUP5 PUSH2 0x180 DUP6 ADD PUSH2 0x352A JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x200 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x37AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x37B7 DUP8 DUP8 PUSH2 0x352A JUMP JUMPDEST SWAP5 POP PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP4 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH2 0x1C0 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH2 0x1E0 DUP7 ADD CALLDATALOAD PUSH2 0x37E0 DUP2 PUSH2 0x34D2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x37FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x30AC DUP2 PUSH2 0x34D2 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3819 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD 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 PUSH0 DUP4 SLT DUP1 ISZERO DUP4 DUP4 SGT AND DUP4 DUP4 SLT DUP3 AND OR ISZERO PUSH2 0x3400 JUMPI PUSH2 0x3400 PUSH2 0x3820 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x3820 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x387A JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT DUP1 ISZERO PUSH2 0x3891 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x389A PUSH2 0x3594 JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x3907 PUSH2 0x140 DUP5 ADD PUSH2 0x3866 JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x391A PUSH2 0x160 DUP5 ADD PUSH2 0x3866 JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x3946 JUMPI PUSH2 0x3946 PUSH2 0x3820 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x3820 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH2 0x3993 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x39AC JUMPI PUSH2 0x39AC PUSH2 0x3820 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x3820 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x39D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x30AC DUP2 PUSH2 0x34E6 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x39F0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x30AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x3A3B JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x3A1F JUMPI PUSH2 0x3A1F PUSH2 0x3820 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x3A2D JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x3A04 JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x3A51 JUMPI POP PUSH1 0x1 PUSH2 0x686 JUMP JUMPDEST DUP2 PUSH2 0x3A5D JUMPI POP PUSH0 PUSH2 0x686 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x3A73 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x3A7D JUMPI PUSH2 0x3A99 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x686 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x3A8E JUMPI PUSH2 0x3A8E PUSH2 0x3820 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x686 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x3ABC JUMPI POP DUP2 DUP2 EXP PUSH2 0x686 JUMP JUMPDEST PUSH2 0x3AC8 PUSH0 NOT DUP5 DUP5 PUSH2 0x3A00 JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x3ADB JUMPI PUSH2 0x3ADB PUSH2 0x3820 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x30AC PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x3A43 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3B02 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x3B0D DUP2 PUSH2 0x34D2 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x351F DUP2 PUSH2 0x34D2 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x3820 JUMP INVALID CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCA264697066735822122001 CHAINID PUSH29 0x3DB5B56EF9762E1951FB6EA7A48D6EB0874DD5C1ADC1581C654DD75CE3 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"1321:28111:26:-:0;;;1084:4:76;1041:48;;7548:161:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7633:11;;-1:-1:-1;;;;;1540:34:25;;1536:65;;1583:18;;-1:-1:-1;;;1583:18:25;;;;;;;;;;;1536:65;1607:22;:20;:22::i;:::-;-1:-1:-1;;;;;1635:25:25;;;;;7652:23:26;;::::1;;::::0;-1:-1:-1;7681:23:26::1;;::::0;-1:-1:-1;1321:28111:26;;7709:422:75;3147:66;7898:15;;;;;;;7894:76;;;7936:23;;-1:-1:-1;;;7936:23:75;;;;;;;;;;;7894:76;7983:14;;-1:-1:-1;;;;;7983:14:75;;;:34;7979:146;;8033:33;;-1:-1:-1;;;;;;8033:33:75;-1:-1:-1;;;;;8033:33:75;;;;;8085:29;;925:50:125;;;8085:29:75;;913:2:125;898:18;8085:29:75;;;;;;;7979:146;7758:373;7709:422::o;14:144:125:-;-1:-1:-1;;;;;102:31:125;;92:42;;82:70;;148:1;145;138:12;163:613;306:6;314;322;375:2;363:9;354:7;350:23;346:32;343:52;;;391:1;388;381:12;343:52;423:9;417:16;442:44;480:5;442:44;:::i;:::-;555:2;540:18;;534:25;505:5;;-1:-1:-1;568:46:125;534:25;568:46;:::i;:::-;685:2;670:18;;664:25;633:7;;-1:-1:-1;698:46:125;664:25;698:46;:::i;:::-;763:7;753:17;;;163:613;;;;;:::o;781:200::-;1321:28111:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@UPGRADE_INTERFACE_VERSION_23454":{"entryPoint":null,"id":23454,"parameterSlots":0,"returnSlots":0},"@__PolicyPoolComponent_init_11015":{"entryPoint":13420,"id":11015,"parameterSlots":0,"returnSlots":0},"@__PremiumsAccount_init_11295":{"entryPoint":9856,"id":11295,"parameterSlots":0,"returnSlots":0},"@__PremiumsAccount_init_unchained_11315":{"entryPoint":12520,"id":11315,"parameterSlots":0,"returnSlots":0},"@__Reserve_init_12929":{"entryPoint":12504,"id":12929,"parameterSlots":0,"returnSlots":0},"@_authorizeUpgrade_11026":{"entryPoint":9438,"id":11026,"parameterSlots":1,"returnSlots":0},"@_balance_13308":{"entryPoint":10067,"id":13308,"parameterSlots":0,"returnSlots":1},"@_borrowFromEtk_12020":{"entryPoint":8061,"id":12020,"parameterSlots":3,"returnSlots":0},"@_checkInitializing_23342":{"entryPoint":12467,"id":23342,"parameterSlots":0,"returnSlots":0},"@_checkNonPayable_23119":{"entryPoint":13319,"id":23119,"parameterSlots":0,"returnSlots":0},"@_checkNotDelegated_23548":{"entryPoint":9718,"id":23548,"parameterSlots":0,"returnSlots":0},"@_checkProxy_23532":{"entryPoint":9272,"id":23532,"parameterSlots":0,"returnSlots":0},"@_deinvest_13215":{"entryPoint":10180,"id":13215,"parameterSlots":2,"returnSlots":0},"@_getInitializableStorage_23433":{"entryPoint":9816,"id":23433,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_23419":{"entryPoint":null,"id":23419,"parameterSlots":0,"returnSlots":1},"@_isInitializing_23410":{"entryPoint":13395,"id":23410,"parameterSlots":0,"returnSlots":1},"@_maxDeficit_11623":{"entryPoint":9635,"id":11623,"parameterSlots":1,"returnSlots":1},"@_payFromPremiums_12065":{"entryPoint":7629,"id":12065,"parameterSlots":1,"returnSlots":1},"@_repayLoan_12816":{"entryPoint":11081,"id":12816,"parameterSlots":2,"returnSlots":1},"@_safeDeInvestAll_13290":{"entryPoint":7205,"id":13290,"parameterSlots":2,"returnSlots":2},"@_safeTransferFrom_25392":{"entryPoint":12590,"id":25392,"parameterSlots":5,"returnSlots":1},"@_safeTransfer_25367":{"entryPoint":12785,"id":25367,"parameterSlots":4,"returnSlots":1},"@_setImplementation_22899":{"entryPoint":13060,"id":22899,"parameterSlots":1,"returnSlots":0},"@_setYieldVault_11434":{"entryPoint":null,"id":11434,"parameterSlots":1,"returnSlots":0},"@_storePurePremiumWon_12079":{"entryPoint":9791,"id":12079,"parameterSlots":1,"returnSlots":0},"@_toAmount_11643":{"entryPoint":9141,"id":11643,"parameterSlots":1,"returnSlots":1},"@_toZeroDecimals_11663":{"entryPoint":9934,"id":11663,"parameterSlots":1,"returnSlots":1},"@_transferTo_13003":{"entryPoint":8956,"id":13003,"parameterSlots":2,"returnSlots":0},"@_unlockScrWithRefund_12655":{"entryPoint":10620,"id":12655,"parameterSlots":4,"returnSlots":0},"@_unlockScr_12573":{"entryPoint":7712,"id":12573,"parameterSlots":1,"returnSlots":0},"@_upgradeToAndCallUUPS_23599":{"entryPoint":9447,"id":23599,"parameterSlots":2,"returnSlots":0},"@_upgradeValidations_11043":{"entryPoint":12883,"id":11043,"parameterSlots":1,"returnSlots":0},"@_upgradeValidations_11385":{"entryPoint":11715,"id":11385,"parameterSlots":1,"returnSlots":0},"@_yieldEarnings_11482":{"entryPoint":7528,"id":11482,"parameterSlots":1,"returnSlots":0},"@_yieldEarnings_13037":{"entryPoint":11614,"id":13037,"parameterSlots":1,"returnSlots":0},"@activePurePremiums_11508":{"entryPoint":null,"id":11508,"parameterSlots":0,"returnSlots":1},"@borrowedActivePP_11543":{"entryPoint":6220,"id":11543,"parameterSlots":0,"returnSlots":1},"@bubbleRevert_26962":{"entryPoint":13472,"id":26962,"parameterSlots":0,"returnSlots":0},"@currency_11088":{"entryPoint":6091,"id":11088,"parameterSlots":0,"returnSlots":1},"@deficitRatio_11678":{"entryPoint":2572,"id":11678,"parameterSlots":0,"returnSlots":1},"@delegatecallNoReturn_26924":{"entryPoint":13428,"id":26924,"parameterSlots":2,"returnSlots":1},"@depositIntoYieldVault_13431":{"entryPoint":4616,"id":13431,"parameterSlots":1,"returnSlots":0},"@duration_8215":{"entryPoint":12747,"id":8215,"parameterSlots":1,"returnSlots":1},"@etks_11604":{"entryPoint":null,"id":11604,"parameterSlots":0,"returnSlots":2},"@functionDelegateCall_25956":{"entryPoint":13159,"id":25956,"parameterSlots":2,"returnSlots":1},"@fundsAvailable_11569":{"entryPoint":2945,"id":11569,"parameterSlots":0,"returnSlots":1},"@getAddressSlot_31145":{"entryPoint":null,"id":31145,"parameterSlots":1,"returnSlots":1},"@getImplementation_22872":{"entryPoint":null,"id":22872,"parameterSlots":0,"returnSlots":1},"@initialize_11282":{"entryPoint":3636,"id":11282,"parameterSlots":0,"returnSlots":0},"@investedInYV_13026":{"entryPoint":null,"id":13026,"parameterSlots":0,"returnSlots":1},"@jrAccruedInterest_8149":{"entryPoint":10431,"id":8149,"parameterSlots":1,"returnSlots":1},"@jrInterestRate_8124":{"entryPoint":10359,"id":8124,"parameterSlots":1,"returnSlots":1},"@jrLoanLimit_11700":{"entryPoint":2518,"id":11700,"parameterSlots":0,"returnSlots":1},"@juniorEtk_11589":{"entryPoint":null,"id":11589,"parameterSlots":0,"returnSlots":1},"@min_33872":{"entryPoint":12770,"id":33872,"parameterSlots":2,"returnSlots":1},"@mul512_33585":{"entryPoint":13350,"id":33585,"parameterSlots":2,"returnSlots":2},"@mulDiv_34072":{"entryPoint":12290,"id":34072,"parameterSlots":3,"returnSlots":1},"@panic_30996":{"entryPoint":13378,"id":30996,"parameterSlots":1,"returnSlots":0},"@policyCancelled_12440":{"entryPoint":6248,"id":12440,"parameterSlots":5,"returnSlots":0},"@policyCreated_12249":{"entryPoint":6713,"id":12249,"parameterSlots":1,"returnSlots":0},"@policyExpired_12841":{"entryPoint":3454,"id":12841,"parameterSlots":1,"returnSlots":0},"@policyPool_11077":{"entryPoint":null,"id":11077,"parameterSlots":0,"returnSlots":1},"@policyReplaced_12365":{"entryPoint":5166,"id":12365,"parameterSlots":2,"returnSlots":0},"@policyResolvedWithPayout_12505":{"entryPoint":2277,"id":12505,"parameterSlots":3,"returnSlots":0},"@proxiableUUID_23490":{"entryPoint":3403,"id":23490,"parameterSlots":0,"returnSlots":1},"@purePremiums_11499":{"entryPoint":2496,"id":11499,"parameterSlots":0,"returnSlots":1},"@receiveGrant_12107":{"entryPoint":3883,"id":12107,"parameterSlots":1,"returnSlots":0},"@recordEarnings_13494":{"entryPoint":2605,"id":13494,"parameterSlots":0,"returnSlots":0},"@repayLoans_12725":{"entryPoint":6454,"id":12725,"parameterSlots":0,"returnSlots":1},"@returnDataSize_26948":{"entryPoint":null,"id":26948,"parameterSlots":0,"returnSlots":1},"@returnData_26956":{"entryPoint":13447,"id":26956,"parameterSlots":0,"returnSlots":1},"@safeTransferFrom_25041":{"entryPoint":9880,"id":25041,"parameterSlots":4,"returnSlots":0},"@safeTransfer_25010":{"entryPoint":11662,"id":25010,"parameterSlots":3,"returnSlots":0},"@seniorEtk_11579":{"entryPoint":null,"id":11579,"parameterSlots":0,"returnSlots":1},"@setDeficitRatio_11832":{"entryPoint":2975,"id":11832,"parameterSlots":2,"returnSlots":0},"@setLoanLimits_11913":{"entryPoint":3985,"id":11913,"parameterSlots":2,"returnSlots":0},"@setYieldVault_13168":{"entryPoint":1676,"id":13168,"parameterSlots":2,"returnSlots":0},"@srAccruedInterest_8199":{"entryPoint":10563,"id":8199,"parameterSlots":1,"returnSlots":1},"@srInterestRate_8174":{"entryPoint":10498,"id":8174,"parameterSlots":1,"returnSlots":1},"@srLoanLimit_11722":{"entryPoint":3588,"id":11722,"parameterSlots":0,"returnSlots":1},"@supportsInterface_11067":{"entryPoint":7152,"id":11067,"parameterSlots":1,"returnSlots":1},"@supportsInterface_11407":{"entryPoint":1633,"id":11407,"parameterSlots":1,"returnSlots":1},"@surplus_11552":{"entryPoint":null,"id":11552,"parameterSlots":0,"returnSlots":1},"@ternary_33834":{"entryPoint":null,"id":33834,"parameterSlots":3,"returnSlots":1},"@toUint16_36054":{"entryPoint":9668,"id":36054,"parameterSlots":1,"returnSlots":1},"@toUint32_35998":{"entryPoint":12699,"id":35998,"parameterSlots":1,"returnSlots":1},"@toUint_36951":{"entryPoint":null,"id":36951,"parameterSlots":1,"returnSlots":1},"@upgradeToAndCall_22935":{"entryPoint":12205,"id":22935,"parameterSlots":2,"returnSlots":0},"@upgradeToAndCall_23510":{"entryPoint":2914,"id":23510,"parameterSlots":2,"returnSlots":0},"@withdrawFromYieldVault_13351":{"entryPoint":5006,"id":13351,"parameterSlots":1,"returnSlots":1},"@withdrawWonPremiums_12199":{"entryPoint":4340,"id":12199,"parameterSlots":2,"returnSlots":1},"@wonPurePremiums_11525":{"entryPoint":3431,"id":11525,"parameterSlots":0,"returnSlots":1},"@yieldVault_11419":{"entryPoint":null,"id":11419,"parameterSlots":0,"returnSlots":1},"abi_decode_struct_PolicyData_calldata":{"entryPoint":13610,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":14318,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_memory_ptr":{"entryPoint":13807,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_struct$_PolicyData_$7744_calldata_ptrt_uint256":{"entryPoint":13633,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":14789,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes32_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":13483,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC4626_$22463t_bool":{"entryPoint":13555,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IEToken_$14336t_contract$_IEToken_$14336_fromMemory":{"entryPoint":15089,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptr":{"entryPoint":14009,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_struct$_PolicyData_$7744_calldata_ptr":{"entryPoint":14179,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_uint256t_uint256t_uint256t_address":{"entryPoint":14232,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptr":{"entryPoint":14463,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":14036,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":14345,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_address":{"entryPoint":14091,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_bool":{"entryPoint":13974,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_uint256":{"entryPoint":14059,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint8_fromMemory":{"entryPoint":14816,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint40":{"entryPoint":14438,"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_t_address__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__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_bool_t_uint256__to_t_bool_t_uint256__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_contract$_IERC20Metadata_$24925__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC4626_$22463__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IEToken_$14336__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IEToken_$14336_t_contract$_IEToken_$14336__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPool_$14638__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_int256_t_int256__to_t_int256_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_16_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_32_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":14126,"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_uint256_t_address__to_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__fromStack_reversed":{"entryPoint":null,"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_uint256_t_uint256_t_bool__to_t_uint256_t_uint256_t_bool__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_int256__to_t_uint256_t_uint256_t_uint256_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_int256_t_address_t_uint256__to_t_uint256_t_uint256_t_uint256_t_int256_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":7,"returnSlots":1},"allocate_memory":{"entryPoint":13758,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_memory_1999":{"entryPoint":13716,"id":null,"parameterSlots":0,"returnSlots":1},"checked_add_t_int256":{"entryPoint":14631,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":14770,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":14713,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_helper":{"entryPoint":14848,"id":null,"parameterSlots":3,"returnSlots":2},"checked_exp_t_uint256_t_uint8":{"entryPoint":15075,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_unsigned":{"entryPoint":14915,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":14670,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_int256":{"entryPoint":14388,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":14419,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint40":{"entryPoint":15134,"id":null,"parameterSlots":2,"returnSlots":1},"negate_t_int256":{"entryPoint":14744,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":14368,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":14693,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":13696,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_bool":{"entryPoint":13542,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_contract_IERC4626":{"entryPoint":13522,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:20270:125","nodeType":"YulBlock","src":"0:20270:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"83:217:125","nodeType":"YulBlock","src":"83:217:125","statements":[{"body":{"nativeSrc":"129:16:125","nodeType":"YulBlock","src":"129:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:125","nodeType":"YulLiteral","src":"138:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:125","nodeType":"YulLiteral","src":"141:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:125","nodeType":"YulIdentifier","src":"131:6:125"},"nativeSrc":"131:12:125","nodeType":"YulFunctionCall","src":"131:12:125"},"nativeSrc":"131:12:125","nodeType":"YulExpressionStatement","src":"131:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:125","nodeType":"YulIdentifier","src":"104:7:125"},{"name":"headStart","nativeSrc":"113:9:125","nodeType":"YulIdentifier","src":"113:9:125"}],"functionName":{"name":"sub","nativeSrc":"100:3:125","nodeType":"YulIdentifier","src":"100:3:125"},"nativeSrc":"100:23:125","nodeType":"YulFunctionCall","src":"100:23:125"},{"kind":"number","nativeSrc":"125:2:125","nodeType":"YulLiteral","src":"125:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:125","nodeType":"YulIdentifier","src":"96:3:125"},"nativeSrc":"96:32:125","nodeType":"YulFunctionCall","src":"96:32:125"},"nativeSrc":"93:52:125","nodeType":"YulIf","src":"93:52:125"},{"nativeSrc":"154:36:125","nodeType":"YulVariableDeclaration","src":"154:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:125","nodeType":"YulIdentifier","src":"180:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:125","nodeType":"YulIdentifier","src":"167:12:125"},"nativeSrc":"167:23:125","nodeType":"YulFunctionCall","src":"167:23:125"},"variables":[{"name":"value","nativeSrc":"158:5:125","nodeType":"YulTypedName","src":"158:5:125","type":""}]},{"body":{"nativeSrc":"254:16:125","nodeType":"YulBlock","src":"254:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:125","nodeType":"YulLiteral","src":"263:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:125","nodeType":"YulLiteral","src":"266:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:125","nodeType":"YulIdentifier","src":"256:6:125"},"nativeSrc":"256:12:125","nodeType":"YulFunctionCall","src":"256:12:125"},"nativeSrc":"256:12:125","nodeType":"YulExpressionStatement","src":"256:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:125","nodeType":"YulIdentifier","src":"212:5:125"},{"arguments":[{"name":"value","nativeSrc":"223:5:125","nodeType":"YulIdentifier","src":"223:5:125"},{"arguments":[{"kind":"number","nativeSrc":"234:3:125","nodeType":"YulLiteral","src":"234:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:125","nodeType":"YulLiteral","src":"239:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:125","nodeType":"YulIdentifier","src":"230:3:125"},"nativeSrc":"230:20:125","nodeType":"YulFunctionCall","src":"230:20:125"}],"functionName":{"name":"and","nativeSrc":"219:3:125","nodeType":"YulIdentifier","src":"219:3:125"},"nativeSrc":"219:32:125","nodeType":"YulFunctionCall","src":"219:32:125"}],"functionName":{"name":"eq","nativeSrc":"209:2:125","nodeType":"YulIdentifier","src":"209:2:125"},"nativeSrc":"209:43:125","nodeType":"YulFunctionCall","src":"209:43:125"}],"functionName":{"name":"iszero","nativeSrc":"202:6:125","nodeType":"YulIdentifier","src":"202:6:125"},"nativeSrc":"202:51:125","nodeType":"YulFunctionCall","src":"202:51:125"},"nativeSrc":"199:71:125","nodeType":"YulIf","src":"199:71:125"},{"nativeSrc":"279:15:125","nodeType":"YulAssignment","src":"279:15:125","value":{"name":"value","nativeSrc":"289:5:125","nodeType":"YulIdentifier","src":"289:5:125"},"variableNames":[{"name":"value0","nativeSrc":"279:6:125","nodeType":"YulIdentifier","src":"279:6:125"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:125","nodeType":"YulTypedName","src":"49:9:125","type":""},{"name":"dataEnd","nativeSrc":"60:7:125","nodeType":"YulTypedName","src":"60:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:125","nodeType":"YulTypedName","src":"72:6:125","type":""}],"src":"14:286:125"},{"body":{"nativeSrc":"400:92:125","nodeType":"YulBlock","src":"400:92:125","statements":[{"nativeSrc":"410:26:125","nodeType":"YulAssignment","src":"410:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:125","nodeType":"YulIdentifier","src":"422:9:125"},{"kind":"number","nativeSrc":"433:2:125","nodeType":"YulLiteral","src":"433:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:125","nodeType":"YulIdentifier","src":"418:3:125"},"nativeSrc":"418:18:125","nodeType":"YulFunctionCall","src":"418:18:125"},"variableNames":[{"name":"tail","nativeSrc":"410:4:125","nodeType":"YulIdentifier","src":"410:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:125","nodeType":"YulIdentifier","src":"452:9:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:125","nodeType":"YulIdentifier","src":"477:6:125"}],"functionName":{"name":"iszero","nativeSrc":"470:6:125","nodeType":"YulIdentifier","src":"470:6:125"},"nativeSrc":"470:14:125","nodeType":"YulFunctionCall","src":"470:14:125"}],"functionName":{"name":"iszero","nativeSrc":"463:6:125","nodeType":"YulIdentifier","src":"463:6:125"},"nativeSrc":"463:22:125","nodeType":"YulFunctionCall","src":"463:22:125"}],"functionName":{"name":"mstore","nativeSrc":"445:6:125","nodeType":"YulIdentifier","src":"445:6:125"},"nativeSrc":"445:41:125","nodeType":"YulFunctionCall","src":"445:41:125"},"nativeSrc":"445:41:125","nodeType":"YulExpressionStatement","src":"445:41:125"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:125","nodeType":"YulTypedName","src":"369:9:125","type":""},{"name":"value0","nativeSrc":"380:6:125","nodeType":"YulTypedName","src":"380:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:125","nodeType":"YulTypedName","src":"391:4:125","type":""}],"src":"305:187:125"},{"body":{"nativeSrc":"596:76:125","nodeType":"YulBlock","src":"596:76:125","statements":[{"nativeSrc":"606:26:125","nodeType":"YulAssignment","src":"606:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"618:9:125","nodeType":"YulIdentifier","src":"618:9:125"},{"kind":"number","nativeSrc":"629:2:125","nodeType":"YulLiteral","src":"629:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"614:3:125","nodeType":"YulIdentifier","src":"614:3:125"},"nativeSrc":"614:18:125","nodeType":"YulFunctionCall","src":"614:18:125"},"variableNames":[{"name":"tail","nativeSrc":"606:4:125","nodeType":"YulIdentifier","src":"606:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"648:9:125","nodeType":"YulIdentifier","src":"648:9:125"},{"name":"value0","nativeSrc":"659:6:125","nodeType":"YulIdentifier","src":"659:6:125"}],"functionName":{"name":"mstore","nativeSrc":"641:6:125","nodeType":"YulIdentifier","src":"641:6:125"},"nativeSrc":"641:25:125","nodeType":"YulFunctionCall","src":"641:25:125"},"nativeSrc":"641:25:125","nodeType":"YulExpressionStatement","src":"641:25:125"}]},"name":"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed","nativeSrc":"497:175:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"565:9:125","nodeType":"YulTypedName","src":"565:9:125","type":""},{"name":"value0","nativeSrc":"576:6:125","nodeType":"YulTypedName","src":"576:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"587:4:125","nodeType":"YulTypedName","src":"587:4:125","type":""}],"src":"497:175:125"},{"body":{"nativeSrc":"732:86:125","nodeType":"YulBlock","src":"732:86:125","statements":[{"body":{"nativeSrc":"796:16:125","nodeType":"YulBlock","src":"796:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"805:1:125","nodeType":"YulLiteral","src":"805:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"808:1:125","nodeType":"YulLiteral","src":"808:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"798:6:125","nodeType":"YulIdentifier","src":"798:6:125"},"nativeSrc":"798:12:125","nodeType":"YulFunctionCall","src":"798:12:125"},"nativeSrc":"798:12:125","nodeType":"YulExpressionStatement","src":"798:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"755:5:125","nodeType":"YulIdentifier","src":"755:5:125"},{"arguments":[{"name":"value","nativeSrc":"766:5:125","nodeType":"YulIdentifier","src":"766:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"781:3:125","nodeType":"YulLiteral","src":"781:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"786:1:125","nodeType":"YulLiteral","src":"786:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"777:3:125","nodeType":"YulIdentifier","src":"777:3:125"},"nativeSrc":"777:11:125","nodeType":"YulFunctionCall","src":"777:11:125"},{"kind":"number","nativeSrc":"790:1:125","nodeType":"YulLiteral","src":"790:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"773:3:125","nodeType":"YulIdentifier","src":"773:3:125"},"nativeSrc":"773:19:125","nodeType":"YulFunctionCall","src":"773:19:125"}],"functionName":{"name":"and","nativeSrc":"762:3:125","nodeType":"YulIdentifier","src":"762:3:125"},"nativeSrc":"762:31:125","nodeType":"YulFunctionCall","src":"762:31:125"}],"functionName":{"name":"eq","nativeSrc":"752:2:125","nodeType":"YulIdentifier","src":"752:2:125"},"nativeSrc":"752:42:125","nodeType":"YulFunctionCall","src":"752:42:125"}],"functionName":{"name":"iszero","nativeSrc":"745:6:125","nodeType":"YulIdentifier","src":"745:6:125"},"nativeSrc":"745:50:125","nodeType":"YulFunctionCall","src":"745:50:125"},"nativeSrc":"742:70:125","nodeType":"YulIf","src":"742:70:125"}]},"name":"validator_revert_contract_IERC4626","nativeSrc":"677:141:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"721:5:125","nodeType":"YulTypedName","src":"721:5:125","type":""}],"src":"677:141:125"},{"body":{"nativeSrc":"865:76:125","nodeType":"YulBlock","src":"865:76:125","statements":[{"body":{"nativeSrc":"919:16:125","nodeType":"YulBlock","src":"919:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"928:1:125","nodeType":"YulLiteral","src":"928:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"931:1:125","nodeType":"YulLiteral","src":"931:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"921:6:125","nodeType":"YulIdentifier","src":"921:6:125"},"nativeSrc":"921:12:125","nodeType":"YulFunctionCall","src":"921:12:125"},"nativeSrc":"921:12:125","nodeType":"YulExpressionStatement","src":"921:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"888:5:125","nodeType":"YulIdentifier","src":"888:5:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"909:5:125","nodeType":"YulIdentifier","src":"909:5:125"}],"functionName":{"name":"iszero","nativeSrc":"902:6:125","nodeType":"YulIdentifier","src":"902:6:125"},"nativeSrc":"902:13:125","nodeType":"YulFunctionCall","src":"902:13:125"}],"functionName":{"name":"iszero","nativeSrc":"895:6:125","nodeType":"YulIdentifier","src":"895:6:125"},"nativeSrc":"895:21:125","nodeType":"YulFunctionCall","src":"895:21:125"}],"functionName":{"name":"eq","nativeSrc":"885:2:125","nodeType":"YulIdentifier","src":"885:2:125"},"nativeSrc":"885:32:125","nodeType":"YulFunctionCall","src":"885:32:125"}],"functionName":{"name":"iszero","nativeSrc":"878:6:125","nodeType":"YulIdentifier","src":"878:6:125"},"nativeSrc":"878:40:125","nodeType":"YulFunctionCall","src":"878:40:125"},"nativeSrc":"875:60:125","nodeType":"YulIf","src":"875:60:125"}]},"name":"validator_revert_bool","nativeSrc":"823:118:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"854:5:125","nodeType":"YulTypedName","src":"854:5:125","type":""}],"src":"823:118:125"},{"body":{"nativeSrc":"1048:308:125","nodeType":"YulBlock","src":"1048:308:125","statements":[{"body":{"nativeSrc":"1094:16:125","nodeType":"YulBlock","src":"1094:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1103:1:125","nodeType":"YulLiteral","src":"1103:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1106:1:125","nodeType":"YulLiteral","src":"1106:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1096:6:125","nodeType":"YulIdentifier","src":"1096:6:125"},"nativeSrc":"1096:12:125","nodeType":"YulFunctionCall","src":"1096:12:125"},"nativeSrc":"1096:12:125","nodeType":"YulExpressionStatement","src":"1096:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1069:7:125","nodeType":"YulIdentifier","src":"1069:7:125"},{"name":"headStart","nativeSrc":"1078:9:125","nodeType":"YulIdentifier","src":"1078:9:125"}],"functionName":{"name":"sub","nativeSrc":"1065:3:125","nodeType":"YulIdentifier","src":"1065:3:125"},"nativeSrc":"1065:23:125","nodeType":"YulFunctionCall","src":"1065:23:125"},{"kind":"number","nativeSrc":"1090:2:125","nodeType":"YulLiteral","src":"1090:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1061:3:125","nodeType":"YulIdentifier","src":"1061:3:125"},"nativeSrc":"1061:32:125","nodeType":"YulFunctionCall","src":"1061:32:125"},"nativeSrc":"1058:52:125","nodeType":"YulIf","src":"1058:52:125"},{"nativeSrc":"1119:36:125","nodeType":"YulVariableDeclaration","src":"1119:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1145:9:125","nodeType":"YulIdentifier","src":"1145:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"1132:12:125","nodeType":"YulIdentifier","src":"1132:12:125"},"nativeSrc":"1132:23:125","nodeType":"YulFunctionCall","src":"1132:23:125"},"variables":[{"name":"value","nativeSrc":"1123:5:125","nodeType":"YulTypedName","src":"1123:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1199:5:125","nodeType":"YulIdentifier","src":"1199:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"1164:34:125","nodeType":"YulIdentifier","src":"1164:34:125"},"nativeSrc":"1164:41:125","nodeType":"YulFunctionCall","src":"1164:41:125"},"nativeSrc":"1164:41:125","nodeType":"YulExpressionStatement","src":"1164:41:125"},{"nativeSrc":"1214:15:125","nodeType":"YulAssignment","src":"1214:15:125","value":{"name":"value","nativeSrc":"1224:5:125","nodeType":"YulIdentifier","src":"1224:5:125"},"variableNames":[{"name":"value0","nativeSrc":"1214:6:125","nodeType":"YulIdentifier","src":"1214:6:125"}]},{"nativeSrc":"1238:47:125","nodeType":"YulVariableDeclaration","src":"1238:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1270:9:125","nodeType":"YulIdentifier","src":"1270:9:125"},{"kind":"number","nativeSrc":"1281:2:125","nodeType":"YulLiteral","src":"1281:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1266:3:125","nodeType":"YulIdentifier","src":"1266:3:125"},"nativeSrc":"1266:18:125","nodeType":"YulFunctionCall","src":"1266:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"1253:12:125","nodeType":"YulIdentifier","src":"1253:12:125"},"nativeSrc":"1253:32:125","nodeType":"YulFunctionCall","src":"1253:32:125"},"variables":[{"name":"value_1","nativeSrc":"1242:7:125","nodeType":"YulTypedName","src":"1242:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"1316:7:125","nodeType":"YulIdentifier","src":"1316:7:125"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"1294:21:125","nodeType":"YulIdentifier","src":"1294:21:125"},"nativeSrc":"1294:30:125","nodeType":"YulFunctionCall","src":"1294:30:125"},"nativeSrc":"1294:30:125","nodeType":"YulExpressionStatement","src":"1294:30:125"},{"nativeSrc":"1333:17:125","nodeType":"YulAssignment","src":"1333:17:125","value":{"name":"value_1","nativeSrc":"1343:7:125","nodeType":"YulIdentifier","src":"1343:7:125"},"variableNames":[{"name":"value1","nativeSrc":"1333:6:125","nodeType":"YulIdentifier","src":"1333:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IERC4626_$22463t_bool","nativeSrc":"946:410:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1006:9:125","nodeType":"YulTypedName","src":"1006:9:125","type":""},{"name":"dataEnd","nativeSrc":"1017:7:125","nodeType":"YulTypedName","src":"1017:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1029:6:125","nodeType":"YulTypedName","src":"1029:6:125","type":""},{"name":"value1","nativeSrc":"1037:6:125","nodeType":"YulTypedName","src":"1037:6:125","type":""}],"src":"946:410:125"},{"body":{"nativeSrc":"1462:76:125","nodeType":"YulBlock","src":"1462:76:125","statements":[{"nativeSrc":"1472:26:125","nodeType":"YulAssignment","src":"1472:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1484:9:125","nodeType":"YulIdentifier","src":"1484:9:125"},{"kind":"number","nativeSrc":"1495:2:125","nodeType":"YulLiteral","src":"1495:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1480:3:125","nodeType":"YulIdentifier","src":"1480:3:125"},"nativeSrc":"1480:18:125","nodeType":"YulFunctionCall","src":"1480:18:125"},"variableNames":[{"name":"tail","nativeSrc":"1472:4:125","nodeType":"YulIdentifier","src":"1472:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1514:9:125","nodeType":"YulIdentifier","src":"1514:9:125"},{"name":"value0","nativeSrc":"1525:6:125","nodeType":"YulIdentifier","src":"1525:6:125"}],"functionName":{"name":"mstore","nativeSrc":"1507:6:125","nodeType":"YulIdentifier","src":"1507:6:125"},"nativeSrc":"1507:25:125","nodeType":"YulFunctionCall","src":"1507:25:125"},"nativeSrc":"1507:25:125","nodeType":"YulExpressionStatement","src":"1507:25:125"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"1361:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1431:9:125","nodeType":"YulTypedName","src":"1431:9:125","type":""},{"name":"value0","nativeSrc":"1442:6:125","nodeType":"YulTypedName","src":"1442:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1453:4:125","nodeType":"YulTypedName","src":"1453:4:125","type":""}],"src":"1361:177:125"},{"body":{"nativeSrc":"1616:86:125","nodeType":"YulBlock","src":"1616:86:125","statements":[{"body":{"nativeSrc":"1656:16:125","nodeType":"YulBlock","src":"1656:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1665:1:125","nodeType":"YulLiteral","src":"1665:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1668:1:125","nodeType":"YulLiteral","src":"1668:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1658:6:125","nodeType":"YulIdentifier","src":"1658:6:125"},"nativeSrc":"1658:12:125","nodeType":"YulFunctionCall","src":"1658:12:125"},"nativeSrc":"1658:12:125","nodeType":"YulExpressionStatement","src":"1658:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"1637:3:125","nodeType":"YulIdentifier","src":"1637:3:125"},{"name":"offset","nativeSrc":"1642:6:125","nodeType":"YulIdentifier","src":"1642:6:125"}],"functionName":{"name":"sub","nativeSrc":"1633:3:125","nodeType":"YulIdentifier","src":"1633:3:125"},"nativeSrc":"1633:16:125","nodeType":"YulFunctionCall","src":"1633:16:125"},{"kind":"number","nativeSrc":"1651:3:125","nodeType":"YulLiteral","src":"1651:3:125","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"1629:3:125","nodeType":"YulIdentifier","src":"1629:3:125"},"nativeSrc":"1629:26:125","nodeType":"YulFunctionCall","src":"1629:26:125"},"nativeSrc":"1626:46:125","nodeType":"YulIf","src":"1626:46:125"},{"nativeSrc":"1681:15:125","nodeType":"YulAssignment","src":"1681:15:125","value":{"name":"offset","nativeSrc":"1690:6:125","nodeType":"YulIdentifier","src":"1690:6:125"},"variableNames":[{"name":"value","nativeSrc":"1681:5:125","nodeType":"YulIdentifier","src":"1681:5:125"}]}]},"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"1543:159:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"1590:6:125","nodeType":"YulTypedName","src":"1590:6:125","type":""},{"name":"end","nativeSrc":"1598:3:125","nodeType":"YulTypedName","src":"1598:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"1606:5:125","nodeType":"YulTypedName","src":"1606:5:125","type":""}],"src":"1543:159:125"},{"body":{"nativeSrc":"1841:377:125","nodeType":"YulBlock","src":"1841:377:125","statements":[{"body":{"nativeSrc":"1888:16:125","nodeType":"YulBlock","src":"1888:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1897:1:125","nodeType":"YulLiteral","src":"1897:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1900:1:125","nodeType":"YulLiteral","src":"1900:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1890:6:125","nodeType":"YulIdentifier","src":"1890:6:125"},"nativeSrc":"1890:12:125","nodeType":"YulFunctionCall","src":"1890:12:125"},"nativeSrc":"1890:12:125","nodeType":"YulExpressionStatement","src":"1890:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1862:7:125","nodeType":"YulIdentifier","src":"1862:7:125"},{"name":"headStart","nativeSrc":"1871:9:125","nodeType":"YulIdentifier","src":"1871:9:125"}],"functionName":{"name":"sub","nativeSrc":"1858:3:125","nodeType":"YulIdentifier","src":"1858:3:125"},"nativeSrc":"1858:23:125","nodeType":"YulFunctionCall","src":"1858:23:125"},{"kind":"number","nativeSrc":"1883:3:125","nodeType":"YulLiteral","src":"1883:3:125","type":"","value":"448"}],"functionName":{"name":"slt","nativeSrc":"1854:3:125","nodeType":"YulIdentifier","src":"1854:3:125"},"nativeSrc":"1854:33:125","nodeType":"YulFunctionCall","src":"1854:33:125"},"nativeSrc":"1851:53:125","nodeType":"YulIf","src":"1851:53:125"},{"nativeSrc":"1913:36:125","nodeType":"YulVariableDeclaration","src":"1913:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1939:9:125","nodeType":"YulIdentifier","src":"1939:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"1926:12:125","nodeType":"YulIdentifier","src":"1926:12:125"},"nativeSrc":"1926:23:125","nodeType":"YulFunctionCall","src":"1926:23:125"},"variables":[{"name":"value","nativeSrc":"1917:5:125","nodeType":"YulTypedName","src":"1917:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1993:5:125","nodeType":"YulIdentifier","src":"1993:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"1958:34:125","nodeType":"YulIdentifier","src":"1958:34:125"},"nativeSrc":"1958:41:125","nodeType":"YulFunctionCall","src":"1958:41:125"},"nativeSrc":"1958:41:125","nodeType":"YulExpressionStatement","src":"1958:41:125"},{"nativeSrc":"2008:15:125","nodeType":"YulAssignment","src":"2008:15:125","value":{"name":"value","nativeSrc":"2018:5:125","nodeType":"YulIdentifier","src":"2018:5:125"},"variableNames":[{"name":"value0","nativeSrc":"2008:6:125","nodeType":"YulIdentifier","src":"2008:6:125"}]},{"nativeSrc":"2032:76:125","nodeType":"YulAssignment","src":"2032:76:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2084:9:125","nodeType":"YulIdentifier","src":"2084:9:125"},{"kind":"number","nativeSrc":"2095:2:125","nodeType":"YulLiteral","src":"2095:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2080:3:125","nodeType":"YulIdentifier","src":"2080:3:125"},"nativeSrc":"2080:18:125","nodeType":"YulFunctionCall","src":"2080:18:125"},{"name":"dataEnd","nativeSrc":"2100:7:125","nodeType":"YulIdentifier","src":"2100:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"2042:37:125","nodeType":"YulIdentifier","src":"2042:37:125"},"nativeSrc":"2042:66:125","nodeType":"YulFunctionCall","src":"2042:66:125"},"variableNames":[{"name":"value1","nativeSrc":"2032:6:125","nodeType":"YulIdentifier","src":"2032:6:125"}]},{"nativeSrc":"2117:16:125","nodeType":"YulVariableDeclaration","src":"2117:16:125","value":{"kind":"number","nativeSrc":"2132:1:125","nodeType":"YulLiteral","src":"2132:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"2121:7:125","nodeType":"YulTypedName","src":"2121:7:125","type":""}]},{"nativeSrc":"2142:44:125","nodeType":"YulAssignment","src":"2142:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2170:9:125","nodeType":"YulIdentifier","src":"2170:9:125"},{"kind":"number","nativeSrc":"2181:3:125","nodeType":"YulLiteral","src":"2181:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"2166:3:125","nodeType":"YulIdentifier","src":"2166:3:125"},"nativeSrc":"2166:19:125","nodeType":"YulFunctionCall","src":"2166:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"2153:12:125","nodeType":"YulIdentifier","src":"2153:12:125"},"nativeSrc":"2153:33:125","nodeType":"YulFunctionCall","src":"2153:33:125"},"variableNames":[{"name":"value_1","nativeSrc":"2142:7:125","nodeType":"YulIdentifier","src":"2142:7:125"}]},{"nativeSrc":"2195:17:125","nodeType":"YulAssignment","src":"2195:17:125","value":{"name":"value_1","nativeSrc":"2205:7:125","nodeType":"YulIdentifier","src":"2205:7:125"},"variableNames":[{"name":"value2","nativeSrc":"2195:6:125","nodeType":"YulIdentifier","src":"2195:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_struct$_PolicyData_$7744_calldata_ptrt_uint256","nativeSrc":"1707:511:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1791:9:125","nodeType":"YulTypedName","src":"1791:9:125","type":""},{"name":"dataEnd","nativeSrc":"1802:7:125","nodeType":"YulTypedName","src":"1802:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1814:6:125","nodeType":"YulTypedName","src":"1814:6:125","type":""},{"name":"value1","nativeSrc":"1822:6:125","nodeType":"YulTypedName","src":"1822:6:125","type":""},{"name":"value2","nativeSrc":"1830:6:125","nodeType":"YulTypedName","src":"1830:6:125","type":""}],"src":"1707:511:125"},{"body":{"nativeSrc":"2345:102:125","nodeType":"YulBlock","src":"2345:102:125","statements":[{"nativeSrc":"2355:26:125","nodeType":"YulAssignment","src":"2355:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2367:9:125","nodeType":"YulIdentifier","src":"2367:9:125"},{"kind":"number","nativeSrc":"2378:2:125","nodeType":"YulLiteral","src":"2378:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2363:3:125","nodeType":"YulIdentifier","src":"2363:3:125"},"nativeSrc":"2363:18:125","nodeType":"YulFunctionCall","src":"2363:18:125"},"variableNames":[{"name":"tail","nativeSrc":"2355:4:125","nodeType":"YulIdentifier","src":"2355:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2397:9:125","nodeType":"YulIdentifier","src":"2397:9:125"},{"arguments":[{"name":"value0","nativeSrc":"2412:6:125","nodeType":"YulIdentifier","src":"2412:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2428:3:125","nodeType":"YulLiteral","src":"2428:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"2433:1:125","nodeType":"YulLiteral","src":"2433:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2424:3:125","nodeType":"YulIdentifier","src":"2424:3:125"},"nativeSrc":"2424:11:125","nodeType":"YulFunctionCall","src":"2424:11:125"},{"kind":"number","nativeSrc":"2437:1:125","nodeType":"YulLiteral","src":"2437:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2420:3:125","nodeType":"YulIdentifier","src":"2420:3:125"},"nativeSrc":"2420:19:125","nodeType":"YulFunctionCall","src":"2420:19:125"}],"functionName":{"name":"and","nativeSrc":"2408:3:125","nodeType":"YulIdentifier","src":"2408:3:125"},"nativeSrc":"2408:32:125","nodeType":"YulFunctionCall","src":"2408:32:125"}],"functionName":{"name":"mstore","nativeSrc":"2390:6:125","nodeType":"YulIdentifier","src":"2390:6:125"},"nativeSrc":"2390:51:125","nodeType":"YulFunctionCall","src":"2390:51:125"},"nativeSrc":"2390:51:125","nodeType":"YulExpressionStatement","src":"2390:51:125"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPool_$14638__to_t_address__fromStack_reversed","nativeSrc":"2223:224:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2314:9:125","nodeType":"YulTypedName","src":"2314:9:125","type":""},{"name":"value0","nativeSrc":"2325:6:125","nodeType":"YulTypedName","src":"2325:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2336:4:125","nodeType":"YulTypedName","src":"2336:4:125","type":""}],"src":"2223:224:125"},{"body":{"nativeSrc":"2484:95:125","nodeType":"YulBlock","src":"2484:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2501:1:125","nodeType":"YulLiteral","src":"2501:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"2508:3:125","nodeType":"YulLiteral","src":"2508:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"2513:10:125","nodeType":"YulLiteral","src":"2513:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"2504:3:125","nodeType":"YulIdentifier","src":"2504:3:125"},"nativeSrc":"2504:20:125","nodeType":"YulFunctionCall","src":"2504:20:125"}],"functionName":{"name":"mstore","nativeSrc":"2494:6:125","nodeType":"YulIdentifier","src":"2494:6:125"},"nativeSrc":"2494:31:125","nodeType":"YulFunctionCall","src":"2494:31:125"},"nativeSrc":"2494:31:125","nodeType":"YulExpressionStatement","src":"2494:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2541:1:125","nodeType":"YulLiteral","src":"2541:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"2544:4:125","nodeType":"YulLiteral","src":"2544:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"2534:6:125","nodeType":"YulIdentifier","src":"2534:6:125"},"nativeSrc":"2534:15:125","nodeType":"YulFunctionCall","src":"2534:15:125"},"nativeSrc":"2534:15:125","nodeType":"YulExpressionStatement","src":"2534:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2565:1:125","nodeType":"YulLiteral","src":"2565:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2568:4:125","nodeType":"YulLiteral","src":"2568:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"2558:6:125","nodeType":"YulIdentifier","src":"2558:6:125"},"nativeSrc":"2558:15:125","nodeType":"YulFunctionCall","src":"2558:15:125"},"nativeSrc":"2558:15:125","nodeType":"YulExpressionStatement","src":"2558:15:125"}]},"name":"panic_error_0x41","nativeSrc":"2452:127:125","nodeType":"YulFunctionDefinition","src":"2452:127:125"},{"body":{"nativeSrc":"2630:206:125","nodeType":"YulBlock","src":"2630:206:125","statements":[{"nativeSrc":"2640:19:125","nodeType":"YulAssignment","src":"2640:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"2656:2:125","nodeType":"YulLiteral","src":"2656:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"2650:5:125","nodeType":"YulIdentifier","src":"2650:5:125"},"nativeSrc":"2650:9:125","nodeType":"YulFunctionCall","src":"2650:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"2640:6:125","nodeType":"YulIdentifier","src":"2640:6:125"}]},{"nativeSrc":"2668:34:125","nodeType":"YulVariableDeclaration","src":"2668:34:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"2690:6:125","nodeType":"YulIdentifier","src":"2690:6:125"},{"kind":"number","nativeSrc":"2698:3:125","nodeType":"YulLiteral","src":"2698:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"2686:3:125","nodeType":"YulIdentifier","src":"2686:3:125"},"nativeSrc":"2686:16:125","nodeType":"YulFunctionCall","src":"2686:16:125"},"variables":[{"name":"newFreePtr","nativeSrc":"2672:10:125","nodeType":"YulTypedName","src":"2672:10:125","type":""}]},{"body":{"nativeSrc":"2777:22:125","nodeType":"YulBlock","src":"2777:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2779:16:125","nodeType":"YulIdentifier","src":"2779:16:125"},"nativeSrc":"2779:18:125","nodeType":"YulFunctionCall","src":"2779:18:125"},"nativeSrc":"2779:18:125","nodeType":"YulExpressionStatement","src":"2779:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"2720:10:125","nodeType":"YulIdentifier","src":"2720:10:125"},{"kind":"number","nativeSrc":"2732:18:125","nodeType":"YulLiteral","src":"2732:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2717:2:125","nodeType":"YulIdentifier","src":"2717:2:125"},"nativeSrc":"2717:34:125","nodeType":"YulFunctionCall","src":"2717:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"2756:10:125","nodeType":"YulIdentifier","src":"2756:10:125"},{"name":"memPtr","nativeSrc":"2768:6:125","nodeType":"YulIdentifier","src":"2768:6:125"}],"functionName":{"name":"lt","nativeSrc":"2753:2:125","nodeType":"YulIdentifier","src":"2753:2:125"},"nativeSrc":"2753:22:125","nodeType":"YulFunctionCall","src":"2753:22:125"}],"functionName":{"name":"or","nativeSrc":"2714:2:125","nodeType":"YulIdentifier","src":"2714:2:125"},"nativeSrc":"2714:62:125","nodeType":"YulFunctionCall","src":"2714:62:125"},"nativeSrc":"2711:88:125","nodeType":"YulIf","src":"2711:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2815:2:125","nodeType":"YulLiteral","src":"2815:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"2819:10:125","nodeType":"YulIdentifier","src":"2819:10:125"}],"functionName":{"name":"mstore","nativeSrc":"2808:6:125","nodeType":"YulIdentifier","src":"2808:6:125"},"nativeSrc":"2808:22:125","nodeType":"YulFunctionCall","src":"2808:22:125"},"nativeSrc":"2808:22:125","nodeType":"YulExpressionStatement","src":"2808:22:125"}]},"name":"allocate_memory_1999","nativeSrc":"2584:252:125","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"2619:6:125","nodeType":"YulTypedName","src":"2619:6:125","type":""}],"src":"2584:252:125"},{"body":{"nativeSrc":"2886:230:125","nodeType":"YulBlock","src":"2886:230:125","statements":[{"nativeSrc":"2896:19:125","nodeType":"YulAssignment","src":"2896:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"2912:2:125","nodeType":"YulLiteral","src":"2912:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"2906:5:125","nodeType":"YulIdentifier","src":"2906:5:125"},"nativeSrc":"2906:9:125","nodeType":"YulFunctionCall","src":"2906:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"2896:6:125","nodeType":"YulIdentifier","src":"2896:6:125"}]},{"nativeSrc":"2924:58:125","nodeType":"YulVariableDeclaration","src":"2924:58:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"2946:6:125","nodeType":"YulIdentifier","src":"2946:6:125"},{"arguments":[{"arguments":[{"name":"size","nativeSrc":"2962:4:125","nodeType":"YulIdentifier","src":"2962:4:125"},{"kind":"number","nativeSrc":"2968:2:125","nodeType":"YulLiteral","src":"2968:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2958:3:125","nodeType":"YulIdentifier","src":"2958:3:125"},"nativeSrc":"2958:13:125","nodeType":"YulFunctionCall","src":"2958:13:125"},{"arguments":[{"kind":"number","nativeSrc":"2977:2:125","nodeType":"YulLiteral","src":"2977:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"2973:3:125","nodeType":"YulIdentifier","src":"2973:3:125"},"nativeSrc":"2973:7:125","nodeType":"YulFunctionCall","src":"2973:7:125"}],"functionName":{"name":"and","nativeSrc":"2954:3:125","nodeType":"YulIdentifier","src":"2954:3:125"},"nativeSrc":"2954:27:125","nodeType":"YulFunctionCall","src":"2954:27:125"}],"functionName":{"name":"add","nativeSrc":"2942:3:125","nodeType":"YulIdentifier","src":"2942:3:125"},"nativeSrc":"2942:40:125","nodeType":"YulFunctionCall","src":"2942:40:125"},"variables":[{"name":"newFreePtr","nativeSrc":"2928:10:125","nodeType":"YulTypedName","src":"2928:10:125","type":""}]},{"body":{"nativeSrc":"3057:22:125","nodeType":"YulBlock","src":"3057:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3059:16:125","nodeType":"YulIdentifier","src":"3059:16:125"},"nativeSrc":"3059:18:125","nodeType":"YulFunctionCall","src":"3059:18:125"},"nativeSrc":"3059:18:125","nodeType":"YulExpressionStatement","src":"3059:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"3000:10:125","nodeType":"YulIdentifier","src":"3000:10:125"},{"kind":"number","nativeSrc":"3012:18:125","nodeType":"YulLiteral","src":"3012:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2997:2:125","nodeType":"YulIdentifier","src":"2997:2:125"},"nativeSrc":"2997:34:125","nodeType":"YulFunctionCall","src":"2997:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"3036:10:125","nodeType":"YulIdentifier","src":"3036:10:125"},{"name":"memPtr","nativeSrc":"3048:6:125","nodeType":"YulIdentifier","src":"3048:6:125"}],"functionName":{"name":"lt","nativeSrc":"3033:2:125","nodeType":"YulIdentifier","src":"3033:2:125"},"nativeSrc":"3033:22:125","nodeType":"YulFunctionCall","src":"3033:22:125"}],"functionName":{"name":"or","nativeSrc":"2994:2:125","nodeType":"YulIdentifier","src":"2994:2:125"},"nativeSrc":"2994:62:125","nodeType":"YulFunctionCall","src":"2994:62:125"},"nativeSrc":"2991:88:125","nodeType":"YulIf","src":"2991:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3095:2:125","nodeType":"YulLiteral","src":"3095:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"3099:10:125","nodeType":"YulIdentifier","src":"3099:10:125"}],"functionName":{"name":"mstore","nativeSrc":"3088:6:125","nodeType":"YulIdentifier","src":"3088:6:125"},"nativeSrc":"3088:22:125","nodeType":"YulFunctionCall","src":"3088:22:125"},"nativeSrc":"3088:22:125","nodeType":"YulExpressionStatement","src":"3088:22:125"}]},"name":"allocate_memory","nativeSrc":"2841:275:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nativeSrc":"2866:4:125","nodeType":"YulTypedName","src":"2866:4:125","type":""}],"returnVariables":[{"name":"memPtr","nativeSrc":"2875:6:125","nodeType":"YulTypedName","src":"2875:6:125","type":""}],"src":"2841:275:125"},{"body":{"nativeSrc":"3217:814:125","nodeType":"YulBlock","src":"3217:814:125","statements":[{"body":{"nativeSrc":"3263:16:125","nodeType":"YulBlock","src":"3263:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3272:1:125","nodeType":"YulLiteral","src":"3272:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3275:1:125","nodeType":"YulLiteral","src":"3275:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3265:6:125","nodeType":"YulIdentifier","src":"3265:6:125"},"nativeSrc":"3265:12:125","nodeType":"YulFunctionCall","src":"3265:12:125"},"nativeSrc":"3265:12:125","nodeType":"YulExpressionStatement","src":"3265:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3238:7:125","nodeType":"YulIdentifier","src":"3238:7:125"},{"name":"headStart","nativeSrc":"3247:9:125","nodeType":"YulIdentifier","src":"3247:9:125"}],"functionName":{"name":"sub","nativeSrc":"3234:3:125","nodeType":"YulIdentifier","src":"3234:3:125"},"nativeSrc":"3234:23:125","nodeType":"YulFunctionCall","src":"3234:23:125"},{"kind":"number","nativeSrc":"3259:2:125","nodeType":"YulLiteral","src":"3259:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3230:3:125","nodeType":"YulIdentifier","src":"3230:3:125"},"nativeSrc":"3230:32:125","nodeType":"YulFunctionCall","src":"3230:32:125"},"nativeSrc":"3227:52:125","nodeType":"YulIf","src":"3227:52:125"},{"nativeSrc":"3288:36:125","nodeType":"YulVariableDeclaration","src":"3288:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3314:9:125","nodeType":"YulIdentifier","src":"3314:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"3301:12:125","nodeType":"YulIdentifier","src":"3301:12:125"},"nativeSrc":"3301:23:125","nodeType":"YulFunctionCall","src":"3301:23:125"},"variables":[{"name":"value","nativeSrc":"3292:5:125","nodeType":"YulTypedName","src":"3292:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3368:5:125","nodeType":"YulIdentifier","src":"3368:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"3333:34:125","nodeType":"YulIdentifier","src":"3333:34:125"},"nativeSrc":"3333:41:125","nodeType":"YulFunctionCall","src":"3333:41:125"},"nativeSrc":"3333:41:125","nodeType":"YulExpressionStatement","src":"3333:41:125"},{"nativeSrc":"3383:15:125","nodeType":"YulAssignment","src":"3383:15:125","value":{"name":"value","nativeSrc":"3393:5:125","nodeType":"YulIdentifier","src":"3393:5:125"},"variableNames":[{"name":"value0","nativeSrc":"3383:6:125","nodeType":"YulIdentifier","src":"3383:6:125"}]},{"nativeSrc":"3407:46:125","nodeType":"YulVariableDeclaration","src":"3407:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3438:9:125","nodeType":"YulIdentifier","src":"3438:9:125"},{"kind":"number","nativeSrc":"3449:2:125","nodeType":"YulLiteral","src":"3449:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3434:3:125","nodeType":"YulIdentifier","src":"3434:3:125"},"nativeSrc":"3434:18:125","nodeType":"YulFunctionCall","src":"3434:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3421:12:125","nodeType":"YulIdentifier","src":"3421:12:125"},"nativeSrc":"3421:32:125","nodeType":"YulFunctionCall","src":"3421:32:125"},"variables":[{"name":"offset","nativeSrc":"3411:6:125","nodeType":"YulTypedName","src":"3411:6:125","type":""}]},{"body":{"nativeSrc":"3496:16:125","nodeType":"YulBlock","src":"3496:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3505:1:125","nodeType":"YulLiteral","src":"3505:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3508:1:125","nodeType":"YulLiteral","src":"3508:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3498:6:125","nodeType":"YulIdentifier","src":"3498:6:125"},"nativeSrc":"3498:12:125","nodeType":"YulFunctionCall","src":"3498:12:125"},"nativeSrc":"3498:12:125","nodeType":"YulExpressionStatement","src":"3498:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"3468:6:125","nodeType":"YulIdentifier","src":"3468:6:125"},{"kind":"number","nativeSrc":"3476:18:125","nodeType":"YulLiteral","src":"3476:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3465:2:125","nodeType":"YulIdentifier","src":"3465:2:125"},"nativeSrc":"3465:30:125","nodeType":"YulFunctionCall","src":"3465:30:125"},"nativeSrc":"3462:50:125","nodeType":"YulIf","src":"3462:50:125"},{"nativeSrc":"3521:32:125","nodeType":"YulVariableDeclaration","src":"3521:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3535:9:125","nodeType":"YulIdentifier","src":"3535:9:125"},{"name":"offset","nativeSrc":"3546:6:125","nodeType":"YulIdentifier","src":"3546:6:125"}],"functionName":{"name":"add","nativeSrc":"3531:3:125","nodeType":"YulIdentifier","src":"3531:3:125"},"nativeSrc":"3531:22:125","nodeType":"YulFunctionCall","src":"3531:22:125"},"variables":[{"name":"_1","nativeSrc":"3525:2:125","nodeType":"YulTypedName","src":"3525:2:125","type":""}]},{"body":{"nativeSrc":"3601:16:125","nodeType":"YulBlock","src":"3601:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3610:1:125","nodeType":"YulLiteral","src":"3610:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3613:1:125","nodeType":"YulLiteral","src":"3613:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3603:6:125","nodeType":"YulIdentifier","src":"3603:6:125"},"nativeSrc":"3603:12:125","nodeType":"YulFunctionCall","src":"3603:12:125"},"nativeSrc":"3603:12:125","nodeType":"YulExpressionStatement","src":"3603:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"3580:2:125","nodeType":"YulIdentifier","src":"3580:2:125"},{"kind":"number","nativeSrc":"3584:4:125","nodeType":"YulLiteral","src":"3584:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"3576:3:125","nodeType":"YulIdentifier","src":"3576:3:125"},"nativeSrc":"3576:13:125","nodeType":"YulFunctionCall","src":"3576:13:125"},{"name":"dataEnd","nativeSrc":"3591:7:125","nodeType":"YulIdentifier","src":"3591:7:125"}],"functionName":{"name":"slt","nativeSrc":"3572:3:125","nodeType":"YulIdentifier","src":"3572:3:125"},"nativeSrc":"3572:27:125","nodeType":"YulFunctionCall","src":"3572:27:125"}],"functionName":{"name":"iszero","nativeSrc":"3565:6:125","nodeType":"YulIdentifier","src":"3565:6:125"},"nativeSrc":"3565:35:125","nodeType":"YulFunctionCall","src":"3565:35:125"},"nativeSrc":"3562:55:125","nodeType":"YulIf","src":"3562:55:125"},{"nativeSrc":"3626:30:125","nodeType":"YulVariableDeclaration","src":"3626:30:125","value":{"arguments":[{"name":"_1","nativeSrc":"3653:2:125","nodeType":"YulIdentifier","src":"3653:2:125"}],"functionName":{"name":"calldataload","nativeSrc":"3640:12:125","nodeType":"YulIdentifier","src":"3640:12:125"},"nativeSrc":"3640:16:125","nodeType":"YulFunctionCall","src":"3640:16:125"},"variables":[{"name":"length","nativeSrc":"3630:6:125","nodeType":"YulTypedName","src":"3630:6:125","type":""}]},{"body":{"nativeSrc":"3699:22:125","nodeType":"YulBlock","src":"3699:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3701:16:125","nodeType":"YulIdentifier","src":"3701:16:125"},"nativeSrc":"3701:18:125","nodeType":"YulFunctionCall","src":"3701:18:125"},"nativeSrc":"3701:18:125","nodeType":"YulExpressionStatement","src":"3701:18:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"3671:6:125","nodeType":"YulIdentifier","src":"3671:6:125"},{"kind":"number","nativeSrc":"3679:18:125","nodeType":"YulLiteral","src":"3679:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3668:2:125","nodeType":"YulIdentifier","src":"3668:2:125"},"nativeSrc":"3668:30:125","nodeType":"YulFunctionCall","src":"3668:30:125"},"nativeSrc":"3665:56:125","nodeType":"YulIf","src":"3665:56:125"},{"nativeSrc":"3730:70:125","nodeType":"YulVariableDeclaration","src":"3730:70:125","value":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"3771:6:125","nodeType":"YulIdentifier","src":"3771:6:125"},{"kind":"number","nativeSrc":"3779:4:125","nodeType":"YulLiteral","src":"3779:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"3767:3:125","nodeType":"YulIdentifier","src":"3767:3:125"},"nativeSrc":"3767:17:125","nodeType":"YulFunctionCall","src":"3767:17:125"},{"arguments":[{"kind":"number","nativeSrc":"3790:2:125","nodeType":"YulLiteral","src":"3790:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"3786:3:125","nodeType":"YulIdentifier","src":"3786:3:125"},"nativeSrc":"3786:7:125","nodeType":"YulFunctionCall","src":"3786:7:125"}],"functionName":{"name":"and","nativeSrc":"3763:3:125","nodeType":"YulIdentifier","src":"3763:3:125"},"nativeSrc":"3763:31:125","nodeType":"YulFunctionCall","src":"3763:31:125"},{"kind":"number","nativeSrc":"3796:2:125","nodeType":"YulLiteral","src":"3796:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3759:3:125","nodeType":"YulIdentifier","src":"3759:3:125"},"nativeSrc":"3759:40:125","nodeType":"YulFunctionCall","src":"3759:40:125"}],"functionName":{"name":"allocate_memory","nativeSrc":"3743:15:125","nodeType":"YulIdentifier","src":"3743:15:125"},"nativeSrc":"3743:57:125","nodeType":"YulFunctionCall","src":"3743:57:125"},"variables":[{"name":"array","nativeSrc":"3734:5:125","nodeType":"YulTypedName","src":"3734:5:125","type":""}]},{"expression":{"arguments":[{"name":"array","nativeSrc":"3816:5:125","nodeType":"YulIdentifier","src":"3816:5:125"},{"name":"length","nativeSrc":"3823:6:125","nodeType":"YulIdentifier","src":"3823:6:125"}],"functionName":{"name":"mstore","nativeSrc":"3809:6:125","nodeType":"YulIdentifier","src":"3809:6:125"},"nativeSrc":"3809:21:125","nodeType":"YulFunctionCall","src":"3809:21:125"},"nativeSrc":"3809:21:125","nodeType":"YulExpressionStatement","src":"3809:21:125"},{"body":{"nativeSrc":"3880:16:125","nodeType":"YulBlock","src":"3880:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3889:1:125","nodeType":"YulLiteral","src":"3889:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3892:1:125","nodeType":"YulLiteral","src":"3892:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3882:6:125","nodeType":"YulIdentifier","src":"3882:6:125"},"nativeSrc":"3882:12:125","nodeType":"YulFunctionCall","src":"3882:12:125"},"nativeSrc":"3882:12:125","nodeType":"YulExpressionStatement","src":"3882:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"3853:2:125","nodeType":"YulIdentifier","src":"3853:2:125"},{"name":"length","nativeSrc":"3857:6:125","nodeType":"YulIdentifier","src":"3857:6:125"}],"functionName":{"name":"add","nativeSrc":"3849:3:125","nodeType":"YulIdentifier","src":"3849:3:125"},"nativeSrc":"3849:15:125","nodeType":"YulFunctionCall","src":"3849:15:125"},{"kind":"number","nativeSrc":"3866:2:125","nodeType":"YulLiteral","src":"3866:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3845:3:125","nodeType":"YulIdentifier","src":"3845:3:125"},"nativeSrc":"3845:24:125","nodeType":"YulFunctionCall","src":"3845:24:125"},{"name":"dataEnd","nativeSrc":"3871:7:125","nodeType":"YulIdentifier","src":"3871:7:125"}],"functionName":{"name":"gt","nativeSrc":"3842:2:125","nodeType":"YulIdentifier","src":"3842:2:125"},"nativeSrc":"3842:37:125","nodeType":"YulFunctionCall","src":"3842:37:125"},"nativeSrc":"3839:57:125","nodeType":"YulIf","src":"3839:57:125"},{"expression":{"arguments":[{"arguments":[{"name":"array","nativeSrc":"3922:5:125","nodeType":"YulIdentifier","src":"3922:5:125"},{"kind":"number","nativeSrc":"3929:2:125","nodeType":"YulLiteral","src":"3929:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3918:3:125","nodeType":"YulIdentifier","src":"3918:3:125"},"nativeSrc":"3918:14:125","nodeType":"YulFunctionCall","src":"3918:14:125"},{"arguments":[{"name":"_1","nativeSrc":"3938:2:125","nodeType":"YulIdentifier","src":"3938:2:125"},{"kind":"number","nativeSrc":"3942:2:125","nodeType":"YulLiteral","src":"3942:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3934:3:125","nodeType":"YulIdentifier","src":"3934:3:125"},"nativeSrc":"3934:11:125","nodeType":"YulFunctionCall","src":"3934:11:125"},{"name":"length","nativeSrc":"3947:6:125","nodeType":"YulIdentifier","src":"3947:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"3905:12:125","nodeType":"YulIdentifier","src":"3905:12:125"},"nativeSrc":"3905:49:125","nodeType":"YulFunctionCall","src":"3905:49:125"},"nativeSrc":"3905:49:125","nodeType":"YulExpressionStatement","src":"3905:49:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"array","nativeSrc":"3978:5:125","nodeType":"YulIdentifier","src":"3978:5:125"},{"name":"length","nativeSrc":"3985:6:125","nodeType":"YulIdentifier","src":"3985:6:125"}],"functionName":{"name":"add","nativeSrc":"3974:3:125","nodeType":"YulIdentifier","src":"3974:3:125"},"nativeSrc":"3974:18:125","nodeType":"YulFunctionCall","src":"3974:18:125"},{"kind":"number","nativeSrc":"3994:2:125","nodeType":"YulLiteral","src":"3994:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3970:3:125","nodeType":"YulIdentifier","src":"3970:3:125"},"nativeSrc":"3970:27:125","nodeType":"YulFunctionCall","src":"3970:27:125"},{"kind":"number","nativeSrc":"3999:1:125","nodeType":"YulLiteral","src":"3999:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"3963:6:125","nodeType":"YulIdentifier","src":"3963:6:125"},"nativeSrc":"3963:38:125","nodeType":"YulFunctionCall","src":"3963:38:125"},"nativeSrc":"3963:38:125","nodeType":"YulExpressionStatement","src":"3963:38:125"},{"nativeSrc":"4010:15:125","nodeType":"YulAssignment","src":"4010:15:125","value":{"name":"array","nativeSrc":"4020:5:125","nodeType":"YulIdentifier","src":"4020:5:125"},"variableNames":[{"name":"value1","nativeSrc":"4010:6:125","nodeType":"YulIdentifier","src":"4010:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr","nativeSrc":"3121:910:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3175:9:125","nodeType":"YulTypedName","src":"3175:9:125","type":""},{"name":"dataEnd","nativeSrc":"3186:7:125","nodeType":"YulTypedName","src":"3186:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3198:6:125","nodeType":"YulTypedName","src":"3198:6:125","type":""},{"name":"value1","nativeSrc":"3206:6:125","nodeType":"YulTypedName","src":"3206:6:125","type":""}],"src":"3121:910:125"},{"body":{"nativeSrc":"4120:277:125","nodeType":"YulBlock","src":"4120:277:125","statements":[{"body":{"nativeSrc":"4166:16:125","nodeType":"YulBlock","src":"4166:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4175:1:125","nodeType":"YulLiteral","src":"4175:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4178:1:125","nodeType":"YulLiteral","src":"4178:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4168:6:125","nodeType":"YulIdentifier","src":"4168:6:125"},"nativeSrc":"4168:12:125","nodeType":"YulFunctionCall","src":"4168:12:125"},"nativeSrc":"4168:12:125","nodeType":"YulExpressionStatement","src":"4168:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4141:7:125","nodeType":"YulIdentifier","src":"4141:7:125"},{"name":"headStart","nativeSrc":"4150:9:125","nodeType":"YulIdentifier","src":"4150:9:125"}],"functionName":{"name":"sub","nativeSrc":"4137:3:125","nodeType":"YulIdentifier","src":"4137:3:125"},"nativeSrc":"4137:23:125","nodeType":"YulFunctionCall","src":"4137:23:125"},{"kind":"number","nativeSrc":"4162:2:125","nodeType":"YulLiteral","src":"4162:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4133:3:125","nodeType":"YulIdentifier","src":"4133:3:125"},"nativeSrc":"4133:32:125","nodeType":"YulFunctionCall","src":"4133:32:125"},"nativeSrc":"4130:52:125","nodeType":"YulIf","src":"4130:52:125"},{"nativeSrc":"4191:14:125","nodeType":"YulVariableDeclaration","src":"4191:14:125","value":{"kind":"number","nativeSrc":"4204:1:125","nodeType":"YulLiteral","src":"4204:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"4195:5:125","nodeType":"YulTypedName","src":"4195:5:125","type":""}]},{"nativeSrc":"4214:32:125","nodeType":"YulAssignment","src":"4214:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4236:9:125","nodeType":"YulIdentifier","src":"4236:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"4223:12:125","nodeType":"YulIdentifier","src":"4223:12:125"},"nativeSrc":"4223:23:125","nodeType":"YulFunctionCall","src":"4223:23:125"},"variableNames":[{"name":"value","nativeSrc":"4214:5:125","nodeType":"YulIdentifier","src":"4214:5:125"}]},{"nativeSrc":"4255:15:125","nodeType":"YulAssignment","src":"4255:15:125","value":{"name":"value","nativeSrc":"4265:5:125","nodeType":"YulIdentifier","src":"4265:5:125"},"variableNames":[{"name":"value0","nativeSrc":"4255:6:125","nodeType":"YulIdentifier","src":"4255:6:125"}]},{"nativeSrc":"4279:47:125","nodeType":"YulVariableDeclaration","src":"4279:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4311:9:125","nodeType":"YulIdentifier","src":"4311:9:125"},{"kind":"number","nativeSrc":"4322:2:125","nodeType":"YulLiteral","src":"4322:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4307:3:125","nodeType":"YulIdentifier","src":"4307:3:125"},"nativeSrc":"4307:18:125","nodeType":"YulFunctionCall","src":"4307:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"4294:12:125","nodeType":"YulIdentifier","src":"4294:12:125"},"nativeSrc":"4294:32:125","nodeType":"YulFunctionCall","src":"4294:32:125"},"variables":[{"name":"value_1","nativeSrc":"4283:7:125","nodeType":"YulTypedName","src":"4283:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"4357:7:125","nodeType":"YulIdentifier","src":"4357:7:125"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"4335:21:125","nodeType":"YulIdentifier","src":"4335:21:125"},"nativeSrc":"4335:30:125","nodeType":"YulFunctionCall","src":"4335:30:125"},"nativeSrc":"4335:30:125","nodeType":"YulExpressionStatement","src":"4335:30:125"},{"nativeSrc":"4374:17:125","nodeType":"YulAssignment","src":"4374:17:125","value":{"name":"value_1","nativeSrc":"4384:7:125","nodeType":"YulIdentifier","src":"4384:7:125"},"variableNames":[{"name":"value1","nativeSrc":"4374:6:125","nodeType":"YulIdentifier","src":"4374:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_bool","nativeSrc":"4036:361:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4078:9:125","nodeType":"YulTypedName","src":"4078:9:125","type":""},{"name":"dataEnd","nativeSrc":"4089:7:125","nodeType":"YulTypedName","src":"4089:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4101:6:125","nodeType":"YulTypedName","src":"4101:6:125","type":""},{"name":"value1","nativeSrc":"4109:6:125","nodeType":"YulTypedName","src":"4109:6:125","type":""}],"src":"4036:361:125"},{"body":{"nativeSrc":"4503:76:125","nodeType":"YulBlock","src":"4503:76:125","statements":[{"nativeSrc":"4513:26:125","nodeType":"YulAssignment","src":"4513:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4525:9:125","nodeType":"YulIdentifier","src":"4525:9:125"},{"kind":"number","nativeSrc":"4536:2:125","nodeType":"YulLiteral","src":"4536:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4521:3:125","nodeType":"YulIdentifier","src":"4521:3:125"},"nativeSrc":"4521:18:125","nodeType":"YulFunctionCall","src":"4521:18:125"},"variableNames":[{"name":"tail","nativeSrc":"4513:4:125","nodeType":"YulIdentifier","src":"4513:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4555:9:125","nodeType":"YulIdentifier","src":"4555:9:125"},{"name":"value0","nativeSrc":"4566:6:125","nodeType":"YulIdentifier","src":"4566:6:125"}],"functionName":{"name":"mstore","nativeSrc":"4548:6:125","nodeType":"YulIdentifier","src":"4548:6:125"},"nativeSrc":"4548:25:125","nodeType":"YulFunctionCall","src":"4548:25:125"},"nativeSrc":"4548:25:125","nodeType":"YulExpressionStatement","src":"4548:25:125"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"4402:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4472:9:125","nodeType":"YulTypedName","src":"4472:9:125","type":""},{"name":"value0","nativeSrc":"4483:6:125","nodeType":"YulTypedName","src":"4483:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4494:4:125","nodeType":"YulTypedName","src":"4494:4:125","type":""}],"src":"4402:177:125"},{"body":{"nativeSrc":"4702:102:125","nodeType":"YulBlock","src":"4702:102:125","statements":[{"nativeSrc":"4712:26:125","nodeType":"YulAssignment","src":"4712:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4724:9:125","nodeType":"YulIdentifier","src":"4724:9:125"},{"kind":"number","nativeSrc":"4735:2:125","nodeType":"YulLiteral","src":"4735:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4720:3:125","nodeType":"YulIdentifier","src":"4720:3:125"},"nativeSrc":"4720:18:125","nodeType":"YulFunctionCall","src":"4720:18:125"},"variableNames":[{"name":"tail","nativeSrc":"4712:4:125","nodeType":"YulIdentifier","src":"4712:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4754:9:125","nodeType":"YulIdentifier","src":"4754:9:125"},{"arguments":[{"name":"value0","nativeSrc":"4769:6:125","nodeType":"YulIdentifier","src":"4769:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4785:3:125","nodeType":"YulLiteral","src":"4785:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"4790:1:125","nodeType":"YulLiteral","src":"4790:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4781:3:125","nodeType":"YulIdentifier","src":"4781:3:125"},"nativeSrc":"4781:11:125","nodeType":"YulFunctionCall","src":"4781:11:125"},{"kind":"number","nativeSrc":"4794:1:125","nodeType":"YulLiteral","src":"4794:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4777:3:125","nodeType":"YulIdentifier","src":"4777:3:125"},"nativeSrc":"4777:19:125","nodeType":"YulFunctionCall","src":"4777:19:125"}],"functionName":{"name":"and","nativeSrc":"4765:3:125","nodeType":"YulIdentifier","src":"4765:3:125"},"nativeSrc":"4765:32:125","nodeType":"YulFunctionCall","src":"4765:32:125"}],"functionName":{"name":"mstore","nativeSrc":"4747:6:125","nodeType":"YulIdentifier","src":"4747:6:125"},"nativeSrc":"4747:51:125","nodeType":"YulFunctionCall","src":"4747:51:125"},"nativeSrc":"4747:51:125","nodeType":"YulExpressionStatement","src":"4747:51:125"}]},"name":"abi_encode_tuple_t_contract$_IEToken_$14336__to_t_address__fromStack_reversed","nativeSrc":"4584:220:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4671:9:125","nodeType":"YulTypedName","src":"4671:9:125","type":""},{"name":"value0","nativeSrc":"4682:6:125","nodeType":"YulTypedName","src":"4682:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4693:4:125","nodeType":"YulTypedName","src":"4693:4:125","type":""}],"src":"4584:220:125"},{"body":{"nativeSrc":"4972:171:125","nodeType":"YulBlock","src":"4972:171:125","statements":[{"nativeSrc":"4982:26:125","nodeType":"YulAssignment","src":"4982:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4994:9:125","nodeType":"YulIdentifier","src":"4994:9:125"},{"kind":"number","nativeSrc":"5005:2:125","nodeType":"YulLiteral","src":"5005:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4990:3:125","nodeType":"YulIdentifier","src":"4990:3:125"},"nativeSrc":"4990:18:125","nodeType":"YulFunctionCall","src":"4990:18:125"},"variableNames":[{"name":"tail","nativeSrc":"4982:4:125","nodeType":"YulIdentifier","src":"4982:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5024:9:125","nodeType":"YulIdentifier","src":"5024:9:125"},{"arguments":[{"name":"value0","nativeSrc":"5039:6:125","nodeType":"YulIdentifier","src":"5039:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5055:3:125","nodeType":"YulLiteral","src":"5055:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"5060:1:125","nodeType":"YulLiteral","src":"5060:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5051:3:125","nodeType":"YulIdentifier","src":"5051:3:125"},"nativeSrc":"5051:11:125","nodeType":"YulFunctionCall","src":"5051:11:125"},{"kind":"number","nativeSrc":"5064:1:125","nodeType":"YulLiteral","src":"5064:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5047:3:125","nodeType":"YulIdentifier","src":"5047:3:125"},"nativeSrc":"5047:19:125","nodeType":"YulFunctionCall","src":"5047:19:125"}],"functionName":{"name":"and","nativeSrc":"5035:3:125","nodeType":"YulIdentifier","src":"5035:3:125"},"nativeSrc":"5035:32:125","nodeType":"YulFunctionCall","src":"5035:32:125"}],"functionName":{"name":"mstore","nativeSrc":"5017:6:125","nodeType":"YulIdentifier","src":"5017:6:125"},"nativeSrc":"5017:51:125","nodeType":"YulFunctionCall","src":"5017:51:125"},"nativeSrc":"5017:51:125","nodeType":"YulExpressionStatement","src":"5017:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5088:9:125","nodeType":"YulIdentifier","src":"5088:9:125"},{"kind":"number","nativeSrc":"5099:2:125","nodeType":"YulLiteral","src":"5099:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5084:3:125","nodeType":"YulIdentifier","src":"5084:3:125"},"nativeSrc":"5084:18:125","nodeType":"YulFunctionCall","src":"5084:18:125"},{"arguments":[{"name":"value1","nativeSrc":"5108:6:125","nodeType":"YulIdentifier","src":"5108:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5124:3:125","nodeType":"YulLiteral","src":"5124:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"5129:1:125","nodeType":"YulLiteral","src":"5129:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5120:3:125","nodeType":"YulIdentifier","src":"5120:3:125"},"nativeSrc":"5120:11:125","nodeType":"YulFunctionCall","src":"5120:11:125"},{"kind":"number","nativeSrc":"5133:1:125","nodeType":"YulLiteral","src":"5133:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5116:3:125","nodeType":"YulIdentifier","src":"5116:3:125"},"nativeSrc":"5116:19:125","nodeType":"YulFunctionCall","src":"5116:19:125"}],"functionName":{"name":"and","nativeSrc":"5104:3:125","nodeType":"YulIdentifier","src":"5104:3:125"},"nativeSrc":"5104:32:125","nodeType":"YulFunctionCall","src":"5104:32:125"}],"functionName":{"name":"mstore","nativeSrc":"5077:6:125","nodeType":"YulIdentifier","src":"5077:6:125"},"nativeSrc":"5077:60:125","nodeType":"YulFunctionCall","src":"5077:60:125"},"nativeSrc":"5077:60:125","nodeType":"YulExpressionStatement","src":"5077:60:125"}]},"name":"abi_encode_tuple_t_contract$_IEToken_$14336_t_contract$_IEToken_$14336__to_t_address_t_address__fromStack_reversed","nativeSrc":"4809:334:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4933:9:125","nodeType":"YulTypedName","src":"4933:9:125","type":""},{"name":"value1","nativeSrc":"4944:6:125","nodeType":"YulTypedName","src":"4944:6:125","type":""},{"name":"value0","nativeSrc":"4952:6:125","nodeType":"YulTypedName","src":"4952:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4963:4:125","nodeType":"YulTypedName","src":"4963:4:125","type":""}],"src":"4809:334:125"},{"body":{"nativeSrc":"5248:145:125","nodeType":"YulBlock","src":"5248:145:125","statements":[{"body":{"nativeSrc":"5295:16:125","nodeType":"YulBlock","src":"5295:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5304:1:125","nodeType":"YulLiteral","src":"5304:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5307:1:125","nodeType":"YulLiteral","src":"5307:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5297:6:125","nodeType":"YulIdentifier","src":"5297:6:125"},"nativeSrc":"5297:12:125","nodeType":"YulFunctionCall","src":"5297:12:125"},"nativeSrc":"5297:12:125","nodeType":"YulExpressionStatement","src":"5297:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5269:7:125","nodeType":"YulIdentifier","src":"5269:7:125"},{"name":"headStart","nativeSrc":"5278:9:125","nodeType":"YulIdentifier","src":"5278:9:125"}],"functionName":{"name":"sub","nativeSrc":"5265:3:125","nodeType":"YulIdentifier","src":"5265:3:125"},"nativeSrc":"5265:23:125","nodeType":"YulFunctionCall","src":"5265:23:125"},{"kind":"number","nativeSrc":"5290:3:125","nodeType":"YulLiteral","src":"5290:3:125","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"5261:3:125","nodeType":"YulIdentifier","src":"5261:3:125"},"nativeSrc":"5261:33:125","nodeType":"YulFunctionCall","src":"5261:33:125"},"nativeSrc":"5258:53:125","nodeType":"YulIf","src":"5258:53:125"},{"nativeSrc":"5320:67:125","nodeType":"YulAssignment","src":"5320:67:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5368:9:125","nodeType":"YulIdentifier","src":"5368:9:125"},{"name":"dataEnd","nativeSrc":"5379:7:125","nodeType":"YulIdentifier","src":"5379:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"5330:37:125","nodeType":"YulIdentifier","src":"5330:37:125"},"nativeSrc":"5330:57:125","nodeType":"YulFunctionCall","src":"5330:57:125"},"variableNames":[{"name":"value0","nativeSrc":"5320:6:125","nodeType":"YulIdentifier","src":"5320:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptr","nativeSrc":"5148:245:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5214:9:125","nodeType":"YulTypedName","src":"5214:9:125","type":""},{"name":"dataEnd","nativeSrc":"5225:7:125","nodeType":"YulTypedName","src":"5225:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5237:6:125","nodeType":"YulTypedName","src":"5237:6:125","type":""}],"src":"5148:245:125"},{"body":{"nativeSrc":"5468:156:125","nodeType":"YulBlock","src":"5468:156:125","statements":[{"body":{"nativeSrc":"5514:16:125","nodeType":"YulBlock","src":"5514:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5523:1:125","nodeType":"YulLiteral","src":"5523:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5526:1:125","nodeType":"YulLiteral","src":"5526:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5516:6:125","nodeType":"YulIdentifier","src":"5516:6:125"},"nativeSrc":"5516:12:125","nodeType":"YulFunctionCall","src":"5516:12:125"},"nativeSrc":"5516:12:125","nodeType":"YulExpressionStatement","src":"5516:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5489:7:125","nodeType":"YulIdentifier","src":"5489:7:125"},{"name":"headStart","nativeSrc":"5498:9:125","nodeType":"YulIdentifier","src":"5498:9:125"}],"functionName":{"name":"sub","nativeSrc":"5485:3:125","nodeType":"YulIdentifier","src":"5485:3:125"},"nativeSrc":"5485:23:125","nodeType":"YulFunctionCall","src":"5485:23:125"},{"kind":"number","nativeSrc":"5510:2:125","nodeType":"YulLiteral","src":"5510:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5481:3:125","nodeType":"YulIdentifier","src":"5481:3:125"},"nativeSrc":"5481:32:125","nodeType":"YulFunctionCall","src":"5481:32:125"},"nativeSrc":"5478:52:125","nodeType":"YulIf","src":"5478:52:125"},{"nativeSrc":"5539:14:125","nodeType":"YulVariableDeclaration","src":"5539:14:125","value":{"kind":"number","nativeSrc":"5552:1:125","nodeType":"YulLiteral","src":"5552:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"5543:5:125","nodeType":"YulTypedName","src":"5543:5:125","type":""}]},{"nativeSrc":"5562:32:125","nodeType":"YulAssignment","src":"5562:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5584:9:125","nodeType":"YulIdentifier","src":"5584:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"5571:12:125","nodeType":"YulIdentifier","src":"5571:12:125"},"nativeSrc":"5571:23:125","nodeType":"YulFunctionCall","src":"5571:23:125"},"variableNames":[{"name":"value","nativeSrc":"5562:5:125","nodeType":"YulIdentifier","src":"5562:5:125"}]},{"nativeSrc":"5603:15:125","nodeType":"YulAssignment","src":"5603:15:125","value":{"name":"value","nativeSrc":"5613:5:125","nodeType":"YulIdentifier","src":"5613:5:125"},"variableNames":[{"name":"value0","nativeSrc":"5603:6:125","nodeType":"YulIdentifier","src":"5603:6:125"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"5398:226:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5434:9:125","nodeType":"YulTypedName","src":"5434:9:125","type":""},{"name":"dataEnd","nativeSrc":"5445:7:125","nodeType":"YulTypedName","src":"5445:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5457:6:125","nodeType":"YulTypedName","src":"5457:6:125","type":""}],"src":"5398:226:125"},{"body":{"nativeSrc":"5716:259:125","nodeType":"YulBlock","src":"5716:259:125","statements":[{"body":{"nativeSrc":"5762:16:125","nodeType":"YulBlock","src":"5762:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5771:1:125","nodeType":"YulLiteral","src":"5771:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5774:1:125","nodeType":"YulLiteral","src":"5774:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5764:6:125","nodeType":"YulIdentifier","src":"5764:6:125"},"nativeSrc":"5764:12:125","nodeType":"YulFunctionCall","src":"5764:12:125"},"nativeSrc":"5764:12:125","nodeType":"YulExpressionStatement","src":"5764:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5737:7:125","nodeType":"YulIdentifier","src":"5737:7:125"},{"name":"headStart","nativeSrc":"5746:9:125","nodeType":"YulIdentifier","src":"5746:9:125"}],"functionName":{"name":"sub","nativeSrc":"5733:3:125","nodeType":"YulIdentifier","src":"5733:3:125"},"nativeSrc":"5733:23:125","nodeType":"YulFunctionCall","src":"5733:23:125"},{"kind":"number","nativeSrc":"5758:2:125","nodeType":"YulLiteral","src":"5758:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"5729:3:125","nodeType":"YulIdentifier","src":"5729:3:125"},"nativeSrc":"5729:32:125","nodeType":"YulFunctionCall","src":"5729:32:125"},"nativeSrc":"5726:52:125","nodeType":"YulIf","src":"5726:52:125"},{"nativeSrc":"5787:14:125","nodeType":"YulVariableDeclaration","src":"5787:14:125","value":{"kind":"number","nativeSrc":"5800:1:125","nodeType":"YulLiteral","src":"5800:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"5791:5:125","nodeType":"YulTypedName","src":"5791:5:125","type":""}]},{"nativeSrc":"5810:32:125","nodeType":"YulAssignment","src":"5810:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5832:9:125","nodeType":"YulIdentifier","src":"5832:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"5819:12:125","nodeType":"YulIdentifier","src":"5819:12:125"},"nativeSrc":"5819:23:125","nodeType":"YulFunctionCall","src":"5819:23:125"},"variableNames":[{"name":"value","nativeSrc":"5810:5:125","nodeType":"YulIdentifier","src":"5810:5:125"}]},{"nativeSrc":"5851:15:125","nodeType":"YulAssignment","src":"5851:15:125","value":{"name":"value","nativeSrc":"5861:5:125","nodeType":"YulIdentifier","src":"5861:5:125"},"variableNames":[{"name":"value0","nativeSrc":"5851:6:125","nodeType":"YulIdentifier","src":"5851:6:125"}]},{"nativeSrc":"5875:16:125","nodeType":"YulVariableDeclaration","src":"5875:16:125","value":{"kind":"number","nativeSrc":"5890:1:125","nodeType":"YulLiteral","src":"5890:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"5879:7:125","nodeType":"YulTypedName","src":"5879:7:125","type":""}]},{"nativeSrc":"5900:43:125","nodeType":"YulAssignment","src":"5900:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5928:9:125","nodeType":"YulIdentifier","src":"5928:9:125"},{"kind":"number","nativeSrc":"5939:2:125","nodeType":"YulLiteral","src":"5939:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5924:3:125","nodeType":"YulIdentifier","src":"5924:3:125"},"nativeSrc":"5924:18:125","nodeType":"YulFunctionCall","src":"5924:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"5911:12:125","nodeType":"YulIdentifier","src":"5911:12:125"},"nativeSrc":"5911:32:125","nodeType":"YulFunctionCall","src":"5911:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"5900:7:125","nodeType":"YulIdentifier","src":"5900:7:125"}]},{"nativeSrc":"5952:17:125","nodeType":"YulAssignment","src":"5952:17:125","value":{"name":"value_1","nativeSrc":"5962:7:125","nodeType":"YulIdentifier","src":"5962:7:125"},"variableNames":[{"name":"value1","nativeSrc":"5952:6:125","nodeType":"YulIdentifier","src":"5952:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256","nativeSrc":"5629:346:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5674:9:125","nodeType":"YulTypedName","src":"5674:9:125","type":""},{"name":"dataEnd","nativeSrc":"5685:7:125","nodeType":"YulTypedName","src":"5685:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5697:6:125","nodeType":"YulTypedName","src":"5697:6:125","type":""},{"name":"value1","nativeSrc":"5705:6:125","nodeType":"YulTypedName","src":"5705:6:125","type":""}],"src":"5629:346:125"},{"body":{"nativeSrc":"6067:290:125","nodeType":"YulBlock","src":"6067:290:125","statements":[{"body":{"nativeSrc":"6113:16:125","nodeType":"YulBlock","src":"6113:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6122:1:125","nodeType":"YulLiteral","src":"6122:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6125:1:125","nodeType":"YulLiteral","src":"6125:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6115:6:125","nodeType":"YulIdentifier","src":"6115:6:125"},"nativeSrc":"6115:12:125","nodeType":"YulFunctionCall","src":"6115:12:125"},"nativeSrc":"6115:12:125","nodeType":"YulExpressionStatement","src":"6115:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6088:7:125","nodeType":"YulIdentifier","src":"6088:7:125"},{"name":"headStart","nativeSrc":"6097:9:125","nodeType":"YulIdentifier","src":"6097:9:125"}],"functionName":{"name":"sub","nativeSrc":"6084:3:125","nodeType":"YulIdentifier","src":"6084:3:125"},"nativeSrc":"6084:23:125","nodeType":"YulFunctionCall","src":"6084:23:125"},{"kind":"number","nativeSrc":"6109:2:125","nodeType":"YulLiteral","src":"6109:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6080:3:125","nodeType":"YulIdentifier","src":"6080:3:125"},"nativeSrc":"6080:32:125","nodeType":"YulFunctionCall","src":"6080:32:125"},"nativeSrc":"6077:52:125","nodeType":"YulIf","src":"6077:52:125"},{"nativeSrc":"6138:14:125","nodeType":"YulVariableDeclaration","src":"6138:14:125","value":{"kind":"number","nativeSrc":"6151:1:125","nodeType":"YulLiteral","src":"6151:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"6142:5:125","nodeType":"YulTypedName","src":"6142:5:125","type":""}]},{"nativeSrc":"6161:32:125","nodeType":"YulAssignment","src":"6161:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6183:9:125","nodeType":"YulIdentifier","src":"6183:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"6170:12:125","nodeType":"YulIdentifier","src":"6170:12:125"},"nativeSrc":"6170:23:125","nodeType":"YulFunctionCall","src":"6170:23:125"},"variableNames":[{"name":"value","nativeSrc":"6161:5:125","nodeType":"YulIdentifier","src":"6161:5:125"}]},{"nativeSrc":"6202:15:125","nodeType":"YulAssignment","src":"6202:15:125","value":{"name":"value","nativeSrc":"6212:5:125","nodeType":"YulIdentifier","src":"6212:5:125"},"variableNames":[{"name":"value0","nativeSrc":"6202:6:125","nodeType":"YulIdentifier","src":"6202:6:125"}]},{"nativeSrc":"6226:47:125","nodeType":"YulVariableDeclaration","src":"6226:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6258:9:125","nodeType":"YulIdentifier","src":"6258:9:125"},{"kind":"number","nativeSrc":"6269:2:125","nodeType":"YulLiteral","src":"6269:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6254:3:125","nodeType":"YulIdentifier","src":"6254:3:125"},"nativeSrc":"6254:18:125","nodeType":"YulFunctionCall","src":"6254:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"6241:12:125","nodeType":"YulIdentifier","src":"6241:12:125"},"nativeSrc":"6241:32:125","nodeType":"YulFunctionCall","src":"6241:32:125"},"variables":[{"name":"value_1","nativeSrc":"6230:7:125","nodeType":"YulTypedName","src":"6230:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"6317:7:125","nodeType":"YulIdentifier","src":"6317:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"6282:34:125","nodeType":"YulIdentifier","src":"6282:34:125"},"nativeSrc":"6282:43:125","nodeType":"YulFunctionCall","src":"6282:43:125"},"nativeSrc":"6282:43:125","nodeType":"YulExpressionStatement","src":"6282:43:125"},{"nativeSrc":"6334:17:125","nodeType":"YulAssignment","src":"6334:17:125","value":{"name":"value_1","nativeSrc":"6344:7:125","nodeType":"YulIdentifier","src":"6344:7:125"},"variableNames":[{"name":"value1","nativeSrc":"6334:6:125","nodeType":"YulIdentifier","src":"6334:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_address","nativeSrc":"5980:377:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6025:9:125","nodeType":"YulTypedName","src":"6025:9:125","type":""},{"name":"dataEnd","nativeSrc":"6036:7:125","nodeType":"YulTypedName","src":"6036:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6048:6:125","nodeType":"YulTypedName","src":"6048:6:125","type":""},{"name":"value1","nativeSrc":"6056:6:125","nodeType":"YulTypedName","src":"6056:6:125","type":""}],"src":"5980:377:125"},{"body":{"nativeSrc":"6481:102:125","nodeType":"YulBlock","src":"6481:102:125","statements":[{"nativeSrc":"6491:26:125","nodeType":"YulAssignment","src":"6491:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6503:9:125","nodeType":"YulIdentifier","src":"6503:9:125"},{"kind":"number","nativeSrc":"6514:2:125","nodeType":"YulLiteral","src":"6514:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6499:3:125","nodeType":"YulIdentifier","src":"6499:3:125"},"nativeSrc":"6499:18:125","nodeType":"YulFunctionCall","src":"6499:18:125"},"variableNames":[{"name":"tail","nativeSrc":"6491:4:125","nodeType":"YulIdentifier","src":"6491:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6533:9:125","nodeType":"YulIdentifier","src":"6533:9:125"},{"arguments":[{"name":"value0","nativeSrc":"6548:6:125","nodeType":"YulIdentifier","src":"6548:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6564:3:125","nodeType":"YulLiteral","src":"6564:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"6569:1:125","nodeType":"YulLiteral","src":"6569:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6560:3:125","nodeType":"YulIdentifier","src":"6560:3:125"},"nativeSrc":"6560:11:125","nodeType":"YulFunctionCall","src":"6560:11:125"},{"kind":"number","nativeSrc":"6573:1:125","nodeType":"YulLiteral","src":"6573:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6556:3:125","nodeType":"YulIdentifier","src":"6556:3:125"},"nativeSrc":"6556:19:125","nodeType":"YulFunctionCall","src":"6556:19:125"}],"functionName":{"name":"and","nativeSrc":"6544:3:125","nodeType":"YulIdentifier","src":"6544:3:125"},"nativeSrc":"6544:32:125","nodeType":"YulFunctionCall","src":"6544:32:125"}],"functionName":{"name":"mstore","nativeSrc":"6526:6:125","nodeType":"YulIdentifier","src":"6526:6:125"},"nativeSrc":"6526:51:125","nodeType":"YulFunctionCall","src":"6526:51:125"},"nativeSrc":"6526:51:125","nodeType":"YulExpressionStatement","src":"6526:51:125"}]},"name":"abi_encode_tuple_t_contract$_IERC4626_$22463__to_t_address__fromStack_reversed","nativeSrc":"6362:221:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6450:9:125","nodeType":"YulTypedName","src":"6450:9:125","type":""},{"name":"value0","nativeSrc":"6461:6:125","nodeType":"YulTypedName","src":"6461:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6472:4:125","nodeType":"YulTypedName","src":"6472:4:125","type":""}],"src":"6362:221:125"},{"body":{"nativeSrc":"6709:297:125","nodeType":"YulBlock","src":"6709:297:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6726:9:125","nodeType":"YulIdentifier","src":"6726:9:125"},{"kind":"number","nativeSrc":"6737:2:125","nodeType":"YulLiteral","src":"6737:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"6719:6:125","nodeType":"YulIdentifier","src":"6719:6:125"},"nativeSrc":"6719:21:125","nodeType":"YulFunctionCall","src":"6719:21:125"},"nativeSrc":"6719:21:125","nodeType":"YulExpressionStatement","src":"6719:21:125"},{"nativeSrc":"6749:27:125","nodeType":"YulVariableDeclaration","src":"6749:27:125","value":{"arguments":[{"name":"value0","nativeSrc":"6769:6:125","nodeType":"YulIdentifier","src":"6769:6:125"}],"functionName":{"name":"mload","nativeSrc":"6763:5:125","nodeType":"YulIdentifier","src":"6763:5:125"},"nativeSrc":"6763:13:125","nodeType":"YulFunctionCall","src":"6763:13:125"},"variables":[{"name":"length","nativeSrc":"6753:6:125","nodeType":"YulTypedName","src":"6753:6:125","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6796:9:125","nodeType":"YulIdentifier","src":"6796:9:125"},{"kind":"number","nativeSrc":"6807:2:125","nodeType":"YulLiteral","src":"6807:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6792:3:125","nodeType":"YulIdentifier","src":"6792:3:125"},"nativeSrc":"6792:18:125","nodeType":"YulFunctionCall","src":"6792:18:125"},{"name":"length","nativeSrc":"6812:6:125","nodeType":"YulIdentifier","src":"6812:6:125"}],"functionName":{"name":"mstore","nativeSrc":"6785:6:125","nodeType":"YulIdentifier","src":"6785:6:125"},"nativeSrc":"6785:34:125","nodeType":"YulFunctionCall","src":"6785:34:125"},"nativeSrc":"6785:34:125","nodeType":"YulExpressionStatement","src":"6785:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6838:9:125","nodeType":"YulIdentifier","src":"6838:9:125"},{"kind":"number","nativeSrc":"6849:2:125","nodeType":"YulLiteral","src":"6849:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6834:3:125","nodeType":"YulIdentifier","src":"6834:3:125"},"nativeSrc":"6834:18:125","nodeType":"YulFunctionCall","src":"6834:18:125"},{"arguments":[{"name":"value0","nativeSrc":"6858:6:125","nodeType":"YulIdentifier","src":"6858:6:125"},{"kind":"number","nativeSrc":"6866:2:125","nodeType":"YulLiteral","src":"6866:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6854:3:125","nodeType":"YulIdentifier","src":"6854:3:125"},"nativeSrc":"6854:15:125","nodeType":"YulFunctionCall","src":"6854:15:125"},{"name":"length","nativeSrc":"6871:6:125","nodeType":"YulIdentifier","src":"6871:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"6828:5:125","nodeType":"YulIdentifier","src":"6828:5:125"},"nativeSrc":"6828:50:125","nodeType":"YulFunctionCall","src":"6828:50:125"},"nativeSrc":"6828:50:125","nodeType":"YulExpressionStatement","src":"6828:50:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6902:9:125","nodeType":"YulIdentifier","src":"6902:9:125"},{"name":"length","nativeSrc":"6913:6:125","nodeType":"YulIdentifier","src":"6913:6:125"}],"functionName":{"name":"add","nativeSrc":"6898:3:125","nodeType":"YulIdentifier","src":"6898:3:125"},"nativeSrc":"6898:22:125","nodeType":"YulFunctionCall","src":"6898:22:125"},{"kind":"number","nativeSrc":"6922:2:125","nodeType":"YulLiteral","src":"6922:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6894:3:125","nodeType":"YulIdentifier","src":"6894:3:125"},"nativeSrc":"6894:31:125","nodeType":"YulFunctionCall","src":"6894:31:125"},{"kind":"number","nativeSrc":"6927:1:125","nodeType":"YulLiteral","src":"6927:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"6887:6:125","nodeType":"YulIdentifier","src":"6887:6:125"},"nativeSrc":"6887:42:125","nodeType":"YulFunctionCall","src":"6887:42:125"},"nativeSrc":"6887:42:125","nodeType":"YulExpressionStatement","src":"6887:42:125"},{"nativeSrc":"6938:62:125","nodeType":"YulAssignment","src":"6938:62:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6954:9:125","nodeType":"YulIdentifier","src":"6954:9:125"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"6973:6:125","nodeType":"YulIdentifier","src":"6973:6:125"},{"kind":"number","nativeSrc":"6981:2:125","nodeType":"YulLiteral","src":"6981:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"6969:3:125","nodeType":"YulIdentifier","src":"6969:3:125"},"nativeSrc":"6969:15:125","nodeType":"YulFunctionCall","src":"6969:15:125"},{"arguments":[{"kind":"number","nativeSrc":"6990:2:125","nodeType":"YulLiteral","src":"6990:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"6986:3:125","nodeType":"YulIdentifier","src":"6986:3:125"},"nativeSrc":"6986:7:125","nodeType":"YulFunctionCall","src":"6986:7:125"}],"functionName":{"name":"and","nativeSrc":"6965:3:125","nodeType":"YulIdentifier","src":"6965:3:125"},"nativeSrc":"6965:29:125","nodeType":"YulFunctionCall","src":"6965:29:125"}],"functionName":{"name":"add","nativeSrc":"6950:3:125","nodeType":"YulIdentifier","src":"6950:3:125"},"nativeSrc":"6950:45:125","nodeType":"YulFunctionCall","src":"6950:45:125"},{"kind":"number","nativeSrc":"6997:2:125","nodeType":"YulLiteral","src":"6997:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6946:3:125","nodeType":"YulIdentifier","src":"6946:3:125"},"nativeSrc":"6946:54:125","nodeType":"YulFunctionCall","src":"6946:54:125"},"variableNames":[{"name":"tail","nativeSrc":"6938:4:125","nodeType":"YulIdentifier","src":"6938:4:125"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"6588:418:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6678:9:125","nodeType":"YulTypedName","src":"6678:9:125","type":""},{"name":"value0","nativeSrc":"6689:6:125","nodeType":"YulTypedName","src":"6689:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6700:4:125","nodeType":"YulTypedName","src":"6700:4:125","type":""}],"src":"6588:418:125"},{"body":{"nativeSrc":"7158:231:125","nodeType":"YulBlock","src":"7158:231:125","statements":[{"body":{"nativeSrc":"7205:16:125","nodeType":"YulBlock","src":"7205:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7214:1:125","nodeType":"YulLiteral","src":"7214:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7217:1:125","nodeType":"YulLiteral","src":"7217:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7207:6:125","nodeType":"YulIdentifier","src":"7207:6:125"},"nativeSrc":"7207:12:125","nodeType":"YulFunctionCall","src":"7207:12:125"},"nativeSrc":"7207:12:125","nodeType":"YulExpressionStatement","src":"7207:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7179:7:125","nodeType":"YulIdentifier","src":"7179:7:125"},{"name":"headStart","nativeSrc":"7188:9:125","nodeType":"YulIdentifier","src":"7188:9:125"}],"functionName":{"name":"sub","nativeSrc":"7175:3:125","nodeType":"YulIdentifier","src":"7175:3:125"},"nativeSrc":"7175:23:125","nodeType":"YulFunctionCall","src":"7175:23:125"},{"kind":"number","nativeSrc":"7200:3:125","nodeType":"YulLiteral","src":"7200:3:125","type":"","value":"768"}],"functionName":{"name":"slt","nativeSrc":"7171:3:125","nodeType":"YulIdentifier","src":"7171:3:125"},"nativeSrc":"7171:33:125","nodeType":"YulFunctionCall","src":"7171:33:125"},"nativeSrc":"7168:53:125","nodeType":"YulIf","src":"7168:53:125"},{"nativeSrc":"7230:67:125","nodeType":"YulAssignment","src":"7230:67:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7278:9:125","nodeType":"YulIdentifier","src":"7278:9:125"},{"name":"dataEnd","nativeSrc":"7289:7:125","nodeType":"YulIdentifier","src":"7289:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"7240:37:125","nodeType":"YulIdentifier","src":"7240:37:125"},"nativeSrc":"7240:57:125","nodeType":"YulFunctionCall","src":"7240:57:125"},"variableNames":[{"name":"value0","nativeSrc":"7230:6:125","nodeType":"YulIdentifier","src":"7230:6:125"}]},{"nativeSrc":"7306:77:125","nodeType":"YulAssignment","src":"7306:77:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7358:9:125","nodeType":"YulIdentifier","src":"7358:9:125"},{"kind":"number","nativeSrc":"7369:3:125","nodeType":"YulLiteral","src":"7369:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"7354:3:125","nodeType":"YulIdentifier","src":"7354:3:125"},"nativeSrc":"7354:19:125","nodeType":"YulFunctionCall","src":"7354:19:125"},{"name":"dataEnd","nativeSrc":"7375:7:125","nodeType":"YulIdentifier","src":"7375:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"7316:37:125","nodeType":"YulIdentifier","src":"7316:37:125"},"nativeSrc":"7316:67:125","nodeType":"YulFunctionCall","src":"7316:67:125"},"variableNames":[{"name":"value1","nativeSrc":"7306:6:125","nodeType":"YulIdentifier","src":"7306:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_struct$_PolicyData_$7744_calldata_ptr","nativeSrc":"7011:378:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7116:9:125","nodeType":"YulTypedName","src":"7116:9:125","type":""},{"name":"dataEnd","nativeSrc":"7127:7:125","nodeType":"YulTypedName","src":"7127:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7139:6:125","nodeType":"YulTypedName","src":"7139:6:125","type":""},{"name":"value1","nativeSrc":"7147:6:125","nodeType":"YulTypedName","src":"7147:6:125","type":""}],"src":"7011:378:125"},{"body":{"nativeSrc":"7519:102:125","nodeType":"YulBlock","src":"7519:102:125","statements":[{"nativeSrc":"7529:26:125","nodeType":"YulAssignment","src":"7529:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7541:9:125","nodeType":"YulIdentifier","src":"7541:9:125"},{"kind":"number","nativeSrc":"7552:2:125","nodeType":"YulLiteral","src":"7552:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7537:3:125","nodeType":"YulIdentifier","src":"7537:3:125"},"nativeSrc":"7537:18:125","nodeType":"YulFunctionCall","src":"7537:18:125"},"variableNames":[{"name":"tail","nativeSrc":"7529:4:125","nodeType":"YulIdentifier","src":"7529:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7571:9:125","nodeType":"YulIdentifier","src":"7571:9:125"},{"arguments":[{"name":"value0","nativeSrc":"7586:6:125","nodeType":"YulIdentifier","src":"7586:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7602:3:125","nodeType":"YulLiteral","src":"7602:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"7607:1:125","nodeType":"YulLiteral","src":"7607:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7598:3:125","nodeType":"YulIdentifier","src":"7598:3:125"},"nativeSrc":"7598:11:125","nodeType":"YulFunctionCall","src":"7598:11:125"},{"kind":"number","nativeSrc":"7611:1:125","nodeType":"YulLiteral","src":"7611:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7594:3:125","nodeType":"YulIdentifier","src":"7594:3:125"},"nativeSrc":"7594:19:125","nodeType":"YulFunctionCall","src":"7594:19:125"}],"functionName":{"name":"and","nativeSrc":"7582:3:125","nodeType":"YulIdentifier","src":"7582:3:125"},"nativeSrc":"7582:32:125","nodeType":"YulFunctionCall","src":"7582:32:125"}],"functionName":{"name":"mstore","nativeSrc":"7564:6:125","nodeType":"YulIdentifier","src":"7564:6:125"},"nativeSrc":"7564:51:125","nodeType":"YulFunctionCall","src":"7564:51:125"},"nativeSrc":"7564:51:125","nodeType":"YulExpressionStatement","src":"7564:51:125"}]},"name":"abi_encode_tuple_t_contract$_IERC20Metadata_$24925__to_t_address__fromStack_reversed","nativeSrc":"7394:227:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7488:9:125","nodeType":"YulTypedName","src":"7488:9:125","type":""},{"name":"value0","nativeSrc":"7499:6:125","nodeType":"YulTypedName","src":"7499:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7510:4:125","nodeType":"YulTypedName","src":"7510:4:125","type":""}],"src":"7394:227:125"},{"body":{"nativeSrc":"7794:586:125","nodeType":"YulBlock","src":"7794:586:125","statements":[{"body":{"nativeSrc":"7841:16:125","nodeType":"YulBlock","src":"7841:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7850:1:125","nodeType":"YulLiteral","src":"7850:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7853:1:125","nodeType":"YulLiteral","src":"7853:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7843:6:125","nodeType":"YulIdentifier","src":"7843:6:125"},"nativeSrc":"7843:12:125","nodeType":"YulFunctionCall","src":"7843:12:125"},"nativeSrc":"7843:12:125","nodeType":"YulExpressionStatement","src":"7843:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7815:7:125","nodeType":"YulIdentifier","src":"7815:7:125"},{"name":"headStart","nativeSrc":"7824:9:125","nodeType":"YulIdentifier","src":"7824:9:125"}],"functionName":{"name":"sub","nativeSrc":"7811:3:125","nodeType":"YulIdentifier","src":"7811:3:125"},"nativeSrc":"7811:23:125","nodeType":"YulFunctionCall","src":"7811:23:125"},{"kind":"number","nativeSrc":"7836:3:125","nodeType":"YulLiteral","src":"7836:3:125","type":"","value":"512"}],"functionName":{"name":"slt","nativeSrc":"7807:3:125","nodeType":"YulIdentifier","src":"7807:3:125"},"nativeSrc":"7807:33:125","nodeType":"YulFunctionCall","src":"7807:33:125"},"nativeSrc":"7804:53:125","nodeType":"YulIf","src":"7804:53:125"},{"nativeSrc":"7866:67:125","nodeType":"YulAssignment","src":"7866:67:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7914:9:125","nodeType":"YulIdentifier","src":"7914:9:125"},{"name":"dataEnd","nativeSrc":"7925:7:125","nodeType":"YulIdentifier","src":"7925:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData_calldata","nativeSrc":"7876:37:125","nodeType":"YulIdentifier","src":"7876:37:125"},"nativeSrc":"7876:57:125","nodeType":"YulFunctionCall","src":"7876:57:125"},"variableNames":[{"name":"value0","nativeSrc":"7866:6:125","nodeType":"YulIdentifier","src":"7866:6:125"}]},{"nativeSrc":"7942:14:125","nodeType":"YulVariableDeclaration","src":"7942:14:125","value":{"kind":"number","nativeSrc":"7955:1:125","nodeType":"YulLiteral","src":"7955:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"7946:5:125","nodeType":"YulTypedName","src":"7946:5:125","type":""}]},{"nativeSrc":"7965:42:125","nodeType":"YulAssignment","src":"7965:42:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7991:9:125","nodeType":"YulIdentifier","src":"7991:9:125"},{"kind":"number","nativeSrc":"8002:3:125","nodeType":"YulLiteral","src":"8002:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"7987:3:125","nodeType":"YulIdentifier","src":"7987:3:125"},"nativeSrc":"7987:19:125","nodeType":"YulFunctionCall","src":"7987:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"7974:12:125","nodeType":"YulIdentifier","src":"7974:12:125"},"nativeSrc":"7974:33:125","nodeType":"YulFunctionCall","src":"7974:33:125"},"variableNames":[{"name":"value","nativeSrc":"7965:5:125","nodeType":"YulIdentifier","src":"7965:5:125"}]},{"nativeSrc":"8016:15:125","nodeType":"YulAssignment","src":"8016:15:125","value":{"name":"value","nativeSrc":"8026:5:125","nodeType":"YulIdentifier","src":"8026:5:125"},"variableNames":[{"name":"value1","nativeSrc":"8016:6:125","nodeType":"YulIdentifier","src":"8016:6:125"}]},{"nativeSrc":"8040:16:125","nodeType":"YulVariableDeclaration","src":"8040:16:125","value":{"kind":"number","nativeSrc":"8055:1:125","nodeType":"YulLiteral","src":"8055:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"8044:7:125","nodeType":"YulTypedName","src":"8044:7:125","type":""}]},{"nativeSrc":"8065:44:125","nodeType":"YulAssignment","src":"8065:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8093:9:125","nodeType":"YulIdentifier","src":"8093:9:125"},{"kind":"number","nativeSrc":"8104:3:125","nodeType":"YulLiteral","src":"8104:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"8089:3:125","nodeType":"YulIdentifier","src":"8089:3:125"},"nativeSrc":"8089:19:125","nodeType":"YulFunctionCall","src":"8089:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"8076:12:125","nodeType":"YulIdentifier","src":"8076:12:125"},"nativeSrc":"8076:33:125","nodeType":"YulFunctionCall","src":"8076:33:125"},"variableNames":[{"name":"value_1","nativeSrc":"8065:7:125","nodeType":"YulIdentifier","src":"8065:7:125"}]},{"nativeSrc":"8118:17:125","nodeType":"YulAssignment","src":"8118:17:125","value":{"name":"value_1","nativeSrc":"8128:7:125","nodeType":"YulIdentifier","src":"8128:7:125"},"variableNames":[{"name":"value2","nativeSrc":"8118:6:125","nodeType":"YulIdentifier","src":"8118:6:125"}]},{"nativeSrc":"8144:16:125","nodeType":"YulVariableDeclaration","src":"8144:16:125","value":{"kind":"number","nativeSrc":"8159:1:125","nodeType":"YulLiteral","src":"8159:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"8148:7:125","nodeType":"YulTypedName","src":"8148:7:125","type":""}]},{"nativeSrc":"8169:44:125","nodeType":"YulAssignment","src":"8169:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8197:9:125","nodeType":"YulIdentifier","src":"8197:9:125"},{"kind":"number","nativeSrc":"8208:3:125","nodeType":"YulLiteral","src":"8208:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"8193:3:125","nodeType":"YulIdentifier","src":"8193:3:125"},"nativeSrc":"8193:19:125","nodeType":"YulFunctionCall","src":"8193:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"8180:12:125","nodeType":"YulIdentifier","src":"8180:12:125"},"nativeSrc":"8180:33:125","nodeType":"YulFunctionCall","src":"8180:33:125"},"variableNames":[{"name":"value_2","nativeSrc":"8169:7:125","nodeType":"YulIdentifier","src":"8169:7:125"}]},{"nativeSrc":"8222:17:125","nodeType":"YulAssignment","src":"8222:17:125","value":{"name":"value_2","nativeSrc":"8232:7:125","nodeType":"YulIdentifier","src":"8232:7:125"},"variableNames":[{"name":"value3","nativeSrc":"8222:6:125","nodeType":"YulIdentifier","src":"8222:6:125"}]},{"nativeSrc":"8248:48:125","nodeType":"YulVariableDeclaration","src":"8248:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8280:9:125","nodeType":"YulIdentifier","src":"8280:9:125"},{"kind":"number","nativeSrc":"8291:3:125","nodeType":"YulLiteral","src":"8291:3:125","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"8276:3:125","nodeType":"YulIdentifier","src":"8276:3:125"},"nativeSrc":"8276:19:125","nodeType":"YulFunctionCall","src":"8276:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"8263:12:125","nodeType":"YulIdentifier","src":"8263:12:125"},"nativeSrc":"8263:33:125","nodeType":"YulFunctionCall","src":"8263:33:125"},"variables":[{"name":"value_3","nativeSrc":"8252:7:125","nodeType":"YulTypedName","src":"8252:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"8340:7:125","nodeType":"YulIdentifier","src":"8340:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"8305:34:125","nodeType":"YulIdentifier","src":"8305:34:125"},"nativeSrc":"8305:43:125","nodeType":"YulFunctionCall","src":"8305:43:125"},"nativeSrc":"8305:43:125","nodeType":"YulExpressionStatement","src":"8305:43:125"},{"nativeSrc":"8357:17:125","nodeType":"YulAssignment","src":"8357:17:125","value":{"name":"value_3","nativeSrc":"8367:7:125","nodeType":"YulIdentifier","src":"8367:7:125"},"variableNames":[{"name":"value4","nativeSrc":"8357:6:125","nodeType":"YulIdentifier","src":"8357:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_uint256t_uint256t_uint256t_address","nativeSrc":"7626:754:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7728:9:125","nodeType":"YulTypedName","src":"7728:9:125","type":""},{"name":"dataEnd","nativeSrc":"7739:7:125","nodeType":"YulTypedName","src":"7739:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7751:6:125","nodeType":"YulTypedName","src":"7751:6:125","type":""},{"name":"value1","nativeSrc":"7759:6:125","nodeType":"YulTypedName","src":"7759:6:125","type":""},{"name":"value2","nativeSrc":"7767:6:125","nodeType":"YulTypedName","src":"7767:6:125","type":""},{"name":"value3","nativeSrc":"7775:6:125","nodeType":"YulTypedName","src":"7775:6:125","type":""},{"name":"value4","nativeSrc":"7783:6:125","nodeType":"YulTypedName","src":"7783:6:125","type":""}],"src":"7626:754:125"},{"body":{"nativeSrc":"8466:180:125","nodeType":"YulBlock","src":"8466:180:125","statements":[{"body":{"nativeSrc":"8512:16:125","nodeType":"YulBlock","src":"8512:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8521:1:125","nodeType":"YulLiteral","src":"8521:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8524:1:125","nodeType":"YulLiteral","src":"8524:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8514:6:125","nodeType":"YulIdentifier","src":"8514:6:125"},"nativeSrc":"8514:12:125","nodeType":"YulFunctionCall","src":"8514:12:125"},"nativeSrc":"8514:12:125","nodeType":"YulExpressionStatement","src":"8514:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8487:7:125","nodeType":"YulIdentifier","src":"8487:7:125"},{"name":"headStart","nativeSrc":"8496:9:125","nodeType":"YulIdentifier","src":"8496:9:125"}],"functionName":{"name":"sub","nativeSrc":"8483:3:125","nodeType":"YulIdentifier","src":"8483:3:125"},"nativeSrc":"8483:23:125","nodeType":"YulFunctionCall","src":"8483:23:125"},{"kind":"number","nativeSrc":"8508:2:125","nodeType":"YulLiteral","src":"8508:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8479:3:125","nodeType":"YulIdentifier","src":"8479:3:125"},"nativeSrc":"8479:32:125","nodeType":"YulFunctionCall","src":"8479:32:125"},"nativeSrc":"8476:52:125","nodeType":"YulIf","src":"8476:52:125"},{"nativeSrc":"8537:29:125","nodeType":"YulVariableDeclaration","src":"8537:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8556:9:125","nodeType":"YulIdentifier","src":"8556:9:125"}],"functionName":{"name":"mload","nativeSrc":"8550:5:125","nodeType":"YulIdentifier","src":"8550:5:125"},"nativeSrc":"8550:16:125","nodeType":"YulFunctionCall","src":"8550:16:125"},"variables":[{"name":"value","nativeSrc":"8541:5:125","nodeType":"YulTypedName","src":"8541:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8610:5:125","nodeType":"YulIdentifier","src":"8610:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"8575:34:125","nodeType":"YulIdentifier","src":"8575:34:125"},"nativeSrc":"8575:41:125","nodeType":"YulFunctionCall","src":"8575:41:125"},"nativeSrc":"8575:41:125","nodeType":"YulExpressionStatement","src":"8575:41:125"},{"nativeSrc":"8625:15:125","nodeType":"YulAssignment","src":"8625:15:125","value":{"name":"value","nativeSrc":"8635:5:125","nodeType":"YulIdentifier","src":"8635:5:125"},"variableNames":[{"name":"value0","nativeSrc":"8625:6:125","nodeType":"YulIdentifier","src":"8625:6:125"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"8385:261:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8432:9:125","nodeType":"YulTypedName","src":"8432:9:125","type":""},{"name":"dataEnd","nativeSrc":"8443:7:125","nodeType":"YulTypedName","src":"8443:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8455:6:125","nodeType":"YulTypedName","src":"8455:6:125","type":""}],"src":"8385:261:125"},{"body":{"nativeSrc":"8752:102:125","nodeType":"YulBlock","src":"8752:102:125","statements":[{"nativeSrc":"8762:26:125","nodeType":"YulAssignment","src":"8762:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8774:9:125","nodeType":"YulIdentifier","src":"8774:9:125"},{"kind":"number","nativeSrc":"8785:2:125","nodeType":"YulLiteral","src":"8785:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8770:3:125","nodeType":"YulIdentifier","src":"8770:3:125"},"nativeSrc":"8770:18:125","nodeType":"YulFunctionCall","src":"8770:18:125"},"variableNames":[{"name":"tail","nativeSrc":"8762:4:125","nodeType":"YulIdentifier","src":"8762:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8804:9:125","nodeType":"YulIdentifier","src":"8804:9:125"},{"arguments":[{"name":"value0","nativeSrc":"8819:6:125","nodeType":"YulIdentifier","src":"8819:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"8835:3:125","nodeType":"YulLiteral","src":"8835:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"8840:1:125","nodeType":"YulLiteral","src":"8840:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"8831:3:125","nodeType":"YulIdentifier","src":"8831:3:125"},"nativeSrc":"8831:11:125","nodeType":"YulFunctionCall","src":"8831:11:125"},{"kind":"number","nativeSrc":"8844:1:125","nodeType":"YulLiteral","src":"8844:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"8827:3:125","nodeType":"YulIdentifier","src":"8827:3:125"},"nativeSrc":"8827:19:125","nodeType":"YulFunctionCall","src":"8827:19:125"}],"functionName":{"name":"and","nativeSrc":"8815:3:125","nodeType":"YulIdentifier","src":"8815:3:125"},"nativeSrc":"8815:32:125","nodeType":"YulFunctionCall","src":"8815:32:125"}],"functionName":{"name":"mstore","nativeSrc":"8797:6:125","nodeType":"YulIdentifier","src":"8797:6:125"},"nativeSrc":"8797:51:125","nodeType":"YulFunctionCall","src":"8797:51:125"},"nativeSrc":"8797:51:125","nodeType":"YulExpressionStatement","src":"8797:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"8651:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8721:9:125","nodeType":"YulTypedName","src":"8721:9:125","type":""},{"name":"value0","nativeSrc":"8732:6:125","nodeType":"YulTypedName","src":"8732:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8743:4:125","nodeType":"YulTypedName","src":"8743:4:125","type":""}],"src":"8651:203:125"},{"body":{"nativeSrc":"8940:103:125","nodeType":"YulBlock","src":"8940:103:125","statements":[{"body":{"nativeSrc":"8986:16:125","nodeType":"YulBlock","src":"8986:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8995:1:125","nodeType":"YulLiteral","src":"8995:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8998:1:125","nodeType":"YulLiteral","src":"8998:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8988:6:125","nodeType":"YulIdentifier","src":"8988:6:125"},"nativeSrc":"8988:12:125","nodeType":"YulFunctionCall","src":"8988:12:125"},"nativeSrc":"8988:12:125","nodeType":"YulExpressionStatement","src":"8988:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8961:7:125","nodeType":"YulIdentifier","src":"8961:7:125"},{"name":"headStart","nativeSrc":"8970:9:125","nodeType":"YulIdentifier","src":"8970:9:125"}],"functionName":{"name":"sub","nativeSrc":"8957:3:125","nodeType":"YulIdentifier","src":"8957:3:125"},"nativeSrc":"8957:23:125","nodeType":"YulFunctionCall","src":"8957:23:125"},{"kind":"number","nativeSrc":"8982:2:125","nodeType":"YulLiteral","src":"8982:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8953:3:125","nodeType":"YulIdentifier","src":"8953:3:125"},"nativeSrc":"8953:32:125","nodeType":"YulFunctionCall","src":"8953:32:125"},"nativeSrc":"8950:52:125","nodeType":"YulIf","src":"8950:52:125"},{"nativeSrc":"9011:26:125","nodeType":"YulAssignment","src":"9011:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"9027:9:125","nodeType":"YulIdentifier","src":"9027:9:125"}],"functionName":{"name":"mload","nativeSrc":"9021:5:125","nodeType":"YulIdentifier","src":"9021:5:125"},"nativeSrc":"9021:16:125","nodeType":"YulFunctionCall","src":"9021:16:125"},"variableNames":[{"name":"value0","nativeSrc":"9011:6:125","nodeType":"YulIdentifier","src":"9011:6:125"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"8859:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8906:9:125","nodeType":"YulTypedName","src":"8906:9:125","type":""},{"name":"dataEnd","nativeSrc":"8917:7:125","nodeType":"YulTypedName","src":"8917:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8929:6:125","nodeType":"YulTypedName","src":"8929:6:125","type":""}],"src":"8859:184:125"},{"body":{"nativeSrc":"9205:214:125","nodeType":"YulBlock","src":"9205:214:125","statements":[{"nativeSrc":"9215:26:125","nodeType":"YulAssignment","src":"9215:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"9227:9:125","nodeType":"YulIdentifier","src":"9227:9:125"},{"kind":"number","nativeSrc":"9238:2:125","nodeType":"YulLiteral","src":"9238:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9223:3:125","nodeType":"YulIdentifier","src":"9223:3:125"},"nativeSrc":"9223:18:125","nodeType":"YulFunctionCall","src":"9223:18:125"},"variableNames":[{"name":"tail","nativeSrc":"9215:4:125","nodeType":"YulIdentifier","src":"9215:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9257:9:125","nodeType":"YulIdentifier","src":"9257:9:125"},{"name":"value0","nativeSrc":"9268:6:125","nodeType":"YulIdentifier","src":"9268:6:125"}],"functionName":{"name":"mstore","nativeSrc":"9250:6:125","nodeType":"YulIdentifier","src":"9250:6:125"},"nativeSrc":"9250:25:125","nodeType":"YulFunctionCall","src":"9250:25:125"},"nativeSrc":"9250:25:125","nodeType":"YulExpressionStatement","src":"9250:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9295:9:125","nodeType":"YulIdentifier","src":"9295:9:125"},{"kind":"number","nativeSrc":"9306:2:125","nodeType":"YulLiteral","src":"9306:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9291:3:125","nodeType":"YulIdentifier","src":"9291:3:125"},"nativeSrc":"9291:18:125","nodeType":"YulFunctionCall","src":"9291:18:125"},{"arguments":[{"name":"value1","nativeSrc":"9315:6:125","nodeType":"YulIdentifier","src":"9315:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9331:3:125","nodeType":"YulLiteral","src":"9331:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"9336:1:125","nodeType":"YulLiteral","src":"9336:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"9327:3:125","nodeType":"YulIdentifier","src":"9327:3:125"},"nativeSrc":"9327:11:125","nodeType":"YulFunctionCall","src":"9327:11:125"},{"kind":"number","nativeSrc":"9340:1:125","nodeType":"YulLiteral","src":"9340:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"9323:3:125","nodeType":"YulIdentifier","src":"9323:3:125"},"nativeSrc":"9323:19:125","nodeType":"YulFunctionCall","src":"9323:19:125"}],"functionName":{"name":"and","nativeSrc":"9311:3:125","nodeType":"YulIdentifier","src":"9311:3:125"},"nativeSrc":"9311:32:125","nodeType":"YulFunctionCall","src":"9311:32:125"}],"functionName":{"name":"mstore","nativeSrc":"9284:6:125","nodeType":"YulIdentifier","src":"9284:6:125"},"nativeSrc":"9284:60:125","nodeType":"YulFunctionCall","src":"9284:60:125"},"nativeSrc":"9284:60:125","nodeType":"YulExpressionStatement","src":"9284:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9364:9:125","nodeType":"YulIdentifier","src":"9364:9:125"},{"kind":"number","nativeSrc":"9375:2:125","nodeType":"YulLiteral","src":"9375:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9360:3:125","nodeType":"YulIdentifier","src":"9360:3:125"},"nativeSrc":"9360:18:125","nodeType":"YulFunctionCall","src":"9360:18:125"},{"arguments":[{"name":"value2","nativeSrc":"9384:6:125","nodeType":"YulIdentifier","src":"9384:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9400:3:125","nodeType":"YulLiteral","src":"9400:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"9405:1:125","nodeType":"YulLiteral","src":"9405:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"9396:3:125","nodeType":"YulIdentifier","src":"9396:3:125"},"nativeSrc":"9396:11:125","nodeType":"YulFunctionCall","src":"9396:11:125"},{"kind":"number","nativeSrc":"9409:1:125","nodeType":"YulLiteral","src":"9409:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"9392:3:125","nodeType":"YulIdentifier","src":"9392:3:125"},"nativeSrc":"9392:19:125","nodeType":"YulFunctionCall","src":"9392:19:125"}],"functionName":{"name":"and","nativeSrc":"9380:3:125","nodeType":"YulIdentifier","src":"9380:3:125"},"nativeSrc":"9380:32:125","nodeType":"YulFunctionCall","src":"9380:32:125"}],"functionName":{"name":"mstore","nativeSrc":"9353:6:125","nodeType":"YulIdentifier","src":"9353:6:125"},"nativeSrc":"9353:60:125","nodeType":"YulFunctionCall","src":"9353:60:125"},"nativeSrc":"9353:60:125","nodeType":"YulExpressionStatement","src":"9353:60:125"}]},"name":"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed","nativeSrc":"9048:371:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9158:9:125","nodeType":"YulTypedName","src":"9158:9:125","type":""},{"name":"value2","nativeSrc":"9169:6:125","nodeType":"YulTypedName","src":"9169:6:125","type":""},{"name":"value1","nativeSrc":"9177:6:125","nodeType":"YulTypedName","src":"9177:6:125","type":""},{"name":"value0","nativeSrc":"9185:6:125","nodeType":"YulTypedName","src":"9185:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9196:4:125","nodeType":"YulTypedName","src":"9196:4:125","type":""}],"src":"9048:371:125"},{"body":{"nativeSrc":"9456:95:125","nodeType":"YulBlock","src":"9456:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9473:1:125","nodeType":"YulLiteral","src":"9473:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"9480:3:125","nodeType":"YulLiteral","src":"9480:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"9485:10:125","nodeType":"YulLiteral","src":"9485:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"9476:3:125","nodeType":"YulIdentifier","src":"9476:3:125"},"nativeSrc":"9476:20:125","nodeType":"YulFunctionCall","src":"9476:20:125"}],"functionName":{"name":"mstore","nativeSrc":"9466:6:125","nodeType":"YulIdentifier","src":"9466:6:125"},"nativeSrc":"9466:31:125","nodeType":"YulFunctionCall","src":"9466:31:125"},"nativeSrc":"9466:31:125","nodeType":"YulExpressionStatement","src":"9466:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9513:1:125","nodeType":"YulLiteral","src":"9513:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"9516:4:125","nodeType":"YulLiteral","src":"9516:4:125","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"9506:6:125","nodeType":"YulIdentifier","src":"9506:6:125"},"nativeSrc":"9506:15:125","nodeType":"YulFunctionCall","src":"9506:15:125"},"nativeSrc":"9506:15:125","nodeType":"YulExpressionStatement","src":"9506:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9537:1:125","nodeType":"YulLiteral","src":"9537:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9540:4:125","nodeType":"YulLiteral","src":"9540:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"9530:6:125","nodeType":"YulIdentifier","src":"9530:6:125"},"nativeSrc":"9530:15:125","nodeType":"YulFunctionCall","src":"9530:15:125"},"nativeSrc":"9530:15:125","nodeType":"YulExpressionStatement","src":"9530:15:125"}]},"name":"panic_error_0x11","nativeSrc":"9424:127:125","nodeType":"YulFunctionDefinition","src":"9424:127:125"},{"body":{"nativeSrc":"9604:152:125","nodeType":"YulBlock","src":"9604:152:125","statements":[{"nativeSrc":"9614:17:125","nodeType":"YulAssignment","src":"9614:17:125","value":{"arguments":[{"name":"x","nativeSrc":"9626:1:125","nodeType":"YulIdentifier","src":"9626:1:125"},{"name":"y","nativeSrc":"9629:1:125","nodeType":"YulIdentifier","src":"9629:1:125"}],"functionName":{"name":"sub","nativeSrc":"9622:3:125","nodeType":"YulIdentifier","src":"9622:3:125"},"nativeSrc":"9622:9:125","nodeType":"YulFunctionCall","src":"9622:9:125"},"variableNames":[{"name":"diff","nativeSrc":"9614:4:125","nodeType":"YulIdentifier","src":"9614:4:125"}]},{"nativeSrc":"9640:19:125","nodeType":"YulVariableDeclaration","src":"9640:19:125","value":{"arguments":[{"name":"y","nativeSrc":"9654:1:125","nodeType":"YulIdentifier","src":"9654:1:125"},{"kind":"number","nativeSrc":"9657:1:125","nodeType":"YulLiteral","src":"9657:1:125","type":"","value":"0"}],"functionName":{"name":"slt","nativeSrc":"9650:3:125","nodeType":"YulIdentifier","src":"9650:3:125"},"nativeSrc":"9650:9:125","nodeType":"YulFunctionCall","src":"9650:9:125"},"variables":[{"name":"_1","nativeSrc":"9644:2:125","nodeType":"YulTypedName","src":"9644:2:125","type":""}]},{"body":{"nativeSrc":"9728:22:125","nodeType":"YulBlock","src":"9728:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"9730:16:125","nodeType":"YulIdentifier","src":"9730:16:125"},"nativeSrc":"9730:18:125","nodeType":"YulFunctionCall","src":"9730:18:125"},"nativeSrc":"9730:18:125","nodeType":"YulExpressionStatement","src":"9730:18:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"9685:2:125","nodeType":"YulIdentifier","src":"9685:2:125"}],"functionName":{"name":"iszero","nativeSrc":"9678:6:125","nodeType":"YulIdentifier","src":"9678:6:125"},"nativeSrc":"9678:10:125","nodeType":"YulFunctionCall","src":"9678:10:125"},{"arguments":[{"name":"diff","nativeSrc":"9694:4:125","nodeType":"YulIdentifier","src":"9694:4:125"},{"name":"x","nativeSrc":"9700:1:125","nodeType":"YulIdentifier","src":"9700:1:125"}],"functionName":{"name":"sgt","nativeSrc":"9690:3:125","nodeType":"YulIdentifier","src":"9690:3:125"},"nativeSrc":"9690:12:125","nodeType":"YulFunctionCall","src":"9690:12:125"}],"functionName":{"name":"and","nativeSrc":"9674:3:125","nodeType":"YulIdentifier","src":"9674:3:125"},"nativeSrc":"9674:29:125","nodeType":"YulFunctionCall","src":"9674:29:125"},{"arguments":[{"name":"_1","nativeSrc":"9709:2:125","nodeType":"YulIdentifier","src":"9709:2:125"},{"arguments":[{"name":"diff","nativeSrc":"9717:4:125","nodeType":"YulIdentifier","src":"9717:4:125"},{"name":"x","nativeSrc":"9723:1:125","nodeType":"YulIdentifier","src":"9723:1:125"}],"functionName":{"name":"slt","nativeSrc":"9713:3:125","nodeType":"YulIdentifier","src":"9713:3:125"},"nativeSrc":"9713:12:125","nodeType":"YulFunctionCall","src":"9713:12:125"}],"functionName":{"name":"and","nativeSrc":"9705:3:125","nodeType":"YulIdentifier","src":"9705:3:125"},"nativeSrc":"9705:21:125","nodeType":"YulFunctionCall","src":"9705:21:125"}],"functionName":{"name":"or","nativeSrc":"9671:2:125","nodeType":"YulIdentifier","src":"9671:2:125"},"nativeSrc":"9671:56:125","nodeType":"YulFunctionCall","src":"9671:56:125"},"nativeSrc":"9668:82:125","nodeType":"YulIf","src":"9668:82:125"}]},"name":"checked_sub_t_int256","nativeSrc":"9556:200:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"9586:1:125","nodeType":"YulTypedName","src":"9586:1:125","type":""},{"name":"y","nativeSrc":"9589:1:125","nodeType":"YulTypedName","src":"9589:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"9595:4:125","nodeType":"YulTypedName","src":"9595:4:125","type":""}],"src":"9556:200:125"},{"body":{"nativeSrc":"9810:79:125","nodeType":"YulBlock","src":"9810:79:125","statements":[{"nativeSrc":"9820:17:125","nodeType":"YulAssignment","src":"9820:17:125","value":{"arguments":[{"name":"x","nativeSrc":"9832:1:125","nodeType":"YulIdentifier","src":"9832:1:125"},{"name":"y","nativeSrc":"9835:1:125","nodeType":"YulIdentifier","src":"9835:1:125"}],"functionName":{"name":"sub","nativeSrc":"9828:3:125","nodeType":"YulIdentifier","src":"9828:3:125"},"nativeSrc":"9828:9:125","nodeType":"YulFunctionCall","src":"9828:9:125"},"variableNames":[{"name":"diff","nativeSrc":"9820:4:125","nodeType":"YulIdentifier","src":"9820:4:125"}]},{"body":{"nativeSrc":"9861:22:125","nodeType":"YulBlock","src":"9861:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"9863:16:125","nodeType":"YulIdentifier","src":"9863:16:125"},"nativeSrc":"9863:18:125","nodeType":"YulFunctionCall","src":"9863:18:125"},"nativeSrc":"9863:18:125","nodeType":"YulExpressionStatement","src":"9863:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"9852:4:125","nodeType":"YulIdentifier","src":"9852:4:125"},{"name":"x","nativeSrc":"9858:1:125","nodeType":"YulIdentifier","src":"9858:1:125"}],"functionName":{"name":"gt","nativeSrc":"9849:2:125","nodeType":"YulIdentifier","src":"9849:2:125"},"nativeSrc":"9849:11:125","nodeType":"YulFunctionCall","src":"9849:11:125"},"nativeSrc":"9846:37:125","nodeType":"YulIf","src":"9846:37:125"}]},"name":"checked_sub_t_uint256","nativeSrc":"9761:128:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"9792:1:125","nodeType":"YulTypedName","src":"9792:1:125","type":""},{"name":"y","nativeSrc":"9795:1:125","nodeType":"YulTypedName","src":"9795:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"9801:4:125","nodeType":"YulTypedName","src":"9801:4:125","type":""}],"src":"9761:128:125"},{"body":{"nativeSrc":"9942:117:125","nodeType":"YulBlock","src":"9942:117:125","statements":[{"nativeSrc":"9952:29:125","nodeType":"YulAssignment","src":"9952:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"9974:6:125","nodeType":"YulIdentifier","src":"9974:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"9961:12:125","nodeType":"YulIdentifier","src":"9961:12:125"},"nativeSrc":"9961:20:125","nodeType":"YulFunctionCall","src":"9961:20:125"},"variableNames":[{"name":"value","nativeSrc":"9952:5:125","nodeType":"YulIdentifier","src":"9952:5:125"}]},{"body":{"nativeSrc":"10037:16:125","nodeType":"YulBlock","src":"10037:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10046:1:125","nodeType":"YulLiteral","src":"10046:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10049:1:125","nodeType":"YulLiteral","src":"10049:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10039:6:125","nodeType":"YulIdentifier","src":"10039:6:125"},"nativeSrc":"10039:12:125","nodeType":"YulFunctionCall","src":"10039:12:125"},"nativeSrc":"10039:12:125","nodeType":"YulExpressionStatement","src":"10039:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"10003:5:125","nodeType":"YulIdentifier","src":"10003:5:125"},{"arguments":[{"name":"value","nativeSrc":"10014:5:125","nodeType":"YulIdentifier","src":"10014:5:125"},{"kind":"number","nativeSrc":"10021:12:125","nodeType":"YulLiteral","src":"10021:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"10010:3:125","nodeType":"YulIdentifier","src":"10010:3:125"},"nativeSrc":"10010:24:125","nodeType":"YulFunctionCall","src":"10010:24:125"}],"functionName":{"name":"eq","nativeSrc":"10000:2:125","nodeType":"YulIdentifier","src":"10000:2:125"},"nativeSrc":"10000:35:125","nodeType":"YulFunctionCall","src":"10000:35:125"}],"functionName":{"name":"iszero","nativeSrc":"9993:6:125","nodeType":"YulIdentifier","src":"9993:6:125"},"nativeSrc":"9993:43:125","nodeType":"YulFunctionCall","src":"9993:43:125"},"nativeSrc":"9990:63:125","nodeType":"YulIf","src":"9990:63:125"}]},"name":"abi_decode_uint40","nativeSrc":"9894:165:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"9921:6:125","nodeType":"YulTypedName","src":"9921:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"9932:5:125","nodeType":"YulTypedName","src":"9932:5:125","type":""}],"src":"9894:165:125"},{"body":{"nativeSrc":"10162:1485:125","nodeType":"YulBlock","src":"10162:1485:125","statements":[{"nativeSrc":"10172:43:125","nodeType":"YulVariableDeclaration","src":"10172:43:125","value":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10190:7:125","nodeType":"YulIdentifier","src":"10190:7:125"},{"name":"headStart","nativeSrc":"10199:9:125","nodeType":"YulIdentifier","src":"10199:9:125"}],"functionName":{"name":"sub","nativeSrc":"10186:3:125","nodeType":"YulIdentifier","src":"10186:3:125"},"nativeSrc":"10186:23:125","nodeType":"YulFunctionCall","src":"10186:23:125"},{"kind":"number","nativeSrc":"10211:3:125","nodeType":"YulLiteral","src":"10211:3:125","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"10182:3:125","nodeType":"YulIdentifier","src":"10182:3:125"},"nativeSrc":"10182:33:125","nodeType":"YulFunctionCall","src":"10182:33:125"},"variables":[{"name":"_1","nativeSrc":"10176:2:125","nodeType":"YulTypedName","src":"10176:2:125","type":""}]},{"body":{"nativeSrc":"10230:16:125","nodeType":"YulBlock","src":"10230:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10239:1:125","nodeType":"YulLiteral","src":"10239:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10242:1:125","nodeType":"YulLiteral","src":"10242:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10232:6:125","nodeType":"YulIdentifier","src":"10232:6:125"},"nativeSrc":"10232:12:125","nodeType":"YulFunctionCall","src":"10232:12:125"},"nativeSrc":"10232:12:125","nodeType":"YulExpressionStatement","src":"10232:12:125"}]},"condition":{"name":"_1","nativeSrc":"10227:2:125","nodeType":"YulIdentifier","src":"10227:2:125"},"nativeSrc":"10224:22:125","nodeType":"YulIf","src":"10224:22:125"},{"nativeSrc":"10255:7:125","nodeType":"YulAssignment","src":"10255:7:125","value":{"kind":"number","nativeSrc":"10261:1:125","nodeType":"YulLiteral","src":"10261:1:125","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"10255:2:125","nodeType":"YulIdentifier","src":"10255:2:125"}]},{"nativeSrc":"10271:35:125","nodeType":"YulVariableDeclaration","src":"10271:35:125","value":{"arguments":[],"functionName":{"name":"allocate_memory_1999","nativeSrc":"10284:20:125","nodeType":"YulIdentifier","src":"10284:20:125"},"nativeSrc":"10284:22:125","nodeType":"YulFunctionCall","src":"10284:22:125"},"variables":[{"name":"value","nativeSrc":"10275:5:125","nodeType":"YulTypedName","src":"10275:5:125","type":""}]},{"nativeSrc":"10315:16:125","nodeType":"YulVariableDeclaration","src":"10315:16:125","value":{"kind":"number","nativeSrc":"10330:1:125","nodeType":"YulLiteral","src":"10330:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"10319:7:125","nodeType":"YulTypedName","src":"10319:7:125","type":""}]},{"nativeSrc":"10340:34:125","nodeType":"YulAssignment","src":"10340:34:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10364:9:125","nodeType":"YulIdentifier","src":"10364:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"10351:12:125","nodeType":"YulIdentifier","src":"10351:12:125"},"nativeSrc":"10351:23:125","nodeType":"YulFunctionCall","src":"10351:23:125"},"variableNames":[{"name":"value_1","nativeSrc":"10340:7:125","nodeType":"YulIdentifier","src":"10340:7:125"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10390:5:125","nodeType":"YulIdentifier","src":"10390:5:125"},{"name":"value_1","nativeSrc":"10397:7:125","nodeType":"YulIdentifier","src":"10397:7:125"}],"functionName":{"name":"mstore","nativeSrc":"10383:6:125","nodeType":"YulIdentifier","src":"10383:6:125"},"nativeSrc":"10383:22:125","nodeType":"YulFunctionCall","src":"10383:22:125"},"nativeSrc":"10383:22:125","nodeType":"YulExpressionStatement","src":"10383:22:125"},{"nativeSrc":"10414:16:125","nodeType":"YulVariableDeclaration","src":"10414:16:125","value":{"kind":"number","nativeSrc":"10429:1:125","nodeType":"YulLiteral","src":"10429:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"10418:7:125","nodeType":"YulTypedName","src":"10418:7:125","type":""}]},{"nativeSrc":"10439:43:125","nodeType":"YulAssignment","src":"10439:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10467:9:125","nodeType":"YulIdentifier","src":"10467:9:125"},{"kind":"number","nativeSrc":"10478:2:125","nodeType":"YulLiteral","src":"10478:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10463:3:125","nodeType":"YulIdentifier","src":"10463:3:125"},"nativeSrc":"10463:18:125","nodeType":"YulFunctionCall","src":"10463:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"10450:12:125","nodeType":"YulIdentifier","src":"10450:12:125"},"nativeSrc":"10450:32:125","nodeType":"YulFunctionCall","src":"10450:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"10439:7:125","nodeType":"YulIdentifier","src":"10439:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"10502:5:125","nodeType":"YulIdentifier","src":"10502:5:125"},{"kind":"number","nativeSrc":"10509:2:125","nodeType":"YulLiteral","src":"10509:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10498:3:125","nodeType":"YulIdentifier","src":"10498:3:125"},"nativeSrc":"10498:14:125","nodeType":"YulFunctionCall","src":"10498:14:125"},{"name":"value_2","nativeSrc":"10514:7:125","nodeType":"YulIdentifier","src":"10514:7:125"}],"functionName":{"name":"mstore","nativeSrc":"10491:6:125","nodeType":"YulIdentifier","src":"10491:6:125"},"nativeSrc":"10491:31:125","nodeType":"YulFunctionCall","src":"10491:31:125"},"nativeSrc":"10491:31:125","nodeType":"YulExpressionStatement","src":"10491:31:125"},{"nativeSrc":"10531:16:125","nodeType":"YulVariableDeclaration","src":"10531:16:125","value":{"kind":"number","nativeSrc":"10546:1:125","nodeType":"YulLiteral","src":"10546:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"10535:7:125","nodeType":"YulTypedName","src":"10535:7:125","type":""}]},{"nativeSrc":"10556:43:125","nodeType":"YulAssignment","src":"10556:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10584:9:125","nodeType":"YulIdentifier","src":"10584:9:125"},{"kind":"number","nativeSrc":"10595:2:125","nodeType":"YulLiteral","src":"10595:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10580:3:125","nodeType":"YulIdentifier","src":"10580:3:125"},"nativeSrc":"10580:18:125","nodeType":"YulFunctionCall","src":"10580:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"10567:12:125","nodeType":"YulIdentifier","src":"10567:12:125"},"nativeSrc":"10567:32:125","nodeType":"YulFunctionCall","src":"10567:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"10556:7:125","nodeType":"YulIdentifier","src":"10556:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"10619:5:125","nodeType":"YulIdentifier","src":"10619:5:125"},{"kind":"number","nativeSrc":"10626:2:125","nodeType":"YulLiteral","src":"10626:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10615:3:125","nodeType":"YulIdentifier","src":"10615:3:125"},"nativeSrc":"10615:14:125","nodeType":"YulFunctionCall","src":"10615:14:125"},{"name":"value_3","nativeSrc":"10631:7:125","nodeType":"YulIdentifier","src":"10631:7:125"}],"functionName":{"name":"mstore","nativeSrc":"10608:6:125","nodeType":"YulIdentifier","src":"10608:6:125"},"nativeSrc":"10608:31:125","nodeType":"YulFunctionCall","src":"10608:31:125"},"nativeSrc":"10608:31:125","nodeType":"YulExpressionStatement","src":"10608:31:125"},{"nativeSrc":"10648:16:125","nodeType":"YulVariableDeclaration","src":"10648:16:125","value":{"kind":"number","nativeSrc":"10663:1:125","nodeType":"YulLiteral","src":"10663:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"10652:7:125","nodeType":"YulTypedName","src":"10652:7:125","type":""}]},{"nativeSrc":"10673:43:125","nodeType":"YulAssignment","src":"10673:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10701:9:125","nodeType":"YulIdentifier","src":"10701:9:125"},{"kind":"number","nativeSrc":"10712:2:125","nodeType":"YulLiteral","src":"10712:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"10697:3:125","nodeType":"YulIdentifier","src":"10697:3:125"},"nativeSrc":"10697:18:125","nodeType":"YulFunctionCall","src":"10697:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"10684:12:125","nodeType":"YulIdentifier","src":"10684:12:125"},"nativeSrc":"10684:32:125","nodeType":"YulFunctionCall","src":"10684:32:125"},"variableNames":[{"name":"value_4","nativeSrc":"10673:7:125","nodeType":"YulIdentifier","src":"10673:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"10736:5:125","nodeType":"YulIdentifier","src":"10736:5:125"},{"kind":"number","nativeSrc":"10743:2:125","nodeType":"YulLiteral","src":"10743:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"10732:3:125","nodeType":"YulIdentifier","src":"10732:3:125"},"nativeSrc":"10732:14:125","nodeType":"YulFunctionCall","src":"10732:14:125"},{"name":"value_4","nativeSrc":"10748:7:125","nodeType":"YulIdentifier","src":"10748:7:125"}],"functionName":{"name":"mstore","nativeSrc":"10725:6:125","nodeType":"YulIdentifier","src":"10725:6:125"},"nativeSrc":"10725:31:125","nodeType":"YulFunctionCall","src":"10725:31:125"},"nativeSrc":"10725:31:125","nodeType":"YulExpressionStatement","src":"10725:31:125"},{"nativeSrc":"10765:16:125","nodeType":"YulVariableDeclaration","src":"10765:16:125","value":{"kind":"number","nativeSrc":"10780:1:125","nodeType":"YulLiteral","src":"10780:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"10769:7:125","nodeType":"YulTypedName","src":"10769:7:125","type":""}]},{"nativeSrc":"10790:44:125","nodeType":"YulAssignment","src":"10790:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10818:9:125","nodeType":"YulIdentifier","src":"10818:9:125"},{"kind":"number","nativeSrc":"10829:3:125","nodeType":"YulLiteral","src":"10829:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"10814:3:125","nodeType":"YulIdentifier","src":"10814:3:125"},"nativeSrc":"10814:19:125","nodeType":"YulFunctionCall","src":"10814:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"10801:12:125","nodeType":"YulIdentifier","src":"10801:12:125"},"nativeSrc":"10801:33:125","nodeType":"YulFunctionCall","src":"10801:33:125"},"variableNames":[{"name":"value_5","nativeSrc":"10790:7:125","nodeType":"YulIdentifier","src":"10790:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"10854:5:125","nodeType":"YulIdentifier","src":"10854:5:125"},{"kind":"number","nativeSrc":"10861:3:125","nodeType":"YulLiteral","src":"10861:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"10850:3:125","nodeType":"YulIdentifier","src":"10850:3:125"},"nativeSrc":"10850:15:125","nodeType":"YulFunctionCall","src":"10850:15:125"},{"name":"value_5","nativeSrc":"10867:7:125","nodeType":"YulIdentifier","src":"10867:7:125"}],"functionName":{"name":"mstore","nativeSrc":"10843:6:125","nodeType":"YulIdentifier","src":"10843:6:125"},"nativeSrc":"10843:32:125","nodeType":"YulFunctionCall","src":"10843:32:125"},"nativeSrc":"10843:32:125","nodeType":"YulExpressionStatement","src":"10843:32:125"},{"nativeSrc":"10884:16:125","nodeType":"YulVariableDeclaration","src":"10884:16:125","value":{"kind":"number","nativeSrc":"10899:1:125","nodeType":"YulLiteral","src":"10899:1:125","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"10888:7:125","nodeType":"YulTypedName","src":"10888:7:125","type":""}]},{"nativeSrc":"10909:44:125","nodeType":"YulAssignment","src":"10909:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10937:9:125","nodeType":"YulIdentifier","src":"10937:9:125"},{"kind":"number","nativeSrc":"10948:3:125","nodeType":"YulLiteral","src":"10948:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"10933:3:125","nodeType":"YulIdentifier","src":"10933:3:125"},"nativeSrc":"10933:19:125","nodeType":"YulFunctionCall","src":"10933:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"10920:12:125","nodeType":"YulIdentifier","src":"10920:12:125"},"nativeSrc":"10920:33:125","nodeType":"YulFunctionCall","src":"10920:33:125"},"variableNames":[{"name":"value_6","nativeSrc":"10909:7:125","nodeType":"YulIdentifier","src":"10909:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"10973:5:125","nodeType":"YulIdentifier","src":"10973:5:125"},{"kind":"number","nativeSrc":"10980:3:125","nodeType":"YulLiteral","src":"10980:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"10969:3:125","nodeType":"YulIdentifier","src":"10969:3:125"},"nativeSrc":"10969:15:125","nodeType":"YulFunctionCall","src":"10969:15:125"},{"name":"value_6","nativeSrc":"10986:7:125","nodeType":"YulIdentifier","src":"10986:7:125"}],"functionName":{"name":"mstore","nativeSrc":"10962:6:125","nodeType":"YulIdentifier","src":"10962:6:125"},"nativeSrc":"10962:32:125","nodeType":"YulFunctionCall","src":"10962:32:125"},"nativeSrc":"10962:32:125","nodeType":"YulExpressionStatement","src":"10962:32:125"},{"nativeSrc":"11003:16:125","nodeType":"YulVariableDeclaration","src":"11003:16:125","value":{"kind":"number","nativeSrc":"11018:1:125","nodeType":"YulLiteral","src":"11018:1:125","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"11007:7:125","nodeType":"YulTypedName","src":"11007:7:125","type":""}]},{"nativeSrc":"11028:44:125","nodeType":"YulAssignment","src":"11028:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11056:9:125","nodeType":"YulIdentifier","src":"11056:9:125"},{"kind":"number","nativeSrc":"11067:3:125","nodeType":"YulLiteral","src":"11067:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"11052:3:125","nodeType":"YulIdentifier","src":"11052:3:125"},"nativeSrc":"11052:19:125","nodeType":"YulFunctionCall","src":"11052:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"11039:12:125","nodeType":"YulIdentifier","src":"11039:12:125"},"nativeSrc":"11039:33:125","nodeType":"YulFunctionCall","src":"11039:33:125"},"variableNames":[{"name":"value_7","nativeSrc":"11028:7:125","nodeType":"YulIdentifier","src":"11028:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11092:5:125","nodeType":"YulIdentifier","src":"11092:5:125"},{"kind":"number","nativeSrc":"11099:3:125","nodeType":"YulLiteral","src":"11099:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"11088:3:125","nodeType":"YulIdentifier","src":"11088:3:125"},"nativeSrc":"11088:15:125","nodeType":"YulFunctionCall","src":"11088:15:125"},{"name":"value_7","nativeSrc":"11105:7:125","nodeType":"YulIdentifier","src":"11105:7:125"}],"functionName":{"name":"mstore","nativeSrc":"11081:6:125","nodeType":"YulIdentifier","src":"11081:6:125"},"nativeSrc":"11081:32:125","nodeType":"YulFunctionCall","src":"11081:32:125"},"nativeSrc":"11081:32:125","nodeType":"YulExpressionStatement","src":"11081:32:125"},{"nativeSrc":"11122:16:125","nodeType":"YulVariableDeclaration","src":"11122:16:125","value":{"kind":"number","nativeSrc":"11137:1:125","nodeType":"YulLiteral","src":"11137:1:125","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"11126:7:125","nodeType":"YulTypedName","src":"11126:7:125","type":""}]},{"nativeSrc":"11147:44:125","nodeType":"YulAssignment","src":"11147:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11175:9:125","nodeType":"YulIdentifier","src":"11175:9:125"},{"kind":"number","nativeSrc":"11186:3:125","nodeType":"YulLiteral","src":"11186:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"11171:3:125","nodeType":"YulIdentifier","src":"11171:3:125"},"nativeSrc":"11171:19:125","nodeType":"YulFunctionCall","src":"11171:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"11158:12:125","nodeType":"YulIdentifier","src":"11158:12:125"},"nativeSrc":"11158:33:125","nodeType":"YulFunctionCall","src":"11158:33:125"},"variableNames":[{"name":"value_8","nativeSrc":"11147:7:125","nodeType":"YulIdentifier","src":"11147:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11211:5:125","nodeType":"YulIdentifier","src":"11211:5:125"},{"kind":"number","nativeSrc":"11218:3:125","nodeType":"YulLiteral","src":"11218:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"11207:3:125","nodeType":"YulIdentifier","src":"11207:3:125"},"nativeSrc":"11207:15:125","nodeType":"YulFunctionCall","src":"11207:15:125"},{"name":"value_8","nativeSrc":"11224:7:125","nodeType":"YulIdentifier","src":"11224:7:125"}],"functionName":{"name":"mstore","nativeSrc":"11200:6:125","nodeType":"YulIdentifier","src":"11200:6:125"},"nativeSrc":"11200:32:125","nodeType":"YulFunctionCall","src":"11200:32:125"},"nativeSrc":"11200:32:125","nodeType":"YulExpressionStatement","src":"11200:32:125"},{"nativeSrc":"11241:16:125","nodeType":"YulVariableDeclaration","src":"11241:16:125","value":{"kind":"number","nativeSrc":"11256:1:125","nodeType":"YulLiteral","src":"11256:1:125","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"11245:7:125","nodeType":"YulTypedName","src":"11245:7:125","type":""}]},{"nativeSrc":"11266:44:125","nodeType":"YulAssignment","src":"11266:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11294:9:125","nodeType":"YulIdentifier","src":"11294:9:125"},{"kind":"number","nativeSrc":"11305:3:125","nodeType":"YulLiteral","src":"11305:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"11290:3:125","nodeType":"YulIdentifier","src":"11290:3:125"},"nativeSrc":"11290:19:125","nodeType":"YulFunctionCall","src":"11290:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"11277:12:125","nodeType":"YulIdentifier","src":"11277:12:125"},"nativeSrc":"11277:33:125","nodeType":"YulFunctionCall","src":"11277:33:125"},"variableNames":[{"name":"value_9","nativeSrc":"11266:7:125","nodeType":"YulIdentifier","src":"11266:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11330:5:125","nodeType":"YulIdentifier","src":"11330:5:125"},{"kind":"number","nativeSrc":"11337:3:125","nodeType":"YulLiteral","src":"11337:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"11326:3:125","nodeType":"YulIdentifier","src":"11326:3:125"},"nativeSrc":"11326:15:125","nodeType":"YulFunctionCall","src":"11326:15:125"},{"name":"value_9","nativeSrc":"11343:7:125","nodeType":"YulIdentifier","src":"11343:7:125"}],"functionName":{"name":"mstore","nativeSrc":"11319:6:125","nodeType":"YulIdentifier","src":"11319:6:125"},"nativeSrc":"11319:32:125","nodeType":"YulFunctionCall","src":"11319:32:125"},"nativeSrc":"11319:32:125","nodeType":"YulExpressionStatement","src":"11319:32:125"},{"nativeSrc":"11360:17:125","nodeType":"YulVariableDeclaration","src":"11360:17:125","value":{"kind":"number","nativeSrc":"11376:1:125","nodeType":"YulLiteral","src":"11376:1:125","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"11364:8:125","nodeType":"YulTypedName","src":"11364:8:125","type":""}]},{"nativeSrc":"11386:45:125","nodeType":"YulAssignment","src":"11386:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11415:9:125","nodeType":"YulIdentifier","src":"11415:9:125"},{"kind":"number","nativeSrc":"11426:3:125","nodeType":"YulLiteral","src":"11426:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"11411:3:125","nodeType":"YulIdentifier","src":"11411:3:125"},"nativeSrc":"11411:19:125","nodeType":"YulFunctionCall","src":"11411:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"11398:12:125","nodeType":"YulIdentifier","src":"11398:12:125"},"nativeSrc":"11398:33:125","nodeType":"YulFunctionCall","src":"11398:33:125"},"variableNames":[{"name":"value_10","nativeSrc":"11386:8:125","nodeType":"YulIdentifier","src":"11386:8:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11451:5:125","nodeType":"YulIdentifier","src":"11451:5:125"},{"kind":"number","nativeSrc":"11458:3:125","nodeType":"YulLiteral","src":"11458:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"11447:3:125","nodeType":"YulIdentifier","src":"11447:3:125"},"nativeSrc":"11447:15:125","nodeType":"YulFunctionCall","src":"11447:15:125"},{"name":"value_10","nativeSrc":"11464:8:125","nodeType":"YulIdentifier","src":"11464:8:125"}],"functionName":{"name":"mstore","nativeSrc":"11440:6:125","nodeType":"YulIdentifier","src":"11440:6:125"},"nativeSrc":"11440:33:125","nodeType":"YulFunctionCall","src":"11440:33:125"},"nativeSrc":"11440:33:125","nodeType":"YulExpressionStatement","src":"11440:33:125"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11493:5:125","nodeType":"YulIdentifier","src":"11493:5:125"},{"kind":"number","nativeSrc":"11500:3:125","nodeType":"YulLiteral","src":"11500:3:125","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"11489:3:125","nodeType":"YulIdentifier","src":"11489:3:125"},"nativeSrc":"11489:15:125","nodeType":"YulFunctionCall","src":"11489:15:125"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11528:9:125","nodeType":"YulIdentifier","src":"11528:9:125"},{"kind":"number","nativeSrc":"11539:3:125","nodeType":"YulLiteral","src":"11539:3:125","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"11524:3:125","nodeType":"YulIdentifier","src":"11524:3:125"},"nativeSrc":"11524:19:125","nodeType":"YulFunctionCall","src":"11524:19:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"11506:17:125","nodeType":"YulIdentifier","src":"11506:17:125"},"nativeSrc":"11506:38:125","nodeType":"YulFunctionCall","src":"11506:38:125"}],"functionName":{"name":"mstore","nativeSrc":"11482:6:125","nodeType":"YulIdentifier","src":"11482:6:125"},"nativeSrc":"11482:63:125","nodeType":"YulFunctionCall","src":"11482:63:125"},"nativeSrc":"11482:63:125","nodeType":"YulExpressionStatement","src":"11482:63:125"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11565:5:125","nodeType":"YulIdentifier","src":"11565:5:125"},{"kind":"number","nativeSrc":"11572:3:125","nodeType":"YulLiteral","src":"11572:3:125","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"11561:3:125","nodeType":"YulIdentifier","src":"11561:3:125"},"nativeSrc":"11561:15:125","nodeType":"YulFunctionCall","src":"11561:15:125"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11600:9:125","nodeType":"YulIdentifier","src":"11600:9:125"},{"kind":"number","nativeSrc":"11611:3:125","nodeType":"YulLiteral","src":"11611:3:125","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"11596:3:125","nodeType":"YulIdentifier","src":"11596:3:125"},"nativeSrc":"11596:19:125","nodeType":"YulFunctionCall","src":"11596:19:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"11578:17:125","nodeType":"YulIdentifier","src":"11578:17:125"},"nativeSrc":"11578:38:125","nodeType":"YulFunctionCall","src":"11578:38:125"}],"functionName":{"name":"mstore","nativeSrc":"11554:6:125","nodeType":"YulIdentifier","src":"11554:6:125"},"nativeSrc":"11554:63:125","nodeType":"YulFunctionCall","src":"11554:63:125"},"nativeSrc":"11554:63:125","nodeType":"YulExpressionStatement","src":"11554:63:125"},{"nativeSrc":"11626:15:125","nodeType":"YulAssignment","src":"11626:15:125","value":{"name":"value","nativeSrc":"11636:5:125","nodeType":"YulIdentifier","src":"11636:5:125"},"variableNames":[{"name":"value0","nativeSrc":"11626:6:125","nodeType":"YulIdentifier","src":"11626:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptr","nativeSrc":"10064:1583:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10128:9:125","nodeType":"YulTypedName","src":"10128:9:125","type":""},{"name":"dataEnd","nativeSrc":"10139:7:125","nodeType":"YulTypedName","src":"10139:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10151:6:125","nodeType":"YulTypedName","src":"10151:6:125","type":""}],"src":"10064:1583:125"},{"body":{"nativeSrc":"11699:169:125","nodeType":"YulBlock","src":"11699:169:125","statements":[{"nativeSrc":"11709:16:125","nodeType":"YulAssignment","src":"11709:16:125","value":{"arguments":[{"name":"x","nativeSrc":"11720:1:125","nodeType":"YulIdentifier","src":"11720:1:125"},{"name":"y","nativeSrc":"11723:1:125","nodeType":"YulIdentifier","src":"11723:1:125"}],"functionName":{"name":"add","nativeSrc":"11716:3:125","nodeType":"YulIdentifier","src":"11716:3:125"},"nativeSrc":"11716:9:125","nodeType":"YulFunctionCall","src":"11716:9:125"},"variableNames":[{"name":"sum","nativeSrc":"11709:3:125","nodeType":"YulIdentifier","src":"11709:3:125"}]},{"nativeSrc":"11734:21:125","nodeType":"YulVariableDeclaration","src":"11734:21:125","value":{"arguments":[{"name":"sum","nativeSrc":"11748:3:125","nodeType":"YulIdentifier","src":"11748:3:125"},{"name":"y","nativeSrc":"11753:1:125","nodeType":"YulIdentifier","src":"11753:1:125"}],"functionName":{"name":"slt","nativeSrc":"11744:3:125","nodeType":"YulIdentifier","src":"11744:3:125"},"nativeSrc":"11744:11:125","nodeType":"YulFunctionCall","src":"11744:11:125"},"variables":[{"name":"_1","nativeSrc":"11738:2:125","nodeType":"YulTypedName","src":"11738:2:125","type":""}]},{"nativeSrc":"11764:19:125","nodeType":"YulVariableDeclaration","src":"11764:19:125","value":{"arguments":[{"name":"x","nativeSrc":"11778:1:125","nodeType":"YulIdentifier","src":"11778:1:125"},{"kind":"number","nativeSrc":"11781:1:125","nodeType":"YulLiteral","src":"11781:1:125","type":"","value":"0"}],"functionName":{"name":"slt","nativeSrc":"11774:3:125","nodeType":"YulIdentifier","src":"11774:3:125"},"nativeSrc":"11774:9:125","nodeType":"YulFunctionCall","src":"11774:9:125"},"variables":[{"name":"_2","nativeSrc":"11768:2:125","nodeType":"YulTypedName","src":"11768:2:125","type":""}]},{"body":{"nativeSrc":"11840:22:125","nodeType":"YulBlock","src":"11840:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"11842:16:125","nodeType":"YulIdentifier","src":"11842:16:125"},"nativeSrc":"11842:18:125","nodeType":"YulFunctionCall","src":"11842:18:125"},"nativeSrc":"11842:18:125","nodeType":"YulExpressionStatement","src":"11842:18:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"11809:2:125","nodeType":"YulIdentifier","src":"11809:2:125"}],"functionName":{"name":"iszero","nativeSrc":"11802:6:125","nodeType":"YulIdentifier","src":"11802:6:125"},"nativeSrc":"11802:10:125","nodeType":"YulFunctionCall","src":"11802:10:125"},{"name":"_1","nativeSrc":"11814:2:125","nodeType":"YulIdentifier","src":"11814:2:125"}],"functionName":{"name":"and","nativeSrc":"11798:3:125","nodeType":"YulIdentifier","src":"11798:3:125"},"nativeSrc":"11798:19:125","nodeType":"YulFunctionCall","src":"11798:19:125"},{"arguments":[{"name":"_2","nativeSrc":"11823:2:125","nodeType":"YulIdentifier","src":"11823:2:125"},{"arguments":[{"name":"_1","nativeSrc":"11834:2:125","nodeType":"YulIdentifier","src":"11834:2:125"}],"functionName":{"name":"iszero","nativeSrc":"11827:6:125","nodeType":"YulIdentifier","src":"11827:6:125"},"nativeSrc":"11827:10:125","nodeType":"YulFunctionCall","src":"11827:10:125"}],"functionName":{"name":"and","nativeSrc":"11819:3:125","nodeType":"YulIdentifier","src":"11819:3:125"},"nativeSrc":"11819:19:125","nodeType":"YulFunctionCall","src":"11819:19:125"}],"functionName":{"name":"or","nativeSrc":"11795:2:125","nodeType":"YulIdentifier","src":"11795:2:125"},"nativeSrc":"11795:44:125","nodeType":"YulFunctionCall","src":"11795:44:125"},"nativeSrc":"11792:70:125","nodeType":"YulIf","src":"11792:70:125"}]},"name":"checked_add_t_int256","nativeSrc":"11652:216:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"11682:1:125","nodeType":"YulTypedName","src":"11682:1:125","type":""},{"name":"y","nativeSrc":"11685:1:125","nodeType":"YulTypedName","src":"11685:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"11691:3:125","nodeType":"YulTypedName","src":"11691:3:125","type":""}],"src":"11652:216:125"},{"body":{"nativeSrc":"11925:116:125","nodeType":"YulBlock","src":"11925:116:125","statements":[{"nativeSrc":"11935:20:125","nodeType":"YulAssignment","src":"11935:20:125","value":{"arguments":[{"name":"x","nativeSrc":"11950:1:125","nodeType":"YulIdentifier","src":"11950:1:125"},{"name":"y","nativeSrc":"11953:1:125","nodeType":"YulIdentifier","src":"11953:1:125"}],"functionName":{"name":"mul","nativeSrc":"11946:3:125","nodeType":"YulIdentifier","src":"11946:3:125"},"nativeSrc":"11946:9:125","nodeType":"YulFunctionCall","src":"11946:9:125"},"variableNames":[{"name":"product","nativeSrc":"11935:7:125","nodeType":"YulIdentifier","src":"11935:7:125"}]},{"body":{"nativeSrc":"12013:22:125","nodeType":"YulBlock","src":"12013:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"12015:16:125","nodeType":"YulIdentifier","src":"12015:16:125"},"nativeSrc":"12015:18:125","nodeType":"YulFunctionCall","src":"12015:18:125"},"nativeSrc":"12015:18:125","nodeType":"YulExpressionStatement","src":"12015:18:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nativeSrc":"11984:1:125","nodeType":"YulIdentifier","src":"11984:1:125"}],"functionName":{"name":"iszero","nativeSrc":"11977:6:125","nodeType":"YulIdentifier","src":"11977:6:125"},"nativeSrc":"11977:9:125","nodeType":"YulFunctionCall","src":"11977:9:125"},{"arguments":[{"name":"y","nativeSrc":"11991:1:125","nodeType":"YulIdentifier","src":"11991:1:125"},{"arguments":[{"name":"product","nativeSrc":"11998:7:125","nodeType":"YulIdentifier","src":"11998:7:125"},{"name":"x","nativeSrc":"12007:1:125","nodeType":"YulIdentifier","src":"12007:1:125"}],"functionName":{"name":"div","nativeSrc":"11994:3:125","nodeType":"YulIdentifier","src":"11994:3:125"},"nativeSrc":"11994:15:125","nodeType":"YulFunctionCall","src":"11994:15:125"}],"functionName":{"name":"eq","nativeSrc":"11988:2:125","nodeType":"YulIdentifier","src":"11988:2:125"},"nativeSrc":"11988:22:125","nodeType":"YulFunctionCall","src":"11988:22:125"}],"functionName":{"name":"or","nativeSrc":"11974:2:125","nodeType":"YulIdentifier","src":"11974:2:125"},"nativeSrc":"11974:37:125","nodeType":"YulFunctionCall","src":"11974:37:125"}],"functionName":{"name":"iszero","nativeSrc":"11967:6:125","nodeType":"YulIdentifier","src":"11967:6:125"},"nativeSrc":"11967:45:125","nodeType":"YulFunctionCall","src":"11967:45:125"},"nativeSrc":"11964:71:125","nodeType":"YulIf","src":"11964:71:125"}]},"name":"checked_mul_t_uint256","nativeSrc":"11873:168:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"11904:1:125","nodeType":"YulTypedName","src":"11904:1:125","type":""},{"name":"y","nativeSrc":"11907:1:125","nodeType":"YulTypedName","src":"11907:1:125","type":""}],"returnVariables":[{"name":"product","nativeSrc":"11913:7:125","nodeType":"YulTypedName","src":"11913:7:125","type":""}],"src":"11873:168:125"},{"body":{"nativeSrc":"12078:95:125","nodeType":"YulBlock","src":"12078:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12095:1:125","nodeType":"YulLiteral","src":"12095:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"12102:3:125","nodeType":"YulLiteral","src":"12102:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"12107:10:125","nodeType":"YulLiteral","src":"12107:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"12098:3:125","nodeType":"YulIdentifier","src":"12098:3:125"},"nativeSrc":"12098:20:125","nodeType":"YulFunctionCall","src":"12098:20:125"}],"functionName":{"name":"mstore","nativeSrc":"12088:6:125","nodeType":"YulIdentifier","src":"12088:6:125"},"nativeSrc":"12088:31:125","nodeType":"YulFunctionCall","src":"12088:31:125"},"nativeSrc":"12088:31:125","nodeType":"YulExpressionStatement","src":"12088:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12135:1:125","nodeType":"YulLiteral","src":"12135:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"12138:4:125","nodeType":"YulLiteral","src":"12138:4:125","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"12128:6:125","nodeType":"YulIdentifier","src":"12128:6:125"},"nativeSrc":"12128:15:125","nodeType":"YulFunctionCall","src":"12128:15:125"},"nativeSrc":"12128:15:125","nodeType":"YulExpressionStatement","src":"12128:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12159:1:125","nodeType":"YulLiteral","src":"12159:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12162:4:125","nodeType":"YulLiteral","src":"12162:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"12152:6:125","nodeType":"YulIdentifier","src":"12152:6:125"},"nativeSrc":"12152:15:125","nodeType":"YulFunctionCall","src":"12152:15:125"},"nativeSrc":"12152:15:125","nodeType":"YulExpressionStatement","src":"12152:15:125"}]},"name":"panic_error_0x12","nativeSrc":"12046:127:125","nodeType":"YulFunctionDefinition","src":"12046:127:125"},{"body":{"nativeSrc":"12224:171:125","nodeType":"YulBlock","src":"12224:171:125","statements":[{"body":{"nativeSrc":"12255:111:125","nodeType":"YulBlock","src":"12255:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12276:1:125","nodeType":"YulLiteral","src":"12276:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"12283:3:125","nodeType":"YulLiteral","src":"12283:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"12288:10:125","nodeType":"YulLiteral","src":"12288:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"12279:3:125","nodeType":"YulIdentifier","src":"12279:3:125"},"nativeSrc":"12279:20:125","nodeType":"YulFunctionCall","src":"12279:20:125"}],"functionName":{"name":"mstore","nativeSrc":"12269:6:125","nodeType":"YulIdentifier","src":"12269:6:125"},"nativeSrc":"12269:31:125","nodeType":"YulFunctionCall","src":"12269:31:125"},"nativeSrc":"12269:31:125","nodeType":"YulExpressionStatement","src":"12269:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12320:1:125","nodeType":"YulLiteral","src":"12320:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"12323:4:125","nodeType":"YulLiteral","src":"12323:4:125","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"12313:6:125","nodeType":"YulIdentifier","src":"12313:6:125"},"nativeSrc":"12313:15:125","nodeType":"YulFunctionCall","src":"12313:15:125"},"nativeSrc":"12313:15:125","nodeType":"YulExpressionStatement","src":"12313:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12348:1:125","nodeType":"YulLiteral","src":"12348:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12351:4:125","nodeType":"YulLiteral","src":"12351:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"12341:6:125","nodeType":"YulIdentifier","src":"12341:6:125"},"nativeSrc":"12341:15:125","nodeType":"YulFunctionCall","src":"12341:15:125"},"nativeSrc":"12341:15:125","nodeType":"YulExpressionStatement","src":"12341:15:125"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"12244:1:125","nodeType":"YulIdentifier","src":"12244:1:125"}],"functionName":{"name":"iszero","nativeSrc":"12237:6:125","nodeType":"YulIdentifier","src":"12237:6:125"},"nativeSrc":"12237:9:125","nodeType":"YulFunctionCall","src":"12237:9:125"},"nativeSrc":"12234:132:125","nodeType":"YulIf","src":"12234:132:125"},{"nativeSrc":"12375:14:125","nodeType":"YulAssignment","src":"12375:14:125","value":{"arguments":[{"name":"x","nativeSrc":"12384:1:125","nodeType":"YulIdentifier","src":"12384:1:125"},{"name":"y","nativeSrc":"12387:1:125","nodeType":"YulIdentifier","src":"12387:1:125"}],"functionName":{"name":"div","nativeSrc":"12380:3:125","nodeType":"YulIdentifier","src":"12380:3:125"},"nativeSrc":"12380:9:125","nodeType":"YulFunctionCall","src":"12380:9:125"},"variableNames":[{"name":"r","nativeSrc":"12375:1:125","nodeType":"YulIdentifier","src":"12375:1:125"}]}]},"name":"checked_div_t_uint256","nativeSrc":"12178:217:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"12209:1:125","nodeType":"YulTypedName","src":"12209:1:125","type":""},{"name":"y","nativeSrc":"12212:1:125","nodeType":"YulTypedName","src":"12212:1:125","type":""}],"returnVariables":[{"name":"r","nativeSrc":"12218:1:125","nodeType":"YulTypedName","src":"12218:1:125","type":""}],"src":"12178:217:125"},{"body":{"nativeSrc":"12443:93:125","nodeType":"YulBlock","src":"12443:93:125","statements":[{"body":{"nativeSrc":"12479:22:125","nodeType":"YulBlock","src":"12479:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"12481:16:125","nodeType":"YulIdentifier","src":"12481:16:125"},"nativeSrc":"12481:18:125","nodeType":"YulFunctionCall","src":"12481:18:125"},"nativeSrc":"12481:18:125","nodeType":"YulExpressionStatement","src":"12481:18:125"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"12459:5:125","nodeType":"YulIdentifier","src":"12459:5:125"},{"arguments":[{"kind":"number","nativeSrc":"12470:3:125","nodeType":"YulLiteral","src":"12470:3:125","type":"","value":"255"},{"kind":"number","nativeSrc":"12475:1:125","nodeType":"YulLiteral","src":"12475:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12466:3:125","nodeType":"YulIdentifier","src":"12466:3:125"},"nativeSrc":"12466:11:125","nodeType":"YulFunctionCall","src":"12466:11:125"}],"functionName":{"name":"eq","nativeSrc":"12456:2:125","nodeType":"YulIdentifier","src":"12456:2:125"},"nativeSrc":"12456:22:125","nodeType":"YulFunctionCall","src":"12456:22:125"},"nativeSrc":"12453:48:125","nodeType":"YulIf","src":"12453:48:125"},{"nativeSrc":"12510:20:125","nodeType":"YulAssignment","src":"12510:20:125","value":{"arguments":[{"kind":"number","nativeSrc":"12521:1:125","nodeType":"YulLiteral","src":"12521:1:125","type":"","value":"0"},{"name":"value","nativeSrc":"12524:5:125","nodeType":"YulIdentifier","src":"12524:5:125"}],"functionName":{"name":"sub","nativeSrc":"12517:3:125","nodeType":"YulIdentifier","src":"12517:3:125"},"nativeSrc":"12517:13:125","nodeType":"YulFunctionCall","src":"12517:13:125"},"variableNames":[{"name":"ret","nativeSrc":"12510:3:125","nodeType":"YulIdentifier","src":"12510:3:125"}]}]},"name":"negate_t_int256","nativeSrc":"12400:136:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"12425:5:125","nodeType":"YulTypedName","src":"12425:5:125","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"12435:3:125","nodeType":"YulTypedName","src":"12435:3:125","type":""}],"src":"12400:136:125"},{"body":{"nativeSrc":"12666:119:125","nodeType":"YulBlock","src":"12666:119:125","statements":[{"nativeSrc":"12676:26:125","nodeType":"YulAssignment","src":"12676:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12688:9:125","nodeType":"YulIdentifier","src":"12688:9:125"},{"kind":"number","nativeSrc":"12699:2:125","nodeType":"YulLiteral","src":"12699:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12684:3:125","nodeType":"YulIdentifier","src":"12684:3:125"},"nativeSrc":"12684:18:125","nodeType":"YulFunctionCall","src":"12684:18:125"},"variableNames":[{"name":"tail","nativeSrc":"12676:4:125","nodeType":"YulIdentifier","src":"12676:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12718:9:125","nodeType":"YulIdentifier","src":"12718:9:125"},{"name":"value0","nativeSrc":"12729:6:125","nodeType":"YulIdentifier","src":"12729:6:125"}],"functionName":{"name":"mstore","nativeSrc":"12711:6:125","nodeType":"YulIdentifier","src":"12711:6:125"},"nativeSrc":"12711:25:125","nodeType":"YulFunctionCall","src":"12711:25:125"},"nativeSrc":"12711:25:125","nodeType":"YulExpressionStatement","src":"12711:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12756:9:125","nodeType":"YulIdentifier","src":"12756:9:125"},{"kind":"number","nativeSrc":"12767:2:125","nodeType":"YulLiteral","src":"12767:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12752:3:125","nodeType":"YulIdentifier","src":"12752:3:125"},"nativeSrc":"12752:18:125","nodeType":"YulFunctionCall","src":"12752:18:125"},{"name":"value1","nativeSrc":"12772:6:125","nodeType":"YulIdentifier","src":"12772:6:125"}],"functionName":{"name":"mstore","nativeSrc":"12745:6:125","nodeType":"YulIdentifier","src":"12745:6:125"},"nativeSrc":"12745:34:125","nodeType":"YulFunctionCall","src":"12745:34:125"},"nativeSrc":"12745:34:125","nodeType":"YulExpressionStatement","src":"12745:34:125"}]},"name":"abi_encode_tuple_t_int256_t_int256__to_t_int256_t_int256__fromStack_reversed","nativeSrc":"12541:244:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12627:9:125","nodeType":"YulTypedName","src":"12627:9:125","type":""},{"name":"value1","nativeSrc":"12638:6:125","nodeType":"YulTypedName","src":"12638:6:125","type":""},{"name":"value0","nativeSrc":"12646:6:125","nodeType":"YulTypedName","src":"12646:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12657:4:125","nodeType":"YulTypedName","src":"12657:4:125","type":""}],"src":"12541:244:125"},{"body":{"nativeSrc":"12947:162:125","nodeType":"YulBlock","src":"12947:162:125","statements":[{"nativeSrc":"12957:26:125","nodeType":"YulAssignment","src":"12957:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12969:9:125","nodeType":"YulIdentifier","src":"12969:9:125"},{"kind":"number","nativeSrc":"12980:2:125","nodeType":"YulLiteral","src":"12980:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12965:3:125","nodeType":"YulIdentifier","src":"12965:3:125"},"nativeSrc":"12965:18:125","nodeType":"YulFunctionCall","src":"12965:18:125"},"variableNames":[{"name":"tail","nativeSrc":"12957:4:125","nodeType":"YulIdentifier","src":"12957:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12999:9:125","nodeType":"YulIdentifier","src":"12999:9:125"},{"name":"value0","nativeSrc":"13010:6:125","nodeType":"YulIdentifier","src":"13010:6:125"}],"functionName":{"name":"mstore","nativeSrc":"12992:6:125","nodeType":"YulIdentifier","src":"12992:6:125"},"nativeSrc":"12992:25:125","nodeType":"YulFunctionCall","src":"12992:25:125"},"nativeSrc":"12992:25:125","nodeType":"YulExpressionStatement","src":"12992:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13037:9:125","nodeType":"YulIdentifier","src":"13037:9:125"},{"kind":"number","nativeSrc":"13048:2:125","nodeType":"YulLiteral","src":"13048:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13033:3:125","nodeType":"YulIdentifier","src":"13033:3:125"},"nativeSrc":"13033:18:125","nodeType":"YulFunctionCall","src":"13033:18:125"},{"name":"value1","nativeSrc":"13053:6:125","nodeType":"YulIdentifier","src":"13053:6:125"}],"functionName":{"name":"mstore","nativeSrc":"13026:6:125","nodeType":"YulIdentifier","src":"13026:6:125"},"nativeSrc":"13026:34:125","nodeType":"YulFunctionCall","src":"13026:34:125"},"nativeSrc":"13026:34:125","nodeType":"YulExpressionStatement","src":"13026:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13080:9:125","nodeType":"YulIdentifier","src":"13080:9:125"},{"kind":"number","nativeSrc":"13091:2:125","nodeType":"YulLiteral","src":"13091:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13076:3:125","nodeType":"YulIdentifier","src":"13076:3:125"},"nativeSrc":"13076:18:125","nodeType":"YulFunctionCall","src":"13076:18:125"},{"name":"value2","nativeSrc":"13096:6:125","nodeType":"YulIdentifier","src":"13096:6:125"}],"functionName":{"name":"mstore","nativeSrc":"13069:6:125","nodeType":"YulIdentifier","src":"13069:6:125"},"nativeSrc":"13069:34:125","nodeType":"YulFunctionCall","src":"13069:34:125"},"nativeSrc":"13069:34:125","nodeType":"YulExpressionStatement","src":"13069:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"12790:319:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12900:9:125","nodeType":"YulTypedName","src":"12900:9:125","type":""},{"name":"value2","nativeSrc":"12911:6:125","nodeType":"YulTypedName","src":"12911:6:125","type":""},{"name":"value1","nativeSrc":"12919:6:125","nodeType":"YulTypedName","src":"12919:6:125","type":""},{"name":"value0","nativeSrc":"12927:6:125","nodeType":"YulTypedName","src":"12927:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12938:4:125","nodeType":"YulTypedName","src":"12938:4:125","type":""}],"src":"12790:319:125"},{"body":{"nativeSrc":"13222:101:125","nodeType":"YulBlock","src":"13222:101:125","statements":[{"nativeSrc":"13232:26:125","nodeType":"YulAssignment","src":"13232:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"13244:9:125","nodeType":"YulIdentifier","src":"13244:9:125"},{"kind":"number","nativeSrc":"13255:2:125","nodeType":"YulLiteral","src":"13255:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13240:3:125","nodeType":"YulIdentifier","src":"13240:3:125"},"nativeSrc":"13240:18:125","nodeType":"YulFunctionCall","src":"13240:18:125"},"variableNames":[{"name":"tail","nativeSrc":"13232:4:125","nodeType":"YulIdentifier","src":"13232:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13274:9:125","nodeType":"YulIdentifier","src":"13274:9:125"},{"arguments":[{"name":"value0","nativeSrc":"13289:6:125","nodeType":"YulIdentifier","src":"13289:6:125"},{"kind":"number","nativeSrc":"13297:18:125","nodeType":"YulLiteral","src":"13297:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"13285:3:125","nodeType":"YulIdentifier","src":"13285:3:125"},"nativeSrc":"13285:31:125","nodeType":"YulFunctionCall","src":"13285:31:125"}],"functionName":{"name":"mstore","nativeSrc":"13267:6:125","nodeType":"YulIdentifier","src":"13267:6:125"},"nativeSrc":"13267:50:125","nodeType":"YulFunctionCall","src":"13267:50:125"},"nativeSrc":"13267:50:125","nodeType":"YulExpressionStatement","src":"13267:50:125"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"13114:209:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13191:9:125","nodeType":"YulTypedName","src":"13191:9:125","type":""},{"name":"value0","nativeSrc":"13202:6:125","nodeType":"YulTypedName","src":"13202:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13213:4:125","nodeType":"YulTypedName","src":"13213:4:125","type":""}],"src":"13114:209:125"},{"body":{"nativeSrc":"13451:135:125","nodeType":"YulBlock","src":"13451:135:125","statements":[{"nativeSrc":"13461:26:125","nodeType":"YulAssignment","src":"13461:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"13473:9:125","nodeType":"YulIdentifier","src":"13473:9:125"},{"kind":"number","nativeSrc":"13484:2:125","nodeType":"YulLiteral","src":"13484:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13469:3:125","nodeType":"YulIdentifier","src":"13469:3:125"},"nativeSrc":"13469:18:125","nodeType":"YulFunctionCall","src":"13469:18:125"},"variableNames":[{"name":"tail","nativeSrc":"13461:4:125","nodeType":"YulIdentifier","src":"13461:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13503:9:125","nodeType":"YulIdentifier","src":"13503:9:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"13528:6:125","nodeType":"YulIdentifier","src":"13528:6:125"}],"functionName":{"name":"iszero","nativeSrc":"13521:6:125","nodeType":"YulIdentifier","src":"13521:6:125"},"nativeSrc":"13521:14:125","nodeType":"YulFunctionCall","src":"13521:14:125"}],"functionName":{"name":"iszero","nativeSrc":"13514:6:125","nodeType":"YulIdentifier","src":"13514:6:125"},"nativeSrc":"13514:22:125","nodeType":"YulFunctionCall","src":"13514:22:125"}],"functionName":{"name":"mstore","nativeSrc":"13496:6:125","nodeType":"YulIdentifier","src":"13496:6:125"},"nativeSrc":"13496:41:125","nodeType":"YulFunctionCall","src":"13496:41:125"},"nativeSrc":"13496:41:125","nodeType":"YulExpressionStatement","src":"13496:41:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13557:9:125","nodeType":"YulIdentifier","src":"13557:9:125"},{"kind":"number","nativeSrc":"13568:2:125","nodeType":"YulLiteral","src":"13568:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13553:3:125","nodeType":"YulIdentifier","src":"13553:3:125"},"nativeSrc":"13553:18:125","nodeType":"YulFunctionCall","src":"13553:18:125"},{"name":"value1","nativeSrc":"13573:6:125","nodeType":"YulIdentifier","src":"13573:6:125"}],"functionName":{"name":"mstore","nativeSrc":"13546:6:125","nodeType":"YulIdentifier","src":"13546:6:125"},"nativeSrc":"13546:34:125","nodeType":"YulFunctionCall","src":"13546:34:125"},"nativeSrc":"13546:34:125","nodeType":"YulExpressionStatement","src":"13546:34:125"}]},"name":"abi_encode_tuple_t_bool_t_uint256__to_t_bool_t_uint256__fromStack_reversed","nativeSrc":"13328:258:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13412:9:125","nodeType":"YulTypedName","src":"13412:9:125","type":""},{"name":"value1","nativeSrc":"13423:6:125","nodeType":"YulTypedName","src":"13423:6:125","type":""},{"name":"value0","nativeSrc":"13431:6:125","nodeType":"YulTypedName","src":"13431:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13442:4:125","nodeType":"YulTypedName","src":"13442:4:125","type":""}],"src":"13328:258:125"},{"body":{"nativeSrc":"13742:178:125","nodeType":"YulBlock","src":"13742:178:125","statements":[{"nativeSrc":"13752:26:125","nodeType":"YulAssignment","src":"13752:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"13764:9:125","nodeType":"YulIdentifier","src":"13764:9:125"},{"kind":"number","nativeSrc":"13775:2:125","nodeType":"YulLiteral","src":"13775:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13760:3:125","nodeType":"YulIdentifier","src":"13760:3:125"},"nativeSrc":"13760:18:125","nodeType":"YulFunctionCall","src":"13760:18:125"},"variableNames":[{"name":"tail","nativeSrc":"13752:4:125","nodeType":"YulIdentifier","src":"13752:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13794:9:125","nodeType":"YulIdentifier","src":"13794:9:125"},{"name":"value0","nativeSrc":"13805:6:125","nodeType":"YulIdentifier","src":"13805:6:125"}],"functionName":{"name":"mstore","nativeSrc":"13787:6:125","nodeType":"YulIdentifier","src":"13787:6:125"},"nativeSrc":"13787:25:125","nodeType":"YulFunctionCall","src":"13787:25:125"},"nativeSrc":"13787:25:125","nodeType":"YulExpressionStatement","src":"13787:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13832:9:125","nodeType":"YulIdentifier","src":"13832:9:125"},{"kind":"number","nativeSrc":"13843:2:125","nodeType":"YulLiteral","src":"13843:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13828:3:125","nodeType":"YulIdentifier","src":"13828:3:125"},"nativeSrc":"13828:18:125","nodeType":"YulFunctionCall","src":"13828:18:125"},{"name":"value1","nativeSrc":"13848:6:125","nodeType":"YulIdentifier","src":"13848:6:125"}],"functionName":{"name":"mstore","nativeSrc":"13821:6:125","nodeType":"YulIdentifier","src":"13821:6:125"},"nativeSrc":"13821:34:125","nodeType":"YulFunctionCall","src":"13821:34:125"},"nativeSrc":"13821:34:125","nodeType":"YulExpressionStatement","src":"13821:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13875:9:125","nodeType":"YulIdentifier","src":"13875:9:125"},{"kind":"number","nativeSrc":"13886:2:125","nodeType":"YulLiteral","src":"13886:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13871:3:125","nodeType":"YulIdentifier","src":"13871:3:125"},"nativeSrc":"13871:18:125","nodeType":"YulFunctionCall","src":"13871:18:125"},{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"13905:6:125","nodeType":"YulIdentifier","src":"13905:6:125"}],"functionName":{"name":"iszero","nativeSrc":"13898:6:125","nodeType":"YulIdentifier","src":"13898:6:125"},"nativeSrc":"13898:14:125","nodeType":"YulFunctionCall","src":"13898:14:125"}],"functionName":{"name":"iszero","nativeSrc":"13891:6:125","nodeType":"YulIdentifier","src":"13891:6:125"},"nativeSrc":"13891:22:125","nodeType":"YulFunctionCall","src":"13891:22:125"}],"functionName":{"name":"mstore","nativeSrc":"13864:6:125","nodeType":"YulIdentifier","src":"13864:6:125"},"nativeSrc":"13864:50:125","nodeType":"YulFunctionCall","src":"13864:50:125"},"nativeSrc":"13864:50:125","nodeType":"YulExpressionStatement","src":"13864:50:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_bool__to_t_uint256_t_uint256_t_bool__fromStack_reversed","nativeSrc":"13591:329:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13695:9:125","nodeType":"YulTypedName","src":"13695:9:125","type":""},{"name":"value2","nativeSrc":"13706:6:125","nodeType":"YulTypedName","src":"13706:6:125","type":""},{"name":"value1","nativeSrc":"13714:6:125","nodeType":"YulTypedName","src":"13714:6:125","type":""},{"name":"value0","nativeSrc":"13722:6:125","nodeType":"YulTypedName","src":"13722:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13733:4:125","nodeType":"YulTypedName","src":"13733:4:125","type":""}],"src":"13591:329:125"},{"body":{"nativeSrc":"14052:119:125","nodeType":"YulBlock","src":"14052:119:125","statements":[{"nativeSrc":"14062:26:125","nodeType":"YulAssignment","src":"14062:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14074:9:125","nodeType":"YulIdentifier","src":"14074:9:125"},{"kind":"number","nativeSrc":"14085:2:125","nodeType":"YulLiteral","src":"14085:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14070:3:125","nodeType":"YulIdentifier","src":"14070:3:125"},"nativeSrc":"14070:18:125","nodeType":"YulFunctionCall","src":"14070:18:125"},"variableNames":[{"name":"tail","nativeSrc":"14062:4:125","nodeType":"YulIdentifier","src":"14062:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14104:9:125","nodeType":"YulIdentifier","src":"14104:9:125"},{"name":"value0","nativeSrc":"14115:6:125","nodeType":"YulIdentifier","src":"14115:6:125"}],"functionName":{"name":"mstore","nativeSrc":"14097:6:125","nodeType":"YulIdentifier","src":"14097:6:125"},"nativeSrc":"14097:25:125","nodeType":"YulFunctionCall","src":"14097:25:125"},"nativeSrc":"14097:25:125","nodeType":"YulExpressionStatement","src":"14097:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14142:9:125","nodeType":"YulIdentifier","src":"14142:9:125"},{"kind":"number","nativeSrc":"14153:2:125","nodeType":"YulLiteral","src":"14153:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14138:3:125","nodeType":"YulIdentifier","src":"14138:3:125"},"nativeSrc":"14138:18:125","nodeType":"YulFunctionCall","src":"14138:18:125"},{"name":"value1","nativeSrc":"14158:6:125","nodeType":"YulIdentifier","src":"14158:6:125"}],"functionName":{"name":"mstore","nativeSrc":"14131:6:125","nodeType":"YulIdentifier","src":"14131:6:125"},"nativeSrc":"14131:34:125","nodeType":"YulFunctionCall","src":"14131:34:125"},"nativeSrc":"14131:34:125","nodeType":"YulExpressionStatement","src":"14131:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__fromStack_reversed","nativeSrc":"13925:246:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14013:9:125","nodeType":"YulTypedName","src":"14013:9:125","type":""},{"name":"value1","nativeSrc":"14024:6:125","nodeType":"YulTypedName","src":"14024:6:125","type":""},{"name":"value0","nativeSrc":"14032:6:125","nodeType":"YulTypedName","src":"14032:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14043:4:125","nodeType":"YulTypedName","src":"14043:4:125","type":""}],"src":"13925:246:125"},{"body":{"nativeSrc":"14305:119:125","nodeType":"YulBlock","src":"14305:119:125","statements":[{"nativeSrc":"14315:26:125","nodeType":"YulAssignment","src":"14315:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14327:9:125","nodeType":"YulIdentifier","src":"14327:9:125"},{"kind":"number","nativeSrc":"14338:2:125","nodeType":"YulLiteral","src":"14338:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14323:3:125","nodeType":"YulIdentifier","src":"14323:3:125"},"nativeSrc":"14323:18:125","nodeType":"YulFunctionCall","src":"14323:18:125"},"variableNames":[{"name":"tail","nativeSrc":"14315:4:125","nodeType":"YulIdentifier","src":"14315:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14357:9:125","nodeType":"YulIdentifier","src":"14357:9:125"},{"name":"value0","nativeSrc":"14368:6:125","nodeType":"YulIdentifier","src":"14368:6:125"}],"functionName":{"name":"mstore","nativeSrc":"14350:6:125","nodeType":"YulIdentifier","src":"14350:6:125"},"nativeSrc":"14350:25:125","nodeType":"YulFunctionCall","src":"14350:25:125"},"nativeSrc":"14350:25:125","nodeType":"YulExpressionStatement","src":"14350:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14395:9:125","nodeType":"YulIdentifier","src":"14395:9:125"},{"kind":"number","nativeSrc":"14406:2:125","nodeType":"YulLiteral","src":"14406:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14391:3:125","nodeType":"YulIdentifier","src":"14391:3:125"},"nativeSrc":"14391:18:125","nodeType":"YulFunctionCall","src":"14391:18:125"},{"name":"value1","nativeSrc":"14411:6:125","nodeType":"YulIdentifier","src":"14411:6:125"}],"functionName":{"name":"mstore","nativeSrc":"14384:6:125","nodeType":"YulIdentifier","src":"14384:6:125"},"nativeSrc":"14384:34:125","nodeType":"YulFunctionCall","src":"14384:34:125"},"nativeSrc":"14384:34:125","nodeType":"YulExpressionStatement","src":"14384:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"14176:248:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14266:9:125","nodeType":"YulTypedName","src":"14266:9:125","type":""},{"name":"value1","nativeSrc":"14277:6:125","nodeType":"YulTypedName","src":"14277:6:125","type":""},{"name":"value0","nativeSrc":"14285:6:125","nodeType":"YulTypedName","src":"14285:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14296:4:125","nodeType":"YulTypedName","src":"14296:4:125","type":""}],"src":"14176:248:125"},{"body":{"nativeSrc":"14477:77:125","nodeType":"YulBlock","src":"14477:77:125","statements":[{"nativeSrc":"14487:16:125","nodeType":"YulAssignment","src":"14487:16:125","value":{"arguments":[{"name":"x","nativeSrc":"14498:1:125","nodeType":"YulIdentifier","src":"14498:1:125"},{"name":"y","nativeSrc":"14501:1:125","nodeType":"YulIdentifier","src":"14501:1:125"}],"functionName":{"name":"add","nativeSrc":"14494:3:125","nodeType":"YulIdentifier","src":"14494:3:125"},"nativeSrc":"14494:9:125","nodeType":"YulFunctionCall","src":"14494:9:125"},"variableNames":[{"name":"sum","nativeSrc":"14487:3:125","nodeType":"YulIdentifier","src":"14487:3:125"}]},{"body":{"nativeSrc":"14526:22:125","nodeType":"YulBlock","src":"14526:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"14528:16:125","nodeType":"YulIdentifier","src":"14528:16:125"},"nativeSrc":"14528:18:125","nodeType":"YulFunctionCall","src":"14528:18:125"},"nativeSrc":"14528:18:125","nodeType":"YulExpressionStatement","src":"14528:18:125"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"14518:1:125","nodeType":"YulIdentifier","src":"14518:1:125"},{"name":"sum","nativeSrc":"14521:3:125","nodeType":"YulIdentifier","src":"14521:3:125"}],"functionName":{"name":"gt","nativeSrc":"14515:2:125","nodeType":"YulIdentifier","src":"14515:2:125"},"nativeSrc":"14515:10:125","nodeType":"YulFunctionCall","src":"14515:10:125"},"nativeSrc":"14512:36:125","nodeType":"YulIf","src":"14512:36:125"}]},"name":"checked_add_t_uint256","nativeSrc":"14429:125:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"14460:1:125","nodeType":"YulTypedName","src":"14460:1:125","type":""},{"name":"y","nativeSrc":"14463:1:125","nodeType":"YulTypedName","src":"14463:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"14469:3:125","nodeType":"YulTypedName","src":"14469:3:125","type":""}],"src":"14429:125:125"},{"body":{"nativeSrc":"14688:145:125","nodeType":"YulBlock","src":"14688:145:125","statements":[{"nativeSrc":"14698:26:125","nodeType":"YulAssignment","src":"14698:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14710:9:125","nodeType":"YulIdentifier","src":"14710:9:125"},{"kind":"number","nativeSrc":"14721:2:125","nodeType":"YulLiteral","src":"14721:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14706:3:125","nodeType":"YulIdentifier","src":"14706:3:125"},"nativeSrc":"14706:18:125","nodeType":"YulFunctionCall","src":"14706:18:125"},"variableNames":[{"name":"tail","nativeSrc":"14698:4:125","nodeType":"YulIdentifier","src":"14698:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14740:9:125","nodeType":"YulIdentifier","src":"14740:9:125"},{"arguments":[{"name":"value0","nativeSrc":"14755:6:125","nodeType":"YulIdentifier","src":"14755:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"14771:3:125","nodeType":"YulLiteral","src":"14771:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"14776:1:125","nodeType":"YulLiteral","src":"14776:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"14767:3:125","nodeType":"YulIdentifier","src":"14767:3:125"},"nativeSrc":"14767:11:125","nodeType":"YulFunctionCall","src":"14767:11:125"},{"kind":"number","nativeSrc":"14780:1:125","nodeType":"YulLiteral","src":"14780:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"14763:3:125","nodeType":"YulIdentifier","src":"14763:3:125"},"nativeSrc":"14763:19:125","nodeType":"YulFunctionCall","src":"14763:19:125"}],"functionName":{"name":"and","nativeSrc":"14751:3:125","nodeType":"YulIdentifier","src":"14751:3:125"},"nativeSrc":"14751:32:125","nodeType":"YulFunctionCall","src":"14751:32:125"}],"functionName":{"name":"mstore","nativeSrc":"14733:6:125","nodeType":"YulIdentifier","src":"14733:6:125"},"nativeSrc":"14733:51:125","nodeType":"YulFunctionCall","src":"14733:51:125"},"nativeSrc":"14733:51:125","nodeType":"YulExpressionStatement","src":"14733:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14804:9:125","nodeType":"YulIdentifier","src":"14804:9:125"},{"kind":"number","nativeSrc":"14815:2:125","nodeType":"YulLiteral","src":"14815:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14800:3:125","nodeType":"YulIdentifier","src":"14800:3:125"},"nativeSrc":"14800:18:125","nodeType":"YulFunctionCall","src":"14800:18:125"},{"name":"value1","nativeSrc":"14820:6:125","nodeType":"YulIdentifier","src":"14820:6:125"}],"functionName":{"name":"mstore","nativeSrc":"14793:6:125","nodeType":"YulIdentifier","src":"14793:6:125"},"nativeSrc":"14793:34:125","nodeType":"YulFunctionCall","src":"14793:34:125"},"nativeSrc":"14793:34:125","nodeType":"YulExpressionStatement","src":"14793:34:125"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"14559:274:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14649:9:125","nodeType":"YulTypedName","src":"14649:9:125","type":""},{"name":"value1","nativeSrc":"14660:6:125","nodeType":"YulTypedName","src":"14660:6:125","type":""},{"name":"value0","nativeSrc":"14668:6:125","nodeType":"YulTypedName","src":"14668:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14679:4:125","nodeType":"YulTypedName","src":"14679:4:125","type":""}],"src":"14559:274:125"},{"body":{"nativeSrc":"14916:167:125","nodeType":"YulBlock","src":"14916:167:125","statements":[{"body":{"nativeSrc":"14962:16:125","nodeType":"YulBlock","src":"14962:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14971:1:125","nodeType":"YulLiteral","src":"14971:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"14974:1:125","nodeType":"YulLiteral","src":"14974:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14964:6:125","nodeType":"YulIdentifier","src":"14964:6:125"},"nativeSrc":"14964:12:125","nodeType":"YulFunctionCall","src":"14964:12:125"},"nativeSrc":"14964:12:125","nodeType":"YulExpressionStatement","src":"14964:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14937:7:125","nodeType":"YulIdentifier","src":"14937:7:125"},{"name":"headStart","nativeSrc":"14946:9:125","nodeType":"YulIdentifier","src":"14946:9:125"}],"functionName":{"name":"sub","nativeSrc":"14933:3:125","nodeType":"YulIdentifier","src":"14933:3:125"},"nativeSrc":"14933:23:125","nodeType":"YulFunctionCall","src":"14933:23:125"},{"kind":"number","nativeSrc":"14958:2:125","nodeType":"YulLiteral","src":"14958:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"14929:3:125","nodeType":"YulIdentifier","src":"14929:3:125"},"nativeSrc":"14929:32:125","nodeType":"YulFunctionCall","src":"14929:32:125"},"nativeSrc":"14926:52:125","nodeType":"YulIf","src":"14926:52:125"},{"nativeSrc":"14987:29:125","nodeType":"YulVariableDeclaration","src":"14987:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"15006:9:125","nodeType":"YulIdentifier","src":"15006:9:125"}],"functionName":{"name":"mload","nativeSrc":"15000:5:125","nodeType":"YulIdentifier","src":"15000:5:125"},"nativeSrc":"15000:16:125","nodeType":"YulFunctionCall","src":"15000:16:125"},"variables":[{"name":"value","nativeSrc":"14991:5:125","nodeType":"YulTypedName","src":"14991:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"15047:5:125","nodeType":"YulIdentifier","src":"15047:5:125"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"15025:21:125","nodeType":"YulIdentifier","src":"15025:21:125"},"nativeSrc":"15025:28:125","nodeType":"YulFunctionCall","src":"15025:28:125"},"nativeSrc":"15025:28:125","nodeType":"YulExpressionStatement","src":"15025:28:125"},{"nativeSrc":"15062:15:125","nodeType":"YulAssignment","src":"15062:15:125","value":{"name":"value","nativeSrc":"15072:5:125","nodeType":"YulIdentifier","src":"15072:5:125"},"variableNames":[{"name":"value0","nativeSrc":"15062:6:125","nodeType":"YulIdentifier","src":"15062:6:125"}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nativeSrc":"14838:245:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14882:9:125","nodeType":"YulTypedName","src":"14882:9:125","type":""},{"name":"dataEnd","nativeSrc":"14893:7:125","nodeType":"YulTypedName","src":"14893:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"14905:6:125","nodeType":"YulTypedName","src":"14905:6:125","type":""}],"src":"14838:245:125"},{"body":{"nativeSrc":"15217:145:125","nodeType":"YulBlock","src":"15217:145:125","statements":[{"nativeSrc":"15227:26:125","nodeType":"YulAssignment","src":"15227:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"15239:9:125","nodeType":"YulIdentifier","src":"15239:9:125"},{"kind":"number","nativeSrc":"15250:2:125","nodeType":"YulLiteral","src":"15250:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15235:3:125","nodeType":"YulIdentifier","src":"15235:3:125"},"nativeSrc":"15235:18:125","nodeType":"YulFunctionCall","src":"15235:18:125"},"variableNames":[{"name":"tail","nativeSrc":"15227:4:125","nodeType":"YulIdentifier","src":"15227:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15269:9:125","nodeType":"YulIdentifier","src":"15269:9:125"},{"name":"value0","nativeSrc":"15280:6:125","nodeType":"YulIdentifier","src":"15280:6:125"}],"functionName":{"name":"mstore","nativeSrc":"15262:6:125","nodeType":"YulIdentifier","src":"15262:6:125"},"nativeSrc":"15262:25:125","nodeType":"YulFunctionCall","src":"15262:25:125"},"nativeSrc":"15262:25:125","nodeType":"YulExpressionStatement","src":"15262:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15307:9:125","nodeType":"YulIdentifier","src":"15307:9:125"},{"kind":"number","nativeSrc":"15318:2:125","nodeType":"YulLiteral","src":"15318:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15303:3:125","nodeType":"YulIdentifier","src":"15303:3:125"},"nativeSrc":"15303:18:125","nodeType":"YulFunctionCall","src":"15303:18:125"},{"arguments":[{"name":"value1","nativeSrc":"15327:6:125","nodeType":"YulIdentifier","src":"15327:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"15343:3:125","nodeType":"YulLiteral","src":"15343:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"15348:1:125","nodeType":"YulLiteral","src":"15348:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"15339:3:125","nodeType":"YulIdentifier","src":"15339:3:125"},"nativeSrc":"15339:11:125","nodeType":"YulFunctionCall","src":"15339:11:125"},{"kind":"number","nativeSrc":"15352:1:125","nodeType":"YulLiteral","src":"15352:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"15335:3:125","nodeType":"YulIdentifier","src":"15335:3:125"},"nativeSrc":"15335:19:125","nodeType":"YulFunctionCall","src":"15335:19:125"}],"functionName":{"name":"and","nativeSrc":"15323:3:125","nodeType":"YulIdentifier","src":"15323:3:125"},"nativeSrc":"15323:32:125","nodeType":"YulFunctionCall","src":"15323:32:125"}],"functionName":{"name":"mstore","nativeSrc":"15296:6:125","nodeType":"YulIdentifier","src":"15296:6:125"},"nativeSrc":"15296:60:125","nodeType":"YulFunctionCall","src":"15296:60:125"},"nativeSrc":"15296:60:125","nodeType":"YulExpressionStatement","src":"15296:60:125"}]},"name":"abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed","nativeSrc":"15088:274:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15178:9:125","nodeType":"YulTypedName","src":"15178:9:125","type":""},{"name":"value1","nativeSrc":"15189:6:125","nodeType":"YulTypedName","src":"15189:6:125","type":""},{"name":"value0","nativeSrc":"15197:6:125","nodeType":"YulTypedName","src":"15197:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15208:4:125","nodeType":"YulTypedName","src":"15208:4:125","type":""}],"src":"15088:274:125"},{"body":{"nativeSrc":"15550:206:125","nodeType":"YulBlock","src":"15550:206:125","statements":[{"nativeSrc":"15560:27:125","nodeType":"YulAssignment","src":"15560:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"15572:9:125","nodeType":"YulIdentifier","src":"15572:9:125"},{"kind":"number","nativeSrc":"15583:3:125","nodeType":"YulLiteral","src":"15583:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"15568:3:125","nodeType":"YulIdentifier","src":"15568:3:125"},"nativeSrc":"15568:19:125","nodeType":"YulFunctionCall","src":"15568:19:125"},"variableNames":[{"name":"tail","nativeSrc":"15560:4:125","nodeType":"YulIdentifier","src":"15560:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15603:9:125","nodeType":"YulIdentifier","src":"15603:9:125"},{"name":"value0","nativeSrc":"15614:6:125","nodeType":"YulIdentifier","src":"15614:6:125"}],"functionName":{"name":"mstore","nativeSrc":"15596:6:125","nodeType":"YulIdentifier","src":"15596:6:125"},"nativeSrc":"15596:25:125","nodeType":"YulFunctionCall","src":"15596:25:125"},"nativeSrc":"15596:25:125","nodeType":"YulExpressionStatement","src":"15596:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15641:9:125","nodeType":"YulIdentifier","src":"15641:9:125"},{"kind":"number","nativeSrc":"15652:2:125","nodeType":"YulLiteral","src":"15652:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15637:3:125","nodeType":"YulIdentifier","src":"15637:3:125"},"nativeSrc":"15637:18:125","nodeType":"YulFunctionCall","src":"15637:18:125"},{"name":"value1","nativeSrc":"15657:6:125","nodeType":"YulIdentifier","src":"15657:6:125"}],"functionName":{"name":"mstore","nativeSrc":"15630:6:125","nodeType":"YulIdentifier","src":"15630:6:125"},"nativeSrc":"15630:34:125","nodeType":"YulFunctionCall","src":"15630:34:125"},"nativeSrc":"15630:34:125","nodeType":"YulExpressionStatement","src":"15630:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15684:9:125","nodeType":"YulIdentifier","src":"15684:9:125"},{"kind":"number","nativeSrc":"15695:2:125","nodeType":"YulLiteral","src":"15695:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15680:3:125","nodeType":"YulIdentifier","src":"15680:3:125"},"nativeSrc":"15680:18:125","nodeType":"YulFunctionCall","src":"15680:18:125"},{"name":"value2","nativeSrc":"15700:6:125","nodeType":"YulIdentifier","src":"15700:6:125"}],"functionName":{"name":"mstore","nativeSrc":"15673:6:125","nodeType":"YulIdentifier","src":"15673:6:125"},"nativeSrc":"15673:34:125","nodeType":"YulFunctionCall","src":"15673:34:125"},"nativeSrc":"15673:34:125","nodeType":"YulExpressionStatement","src":"15673:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15727:9:125","nodeType":"YulIdentifier","src":"15727:9:125"},{"kind":"number","nativeSrc":"15738:2:125","nodeType":"YulLiteral","src":"15738:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15723:3:125","nodeType":"YulIdentifier","src":"15723:3:125"},"nativeSrc":"15723:18:125","nodeType":"YulFunctionCall","src":"15723:18:125"},{"name":"value3","nativeSrc":"15743:6:125","nodeType":"YulIdentifier","src":"15743:6:125"}],"functionName":{"name":"mstore","nativeSrc":"15716:6:125","nodeType":"YulIdentifier","src":"15716:6:125"},"nativeSrc":"15716:34:125","nodeType":"YulFunctionCall","src":"15716:34:125"},"nativeSrc":"15716:34:125","nodeType":"YulExpressionStatement","src":"15716:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_int256__to_t_uint256_t_uint256_t_uint256_t_int256__fromStack_reversed","nativeSrc":"15367:389:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15495:9:125","nodeType":"YulTypedName","src":"15495:9:125","type":""},{"name":"value3","nativeSrc":"15506:6:125","nodeType":"YulTypedName","src":"15506:6:125","type":""},{"name":"value2","nativeSrc":"15514:6:125","nodeType":"YulTypedName","src":"15514:6:125","type":""},{"name":"value1","nativeSrc":"15522:6:125","nodeType":"YulTypedName","src":"15522:6:125","type":""},{"name":"value0","nativeSrc":"15530:6:125","nodeType":"YulTypedName","src":"15530:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15541:4:125","nodeType":"YulTypedName","src":"15541:4:125","type":""}],"src":"15367:389:125"},{"body":{"nativeSrc":"15866:180:125","nodeType":"YulBlock","src":"15866:180:125","statements":[{"body":{"nativeSrc":"15912:16:125","nodeType":"YulBlock","src":"15912:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15921:1:125","nodeType":"YulLiteral","src":"15921:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"15924:1:125","nodeType":"YulLiteral","src":"15924:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15914:6:125","nodeType":"YulIdentifier","src":"15914:6:125"},"nativeSrc":"15914:12:125","nodeType":"YulFunctionCall","src":"15914:12:125"},"nativeSrc":"15914:12:125","nodeType":"YulExpressionStatement","src":"15914:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15887:7:125","nodeType":"YulIdentifier","src":"15887:7:125"},{"name":"headStart","nativeSrc":"15896:9:125","nodeType":"YulIdentifier","src":"15896:9:125"}],"functionName":{"name":"sub","nativeSrc":"15883:3:125","nodeType":"YulIdentifier","src":"15883:3:125"},"nativeSrc":"15883:23:125","nodeType":"YulFunctionCall","src":"15883:23:125"},{"kind":"number","nativeSrc":"15908:2:125","nodeType":"YulLiteral","src":"15908:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"15879:3:125","nodeType":"YulIdentifier","src":"15879:3:125"},"nativeSrc":"15879:32:125","nodeType":"YulFunctionCall","src":"15879:32:125"},"nativeSrc":"15876:52:125","nodeType":"YulIf","src":"15876:52:125"},{"nativeSrc":"15937:29:125","nodeType":"YulVariableDeclaration","src":"15937:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"15956:9:125","nodeType":"YulIdentifier","src":"15956:9:125"}],"functionName":{"name":"mload","nativeSrc":"15950:5:125","nodeType":"YulIdentifier","src":"15950:5:125"},"nativeSrc":"15950:16:125","nodeType":"YulFunctionCall","src":"15950:16:125"},"variables":[{"name":"value","nativeSrc":"15941:5:125","nodeType":"YulTypedName","src":"15941:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"16010:5:125","nodeType":"YulIdentifier","src":"16010:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"15975:34:125","nodeType":"YulIdentifier","src":"15975:34:125"},"nativeSrc":"15975:41:125","nodeType":"YulFunctionCall","src":"15975:41:125"},"nativeSrc":"15975:41:125","nodeType":"YulExpressionStatement","src":"15975:41:125"},{"nativeSrc":"16025:15:125","nodeType":"YulAssignment","src":"16025:15:125","value":{"name":"value","nativeSrc":"16035:5:125","nodeType":"YulIdentifier","src":"16035:5:125"},"variableNames":[{"name":"value0","nativeSrc":"16025:6:125","nodeType":"YulIdentifier","src":"16025:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory","nativeSrc":"15761:285:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15832:9:125","nodeType":"YulTypedName","src":"15832:9:125","type":""},{"name":"dataEnd","nativeSrc":"15843:7:125","nodeType":"YulTypedName","src":"15843:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15855:6:125","nodeType":"YulTypedName","src":"15855:6:125","type":""}],"src":"15761:285:125"},{"body":{"nativeSrc":"16130:194:125","nodeType":"YulBlock","src":"16130:194:125","statements":[{"body":{"nativeSrc":"16176:16:125","nodeType":"YulBlock","src":"16176:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16185:1:125","nodeType":"YulLiteral","src":"16185:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"16188:1:125","nodeType":"YulLiteral","src":"16188:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16178:6:125","nodeType":"YulIdentifier","src":"16178:6:125"},"nativeSrc":"16178:12:125","nodeType":"YulFunctionCall","src":"16178:12:125"},"nativeSrc":"16178:12:125","nodeType":"YulExpressionStatement","src":"16178:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"16151:7:125","nodeType":"YulIdentifier","src":"16151:7:125"},{"name":"headStart","nativeSrc":"16160:9:125","nodeType":"YulIdentifier","src":"16160:9:125"}],"functionName":{"name":"sub","nativeSrc":"16147:3:125","nodeType":"YulIdentifier","src":"16147:3:125"},"nativeSrc":"16147:23:125","nodeType":"YulFunctionCall","src":"16147:23:125"},{"kind":"number","nativeSrc":"16172:2:125","nodeType":"YulLiteral","src":"16172:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"16143:3:125","nodeType":"YulIdentifier","src":"16143:3:125"},"nativeSrc":"16143:32:125","nodeType":"YulFunctionCall","src":"16143:32:125"},"nativeSrc":"16140:52:125","nodeType":"YulIf","src":"16140:52:125"},{"nativeSrc":"16201:29:125","nodeType":"YulVariableDeclaration","src":"16201:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"16220:9:125","nodeType":"YulIdentifier","src":"16220:9:125"}],"functionName":{"name":"mload","nativeSrc":"16214:5:125","nodeType":"YulIdentifier","src":"16214:5:125"},"nativeSrc":"16214:16:125","nodeType":"YulFunctionCall","src":"16214:16:125"},"variables":[{"name":"value","nativeSrc":"16205:5:125","nodeType":"YulTypedName","src":"16205:5:125","type":""}]},{"body":{"nativeSrc":"16278:16:125","nodeType":"YulBlock","src":"16278:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16287:1:125","nodeType":"YulLiteral","src":"16287:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"16290:1:125","nodeType":"YulLiteral","src":"16290:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16280:6:125","nodeType":"YulIdentifier","src":"16280:6:125"},"nativeSrc":"16280:12:125","nodeType":"YulFunctionCall","src":"16280:12:125"},"nativeSrc":"16280:12:125","nodeType":"YulExpressionStatement","src":"16280:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"16252:5:125","nodeType":"YulIdentifier","src":"16252:5:125"},{"arguments":[{"name":"value","nativeSrc":"16263:5:125","nodeType":"YulIdentifier","src":"16263:5:125"},{"kind":"number","nativeSrc":"16270:4:125","nodeType":"YulLiteral","src":"16270:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"16259:3:125","nodeType":"YulIdentifier","src":"16259:3:125"},"nativeSrc":"16259:16:125","nodeType":"YulFunctionCall","src":"16259:16:125"}],"functionName":{"name":"eq","nativeSrc":"16249:2:125","nodeType":"YulIdentifier","src":"16249:2:125"},"nativeSrc":"16249:27:125","nodeType":"YulFunctionCall","src":"16249:27:125"}],"functionName":{"name":"iszero","nativeSrc":"16242:6:125","nodeType":"YulIdentifier","src":"16242:6:125"},"nativeSrc":"16242:35:125","nodeType":"YulFunctionCall","src":"16242:35:125"},"nativeSrc":"16239:55:125","nodeType":"YulIf","src":"16239:55:125"},{"nativeSrc":"16303:15:125","nodeType":"YulAssignment","src":"16303:15:125","value":{"name":"value","nativeSrc":"16313:5:125","nodeType":"YulIdentifier","src":"16313:5:125"},"variableNames":[{"name":"value0","nativeSrc":"16303:6:125","nodeType":"YulIdentifier","src":"16303:6:125"}]}]},"name":"abi_decode_tuple_t_uint8_fromMemory","nativeSrc":"16051:273:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16096:9:125","nodeType":"YulTypedName","src":"16096:9:125","type":""},{"name":"dataEnd","nativeSrc":"16107:7:125","nodeType":"YulTypedName","src":"16107:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"16119:6:125","nodeType":"YulTypedName","src":"16119:6:125","type":""}],"src":"16051:273:125"},{"body":{"nativeSrc":"16398:306:125","nodeType":"YulBlock","src":"16398:306:125","statements":[{"nativeSrc":"16408:10:125","nodeType":"YulAssignment","src":"16408:10:125","value":{"kind":"number","nativeSrc":"16417:1:125","nodeType":"YulLiteral","src":"16417:1:125","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"16408:5:125","nodeType":"YulIdentifier","src":"16408:5:125"}]},{"nativeSrc":"16427:13:125","nodeType":"YulAssignment","src":"16427:13:125","value":{"name":"_base","nativeSrc":"16435:5:125","nodeType":"YulIdentifier","src":"16435:5:125"},"variableNames":[{"name":"base","nativeSrc":"16427:4:125","nodeType":"YulIdentifier","src":"16427:4:125"}]},{"body":{"nativeSrc":"16485:213:125","nodeType":"YulBlock","src":"16485:213:125","statements":[{"body":{"nativeSrc":"16527:22:125","nodeType":"YulBlock","src":"16527:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"16529:16:125","nodeType":"YulIdentifier","src":"16529:16:125"},"nativeSrc":"16529:18:125","nodeType":"YulFunctionCall","src":"16529:18:125"},"nativeSrc":"16529:18:125","nodeType":"YulExpressionStatement","src":"16529:18:125"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"16505:4:125","nodeType":"YulIdentifier","src":"16505:4:125"},{"arguments":[{"name":"max","nativeSrc":"16515:3:125","nodeType":"YulIdentifier","src":"16515:3:125"},{"name":"base","nativeSrc":"16520:4:125","nodeType":"YulIdentifier","src":"16520:4:125"}],"functionName":{"name":"div","nativeSrc":"16511:3:125","nodeType":"YulIdentifier","src":"16511:3:125"},"nativeSrc":"16511:14:125","nodeType":"YulFunctionCall","src":"16511:14:125"}],"functionName":{"name":"gt","nativeSrc":"16502:2:125","nodeType":"YulIdentifier","src":"16502:2:125"},"nativeSrc":"16502:24:125","nodeType":"YulFunctionCall","src":"16502:24:125"},"nativeSrc":"16499:50:125","nodeType":"YulIf","src":"16499:50:125"},{"body":{"nativeSrc":"16582:29:125","nodeType":"YulBlock","src":"16582:29:125","statements":[{"nativeSrc":"16584:25:125","nodeType":"YulAssignment","src":"16584:25:125","value":{"arguments":[{"name":"power","nativeSrc":"16597:5:125","nodeType":"YulIdentifier","src":"16597:5:125"},{"name":"base","nativeSrc":"16604:4:125","nodeType":"YulIdentifier","src":"16604:4:125"}],"functionName":{"name":"mul","nativeSrc":"16593:3:125","nodeType":"YulIdentifier","src":"16593:3:125"},"nativeSrc":"16593:16:125","nodeType":"YulFunctionCall","src":"16593:16:125"},"variableNames":[{"name":"power","nativeSrc":"16584:5:125","nodeType":"YulIdentifier","src":"16584:5:125"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"16569:8:125","nodeType":"YulIdentifier","src":"16569:8:125"},{"kind":"number","nativeSrc":"16579:1:125","nodeType":"YulLiteral","src":"16579:1:125","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"16565:3:125","nodeType":"YulIdentifier","src":"16565:3:125"},"nativeSrc":"16565:16:125","nodeType":"YulFunctionCall","src":"16565:16:125"},"nativeSrc":"16562:49:125","nodeType":"YulIf","src":"16562:49:125"},{"nativeSrc":"16624:23:125","nodeType":"YulAssignment","src":"16624:23:125","value":{"arguments":[{"name":"base","nativeSrc":"16636:4:125","nodeType":"YulIdentifier","src":"16636:4:125"},{"name":"base","nativeSrc":"16642:4:125","nodeType":"YulIdentifier","src":"16642:4:125"}],"functionName":{"name":"mul","nativeSrc":"16632:3:125","nodeType":"YulIdentifier","src":"16632:3:125"},"nativeSrc":"16632:15:125","nodeType":"YulFunctionCall","src":"16632:15:125"},"variableNames":[{"name":"base","nativeSrc":"16624:4:125","nodeType":"YulIdentifier","src":"16624:4:125"}]},{"nativeSrc":"16660:28:125","nodeType":"YulAssignment","src":"16660:28:125","value":{"arguments":[{"kind":"number","nativeSrc":"16676:1:125","nodeType":"YulLiteral","src":"16676:1:125","type":"","value":"1"},{"name":"exponent","nativeSrc":"16679:8:125","nodeType":"YulIdentifier","src":"16679:8:125"}],"functionName":{"name":"shr","nativeSrc":"16672:3:125","nodeType":"YulIdentifier","src":"16672:3:125"},"nativeSrc":"16672:16:125","nodeType":"YulFunctionCall","src":"16672:16:125"},"variableNames":[{"name":"exponent","nativeSrc":"16660:8:125","nodeType":"YulIdentifier","src":"16660:8:125"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"16460:8:125","nodeType":"YulIdentifier","src":"16460:8:125"},{"kind":"number","nativeSrc":"16470:1:125","nodeType":"YulLiteral","src":"16470:1:125","type":"","value":"1"}],"functionName":{"name":"gt","nativeSrc":"16457:2:125","nodeType":"YulIdentifier","src":"16457:2:125"},"nativeSrc":"16457:15:125","nodeType":"YulFunctionCall","src":"16457:15:125"},"nativeSrc":"16449:249:125","nodeType":"YulForLoop","post":{"nativeSrc":"16473:3:125","nodeType":"YulBlock","src":"16473:3:125","statements":[]},"pre":{"nativeSrc":"16453:3:125","nodeType":"YulBlock","src":"16453:3:125","statements":[]},"src":"16449:249:125"}]},"name":"checked_exp_helper","nativeSrc":"16329:375:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"_base","nativeSrc":"16357:5:125","nodeType":"YulTypedName","src":"16357:5:125","type":""},{"name":"exponent","nativeSrc":"16364:8:125","nodeType":"YulTypedName","src":"16364:8:125","type":""},{"name":"max","nativeSrc":"16374:3:125","nodeType":"YulTypedName","src":"16374:3:125","type":""}],"returnVariables":[{"name":"power","nativeSrc":"16382:5:125","nodeType":"YulTypedName","src":"16382:5:125","type":""},{"name":"base","nativeSrc":"16389:4:125","nodeType":"YulTypedName","src":"16389:4:125","type":""}],"src":"16329:375:125"},{"body":{"nativeSrc":"16768:843:125","nodeType":"YulBlock","src":"16768:843:125","statements":[{"body":{"nativeSrc":"16806:52:125","nodeType":"YulBlock","src":"16806:52:125","statements":[{"nativeSrc":"16820:10:125","nodeType":"YulAssignment","src":"16820:10:125","value":{"kind":"number","nativeSrc":"16829:1:125","nodeType":"YulLiteral","src":"16829:1:125","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"16820:5:125","nodeType":"YulIdentifier","src":"16820:5:125"}]},{"nativeSrc":"16843:5:125","nodeType":"YulLeave","src":"16843:5:125"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"16788:8:125","nodeType":"YulIdentifier","src":"16788:8:125"}],"functionName":{"name":"iszero","nativeSrc":"16781:6:125","nodeType":"YulIdentifier","src":"16781:6:125"},"nativeSrc":"16781:16:125","nodeType":"YulFunctionCall","src":"16781:16:125"},"nativeSrc":"16778:80:125","nodeType":"YulIf","src":"16778:80:125"},{"body":{"nativeSrc":"16891:52:125","nodeType":"YulBlock","src":"16891:52:125","statements":[{"nativeSrc":"16905:10:125","nodeType":"YulAssignment","src":"16905:10:125","value":{"kind":"number","nativeSrc":"16914:1:125","nodeType":"YulLiteral","src":"16914:1:125","type":"","value":"0"},"variableNames":[{"name":"power","nativeSrc":"16905:5:125","nodeType":"YulIdentifier","src":"16905:5:125"}]},{"nativeSrc":"16928:5:125","nodeType":"YulLeave","src":"16928:5:125"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"16877:4:125","nodeType":"YulIdentifier","src":"16877:4:125"}],"functionName":{"name":"iszero","nativeSrc":"16870:6:125","nodeType":"YulIdentifier","src":"16870:6:125"},"nativeSrc":"16870:12:125","nodeType":"YulFunctionCall","src":"16870:12:125"},"nativeSrc":"16867:76:125","nodeType":"YulIf","src":"16867:76:125"},{"cases":[{"body":{"nativeSrc":"16979:52:125","nodeType":"YulBlock","src":"16979:52:125","statements":[{"nativeSrc":"16993:10:125","nodeType":"YulAssignment","src":"16993:10:125","value":{"kind":"number","nativeSrc":"17002:1:125","nodeType":"YulLiteral","src":"17002:1:125","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"16993:5:125","nodeType":"YulIdentifier","src":"16993:5:125"}]},{"nativeSrc":"17016:5:125","nodeType":"YulLeave","src":"17016:5:125"}]},"nativeSrc":"16972:59:125","nodeType":"YulCase","src":"16972:59:125","value":{"kind":"number","nativeSrc":"16977:1:125","nodeType":"YulLiteral","src":"16977:1:125","type":"","value":"1"}},{"body":{"nativeSrc":"17047:167:125","nodeType":"YulBlock","src":"17047:167:125","statements":[{"body":{"nativeSrc":"17082:22:125","nodeType":"YulBlock","src":"17082:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"17084:16:125","nodeType":"YulIdentifier","src":"17084:16:125"},"nativeSrc":"17084:18:125","nodeType":"YulFunctionCall","src":"17084:18:125"},"nativeSrc":"17084:18:125","nodeType":"YulExpressionStatement","src":"17084:18:125"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"17067:8:125","nodeType":"YulIdentifier","src":"17067:8:125"},{"kind":"number","nativeSrc":"17077:3:125","nodeType":"YulLiteral","src":"17077:3:125","type":"","value":"255"}],"functionName":{"name":"gt","nativeSrc":"17064:2:125","nodeType":"YulIdentifier","src":"17064:2:125"},"nativeSrc":"17064:17:125","nodeType":"YulFunctionCall","src":"17064:17:125"},"nativeSrc":"17061:43:125","nodeType":"YulIf","src":"17061:43:125"},{"nativeSrc":"17117:25:125","nodeType":"YulAssignment","src":"17117:25:125","value":{"arguments":[{"name":"exponent","nativeSrc":"17130:8:125","nodeType":"YulIdentifier","src":"17130:8:125"},{"kind":"number","nativeSrc":"17140:1:125","nodeType":"YulLiteral","src":"17140:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"17126:3:125","nodeType":"YulIdentifier","src":"17126:3:125"},"nativeSrc":"17126:16:125","nodeType":"YulFunctionCall","src":"17126:16:125"},"variableNames":[{"name":"power","nativeSrc":"17117:5:125","nodeType":"YulIdentifier","src":"17117:5:125"}]},{"nativeSrc":"17155:11:125","nodeType":"YulVariableDeclaration","src":"17155:11:125","value":{"kind":"number","nativeSrc":"17165:1:125","nodeType":"YulLiteral","src":"17165:1:125","type":"","value":"0"},"variables":[{"name":"_1","nativeSrc":"17159:2:125","nodeType":"YulTypedName","src":"17159:2:125","type":""}]},{"nativeSrc":"17179:7:125","nodeType":"YulAssignment","src":"17179:7:125","value":{"kind":"number","nativeSrc":"17185:1:125","nodeType":"YulLiteral","src":"17185:1:125","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"17179:2:125","nodeType":"YulIdentifier","src":"17179:2:125"}]},{"nativeSrc":"17199:5:125","nodeType":"YulLeave","src":"17199:5:125"}]},"nativeSrc":"17040:174:125","nodeType":"YulCase","src":"17040:174:125","value":{"kind":"number","nativeSrc":"17045:1:125","nodeType":"YulLiteral","src":"17045:1:125","type":"","value":"2"}}],"expression":{"name":"base","nativeSrc":"16959:4:125","nodeType":"YulIdentifier","src":"16959:4:125"},"nativeSrc":"16952:262:125","nodeType":"YulSwitch","src":"16952:262:125"},{"body":{"nativeSrc":"17312:114:125","nodeType":"YulBlock","src":"17312:114:125","statements":[{"nativeSrc":"17326:28:125","nodeType":"YulAssignment","src":"17326:28:125","value":{"arguments":[{"name":"base","nativeSrc":"17339:4:125","nodeType":"YulIdentifier","src":"17339:4:125"},{"name":"exponent","nativeSrc":"17345:8:125","nodeType":"YulIdentifier","src":"17345:8:125"}],"functionName":{"name":"exp","nativeSrc":"17335:3:125","nodeType":"YulIdentifier","src":"17335:3:125"},"nativeSrc":"17335:19:125","nodeType":"YulFunctionCall","src":"17335:19:125"},"variableNames":[{"name":"power","nativeSrc":"17326:5:125","nodeType":"YulIdentifier","src":"17326:5:125"}]},{"nativeSrc":"17367:11:125","nodeType":"YulVariableDeclaration","src":"17367:11:125","value":{"kind":"number","nativeSrc":"17377:1:125","nodeType":"YulLiteral","src":"17377:1:125","type":"","value":"0"},"variables":[{"name":"_2","nativeSrc":"17371:2:125","nodeType":"YulTypedName","src":"17371:2:125","type":""}]},{"nativeSrc":"17391:7:125","nodeType":"YulAssignment","src":"17391:7:125","value":{"kind":"number","nativeSrc":"17397:1:125","nodeType":"YulLiteral","src":"17397:1:125","type":"","value":"0"},"variableNames":[{"name":"_2","nativeSrc":"17391:2:125","nodeType":"YulIdentifier","src":"17391:2:125"}]},{"nativeSrc":"17411:5:125","nodeType":"YulLeave","src":"17411:5:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"base","nativeSrc":"17236:4:125","nodeType":"YulIdentifier","src":"17236:4:125"},{"kind":"number","nativeSrc":"17242:2:125","nodeType":"YulLiteral","src":"17242:2:125","type":"","value":"11"}],"functionName":{"name":"lt","nativeSrc":"17233:2:125","nodeType":"YulIdentifier","src":"17233:2:125"},"nativeSrc":"17233:12:125","nodeType":"YulFunctionCall","src":"17233:12:125"},{"arguments":[{"name":"exponent","nativeSrc":"17250:8:125","nodeType":"YulIdentifier","src":"17250:8:125"},{"kind":"number","nativeSrc":"17260:2:125","nodeType":"YulLiteral","src":"17260:2:125","type":"","value":"78"}],"functionName":{"name":"lt","nativeSrc":"17247:2:125","nodeType":"YulIdentifier","src":"17247:2:125"},"nativeSrc":"17247:16:125","nodeType":"YulFunctionCall","src":"17247:16:125"}],"functionName":{"name":"and","nativeSrc":"17229:3:125","nodeType":"YulIdentifier","src":"17229:3:125"},"nativeSrc":"17229:35:125","nodeType":"YulFunctionCall","src":"17229:35:125"},{"arguments":[{"arguments":[{"name":"base","nativeSrc":"17273:4:125","nodeType":"YulIdentifier","src":"17273:4:125"},{"kind":"number","nativeSrc":"17279:3:125","nodeType":"YulLiteral","src":"17279:3:125","type":"","value":"307"}],"functionName":{"name":"lt","nativeSrc":"17270:2:125","nodeType":"YulIdentifier","src":"17270:2:125"},"nativeSrc":"17270:13:125","nodeType":"YulFunctionCall","src":"17270:13:125"},{"arguments":[{"name":"exponent","nativeSrc":"17288:8:125","nodeType":"YulIdentifier","src":"17288:8:125"},{"kind":"number","nativeSrc":"17298:2:125","nodeType":"YulLiteral","src":"17298:2:125","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"17285:2:125","nodeType":"YulIdentifier","src":"17285:2:125"},"nativeSrc":"17285:16:125","nodeType":"YulFunctionCall","src":"17285:16:125"}],"functionName":{"name":"and","nativeSrc":"17266:3:125","nodeType":"YulIdentifier","src":"17266:3:125"},"nativeSrc":"17266:36:125","nodeType":"YulFunctionCall","src":"17266:36:125"}],"functionName":{"name":"or","nativeSrc":"17226:2:125","nodeType":"YulIdentifier","src":"17226:2:125"},"nativeSrc":"17226:77:125","nodeType":"YulFunctionCall","src":"17226:77:125"},"nativeSrc":"17223:203:125","nodeType":"YulIf","src":"17223:203:125"},{"nativeSrc":"17435:65:125","nodeType":"YulVariableDeclaration","src":"17435:65:125","value":{"arguments":[{"name":"base","nativeSrc":"17477:4:125","nodeType":"YulIdentifier","src":"17477:4:125"},{"name":"exponent","nativeSrc":"17483:8:125","nodeType":"YulIdentifier","src":"17483:8:125"},{"arguments":[{"kind":"number","nativeSrc":"17497:1:125","nodeType":"YulLiteral","src":"17497:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"17493:3:125","nodeType":"YulIdentifier","src":"17493:3:125"},"nativeSrc":"17493:6:125","nodeType":"YulFunctionCall","src":"17493:6:125"}],"functionName":{"name":"checked_exp_helper","nativeSrc":"17458:18:125","nodeType":"YulIdentifier","src":"17458:18:125"},"nativeSrc":"17458:42:125","nodeType":"YulFunctionCall","src":"17458:42:125"},"variables":[{"name":"power_1","nativeSrc":"17439:7:125","nodeType":"YulTypedName","src":"17439:7:125","type":""},{"name":"base_1","nativeSrc":"17448:6:125","nodeType":"YulTypedName","src":"17448:6:125","type":""}]},{"body":{"nativeSrc":"17545:22:125","nodeType":"YulBlock","src":"17545:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"17547:16:125","nodeType":"YulIdentifier","src":"17547:16:125"},"nativeSrc":"17547:18:125","nodeType":"YulFunctionCall","src":"17547:18:125"},"nativeSrc":"17547:18:125","nodeType":"YulExpressionStatement","src":"17547:18:125"}]},"condition":{"arguments":[{"name":"power_1","nativeSrc":"17515:7:125","nodeType":"YulIdentifier","src":"17515:7:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17532:1:125","nodeType":"YulLiteral","src":"17532:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"17528:3:125","nodeType":"YulIdentifier","src":"17528:3:125"},"nativeSrc":"17528:6:125","nodeType":"YulFunctionCall","src":"17528:6:125"},{"name":"base_1","nativeSrc":"17536:6:125","nodeType":"YulIdentifier","src":"17536:6:125"}],"functionName":{"name":"div","nativeSrc":"17524:3:125","nodeType":"YulIdentifier","src":"17524:3:125"},"nativeSrc":"17524:19:125","nodeType":"YulFunctionCall","src":"17524:19:125"}],"functionName":{"name":"gt","nativeSrc":"17512:2:125","nodeType":"YulIdentifier","src":"17512:2:125"},"nativeSrc":"17512:32:125","nodeType":"YulFunctionCall","src":"17512:32:125"},"nativeSrc":"17509:58:125","nodeType":"YulIf","src":"17509:58:125"},{"nativeSrc":"17576:29:125","nodeType":"YulAssignment","src":"17576:29:125","value":{"arguments":[{"name":"power_1","nativeSrc":"17589:7:125","nodeType":"YulIdentifier","src":"17589:7:125"},{"name":"base_1","nativeSrc":"17598:6:125","nodeType":"YulIdentifier","src":"17598:6:125"}],"functionName":{"name":"mul","nativeSrc":"17585:3:125","nodeType":"YulIdentifier","src":"17585:3:125"},"nativeSrc":"17585:20:125","nodeType":"YulFunctionCall","src":"17585:20:125"},"variableNames":[{"name":"power","nativeSrc":"17576:5:125","nodeType":"YulIdentifier","src":"17576:5:125"}]}]},"name":"checked_exp_unsigned","nativeSrc":"16709:902:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"16739:4:125","nodeType":"YulTypedName","src":"16739:4:125","type":""},{"name":"exponent","nativeSrc":"16745:8:125","nodeType":"YulTypedName","src":"16745:8:125","type":""}],"returnVariables":[{"name":"power","nativeSrc":"16758:5:125","nodeType":"YulTypedName","src":"16758:5:125","type":""}],"src":"16709:902:125"},{"body":{"nativeSrc":"17684:72:125","nodeType":"YulBlock","src":"17684:72:125","statements":[{"nativeSrc":"17694:56:125","nodeType":"YulAssignment","src":"17694:56:125","value":{"arguments":[{"name":"base","nativeSrc":"17724:4:125","nodeType":"YulIdentifier","src":"17724:4:125"},{"arguments":[{"name":"exponent","nativeSrc":"17734:8:125","nodeType":"YulIdentifier","src":"17734:8:125"},{"kind":"number","nativeSrc":"17744:4:125","nodeType":"YulLiteral","src":"17744:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"17730:3:125","nodeType":"YulIdentifier","src":"17730:3:125"},"nativeSrc":"17730:19:125","nodeType":"YulFunctionCall","src":"17730:19:125"}],"functionName":{"name":"checked_exp_unsigned","nativeSrc":"17703:20:125","nodeType":"YulIdentifier","src":"17703:20:125"},"nativeSrc":"17703:47:125","nodeType":"YulFunctionCall","src":"17703:47:125"},"variableNames":[{"name":"power","nativeSrc":"17694:5:125","nodeType":"YulIdentifier","src":"17694:5:125"}]}]},"name":"checked_exp_t_uint256_t_uint8","nativeSrc":"17616:140:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"17655:4:125","nodeType":"YulTypedName","src":"17655:4:125","type":""},{"name":"exponent","nativeSrc":"17661:8:125","nodeType":"YulTypedName","src":"17661:8:125","type":""}],"returnVariables":[{"name":"power","nativeSrc":"17674:5:125","nodeType":"YulTypedName","src":"17674:5:125","type":""}],"src":"17616:140:125"},{"body":{"nativeSrc":"17842:103:125","nodeType":"YulBlock","src":"17842:103:125","statements":[{"body":{"nativeSrc":"17888:16:125","nodeType":"YulBlock","src":"17888:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17897:1:125","nodeType":"YulLiteral","src":"17897:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"17900:1:125","nodeType":"YulLiteral","src":"17900:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17890:6:125","nodeType":"YulIdentifier","src":"17890:6:125"},"nativeSrc":"17890:12:125","nodeType":"YulFunctionCall","src":"17890:12:125"},"nativeSrc":"17890:12:125","nodeType":"YulExpressionStatement","src":"17890:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17863:7:125","nodeType":"YulIdentifier","src":"17863:7:125"},{"name":"headStart","nativeSrc":"17872:9:125","nodeType":"YulIdentifier","src":"17872:9:125"}],"functionName":{"name":"sub","nativeSrc":"17859:3:125","nodeType":"YulIdentifier","src":"17859:3:125"},"nativeSrc":"17859:23:125","nodeType":"YulFunctionCall","src":"17859:23:125"},{"kind":"number","nativeSrc":"17884:2:125","nodeType":"YulLiteral","src":"17884:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"17855:3:125","nodeType":"YulIdentifier","src":"17855:3:125"},"nativeSrc":"17855:32:125","nodeType":"YulFunctionCall","src":"17855:32:125"},"nativeSrc":"17852:52:125","nodeType":"YulIf","src":"17852:52:125"},{"nativeSrc":"17913:26:125","nodeType":"YulAssignment","src":"17913:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17929:9:125","nodeType":"YulIdentifier","src":"17929:9:125"}],"functionName":{"name":"mload","nativeSrc":"17923:5:125","nodeType":"YulIdentifier","src":"17923:5:125"},"nativeSrc":"17923:16:125","nodeType":"YulFunctionCall","src":"17923:16:125"},"variableNames":[{"name":"value0","nativeSrc":"17913:6:125","nodeType":"YulIdentifier","src":"17913:6:125"}]}]},"name":"abi_decode_tuple_t_bytes32_fromMemory","nativeSrc":"17761:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17808:9:125","nodeType":"YulTypedName","src":"17808:9:125","type":""},{"name":"dataEnd","nativeSrc":"17819:7:125","nodeType":"YulTypedName","src":"17819:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17831:6:125","nodeType":"YulTypedName","src":"17831:6:125","type":""}],"src":"17761:184:125"},{"body":{"nativeSrc":"18086:130:125","nodeType":"YulBlock","src":"18086:130:125","statements":[{"nativeSrc":"18096:26:125","nodeType":"YulAssignment","src":"18096:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18108:9:125","nodeType":"YulIdentifier","src":"18108:9:125"},{"kind":"number","nativeSrc":"18119:2:125","nodeType":"YulLiteral","src":"18119:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18104:3:125","nodeType":"YulIdentifier","src":"18104:3:125"},"nativeSrc":"18104:18:125","nodeType":"YulFunctionCall","src":"18104:18:125"},"variableNames":[{"name":"tail","nativeSrc":"18096:4:125","nodeType":"YulIdentifier","src":"18096:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18138:9:125","nodeType":"YulIdentifier","src":"18138:9:125"},{"arguments":[{"name":"value0","nativeSrc":"18153:6:125","nodeType":"YulIdentifier","src":"18153:6:125"},{"kind":"number","nativeSrc":"18161:4:125","nodeType":"YulLiteral","src":"18161:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"18149:3:125","nodeType":"YulIdentifier","src":"18149:3:125"},"nativeSrc":"18149:17:125","nodeType":"YulFunctionCall","src":"18149:17:125"}],"functionName":{"name":"mstore","nativeSrc":"18131:6:125","nodeType":"YulIdentifier","src":"18131:6:125"},"nativeSrc":"18131:36:125","nodeType":"YulFunctionCall","src":"18131:36:125"},"nativeSrc":"18131:36:125","nodeType":"YulExpressionStatement","src":"18131:36:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18187:9:125","nodeType":"YulIdentifier","src":"18187:9:125"},{"kind":"number","nativeSrc":"18198:2:125","nodeType":"YulLiteral","src":"18198:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18183:3:125","nodeType":"YulIdentifier","src":"18183:3:125"},"nativeSrc":"18183:18:125","nodeType":"YulFunctionCall","src":"18183:18:125"},{"name":"value1","nativeSrc":"18203:6:125","nodeType":"YulIdentifier","src":"18203:6:125"}],"functionName":{"name":"mstore","nativeSrc":"18176:6:125","nodeType":"YulIdentifier","src":"18176:6:125"},"nativeSrc":"18176:34:125","nodeType":"YulFunctionCall","src":"18176:34:125"},"nativeSrc":"18176:34:125","nodeType":"YulExpressionStatement","src":"18176:34:125"}]},"name":"abi_encode_tuple_t_rational_16_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"17950:266:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18047:9:125","nodeType":"YulTypedName","src":"18047:9:125","type":""},{"name":"value1","nativeSrc":"18058:6:125","nodeType":"YulTypedName","src":"18058:6:125","type":""},{"name":"value0","nativeSrc":"18066:6:125","nodeType":"YulTypedName","src":"18066:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18077:4:125","nodeType":"YulTypedName","src":"18077:4:125","type":""}],"src":"17950:266:125"},{"body":{"nativeSrc":"18460:320:125","nodeType":"YulBlock","src":"18460:320:125","statements":[{"nativeSrc":"18470:27:125","nodeType":"YulAssignment","src":"18470:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18482:9:125","nodeType":"YulIdentifier","src":"18482:9:125"},{"kind":"number","nativeSrc":"18493:3:125","nodeType":"YulLiteral","src":"18493:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"18478:3:125","nodeType":"YulIdentifier","src":"18478:3:125"},"nativeSrc":"18478:19:125","nodeType":"YulFunctionCall","src":"18478:19:125"},"variableNames":[{"name":"tail","nativeSrc":"18470:4:125","nodeType":"YulIdentifier","src":"18470:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18513:9:125","nodeType":"YulIdentifier","src":"18513:9:125"},{"name":"value0","nativeSrc":"18524:6:125","nodeType":"YulIdentifier","src":"18524:6:125"}],"functionName":{"name":"mstore","nativeSrc":"18506:6:125","nodeType":"YulIdentifier","src":"18506:6:125"},"nativeSrc":"18506:25:125","nodeType":"YulFunctionCall","src":"18506:25:125"},"nativeSrc":"18506:25:125","nodeType":"YulExpressionStatement","src":"18506:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18551:9:125","nodeType":"YulIdentifier","src":"18551:9:125"},{"kind":"number","nativeSrc":"18562:2:125","nodeType":"YulLiteral","src":"18562:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18547:3:125","nodeType":"YulIdentifier","src":"18547:3:125"},"nativeSrc":"18547:18:125","nodeType":"YulFunctionCall","src":"18547:18:125"},{"name":"value1","nativeSrc":"18567:6:125","nodeType":"YulIdentifier","src":"18567:6:125"}],"functionName":{"name":"mstore","nativeSrc":"18540:6:125","nodeType":"YulIdentifier","src":"18540:6:125"},"nativeSrc":"18540:34:125","nodeType":"YulFunctionCall","src":"18540:34:125"},"nativeSrc":"18540:34:125","nodeType":"YulExpressionStatement","src":"18540:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18594:9:125","nodeType":"YulIdentifier","src":"18594:9:125"},{"kind":"number","nativeSrc":"18605:2:125","nodeType":"YulLiteral","src":"18605:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18590:3:125","nodeType":"YulIdentifier","src":"18590:3:125"},"nativeSrc":"18590:18:125","nodeType":"YulFunctionCall","src":"18590:18:125"},{"name":"value2","nativeSrc":"18610:6:125","nodeType":"YulIdentifier","src":"18610:6:125"}],"functionName":{"name":"mstore","nativeSrc":"18583:6:125","nodeType":"YulIdentifier","src":"18583:6:125"},"nativeSrc":"18583:34:125","nodeType":"YulFunctionCall","src":"18583:34:125"},"nativeSrc":"18583:34:125","nodeType":"YulExpressionStatement","src":"18583:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18637:9:125","nodeType":"YulIdentifier","src":"18637:9:125"},{"kind":"number","nativeSrc":"18648:2:125","nodeType":"YulLiteral","src":"18648:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18633:3:125","nodeType":"YulIdentifier","src":"18633:3:125"},"nativeSrc":"18633:18:125","nodeType":"YulFunctionCall","src":"18633:18:125"},{"name":"value3","nativeSrc":"18653:6:125","nodeType":"YulIdentifier","src":"18653:6:125"}],"functionName":{"name":"mstore","nativeSrc":"18626:6:125","nodeType":"YulIdentifier","src":"18626:6:125"},"nativeSrc":"18626:34:125","nodeType":"YulFunctionCall","src":"18626:34:125"},"nativeSrc":"18626:34:125","nodeType":"YulExpressionStatement","src":"18626:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18680:9:125","nodeType":"YulIdentifier","src":"18680:9:125"},{"kind":"number","nativeSrc":"18691:3:125","nodeType":"YulLiteral","src":"18691:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"18676:3:125","nodeType":"YulIdentifier","src":"18676:3:125"},"nativeSrc":"18676:19:125","nodeType":"YulFunctionCall","src":"18676:19:125"},{"arguments":[{"name":"value4","nativeSrc":"18701:6:125","nodeType":"YulIdentifier","src":"18701:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18717:3:125","nodeType":"YulLiteral","src":"18717:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"18722:1:125","nodeType":"YulLiteral","src":"18722:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18713:3:125","nodeType":"YulIdentifier","src":"18713:3:125"},"nativeSrc":"18713:11:125","nodeType":"YulFunctionCall","src":"18713:11:125"},{"kind":"number","nativeSrc":"18726:1:125","nodeType":"YulLiteral","src":"18726:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18709:3:125","nodeType":"YulIdentifier","src":"18709:3:125"},"nativeSrc":"18709:19:125","nodeType":"YulFunctionCall","src":"18709:19:125"}],"functionName":{"name":"and","nativeSrc":"18697:3:125","nodeType":"YulIdentifier","src":"18697:3:125"},"nativeSrc":"18697:32:125","nodeType":"YulFunctionCall","src":"18697:32:125"}],"functionName":{"name":"mstore","nativeSrc":"18669:6:125","nodeType":"YulIdentifier","src":"18669:6:125"},"nativeSrc":"18669:61:125","nodeType":"YulFunctionCall","src":"18669:61:125"},"nativeSrc":"18669:61:125","nodeType":"YulExpressionStatement","src":"18669:61:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18750:9:125","nodeType":"YulIdentifier","src":"18750:9:125"},{"kind":"number","nativeSrc":"18761:3:125","nodeType":"YulLiteral","src":"18761:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"18746:3:125","nodeType":"YulIdentifier","src":"18746:3:125"},"nativeSrc":"18746:19:125","nodeType":"YulFunctionCall","src":"18746:19:125"},{"name":"value5","nativeSrc":"18767:6:125","nodeType":"YulIdentifier","src":"18767:6:125"}],"functionName":{"name":"mstore","nativeSrc":"18739:6:125","nodeType":"YulIdentifier","src":"18739:6:125"},"nativeSrc":"18739:35:125","nodeType":"YulFunctionCall","src":"18739:35:125"},"nativeSrc":"18739:35:125","nodeType":"YulExpressionStatement","src":"18739:35:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_int256_t_address_t_uint256__to_t_uint256_t_uint256_t_uint256_t_int256_t_address_t_uint256__fromStack_reversed","nativeSrc":"18221:559:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18389:9:125","nodeType":"YulTypedName","src":"18389:9:125","type":""},{"name":"value5","nativeSrc":"18400:6:125","nodeType":"YulTypedName","src":"18400:6:125","type":""},{"name":"value4","nativeSrc":"18408:6:125","nodeType":"YulTypedName","src":"18408:6:125","type":""},{"name":"value3","nativeSrc":"18416:6:125","nodeType":"YulTypedName","src":"18416:6:125","type":""},{"name":"value2","nativeSrc":"18424:6:125","nodeType":"YulTypedName","src":"18424:6:125","type":""},{"name":"value1","nativeSrc":"18432:6:125","nodeType":"YulTypedName","src":"18432:6:125","type":""},{"name":"value0","nativeSrc":"18440:6:125","nodeType":"YulTypedName","src":"18440:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18451:4:125","nodeType":"YulTypedName","src":"18451:4:125","type":""}],"src":"18221:559:125"},{"body":{"nativeSrc":"18914:171:125","nodeType":"YulBlock","src":"18914:171:125","statements":[{"nativeSrc":"18924:26:125","nodeType":"YulAssignment","src":"18924:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18936:9:125","nodeType":"YulIdentifier","src":"18936:9:125"},{"kind":"number","nativeSrc":"18947:2:125","nodeType":"YulLiteral","src":"18947:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18932:3:125","nodeType":"YulIdentifier","src":"18932:3:125"},"nativeSrc":"18932:18:125","nodeType":"YulFunctionCall","src":"18932:18:125"},"variableNames":[{"name":"tail","nativeSrc":"18924:4:125","nodeType":"YulIdentifier","src":"18924:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18966:9:125","nodeType":"YulIdentifier","src":"18966:9:125"},{"arguments":[{"name":"value0","nativeSrc":"18981:6:125","nodeType":"YulIdentifier","src":"18981:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18997:3:125","nodeType":"YulLiteral","src":"18997:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"19002:1:125","nodeType":"YulLiteral","src":"19002:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18993:3:125","nodeType":"YulIdentifier","src":"18993:3:125"},"nativeSrc":"18993:11:125","nodeType":"YulFunctionCall","src":"18993:11:125"},{"kind":"number","nativeSrc":"19006:1:125","nodeType":"YulLiteral","src":"19006:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18989:3:125","nodeType":"YulIdentifier","src":"18989:3:125"},"nativeSrc":"18989:19:125","nodeType":"YulFunctionCall","src":"18989:19:125"}],"functionName":{"name":"and","nativeSrc":"18977:3:125","nodeType":"YulIdentifier","src":"18977:3:125"},"nativeSrc":"18977:32:125","nodeType":"YulFunctionCall","src":"18977:32:125"}],"functionName":{"name":"mstore","nativeSrc":"18959:6:125","nodeType":"YulIdentifier","src":"18959:6:125"},"nativeSrc":"18959:51:125","nodeType":"YulFunctionCall","src":"18959:51:125"},"nativeSrc":"18959:51:125","nodeType":"YulExpressionStatement","src":"18959:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19030:9:125","nodeType":"YulIdentifier","src":"19030:9:125"},{"kind":"number","nativeSrc":"19041:2:125","nodeType":"YulLiteral","src":"19041:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19026:3:125","nodeType":"YulIdentifier","src":"19026:3:125"},"nativeSrc":"19026:18:125","nodeType":"YulFunctionCall","src":"19026:18:125"},{"arguments":[{"name":"value1","nativeSrc":"19050:6:125","nodeType":"YulIdentifier","src":"19050:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19066:3:125","nodeType":"YulLiteral","src":"19066:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"19071:1:125","nodeType":"YulLiteral","src":"19071:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"19062:3:125","nodeType":"YulIdentifier","src":"19062:3:125"},"nativeSrc":"19062:11:125","nodeType":"YulFunctionCall","src":"19062:11:125"},{"kind":"number","nativeSrc":"19075:1:125","nodeType":"YulLiteral","src":"19075:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"19058:3:125","nodeType":"YulIdentifier","src":"19058:3:125"},"nativeSrc":"19058:19:125","nodeType":"YulFunctionCall","src":"19058:19:125"}],"functionName":{"name":"and","nativeSrc":"19046:3:125","nodeType":"YulIdentifier","src":"19046:3:125"},"nativeSrc":"19046:32:125","nodeType":"YulFunctionCall","src":"19046:32:125"}],"functionName":{"name":"mstore","nativeSrc":"19019:6:125","nodeType":"YulIdentifier","src":"19019:6:125"},"nativeSrc":"19019:60:125","nodeType":"YulFunctionCall","src":"19019:60:125"},"nativeSrc":"19019:60:125","nodeType":"YulExpressionStatement","src":"19019:60:125"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nativeSrc":"18785:300:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18875:9:125","nodeType":"YulTypedName","src":"18875:9:125","type":""},{"name":"value1","nativeSrc":"18886:6:125","nodeType":"YulTypedName","src":"18886:6:125","type":""},{"name":"value0","nativeSrc":"18894:6:125","nodeType":"YulTypedName","src":"18894:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18905:4:125","nodeType":"YulTypedName","src":"18905:4:125","type":""}],"src":"18785:300:125"},{"body":{"nativeSrc":"19222:307:125","nodeType":"YulBlock","src":"19222:307:125","statements":[{"body":{"nativeSrc":"19268:16:125","nodeType":"YulBlock","src":"19268:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19277:1:125","nodeType":"YulLiteral","src":"19277:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"19280:1:125","nodeType":"YulLiteral","src":"19280:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19270:6:125","nodeType":"YulIdentifier","src":"19270:6:125"},"nativeSrc":"19270:12:125","nodeType":"YulFunctionCall","src":"19270:12:125"},"nativeSrc":"19270:12:125","nodeType":"YulExpressionStatement","src":"19270:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"19243:7:125","nodeType":"YulIdentifier","src":"19243:7:125"},{"name":"headStart","nativeSrc":"19252:9:125","nodeType":"YulIdentifier","src":"19252:9:125"}],"functionName":{"name":"sub","nativeSrc":"19239:3:125","nodeType":"YulIdentifier","src":"19239:3:125"},"nativeSrc":"19239:23:125","nodeType":"YulFunctionCall","src":"19239:23:125"},{"kind":"number","nativeSrc":"19264:2:125","nodeType":"YulLiteral","src":"19264:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"19235:3:125","nodeType":"YulIdentifier","src":"19235:3:125"},"nativeSrc":"19235:32:125","nodeType":"YulFunctionCall","src":"19235:32:125"},"nativeSrc":"19232:52:125","nodeType":"YulIf","src":"19232:52:125"},{"nativeSrc":"19293:29:125","nodeType":"YulVariableDeclaration","src":"19293:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"19312:9:125","nodeType":"YulIdentifier","src":"19312:9:125"}],"functionName":{"name":"mload","nativeSrc":"19306:5:125","nodeType":"YulIdentifier","src":"19306:5:125"},"nativeSrc":"19306:16:125","nodeType":"YulFunctionCall","src":"19306:16:125"},"variables":[{"name":"value","nativeSrc":"19297:5:125","nodeType":"YulTypedName","src":"19297:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"19366:5:125","nodeType":"YulIdentifier","src":"19366:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"19331:34:125","nodeType":"YulIdentifier","src":"19331:34:125"},"nativeSrc":"19331:41:125","nodeType":"YulFunctionCall","src":"19331:41:125"},"nativeSrc":"19331:41:125","nodeType":"YulExpressionStatement","src":"19331:41:125"},{"nativeSrc":"19381:15:125","nodeType":"YulAssignment","src":"19381:15:125","value":{"name":"value","nativeSrc":"19391:5:125","nodeType":"YulIdentifier","src":"19391:5:125"},"variableNames":[{"name":"value0","nativeSrc":"19381:6:125","nodeType":"YulIdentifier","src":"19381:6:125"}]},{"nativeSrc":"19405:40:125","nodeType":"YulVariableDeclaration","src":"19405:40:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19430:9:125","nodeType":"YulIdentifier","src":"19430:9:125"},{"kind":"number","nativeSrc":"19441:2:125","nodeType":"YulLiteral","src":"19441:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19426:3:125","nodeType":"YulIdentifier","src":"19426:3:125"},"nativeSrc":"19426:18:125","nodeType":"YulFunctionCall","src":"19426:18:125"}],"functionName":{"name":"mload","nativeSrc":"19420:5:125","nodeType":"YulIdentifier","src":"19420:5:125"},"nativeSrc":"19420:25:125","nodeType":"YulFunctionCall","src":"19420:25:125"},"variables":[{"name":"value_1","nativeSrc":"19409:7:125","nodeType":"YulTypedName","src":"19409:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"19489:7:125","nodeType":"YulIdentifier","src":"19489:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"19454:34:125","nodeType":"YulIdentifier","src":"19454:34:125"},"nativeSrc":"19454:43:125","nodeType":"YulFunctionCall","src":"19454:43:125"},"nativeSrc":"19454:43:125","nodeType":"YulExpressionStatement","src":"19454:43:125"},{"nativeSrc":"19506:17:125","nodeType":"YulAssignment","src":"19506:17:125","value":{"name":"value_1","nativeSrc":"19516:7:125","nodeType":"YulIdentifier","src":"19516:7:125"},"variableNames":[{"name":"value1","nativeSrc":"19506:6:125","nodeType":"YulIdentifier","src":"19506:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IEToken_$14336t_contract$_IEToken_$14336_fromMemory","nativeSrc":"19090:439:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19180:9:125","nodeType":"YulTypedName","src":"19180:9:125","type":""},{"name":"dataEnd","nativeSrc":"19191:7:125","nodeType":"YulTypedName","src":"19191:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"19203:6:125","nodeType":"YulTypedName","src":"19203:6:125","type":""},{"name":"value1","nativeSrc":"19211:6:125","nodeType":"YulTypedName","src":"19211:6:125","type":""}],"src":"19090:439:125"},{"body":{"nativeSrc":"19670:130:125","nodeType":"YulBlock","src":"19670:130:125","statements":[{"nativeSrc":"19680:26:125","nodeType":"YulAssignment","src":"19680:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"19692:9:125","nodeType":"YulIdentifier","src":"19692:9:125"},{"kind":"number","nativeSrc":"19703:2:125","nodeType":"YulLiteral","src":"19703:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19688:3:125","nodeType":"YulIdentifier","src":"19688:3:125"},"nativeSrc":"19688:18:125","nodeType":"YulFunctionCall","src":"19688:18:125"},"variableNames":[{"name":"tail","nativeSrc":"19680:4:125","nodeType":"YulIdentifier","src":"19680:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19722:9:125","nodeType":"YulIdentifier","src":"19722:9:125"},{"arguments":[{"name":"value0","nativeSrc":"19737:6:125","nodeType":"YulIdentifier","src":"19737:6:125"},{"kind":"number","nativeSrc":"19745:4:125","nodeType":"YulLiteral","src":"19745:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"19733:3:125","nodeType":"YulIdentifier","src":"19733:3:125"},"nativeSrc":"19733:17:125","nodeType":"YulFunctionCall","src":"19733:17:125"}],"functionName":{"name":"mstore","nativeSrc":"19715:6:125","nodeType":"YulIdentifier","src":"19715:6:125"},"nativeSrc":"19715:36:125","nodeType":"YulFunctionCall","src":"19715:36:125"},"nativeSrc":"19715:36:125","nodeType":"YulExpressionStatement","src":"19715:36:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19771:9:125","nodeType":"YulIdentifier","src":"19771:9:125"},{"kind":"number","nativeSrc":"19782:2:125","nodeType":"YulLiteral","src":"19782:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19767:3:125","nodeType":"YulIdentifier","src":"19767:3:125"},"nativeSrc":"19767:18:125","nodeType":"YulFunctionCall","src":"19767:18:125"},{"name":"value1","nativeSrc":"19787:6:125","nodeType":"YulIdentifier","src":"19787:6:125"}],"functionName":{"name":"mstore","nativeSrc":"19760:6:125","nodeType":"YulIdentifier","src":"19760:6:125"},"nativeSrc":"19760:34:125","nodeType":"YulFunctionCall","src":"19760:34:125"},"nativeSrc":"19760:34:125","nodeType":"YulExpressionStatement","src":"19760:34:125"}]},"name":"abi_encode_tuple_t_rational_32_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"19534:266:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19631:9:125","nodeType":"YulTypedName","src":"19631:9:125","type":""},{"name":"value1","nativeSrc":"19642:6:125","nodeType":"YulTypedName","src":"19642:6:125","type":""},{"name":"value0","nativeSrc":"19650:6:125","nodeType":"YulTypedName","src":"19650:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19661:4:125","nodeType":"YulTypedName","src":"19661:4:125","type":""}],"src":"19534:266:125"},{"body":{"nativeSrc":"19853:128:125","nodeType":"YulBlock","src":"19853:128:125","statements":[{"nativeSrc":"19863:55:125","nodeType":"YulAssignment","src":"19863:55:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"19879:1:125","nodeType":"YulIdentifier","src":"19879:1:125"},{"kind":"number","nativeSrc":"19882:12:125","nodeType":"YulLiteral","src":"19882:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"19875:3:125","nodeType":"YulIdentifier","src":"19875:3:125"},"nativeSrc":"19875:20:125","nodeType":"YulFunctionCall","src":"19875:20:125"},{"arguments":[{"name":"y","nativeSrc":"19901:1:125","nodeType":"YulIdentifier","src":"19901:1:125"},{"kind":"number","nativeSrc":"19904:12:125","nodeType":"YulLiteral","src":"19904:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"19897:3:125","nodeType":"YulIdentifier","src":"19897:3:125"},"nativeSrc":"19897:20:125","nodeType":"YulFunctionCall","src":"19897:20:125"}],"functionName":{"name":"sub","nativeSrc":"19871:3:125","nodeType":"YulIdentifier","src":"19871:3:125"},"nativeSrc":"19871:47:125","nodeType":"YulFunctionCall","src":"19871:47:125"},"variableNames":[{"name":"diff","nativeSrc":"19863:4:125","nodeType":"YulIdentifier","src":"19863:4:125"}]},{"body":{"nativeSrc":"19953:22:125","nodeType":"YulBlock","src":"19953:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"19955:16:125","nodeType":"YulIdentifier","src":"19955:16:125"},"nativeSrc":"19955:18:125","nodeType":"YulFunctionCall","src":"19955:18:125"},"nativeSrc":"19955:18:125","nodeType":"YulExpressionStatement","src":"19955:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"19933:4:125","nodeType":"YulIdentifier","src":"19933:4:125"},{"kind":"number","nativeSrc":"19939:12:125","nodeType":"YulLiteral","src":"19939:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"gt","nativeSrc":"19930:2:125","nodeType":"YulIdentifier","src":"19930:2:125"},"nativeSrc":"19930:22:125","nodeType":"YulFunctionCall","src":"19930:22:125"},"nativeSrc":"19927:48:125","nodeType":"YulIf","src":"19927:48:125"}]},"name":"checked_sub_t_uint40","nativeSrc":"19805:176:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"19835:1:125","nodeType":"YulTypedName","src":"19835:1:125","type":""},{"name":"y","nativeSrc":"19838:1:125","nodeType":"YulTypedName","src":"19838:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"19844:4:125","nodeType":"YulTypedName","src":"19844:4:125","type":""}],"src":"19805:176:125"},{"body":{"nativeSrc":"20088:180:125","nodeType":"YulBlock","src":"20088:180:125","statements":[{"body":{"nativeSrc":"20134:16:125","nodeType":"YulBlock","src":"20134:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20143:1:125","nodeType":"YulLiteral","src":"20143:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"20146:1:125","nodeType":"YulLiteral","src":"20146:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"20136:6:125","nodeType":"YulIdentifier","src":"20136:6:125"},"nativeSrc":"20136:12:125","nodeType":"YulFunctionCall","src":"20136:12:125"},"nativeSrc":"20136:12:125","nodeType":"YulExpressionStatement","src":"20136:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"20109:7:125","nodeType":"YulIdentifier","src":"20109:7:125"},{"name":"headStart","nativeSrc":"20118:9:125","nodeType":"YulIdentifier","src":"20118:9:125"}],"functionName":{"name":"sub","nativeSrc":"20105:3:125","nodeType":"YulIdentifier","src":"20105:3:125"},"nativeSrc":"20105:23:125","nodeType":"YulFunctionCall","src":"20105:23:125"},{"kind":"number","nativeSrc":"20130:2:125","nodeType":"YulLiteral","src":"20130:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"20101:3:125","nodeType":"YulIdentifier","src":"20101:3:125"},"nativeSrc":"20101:32:125","nodeType":"YulFunctionCall","src":"20101:32:125"},"nativeSrc":"20098:52:125","nodeType":"YulIf","src":"20098:52:125"},{"nativeSrc":"20159:29:125","nodeType":"YulVariableDeclaration","src":"20159:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"20178:9:125","nodeType":"YulIdentifier","src":"20178:9:125"}],"functionName":{"name":"mload","nativeSrc":"20172:5:125","nodeType":"YulIdentifier","src":"20172:5:125"},"nativeSrc":"20172:16:125","nodeType":"YulFunctionCall","src":"20172:16:125"},"variables":[{"name":"value","nativeSrc":"20163:5:125","nodeType":"YulTypedName","src":"20163:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"20232:5:125","nodeType":"YulIdentifier","src":"20232:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"20197:34:125","nodeType":"YulIdentifier","src":"20197:34:125"},"nativeSrc":"20197:41:125","nodeType":"YulFunctionCall","src":"20197:41:125"},"nativeSrc":"20197:41:125","nodeType":"YulExpressionStatement","src":"20197:41:125"},{"nativeSrc":"20247:15:125","nodeType":"YulAssignment","src":"20247:15:125","value":{"name":"value","nativeSrc":"20257:5:125","nodeType":"YulIdentifier","src":"20257:5:125"},"variableNames":[{"name":"value0","nativeSrc":"20247:6:125","nodeType":"YulIdentifier","src":"20247:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory","nativeSrc":"19986:282:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20054:9:125","nodeType":"YulTypedName","src":"20054:9:125","type":""},{"name":"dataEnd","nativeSrc":"20065:7:125","nodeType":"YulTypedName","src":"20065:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"20077:6:125","nodeType":"YulTypedName","src":"20077:6:125","type":""}],"src":"19986:282:125"}]},"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_int256__to_t_int256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function validator_revert_contract_IERC4626(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function validator_revert_bool(value)\n    {\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IERC4626_$22463t_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_bool(value_1)\n        value1 := 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_struct_PolicyData_calldata(offset, end) -> value\n    {\n        if slt(sub(end, offset), 384) { revert(0, 0) }\n        value := offset\n    }\n    function abi_decode_tuple_t_addresst_struct$_PolicyData_$7744_calldata_ptrt_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 448) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        value1 := abi_decode_struct_PolicyData_calldata(add(headStart, 32), dataEnd)\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 416))\n        value2 := value_1\n    }\n    function abi_encode_tuple_t_contract$_IPolicyPool_$14638__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 panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function allocate_memory_1999() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 384)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\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 array := allocate_memory(add(and(add(length, 0x1f), not(31)), 32))\n        mstore(array, length)\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        calldatacopy(add(array, 32), add(_1, 32), length)\n        mstore(add(add(array, length), 32), 0)\n        value1 := array\n    }\n    function abi_decode_tuple_t_uint256t_bool(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_bool(value_1)\n        value1 := value_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_encode_tuple_t_contract$_IEToken_$14336__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_contract$_IEToken_$14336_t_contract$_IEToken_$14336__to_t_address_t_address__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(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptr(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 384) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_calldata(headStart, dataEnd)\n    }\n    function abi_decode_tuple_t_uint256(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_decode_tuple_t_uint256t_uint256(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 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_uint256t_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_contract_IERC4626(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_contract$_IERC4626_$22463__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_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_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_struct$_PolicyData_$7744_calldata_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 768) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_calldata(headStart, dataEnd)\n        value1 := abi_decode_struct_PolicyData_calldata(add(headStart, 384), dataEnd)\n    }\n    function abi_encode_tuple_t_contract$_IERC20Metadata_$24925__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_struct$_PolicyData_$7744_calldata_ptrt_uint256t_uint256t_uint256t_address(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 512) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_calldata(headStart, dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 448))\n        value3 := value_2\n        let value_3 := calldataload(add(headStart, 480))\n        validator_revert_contract_IERC4626(value_3)\n        value4 := value_3\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        validator_revert_contract_IERC4626(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_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_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\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    }\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_int256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        let _1 := slt(y, 0)\n        if or(and(iszero(_1), sgt(diff, x)), and(_1, slt(diff, x))) { panic_error_0x11() }\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 abi_decode_uint40(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptr(headStart, dataEnd) -> value0\n    {\n        let _1 := slt(sub(dataEnd, headStart), 384)\n        if _1 { revert(0, 0) }\n        _1 := 0\n        let value := allocate_memory_1999()\n        let value_1 := 0\n        value_1 := calldataload(headStart)\n        mstore(value, value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 32))\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 64))\n        mstore(add(value, 64), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 96))\n        mstore(add(value, 96), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(add(value, 128), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 160))\n        mstore(add(value, 160), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(value, 192), value_7)\n        let value_8 := 0\n        value_8 := calldataload(add(headStart, 224))\n        mstore(add(value, 224), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(headStart, 256))\n        mstore(add(value, 256), value_9)\n        let value_10 := 0\n        value_10 := calldataload(add(headStart, 288))\n        mstore(add(value, 288), value_10)\n        mstore(add(value, 320), abi_decode_uint40(add(headStart, 320)))\n        mstore(add(value, 352), abi_decode_uint40(add(headStart, 352)))\n        value0 := value\n    }\n    function checked_add_t_int256(x, y) -> sum\n    {\n        sum := add(x, y)\n        let _1 := slt(sum, y)\n        let _2 := slt(x, 0)\n        if or(and(iszero(_2), _1), and(_2, iszero(_1))) { panic_error_0x11() }\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        product := mul(x, y)\n        if iszero(or(iszero(x), eq(y, div(product, x)))) { panic_error_0x11() }\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function negate_t_int256(value) -> ret\n    {\n        if eq(value, shl(255, 1)) { panic_error_0x11() }\n        ret := sub(0, value)\n    }\n    function abi_encode_tuple_t_int256_t_int256__to_t_int256_t_int256__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_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_rational_1_by_1__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_bool_t_uint256__to_t_bool_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, iszero(iszero(value0)))\n        mstore(add(headStart, 32), value1)\n    }\n    function abi_encode_tuple_t_uint256_t_uint256_t_bool__to_t_uint256_t_uint256_t_bool__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), iszero(iszero(value2)))\n    }\n    function abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__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_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 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_address_t_uint256__to_t_address_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_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_int256__to_t_uint256_t_uint256_t_uint256_t_int256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint8_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, 0xff))) { revert(0, 0) }\n        value0 := value\n    }\n    function checked_exp_helper(_base, exponent, max) -> power, base\n    {\n        power := 1\n        base := _base\n        for { } gt(exponent, 1) { }\n        {\n            if gt(base, div(max, base)) { panic_error_0x11() }\n            if and(exponent, 1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(1, exponent)\n        }\n    }\n    function checked_exp_unsigned(base, exponent) -> power\n    {\n        if iszero(exponent)\n        {\n            power := 1\n            leave\n        }\n        if iszero(base)\n        {\n            power := 0\n            leave\n        }\n        switch base\n        case 1 {\n            power := 1\n            leave\n        }\n        case 2 {\n            if gt(exponent, 255) { panic_error_0x11() }\n            power := shl(exponent, 1)\n            let _1 := 0\n            _1 := 0\n            leave\n        }\n        if or(and(lt(base, 11), lt(exponent, 78)), and(lt(base, 307), lt(exponent, 32)))\n        {\n            power := exp(base, exponent)\n            let _2 := 0\n            _2 := 0\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent, not(0))\n        if gt(power_1, div(not(0), base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_exp_t_uint256_t_uint8(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, and(exponent, 0xff))\n    }\n    function abi_decode_tuple_t_bytes32_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_rational_16_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 abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_int256_t_address_t_uint256__to_t_uint256_t_uint256_t_uint256_t_int256_t_address_t_uint256__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 160), value5)\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__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(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_contract$_IEToken_$14336t_contract$_IEToken_$14336_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_IERC4626(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_rational_32_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 checked_sub_t_uint40(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffffff), and(y, 0xffffffffff))\n        if gt(diff, 0xffffffffff) { panic_error_0x11() }\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n}","id":125,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"10959":[{"length":32,"start":752},{"length":32,"start":2288},{"length":32,"start":3465},{"length":32,"start":5177},{"length":32,"start":6094},{"length":32,"start":6259},{"length":32,"start":6724},{"length":32,"start":12885}],"11148":[{"length":32,"start":952},{"length":32,"start":1014},{"length":32,"start":3223},{"length":32,"start":5298},{"length":32,"start":5531},{"length":32,"start":6623},{"length":32,"start":6677},{"length":32,"start":6832},{"length":32,"start":7724},{"length":32,"start":8091},{"length":32,"start":8267},{"length":32,"start":8436},{"length":32,"start":10632},{"length":32,"start":11831},{"length":32,"start":11890},{"length":32,"start":11934}],"11152":[{"length":32,"start":1051},{"length":32,"start":1139},{"length":32,"start":5703},{"length":32,"start":5936},{"length":32,"start":6518},{"length":32,"start":6572},{"length":32,"start":7004},{"length":32,"start":7919},{"length":32,"start":8646},{"length":32,"start":8812},{"length":32,"start":10860},{"length":32,"start":12020},{"length":32,"start":12079},{"length":32,"start":12123}],"23450":[{"length":32,"start":9283},{"length":32,"start":9324},{"length":32,"start":9729}]},"linkReferences":{},"object":"6080604052600436106101fc575f3560e01c806376185ff111610113578063ac860f741161009d578063e5a6b10f1161006d578063e5a6b10f146105e7578063e823584a146105fb578063ee1f9a6a1461060f578063f39a4bc51461062e578063f79ac18314610642575f5ffd5b8063ac860f741461054d578063ad3cb1cc1461056c578063d336078c146105a9578063d5c6c166146105c8575f5ffd5b80638129fc1c116100e35780638129fc1c146104bf57806381ced71f146104d357806397a146c0146104f2578063a0ce58b814610511578063a7f8a5e214610530575f5ffd5b806376185ff1146104465780637b83037b146104655780637bb62319146104975780637d919a97146104ab575f5ffd5b80634d15eb031161019457806350093f041161016457806350093f041461036357806352d1902d14610382578063536c9a4314610396578063536ebbfc146103aa5780635e445859146103dc575f5ffd5b80634d15eb03146102e25780634eb978a4146103285780634f1ef2861461033c5780634fe0bd1e1461034f575f5ffd5b80631dda2899116101cf5780631dda28991461028757806326ccbd22146102a65780632d8f892a146102ba5780634863c8b0146102ce575f5ffd5b806301ffc9a7146102005780631388856514610234578063194448e5146102525780631a548a2714610273575b5f5ffd5b34801561020b575f5ffd5b5061021f61021a3660046134ab565b610661565b60405190151581526020015b60405180910390f35b34801561023f575f5ffd5b506065545b60405190815260200161022b565b34801561025d575f5ffd5b5061027161026c3660046134f3565b61068c565b005b34801561027e575f5ffd5b50606454610244565b348015610292575f5ffd5b506102716102a1366004613541565b6108e5565b3480156102b1575f5ffd5b506102446109c0565b3480156102c5575f5ffd5b506102446109d6565b3480156102d9575f5ffd5b50610244610a0c565b3480156102ed575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b03909116815260200161022b565b348015610333575f5ffd5b50610271610a2d565b61027161034a3660046135ef565b610b62565b34801561035a575f5ffd5b50610244610b81565b34801561036e575f5ffd5b5061027161037d366004613696565b610b9f565b34801561038d575f5ffd5b50610244610d4b565b3480156103a1575f5ffd5b50610244610d67565b3480156103b5575f5ffd5b507f0000000000000000000000000000000000000000000000000000000000000000610310565b3480156103e7575f5ffd5b50604080516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811682527f00000000000000000000000000000000000000000000000000000000000000001660208201520161022b565b348015610451575f5ffd5b506102716104603660046136b9565b610d7e565b348015610470575f5ffd5b507f0000000000000000000000000000000000000000000000000000000000000000610310565b3480156104a2575f5ffd5b50610244610e04565b3480156104b6575f5ffd5b50603254610244565b3480156104ca575f5ffd5b50610271610e34565b3480156104de575f5ffd5b506102716104ed3660046136d4565b610f2b565b3480156104fd575f5ffd5b5061027161050c3660046136eb565b610f91565b34801561051c575f5ffd5b5061024461052b36600461370b565b6110f4565b34801561053b575f5ffd5b506066546001600160a01b0316610310565b348015610558575f5ffd5b506102716105673660046136d4565b611208565b348015610577575f5ffd5b5061059c604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161022b919061372e565b3480156105b4575f5ffd5b506102446105c33660046136d4565b61138e565b3480156105d3575f5ffd5b506102716105e2366004613763565b61142e565b3480156105f2575f5ffd5b506103106117cb565b348015610606575f5ffd5b5061024461184c565b34801561061a575f5ffd5b50610271610629366004613798565b611868565b348015610639575f5ffd5b50610244611936565b34801561064d575f5ffd5b5061027161065c3660046136b9565b611a39565b5f61066b82611bf0565b8061068657506001600160e01b0319821663f7e4b01b60e01b145b92915050565b5f5f6106966117cb565b90506001600160a01b038416158061071e5750806001600160a01b0316846001600160a01b03166338d52e0f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106ef573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061071391906137ee565b6001600160a01b0316145b61073b57604051638959269160e01b815260040160405180910390fd5b5f61074e6066546001600160a01b031690565b90505f6001600160a01b03821615610863576040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156107a4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107c89190613809565b905080156108615785156107e9576107e08382611c25565b95509150610861565b604051635d043b2960e11b815260048101829052306024820181905260448201526001600160a01b0384169063ba087652906064016020604051808303815f875af115801561083a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061085e9190613809565b91505b505b606680546001600160a01b0319166001600160a01b0388161790556108946032548261088f9190613834565b611d68565b5f60325560405184151581526001600160a01b0380881691908416907f243f9479bbdaf9f3395e726975293ee3724f3819f4322a018c98afb9de70a1e09060200160405180910390a3505050505050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461092e5760405163799e780f60e01b815260040160405180910390fd5b8160a0013560645f8282546109439190613853565b909155505f905061096061095b60a085013584613834565b611dcd565b905080156109955761097f61097a3685900385018561387f565b611e20565b61099081855f866040013511611f7d565b6109a7565b6109a761097a3685900385018561387f565b6109ba846109b58385613853565b6122fc565b50505050565b5f6065546064546109d19190613927565b905090565b6066545f90600160a01b900463ffffffff1615610a06576066546109d190600160a01b900463ffffffff166123b5565b505f1990565b6066545f906109d190655af3107a400090600160e01b900461ffff1661394e565b5f610a406066546001600160a01b031690565b90506001600160a01b038116610a6957604051638959269160e01b815260040160405180910390fd5b6040516370a0823160e01b81523060048201525f906001600160a01b038316906307a2d13a9082906370a0823190602401602060405180830381865afa158015610ab5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ad99190613809565b6040518263ffffffff1660e01b8152600401610af791815260200190565b602060405180830381865afa158015610b12573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b369190613809565b90505f60325482610b479190613834565b90508015610b5d576032829055610b5d81611d68565b505050565b610b6a612438565b610b73826124de565b610b7d82826124e7565b5050565b5f610b92610b8d610a0c565b6125a3565b6065546109d19190613834565b5f610bb8610bb3655af3107a400085613979565b6125c4565b9050670de0b6b3a76400008311158015610be4575082610be2655af3107a400061ffff841661394e565b145b8390610c0f576040516346c20ab760e01b8152600401610c0691815260200190565b60405180910390fd5b505f610c1a846125a3565b905082158015610c2b575080606554125b15610c6757606554610c3c90613998565b610c4582613998565b60405163287223f960e01b815260048101929092526024820152604401610c06565b5f816065541215610cc65781606554610c7f90613998565b610c899190613927565b60658390559050610cc681307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161515611f7d565b6066547f5b2441044bd7b1320018e9cf93f7a9a26d14db096298500121b8370aff51133d90610d0790655af3107a400090600160e01b900461ffff1661394e565b6040805191825260208201889052810183905260600160405180910390a150506066805461ffff909216600160e01b0261ffff60e01b199092169190911790555050565b5f610d546125f6565b505f516020613b3c5f395f51905f525b90565b5f5f6065541215610d7757505f90565b5060655490565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610dc75760405163799e780f60e01b815260040160405180910390fd5b8060a0013560645f828254610ddc9190613853565b90915550610def905060a082013561263f565b610e0161097a3683900383018361387f565b50565b6066545f90600160c01b900463ffffffff1615610a06576066546109d190600160c01b900463ffffffff166123b5565b5f610e3d612658565b805490915060ff600160401b820416159067ffffffffffffffff165f81158015610e645750825b90505f8267ffffffffffffffff166001148015610e805750303b155b905081158015610e8e575080155b15610eac5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ed657845460ff60401b1916600160401b1785555b610ede612680565b8315610f2457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b610f348161263f565b610f53333083610f426117cb565b6001600160a01b0316929190612698565b6040805160018152602081018390527fd60d524f1cae273480bb0a4ddfb992b6ac0b61c8e12ffbe2e4e31463f9e9019991015b60405180910390a150565b5f198214611043577f1366686786a1d0cde83e2e2241a477fcf29662506a51f052f72e47b15729bf0b610fc26109d6565b60408051918252602082018590525f9082015260600160405180910390a1610fe9826126ce565b6066805463ffffffff60a01b1916600160a01b63ffffffff93841681029190911791829055849261101e9291909104166123b5565b14829061104157604051634a8fd66f60e01b8152600401610c0691815260200190565b505b5f198114610b7d577f1366686786a1d0cde83e2e2241a477fcf29662506a51f052f72e47b15729bf0b611074610e04565b604080519182526020820184905260019082015260600160405180910390a161109c816126ce565b6066805463ffffffff60c01b1916600160c01b63ffffffff9384168102919091179182905583926110d19291909104166123b5565b148190610b5d57604051634a8fd66f60e01b8152600401610c0691815260200190565b5f816001600160a01b03811661112957604051638eaba6f960e01b81526001600160a01b039091166004820152602401610c06565b505f61113d6066546001600160a01b031690565b6001600160a01b03161461115357611153610a2d565b5f198303611175575f6065541361116b57505f610686565b60655492506111a7565b6065548390808213156111a45760405163241b522760e11b815260048101929092526024820152604401610c06565b50505b8260655f8282546111b89190613834565b909155506111c8905082846122fc565b604080515f8152602081018590527fd60d524f1cae273480bb0a4ddfb992b6ac0b61c8e12ffbe2e4e31463f9e90199910160405180910390a15090919050565b5f61121b6066546001600160a01b031690565b90506001600160a01b03811661124457604051638959269160e01b815260040160405180910390fd5b5f61124d612753565b90505f19830361125f5780925061128e565b82818082111561128b5760405163531309fb60e11b815260048101929092526024820152604401610c06565b50505b8260325f82825461129f91906139b2565b909155506112ad90506117cb565b60405163095ea7b360e01b81526001600160a01b03848116600483015260248201869052919091169063095ea7b3906044016020604051808303815f875af11580156112fb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061131f91906139c5565b50604051636e553f6560e01b8152600481018490523060248201526001600160a01b03831690636e553f65906044016020604051808303815f875af115801561136a573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ba9190613809565b5f611397610a2d565b5f6113aa6066546001600160a01b031690565b90505f19830361141d5760405163ce96cb7760e01b81523060048201526001600160a01b0382169063ce96cb7790602401602060405180830381865afa1580156113f6573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141a9190613809565b92505b61142781846127c4565b5090919050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146114775760405163799e780f60e01b815260040160405180910390fd5b61148960a08084013590830135613853565b60645f82825461149991906139b2565b9091555050604082013515611587576001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663a227dc41833560408501356114f56114f03688900388018861387f565b612877565b61150c6115073689900389018961387f565b6128bf565b61151e6115073689900389018961387f565b6115289190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526084015f604051808303815f87803b158015611570575f5ffd5b505af1158015611582573d5f5f3e3d5ffd5b505050505b604081013515611633576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016634ffcda8c823560408401356115d96114f03687900387018761387f565b6040516001600160e01b031960e086901b1681526004810193909352602483019190915260448201526064015f604051808303815f87803b15801561161c575f5ffd5b505af115801561162e573d5f5f3e3d5ffd5b505050505b60608201351561171c576001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663a227dc418335606085013561168a6116853688900388018861387f565b612902565b6116a161169c3689900389018961387f565b612943565b6116b361169c3689900389018961387f565b6116bd9190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526084015f604051808303815f87803b158015611705575f5ffd5b505af1158015611717573d5f5f3e3d5ffd5b505050505b606081013515610b7d576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016634ffcda8c8235606084013561176e6116853687900387018761387f565b6040516001600160e01b031960e086901b1681526004810193909352602483019190915260448201526064015f604051808303815f87803b1580156117b1575f5ffd5b505af11580156117c3573d5f5f3e3d5ffd5b505050505050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611828573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d191906137ee565b5f5f6065541215611863576065546109d190613998565b505f90565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146118b15760405163799e780f60e01b815260040160405180910390fd5b8460a0013560645f8282546118c69190613853565b909155505f90506118de61095b60a088013587613834565b90508015611916576119006118f83688900388018861387f565b85858561297c565b61191181835f896040013511611f7d565b611928565b6119286118f83688900388018861387f565b6117c3826109b58388613853565b5f8061194a6066546001600160a01b031690565b6001600160a01b03161461196057611960610a2d565b611968610b81565b905080158015906119a157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b156119d3576119d0817f0000000000000000000000000000000000000000000000000000000000000000612b49565b90505b8015801590611a0a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b15610d64576109d1817f0000000000000000000000000000000000000000000000000000000000000000612b49565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611a825760405163799e780f60e01b815260040160405180910390fd5b8060a0013560645f828254611a9791906139b2565b9091555050604081013515611b48576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016634ffcda8c82356040840135611aee6114f03687900387018761387f565b6040516001600160e01b031960e086901b1681526004810193909352602483019190915260448201526064015f604051808303815f87803b158015611b31575f5ffd5b505af1158015611b43573d5f5f3e3d5ffd5b505050505b606081013515610e01576001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016634ffcda8c82356060840135611b9a6116853687900387018761387f565b6040516001600160e01b031960e086901b1681526004810193909352602483019190915260448201526064015b5f604051808303815f87803b158015611bde575f5ffd5b505af1158015610f24573d5f5f3e3d5ffd5b5f6001600160e01b031982166301ffc9a760e01b148061068657506001600160e01b03198216634d15eb0360e01b1492915050565b604051636c82bbbf60e11b81523060048201525f9081906001600160a01b0385169063d905777e90602401602060405180830381865afa925050508015611c89575060408051601f3d908101601f19168201909252611c8691810190613809565b60015b15611ca05783811015611c9e57600191508093505b505b604051635d043b2960e11b815260048101849052306024820181905260448201526001600160a01b0385169063ba087652906064016020604051808303815f875af1925050508015611d0f575060408051601f3d908101601f19168201909252611d0c91810190613809565b60015b611d5e57836001600160a01b03167f25bce30047860a48c9d8830dbf31873be5434f4d28f14a5808a4ea8e35d0829684604051611d4e91815260200190565b60405180910390a2506001611d61565b91505b9250929050565b5f8112611d7d57611d788161263f565b611dc4565b5f611d8a61095b83613998565b90508015611d9783613998565b829091611dc057604051630fc2324b60e11b815260048101929092526024820152604401610c06565b5050505b610e0181612d5e565b5f5f82606554611ddd9190613834565b90505f611deb610b8d610a0c565b9050808212611dff5750606555505f919050565b606581905580611e0e83613998565b611e189190613927565b949350505050565b604081015115611ee3577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a227dc41825f01518360400151611e6b85612877565b611e74866128bf565b866101000151611e849190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526084015f604051808303815f87803b158015611ecc575f5ffd5b505af1158015611ede573d5f5f3e3d5ffd5b505050505b606081015115610e01577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a227dc41825f01518360600151611f2e85612902565b611f3786612943565b866101200151611f479190613834565b6040516001600160e01b031960e087901b1681526004810194909452602484019290925260448301526064820152608401611bc7565b8281156121a1576040516333481fc960e01b81523060048201525f907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906333481fc990602401602060405180830381865afa158015611fe8573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061200c9190613809565b90506120166109d6565b61202086836139b2565b116120bc576040516330f7e76b60e21b8152600481018690526001600160a01b0385811660248301527f0000000000000000000000000000000000000000000000000000000000000000169063c3df9dac906044016020604051808303815f875af1158015612091573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120b59190613809565b915061219f565b6120c46109d6565b81101561219f575f6120d46109d6565b6120de87846139b2565b6120e89190613853565b90506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663c3df9dac6121238389613853565b6040516001600160e01b031960e084901b16815260048101919091526001600160a01b03881660248201526044016020604051808303815f875af115801561216d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121919190613809565b61219b90826139b2565b9250505b505b80156109ba576121af610e04565b6040516333481fc960e01b815230600482015282907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906333481fc990602401602060405180830381865afa158015612213573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122379190613809565b61224191906139b2565b116122d9576040516330f7e76b60e21b8152600481018290526001600160a01b0384811660248301527f0000000000000000000000000000000000000000000000000000000000000000169063c3df9dac906044016020604051808303815f875af11580156122b2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122d69190613809565b90505b808015610f245760405163093f664360e01b8152600401610c0691815260200190565b816001600160a01b03811661233057604051636427f27360e11b81526001600160a01b039091166004820152602401610c06565b50805f0361233c575050565b5f612345612753565b905081811015612388575f6123626066546001600160a01b031690565b90506001600160a01b0381161561238657612386816123818486613853565b6127c4565b505b6001600160a01b0383163014610b5d57610b5d83836123a56117cb565b6001600160a01b03169190612d8e565b5f6123be6117cb565b6001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123f9573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061241d91906139e0565b61242890600a613ae3565b6106869063ffffffff841661394e565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806124be57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166124b25f516020613b3c5f395f51905f52546001600160a01b031690565b6001600160a01b031614155b156124dc5760405163703e46dd60e11b815260040160405180910390fd5b565b610e0181612dc3565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015612541575060408051601f3d908101601f1916820190925261253e91810190613809565b60015b61256957604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610c06565b5f516020613b3c5f395f51905f52811461259957604051632a87526960e21b815260048101829052602401610c06565b610b5d8383612fad565b6064545f906125bb9083670de0b6b3a7640000613002565b61068690613998565b5f61ffff8211156125f2576040516306dfcc6560e41b81526010600482015260248101839052604401610c06565b5090565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146124dc5760405163703e46dd60e11b815260040160405180910390fd5b8060655f8282546126509190613927565b909155505050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610686565b6126886130b3565b6126906130d8565b6124dc6130e8565b6126a684848484600161312e565b6109ba57604051635274afe760e01b81526001600160a01b0385166004820152602401610c06565b5f6106866126da6117cb565b6001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015612715573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061273991906139e0565b61274490600a613ae3565b61274e9084613979565b61319b565b5f61275c6117cb565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa1580156127a0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109d19190613809565b604051632d182be560e21b815260048101829052306024820181905260448201526001600160a01b0383169063b460af94906064016020604051808303815f875af1158015612815573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128399190613809565b5060325481111561285d576128556032548261088f9190613853565b5f6032555050565b8060325f82825461286e9190613853565b90915550505050565b5f610686670de0b6b3a764000061288d846131cb565b64ffffffffff1684604001516128a3919061394e565b6301e133808561010001516128b8919061394e565b9190613002565b5f6128c9826131cb565b64ffffffffff1682610140015164ffffffffff16426128e89190613853565b8361010001516128f8919061394e565b6106869190613979565b5f610686670de0b6b3a7640000612918846131cb565b64ffffffffff16846060015161292e919061394e565b6301e133808561012001516128b8919061394e565b5f61294d826131cb565b64ffffffffff1682610140015164ffffffffff164261296c9190613853565b8361012001516128f8919061394e565b604084015115612a60577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633ad2820b855f015186604001516129c788612877565b6129d0896128bf565b888a61010001516129e19190613853565b6129eb9190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526001600160a01b038416608482015260a4810186905260c4015f604051808303815f87803b158015612a49575f5ffd5b505af1158015612a5b573d5f5f3e3d5ffd5b505050505b6060840151156109ba577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633ad2820b855f01518660600151612aab88612902565b612ab489612943565b878a6101200151612ac59190613853565b612acf9190613834565b6040516001600160e01b031960e087901b16815260048101949094526024840192909252604483015260648201526001600160a01b038416608482015260a4810185905260c4015f604051808303815f87803b158015612b2d575f5ffd5b505af1158015612b3f573d5f5f3e3d5ffd5b5050505050505050565b6040516333481fc960e01b81523060048201525f9081906001600160a01b038416906333481fc990602401602060405180830381865afa158015612b8f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bb39190613809565b9050805f03612bc55783915050610686565b5f612bd085836131e2565b90508060655f828254612be39190613834565b90915550612bf3905030826122fc565b80612bfc6117cb565b604051636eb1769f60e11b81523060048201526001600160a01b038781166024830152919091169063dd62ed3e90604401602060405180830381865afa158015612c48573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c6c9190613809565b1015612cee57612c7a6117cb565b60405163095ea7b360e01b81526001600160a01b03868116600483015260248201859052919091169063095ea7b3906044016020604051808303815f875af1158015612cc8573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cec91906139c5565b505b60405163918344d360e01b8152600481018290523060248201526001600160a01b0385169063918344d3906044015f604051808303815f87803b158015612d33575f5ffd5b505af1158015612d45573d5f5f3e3d5ffd5b505050508085612d559190613853565b95945050505050565b6040518181527f731c439c5bae15be1344eec709967e046b4f7d3f7e37abeffc5247f448fa18bf90602001610f86565b612d9b83838360016131f1565b610b5d57604051635274afe760e01b81526001600160a01b0384166004820152602401610c06565b612dcc81613253565b5f8190505f5f826001600160a01b0316635e4458596040518163ffffffff1660e01b81526004016040805180830381865afa158015612e0d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e319190613af1565b915091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161480612e9c57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316155b7f0000000000000000000000000000000000000000000000000000000000000000839091612ef0576040516313afea8960e21b81526001600160a01b03928316600482015291166024820152604401610c06565b50507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161480612f5957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316155b7f00000000000000000000000000000000000000000000000000000000000000008290916117c3576040516313afea8960e21b81526001600160a01b03928316600482015291166024820152604401610c06565b612fb682613304565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115612ffa57610b5d8282613367565b610b7d613407565b5f5f5f61300f8686613426565b91509150815f036130335783818161302957613029613965565b04925050506130ac565b81841161304a5761304a6003851502601118613442565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150505b9392505050565b6130bb613453565b6124dc57604051631afcd79f60e31b815260040160405180910390fd5b6130e06130b3565b6124dc61346c565b6130f06130b3565b604080516080810182525f8082526020820181905291810191909152612710606090910152606680546001600160f01b03191661027160e41b179055565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f5114831661318a57838315161561317e573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b5f63ffffffff8211156125f2576040516306dfcc6560e41b81526020600482015260248101839052604401610c06565b5f8161014001518261016001516106869190613b1e565b5f8282188284100282186130ac565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f5114831661324757838315161561323b573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132b9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132dd91906137ee565b6001600160a01b031614610e015760405163d2b3d33f60e01b815260040160405180910390fd5b806001600160a01b03163b5f0361333957604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610c06565b5f516020613b3c5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f6133748484613474565b905080801561339557505f3d118061339557505f846001600160a01b03163b115b156133aa576133a2613487565b915050610686565b80156133d457604051639996b31560e01b81526001600160a01b0385166004820152602401610c06565b3d156133e7576133e26134a0565b613400565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b34156124dc5760405163b398979f60e01b815260040160405180910390fd5b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f61345c612658565b54600160401b900460ff16919050565b6124dc6130b3565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f602082840312156134bb575f5ffd5b81356001600160e01b0319811681146130ac575f5ffd5b6001600160a01b0381168114610e01575f5ffd5b8015158114610e01575f5ffd5b5f5f60408385031215613504575f5ffd5b823561350f816134d2565b9150602083013561351f816134e6565b809150509250929050565b5f610180828403121561353b575f5ffd5b50919050565b5f5f5f6101c08486031215613554575f5ffd5b833561355f816134d2565b925061356e856020860161352a565b929592945050506101a0919091013590565b634e487b7160e01b5f52604160045260245ffd5b604051610180810167ffffffffffffffff811182821017156135b8576135b8613580565b60405290565b604051601f8201601f1916810167ffffffffffffffff811182821017156135e7576135e7613580565b604052919050565b5f5f60408385031215613600575f5ffd5b823561360b816134d2565b9150602083013567ffffffffffffffff811115613626575f5ffd5b8301601f81018513613636575f5ffd5b803567ffffffffffffffff81111561365057613650613580565b613663601f8201601f19166020016135be565b818152866020838501011115613677575f5ffd5b816020840160208301375f602083830101528093505050509250929050565b5f5f604083850312156136a7575f5ffd5b82359150602083013561351f816134e6565b5f61018082840312156136ca575f5ffd5b6130ac838361352a565b5f602082840312156136e4575f5ffd5b5035919050565b5f5f604083850312156136fc575f5ffd5b50508035926020909101359150565b5f5f6040838503121561371c575f5ffd5b82359150602083013561351f816134d2565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f5f6103008385031215613775575f5ffd5b61377f848461352a565b915061378f84610180850161352a565b90509250929050565b5f5f5f5f5f61020086880312156137ad575f5ffd5b6137b7878761352a565b945061018086013593506101a086013592506101c086013591506101e08601356137e0816134d2565b809150509295509295909350565b5f602082840312156137fe575f5ffd5b81516130ac816134d2565b5f60208284031215613819575f5ffd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b8181035f83128015838313168383128216171561340057613400613820565b8181038181111561068657610686613820565b803564ffffffffff8116811461387a575f5ffd5b919050565b5f610180828403128015613891575f5ffd5b5061389a613594565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e08084013590820152610100808401359082015261012080840135908201526139076101408401613866565b61014082015261391a6101608401613866565b6101608201529392505050565b8082018281125f83128015821682158216171561394657613946613820565b505092915050565b808202811582820484141761068657610686613820565b634e487b7160e01b5f52601260045260245ffd5b5f8261399357634e487b7160e01b5f52601260045260245ffd5b500490565b5f600160ff1b82016139ac576139ac613820565b505f0390565b8082018082111561068657610686613820565b5f602082840312156139d5575f5ffd5b81516130ac816134e6565b5f602082840312156139f0575f5ffd5b815160ff811681146130ac575f5ffd5b6001815b6001841115613a3b57808504811115613a1f57613a1f613820565b6001841615613a2d57908102905b60019390931c928002613a04565b935093915050565b5f82613a5157506001610686565b81613a5d57505f610686565b8160018114613a735760028114613a7d57613a99565b6001915050610686565b60ff841115613a8e57613a8e613820565b50506001821b610686565b5060208310610133831016604e8410600b8410161715613abc575081810a610686565b613ac85f198484613a00565b805f1904821115613adb57613adb613820565b029392505050565b5f6130ac60ff841683613a43565b5f5f60408385031215613b02575f5ffd5b8251613b0d816134d2565b602084015190925061351f816134d2565b64ffffffffff82811682821603908111156106865761068661382056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca264697066735822122001467c3db5b56ef9762e1951fb6ea7a48d6eb0874dd5c1adc1581c654dd75ce364736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1FC JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x76185FF1 GT PUSH2 0x113 JUMPI DUP1 PUSH4 0xAC860F74 GT PUSH2 0x9D JUMPI DUP1 PUSH4 0xE5A6B10F GT PUSH2 0x6D JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x5E7 JUMPI DUP1 PUSH4 0xE823584A EQ PUSH2 0x5FB JUMPI DUP1 PUSH4 0xEE1F9A6A EQ PUSH2 0x60F JUMPI DUP1 PUSH4 0xF39A4BC5 EQ PUSH2 0x62E JUMPI DUP1 PUSH4 0xF79AC183 EQ PUSH2 0x642 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAC860F74 EQ PUSH2 0x54D JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x56C JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0x5A9 JUMPI DUP1 PUSH4 0xD5C6C166 EQ PUSH2 0x5C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8129FC1C GT PUSH2 0xE3 JUMPI DUP1 PUSH4 0x8129FC1C EQ PUSH2 0x4BF JUMPI DUP1 PUSH4 0x81CED71F EQ PUSH2 0x4D3 JUMPI DUP1 PUSH4 0x97A146C0 EQ PUSH2 0x4F2 JUMPI DUP1 PUSH4 0xA0CE58B8 EQ PUSH2 0x511 JUMPI DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0x530 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x76185FF1 EQ PUSH2 0x446 JUMPI DUP1 PUSH4 0x7B83037B EQ PUSH2 0x465 JUMPI DUP1 PUSH4 0x7BB62319 EQ PUSH2 0x497 JUMPI DUP1 PUSH4 0x7D919A97 EQ PUSH2 0x4AB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D15EB03 GT PUSH2 0x194 JUMPI DUP1 PUSH4 0x50093F04 GT PUSH2 0x164 JUMPI DUP1 PUSH4 0x50093F04 EQ PUSH2 0x363 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x382 JUMPI DUP1 PUSH4 0x536C9A43 EQ PUSH2 0x396 JUMPI DUP1 PUSH4 0x536EBBFC EQ PUSH2 0x3AA JUMPI DUP1 PUSH4 0x5E445859 EQ PUSH2 0x3DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x2E2 JUMPI DUP1 PUSH4 0x4EB978A4 EQ PUSH2 0x328 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x33C JUMPI DUP1 PUSH4 0x4FE0BD1E EQ PUSH2 0x34F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1DDA2899 GT PUSH2 0x1CF JUMPI DUP1 PUSH4 0x1DDA2899 EQ PUSH2 0x287 JUMPI DUP1 PUSH4 0x26CCBD22 EQ PUSH2 0x2A6 JUMPI DUP1 PUSH4 0x2D8F892A EQ PUSH2 0x2BA JUMPI DUP1 PUSH4 0x4863C8B0 EQ PUSH2 0x2CE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x200 JUMPI DUP1 PUSH4 0x13888565 EQ PUSH2 0x234 JUMPI DUP1 PUSH4 0x194448E5 EQ PUSH2 0x252 JUMPI DUP1 PUSH4 0x1A548A27 EQ PUSH2 0x273 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x20B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x21F PUSH2 0x21A CALLDATASIZE PUSH1 0x4 PUSH2 0x34AB JUMP JUMPDEST PUSH2 0x661 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 0x23F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x65 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x22B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x26C CALLDATASIZE PUSH1 0x4 PUSH2 0x34F3 JUMP JUMPDEST PUSH2 0x68C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x27E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x64 SLOAD PUSH2 0x244 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x292 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x2A1 CALLDATASIZE PUSH1 0x4 PUSH2 0x3541 JUMP JUMPDEST PUSH2 0x8E5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x9C0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x9D6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xA0C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x22B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x333 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0xA2D JUMP JUMPDEST PUSH2 0x271 PUSH2 0x34A CALLDATASIZE PUSH1 0x4 PUSH2 0x35EF JUMP JUMPDEST PUSH2 0xB62 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x35A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xB81 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x36E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x37D CALLDATASIZE PUSH1 0x4 PUSH2 0x3696 JUMP JUMPDEST PUSH2 0xB9F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x38D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xD4B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xD67 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x310 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3E7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND DUP3 MSTORE PUSH32 0x0 AND PUSH1 0x20 DUP3 ADD MSTORE ADD PUSH2 0x22B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x451 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x460 CALLDATASIZE PUSH1 0x4 PUSH2 0x36B9 JUMP JUMPDEST PUSH2 0xD7E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x470 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x310 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0xE04 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x32 SLOAD PUSH2 0x244 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4CA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0xE34 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4DE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x4ED CALLDATASIZE PUSH1 0x4 PUSH2 0x36D4 JUMP JUMPDEST PUSH2 0xF2B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x50C CALLDATASIZE PUSH1 0x4 PUSH2 0x36EB JUMP JUMPDEST PUSH2 0xF91 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x51C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x52B CALLDATASIZE PUSH1 0x4 PUSH2 0x370B JUMP JUMPDEST PUSH2 0x10F4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x310 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x558 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x567 CALLDATASIZE PUSH1 0x4 PUSH2 0x36D4 JUMP JUMPDEST PUSH2 0x1208 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x577 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x59C PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x22B SWAP2 SWAP1 PUSH2 0x372E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x5C3 CALLDATASIZE PUSH1 0x4 PUSH2 0x36D4 JUMP JUMPDEST PUSH2 0x138E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x5E2 CALLDATASIZE PUSH1 0x4 PUSH2 0x3763 JUMP JUMPDEST PUSH2 0x142E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x310 PUSH2 0x17CB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x606 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x184C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x61A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x629 CALLDATASIZE PUSH1 0x4 PUSH2 0x3798 JUMP JUMPDEST PUSH2 0x1868 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x639 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x244 PUSH2 0x1936 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x64D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x271 PUSH2 0x65C CALLDATASIZE PUSH1 0x4 PUSH2 0x36B9 JUMP JUMPDEST PUSH2 0x1A39 JUMP JUMPDEST PUSH0 PUSH2 0x66B DUP3 PUSH2 0x1BF0 JUMP JUMPDEST DUP1 PUSH2 0x686 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xF7E4B01B PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x696 PUSH2 0x17CB JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO DUP1 PUSH2 0x71E JUMPI POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x38D52E0F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x6EF 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 0x713 SWAP2 SWAP1 PUSH2 0x37EE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST PUSH2 0x73B JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x74E PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND ISZERO PUSH2 0x863 JUMPI 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 DUP5 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x7A4 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 0x7C8 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x861 JUMPI DUP6 ISZERO PUSH2 0x7E9 JUMPI PUSH2 0x7E0 DUP4 DUP3 PUSH2 0x1C25 JUMP JUMPDEST SWAP6 POP SWAP2 POP PUSH2 0x861 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x83A 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 0x85E SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP2 POP JUMPDEST POP JUMPDEST PUSH1 0x66 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND OR SWAP1 SSTORE PUSH2 0x894 PUSH1 0x32 SLOAD DUP3 PUSH2 0x88F SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH2 0x1D68 JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE PUSH1 0x40 MLOAD DUP5 ISZERO ISZERO DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND SWAP2 SWAP1 DUP5 AND SWAP1 PUSH32 0x243F9479BBDAF9F3395E726975293EE3724F3819F4322A018C98AFB9DE70A1E0 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x92E JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0xA0 ADD CALLDATALOAD PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x943 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH0 SWAP1 POP PUSH2 0x960 PUSH2 0x95B PUSH1 0xA0 DUP6 ADD CALLDATALOAD DUP5 PUSH2 0x3834 JUMP JUMPDEST PUSH2 0x1DCD JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x995 JUMPI PUSH2 0x97F PUSH2 0x97A CALLDATASIZE DUP6 SWAP1 SUB DUP6 ADD DUP6 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x1E20 JUMP JUMPDEST PUSH2 0x990 DUP2 DUP6 PUSH0 DUP7 PUSH1 0x40 ADD CALLDATALOAD GT PUSH2 0x1F7D JUMP JUMPDEST PUSH2 0x9A7 JUMP JUMPDEST PUSH2 0x9A7 PUSH2 0x97A CALLDATASIZE DUP6 SWAP1 SUB DUP6 ADD DUP6 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x9BA DUP5 PUSH2 0x9B5 DUP4 DUP6 PUSH2 0x3853 JUMP JUMPDEST PUSH2 0x22FC JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x65 SLOAD PUSH1 0x64 SLOAD PUSH2 0x9D1 SWAP2 SWAP1 PUSH2 0x3927 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x66 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0xA06 JUMPI PUSH1 0x66 SLOAD PUSH2 0x9D1 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x23B5 JUMP JUMPDEST POP PUSH0 NOT SWAP1 JUMP JUMPDEST PUSH1 0x66 SLOAD PUSH0 SWAP1 PUSH2 0x9D1 SWAP1 PUSH6 0x5AF3107A4000 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x394E JUMP JUMPDEST PUSH0 PUSH2 0xA40 PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xA69 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT 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 DUP4 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xAB5 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 0xAD9 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAF7 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB12 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 0xB36 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x32 SLOAD DUP3 PUSH2 0xB47 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0xB5D JUMPI PUSH1 0x32 DUP3 SWAP1 SSTORE PUSH2 0xB5D DUP2 PUSH2 0x1D68 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xB6A PUSH2 0x2438 JUMP JUMPDEST PUSH2 0xB73 DUP3 PUSH2 0x24DE JUMP JUMPDEST PUSH2 0xB7D DUP3 DUP3 PUSH2 0x24E7 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0xB92 PUSH2 0xB8D PUSH2 0xA0C JUMP JUMPDEST PUSH2 0x25A3 JUMP JUMPDEST PUSH1 0x65 SLOAD PUSH2 0x9D1 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH0 PUSH2 0xBB8 PUSH2 0xBB3 PUSH6 0x5AF3107A4000 DUP6 PUSH2 0x3979 JUMP JUMPDEST PUSH2 0x25C4 JUMP JUMPDEST SWAP1 POP PUSH8 0xDE0B6B3A7640000 DUP4 GT ISZERO DUP1 ISZERO PUSH2 0xBE4 JUMPI POP DUP3 PUSH2 0xBE2 PUSH6 0x5AF3107A4000 PUSH2 0xFFFF DUP5 AND PUSH2 0x394E JUMP JUMPDEST EQ JUMPDEST DUP4 SWAP1 PUSH2 0xC0F JUMPI PUSH1 0x40 MLOAD PUSH4 0x46C20AB7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC06 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH0 PUSH2 0xC1A DUP5 PUSH2 0x25A3 JUMP JUMPDEST SWAP1 POP DUP3 ISZERO DUP1 ISZERO PUSH2 0xC2B JUMPI POP DUP1 PUSH1 0x65 SLOAD SLT JUMPDEST ISZERO PUSH2 0xC67 JUMPI PUSH1 0x65 SLOAD PUSH2 0xC3C SWAP1 PUSH2 0x3998 JUMP JUMPDEST PUSH2 0xC45 DUP3 PUSH2 0x3998 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x287223F9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x65 SLOAD SLT ISZERO PUSH2 0xCC6 JUMPI DUP2 PUSH1 0x65 SLOAD PUSH2 0xC7F SWAP1 PUSH2 0x3998 JUMP JUMPDEST PUSH2 0xC89 SWAP2 SWAP1 PUSH2 0x3927 JUMP JUMPDEST PUSH1 0x65 DUP4 SWAP1 SSTORE SWAP1 POP PUSH2 0xCC6 DUP2 ADDRESS PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO PUSH2 0x1F7D JUMP JUMPDEST PUSH1 0x66 SLOAD PUSH32 0x5B2441044BD7B1320018E9CF93F7A9A26D14DB096298500121B8370AFF51133D SWAP1 PUSH2 0xD07 SWAP1 PUSH6 0x5AF3107A4000 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH2 0xFFFF AND PUSH2 0x394E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP9 SWAP1 MSTORE DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP PUSH1 0x66 DUP1 SLOAD PUSH2 0xFFFF SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xE0 SHL MUL PUSH2 0xFFFF PUSH1 0xE0 SHL NOT SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD54 PUSH2 0x25F6 JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x3B3C PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x65 SLOAD SLT ISZERO PUSH2 0xD77 JUMPI POP PUSH0 SWAP1 JUMP JUMPDEST POP PUSH1 0x65 SLOAD SWAP1 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xDC7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xA0 ADD CALLDATALOAD PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xDDC SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xDEF SWAP1 POP PUSH1 0xA0 DUP3 ADD CALLDATALOAD PUSH2 0x263F JUMP JUMPDEST PUSH2 0xE01 PUSH2 0x97A CALLDATASIZE DUP4 SWAP1 SUB DUP4 ADD DUP4 PUSH2 0x387F JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x66 SLOAD PUSH0 SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND ISZERO PUSH2 0xA06 JUMPI PUSH1 0x66 SLOAD PUSH2 0x9D1 SWAP1 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH2 0x23B5 JUMP JUMPDEST PUSH0 PUSH2 0xE3D PUSH2 0x2658 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0xE64 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0xE80 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xE8E JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xEAC JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0xED6 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0xEDE PUSH2 0x2680 JUMP JUMPDEST DUP4 ISZERO PUSH2 0xF24 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH2 0xF34 DUP2 PUSH2 0x263F JUMP JUMPDEST PUSH2 0xF53 CALLER ADDRESS DUP4 PUSH2 0xF42 PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x2698 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP4 SWAP1 MSTORE PUSH32 0xD60D524F1CAE273480BB0A4DDFB992B6AC0B61C8E12FFBE2E4E31463F9E90199 SWAP2 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH0 NOT DUP3 EQ PUSH2 0x1043 JUMPI PUSH32 0x1366686786A1D0CDE83E2E2241A477FCF29662506A51F052F72E47B15729BF0B PUSH2 0xFC2 PUSH2 0x9D6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP6 SWAP1 MSTORE PUSH0 SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0xFE9 DUP3 PUSH2 0x26CE JUMP JUMPDEST PUSH1 0x66 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xA0 SHL NOT AND PUSH1 0x1 PUSH1 0xA0 SHL PUSH4 0xFFFFFFFF SWAP4 DUP5 AND DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP2 DUP3 SWAP1 SSTORE DUP5 SWAP3 PUSH2 0x101E SWAP3 SWAP2 SWAP1 SWAP2 DIV AND PUSH2 0x23B5 JUMP JUMPDEST EQ DUP3 SWAP1 PUSH2 0x1041 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A8FD66F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC06 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP JUMPDEST PUSH0 NOT DUP2 EQ PUSH2 0xB7D JUMPI PUSH32 0x1366686786A1D0CDE83E2E2241A477FCF29662506A51F052F72E47B15729BF0B PUSH2 0x1074 PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP5 SWAP1 MSTORE PUSH1 0x1 SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0x109C DUP2 PUSH2 0x26CE JUMP JUMPDEST PUSH1 0x66 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0xC0 SHL NOT AND PUSH1 0x1 PUSH1 0xC0 SHL PUSH4 0xFFFFFFFF SWAP4 DUP5 AND DUP2 MUL SWAP2 SWAP1 SWAP2 OR SWAP2 DUP3 SWAP1 SSTORE DUP4 SWAP3 PUSH2 0x10D1 SWAP3 SWAP2 SWAP1 SWAP2 DIV AND PUSH2 0x23B5 JUMP JUMPDEST EQ DUP2 SWAP1 PUSH2 0xB5D JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A8FD66F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC06 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1129 JUMPI PUSH1 0x40 MLOAD PUSH4 0x8EABA6F9 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 0xC06 JUMP JUMPDEST POP PUSH0 PUSH2 0x113D PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1153 JUMPI PUSH2 0x1153 PUSH2 0xA2D JUMP JUMPDEST PUSH0 NOT DUP4 SUB PUSH2 0x1175 JUMPI PUSH0 PUSH1 0x65 SLOAD SGT PUSH2 0x116B JUMPI POP PUSH0 PUSH2 0x686 JUMP JUMPDEST PUSH1 0x65 SLOAD SWAP3 POP PUSH2 0x11A7 JUMP JUMPDEST PUSH1 0x65 SLOAD DUP4 SWAP1 DUP1 DUP3 SGT ISZERO PUSH2 0x11A4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x241B5227 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x65 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x11B8 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x11C8 SWAP1 POP DUP3 DUP5 PUSH2 0x22FC JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP6 SWAP1 MSTORE PUSH32 0xD60D524F1CAE273480BB0A4DDFB992B6AC0B61C8E12FFBE2E4E31463F9E90199 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x121B PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x1244 JUMPI PUSH1 0x40 MLOAD PUSH4 0x89592691 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x124D PUSH2 0x2753 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x125F JUMPI DUP1 SWAP3 POP PUSH2 0x128E JUMP JUMPDEST DUP3 DUP2 DUP1 DUP3 GT ISZERO PUSH2 0x128B JUMPI PUSH1 0x40 MLOAD PUSH4 0x531309FB PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP POP JUMPDEST DUP3 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x129F SWAP2 SWAP1 PUSH2 0x39B2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x12AD SWAP1 POP PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x12FB 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 0x131F SWAP2 SWAP1 PUSH2 0x39C5 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x136A 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 0x9BA SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH0 PUSH2 0x1397 PUSH2 0xA2D JUMP JUMPDEST PUSH0 PUSH2 0x13AA PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP4 SUB PUSH2 0x141D JUMPI PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13F6 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 0x141A SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP3 POP JUMPDEST PUSH2 0x1427 DUP2 DUP5 PUSH2 0x27C4 JUMP JUMPDEST POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x1477 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1489 PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP4 ADD CALLDATALOAD PUSH2 0x3853 JUMP JUMPDEST PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1499 SWAP2 SWAP1 PUSH2 0x39B2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD ISZERO PUSH2 0x1587 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xA227DC41 DUP4 CALLDATALOAD PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x14F5 PUSH2 0x14F0 CALLDATASIZE DUP9 SWAP1 SUB DUP9 ADD DUP9 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x2877 JUMP JUMPDEST PUSH2 0x150C PUSH2 0x1507 CALLDATASIZE DUP10 SWAP1 SUB DUP10 ADD DUP10 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x28BF JUMP JUMPDEST PUSH2 0x151E PUSH2 0x1507 CALLDATASIZE DUP10 SWAP1 SUB DUP10 ADD DUP10 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x1528 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1570 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1582 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x40 DUP2 ADD CALLDATALOAD ISZERO PUSH2 0x1633 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x4FFCDA8C DUP3 CALLDATALOAD PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x15D9 PUSH2 0x14F0 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x24 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x161C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x162E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP3 ADD CALLDATALOAD ISZERO PUSH2 0x171C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xA227DC41 DUP4 CALLDATALOAD PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x168A PUSH2 0x1685 CALLDATASIZE DUP9 SWAP1 SUB DUP9 ADD DUP9 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x2902 JUMP JUMPDEST PUSH2 0x16A1 PUSH2 0x169C CALLDATASIZE DUP10 SWAP1 SUB DUP10 ADD DUP10 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x2943 JUMP JUMPDEST PUSH2 0x16B3 PUSH2 0x169C CALLDATASIZE DUP10 SWAP1 SUB DUP10 ADD DUP10 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x16BD SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1705 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1717 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP2 ADD CALLDATALOAD ISZERO PUSH2 0xB7D JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x4FFCDA8C DUP3 CALLDATALOAD PUSH1 0x60 DUP5 ADD CALLDATALOAD PUSH2 0x176E PUSH2 0x1685 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x24 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x17B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x17C3 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1828 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 0x9D1 SWAP2 SWAP1 PUSH2 0x37EE JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x65 SLOAD SLT ISZERO PUSH2 0x1863 JUMPI PUSH1 0x65 SLOAD PUSH2 0x9D1 SWAP1 PUSH2 0x3998 JUMP JUMPDEST POP PUSH0 SWAP1 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x18B1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 PUSH1 0xA0 ADD CALLDATALOAD PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x18C6 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH0 SWAP1 POP PUSH2 0x18DE PUSH2 0x95B PUSH1 0xA0 DUP9 ADD CALLDATALOAD DUP8 PUSH2 0x3834 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x1916 JUMPI PUSH2 0x1900 PUSH2 0x18F8 CALLDATASIZE DUP9 SWAP1 SUB DUP9 ADD DUP9 PUSH2 0x387F JUMP JUMPDEST DUP6 DUP6 DUP6 PUSH2 0x297C JUMP JUMPDEST PUSH2 0x1911 DUP2 DUP4 PUSH0 DUP10 PUSH1 0x40 ADD CALLDATALOAD GT PUSH2 0x1F7D JUMP JUMPDEST PUSH2 0x1928 JUMP JUMPDEST PUSH2 0x1928 PUSH2 0x18F8 CALLDATASIZE DUP9 SWAP1 SUB DUP9 ADD DUP9 PUSH2 0x387F JUMP JUMPDEST PUSH2 0x17C3 DUP3 PUSH2 0x9B5 DUP4 DUP9 PUSH2 0x3853 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x194A PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1960 JUMPI PUSH2 0x1960 PUSH2 0xA2D JUMP JUMPDEST PUSH2 0x1968 PUSH2 0xB81 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x19A1 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x19D3 JUMPI PUSH2 0x19D0 DUP2 PUSH32 0x0 PUSH2 0x2B49 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP1 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x1A0A JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0xD64 JUMPI PUSH2 0x9D1 DUP2 PUSH32 0x0 PUSH2 0x2B49 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x1A82 JUMPI PUSH1 0x40 MLOAD PUSH4 0x799E780F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xA0 ADD CALLDATALOAD PUSH1 0x64 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1A97 SWAP2 SWAP1 PUSH2 0x39B2 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x40 DUP2 ADD CALLDATALOAD ISZERO PUSH2 0x1B48 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x4FFCDA8C DUP3 CALLDATALOAD PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x1AEE PUSH2 0x14F0 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x24 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1B31 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1B43 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP2 ADD CALLDATALOAD ISZERO PUSH2 0xE01 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0x4FFCDA8C DUP3 CALLDATALOAD PUSH1 0x60 DUP5 ADD CALLDATALOAD PUSH2 0x1B9A PUSH2 0x1685 CALLDATASIZE DUP8 SWAP1 SUB DUP8 ADD DUP8 PUSH2 0x387F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP7 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP4 SWAP1 SWAP4 MSTORE PUSH1 0x24 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1BDE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xF24 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x686 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6C82BBBF PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xD905777E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1C89 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1C86 SWAP2 DUP2 ADD SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x1 JUMPDEST ISZERO PUSH2 0x1CA0 JUMPI DUP4 DUP2 LT ISZERO PUSH2 0x1C9E JUMPI PUSH1 0x1 SWAP2 POP DUP1 SWAP4 POP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D043B29 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP5 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0xBA087652 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1D0F JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1D0C SWAP2 DUP2 ADD SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1D5E JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x25BCE30047860A48C9D8830DBF31873BE5434F4D28F14A5808A4EA8E35D08296 DUP5 PUSH1 0x40 MLOAD PUSH2 0x1D4E SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 PUSH2 0x1D61 JUMP JUMPDEST SWAP2 POP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SLT PUSH2 0x1D7D JUMPI PUSH2 0x1D78 DUP2 PUSH2 0x263F JUMP JUMPDEST PUSH2 0x1DC4 JUMP JUMPDEST PUSH0 PUSH2 0x1D8A PUSH2 0x95B DUP4 PUSH2 0x3998 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x1D97 DUP4 PUSH2 0x3998 JUMP JUMPDEST DUP3 SWAP1 SWAP2 PUSH2 0x1DC0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFC2324B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP POP POP JUMPDEST PUSH2 0xE01 DUP2 PUSH2 0x2D5E JUMP JUMPDEST PUSH0 PUSH0 DUP3 PUSH1 0x65 SLOAD PUSH2 0x1DDD SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1DEB PUSH2 0xB8D PUSH2 0xA0C JUMP JUMPDEST SWAP1 POP DUP1 DUP3 SLT PUSH2 0x1DFF JUMPI POP PUSH1 0x65 SSTORE POP PUSH0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x65 DUP2 SWAP1 SSTORE DUP1 PUSH2 0x1E0E DUP4 PUSH2 0x3998 JUMP JUMPDEST PUSH2 0x1E18 SWAP2 SWAP1 PUSH2 0x3927 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 ADD MLOAD ISZERO PUSH2 0x1EE3 JUMPI PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xA227DC41 DUP3 PUSH0 ADD MLOAD DUP4 PUSH1 0x40 ADD MLOAD PUSH2 0x1E6B DUP6 PUSH2 0x2877 JUMP JUMPDEST PUSH2 0x1E74 DUP7 PUSH2 0x28BF JUMP JUMPDEST DUP7 PUSH2 0x100 ADD MLOAD PUSH2 0x1E84 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1ECC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1EDE JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP2 ADD MLOAD ISZERO PUSH2 0xE01 JUMPI PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xA227DC41 DUP3 PUSH0 ADD MLOAD DUP4 PUSH1 0x60 ADD MLOAD PUSH2 0x1F2E DUP6 PUSH2 0x2902 JUMP JUMPDEST PUSH2 0x1F37 DUP7 PUSH2 0x2943 JUMP JUMPDEST DUP7 PUSH2 0x120 ADD MLOAD PUSH2 0x1F47 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x1BC7 JUMP JUMPDEST DUP3 DUP2 ISZERO PUSH2 0x21A1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x33481FC9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x33481FC9 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1FE8 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 0x200C SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP PUSH2 0x2016 PUSH2 0x9D6 JUMP JUMPDEST PUSH2 0x2020 DUP7 DUP4 PUSH2 0x39B2 JUMP JUMPDEST GT PUSH2 0x20BC JUMPI PUSH1 0x40 MLOAD PUSH4 0x30F7E76B PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH32 0x0 AND SWAP1 PUSH4 0xC3DF9DAC SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2091 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 0x20B5 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP2 POP PUSH2 0x219F JUMP JUMPDEST PUSH2 0x20C4 PUSH2 0x9D6 JUMP JUMPDEST DUP2 LT ISZERO PUSH2 0x219F JUMPI PUSH0 PUSH2 0x20D4 PUSH2 0x9D6 JUMP JUMPDEST PUSH2 0x20DE DUP8 DUP5 PUSH2 0x39B2 JUMP JUMPDEST PUSH2 0x20E8 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND PUSH4 0xC3DF9DAC PUSH2 0x2123 DUP4 DUP10 PUSH2 0x3853 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x216D 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 0x2191 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH2 0x219B SWAP1 DUP3 PUSH2 0x39B2 JUMP JUMPDEST SWAP3 POP POP JUMPDEST POP JUMPDEST DUP1 ISZERO PUSH2 0x9BA JUMPI PUSH2 0x21AF PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x33481FC9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE DUP3 SWAP1 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x33481FC9 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2213 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 0x2237 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH2 0x2241 SWAP2 SWAP1 PUSH2 0x39B2 JUMP JUMPDEST GT PUSH2 0x22D9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x30F7E76B PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH32 0x0 AND SWAP1 PUSH4 0xC3DF9DAC SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x22B2 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 0x22D6 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP1 DUP1 ISZERO PUSH2 0xF24 JUMPI PUSH1 0x40 MLOAD PUSH4 0x93F6643 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC06 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x2330 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6427F273 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST POP DUP1 PUSH0 SUB PUSH2 0x233C JUMPI POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2345 PUSH2 0x2753 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x2388 JUMPI PUSH0 PUSH2 0x2362 PUSH1 0x66 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND ISZERO PUSH2 0x2386 JUMPI PUSH2 0x2386 DUP2 PUSH2 0x2381 DUP5 DUP7 PUSH2 0x3853 JUMP JUMPDEST PUSH2 0x27C4 JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ADDRESS EQ PUSH2 0xB5D JUMPI PUSH2 0xB5D DUP4 DUP4 PUSH2 0x23A5 PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x2D8E JUMP JUMPDEST PUSH0 PUSH2 0x23BE PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x23F9 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 0x241D SWAP2 SWAP1 PUSH2 0x39E0 JUMP JUMPDEST PUSH2 0x2428 SWAP1 PUSH1 0xA PUSH2 0x3AE3 JUMP JUMPDEST PUSH2 0x686 SWAP1 PUSH4 0xFFFFFFFF DUP5 AND PUSH2 0x394E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x24BE JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x24B2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x3B3C PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x24DC JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0xE01 DUP2 PUSH2 0x2DC3 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x2541 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x253E SWAP2 DUP2 ADD SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x2569 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x3B3C PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x2599 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH2 0xB5D DUP4 DUP4 PUSH2 0x2FAD JUMP JUMPDEST PUSH1 0x64 SLOAD PUSH0 SWAP1 PUSH2 0x25BB SWAP1 DUP4 PUSH8 0xDE0B6B3A7640000 PUSH2 0x3002 JUMP JUMPDEST PUSH2 0x686 SWAP1 PUSH2 0x3998 JUMP JUMPDEST PUSH0 PUSH2 0xFFFF DUP3 GT ISZERO PUSH2 0x25F2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x10 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x24DC JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x65 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x2650 SWAP2 SWAP1 PUSH2 0x3927 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x686 JUMP JUMPDEST PUSH2 0x2688 PUSH2 0x30B3 JUMP JUMPDEST PUSH2 0x2690 PUSH2 0x30D8 JUMP JUMPDEST PUSH2 0x24DC PUSH2 0x30E8 JUMP JUMPDEST PUSH2 0x26A6 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x312E JUMP JUMPDEST PUSH2 0x9BA JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 PUSH2 0x686 PUSH2 0x26DA PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2715 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 0x2739 SWAP2 SWAP1 PUSH2 0x39E0 JUMP JUMPDEST PUSH2 0x2744 SWAP1 PUSH1 0xA PUSH2 0x3AE3 JUMP JUMPDEST PUSH2 0x274E SWAP1 DUP5 PUSH2 0x3979 JUMP JUMPDEST PUSH2 0x319B JUMP JUMPDEST PUSH0 PUSH2 0x275C PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 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 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x27A0 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 0x9D1 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2815 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 0x2839 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST POP PUSH1 0x32 SLOAD DUP2 GT ISZERO PUSH2 0x285D JUMPI PUSH2 0x2855 PUSH1 0x32 SLOAD DUP3 PUSH2 0x88F SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST PUSH0 PUSH1 0x32 SSTORE POP POP JUMP JUMPDEST DUP1 PUSH1 0x32 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x286E SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x686 PUSH8 0xDE0B6B3A7640000 PUSH2 0x288D DUP5 PUSH2 0x31CB JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP5 PUSH1 0x40 ADD MLOAD PUSH2 0x28A3 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH4 0x1E13380 DUP6 PUSH2 0x100 ADD MLOAD PUSH2 0x28B8 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x3002 JUMP JUMPDEST PUSH0 PUSH2 0x28C9 DUP3 PUSH2 0x31CB JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x28E8 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST DUP4 PUSH2 0x100 ADD MLOAD PUSH2 0x28F8 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH2 0x686 SWAP2 SWAP1 PUSH2 0x3979 JUMP JUMPDEST PUSH0 PUSH2 0x686 PUSH8 0xDE0B6B3A7640000 PUSH2 0x2918 DUP5 PUSH2 0x31CB JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP5 PUSH1 0x60 ADD MLOAD PUSH2 0x292E SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH4 0x1E13380 DUP6 PUSH2 0x120 ADD MLOAD PUSH2 0x28B8 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH0 PUSH2 0x294D DUP3 PUSH2 0x31CB JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x296C SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST DUP4 PUSH2 0x120 ADD MLOAD PUSH2 0x28F8 SWAP2 SWAP1 PUSH2 0x394E JUMP JUMPDEST PUSH1 0x40 DUP5 ADD MLOAD ISZERO PUSH2 0x2A60 JUMPI PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3AD2820B DUP6 PUSH0 ADD MLOAD DUP7 PUSH1 0x40 ADD MLOAD PUSH2 0x29C7 DUP9 PUSH2 0x2877 JUMP JUMPDEST PUSH2 0x29D0 DUP10 PUSH2 0x28BF JUMP JUMPDEST DUP9 DUP11 PUSH2 0x100 ADD MLOAD PUSH2 0x29E1 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST PUSH2 0x29EB SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0xC4 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2A49 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2A5B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP JUMPDEST PUSH1 0x60 DUP5 ADD MLOAD ISZERO PUSH2 0x9BA JUMPI PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3AD2820B DUP6 PUSH0 ADD MLOAD DUP7 PUSH1 0x60 ADD MLOAD PUSH2 0x2AAB DUP9 PUSH2 0x2902 JUMP JUMPDEST PUSH2 0x2AB4 DUP10 PUSH2 0x2943 JUMP JUMPDEST DUP8 DUP11 PUSH2 0x120 ADD MLOAD PUSH2 0x2AC5 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST PUSH2 0x2ACF SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x24 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xC4 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2B2D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2B3F JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x33481FC9 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH0 SWAP1 DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH4 0x33481FC9 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2B8F 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 0x2BB3 SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST SWAP1 POP DUP1 PUSH0 SUB PUSH2 0x2BC5 JUMPI DUP4 SWAP2 POP POP PUSH2 0x686 JUMP JUMPDEST PUSH0 PUSH2 0x2BD0 DUP6 DUP4 PUSH2 0x31E2 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x65 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x2BE3 SWAP2 SWAP1 PUSH2 0x3834 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x2BF3 SWAP1 POP ADDRESS DUP3 PUSH2 0x22FC JUMP JUMPDEST DUP1 PUSH2 0x2BFC PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6EB1769F PUSH1 0xE1 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xDD62ED3E SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2C48 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 0x2C6C SWAP2 SWAP1 PUSH2 0x3809 JUMP JUMPDEST LT ISZERO PUSH2 0x2CEE JUMPI PUSH2 0x2C7A PUSH2 0x17CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2CC8 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 0x2CEC SWAP2 SWAP1 PUSH2 0x39C5 JUMP JUMPDEST POP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x918344D3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x918344D3 SWAP1 PUSH1 0x44 ADD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2D33 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2D45 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP DUP1 DUP6 PUSH2 0x2D55 SWAP2 SWAP1 PUSH2 0x3853 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0x731C439C5BAE15BE1344EEC709967E046B4F7D3F7E37ABEFFC5247F448FA18BF SWAP1 PUSH1 0x20 ADD PUSH2 0xF86 JUMP JUMPDEST PUSH2 0x2D9B DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x31F1 JUMP JUMPDEST PUSH2 0xB5D JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH2 0x2DCC DUP2 PUSH2 0x3253 JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH0 PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x5E445859 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2E0D 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 0x2E31 SWAP2 SWAP1 PUSH2 0x3AF1 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2E9C JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO JUMPDEST PUSH32 0x0 DUP4 SWAP1 SWAP2 PUSH2 0x2EF0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x13AFEA89 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST POP POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x2F59 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO JUMPDEST PUSH32 0x0 DUP3 SWAP1 SWAP2 PUSH2 0x17C3 JUMPI PUSH1 0x40 MLOAD PUSH4 0x13AFEA89 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH2 0x2FB6 DUP3 PUSH2 0x3304 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x2FFA JUMPI PUSH2 0xB5D DUP3 DUP3 PUSH2 0x3367 JUMP JUMPDEST PUSH2 0xB7D PUSH2 0x3407 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x300F DUP7 DUP7 PUSH2 0x3426 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x3033 JUMPI DUP4 DUP2 DUP2 PUSH2 0x3029 JUMPI PUSH2 0x3029 PUSH2 0x3965 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x30AC JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x304A JUMPI PUSH2 0x304A PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x3442 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x30BB PUSH2 0x3453 JUMP JUMPDEST PUSH2 0x24DC JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x30E0 PUSH2 0x30B3 JUMP JUMPDEST PUSH2 0x24DC PUSH2 0x346C JUMP JUMPDEST PUSH2 0x30F0 PUSH2 0x30B3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x2710 PUSH1 0x60 SWAP1 SWAP2 ADD MSTORE PUSH1 0x66 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF0 SHL SUB NOT AND PUSH2 0x271 PUSH1 0xE4 SHL OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x318A JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x317E JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP3 GT ISZERO PUSH2 0x25F2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x140 ADD MLOAD DUP3 PUSH2 0x160 ADD MLOAD PUSH2 0x686 SWAP2 SWAP1 PUSH2 0x3B1E JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0x30AC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x3247 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x323B JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x32B9 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 0x32DD SWAP2 SWAP1 PUSH2 0x37EE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xE01 JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x3339 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC06 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x3B3C PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x3374 DUP5 DUP5 PUSH2 0x3474 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x3395 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x3395 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x33AA JUMPI PUSH2 0x33A2 PUSH2 0x3487 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x686 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x33D4 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 0xC06 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x33E7 JUMPI PUSH2 0x33E2 PUSH2 0x34A0 JUMP JUMPDEST PUSH2 0x3400 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x24DC JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 PUSH2 0x345C PUSH2 0x2658 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x24DC PUSH2 0x30B3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x34BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x30AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE01 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xE01 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3504 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x350F DUP2 PUSH2 0x34D2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x351F DUP2 PUSH2 0x34E6 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x353B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1C0 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3554 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x355F DUP2 PUSH2 0x34D2 JUMP JUMPDEST SWAP3 POP PUSH2 0x356E DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x352A JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH2 0x1A0 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x35B8 JUMPI PUSH2 0x35B8 PUSH2 0x3580 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x35E7 JUMPI PUSH2 0x35E7 PUSH2 0x3580 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3600 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x360B DUP2 PUSH2 0x34D2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3626 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x3636 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3650 JUMPI PUSH2 0x3650 PUSH2 0x3580 JUMP JUMPDEST PUSH2 0x3663 PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x35BE JUMP JUMPDEST DUP2 DUP2 MSTORE DUP7 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x3677 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 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x36A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x351F DUP2 PUSH2 0x34E6 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x36CA JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x30AC DUP4 DUP4 PUSH2 0x352A JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x36E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x36FC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP1 CALLDATALOAD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x371C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x351F DUP2 PUSH2 0x34D2 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 PUSH0 PUSH0 PUSH2 0x300 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3775 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x377F DUP5 DUP5 PUSH2 0x352A JUMP JUMPDEST SWAP2 POP PUSH2 0x378F DUP5 PUSH2 0x180 DUP6 ADD PUSH2 0x352A JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x200 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x37AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x37B7 DUP8 DUP8 PUSH2 0x352A JUMP JUMPDEST SWAP5 POP PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP4 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH2 0x1C0 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH2 0x1E0 DUP7 ADD CALLDATALOAD PUSH2 0x37E0 DUP2 PUSH2 0x34D2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x37FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x30AC DUP2 PUSH2 0x34D2 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3819 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD 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 PUSH0 DUP4 SLT DUP1 ISZERO DUP4 DUP4 SGT AND DUP4 DUP4 SLT DUP3 AND OR ISZERO PUSH2 0x3400 JUMPI PUSH2 0x3400 PUSH2 0x3820 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x3820 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x387A JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT DUP1 ISZERO PUSH2 0x3891 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x389A PUSH2 0x3594 JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x3907 PUSH2 0x140 DUP5 ADD PUSH2 0x3866 JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x391A PUSH2 0x160 DUP5 ADD PUSH2 0x3866 JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x3946 JUMPI PUSH2 0x3946 PUSH2 0x3820 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x3820 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH2 0x3993 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x39AC JUMPI PUSH2 0x39AC PUSH2 0x3820 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x3820 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x39D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x30AC DUP2 PUSH2 0x34E6 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x39F0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x30AC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x3A3B JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x3A1F JUMPI PUSH2 0x3A1F PUSH2 0x3820 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x3A2D JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x3A04 JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x3A51 JUMPI POP PUSH1 0x1 PUSH2 0x686 JUMP JUMPDEST DUP2 PUSH2 0x3A5D JUMPI POP PUSH0 PUSH2 0x686 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x3A73 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x3A7D JUMPI PUSH2 0x3A99 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x686 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x3A8E JUMPI PUSH2 0x3A8E PUSH2 0x3820 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x686 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x3ABC JUMPI POP DUP2 DUP2 EXP PUSH2 0x686 JUMP JUMPDEST PUSH2 0x3AC8 PUSH0 NOT DUP5 DUP5 PUSH2 0x3A00 JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x3ADB JUMPI PUSH2 0x3ADB PUSH2 0x3820 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x30AC PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x3A43 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3B02 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x3B0D DUP2 PUSH2 0x34D2 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x351F DUP2 PUSH2 0x34D2 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x686 JUMPI PUSH2 0x686 PUSH2 0x3820 JUMP INVALID CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCA264697066735822122001 CHAINID PUSH29 0x3DB5B56EF9762E1951FB6EA7A48D6EB0874DD5C1ADC1581C654DD75CE3 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"1321:28111:26:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8968:198;;;;;;;;;;-1:-1:-1;8968:198:26;;;;;:::i;:::-;;:::i;:::-;;;470:14:125;;463:22;445:41;;433:2;418:18;8968:198:26;;;;;;;;11503:76;;;;;;;;;;-1:-1:-1;11566:8:26;;11503:76;;;641:25:125;;;629:2;614:18;11503:76:26;497:175:125;6826:990:27;;;;;;;;;;-1:-1:-1;6826:990:27;;;;;:::i;:::-;;:::i;:::-;;10529:99:26;;;;;;;;;;-1:-1:-1;10604:19:26;;10529:99;;25078:524;;;;;;;;;;-1:-1:-1;25078:524:26;;;;;:::i;:::-;;:::i;10231:130::-;;;;;;;;;;;;;:::i;13985:148::-;;;;;;;;;;;;;:::i;13732:143::-;;;;;;;;;;;;;:::i;2366:94:25:-;;;;;;;;;;-1:-1:-1;2444:11:25;2366:94;;;-1:-1:-1;;;;;2408:32:125;;;2390:51;;2378:2;2363:18;2366:94:25;2223:224:125;11927:366:27;;;;;;;;;;;;;:::i;3911:214:76:-;;;;;;:::i;:::-;;:::i;11682:236:26:-;;;;;;;;;;;;;:::i;15309:817::-;;;;;;;;;;-1:-1:-1;15309:817:26;;;;;:::i;:::-;;:::i;3466:126:76:-;;;;;;;;;;;;;:::i;10782:114:26:-;;;;;;;;;;;;;:::i;12016:90::-;;;;;;;;;;-1:-1:-1;12091:10:26;12016:90;;12110:108;;;;;;;;;;-1:-1:-1;12110:108:26;;;-1:-1:-1;;;;;12190:10:26;5035:32:125;;5017:51;;12202:10:26;5104:32:125;5099:2;5084:18;;5077:60;4990:18;12110:108:26;4809:334:125;28938:213:26;;;;;;;;;;-1:-1:-1;28938:213:26;;;;;:::i;:::-;;:::i;11922:90::-;;;;;;;;;;-1:-1:-1;11997:10:26;11922:90;;14243:148;;;;;;;;;;;;;:::i;5400:81:27:-;;;;;;;;;;-1:-1:-1;5467:9:27;;5400:81;;7767:76:26;;;;;;;;;;;;;:::i;20380:195::-;;;;;;;;;;-1:-1:-1;20380:195:26;;;;;:::i;:::-;;:::i;17014:596::-;;;;;;;;;;-1:-1:-1;17014:596:26;;;;;:::i;:::-;;:::i;21621:577::-;;;;;;;;;;-1:-1:-1;21621:577:26;;;;;:::i;:::-;;:::i;9196:98::-;;;;;;;;;;-1:-1:-1;9271:7:26;:18;-1:-1:-1;;;;;9271:18:26;9196:98;;11246:445:27;;;;;;;;;;-1:-1:-1;11246:445:27;;;;;:::i;:::-;;:::i;1732:58:76:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1732:58:76;;;;;;;;;;;;:::i;10717:268:27:-;;;;;;;;;;-1:-1:-1;10717:268:27;;;;;:::i;:::-;;:::i;22611:1691:26:-;;;;;;;;;;-1:-1:-1;22611:1691:26;;;;;:::i;:::-;;:::i;2464:97:25:-;;;;;;;;;;;;;:::i;11098:116:26:-;;;;;;;;;;;;;:::i;24341:698::-;;;;;;;;;;-1:-1:-1;24341:698:26;;;;;:::i;:::-;;:::i;27340:399::-;;;;;;;;;;;;;:::i;22237:335::-;;;;;;;;;;-1:-1:-1;22237:335:26;;;;;:::i;:::-;;:::i;8968:198::-;9053:4;9072:36;9096:11;9072:23;:36::i;:::-;:89;;;-1:-1:-1;;;;;;;9112:49:26;;-1:-1:-1;;;9112:49:26;9072:89;9065:96;8968:198;-1:-1:-1;;8968:198:26:o;6826:990:27:-;6900:11;6917:20;6940:10;:8;:10::i;:::-;6917:33;-1:-1:-1;;;;;;6964:36:27;;;;:79;;;7037:5;-1:-1:-1;;;;;7004:39:27;:13;-1:-1:-1;;;;;7004:19:27;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;7004:39:27;;6964:79;6956:109;;;;-1:-1:-1;;;6956:109:27;;;;;;;;;;;;7071:14;7088:12;9271:7:26;:18;-1:-1:-1;;;;;9271:18:26;;9196:98;7088:12:27;7071:29;-1:-1:-1;7106:18:27;-1:-1:-1;;;;;7135:28:27;;;7131:459;;7192:30;;-1:-1:-1;;;7192:30:27;;7216:4;7192:30;;;2390:51:125;7173:16:27;;-1:-1:-1;;;;;7192:15:27;;;;;2363:18:125;;7192:30:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7173:49;-1:-1:-1;7234:13:27;;7230:354;;7263:5;7259:317;;;7381:33;7398:5;7405:8;7381:16;:33::i;:::-;7358:56;-1:-1:-1;7358:56:27;-1:-1:-1;7259:317:27;;;7513:52;;-1:-1:-1;;;7513:52:27;;;;;9250:25:125;;;7544:4:27;9291:18:125;;;9284:60;;;9360:18;;;9353:60;-1:-1:-1;;;;;7513:12:27;;;;;9223:18:125;;7513:52:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7500:65;;7259:317;7165:425;7131:459;9388:7:26;:26;;-1:-1:-1;;;;;;9388:26:26;-1:-1:-1;;;;;9388:26:26;;;;;7680:54:27;7723:9;;7702:10;7695:38;;;;:::i;:::-;7680:14;:54::i;:::-;7752:1;7740:9;:13;7764:47;;470:14:125;;463:22;445:41;;-1:-1:-1;;;;;7764:47:27;;;;;;;;;;433:2:125;418:18;7764:47:27;;;;;;;6894:922;;;;6826:990;;:::o;25078:524:26:-;1373:10:25;-1:-1:-1;;;;;1395:11:25;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:25;;;;;;;;;;;;25263:6:26::1;:18;;;25240:19;;:41;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;25287:21:26::1;::::0;-1:-1:-1;25311:61:26::1;25328:43;25352:18;::::0;::::1;;25335:6:::0;25328:43:::1;:::i;:::-;25311:16;:61::i;:::-;25287:85:::0;-1:-1:-1;25382:18:26;;25378:165:::1;;25410:18;;;::::0;;::::1;::::0;::::1;25421:6:::0;25410:18:::1;:::i;:::-;:10;:18::i;:::-;25436:61;25451:13;25466:12;25495:1;25480:6;:12;;;:16;25436:14;:61::i;:::-;25378:165;;;25518:18;;;::::0;;::::1;::::0;::::1;25529:6:::0;25518:18:::1;:::i;:::-;25548:49;25560:12:::0;25574:22:::1;25583:13:::0;25574:6;:22:::1;:::i;:::-;25548:11;:49::i;:::-;25234:368;25078:524:::0;;;:::o;10231:130::-;10287:7;10347:8;;10324:19;;10317:38;;;;:::i;:::-;10302:54;;10231:130;:::o;13985:148::-;14051:7;:19;14029:7;;-1:-1:-1;;;14051:19:26;;;;:24;:77;;14108:7;:19;14098:30;;-1:-1:-1;;;14108:19:26;;;;14098:9;:30::i;14051:77::-;-1:-1:-1;;;14078:17:26;13985:148::o;13732:143::-;13807:7;:20;13777:7;;13799:51;;1600:4;;-1:-1:-1;;;13807:20:26;;;;13799:51;:::i;11927:366:27:-;11966:11;11980:12;9271:7:26;:18;-1:-1:-1;;;;;9271:18:26;;9196:98;11980:12:27;11966:26;-1:-1:-1;;;;;;12006:25:27;;11998:55;;;;-1:-1:-1;;;11998:55:27;;;;;;;;;;;;12103:27;;-1:-1:-1;;;12103:27:27;;12124:4;12103:27;;;2390:51:125;12059:22:27;;-1:-1:-1;;;;;12084:18:27;;;;;;;12103:12;;2363:18:125;;12103:27:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12084:47;;;;;;;;;;;;;641:25:125;;629:2;614:18;;497:175;12084:47:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12059:72;;12137:13;12185:9;;12160:14;12153:42;;;;:::i;:::-;12137:58;-1:-1:-1;12205:11:27;;12201:88;;12226:9;:26;;;12260:22;12275:6;12260:14;:22::i;:::-;11960:333;;;11927:366::o;3911:214:76:-;2568:13;:11;:13::i;:::-;4026:36:::1;4044:17;4026;:36::i;:::-;4072:46;4094:17;4113:4;4072:21;:46::i;:::-;3911:214:::0;;:::o;11682:236:26:-;11729:7;11885:27;11897:14;:12;:14::i;:::-;11885:11;:27::i;:::-;11874:8;;:38;;;;:::i;15309:817::-;15384:21;15408:43;15409:30;1600:4;15409:8;:30;:::i;:::-;15408:41;:43::i;:::-;15384:67;;1544:4;15472:8;:15;;:76;;;;-1:-1:-1;15540:8:26;15491:45;1600:4;15491:23;;;:45;:::i;:::-;:57;15472:76;15576:8;15457:134;;;;;-1:-1:-1;;;15457:134:26;;;;;;641:25:125;;629:2;614:18;;497:175;15457:134:26;;;;;;;;;;15598:17;15618:21;15630:8;15618:11;:21::i;:::-;15598:41;;15650:10;15649:11;:36;;;;;15675:10;15664:8;;:21;15649:36;15645:97;;;15720:8;;15719:9;;;:::i;:::-;15730:11;15731:10;15730:11;:::i;:::-;15694:48;;-1:-1:-1;;;15694:48:26;;;;;12711:25:125;;;;12752:18;;;12745:34;12684:18;;15694:48:26;12541:244:125;15645:97:26;15749:14;15784:10;15773:8;;:21;15769:218;;;15860:10;15849:8;;15848:9;;;:::i;:::-;:22;;;;:::i;:::-;15879:8;:21;;;15831:40;-1:-1:-1;15908:72:26;15831:40;15939:4;15954:10;-1:-1:-1;;;;;15946:33:26;;;15908:14;:72::i;:::-;16017:7;:20;15997:81;;16017:42;;1600:4;;-1:-1:-1;;;16017:20:26;;;;:42;:::i;:::-;15997:81;;;12992:25:125;;;13048:2;13033:18;;13026:34;;;13076:18;;13069:34;;;12980:2;12965:18;15997:81:26;;;;;;;-1:-1:-1;;16084:7:26;:37;;;;;;-1:-1:-1;;;16084:37:26;-1:-1:-1;;;;16084:37:26;;;;;;;;;-1:-1:-1;;15309:817:26:o;3466:126:76:-;3527:7;2839:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;2869:1:76::1;3466:126:::0;:::o;10782:114:26:-;10832:7;10866:1;10854:8;;:13;;:37;;-1:-1:-1;10890:1:26;;10231:130::o;10854:37::-;-1:-1:-1;10878:8:26;;;10782:114::o;28938:213::-;1373:10:25;-1:-1:-1;;;;;1395:11:25;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:25;;;;;;;;;;;;29058:6:26::1;:18;;;29035:19;;:41;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;29082:40:26::1;::::0;-1:-1:-1;29103:18:26::1;::::0;::::1;;29082:20;:40::i;:::-;29128:18;;;::::0;;::::1;::::0;::::1;29139:6:::0;29128:18:::1;:::i;:::-;28938:213:::0;:::o;14243:148::-;14309:7;:19;14287:7;;-1:-1:-1;;;14309:19:26;;;;:24;:77;;14366:7;:19;14356:30;;-1:-1:-1;;;14366:19:26;;;;14356:9;:30::i;7767:76::-;4158:30:75;4191:26;:24;:26::i;:::-;4302:15;;4158:59;;-1:-1:-1;4302:15:75;-1:-1:-1;;;4302:15:75;;;4301:16;;4348:14;;4279:19;4724:16;;:34;;;;;4744:14;4724:34;4704:54;;4768:17;4788:11;:16;;4803:1;4788:16;:50;;;;-1:-1:-1;4816:4:75;4808:25;:30;4788:50;4768:70;;4854:12;4853:13;:30;;;;;4871:12;4870:13;4853:30;4849:91;;;4906:23;;-1:-1:-1;;;4906:23:75;;;;;;;;;;;4849:91;4949:18;;-1:-1:-1;;4949:18:75;4966:1;4949:18;;;4977:67;;;;5011:22;;-1:-1:-1;;;;5011:22:75;-1:-1:-1;;;5011:22:75;;;4977:67;7814:24:26::1;:22;:24::i;:::-;5068:14:75::0;5064:101;;;5098:23;;-1:-1:-1;;;;5098:23:75;;;5140:14;;-1:-1:-1;13267:50:125;;5140:14:75;;13255:2:125;13240:18;5140:14:75;;;;;;;5064:101;4092:1079;;;;;7767:76:26:o;20380:195::-;20433:28;20454:6;20433:20;:28::i;:::-;20467:62;20495:10;20515:4;20522:6;20467:10;:8;:10::i;:::-;-1:-1:-1;;;;;20467:27:26;;:62;;:27;:62::i;:::-;20540:30;;;20557:4;13496:41:125;;13568:2;13553:18;;13546:34;;;20540:30:26;;13469:18:125;20540:30:26;;;;;;;;20380:195;:::o;17014:596::-;-1:-1:-1;;17096:10:26;:31;17092:255;;17142:50;17159:13;:11;:13::i;:::-;17142:50;;;13787:25:125;;;13843:2;13828:18;;13821:34;;;17186:5:26;13871:18:125;;;13864:50;13775:2;13760:18;17142:50:26;;;;;;;17222:27;17238:10;17222:15;:27::i;:::-;17200:7;:49;;-1:-1:-1;;;;17200:49:26;-1:-1:-1;;;17200:49:26;;;;;;;;;;;;;;17299:10;;17265:30;;17275:19;;;;;17265:9;:30::i;:::-;:44;17328:10;17257:83;;;;;-1:-1:-1;;;17257:83:26;;;;;;641:25:125;;629:2;614:18;;497:175;17257:83:26;;17092:255;-1:-1:-1;;17356:10:26;:31;17352:254;;17402:49;17419:13;:11;:13::i;:::-;17402:49;;;13787:25:125;;;13843:2;13828:18;;13821:34;;;17446:4:26;13871:18:125;;;13864:50;13775:2;13760:18;17402:49:26;;;;;;;17481:27;17497:10;17481:15;:27::i;:::-;17459:7;:49;;-1:-1:-1;;;;17459:49:26;-1:-1:-1;;;17459:49:26;;;;;;;;;;;;;;17558:10;;17524:30;;17534:19;;;;;17524:9;:30::i;:::-;:44;17587:10;17516:83;;;;;-1:-1:-1;;;17516:83:26;;;;;;641:25:125;;629:2;614:18;;497:175;21621:577:26;21705:7;21728:11;-1:-1:-1;;;;;21728:25:26;;21720:67;;;;-1:-1:-1;;;21720:67:26;;-1:-1:-1;;;;;2408:32:125;;;21720:67:26;;;2390:51:125;2363:18;;21720:67:26;2223:224:125;21720:67:26;-1:-1:-1;21830:1:26;21805:12;9271:7;:18;-1:-1:-1;;;;;9271:18:26;;9196:98;21805:12;-1:-1:-1;;;;;21797:35:26;;21793:57;;21834:16;:14;:16::i;:::-;-1:-1:-1;;21860:6:26;:27;21856:207;;21913:1;21901:8;;:13;21897:27;;-1:-1:-1;21923:1:26;21916:8;;21897:27;21949:8;;21932:26;;21856:207;;;22005:8;;21994:6;;21987:26;;;;21979:77;;;;-1:-1:-1;;;21979:77:26;;;;;12711:25:125;;;;12752:18;;;12745:34;12684:18;;21979:77:26;12541:244:125;21979:77:26;;;21856:207;22087:6;22068:8;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;22100:32:26;;-1:-1:-1;22112:11:26;22125:6;22100:11;:32::i;:::-;22143:31;;;22160:5;13496:41:125;;13568:2;13553:18;;13546:34;;;22143:31:26;;13469:18:125;22143:31:26;;;;;;;-1:-1:-1;22187:6:26;;21621:577;-1:-1:-1;21621:577:26:o;11246:445:27:-;11308:11;11322:12;9271:7:26;:18;-1:-1:-1;;;;;9271:18:26;;9196:98;11322:12:27;11308:26;-1:-1:-1;;;;;;11348:25:27;;11340:55;;;;-1:-1:-1;;;11340:55:27;;;;;;;;;;;;11401:15;11419:10;:8;:10::i;:::-;11401:28;;-1:-1:-1;;11439:6:27;:27;11435:143;;11485:7;11476:16;;11435:143;;;11521:6;11531:7;11521:17;;;;11513:58;;;;-1:-1:-1;;;11513:58:27;;;;;12711:25:125;;;;12752:18;;;12745:34;12684:18;;11513:58:27;12541:244:125;11513:58:27;;;11435:143;11596:6;11583:9;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;11608:10:27;;-1:-1:-1;11608:8:27;:10::i;:::-;:39;;-1:-1:-1;;;11608:39:27;;-1:-1:-1;;;;;14751:32:125;;;11608:39:27;;;14733:51:125;14800:18;;;14793:34;;;11608:18:27;;;;;;;14706::125;;11608:39:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;11653:33:27;;-1:-1:-1;;;11653:33:27;;;;;15262:25:125;;;11680:4:27;15303:18:125;;;15296:60;-1:-1:-1;;;;;11653:10:27;;;;;15235:18:125;;11653:33:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;10717:268::-;10783:18;10809:16;:14;:16::i;:::-;10831:11;10845:12;9271:7:26;:18;-1:-1:-1;;;;;9271:18:26;;9196:98;10845:12:27;10831:26;;-1:-1:-1;;10867:6:27;:27;10863:71;;10905:29;;-1:-1:-1;;;10905:29:27;;10928:4;10905:29;;;2390:51:125;-1:-1:-1;;;;;10905:14:27;;;;;2363:18:125;;10905:29:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10896:38;;10863:71;10940:21;10950:2;10954:6;10940:9;:21::i;:::-;-1:-1:-1;10974:6:27;;10717:268;-1:-1:-1;10717:268:27:o;22611:1691:26:-;1373:10:25;-1:-1:-1;;;;;1395:11:25;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:25;;;;;;;;;;;;23184:45:26::1;23208:21;::::0;;::::1;;::::0;23184;::::1;;:45;:::i;:::-;23161:19;;:68;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;23619:15:26::1;::::0;::::1;;:20:::0;23615:230:::1;;-1:-1:-1::0;;;;;23647:10:26::1;:20;;23677:12:::0;::::1;23699:15;::::0;::::1;;23724:26;:24;;::::0;;::::1;::::0;::::1;23677:9:::0;23724:24:::1;:::i;:::-;;:26::i;:::-;23807:29;:27;;::::0;;::::1;::::0;::::1;:9:::0;:27:::1;:::i;:::-;;:29::i;:::-;23767;:27;;::::0;;::::1;::::0;::::1;:9:::0;:27:::1;:::i;:29::-;23760:77;;;;:::i;:::-;23647:198;::::0;-1:-1:-1;;;;;;23647:198:26::1;::::0;;;;;;::::1;::::0;::::1;15596:25:125::0;;;;15637:18;;;15630:34;;;;15680:18;;;15673:34;15723:18;;;15716:34;15568:19;;23647:198:26::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23615:230;23855:15;::::0;::::1;;:19:::0;23851:102:::1;;-1:-1:-1::0;;;;;23876:10:26::1;:18;;23895:12:::0;::::1;23909:15;::::0;::::1;;23926:26;:24;;::::0;;::::1;::::0;::::1;23895:9:::0;23926:24:::1;:::i;:26::-;23876:77;::::0;-1:-1:-1;;;;;;23876:77:26::1;::::0;;;;;;::::1;::::0;::::1;12992:25:125::0;;;;13033:18;;;13026:34;;;;13076:18;;;13069:34;12965:18;;23876:77:26::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23851:102;23963:15;::::0;::::1;;:20:::0;23959:230:::1;;-1:-1:-1::0;;;;;23991:10:26::1;:20;;24021:12:::0;::::1;24043:15;::::0;::::1;;24068:26;:24;;::::0;;::::1;::::0;::::1;24021:9:::0;24068:24:::1;:::i;:::-;;:26::i;:::-;24151:29;:27;;::::0;;::::1;::::0;::::1;:9:::0;:27:::1;:::i;:::-;;:29::i;:::-;24111;:27;;::::0;;::::1;::::0;::::1;:9:::0;:27:::1;:::i;:29::-;24104:77;;;;:::i;:::-;23991:198;::::0;-1:-1:-1;;;;;;23991:198:26::1;::::0;;;;;;::::1;::::0;::::1;15596:25:125::0;;;;15637:18;;;15630:34;;;;15680:18;;;15673:34;15723:18;;;15716:34;15568:19;;23991:198:26::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23959:230;24199:15;::::0;::::1;;:19:::0;24195:102:::1;;-1:-1:-1::0;;;;;24220:10:26::1;:18;;24239:12:::0;::::1;24253:15;::::0;::::1;;24270:26;:24;;::::0;;::::1;::::0;::::1;24239:9:::0;24270:24:::1;:::i;:26::-;24220:77;::::0;-1:-1:-1;;;;;;24220:77:26::1;::::0;;;;;;::::1;::::0;::::1;12992:25:125::0;;;;13033:18;;;13026:34;;;;13076:18;;;13069:34;12965:18;;24220:77:26::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22611:1691:::0;;:::o;2464:97:25:-;2505:14;2534:11;-1:-1:-1;;;;;2534:20:25;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;11098:116:26:-;11149:7;11183:1;11171:8;;:13;;:38;;11200:8;;11199:9;;;:::i;11171:38::-;-1:-1:-1;11187:1:26;;11098:116::o;24341:698::-;1373:10:25;-1:-1:-1;;;;;1395:11:25;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:25;;;;;;;;;;;;24578:6:26::1;:18;;;24555:19;;:41;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;24602:21:26::1;::::0;-1:-1:-1;24626:72:26::1;24643:54;24678:18;::::0;::::1;;24650:17:::0;24643:54:::1;:::i;24626:72::-;24602:96:::0;-1:-1:-1;24708:18:26;;24704:265:::1;;24736:68;;;::::0;;::::1;::::0;::::1;24757:6:::0;24736:68:::1;:::i;:::-;24765:11;24778;24791:12;24736:20;:68::i;:::-;24812:61;24827:13;24842:12;24871:1;24856:6;:12;;;:16;24812:14;:61::i;:::-;24704:265;;;24894:68;;;::::0;;::::1;::::0;::::1;24915:6:::0;24894:68:::1;:::i;:::-;24974:60;24986:12:::0;25000:33:::1;25020:13:::0;25000:17;:33:::1;:::i;27340:399::-:0;27380:17;;27417:12;9271:7;:18;-1:-1:-1;;;;;9271:18:26;;9196:98;27417:12;-1:-1:-1;;;;;27409:35:26;;27405:57;;27446:16;:14;:16::i;:::-;27480;:14;:16::i;:::-;27468:28;-1:-1:-1;27506:14:26;;;;;:51;;-1:-1:-1;27532:10:26;-1:-1:-1;;;;;27524:33:26;;;27506:51;27502:102;;;27571:33;27582:9;27593:10;27571;:33::i;:::-;27559:45;;27502:102;27614:14;;;;;:51;;-1:-1:-1;27640:10:26;-1:-1:-1;;;;;27632:33:26;;;27614:51;27610:102;;;27679:33;27690:9;27701:10;27679;:33::i;22237:335::-;1373:10:25;-1:-1:-1;;;;;1395:11:25;1373:34;;1365:61;;;;-1:-1:-1;;;1365:61:25;;;;;;;;;;;;22357:6:26::1;:18;;;22334:19;;:41;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;22385:12:26::1;::::0;::::1;;:16:::0;22381:90:::1;;-1:-1:-1::0;;;;;22403:10:26::1;:18;;22422:9:::0;::::1;22433:12;::::0;::::1;;22447:23;:21;;::::0;;::::1;::::0;::::1;22422:6:::0;22447:21:::1;:::i;:23::-;22403:68;::::0;-1:-1:-1;;;;;;22403:68:26::1;::::0;;;;;;::::1;::::0;::::1;12992:25:125::0;;;;13033:18;;;13026:34;;;;13076:18;;;13069:34;12965:18;;22403:68:26::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22381:90;22481:12;::::0;::::1;;:16:::0;22477:90:::1;;-1:-1:-1::0;;;;;22499:10:26::1;:18;;22518:9:::0;::::1;22529:12;::::0;::::1;;22543:23;:21;;::::0;;::::1;::::0;::::1;22518:6:::0;22543:21:::1;:::i;:23::-;22499:68;::::0;-1:-1:-1;;;;;;22499:68:26::1;::::0;;;;;;::::1;::::0;::::1;12992:25:125::0;;;;13033:18;;;13026:34;;;;13076:18;;;13069:34;12965:18;;22499:68:26::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2156:206:25::0;2241:4;-1:-1:-1;;;;;;2260:40:25;;-1:-1:-1;;;2260:40:25;;:97;;-1:-1:-1;;;;;;;2304:53:25;;-1:-1:-1;;;2304:53:25;2253:104;2156:206;-1:-1:-1;;2156:206:25:o;9360:617:27:-;9505:36;;-1:-1:-1;;;9505:36:27;;9535:4;9505:36;;;2390:51:125;9462:18:27;;;;-1:-1:-1;;;;;9505:21:27;;;;;2363:18:125;;9505:36:27;;;;;;;;;;;;;;;;;;-1:-1:-1;9505:36:27;;;;;;;;-1:-1:-1;;9505:36:27;;;;;;;;;;;;:::i;:::-;;;9501:234;;;9588:14;9579:6;:23;9575:94;;;9623:4;9614:13;;9654:6;9637:23;;9575:94;9542:184;9501:234;9744:64;;-1:-1:-1;;;9744:64:27;;;;;9250:25:125;;;9787:4:27;9291:18:125;;;9284:60;;;9360:18;;;9353:60;-1:-1:-1;;;;;9744:18:27;;;;;9223::125;;9744:64:27;;;;;;;;;;;;;;;;;;;-1:-1:-1;9744:64:27;;;;;;;;-1:-1:-1;;9744:64:27;;;;;;;;;;;;:::i;:::-;;;9740:233;;9917:11;-1:-1:-1;;;;;9888:57:27;;9930:14;9888:57;;;;641:25:125;;629:2;614:18;;497:175;9888:57:27;;;;;;;;-1:-1:-1;9962:4:27;9740:233;;;9855:6;-1:-1:-1;9740:233:27;9360:617;;;;;:::o;9850:377:26:-;9947:1;9927:16;:21;9923:256;;9958:47;9987:16;9958:20;:47::i;:::-;9923:256;;;10026:14;10043:35;10060:17;10061:16;10060:17;:::i;10043:35::-;10026:52;-1:-1:-1;10094:11:26;;10144:17;10145:16;10144:17;:::i;:::-;10164:6;10086:86;;;;;;-1:-1:-1;;;10086:86:26;;;;;12711:25:125;;;;12752:18;;;12745:34;12684:18;;10086:86:26;12541:244:125;10086:86:26;;;10018:161;9923:256;10184:38;10205:16;10184:20;:38::i;19299:327::-;19357:7;19372:17;19403:5;19392:8;;:16;;;;:::i;:::-;19372:36;;19414:17;19434:27;19446:14;:12;:14::i;19434:27::-;19414:47;;19485:10;19471;:24;19467:82;;-1:-1:-1;19505:8:26;:21;-1:-1:-1;19541:1:26;;19299:327;-1:-1:-1;19299:327:26:o;19467:82::-;19554:8;:21;;;19565:10;19596:11;19597:10;19596:11;:::i;:::-;:24;;;;:::i;:::-;19581:40;19299:327;-1:-1:-1;;;;19299:327:26:o;25767:489::-;25839:12;;;;:16;25835:206;;25865:10;-1:-1:-1;;;;;25865:20:26;;25895:6;:9;;;25914:6;:12;;;25936:23;:6;:21;:23::i;:::-;25999:26;:6;:24;:26::i;:::-;25976:6;:12;;;25969:57;;;;:::i;:::-;25865:169;;-1:-1:-1;;;;;;25865:169:26;;;;;;;;;;15596:25:125;;;;15637:18;;;15630:34;;;;15680:18;;;15673:34;15723:18;;;15716:34;15568:19;;25865:169:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25835:206;26050:12;;;;:16;26046:206;;26076:10;-1:-1:-1;;;;;26076:20:26;;26106:6;:9;;;26125:6;:12;;;26147:23;:6;:21;:23::i;:::-;26210:26;:6;:24;:26::i;:::-;26187:6;:12;;;26180:57;;;;:::i;:::-;26076:169;;-1:-1:-1;;;;;;26076:169:26;;;;;;;;;;15596:25:125;;;;15637:18;;;15630:34;;;;15680:18;;;15673:34;15723:18;;;15716:34;15568:19;;26076:169:26;15367:389:125;18069:892:26;18169:6;18181:401;;;;18217:33;;-1:-1:-1;;;18217:33:26;;18244:4;18217:33;;;2390:51:125;18200:14:26;;18217:10;-1:-1:-1;;;;;18217:18:26;;;;2363::125;;18217:33:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18200:50;;18281:13;:11;:13::i;:::-;18262:15;18271:6;18262;:15;:::i;:::-;:32;18258:318;;18313:41;;-1:-1:-1;;;18313:41:26;;;;;15262:25:125;;;-1:-1:-1;;;;;15323:32:125;;;15303:18;;;15296:60;18313:10:26;:23;;;;15235:18:125;;18313:41:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18306:48;;18258:318;;;18382:13;:11;:13::i;:::-;18373:6;:22;18369:207;;;18431:18;18470:13;:11;:13::i;:::-;18452:15;18461:6;18452;:15;:::i;:::-;:31;;;;:::i;:::-;18431:52;-1:-1:-1;;;;;;18513:10:26;:23;;18537:19;18431:52;18537:6;:19;:::i;:::-;18513:54;;-1:-1:-1;;;;;;18513:54:26;;;;;;;;;;15262:25:125;;;;-1:-1:-1;;;;;15323:32:125;;15303:18;;;15296:60;15235:18;;18513:54:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18500:67;;:10;:67;:::i;:::-;18493:74;;18397:179;18369:207;18192:390;18181:401;18591:9;;18587:370;;18755:13;:11;:13::i;:::-;18711:33;;-1:-1:-1;;;18711:33:26;;18738:4;18711:33;;;2390:51:125;18747:4:26;;18711:10;-1:-1:-1;;;;;18711:18:26;;;;2363::125;;18711:33:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;;;;:::i;:::-;:57;18707:128;;18787:39;;-1:-1:-1;;;18787:39:26;;;;;15262:25:125;;;-1:-1:-1;;;;;15323:32:125;;;15303:18;;;15296:60;18787:10:26;:23;;;;15235:18:125;;18787:39:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18780:46;;18707:128;18916:4;:9;;18908:42;;;;-1:-1:-1;;;18908:42:26;;;;;;641:25:125;;629:2;614:18;;497:175;4034:510:27;4115:11;-1:-1:-1;;;;;4115:25:27;;4107:71;;;;-1:-1:-1;;;4107:71:27;;-1:-1:-1;;;;;2408:32:125;;;4107:71:27;;;2390:51:125;2363:18;;4107:71:27;2223:224:125;4107:71:27;;4188:6;4198:1;4188:11;4184:24;;4034:510;;:::o;4184:24::-;4213:15;4231:10;:8;:10::i;:::-;4213:28;;4261:6;4251:7;:16;4247:209;;;4277:11;4291:12;9271:7:26;:18;-1:-1:-1;;;;;9271:18:26;;9196:98;4291:12:27;4277:26;-1:-1:-1;;;;;;4315:25:27;;;4311:81;;4352:31;4362:2;4366:16;4375:7;4366:6;:16;:::i;:::-;4352:9;:31::i;:::-;4269:187;4247:209;-1:-1:-1;;;;;4465:28:27;;4488:4;4465:28;4461:78;;4495:44;4519:11;4532:6;4495:10;:8;:10::i;:::-;-1:-1:-1;;;;;4495:23:27;;:44;:23;:44::i;13248:164:26:-;13304:7;13386:10;:8;:10::i;:::-;-1:-1:-1;;;;;13386:19:26;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13380:27;;:2;:27;:::i;:::-;13363:44;;:14;;;:44;:::i;4328:312:76:-;4408:4;-1:-1:-1;;;;;4417:6:76;4400:23;;;:120;;;4514:6;-1:-1:-1;;;;;4478:42:76;:32;-1:-1:-1;;;;;;;;;;;1519:53:72;-1:-1:-1;;;;;1519:53:72;;1441:138;4478:32:76;-1:-1:-1;;;;;4478:42:76;;;4400:120;4383:251;;;4594:29;;-1:-1:-1;;;4594:29:76;;;;;;;;;;;4383:251;4328:312::o;1807:106:25:-;1880:28;1900:7;1880:19;:28::i;5782:538:76:-;5899:17;-1:-1:-1;;;;;5881:50:76;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5881:52:76;;;;;;;;-1:-1:-1;;5881:52:76;;;;;;;;;;;;:::i;:::-;;;5877:437;;6243:60;;-1:-1:-1;;;6243:60:76;;-1:-1:-1;;;;;2408:32:125;;6243:60:76;;;2390:51:125;2363:18;;6243:60:76;2223:224:125;5877:437:76;-1:-1:-1;;;;;;;;;;;5975:40:76;;5971:120;;6042:34;;-1:-1:-1;;;6042:34:76;;;;;641:25:125;;;614:18;;6042:34:76;497:175:125;5971:120:76;6104:54;6134:17;6153:4;6104:29;:54::i;13112:132:26:-;13200:19;;13171:6;;13200:38;;13227:5;1544:4;13200:26;:38::i;:::-;13192:47;;;:::i;16296:213:106:-;16352:6;16382:16;16374:24;;16370:103;;;16421:41;;-1:-1:-1;;;16421:41:106;;16452:2;16421:41;;;18131:36:125;18183:18;;;18176:34;;;18104:18;;16421:41:106;17950:266:125;16370:103:106;-1:-1:-1;16496:5:106;16296:213::o;4757::76:-;4831:4;-1:-1:-1;;;;;4840:6:76;4823:23;;4819:145;;4924:29;;-1:-1:-1;;;4924:29:76;;;;;;;;;;;19845:108:26;19933:14;19914:8;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;;;19845:108:26:o;9071:205:75:-;9129:30;;3147:66;9186:27;8819:122;7981:127:26;6929:20:75;:18;:20::i;:::-;8047:16:26::1;:14;:16::i;:::-;8069:34;:32;:34::i;1662:232:82:-:0;1767:47;1785:5;1792:4;1798:2;1802:5;1809:4;1767:17;:47::i;:::-;1762:126;;1837:40;;-1:-1:-1;;;1837:40:82;;-1:-1:-1;;;;;2408:32:125;;1837:40:82;;;2390:51:125;2363:18;;1837:40:82;2223:224:125;13416:183:26;13480:6;13545:49;13561:10;:8;:10::i;:::-;-1:-1:-1;;;;;13561:19:26;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13555:27;;:2;:27;:::i;:::-;13546:36;;:6;:36;:::i;:::-;13545:47;:49::i;10077:121:27:-;10120:7;10157:10;:8;:10::i;:::-;10142:51;;-1:-1:-1;;;10142:51:27;;10187:4;10142:51;;;2390::125;-1:-1:-1;;;;;10142:36:27;;;;;;;2363:18:125;;10142:51:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;8525:386::-;8597:58;;-1:-1:-1;;;8597:58:27;;;;;9250:25:125;;;8634:4:27;9291:18:125;;;9284:60;;;9360:18;;;9353:60;-1:-1:-1;;;;;8597:20:27;;;;;9223:18:125;;8597:58:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8674:9;;8665:6;:18;8661:246;;;8797:42;8828:9;;8819:6;:18;;;;:::i;8797:42::-;8859:1;8847:9;:13;3911:214:76;;:::o;8661:246:27:-;8894:6;8881:9;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;8525:386:27;;:::o;8724:178:23:-;8797:7;8819:78;643:4;8880:16;8889:6;8880:8;:16::i;:::-;8865:31;;:6;:12;;;:31;;;;:::i;:::-;696:8;8820:6;:12;;;:31;;;;:::i;:::-;8819:40;:78;:40;:78::i;9199:171::-;9275:7;9349:16;9358:6;9349:8;:16::i;:::-;9297:68;;9332:6;:12;;;9314:30;;:15;:30;;;;:::i;:::-;9298:6;:12;;;:47;;;;:::i;:::-;9297:68;;;;:::i;9751:178::-;9824:7;9846:78;643:4;9907:16;9916:6;9907:8;:16::i;:::-;9892:31;;:6;:12;;;:31;;;;:::i;:::-;696:8;9847:6;:12;;;:31;;;;:::i;10226:171::-;10302:7;10376:16;10385:6;10376:8;:16::i;:::-;10324:68;;10359:6;:12;;;10341:30;;:15;:30;;;;:::i;:::-;10325:6;:12;;;:47;;;;:::i;26473:717:26:-;26639:12;;;;:16;26635:273;;26665:10;-1:-1:-1;;;;;26665:30:26;;26705:6;:9;;;26724:6;:12;;;26746:23;:6;:21;:23::i;:::-;26823:26;:6;:24;:26::i;:::-;26801:11;26786:6;:12;;;:26;;;;:::i;:::-;26779:71;;;;:::i;:::-;26665:236;;-1:-1:-1;;;;;;26665:236:26;;;;;;;;;;18506:25:125;;;;18547:18;;;18540:34;;;;18590:18;;;18583:34;18633:18;;;18626:34;-1:-1:-1;;;;;18697:32:125;;18676:19;;;18669:61;18746:19;;;18739:35;;;18478:19;;26665:236:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26635:273;26917:12;;;;:16;26913:273;;26943:10;-1:-1:-1;;;;;26943:30:26;;26983:6;:9;;;27002:6;:12;;;27024:23;:6;:21;:23::i;:::-;27101:26;:6;:24;:26::i;:::-;27079:11;27064:6;:12;;;:26;;;;:::i;:::-;27057:71;;;;:::i;:::-;26943:236;;-1:-1:-1;;;;;;26943:236:26;;;;;;;;;;18506:25:125;;;;18547:18;;;18540:34;;;;18590:18;;;18583:34;18633:18;;;18626:34;-1:-1:-1;;;;;18697:32:125;;18676:19;;;18669:61;18746:19;;;18739:35;;;18478:19;;26943:236:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26473:717;;;;:::o;28074:825::-;28191:26;;-1:-1:-1;;;28191:26:26;;28211:4;28191:26;;;2390:51:125;28150:7:26;;;;-1:-1:-1;;;;;28191:11:26;;;;;2363:18:125;;28191:26:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28165:52;;28227:15;28246:1;28227:20;28223:48;;28256:15;28249:22;;;;;28223:48;28277:19;28299:42;28308:15;28325;28299:8;:42::i;:::-;28277:64;;28366:11;28347:8;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;28444:39:26;;-1:-1:-1;28464:4:26;28471:11;28444;:39::i;:::-;28590:11;28538:10;:8;:10::i;:::-;:49;;-1:-1:-1;;;28538:49:26;;28567:4;28538:49;;;5017:51:125;-1:-1:-1;;;;;5104:32:125;;;5084:18;;;5077:60;28538:20:26;;;;;;;4990:18:125;;28538:49:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:63;28534:272;;;28750:10;:8;:10::i;:::-;:49;;-1:-1:-1;;;28750:49:26;;-1:-1:-1;;;;;14751:32:125;;;28750:49:26;;;14733:51:125;14800:18;;;14793:34;;;28750:18:26;;;;;;;14706::125;;28750:49:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28534:272;28811:41;;-1:-1:-1;;;28811:41:26;;;;;15262:25:125;;;28846:4:26;15303:18:125;;;15296:60;-1:-1:-1;;;;;28811:13:26;;;;;15235:18:125;;28811:41:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28883:11;28865:15;:29;;;;:::i;:::-;28858:36;28074:825;-1:-1:-1;;;;;28074:825:26:o;5829:100:27:-;5898:26;;641:25:125;;;5898:26:27;;629:2:125;614:18;5898:26:27;497:175:125;1219:204:82;1306:37;1320:5;1327:2;1331:5;1338:4;1306:13;:37::i;:::-;1301:116;;1366:40;;-1:-1:-1;;;1366:40:82;;-1:-1:-1;;;;;2408:32:125;;1366:40:82;;;2390:51:125;2363:18;;1366:40:82;2223:224:125;8442:467:26;8525:34;8551:7;8525:25;:34::i;:::-;8565:22;8607:7;8565:50;;8622:13;8637;8654:5;-1:-1:-1;;;;;8654:10:26;;:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8621:45;;;;8689:10;-1:-1:-1;;;;;8680:19:26;:5;-1:-1:-1;;;;;8680:19:26;;:56;;;-1:-1:-1;8711:10:26;-1:-1:-1;;;;;8703:33:26;;8680:56;8766:10;8778:5;8672:113;;;;;;-1:-1:-1;;;8672:113:26;;-1:-1:-1;;;;;5035:32:125;;;8672:113:26;;;5017:51:125;5104:32;;5084:18;;;5077:60;4990:18;;8672:113:26;4809:334:125;8672:113:26;;;8808:10;-1:-1:-1;;;;;8799:19:26;:5;-1:-1:-1;;;;;8799:19:26;;:56;;;-1:-1:-1;8830:10:26;-1:-1:-1;;;;;8822:33:26;;8799:56;8885:10;8897:5;8791:113;;;;;;-1:-1:-1;;;8791:113:26;;-1:-1:-1;;;;;5035:32:125;;;8791:113:26;;;5017:51:125;5104:32;;5084:18;;;5077:60;4990:18;;8791:113:26;4809:334:125;2264:344:72;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:72;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;2454:148::-;2573:18;:16;:18::i;7258:3683:105:-;7340:14;7391:12;7405:11;7420:12;7427:1;7430;7420:6;:12::i;:::-;7390:42;;;;7514:4;7522:1;7514:9;7510:365;;7849:11;7843:3;:17;;;;;:::i;:::-;;7836:24;;;;;;7510:365;8000:4;7985:11;:19;7981:142;;8024:84;5328:5;8044:16;;5327:36;940:4:95;5322:42:105;8024:11;:84::i;:::-;8375:17;8526:11;8523:1;8520;8513:25;8918:12;8948:15;;;8933:31;;9083:22;;;;;9816:1;9797;:15;;9796:21;;10049;;;10045:25;;10034:36;10119:21;;;10115:25;;10104:36;10191:21;;;10187:25;;10176:36;10262:21;;;10258:25;;10247:36;10335:21;;;10331:25;;10320:36;10409:21;;;10405:25;;;10394:36;9325:12;;;;9321:23;;;9346:1;9317:31;8638:18;;;8628:29;;;9432:11;;;;8681:19;;;;9176:14;;;;9425:18;;;;10884:13;;-1:-1:-1;;7258:3683:105;;;;;;:::o;7082:141:75:-;7149:17;:15;:17::i;:::-;7144:73;;7189:17;;-1:-1:-1;;;7189:17:75;;;;;;;;;;;3293:91:27;6929:20:75;:18;:20::i;:::-;3351:28:27::1;:26;:28::i;8163:275:26:-:0;6929:20:75;:18;:20::i;:::-;8292:141:26::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;8292:141:26;;;::::1;::::0;::::1;::::0;;;;;;;;;;1651:3:::1;8292:141:::0;;;;;8282:7:::1;:151:::0;;-1:-1:-1;;;;;;8282:151:26;-1:-1:-1;;;8282:151:26::1;::::0;;8163:275::o;10165:1393:82:-;10460:4;10454:11;-1:-1:-1;;;10323:12:82;10478:22;;;-1:-1:-1;;;;;10526:26:82;;;10520:4;10513:40;10579:24;;10573:4;10566:38;10624:4;10617:19;;;10323:12;10700:4;10323:12;10688:4;10323:12;;10672:5;10665;10660:45;10649:56;;10917:1;10910:4;10904:11;10901:18;10892:7;10888:32;10878:606;;11049:6;11039:7;11032:15;11028:28;11025:165;;;11105:16;11099:4;11094:3;11079:43;11155:16;11150:3;11143:29;11025:165;11466:1;11458:5;11446:18;11443:25;11424:16;11417:24;11413:56;11404:7;11400:70;11389:81;;10878:606;11504:4;11497:17;-1:-1:-1;11540:1:82;11534:4;11527:15;10165:1393;;-1:-1:-1;;;;;10165:1393:82:o;15296:213:106:-;15352:6;15382:16;15374:24;;15370:103;;;15421:41;;-1:-1:-1;;;15421:41:106;;15452:2;15421:41;;;18131:36:125;18183:18;;;18176:34;;;18104:18;;15421:41:106;17950:266:125;10461:125:23;10528:6;10569;:12;;;10549:6;:17;;;:32;;;;:::i;5633:111:105:-;5691:7;5328:5;;;5725;;;5327:36;5322:42;;5717:20;5087:294;8373:1244:82;8600:4;8594:11;-1:-1:-1;;;8467:12:82;8618:22;;;-1:-1:-1;;;;;8666:24:82;;8660:4;8653:38;8711:4;8704:19;;;8467:12;8787:4;8467:12;8775:4;8467:12;;8759:5;8752;8747:45;8736:56;;9004:1;8997:4;8991:11;8988:18;8979:7;8975:32;8965:606;;9136:6;9126:7;9119:15;9115:28;9112:165;;;9192:16;9186:4;9181:3;9166:43;9242:16;9237:3;9230:29;9112:165;9553:1;9545:5;9533:18;9530:25;9511:16;9504:24;9500:56;9491:7;9487:70;9476:81;;8965:606;9591:4;9584:17;-1:-1:-1;8373:1244:82;;-1:-1:-1;;;;8373:1244:82:o;1917:180:25:-;2041:11;-1:-1:-1;;;;;1995:57:25;2016:7;-1:-1:-1;;;;;1995:40:25;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1995:57:25;;1991:101;;2061:31;;-1:-1:-1;;;2061:31:25;;;;;;;;;;;1671:281:72;1748:17;-1:-1:-1;;;;;1748:29:72;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:72;;-1:-1:-1;;;;;2408:32:125;;1805:47:72;;;2390:51:125;2363:18;;1805:47:72;2223:224:125;1744:119:72;-1:-1:-1;;;;;;;;;;;1872:73:72;;-1:-1:-1;;;;;;1872:73:72;-1:-1:-1;;;;;1872:73:72;;;;;;;;;;1671:281::o;4691:549:87:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:87;4583:16:91;4886:33:87;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:87;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:87;;-1:-1:-1;;;;;2408:32:125;;5045:24:87;;;2390:51:125;2363:18;;5045:24:87;2223:224:125;5011:223:87;4583:16:91;5090:33:87;5086:148;;5139:27;:25;:27::i;:::-;5086:148;;;5204:19;;-1:-1:-1;;;5204:19:87;;;;;;;;;;;5086:148;4788:452;4691:549;;;;:::o;6113:122:72:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:72;;;;;;;;;;;1027:550:105;1088:12;;-1:-1:-1;;1471:1:105;1468;1461:20;1501:9;;;;1549:11;;;1535:12;;;;1531:30;;;;;1027:550;-1:-1:-1;;1027:550:105:o;1776:194:95:-;1881:10;1875:4;1868:24;1918:4;1912;1905:18;1949:4;1943;1936:18;8485:120:75;8535:4;8558:26;:24;:26::i;:::-;:40;-1:-1:-1;;;8558:40:75;;;;;;-1:-1:-1;8485:120:75:o;1737:66:25:-;6929:20:75;:18;:20::i;3383:242:91:-;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:91:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;14:286:125;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:125;;209:43;;199:71;;266:1;263;256:12;677:141;-1:-1:-1;;;;;762:31:125;;752:42;;742:70;;808:1;805;798:12;823:118;909:5;902:13;895:21;888:5;885:32;875:60;;931:1;928;921:12;946:410;1029:6;1037;1090:2;1078:9;1069:7;1065:23;1061:32;1058:52;;;1106:1;1103;1096:12;1058:52;1145:9;1132:23;1164:41;1199:5;1164:41;:::i;:::-;1224:5;-1:-1:-1;1281:2:125;1266:18;;1253:32;1294:30;1253:32;1294:30;:::i;:::-;1343:7;1333:17;;;946:410;;;;;:::o;1543:159::-;1606:5;1651:3;1642:6;1637:3;1633:16;1629:26;1626:46;;;1668:1;1665;1658:12;1626:46;-1:-1:-1;1690:6:125;1543:159;-1:-1:-1;1543:159:125:o;1707:511::-;1814:6;1822;1830;1883:3;1871:9;1862:7;1858:23;1854:33;1851:53;;;1900:1;1897;1890:12;1851:53;1939:9;1926:23;1958:41;1993:5;1958:41;:::i;:::-;2018:5;-1:-1:-1;2042:66:125;2100:7;2095:2;2080:18;;2042:66;:::i;:::-;1707:511;;2032:76;;-1:-1:-1;;;2181:3:125;2166:19;;;;2153:33;;1707:511::o;2452:127::-;2513:10;2508:3;2504:20;2501:1;2494:31;2544:4;2541:1;2534:15;2568:4;2565:1;2558:15;2584:252;2656:2;2650:9;2698:3;2686:16;;2732:18;2717:34;;2753:22;;;2714:62;2711:88;;;2779:18;;:::i;:::-;2815:2;2808:22;2584:252;:::o;2841:275::-;2912:2;2906:9;2977:2;2958:13;;-1:-1:-1;;2954:27:125;2942:40;;3012:18;2997:34;;3033:22;;;2994:62;2991:88;;;3059:18;;:::i;:::-;3095:2;3088:22;2841:275;;-1:-1:-1;2841:275:125:o;3121:910::-;3198:6;3206;3259:2;3247:9;3238:7;3234:23;3230:32;3227:52;;;3275:1;3272;3265:12;3227:52;3314:9;3301:23;3333:41;3368:5;3333:41;:::i;:::-;3393:5;-1:-1:-1;3449:2:125;3434:18;;3421:32;3476:18;3465:30;;3462:50;;;3508:1;3505;3498:12;3462:50;3531:22;;3584:4;3576:13;;3572:27;-1:-1:-1;3562:55:125;;3613:1;3610;3603:12;3562:55;3653:2;3640:16;3679:18;3671:6;3668:30;3665:56;;;3701:18;;:::i;:::-;3743:57;3790:2;3767:17;;-1:-1:-1;;3763:31:125;3796:2;3759:40;3743:57;:::i;:::-;3823:6;3816:5;3809:21;3871:7;3866:2;3857:6;3853:2;3849:15;3845:24;3842:37;3839:57;;;3892:1;3889;3882:12;3839:57;3947:6;3942:2;3938;3934:11;3929:2;3922:5;3918:14;3905:49;3999:1;3994:2;3985:6;3978:5;3974:18;3970:27;3963:38;4020:5;4010:15;;;;;3121:910;;;;;:::o;4036:361::-;4101:6;4109;4162:2;4150:9;4141:7;4137:23;4133:32;4130:52;;;4178:1;4175;4168:12;4130:52;4223:23;;;-1:-1:-1;4322:2:125;4307:18;;4294:32;4335:30;4294:32;4335:30;:::i;5148:245::-;5237:6;5290:3;5278:9;5269:7;5265:23;5261:33;5258:53;;;5307:1;5304;5297:12;5258:53;5330:57;5379:7;5368:9;5330:57;:::i;5398:226::-;5457:6;5510:2;5498:9;5489:7;5485:23;5481:32;5478:52;;;5526:1;5523;5516:12;5478:52;-1:-1:-1;5571:23:125;;5398:226;-1:-1:-1;5398:226:125:o;5629:346::-;5697:6;5705;5758:2;5746:9;5737:7;5733:23;5729:32;5726:52;;;5774:1;5771;5764:12;5726:52;-1:-1:-1;;5819:23:125;;;5939:2;5924:18;;;5911:32;;-1:-1:-1;5629:346:125:o;5980:377::-;6048:6;6056;6109:2;6097:9;6088:7;6084:23;6080:32;6077:52;;;6125:1;6122;6115:12;6077:52;6170:23;;;-1:-1:-1;6269:2:125;6254:18;;6241:32;6282:43;6241:32;6282:43;:::i;6588:418::-;6737:2;6726:9;6719:21;6700:4;6769:6;6763:13;6812:6;6807:2;6796:9;6792:18;6785:34;6871:6;6866:2;6858:6;6854:15;6849:2;6838:9;6834:18;6828:50;6927:1;6922:2;6913:6;6902:9;6898:22;6894:31;6887:42;6997:2;6990;6986:7;6981:2;6973:6;6969:15;6965:29;6954:9;6950:45;6946:54;6938:62;;;6588:418;;;;:::o;7011:378::-;7139:6;7147;7200:3;7188:9;7179:7;7175:23;7171:33;7168:53;;;7217:1;7214;7207:12;7168:53;7240:57;7289:7;7278:9;7240:57;:::i;:::-;7230:67;;7316;7375:7;7369:3;7358:9;7354:19;7316:67;:::i;:::-;7306:77;;7011:378;;;;;:::o;7626:754::-;7751:6;7759;7767;7775;7783;7836:3;7824:9;7815:7;7811:23;7807:33;7804:53;;;7853:1;7850;7843:12;7804:53;7876:57;7925:7;7914:9;7876:57;:::i;:::-;7866:67;-1:-1:-1;8002:3:125;7987:19;;7974:33;;-1:-1:-1;8104:3:125;8089:19;;8076:33;;-1:-1:-1;8208:3:125;8193:19;;8180:33;;-1:-1:-1;8291:3:125;8276:19;;8263:33;8305:43;8263:33;8305:43;:::i;:::-;8367:7;8357:17;;;7626:754;;;;;;;;:::o;8385:261::-;8455:6;8508:2;8496:9;8487:7;8483:23;8479:32;8476:52;;;8524:1;8521;8514:12;8476:52;8556:9;8550:16;8575:41;8610:5;8575:41;:::i;8859:184::-;8929:6;8982:2;8970:9;8961:7;8957:23;8953:32;8950:52;;;8998:1;8995;8988:12;8950:52;-1:-1:-1;9021:16:125;;8859:184;-1:-1:-1;8859:184:125:o;9424:127::-;9485:10;9480:3;9476:20;9473:1;9466:31;9516:4;9513:1;9506:15;9540:4;9537:1;9530:15;9556:200;9622:9;;;9595:4;9650:9;;9678:10;;9690:12;;;9674:29;9713:12;;;9705:21;;9671:56;9668:82;;;9730:18;;:::i;9761:128::-;9828:9;;;9849:11;;;9846:37;;;9863:18;;:::i;9894:165::-;9961:20;;10021:12;10010:24;;10000:35;;9990:63;;10049:1;10046;10039:12;9990:63;9894:165;;;:::o;10064:1583::-;10151:6;10211:3;10199:9;10190:7;10186:23;10182:33;10227:2;10224:22;;;10242:1;10239;10232:12;10224:22;-1:-1:-1;10284:22:125;;:::i;:::-;10351:23;;10383:22;;10478:2;10463:18;;;10450:32;10498:14;;;10491:31;10595:2;10580:18;;;10567:32;10615:14;;;10608:31;10712:2;10697:18;;;10684:32;10732:14;;;10725:31;10829:3;10814:19;;;10801:33;10850:15;;;10843:32;10948:3;10933:19;;;10920:33;10969:15;;;10962:32;11067:3;11052:19;;;11039:33;11088:15;;;11081:32;11186:3;11171:19;;;11158:33;11207:15;;;11200:32;11305:3;11290:19;;;11277:33;11326:15;;;11319:32;11426:3;11411:19;;;11398:33;11447:15;;;11440:33;11506:38;11539:3;11524:19;;11506:38;:::i;:::-;11500:3;11493:5;11489:15;11482:63;11578:38;11611:3;11600:9;11596:19;11578:38;:::i;:::-;11572:3;11561:15;;11554:63;11565:5;10064:1583;-1:-1:-1;;;10064:1583:125:o;11652:216::-;11716:9;;;11744:11;;;11691:3;11774:9;;11802:10;;11798:19;;11827:10;;11819:19;;11795:44;11792:70;;;11842:18;;:::i;:::-;11792:70;;11652:216;;;;:::o;11873:168::-;11946:9;;;11977;;11994:15;;;11988:22;;11974:37;11964:71;;12015:18;;:::i;12046:127::-;12107:10;12102:3;12098:20;12095:1;12088:31;12138:4;12135:1;12128:15;12162:4;12159:1;12152:15;12178:217;12218:1;12244;12234:132;;12288:10;12283:3;12279:20;12276:1;12269:31;12323:4;12320:1;12313:15;12351:4;12348:1;12341:15;12234:132;-1:-1:-1;12380:9:125;;12178:217::o;12400:136::-;12435:3;-1:-1:-1;;;12456:22:125;;12453:48;;12481:18;;:::i;:::-;-1:-1:-1;12521:1:125;12517:13;;12400:136::o;14429:125::-;14494:9;;;14515:10;;;14512:36;;;14528:18;;:::i;14838:245::-;14905:6;14958:2;14946:9;14937:7;14933:23;14929:32;14926:52;;;14974:1;14971;14964:12;14926:52;15006:9;15000:16;15025:28;15047:5;15025:28;:::i;16051:273::-;16119:6;16172:2;16160:9;16151:7;16147:23;16143:32;16140:52;;;16188:1;16185;16178:12;16140:52;16220:9;16214:16;16270:4;16263:5;16259:16;16252:5;16249:27;16239:55;;16290:1;16287;16280:12;16329:375;16417:1;16435:5;16449:249;16470:1;16460:8;16457:15;16449:249;;;16520:4;16515:3;16511:14;16505:4;16502:24;16499:50;;;16529:18;;:::i;:::-;16579:1;16569:8;16565:16;16562:49;;;16593:16;;;;16562:49;16676:1;16672:16;;;;;16632:15;;16449:249;;;16329:375;;;;;;:::o;16709:902::-;16758:5;16788:8;16778:80;;-1:-1:-1;16829:1:125;16843:5;;16778:80;16877:4;16867:76;;-1:-1:-1;16914:1:125;16928:5;;16867:76;16959:4;16977:1;16972:59;;;;17045:1;17040:174;;;;16952:262;;16972:59;17002:1;16993:10;;17016:5;;;17040:174;17077:3;17067:8;17064:17;17061:43;;;17084:18;;:::i;:::-;-1:-1:-1;;17140:1:125;17126:16;;17199:5;;16952:262;;17298:2;17288:8;17285:16;17279:3;17273:4;17270:13;17266:36;17260:2;17250:8;17247:16;17242:2;17236:4;17233:12;17229:35;17226:77;17223:203;;;-1:-1:-1;17335:19:125;;;17411:5;;17223:203;17458:42;-1:-1:-1;;17483:8:125;17477:4;17458:42;:::i;:::-;17536:6;17532:1;17528:6;17524:19;17515:7;17512:32;17509:58;;;17547:18;;:::i;:::-;17585:20;;16709:902;-1:-1:-1;;;16709:902:125:o;17616:140::-;17674:5;17703:47;17744:4;17734:8;17730:19;17724:4;17703:47;:::i;19090:439::-;19203:6;19211;19264:2;19252:9;19243:7;19239:23;19235:32;19232:52;;;19280:1;19277;19270:12;19232:52;19312:9;19306:16;19331:41;19366:5;19331:41;:::i;:::-;19441:2;19426:18;;19420:25;19391:5;;-1:-1:-1;19454:43:125;19420:25;19454:43;:::i;19805:176::-;19904:12;19897:20;;;19875;;;19871:47;;19930:22;;19927:48;;;19955:18;;:::i"},"methodIdentifiers":{"UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","activePurePremiums()":"1a548a27","borrowedActivePP()":"e823584a","currency()":"e5a6b10f","deficitRatio()":"4863c8b0","depositIntoYieldVault(uint256)":"ac860f74","etks()":"5e445859","fundsAvailable()":"4fe0bd1e","initialize()":"8129fc1c","investedInYV()":"7d919a97","jrLoanLimit()":"2d8f892a","juniorEtk()":"536ebbfc","policyCancelled((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256,address)":"ee1f9a6a","policyCreated((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"f79ac183","policyExpired((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"76185ff1","policyPool()":"4d15eb03","policyReplaced((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"d5c6c166","policyResolvedWithPayout(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)":"1dda2899","proxiableUUID()":"52d1902d","purePremiums()":"26ccbd22","receiveGrant(uint256)":"81ced71f","recordEarnings()":"4eb978a4","repayLoans()":"f39a4bc5","seniorEtk()":"7b83037b","setDeficitRatio(uint256,bool)":"50093f04","setLoanLimits(uint256,uint256)":"97a146c0","setYieldVault(address,bool)":"194448e5","srLoanLimit()":"7bb62319","supportsInterface(bytes4)":"01ffc9a7","surplus()":"13888565","upgradeToAndCall(address,bytes)":"4f1ef286","withdrawFromYieldVault(uint256)":"d336078c","withdrawWonPremiums(uint256,address)":"a0ce58b8","wonPurePremiums()":"536c9a43","yieldVault()":"a7f8a5e2"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"policyPool_\",\"type\":\"address\"},{\"internalType\":\"contract IEToken\",\"name\":\"juniorEtk_\",\"type\":\"address\"},{\"internalType\":\"contract IEToken\",\"name\":\"seniorEtk_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountLeft\",\"type\":\"uint256\"}],\"name\":\"CannotBeBorrowed\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"int256\",\"name\":\"currentDeficit\",\"type\":\"int256\"},{\"internalType\":\"int256\",\"name\":\"newMaxDeficit\",\"type\":\"int256\"}],\"name\":\"DeficitExceedsMaxDeficit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newDeficitRatio\",\"type\":\"uint256\"}],\"name\":\"InvalidDeficitRatio\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"}],\"name\":\"InvalidDestination\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"loanLimit\",\"type\":\"uint256\"}],\"name\":\"InvalidLoanLimit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"oldEToken\",\"type\":\"address\"},{\"internalType\":\"contract IEToken\",\"name\":\"newEToken\",\"type\":\"address\"}],\"name\":\"InvalidUpgradeETokenChanged\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidYieldVault\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"losses\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"excess\",\"type\":\"uint256\"}],\"name\":\"LossesCannotExceedMaxDeficit\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"required\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"available\",\"type\":\"uint256\"}],\"name\":\"NotEnoughCash\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ReserveInvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangePolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amountRequired\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"surplus\",\"type\":\"int256\"}],\"name\":\"WithdrawExceedsSurplus\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldRatio\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newRatio\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"adjustment\",\"type\":\"uint256\"}],\"name\":\"DeficitRatioChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"earnings\",\"type\":\"int256\"}],\"name\":\"EarningsRecorded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"ErrorIgnoredDeinvestingVault\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldLimit\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newLimit\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"isSenior\",\"type\":\"bool\"}],\"name\":\"LoanLimitChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"moneyIn\",\"type\":\"bool\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"WonPremiumsInOut\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"newVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"forced\",\"type\":\"bool\"}],\"name\":\"YieldVaultChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"activePurePremiums\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"borrowedActivePP\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"deficitRatio\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"depositIntoYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"etks\",\"outputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"fundsAvailable\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"investedInYV\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"jrLoanLimit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"juniorEtk\",\"outputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"policyHolder\",\"type\":\"address\"}],\"name\":\"policyCancelled\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"policyCreated\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"policyExpired\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"newPolicy\",\"type\":\"tuple\"}],\"name\":\"policyReplaced\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"policyHolder\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"policyResolvedWithPayout\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"purePremiums\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"receiveGrant\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"recordEarnings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"repayLoans\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"available\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"seniorEtk\",\"outputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newRatio\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"adjustment\",\"type\":\"bool\"}],\"name\":\"setDeficitRatio\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newLimitJr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"newLimitSr\",\"type\":\"uint256\"}],\"name\":\"setLoanLimits\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"newYieldVault\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"force\",\"type\":\"bool\"}],\"name\":\"setYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"srLoanLimit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"surplus\",\"outputs\":[{\"internalType\":\"int256\",\"name\":\"\",\"type\":\"int256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFromYieldVault\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"deinvested\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"}],\"name\":\"withdrawWonPremiums\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"wonPurePremiums\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"yieldVault\",\"outputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"Pure premiums is the part of the premium that is expected to cover the losses. The contract keeps track of the pure premiums of the active policies (_activePurePremiums) and the surplus or deficit generated by the finalized policies (pure premiums collected - losses). Collaborates with a junior {EToken} and a senior {EToken} that act as lenders when the premiums aren't enough to cover the losses.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"CannotBeBorrowed(uint256)\":[{\"params\":{\"amountLeft\":\"The remaining amount that could not be borrowed\"}}],\"DeficitExceedsMaxDeficit(int256,int256)\":[{\"params\":{\"currentDeficit\":\"Current deficit (positive value, i.e., `-surplus`)\",\"newMaxDeficit\":\"New maximum deficit (positive value, i.e., `-maxDeficit`)\"}}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidDeficitRatio(uint256)\":[{\"params\":{\"newDeficitRatio\":\"The proposed ratio (wad)\"}}],\"InvalidDestination(address)\":[{\"params\":{\"destination\":\"The provided destination address\"}}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"InvalidLoanLimit(uint256)\":[{\"params\":{\"loanLimit\":\"The provided limit value\"}}],\"InvalidUpgradeETokenChanged(address,address)\":[{\"details\":\"Upgrades must keep the same junior/senior eToken wiring (unless the current eToken is zero-address).\",\"params\":{\"newEToken\":\"The eToken reported by the new implementation\",\"oldEToken\":\"The currently configured eToken\"}}],\"LossesCannotExceedMaxDeficit(uint256,uint256)\":[{\"details\":\"`excess` is the remaining unpaid amount returned by `_payFromPremiums(losses)` after clamping to `_maxDeficit()`.\",\"params\":{\"excess\":\"The unpaid portion that exceeds the max-deficit capacity\",\"losses\":\"The total losses being applied\"}}],\"NotEnoughCash(uint256,uint256)\":[{\"params\":{\"available\":\"The currently available liquid balance\",\"required\":\"The requested amount of liquid funds\"}}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"ReserveInvalidReceiver(address)\":[{\"params\":{\"receiver\":\"The receiver that was provided (cannot be the zero address)\"}}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}],\"WithdrawExceedsSurplus(uint256,int256)\":[{\"params\":{\"amountRequired\":\"The requested amount to withdraw\",\"surplus\":\"The current surplus (can be negative)\"}}]},\"events\":{\"DeficitRatioChanged(uint256,uint256,uint256)\":{\"params\":{\"adjustment\":\"Adjustement (etk loan) made to adjust the contract, so deficit <= maxDeficit\",\"newRatio\":\"Ratio after the change\",\"oldRatio\":\"Ratio before the change\"}},\"EarningsRecorded(int256)\":{\"params\":{\"earnings\":\"The amount of earnings generated since last record. It's positive in the case of earnings or negative when there are losses.\"}},\"ErrorIgnoredDeinvestingVault(address,uint256)\":{\"params\":{\"oldVault\":\"The vault that failed to redeem\",\"shares\":\"The number of shares attempted to redeem\"}},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"LoanLimitChanged(uint256,uint256,bool)\":{\"params\":{\"isSenior\":\"If true, the limit changed is the senior limit, otherwise is the junior limit\",\"newLimit\":\"Limit after the change\",\"oldLimit\":\"Limit before the change\"}},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"},\"WonPremiumsInOut(bool,uint256)\":{\"details\":\"Emitted by `receiveGrant` when funds are received without liability, and by `withdrawWonPremiums` when surplus is withdrawn (typically to the treasury).\",\"params\":{\"moneyIn\":\"Indicates if money came in or out (false).\",\"value\":\"The amount of money received or given\"}},\"YieldVaultChanged(address,address,bool)\":{\"details\":\"When replacing an existing vault, the reserve attempts to redeem the full position (unless `force` is used).\",\"params\":{\"forced\":\"True if the switch ignored a partial/failed deinvestment and proceeded anyway\",\"newVault\":\"The new yield vault (can be `address(0)`)\",\"oldVault\":\"The previous yield vault (can be `address(0)`)\"}}},\"kind\":\"dev\",\"methods\":{\"activePurePremiums()\":{\"details\":\"Returns the total amount of pure premiums that were collected by the active policies of the risk modules linked to this PremiumsAccount.\"},\"borrowedActivePP()\":{\"details\":\"Returns the amount of active pure premiums that was used to cover payouts of finalized policies (in excess of collected pure premiums). This is limited by `_maxDeficit()`\"},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"deficitRatio()\":{\"details\":\"Returns the percentage of the active pure premiums that can be used to cover losses of finalized policies.\"},\"depositIntoYieldVault(uint256)\":{\"custom:pre\":\"_balance() >= amount\",\"params\":{\"amount\":\"Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\"}},\"fundsAvailable()\":{\"details\":\"Returns the amount of funds available to cover losses or repay eToken loans.\"},\"initialize()\":{\"details\":\"Initializes the PremiumsAccount\"},\"jrLoanLimit()\":{\"details\":\"Returns the limit on the Junior eToken loans (infinite if _params.jrLoanLimit == 0)\"},\"policyCancelled((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256,address)\":{\"params\":{\"jrCocRefund\":\"The jrCoc that will be reimbursed to the policy holder\",\"policyHolder\":\"Owner of the policy that will receive the reimbursement\",\"policyToCancel\":\"The policy that is being cancelled\",\"purePremiumRefund\":\"The pure premium amount that will be reimbursed to the policy holder\",\"srCocRefund\":\"The srCoc that will be reimbursed to the policy holder\"}},\"policyCreated((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"params\":{\"policy\":\"The policy to add (created in this transaction)\"}},\"policyExpired((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"params\":{\"policy\":\"The policy that has expired\"}},\"policyReplaced((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"params\":{\"newPolicy\":\"The policy that will replace the old one (created in this transaction)\",\"oldPolicy\":\"The policy to replace (created in a previous transaction)\"}},\"policyResolvedWithPayout(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"params\":{\"payout\":\"The amount that has to be transferred to `policyHolder`\",\"policy\":\"The policy that was resolved\",\"policyHolder\":\"The one that will receive the payout\"}},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"receiveGrant(uint256)\":{\"custom:emits\":\"{WonPremiumsInOut} with `moneyIn = true`\",\"custom:pre\":\"`msg.sender` approved `currency()` to this contract for at least `amount`\",\"details\":\"Can be used for example if the PolicyPool subscribes an excess loss policy with other company.\",\"params\":{\"amount\":\"The amount to be transferred.\"}},\"recordEarnings()\":{\"custom:emits\":\"{EarningsRecorded}\",\"details\":\"Computes the value of the assets invested in the yieldVault() and then calls `_yieldEarnings` to      reflect the earnings/losses in the way defined for each reserve.\"},\"repayLoans()\":{\"returns\":{\"available\":\"The funds still available after repayment\"}},\"setDeficitRatio(uint256,bool)\":{\"custom:emits\":\"{DeficitRatioChanged}\",\"custom:pre\":\"`newRatio <= WAD``newRatio` must be exactly representable with 4 decimals:             `uint256(uint16(newRatio / FOUR_DECIMAL_TO_WAD)) * FOUR_DECIMAL_TO_WAD == newRatio`If `adjustment == false`, then `_surplus >= _maxDeficit(newRatio)`\",\"custom:throws\":\"{InvalidDeficitRatio} if `newRatio` is out of range or not representable with 4 decimals{DeficitExceedsMaxDeficit} if `adjustment == false` and `_surplus < _maxDeficit(newRatio)`\",\"params\":{\"adjustment\":\"If true, allows borrowing from eTokens to satisfy the new max-deficit bound when needed.\",\"newRatio\":\"New deficit ratio (wad). Must be `<= WAD` and exactly representable with 4 decimals                 (multiple of `FOUR_DECIMAL_TO_WAD`).\"}},\"setLoanLimits(uint256,uint256)\":{\"custom:emits\":\"{LoanLimitChanged} once per updated limit (up to two emits)\",\"custom:pre\":\"For each limit `newLimit` that is updated (`newLimit != type(uint256).max`), it must be representable with 0 decimals:             `_toAmount(_toZeroDecimals(newLimit)) == newLimit`\",\"custom:throws\":\"{InvalidLoanLimit} if any provided limit cannot be packed/unpacked without losing precision\",\"params\":{\"newLimitJr\":\"The new limit to be set for the loans taken from the Junior eToken.                   If newLimitJr == MAX_UINT, it's ignored. If == 0, means the loans are unbounded.\",\"newLimitSr\":\"The new limit to be set for the loans taken from the Senior eToken.                   If newLimitSr == MAX_UINT, it's ignored. If == 0, means the loans are unbounded.\"}},\"setYieldVault(address,bool)\":{\"custom:emits\":\"{YieldVaultChanged}\",\"params\":{\"force\":\"When a previous yield vault exists, before setting the new one, the funds are deinvested. When              `force` is true, an error in the deinvestment of the assets (or some assets not withdrawable)              will be ignored. When `force` is false, it will revert if `oldVault.balanceOf(address(this)) != 0`.\",\"newYieldVault\":\"The address of the new yield vault to assign to the reserve. If is `address(0)` it means                      the reserve will not have a yield vault. If not `address(0)` it MUST be an IERC4626                      where `newYieldVault.asset()` equals `.currency()`\"}},\"srLoanLimit()\":{\"details\":\"Returns the limit on the Senior eToken loans (infinite if _params.srLoanLimit == 0)\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"surplus()\":{\"details\":\"Returns the surplus between pure premiums collected and payouts of finalized policies. Losses where more than premiums collected, returns a negative number that indicates the amount of the active pure premiums that was used to cover finalized premiums.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"},\"withdrawFromYieldVault(uint256)\":{\"custom:pre\":\"yieldVault() != address(0)yieldVault().maxWithdraw(address(this)) >= amount             (this condition is not checked here; exceeding it is expected to revert in the vault during _deinvest()).\",\"params\":{\"amount\":\"Amount to withdraw from the `yieldVault()`. If equal type(uint256).max, deinvests maxWithdraw()\"},\"returns\":{\"deinvested\":\"The amount that was deinvested and added as liquid funds to the reserve\"}},\"withdrawWonPremiums(uint256,address)\":{\"custom:emits\":\"{WonPremiumsInOut} with `moneyIn = false`\",\"custom:pre\":\"`destination != address(0)`If `amount != type(uint256).max`, then `int256(amount) <= _surplus`\",\"custom:throws\":\"{InvalidDestination} if `destination == address(0)`{WithdrawExceedsSurplus} if `amount != type(uint256).max` and `int256(amount) > _surplus`\",\"details\":\"This might be needed in some cases for example if we are deprecating the protocol or the excess premiums are needed to compensate something. Or to extract profits accrued either by Ensuro or the partners.\",\"params\":{\"amount\":\"The amount to withdraw. If amount == type(uint256).max it withdraws as much as possible and doesn't               fails. If amount != type(uint256).max it tries to withdraw that amount or it fails\",\"destination\":\"The address that will receive the transferred funds.\"},\"returns\":{\"_0\":\"Returns the actual amount withdrawn.\"}},\"wonPurePremiums()\":{\"details\":\"Returns the surplus between pure premiums collected and payouts of finalized policies. Returns 0 if no surplus or deficit.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"},\"_activePurePremiums\":{\"details\":\"The active pure premiums field keeps track of the pure premiums collected by the active policies of risk modules linked with this PremiumsAccount.\"},\"_juniorEtk\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"},\"_seniorEtk\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"},\"_surplus\":{\"details\":\"The surplus field keeps track of the surplus or deficit (when negative) of the actual payouts made by the PremiumsAccount versus the collected pure premiums. On the negative side, it has a limit defined by `_maxDeficit()`, after that limit, internal loans are taken from the eTokens.\"}},\"title\":\"Ensuro Premiums Account\",\"version\":1},\"userdoc\":{\"errors\":{\"CannotBeBorrowed(uint256)\":[{\"notice\":\"Thrown when the required funds cannot be fully borrowed from the configured eTokens within their limits.\"}],\"DeficitExceedsMaxDeficit(int256,int256)\":[{\"notice\":\"Thrown when attempting to set a deficit ratio without adjustment while the current deficit exceeds the new maximum allowed deficit.\"}],\"InvalidDeficitRatio(uint256)\":[{\"notice\":\"Thrown when a new deficit ratio is invalid (out of range or not representable with 4 decimals).\"}],\"InvalidDestination(address)\":[{\"notice\":\"Thrown when the destination address is invalid.\"}],\"InvalidLoanLimit(uint256)\":[{\"notice\":\"Thrown when a loan limit cannot be represented with 0 decimals when packing/unpacking.\"}],\"InvalidUpgradeETokenChanged(address,address)\":[{\"notice\":\"Thrown during upgrade validation if the configured eToken addresses change unexpectedly.\"}],\"InvalidYieldVault()\":[{\"notice\":\"Thrown when the yield vault is unset or invalid for the configured currency.\"}],\"LossesCannotExceedMaxDeficit(uint256,uint256)\":[{\"notice\":\"Thrown when yield-vault losses would push the account below its maximum allowed deficit.\"}],\"NotEnoughCash(uint256,uint256)\":[{\"notice\":\"Thrown when trying to invest more cash than currently liquid in the reserve.\"}],\"ReserveInvalidReceiver(address)\":[{\"notice\":\"Thrown when attempting to transfer to the zero address.\"}],\"WithdrawExceedsSurplus(uint256,int256)\":[{\"notice\":\"Thrown when attempting to withdraw more than the current surplus (when `amount != type(uint256).max`).\"}]},\"events\":{\"DeficitRatioChanged(uint256,uint256,uint256)\":{\"notice\":\"Emitted when the deficitRatio is changed\"},\"EarningsRecorded(int256)\":{\"notice\":\"Event emitted when investment yields are accounted in the reserve\"},\"ErrorIgnoredDeinvestingVault(address,uint256)\":{\"notice\":\"Emitted when a forced deinvestment ignored a redeem failure.\"},\"LoanLimitChanged(uint256,uint256,bool)\":{\"notice\":\"Emitted when the loan limits are changed\"},\"WonPremiumsInOut(bool,uint256)\":{\"notice\":\"Emitted when \\\"won premiums\\\" move in or out of the PremiumsAccount.\"},\"YieldVaultChanged(address,address,bool)\":{\"notice\":\"Emitted when the yield vault is changed.\"}},\"kind\":\"user\",\"methods\":{\"depositIntoYieldVault(uint256)\":{\"notice\":\"Moves money that's liquid in the contract to the yield vault, to generate yields\"},\"etks()\":{\"notice\":\"Returns the juniorEtk and seniorEtk. See {juniorEtk()} and {seniorEtk()}\"},\"investedInYV()\":{\"notice\":\"Returns the amount of funds that were invested in the yieldVault, up to the last recorded earnings / losses\"},\"juniorEtk()\":{\"notice\":\"The junior eToken, the primary source of solvency, used if the premiums account is exhausted.\"},\"policyCancelled((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256,address)\":{\"notice\":\"Reflects the cancellation of a policy, doing the required refunds.\"},\"policyCreated((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Adds a policy to the PremiumsAccount. Stores the pure premiums and locks the aditional funds from junior and senior eTokens.\"},\"policyExpired((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"The PremiumsAccount is notified that the policy has expired, unlocks the SCR and earns the pure premium.\"},\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"},\"policyReplaced((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Replaces a policy with another in PremiumsAccount. Stores the pure premiums difference and re-locks the aditional funds from junior and senior eTokens.\"},\"policyResolvedWithPayout(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"notice\":\"The PremiumsAccount is notified that the policy was resolved and issues the payout to the policyHolder.\"},\"purePremiums()\":{\"notice\":\"The total amount of premiums hold by this PremiumsAccount\"},\"receiveGrant(uint256)\":{\"notice\":\"Endpoint to receive \\\"free money\\\" and inject that money into the premium pool.\"},\"repayLoans()\":{\"notice\":\"Function that repays the loan(s) if fundsAvailable\"},\"seniorEtk()\":{\"notice\":\"The senior eToken, the secondary source of solvency, used if the premiums account is exhausted and junior too\"},\"setDeficitRatio(uint256,bool)\":{\"notice\":\"Changes the `deficitRatio` parameter.\"},\"setLoanLimits(uint256,uint256)\":{\"notice\":\"Changes the `jrLoanLimit` or `srLoanLimit` parameter.\"},\"setYieldVault(address,bool)\":{\"notice\":\"Sets the new yield vault for this reserve. If the reserve had previously a yield vault, it will deinvest all the funds, making all of the liquid in the reserve balance.\"},\"withdrawFromYieldVault(uint256)\":{\"notice\":\"Deinvest from the vault a given amount.\"},\"withdrawWonPremiums(uint256,address)\":{\"notice\":\"Withdraws excess premiums (surplus) to the destination.\"},\"yieldVault()\":{\"notice\":\"Returns the address of the yield vault, where the part of the funds are invested to generate additional      yields. Can be `address(0)` if no yieldVault has been set.\"}},\"notice\":\"This contract holds the pure premiums of a set of risk modules.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/PremiumsAccount.sol\":\"PremiumsAccount\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@ensuro/core/contracts/PolicyPoolComponent.sol\":{\"keccak256\":\"0x59be0e577af81ab215ac850da84692d6ae7a465917701260f390bc92240c4707\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://c55648f183f32e74d6d83cfc2a8eb606c75a6c3bc598e8ec2a38f9fb3b676f8c\",\"dweb:/ipfs/QmdDFuZz6cn9ywUuxv4bTY3STMWQMWTAzitbocywFMoByb\"]},\"@ensuro/core/contracts/PremiumsAccount.sol\":{\"keccak256\":\"0x91ed08362a953b0d5434492fa5a6c75c9d927dca02799e391d42c89c65f20e04\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://d06554497153c92a8a757426c4a4692d087601c01faa2c5eeb7a82db6eb6faac\",\"dweb:/ipfs/QmXkASFUm6f4xBqx6sRoVzeN7p2fgRtkoee9uZbuifhPuD\"]},\"@ensuro/core/contracts/Reserve.sol\":{\"keccak256\":\"0x2c4bd6d6c13fd006af456f228df1242eb857f5ec27fe09175579ded50dc28392\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b573114bbfb87368b5fbc535b2bf05b4bffb797618054f54e589eb078c6d4a9e\",\"dweb:/ipfs/QmP3gkDPDYhdLVh86nAtndb4CGNTMdM2FNantCKPTjD3TA\"]},\"@ensuro/core/contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"@ensuro/core/contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"@ensuro/core/contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"@ensuro/core/contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":11093,"contract":"@ensuro/core/contracts/PremiumsAccount.sol:PremiumsAccount","label":"__gap","offset":0,"slot":"0","type":"t_array(t_uint256)50_storage"},{"astId":12869,"contract":"@ensuro/core/contracts/PremiumsAccount.sol:PremiumsAccount","label":"_invested","offset":0,"slot":"50","type":"t_uint256"},{"astId":13499,"contract":"@ensuro/core/contracts/PremiumsAccount.sol:PremiumsAccount","label":"__gap","offset":0,"slot":"51","type":"t_array(t_uint256)49_storage"},{"astId":11155,"contract":"@ensuro/core/contracts/PremiumsAccount.sol:PremiumsAccount","label":"_activePurePremiums","offset":0,"slot":"100","type":"t_uint256"},{"astId":11158,"contract":"@ensuro/core/contracts/PremiumsAccount.sol:PremiumsAccount","label":"_surplus","offset":0,"slot":"101","type":"t_int256"},{"astId":11172,"contract":"@ensuro/core/contracts/PremiumsAccount.sol:PremiumsAccount","label":"_params","offset":0,"slot":"102","type":"t_struct(PackedParams)11169_storage"},{"astId":12846,"contract":"@ensuro/core/contracts/PremiumsAccount.sol:PremiumsAccount","label":"__gap","offset":0,"slot":"103","type":"t_array(t_uint256)47_storage"}],"types":{"t_array(t_uint256)47_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[47]","numberOfBytes":"1504"},"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_contract(IERC4626)22463":{"encoding":"inplace","label":"contract IERC4626","numberOfBytes":"20"},"t_int256":{"encoding":"inplace","label":"int256","numberOfBytes":"32"},"t_struct(PackedParams)11169_storage":{"encoding":"inplace","label":"struct PremiumsAccount.PackedParams","members":[{"astId":11162,"contract":"@ensuro/core/contracts/PremiumsAccount.sol:PremiumsAccount","label":"yieldVault","offset":0,"slot":"0","type":"t_contract(IERC4626)22463"},{"astId":11164,"contract":"@ensuro/core/contracts/PremiumsAccount.sol:PremiumsAccount","label":"jrLoanLimit","offset":20,"slot":"0","type":"t_uint32"},{"astId":11166,"contract":"@ensuro/core/contracts/PremiumsAccount.sol:PremiumsAccount","label":"srLoanLimit","offset":24,"slot":"0","type":"t_uint32"},{"astId":11168,"contract":"@ensuro/core/contracts/PremiumsAccount.sol:PremiumsAccount","label":"deficitRatio","offset":28,"slot":"0","type":"t_uint16"}],"numberOfBytes":"32"},"t_uint16":{"encoding":"inplace","label":"uint16","numberOfBytes":"2"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint32":{"encoding":"inplace","label":"uint32","numberOfBytes":"4"}}}}},"@ensuro/core/contracts/Reserve.sol":{"Reserve":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"InvalidYieldVault","type":"error"},{"inputs":[],"name":"NoZeroPolicyPool","type":"error"},{"inputs":[{"internalType":"uint256","name":"required","type":"uint256"},{"internalType":"uint256","name":"available","type":"uint256"}],"name":"NotEnoughCash","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"OnlyPolicyPool","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ReserveInvalidReceiver","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[],"name":"UpgradeCannotChangePolicyPool","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"int256","name":"earnings","type":"int256"}],"name":"EarningsRecorded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"ErrorIgnoredDeinvestingVault","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":true,"internalType":"contract IERC4626","name":"newVault","type":"address"},{"indexed":false,"internalType":"bool","name":"forced","type":"bool"}],"name":"YieldVaultChanged","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositIntoYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"investedInYV","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recordEarnings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC4626","name":"newYieldVault","type":"address"},{"internalType":"bool","name":"force","type":"bool"}],"name":"setYieldVault","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":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFromYieldVault","outputs":[{"internalType":"uint256","name":"deinvested","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yieldVault","outputs":[{"internalType":"contract IERC4626","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","currency()":"e5a6b10f","depositIntoYieldVault(uint256)":"ac860f74","investedInYV()":"7d919a97","policyPool()":"4d15eb03","proxiableUUID()":"52d1902d","recordEarnings()":"4eb978a4","setYieldVault(address,bool)":"194448e5","supportsInterface(bytes4)":"01ffc9a7","upgradeToAndCall(address,bytes)":"4f1ef286","withdrawFromYieldVault(uint256)":"d336078c","yieldVault()":"a7f8a5e2"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidYieldVault\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"required\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"available\",\"type\":\"uint256\"}],\"name\":\"NotEnoughCash\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ReserveInvalidReceiver\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangePolicyPool\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"earnings\",\"type\":\"int256\"}],\"name\":\"EarningsRecorded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"ErrorIgnoredDeinvestingVault\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"contract IERC4626\",\"name\":\"newVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"forced\",\"type\":\"bool\"}],\"name\":\"YieldVaultChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"depositIntoYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"investedInYV\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"recordEarnings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"newYieldVault\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"force\",\"type\":\"bool\"}],\"name\":\"setYieldVault\",\"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\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFromYieldVault\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"deinvested\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"yieldVault\",\"outputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"These contracts have an asset manager {IAssetManager} that's a strategy contract that runs in the same context (called with delegatecall) that apply some strategy to reinvest the assets managed by the contract to generate additional returns.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotEnoughCash(uint256,uint256)\":[{\"params\":{\"available\":\"The currently available liquid balance\",\"required\":\"The requested amount of liquid funds\"}}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"ReserveInvalidReceiver(address)\":[{\"params\":{\"receiver\":\"The receiver that was provided (cannot be the zero address)\"}}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"events\":{\"EarningsRecorded(int256)\":{\"params\":{\"earnings\":\"The amount of earnings generated since last record. It's positive in the case of earnings or negative when there are losses.\"}},\"ErrorIgnoredDeinvestingVault(address,uint256)\":{\"params\":{\"oldVault\":\"The vault that failed to redeem\",\"shares\":\"The number of shares attempted to redeem\"}},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"},\"YieldVaultChanged(address,address,bool)\":{\"details\":\"When replacing an existing vault, the reserve attempts to redeem the full position (unless `force` is used).\",\"params\":{\"forced\":\"True if the switch ignored a partial/failed deinvestment and proceeded anyway\",\"newVault\":\"The new yield vault (can be `address(0)`)\",\"oldVault\":\"The previous yield vault (can be `address(0)`)\"}}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"depositIntoYieldVault(uint256)\":{\"custom:pre\":\"_balance() >= amount\",\"params\":{\"amount\":\"Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\"}},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"recordEarnings()\":{\"custom:emits\":\"{EarningsRecorded}\",\"details\":\"Computes the value of the assets invested in the yieldVault() and then calls `_yieldEarnings` to      reflect the earnings/losses in the way defined for each reserve.\"},\"setYieldVault(address,bool)\":{\"custom:emits\":\"{YieldVaultChanged}\",\"params\":{\"force\":\"When a previous yield vault exists, before setting the new one, the funds are deinvested. When              `force` is true, an error in the deinvestment of the assets (or some assets not withdrawable)              will be ignored. When `force` is false, it will revert if `oldVault.balanceOf(address(this)) != 0`.\",\"newYieldVault\":\"The address of the new yield vault to assign to the reserve. If is `address(0)` it means                      the reserve will not have a yield vault. If not `address(0)` it MUST be an IERC4626                      where `newYieldVault.asset()` equals `.currency()`\"}},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"},\"withdrawFromYieldVault(uint256)\":{\"custom:pre\":\"yieldVault() != address(0)yieldVault().maxWithdraw(address(this)) >= amount             (this condition is not checked here; exceeding it is expected to revert in the vault during _deinvest()).\",\"params\":{\"amount\":\"Amount to withdraw from the `yieldVault()`. If equal type(uint256).max, deinvests maxWithdraw()\"},\"returns\":{\"deinvested\":\"The amount that was deinvested and added as liquid funds to the reserve\"}}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"},\"_invested\":{\"details\":\"Tracks the amount of assets invested in the yieldVault, up to the last time it was recorded\"}},\"title\":\"Base contract for Ensuro cash reserves\",\"version\":1},\"userdoc\":{\"errors\":{\"InvalidYieldVault()\":[{\"notice\":\"Thrown when the yield vault is unset or invalid for the configured currency.\"}],\"NotEnoughCash(uint256,uint256)\":[{\"notice\":\"Thrown when trying to invest more cash than currently liquid in the reserve.\"}],\"ReserveInvalidReceiver(address)\":[{\"notice\":\"Thrown when attempting to transfer to the zero address.\"}]},\"events\":{\"EarningsRecorded(int256)\":{\"notice\":\"Event emitted when investment yields are accounted in the reserve\"},\"ErrorIgnoredDeinvestingVault(address,uint256)\":{\"notice\":\"Emitted when a forced deinvestment ignored a redeem failure.\"},\"YieldVaultChanged(address,address,bool)\":{\"notice\":\"Emitted when the yield vault is changed.\"}},\"kind\":\"user\",\"methods\":{\"depositIntoYieldVault(uint256)\":{\"notice\":\"Moves money that's liquid in the contract to the yield vault, to generate yields\"},\"investedInYV()\":{\"notice\":\"Returns the amount of funds that were invested in the yieldVault, up to the last recorded earnings / losses\"},\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"},\"setYieldVault(address,bool)\":{\"notice\":\"Sets the new yield vault for this reserve. If the reserve had previously a yield vault, it will deinvest all the funds, making all of the liquid in the reserve balance.\"},\"withdrawFromYieldVault(uint256)\":{\"notice\":\"Deinvest from the vault a given amount.\"},\"yieldVault()\":{\"notice\":\"Returns the address of the yield vault, where the part of the funds are invested to generate additional      yields. Can be `address(0)` if no yieldVault has been set.\"}},\"notice\":\"Implements the methods related with management of the reserves and payments. {EToken} and {PremiumsAccount} inherit from this contract.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/Reserve.sol\":\"Reserve\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@ensuro/core/contracts/PolicyPoolComponent.sol\":{\"keccak256\":\"0x59be0e577af81ab215ac850da84692d6ae7a465917701260f390bc92240c4707\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://c55648f183f32e74d6d83cfc2a8eb606c75a6c3bc598e8ec2a38f9fb3b676f8c\",\"dweb:/ipfs/QmdDFuZz6cn9ywUuxv4bTY3STMWQMWTAzitbocywFMoByb\"]},\"@ensuro/core/contracts/Reserve.sol\":{\"keccak256\":\"0x2c4bd6d6c13fd006af456f228df1242eb857f5ec27fe09175579ded50dc28392\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b573114bbfb87368b5fbc535b2bf05b4bffb797618054f54e589eb078c6d4a9e\",\"dweb:/ipfs/QmP3gkDPDYhdLVh86nAtndb4CGNTMdM2FNantCKPTjD3TA\"]},\"@ensuro/core/contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"@ensuro/core/contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"@ensuro/core/contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"@ensuro/core/contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":11093,"contract":"@ensuro/core/contracts/Reserve.sol:Reserve","label":"__gap","offset":0,"slot":"0","type":"t_array(t_uint256)50_storage"},{"astId":12869,"contract":"@ensuro/core/contracts/Reserve.sol:Reserve","label":"_invested","offset":0,"slot":"50","type":"t_uint256"},{"astId":13499,"contract":"@ensuro/core/contracts/Reserve.sol:Reserve","label":"__gap","offset":0,"slot":"51","type":"t_array(t_uint256)49_storage"}],"types":{"t_array(t_uint256)49_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[49]","numberOfBytes":"1568"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@ensuro/core/contracts/RiskModule.sol":{"RiskModule":{"abi":[{"inputs":[{"internalType":"contract IPolicyPool","name":"policyPool_","type":"address"},{"internalType":"contract IPremiumsAccount","name":"premiumsAccount_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint40","name":"now","type":"uint40"}],"name":"ExpirationMustBeInTheFuture","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"address","name":"customer","type":"address"}],"name":"InvalidCustomer","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[{"internalType":"contract IUnderwriter","name":"uw","type":"address"}],"name":"InvalidUnderwriter","type":"error"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"InvalidWallet","type":"error"},{"inputs":[],"name":"NoZeroPolicyPool","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[],"name":"OnlyPolicyPool","type":"error"},{"inputs":[{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"PremiumExceedsPayout","type":"error"},{"inputs":[{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"minPremium","type":"uint256"}],"name":"PremiumLessThanMinimum","type":"error"},{"inputs":[],"name":"PremiumsAccountMustBePartOfThePool","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[],"name":"UpgradeCannotChangePolicyPool","type":"error"},{"inputs":[],"name":"UpgradeCannotChangePremiumsAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"},{"indexed":false,"internalType":"address","name":"newWallet","type":"address"}],"name":"PartnerWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract IUnderwriter","name":"oldUW","type":"address"},{"indexed":false,"internalType":"contract IUnderwriter","name":"newUW","type":"address"}],"name":"UnderwriterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"cancelPolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"components":[{"internalType":"uint256","name":"moc","type":"uint256"},{"internalType":"uint256","name":"jrCollRatio","type":"uint256"},{"internalType":"uint256","name":"collRatio","type":"uint256"},{"internalType":"uint256","name":"ensuroPpFee","type":"uint256"},{"internalType":"uint256","name":"ensuroCocFee","type":"uint256"},{"internalType":"uint256","name":"jrRoc","type":"uint256"},{"internalType":"uint256","name":"srRoc","type":"uint256"}],"internalType":"struct Policy.Params","name":"p","type":"tuple"}],"name":"getMinimumPremium","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"contract IUnderwriter","name":"underwriter_","type":"address"},{"internalType":"address","name":"wallet_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"inputData","type":"bytes[]"},{"internalType":"address","name":"onBehalfOf","type":"address"}],"name":"newPolicies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"inputData","type":"bytes"},{"internalType":"address","name":"onBehalfOf","type":"address"}],"name":"newPolicy","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premiumsAccount","outputs":[{"internalType":"contract IPremiumsAccount","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"replacePolicy","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"resolvePolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IUnderwriter","name":"newUW","type":"address"}],"name":"setUnderwriter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"underwriter","outputs":[{"internalType":"contract IUnderwriter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_11009":{"entryPoint":null,"id":11009,"parameterSlots":1,"returnSlots":0},"@_13607":{"entryPoint":null,"id":13607,"parameterSlots":2,"returnSlots":0},"@_disableInitializers_23388":{"entryPoint":288,"id":23388,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_23433":{"entryPoint":null,"id":23433,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_23419":{"entryPoint":null,"id":23419,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory":{"entryPoint":542,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPool_$14638t_contract$_IPremiumsAccount_$14743_fromMemory":{"entryPoint":486,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"validator_revert_contract_IPolicyPool":{"entryPoint":466,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:1118:125","nodeType":"YulBlock","src":"0:1118:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"72:86:125","nodeType":"YulBlock","src":"72:86:125","statements":[{"body":{"nativeSrc":"136:16:125","nodeType":"YulBlock","src":"136:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"145:1:125","nodeType":"YulLiteral","src":"145:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"148:1:125","nodeType":"YulLiteral","src":"148:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"138:6:125","nodeType":"YulIdentifier","src":"138:6:125"},"nativeSrc":"138:12:125","nodeType":"YulFunctionCall","src":"138:12:125"},"nativeSrc":"138:12:125","nodeType":"YulExpressionStatement","src":"138:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"95:5:125","nodeType":"YulIdentifier","src":"95:5:125"},{"arguments":[{"name":"value","nativeSrc":"106:5:125","nodeType":"YulIdentifier","src":"106:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"121:3:125","nodeType":"YulLiteral","src":"121:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"126:1:125","nodeType":"YulLiteral","src":"126:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"117:3:125","nodeType":"YulIdentifier","src":"117:3:125"},"nativeSrc":"117:11:125","nodeType":"YulFunctionCall","src":"117:11:125"},{"kind":"number","nativeSrc":"130:1:125","nodeType":"YulLiteral","src":"130:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"113:3:125","nodeType":"YulIdentifier","src":"113:3:125"},"nativeSrc":"113:19:125","nodeType":"YulFunctionCall","src":"113:19:125"}],"functionName":{"name":"and","nativeSrc":"102:3:125","nodeType":"YulIdentifier","src":"102:3:125"},"nativeSrc":"102:31:125","nodeType":"YulFunctionCall","src":"102:31:125"}],"functionName":{"name":"eq","nativeSrc":"92:2:125","nodeType":"YulIdentifier","src":"92:2:125"},"nativeSrc":"92:42:125","nodeType":"YulFunctionCall","src":"92:42:125"}],"functionName":{"name":"iszero","nativeSrc":"85:6:125","nodeType":"YulIdentifier","src":"85:6:125"},"nativeSrc":"85:50:125","nodeType":"YulFunctionCall","src":"85:50:125"},"nativeSrc":"82:70:125","nodeType":"YulIf","src":"82:70:125"}]},"name":"validator_revert_contract_IPolicyPool","nativeSrc":"14:144:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"61:5:125","nodeType":"YulTypedName","src":"61:5:125","type":""}],"src":"14:144:125"},{"body":{"nativeSrc":"308:313:125","nodeType":"YulBlock","src":"308:313:125","statements":[{"body":{"nativeSrc":"354:16:125","nodeType":"YulBlock","src":"354:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"363:1:125","nodeType":"YulLiteral","src":"363:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"366:1:125","nodeType":"YulLiteral","src":"366:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"356:6:125","nodeType":"YulIdentifier","src":"356:6:125"},"nativeSrc":"356:12:125","nodeType":"YulFunctionCall","src":"356:12:125"},"nativeSrc":"356:12:125","nodeType":"YulExpressionStatement","src":"356:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"329:7:125","nodeType":"YulIdentifier","src":"329:7:125"},{"name":"headStart","nativeSrc":"338:9:125","nodeType":"YulIdentifier","src":"338:9:125"}],"functionName":{"name":"sub","nativeSrc":"325:3:125","nodeType":"YulIdentifier","src":"325:3:125"},"nativeSrc":"325:23:125","nodeType":"YulFunctionCall","src":"325:23:125"},{"kind":"number","nativeSrc":"350:2:125","nodeType":"YulLiteral","src":"350:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"321:3:125","nodeType":"YulIdentifier","src":"321:3:125"},"nativeSrc":"321:32:125","nodeType":"YulFunctionCall","src":"321:32:125"},"nativeSrc":"318:52:125","nodeType":"YulIf","src":"318:52:125"},{"nativeSrc":"379:29:125","nodeType":"YulVariableDeclaration","src":"379:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"398:9:125","nodeType":"YulIdentifier","src":"398:9:125"}],"functionName":{"name":"mload","nativeSrc":"392:5:125","nodeType":"YulIdentifier","src":"392:5:125"},"nativeSrc":"392:16:125","nodeType":"YulFunctionCall","src":"392:16:125"},"variables":[{"name":"value","nativeSrc":"383:5:125","nodeType":"YulTypedName","src":"383:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"455:5:125","nodeType":"YulIdentifier","src":"455:5:125"}],"functionName":{"name":"validator_revert_contract_IPolicyPool","nativeSrc":"417:37:125","nodeType":"YulIdentifier","src":"417:37:125"},"nativeSrc":"417:44:125","nodeType":"YulFunctionCall","src":"417:44:125"},"nativeSrc":"417:44:125","nodeType":"YulExpressionStatement","src":"417:44:125"},{"nativeSrc":"470:15:125","nodeType":"YulAssignment","src":"470:15:125","value":{"name":"value","nativeSrc":"480:5:125","nodeType":"YulIdentifier","src":"480:5:125"},"variableNames":[{"name":"value0","nativeSrc":"470:6:125","nodeType":"YulIdentifier","src":"470:6:125"}]},{"nativeSrc":"494:40:125","nodeType":"YulVariableDeclaration","src":"494:40:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"519:9:125","nodeType":"YulIdentifier","src":"519:9:125"},{"kind":"number","nativeSrc":"530:2:125","nodeType":"YulLiteral","src":"530:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"515:3:125","nodeType":"YulIdentifier","src":"515:3:125"},"nativeSrc":"515:18:125","nodeType":"YulFunctionCall","src":"515:18:125"}],"functionName":{"name":"mload","nativeSrc":"509:5:125","nodeType":"YulIdentifier","src":"509:5:125"},"nativeSrc":"509:25:125","nodeType":"YulFunctionCall","src":"509:25:125"},"variables":[{"name":"value_1","nativeSrc":"498:7:125","nodeType":"YulTypedName","src":"498:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"581:7:125","nodeType":"YulIdentifier","src":"581:7:125"}],"functionName":{"name":"validator_revert_contract_IPolicyPool","nativeSrc":"543:37:125","nodeType":"YulIdentifier","src":"543:37:125"},"nativeSrc":"543:46:125","nodeType":"YulFunctionCall","src":"543:46:125"},"nativeSrc":"543:46:125","nodeType":"YulExpressionStatement","src":"543:46:125"},{"nativeSrc":"598:17:125","nodeType":"YulAssignment","src":"598:17:125","value":{"name":"value_1","nativeSrc":"608:7:125","nodeType":"YulIdentifier","src":"608:7:125"},"variableNames":[{"name":"value1","nativeSrc":"598:6:125","nodeType":"YulIdentifier","src":"598:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$14638t_contract$_IPremiumsAccount_$14743_fromMemory","nativeSrc":"163:458:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"266:9:125","nodeType":"YulTypedName","src":"266:9:125","type":""},{"name":"dataEnd","nativeSrc":"277:7:125","nodeType":"YulTypedName","src":"277:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"289:6:125","nodeType":"YulTypedName","src":"289:6:125","type":""},{"name":"value1","nativeSrc":"297:6:125","nodeType":"YulTypedName","src":"297:6:125","type":""}],"src":"163:458:125"},{"body":{"nativeSrc":"728:183:125","nodeType":"YulBlock","src":"728:183:125","statements":[{"body":{"nativeSrc":"774:16:125","nodeType":"YulBlock","src":"774:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"783:1:125","nodeType":"YulLiteral","src":"783:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"786:1:125","nodeType":"YulLiteral","src":"786:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"776:6:125","nodeType":"YulIdentifier","src":"776:6:125"},"nativeSrc":"776:12:125","nodeType":"YulFunctionCall","src":"776:12:125"},"nativeSrc":"776:12:125","nodeType":"YulExpressionStatement","src":"776:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"749:7:125","nodeType":"YulIdentifier","src":"749:7:125"},{"name":"headStart","nativeSrc":"758:9:125","nodeType":"YulIdentifier","src":"758:9:125"}],"functionName":{"name":"sub","nativeSrc":"745:3:125","nodeType":"YulIdentifier","src":"745:3:125"},"nativeSrc":"745:23:125","nodeType":"YulFunctionCall","src":"745:23:125"},{"kind":"number","nativeSrc":"770:2:125","nodeType":"YulLiteral","src":"770:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"741:3:125","nodeType":"YulIdentifier","src":"741:3:125"},"nativeSrc":"741:32:125","nodeType":"YulFunctionCall","src":"741:32:125"},"nativeSrc":"738:52:125","nodeType":"YulIf","src":"738:52:125"},{"nativeSrc":"799:29:125","nodeType":"YulVariableDeclaration","src":"799:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"818:9:125","nodeType":"YulIdentifier","src":"818:9:125"}],"functionName":{"name":"mload","nativeSrc":"812:5:125","nodeType":"YulIdentifier","src":"812:5:125"},"nativeSrc":"812:16:125","nodeType":"YulFunctionCall","src":"812:16:125"},"variables":[{"name":"value","nativeSrc":"803:5:125","nodeType":"YulTypedName","src":"803:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"875:5:125","nodeType":"YulIdentifier","src":"875:5:125"}],"functionName":{"name":"validator_revert_contract_IPolicyPool","nativeSrc":"837:37:125","nodeType":"YulIdentifier","src":"837:37:125"},"nativeSrc":"837:44:125","nodeType":"YulFunctionCall","src":"837:44:125"},"nativeSrc":"837:44:125","nodeType":"YulExpressionStatement","src":"837:44:125"},{"nativeSrc":"890:15:125","nodeType":"YulAssignment","src":"890:15:125","value":{"name":"value","nativeSrc":"900:5:125","nodeType":"YulIdentifier","src":"900:5:125"},"variableNames":[{"name":"value0","nativeSrc":"890:6:125","nodeType":"YulIdentifier","src":"890:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory","nativeSrc":"626:285:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"694:9:125","nodeType":"YulTypedName","src":"694:9:125","type":""},{"name":"dataEnd","nativeSrc":"705:7:125","nodeType":"YulTypedName","src":"705:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"717:6:125","nodeType":"YulTypedName","src":"717:6:125","type":""}],"src":"626:285:125"},{"body":{"nativeSrc":"1015:101:125","nodeType":"YulBlock","src":"1015:101:125","statements":[{"nativeSrc":"1025:26:125","nodeType":"YulAssignment","src":"1025:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1037:9:125","nodeType":"YulIdentifier","src":"1037:9:125"},{"kind":"number","nativeSrc":"1048:2:125","nodeType":"YulLiteral","src":"1048:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1033:3:125","nodeType":"YulIdentifier","src":"1033:3:125"},"nativeSrc":"1033:18:125","nodeType":"YulFunctionCall","src":"1033:18:125"},"variableNames":[{"name":"tail","nativeSrc":"1025:4:125","nodeType":"YulIdentifier","src":"1025:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1067:9:125","nodeType":"YulIdentifier","src":"1067:9:125"},{"arguments":[{"name":"value0","nativeSrc":"1082:6:125","nodeType":"YulIdentifier","src":"1082:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1098:2:125","nodeType":"YulLiteral","src":"1098:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"1102:1:125","nodeType":"YulLiteral","src":"1102:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1094:3:125","nodeType":"YulIdentifier","src":"1094:3:125"},"nativeSrc":"1094:10:125","nodeType":"YulFunctionCall","src":"1094:10:125"},{"kind":"number","nativeSrc":"1106:1:125","nodeType":"YulLiteral","src":"1106:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1090:3:125","nodeType":"YulIdentifier","src":"1090:3:125"},"nativeSrc":"1090:18:125","nodeType":"YulFunctionCall","src":"1090:18:125"}],"functionName":{"name":"and","nativeSrc":"1078:3:125","nodeType":"YulIdentifier","src":"1078:3:125"},"nativeSrc":"1078:31:125","nodeType":"YulFunctionCall","src":"1078:31:125"}],"functionName":{"name":"mstore","nativeSrc":"1060:6:125","nodeType":"YulIdentifier","src":"1060:6:125"},"nativeSrc":"1060:50:125","nodeType":"YulFunctionCall","src":"1060:50:125"},"nativeSrc":"1060:50:125","nodeType":"YulExpressionStatement","src":"1060:50:125"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"916:200:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"984:9:125","nodeType":"YulTypedName","src":"984:9:125","type":""},{"name":"value0","nativeSrc":"995:6:125","nodeType":"YulTypedName","src":"995:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1006:4:125","nodeType":"YulTypedName","src":"1006:4:125","type":""}],"src":"916:200:125"}]},"contents":"{\n    { }\n    function validator_revert_contract_IPolicyPool(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$_IPolicyPool_$14638t_contract$_IPremiumsAccount_$14743_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_IPolicyPool(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IPolicyPool(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IPolicyPool(value)\n        value0 := value\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}","id":125,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60e060405230608052348015610013575f5ffd5b50604051612323380380612323833981016040819052610032916101e6565b816001600160a01b03811661005a57604051636b23cf0160e01b815260040160405180910390fd5b610062610120565b806001600160a01b031660a0816001600160a01b03168152505050816001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa1580156100c3573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906100e7919061021e565b6001600160a01b03161461010e5760405163fec343d560e01b815260040160405180910390fd5b6001600160a01b031660c05250610240565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156101705760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101cf5780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6001600160a01b03811681146101cf575f5ffd5b5f5f604083850312156101f7575f5ffd5b8251610202816101d2565b6020840151909250610213816101d2565b809150509250929050565b5f6020828403121561022e575f5ffd5b8151610239816101d2565b9392505050565b60805160a05160c05161207a6102a95f395f818161028d015261129901525f81816101d70152818161071e0152818161082e01528181610a0001528181610aa301528181610bac01526113e501525f8181610edb01528181610f04015261104e015261207a5ff3fe608060405260043610610105575f3560e01c806368beecf911610092578063ad3cb1cc11610062578063ad3cb1cc146102ef578063bd644c561461032c578063deaa59df1461034b578063e5a6b10f1461036a578063f00db2601461037e575f5ffd5b806368beecf91461025357806373a952e81461027f57806373d0efd0146102b15780638dab1952146102d0575f5ffd5b8063485cc955116100d8578063485cc955146101aa5780634d15eb03146101c95780634f1ef2861461020f578063521eb2731461022257806352d1902d1461023f575f5ffd5b806301ffc9a71461010957806308bb5f7b1461013d5780631f0f3e181461015e57806323d09ac91461017d575b5f5ffd5b348015610114575f5ffd5b50610128610123366004611650565b61039b565b60405190151581526020015b60405180910390f35b348015610148575f5ffd5b5061015c61015736600461168b565b6103c6565b005b348015610169575f5ffd5b5061015c6101783660046116a6565b610469565b348015610188575f5ffd5b5061019c6101973660046117d7565b6104af565b604051908152602001610134565b3480156101b5575f5ffd5b5061015c6101c4366004611889565b6104cb565b3480156101d4575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610134565b61015c61021d3660046118c0565b6105c4565b34801561022d575f5ffd5b506033546001600160a01b03166101f7565b34801561024a575f5ffd5b5061019c6105e3565b34801561025e575f5ffd5b5061027261026d3660046119a9565b6105fe565b6040516101349190611a7e565b34801561028a575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000006101f7565b3480156102bc575f5ffd5b5061015c6102cb3660046119a9565b6107a8565b3480156102db575f5ffd5b506102726102ea366004611a8d565b6108b3565b3480156102fa575f5ffd5b5061031f604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516101349190611ad4565b348015610337575f5ffd5b5061015c610346366004611b09565b610a8c565b348015610356575f5ffd5b5061015c61036536600461168b565b610b0b565b348015610375575f5ffd5b506101f7610ba9565b348015610389575f5ffd5b506032546001600160a01b03166101f7565b5f6103a582610c2f565b806103c057506001600160e01b031982166321b7e09b60e01b145b92915050565b806001600160a01b0381166103ff57604051633f8317d160e21b81526001600160a01b0390911660048201526024015b60405180910390fd5b50603254604080516001600160a01b03928316815291831660208301527fae536502f25a82de70abed467008489d54fa0cbf58cdc51718efe6d49406724f910160405180910390a1603280546001600160a01b0319166001600160a01b0392909216919091179055565b5f5b828110156104a9576104a084848381811061048857610488611b3a565b905060200281019061049a9190611b4e565b846108b3565b5060010161046b565b50505050565b5f6104bd8287878688610c64565b60e001519695505050505050565b5f6104d4610e8e565b805490915060ff600160401b82041615906001600160401b03165f811580156104fa5750825b90505f826001600160401b031660011480156105155750303b155b905081158015610523575080155b156105415760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561056b57845460ff60401b1916600160401b1785555b6105758787610eb6565b83156105bb57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6105cc610ed0565b6105d582610f76565b6105df8282610f82565b5050565b5f6105ec611043565b505f5160206120255f395f51905f5290565b6106066115ed565b603254604051634dd4a16b60e11b81525f918291829182918291829182916001600160a01b031690639ba942d6906106469030908e908e90600401611b90565b61030060405180830381865afa158015610662573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106869190611cf8565b96509650965096509650965096505f1985036106b1576106ae868589610140015186856104af565b94505b4264ffffffffff168364ffffffffff1610156106f15760405163a67fcb1d60e01b815264ffffffffff8085166004830152421660248201526044016103f6565b61070481868887878c610140015161108c565b60405163663d833760e01b81529098506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063663d833790610759908a908c9033908890600401611d71565b6020604051808303815f875af1158015610775573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107999190611db9565b88525050505050505092915050565b60325460405163197c2bfd60e11b81525f918291829182916001600160a01b03909116906332f857fa906107e49030908a908a90600401611b90565b6101e060405180830381865afa158015610800573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108249190611dd0565b93509350935093507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316636f520b73858585856040518563ffffffff1660e01b815260040161087e9493929190611e0f565b5f604051808303815f87803b158015610895575f5ffd5b505af11580156108a7573d5f5f3e3d5ffd5b50505050505050505050565b6108bb6115ed565b603254604051635d04bd1560e11b81525f91829182918291829182916001600160a01b039091169063ba097a2a906108fb9030908e908e90600401611b90565b61018060405180830381865afa158015610917573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061093b9190611e3c565b9550955095509550955095505f4290505f1986036109635761096087868387866104af565b95505b838164ffffffffff808216908316116109a05760405163a67fcb1d60e01b815264ffffffffff9283166004820152911660248201526044016103f6565b508990506001600160a01b0381166109d757604051632c74914160e11b81526001600160a01b0390911660048201526024016103f6565b506109e682878988888661108c565b604051630d100acb60e01b81529098506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690630d100acb90610a3b908b9033908e908990600401611e9d565b6020604051808303815f875af1158015610a57573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7b9190611db9565b8852505050505050505b9392505050565b604051635eb2262b60e11b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063bd644c5690610ada9085908590600401611edf565b5f604051808303815f87803b158015610af1575f5ffd5b505af1158015610b03573d5f5f3e3d5ffd5b505050505050565b806001600160a01b038116610b3f57604051633146914d60e11b81526001600160a01b0390911660048201526024016103f6565b50603354604080516001600160a01b03928316815291831660208301527fe3d815eb4e0fdd9b02285235cb46b09f34bee9bd0eb8d8dc3a1fe84694079bc2910160405180910390a1603380546001600160a01b0319166001600160a01b0392909216919091179055565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c06573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c2a9190611f87565b905090565b5f6001600160e01b031982166301ffc9a760e01b14806103c057506001600160e01b03198216634d15eb0360e01b1492915050565b610ca46040518061010001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b8551610cc590670de0b6b3a7640000610cbe888883611193565b9190611193565b81526020860151610ce0908690670de0b6b3a7640000611193565b6020820181905281511015610d0a578051602082018051610d02908390611fb6565b905250610d11565b5f60208201525b6040860151610d2a908690670de0b6b3a7640000611193565b604082015260208101518151610d409190611fc9565b81604001511115610d755760208101518151610d5c9190611fc9565b81604001818151610d6d9190611fb6565b905250610d7c565b5f60408201525b610dc1610d898385611fdc565b64ffffffffff168760a00151610d9f9190611ff9565b610db56301e13380670de0b6b3a7640000611ff9565b60208401519190611193565b6060820152610e0b610dd38385611fdc565b64ffffffffff168760c00151610de99190611ff9565b610dff6301e13380670de0b6b3a7640000611ff9565b60408401519190611193565b6080820181905260608201515f91610e2291611fc9565b6080880151909150610e3e908290670de0b6b3a7640000611193565b60608801518351610e5791670de0b6b3a7640000611193565b610e619190611fc9565b60a0830181905282518291610e7591611fc9565b610e7f9190611fc9565b60e08301525095945050505050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a006103c0565b610ebe611243565b610ec6611268565b6105df8282611270565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480610f5657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610f4a5f5160206120255f395f51905f52546001600160a01b031690565b6001600160a01b031614155b15610f745760405163703e46dd60e11b815260040160405180910390fd5b565b610f7f8161128a565b50565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015610fdc575060408051601f3d908101601f19168201909252610fd991810190611db9565b60015b61100457604051634c9c8ce360e01b81526001600160a01b03831660048201526024016103f6565b5f5160206120255f395f51905f52811461103457604051632a87526960e21b8152600481018290526024016103f6565b61103e8383611348565b505050565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f745760405163703e46dd60e11b815260040160405180910390fd5b6110946115ed565b85858082106110bf5760405163319308d960e11b8152600481019290925260248201526044016103f6565b50506110c96115ed565b602081018690526080810185905264ffffffffff80841661014083015284166101608201525f6110fc8988888888610c64565b805160a0808501919091526020820151604080860191909152820151606080860191909152820151610100850152608082015161012085015281015160c084015260e08101519091508890818111156111715760405163fc09662760e01b8152600481019290925260248201526044016103f6565b505060e08101516111829089611fb6565b60e083015250979650505050505050565b5f5f5f6111a0868661139d565b91509150815f036111c4578381816111ba576111ba612010565b0492505050610a85565b8184116111db576111db60038515026011186113b9565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b61124b6113ca565b610f7457604051631afcd79f60e31b815260040160405180910390fd5b610f74611243565b611278611243565b61128181610b0b565b6105df826103c6565b611293816113e3565b5f8190507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112fd573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113219190611f87565b6001600160a01b0316146105df5760405163050f87e160e21b815260040160405180910390fd5b61135182611494565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156113955761103e82826114f7565b6105df611597565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f6113d3610e8e565b54600160401b900460ff16919050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015611449573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061146d9190611f87565b6001600160a01b031614610f7f5760405163d2b3d33f60e01b815260040160405180910390fd5b806001600160a01b03163b5f036114c957604051634c9c8ce360e01b81526001600160a01b03821660048201526024016103f6565b5f5160206120255f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f61150484846115b6565b905080801561152557505f3d118061152557505f846001600160a01b03163b115b1561153a576115326115c9565b9150506103c0565b801561156457604051639996b31560e01b81526001600160a01b03851660048201526024016103f6565b3d15611577576115726115e2565b611590565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b3415610f745760405163b398979f60e01b815260040160405180910390fd5b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b6040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b5f60208284031215611660575f5ffd5b81356001600160e01b031981168114610a85575f5ffd5b6001600160a01b0381168114610f7f575f5ffd5b5f6020828403121561169b575f5ffd5b8135610a8581611677565b5f5f5f604084860312156116b8575f5ffd5b83356001600160401b038111156116cd575f5ffd5b8401601f810186136116dd575f5ffd5b80356001600160401b038111156116f2575f5ffd5b8660208260051b8401011115611706575f5ffd5b60209182019450925084013561171b81611677565b809150509250925092565b64ffffffffff81168114610f7f575f5ffd5b803561174381611726565b919050565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b038111828210171561177e5761177e611748565b60405290565b60405161018081016001600160401b038111828210171561177e5761177e611748565b604051601f8201601f191681016001600160401b03811182821017156117cf576117cf611748565b604052919050565b5f5f5f5f5f8587036101608112156117ed575f5ffd5b8635955060208701359450604087013561180681611726565b9350606087013561181681611726565b925060e0607f1982011215611829575f5ffd5b5061183261175c565b608087810135825260a080890135602084015260c0808a0135604085015260e08a013560608501526101008a0135928401929092526101208901359083015261014090970135968101969096525092959194509290565b5f5f6040838503121561189a575f5ffd5b82356118a581611677565b915060208301356118b581611677565b809150509250929050565b5f5f604083850312156118d1575f5ffd5b82356118dc81611677565b915060208301356001600160401b038111156118f6575f5ffd5b8301601f81018513611906575f5ffd5b80356001600160401b0381111561191f5761191f611748565b611932601f8201601f19166020016117a7565b818152866020838501011115611946575f5ffd5b816020840160208301375f602083830101528093505050509250929050565b5f5f83601f840112611975575f5ffd5b5081356001600160401b0381111561198b575f5ffd5b6020830191508360208285010111156119a2575f5ffd5b9250929050565b5f5f602083850312156119ba575f5ffd5b82356001600160401b038111156119cf575f5ffd5b6119db85828601611965565b90969095509350505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e0830152610100810151610100830152610120810151610120830152610140810151611a6361014084018264ffffffffff169052565b5061016081015161103e61016084018264ffffffffff169052565b61018081016103c082846119e7565b5f5f5f60408486031215611a9f575f5ffd5b83356001600160401b03811115611ab4575f5ffd5b611ac086828701611965565b909450925050602084013561171b81611677565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f5f8284036101a0811215611b1c575f5ffd5b610180811215611b2a575f5ffd5b5091936101808501359350915050565b634e487b7160e01b5f52603260045260245ffd5b5f5f8335601e19843603018112611b63575f5ffd5b8301803591506001600160401b03821115611b7c575f5ffd5b6020019150368190038213156119a2575f5ffd5b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b805161174381611726565b5f6101808284031215611beb575f5ffd5b611bf3611784565b825181526020808401519082015260408084015190820152606080840151908201526080808401519082015260a0808401519082015260c0808401519082015260e08084015190820152610100808401519082015261012080840151908201529050611c626101408301611bcf565b610140820152611c756101608301611bcf565b61016082015292915050565b80516001600160601b0381168114611743575f5ffd5b5f60e08284031215611ca7575f5ffd5b611caf61175c565b825181526020808401519082015260408084015190820152606080840151908201526080808401519082015260a0808401519082015260c0928301519281019290925250919050565b5f5f5f5f5f5f5f610300888a031215611d0f575f5ffd5b611d198989611bda565b6101808901516101a08a01516101c08b01516101e08c0151939a5091985096509450611d4481611726565b9250611d536102008901611c81565b9150611d63896102208a01611c97565b905092959891949750929550565b6103408101611d8082876119e7565b611d8e6101808301866119e7565b6001600160a01b03939093166103008201526001600160601b03919091166103209091015292915050565b5f60208284031215611dc9575f5ffd5b5051919050565b5f5f5f5f6101e08587031215611de4575f5ffd5b611dee8686611bda565b6101808601516101a08701516101c090970151919890975090945092505050565b6101e08101611e1e82876119e7565b84610180830152836101a0830152826101c083015295945050505050565b5f5f5f5f5f5f6101808789031215611e52575f5ffd5b86516020880151604089015160608a01519298509096509450611e7481611726565b9250611e8260808801611c81565b9150611e918860a08901611c97565b90509295509295509295565b6101e08101611eac82876119e7565b6001600160a01b03948516610180830152929093166101a08401526001600160601b03166101c090920191909152919050565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e08084013590820152610100808401359082015261012080840135908201526101a08101611f516101408501611738565b64ffffffffff16610140830152611f6b6101608501611738565b64ffffffffff1661016083015261018090910191909152919050565b5f60208284031215611f97575f5ffd5b8151610a8581611677565b634e487b7160e01b5f52601160045260245ffd5b818103818111156103c0576103c0611fa2565b808201808211156103c0576103c0611fa2565b64ffffffffff82811682821603908111156103c0576103c0611fa2565b80820281158282048414176103c0576103c0611fa2565b634e487b7160e01b5f52601260045260245ffdfe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca264697066735822122081525ec86a26307c33f3baebee28f99f4ba0b3b4905897cf439260de42902ee064736f6c634300081e0033","opcodes":"PUSH1 0xE0 PUSH1 0x40 MSTORE ADDRESS PUSH1 0x80 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x13 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x2323 CODESIZE SUB DUP1 PUSH2 0x2323 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x32 SWAP2 PUSH2 0x1E6 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x5A JUMPI PUSH1 0x40 MLOAD PUSH4 0x6B23CF01 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x62 PUSH2 0x120 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xA0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP POP POP DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC3 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 0xE7 SWAP2 SWAP1 PUSH2 0x21E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x10E JUMPI PUSH1 0x40 MLOAD PUSH4 0xFEC343D5 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xC0 MSTORE POP PUSH2 0x240 JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x170 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x1CF JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1CF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1F7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x202 DUP2 PUSH2 0x1D2 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x213 DUP2 PUSH2 0x1D2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x239 DUP2 PUSH2 0x1D2 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH2 0x207A PUSH2 0x2A9 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x28D ADD MSTORE PUSH2 0x1299 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x1D7 ADD MSTORE DUP2 DUP2 PUSH2 0x71E ADD MSTORE DUP2 DUP2 PUSH2 0x82E ADD MSTORE DUP2 DUP2 PUSH2 0xA00 ADD MSTORE DUP2 DUP2 PUSH2 0xAA3 ADD MSTORE DUP2 DUP2 PUSH2 0xBAC ADD MSTORE PUSH2 0x13E5 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0xEDB ADD MSTORE DUP2 DUP2 PUSH2 0xF04 ADD MSTORE PUSH2 0x104E ADD MSTORE PUSH2 0x207A PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x105 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x68BEECF9 GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x2EF JUMPI DUP1 PUSH4 0xBD644C56 EQ PUSH2 0x32C JUMPI DUP1 PUSH4 0xDEAA59DF EQ PUSH2 0x34B JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x36A JUMPI DUP1 PUSH4 0xF00DB260 EQ PUSH2 0x37E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x68BEECF9 EQ PUSH2 0x253 JUMPI DUP1 PUSH4 0x73A952E8 EQ PUSH2 0x27F JUMPI DUP1 PUSH4 0x73D0EFD0 EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0x8DAB1952 EQ PUSH2 0x2D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x485CC955 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0x485CC955 EQ PUSH2 0x1AA JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x1C9 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0x521EB273 EQ PUSH2 0x222 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x23F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x109 JUMPI DUP1 PUSH4 0x8BB5F7B EQ PUSH2 0x13D JUMPI DUP1 PUSH4 0x1F0F3E18 EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x23D09AC9 EQ PUSH2 0x17D JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x114 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x128 PUSH2 0x123 CALLDATASIZE PUSH1 0x4 PUSH2 0x1650 JUMP JUMPDEST PUSH2 0x39B 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 0x148 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x157 CALLDATASIZE PUSH1 0x4 PUSH2 0x168B JUMP JUMPDEST PUSH2 0x3C6 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x169 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x178 CALLDATASIZE PUSH1 0x4 PUSH2 0x16A6 JUMP JUMPDEST PUSH2 0x469 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x188 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x19C PUSH2 0x197 CALLDATASIZE PUSH1 0x4 PUSH2 0x17D7 JUMP JUMPDEST PUSH2 0x4AF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x134 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x1C4 CALLDATASIZE PUSH1 0x4 PUSH2 0x1889 JUMP JUMPDEST PUSH2 0x4CB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1D4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x134 JUMP JUMPDEST PUSH2 0x15C PUSH2 0x21D CALLDATASIZE PUSH1 0x4 PUSH2 0x18C0 JUMP JUMPDEST PUSH2 0x5C4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x22D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1F7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x24A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x19C PUSH2 0x5E3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x272 PUSH2 0x26D CALLDATASIZE PUSH1 0x4 PUSH2 0x19A9 JUMP JUMPDEST PUSH2 0x5FE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x1A7E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x1F7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x2CB CALLDATASIZE PUSH1 0x4 PUSH2 0x19A9 JUMP JUMPDEST PUSH2 0x7A8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2DB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x272 PUSH2 0x2EA CALLDATASIZE PUSH1 0x4 PUSH2 0x1A8D JUMP JUMPDEST PUSH2 0x8B3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x31F PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x1AD4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x337 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x346 CALLDATASIZE PUSH1 0x4 PUSH2 0x1B09 JUMP JUMPDEST PUSH2 0xA8C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x356 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x365 CALLDATASIZE PUSH1 0x4 PUSH2 0x168B JUMP JUMPDEST PUSH2 0xB0B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x375 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1F7 PUSH2 0xBA9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x389 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x32 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1F7 JUMP JUMPDEST PUSH0 PUSH2 0x3A5 DUP3 PUSH2 0xC2F JUMP JUMPDEST DUP1 PUSH2 0x3C0 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x21B7E09B PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x3FF JUMPI PUSH1 0x40 MLOAD PUSH4 0x3F8317D1 PUSH1 0xE2 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 PUSH1 0x32 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0xAE536502F25A82DE70ABED467008489D54FA0CBF58CDC51718EFE6D49406724F SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x32 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4A9 JUMPI PUSH2 0x4A0 DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x488 JUMPI PUSH2 0x488 PUSH2 0x1B3A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x49A SWAP2 SWAP1 PUSH2 0x1B4E JUMP JUMPDEST DUP5 PUSH2 0x8B3 JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x46B JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x4BD DUP3 DUP8 DUP8 DUP7 DUP9 PUSH2 0xC64 JUMP JUMPDEST PUSH1 0xE0 ADD MLOAD SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x4D4 PUSH2 0xE8E JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x4FA JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x515 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x523 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x541 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x56B JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x575 DUP8 DUP8 PUSH2 0xEB6 JUMP JUMPDEST DUP4 ISZERO PUSH2 0x5BB JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x5CC PUSH2 0xED0 JUMP JUMPDEST PUSH2 0x5D5 DUP3 PUSH2 0xF76 JUMP JUMPDEST PUSH2 0x5DF DUP3 DUP3 PUSH2 0xF82 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x5EC PUSH2 0x1043 JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2025 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x606 PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x32 SLOAD PUSH1 0x40 MLOAD PUSH4 0x4DD4A16B PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x9BA942D6 SWAP1 PUSH2 0x646 SWAP1 ADDRESS SWAP1 DUP15 SWAP1 DUP15 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B90 JUMP JUMPDEST PUSH2 0x300 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x662 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 0x686 SWAP2 SWAP1 PUSH2 0x1CF8 JUMP JUMPDEST SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP PUSH0 NOT DUP6 SUB PUSH2 0x6B1 JUMPI PUSH2 0x6AE DUP7 DUP6 DUP10 PUSH2 0x140 ADD MLOAD DUP7 DUP6 PUSH2 0x4AF JUMP JUMPDEST SWAP5 POP JUMPDEST TIMESTAMP PUSH5 0xFFFFFFFFFF AND DUP4 PUSH5 0xFFFFFFFFFF AND LT ISZERO PUSH2 0x6F1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA67FCB1D PUSH1 0xE0 SHL DUP2 MSTORE PUSH5 0xFFFFFFFFFF DUP1 DUP6 AND PUSH1 0x4 DUP4 ADD MSTORE TIMESTAMP AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0x704 DUP2 DUP7 DUP9 DUP8 DUP8 DUP13 PUSH2 0x140 ADD MLOAD PUSH2 0x108C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x663D8337 PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP9 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x663D8337 SWAP1 PUSH2 0x759 SWAP1 DUP11 SWAP1 DUP13 SWAP1 CALLER SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x1D71 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x775 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 0x799 SWAP2 SWAP1 PUSH2 0x1DB9 JUMP JUMPDEST DUP9 MSTORE POP POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x32 SLOAD PUSH1 0x40 MLOAD PUSH4 0x197C2BFD PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x32F857FA SWAP1 PUSH2 0x7E4 SWAP1 ADDRESS SWAP1 DUP11 SWAP1 DUP11 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B90 JUMP JUMPDEST PUSH2 0x1E0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x800 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 0x824 SWAP2 SWAP1 PUSH2 0x1DD0 JUMP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x6F520B73 DUP6 DUP6 DUP6 DUP6 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x87E SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1E0F JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x895 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x8A7 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x8BB PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x32 SLOAD PUSH1 0x40 MLOAD PUSH4 0x5D04BD15 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0xBA097A2A SWAP1 PUSH2 0x8FB SWAP1 ADDRESS SWAP1 DUP15 SWAP1 DUP15 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B90 JUMP JUMPDEST PUSH2 0x180 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x917 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 0x93B SWAP2 SWAP1 PUSH2 0x1E3C JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP SWAP6 POP SWAP6 POP SWAP6 POP PUSH0 TIMESTAMP SWAP1 POP PUSH0 NOT DUP7 SUB PUSH2 0x963 JUMPI PUSH2 0x960 DUP8 DUP7 DUP4 DUP8 DUP7 PUSH2 0x4AF JUMP JUMPDEST SWAP6 POP JUMPDEST DUP4 DUP2 PUSH5 0xFFFFFFFFFF DUP1 DUP3 AND SWAP1 DUP4 AND GT PUSH2 0x9A0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA67FCB1D PUSH1 0xE0 SHL DUP2 MSTORE PUSH5 0xFFFFFFFFFF SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3F6 JUMP JUMPDEST POP DUP10 SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x9D7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2C749141 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST POP PUSH2 0x9E6 DUP3 DUP8 DUP10 DUP9 DUP9 DUP7 PUSH2 0x108C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD100ACB PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP9 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0xD100ACB SWAP1 PUSH2 0xA3B SWAP1 DUP12 SWAP1 CALLER SWAP1 DUP15 SWAP1 DUP10 SWAP1 PUSH1 0x4 ADD PUSH2 0x1E9D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA57 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 0xA7B SWAP2 SWAP1 PUSH2 0x1DB9 JUMP JUMPDEST DUP9 MSTORE POP POP POP POP POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5EB2262B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0xBD644C56 SWAP1 PUSH2 0xADA SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0x1EDF JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xAF1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xB03 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xB3F JUMPI PUSH1 0x40 MLOAD PUSH4 0x3146914D PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST POP PUSH1 0x33 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0xE3D815EB4E0FDD9B02285235CB46B09F34BEE9BD0EB8D8DC3A1FE84694079BC2 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x33 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC06 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 0xC2A SWAP2 SWAP1 PUSH2 0x1F87 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x3C0 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xCA4 PUSH1 0x40 MLOAD DUP1 PUSH2 0x100 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP6 MLOAD PUSH2 0xCC5 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0xCBE DUP9 DUP9 DUP4 PUSH2 0x1193 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x1193 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP7 ADD MLOAD PUSH2 0xCE0 SWAP1 DUP7 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE DUP2 MLOAD LT ISZERO PUSH2 0xD0A JUMPI DUP1 MLOAD PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH2 0xD02 SWAP1 DUP4 SWAP1 PUSH2 0x1FB6 JUMP JUMPDEST SWAP1 MSTORE POP PUSH2 0xD11 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD MSTORE JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD PUSH2 0xD2A SWAP1 DUP7 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x20 DUP2 ADD MLOAD DUP2 MLOAD PUSH2 0xD40 SWAP2 SWAP1 PUSH2 0x1FC9 JUMP JUMPDEST DUP2 PUSH1 0x40 ADD MLOAD GT ISZERO PUSH2 0xD75 JUMPI PUSH1 0x20 DUP2 ADD MLOAD DUP2 MLOAD PUSH2 0xD5C SWAP2 SWAP1 PUSH2 0x1FC9 JUMP JUMPDEST DUP2 PUSH1 0x40 ADD DUP2 DUP2 MLOAD PUSH2 0xD6D SWAP2 SWAP1 PUSH2 0x1FB6 JUMP JUMPDEST SWAP1 MSTORE POP PUSH2 0xD7C JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD MSTORE JUMPDEST PUSH2 0xDC1 PUSH2 0xD89 DUP4 DUP6 PUSH2 0x1FDC JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP8 PUSH1 0xA0 ADD MLOAD PUSH2 0xD9F SWAP2 SWAP1 PUSH2 0x1FF9 JUMP JUMPDEST PUSH2 0xDB5 PUSH4 0x1E13380 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1FF9 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP2 SWAP1 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0xE0B PUSH2 0xDD3 DUP4 DUP6 PUSH2 0x1FDC JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP8 PUSH1 0xC0 ADD MLOAD PUSH2 0xDE9 SWAP2 SWAP1 PUSH2 0x1FF9 JUMP JUMPDEST PUSH2 0xDFF PUSH4 0x1E13380 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1FF9 JUMP JUMPDEST PUSH1 0x40 DUP5 ADD MLOAD SWAP2 SWAP1 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x60 DUP3 ADD MLOAD PUSH0 SWAP2 PUSH2 0xE22 SWAP2 PUSH2 0x1FC9 JUMP JUMPDEST PUSH1 0x80 DUP9 ADD MLOAD SWAP1 SWAP2 POP PUSH2 0xE3E SWAP1 DUP3 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x60 DUP9 ADD MLOAD DUP4 MLOAD PUSH2 0xE57 SWAP2 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1193 JUMP JUMPDEST PUSH2 0xE61 SWAP2 SWAP1 PUSH2 0x1FC9 JUMP JUMPDEST PUSH1 0xA0 DUP4 ADD DUP2 SWAP1 MSTORE DUP3 MLOAD DUP3 SWAP2 PUSH2 0xE75 SWAP2 PUSH2 0x1FC9 JUMP JUMPDEST PUSH2 0xE7F SWAP2 SWAP1 PUSH2 0x1FC9 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x3C0 JUMP JUMPDEST PUSH2 0xEBE PUSH2 0x1243 JUMP JUMPDEST PUSH2 0xEC6 PUSH2 0x1268 JUMP JUMPDEST PUSH2 0x5DF DUP3 DUP3 PUSH2 0x1270 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0xF56 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF4A PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2025 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0xF74 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0xF7F DUP2 PUSH2 0x128A JUMP JUMPDEST POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xFDC JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xFD9 SWAP2 DUP2 ADD SWAP1 PUSH2 0x1DB9 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1004 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2025 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x1034 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0x103E DUP4 DUP4 PUSH2 0x1348 JUMP JUMPDEST POP POP POP JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xF74 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1094 PUSH2 0x15ED JUMP JUMPDEST DUP6 DUP6 DUP1 DUP3 LT PUSH2 0x10BF JUMPI PUSH1 0x40 MLOAD PUSH4 0x319308D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3F6 JUMP JUMPDEST POP POP PUSH2 0x10C9 PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x20 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH5 0xFFFFFFFFFF DUP1 DUP5 AND PUSH2 0x140 DUP4 ADD MSTORE DUP5 AND PUSH2 0x160 DUP3 ADD MSTORE PUSH0 PUSH2 0x10FC DUP10 DUP9 DUP9 DUP9 DUP9 PUSH2 0xC64 JUMP JUMPDEST DUP1 MLOAD PUSH1 0xA0 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x40 DUP1 DUP7 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP3 ADD MLOAD PUSH1 0x60 DUP1 DUP7 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP3 ADD MLOAD PUSH2 0x100 DUP6 ADD MSTORE PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x120 DUP6 ADD MSTORE DUP2 ADD MLOAD PUSH1 0xC0 DUP5 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD SWAP1 SWAP2 POP DUP9 SWAP1 DUP2 DUP2 GT ISZERO PUSH2 0x1171 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFC096627 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3F6 JUMP JUMPDEST POP POP PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x1182 SWAP1 DUP10 PUSH2 0x1FB6 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x11A0 DUP7 DUP7 PUSH2 0x139D JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x11C4 JUMPI DUP4 DUP2 DUP2 PUSH2 0x11BA JUMPI PUSH2 0x11BA PUSH2 0x2010 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0xA85 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x11DB JUMPI PUSH2 0x11DB PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x13B9 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x124B PUSH2 0x13CA JUMP JUMPDEST PUSH2 0xF74 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xF74 PUSH2 0x1243 JUMP JUMPDEST PUSH2 0x1278 PUSH2 0x1243 JUMP JUMPDEST PUSH2 0x1281 DUP2 PUSH2 0xB0B JUMP JUMPDEST PUSH2 0x5DF DUP3 PUSH2 0x3C6 JUMP JUMPDEST PUSH2 0x1293 DUP2 PUSH2 0x13E3 JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x12FD 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 0x1321 SWAP2 SWAP1 PUSH2 0x1F87 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5DF JUMPI PUSH1 0x40 MLOAD PUSH4 0x50F87E1 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1351 DUP3 PUSH2 0x1494 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x1395 JUMPI PUSH2 0x103E DUP3 DUP3 PUSH2 0x14F7 JUMP JUMPDEST PUSH2 0x5DF PUSH2 0x1597 JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 PUSH2 0x13D3 PUSH2 0xE8E JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1449 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 0x146D SWAP2 SWAP1 PUSH2 0x1F87 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF7F JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x14C9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2025 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x1504 DUP5 DUP5 PUSH2 0x15B6 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1525 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x1525 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x153A JUMPI PUSH2 0x1532 PUSH2 0x15C9 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3C0 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1564 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 0x3F6 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x1577 JUMPI PUSH2 0x1572 PUSH2 0x15E2 JUMP JUMPDEST PUSH2 0x1590 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0xF74 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1660 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xA85 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xF7F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x169B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xA85 DUP2 PUSH2 0x1677 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x16B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x16CD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x16DD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x16F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP5 ADD ADD GT ISZERO PUSH2 0x1706 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 SWAP2 DUP3 ADD SWAP5 POP SWAP3 POP DUP5 ADD CALLDATALOAD PUSH2 0x171B DUP2 PUSH2 0x1677 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xF7F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x1743 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x177E JUMPI PUSH2 0x177E PUSH2 0x1748 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x177E JUMPI PUSH2 0x177E PUSH2 0x1748 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x17CF JUMPI PUSH2 0x17CF PUSH2 0x1748 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 DUP6 DUP8 SUB PUSH2 0x160 DUP2 SLT ISZERO PUSH2 0x17ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH2 0x1806 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP4 POP PUSH1 0x60 DUP8 ADD CALLDATALOAD PUSH2 0x1816 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP3 POP PUSH1 0xE0 PUSH1 0x7F NOT DUP3 ADD SLT ISZERO PUSH2 0x1829 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1832 PUSH2 0x175C JUMP JUMPDEST PUSH1 0x80 DUP8 DUP2 ADD CALLDATALOAD DUP3 MSTORE PUSH1 0xA0 DUP1 DUP10 ADD CALLDATALOAD PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0xC0 DUP1 DUP11 ADD CALLDATALOAD PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0xE0 DUP11 ADD CALLDATALOAD PUSH1 0x60 DUP6 ADD MSTORE PUSH2 0x100 DUP11 ADD CALLDATALOAD SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH2 0x120 DUP10 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH2 0x140 SWAP1 SWAP8 ADD CALLDATALOAD SWAP7 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x189A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x18A5 DUP2 PUSH2 0x1677 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x18B5 DUP2 PUSH2 0x1677 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x18D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x18DC DUP2 PUSH2 0x1677 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x18F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1906 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x191F JUMPI PUSH2 0x191F PUSH2 0x1748 JUMP JUMPDEST PUSH2 0x1932 PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x17A7 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP7 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x1946 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 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x1975 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x198B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x19A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x19BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x19CF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x19DB DUP6 DUP3 DUP7 ADD PUSH2 0x1965 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0x1A63 PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP2 ADD MLOAD PUSH2 0x103E PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST PUSH2 0x180 DUP2 ADD PUSH2 0x3C0 DUP3 DUP5 PUSH2 0x19E7 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1A9F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1AB4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1AC0 DUP7 DUP3 DUP8 ADD PUSH2 0x1965 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x171B DUP2 PUSH2 0x1677 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 PUSH0 PUSH0 DUP3 DUP5 SUB PUSH2 0x1A0 DUP2 SLT ISZERO PUSH2 0x1B1C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x180 DUP2 SLT ISZERO PUSH2 0x1B2A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP4 PUSH2 0x180 DUP6 ADD CALLDATALOAD SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x1B63 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x1B7C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x19A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE DUP2 ADD DUP3 SWAP1 MSTORE DUP2 DUP4 PUSH1 0x60 DUP4 ADD CALLDATACOPY PUSH0 DUP2 DUP4 ADD PUSH1 0x60 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP3 ADD PUSH1 0x1F NOT AND ADD ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0x1743 DUP2 PUSH2 0x1726 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1BEB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1BF3 PUSH2 0x1784 JUMP JUMPDEST DUP3 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0x1C62 PUSH2 0x140 DUP4 ADD PUSH2 0x1BCF JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x1C75 PUSH2 0x160 DUP4 ADD PUSH2 0x1BCF JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1743 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xE0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1CA7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1CAF PUSH2 0x175C JUMP JUMPDEST DUP3 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 SWAP3 DUP4 ADD MLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x300 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x1D0F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1D19 DUP10 DUP10 PUSH2 0x1BDA JUMP JUMPDEST PUSH2 0x180 DUP10 ADD MLOAD PUSH2 0x1A0 DUP11 ADD MLOAD PUSH2 0x1C0 DUP12 ADD MLOAD PUSH2 0x1E0 DUP13 ADD MLOAD SWAP4 SWAP11 POP SWAP2 SWAP9 POP SWAP7 POP SWAP5 POP PUSH2 0x1D44 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP3 POP PUSH2 0x1D53 PUSH2 0x200 DUP10 ADD PUSH2 0x1C81 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D63 DUP10 PUSH2 0x220 DUP11 ADD PUSH2 0x1C97 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH2 0x340 DUP2 ADD PUSH2 0x1D80 DUP3 DUP8 PUSH2 0x19E7 JUMP JUMPDEST PUSH2 0x1D8E PUSH2 0x180 DUP4 ADD DUP7 PUSH2 0x19E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND PUSH2 0x300 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH2 0x320 SWAP1 SWAP2 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DC9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1DE4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1DEE DUP7 DUP7 PUSH2 0x1BDA JUMP JUMPDEST PUSH2 0x180 DUP7 ADD MLOAD PUSH2 0x1A0 DUP8 ADD MLOAD PUSH2 0x1C0 SWAP1 SWAP8 ADD MLOAD SWAP2 SWAP9 SWAP1 SWAP8 POP SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0x1E1E DUP3 DUP8 PUSH2 0x19E7 JUMP JUMPDEST DUP5 PUSH2 0x180 DUP4 ADD MSTORE DUP4 PUSH2 0x1A0 DUP4 ADD MSTORE DUP3 PUSH2 0x1C0 DUP4 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x180 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x1E52 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 MLOAD PUSH1 0x20 DUP9 ADD MLOAD PUSH1 0x40 DUP10 ADD MLOAD PUSH1 0x60 DUP11 ADD MLOAD SWAP3 SWAP9 POP SWAP1 SWAP7 POP SWAP5 POP PUSH2 0x1E74 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP3 POP PUSH2 0x1E82 PUSH1 0x80 DUP9 ADD PUSH2 0x1C81 JUMP JUMPDEST SWAP2 POP PUSH2 0x1E91 DUP9 PUSH1 0xA0 DUP10 ADD PUSH2 0x1C97 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0x1EAC DUP3 DUP8 PUSH2 0x19E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND PUSH2 0x180 DUP4 ADD MSTORE SWAP3 SWAP1 SWAP4 AND PUSH2 0x1A0 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x1C0 SWAP1 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x1A0 DUP2 ADD PUSH2 0x1F51 PUSH2 0x140 DUP6 ADD PUSH2 0x1738 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND PUSH2 0x140 DUP4 ADD MSTORE PUSH2 0x1F6B PUSH2 0x160 DUP6 ADD PUSH2 0x1738 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND PUSH2 0x160 DUP4 ADD MSTORE PUSH2 0x180 SWAP1 SWAP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F97 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xA85 DUP2 PUSH2 0x1677 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 0x3C0 JUMPI PUSH2 0x3C0 PUSH2 0x1FA2 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x3C0 JUMPI PUSH2 0x3C0 PUSH2 0x1FA2 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x3C0 JUMPI PUSH2 0x3C0 PUSH2 0x1FA2 JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x3C0 JUMPI PUSH2 0x3C0 PUSH2 0x1FA2 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCA264697066735822122081 MSTORE MCOPY 0xC8 PUSH11 0x26307C33F3BAEBEE28F99F 0x4B LOG0 0xB3 0xB4 SWAP1 PC SWAP8 0xCF NUMBER SWAP3 PUSH1 0xDE TIMESTAMP SWAP1 0x2E RJUMP 0x6473 PUSH16 0x6C634300081E00330000000000000000 ","sourceMap":"708:8644:28:-:0;;;1084:4:76;1041:48;;1540:294:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1632:11;-1:-1:-1;;;;;1540:34:25;;1536:65;;1583:18;;-1:-1:-1;;;1583:18:25;;;;;;;;;;;1536:65;1607:22;:20;:22::i;:::-;1649:11;-1:-1:-1;;;;;1635:25:25;;;-1:-1:-1;;;;;1635:25:25;;;;;1493:172;1718:11:28::1;-1:-1:-1::0;;;;;1655:74:28::1;1683:16;-1:-1:-1::0;;;;;1655:57:28::1;;:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1655:74:28::1;;1651:138;;1746:36;;-1:-1:-1::0;;;1746:36:28::1;;;;;;;;;;;1651:138;-1:-1:-1::0;;;;;1794:35:28::1;;::::0;-1:-1:-1;708:8644:28;;7709:422:75;3147:66;7898:15;;;;;;;7894:76;;;7936:23;;-1:-1:-1;;;7936:23:75;;;;;;;;;;;7894:76;7983:14;;-1:-1:-1;;;;;7983:14:75;;;:34;7979:146;;8033:33;;-1:-1:-1;;;;;;8033:33:75;-1:-1:-1;;;;;8033:33:75;;;;;8085:29;;1060:50:125;;;8085:29:75;;1048:2:125;1033:18;8085:29:75;;;;;;;7979:146;7758:373;7709:422::o;14:144:125:-;-1:-1:-1;;;;;102:31:125;;92:42;;82:70;;148:1;145;138:12;163:458;289:6;297;350:2;338:9;329:7;325:23;321:32;318:52;;;366:1;363;356:12;318:52;398:9;392:16;417:44;455:5;417:44;:::i;:::-;530:2;515:18;;509:25;480:5;;-1:-1:-1;543:46:125;509:25;543:46;:::i;:::-;608:7;598:17;;;163:458;;;;;:::o;626:285::-;717:6;770:2;758:9;749:7;745:23;741:32;738:52;;;786:1;783;776:12;738:52;818:9;812:16;837:44;875:5;837:44;:::i;:::-;900:5;626:285;-1:-1:-1;;;626:285:125:o;916:200::-;708:8644:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@UPGRADE_INTERFACE_VERSION_23454":{"entryPoint":null,"id":23454,"parameterSlots":0,"returnSlots":0},"@__PolicyPoolComponent_init_11015":{"entryPoint":4712,"id":11015,"parameterSlots":0,"returnSlots":0},"@__RiskModule_init_13644":{"entryPoint":3766,"id":13644,"parameterSlots":2,"returnSlots":0},"@__RiskModule_init_unchained_13663":{"entryPoint":4720,"id":13663,"parameterSlots":2,"returnSlots":0},"@_authorizeUpgrade_11026":{"entryPoint":3958,"id":11026,"parameterSlots":1,"returnSlots":0},"@_checkInitializing_23342":{"entryPoint":4675,"id":23342,"parameterSlots":0,"returnSlots":0},"@_checkNonPayable_23119":{"entryPoint":5527,"id":23119,"parameterSlots":0,"returnSlots":0},"@_checkNotDelegated_23548":{"entryPoint":4163,"id":23548,"parameterSlots":0,"returnSlots":0},"@_checkProxy_23532":{"entryPoint":3792,"id":23532,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_23433":{"entryPoint":3726,"id":23433,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_23419":{"entryPoint":null,"id":23419,"parameterSlots":0,"returnSlots":1},"@_isInitializing_23410":{"entryPoint":5066,"id":23410,"parameterSlots":0,"returnSlots":1},"@_setImplementation_22899":{"entryPoint":5268,"id":22899,"parameterSlots":1,"returnSlots":0},"@_upgradeToAndCallUUPS_23599":{"entryPoint":3970,"id":23599,"parameterSlots":2,"returnSlots":0},"@_upgradeValidations_11043":{"entryPoint":5091,"id":11043,"parameterSlots":1,"returnSlots":0},"@_upgradeValidations_13693":{"entryPoint":4746,"id":13693,"parameterSlots":1,"returnSlots":0},"@bubbleRevert_26962":{"entryPoint":5602,"id":26962,"parameterSlots":0,"returnSlots":0},"@cancelPolicy_14111":{"entryPoint":1960,"id":14111,"parameterSlots":2,"returnSlots":0},"@currency_11088":{"entryPoint":2985,"id":11088,"parameterSlots":0,"returnSlots":1},"@delegatecallNoReturn_26924":{"entryPoint":5558,"id":26924,"parameterSlots":2,"returnSlots":1},"@functionDelegateCall_25956":{"entryPoint":5367,"id":25956,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_31145":{"entryPoint":null,"id":31145,"parameterSlots":1,"returnSlots":1},"@getImplementation_22872":{"entryPoint":null,"id":22872,"parameterSlots":0,"returnSlots":1},"@getMinimumPremium_13833":{"entryPoint":1199,"id":13833,"parameterSlots":5,"returnSlots":1},"@getMinimumPremium_7964":{"entryPoint":3172,"id":7964,"parameterSlots":5,"returnSlots":1},"@initialize_13624":{"entryPoint":1227,"id":13624,"parameterSlots":2,"returnSlots":0},"@initialize_8099":{"entryPoint":4236,"id":8099,"parameterSlots":6,"returnSlots":1},"@mul512_33585":{"entryPoint":5021,"id":33585,"parameterSlots":2,"returnSlots":2},"@mulDiv_34072":{"entryPoint":4499,"id":34072,"parameterSlots":3,"returnSlots":1},"@newPolicies_13973":{"entryPoint":1129,"id":13973,"parameterSlots":3,"returnSlots":0},"@newPolicy_13943":{"entryPoint":2227,"id":13943,"parameterSlots":3,"returnSlots":1},"@panic_30996":{"entryPoint":5049,"id":30996,"parameterSlots":1,"returnSlots":0},"@policyPool_11077":{"entryPoint":null,"id":11077,"parameterSlots":0,"returnSlots":1},"@premiumsAccount_13806":{"entryPoint":null,"id":13806,"parameterSlots":0,"returnSlots":1},"@proxiableUUID_23490":{"entryPoint":1507,"id":23490,"parameterSlots":0,"returnSlots":1},"@replacePolicy_14075":{"entryPoint":1534,"id":14075,"parameterSlots":2,"returnSlots":1},"@resolvePolicy_14128":{"entryPoint":2700,"id":14128,"parameterSlots":2,"returnSlots":0},"@returnDataSize_26948":{"entryPoint":null,"id":26948,"parameterSlots":0,"returnSlots":1},"@returnData_26956":{"entryPoint":5577,"id":26956,"parameterSlots":0,"returnSlots":1},"@setUnderwriter_13795":{"entryPoint":966,"id":13795,"parameterSlots":1,"returnSlots":0},"@setWallet_13753":{"entryPoint":2827,"id":13753,"parameterSlots":1,"returnSlots":0},"@supportsInterface_11067":{"entryPoint":3119,"id":11067,"parameterSlots":1,"returnSlots":1},"@supportsInterface_13715":{"entryPoint":923,"id":13715,"parameterSlots":1,"returnSlots":1},"@ternary_33834":{"entryPoint":null,"id":33834,"parameterSlots":3,"returnSlots":1},"@toUint_36951":{"entryPoint":null,"id":36951,"parameterSlots":1,"returnSlots":1},"@underwriter_13763":{"entryPoint":null,"id":13763,"parameterSlots":0,"returnSlots":1},"@upgradeToAndCall_22935":{"entryPoint":4936,"id":22935,"parameterSlots":2,"returnSlots":0},"@upgradeToAndCall_23510":{"entryPoint":1476,"id":23510,"parameterSlots":2,"returnSlots":0},"@wallet_13725":{"entryPoint":null,"id":13725,"parameterSlots":0,"returnSlots":1},"abi_decode_bytes_calldata":{"entryPoint":6501,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_struct_Params_fromMemory":{"entryPoint":7319,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_struct_PolicyData_fromMemory":{"entryPoint":7130,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_memory_ptr":{"entryPoint":6336,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptrt_address":{"entryPoint":5798,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_bytes32_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":5712,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes_calldata_ptr":{"entryPoint":6569,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes_calldata_ptrt_address":{"entryPoint":6797,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory":{"entryPoint":8071,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IPremiumsAccount_$14743_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IUnderwriter_$14830":{"entryPoint":5771,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IUnderwriter_$14830t_address":{"entryPoint":6281,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_uint256":{"entryPoint":6921,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256_fromMemory":{"entryPoint":7632,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$7718_memory_ptr_fromMemory":{"entryPoint":7416,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":7609,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$7718_memory_ptr_fromMemory":{"entryPoint":7740,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_uint256t_uint256t_uint40t_uint40t_struct$_Params_$7718_memory_ptr":{"entryPoint":6103,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_uint40":{"entryPoint":5944,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint40_fromMemory":{"entryPoint":7119,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint96_fromMemory":{"entryPoint":7297,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_struct_PolicyData":{"entryPoint":6631,"id":null,"parameterSlots":2,"returnSlots":0},"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__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_bytes_calldata_ptr__to_t_address_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":7056,"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_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC20Metadata_$24925__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPool_$14638__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IPremiumsAccount_$14743__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IUnderwriter_$14830__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IUnderwriter_$14830_t_contract$_IUnderwriter_$14830__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__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":6868,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$7744_calldata_ptr_t_uint256__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256__fromStack_reversed":{"entryPoint":7903,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr__fromStack_reversed":{"entryPoint":6782,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_address_t_address_t_uint96__to_t_struct$_PolicyData_$7744_memory_ptr_t_address_t_address_t_uint96__fromStack_reversed":{"entryPoint":7837,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_struct$_PolicyData_$7744_memory_ptr_t_address_t_uint96__to_t_struct$_PolicyData_$7744_memory_ptr_t_struct$_PolicyData_$7744_memory_ptr_t_address_t_uint96__fromStack_reversed":{"entryPoint":7537,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":7695,"id":null,"parameterSlots":5,"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_uint40_t_uint40__to_t_uint40_t_uint40__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_uint40":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":6990,"id":null,"parameterSlots":2,"returnSlots":2},"allocate_memory":{"entryPoint":6055,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_memory_2372":{"entryPoint":5980,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_2373":{"entryPoint":6020,"id":null,"parameterSlots":0,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":8137,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":8185,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":8118,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint40":{"entryPoint":8156,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":8098,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":8208,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":6970,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":5960,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_contract_IUnderwriter":{"entryPoint":5751,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_uint40":{"entryPoint":5926,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:24229:125","nodeType":"YulBlock","src":"0:24229:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"83:217:125","nodeType":"YulBlock","src":"83:217:125","statements":[{"body":{"nativeSrc":"129:16:125","nodeType":"YulBlock","src":"129:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:125","nodeType":"YulLiteral","src":"138:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:125","nodeType":"YulLiteral","src":"141:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:125","nodeType":"YulIdentifier","src":"131:6:125"},"nativeSrc":"131:12:125","nodeType":"YulFunctionCall","src":"131:12:125"},"nativeSrc":"131:12:125","nodeType":"YulExpressionStatement","src":"131:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:125","nodeType":"YulIdentifier","src":"104:7:125"},{"name":"headStart","nativeSrc":"113:9:125","nodeType":"YulIdentifier","src":"113:9:125"}],"functionName":{"name":"sub","nativeSrc":"100:3:125","nodeType":"YulIdentifier","src":"100:3:125"},"nativeSrc":"100:23:125","nodeType":"YulFunctionCall","src":"100:23:125"},{"kind":"number","nativeSrc":"125:2:125","nodeType":"YulLiteral","src":"125:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:125","nodeType":"YulIdentifier","src":"96:3:125"},"nativeSrc":"96:32:125","nodeType":"YulFunctionCall","src":"96:32:125"},"nativeSrc":"93:52:125","nodeType":"YulIf","src":"93:52:125"},{"nativeSrc":"154:36:125","nodeType":"YulVariableDeclaration","src":"154:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:125","nodeType":"YulIdentifier","src":"180:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:125","nodeType":"YulIdentifier","src":"167:12:125"},"nativeSrc":"167:23:125","nodeType":"YulFunctionCall","src":"167:23:125"},"variables":[{"name":"value","nativeSrc":"158:5:125","nodeType":"YulTypedName","src":"158:5:125","type":""}]},{"body":{"nativeSrc":"254:16:125","nodeType":"YulBlock","src":"254:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:125","nodeType":"YulLiteral","src":"263:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:125","nodeType":"YulLiteral","src":"266:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:125","nodeType":"YulIdentifier","src":"256:6:125"},"nativeSrc":"256:12:125","nodeType":"YulFunctionCall","src":"256:12:125"},"nativeSrc":"256:12:125","nodeType":"YulExpressionStatement","src":"256:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:125","nodeType":"YulIdentifier","src":"212:5:125"},{"arguments":[{"name":"value","nativeSrc":"223:5:125","nodeType":"YulIdentifier","src":"223:5:125"},{"arguments":[{"kind":"number","nativeSrc":"234:3:125","nodeType":"YulLiteral","src":"234:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:125","nodeType":"YulLiteral","src":"239:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:125","nodeType":"YulIdentifier","src":"230:3:125"},"nativeSrc":"230:20:125","nodeType":"YulFunctionCall","src":"230:20:125"}],"functionName":{"name":"and","nativeSrc":"219:3:125","nodeType":"YulIdentifier","src":"219:3:125"},"nativeSrc":"219:32:125","nodeType":"YulFunctionCall","src":"219:32:125"}],"functionName":{"name":"eq","nativeSrc":"209:2:125","nodeType":"YulIdentifier","src":"209:2:125"},"nativeSrc":"209:43:125","nodeType":"YulFunctionCall","src":"209:43:125"}],"functionName":{"name":"iszero","nativeSrc":"202:6:125","nodeType":"YulIdentifier","src":"202:6:125"},"nativeSrc":"202:51:125","nodeType":"YulFunctionCall","src":"202:51:125"},"nativeSrc":"199:71:125","nodeType":"YulIf","src":"199:71:125"},{"nativeSrc":"279:15:125","nodeType":"YulAssignment","src":"279:15:125","value":{"name":"value","nativeSrc":"289:5:125","nodeType":"YulIdentifier","src":"289:5:125"},"variableNames":[{"name":"value0","nativeSrc":"279:6:125","nodeType":"YulIdentifier","src":"279:6:125"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:125","nodeType":"YulTypedName","src":"49:9:125","type":""},{"name":"dataEnd","nativeSrc":"60:7:125","nodeType":"YulTypedName","src":"60:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:125","nodeType":"YulTypedName","src":"72:6:125","type":""}],"src":"14:286:125"},{"body":{"nativeSrc":"400:92:125","nodeType":"YulBlock","src":"400:92:125","statements":[{"nativeSrc":"410:26:125","nodeType":"YulAssignment","src":"410:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:125","nodeType":"YulIdentifier","src":"422:9:125"},{"kind":"number","nativeSrc":"433:2:125","nodeType":"YulLiteral","src":"433:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:125","nodeType":"YulIdentifier","src":"418:3:125"},"nativeSrc":"418:18:125","nodeType":"YulFunctionCall","src":"418:18:125"},"variableNames":[{"name":"tail","nativeSrc":"410:4:125","nodeType":"YulIdentifier","src":"410:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:125","nodeType":"YulIdentifier","src":"452:9:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:125","nodeType":"YulIdentifier","src":"477:6:125"}],"functionName":{"name":"iszero","nativeSrc":"470:6:125","nodeType":"YulIdentifier","src":"470:6:125"},"nativeSrc":"470:14:125","nodeType":"YulFunctionCall","src":"470:14:125"}],"functionName":{"name":"iszero","nativeSrc":"463:6:125","nodeType":"YulIdentifier","src":"463:6:125"},"nativeSrc":"463:22:125","nodeType":"YulFunctionCall","src":"463:22:125"}],"functionName":{"name":"mstore","nativeSrc":"445:6:125","nodeType":"YulIdentifier","src":"445:6:125"},"nativeSrc":"445:41:125","nodeType":"YulFunctionCall","src":"445:41:125"},"nativeSrc":"445:41:125","nodeType":"YulExpressionStatement","src":"445:41:125"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:125","nodeType":"YulTypedName","src":"369:9:125","type":""},{"name":"value0","nativeSrc":"380:6:125","nodeType":"YulTypedName","src":"380:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:125","nodeType":"YulTypedName","src":"391:4:125","type":""}],"src":"305:187:125"},{"body":{"nativeSrc":"556:86:125","nodeType":"YulBlock","src":"556:86:125","statements":[{"body":{"nativeSrc":"620:16:125","nodeType":"YulBlock","src":"620:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"629:1:125","nodeType":"YulLiteral","src":"629:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"632:1:125","nodeType":"YulLiteral","src":"632:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"622:6:125","nodeType":"YulIdentifier","src":"622:6:125"},"nativeSrc":"622:12:125","nodeType":"YulFunctionCall","src":"622:12:125"},"nativeSrc":"622:12:125","nodeType":"YulExpressionStatement","src":"622:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"579:5:125","nodeType":"YulIdentifier","src":"579:5:125"},{"arguments":[{"name":"value","nativeSrc":"590:5:125","nodeType":"YulIdentifier","src":"590:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"605:3:125","nodeType":"YulLiteral","src":"605:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"610:1:125","nodeType":"YulLiteral","src":"610:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"601:3:125","nodeType":"YulIdentifier","src":"601:3:125"},"nativeSrc":"601:11:125","nodeType":"YulFunctionCall","src":"601:11:125"},{"kind":"number","nativeSrc":"614:1:125","nodeType":"YulLiteral","src":"614:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"597:3:125","nodeType":"YulIdentifier","src":"597:3:125"},"nativeSrc":"597:19:125","nodeType":"YulFunctionCall","src":"597:19:125"}],"functionName":{"name":"and","nativeSrc":"586:3:125","nodeType":"YulIdentifier","src":"586:3:125"},"nativeSrc":"586:31:125","nodeType":"YulFunctionCall","src":"586:31:125"}],"functionName":{"name":"eq","nativeSrc":"576:2:125","nodeType":"YulIdentifier","src":"576:2:125"},"nativeSrc":"576:42:125","nodeType":"YulFunctionCall","src":"576:42:125"}],"functionName":{"name":"iszero","nativeSrc":"569:6:125","nodeType":"YulIdentifier","src":"569:6:125"},"nativeSrc":"569:50:125","nodeType":"YulFunctionCall","src":"569:50:125"},"nativeSrc":"566:70:125","nodeType":"YulIf","src":"566:70:125"}]},"name":"validator_revert_contract_IUnderwriter","nativeSrc":"497:145:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"545:5:125","nodeType":"YulTypedName","src":"545:5:125","type":""}],"src":"497:145:125"},{"body":{"nativeSrc":"739:191:125","nodeType":"YulBlock","src":"739:191:125","statements":[{"body":{"nativeSrc":"785:16:125","nodeType":"YulBlock","src":"785:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"794:1:125","nodeType":"YulLiteral","src":"794:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"797:1:125","nodeType":"YulLiteral","src":"797:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"787:6:125","nodeType":"YulIdentifier","src":"787:6:125"},"nativeSrc":"787:12:125","nodeType":"YulFunctionCall","src":"787:12:125"},"nativeSrc":"787:12:125","nodeType":"YulExpressionStatement","src":"787:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"760:7:125","nodeType":"YulIdentifier","src":"760:7:125"},{"name":"headStart","nativeSrc":"769:9:125","nodeType":"YulIdentifier","src":"769:9:125"}],"functionName":{"name":"sub","nativeSrc":"756:3:125","nodeType":"YulIdentifier","src":"756:3:125"},"nativeSrc":"756:23:125","nodeType":"YulFunctionCall","src":"756:23:125"},{"kind":"number","nativeSrc":"781:2:125","nodeType":"YulLiteral","src":"781:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"752:3:125","nodeType":"YulIdentifier","src":"752:3:125"},"nativeSrc":"752:32:125","nodeType":"YulFunctionCall","src":"752:32:125"},"nativeSrc":"749:52:125","nodeType":"YulIf","src":"749:52:125"},{"nativeSrc":"810:36:125","nodeType":"YulVariableDeclaration","src":"810:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"836:9:125","nodeType":"YulIdentifier","src":"836:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"823:12:125","nodeType":"YulIdentifier","src":"823:12:125"},"nativeSrc":"823:23:125","nodeType":"YulFunctionCall","src":"823:23:125"},"variables":[{"name":"value","nativeSrc":"814:5:125","nodeType":"YulTypedName","src":"814:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"894:5:125","nodeType":"YulIdentifier","src":"894:5:125"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"855:38:125","nodeType":"YulIdentifier","src":"855:38:125"},"nativeSrc":"855:45:125","nodeType":"YulFunctionCall","src":"855:45:125"},"nativeSrc":"855:45:125","nodeType":"YulExpressionStatement","src":"855:45:125"},{"nativeSrc":"909:15:125","nodeType":"YulAssignment","src":"909:15:125","value":{"name":"value","nativeSrc":"919:5:125","nodeType":"YulIdentifier","src":"919:5:125"},"variableNames":[{"name":"value0","nativeSrc":"909:6:125","nodeType":"YulIdentifier","src":"909:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IUnderwriter_$14830","nativeSrc":"647:283:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"705:9:125","nodeType":"YulTypedName","src":"705:9:125","type":""},{"name":"dataEnd","nativeSrc":"716:7:125","nodeType":"YulTypedName","src":"716:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"728:6:125","nodeType":"YulTypedName","src":"728:6:125","type":""}],"src":"647:283:125"},{"body":{"nativeSrc":"1068:643:125","nodeType":"YulBlock","src":"1068:643:125","statements":[{"body":{"nativeSrc":"1114:16:125","nodeType":"YulBlock","src":"1114:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1123:1:125","nodeType":"YulLiteral","src":"1123:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1126:1:125","nodeType":"YulLiteral","src":"1126:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1116:6:125","nodeType":"YulIdentifier","src":"1116:6:125"},"nativeSrc":"1116:12:125","nodeType":"YulFunctionCall","src":"1116:12:125"},"nativeSrc":"1116:12:125","nodeType":"YulExpressionStatement","src":"1116:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1089:7:125","nodeType":"YulIdentifier","src":"1089:7:125"},{"name":"headStart","nativeSrc":"1098:9:125","nodeType":"YulIdentifier","src":"1098:9:125"}],"functionName":{"name":"sub","nativeSrc":"1085:3:125","nodeType":"YulIdentifier","src":"1085:3:125"},"nativeSrc":"1085:23:125","nodeType":"YulFunctionCall","src":"1085:23:125"},{"kind":"number","nativeSrc":"1110:2:125","nodeType":"YulLiteral","src":"1110:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1081:3:125","nodeType":"YulIdentifier","src":"1081:3:125"},"nativeSrc":"1081:32:125","nodeType":"YulFunctionCall","src":"1081:32:125"},"nativeSrc":"1078:52:125","nodeType":"YulIf","src":"1078:52:125"},{"nativeSrc":"1139:37:125","nodeType":"YulVariableDeclaration","src":"1139:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1166:9:125","nodeType":"YulIdentifier","src":"1166:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"1153:12:125","nodeType":"YulIdentifier","src":"1153:12:125"},"nativeSrc":"1153:23:125","nodeType":"YulFunctionCall","src":"1153:23:125"},"variables":[{"name":"offset","nativeSrc":"1143:6:125","nodeType":"YulTypedName","src":"1143:6:125","type":""}]},{"body":{"nativeSrc":"1219:16:125","nodeType":"YulBlock","src":"1219:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1228:1:125","nodeType":"YulLiteral","src":"1228:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1231:1:125","nodeType":"YulLiteral","src":"1231:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1221:6:125","nodeType":"YulIdentifier","src":"1221:6:125"},"nativeSrc":"1221:12:125","nodeType":"YulFunctionCall","src":"1221:12:125"},"nativeSrc":"1221:12:125","nodeType":"YulExpressionStatement","src":"1221:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1191:6:125","nodeType":"YulIdentifier","src":"1191:6:125"},{"kind":"number","nativeSrc":"1199:18:125","nodeType":"YulLiteral","src":"1199:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1188:2:125","nodeType":"YulIdentifier","src":"1188:2:125"},"nativeSrc":"1188:30:125","nodeType":"YulFunctionCall","src":"1188:30:125"},"nativeSrc":"1185:50:125","nodeType":"YulIf","src":"1185:50:125"},{"nativeSrc":"1244:32:125","nodeType":"YulVariableDeclaration","src":"1244:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1258:9:125","nodeType":"YulIdentifier","src":"1258:9:125"},{"name":"offset","nativeSrc":"1269:6:125","nodeType":"YulIdentifier","src":"1269:6:125"}],"functionName":{"name":"add","nativeSrc":"1254:3:125","nodeType":"YulIdentifier","src":"1254:3:125"},"nativeSrc":"1254:22:125","nodeType":"YulFunctionCall","src":"1254:22:125"},"variables":[{"name":"_1","nativeSrc":"1248:2:125","nodeType":"YulTypedName","src":"1248:2:125","type":""}]},{"body":{"nativeSrc":"1324:16:125","nodeType":"YulBlock","src":"1324:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1333:1:125","nodeType":"YulLiteral","src":"1333:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1336:1:125","nodeType":"YulLiteral","src":"1336:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1326:6:125","nodeType":"YulIdentifier","src":"1326:6:125"},"nativeSrc":"1326:12:125","nodeType":"YulFunctionCall","src":"1326:12:125"},"nativeSrc":"1326:12:125","nodeType":"YulExpressionStatement","src":"1326:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1303:2:125","nodeType":"YulIdentifier","src":"1303:2:125"},{"kind":"number","nativeSrc":"1307:4:125","nodeType":"YulLiteral","src":"1307:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"1299:3:125","nodeType":"YulIdentifier","src":"1299:3:125"},"nativeSrc":"1299:13:125","nodeType":"YulFunctionCall","src":"1299:13:125"},{"name":"dataEnd","nativeSrc":"1314:7:125","nodeType":"YulIdentifier","src":"1314:7:125"}],"functionName":{"name":"slt","nativeSrc":"1295:3:125","nodeType":"YulIdentifier","src":"1295:3:125"},"nativeSrc":"1295:27:125","nodeType":"YulFunctionCall","src":"1295:27:125"}],"functionName":{"name":"iszero","nativeSrc":"1288:6:125","nodeType":"YulIdentifier","src":"1288:6:125"},"nativeSrc":"1288:35:125","nodeType":"YulFunctionCall","src":"1288:35:125"},"nativeSrc":"1285:55:125","nodeType":"YulIf","src":"1285:55:125"},{"nativeSrc":"1349:30:125","nodeType":"YulVariableDeclaration","src":"1349:30:125","value":{"arguments":[{"name":"_1","nativeSrc":"1376:2:125","nodeType":"YulIdentifier","src":"1376:2:125"}],"functionName":{"name":"calldataload","nativeSrc":"1363:12:125","nodeType":"YulIdentifier","src":"1363:12:125"},"nativeSrc":"1363:16:125","nodeType":"YulFunctionCall","src":"1363:16:125"},"variables":[{"name":"length","nativeSrc":"1353:6:125","nodeType":"YulTypedName","src":"1353:6:125","type":""}]},{"body":{"nativeSrc":"1422:16:125","nodeType":"YulBlock","src":"1422:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1431:1:125","nodeType":"YulLiteral","src":"1431:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1434:1:125","nodeType":"YulLiteral","src":"1434:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1424:6:125","nodeType":"YulIdentifier","src":"1424:6:125"},"nativeSrc":"1424:12:125","nodeType":"YulFunctionCall","src":"1424:12:125"},"nativeSrc":"1424:12:125","nodeType":"YulExpressionStatement","src":"1424:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1394:6:125","nodeType":"YulIdentifier","src":"1394:6:125"},{"kind":"number","nativeSrc":"1402:18:125","nodeType":"YulLiteral","src":"1402:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1391:2:125","nodeType":"YulIdentifier","src":"1391:2:125"},"nativeSrc":"1391:30:125","nodeType":"YulFunctionCall","src":"1391:30:125"},"nativeSrc":"1388:50:125","nodeType":"YulIf","src":"1388:50:125"},{"body":{"nativeSrc":"1498:16:125","nodeType":"YulBlock","src":"1498:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1507:1:125","nodeType":"YulLiteral","src":"1507:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1510:1:125","nodeType":"YulLiteral","src":"1510:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1500:6:125","nodeType":"YulIdentifier","src":"1500:6:125"},"nativeSrc":"1500:12:125","nodeType":"YulFunctionCall","src":"1500:12:125"},"nativeSrc":"1500:12:125","nodeType":"YulExpressionStatement","src":"1500:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1461:2:125","nodeType":"YulIdentifier","src":"1461:2:125"},{"arguments":[{"kind":"number","nativeSrc":"1469:1:125","nodeType":"YulLiteral","src":"1469:1:125","type":"","value":"5"},{"name":"length","nativeSrc":"1472:6:125","nodeType":"YulIdentifier","src":"1472:6:125"}],"functionName":{"name":"shl","nativeSrc":"1465:3:125","nodeType":"YulIdentifier","src":"1465:3:125"},"nativeSrc":"1465:14:125","nodeType":"YulFunctionCall","src":"1465:14:125"}],"functionName":{"name":"add","nativeSrc":"1457:3:125","nodeType":"YulIdentifier","src":"1457:3:125"},"nativeSrc":"1457:23:125","nodeType":"YulFunctionCall","src":"1457:23:125"},{"kind":"number","nativeSrc":"1482:4:125","nodeType":"YulLiteral","src":"1482:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1453:3:125","nodeType":"YulIdentifier","src":"1453:3:125"},"nativeSrc":"1453:34:125","nodeType":"YulFunctionCall","src":"1453:34:125"},{"name":"dataEnd","nativeSrc":"1489:7:125","nodeType":"YulIdentifier","src":"1489:7:125"}],"functionName":{"name":"gt","nativeSrc":"1450:2:125","nodeType":"YulIdentifier","src":"1450:2:125"},"nativeSrc":"1450:47:125","nodeType":"YulFunctionCall","src":"1450:47:125"},"nativeSrc":"1447:67:125","nodeType":"YulIf","src":"1447:67:125"},{"nativeSrc":"1523:23:125","nodeType":"YulAssignment","src":"1523:23:125","value":{"arguments":[{"name":"_1","nativeSrc":"1537:2:125","nodeType":"YulIdentifier","src":"1537:2:125"},{"kind":"number","nativeSrc":"1541:4:125","nodeType":"YulLiteral","src":"1541:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1533:3:125","nodeType":"YulIdentifier","src":"1533:3:125"},"nativeSrc":"1533:13:125","nodeType":"YulFunctionCall","src":"1533:13:125"},"variableNames":[{"name":"value0","nativeSrc":"1523:6:125","nodeType":"YulIdentifier","src":"1523:6:125"}]},{"nativeSrc":"1555:16:125","nodeType":"YulAssignment","src":"1555:16:125","value":{"name":"length","nativeSrc":"1565:6:125","nodeType":"YulIdentifier","src":"1565:6:125"},"variableNames":[{"name":"value1","nativeSrc":"1555:6:125","nodeType":"YulIdentifier","src":"1555:6:125"}]},{"nativeSrc":"1580:47:125","nodeType":"YulVariableDeclaration","src":"1580:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1610:9:125","nodeType":"YulIdentifier","src":"1610:9:125"},{"kind":"number","nativeSrc":"1621:4:125","nodeType":"YulLiteral","src":"1621:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1606:3:125","nodeType":"YulIdentifier","src":"1606:3:125"},"nativeSrc":"1606:20:125","nodeType":"YulFunctionCall","src":"1606:20:125"}],"functionName":{"name":"calldataload","nativeSrc":"1593:12:125","nodeType":"YulIdentifier","src":"1593:12:125"},"nativeSrc":"1593:34:125","nodeType":"YulFunctionCall","src":"1593:34:125"},"variables":[{"name":"value","nativeSrc":"1584:5:125","nodeType":"YulTypedName","src":"1584:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1675:5:125","nodeType":"YulIdentifier","src":"1675:5:125"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"1636:38:125","nodeType":"YulIdentifier","src":"1636:38:125"},"nativeSrc":"1636:45:125","nodeType":"YulFunctionCall","src":"1636:45:125"},"nativeSrc":"1636:45:125","nodeType":"YulExpressionStatement","src":"1636:45:125"},{"nativeSrc":"1690:15:125","nodeType":"YulAssignment","src":"1690:15:125","value":{"name":"value","nativeSrc":"1700:5:125","nodeType":"YulIdentifier","src":"1700:5:125"},"variableNames":[{"name":"value2","nativeSrc":"1690:6:125","nodeType":"YulIdentifier","src":"1690:6:125"}]}]},"name":"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptrt_address","nativeSrc":"935:776:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1018:9:125","nodeType":"YulTypedName","src":"1018:9:125","type":""},{"name":"dataEnd","nativeSrc":"1029:7:125","nodeType":"YulTypedName","src":"1029:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1041:6:125","nodeType":"YulTypedName","src":"1041:6:125","type":""},{"name":"value1","nativeSrc":"1049:6:125","nodeType":"YulTypedName","src":"1049:6:125","type":""},{"name":"value2","nativeSrc":"1057:6:125","nodeType":"YulTypedName","src":"1057:6:125","type":""}],"src":"935:776:125"},{"body":{"nativeSrc":"1760:79:125","nodeType":"YulBlock","src":"1760:79:125","statements":[{"body":{"nativeSrc":"1817:16:125","nodeType":"YulBlock","src":"1817:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1826:1:125","nodeType":"YulLiteral","src":"1826:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1829:1:125","nodeType":"YulLiteral","src":"1829:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1819:6:125","nodeType":"YulIdentifier","src":"1819:6:125"},"nativeSrc":"1819:12:125","nodeType":"YulFunctionCall","src":"1819:12:125"},"nativeSrc":"1819:12:125","nodeType":"YulExpressionStatement","src":"1819:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1783:5:125","nodeType":"YulIdentifier","src":"1783:5:125"},{"arguments":[{"name":"value","nativeSrc":"1794:5:125","nodeType":"YulIdentifier","src":"1794:5:125"},{"kind":"number","nativeSrc":"1801:12:125","nodeType":"YulLiteral","src":"1801:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"1790:3:125","nodeType":"YulIdentifier","src":"1790:3:125"},"nativeSrc":"1790:24:125","nodeType":"YulFunctionCall","src":"1790:24:125"}],"functionName":{"name":"eq","nativeSrc":"1780:2:125","nodeType":"YulIdentifier","src":"1780:2:125"},"nativeSrc":"1780:35:125","nodeType":"YulFunctionCall","src":"1780:35:125"}],"functionName":{"name":"iszero","nativeSrc":"1773:6:125","nodeType":"YulIdentifier","src":"1773:6:125"},"nativeSrc":"1773:43:125","nodeType":"YulFunctionCall","src":"1773:43:125"},"nativeSrc":"1770:63:125","nodeType":"YulIf","src":"1770:63:125"}]},"name":"validator_revert_uint40","nativeSrc":"1716:123:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"1749:5:125","nodeType":"YulTypedName","src":"1749:5:125","type":""}],"src":"1716:123:125"},{"body":{"nativeSrc":"1892:84:125","nodeType":"YulBlock","src":"1892:84:125","statements":[{"nativeSrc":"1902:29:125","nodeType":"YulAssignment","src":"1902:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"1924:6:125","nodeType":"YulIdentifier","src":"1924:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"1911:12:125","nodeType":"YulIdentifier","src":"1911:12:125"},"nativeSrc":"1911:20:125","nodeType":"YulFunctionCall","src":"1911:20:125"},"variableNames":[{"name":"value","nativeSrc":"1902:5:125","nodeType":"YulIdentifier","src":"1902:5:125"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1964:5:125","nodeType":"YulIdentifier","src":"1964:5:125"}],"functionName":{"name":"validator_revert_uint40","nativeSrc":"1940:23:125","nodeType":"YulIdentifier","src":"1940:23:125"},"nativeSrc":"1940:30:125","nodeType":"YulFunctionCall","src":"1940:30:125"},"nativeSrc":"1940:30:125","nodeType":"YulExpressionStatement","src":"1940:30:125"}]},"name":"abi_decode_uint40","nativeSrc":"1844:132:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"1871:6:125","nodeType":"YulTypedName","src":"1871:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"1882:5:125","nodeType":"YulTypedName","src":"1882:5:125","type":""}],"src":"1844:132:125"},{"body":{"nativeSrc":"2013:95:125","nodeType":"YulBlock","src":"2013:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2030:1:125","nodeType":"YulLiteral","src":"2030:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"2037:3:125","nodeType":"YulLiteral","src":"2037:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"2042:10:125","nodeType":"YulLiteral","src":"2042:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"2033:3:125","nodeType":"YulIdentifier","src":"2033:3:125"},"nativeSrc":"2033:20:125","nodeType":"YulFunctionCall","src":"2033:20:125"}],"functionName":{"name":"mstore","nativeSrc":"2023:6:125","nodeType":"YulIdentifier","src":"2023:6:125"},"nativeSrc":"2023:31:125","nodeType":"YulFunctionCall","src":"2023:31:125"},"nativeSrc":"2023:31:125","nodeType":"YulExpressionStatement","src":"2023:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2070:1:125","nodeType":"YulLiteral","src":"2070:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"2073:4:125","nodeType":"YulLiteral","src":"2073:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"2063:6:125","nodeType":"YulIdentifier","src":"2063:6:125"},"nativeSrc":"2063:15:125","nodeType":"YulFunctionCall","src":"2063:15:125"},"nativeSrc":"2063:15:125","nodeType":"YulExpressionStatement","src":"2063:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2094:1:125","nodeType":"YulLiteral","src":"2094:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2097:4:125","nodeType":"YulLiteral","src":"2097:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"2087:6:125","nodeType":"YulIdentifier","src":"2087:6:125"},"nativeSrc":"2087:15:125","nodeType":"YulFunctionCall","src":"2087:15:125"},"nativeSrc":"2087:15:125","nodeType":"YulExpressionStatement","src":"2087:15:125"}]},"name":"panic_error_0x41","nativeSrc":"1981:127:125","nodeType":"YulFunctionDefinition","src":"1981:127:125"},{"body":{"nativeSrc":"2159:207:125","nodeType":"YulBlock","src":"2159:207:125","statements":[{"nativeSrc":"2169:19:125","nodeType":"YulAssignment","src":"2169:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"2185:2:125","nodeType":"YulLiteral","src":"2185:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"2179:5:125","nodeType":"YulIdentifier","src":"2179:5:125"},"nativeSrc":"2179:9:125","nodeType":"YulFunctionCall","src":"2179:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"2169:6:125","nodeType":"YulIdentifier","src":"2169:6:125"}]},{"nativeSrc":"2197:35:125","nodeType":"YulVariableDeclaration","src":"2197:35:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"2219:6:125","nodeType":"YulIdentifier","src":"2219:6:125"},{"kind":"number","nativeSrc":"2227:4:125","nodeType":"YulLiteral","src":"2227:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"2215:3:125","nodeType":"YulIdentifier","src":"2215:3:125"},"nativeSrc":"2215:17:125","nodeType":"YulFunctionCall","src":"2215:17:125"},"variables":[{"name":"newFreePtr","nativeSrc":"2201:10:125","nodeType":"YulTypedName","src":"2201:10:125","type":""}]},{"body":{"nativeSrc":"2307:22:125","nodeType":"YulBlock","src":"2307:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2309:16:125","nodeType":"YulIdentifier","src":"2309:16:125"},"nativeSrc":"2309:18:125","nodeType":"YulFunctionCall","src":"2309:18:125"},"nativeSrc":"2309:18:125","nodeType":"YulExpressionStatement","src":"2309:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"2250:10:125","nodeType":"YulIdentifier","src":"2250:10:125"},{"kind":"number","nativeSrc":"2262:18:125","nodeType":"YulLiteral","src":"2262:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2247:2:125","nodeType":"YulIdentifier","src":"2247:2:125"},"nativeSrc":"2247:34:125","nodeType":"YulFunctionCall","src":"2247:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"2286:10:125","nodeType":"YulIdentifier","src":"2286:10:125"},{"name":"memPtr","nativeSrc":"2298:6:125","nodeType":"YulIdentifier","src":"2298:6:125"}],"functionName":{"name":"lt","nativeSrc":"2283:2:125","nodeType":"YulIdentifier","src":"2283:2:125"},"nativeSrc":"2283:22:125","nodeType":"YulFunctionCall","src":"2283:22:125"}],"functionName":{"name":"or","nativeSrc":"2244:2:125","nodeType":"YulIdentifier","src":"2244:2:125"},"nativeSrc":"2244:62:125","nodeType":"YulFunctionCall","src":"2244:62:125"},"nativeSrc":"2241:88:125","nodeType":"YulIf","src":"2241:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2345:2:125","nodeType":"YulLiteral","src":"2345:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"2349:10:125","nodeType":"YulIdentifier","src":"2349:10:125"}],"functionName":{"name":"mstore","nativeSrc":"2338:6:125","nodeType":"YulIdentifier","src":"2338:6:125"},"nativeSrc":"2338:22:125","nodeType":"YulFunctionCall","src":"2338:22:125"},"nativeSrc":"2338:22:125","nodeType":"YulExpressionStatement","src":"2338:22:125"}]},"name":"allocate_memory_2372","nativeSrc":"2113:253:125","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"2148:6:125","nodeType":"YulTypedName","src":"2148:6:125","type":""}],"src":"2113:253:125"},{"body":{"nativeSrc":"2417:209:125","nodeType":"YulBlock","src":"2417:209:125","statements":[{"nativeSrc":"2427:19:125","nodeType":"YulAssignment","src":"2427:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"2443:2:125","nodeType":"YulLiteral","src":"2443:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"2437:5:125","nodeType":"YulIdentifier","src":"2437:5:125"},"nativeSrc":"2437:9:125","nodeType":"YulFunctionCall","src":"2437:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"2427:6:125","nodeType":"YulIdentifier","src":"2427:6:125"}]},{"nativeSrc":"2455:37:125","nodeType":"YulVariableDeclaration","src":"2455:37:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"2477:6:125","nodeType":"YulIdentifier","src":"2477:6:125"},{"kind":"number","nativeSrc":"2485:6:125","nodeType":"YulLiteral","src":"2485:6:125","type":"","value":"0x0180"}],"functionName":{"name":"add","nativeSrc":"2473:3:125","nodeType":"YulIdentifier","src":"2473:3:125"},"nativeSrc":"2473:19:125","nodeType":"YulFunctionCall","src":"2473:19:125"},"variables":[{"name":"newFreePtr","nativeSrc":"2459:10:125","nodeType":"YulTypedName","src":"2459:10:125","type":""}]},{"body":{"nativeSrc":"2567:22:125","nodeType":"YulBlock","src":"2567:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2569:16:125","nodeType":"YulIdentifier","src":"2569:16:125"},"nativeSrc":"2569:18:125","nodeType":"YulFunctionCall","src":"2569:18:125"},"nativeSrc":"2569:18:125","nodeType":"YulExpressionStatement","src":"2569:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"2510:10:125","nodeType":"YulIdentifier","src":"2510:10:125"},{"kind":"number","nativeSrc":"2522:18:125","nodeType":"YulLiteral","src":"2522:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2507:2:125","nodeType":"YulIdentifier","src":"2507:2:125"},"nativeSrc":"2507:34:125","nodeType":"YulFunctionCall","src":"2507:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"2546:10:125","nodeType":"YulIdentifier","src":"2546:10:125"},{"name":"memPtr","nativeSrc":"2558:6:125","nodeType":"YulIdentifier","src":"2558:6:125"}],"functionName":{"name":"lt","nativeSrc":"2543:2:125","nodeType":"YulIdentifier","src":"2543:2:125"},"nativeSrc":"2543:22:125","nodeType":"YulFunctionCall","src":"2543:22:125"}],"functionName":{"name":"or","nativeSrc":"2504:2:125","nodeType":"YulIdentifier","src":"2504:2:125"},"nativeSrc":"2504:62:125","nodeType":"YulFunctionCall","src":"2504:62:125"},"nativeSrc":"2501:88:125","nodeType":"YulIf","src":"2501:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2605:2:125","nodeType":"YulLiteral","src":"2605:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"2609:10:125","nodeType":"YulIdentifier","src":"2609:10:125"}],"functionName":{"name":"mstore","nativeSrc":"2598:6:125","nodeType":"YulIdentifier","src":"2598:6:125"},"nativeSrc":"2598:22:125","nodeType":"YulFunctionCall","src":"2598:22:125"},"nativeSrc":"2598:22:125","nodeType":"YulExpressionStatement","src":"2598:22:125"}]},"name":"allocate_memory_2373","nativeSrc":"2371:255:125","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"2406:6:125","nodeType":"YulTypedName","src":"2406:6:125","type":""}],"src":"2371:255:125"},{"body":{"nativeSrc":"2676:230:125","nodeType":"YulBlock","src":"2676:230:125","statements":[{"nativeSrc":"2686:19:125","nodeType":"YulAssignment","src":"2686:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"2702:2:125","nodeType":"YulLiteral","src":"2702:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"2696:5:125","nodeType":"YulIdentifier","src":"2696:5:125"},"nativeSrc":"2696:9:125","nodeType":"YulFunctionCall","src":"2696:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"2686:6:125","nodeType":"YulIdentifier","src":"2686:6:125"}]},{"nativeSrc":"2714:58:125","nodeType":"YulVariableDeclaration","src":"2714:58:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"2736:6:125","nodeType":"YulIdentifier","src":"2736:6:125"},{"arguments":[{"arguments":[{"name":"size","nativeSrc":"2752:4:125","nodeType":"YulIdentifier","src":"2752:4:125"},{"kind":"number","nativeSrc":"2758:2:125","nodeType":"YulLiteral","src":"2758:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2748:3:125","nodeType":"YulIdentifier","src":"2748:3:125"},"nativeSrc":"2748:13:125","nodeType":"YulFunctionCall","src":"2748:13:125"},{"arguments":[{"kind":"number","nativeSrc":"2767:2:125","nodeType":"YulLiteral","src":"2767:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"2763:3:125","nodeType":"YulIdentifier","src":"2763:3:125"},"nativeSrc":"2763:7:125","nodeType":"YulFunctionCall","src":"2763:7:125"}],"functionName":{"name":"and","nativeSrc":"2744:3:125","nodeType":"YulIdentifier","src":"2744:3:125"},"nativeSrc":"2744:27:125","nodeType":"YulFunctionCall","src":"2744:27:125"}],"functionName":{"name":"add","nativeSrc":"2732:3:125","nodeType":"YulIdentifier","src":"2732:3:125"},"nativeSrc":"2732:40:125","nodeType":"YulFunctionCall","src":"2732:40:125"},"variables":[{"name":"newFreePtr","nativeSrc":"2718:10:125","nodeType":"YulTypedName","src":"2718:10:125","type":""}]},{"body":{"nativeSrc":"2847:22:125","nodeType":"YulBlock","src":"2847:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2849:16:125","nodeType":"YulIdentifier","src":"2849:16:125"},"nativeSrc":"2849:18:125","nodeType":"YulFunctionCall","src":"2849:18:125"},"nativeSrc":"2849:18:125","nodeType":"YulExpressionStatement","src":"2849:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"2790:10:125","nodeType":"YulIdentifier","src":"2790:10:125"},{"kind":"number","nativeSrc":"2802:18:125","nodeType":"YulLiteral","src":"2802:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2787:2:125","nodeType":"YulIdentifier","src":"2787:2:125"},"nativeSrc":"2787:34:125","nodeType":"YulFunctionCall","src":"2787:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"2826:10:125","nodeType":"YulIdentifier","src":"2826:10:125"},{"name":"memPtr","nativeSrc":"2838:6:125","nodeType":"YulIdentifier","src":"2838:6:125"}],"functionName":{"name":"lt","nativeSrc":"2823:2:125","nodeType":"YulIdentifier","src":"2823:2:125"},"nativeSrc":"2823:22:125","nodeType":"YulFunctionCall","src":"2823:22:125"}],"functionName":{"name":"or","nativeSrc":"2784:2:125","nodeType":"YulIdentifier","src":"2784:2:125"},"nativeSrc":"2784:62:125","nodeType":"YulFunctionCall","src":"2784:62:125"},"nativeSrc":"2781:88:125","nodeType":"YulIf","src":"2781:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2885:2:125","nodeType":"YulLiteral","src":"2885:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"2889:10:125","nodeType":"YulIdentifier","src":"2889:10:125"}],"functionName":{"name":"mstore","nativeSrc":"2878:6:125","nodeType":"YulIdentifier","src":"2878:6:125"},"nativeSrc":"2878:22:125","nodeType":"YulFunctionCall","src":"2878:22:125"},"nativeSrc":"2878:22:125","nodeType":"YulExpressionStatement","src":"2878:22:125"}]},"name":"allocate_memory","nativeSrc":"2631:275:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nativeSrc":"2656:4:125","nodeType":"YulTypedName","src":"2656:4:125","type":""}],"returnVariables":[{"name":"memPtr","nativeSrc":"2665:6:125","nodeType":"YulTypedName","src":"2665:6:125","type":""}],"src":"2631:275:125"},{"body":{"nativeSrc":"3071:1497:125","nodeType":"YulBlock","src":"3071:1497:125","statements":[{"nativeSrc":"3081:33:125","nodeType":"YulVariableDeclaration","src":"3081:33:125","value":{"arguments":[{"name":"dataEnd","nativeSrc":"3095:7:125","nodeType":"YulIdentifier","src":"3095:7:125"},{"name":"headStart","nativeSrc":"3104:9:125","nodeType":"YulIdentifier","src":"3104:9:125"}],"functionName":{"name":"sub","nativeSrc":"3091:3:125","nodeType":"YulIdentifier","src":"3091:3:125"},"nativeSrc":"3091:23:125","nodeType":"YulFunctionCall","src":"3091:23:125"},"variables":[{"name":"_1","nativeSrc":"3085:2:125","nodeType":"YulTypedName","src":"3085:2:125","type":""}]},{"body":{"nativeSrc":"3139:16:125","nodeType":"YulBlock","src":"3139:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3148:1:125","nodeType":"YulLiteral","src":"3148:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3151:1:125","nodeType":"YulLiteral","src":"3151:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3141:6:125","nodeType":"YulIdentifier","src":"3141:6:125"},"nativeSrc":"3141:12:125","nodeType":"YulFunctionCall","src":"3141:12:125"},"nativeSrc":"3141:12:125","nodeType":"YulExpressionStatement","src":"3141:12:125"}]},"condition":{"arguments":[{"name":"_1","nativeSrc":"3130:2:125","nodeType":"YulIdentifier","src":"3130:2:125"},{"kind":"number","nativeSrc":"3134:3:125","nodeType":"YulLiteral","src":"3134:3:125","type":"","value":"352"}],"functionName":{"name":"slt","nativeSrc":"3126:3:125","nodeType":"YulIdentifier","src":"3126:3:125"},"nativeSrc":"3126:12:125","nodeType":"YulFunctionCall","src":"3126:12:125"},"nativeSrc":"3123:32:125","nodeType":"YulIf","src":"3123:32:125"},{"nativeSrc":"3164:14:125","nodeType":"YulVariableDeclaration","src":"3164:14:125","value":{"kind":"number","nativeSrc":"3177:1:125","nodeType":"YulLiteral","src":"3177:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3168:5:125","nodeType":"YulTypedName","src":"3168:5:125","type":""}]},{"nativeSrc":"3187:32:125","nodeType":"YulAssignment","src":"3187:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3209:9:125","nodeType":"YulIdentifier","src":"3209:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"3196:12:125","nodeType":"YulIdentifier","src":"3196:12:125"},"nativeSrc":"3196:23:125","nodeType":"YulFunctionCall","src":"3196:23:125"},"variableNames":[{"name":"value","nativeSrc":"3187:5:125","nodeType":"YulIdentifier","src":"3187:5:125"}]},{"nativeSrc":"3228:15:125","nodeType":"YulAssignment","src":"3228:15:125","value":{"name":"value","nativeSrc":"3238:5:125","nodeType":"YulIdentifier","src":"3238:5:125"},"variableNames":[{"name":"value0","nativeSrc":"3228:6:125","nodeType":"YulIdentifier","src":"3228:6:125"}]},{"nativeSrc":"3252:16:125","nodeType":"YulVariableDeclaration","src":"3252:16:125","value":{"kind":"number","nativeSrc":"3267:1:125","nodeType":"YulLiteral","src":"3267:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"3256:7:125","nodeType":"YulTypedName","src":"3256:7:125","type":""}]},{"nativeSrc":"3277:43:125","nodeType":"YulAssignment","src":"3277:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3305:9:125","nodeType":"YulIdentifier","src":"3305:9:125"},{"kind":"number","nativeSrc":"3316:2:125","nodeType":"YulLiteral","src":"3316:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3301:3:125","nodeType":"YulIdentifier","src":"3301:3:125"},"nativeSrc":"3301:18:125","nodeType":"YulFunctionCall","src":"3301:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3288:12:125","nodeType":"YulIdentifier","src":"3288:12:125"},"nativeSrc":"3288:32:125","nodeType":"YulFunctionCall","src":"3288:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"3277:7:125","nodeType":"YulIdentifier","src":"3277:7:125"}]},{"nativeSrc":"3329:17:125","nodeType":"YulAssignment","src":"3329:17:125","value":{"name":"value_1","nativeSrc":"3339:7:125","nodeType":"YulIdentifier","src":"3339:7:125"},"variableNames":[{"name":"value1","nativeSrc":"3329:6:125","nodeType":"YulIdentifier","src":"3329:6:125"}]},{"nativeSrc":"3355:47:125","nodeType":"YulVariableDeclaration","src":"3355:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3387:9:125","nodeType":"YulIdentifier","src":"3387:9:125"},{"kind":"number","nativeSrc":"3398:2:125","nodeType":"YulLiteral","src":"3398:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3383:3:125","nodeType":"YulIdentifier","src":"3383:3:125"},"nativeSrc":"3383:18:125","nodeType":"YulFunctionCall","src":"3383:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3370:12:125","nodeType":"YulIdentifier","src":"3370:12:125"},"nativeSrc":"3370:32:125","nodeType":"YulFunctionCall","src":"3370:32:125"},"variables":[{"name":"value_2","nativeSrc":"3359:7:125","nodeType":"YulTypedName","src":"3359:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"3435:7:125","nodeType":"YulIdentifier","src":"3435:7:125"}],"functionName":{"name":"validator_revert_uint40","nativeSrc":"3411:23:125","nodeType":"YulIdentifier","src":"3411:23:125"},"nativeSrc":"3411:32:125","nodeType":"YulFunctionCall","src":"3411:32:125"},"nativeSrc":"3411:32:125","nodeType":"YulExpressionStatement","src":"3411:32:125"},{"nativeSrc":"3452:17:125","nodeType":"YulAssignment","src":"3452:17:125","value":{"name":"value_2","nativeSrc":"3462:7:125","nodeType":"YulIdentifier","src":"3462:7:125"},"variableNames":[{"name":"value2","nativeSrc":"3452:6:125","nodeType":"YulIdentifier","src":"3452:6:125"}]},{"nativeSrc":"3478:47:125","nodeType":"YulVariableDeclaration","src":"3478:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3510:9:125","nodeType":"YulIdentifier","src":"3510:9:125"},{"kind":"number","nativeSrc":"3521:2:125","nodeType":"YulLiteral","src":"3521:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3506:3:125","nodeType":"YulIdentifier","src":"3506:3:125"},"nativeSrc":"3506:18:125","nodeType":"YulFunctionCall","src":"3506:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3493:12:125","nodeType":"YulIdentifier","src":"3493:12:125"},"nativeSrc":"3493:32:125","nodeType":"YulFunctionCall","src":"3493:32:125"},"variables":[{"name":"value_3","nativeSrc":"3482:7:125","nodeType":"YulTypedName","src":"3482:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"3558:7:125","nodeType":"YulIdentifier","src":"3558:7:125"}],"functionName":{"name":"validator_revert_uint40","nativeSrc":"3534:23:125","nodeType":"YulIdentifier","src":"3534:23:125"},"nativeSrc":"3534:32:125","nodeType":"YulFunctionCall","src":"3534:32:125"},"nativeSrc":"3534:32:125","nodeType":"YulExpressionStatement","src":"3534:32:125"},{"nativeSrc":"3575:17:125","nodeType":"YulAssignment","src":"3575:17:125","value":{"name":"value_3","nativeSrc":"3585:7:125","nodeType":"YulIdentifier","src":"3585:7:125"},"variableNames":[{"name":"value3","nativeSrc":"3575:6:125","nodeType":"YulIdentifier","src":"3575:6:125"}]},{"body":{"nativeSrc":"3633:16:125","nodeType":"YulBlock","src":"3633:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3642:1:125","nodeType":"YulLiteral","src":"3642:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3645:1:125","nodeType":"YulLiteral","src":"3645:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3635:6:125","nodeType":"YulIdentifier","src":"3635:6:125"},"nativeSrc":"3635:12:125","nodeType":"YulFunctionCall","src":"3635:12:125"},"nativeSrc":"3635:12:125","nodeType":"YulExpressionStatement","src":"3635:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"3612:2:125","nodeType":"YulIdentifier","src":"3612:2:125"},{"arguments":[{"kind":"number","nativeSrc":"3620:3:125","nodeType":"YulLiteral","src":"3620:3:125","type":"","value":"127"}],"functionName":{"name":"not","nativeSrc":"3616:3:125","nodeType":"YulIdentifier","src":"3616:3:125"},"nativeSrc":"3616:8:125","nodeType":"YulFunctionCall","src":"3616:8:125"}],"functionName":{"name":"add","nativeSrc":"3608:3:125","nodeType":"YulIdentifier","src":"3608:3:125"},"nativeSrc":"3608:17:125","nodeType":"YulFunctionCall","src":"3608:17:125"},{"kind":"number","nativeSrc":"3627:4:125","nodeType":"YulLiteral","src":"3627:4:125","type":"","value":"0xe0"}],"functionName":{"name":"slt","nativeSrc":"3604:3:125","nodeType":"YulIdentifier","src":"3604:3:125"},"nativeSrc":"3604:28:125","nodeType":"YulFunctionCall","src":"3604:28:125"},"nativeSrc":"3601:48:125","nodeType":"YulIf","src":"3601:48:125"},{"nativeSrc":"3658:37:125","nodeType":"YulVariableDeclaration","src":"3658:37:125","value":{"arguments":[],"functionName":{"name":"allocate_memory_2372","nativeSrc":"3673:20:125","nodeType":"YulIdentifier","src":"3673:20:125"},"nativeSrc":"3673:22:125","nodeType":"YulFunctionCall","src":"3673:22:125"},"variables":[{"name":"value_4","nativeSrc":"3662:7:125","nodeType":"YulTypedName","src":"3662:7:125","type":""}]},{"nativeSrc":"3704:16:125","nodeType":"YulVariableDeclaration","src":"3704:16:125","value":{"kind":"number","nativeSrc":"3719:1:125","nodeType":"YulLiteral","src":"3719:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"3708:7:125","nodeType":"YulTypedName","src":"3708:7:125","type":""}]},{"nativeSrc":"3729:44:125","nodeType":"YulAssignment","src":"3729:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3757:9:125","nodeType":"YulIdentifier","src":"3757:9:125"},{"kind":"number","nativeSrc":"3768:3:125","nodeType":"YulLiteral","src":"3768:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"3753:3:125","nodeType":"YulIdentifier","src":"3753:3:125"},"nativeSrc":"3753:19:125","nodeType":"YulFunctionCall","src":"3753:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"3740:12:125","nodeType":"YulIdentifier","src":"3740:12:125"},"nativeSrc":"3740:33:125","nodeType":"YulFunctionCall","src":"3740:33:125"},"variableNames":[{"name":"value_5","nativeSrc":"3729:7:125","nodeType":"YulIdentifier","src":"3729:7:125"}]},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"3789:7:125","nodeType":"YulIdentifier","src":"3789:7:125"},{"name":"value_5","nativeSrc":"3798:7:125","nodeType":"YulIdentifier","src":"3798:7:125"}],"functionName":{"name":"mstore","nativeSrc":"3782:6:125","nodeType":"YulIdentifier","src":"3782:6:125"},"nativeSrc":"3782:24:125","nodeType":"YulFunctionCall","src":"3782:24:125"},"nativeSrc":"3782:24:125","nodeType":"YulExpressionStatement","src":"3782:24:125"},{"nativeSrc":"3815:16:125","nodeType":"YulVariableDeclaration","src":"3815:16:125","value":{"kind":"number","nativeSrc":"3830:1:125","nodeType":"YulLiteral","src":"3830:1:125","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"3819:7:125","nodeType":"YulTypedName","src":"3819:7:125","type":""}]},{"nativeSrc":"3840:44:125","nodeType":"YulAssignment","src":"3840:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3868:9:125","nodeType":"YulIdentifier","src":"3868:9:125"},{"kind":"number","nativeSrc":"3879:3:125","nodeType":"YulLiteral","src":"3879:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"3864:3:125","nodeType":"YulIdentifier","src":"3864:3:125"},"nativeSrc":"3864:19:125","nodeType":"YulFunctionCall","src":"3864:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"3851:12:125","nodeType":"YulIdentifier","src":"3851:12:125"},"nativeSrc":"3851:33:125","nodeType":"YulFunctionCall","src":"3851:33:125"},"variableNames":[{"name":"value_6","nativeSrc":"3840:7:125","nodeType":"YulIdentifier","src":"3840:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"3904:7:125","nodeType":"YulIdentifier","src":"3904:7:125"},{"kind":"number","nativeSrc":"3913:2:125","nodeType":"YulLiteral","src":"3913:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3900:3:125","nodeType":"YulIdentifier","src":"3900:3:125"},"nativeSrc":"3900:16:125","nodeType":"YulFunctionCall","src":"3900:16:125"},{"name":"value_6","nativeSrc":"3918:7:125","nodeType":"YulIdentifier","src":"3918:7:125"}],"functionName":{"name":"mstore","nativeSrc":"3893:6:125","nodeType":"YulIdentifier","src":"3893:6:125"},"nativeSrc":"3893:33:125","nodeType":"YulFunctionCall","src":"3893:33:125"},"nativeSrc":"3893:33:125","nodeType":"YulExpressionStatement","src":"3893:33:125"},{"nativeSrc":"3935:16:125","nodeType":"YulVariableDeclaration","src":"3935:16:125","value":{"kind":"number","nativeSrc":"3950:1:125","nodeType":"YulLiteral","src":"3950:1:125","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"3939:7:125","nodeType":"YulTypedName","src":"3939:7:125","type":""}]},{"nativeSrc":"3960:44:125","nodeType":"YulAssignment","src":"3960:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3988:9:125","nodeType":"YulIdentifier","src":"3988:9:125"},{"kind":"number","nativeSrc":"3999:3:125","nodeType":"YulLiteral","src":"3999:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"3984:3:125","nodeType":"YulIdentifier","src":"3984:3:125"},"nativeSrc":"3984:19:125","nodeType":"YulFunctionCall","src":"3984:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"3971:12:125","nodeType":"YulIdentifier","src":"3971:12:125"},"nativeSrc":"3971:33:125","nodeType":"YulFunctionCall","src":"3971:33:125"},"variableNames":[{"name":"value_7","nativeSrc":"3960:7:125","nodeType":"YulIdentifier","src":"3960:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"4024:7:125","nodeType":"YulIdentifier","src":"4024:7:125"},{"kind":"number","nativeSrc":"4033:2:125","nodeType":"YulLiteral","src":"4033:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4020:3:125","nodeType":"YulIdentifier","src":"4020:3:125"},"nativeSrc":"4020:16:125","nodeType":"YulFunctionCall","src":"4020:16:125"},{"name":"value_7","nativeSrc":"4038:7:125","nodeType":"YulIdentifier","src":"4038:7:125"}],"functionName":{"name":"mstore","nativeSrc":"4013:6:125","nodeType":"YulIdentifier","src":"4013:6:125"},"nativeSrc":"4013:33:125","nodeType":"YulFunctionCall","src":"4013:33:125"},"nativeSrc":"4013:33:125","nodeType":"YulExpressionStatement","src":"4013:33:125"},{"nativeSrc":"4055:16:125","nodeType":"YulVariableDeclaration","src":"4055:16:125","value":{"kind":"number","nativeSrc":"4070:1:125","nodeType":"YulLiteral","src":"4070:1:125","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"4059:7:125","nodeType":"YulTypedName","src":"4059:7:125","type":""}]},{"nativeSrc":"4080:45:125","nodeType":"YulAssignment","src":"4080:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4108:9:125","nodeType":"YulIdentifier","src":"4108:9:125"},{"kind":"number","nativeSrc":"4119:4:125","nodeType":"YulLiteral","src":"4119:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"4104:3:125","nodeType":"YulIdentifier","src":"4104:3:125"},"nativeSrc":"4104:20:125","nodeType":"YulFunctionCall","src":"4104:20:125"}],"functionName":{"name":"calldataload","nativeSrc":"4091:12:125","nodeType":"YulIdentifier","src":"4091:12:125"},"nativeSrc":"4091:34:125","nodeType":"YulFunctionCall","src":"4091:34:125"},"variableNames":[{"name":"value_8","nativeSrc":"4080:7:125","nodeType":"YulIdentifier","src":"4080:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"4145:7:125","nodeType":"YulIdentifier","src":"4145:7:125"},{"kind":"number","nativeSrc":"4154:2:125","nodeType":"YulLiteral","src":"4154:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4141:3:125","nodeType":"YulIdentifier","src":"4141:3:125"},"nativeSrc":"4141:16:125","nodeType":"YulFunctionCall","src":"4141:16:125"},{"name":"value_8","nativeSrc":"4159:7:125","nodeType":"YulIdentifier","src":"4159:7:125"}],"functionName":{"name":"mstore","nativeSrc":"4134:6:125","nodeType":"YulIdentifier","src":"4134:6:125"},"nativeSrc":"4134:33:125","nodeType":"YulFunctionCall","src":"4134:33:125"},"nativeSrc":"4134:33:125","nodeType":"YulExpressionStatement","src":"4134:33:125"},{"nativeSrc":"4176:16:125","nodeType":"YulVariableDeclaration","src":"4176:16:125","value":{"kind":"number","nativeSrc":"4191:1:125","nodeType":"YulLiteral","src":"4191:1:125","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"4180:7:125","nodeType":"YulTypedName","src":"4180:7:125","type":""}]},{"nativeSrc":"4201:44:125","nodeType":"YulAssignment","src":"4201:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4229:9:125","nodeType":"YulIdentifier","src":"4229:9:125"},{"kind":"number","nativeSrc":"4240:3:125","nodeType":"YulLiteral","src":"4240:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"4225:3:125","nodeType":"YulIdentifier","src":"4225:3:125"},"nativeSrc":"4225:19:125","nodeType":"YulFunctionCall","src":"4225:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"4212:12:125","nodeType":"YulIdentifier","src":"4212:12:125"},"nativeSrc":"4212:33:125","nodeType":"YulFunctionCall","src":"4212:33:125"},"variableNames":[{"name":"value_9","nativeSrc":"4201:7:125","nodeType":"YulIdentifier","src":"4201:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"4265:7:125","nodeType":"YulIdentifier","src":"4265:7:125"},{"kind":"number","nativeSrc":"4274:3:125","nodeType":"YulLiteral","src":"4274:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4261:3:125","nodeType":"YulIdentifier","src":"4261:3:125"},"nativeSrc":"4261:17:125","nodeType":"YulFunctionCall","src":"4261:17:125"},{"name":"value_9","nativeSrc":"4280:7:125","nodeType":"YulIdentifier","src":"4280:7:125"}],"functionName":{"name":"mstore","nativeSrc":"4254:6:125","nodeType":"YulIdentifier","src":"4254:6:125"},"nativeSrc":"4254:34:125","nodeType":"YulFunctionCall","src":"4254:34:125"},"nativeSrc":"4254:34:125","nodeType":"YulExpressionStatement","src":"4254:34:125"},{"nativeSrc":"4297:17:125","nodeType":"YulVariableDeclaration","src":"4297:17:125","value":{"kind":"number","nativeSrc":"4313:1:125","nodeType":"YulLiteral","src":"4313:1:125","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"4301:8:125","nodeType":"YulTypedName","src":"4301:8:125","type":""}]},{"nativeSrc":"4323:45:125","nodeType":"YulAssignment","src":"4323:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4352:9:125","nodeType":"YulIdentifier","src":"4352:9:125"},{"kind":"number","nativeSrc":"4363:3:125","nodeType":"YulLiteral","src":"4363:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"4348:3:125","nodeType":"YulIdentifier","src":"4348:3:125"},"nativeSrc":"4348:19:125","nodeType":"YulFunctionCall","src":"4348:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"4335:12:125","nodeType":"YulIdentifier","src":"4335:12:125"},"nativeSrc":"4335:33:125","nodeType":"YulFunctionCall","src":"4335:33:125"},"variableNames":[{"name":"value_10","nativeSrc":"4323:8:125","nodeType":"YulIdentifier","src":"4323:8:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"4388:7:125","nodeType":"YulIdentifier","src":"4388:7:125"},{"kind":"number","nativeSrc":"4397:3:125","nodeType":"YulLiteral","src":"4397:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"4384:3:125","nodeType":"YulIdentifier","src":"4384:3:125"},"nativeSrc":"4384:17:125","nodeType":"YulFunctionCall","src":"4384:17:125"},{"name":"value_10","nativeSrc":"4403:8:125","nodeType":"YulIdentifier","src":"4403:8:125"}],"functionName":{"name":"mstore","nativeSrc":"4377:6:125","nodeType":"YulIdentifier","src":"4377:6:125"},"nativeSrc":"4377:35:125","nodeType":"YulFunctionCall","src":"4377:35:125"},"nativeSrc":"4377:35:125","nodeType":"YulExpressionStatement","src":"4377:35:125"},{"nativeSrc":"4421:17:125","nodeType":"YulVariableDeclaration","src":"4421:17:125","value":{"kind":"number","nativeSrc":"4437:1:125","nodeType":"YulLiteral","src":"4437:1:125","type":"","value":"0"},"variables":[{"name":"value_11","nativeSrc":"4425:8:125","nodeType":"YulTypedName","src":"4425:8:125","type":""}]},{"nativeSrc":"4447:45:125","nodeType":"YulAssignment","src":"4447:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4476:9:125","nodeType":"YulIdentifier","src":"4476:9:125"},{"kind":"number","nativeSrc":"4487:3:125","nodeType":"YulLiteral","src":"4487:3:125","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"4472:3:125","nodeType":"YulIdentifier","src":"4472:3:125"},"nativeSrc":"4472:19:125","nodeType":"YulFunctionCall","src":"4472:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"4459:12:125","nodeType":"YulIdentifier","src":"4459:12:125"},"nativeSrc":"4459:33:125","nodeType":"YulFunctionCall","src":"4459:33:125"},"variableNames":[{"name":"value_11","nativeSrc":"4447:8:125","nodeType":"YulIdentifier","src":"4447:8:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"4512:7:125","nodeType":"YulIdentifier","src":"4512:7:125"},{"kind":"number","nativeSrc":"4521:3:125","nodeType":"YulLiteral","src":"4521:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"4508:3:125","nodeType":"YulIdentifier","src":"4508:3:125"},"nativeSrc":"4508:17:125","nodeType":"YulFunctionCall","src":"4508:17:125"},{"name":"value_11","nativeSrc":"4527:8:125","nodeType":"YulIdentifier","src":"4527:8:125"}],"functionName":{"name":"mstore","nativeSrc":"4501:6:125","nodeType":"YulIdentifier","src":"4501:6:125"},"nativeSrc":"4501:35:125","nodeType":"YulFunctionCall","src":"4501:35:125"},"nativeSrc":"4501:35:125","nodeType":"YulExpressionStatement","src":"4501:35:125"},{"nativeSrc":"4545:17:125","nodeType":"YulAssignment","src":"4545:17:125","value":{"name":"value_4","nativeSrc":"4555:7:125","nodeType":"YulIdentifier","src":"4555:7:125"},"variableNames":[{"name":"value4","nativeSrc":"4545:6:125","nodeType":"YulIdentifier","src":"4545:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256t_uint40t_uint40t_struct$_Params_$7718_memory_ptr","nativeSrc":"2911:1657:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3005:9:125","nodeType":"YulTypedName","src":"3005:9:125","type":""},{"name":"dataEnd","nativeSrc":"3016:7:125","nodeType":"YulTypedName","src":"3016:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3028:6:125","nodeType":"YulTypedName","src":"3028:6:125","type":""},{"name":"value1","nativeSrc":"3036:6:125","nodeType":"YulTypedName","src":"3036:6:125","type":""},{"name":"value2","nativeSrc":"3044:6:125","nodeType":"YulTypedName","src":"3044:6:125","type":""},{"name":"value3","nativeSrc":"3052:6:125","nodeType":"YulTypedName","src":"3052:6:125","type":""},{"name":"value4","nativeSrc":"3060:6:125","nodeType":"YulTypedName","src":"3060:6:125","type":""}],"src":"2911:1657:125"},{"body":{"nativeSrc":"4674:76:125","nodeType":"YulBlock","src":"4674:76:125","statements":[{"nativeSrc":"4684:26:125","nodeType":"YulAssignment","src":"4684:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4696:9:125","nodeType":"YulIdentifier","src":"4696:9:125"},{"kind":"number","nativeSrc":"4707:2:125","nodeType":"YulLiteral","src":"4707:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4692:3:125","nodeType":"YulIdentifier","src":"4692:3:125"},"nativeSrc":"4692:18:125","nodeType":"YulFunctionCall","src":"4692:18:125"},"variableNames":[{"name":"tail","nativeSrc":"4684:4:125","nodeType":"YulIdentifier","src":"4684:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4726:9:125","nodeType":"YulIdentifier","src":"4726:9:125"},{"name":"value0","nativeSrc":"4737:6:125","nodeType":"YulIdentifier","src":"4737:6:125"}],"functionName":{"name":"mstore","nativeSrc":"4719:6:125","nodeType":"YulIdentifier","src":"4719:6:125"},"nativeSrc":"4719:25:125","nodeType":"YulFunctionCall","src":"4719:25:125"},"nativeSrc":"4719:25:125","nodeType":"YulExpressionStatement","src":"4719:25:125"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"4573:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4643:9:125","nodeType":"YulTypedName","src":"4643:9:125","type":""},{"name":"value0","nativeSrc":"4654:6:125","nodeType":"YulTypedName","src":"4654:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4665:4:125","nodeType":"YulTypedName","src":"4665:4:125","type":""}],"src":"4573:177:125"},{"body":{"nativeSrc":"4864:329:125","nodeType":"YulBlock","src":"4864:329:125","statements":[{"body":{"nativeSrc":"4910:16:125","nodeType":"YulBlock","src":"4910:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4919:1:125","nodeType":"YulLiteral","src":"4919:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4922:1:125","nodeType":"YulLiteral","src":"4922:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4912:6:125","nodeType":"YulIdentifier","src":"4912:6:125"},"nativeSrc":"4912:12:125","nodeType":"YulFunctionCall","src":"4912:12:125"},"nativeSrc":"4912:12:125","nodeType":"YulExpressionStatement","src":"4912:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4885:7:125","nodeType":"YulIdentifier","src":"4885:7:125"},{"name":"headStart","nativeSrc":"4894:9:125","nodeType":"YulIdentifier","src":"4894:9:125"}],"functionName":{"name":"sub","nativeSrc":"4881:3:125","nodeType":"YulIdentifier","src":"4881:3:125"},"nativeSrc":"4881:23:125","nodeType":"YulFunctionCall","src":"4881:23:125"},{"kind":"number","nativeSrc":"4906:2:125","nodeType":"YulLiteral","src":"4906:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4877:3:125","nodeType":"YulIdentifier","src":"4877:3:125"},"nativeSrc":"4877:32:125","nodeType":"YulFunctionCall","src":"4877:32:125"},"nativeSrc":"4874:52:125","nodeType":"YulIf","src":"4874:52:125"},{"nativeSrc":"4935:36:125","nodeType":"YulVariableDeclaration","src":"4935:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4961:9:125","nodeType":"YulIdentifier","src":"4961:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"4948:12:125","nodeType":"YulIdentifier","src":"4948:12:125"},"nativeSrc":"4948:23:125","nodeType":"YulFunctionCall","src":"4948:23:125"},"variables":[{"name":"value","nativeSrc":"4939:5:125","nodeType":"YulTypedName","src":"4939:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5019:5:125","nodeType":"YulIdentifier","src":"5019:5:125"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"4980:38:125","nodeType":"YulIdentifier","src":"4980:38:125"},"nativeSrc":"4980:45:125","nodeType":"YulFunctionCall","src":"4980:45:125"},"nativeSrc":"4980:45:125","nodeType":"YulExpressionStatement","src":"4980:45:125"},{"nativeSrc":"5034:15:125","nodeType":"YulAssignment","src":"5034:15:125","value":{"name":"value","nativeSrc":"5044:5:125","nodeType":"YulIdentifier","src":"5044:5:125"},"variableNames":[{"name":"value0","nativeSrc":"5034:6:125","nodeType":"YulIdentifier","src":"5034:6:125"}]},{"nativeSrc":"5058:47:125","nodeType":"YulVariableDeclaration","src":"5058:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5090:9:125","nodeType":"YulIdentifier","src":"5090:9:125"},{"kind":"number","nativeSrc":"5101:2:125","nodeType":"YulLiteral","src":"5101:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5086:3:125","nodeType":"YulIdentifier","src":"5086:3:125"},"nativeSrc":"5086:18:125","nodeType":"YulFunctionCall","src":"5086:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"5073:12:125","nodeType":"YulIdentifier","src":"5073:12:125"},"nativeSrc":"5073:32:125","nodeType":"YulFunctionCall","src":"5073:32:125"},"variables":[{"name":"value_1","nativeSrc":"5062:7:125","nodeType":"YulTypedName","src":"5062:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"5153:7:125","nodeType":"YulIdentifier","src":"5153:7:125"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"5114:38:125","nodeType":"YulIdentifier","src":"5114:38:125"},"nativeSrc":"5114:47:125","nodeType":"YulFunctionCall","src":"5114:47:125"},"nativeSrc":"5114:47:125","nodeType":"YulExpressionStatement","src":"5114:47:125"},{"nativeSrc":"5170:17:125","nodeType":"YulAssignment","src":"5170:17:125","value":{"name":"value_1","nativeSrc":"5180:7:125","nodeType":"YulIdentifier","src":"5180:7:125"},"variableNames":[{"name":"value1","nativeSrc":"5170:6:125","nodeType":"YulIdentifier","src":"5170:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IUnderwriter_$14830t_address","nativeSrc":"4755:438:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4822:9:125","nodeType":"YulTypedName","src":"4822:9:125","type":""},{"name":"dataEnd","nativeSrc":"4833:7:125","nodeType":"YulTypedName","src":"4833:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4845:6:125","nodeType":"YulTypedName","src":"4845:6:125","type":""},{"name":"value1","nativeSrc":"4853:6:125","nodeType":"YulTypedName","src":"4853:6:125","type":""}],"src":"4755:438:125"},{"body":{"nativeSrc":"5320:102:125","nodeType":"YulBlock","src":"5320:102:125","statements":[{"nativeSrc":"5330:26:125","nodeType":"YulAssignment","src":"5330:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5342:9:125","nodeType":"YulIdentifier","src":"5342:9:125"},{"kind":"number","nativeSrc":"5353:2:125","nodeType":"YulLiteral","src":"5353:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5338:3:125","nodeType":"YulIdentifier","src":"5338:3:125"},"nativeSrc":"5338:18:125","nodeType":"YulFunctionCall","src":"5338:18:125"},"variableNames":[{"name":"tail","nativeSrc":"5330:4:125","nodeType":"YulIdentifier","src":"5330:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5372:9:125","nodeType":"YulIdentifier","src":"5372:9:125"},{"arguments":[{"name":"value0","nativeSrc":"5387:6:125","nodeType":"YulIdentifier","src":"5387:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5403:3:125","nodeType":"YulLiteral","src":"5403:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"5408:1:125","nodeType":"YulLiteral","src":"5408:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5399:3:125","nodeType":"YulIdentifier","src":"5399:3:125"},"nativeSrc":"5399:11:125","nodeType":"YulFunctionCall","src":"5399:11:125"},{"kind":"number","nativeSrc":"5412:1:125","nodeType":"YulLiteral","src":"5412:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5395:3:125","nodeType":"YulIdentifier","src":"5395:3:125"},"nativeSrc":"5395:19:125","nodeType":"YulFunctionCall","src":"5395:19:125"}],"functionName":{"name":"and","nativeSrc":"5383:3:125","nodeType":"YulIdentifier","src":"5383:3:125"},"nativeSrc":"5383:32:125","nodeType":"YulFunctionCall","src":"5383:32:125"}],"functionName":{"name":"mstore","nativeSrc":"5365:6:125","nodeType":"YulIdentifier","src":"5365:6:125"},"nativeSrc":"5365:51:125","nodeType":"YulFunctionCall","src":"5365:51:125"},"nativeSrc":"5365:51:125","nodeType":"YulExpressionStatement","src":"5365:51:125"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPool_$14638__to_t_address__fromStack_reversed","nativeSrc":"5198:224:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5289:9:125","nodeType":"YulTypedName","src":"5289:9:125","type":""},{"name":"value0","nativeSrc":"5300:6:125","nodeType":"YulTypedName","src":"5300:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5311:4:125","nodeType":"YulTypedName","src":"5311:4:125","type":""}],"src":"5198:224:125"},{"body":{"nativeSrc":"5523:818:125","nodeType":"YulBlock","src":"5523:818:125","statements":[{"body":{"nativeSrc":"5569:16:125","nodeType":"YulBlock","src":"5569:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5578:1:125","nodeType":"YulLiteral","src":"5578:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5581:1:125","nodeType":"YulLiteral","src":"5581:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5571:6:125","nodeType":"YulIdentifier","src":"5571:6:125"},"nativeSrc":"5571:12:125","nodeType":"YulFunctionCall","src":"5571:12:125"},"nativeSrc":"5571:12:125","nodeType":"YulExpressionStatement","src":"5571:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5544:7:125","nodeType":"YulIdentifier","src":"5544:7:125"},{"name":"headStart","nativeSrc":"5553:9:125","nodeType":"YulIdentifier","src":"5553:9:125"}],"functionName":{"name":"sub","nativeSrc":"5540:3:125","nodeType":"YulIdentifier","src":"5540:3:125"},"nativeSrc":"5540:23:125","nodeType":"YulFunctionCall","src":"5540:23:125"},{"kind":"number","nativeSrc":"5565:2:125","nodeType":"YulLiteral","src":"5565:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"5536:3:125","nodeType":"YulIdentifier","src":"5536:3:125"},"nativeSrc":"5536:32:125","nodeType":"YulFunctionCall","src":"5536:32:125"},"nativeSrc":"5533:52:125","nodeType":"YulIf","src":"5533:52:125"},{"nativeSrc":"5594:36:125","nodeType":"YulVariableDeclaration","src":"5594:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5620:9:125","nodeType":"YulIdentifier","src":"5620:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"5607:12:125","nodeType":"YulIdentifier","src":"5607:12:125"},"nativeSrc":"5607:23:125","nodeType":"YulFunctionCall","src":"5607:23:125"},"variables":[{"name":"value","nativeSrc":"5598:5:125","nodeType":"YulTypedName","src":"5598:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5678:5:125","nodeType":"YulIdentifier","src":"5678:5:125"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"5639:38:125","nodeType":"YulIdentifier","src":"5639:38:125"},"nativeSrc":"5639:45:125","nodeType":"YulFunctionCall","src":"5639:45:125"},"nativeSrc":"5639:45:125","nodeType":"YulExpressionStatement","src":"5639:45:125"},{"nativeSrc":"5693:15:125","nodeType":"YulAssignment","src":"5693:15:125","value":{"name":"value","nativeSrc":"5703:5:125","nodeType":"YulIdentifier","src":"5703:5:125"},"variableNames":[{"name":"value0","nativeSrc":"5693:6:125","nodeType":"YulIdentifier","src":"5693:6:125"}]},{"nativeSrc":"5717:46:125","nodeType":"YulVariableDeclaration","src":"5717:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5748:9:125","nodeType":"YulIdentifier","src":"5748:9:125"},{"kind":"number","nativeSrc":"5759:2:125","nodeType":"YulLiteral","src":"5759:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5744:3:125","nodeType":"YulIdentifier","src":"5744:3:125"},"nativeSrc":"5744:18:125","nodeType":"YulFunctionCall","src":"5744:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"5731:12:125","nodeType":"YulIdentifier","src":"5731:12:125"},"nativeSrc":"5731:32:125","nodeType":"YulFunctionCall","src":"5731:32:125"},"variables":[{"name":"offset","nativeSrc":"5721:6:125","nodeType":"YulTypedName","src":"5721:6:125","type":""}]},{"body":{"nativeSrc":"5806:16:125","nodeType":"YulBlock","src":"5806:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5815:1:125","nodeType":"YulLiteral","src":"5815:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5818:1:125","nodeType":"YulLiteral","src":"5818:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5808:6:125","nodeType":"YulIdentifier","src":"5808:6:125"},"nativeSrc":"5808:12:125","nodeType":"YulFunctionCall","src":"5808:12:125"},"nativeSrc":"5808:12:125","nodeType":"YulExpressionStatement","src":"5808:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"5778:6:125","nodeType":"YulIdentifier","src":"5778:6:125"},{"kind":"number","nativeSrc":"5786:18:125","nodeType":"YulLiteral","src":"5786:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"5775:2:125","nodeType":"YulIdentifier","src":"5775:2:125"},"nativeSrc":"5775:30:125","nodeType":"YulFunctionCall","src":"5775:30:125"},"nativeSrc":"5772:50:125","nodeType":"YulIf","src":"5772:50:125"},{"nativeSrc":"5831:32:125","nodeType":"YulVariableDeclaration","src":"5831:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5845:9:125","nodeType":"YulIdentifier","src":"5845:9:125"},{"name":"offset","nativeSrc":"5856:6:125","nodeType":"YulIdentifier","src":"5856:6:125"}],"functionName":{"name":"add","nativeSrc":"5841:3:125","nodeType":"YulIdentifier","src":"5841:3:125"},"nativeSrc":"5841:22:125","nodeType":"YulFunctionCall","src":"5841:22:125"},"variables":[{"name":"_1","nativeSrc":"5835:2:125","nodeType":"YulTypedName","src":"5835:2:125","type":""}]},{"body":{"nativeSrc":"5911:16:125","nodeType":"YulBlock","src":"5911:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5920:1:125","nodeType":"YulLiteral","src":"5920:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5923:1:125","nodeType":"YulLiteral","src":"5923:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5913:6:125","nodeType":"YulIdentifier","src":"5913:6:125"},"nativeSrc":"5913:12:125","nodeType":"YulFunctionCall","src":"5913:12:125"},"nativeSrc":"5913:12:125","nodeType":"YulExpressionStatement","src":"5913:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"5890:2:125","nodeType":"YulIdentifier","src":"5890:2:125"},{"kind":"number","nativeSrc":"5894:4:125","nodeType":"YulLiteral","src":"5894:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"5886:3:125","nodeType":"YulIdentifier","src":"5886:3:125"},"nativeSrc":"5886:13:125","nodeType":"YulFunctionCall","src":"5886:13:125"},{"name":"dataEnd","nativeSrc":"5901:7:125","nodeType":"YulIdentifier","src":"5901:7:125"}],"functionName":{"name":"slt","nativeSrc":"5882:3:125","nodeType":"YulIdentifier","src":"5882:3:125"},"nativeSrc":"5882:27:125","nodeType":"YulFunctionCall","src":"5882:27:125"}],"functionName":{"name":"iszero","nativeSrc":"5875:6:125","nodeType":"YulIdentifier","src":"5875:6:125"},"nativeSrc":"5875:35:125","nodeType":"YulFunctionCall","src":"5875:35:125"},"nativeSrc":"5872:55:125","nodeType":"YulIf","src":"5872:55:125"},{"nativeSrc":"5936:30:125","nodeType":"YulVariableDeclaration","src":"5936:30:125","value":{"arguments":[{"name":"_1","nativeSrc":"5963:2:125","nodeType":"YulIdentifier","src":"5963:2:125"}],"functionName":{"name":"calldataload","nativeSrc":"5950:12:125","nodeType":"YulIdentifier","src":"5950:12:125"},"nativeSrc":"5950:16:125","nodeType":"YulFunctionCall","src":"5950:16:125"},"variables":[{"name":"length","nativeSrc":"5940:6:125","nodeType":"YulTypedName","src":"5940:6:125","type":""}]},{"body":{"nativeSrc":"6009:22:125","nodeType":"YulBlock","src":"6009:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"6011:16:125","nodeType":"YulIdentifier","src":"6011:16:125"},"nativeSrc":"6011:18:125","nodeType":"YulFunctionCall","src":"6011:18:125"},"nativeSrc":"6011:18:125","nodeType":"YulExpressionStatement","src":"6011:18:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"5981:6:125","nodeType":"YulIdentifier","src":"5981:6:125"},{"kind":"number","nativeSrc":"5989:18:125","nodeType":"YulLiteral","src":"5989:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"5978:2:125","nodeType":"YulIdentifier","src":"5978:2:125"},"nativeSrc":"5978:30:125","nodeType":"YulFunctionCall","src":"5978:30:125"},"nativeSrc":"5975:56:125","nodeType":"YulIf","src":"5975:56:125"},{"nativeSrc":"6040:70:125","nodeType":"YulVariableDeclaration","src":"6040:70:125","value":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"6081:6:125","nodeType":"YulIdentifier","src":"6081:6:125"},{"kind":"number","nativeSrc":"6089:4:125","nodeType":"YulLiteral","src":"6089:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"6077:3:125","nodeType":"YulIdentifier","src":"6077:3:125"},"nativeSrc":"6077:17:125","nodeType":"YulFunctionCall","src":"6077:17:125"},{"arguments":[{"kind":"number","nativeSrc":"6100:2:125","nodeType":"YulLiteral","src":"6100:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"6096:3:125","nodeType":"YulIdentifier","src":"6096:3:125"},"nativeSrc":"6096:7:125","nodeType":"YulFunctionCall","src":"6096:7:125"}],"functionName":{"name":"and","nativeSrc":"6073:3:125","nodeType":"YulIdentifier","src":"6073:3:125"},"nativeSrc":"6073:31:125","nodeType":"YulFunctionCall","src":"6073:31:125"},{"kind":"number","nativeSrc":"6106:2:125","nodeType":"YulLiteral","src":"6106:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6069:3:125","nodeType":"YulIdentifier","src":"6069:3:125"},"nativeSrc":"6069:40:125","nodeType":"YulFunctionCall","src":"6069:40:125"}],"functionName":{"name":"allocate_memory","nativeSrc":"6053:15:125","nodeType":"YulIdentifier","src":"6053:15:125"},"nativeSrc":"6053:57:125","nodeType":"YulFunctionCall","src":"6053:57:125"},"variables":[{"name":"array","nativeSrc":"6044:5:125","nodeType":"YulTypedName","src":"6044:5:125","type":""}]},{"expression":{"arguments":[{"name":"array","nativeSrc":"6126:5:125","nodeType":"YulIdentifier","src":"6126:5:125"},{"name":"length","nativeSrc":"6133:6:125","nodeType":"YulIdentifier","src":"6133:6:125"}],"functionName":{"name":"mstore","nativeSrc":"6119:6:125","nodeType":"YulIdentifier","src":"6119:6:125"},"nativeSrc":"6119:21:125","nodeType":"YulFunctionCall","src":"6119:21:125"},"nativeSrc":"6119:21:125","nodeType":"YulExpressionStatement","src":"6119:21:125"},{"body":{"nativeSrc":"6190:16:125","nodeType":"YulBlock","src":"6190:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6199:1:125","nodeType":"YulLiteral","src":"6199:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6202:1:125","nodeType":"YulLiteral","src":"6202:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6192:6:125","nodeType":"YulIdentifier","src":"6192:6:125"},"nativeSrc":"6192:12:125","nodeType":"YulFunctionCall","src":"6192:12:125"},"nativeSrc":"6192:12:125","nodeType":"YulExpressionStatement","src":"6192:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"6163:2:125","nodeType":"YulIdentifier","src":"6163:2:125"},{"name":"length","nativeSrc":"6167:6:125","nodeType":"YulIdentifier","src":"6167:6:125"}],"functionName":{"name":"add","nativeSrc":"6159:3:125","nodeType":"YulIdentifier","src":"6159:3:125"},"nativeSrc":"6159:15:125","nodeType":"YulFunctionCall","src":"6159:15:125"},{"kind":"number","nativeSrc":"6176:2:125","nodeType":"YulLiteral","src":"6176:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6155:3:125","nodeType":"YulIdentifier","src":"6155:3:125"},"nativeSrc":"6155:24:125","nodeType":"YulFunctionCall","src":"6155:24:125"},{"name":"dataEnd","nativeSrc":"6181:7:125","nodeType":"YulIdentifier","src":"6181:7:125"}],"functionName":{"name":"gt","nativeSrc":"6152:2:125","nodeType":"YulIdentifier","src":"6152:2:125"},"nativeSrc":"6152:37:125","nodeType":"YulFunctionCall","src":"6152:37:125"},"nativeSrc":"6149:57:125","nodeType":"YulIf","src":"6149:57:125"},{"expression":{"arguments":[{"arguments":[{"name":"array","nativeSrc":"6232:5:125","nodeType":"YulIdentifier","src":"6232:5:125"},{"kind":"number","nativeSrc":"6239:2:125","nodeType":"YulLiteral","src":"6239:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6228:3:125","nodeType":"YulIdentifier","src":"6228:3:125"},"nativeSrc":"6228:14:125","nodeType":"YulFunctionCall","src":"6228:14:125"},{"arguments":[{"name":"_1","nativeSrc":"6248:2:125","nodeType":"YulIdentifier","src":"6248:2:125"},{"kind":"number","nativeSrc":"6252:2:125","nodeType":"YulLiteral","src":"6252:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6244:3:125","nodeType":"YulIdentifier","src":"6244:3:125"},"nativeSrc":"6244:11:125","nodeType":"YulFunctionCall","src":"6244:11:125"},{"name":"length","nativeSrc":"6257:6:125","nodeType":"YulIdentifier","src":"6257:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"6215:12:125","nodeType":"YulIdentifier","src":"6215:12:125"},"nativeSrc":"6215:49:125","nodeType":"YulFunctionCall","src":"6215:49:125"},"nativeSrc":"6215:49:125","nodeType":"YulExpressionStatement","src":"6215:49:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"array","nativeSrc":"6288:5:125","nodeType":"YulIdentifier","src":"6288:5:125"},{"name":"length","nativeSrc":"6295:6:125","nodeType":"YulIdentifier","src":"6295:6:125"}],"functionName":{"name":"add","nativeSrc":"6284:3:125","nodeType":"YulIdentifier","src":"6284:3:125"},"nativeSrc":"6284:18:125","nodeType":"YulFunctionCall","src":"6284:18:125"},{"kind":"number","nativeSrc":"6304:2:125","nodeType":"YulLiteral","src":"6304:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6280:3:125","nodeType":"YulIdentifier","src":"6280:3:125"},"nativeSrc":"6280:27:125","nodeType":"YulFunctionCall","src":"6280:27:125"},{"kind":"number","nativeSrc":"6309:1:125","nodeType":"YulLiteral","src":"6309:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"6273:6:125","nodeType":"YulIdentifier","src":"6273:6:125"},"nativeSrc":"6273:38:125","nodeType":"YulFunctionCall","src":"6273:38:125"},"nativeSrc":"6273:38:125","nodeType":"YulExpressionStatement","src":"6273:38:125"},{"nativeSrc":"6320:15:125","nodeType":"YulAssignment","src":"6320:15:125","value":{"name":"array","nativeSrc":"6330:5:125","nodeType":"YulIdentifier","src":"6330:5:125"},"variableNames":[{"name":"value1","nativeSrc":"6320:6:125","nodeType":"YulIdentifier","src":"6320:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr","nativeSrc":"5427:914:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5481:9:125","nodeType":"YulTypedName","src":"5481:9:125","type":""},{"name":"dataEnd","nativeSrc":"5492:7:125","nodeType":"YulTypedName","src":"5492:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5504:6:125","nodeType":"YulTypedName","src":"5504:6:125","type":""},{"name":"value1","nativeSrc":"5512:6:125","nodeType":"YulTypedName","src":"5512:6:125","type":""}],"src":"5427:914:125"},{"body":{"nativeSrc":"6447:102:125","nodeType":"YulBlock","src":"6447:102:125","statements":[{"nativeSrc":"6457:26:125","nodeType":"YulAssignment","src":"6457:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6469:9:125","nodeType":"YulIdentifier","src":"6469:9:125"},{"kind":"number","nativeSrc":"6480:2:125","nodeType":"YulLiteral","src":"6480:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6465:3:125","nodeType":"YulIdentifier","src":"6465:3:125"},"nativeSrc":"6465:18:125","nodeType":"YulFunctionCall","src":"6465:18:125"},"variableNames":[{"name":"tail","nativeSrc":"6457:4:125","nodeType":"YulIdentifier","src":"6457:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6499:9:125","nodeType":"YulIdentifier","src":"6499:9:125"},{"arguments":[{"name":"value0","nativeSrc":"6514:6:125","nodeType":"YulIdentifier","src":"6514:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6530:3:125","nodeType":"YulLiteral","src":"6530:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"6535:1:125","nodeType":"YulLiteral","src":"6535:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6526:3:125","nodeType":"YulIdentifier","src":"6526:3:125"},"nativeSrc":"6526:11:125","nodeType":"YulFunctionCall","src":"6526:11:125"},{"kind":"number","nativeSrc":"6539:1:125","nodeType":"YulLiteral","src":"6539:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6522:3:125","nodeType":"YulIdentifier","src":"6522:3:125"},"nativeSrc":"6522:19:125","nodeType":"YulFunctionCall","src":"6522:19:125"}],"functionName":{"name":"and","nativeSrc":"6510:3:125","nodeType":"YulIdentifier","src":"6510:3:125"},"nativeSrc":"6510:32:125","nodeType":"YulFunctionCall","src":"6510:32:125"}],"functionName":{"name":"mstore","nativeSrc":"6492:6:125","nodeType":"YulIdentifier","src":"6492:6:125"},"nativeSrc":"6492:51:125","nodeType":"YulFunctionCall","src":"6492:51:125"},"nativeSrc":"6492:51:125","nodeType":"YulExpressionStatement","src":"6492:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"6346:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6416:9:125","nodeType":"YulTypedName","src":"6416:9:125","type":""},{"name":"value0","nativeSrc":"6427:6:125","nodeType":"YulTypedName","src":"6427:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6438:4:125","nodeType":"YulTypedName","src":"6438:4:125","type":""}],"src":"6346:203:125"},{"body":{"nativeSrc":"6655:76:125","nodeType":"YulBlock","src":"6655:76:125","statements":[{"nativeSrc":"6665:26:125","nodeType":"YulAssignment","src":"6665:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6677:9:125","nodeType":"YulIdentifier","src":"6677:9:125"},{"kind":"number","nativeSrc":"6688:2:125","nodeType":"YulLiteral","src":"6688:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6673:3:125","nodeType":"YulIdentifier","src":"6673:3:125"},"nativeSrc":"6673:18:125","nodeType":"YulFunctionCall","src":"6673:18:125"},"variableNames":[{"name":"tail","nativeSrc":"6665:4:125","nodeType":"YulIdentifier","src":"6665:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6707:9:125","nodeType":"YulIdentifier","src":"6707:9:125"},{"name":"value0","nativeSrc":"6718:6:125","nodeType":"YulIdentifier","src":"6718:6:125"}],"functionName":{"name":"mstore","nativeSrc":"6700:6:125","nodeType":"YulIdentifier","src":"6700:6:125"},"nativeSrc":"6700:25:125","nodeType":"YulFunctionCall","src":"6700:25:125"},"nativeSrc":"6700:25:125","nodeType":"YulExpressionStatement","src":"6700:25:125"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"6554:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6624:9:125","nodeType":"YulTypedName","src":"6624:9:125","type":""},{"name":"value0","nativeSrc":"6635:6:125","nodeType":"YulTypedName","src":"6635:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6646:4:125","nodeType":"YulTypedName","src":"6646:4:125","type":""}],"src":"6554:177:125"},{"body":{"nativeSrc":"6808:275:125","nodeType":"YulBlock","src":"6808:275:125","statements":[{"body":{"nativeSrc":"6857:16:125","nodeType":"YulBlock","src":"6857:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6866:1:125","nodeType":"YulLiteral","src":"6866:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6869:1:125","nodeType":"YulLiteral","src":"6869:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6859:6:125","nodeType":"YulIdentifier","src":"6859:6:125"},"nativeSrc":"6859:12:125","nodeType":"YulFunctionCall","src":"6859:12:125"},"nativeSrc":"6859:12:125","nodeType":"YulExpressionStatement","src":"6859:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"6836:6:125","nodeType":"YulIdentifier","src":"6836:6:125"},{"kind":"number","nativeSrc":"6844:4:125","nodeType":"YulLiteral","src":"6844:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"6832:3:125","nodeType":"YulIdentifier","src":"6832:3:125"},"nativeSrc":"6832:17:125","nodeType":"YulFunctionCall","src":"6832:17:125"},{"name":"end","nativeSrc":"6851:3:125","nodeType":"YulIdentifier","src":"6851:3:125"}],"functionName":{"name":"slt","nativeSrc":"6828:3:125","nodeType":"YulIdentifier","src":"6828:3:125"},"nativeSrc":"6828:27:125","nodeType":"YulFunctionCall","src":"6828:27:125"}],"functionName":{"name":"iszero","nativeSrc":"6821:6:125","nodeType":"YulIdentifier","src":"6821:6:125"},"nativeSrc":"6821:35:125","nodeType":"YulFunctionCall","src":"6821:35:125"},"nativeSrc":"6818:55:125","nodeType":"YulIf","src":"6818:55:125"},{"nativeSrc":"6882:30:125","nodeType":"YulAssignment","src":"6882:30:125","value":{"arguments":[{"name":"offset","nativeSrc":"6905:6:125","nodeType":"YulIdentifier","src":"6905:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"6892:12:125","nodeType":"YulIdentifier","src":"6892:12:125"},"nativeSrc":"6892:20:125","nodeType":"YulFunctionCall","src":"6892:20:125"},"variableNames":[{"name":"length","nativeSrc":"6882:6:125","nodeType":"YulIdentifier","src":"6882:6:125"}]},{"body":{"nativeSrc":"6955:16:125","nodeType":"YulBlock","src":"6955:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6964:1:125","nodeType":"YulLiteral","src":"6964:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6967:1:125","nodeType":"YulLiteral","src":"6967:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6957:6:125","nodeType":"YulIdentifier","src":"6957:6:125"},"nativeSrc":"6957:12:125","nodeType":"YulFunctionCall","src":"6957:12:125"},"nativeSrc":"6957:12:125","nodeType":"YulExpressionStatement","src":"6957:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"6927:6:125","nodeType":"YulIdentifier","src":"6927:6:125"},{"kind":"number","nativeSrc":"6935:18:125","nodeType":"YulLiteral","src":"6935:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6924:2:125","nodeType":"YulIdentifier","src":"6924:2:125"},"nativeSrc":"6924:30:125","nodeType":"YulFunctionCall","src":"6924:30:125"},"nativeSrc":"6921:50:125","nodeType":"YulIf","src":"6921:50:125"},{"nativeSrc":"6980:29:125","nodeType":"YulAssignment","src":"6980:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"6996:6:125","nodeType":"YulIdentifier","src":"6996:6:125"},{"kind":"number","nativeSrc":"7004:4:125","nodeType":"YulLiteral","src":"7004:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6992:3:125","nodeType":"YulIdentifier","src":"6992:3:125"},"nativeSrc":"6992:17:125","nodeType":"YulFunctionCall","src":"6992:17:125"},"variableNames":[{"name":"arrayPos","nativeSrc":"6980:8:125","nodeType":"YulIdentifier","src":"6980:8:125"}]},{"body":{"nativeSrc":"7061:16:125","nodeType":"YulBlock","src":"7061:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7070:1:125","nodeType":"YulLiteral","src":"7070:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7073:1:125","nodeType":"YulLiteral","src":"7073:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7063:6:125","nodeType":"YulIdentifier","src":"7063:6:125"},"nativeSrc":"7063:12:125","nodeType":"YulFunctionCall","src":"7063:12:125"},"nativeSrc":"7063:12:125","nodeType":"YulExpressionStatement","src":"7063:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"7032:6:125","nodeType":"YulIdentifier","src":"7032:6:125"},{"name":"length","nativeSrc":"7040:6:125","nodeType":"YulIdentifier","src":"7040:6:125"}],"functionName":{"name":"add","nativeSrc":"7028:3:125","nodeType":"YulIdentifier","src":"7028:3:125"},"nativeSrc":"7028:19:125","nodeType":"YulFunctionCall","src":"7028:19:125"},{"kind":"number","nativeSrc":"7049:4:125","nodeType":"YulLiteral","src":"7049:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7024:3:125","nodeType":"YulIdentifier","src":"7024:3:125"},"nativeSrc":"7024:30:125","nodeType":"YulFunctionCall","src":"7024:30:125"},{"name":"end","nativeSrc":"7056:3:125","nodeType":"YulIdentifier","src":"7056:3:125"}],"functionName":{"name":"gt","nativeSrc":"7021:2:125","nodeType":"YulIdentifier","src":"7021:2:125"},"nativeSrc":"7021:39:125","nodeType":"YulFunctionCall","src":"7021:39:125"},"nativeSrc":"7018:59:125","nodeType":"YulIf","src":"7018:59:125"}]},"name":"abi_decode_bytes_calldata","nativeSrc":"6736:347:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"6771:6:125","nodeType":"YulTypedName","src":"6771:6:125","type":""},{"name":"end","nativeSrc":"6779:3:125","nodeType":"YulTypedName","src":"6779:3:125","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"6787:8:125","nodeType":"YulTypedName","src":"6787:8:125","type":""},{"name":"length","nativeSrc":"6797:6:125","nodeType":"YulTypedName","src":"6797:6:125","type":""}],"src":"6736:347:125"},{"body":{"nativeSrc":"7177:320:125","nodeType":"YulBlock","src":"7177:320:125","statements":[{"body":{"nativeSrc":"7223:16:125","nodeType":"YulBlock","src":"7223:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7232:1:125","nodeType":"YulLiteral","src":"7232:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7235:1:125","nodeType":"YulLiteral","src":"7235:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7225:6:125","nodeType":"YulIdentifier","src":"7225:6:125"},"nativeSrc":"7225:12:125","nodeType":"YulFunctionCall","src":"7225:12:125"},"nativeSrc":"7225:12:125","nodeType":"YulExpressionStatement","src":"7225:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7198:7:125","nodeType":"YulIdentifier","src":"7198:7:125"},{"name":"headStart","nativeSrc":"7207:9:125","nodeType":"YulIdentifier","src":"7207:9:125"}],"functionName":{"name":"sub","nativeSrc":"7194:3:125","nodeType":"YulIdentifier","src":"7194:3:125"},"nativeSrc":"7194:23:125","nodeType":"YulFunctionCall","src":"7194:23:125"},{"kind":"number","nativeSrc":"7219:2:125","nodeType":"YulLiteral","src":"7219:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"7190:3:125","nodeType":"YulIdentifier","src":"7190:3:125"},"nativeSrc":"7190:32:125","nodeType":"YulFunctionCall","src":"7190:32:125"},"nativeSrc":"7187:52:125","nodeType":"YulIf","src":"7187:52:125"},{"nativeSrc":"7248:37:125","nodeType":"YulVariableDeclaration","src":"7248:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7275:9:125","nodeType":"YulIdentifier","src":"7275:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"7262:12:125","nodeType":"YulIdentifier","src":"7262:12:125"},"nativeSrc":"7262:23:125","nodeType":"YulFunctionCall","src":"7262:23:125"},"variables":[{"name":"offset","nativeSrc":"7252:6:125","nodeType":"YulTypedName","src":"7252:6:125","type":""}]},{"body":{"nativeSrc":"7328:16:125","nodeType":"YulBlock","src":"7328:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7337:1:125","nodeType":"YulLiteral","src":"7337:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7340:1:125","nodeType":"YulLiteral","src":"7340:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7330:6:125","nodeType":"YulIdentifier","src":"7330:6:125"},"nativeSrc":"7330:12:125","nodeType":"YulFunctionCall","src":"7330:12:125"},"nativeSrc":"7330:12:125","nodeType":"YulExpressionStatement","src":"7330:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"7300:6:125","nodeType":"YulIdentifier","src":"7300:6:125"},{"kind":"number","nativeSrc":"7308:18:125","nodeType":"YulLiteral","src":"7308:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7297:2:125","nodeType":"YulIdentifier","src":"7297:2:125"},"nativeSrc":"7297:30:125","nodeType":"YulFunctionCall","src":"7297:30:125"},"nativeSrc":"7294:50:125","nodeType":"YulIf","src":"7294:50:125"},{"nativeSrc":"7353:84:125","nodeType":"YulVariableDeclaration","src":"7353:84:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7409:9:125","nodeType":"YulIdentifier","src":"7409:9:125"},{"name":"offset","nativeSrc":"7420:6:125","nodeType":"YulIdentifier","src":"7420:6:125"}],"functionName":{"name":"add","nativeSrc":"7405:3:125","nodeType":"YulIdentifier","src":"7405:3:125"},"nativeSrc":"7405:22:125","nodeType":"YulFunctionCall","src":"7405:22:125"},{"name":"dataEnd","nativeSrc":"7429:7:125","nodeType":"YulIdentifier","src":"7429:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"7379:25:125","nodeType":"YulIdentifier","src":"7379:25:125"},"nativeSrc":"7379:58:125","nodeType":"YulFunctionCall","src":"7379:58:125"},"variables":[{"name":"value0_1","nativeSrc":"7357:8:125","nodeType":"YulTypedName","src":"7357:8:125","type":""},{"name":"value1_1","nativeSrc":"7367:8:125","nodeType":"YulTypedName","src":"7367:8:125","type":""}]},{"nativeSrc":"7446:18:125","nodeType":"YulAssignment","src":"7446:18:125","value":{"name":"value0_1","nativeSrc":"7456:8:125","nodeType":"YulIdentifier","src":"7456:8:125"},"variableNames":[{"name":"value0","nativeSrc":"7446:6:125","nodeType":"YulIdentifier","src":"7446:6:125"}]},{"nativeSrc":"7473:18:125","nodeType":"YulAssignment","src":"7473:18:125","value":{"name":"value1_1","nativeSrc":"7483:8:125","nodeType":"YulIdentifier","src":"7483:8:125"},"variableNames":[{"name":"value1","nativeSrc":"7473:6:125","nodeType":"YulIdentifier","src":"7473:6:125"}]}]},"name":"abi_decode_tuple_t_bytes_calldata_ptr","nativeSrc":"7088:409:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7135:9:125","nodeType":"YulTypedName","src":"7135:9:125","type":""},{"name":"dataEnd","nativeSrc":"7146:7:125","nodeType":"YulTypedName","src":"7146:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7158:6:125","nodeType":"YulTypedName","src":"7158:6:125","type":""},{"name":"value1","nativeSrc":"7166:6:125","nodeType":"YulTypedName","src":"7166:6:125","type":""}],"src":"7088:409:125"},{"body":{"nativeSrc":"7545:53:125","nodeType":"YulBlock","src":"7545:53:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"7562:3:125","nodeType":"YulIdentifier","src":"7562:3:125"},{"arguments":[{"name":"value","nativeSrc":"7571:5:125","nodeType":"YulIdentifier","src":"7571:5:125"},{"kind":"number","nativeSrc":"7578:12:125","nodeType":"YulLiteral","src":"7578:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"7567:3:125","nodeType":"YulIdentifier","src":"7567:3:125"},"nativeSrc":"7567:24:125","nodeType":"YulFunctionCall","src":"7567:24:125"}],"functionName":{"name":"mstore","nativeSrc":"7555:6:125","nodeType":"YulIdentifier","src":"7555:6:125"},"nativeSrc":"7555:37:125","nodeType":"YulFunctionCall","src":"7555:37:125"},"nativeSrc":"7555:37:125","nodeType":"YulExpressionStatement","src":"7555:37:125"}]},"name":"abi_encode_uint40","nativeSrc":"7502:96:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"7529:5:125","nodeType":"YulTypedName","src":"7529:5:125","type":""},{"name":"pos","nativeSrc":"7536:3:125","nodeType":"YulTypedName","src":"7536:3:125","type":""}],"src":"7502:96:125"},{"body":{"nativeSrc":"7657:781:125","nodeType":"YulBlock","src":"7657:781:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"7674:3:125","nodeType":"YulIdentifier","src":"7674:3:125"},{"arguments":[{"name":"value","nativeSrc":"7685:5:125","nodeType":"YulIdentifier","src":"7685:5:125"}],"functionName":{"name":"mload","nativeSrc":"7679:5:125","nodeType":"YulIdentifier","src":"7679:5:125"},"nativeSrc":"7679:12:125","nodeType":"YulFunctionCall","src":"7679:12:125"}],"functionName":{"name":"mstore","nativeSrc":"7667:6:125","nodeType":"YulIdentifier","src":"7667:6:125"},"nativeSrc":"7667:25:125","nodeType":"YulFunctionCall","src":"7667:25:125"},"nativeSrc":"7667:25:125","nodeType":"YulExpressionStatement","src":"7667:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"7712:3:125","nodeType":"YulIdentifier","src":"7712:3:125"},{"kind":"number","nativeSrc":"7717:4:125","nodeType":"YulLiteral","src":"7717:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7708:3:125","nodeType":"YulIdentifier","src":"7708:3:125"},"nativeSrc":"7708:14:125","nodeType":"YulFunctionCall","src":"7708:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7734:5:125","nodeType":"YulIdentifier","src":"7734:5:125"},{"kind":"number","nativeSrc":"7741:4:125","nodeType":"YulLiteral","src":"7741:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7730:3:125","nodeType":"YulIdentifier","src":"7730:3:125"},"nativeSrc":"7730:16:125","nodeType":"YulFunctionCall","src":"7730:16:125"}],"functionName":{"name":"mload","nativeSrc":"7724:5:125","nodeType":"YulIdentifier","src":"7724:5:125"},"nativeSrc":"7724:23:125","nodeType":"YulFunctionCall","src":"7724:23:125"}],"functionName":{"name":"mstore","nativeSrc":"7701:6:125","nodeType":"YulIdentifier","src":"7701:6:125"},"nativeSrc":"7701:47:125","nodeType":"YulFunctionCall","src":"7701:47:125"},"nativeSrc":"7701:47:125","nodeType":"YulExpressionStatement","src":"7701:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"7768:3:125","nodeType":"YulIdentifier","src":"7768:3:125"},{"kind":"number","nativeSrc":"7773:4:125","nodeType":"YulLiteral","src":"7773:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"7764:3:125","nodeType":"YulIdentifier","src":"7764:3:125"},"nativeSrc":"7764:14:125","nodeType":"YulFunctionCall","src":"7764:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7790:5:125","nodeType":"YulIdentifier","src":"7790:5:125"},{"kind":"number","nativeSrc":"7797:4:125","nodeType":"YulLiteral","src":"7797:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"7786:3:125","nodeType":"YulIdentifier","src":"7786:3:125"},"nativeSrc":"7786:16:125","nodeType":"YulFunctionCall","src":"7786:16:125"}],"functionName":{"name":"mload","nativeSrc":"7780:5:125","nodeType":"YulIdentifier","src":"7780:5:125"},"nativeSrc":"7780:23:125","nodeType":"YulFunctionCall","src":"7780:23:125"}],"functionName":{"name":"mstore","nativeSrc":"7757:6:125","nodeType":"YulIdentifier","src":"7757:6:125"},"nativeSrc":"7757:47:125","nodeType":"YulFunctionCall","src":"7757:47:125"},"nativeSrc":"7757:47:125","nodeType":"YulExpressionStatement","src":"7757:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"7824:3:125","nodeType":"YulIdentifier","src":"7824:3:125"},{"kind":"number","nativeSrc":"7829:4:125","nodeType":"YulLiteral","src":"7829:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"7820:3:125","nodeType":"YulIdentifier","src":"7820:3:125"},"nativeSrc":"7820:14:125","nodeType":"YulFunctionCall","src":"7820:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7846:5:125","nodeType":"YulIdentifier","src":"7846:5:125"},{"kind":"number","nativeSrc":"7853:4:125","nodeType":"YulLiteral","src":"7853:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"7842:3:125","nodeType":"YulIdentifier","src":"7842:3:125"},"nativeSrc":"7842:16:125","nodeType":"YulFunctionCall","src":"7842:16:125"}],"functionName":{"name":"mload","nativeSrc":"7836:5:125","nodeType":"YulIdentifier","src":"7836:5:125"},"nativeSrc":"7836:23:125","nodeType":"YulFunctionCall","src":"7836:23:125"}],"functionName":{"name":"mstore","nativeSrc":"7813:6:125","nodeType":"YulIdentifier","src":"7813:6:125"},"nativeSrc":"7813:47:125","nodeType":"YulFunctionCall","src":"7813:47:125"},"nativeSrc":"7813:47:125","nodeType":"YulExpressionStatement","src":"7813:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"7880:3:125","nodeType":"YulIdentifier","src":"7880:3:125"},{"kind":"number","nativeSrc":"7885:4:125","nodeType":"YulLiteral","src":"7885:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"7876:3:125","nodeType":"YulIdentifier","src":"7876:3:125"},"nativeSrc":"7876:14:125","nodeType":"YulFunctionCall","src":"7876:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7902:5:125","nodeType":"YulIdentifier","src":"7902:5:125"},{"kind":"number","nativeSrc":"7909:4:125","nodeType":"YulLiteral","src":"7909:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"7898:3:125","nodeType":"YulIdentifier","src":"7898:3:125"},"nativeSrc":"7898:16:125","nodeType":"YulFunctionCall","src":"7898:16:125"}],"functionName":{"name":"mload","nativeSrc":"7892:5:125","nodeType":"YulIdentifier","src":"7892:5:125"},"nativeSrc":"7892:23:125","nodeType":"YulFunctionCall","src":"7892:23:125"}],"functionName":{"name":"mstore","nativeSrc":"7869:6:125","nodeType":"YulIdentifier","src":"7869:6:125"},"nativeSrc":"7869:47:125","nodeType":"YulFunctionCall","src":"7869:47:125"},"nativeSrc":"7869:47:125","nodeType":"YulExpressionStatement","src":"7869:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"7936:3:125","nodeType":"YulIdentifier","src":"7936:3:125"},{"kind":"number","nativeSrc":"7941:4:125","nodeType":"YulLiteral","src":"7941:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"7932:3:125","nodeType":"YulIdentifier","src":"7932:3:125"},"nativeSrc":"7932:14:125","nodeType":"YulFunctionCall","src":"7932:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7958:5:125","nodeType":"YulIdentifier","src":"7958:5:125"},{"kind":"number","nativeSrc":"7965:4:125","nodeType":"YulLiteral","src":"7965:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"7954:3:125","nodeType":"YulIdentifier","src":"7954:3:125"},"nativeSrc":"7954:16:125","nodeType":"YulFunctionCall","src":"7954:16:125"}],"functionName":{"name":"mload","nativeSrc":"7948:5:125","nodeType":"YulIdentifier","src":"7948:5:125"},"nativeSrc":"7948:23:125","nodeType":"YulFunctionCall","src":"7948:23:125"}],"functionName":{"name":"mstore","nativeSrc":"7925:6:125","nodeType":"YulIdentifier","src":"7925:6:125"},"nativeSrc":"7925:47:125","nodeType":"YulFunctionCall","src":"7925:47:125"},"nativeSrc":"7925:47:125","nodeType":"YulExpressionStatement","src":"7925:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"7992:3:125","nodeType":"YulIdentifier","src":"7992:3:125"},{"kind":"number","nativeSrc":"7997:4:125","nodeType":"YulLiteral","src":"7997:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"7988:3:125","nodeType":"YulIdentifier","src":"7988:3:125"},"nativeSrc":"7988:14:125","nodeType":"YulFunctionCall","src":"7988:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8014:5:125","nodeType":"YulIdentifier","src":"8014:5:125"},{"kind":"number","nativeSrc":"8021:4:125","nodeType":"YulLiteral","src":"8021:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"8010:3:125","nodeType":"YulIdentifier","src":"8010:3:125"},"nativeSrc":"8010:16:125","nodeType":"YulFunctionCall","src":"8010:16:125"}],"functionName":{"name":"mload","nativeSrc":"8004:5:125","nodeType":"YulIdentifier","src":"8004:5:125"},"nativeSrc":"8004:23:125","nodeType":"YulFunctionCall","src":"8004:23:125"}],"functionName":{"name":"mstore","nativeSrc":"7981:6:125","nodeType":"YulIdentifier","src":"7981:6:125"},"nativeSrc":"7981:47:125","nodeType":"YulFunctionCall","src":"7981:47:125"},"nativeSrc":"7981:47:125","nodeType":"YulExpressionStatement","src":"7981:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"8048:3:125","nodeType":"YulIdentifier","src":"8048:3:125"},{"kind":"number","nativeSrc":"8053:4:125","nodeType":"YulLiteral","src":"8053:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"8044:3:125","nodeType":"YulIdentifier","src":"8044:3:125"},"nativeSrc":"8044:14:125","nodeType":"YulFunctionCall","src":"8044:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8070:5:125","nodeType":"YulIdentifier","src":"8070:5:125"},{"kind":"number","nativeSrc":"8077:4:125","nodeType":"YulLiteral","src":"8077:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"8066:3:125","nodeType":"YulIdentifier","src":"8066:3:125"},"nativeSrc":"8066:16:125","nodeType":"YulFunctionCall","src":"8066:16:125"}],"functionName":{"name":"mload","nativeSrc":"8060:5:125","nodeType":"YulIdentifier","src":"8060:5:125"},"nativeSrc":"8060:23:125","nodeType":"YulFunctionCall","src":"8060:23:125"}],"functionName":{"name":"mstore","nativeSrc":"8037:6:125","nodeType":"YulIdentifier","src":"8037:6:125"},"nativeSrc":"8037:47:125","nodeType":"YulFunctionCall","src":"8037:47:125"},"nativeSrc":"8037:47:125","nodeType":"YulExpressionStatement","src":"8037:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"8104:3:125","nodeType":"YulIdentifier","src":"8104:3:125"},{"kind":"number","nativeSrc":"8109:6:125","nodeType":"YulLiteral","src":"8109:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"8100:3:125","nodeType":"YulIdentifier","src":"8100:3:125"},"nativeSrc":"8100:16:125","nodeType":"YulFunctionCall","src":"8100:16:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8128:5:125","nodeType":"YulIdentifier","src":"8128:5:125"},{"kind":"number","nativeSrc":"8135:6:125","nodeType":"YulLiteral","src":"8135:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"8124:3:125","nodeType":"YulIdentifier","src":"8124:3:125"},"nativeSrc":"8124:18:125","nodeType":"YulFunctionCall","src":"8124:18:125"}],"functionName":{"name":"mload","nativeSrc":"8118:5:125","nodeType":"YulIdentifier","src":"8118:5:125"},"nativeSrc":"8118:25:125","nodeType":"YulFunctionCall","src":"8118:25:125"}],"functionName":{"name":"mstore","nativeSrc":"8093:6:125","nodeType":"YulIdentifier","src":"8093:6:125"},"nativeSrc":"8093:51:125","nodeType":"YulFunctionCall","src":"8093:51:125"},"nativeSrc":"8093:51:125","nodeType":"YulExpressionStatement","src":"8093:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"8164:3:125","nodeType":"YulIdentifier","src":"8164:3:125"},{"kind":"number","nativeSrc":"8169:6:125","nodeType":"YulLiteral","src":"8169:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"8160:3:125","nodeType":"YulIdentifier","src":"8160:3:125"},"nativeSrc":"8160:16:125","nodeType":"YulFunctionCall","src":"8160:16:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8188:5:125","nodeType":"YulIdentifier","src":"8188:5:125"},{"kind":"number","nativeSrc":"8195:6:125","nodeType":"YulLiteral","src":"8195:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"8184:3:125","nodeType":"YulIdentifier","src":"8184:3:125"},"nativeSrc":"8184:18:125","nodeType":"YulFunctionCall","src":"8184:18:125"}],"functionName":{"name":"mload","nativeSrc":"8178:5:125","nodeType":"YulIdentifier","src":"8178:5:125"},"nativeSrc":"8178:25:125","nodeType":"YulFunctionCall","src":"8178:25:125"}],"functionName":{"name":"mstore","nativeSrc":"8153:6:125","nodeType":"YulIdentifier","src":"8153:6:125"},"nativeSrc":"8153:51:125","nodeType":"YulFunctionCall","src":"8153:51:125"},"nativeSrc":"8153:51:125","nodeType":"YulExpressionStatement","src":"8153:51:125"},{"nativeSrc":"8213:45:125","nodeType":"YulVariableDeclaration","src":"8213:45:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8243:5:125","nodeType":"YulIdentifier","src":"8243:5:125"},{"kind":"number","nativeSrc":"8250:6:125","nodeType":"YulLiteral","src":"8250:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"8239:3:125","nodeType":"YulIdentifier","src":"8239:3:125"},"nativeSrc":"8239:18:125","nodeType":"YulFunctionCall","src":"8239:18:125"}],"functionName":{"name":"mload","nativeSrc":"8233:5:125","nodeType":"YulIdentifier","src":"8233:5:125"},"nativeSrc":"8233:25:125","nodeType":"YulFunctionCall","src":"8233:25:125"},"variables":[{"name":"memberValue0","nativeSrc":"8217:12:125","nodeType":"YulTypedName","src":"8217:12:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"8285:12:125","nodeType":"YulIdentifier","src":"8285:12:125"},{"arguments":[{"name":"pos","nativeSrc":"8303:3:125","nodeType":"YulIdentifier","src":"8303:3:125"},{"kind":"number","nativeSrc":"8308:6:125","nodeType":"YulLiteral","src":"8308:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"8299:3:125","nodeType":"YulIdentifier","src":"8299:3:125"},"nativeSrc":"8299:16:125","nodeType":"YulFunctionCall","src":"8299:16:125"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"8267:17:125","nodeType":"YulIdentifier","src":"8267:17:125"},"nativeSrc":"8267:49:125","nodeType":"YulFunctionCall","src":"8267:49:125"},"nativeSrc":"8267:49:125","nodeType":"YulExpressionStatement","src":"8267:49:125"},{"nativeSrc":"8325:47:125","nodeType":"YulVariableDeclaration","src":"8325:47:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8357:5:125","nodeType":"YulIdentifier","src":"8357:5:125"},{"kind":"number","nativeSrc":"8364:6:125","nodeType":"YulLiteral","src":"8364:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"8353:3:125","nodeType":"YulIdentifier","src":"8353:3:125"},"nativeSrc":"8353:18:125","nodeType":"YulFunctionCall","src":"8353:18:125"}],"functionName":{"name":"mload","nativeSrc":"8347:5:125","nodeType":"YulIdentifier","src":"8347:5:125"},"nativeSrc":"8347:25:125","nodeType":"YulFunctionCall","src":"8347:25:125"},"variables":[{"name":"memberValue0_1","nativeSrc":"8329:14:125","nodeType":"YulTypedName","src":"8329:14:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nativeSrc":"8399:14:125","nodeType":"YulIdentifier","src":"8399:14:125"},{"arguments":[{"name":"pos","nativeSrc":"8419:3:125","nodeType":"YulIdentifier","src":"8419:3:125"},{"kind":"number","nativeSrc":"8424:6:125","nodeType":"YulLiteral","src":"8424:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"8415:3:125","nodeType":"YulIdentifier","src":"8415:3:125"},"nativeSrc":"8415:16:125","nodeType":"YulFunctionCall","src":"8415:16:125"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"8381:17:125","nodeType":"YulIdentifier","src":"8381:17:125"},"nativeSrc":"8381:51:125","nodeType":"YulFunctionCall","src":"8381:51:125"},"nativeSrc":"8381:51:125","nodeType":"YulExpressionStatement","src":"8381:51:125"}]},"name":"abi_encode_struct_PolicyData","nativeSrc":"7603:835:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"7641:5:125","nodeType":"YulTypedName","src":"7641:5:125","type":""},{"name":"pos","nativeSrc":"7648:3:125","nodeType":"YulTypedName","src":"7648:3:125","type":""}],"src":"7603:835:125"},{"body":{"nativeSrc":"8600:99:125","nodeType":"YulBlock","src":"8600:99:125","statements":[{"nativeSrc":"8610:27:125","nodeType":"YulAssignment","src":"8610:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8622:9:125","nodeType":"YulIdentifier","src":"8622:9:125"},{"kind":"number","nativeSrc":"8633:3:125","nodeType":"YulLiteral","src":"8633:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"8618:3:125","nodeType":"YulIdentifier","src":"8618:3:125"},"nativeSrc":"8618:19:125","nodeType":"YulFunctionCall","src":"8618:19:125"},"variableNames":[{"name":"tail","nativeSrc":"8610:4:125","nodeType":"YulIdentifier","src":"8610:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"8675:6:125","nodeType":"YulIdentifier","src":"8675:6:125"},{"name":"headStart","nativeSrc":"8683:9:125","nodeType":"YulIdentifier","src":"8683:9:125"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"8646:28:125","nodeType":"YulIdentifier","src":"8646:28:125"},"nativeSrc":"8646:47:125","nodeType":"YulFunctionCall","src":"8646:47:125"},"nativeSrc":"8646:47:125","nodeType":"YulExpressionStatement","src":"8646:47:125"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr__fromStack_reversed","nativeSrc":"8443:256:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8569:9:125","nodeType":"YulTypedName","src":"8569:9:125","type":""},{"name":"value0","nativeSrc":"8580:6:125","nodeType":"YulTypedName","src":"8580:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8591:4:125","nodeType":"YulTypedName","src":"8591:4:125","type":""}],"src":"8443:256:125"},{"body":{"nativeSrc":"8831:102:125","nodeType":"YulBlock","src":"8831:102:125","statements":[{"nativeSrc":"8841:26:125","nodeType":"YulAssignment","src":"8841:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8853:9:125","nodeType":"YulIdentifier","src":"8853:9:125"},{"kind":"number","nativeSrc":"8864:2:125","nodeType":"YulLiteral","src":"8864:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8849:3:125","nodeType":"YulIdentifier","src":"8849:3:125"},"nativeSrc":"8849:18:125","nodeType":"YulFunctionCall","src":"8849:18:125"},"variableNames":[{"name":"tail","nativeSrc":"8841:4:125","nodeType":"YulIdentifier","src":"8841:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8883:9:125","nodeType":"YulIdentifier","src":"8883:9:125"},{"arguments":[{"name":"value0","nativeSrc":"8898:6:125","nodeType":"YulIdentifier","src":"8898:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"8914:3:125","nodeType":"YulLiteral","src":"8914:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"8919:1:125","nodeType":"YulLiteral","src":"8919:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"8910:3:125","nodeType":"YulIdentifier","src":"8910:3:125"},"nativeSrc":"8910:11:125","nodeType":"YulFunctionCall","src":"8910:11:125"},{"kind":"number","nativeSrc":"8923:1:125","nodeType":"YulLiteral","src":"8923:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"8906:3:125","nodeType":"YulIdentifier","src":"8906:3:125"},"nativeSrc":"8906:19:125","nodeType":"YulFunctionCall","src":"8906:19:125"}],"functionName":{"name":"and","nativeSrc":"8894:3:125","nodeType":"YulIdentifier","src":"8894:3:125"},"nativeSrc":"8894:32:125","nodeType":"YulFunctionCall","src":"8894:32:125"}],"functionName":{"name":"mstore","nativeSrc":"8876:6:125","nodeType":"YulIdentifier","src":"8876:6:125"},"nativeSrc":"8876:51:125","nodeType":"YulFunctionCall","src":"8876:51:125"},"nativeSrc":"8876:51:125","nodeType":"YulExpressionStatement","src":"8876:51:125"}]},"name":"abi_encode_tuple_t_contract$_IPremiumsAccount_$14743__to_t_address__fromStack_reversed","nativeSrc":"8704:229:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8800:9:125","nodeType":"YulTypedName","src":"8800:9:125","type":""},{"name":"value0","nativeSrc":"8811:6:125","nodeType":"YulTypedName","src":"8811:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8822:4:125","nodeType":"YulTypedName","src":"8822:4:125","type":""}],"src":"8704:229:125"},{"body":{"nativeSrc":"9044:452:125","nodeType":"YulBlock","src":"9044:452:125","statements":[{"body":{"nativeSrc":"9090:16:125","nodeType":"YulBlock","src":"9090:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9099:1:125","nodeType":"YulLiteral","src":"9099:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9102:1:125","nodeType":"YulLiteral","src":"9102:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9092:6:125","nodeType":"YulIdentifier","src":"9092:6:125"},"nativeSrc":"9092:12:125","nodeType":"YulFunctionCall","src":"9092:12:125"},"nativeSrc":"9092:12:125","nodeType":"YulExpressionStatement","src":"9092:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9065:7:125","nodeType":"YulIdentifier","src":"9065:7:125"},{"name":"headStart","nativeSrc":"9074:9:125","nodeType":"YulIdentifier","src":"9074:9:125"}],"functionName":{"name":"sub","nativeSrc":"9061:3:125","nodeType":"YulIdentifier","src":"9061:3:125"},"nativeSrc":"9061:23:125","nodeType":"YulFunctionCall","src":"9061:23:125"},{"kind":"number","nativeSrc":"9086:2:125","nodeType":"YulLiteral","src":"9086:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"9057:3:125","nodeType":"YulIdentifier","src":"9057:3:125"},"nativeSrc":"9057:32:125","nodeType":"YulFunctionCall","src":"9057:32:125"},"nativeSrc":"9054:52:125","nodeType":"YulIf","src":"9054:52:125"},{"nativeSrc":"9115:37:125","nodeType":"YulVariableDeclaration","src":"9115:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"9142:9:125","nodeType":"YulIdentifier","src":"9142:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"9129:12:125","nodeType":"YulIdentifier","src":"9129:12:125"},"nativeSrc":"9129:23:125","nodeType":"YulFunctionCall","src":"9129:23:125"},"variables":[{"name":"offset","nativeSrc":"9119:6:125","nodeType":"YulTypedName","src":"9119:6:125","type":""}]},{"body":{"nativeSrc":"9195:16:125","nodeType":"YulBlock","src":"9195:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9204:1:125","nodeType":"YulLiteral","src":"9204:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9207:1:125","nodeType":"YulLiteral","src":"9207:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9197:6:125","nodeType":"YulIdentifier","src":"9197:6:125"},"nativeSrc":"9197:12:125","nodeType":"YulFunctionCall","src":"9197:12:125"},"nativeSrc":"9197:12:125","nodeType":"YulExpressionStatement","src":"9197:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"9167:6:125","nodeType":"YulIdentifier","src":"9167:6:125"},{"kind":"number","nativeSrc":"9175:18:125","nodeType":"YulLiteral","src":"9175:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"9164:2:125","nodeType":"YulIdentifier","src":"9164:2:125"},"nativeSrc":"9164:30:125","nodeType":"YulFunctionCall","src":"9164:30:125"},"nativeSrc":"9161:50:125","nodeType":"YulIf","src":"9161:50:125"},{"nativeSrc":"9220:84:125","nodeType":"YulVariableDeclaration","src":"9220:84:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9276:9:125","nodeType":"YulIdentifier","src":"9276:9:125"},{"name":"offset","nativeSrc":"9287:6:125","nodeType":"YulIdentifier","src":"9287:6:125"}],"functionName":{"name":"add","nativeSrc":"9272:3:125","nodeType":"YulIdentifier","src":"9272:3:125"},"nativeSrc":"9272:22:125","nodeType":"YulFunctionCall","src":"9272:22:125"},{"name":"dataEnd","nativeSrc":"9296:7:125","nodeType":"YulIdentifier","src":"9296:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"9246:25:125","nodeType":"YulIdentifier","src":"9246:25:125"},"nativeSrc":"9246:58:125","nodeType":"YulFunctionCall","src":"9246:58:125"},"variables":[{"name":"value0_1","nativeSrc":"9224:8:125","nodeType":"YulTypedName","src":"9224:8:125","type":""},{"name":"value1_1","nativeSrc":"9234:8:125","nodeType":"YulTypedName","src":"9234:8:125","type":""}]},{"nativeSrc":"9313:18:125","nodeType":"YulAssignment","src":"9313:18:125","value":{"name":"value0_1","nativeSrc":"9323:8:125","nodeType":"YulIdentifier","src":"9323:8:125"},"variableNames":[{"name":"value0","nativeSrc":"9313:6:125","nodeType":"YulIdentifier","src":"9313:6:125"}]},{"nativeSrc":"9340:18:125","nodeType":"YulAssignment","src":"9340:18:125","value":{"name":"value1_1","nativeSrc":"9350:8:125","nodeType":"YulIdentifier","src":"9350:8:125"},"variableNames":[{"name":"value1","nativeSrc":"9340:6:125","nodeType":"YulIdentifier","src":"9340:6:125"}]},{"nativeSrc":"9367:45:125","nodeType":"YulVariableDeclaration","src":"9367:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9397:9:125","nodeType":"YulIdentifier","src":"9397:9:125"},{"kind":"number","nativeSrc":"9408:2:125","nodeType":"YulLiteral","src":"9408:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9393:3:125","nodeType":"YulIdentifier","src":"9393:3:125"},"nativeSrc":"9393:18:125","nodeType":"YulFunctionCall","src":"9393:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"9380:12:125","nodeType":"YulIdentifier","src":"9380:12:125"},"nativeSrc":"9380:32:125","nodeType":"YulFunctionCall","src":"9380:32:125"},"variables":[{"name":"value","nativeSrc":"9371:5:125","nodeType":"YulTypedName","src":"9371:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"9460:5:125","nodeType":"YulIdentifier","src":"9460:5:125"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"9421:38:125","nodeType":"YulIdentifier","src":"9421:38:125"},"nativeSrc":"9421:45:125","nodeType":"YulFunctionCall","src":"9421:45:125"},"nativeSrc":"9421:45:125","nodeType":"YulExpressionStatement","src":"9421:45:125"},{"nativeSrc":"9475:15:125","nodeType":"YulAssignment","src":"9475:15:125","value":{"name":"value","nativeSrc":"9485:5:125","nodeType":"YulIdentifier","src":"9485:5:125"},"variableNames":[{"name":"value2","nativeSrc":"9475:6:125","nodeType":"YulIdentifier","src":"9475:6:125"}]}]},"name":"abi_decode_tuple_t_bytes_calldata_ptrt_address","nativeSrc":"8938:558:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8994:9:125","nodeType":"YulTypedName","src":"8994:9:125","type":""},{"name":"dataEnd","nativeSrc":"9005:7:125","nodeType":"YulTypedName","src":"9005:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9017:6:125","nodeType":"YulTypedName","src":"9017:6:125","type":""},{"name":"value1","nativeSrc":"9025:6:125","nodeType":"YulTypedName","src":"9025:6:125","type":""},{"name":"value2","nativeSrc":"9033:6:125","nodeType":"YulTypedName","src":"9033:6:125","type":""}],"src":"8938:558:125"},{"body":{"nativeSrc":"9622:297:125","nodeType":"YulBlock","src":"9622:297:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9639:9:125","nodeType":"YulIdentifier","src":"9639:9:125"},{"kind":"number","nativeSrc":"9650:2:125","nodeType":"YulLiteral","src":"9650:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"9632:6:125","nodeType":"YulIdentifier","src":"9632:6:125"},"nativeSrc":"9632:21:125","nodeType":"YulFunctionCall","src":"9632:21:125"},"nativeSrc":"9632:21:125","nodeType":"YulExpressionStatement","src":"9632:21:125"},{"nativeSrc":"9662:27:125","nodeType":"YulVariableDeclaration","src":"9662:27:125","value":{"arguments":[{"name":"value0","nativeSrc":"9682:6:125","nodeType":"YulIdentifier","src":"9682:6:125"}],"functionName":{"name":"mload","nativeSrc":"9676:5:125","nodeType":"YulIdentifier","src":"9676:5:125"},"nativeSrc":"9676:13:125","nodeType":"YulFunctionCall","src":"9676:13:125"},"variables":[{"name":"length","nativeSrc":"9666:6:125","nodeType":"YulTypedName","src":"9666:6:125","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9709:9:125","nodeType":"YulIdentifier","src":"9709:9:125"},{"kind":"number","nativeSrc":"9720:2:125","nodeType":"YulLiteral","src":"9720:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9705:3:125","nodeType":"YulIdentifier","src":"9705:3:125"},"nativeSrc":"9705:18:125","nodeType":"YulFunctionCall","src":"9705:18:125"},{"name":"length","nativeSrc":"9725:6:125","nodeType":"YulIdentifier","src":"9725:6:125"}],"functionName":{"name":"mstore","nativeSrc":"9698:6:125","nodeType":"YulIdentifier","src":"9698:6:125"},"nativeSrc":"9698:34:125","nodeType":"YulFunctionCall","src":"9698:34:125"},"nativeSrc":"9698:34:125","nodeType":"YulExpressionStatement","src":"9698:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9751:9:125","nodeType":"YulIdentifier","src":"9751:9:125"},{"kind":"number","nativeSrc":"9762:2:125","nodeType":"YulLiteral","src":"9762:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9747:3:125","nodeType":"YulIdentifier","src":"9747:3:125"},"nativeSrc":"9747:18:125","nodeType":"YulFunctionCall","src":"9747:18:125"},{"arguments":[{"name":"value0","nativeSrc":"9771:6:125","nodeType":"YulIdentifier","src":"9771:6:125"},{"kind":"number","nativeSrc":"9779:2:125","nodeType":"YulLiteral","src":"9779:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9767:3:125","nodeType":"YulIdentifier","src":"9767:3:125"},"nativeSrc":"9767:15:125","nodeType":"YulFunctionCall","src":"9767:15:125"},{"name":"length","nativeSrc":"9784:6:125","nodeType":"YulIdentifier","src":"9784:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"9741:5:125","nodeType":"YulIdentifier","src":"9741:5:125"},"nativeSrc":"9741:50:125","nodeType":"YulFunctionCall","src":"9741:50:125"},"nativeSrc":"9741:50:125","nodeType":"YulExpressionStatement","src":"9741:50:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9815:9:125","nodeType":"YulIdentifier","src":"9815:9:125"},{"name":"length","nativeSrc":"9826:6:125","nodeType":"YulIdentifier","src":"9826:6:125"}],"functionName":{"name":"add","nativeSrc":"9811:3:125","nodeType":"YulIdentifier","src":"9811:3:125"},"nativeSrc":"9811:22:125","nodeType":"YulFunctionCall","src":"9811:22:125"},{"kind":"number","nativeSrc":"9835:2:125","nodeType":"YulLiteral","src":"9835:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9807:3:125","nodeType":"YulIdentifier","src":"9807:3:125"},"nativeSrc":"9807:31:125","nodeType":"YulFunctionCall","src":"9807:31:125"},{"kind":"number","nativeSrc":"9840:1:125","nodeType":"YulLiteral","src":"9840:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"9800:6:125","nodeType":"YulIdentifier","src":"9800:6:125"},"nativeSrc":"9800:42:125","nodeType":"YulFunctionCall","src":"9800:42:125"},"nativeSrc":"9800:42:125","nodeType":"YulExpressionStatement","src":"9800:42:125"},{"nativeSrc":"9851:62:125","nodeType":"YulAssignment","src":"9851:62:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9867:9:125","nodeType":"YulIdentifier","src":"9867:9:125"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"9886:6:125","nodeType":"YulIdentifier","src":"9886:6:125"},{"kind":"number","nativeSrc":"9894:2:125","nodeType":"YulLiteral","src":"9894:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"9882:3:125","nodeType":"YulIdentifier","src":"9882:3:125"},"nativeSrc":"9882:15:125","nodeType":"YulFunctionCall","src":"9882:15:125"},{"arguments":[{"kind":"number","nativeSrc":"9903:2:125","nodeType":"YulLiteral","src":"9903:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"9899:3:125","nodeType":"YulIdentifier","src":"9899:3:125"},"nativeSrc":"9899:7:125","nodeType":"YulFunctionCall","src":"9899:7:125"}],"functionName":{"name":"and","nativeSrc":"9878:3:125","nodeType":"YulIdentifier","src":"9878:3:125"},"nativeSrc":"9878:29:125","nodeType":"YulFunctionCall","src":"9878:29:125"}],"functionName":{"name":"add","nativeSrc":"9863:3:125","nodeType":"YulIdentifier","src":"9863:3:125"},"nativeSrc":"9863:45:125","nodeType":"YulFunctionCall","src":"9863:45:125"},{"kind":"number","nativeSrc":"9910:2:125","nodeType":"YulLiteral","src":"9910:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9859:3:125","nodeType":"YulIdentifier","src":"9859:3:125"},"nativeSrc":"9859:54:125","nodeType":"YulFunctionCall","src":"9859:54:125"},"variableNames":[{"name":"tail","nativeSrc":"9851:4:125","nodeType":"YulIdentifier","src":"9851:4:125"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"9501:418:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9591:9:125","nodeType":"YulTypedName","src":"9591:9:125","type":""},{"name":"value0","nativeSrc":"9602:6:125","nodeType":"YulTypedName","src":"9602:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9613:4:125","nodeType":"YulTypedName","src":"9613:4:125","type":""}],"src":"9501:418:125"},{"body":{"nativeSrc":"10041:257:125","nodeType":"YulBlock","src":"10041:257:125","statements":[{"nativeSrc":"10051:33:125","nodeType":"YulVariableDeclaration","src":"10051:33:125","value":{"arguments":[{"name":"dataEnd","nativeSrc":"10065:7:125","nodeType":"YulIdentifier","src":"10065:7:125"},{"name":"headStart","nativeSrc":"10074:9:125","nodeType":"YulIdentifier","src":"10074:9:125"}],"functionName":{"name":"sub","nativeSrc":"10061:3:125","nodeType":"YulIdentifier","src":"10061:3:125"},"nativeSrc":"10061:23:125","nodeType":"YulFunctionCall","src":"10061:23:125"},"variables":[{"name":"_1","nativeSrc":"10055:2:125","nodeType":"YulTypedName","src":"10055:2:125","type":""}]},{"body":{"nativeSrc":"10109:16:125","nodeType":"YulBlock","src":"10109:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10118:1:125","nodeType":"YulLiteral","src":"10118:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10121:1:125","nodeType":"YulLiteral","src":"10121:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10111:6:125","nodeType":"YulIdentifier","src":"10111:6:125"},"nativeSrc":"10111:12:125","nodeType":"YulFunctionCall","src":"10111:12:125"},"nativeSrc":"10111:12:125","nodeType":"YulExpressionStatement","src":"10111:12:125"}]},"condition":{"arguments":[{"name":"_1","nativeSrc":"10100:2:125","nodeType":"YulIdentifier","src":"10100:2:125"},{"kind":"number","nativeSrc":"10104:3:125","nodeType":"YulLiteral","src":"10104:3:125","type":"","value":"416"}],"functionName":{"name":"slt","nativeSrc":"10096:3:125","nodeType":"YulIdentifier","src":"10096:3:125"},"nativeSrc":"10096:12:125","nodeType":"YulFunctionCall","src":"10096:12:125"},"nativeSrc":"10093:32:125","nodeType":"YulIf","src":"10093:32:125"},{"body":{"nativeSrc":"10150:16:125","nodeType":"YulBlock","src":"10150:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10159:1:125","nodeType":"YulLiteral","src":"10159:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10162:1:125","nodeType":"YulLiteral","src":"10162:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10152:6:125","nodeType":"YulIdentifier","src":"10152:6:125"},"nativeSrc":"10152:12:125","nodeType":"YulFunctionCall","src":"10152:12:125"},"nativeSrc":"10152:12:125","nodeType":"YulExpressionStatement","src":"10152:12:125"}]},"condition":{"arguments":[{"name":"_1","nativeSrc":"10141:2:125","nodeType":"YulIdentifier","src":"10141:2:125"},{"kind":"number","nativeSrc":"10145:3:125","nodeType":"YulLiteral","src":"10145:3:125","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"10137:3:125","nodeType":"YulIdentifier","src":"10137:3:125"},"nativeSrc":"10137:12:125","nodeType":"YulFunctionCall","src":"10137:12:125"},"nativeSrc":"10134:32:125","nodeType":"YulIf","src":"10134:32:125"},{"nativeSrc":"10175:19:125","nodeType":"YulAssignment","src":"10175:19:125","value":{"name":"headStart","nativeSrc":"10185:9:125","nodeType":"YulIdentifier","src":"10185:9:125"},"variableNames":[{"name":"value0","nativeSrc":"10175:6:125","nodeType":"YulIdentifier","src":"10175:6:125"}]},{"nativeSrc":"10203:14:125","nodeType":"YulVariableDeclaration","src":"10203:14:125","value":{"kind":"number","nativeSrc":"10216:1:125","nodeType":"YulLiteral","src":"10216:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"10207:5:125","nodeType":"YulTypedName","src":"10207:5:125","type":""}]},{"nativeSrc":"10226:42:125","nodeType":"YulAssignment","src":"10226:42:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10252:9:125","nodeType":"YulIdentifier","src":"10252:9:125"},{"kind":"number","nativeSrc":"10263:3:125","nodeType":"YulLiteral","src":"10263:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"10248:3:125","nodeType":"YulIdentifier","src":"10248:3:125"},"nativeSrc":"10248:19:125","nodeType":"YulFunctionCall","src":"10248:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"10235:12:125","nodeType":"YulIdentifier","src":"10235:12:125"},"nativeSrc":"10235:33:125","nodeType":"YulFunctionCall","src":"10235:33:125"},"variableNames":[{"name":"value","nativeSrc":"10226:5:125","nodeType":"YulIdentifier","src":"10226:5:125"}]},{"nativeSrc":"10277:15:125","nodeType":"YulAssignment","src":"10277:15:125","value":{"name":"value","nativeSrc":"10287:5:125","nodeType":"YulIdentifier","src":"10287:5:125"},"variableNames":[{"name":"value1","nativeSrc":"10277:6:125","nodeType":"YulIdentifier","src":"10277:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_uint256","nativeSrc":"9924:374:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9999:9:125","nodeType":"YulTypedName","src":"9999:9:125","type":""},{"name":"dataEnd","nativeSrc":"10010:7:125","nodeType":"YulTypedName","src":"10010:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10022:6:125","nodeType":"YulTypedName","src":"10022:6:125","type":""},{"name":"value1","nativeSrc":"10030:6:125","nodeType":"YulTypedName","src":"10030:6:125","type":""}],"src":"9924:374:125"},{"body":{"nativeSrc":"10373:191:125","nodeType":"YulBlock","src":"10373:191:125","statements":[{"body":{"nativeSrc":"10419:16:125","nodeType":"YulBlock","src":"10419:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10428:1:125","nodeType":"YulLiteral","src":"10428:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10431:1:125","nodeType":"YulLiteral","src":"10431:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10421:6:125","nodeType":"YulIdentifier","src":"10421:6:125"},"nativeSrc":"10421:12:125","nodeType":"YulFunctionCall","src":"10421:12:125"},"nativeSrc":"10421:12:125","nodeType":"YulExpressionStatement","src":"10421:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10394:7:125","nodeType":"YulIdentifier","src":"10394:7:125"},{"name":"headStart","nativeSrc":"10403:9:125","nodeType":"YulIdentifier","src":"10403:9:125"}],"functionName":{"name":"sub","nativeSrc":"10390:3:125","nodeType":"YulIdentifier","src":"10390:3:125"},"nativeSrc":"10390:23:125","nodeType":"YulFunctionCall","src":"10390:23:125"},{"kind":"number","nativeSrc":"10415:2:125","nodeType":"YulLiteral","src":"10415:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"10386:3:125","nodeType":"YulIdentifier","src":"10386:3:125"},"nativeSrc":"10386:32:125","nodeType":"YulFunctionCall","src":"10386:32:125"},"nativeSrc":"10383:52:125","nodeType":"YulIf","src":"10383:52:125"},{"nativeSrc":"10444:36:125","nodeType":"YulVariableDeclaration","src":"10444:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10470:9:125","nodeType":"YulIdentifier","src":"10470:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"10457:12:125","nodeType":"YulIdentifier","src":"10457:12:125"},"nativeSrc":"10457:23:125","nodeType":"YulFunctionCall","src":"10457:23:125"},"variables":[{"name":"value","nativeSrc":"10448:5:125","nodeType":"YulTypedName","src":"10448:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10528:5:125","nodeType":"YulIdentifier","src":"10528:5:125"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"10489:38:125","nodeType":"YulIdentifier","src":"10489:38:125"},"nativeSrc":"10489:45:125","nodeType":"YulFunctionCall","src":"10489:45:125"},"nativeSrc":"10489:45:125","nodeType":"YulExpressionStatement","src":"10489:45:125"},{"nativeSrc":"10543:15:125","nodeType":"YulAssignment","src":"10543:15:125","value":{"name":"value","nativeSrc":"10553:5:125","nodeType":"YulIdentifier","src":"10553:5:125"},"variableNames":[{"name":"value0","nativeSrc":"10543:6:125","nodeType":"YulIdentifier","src":"10543:6:125"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"10303:261:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10339:9:125","nodeType":"YulTypedName","src":"10339:9:125","type":""},{"name":"dataEnd","nativeSrc":"10350:7:125","nodeType":"YulTypedName","src":"10350:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10362:6:125","nodeType":"YulTypedName","src":"10362:6:125","type":""}],"src":"10303:261:125"},{"body":{"nativeSrc":"10694:102:125","nodeType":"YulBlock","src":"10694:102:125","statements":[{"nativeSrc":"10704:26:125","nodeType":"YulAssignment","src":"10704:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10716:9:125","nodeType":"YulIdentifier","src":"10716:9:125"},{"kind":"number","nativeSrc":"10727:2:125","nodeType":"YulLiteral","src":"10727:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10712:3:125","nodeType":"YulIdentifier","src":"10712:3:125"},"nativeSrc":"10712:18:125","nodeType":"YulFunctionCall","src":"10712:18:125"},"variableNames":[{"name":"tail","nativeSrc":"10704:4:125","nodeType":"YulIdentifier","src":"10704:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10746:9:125","nodeType":"YulIdentifier","src":"10746:9:125"},{"arguments":[{"name":"value0","nativeSrc":"10761:6:125","nodeType":"YulIdentifier","src":"10761:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"10777:3:125","nodeType":"YulLiteral","src":"10777:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"10782:1:125","nodeType":"YulLiteral","src":"10782:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"10773:3:125","nodeType":"YulIdentifier","src":"10773:3:125"},"nativeSrc":"10773:11:125","nodeType":"YulFunctionCall","src":"10773:11:125"},{"kind":"number","nativeSrc":"10786:1:125","nodeType":"YulLiteral","src":"10786:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"10769:3:125","nodeType":"YulIdentifier","src":"10769:3:125"},"nativeSrc":"10769:19:125","nodeType":"YulFunctionCall","src":"10769:19:125"}],"functionName":{"name":"and","nativeSrc":"10757:3:125","nodeType":"YulIdentifier","src":"10757:3:125"},"nativeSrc":"10757:32:125","nodeType":"YulFunctionCall","src":"10757:32:125"}],"functionName":{"name":"mstore","nativeSrc":"10739:6:125","nodeType":"YulIdentifier","src":"10739:6:125"},"nativeSrc":"10739:51:125","nodeType":"YulFunctionCall","src":"10739:51:125"},"nativeSrc":"10739:51:125","nodeType":"YulExpressionStatement","src":"10739:51:125"}]},"name":"abi_encode_tuple_t_contract$_IERC20Metadata_$24925__to_t_address__fromStack_reversed","nativeSrc":"10569:227:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10663:9:125","nodeType":"YulTypedName","src":"10663:9:125","type":""},{"name":"value0","nativeSrc":"10674:6:125","nodeType":"YulTypedName","src":"10674:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10685:4:125","nodeType":"YulTypedName","src":"10685:4:125","type":""}],"src":"10569:227:125"},{"body":{"nativeSrc":"10924:102:125","nodeType":"YulBlock","src":"10924:102:125","statements":[{"nativeSrc":"10934:26:125","nodeType":"YulAssignment","src":"10934:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10946:9:125","nodeType":"YulIdentifier","src":"10946:9:125"},{"kind":"number","nativeSrc":"10957:2:125","nodeType":"YulLiteral","src":"10957:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10942:3:125","nodeType":"YulIdentifier","src":"10942:3:125"},"nativeSrc":"10942:18:125","nodeType":"YulFunctionCall","src":"10942:18:125"},"variableNames":[{"name":"tail","nativeSrc":"10934:4:125","nodeType":"YulIdentifier","src":"10934:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10976:9:125","nodeType":"YulIdentifier","src":"10976:9:125"},{"arguments":[{"name":"value0","nativeSrc":"10991:6:125","nodeType":"YulIdentifier","src":"10991:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11007:3:125","nodeType":"YulLiteral","src":"11007:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"11012:1:125","nodeType":"YulLiteral","src":"11012:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11003:3:125","nodeType":"YulIdentifier","src":"11003:3:125"},"nativeSrc":"11003:11:125","nodeType":"YulFunctionCall","src":"11003:11:125"},{"kind":"number","nativeSrc":"11016:1:125","nodeType":"YulLiteral","src":"11016:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"10999:3:125","nodeType":"YulIdentifier","src":"10999:3:125"},"nativeSrc":"10999:19:125","nodeType":"YulFunctionCall","src":"10999:19:125"}],"functionName":{"name":"and","nativeSrc":"10987:3:125","nodeType":"YulIdentifier","src":"10987:3:125"},"nativeSrc":"10987:32:125","nodeType":"YulFunctionCall","src":"10987:32:125"}],"functionName":{"name":"mstore","nativeSrc":"10969:6:125","nodeType":"YulIdentifier","src":"10969:6:125"},"nativeSrc":"10969:51:125","nodeType":"YulFunctionCall","src":"10969:51:125"},"nativeSrc":"10969:51:125","nodeType":"YulExpressionStatement","src":"10969:51:125"}]},"name":"abi_encode_tuple_t_contract$_IUnderwriter_$14830__to_t_address__fromStack_reversed","nativeSrc":"10801:225:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10893:9:125","nodeType":"YulTypedName","src":"10893:9:125","type":""},{"name":"value0","nativeSrc":"10904:6:125","nodeType":"YulTypedName","src":"10904:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10915:4:125","nodeType":"YulTypedName","src":"10915:4:125","type":""}],"src":"10801:225:125"},{"body":{"nativeSrc":"11204:171:125","nodeType":"YulBlock","src":"11204:171:125","statements":[{"nativeSrc":"11214:26:125","nodeType":"YulAssignment","src":"11214:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11226:9:125","nodeType":"YulIdentifier","src":"11226:9:125"},{"kind":"number","nativeSrc":"11237:2:125","nodeType":"YulLiteral","src":"11237:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11222:3:125","nodeType":"YulIdentifier","src":"11222:3:125"},"nativeSrc":"11222:18:125","nodeType":"YulFunctionCall","src":"11222:18:125"},"variableNames":[{"name":"tail","nativeSrc":"11214:4:125","nodeType":"YulIdentifier","src":"11214:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11256:9:125","nodeType":"YulIdentifier","src":"11256:9:125"},{"arguments":[{"name":"value0","nativeSrc":"11271:6:125","nodeType":"YulIdentifier","src":"11271:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11287:3:125","nodeType":"YulLiteral","src":"11287:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"11292:1:125","nodeType":"YulLiteral","src":"11292:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11283:3:125","nodeType":"YulIdentifier","src":"11283:3:125"},"nativeSrc":"11283:11:125","nodeType":"YulFunctionCall","src":"11283:11:125"},{"kind":"number","nativeSrc":"11296:1:125","nodeType":"YulLiteral","src":"11296:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11279:3:125","nodeType":"YulIdentifier","src":"11279:3:125"},"nativeSrc":"11279:19:125","nodeType":"YulFunctionCall","src":"11279:19:125"}],"functionName":{"name":"and","nativeSrc":"11267:3:125","nodeType":"YulIdentifier","src":"11267:3:125"},"nativeSrc":"11267:32:125","nodeType":"YulFunctionCall","src":"11267:32:125"}],"functionName":{"name":"mstore","nativeSrc":"11249:6:125","nodeType":"YulIdentifier","src":"11249:6:125"},"nativeSrc":"11249:51:125","nodeType":"YulFunctionCall","src":"11249:51:125"},"nativeSrc":"11249:51:125","nodeType":"YulExpressionStatement","src":"11249:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11320:9:125","nodeType":"YulIdentifier","src":"11320:9:125"},{"kind":"number","nativeSrc":"11331:2:125","nodeType":"YulLiteral","src":"11331:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11316:3:125","nodeType":"YulIdentifier","src":"11316:3:125"},"nativeSrc":"11316:18:125","nodeType":"YulFunctionCall","src":"11316:18:125"},{"arguments":[{"name":"value1","nativeSrc":"11340:6:125","nodeType":"YulIdentifier","src":"11340:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11356:3:125","nodeType":"YulLiteral","src":"11356:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"11361:1:125","nodeType":"YulLiteral","src":"11361:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11352:3:125","nodeType":"YulIdentifier","src":"11352:3:125"},"nativeSrc":"11352:11:125","nodeType":"YulFunctionCall","src":"11352:11:125"},{"kind":"number","nativeSrc":"11365:1:125","nodeType":"YulLiteral","src":"11365:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11348:3:125","nodeType":"YulIdentifier","src":"11348:3:125"},"nativeSrc":"11348:19:125","nodeType":"YulFunctionCall","src":"11348:19:125"}],"functionName":{"name":"and","nativeSrc":"11336:3:125","nodeType":"YulIdentifier","src":"11336:3:125"},"nativeSrc":"11336:32:125","nodeType":"YulFunctionCall","src":"11336:32:125"}],"functionName":{"name":"mstore","nativeSrc":"11309:6:125","nodeType":"YulIdentifier","src":"11309:6:125"},"nativeSrc":"11309:60:125","nodeType":"YulFunctionCall","src":"11309:60:125"},"nativeSrc":"11309:60:125","nodeType":"YulExpressionStatement","src":"11309:60:125"}]},"name":"abi_encode_tuple_t_contract$_IUnderwriter_$14830_t_contract$_IUnderwriter_$14830__to_t_address_t_address__fromStack_reversed","nativeSrc":"11031:344:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11165:9:125","nodeType":"YulTypedName","src":"11165:9:125","type":""},{"name":"value1","nativeSrc":"11176:6:125","nodeType":"YulTypedName","src":"11176:6:125","type":""},{"name":"value0","nativeSrc":"11184:6:125","nodeType":"YulTypedName","src":"11184:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11195:4:125","nodeType":"YulTypedName","src":"11195:4:125","type":""}],"src":"11031:344:125"},{"body":{"nativeSrc":"11412:95:125","nodeType":"YulBlock","src":"11412:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11429:1:125","nodeType":"YulLiteral","src":"11429:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"11436:3:125","nodeType":"YulLiteral","src":"11436:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"11441:10:125","nodeType":"YulLiteral","src":"11441:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"11432:3:125","nodeType":"YulIdentifier","src":"11432:3:125"},"nativeSrc":"11432:20:125","nodeType":"YulFunctionCall","src":"11432:20:125"}],"functionName":{"name":"mstore","nativeSrc":"11422:6:125","nodeType":"YulIdentifier","src":"11422:6:125"},"nativeSrc":"11422:31:125","nodeType":"YulFunctionCall","src":"11422:31:125"},"nativeSrc":"11422:31:125","nodeType":"YulExpressionStatement","src":"11422:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11469:1:125","nodeType":"YulLiteral","src":"11469:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"11472:4:125","nodeType":"YulLiteral","src":"11472:4:125","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"11462:6:125","nodeType":"YulIdentifier","src":"11462:6:125"},"nativeSrc":"11462:15:125","nodeType":"YulFunctionCall","src":"11462:15:125"},"nativeSrc":"11462:15:125","nodeType":"YulExpressionStatement","src":"11462:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11493:1:125","nodeType":"YulLiteral","src":"11493:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11496:4:125","nodeType":"YulLiteral","src":"11496:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"11486:6:125","nodeType":"YulIdentifier","src":"11486:6:125"},"nativeSrc":"11486:15:125","nodeType":"YulFunctionCall","src":"11486:15:125"},"nativeSrc":"11486:15:125","nodeType":"YulExpressionStatement","src":"11486:15:125"}]},"name":"panic_error_0x32","nativeSrc":"11380:127:125","nodeType":"YulFunctionDefinition","src":"11380:127:125"},{"body":{"nativeSrc":"11606:427:125","nodeType":"YulBlock","src":"11606:427:125","statements":[{"nativeSrc":"11616:51:125","nodeType":"YulVariableDeclaration","src":"11616:51:125","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"11655:11:125","nodeType":"YulIdentifier","src":"11655:11:125"}],"functionName":{"name":"calldataload","nativeSrc":"11642:12:125","nodeType":"YulIdentifier","src":"11642:12:125"},"nativeSrc":"11642:25:125","nodeType":"YulFunctionCall","src":"11642:25:125"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"11620:18:125","nodeType":"YulTypedName","src":"11620:18:125","type":""}]},{"body":{"nativeSrc":"11756:16:125","nodeType":"YulBlock","src":"11756:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11765:1:125","nodeType":"YulLiteral","src":"11765:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11768:1:125","nodeType":"YulLiteral","src":"11768:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11758:6:125","nodeType":"YulIdentifier","src":"11758:6:125"},"nativeSrc":"11758:12:125","nodeType":"YulFunctionCall","src":"11758:12:125"},"nativeSrc":"11758:12:125","nodeType":"YulExpressionStatement","src":"11758:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"11690:18:125","nodeType":"YulIdentifier","src":"11690:18:125"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"11718:12:125","nodeType":"YulIdentifier","src":"11718:12:125"},"nativeSrc":"11718:14:125","nodeType":"YulFunctionCall","src":"11718:14:125"},{"name":"base_ref","nativeSrc":"11734:8:125","nodeType":"YulIdentifier","src":"11734:8:125"}],"functionName":{"name":"sub","nativeSrc":"11714:3:125","nodeType":"YulIdentifier","src":"11714:3:125"},"nativeSrc":"11714:29:125","nodeType":"YulFunctionCall","src":"11714:29:125"},{"arguments":[{"kind":"number","nativeSrc":"11749:2:125","nodeType":"YulLiteral","src":"11749:2:125","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"11745:3:125","nodeType":"YulIdentifier","src":"11745:3:125"},"nativeSrc":"11745:7:125","nodeType":"YulFunctionCall","src":"11745:7:125"}],"functionName":{"name":"add","nativeSrc":"11710:3:125","nodeType":"YulIdentifier","src":"11710:3:125"},"nativeSrc":"11710:43:125","nodeType":"YulFunctionCall","src":"11710:43:125"}],"functionName":{"name":"slt","nativeSrc":"11686:3:125","nodeType":"YulIdentifier","src":"11686:3:125"},"nativeSrc":"11686:68:125","nodeType":"YulFunctionCall","src":"11686:68:125"}],"functionName":{"name":"iszero","nativeSrc":"11679:6:125","nodeType":"YulIdentifier","src":"11679:6:125"},"nativeSrc":"11679:76:125","nodeType":"YulFunctionCall","src":"11679:76:125"},"nativeSrc":"11676:96:125","nodeType":"YulIf","src":"11676:96:125"},{"nativeSrc":"11781:47:125","nodeType":"YulVariableDeclaration","src":"11781:47:125","value":{"arguments":[{"name":"base_ref","nativeSrc":"11799:8:125","nodeType":"YulIdentifier","src":"11799:8:125"},{"name":"rel_offset_of_tail","nativeSrc":"11809:18:125","nodeType":"YulIdentifier","src":"11809:18:125"}],"functionName":{"name":"add","nativeSrc":"11795:3:125","nodeType":"YulIdentifier","src":"11795:3:125"},"nativeSrc":"11795:33:125","nodeType":"YulFunctionCall","src":"11795:33:125"},"variables":[{"name":"addr_1","nativeSrc":"11785:6:125","nodeType":"YulTypedName","src":"11785:6:125","type":""}]},{"nativeSrc":"11837:30:125","nodeType":"YulAssignment","src":"11837:30:125","value":{"arguments":[{"name":"addr_1","nativeSrc":"11860:6:125","nodeType":"YulIdentifier","src":"11860:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"11847:12:125","nodeType":"YulIdentifier","src":"11847:12:125"},"nativeSrc":"11847:20:125","nodeType":"YulFunctionCall","src":"11847:20:125"},"variableNames":[{"name":"length","nativeSrc":"11837:6:125","nodeType":"YulIdentifier","src":"11837:6:125"}]},{"body":{"nativeSrc":"11910:16:125","nodeType":"YulBlock","src":"11910:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11919:1:125","nodeType":"YulLiteral","src":"11919:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11922:1:125","nodeType":"YulLiteral","src":"11922:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11912:6:125","nodeType":"YulIdentifier","src":"11912:6:125"},"nativeSrc":"11912:12:125","nodeType":"YulFunctionCall","src":"11912:12:125"},"nativeSrc":"11912:12:125","nodeType":"YulExpressionStatement","src":"11912:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"11882:6:125","nodeType":"YulIdentifier","src":"11882:6:125"},{"kind":"number","nativeSrc":"11890:18:125","nodeType":"YulLiteral","src":"11890:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"11879:2:125","nodeType":"YulIdentifier","src":"11879:2:125"},"nativeSrc":"11879:30:125","nodeType":"YulFunctionCall","src":"11879:30:125"},"nativeSrc":"11876:50:125","nodeType":"YulIf","src":"11876:50:125"},{"nativeSrc":"11935:25:125","nodeType":"YulAssignment","src":"11935:25:125","value":{"arguments":[{"name":"addr_1","nativeSrc":"11947:6:125","nodeType":"YulIdentifier","src":"11947:6:125"},{"kind":"number","nativeSrc":"11955:4:125","nodeType":"YulLiteral","src":"11955:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"11943:3:125","nodeType":"YulIdentifier","src":"11943:3:125"},"nativeSrc":"11943:17:125","nodeType":"YulFunctionCall","src":"11943:17:125"},"variableNames":[{"name":"addr","nativeSrc":"11935:4:125","nodeType":"YulIdentifier","src":"11935:4:125"}]},{"body":{"nativeSrc":"12011:16:125","nodeType":"YulBlock","src":"12011:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12020:1:125","nodeType":"YulLiteral","src":"12020:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12023:1:125","nodeType":"YulLiteral","src":"12023:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12013:6:125","nodeType":"YulIdentifier","src":"12013:6:125"},"nativeSrc":"12013:12:125","nodeType":"YulFunctionCall","src":"12013:12:125"},"nativeSrc":"12013:12:125","nodeType":"YulExpressionStatement","src":"12013:12:125"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"11976:4:125","nodeType":"YulIdentifier","src":"11976:4:125"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"11986:12:125","nodeType":"YulIdentifier","src":"11986:12:125"},"nativeSrc":"11986:14:125","nodeType":"YulFunctionCall","src":"11986:14:125"},{"name":"length","nativeSrc":"12002:6:125","nodeType":"YulIdentifier","src":"12002:6:125"}],"functionName":{"name":"sub","nativeSrc":"11982:3:125","nodeType":"YulIdentifier","src":"11982:3:125"},"nativeSrc":"11982:27:125","nodeType":"YulFunctionCall","src":"11982:27:125"}],"functionName":{"name":"sgt","nativeSrc":"11972:3:125","nodeType":"YulIdentifier","src":"11972:3:125"},"nativeSrc":"11972:38:125","nodeType":"YulFunctionCall","src":"11972:38:125"},"nativeSrc":"11969:58:125","nodeType":"YulIf","src":"11969:58:125"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"11512:521:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"11563:8:125","nodeType":"YulTypedName","src":"11563:8:125","type":""},{"name":"ptr_to_tail","nativeSrc":"11573:11:125","nodeType":"YulTypedName","src":"11573:11:125","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"11589:4:125","nodeType":"YulTypedName","src":"11589:4:125","type":""},{"name":"length","nativeSrc":"11595:6:125","nodeType":"YulTypedName","src":"11595:6:125","type":""}],"src":"11512:521:125"},{"body":{"nativeSrc":"12146:101:125","nodeType":"YulBlock","src":"12146:101:125","statements":[{"nativeSrc":"12156:26:125","nodeType":"YulAssignment","src":"12156:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12168:9:125","nodeType":"YulIdentifier","src":"12168:9:125"},{"kind":"number","nativeSrc":"12179:2:125","nodeType":"YulLiteral","src":"12179:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12164:3:125","nodeType":"YulIdentifier","src":"12164:3:125"},"nativeSrc":"12164:18:125","nodeType":"YulFunctionCall","src":"12164:18:125"},"variableNames":[{"name":"tail","nativeSrc":"12156:4:125","nodeType":"YulIdentifier","src":"12156:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12198:9:125","nodeType":"YulIdentifier","src":"12198:9:125"},{"arguments":[{"name":"value0","nativeSrc":"12213:6:125","nodeType":"YulIdentifier","src":"12213:6:125"},{"kind":"number","nativeSrc":"12221:18:125","nodeType":"YulLiteral","src":"12221:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"12209:3:125","nodeType":"YulIdentifier","src":"12209:3:125"},"nativeSrc":"12209:31:125","nodeType":"YulFunctionCall","src":"12209:31:125"}],"functionName":{"name":"mstore","nativeSrc":"12191:6:125","nodeType":"YulIdentifier","src":"12191:6:125"},"nativeSrc":"12191:50:125","nodeType":"YulFunctionCall","src":"12191:50:125"},"nativeSrc":"12191:50:125","nodeType":"YulExpressionStatement","src":"12191:50:125"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"12038:209:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12115:9:125","nodeType":"YulTypedName","src":"12115:9:125","type":""},{"name":"value0","nativeSrc":"12126:6:125","nodeType":"YulTypedName","src":"12126:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12137:4:125","nodeType":"YulTypedName","src":"12137:4:125","type":""}],"src":"12038:209:125"},{"body":{"nativeSrc":"12409:328:125","nodeType":"YulBlock","src":"12409:328:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12426:9:125","nodeType":"YulIdentifier","src":"12426:9:125"},{"arguments":[{"name":"value0","nativeSrc":"12441:6:125","nodeType":"YulIdentifier","src":"12441:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12457:3:125","nodeType":"YulLiteral","src":"12457:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"12462:1:125","nodeType":"YulLiteral","src":"12462:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12453:3:125","nodeType":"YulIdentifier","src":"12453:3:125"},"nativeSrc":"12453:11:125","nodeType":"YulFunctionCall","src":"12453:11:125"},{"kind":"number","nativeSrc":"12466:1:125","nodeType":"YulLiteral","src":"12466:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12449:3:125","nodeType":"YulIdentifier","src":"12449:3:125"},"nativeSrc":"12449:19:125","nodeType":"YulFunctionCall","src":"12449:19:125"}],"functionName":{"name":"and","nativeSrc":"12437:3:125","nodeType":"YulIdentifier","src":"12437:3:125"},"nativeSrc":"12437:32:125","nodeType":"YulFunctionCall","src":"12437:32:125"}],"functionName":{"name":"mstore","nativeSrc":"12419:6:125","nodeType":"YulIdentifier","src":"12419:6:125"},"nativeSrc":"12419:51:125","nodeType":"YulFunctionCall","src":"12419:51:125"},"nativeSrc":"12419:51:125","nodeType":"YulExpressionStatement","src":"12419:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12490:9:125","nodeType":"YulIdentifier","src":"12490:9:125"},{"kind":"number","nativeSrc":"12501:2:125","nodeType":"YulLiteral","src":"12501:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12486:3:125","nodeType":"YulIdentifier","src":"12486:3:125"},"nativeSrc":"12486:18:125","nodeType":"YulFunctionCall","src":"12486:18:125"},{"kind":"number","nativeSrc":"12506:2:125","nodeType":"YulLiteral","src":"12506:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"12479:6:125","nodeType":"YulIdentifier","src":"12479:6:125"},"nativeSrc":"12479:30:125","nodeType":"YulFunctionCall","src":"12479:30:125"},"nativeSrc":"12479:30:125","nodeType":"YulExpressionStatement","src":"12479:30:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12529:9:125","nodeType":"YulIdentifier","src":"12529:9:125"},{"kind":"number","nativeSrc":"12540:2:125","nodeType":"YulLiteral","src":"12540:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12525:3:125","nodeType":"YulIdentifier","src":"12525:3:125"},"nativeSrc":"12525:18:125","nodeType":"YulFunctionCall","src":"12525:18:125"},{"name":"value2","nativeSrc":"12545:6:125","nodeType":"YulIdentifier","src":"12545:6:125"}],"functionName":{"name":"mstore","nativeSrc":"12518:6:125","nodeType":"YulIdentifier","src":"12518:6:125"},"nativeSrc":"12518:34:125","nodeType":"YulFunctionCall","src":"12518:34:125"},"nativeSrc":"12518:34:125","nodeType":"YulExpressionStatement","src":"12518:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12578:9:125","nodeType":"YulIdentifier","src":"12578:9:125"},{"kind":"number","nativeSrc":"12589:2:125","nodeType":"YulLiteral","src":"12589:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12574:3:125","nodeType":"YulIdentifier","src":"12574:3:125"},"nativeSrc":"12574:18:125","nodeType":"YulFunctionCall","src":"12574:18:125"},{"name":"value1","nativeSrc":"12594:6:125","nodeType":"YulIdentifier","src":"12594:6:125"},{"name":"value2","nativeSrc":"12602:6:125","nodeType":"YulIdentifier","src":"12602:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"12561:12:125","nodeType":"YulIdentifier","src":"12561:12:125"},"nativeSrc":"12561:48:125","nodeType":"YulFunctionCall","src":"12561:48:125"},"nativeSrc":"12561:48:125","nodeType":"YulExpressionStatement","src":"12561:48:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12633:9:125","nodeType":"YulIdentifier","src":"12633:9:125"},{"name":"value2","nativeSrc":"12644:6:125","nodeType":"YulIdentifier","src":"12644:6:125"}],"functionName":{"name":"add","nativeSrc":"12629:3:125","nodeType":"YulIdentifier","src":"12629:3:125"},"nativeSrc":"12629:22:125","nodeType":"YulFunctionCall","src":"12629:22:125"},{"kind":"number","nativeSrc":"12653:2:125","nodeType":"YulLiteral","src":"12653:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12625:3:125","nodeType":"YulIdentifier","src":"12625:3:125"},"nativeSrc":"12625:31:125","nodeType":"YulFunctionCall","src":"12625:31:125"},{"kind":"number","nativeSrc":"12658:1:125","nodeType":"YulLiteral","src":"12658:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"12618:6:125","nodeType":"YulIdentifier","src":"12618:6:125"},"nativeSrc":"12618:42:125","nodeType":"YulFunctionCall","src":"12618:42:125"},"nativeSrc":"12618:42:125","nodeType":"YulExpressionStatement","src":"12618:42:125"},{"nativeSrc":"12669:62:125","nodeType":"YulAssignment","src":"12669:62:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12685:9:125","nodeType":"YulIdentifier","src":"12685:9:125"},{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"12704:6:125","nodeType":"YulIdentifier","src":"12704:6:125"},{"kind":"number","nativeSrc":"12712:2:125","nodeType":"YulLiteral","src":"12712:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"12700:3:125","nodeType":"YulIdentifier","src":"12700:3:125"},"nativeSrc":"12700:15:125","nodeType":"YulFunctionCall","src":"12700:15:125"},{"arguments":[{"kind":"number","nativeSrc":"12721:2:125","nodeType":"YulLiteral","src":"12721:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"12717:3:125","nodeType":"YulIdentifier","src":"12717:3:125"},"nativeSrc":"12717:7:125","nodeType":"YulFunctionCall","src":"12717:7:125"}],"functionName":{"name":"and","nativeSrc":"12696:3:125","nodeType":"YulIdentifier","src":"12696:3:125"},"nativeSrc":"12696:29:125","nodeType":"YulFunctionCall","src":"12696:29:125"}],"functionName":{"name":"add","nativeSrc":"12681:3:125","nodeType":"YulIdentifier","src":"12681:3:125"},"nativeSrc":"12681:45:125","nodeType":"YulFunctionCall","src":"12681:45:125"},{"kind":"number","nativeSrc":"12728:2:125","nodeType":"YulLiteral","src":"12728:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12677:3:125","nodeType":"YulIdentifier","src":"12677:3:125"},"nativeSrc":"12677:54:125","nodeType":"YulFunctionCall","src":"12677:54:125"},"variableNames":[{"name":"tail","nativeSrc":"12669:4:125","nodeType":"YulIdentifier","src":"12669:4:125"}]}]},"name":"abi_encode_tuple_t_address_t_bytes_calldata_ptr__to_t_address_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"12252:485:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12362:9:125","nodeType":"YulTypedName","src":"12362:9:125","type":""},{"name":"value2","nativeSrc":"12373:6:125","nodeType":"YulTypedName","src":"12373:6:125","type":""},{"name":"value1","nativeSrc":"12381:6:125","nodeType":"YulTypedName","src":"12381:6:125","type":""},{"name":"value0","nativeSrc":"12389:6:125","nodeType":"YulTypedName","src":"12389:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12400:4:125","nodeType":"YulTypedName","src":"12400:4:125","type":""}],"src":"12252:485:125"},{"body":{"nativeSrc":"12801:77:125","nodeType":"YulBlock","src":"12801:77:125","statements":[{"nativeSrc":"12811:22:125","nodeType":"YulAssignment","src":"12811:22:125","value":{"arguments":[{"name":"offset","nativeSrc":"12826:6:125","nodeType":"YulIdentifier","src":"12826:6:125"}],"functionName":{"name":"mload","nativeSrc":"12820:5:125","nodeType":"YulIdentifier","src":"12820:5:125"},"nativeSrc":"12820:13:125","nodeType":"YulFunctionCall","src":"12820:13:125"},"variableNames":[{"name":"value","nativeSrc":"12811:5:125","nodeType":"YulIdentifier","src":"12811:5:125"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12866:5:125","nodeType":"YulIdentifier","src":"12866:5:125"}],"functionName":{"name":"validator_revert_uint40","nativeSrc":"12842:23:125","nodeType":"YulIdentifier","src":"12842:23:125"},"nativeSrc":"12842:30:125","nodeType":"YulFunctionCall","src":"12842:30:125"},"nativeSrc":"12842:30:125","nodeType":"YulExpressionStatement","src":"12842:30:125"}]},"name":"abi_decode_uint40_fromMemory","nativeSrc":"12742:136:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"12780:6:125","nodeType":"YulTypedName","src":"12780:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"12791:5:125","nodeType":"YulTypedName","src":"12791:5:125","type":""}],"src":"12742:136:125"},{"body":{"nativeSrc":"12961:1371:125","nodeType":"YulBlock","src":"12961:1371:125","statements":[{"body":{"nativeSrc":"13007:16:125","nodeType":"YulBlock","src":"13007:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13016:1:125","nodeType":"YulLiteral","src":"13016:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"13019:1:125","nodeType":"YulLiteral","src":"13019:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13009:6:125","nodeType":"YulIdentifier","src":"13009:6:125"},"nativeSrc":"13009:12:125","nodeType":"YulFunctionCall","src":"13009:12:125"},"nativeSrc":"13009:12:125","nodeType":"YulExpressionStatement","src":"13009:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"12982:3:125","nodeType":"YulIdentifier","src":"12982:3:125"},{"name":"headStart","nativeSrc":"12987:9:125","nodeType":"YulIdentifier","src":"12987:9:125"}],"functionName":{"name":"sub","nativeSrc":"12978:3:125","nodeType":"YulIdentifier","src":"12978:3:125"},"nativeSrc":"12978:19:125","nodeType":"YulFunctionCall","src":"12978:19:125"},{"kind":"number","nativeSrc":"12999:6:125","nodeType":"YulLiteral","src":"12999:6:125","type":"","value":"0x0180"}],"functionName":{"name":"slt","nativeSrc":"12974:3:125","nodeType":"YulIdentifier","src":"12974:3:125"},"nativeSrc":"12974:32:125","nodeType":"YulFunctionCall","src":"12974:32:125"},"nativeSrc":"12971:52:125","nodeType":"YulIf","src":"12971:52:125"},{"nativeSrc":"13032:31:125","nodeType":"YulAssignment","src":"13032:31:125","value":{"arguments":[],"functionName":{"name":"allocate_memory_2373","nativeSrc":"13041:20:125","nodeType":"YulIdentifier","src":"13041:20:125"},"nativeSrc":"13041:22:125","nodeType":"YulFunctionCall","src":"13041:22:125"},"variableNames":[{"name":"value","nativeSrc":"13032:5:125","nodeType":"YulIdentifier","src":"13032:5:125"}]},{"nativeSrc":"13072:16:125","nodeType":"YulVariableDeclaration","src":"13072:16:125","value":{"kind":"number","nativeSrc":"13087:1:125","nodeType":"YulLiteral","src":"13087:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"13076:7:125","nodeType":"YulTypedName","src":"13076:7:125","type":""}]},{"nativeSrc":"13097:27:125","nodeType":"YulAssignment","src":"13097:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"13114:9:125","nodeType":"YulIdentifier","src":"13114:9:125"}],"functionName":{"name":"mload","nativeSrc":"13108:5:125","nodeType":"YulIdentifier","src":"13108:5:125"},"nativeSrc":"13108:16:125","nodeType":"YulFunctionCall","src":"13108:16:125"},"variableNames":[{"name":"value_1","nativeSrc":"13097:7:125","nodeType":"YulIdentifier","src":"13097:7:125"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13140:5:125","nodeType":"YulIdentifier","src":"13140:5:125"},{"name":"value_1","nativeSrc":"13147:7:125","nodeType":"YulIdentifier","src":"13147:7:125"}],"functionName":{"name":"mstore","nativeSrc":"13133:6:125","nodeType":"YulIdentifier","src":"13133:6:125"},"nativeSrc":"13133:22:125","nodeType":"YulFunctionCall","src":"13133:22:125"},"nativeSrc":"13133:22:125","nodeType":"YulExpressionStatement","src":"13133:22:125"},{"nativeSrc":"13164:16:125","nodeType":"YulVariableDeclaration","src":"13164:16:125","value":{"kind":"number","nativeSrc":"13179:1:125","nodeType":"YulLiteral","src":"13179:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"13168:7:125","nodeType":"YulTypedName","src":"13168:7:125","type":""}]},{"nativeSrc":"13189:36:125","nodeType":"YulAssignment","src":"13189:36:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13210:9:125","nodeType":"YulIdentifier","src":"13210:9:125"},{"kind":"number","nativeSrc":"13221:2:125","nodeType":"YulLiteral","src":"13221:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13206:3:125","nodeType":"YulIdentifier","src":"13206:3:125"},"nativeSrc":"13206:18:125","nodeType":"YulFunctionCall","src":"13206:18:125"}],"functionName":{"name":"mload","nativeSrc":"13200:5:125","nodeType":"YulIdentifier","src":"13200:5:125"},"nativeSrc":"13200:25:125","nodeType":"YulFunctionCall","src":"13200:25:125"},"variableNames":[{"name":"value_2","nativeSrc":"13189:7:125","nodeType":"YulIdentifier","src":"13189:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"13245:5:125","nodeType":"YulIdentifier","src":"13245:5:125"},{"kind":"number","nativeSrc":"13252:2:125","nodeType":"YulLiteral","src":"13252:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13241:3:125","nodeType":"YulIdentifier","src":"13241:3:125"},"nativeSrc":"13241:14:125","nodeType":"YulFunctionCall","src":"13241:14:125"},{"name":"value_2","nativeSrc":"13257:7:125","nodeType":"YulIdentifier","src":"13257:7:125"}],"functionName":{"name":"mstore","nativeSrc":"13234:6:125","nodeType":"YulIdentifier","src":"13234:6:125"},"nativeSrc":"13234:31:125","nodeType":"YulFunctionCall","src":"13234:31:125"},"nativeSrc":"13234:31:125","nodeType":"YulExpressionStatement","src":"13234:31:125"},{"nativeSrc":"13274:16:125","nodeType":"YulVariableDeclaration","src":"13274:16:125","value":{"kind":"number","nativeSrc":"13289:1:125","nodeType":"YulLiteral","src":"13289:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"13278:7:125","nodeType":"YulTypedName","src":"13278:7:125","type":""}]},{"nativeSrc":"13299:36:125","nodeType":"YulAssignment","src":"13299:36:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13320:9:125","nodeType":"YulIdentifier","src":"13320:9:125"},{"kind":"number","nativeSrc":"13331:2:125","nodeType":"YulLiteral","src":"13331:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13316:3:125","nodeType":"YulIdentifier","src":"13316:3:125"},"nativeSrc":"13316:18:125","nodeType":"YulFunctionCall","src":"13316:18:125"}],"functionName":{"name":"mload","nativeSrc":"13310:5:125","nodeType":"YulIdentifier","src":"13310:5:125"},"nativeSrc":"13310:25:125","nodeType":"YulFunctionCall","src":"13310:25:125"},"variableNames":[{"name":"value_3","nativeSrc":"13299:7:125","nodeType":"YulIdentifier","src":"13299:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"13355:5:125","nodeType":"YulIdentifier","src":"13355:5:125"},{"kind":"number","nativeSrc":"13362:2:125","nodeType":"YulLiteral","src":"13362:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13351:3:125","nodeType":"YulIdentifier","src":"13351:3:125"},"nativeSrc":"13351:14:125","nodeType":"YulFunctionCall","src":"13351:14:125"},{"name":"value_3","nativeSrc":"13367:7:125","nodeType":"YulIdentifier","src":"13367:7:125"}],"functionName":{"name":"mstore","nativeSrc":"13344:6:125","nodeType":"YulIdentifier","src":"13344:6:125"},"nativeSrc":"13344:31:125","nodeType":"YulFunctionCall","src":"13344:31:125"},"nativeSrc":"13344:31:125","nodeType":"YulExpressionStatement","src":"13344:31:125"},{"nativeSrc":"13384:16:125","nodeType":"YulVariableDeclaration","src":"13384:16:125","value":{"kind":"number","nativeSrc":"13399:1:125","nodeType":"YulLiteral","src":"13399:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"13388:7:125","nodeType":"YulTypedName","src":"13388:7:125","type":""}]},{"nativeSrc":"13409:36:125","nodeType":"YulAssignment","src":"13409:36:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13430:9:125","nodeType":"YulIdentifier","src":"13430:9:125"},{"kind":"number","nativeSrc":"13441:2:125","nodeType":"YulLiteral","src":"13441:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13426:3:125","nodeType":"YulIdentifier","src":"13426:3:125"},"nativeSrc":"13426:18:125","nodeType":"YulFunctionCall","src":"13426:18:125"}],"functionName":{"name":"mload","nativeSrc":"13420:5:125","nodeType":"YulIdentifier","src":"13420:5:125"},"nativeSrc":"13420:25:125","nodeType":"YulFunctionCall","src":"13420:25:125"},"variableNames":[{"name":"value_4","nativeSrc":"13409:7:125","nodeType":"YulIdentifier","src":"13409:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"13465:5:125","nodeType":"YulIdentifier","src":"13465:5:125"},{"kind":"number","nativeSrc":"13472:2:125","nodeType":"YulLiteral","src":"13472:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13461:3:125","nodeType":"YulIdentifier","src":"13461:3:125"},"nativeSrc":"13461:14:125","nodeType":"YulFunctionCall","src":"13461:14:125"},{"name":"value_4","nativeSrc":"13477:7:125","nodeType":"YulIdentifier","src":"13477:7:125"}],"functionName":{"name":"mstore","nativeSrc":"13454:6:125","nodeType":"YulIdentifier","src":"13454:6:125"},"nativeSrc":"13454:31:125","nodeType":"YulFunctionCall","src":"13454:31:125"},"nativeSrc":"13454:31:125","nodeType":"YulExpressionStatement","src":"13454:31:125"},{"nativeSrc":"13494:16:125","nodeType":"YulVariableDeclaration","src":"13494:16:125","value":{"kind":"number","nativeSrc":"13509:1:125","nodeType":"YulLiteral","src":"13509:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"13498:7:125","nodeType":"YulTypedName","src":"13498:7:125","type":""}]},{"nativeSrc":"13519:37:125","nodeType":"YulAssignment","src":"13519:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13540:9:125","nodeType":"YulIdentifier","src":"13540:9:125"},{"kind":"number","nativeSrc":"13551:3:125","nodeType":"YulLiteral","src":"13551:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"13536:3:125","nodeType":"YulIdentifier","src":"13536:3:125"},"nativeSrc":"13536:19:125","nodeType":"YulFunctionCall","src":"13536:19:125"}],"functionName":{"name":"mload","nativeSrc":"13530:5:125","nodeType":"YulIdentifier","src":"13530:5:125"},"nativeSrc":"13530:26:125","nodeType":"YulFunctionCall","src":"13530:26:125"},"variableNames":[{"name":"value_5","nativeSrc":"13519:7:125","nodeType":"YulIdentifier","src":"13519:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"13576:5:125","nodeType":"YulIdentifier","src":"13576:5:125"},{"kind":"number","nativeSrc":"13583:3:125","nodeType":"YulLiteral","src":"13583:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"13572:3:125","nodeType":"YulIdentifier","src":"13572:3:125"},"nativeSrc":"13572:15:125","nodeType":"YulFunctionCall","src":"13572:15:125"},{"name":"value_5","nativeSrc":"13589:7:125","nodeType":"YulIdentifier","src":"13589:7:125"}],"functionName":{"name":"mstore","nativeSrc":"13565:6:125","nodeType":"YulIdentifier","src":"13565:6:125"},"nativeSrc":"13565:32:125","nodeType":"YulFunctionCall","src":"13565:32:125"},"nativeSrc":"13565:32:125","nodeType":"YulExpressionStatement","src":"13565:32:125"},{"nativeSrc":"13606:16:125","nodeType":"YulVariableDeclaration","src":"13606:16:125","value":{"kind":"number","nativeSrc":"13621:1:125","nodeType":"YulLiteral","src":"13621:1:125","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"13610:7:125","nodeType":"YulTypedName","src":"13610:7:125","type":""}]},{"nativeSrc":"13631:37:125","nodeType":"YulAssignment","src":"13631:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13652:9:125","nodeType":"YulIdentifier","src":"13652:9:125"},{"kind":"number","nativeSrc":"13663:3:125","nodeType":"YulLiteral","src":"13663:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"13648:3:125","nodeType":"YulIdentifier","src":"13648:3:125"},"nativeSrc":"13648:19:125","nodeType":"YulFunctionCall","src":"13648:19:125"}],"functionName":{"name":"mload","nativeSrc":"13642:5:125","nodeType":"YulIdentifier","src":"13642:5:125"},"nativeSrc":"13642:26:125","nodeType":"YulFunctionCall","src":"13642:26:125"},"variableNames":[{"name":"value_6","nativeSrc":"13631:7:125","nodeType":"YulIdentifier","src":"13631:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"13688:5:125","nodeType":"YulIdentifier","src":"13688:5:125"},{"kind":"number","nativeSrc":"13695:3:125","nodeType":"YulLiteral","src":"13695:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"13684:3:125","nodeType":"YulIdentifier","src":"13684:3:125"},"nativeSrc":"13684:15:125","nodeType":"YulFunctionCall","src":"13684:15:125"},{"name":"value_6","nativeSrc":"13701:7:125","nodeType":"YulIdentifier","src":"13701:7:125"}],"functionName":{"name":"mstore","nativeSrc":"13677:6:125","nodeType":"YulIdentifier","src":"13677:6:125"},"nativeSrc":"13677:32:125","nodeType":"YulFunctionCall","src":"13677:32:125"},"nativeSrc":"13677:32:125","nodeType":"YulExpressionStatement","src":"13677:32:125"},{"nativeSrc":"13718:16:125","nodeType":"YulVariableDeclaration","src":"13718:16:125","value":{"kind":"number","nativeSrc":"13733:1:125","nodeType":"YulLiteral","src":"13733:1:125","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"13722:7:125","nodeType":"YulTypedName","src":"13722:7:125","type":""}]},{"nativeSrc":"13743:37:125","nodeType":"YulAssignment","src":"13743:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13764:9:125","nodeType":"YulIdentifier","src":"13764:9:125"},{"kind":"number","nativeSrc":"13775:3:125","nodeType":"YulLiteral","src":"13775:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"13760:3:125","nodeType":"YulIdentifier","src":"13760:3:125"},"nativeSrc":"13760:19:125","nodeType":"YulFunctionCall","src":"13760:19:125"}],"functionName":{"name":"mload","nativeSrc":"13754:5:125","nodeType":"YulIdentifier","src":"13754:5:125"},"nativeSrc":"13754:26:125","nodeType":"YulFunctionCall","src":"13754:26:125"},"variableNames":[{"name":"value_7","nativeSrc":"13743:7:125","nodeType":"YulIdentifier","src":"13743:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"13800:5:125","nodeType":"YulIdentifier","src":"13800:5:125"},{"kind":"number","nativeSrc":"13807:3:125","nodeType":"YulLiteral","src":"13807:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"13796:3:125","nodeType":"YulIdentifier","src":"13796:3:125"},"nativeSrc":"13796:15:125","nodeType":"YulFunctionCall","src":"13796:15:125"},{"name":"value_7","nativeSrc":"13813:7:125","nodeType":"YulIdentifier","src":"13813:7:125"}],"functionName":{"name":"mstore","nativeSrc":"13789:6:125","nodeType":"YulIdentifier","src":"13789:6:125"},"nativeSrc":"13789:32:125","nodeType":"YulFunctionCall","src":"13789:32:125"},"nativeSrc":"13789:32:125","nodeType":"YulExpressionStatement","src":"13789:32:125"},{"nativeSrc":"13830:16:125","nodeType":"YulVariableDeclaration","src":"13830:16:125","value":{"kind":"number","nativeSrc":"13845:1:125","nodeType":"YulLiteral","src":"13845:1:125","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"13834:7:125","nodeType":"YulTypedName","src":"13834:7:125","type":""}]},{"nativeSrc":"13855:37:125","nodeType":"YulAssignment","src":"13855:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13876:9:125","nodeType":"YulIdentifier","src":"13876:9:125"},{"kind":"number","nativeSrc":"13887:3:125","nodeType":"YulLiteral","src":"13887:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"13872:3:125","nodeType":"YulIdentifier","src":"13872:3:125"},"nativeSrc":"13872:19:125","nodeType":"YulFunctionCall","src":"13872:19:125"}],"functionName":{"name":"mload","nativeSrc":"13866:5:125","nodeType":"YulIdentifier","src":"13866:5:125"},"nativeSrc":"13866:26:125","nodeType":"YulFunctionCall","src":"13866:26:125"},"variableNames":[{"name":"value_8","nativeSrc":"13855:7:125","nodeType":"YulIdentifier","src":"13855:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"13912:5:125","nodeType":"YulIdentifier","src":"13912:5:125"},{"kind":"number","nativeSrc":"13919:3:125","nodeType":"YulLiteral","src":"13919:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"13908:3:125","nodeType":"YulIdentifier","src":"13908:3:125"},"nativeSrc":"13908:15:125","nodeType":"YulFunctionCall","src":"13908:15:125"},{"name":"value_8","nativeSrc":"13925:7:125","nodeType":"YulIdentifier","src":"13925:7:125"}],"functionName":{"name":"mstore","nativeSrc":"13901:6:125","nodeType":"YulIdentifier","src":"13901:6:125"},"nativeSrc":"13901:32:125","nodeType":"YulFunctionCall","src":"13901:32:125"},"nativeSrc":"13901:32:125","nodeType":"YulExpressionStatement","src":"13901:32:125"},{"nativeSrc":"13942:16:125","nodeType":"YulVariableDeclaration","src":"13942:16:125","value":{"kind":"number","nativeSrc":"13957:1:125","nodeType":"YulLiteral","src":"13957:1:125","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"13946:7:125","nodeType":"YulTypedName","src":"13946:7:125","type":""}]},{"nativeSrc":"13967:37:125","nodeType":"YulAssignment","src":"13967:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13988:9:125","nodeType":"YulIdentifier","src":"13988:9:125"},{"kind":"number","nativeSrc":"13999:3:125","nodeType":"YulLiteral","src":"13999:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"13984:3:125","nodeType":"YulIdentifier","src":"13984:3:125"},"nativeSrc":"13984:19:125","nodeType":"YulFunctionCall","src":"13984:19:125"}],"functionName":{"name":"mload","nativeSrc":"13978:5:125","nodeType":"YulIdentifier","src":"13978:5:125"},"nativeSrc":"13978:26:125","nodeType":"YulFunctionCall","src":"13978:26:125"},"variableNames":[{"name":"value_9","nativeSrc":"13967:7:125","nodeType":"YulIdentifier","src":"13967:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"14024:5:125","nodeType":"YulIdentifier","src":"14024:5:125"},{"kind":"number","nativeSrc":"14031:3:125","nodeType":"YulLiteral","src":"14031:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"14020:3:125","nodeType":"YulIdentifier","src":"14020:3:125"},"nativeSrc":"14020:15:125","nodeType":"YulFunctionCall","src":"14020:15:125"},{"name":"value_9","nativeSrc":"14037:7:125","nodeType":"YulIdentifier","src":"14037:7:125"}],"functionName":{"name":"mstore","nativeSrc":"14013:6:125","nodeType":"YulIdentifier","src":"14013:6:125"},"nativeSrc":"14013:32:125","nodeType":"YulFunctionCall","src":"14013:32:125"},"nativeSrc":"14013:32:125","nodeType":"YulExpressionStatement","src":"14013:32:125"},{"nativeSrc":"14054:17:125","nodeType":"YulVariableDeclaration","src":"14054:17:125","value":{"kind":"number","nativeSrc":"14070:1:125","nodeType":"YulLiteral","src":"14070:1:125","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"14058:8:125","nodeType":"YulTypedName","src":"14058:8:125","type":""}]},{"nativeSrc":"14080:38:125","nodeType":"YulAssignment","src":"14080:38:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14102:9:125","nodeType":"YulIdentifier","src":"14102:9:125"},{"kind":"number","nativeSrc":"14113:3:125","nodeType":"YulLiteral","src":"14113:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"14098:3:125","nodeType":"YulIdentifier","src":"14098:3:125"},"nativeSrc":"14098:19:125","nodeType":"YulFunctionCall","src":"14098:19:125"}],"functionName":{"name":"mload","nativeSrc":"14092:5:125","nodeType":"YulIdentifier","src":"14092:5:125"},"nativeSrc":"14092:26:125","nodeType":"YulFunctionCall","src":"14092:26:125"},"variableNames":[{"name":"value_10","nativeSrc":"14080:8:125","nodeType":"YulIdentifier","src":"14080:8:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"14138:5:125","nodeType":"YulIdentifier","src":"14138:5:125"},{"kind":"number","nativeSrc":"14145:3:125","nodeType":"YulLiteral","src":"14145:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"14134:3:125","nodeType":"YulIdentifier","src":"14134:3:125"},"nativeSrc":"14134:15:125","nodeType":"YulFunctionCall","src":"14134:15:125"},{"name":"value_10","nativeSrc":"14151:8:125","nodeType":"YulIdentifier","src":"14151:8:125"}],"functionName":{"name":"mstore","nativeSrc":"14127:6:125","nodeType":"YulIdentifier","src":"14127:6:125"},"nativeSrc":"14127:33:125","nodeType":"YulFunctionCall","src":"14127:33:125"},"nativeSrc":"14127:33:125","nodeType":"YulExpressionStatement","src":"14127:33:125"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"14180:5:125","nodeType":"YulIdentifier","src":"14180:5:125"},{"kind":"number","nativeSrc":"14187:3:125","nodeType":"YulLiteral","src":"14187:3:125","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"14176:3:125","nodeType":"YulIdentifier","src":"14176:3:125"},"nativeSrc":"14176:15:125","nodeType":"YulFunctionCall","src":"14176:15:125"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14226:9:125","nodeType":"YulIdentifier","src":"14226:9:125"},{"kind":"number","nativeSrc":"14237:3:125","nodeType":"YulLiteral","src":"14237:3:125","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"14222:3:125","nodeType":"YulIdentifier","src":"14222:3:125"},"nativeSrc":"14222:19:125","nodeType":"YulFunctionCall","src":"14222:19:125"}],"functionName":{"name":"abi_decode_uint40_fromMemory","nativeSrc":"14193:28:125","nodeType":"YulIdentifier","src":"14193:28:125"},"nativeSrc":"14193:49:125","nodeType":"YulFunctionCall","src":"14193:49:125"}],"functionName":{"name":"mstore","nativeSrc":"14169:6:125","nodeType":"YulIdentifier","src":"14169:6:125"},"nativeSrc":"14169:74:125","nodeType":"YulFunctionCall","src":"14169:74:125"},"nativeSrc":"14169:74:125","nodeType":"YulExpressionStatement","src":"14169:74:125"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"14263:5:125","nodeType":"YulIdentifier","src":"14263:5:125"},{"kind":"number","nativeSrc":"14270:3:125","nodeType":"YulLiteral","src":"14270:3:125","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"14259:3:125","nodeType":"YulIdentifier","src":"14259:3:125"},"nativeSrc":"14259:15:125","nodeType":"YulFunctionCall","src":"14259:15:125"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14309:9:125","nodeType":"YulIdentifier","src":"14309:9:125"},{"kind":"number","nativeSrc":"14320:3:125","nodeType":"YulLiteral","src":"14320:3:125","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"14305:3:125","nodeType":"YulIdentifier","src":"14305:3:125"},"nativeSrc":"14305:19:125","nodeType":"YulFunctionCall","src":"14305:19:125"}],"functionName":{"name":"abi_decode_uint40_fromMemory","nativeSrc":"14276:28:125","nodeType":"YulIdentifier","src":"14276:28:125"},"nativeSrc":"14276:49:125","nodeType":"YulFunctionCall","src":"14276:49:125"}],"functionName":{"name":"mstore","nativeSrc":"14252:6:125","nodeType":"YulIdentifier","src":"14252:6:125"},"nativeSrc":"14252:74:125","nodeType":"YulFunctionCall","src":"14252:74:125"},"nativeSrc":"14252:74:125","nodeType":"YulExpressionStatement","src":"14252:74:125"}]},"name":"abi_decode_struct_PolicyData_fromMemory","nativeSrc":"12883:1449:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12932:9:125","nodeType":"YulTypedName","src":"12932:9:125","type":""},{"name":"end","nativeSrc":"12943:3:125","nodeType":"YulTypedName","src":"12943:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"12951:5:125","nodeType":"YulTypedName","src":"12951:5:125","type":""}],"src":"12883:1449:125"},{"body":{"nativeSrc":"14396:124:125","nodeType":"YulBlock","src":"14396:124:125","statements":[{"nativeSrc":"14406:22:125","nodeType":"YulAssignment","src":"14406:22:125","value":{"arguments":[{"name":"offset","nativeSrc":"14421:6:125","nodeType":"YulIdentifier","src":"14421:6:125"}],"functionName":{"name":"mload","nativeSrc":"14415:5:125","nodeType":"YulIdentifier","src":"14415:5:125"},"nativeSrc":"14415:13:125","nodeType":"YulFunctionCall","src":"14415:13:125"},"variableNames":[{"name":"value","nativeSrc":"14406:5:125","nodeType":"YulIdentifier","src":"14406:5:125"}]},{"body":{"nativeSrc":"14498:16:125","nodeType":"YulBlock","src":"14498:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14507:1:125","nodeType":"YulLiteral","src":"14507:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"14510:1:125","nodeType":"YulLiteral","src":"14510:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14500:6:125","nodeType":"YulIdentifier","src":"14500:6:125"},"nativeSrc":"14500:12:125","nodeType":"YulFunctionCall","src":"14500:12:125"},"nativeSrc":"14500:12:125","nodeType":"YulExpressionStatement","src":"14500:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"14450:5:125","nodeType":"YulIdentifier","src":"14450:5:125"},{"arguments":[{"name":"value","nativeSrc":"14461:5:125","nodeType":"YulIdentifier","src":"14461:5:125"},{"kind":"number","nativeSrc":"14468:26:125","nodeType":"YulLiteral","src":"14468:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"14457:3:125","nodeType":"YulIdentifier","src":"14457:3:125"},"nativeSrc":"14457:38:125","nodeType":"YulFunctionCall","src":"14457:38:125"}],"functionName":{"name":"eq","nativeSrc":"14447:2:125","nodeType":"YulIdentifier","src":"14447:2:125"},"nativeSrc":"14447:49:125","nodeType":"YulFunctionCall","src":"14447:49:125"}],"functionName":{"name":"iszero","nativeSrc":"14440:6:125","nodeType":"YulIdentifier","src":"14440:6:125"},"nativeSrc":"14440:57:125","nodeType":"YulFunctionCall","src":"14440:57:125"},"nativeSrc":"14437:77:125","nodeType":"YulIf","src":"14437:77:125"}]},"name":"abi_decode_uint96_fromMemory","nativeSrc":"14337:183:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"14375:6:125","nodeType":"YulTypedName","src":"14375:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"14386:5:125","nodeType":"YulTypedName","src":"14386:5:125","type":""}],"src":"14337:183:125"},{"body":{"nativeSrc":"14599:864:125","nodeType":"YulBlock","src":"14599:864:125","statements":[{"body":{"nativeSrc":"14643:16:125","nodeType":"YulBlock","src":"14643:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14652:1:125","nodeType":"YulLiteral","src":"14652:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"14655:1:125","nodeType":"YulLiteral","src":"14655:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14645:6:125","nodeType":"YulIdentifier","src":"14645:6:125"},"nativeSrc":"14645:12:125","nodeType":"YulFunctionCall","src":"14645:12:125"},"nativeSrc":"14645:12:125","nodeType":"YulExpressionStatement","src":"14645:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"14620:3:125","nodeType":"YulIdentifier","src":"14620:3:125"},{"name":"headStart","nativeSrc":"14625:9:125","nodeType":"YulIdentifier","src":"14625:9:125"}],"functionName":{"name":"sub","nativeSrc":"14616:3:125","nodeType":"YulIdentifier","src":"14616:3:125"},"nativeSrc":"14616:19:125","nodeType":"YulFunctionCall","src":"14616:19:125"},{"kind":"number","nativeSrc":"14637:4:125","nodeType":"YulLiteral","src":"14637:4:125","type":"","value":"0xe0"}],"functionName":{"name":"slt","nativeSrc":"14612:3:125","nodeType":"YulIdentifier","src":"14612:3:125"},"nativeSrc":"14612:30:125","nodeType":"YulFunctionCall","src":"14612:30:125"},"nativeSrc":"14609:50:125","nodeType":"YulIf","src":"14609:50:125"},{"nativeSrc":"14668:31:125","nodeType":"YulAssignment","src":"14668:31:125","value":{"arguments":[],"functionName":{"name":"allocate_memory_2372","nativeSrc":"14677:20:125","nodeType":"YulIdentifier","src":"14677:20:125"},"nativeSrc":"14677:22:125","nodeType":"YulFunctionCall","src":"14677:22:125"},"variableNames":[{"name":"value","nativeSrc":"14668:5:125","nodeType":"YulIdentifier","src":"14668:5:125"}]},{"nativeSrc":"14708:16:125","nodeType":"YulVariableDeclaration","src":"14708:16:125","value":{"kind":"number","nativeSrc":"14723:1:125","nodeType":"YulLiteral","src":"14723:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"14712:7:125","nodeType":"YulTypedName","src":"14712:7:125","type":""}]},{"nativeSrc":"14733:27:125","nodeType":"YulAssignment","src":"14733:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14750:9:125","nodeType":"YulIdentifier","src":"14750:9:125"}],"functionName":{"name":"mload","nativeSrc":"14744:5:125","nodeType":"YulIdentifier","src":"14744:5:125"},"nativeSrc":"14744:16:125","nodeType":"YulFunctionCall","src":"14744:16:125"},"variableNames":[{"name":"value_1","nativeSrc":"14733:7:125","nodeType":"YulIdentifier","src":"14733:7:125"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"14776:5:125","nodeType":"YulIdentifier","src":"14776:5:125"},{"name":"value_1","nativeSrc":"14783:7:125","nodeType":"YulIdentifier","src":"14783:7:125"}],"functionName":{"name":"mstore","nativeSrc":"14769:6:125","nodeType":"YulIdentifier","src":"14769:6:125"},"nativeSrc":"14769:22:125","nodeType":"YulFunctionCall","src":"14769:22:125"},"nativeSrc":"14769:22:125","nodeType":"YulExpressionStatement","src":"14769:22:125"},{"nativeSrc":"14800:16:125","nodeType":"YulVariableDeclaration","src":"14800:16:125","value":{"kind":"number","nativeSrc":"14815:1:125","nodeType":"YulLiteral","src":"14815:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"14804:7:125","nodeType":"YulTypedName","src":"14804:7:125","type":""}]},{"nativeSrc":"14825:36:125","nodeType":"YulAssignment","src":"14825:36:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14846:9:125","nodeType":"YulIdentifier","src":"14846:9:125"},{"kind":"number","nativeSrc":"14857:2:125","nodeType":"YulLiteral","src":"14857:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14842:3:125","nodeType":"YulIdentifier","src":"14842:3:125"},"nativeSrc":"14842:18:125","nodeType":"YulFunctionCall","src":"14842:18:125"}],"functionName":{"name":"mload","nativeSrc":"14836:5:125","nodeType":"YulIdentifier","src":"14836:5:125"},"nativeSrc":"14836:25:125","nodeType":"YulFunctionCall","src":"14836:25:125"},"variableNames":[{"name":"value_2","nativeSrc":"14825:7:125","nodeType":"YulIdentifier","src":"14825:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"14881:5:125","nodeType":"YulIdentifier","src":"14881:5:125"},{"kind":"number","nativeSrc":"14888:2:125","nodeType":"YulLiteral","src":"14888:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14877:3:125","nodeType":"YulIdentifier","src":"14877:3:125"},"nativeSrc":"14877:14:125","nodeType":"YulFunctionCall","src":"14877:14:125"},{"name":"value_2","nativeSrc":"14893:7:125","nodeType":"YulIdentifier","src":"14893:7:125"}],"functionName":{"name":"mstore","nativeSrc":"14870:6:125","nodeType":"YulIdentifier","src":"14870:6:125"},"nativeSrc":"14870:31:125","nodeType":"YulFunctionCall","src":"14870:31:125"},"nativeSrc":"14870:31:125","nodeType":"YulExpressionStatement","src":"14870:31:125"},{"nativeSrc":"14910:16:125","nodeType":"YulVariableDeclaration","src":"14910:16:125","value":{"kind":"number","nativeSrc":"14925:1:125","nodeType":"YulLiteral","src":"14925:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"14914:7:125","nodeType":"YulTypedName","src":"14914:7:125","type":""}]},{"nativeSrc":"14935:36:125","nodeType":"YulAssignment","src":"14935:36:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14956:9:125","nodeType":"YulIdentifier","src":"14956:9:125"},{"kind":"number","nativeSrc":"14967:2:125","nodeType":"YulLiteral","src":"14967:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14952:3:125","nodeType":"YulIdentifier","src":"14952:3:125"},"nativeSrc":"14952:18:125","nodeType":"YulFunctionCall","src":"14952:18:125"}],"functionName":{"name":"mload","nativeSrc":"14946:5:125","nodeType":"YulIdentifier","src":"14946:5:125"},"nativeSrc":"14946:25:125","nodeType":"YulFunctionCall","src":"14946:25:125"},"variableNames":[{"name":"value_3","nativeSrc":"14935:7:125","nodeType":"YulIdentifier","src":"14935:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"14991:5:125","nodeType":"YulIdentifier","src":"14991:5:125"},{"kind":"number","nativeSrc":"14998:2:125","nodeType":"YulLiteral","src":"14998:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14987:3:125","nodeType":"YulIdentifier","src":"14987:3:125"},"nativeSrc":"14987:14:125","nodeType":"YulFunctionCall","src":"14987:14:125"},{"name":"value_3","nativeSrc":"15003:7:125","nodeType":"YulIdentifier","src":"15003:7:125"}],"functionName":{"name":"mstore","nativeSrc":"14980:6:125","nodeType":"YulIdentifier","src":"14980:6:125"},"nativeSrc":"14980:31:125","nodeType":"YulFunctionCall","src":"14980:31:125"},"nativeSrc":"14980:31:125","nodeType":"YulExpressionStatement","src":"14980:31:125"},{"nativeSrc":"15020:16:125","nodeType":"YulVariableDeclaration","src":"15020:16:125","value":{"kind":"number","nativeSrc":"15035:1:125","nodeType":"YulLiteral","src":"15035:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"15024:7:125","nodeType":"YulTypedName","src":"15024:7:125","type":""}]},{"nativeSrc":"15045:36:125","nodeType":"YulAssignment","src":"15045:36:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15066:9:125","nodeType":"YulIdentifier","src":"15066:9:125"},{"kind":"number","nativeSrc":"15077:2:125","nodeType":"YulLiteral","src":"15077:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15062:3:125","nodeType":"YulIdentifier","src":"15062:3:125"},"nativeSrc":"15062:18:125","nodeType":"YulFunctionCall","src":"15062:18:125"}],"functionName":{"name":"mload","nativeSrc":"15056:5:125","nodeType":"YulIdentifier","src":"15056:5:125"},"nativeSrc":"15056:25:125","nodeType":"YulFunctionCall","src":"15056:25:125"},"variableNames":[{"name":"value_4","nativeSrc":"15045:7:125","nodeType":"YulIdentifier","src":"15045:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"15101:5:125","nodeType":"YulIdentifier","src":"15101:5:125"},{"kind":"number","nativeSrc":"15108:2:125","nodeType":"YulLiteral","src":"15108:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15097:3:125","nodeType":"YulIdentifier","src":"15097:3:125"},"nativeSrc":"15097:14:125","nodeType":"YulFunctionCall","src":"15097:14:125"},{"name":"value_4","nativeSrc":"15113:7:125","nodeType":"YulIdentifier","src":"15113:7:125"}],"functionName":{"name":"mstore","nativeSrc":"15090:6:125","nodeType":"YulIdentifier","src":"15090:6:125"},"nativeSrc":"15090:31:125","nodeType":"YulFunctionCall","src":"15090:31:125"},"nativeSrc":"15090:31:125","nodeType":"YulExpressionStatement","src":"15090:31:125"},{"nativeSrc":"15130:16:125","nodeType":"YulVariableDeclaration","src":"15130:16:125","value":{"kind":"number","nativeSrc":"15145:1:125","nodeType":"YulLiteral","src":"15145:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"15134:7:125","nodeType":"YulTypedName","src":"15134:7:125","type":""}]},{"nativeSrc":"15155:37:125","nodeType":"YulAssignment","src":"15155:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15176:9:125","nodeType":"YulIdentifier","src":"15176:9:125"},{"kind":"number","nativeSrc":"15187:3:125","nodeType":"YulLiteral","src":"15187:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"15172:3:125","nodeType":"YulIdentifier","src":"15172:3:125"},"nativeSrc":"15172:19:125","nodeType":"YulFunctionCall","src":"15172:19:125"}],"functionName":{"name":"mload","nativeSrc":"15166:5:125","nodeType":"YulIdentifier","src":"15166:5:125"},"nativeSrc":"15166:26:125","nodeType":"YulFunctionCall","src":"15166:26:125"},"variableNames":[{"name":"value_5","nativeSrc":"15155:7:125","nodeType":"YulIdentifier","src":"15155:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"15212:5:125","nodeType":"YulIdentifier","src":"15212:5:125"},{"kind":"number","nativeSrc":"15219:3:125","nodeType":"YulLiteral","src":"15219:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"15208:3:125","nodeType":"YulIdentifier","src":"15208:3:125"},"nativeSrc":"15208:15:125","nodeType":"YulFunctionCall","src":"15208:15:125"},{"name":"value_5","nativeSrc":"15225:7:125","nodeType":"YulIdentifier","src":"15225:7:125"}],"functionName":{"name":"mstore","nativeSrc":"15201:6:125","nodeType":"YulIdentifier","src":"15201:6:125"},"nativeSrc":"15201:32:125","nodeType":"YulFunctionCall","src":"15201:32:125"},"nativeSrc":"15201:32:125","nodeType":"YulExpressionStatement","src":"15201:32:125"},{"nativeSrc":"15242:16:125","nodeType":"YulVariableDeclaration","src":"15242:16:125","value":{"kind":"number","nativeSrc":"15257:1:125","nodeType":"YulLiteral","src":"15257:1:125","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"15246:7:125","nodeType":"YulTypedName","src":"15246:7:125","type":""}]},{"nativeSrc":"15267:37:125","nodeType":"YulAssignment","src":"15267:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15288:9:125","nodeType":"YulIdentifier","src":"15288:9:125"},{"kind":"number","nativeSrc":"15299:3:125","nodeType":"YulLiteral","src":"15299:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"15284:3:125","nodeType":"YulIdentifier","src":"15284:3:125"},"nativeSrc":"15284:19:125","nodeType":"YulFunctionCall","src":"15284:19:125"}],"functionName":{"name":"mload","nativeSrc":"15278:5:125","nodeType":"YulIdentifier","src":"15278:5:125"},"nativeSrc":"15278:26:125","nodeType":"YulFunctionCall","src":"15278:26:125"},"variableNames":[{"name":"value_6","nativeSrc":"15267:7:125","nodeType":"YulIdentifier","src":"15267:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"15324:5:125","nodeType":"YulIdentifier","src":"15324:5:125"},{"kind":"number","nativeSrc":"15331:3:125","nodeType":"YulLiteral","src":"15331:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"15320:3:125","nodeType":"YulIdentifier","src":"15320:3:125"},"nativeSrc":"15320:15:125","nodeType":"YulFunctionCall","src":"15320:15:125"},{"name":"value_6","nativeSrc":"15337:7:125","nodeType":"YulIdentifier","src":"15337:7:125"}],"functionName":{"name":"mstore","nativeSrc":"15313:6:125","nodeType":"YulIdentifier","src":"15313:6:125"},"nativeSrc":"15313:32:125","nodeType":"YulFunctionCall","src":"15313:32:125"},"nativeSrc":"15313:32:125","nodeType":"YulExpressionStatement","src":"15313:32:125"},{"nativeSrc":"15354:16:125","nodeType":"YulVariableDeclaration","src":"15354:16:125","value":{"kind":"number","nativeSrc":"15369:1:125","nodeType":"YulLiteral","src":"15369:1:125","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"15358:7:125","nodeType":"YulTypedName","src":"15358:7:125","type":""}]},{"nativeSrc":"15379:37:125","nodeType":"YulAssignment","src":"15379:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15400:9:125","nodeType":"YulIdentifier","src":"15400:9:125"},{"kind":"number","nativeSrc":"15411:3:125","nodeType":"YulLiteral","src":"15411:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"15396:3:125","nodeType":"YulIdentifier","src":"15396:3:125"},"nativeSrc":"15396:19:125","nodeType":"YulFunctionCall","src":"15396:19:125"}],"functionName":{"name":"mload","nativeSrc":"15390:5:125","nodeType":"YulIdentifier","src":"15390:5:125"},"nativeSrc":"15390:26:125","nodeType":"YulFunctionCall","src":"15390:26:125"},"variableNames":[{"name":"value_7","nativeSrc":"15379:7:125","nodeType":"YulIdentifier","src":"15379:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"15436:5:125","nodeType":"YulIdentifier","src":"15436:5:125"},{"kind":"number","nativeSrc":"15443:3:125","nodeType":"YulLiteral","src":"15443:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"15432:3:125","nodeType":"YulIdentifier","src":"15432:3:125"},"nativeSrc":"15432:15:125","nodeType":"YulFunctionCall","src":"15432:15:125"},{"name":"value_7","nativeSrc":"15449:7:125","nodeType":"YulIdentifier","src":"15449:7:125"}],"functionName":{"name":"mstore","nativeSrc":"15425:6:125","nodeType":"YulIdentifier","src":"15425:6:125"},"nativeSrc":"15425:32:125","nodeType":"YulFunctionCall","src":"15425:32:125"},"nativeSrc":"15425:32:125","nodeType":"YulExpressionStatement","src":"15425:32:125"}]},"name":"abi_decode_struct_Params_fromMemory","nativeSrc":"14525:938:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14570:9:125","nodeType":"YulTypedName","src":"14570:9:125","type":""},{"name":"end","nativeSrc":"14581:3:125","nodeType":"YulTypedName","src":"14581:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"14589:5:125","nodeType":"YulTypedName","src":"14589:5:125","type":""}],"src":"14525:938:125"},{"body":{"nativeSrc":"15701:701:125","nodeType":"YulBlock","src":"15701:701:125","statements":[{"body":{"nativeSrc":"15748:16:125","nodeType":"YulBlock","src":"15748:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15757:1:125","nodeType":"YulLiteral","src":"15757:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"15760:1:125","nodeType":"YulLiteral","src":"15760:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15750:6:125","nodeType":"YulIdentifier","src":"15750:6:125"},"nativeSrc":"15750:12:125","nodeType":"YulFunctionCall","src":"15750:12:125"},"nativeSrc":"15750:12:125","nodeType":"YulExpressionStatement","src":"15750:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15722:7:125","nodeType":"YulIdentifier","src":"15722:7:125"},{"name":"headStart","nativeSrc":"15731:9:125","nodeType":"YulIdentifier","src":"15731:9:125"}],"functionName":{"name":"sub","nativeSrc":"15718:3:125","nodeType":"YulIdentifier","src":"15718:3:125"},"nativeSrc":"15718:23:125","nodeType":"YulFunctionCall","src":"15718:23:125"},{"kind":"number","nativeSrc":"15743:3:125","nodeType":"YulLiteral","src":"15743:3:125","type":"","value":"768"}],"functionName":{"name":"slt","nativeSrc":"15714:3:125","nodeType":"YulIdentifier","src":"15714:3:125"},"nativeSrc":"15714:33:125","nodeType":"YulFunctionCall","src":"15714:33:125"},"nativeSrc":"15711:53:125","nodeType":"YulIf","src":"15711:53:125"},{"nativeSrc":"15773:69:125","nodeType":"YulAssignment","src":"15773:69:125","value":{"arguments":[{"name":"headStart","nativeSrc":"15823:9:125","nodeType":"YulIdentifier","src":"15823:9:125"},{"name":"dataEnd","nativeSrc":"15834:7:125","nodeType":"YulIdentifier","src":"15834:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData_fromMemory","nativeSrc":"15783:39:125","nodeType":"YulIdentifier","src":"15783:39:125"},"nativeSrc":"15783:59:125","nodeType":"YulFunctionCall","src":"15783:59:125"},"variableNames":[{"name":"value0","nativeSrc":"15773:6:125","nodeType":"YulIdentifier","src":"15773:6:125"}]},{"nativeSrc":"15851:14:125","nodeType":"YulVariableDeclaration","src":"15851:14:125","value":{"kind":"number","nativeSrc":"15864:1:125","nodeType":"YulLiteral","src":"15864:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"15855:5:125","nodeType":"YulTypedName","src":"15855:5:125","type":""}]},{"nativeSrc":"15874:35:125","nodeType":"YulAssignment","src":"15874:35:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15893:9:125","nodeType":"YulIdentifier","src":"15893:9:125"},{"kind":"number","nativeSrc":"15904:3:125","nodeType":"YulLiteral","src":"15904:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"15889:3:125","nodeType":"YulIdentifier","src":"15889:3:125"},"nativeSrc":"15889:19:125","nodeType":"YulFunctionCall","src":"15889:19:125"}],"functionName":{"name":"mload","nativeSrc":"15883:5:125","nodeType":"YulIdentifier","src":"15883:5:125"},"nativeSrc":"15883:26:125","nodeType":"YulFunctionCall","src":"15883:26:125"},"variableNames":[{"name":"value","nativeSrc":"15874:5:125","nodeType":"YulIdentifier","src":"15874:5:125"}]},{"nativeSrc":"15918:15:125","nodeType":"YulAssignment","src":"15918:15:125","value":{"name":"value","nativeSrc":"15928:5:125","nodeType":"YulIdentifier","src":"15928:5:125"},"variableNames":[{"name":"value1","nativeSrc":"15918:6:125","nodeType":"YulIdentifier","src":"15918:6:125"}]},{"nativeSrc":"15942:16:125","nodeType":"YulVariableDeclaration","src":"15942:16:125","value":{"kind":"number","nativeSrc":"15957:1:125","nodeType":"YulLiteral","src":"15957:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"15946:7:125","nodeType":"YulTypedName","src":"15946:7:125","type":""}]},{"nativeSrc":"15967:37:125","nodeType":"YulAssignment","src":"15967:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15988:9:125","nodeType":"YulIdentifier","src":"15988:9:125"},{"kind":"number","nativeSrc":"15999:3:125","nodeType":"YulLiteral","src":"15999:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"15984:3:125","nodeType":"YulIdentifier","src":"15984:3:125"},"nativeSrc":"15984:19:125","nodeType":"YulFunctionCall","src":"15984:19:125"}],"functionName":{"name":"mload","nativeSrc":"15978:5:125","nodeType":"YulIdentifier","src":"15978:5:125"},"nativeSrc":"15978:26:125","nodeType":"YulFunctionCall","src":"15978:26:125"},"variableNames":[{"name":"value_1","nativeSrc":"15967:7:125","nodeType":"YulIdentifier","src":"15967:7:125"}]},{"nativeSrc":"16013:17:125","nodeType":"YulAssignment","src":"16013:17:125","value":{"name":"value_1","nativeSrc":"16023:7:125","nodeType":"YulIdentifier","src":"16023:7:125"},"variableNames":[{"name":"value2","nativeSrc":"16013:6:125","nodeType":"YulIdentifier","src":"16013:6:125"}]},{"nativeSrc":"16039:16:125","nodeType":"YulVariableDeclaration","src":"16039:16:125","value":{"kind":"number","nativeSrc":"16054:1:125","nodeType":"YulLiteral","src":"16054:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"16043:7:125","nodeType":"YulTypedName","src":"16043:7:125","type":""}]},{"nativeSrc":"16064:37:125","nodeType":"YulAssignment","src":"16064:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16085:9:125","nodeType":"YulIdentifier","src":"16085:9:125"},{"kind":"number","nativeSrc":"16096:3:125","nodeType":"YulLiteral","src":"16096:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"16081:3:125","nodeType":"YulIdentifier","src":"16081:3:125"},"nativeSrc":"16081:19:125","nodeType":"YulFunctionCall","src":"16081:19:125"}],"functionName":{"name":"mload","nativeSrc":"16075:5:125","nodeType":"YulIdentifier","src":"16075:5:125"},"nativeSrc":"16075:26:125","nodeType":"YulFunctionCall","src":"16075:26:125"},"variableNames":[{"name":"value_2","nativeSrc":"16064:7:125","nodeType":"YulIdentifier","src":"16064:7:125"}]},{"nativeSrc":"16110:17:125","nodeType":"YulAssignment","src":"16110:17:125","value":{"name":"value_2","nativeSrc":"16120:7:125","nodeType":"YulIdentifier","src":"16120:7:125"},"variableNames":[{"name":"value3","nativeSrc":"16110:6:125","nodeType":"YulIdentifier","src":"16110:6:125"}]},{"nativeSrc":"16136:41:125","nodeType":"YulVariableDeclaration","src":"16136:41:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16161:9:125","nodeType":"YulIdentifier","src":"16161:9:125"},{"kind":"number","nativeSrc":"16172:3:125","nodeType":"YulLiteral","src":"16172:3:125","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"16157:3:125","nodeType":"YulIdentifier","src":"16157:3:125"},"nativeSrc":"16157:19:125","nodeType":"YulFunctionCall","src":"16157:19:125"}],"functionName":{"name":"mload","nativeSrc":"16151:5:125","nodeType":"YulIdentifier","src":"16151:5:125"},"nativeSrc":"16151:26:125","nodeType":"YulFunctionCall","src":"16151:26:125"},"variables":[{"name":"value_3","nativeSrc":"16140:7:125","nodeType":"YulTypedName","src":"16140:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"16210:7:125","nodeType":"YulIdentifier","src":"16210:7:125"}],"functionName":{"name":"validator_revert_uint40","nativeSrc":"16186:23:125","nodeType":"YulIdentifier","src":"16186:23:125"},"nativeSrc":"16186:32:125","nodeType":"YulFunctionCall","src":"16186:32:125"},"nativeSrc":"16186:32:125","nodeType":"YulExpressionStatement","src":"16186:32:125"},{"nativeSrc":"16227:17:125","nodeType":"YulAssignment","src":"16227:17:125","value":{"name":"value_3","nativeSrc":"16237:7:125","nodeType":"YulIdentifier","src":"16237:7:125"},"variableNames":[{"name":"value4","nativeSrc":"16227:6:125","nodeType":"YulIdentifier","src":"16227:6:125"}]},{"nativeSrc":"16253:59:125","nodeType":"YulAssignment","src":"16253:59:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16296:9:125","nodeType":"YulIdentifier","src":"16296:9:125"},{"kind":"number","nativeSrc":"16307:3:125","nodeType":"YulLiteral","src":"16307:3:125","type":"","value":"512"}],"functionName":{"name":"add","nativeSrc":"16292:3:125","nodeType":"YulIdentifier","src":"16292:3:125"},"nativeSrc":"16292:19:125","nodeType":"YulFunctionCall","src":"16292:19:125"}],"functionName":{"name":"abi_decode_uint96_fromMemory","nativeSrc":"16263:28:125","nodeType":"YulIdentifier","src":"16263:28:125"},"nativeSrc":"16263:49:125","nodeType":"YulFunctionCall","src":"16263:49:125"},"variableNames":[{"name":"value5","nativeSrc":"16253:6:125","nodeType":"YulIdentifier","src":"16253:6:125"}]},{"nativeSrc":"16321:75:125","nodeType":"YulAssignment","src":"16321:75:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16371:9:125","nodeType":"YulIdentifier","src":"16371:9:125"},{"kind":"number","nativeSrc":"16382:3:125","nodeType":"YulLiteral","src":"16382:3:125","type":"","value":"544"}],"functionName":{"name":"add","nativeSrc":"16367:3:125","nodeType":"YulIdentifier","src":"16367:3:125"},"nativeSrc":"16367:19:125","nodeType":"YulFunctionCall","src":"16367:19:125"},{"name":"dataEnd","nativeSrc":"16388:7:125","nodeType":"YulIdentifier","src":"16388:7:125"}],"functionName":{"name":"abi_decode_struct_Params_fromMemory","nativeSrc":"16331:35:125","nodeType":"YulIdentifier","src":"16331:35:125"},"nativeSrc":"16331:65:125","nodeType":"YulFunctionCall","src":"16331:65:125"},"variableNames":[{"name":"value6","nativeSrc":"16321:6:125","nodeType":"YulIdentifier","src":"16321:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$7718_memory_ptr_fromMemory","nativeSrc":"15468:934:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15619:9:125","nodeType":"YulTypedName","src":"15619:9:125","type":""},{"name":"dataEnd","nativeSrc":"15630:7:125","nodeType":"YulTypedName","src":"15630:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15642:6:125","nodeType":"YulTypedName","src":"15642:6:125","type":""},{"name":"value1","nativeSrc":"15650:6:125","nodeType":"YulTypedName","src":"15650:6:125","type":""},{"name":"value2","nativeSrc":"15658:6:125","nodeType":"YulTypedName","src":"15658:6:125","type":""},{"name":"value3","nativeSrc":"15666:6:125","nodeType":"YulTypedName","src":"15666:6:125","type":""},{"name":"value4","nativeSrc":"15674:6:125","nodeType":"YulTypedName","src":"15674:6:125","type":""},{"name":"value5","nativeSrc":"15682:6:125","nodeType":"YulTypedName","src":"15682:6:125","type":""},{"name":"value6","nativeSrc":"15690:6:125","nodeType":"YulTypedName","src":"15690:6:125","type":""}],"src":"15468:934:125"},{"body":{"nativeSrc":"16532:157:125","nodeType":"YulBlock","src":"16532:157:125","statements":[{"nativeSrc":"16542:26:125","nodeType":"YulAssignment","src":"16542:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"16554:9:125","nodeType":"YulIdentifier","src":"16554:9:125"},{"kind":"number","nativeSrc":"16565:2:125","nodeType":"YulLiteral","src":"16565:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16550:3:125","nodeType":"YulIdentifier","src":"16550:3:125"},"nativeSrc":"16550:18:125","nodeType":"YulFunctionCall","src":"16550:18:125"},"variableNames":[{"name":"tail","nativeSrc":"16542:4:125","nodeType":"YulIdentifier","src":"16542:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16584:9:125","nodeType":"YulIdentifier","src":"16584:9:125"},{"arguments":[{"name":"value0","nativeSrc":"16599:6:125","nodeType":"YulIdentifier","src":"16599:6:125"},{"kind":"number","nativeSrc":"16607:12:125","nodeType":"YulLiteral","src":"16607:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"16595:3:125","nodeType":"YulIdentifier","src":"16595:3:125"},"nativeSrc":"16595:25:125","nodeType":"YulFunctionCall","src":"16595:25:125"}],"functionName":{"name":"mstore","nativeSrc":"16577:6:125","nodeType":"YulIdentifier","src":"16577:6:125"},"nativeSrc":"16577:44:125","nodeType":"YulFunctionCall","src":"16577:44:125"},"nativeSrc":"16577:44:125","nodeType":"YulExpressionStatement","src":"16577:44:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16641:9:125","nodeType":"YulIdentifier","src":"16641:9:125"},{"kind":"number","nativeSrc":"16652:2:125","nodeType":"YulLiteral","src":"16652:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16637:3:125","nodeType":"YulIdentifier","src":"16637:3:125"},"nativeSrc":"16637:18:125","nodeType":"YulFunctionCall","src":"16637:18:125"},{"arguments":[{"name":"value1","nativeSrc":"16661:6:125","nodeType":"YulIdentifier","src":"16661:6:125"},{"kind":"number","nativeSrc":"16669:12:125","nodeType":"YulLiteral","src":"16669:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"16657:3:125","nodeType":"YulIdentifier","src":"16657:3:125"},"nativeSrc":"16657:25:125","nodeType":"YulFunctionCall","src":"16657:25:125"}],"functionName":{"name":"mstore","nativeSrc":"16630:6:125","nodeType":"YulIdentifier","src":"16630:6:125"},"nativeSrc":"16630:53:125","nodeType":"YulFunctionCall","src":"16630:53:125"},"nativeSrc":"16630:53:125","nodeType":"YulExpressionStatement","src":"16630:53:125"}]},"name":"abi_encode_tuple_t_uint40_t_uint40__to_t_uint40_t_uint40__fromStack_reversed","nativeSrc":"16407:282:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16493:9:125","nodeType":"YulTypedName","src":"16493:9:125","type":""},{"name":"value1","nativeSrc":"16504:6:125","nodeType":"YulTypedName","src":"16504:6:125","type":""},{"name":"value0","nativeSrc":"16512:6:125","nodeType":"YulTypedName","src":"16512:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16523:4:125","nodeType":"YulTypedName","src":"16523:4:125","type":""}],"src":"16407:282:125"},{"body":{"nativeSrc":"16989:312:125","nodeType":"YulBlock","src":"16989:312:125","statements":[{"nativeSrc":"16999:27:125","nodeType":"YulAssignment","src":"16999:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17011:9:125","nodeType":"YulIdentifier","src":"17011:9:125"},{"kind":"number","nativeSrc":"17022:3:125","nodeType":"YulLiteral","src":"17022:3:125","type":"","value":"832"}],"functionName":{"name":"add","nativeSrc":"17007:3:125","nodeType":"YulIdentifier","src":"17007:3:125"},"nativeSrc":"17007:19:125","nodeType":"YulFunctionCall","src":"17007:19:125"},"variableNames":[{"name":"tail","nativeSrc":"16999:4:125","nodeType":"YulIdentifier","src":"16999:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"17064:6:125","nodeType":"YulIdentifier","src":"17064:6:125"},{"name":"headStart","nativeSrc":"17072:9:125","nodeType":"YulIdentifier","src":"17072:9:125"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"17035:28:125","nodeType":"YulIdentifier","src":"17035:28:125"},"nativeSrc":"17035:47:125","nodeType":"YulFunctionCall","src":"17035:47:125"},"nativeSrc":"17035:47:125","nodeType":"YulExpressionStatement","src":"17035:47:125"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"17120:6:125","nodeType":"YulIdentifier","src":"17120:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"17132:9:125","nodeType":"YulIdentifier","src":"17132:9:125"},{"kind":"number","nativeSrc":"17143:3:125","nodeType":"YulLiteral","src":"17143:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"17128:3:125","nodeType":"YulIdentifier","src":"17128:3:125"},"nativeSrc":"17128:19:125","nodeType":"YulFunctionCall","src":"17128:19:125"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"17091:28:125","nodeType":"YulIdentifier","src":"17091:28:125"},"nativeSrc":"17091:57:125","nodeType":"YulFunctionCall","src":"17091:57:125"},"nativeSrc":"17091:57:125","nodeType":"YulExpressionStatement","src":"17091:57:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17168:9:125","nodeType":"YulIdentifier","src":"17168:9:125"},{"kind":"number","nativeSrc":"17179:3:125","nodeType":"YulLiteral","src":"17179:3:125","type":"","value":"768"}],"functionName":{"name":"add","nativeSrc":"17164:3:125","nodeType":"YulIdentifier","src":"17164:3:125"},"nativeSrc":"17164:19:125","nodeType":"YulFunctionCall","src":"17164:19:125"},{"arguments":[{"name":"value2","nativeSrc":"17189:6:125","nodeType":"YulIdentifier","src":"17189:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17205:3:125","nodeType":"YulLiteral","src":"17205:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"17210:1:125","nodeType":"YulLiteral","src":"17210:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"17201:3:125","nodeType":"YulIdentifier","src":"17201:3:125"},"nativeSrc":"17201:11:125","nodeType":"YulFunctionCall","src":"17201:11:125"},{"kind":"number","nativeSrc":"17214:1:125","nodeType":"YulLiteral","src":"17214:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"17197:3:125","nodeType":"YulIdentifier","src":"17197:3:125"},"nativeSrc":"17197:19:125","nodeType":"YulFunctionCall","src":"17197:19:125"}],"functionName":{"name":"and","nativeSrc":"17185:3:125","nodeType":"YulIdentifier","src":"17185:3:125"},"nativeSrc":"17185:32:125","nodeType":"YulFunctionCall","src":"17185:32:125"}],"functionName":{"name":"mstore","nativeSrc":"17157:6:125","nodeType":"YulIdentifier","src":"17157:6:125"},"nativeSrc":"17157:61:125","nodeType":"YulFunctionCall","src":"17157:61:125"},"nativeSrc":"17157:61:125","nodeType":"YulExpressionStatement","src":"17157:61:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17238:9:125","nodeType":"YulIdentifier","src":"17238:9:125"},{"kind":"number","nativeSrc":"17249:3:125","nodeType":"YulLiteral","src":"17249:3:125","type":"","value":"800"}],"functionName":{"name":"add","nativeSrc":"17234:3:125","nodeType":"YulIdentifier","src":"17234:3:125"},"nativeSrc":"17234:19:125","nodeType":"YulFunctionCall","src":"17234:19:125"},{"arguments":[{"name":"value3","nativeSrc":"17259:6:125","nodeType":"YulIdentifier","src":"17259:6:125"},{"kind":"number","nativeSrc":"17267:26:125","nodeType":"YulLiteral","src":"17267:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"17255:3:125","nodeType":"YulIdentifier","src":"17255:3:125"},"nativeSrc":"17255:39:125","nodeType":"YulFunctionCall","src":"17255:39:125"}],"functionName":{"name":"mstore","nativeSrc":"17227:6:125","nodeType":"YulIdentifier","src":"17227:6:125"},"nativeSrc":"17227:68:125","nodeType":"YulFunctionCall","src":"17227:68:125"},"nativeSrc":"17227:68:125","nodeType":"YulExpressionStatement","src":"17227:68:125"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_struct$_PolicyData_$7744_memory_ptr_t_address_t_uint96__to_t_struct$_PolicyData_$7744_memory_ptr_t_struct$_PolicyData_$7744_memory_ptr_t_address_t_uint96__fromStack_reversed","nativeSrc":"16694:607:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16934:9:125","nodeType":"YulTypedName","src":"16934:9:125","type":""},{"name":"value3","nativeSrc":"16945:6:125","nodeType":"YulTypedName","src":"16945:6:125","type":""},{"name":"value2","nativeSrc":"16953:6:125","nodeType":"YulTypedName","src":"16953:6:125","type":""},{"name":"value1","nativeSrc":"16961:6:125","nodeType":"YulTypedName","src":"16961:6:125","type":""},{"name":"value0","nativeSrc":"16969:6:125","nodeType":"YulTypedName","src":"16969:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16980:4:125","nodeType":"YulTypedName","src":"16980:4:125","type":""}],"src":"16694:607:125"},{"body":{"nativeSrc":"17387:149:125","nodeType":"YulBlock","src":"17387:149:125","statements":[{"body":{"nativeSrc":"17433:16:125","nodeType":"YulBlock","src":"17433:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17442:1:125","nodeType":"YulLiteral","src":"17442:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"17445:1:125","nodeType":"YulLiteral","src":"17445:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17435:6:125","nodeType":"YulIdentifier","src":"17435:6:125"},"nativeSrc":"17435:12:125","nodeType":"YulFunctionCall","src":"17435:12:125"},"nativeSrc":"17435:12:125","nodeType":"YulExpressionStatement","src":"17435:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17408:7:125","nodeType":"YulIdentifier","src":"17408:7:125"},{"name":"headStart","nativeSrc":"17417:9:125","nodeType":"YulIdentifier","src":"17417:9:125"}],"functionName":{"name":"sub","nativeSrc":"17404:3:125","nodeType":"YulIdentifier","src":"17404:3:125"},"nativeSrc":"17404:23:125","nodeType":"YulFunctionCall","src":"17404:23:125"},{"kind":"number","nativeSrc":"17429:2:125","nodeType":"YulLiteral","src":"17429:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"17400:3:125","nodeType":"YulIdentifier","src":"17400:3:125"},"nativeSrc":"17400:32:125","nodeType":"YulFunctionCall","src":"17400:32:125"},"nativeSrc":"17397:52:125","nodeType":"YulIf","src":"17397:52:125"},{"nativeSrc":"17458:14:125","nodeType":"YulVariableDeclaration","src":"17458:14:125","value":{"kind":"number","nativeSrc":"17471:1:125","nodeType":"YulLiteral","src":"17471:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"17462:5:125","nodeType":"YulTypedName","src":"17462:5:125","type":""}]},{"nativeSrc":"17481:25:125","nodeType":"YulAssignment","src":"17481:25:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17496:9:125","nodeType":"YulIdentifier","src":"17496:9:125"}],"functionName":{"name":"mload","nativeSrc":"17490:5:125","nodeType":"YulIdentifier","src":"17490:5:125"},"nativeSrc":"17490:16:125","nodeType":"YulFunctionCall","src":"17490:16:125"},"variableNames":[{"name":"value","nativeSrc":"17481:5:125","nodeType":"YulIdentifier","src":"17481:5:125"}]},{"nativeSrc":"17515:15:125","nodeType":"YulAssignment","src":"17515:15:125","value":{"name":"value","nativeSrc":"17525:5:125","nodeType":"YulIdentifier","src":"17525:5:125"},"variableNames":[{"name":"value0","nativeSrc":"17515:6:125","nodeType":"YulIdentifier","src":"17515:6:125"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"17306:230:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17353:9:125","nodeType":"YulTypedName","src":"17353:9:125","type":""},{"name":"dataEnd","nativeSrc":"17364:7:125","nodeType":"YulTypedName","src":"17364:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17376:6:125","nodeType":"YulTypedName","src":"17376:6:125","type":""}],"src":"17306:230:125"},{"body":{"nativeSrc":"17701:432:125","nodeType":"YulBlock","src":"17701:432:125","statements":[{"body":{"nativeSrc":"17748:16:125","nodeType":"YulBlock","src":"17748:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17757:1:125","nodeType":"YulLiteral","src":"17757:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"17760:1:125","nodeType":"YulLiteral","src":"17760:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17750:6:125","nodeType":"YulIdentifier","src":"17750:6:125"},"nativeSrc":"17750:12:125","nodeType":"YulFunctionCall","src":"17750:12:125"},"nativeSrc":"17750:12:125","nodeType":"YulExpressionStatement","src":"17750:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17722:7:125","nodeType":"YulIdentifier","src":"17722:7:125"},{"name":"headStart","nativeSrc":"17731:9:125","nodeType":"YulIdentifier","src":"17731:9:125"}],"functionName":{"name":"sub","nativeSrc":"17718:3:125","nodeType":"YulIdentifier","src":"17718:3:125"},"nativeSrc":"17718:23:125","nodeType":"YulFunctionCall","src":"17718:23:125"},{"kind":"number","nativeSrc":"17743:3:125","nodeType":"YulLiteral","src":"17743:3:125","type":"","value":"480"}],"functionName":{"name":"slt","nativeSrc":"17714:3:125","nodeType":"YulIdentifier","src":"17714:3:125"},"nativeSrc":"17714:33:125","nodeType":"YulFunctionCall","src":"17714:33:125"},"nativeSrc":"17711:53:125","nodeType":"YulIf","src":"17711:53:125"},{"nativeSrc":"17773:69:125","nodeType":"YulAssignment","src":"17773:69:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17823:9:125","nodeType":"YulIdentifier","src":"17823:9:125"},{"name":"dataEnd","nativeSrc":"17834:7:125","nodeType":"YulIdentifier","src":"17834:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData_fromMemory","nativeSrc":"17783:39:125","nodeType":"YulIdentifier","src":"17783:39:125"},"nativeSrc":"17783:59:125","nodeType":"YulFunctionCall","src":"17783:59:125"},"variableNames":[{"name":"value0","nativeSrc":"17773:6:125","nodeType":"YulIdentifier","src":"17773:6:125"}]},{"nativeSrc":"17851:14:125","nodeType":"YulVariableDeclaration","src":"17851:14:125","value":{"kind":"number","nativeSrc":"17864:1:125","nodeType":"YulLiteral","src":"17864:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"17855:5:125","nodeType":"YulTypedName","src":"17855:5:125","type":""}]},{"nativeSrc":"17874:35:125","nodeType":"YulAssignment","src":"17874:35:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17893:9:125","nodeType":"YulIdentifier","src":"17893:9:125"},{"kind":"number","nativeSrc":"17904:3:125","nodeType":"YulLiteral","src":"17904:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"17889:3:125","nodeType":"YulIdentifier","src":"17889:3:125"},"nativeSrc":"17889:19:125","nodeType":"YulFunctionCall","src":"17889:19:125"}],"functionName":{"name":"mload","nativeSrc":"17883:5:125","nodeType":"YulIdentifier","src":"17883:5:125"},"nativeSrc":"17883:26:125","nodeType":"YulFunctionCall","src":"17883:26:125"},"variableNames":[{"name":"value","nativeSrc":"17874:5:125","nodeType":"YulIdentifier","src":"17874:5:125"}]},{"nativeSrc":"17918:15:125","nodeType":"YulAssignment","src":"17918:15:125","value":{"name":"value","nativeSrc":"17928:5:125","nodeType":"YulIdentifier","src":"17928:5:125"},"variableNames":[{"name":"value1","nativeSrc":"17918:6:125","nodeType":"YulIdentifier","src":"17918:6:125"}]},{"nativeSrc":"17942:16:125","nodeType":"YulVariableDeclaration","src":"17942:16:125","value":{"kind":"number","nativeSrc":"17957:1:125","nodeType":"YulLiteral","src":"17957:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"17946:7:125","nodeType":"YulTypedName","src":"17946:7:125","type":""}]},{"nativeSrc":"17967:37:125","nodeType":"YulAssignment","src":"17967:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17988:9:125","nodeType":"YulIdentifier","src":"17988:9:125"},{"kind":"number","nativeSrc":"17999:3:125","nodeType":"YulLiteral","src":"17999:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"17984:3:125","nodeType":"YulIdentifier","src":"17984:3:125"},"nativeSrc":"17984:19:125","nodeType":"YulFunctionCall","src":"17984:19:125"}],"functionName":{"name":"mload","nativeSrc":"17978:5:125","nodeType":"YulIdentifier","src":"17978:5:125"},"nativeSrc":"17978:26:125","nodeType":"YulFunctionCall","src":"17978:26:125"},"variableNames":[{"name":"value_1","nativeSrc":"17967:7:125","nodeType":"YulIdentifier","src":"17967:7:125"}]},{"nativeSrc":"18013:17:125","nodeType":"YulAssignment","src":"18013:17:125","value":{"name":"value_1","nativeSrc":"18023:7:125","nodeType":"YulIdentifier","src":"18023:7:125"},"variableNames":[{"name":"value2","nativeSrc":"18013:6:125","nodeType":"YulIdentifier","src":"18013:6:125"}]},{"nativeSrc":"18039:16:125","nodeType":"YulVariableDeclaration","src":"18039:16:125","value":{"kind":"number","nativeSrc":"18054:1:125","nodeType":"YulLiteral","src":"18054:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"18043:7:125","nodeType":"YulTypedName","src":"18043:7:125","type":""}]},{"nativeSrc":"18064:37:125","nodeType":"YulAssignment","src":"18064:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18085:9:125","nodeType":"YulIdentifier","src":"18085:9:125"},{"kind":"number","nativeSrc":"18096:3:125","nodeType":"YulLiteral","src":"18096:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"18081:3:125","nodeType":"YulIdentifier","src":"18081:3:125"},"nativeSrc":"18081:19:125","nodeType":"YulFunctionCall","src":"18081:19:125"}],"functionName":{"name":"mload","nativeSrc":"18075:5:125","nodeType":"YulIdentifier","src":"18075:5:125"},"nativeSrc":"18075:26:125","nodeType":"YulFunctionCall","src":"18075:26:125"},"variableNames":[{"name":"value_2","nativeSrc":"18064:7:125","nodeType":"YulIdentifier","src":"18064:7:125"}]},{"nativeSrc":"18110:17:125","nodeType":"YulAssignment","src":"18110:17:125","value":{"name":"value_2","nativeSrc":"18120:7:125","nodeType":"YulIdentifier","src":"18120:7:125"},"variableNames":[{"name":"value3","nativeSrc":"18110:6:125","nodeType":"YulIdentifier","src":"18110:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256_fromMemory","nativeSrc":"17541:592:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17643:9:125","nodeType":"YulTypedName","src":"17643:9:125","type":""},{"name":"dataEnd","nativeSrc":"17654:7:125","nodeType":"YulTypedName","src":"17654:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17666:6:125","nodeType":"YulTypedName","src":"17666:6:125","type":""},{"name":"value1","nativeSrc":"17674:6:125","nodeType":"YulTypedName","src":"17674:6:125","type":""},{"name":"value2","nativeSrc":"17682:6:125","nodeType":"YulTypedName","src":"17682:6:125","type":""},{"name":"value3","nativeSrc":"17690:6:125","nodeType":"YulTypedName","src":"17690:6:125","type":""}],"src":"17541:592:125"},{"body":{"nativeSrc":"18379:231:125","nodeType":"YulBlock","src":"18379:231:125","statements":[{"nativeSrc":"18389:27:125","nodeType":"YulAssignment","src":"18389:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18401:9:125","nodeType":"YulIdentifier","src":"18401:9:125"},{"kind":"number","nativeSrc":"18412:3:125","nodeType":"YulLiteral","src":"18412:3:125","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"18397:3:125","nodeType":"YulIdentifier","src":"18397:3:125"},"nativeSrc":"18397:19:125","nodeType":"YulFunctionCall","src":"18397:19:125"},"variableNames":[{"name":"tail","nativeSrc":"18389:4:125","nodeType":"YulIdentifier","src":"18389:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"18454:6:125","nodeType":"YulIdentifier","src":"18454:6:125"},{"name":"headStart","nativeSrc":"18462:9:125","nodeType":"YulIdentifier","src":"18462:9:125"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"18425:28:125","nodeType":"YulIdentifier","src":"18425:28:125"},"nativeSrc":"18425:47:125","nodeType":"YulFunctionCall","src":"18425:47:125"},"nativeSrc":"18425:47:125","nodeType":"YulExpressionStatement","src":"18425:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18492:9:125","nodeType":"YulIdentifier","src":"18492:9:125"},{"kind":"number","nativeSrc":"18503:3:125","nodeType":"YulLiteral","src":"18503:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"18488:3:125","nodeType":"YulIdentifier","src":"18488:3:125"},"nativeSrc":"18488:19:125","nodeType":"YulFunctionCall","src":"18488:19:125"},{"name":"value1","nativeSrc":"18509:6:125","nodeType":"YulIdentifier","src":"18509:6:125"}],"functionName":{"name":"mstore","nativeSrc":"18481:6:125","nodeType":"YulIdentifier","src":"18481:6:125"},"nativeSrc":"18481:35:125","nodeType":"YulFunctionCall","src":"18481:35:125"},"nativeSrc":"18481:35:125","nodeType":"YulExpressionStatement","src":"18481:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18536:9:125","nodeType":"YulIdentifier","src":"18536:9:125"},{"kind":"number","nativeSrc":"18547:3:125","nodeType":"YulLiteral","src":"18547:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"18532:3:125","nodeType":"YulIdentifier","src":"18532:3:125"},"nativeSrc":"18532:19:125","nodeType":"YulFunctionCall","src":"18532:19:125"},{"name":"value2","nativeSrc":"18553:6:125","nodeType":"YulIdentifier","src":"18553:6:125"}],"functionName":{"name":"mstore","nativeSrc":"18525:6:125","nodeType":"YulIdentifier","src":"18525:6:125"},"nativeSrc":"18525:35:125","nodeType":"YulFunctionCall","src":"18525:35:125"},"nativeSrc":"18525:35:125","nodeType":"YulExpressionStatement","src":"18525:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18580:9:125","nodeType":"YulIdentifier","src":"18580:9:125"},{"kind":"number","nativeSrc":"18591:3:125","nodeType":"YulLiteral","src":"18591:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"18576:3:125","nodeType":"YulIdentifier","src":"18576:3:125"},"nativeSrc":"18576:19:125","nodeType":"YulFunctionCall","src":"18576:19:125"},{"name":"value3","nativeSrc":"18597:6:125","nodeType":"YulIdentifier","src":"18597:6:125"}],"functionName":{"name":"mstore","nativeSrc":"18569:6:125","nodeType":"YulIdentifier","src":"18569:6:125"},"nativeSrc":"18569:35:125","nodeType":"YulFunctionCall","src":"18569:35:125"},"nativeSrc":"18569:35:125","nodeType":"YulExpressionStatement","src":"18569:35:125"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"18138:472:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18324:9:125","nodeType":"YulTypedName","src":"18324:9:125","type":""},{"name":"value3","nativeSrc":"18335:6:125","nodeType":"YulTypedName","src":"18335:6:125","type":""},{"name":"value2","nativeSrc":"18343:6:125","nodeType":"YulTypedName","src":"18343:6:125","type":""},{"name":"value1","nativeSrc":"18351:6:125","nodeType":"YulTypedName","src":"18351:6:125","type":""},{"name":"value0","nativeSrc":"18359:6:125","nodeType":"YulTypedName","src":"18359:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18370:4:125","nodeType":"YulTypedName","src":"18370:4:125","type":""}],"src":"18138:472:125"},{"body":{"nativeSrc":"18803:610:125","nodeType":"YulBlock","src":"18803:610:125","statements":[{"body":{"nativeSrc":"18850:16:125","nodeType":"YulBlock","src":"18850:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18859:1:125","nodeType":"YulLiteral","src":"18859:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"18862:1:125","nodeType":"YulLiteral","src":"18862:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18852:6:125","nodeType":"YulIdentifier","src":"18852:6:125"},"nativeSrc":"18852:12:125","nodeType":"YulFunctionCall","src":"18852:12:125"},"nativeSrc":"18852:12:125","nodeType":"YulExpressionStatement","src":"18852:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18824:7:125","nodeType":"YulIdentifier","src":"18824:7:125"},{"name":"headStart","nativeSrc":"18833:9:125","nodeType":"YulIdentifier","src":"18833:9:125"}],"functionName":{"name":"sub","nativeSrc":"18820:3:125","nodeType":"YulIdentifier","src":"18820:3:125"},"nativeSrc":"18820:23:125","nodeType":"YulFunctionCall","src":"18820:23:125"},{"kind":"number","nativeSrc":"18845:3:125","nodeType":"YulLiteral","src":"18845:3:125","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"18816:3:125","nodeType":"YulIdentifier","src":"18816:3:125"},"nativeSrc":"18816:33:125","nodeType":"YulFunctionCall","src":"18816:33:125"},"nativeSrc":"18813:53:125","nodeType":"YulIf","src":"18813:53:125"},{"nativeSrc":"18875:14:125","nodeType":"YulVariableDeclaration","src":"18875:14:125","value":{"kind":"number","nativeSrc":"18888:1:125","nodeType":"YulLiteral","src":"18888:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"18879:5:125","nodeType":"YulTypedName","src":"18879:5:125","type":""}]},{"nativeSrc":"18898:25:125","nodeType":"YulAssignment","src":"18898:25:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18913:9:125","nodeType":"YulIdentifier","src":"18913:9:125"}],"functionName":{"name":"mload","nativeSrc":"18907:5:125","nodeType":"YulIdentifier","src":"18907:5:125"},"nativeSrc":"18907:16:125","nodeType":"YulFunctionCall","src":"18907:16:125"},"variableNames":[{"name":"value","nativeSrc":"18898:5:125","nodeType":"YulIdentifier","src":"18898:5:125"}]},{"nativeSrc":"18932:15:125","nodeType":"YulAssignment","src":"18932:15:125","value":{"name":"value","nativeSrc":"18942:5:125","nodeType":"YulIdentifier","src":"18942:5:125"},"variableNames":[{"name":"value0","nativeSrc":"18932:6:125","nodeType":"YulIdentifier","src":"18932:6:125"}]},{"nativeSrc":"18956:16:125","nodeType":"YulVariableDeclaration","src":"18956:16:125","value":{"kind":"number","nativeSrc":"18971:1:125","nodeType":"YulLiteral","src":"18971:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"18960:7:125","nodeType":"YulTypedName","src":"18960:7:125","type":""}]},{"nativeSrc":"18981:36:125","nodeType":"YulAssignment","src":"18981:36:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19002:9:125","nodeType":"YulIdentifier","src":"19002:9:125"},{"kind":"number","nativeSrc":"19013:2:125","nodeType":"YulLiteral","src":"19013:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18998:3:125","nodeType":"YulIdentifier","src":"18998:3:125"},"nativeSrc":"18998:18:125","nodeType":"YulFunctionCall","src":"18998:18:125"}],"functionName":{"name":"mload","nativeSrc":"18992:5:125","nodeType":"YulIdentifier","src":"18992:5:125"},"nativeSrc":"18992:25:125","nodeType":"YulFunctionCall","src":"18992:25:125"},"variableNames":[{"name":"value_1","nativeSrc":"18981:7:125","nodeType":"YulIdentifier","src":"18981:7:125"}]},{"nativeSrc":"19026:17:125","nodeType":"YulAssignment","src":"19026:17:125","value":{"name":"value_1","nativeSrc":"19036:7:125","nodeType":"YulIdentifier","src":"19036:7:125"},"variableNames":[{"name":"value1","nativeSrc":"19026:6:125","nodeType":"YulIdentifier","src":"19026:6:125"}]},{"nativeSrc":"19052:16:125","nodeType":"YulVariableDeclaration","src":"19052:16:125","value":{"kind":"number","nativeSrc":"19067:1:125","nodeType":"YulLiteral","src":"19067:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"19056:7:125","nodeType":"YulTypedName","src":"19056:7:125","type":""}]},{"nativeSrc":"19077:36:125","nodeType":"YulAssignment","src":"19077:36:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19098:9:125","nodeType":"YulIdentifier","src":"19098:9:125"},{"kind":"number","nativeSrc":"19109:2:125","nodeType":"YulLiteral","src":"19109:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19094:3:125","nodeType":"YulIdentifier","src":"19094:3:125"},"nativeSrc":"19094:18:125","nodeType":"YulFunctionCall","src":"19094:18:125"}],"functionName":{"name":"mload","nativeSrc":"19088:5:125","nodeType":"YulIdentifier","src":"19088:5:125"},"nativeSrc":"19088:25:125","nodeType":"YulFunctionCall","src":"19088:25:125"},"variableNames":[{"name":"value_2","nativeSrc":"19077:7:125","nodeType":"YulIdentifier","src":"19077:7:125"}]},{"nativeSrc":"19122:17:125","nodeType":"YulAssignment","src":"19122:17:125","value":{"name":"value_2","nativeSrc":"19132:7:125","nodeType":"YulIdentifier","src":"19132:7:125"},"variableNames":[{"name":"value2","nativeSrc":"19122:6:125","nodeType":"YulIdentifier","src":"19122:6:125"}]},{"nativeSrc":"19148:40:125","nodeType":"YulVariableDeclaration","src":"19148:40:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19173:9:125","nodeType":"YulIdentifier","src":"19173:9:125"},{"kind":"number","nativeSrc":"19184:2:125","nodeType":"YulLiteral","src":"19184:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"19169:3:125","nodeType":"YulIdentifier","src":"19169:3:125"},"nativeSrc":"19169:18:125","nodeType":"YulFunctionCall","src":"19169:18:125"}],"functionName":{"name":"mload","nativeSrc":"19163:5:125","nodeType":"YulIdentifier","src":"19163:5:125"},"nativeSrc":"19163:25:125","nodeType":"YulFunctionCall","src":"19163:25:125"},"variables":[{"name":"value_3","nativeSrc":"19152:7:125","nodeType":"YulTypedName","src":"19152:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"19221:7:125","nodeType":"YulIdentifier","src":"19221:7:125"}],"functionName":{"name":"validator_revert_uint40","nativeSrc":"19197:23:125","nodeType":"YulIdentifier","src":"19197:23:125"},"nativeSrc":"19197:32:125","nodeType":"YulFunctionCall","src":"19197:32:125"},"nativeSrc":"19197:32:125","nodeType":"YulExpressionStatement","src":"19197:32:125"},{"nativeSrc":"19238:17:125","nodeType":"YulAssignment","src":"19238:17:125","value":{"name":"value_3","nativeSrc":"19248:7:125","nodeType":"YulIdentifier","src":"19248:7:125"},"variableNames":[{"name":"value3","nativeSrc":"19238:6:125","nodeType":"YulIdentifier","src":"19238:6:125"}]},{"nativeSrc":"19264:59:125","nodeType":"YulAssignment","src":"19264:59:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19307:9:125","nodeType":"YulIdentifier","src":"19307:9:125"},{"kind":"number","nativeSrc":"19318:3:125","nodeType":"YulLiteral","src":"19318:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"19303:3:125","nodeType":"YulIdentifier","src":"19303:3:125"},"nativeSrc":"19303:19:125","nodeType":"YulFunctionCall","src":"19303:19:125"}],"functionName":{"name":"abi_decode_uint96_fromMemory","nativeSrc":"19274:28:125","nodeType":"YulIdentifier","src":"19274:28:125"},"nativeSrc":"19274:49:125","nodeType":"YulFunctionCall","src":"19274:49:125"},"variableNames":[{"name":"value4","nativeSrc":"19264:6:125","nodeType":"YulIdentifier","src":"19264:6:125"}]},{"nativeSrc":"19332:75:125","nodeType":"YulAssignment","src":"19332:75:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19382:9:125","nodeType":"YulIdentifier","src":"19382:9:125"},{"kind":"number","nativeSrc":"19393:3:125","nodeType":"YulLiteral","src":"19393:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"19378:3:125","nodeType":"YulIdentifier","src":"19378:3:125"},"nativeSrc":"19378:19:125","nodeType":"YulFunctionCall","src":"19378:19:125"},{"name":"dataEnd","nativeSrc":"19399:7:125","nodeType":"YulIdentifier","src":"19399:7:125"}],"functionName":{"name":"abi_decode_struct_Params_fromMemory","nativeSrc":"19342:35:125","nodeType":"YulIdentifier","src":"19342:35:125"},"nativeSrc":"19342:65:125","nodeType":"YulFunctionCall","src":"19342:65:125"},"variableNames":[{"name":"value5","nativeSrc":"19332:6:125","nodeType":"YulIdentifier","src":"19332:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$7718_memory_ptr_fromMemory","nativeSrc":"18615:798:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18729:9:125","nodeType":"YulTypedName","src":"18729:9:125","type":""},{"name":"dataEnd","nativeSrc":"18740:7:125","nodeType":"YulTypedName","src":"18740:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18752:6:125","nodeType":"YulTypedName","src":"18752:6:125","type":""},{"name":"value1","nativeSrc":"18760:6:125","nodeType":"YulTypedName","src":"18760:6:125","type":""},{"name":"value2","nativeSrc":"18768:6:125","nodeType":"YulTypedName","src":"18768:6:125","type":""},{"name":"value3","nativeSrc":"18776:6:125","nodeType":"YulTypedName","src":"18776:6:125","type":""},{"name":"value4","nativeSrc":"18784:6:125","nodeType":"YulTypedName","src":"18784:6:125","type":""},{"name":"value5","nativeSrc":"18792:6:125","nodeType":"YulTypedName","src":"18792:6:125","type":""}],"src":"18615:798:125"},{"body":{"nativeSrc":"19657:316:125","nodeType":"YulBlock","src":"19657:316:125","statements":[{"nativeSrc":"19667:27:125","nodeType":"YulAssignment","src":"19667:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"19679:9:125","nodeType":"YulIdentifier","src":"19679:9:125"},{"kind":"number","nativeSrc":"19690:3:125","nodeType":"YulLiteral","src":"19690:3:125","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"19675:3:125","nodeType":"YulIdentifier","src":"19675:3:125"},"nativeSrc":"19675:19:125","nodeType":"YulFunctionCall","src":"19675:19:125"},"variableNames":[{"name":"tail","nativeSrc":"19667:4:125","nodeType":"YulIdentifier","src":"19667:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"19732:6:125","nodeType":"YulIdentifier","src":"19732:6:125"},{"name":"headStart","nativeSrc":"19740:9:125","nodeType":"YulIdentifier","src":"19740:9:125"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"19703:28:125","nodeType":"YulIdentifier","src":"19703:28:125"},"nativeSrc":"19703:47:125","nodeType":"YulFunctionCall","src":"19703:47:125"},"nativeSrc":"19703:47:125","nodeType":"YulExpressionStatement","src":"19703:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19770:9:125","nodeType":"YulIdentifier","src":"19770:9:125"},{"kind":"number","nativeSrc":"19781:3:125","nodeType":"YulLiteral","src":"19781:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"19766:3:125","nodeType":"YulIdentifier","src":"19766:3:125"},"nativeSrc":"19766:19:125","nodeType":"YulFunctionCall","src":"19766:19:125"},{"arguments":[{"name":"value1","nativeSrc":"19791:6:125","nodeType":"YulIdentifier","src":"19791:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19807:3:125","nodeType":"YulLiteral","src":"19807:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"19812:1:125","nodeType":"YulLiteral","src":"19812:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"19803:3:125","nodeType":"YulIdentifier","src":"19803:3:125"},"nativeSrc":"19803:11:125","nodeType":"YulFunctionCall","src":"19803:11:125"},{"kind":"number","nativeSrc":"19816:1:125","nodeType":"YulLiteral","src":"19816:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"19799:3:125","nodeType":"YulIdentifier","src":"19799:3:125"},"nativeSrc":"19799:19:125","nodeType":"YulFunctionCall","src":"19799:19:125"}],"functionName":{"name":"and","nativeSrc":"19787:3:125","nodeType":"YulIdentifier","src":"19787:3:125"},"nativeSrc":"19787:32:125","nodeType":"YulFunctionCall","src":"19787:32:125"}],"functionName":{"name":"mstore","nativeSrc":"19759:6:125","nodeType":"YulIdentifier","src":"19759:6:125"},"nativeSrc":"19759:61:125","nodeType":"YulFunctionCall","src":"19759:61:125"},"nativeSrc":"19759:61:125","nodeType":"YulExpressionStatement","src":"19759:61:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19840:9:125","nodeType":"YulIdentifier","src":"19840:9:125"},{"kind":"number","nativeSrc":"19851:3:125","nodeType":"YulLiteral","src":"19851:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"19836:3:125","nodeType":"YulIdentifier","src":"19836:3:125"},"nativeSrc":"19836:19:125","nodeType":"YulFunctionCall","src":"19836:19:125"},{"arguments":[{"name":"value2","nativeSrc":"19861:6:125","nodeType":"YulIdentifier","src":"19861:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19877:3:125","nodeType":"YulLiteral","src":"19877:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"19882:1:125","nodeType":"YulLiteral","src":"19882:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"19873:3:125","nodeType":"YulIdentifier","src":"19873:3:125"},"nativeSrc":"19873:11:125","nodeType":"YulFunctionCall","src":"19873:11:125"},{"kind":"number","nativeSrc":"19886:1:125","nodeType":"YulLiteral","src":"19886:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"19869:3:125","nodeType":"YulIdentifier","src":"19869:3:125"},"nativeSrc":"19869:19:125","nodeType":"YulFunctionCall","src":"19869:19:125"}],"functionName":{"name":"and","nativeSrc":"19857:3:125","nodeType":"YulIdentifier","src":"19857:3:125"},"nativeSrc":"19857:32:125","nodeType":"YulFunctionCall","src":"19857:32:125"}],"functionName":{"name":"mstore","nativeSrc":"19829:6:125","nodeType":"YulIdentifier","src":"19829:6:125"},"nativeSrc":"19829:61:125","nodeType":"YulFunctionCall","src":"19829:61:125"},"nativeSrc":"19829:61:125","nodeType":"YulExpressionStatement","src":"19829:61:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19910:9:125","nodeType":"YulIdentifier","src":"19910:9:125"},{"kind":"number","nativeSrc":"19921:3:125","nodeType":"YulLiteral","src":"19921:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"19906:3:125","nodeType":"YulIdentifier","src":"19906:3:125"},"nativeSrc":"19906:19:125","nodeType":"YulFunctionCall","src":"19906:19:125"},{"arguments":[{"name":"value3","nativeSrc":"19931:6:125","nodeType":"YulIdentifier","src":"19931:6:125"},{"kind":"number","nativeSrc":"19939:26:125","nodeType":"YulLiteral","src":"19939:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19927:3:125","nodeType":"YulIdentifier","src":"19927:3:125"},"nativeSrc":"19927:39:125","nodeType":"YulFunctionCall","src":"19927:39:125"}],"functionName":{"name":"mstore","nativeSrc":"19899:6:125","nodeType":"YulIdentifier","src":"19899:6:125"},"nativeSrc":"19899:68:125","nodeType":"YulFunctionCall","src":"19899:68:125"},"nativeSrc":"19899:68:125","nodeType":"YulExpressionStatement","src":"19899:68:125"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_address_t_address_t_uint96__to_t_struct$_PolicyData_$7744_memory_ptr_t_address_t_address_t_uint96__fromStack_reversed","nativeSrc":"19418:555:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19602:9:125","nodeType":"YulTypedName","src":"19602:9:125","type":""},{"name":"value3","nativeSrc":"19613:6:125","nodeType":"YulTypedName","src":"19613:6:125","type":""},{"name":"value2","nativeSrc":"19621:6:125","nodeType":"YulTypedName","src":"19621:6:125","type":""},{"name":"value1","nativeSrc":"19629:6:125","nodeType":"YulTypedName","src":"19629:6:125","type":""},{"name":"value0","nativeSrc":"19637:6:125","nodeType":"YulTypedName","src":"19637:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19648:4:125","nodeType":"YulTypedName","src":"19648:4:125","type":""}],"src":"19418:555:125"},{"body":{"nativeSrc":"20165:1553:125","nodeType":"YulBlock","src":"20165:1553:125","statements":[{"nativeSrc":"20175:27:125","nodeType":"YulAssignment","src":"20175:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"20187:9:125","nodeType":"YulIdentifier","src":"20187:9:125"},{"kind":"number","nativeSrc":"20198:3:125","nodeType":"YulLiteral","src":"20198:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"20183:3:125","nodeType":"YulIdentifier","src":"20183:3:125"},"nativeSrc":"20183:19:125","nodeType":"YulFunctionCall","src":"20183:19:125"},"variableNames":[{"name":"tail","nativeSrc":"20175:4:125","nodeType":"YulIdentifier","src":"20175:4:125"}]},{"nativeSrc":"20211:14:125","nodeType":"YulVariableDeclaration","src":"20211:14:125","value":{"kind":"number","nativeSrc":"20224:1:125","nodeType":"YulLiteral","src":"20224:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"20215:5:125","nodeType":"YulTypedName","src":"20215:5:125","type":""}]},{"nativeSrc":"20234:29:125","nodeType":"YulAssignment","src":"20234:29:125","value":{"arguments":[{"name":"value0","nativeSrc":"20256:6:125","nodeType":"YulIdentifier","src":"20256:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"20243:12:125","nodeType":"YulIdentifier","src":"20243:12:125"},"nativeSrc":"20243:20:125","nodeType":"YulFunctionCall","src":"20243:20:125"},"variableNames":[{"name":"value","nativeSrc":"20234:5:125","nodeType":"YulIdentifier","src":"20234:5:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20279:9:125","nodeType":"YulIdentifier","src":"20279:9:125"},{"name":"value","nativeSrc":"20290:5:125","nodeType":"YulIdentifier","src":"20290:5:125"}],"functionName":{"name":"mstore","nativeSrc":"20272:6:125","nodeType":"YulIdentifier","src":"20272:6:125"},"nativeSrc":"20272:24:125","nodeType":"YulFunctionCall","src":"20272:24:125"},"nativeSrc":"20272:24:125","nodeType":"YulExpressionStatement","src":"20272:24:125"},{"nativeSrc":"20305:16:125","nodeType":"YulVariableDeclaration","src":"20305:16:125","value":{"kind":"number","nativeSrc":"20320:1:125","nodeType":"YulLiteral","src":"20320:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"20309:7:125","nodeType":"YulTypedName","src":"20309:7:125","type":""}]},{"nativeSrc":"20330:42:125","nodeType":"YulAssignment","src":"20330:42:125","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"20358:6:125","nodeType":"YulIdentifier","src":"20358:6:125"},{"kind":"number","nativeSrc":"20366:4:125","nodeType":"YulLiteral","src":"20366:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"20354:3:125","nodeType":"YulIdentifier","src":"20354:3:125"},"nativeSrc":"20354:17:125","nodeType":"YulFunctionCall","src":"20354:17:125"}],"functionName":{"name":"calldataload","nativeSrc":"20341:12:125","nodeType":"YulIdentifier","src":"20341:12:125"},"nativeSrc":"20341:31:125","nodeType":"YulFunctionCall","src":"20341:31:125"},"variableNames":[{"name":"value_1","nativeSrc":"20330:7:125","nodeType":"YulIdentifier","src":"20330:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20392:9:125","nodeType":"YulIdentifier","src":"20392:9:125"},{"kind":"number","nativeSrc":"20403:4:125","nodeType":"YulLiteral","src":"20403:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"20388:3:125","nodeType":"YulIdentifier","src":"20388:3:125"},"nativeSrc":"20388:20:125","nodeType":"YulFunctionCall","src":"20388:20:125"},{"name":"value_1","nativeSrc":"20410:7:125","nodeType":"YulIdentifier","src":"20410:7:125"}],"functionName":{"name":"mstore","nativeSrc":"20381:6:125","nodeType":"YulIdentifier","src":"20381:6:125"},"nativeSrc":"20381:37:125","nodeType":"YulFunctionCall","src":"20381:37:125"},"nativeSrc":"20381:37:125","nodeType":"YulExpressionStatement","src":"20381:37:125"},{"nativeSrc":"20427:16:125","nodeType":"YulVariableDeclaration","src":"20427:16:125","value":{"kind":"number","nativeSrc":"20442:1:125","nodeType":"YulLiteral","src":"20442:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"20431:7:125","nodeType":"YulTypedName","src":"20431:7:125","type":""}]},{"nativeSrc":"20452:42:125","nodeType":"YulAssignment","src":"20452:42:125","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"20480:6:125","nodeType":"YulIdentifier","src":"20480:6:125"},{"kind":"number","nativeSrc":"20488:4:125","nodeType":"YulLiteral","src":"20488:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"20476:3:125","nodeType":"YulIdentifier","src":"20476:3:125"},"nativeSrc":"20476:17:125","nodeType":"YulFunctionCall","src":"20476:17:125"}],"functionName":{"name":"calldataload","nativeSrc":"20463:12:125","nodeType":"YulIdentifier","src":"20463:12:125"},"nativeSrc":"20463:31:125","nodeType":"YulFunctionCall","src":"20463:31:125"},"variableNames":[{"name":"value_2","nativeSrc":"20452:7:125","nodeType":"YulIdentifier","src":"20452:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20514:9:125","nodeType":"YulIdentifier","src":"20514:9:125"},{"kind":"number","nativeSrc":"20525:4:125","nodeType":"YulLiteral","src":"20525:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"20510:3:125","nodeType":"YulIdentifier","src":"20510:3:125"},"nativeSrc":"20510:20:125","nodeType":"YulFunctionCall","src":"20510:20:125"},{"name":"value_2","nativeSrc":"20532:7:125","nodeType":"YulIdentifier","src":"20532:7:125"}],"functionName":{"name":"mstore","nativeSrc":"20503:6:125","nodeType":"YulIdentifier","src":"20503:6:125"},"nativeSrc":"20503:37:125","nodeType":"YulFunctionCall","src":"20503:37:125"},"nativeSrc":"20503:37:125","nodeType":"YulExpressionStatement","src":"20503:37:125"},{"nativeSrc":"20549:16:125","nodeType":"YulVariableDeclaration","src":"20549:16:125","value":{"kind":"number","nativeSrc":"20564:1:125","nodeType":"YulLiteral","src":"20564:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"20553:7:125","nodeType":"YulTypedName","src":"20553:7:125","type":""}]},{"nativeSrc":"20574:42:125","nodeType":"YulAssignment","src":"20574:42:125","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"20602:6:125","nodeType":"YulIdentifier","src":"20602:6:125"},{"kind":"number","nativeSrc":"20610:4:125","nodeType":"YulLiteral","src":"20610:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"20598:3:125","nodeType":"YulIdentifier","src":"20598:3:125"},"nativeSrc":"20598:17:125","nodeType":"YulFunctionCall","src":"20598:17:125"}],"functionName":{"name":"calldataload","nativeSrc":"20585:12:125","nodeType":"YulIdentifier","src":"20585:12:125"},"nativeSrc":"20585:31:125","nodeType":"YulFunctionCall","src":"20585:31:125"},"variableNames":[{"name":"value_3","nativeSrc":"20574:7:125","nodeType":"YulIdentifier","src":"20574:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20636:9:125","nodeType":"YulIdentifier","src":"20636:9:125"},{"kind":"number","nativeSrc":"20647:4:125","nodeType":"YulLiteral","src":"20647:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"20632:3:125","nodeType":"YulIdentifier","src":"20632:3:125"},"nativeSrc":"20632:20:125","nodeType":"YulFunctionCall","src":"20632:20:125"},{"name":"value_3","nativeSrc":"20654:7:125","nodeType":"YulIdentifier","src":"20654:7:125"}],"functionName":{"name":"mstore","nativeSrc":"20625:6:125","nodeType":"YulIdentifier","src":"20625:6:125"},"nativeSrc":"20625:37:125","nodeType":"YulFunctionCall","src":"20625:37:125"},"nativeSrc":"20625:37:125","nodeType":"YulExpressionStatement","src":"20625:37:125"},{"nativeSrc":"20671:16:125","nodeType":"YulVariableDeclaration","src":"20671:16:125","value":{"kind":"number","nativeSrc":"20686:1:125","nodeType":"YulLiteral","src":"20686:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"20675:7:125","nodeType":"YulTypedName","src":"20675:7:125","type":""}]},{"nativeSrc":"20696:42:125","nodeType":"YulAssignment","src":"20696:42:125","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"20724:6:125","nodeType":"YulIdentifier","src":"20724:6:125"},{"kind":"number","nativeSrc":"20732:4:125","nodeType":"YulLiteral","src":"20732:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"20720:3:125","nodeType":"YulIdentifier","src":"20720:3:125"},"nativeSrc":"20720:17:125","nodeType":"YulFunctionCall","src":"20720:17:125"}],"functionName":{"name":"calldataload","nativeSrc":"20707:12:125","nodeType":"YulIdentifier","src":"20707:12:125"},"nativeSrc":"20707:31:125","nodeType":"YulFunctionCall","src":"20707:31:125"},"variableNames":[{"name":"value_4","nativeSrc":"20696:7:125","nodeType":"YulIdentifier","src":"20696:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20758:9:125","nodeType":"YulIdentifier","src":"20758:9:125"},{"kind":"number","nativeSrc":"20769:4:125","nodeType":"YulLiteral","src":"20769:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"20754:3:125","nodeType":"YulIdentifier","src":"20754:3:125"},"nativeSrc":"20754:20:125","nodeType":"YulFunctionCall","src":"20754:20:125"},{"name":"value_4","nativeSrc":"20776:7:125","nodeType":"YulIdentifier","src":"20776:7:125"}],"functionName":{"name":"mstore","nativeSrc":"20747:6:125","nodeType":"YulIdentifier","src":"20747:6:125"},"nativeSrc":"20747:37:125","nodeType":"YulFunctionCall","src":"20747:37:125"},"nativeSrc":"20747:37:125","nodeType":"YulExpressionStatement","src":"20747:37:125"},{"nativeSrc":"20793:16:125","nodeType":"YulVariableDeclaration","src":"20793:16:125","value":{"kind":"number","nativeSrc":"20808:1:125","nodeType":"YulLiteral","src":"20808:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"20797:7:125","nodeType":"YulTypedName","src":"20797:7:125","type":""}]},{"nativeSrc":"20818:42:125","nodeType":"YulAssignment","src":"20818:42:125","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"20846:6:125","nodeType":"YulIdentifier","src":"20846:6:125"},{"kind":"number","nativeSrc":"20854:4:125","nodeType":"YulLiteral","src":"20854:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"20842:3:125","nodeType":"YulIdentifier","src":"20842:3:125"},"nativeSrc":"20842:17:125","nodeType":"YulFunctionCall","src":"20842:17:125"}],"functionName":{"name":"calldataload","nativeSrc":"20829:12:125","nodeType":"YulIdentifier","src":"20829:12:125"},"nativeSrc":"20829:31:125","nodeType":"YulFunctionCall","src":"20829:31:125"},"variableNames":[{"name":"value_5","nativeSrc":"20818:7:125","nodeType":"YulIdentifier","src":"20818:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20880:9:125","nodeType":"YulIdentifier","src":"20880:9:125"},{"kind":"number","nativeSrc":"20891:4:125","nodeType":"YulLiteral","src":"20891:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"20876:3:125","nodeType":"YulIdentifier","src":"20876:3:125"},"nativeSrc":"20876:20:125","nodeType":"YulFunctionCall","src":"20876:20:125"},{"name":"value_5","nativeSrc":"20898:7:125","nodeType":"YulIdentifier","src":"20898:7:125"}],"functionName":{"name":"mstore","nativeSrc":"20869:6:125","nodeType":"YulIdentifier","src":"20869:6:125"},"nativeSrc":"20869:37:125","nodeType":"YulFunctionCall","src":"20869:37:125"},"nativeSrc":"20869:37:125","nodeType":"YulExpressionStatement","src":"20869:37:125"},{"nativeSrc":"20915:16:125","nodeType":"YulVariableDeclaration","src":"20915:16:125","value":{"kind":"number","nativeSrc":"20930:1:125","nodeType":"YulLiteral","src":"20930:1:125","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"20919:7:125","nodeType":"YulTypedName","src":"20919:7:125","type":""}]},{"nativeSrc":"20940:42:125","nodeType":"YulAssignment","src":"20940:42:125","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"20968:6:125","nodeType":"YulIdentifier","src":"20968:6:125"},{"kind":"number","nativeSrc":"20976:4:125","nodeType":"YulLiteral","src":"20976:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"20964:3:125","nodeType":"YulIdentifier","src":"20964:3:125"},"nativeSrc":"20964:17:125","nodeType":"YulFunctionCall","src":"20964:17:125"}],"functionName":{"name":"calldataload","nativeSrc":"20951:12:125","nodeType":"YulIdentifier","src":"20951:12:125"},"nativeSrc":"20951:31:125","nodeType":"YulFunctionCall","src":"20951:31:125"},"variableNames":[{"name":"value_6","nativeSrc":"20940:7:125","nodeType":"YulIdentifier","src":"20940:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21002:9:125","nodeType":"YulIdentifier","src":"21002:9:125"},{"kind":"number","nativeSrc":"21013:4:125","nodeType":"YulLiteral","src":"21013:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"20998:3:125","nodeType":"YulIdentifier","src":"20998:3:125"},"nativeSrc":"20998:20:125","nodeType":"YulFunctionCall","src":"20998:20:125"},{"name":"value_6","nativeSrc":"21020:7:125","nodeType":"YulIdentifier","src":"21020:7:125"}],"functionName":{"name":"mstore","nativeSrc":"20991:6:125","nodeType":"YulIdentifier","src":"20991:6:125"},"nativeSrc":"20991:37:125","nodeType":"YulFunctionCall","src":"20991:37:125"},"nativeSrc":"20991:37:125","nodeType":"YulExpressionStatement","src":"20991:37:125"},{"nativeSrc":"21037:16:125","nodeType":"YulVariableDeclaration","src":"21037:16:125","value":{"kind":"number","nativeSrc":"21052:1:125","nodeType":"YulLiteral","src":"21052:1:125","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"21041:7:125","nodeType":"YulTypedName","src":"21041:7:125","type":""}]},{"nativeSrc":"21062:42:125","nodeType":"YulAssignment","src":"21062:42:125","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"21090:6:125","nodeType":"YulIdentifier","src":"21090:6:125"},{"kind":"number","nativeSrc":"21098:4:125","nodeType":"YulLiteral","src":"21098:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"21086:3:125","nodeType":"YulIdentifier","src":"21086:3:125"},"nativeSrc":"21086:17:125","nodeType":"YulFunctionCall","src":"21086:17:125"}],"functionName":{"name":"calldataload","nativeSrc":"21073:12:125","nodeType":"YulIdentifier","src":"21073:12:125"},"nativeSrc":"21073:31:125","nodeType":"YulFunctionCall","src":"21073:31:125"},"variableNames":[{"name":"value_7","nativeSrc":"21062:7:125","nodeType":"YulIdentifier","src":"21062:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21124:9:125","nodeType":"YulIdentifier","src":"21124:9:125"},{"kind":"number","nativeSrc":"21135:4:125","nodeType":"YulLiteral","src":"21135:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"21120:3:125","nodeType":"YulIdentifier","src":"21120:3:125"},"nativeSrc":"21120:20:125","nodeType":"YulFunctionCall","src":"21120:20:125"},{"name":"value_7","nativeSrc":"21142:7:125","nodeType":"YulIdentifier","src":"21142:7:125"}],"functionName":{"name":"mstore","nativeSrc":"21113:6:125","nodeType":"YulIdentifier","src":"21113:6:125"},"nativeSrc":"21113:37:125","nodeType":"YulFunctionCall","src":"21113:37:125"},"nativeSrc":"21113:37:125","nodeType":"YulExpressionStatement","src":"21113:37:125"},{"nativeSrc":"21159:16:125","nodeType":"YulVariableDeclaration","src":"21159:16:125","value":{"kind":"number","nativeSrc":"21174:1:125","nodeType":"YulLiteral","src":"21174:1:125","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"21163:7:125","nodeType":"YulTypedName","src":"21163:7:125","type":""}]},{"nativeSrc":"21184:44:125","nodeType":"YulAssignment","src":"21184:44:125","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"21212:6:125","nodeType":"YulIdentifier","src":"21212:6:125"},{"kind":"number","nativeSrc":"21220:6:125","nodeType":"YulLiteral","src":"21220:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"21208:3:125","nodeType":"YulIdentifier","src":"21208:3:125"},"nativeSrc":"21208:19:125","nodeType":"YulFunctionCall","src":"21208:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"21195:12:125","nodeType":"YulIdentifier","src":"21195:12:125"},"nativeSrc":"21195:33:125","nodeType":"YulFunctionCall","src":"21195:33:125"},"variableNames":[{"name":"value_8","nativeSrc":"21184:7:125","nodeType":"YulIdentifier","src":"21184:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21248:9:125","nodeType":"YulIdentifier","src":"21248:9:125"},{"kind":"number","nativeSrc":"21259:6:125","nodeType":"YulLiteral","src":"21259:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"21244:3:125","nodeType":"YulIdentifier","src":"21244:3:125"},"nativeSrc":"21244:22:125","nodeType":"YulFunctionCall","src":"21244:22:125"},{"name":"value_8","nativeSrc":"21268:7:125","nodeType":"YulIdentifier","src":"21268:7:125"}],"functionName":{"name":"mstore","nativeSrc":"21237:6:125","nodeType":"YulIdentifier","src":"21237:6:125"},"nativeSrc":"21237:39:125","nodeType":"YulFunctionCall","src":"21237:39:125"},"nativeSrc":"21237:39:125","nodeType":"YulExpressionStatement","src":"21237:39:125"},{"nativeSrc":"21285:16:125","nodeType":"YulVariableDeclaration","src":"21285:16:125","value":{"kind":"number","nativeSrc":"21300:1:125","nodeType":"YulLiteral","src":"21300:1:125","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"21289:7:125","nodeType":"YulTypedName","src":"21289:7:125","type":""}]},{"nativeSrc":"21310:44:125","nodeType":"YulAssignment","src":"21310:44:125","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"21338:6:125","nodeType":"YulIdentifier","src":"21338:6:125"},{"kind":"number","nativeSrc":"21346:6:125","nodeType":"YulLiteral","src":"21346:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"21334:3:125","nodeType":"YulIdentifier","src":"21334:3:125"},"nativeSrc":"21334:19:125","nodeType":"YulFunctionCall","src":"21334:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"21321:12:125","nodeType":"YulIdentifier","src":"21321:12:125"},"nativeSrc":"21321:33:125","nodeType":"YulFunctionCall","src":"21321:33:125"},"variableNames":[{"name":"value_9","nativeSrc":"21310:7:125","nodeType":"YulIdentifier","src":"21310:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21374:9:125","nodeType":"YulIdentifier","src":"21374:9:125"},{"kind":"number","nativeSrc":"21385:6:125","nodeType":"YulLiteral","src":"21385:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"21370:3:125","nodeType":"YulIdentifier","src":"21370:3:125"},"nativeSrc":"21370:22:125","nodeType":"YulFunctionCall","src":"21370:22:125"},{"name":"value_9","nativeSrc":"21394:7:125","nodeType":"YulIdentifier","src":"21394:7:125"}],"functionName":{"name":"mstore","nativeSrc":"21363:6:125","nodeType":"YulIdentifier","src":"21363:6:125"},"nativeSrc":"21363:39:125","nodeType":"YulFunctionCall","src":"21363:39:125"},"nativeSrc":"21363:39:125","nodeType":"YulExpressionStatement","src":"21363:39:125"},{"nativeSrc":"21411:58:125","nodeType":"YulVariableDeclaration","src":"21411:58:125","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"21453:6:125","nodeType":"YulIdentifier","src":"21453:6:125"},{"kind":"number","nativeSrc":"21461:6:125","nodeType":"YulLiteral","src":"21461:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"21449:3:125","nodeType":"YulIdentifier","src":"21449:3:125"},"nativeSrc":"21449:19:125","nodeType":"YulFunctionCall","src":"21449:19:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"21431:17:125","nodeType":"YulIdentifier","src":"21431:17:125"},"nativeSrc":"21431:38:125","nodeType":"YulFunctionCall","src":"21431:38:125"},"variables":[{"name":"memberValue0","nativeSrc":"21415:12:125","nodeType":"YulTypedName","src":"21415:12:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"21496:12:125","nodeType":"YulIdentifier","src":"21496:12:125"},{"arguments":[{"name":"headStart","nativeSrc":"21514:9:125","nodeType":"YulIdentifier","src":"21514:9:125"},{"kind":"number","nativeSrc":"21525:6:125","nodeType":"YulLiteral","src":"21525:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"21510:3:125","nodeType":"YulIdentifier","src":"21510:3:125"},"nativeSrc":"21510:22:125","nodeType":"YulFunctionCall","src":"21510:22:125"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"21478:17:125","nodeType":"YulIdentifier","src":"21478:17:125"},"nativeSrc":"21478:55:125","nodeType":"YulFunctionCall","src":"21478:55:125"},"nativeSrc":"21478:55:125","nodeType":"YulExpressionStatement","src":"21478:55:125"},{"nativeSrc":"21542:60:125","nodeType":"YulVariableDeclaration","src":"21542:60:125","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"21586:6:125","nodeType":"YulIdentifier","src":"21586:6:125"},{"kind":"number","nativeSrc":"21594:6:125","nodeType":"YulLiteral","src":"21594:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"21582:3:125","nodeType":"YulIdentifier","src":"21582:3:125"},"nativeSrc":"21582:19:125","nodeType":"YulFunctionCall","src":"21582:19:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"21564:17:125","nodeType":"YulIdentifier","src":"21564:17:125"},"nativeSrc":"21564:38:125","nodeType":"YulFunctionCall","src":"21564:38:125"},"variables":[{"name":"memberValue0_1","nativeSrc":"21546:14:125","nodeType":"YulTypedName","src":"21546:14:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nativeSrc":"21629:14:125","nodeType":"YulIdentifier","src":"21629:14:125"},{"arguments":[{"name":"headStart","nativeSrc":"21649:9:125","nodeType":"YulIdentifier","src":"21649:9:125"},{"kind":"number","nativeSrc":"21660:6:125","nodeType":"YulLiteral","src":"21660:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"21645:3:125","nodeType":"YulIdentifier","src":"21645:3:125"},"nativeSrc":"21645:22:125","nodeType":"YulFunctionCall","src":"21645:22:125"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"21611:17:125","nodeType":"YulIdentifier","src":"21611:17:125"},"nativeSrc":"21611:57:125","nodeType":"YulFunctionCall","src":"21611:57:125"},"nativeSrc":"21611:57:125","nodeType":"YulExpressionStatement","src":"21611:57:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21688:9:125","nodeType":"YulIdentifier","src":"21688:9:125"},{"kind":"number","nativeSrc":"21699:3:125","nodeType":"YulLiteral","src":"21699:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"21684:3:125","nodeType":"YulIdentifier","src":"21684:3:125"},"nativeSrc":"21684:19:125","nodeType":"YulFunctionCall","src":"21684:19:125"},{"name":"value1","nativeSrc":"21705:6:125","nodeType":"YulIdentifier","src":"21705:6:125"}],"functionName":{"name":"mstore","nativeSrc":"21677:6:125","nodeType":"YulIdentifier","src":"21677:6:125"},"nativeSrc":"21677:35:125","nodeType":"YulFunctionCall","src":"21677:35:125"},"nativeSrc":"21677:35:125","nodeType":"YulExpressionStatement","src":"21677:35:125"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$7744_calldata_ptr_t_uint256__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256__fromStack_reversed","nativeSrc":"19978:1740:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20126:9:125","nodeType":"YulTypedName","src":"20126:9:125","type":""},{"name":"value1","nativeSrc":"20137:6:125","nodeType":"YulTypedName","src":"20137:6:125","type":""},{"name":"value0","nativeSrc":"20145:6:125","nodeType":"YulTypedName","src":"20145:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20156:4:125","nodeType":"YulTypedName","src":"20156:4:125","type":""}],"src":"19978:1740:125"},{"body":{"nativeSrc":"21852:171:125","nodeType":"YulBlock","src":"21852:171:125","statements":[{"nativeSrc":"21862:26:125","nodeType":"YulAssignment","src":"21862:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"21874:9:125","nodeType":"YulIdentifier","src":"21874:9:125"},{"kind":"number","nativeSrc":"21885:2:125","nodeType":"YulLiteral","src":"21885:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21870:3:125","nodeType":"YulIdentifier","src":"21870:3:125"},"nativeSrc":"21870:18:125","nodeType":"YulFunctionCall","src":"21870:18:125"},"variableNames":[{"name":"tail","nativeSrc":"21862:4:125","nodeType":"YulIdentifier","src":"21862:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"21904:9:125","nodeType":"YulIdentifier","src":"21904:9:125"},{"arguments":[{"name":"value0","nativeSrc":"21919:6:125","nodeType":"YulIdentifier","src":"21919:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21935:3:125","nodeType":"YulLiteral","src":"21935:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"21940:1:125","nodeType":"YulLiteral","src":"21940:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"21931:3:125","nodeType":"YulIdentifier","src":"21931:3:125"},"nativeSrc":"21931:11:125","nodeType":"YulFunctionCall","src":"21931:11:125"},{"kind":"number","nativeSrc":"21944:1:125","nodeType":"YulLiteral","src":"21944:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"21927:3:125","nodeType":"YulIdentifier","src":"21927:3:125"},"nativeSrc":"21927:19:125","nodeType":"YulFunctionCall","src":"21927:19:125"}],"functionName":{"name":"and","nativeSrc":"21915:3:125","nodeType":"YulIdentifier","src":"21915:3:125"},"nativeSrc":"21915:32:125","nodeType":"YulFunctionCall","src":"21915:32:125"}],"functionName":{"name":"mstore","nativeSrc":"21897:6:125","nodeType":"YulIdentifier","src":"21897:6:125"},"nativeSrc":"21897:51:125","nodeType":"YulFunctionCall","src":"21897:51:125"},"nativeSrc":"21897:51:125","nodeType":"YulExpressionStatement","src":"21897:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21968:9:125","nodeType":"YulIdentifier","src":"21968:9:125"},{"kind":"number","nativeSrc":"21979:2:125","nodeType":"YulLiteral","src":"21979:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21964:3:125","nodeType":"YulIdentifier","src":"21964:3:125"},"nativeSrc":"21964:18:125","nodeType":"YulFunctionCall","src":"21964:18:125"},{"arguments":[{"name":"value1","nativeSrc":"21988:6:125","nodeType":"YulIdentifier","src":"21988:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22004:3:125","nodeType":"YulLiteral","src":"22004:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"22009:1:125","nodeType":"YulLiteral","src":"22009:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22000:3:125","nodeType":"YulIdentifier","src":"22000:3:125"},"nativeSrc":"22000:11:125","nodeType":"YulFunctionCall","src":"22000:11:125"},{"kind":"number","nativeSrc":"22013:1:125","nodeType":"YulLiteral","src":"22013:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"21996:3:125","nodeType":"YulIdentifier","src":"21996:3:125"},"nativeSrc":"21996:19:125","nodeType":"YulFunctionCall","src":"21996:19:125"}],"functionName":{"name":"and","nativeSrc":"21984:3:125","nodeType":"YulIdentifier","src":"21984:3:125"},"nativeSrc":"21984:32:125","nodeType":"YulFunctionCall","src":"21984:32:125"}],"functionName":{"name":"mstore","nativeSrc":"21957:6:125","nodeType":"YulIdentifier","src":"21957:6:125"},"nativeSrc":"21957:60:125","nodeType":"YulFunctionCall","src":"21957:60:125"},"nativeSrc":"21957:60:125","nodeType":"YulExpressionStatement","src":"21957:60:125"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nativeSrc":"21723:300:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21813:9:125","nodeType":"YulTypedName","src":"21813:9:125","type":""},{"name":"value1","nativeSrc":"21824:6:125","nodeType":"YulTypedName","src":"21824:6:125","type":""},{"name":"value0","nativeSrc":"21832:6:125","nodeType":"YulTypedName","src":"21832:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21843:4:125","nodeType":"YulTypedName","src":"21843:4:125","type":""}],"src":"21723:300:125"},{"body":{"nativeSrc":"22133:184:125","nodeType":"YulBlock","src":"22133:184:125","statements":[{"body":{"nativeSrc":"22179:16:125","nodeType":"YulBlock","src":"22179:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22188:1:125","nodeType":"YulLiteral","src":"22188:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"22191:1:125","nodeType":"YulLiteral","src":"22191:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22181:6:125","nodeType":"YulIdentifier","src":"22181:6:125"},"nativeSrc":"22181:12:125","nodeType":"YulFunctionCall","src":"22181:12:125"},"nativeSrc":"22181:12:125","nodeType":"YulExpressionStatement","src":"22181:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"22154:7:125","nodeType":"YulIdentifier","src":"22154:7:125"},{"name":"headStart","nativeSrc":"22163:9:125","nodeType":"YulIdentifier","src":"22163:9:125"}],"functionName":{"name":"sub","nativeSrc":"22150:3:125","nodeType":"YulIdentifier","src":"22150:3:125"},"nativeSrc":"22150:23:125","nodeType":"YulFunctionCall","src":"22150:23:125"},{"kind":"number","nativeSrc":"22175:2:125","nodeType":"YulLiteral","src":"22175:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"22146:3:125","nodeType":"YulIdentifier","src":"22146:3:125"},"nativeSrc":"22146:32:125","nodeType":"YulFunctionCall","src":"22146:32:125"},"nativeSrc":"22143:52:125","nodeType":"YulIf","src":"22143:52:125"},{"nativeSrc":"22204:29:125","nodeType":"YulVariableDeclaration","src":"22204:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"22223:9:125","nodeType":"YulIdentifier","src":"22223:9:125"}],"functionName":{"name":"mload","nativeSrc":"22217:5:125","nodeType":"YulIdentifier","src":"22217:5:125"},"nativeSrc":"22217:16:125","nodeType":"YulFunctionCall","src":"22217:16:125"},"variables":[{"name":"value","nativeSrc":"22208:5:125","nodeType":"YulTypedName","src":"22208:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"22281:5:125","nodeType":"YulIdentifier","src":"22281:5:125"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"22242:38:125","nodeType":"YulIdentifier","src":"22242:38:125"},"nativeSrc":"22242:45:125","nodeType":"YulFunctionCall","src":"22242:45:125"},"nativeSrc":"22242:45:125","nodeType":"YulExpressionStatement","src":"22242:45:125"},{"nativeSrc":"22296:15:125","nodeType":"YulAssignment","src":"22296:15:125","value":{"name":"value","nativeSrc":"22306:5:125","nodeType":"YulIdentifier","src":"22306:5:125"},"variableNames":[{"name":"value0","nativeSrc":"22296:6:125","nodeType":"YulIdentifier","src":"22296:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory","nativeSrc":"22028:289:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22099:9:125","nodeType":"YulTypedName","src":"22099:9:125","type":""},{"name":"dataEnd","nativeSrc":"22110:7:125","nodeType":"YulTypedName","src":"22110:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"22122:6:125","nodeType":"YulTypedName","src":"22122:6:125","type":""}],"src":"22028:289:125"},{"body":{"nativeSrc":"22354:95:125","nodeType":"YulBlock","src":"22354:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22371:1:125","nodeType":"YulLiteral","src":"22371:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"22378:3:125","nodeType":"YulLiteral","src":"22378:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"22383:10:125","nodeType":"YulLiteral","src":"22383:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"22374:3:125","nodeType":"YulIdentifier","src":"22374:3:125"},"nativeSrc":"22374:20:125","nodeType":"YulFunctionCall","src":"22374:20:125"}],"functionName":{"name":"mstore","nativeSrc":"22364:6:125","nodeType":"YulIdentifier","src":"22364:6:125"},"nativeSrc":"22364:31:125","nodeType":"YulFunctionCall","src":"22364:31:125"},"nativeSrc":"22364:31:125","nodeType":"YulExpressionStatement","src":"22364:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"22411:1:125","nodeType":"YulLiteral","src":"22411:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"22414:4:125","nodeType":"YulLiteral","src":"22414:4:125","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"22404:6:125","nodeType":"YulIdentifier","src":"22404:6:125"},"nativeSrc":"22404:15:125","nodeType":"YulFunctionCall","src":"22404:15:125"},"nativeSrc":"22404:15:125","nodeType":"YulExpressionStatement","src":"22404:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"22435:1:125","nodeType":"YulLiteral","src":"22435:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"22438:4:125","nodeType":"YulLiteral","src":"22438:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"22428:6:125","nodeType":"YulIdentifier","src":"22428:6:125"},"nativeSrc":"22428:15:125","nodeType":"YulFunctionCall","src":"22428:15:125"},"nativeSrc":"22428:15:125","nodeType":"YulExpressionStatement","src":"22428:15:125"}]},"name":"panic_error_0x11","nativeSrc":"22322:127:125","nodeType":"YulFunctionDefinition","src":"22322:127:125"},{"body":{"nativeSrc":"22503:79:125","nodeType":"YulBlock","src":"22503:79:125","statements":[{"nativeSrc":"22513:17:125","nodeType":"YulAssignment","src":"22513:17:125","value":{"arguments":[{"name":"x","nativeSrc":"22525:1:125","nodeType":"YulIdentifier","src":"22525:1:125"},{"name":"y","nativeSrc":"22528:1:125","nodeType":"YulIdentifier","src":"22528:1:125"}],"functionName":{"name":"sub","nativeSrc":"22521:3:125","nodeType":"YulIdentifier","src":"22521:3:125"},"nativeSrc":"22521:9:125","nodeType":"YulFunctionCall","src":"22521:9:125"},"variableNames":[{"name":"diff","nativeSrc":"22513:4:125","nodeType":"YulIdentifier","src":"22513:4:125"}]},{"body":{"nativeSrc":"22554:22:125","nodeType":"YulBlock","src":"22554:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"22556:16:125","nodeType":"YulIdentifier","src":"22556:16:125"},"nativeSrc":"22556:18:125","nodeType":"YulFunctionCall","src":"22556:18:125"},"nativeSrc":"22556:18:125","nodeType":"YulExpressionStatement","src":"22556:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"22545:4:125","nodeType":"YulIdentifier","src":"22545:4:125"},{"name":"x","nativeSrc":"22551:1:125","nodeType":"YulIdentifier","src":"22551:1:125"}],"functionName":{"name":"gt","nativeSrc":"22542:2:125","nodeType":"YulIdentifier","src":"22542:2:125"},"nativeSrc":"22542:11:125","nodeType":"YulFunctionCall","src":"22542:11:125"},"nativeSrc":"22539:37:125","nodeType":"YulIf","src":"22539:37:125"}]},"name":"checked_sub_t_uint256","nativeSrc":"22454:128:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"22485:1:125","nodeType":"YulTypedName","src":"22485:1:125","type":""},{"name":"y","nativeSrc":"22488:1:125","nodeType":"YulTypedName","src":"22488:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"22494:4:125","nodeType":"YulTypedName","src":"22494:4:125","type":""}],"src":"22454:128:125"},{"body":{"nativeSrc":"22635:77:125","nodeType":"YulBlock","src":"22635:77:125","statements":[{"nativeSrc":"22645:16:125","nodeType":"YulAssignment","src":"22645:16:125","value":{"arguments":[{"name":"x","nativeSrc":"22656:1:125","nodeType":"YulIdentifier","src":"22656:1:125"},{"name":"y","nativeSrc":"22659:1:125","nodeType":"YulIdentifier","src":"22659:1:125"}],"functionName":{"name":"add","nativeSrc":"22652:3:125","nodeType":"YulIdentifier","src":"22652:3:125"},"nativeSrc":"22652:9:125","nodeType":"YulFunctionCall","src":"22652:9:125"},"variableNames":[{"name":"sum","nativeSrc":"22645:3:125","nodeType":"YulIdentifier","src":"22645:3:125"}]},{"body":{"nativeSrc":"22684:22:125","nodeType":"YulBlock","src":"22684:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"22686:16:125","nodeType":"YulIdentifier","src":"22686:16:125"},"nativeSrc":"22686:18:125","nodeType":"YulFunctionCall","src":"22686:18:125"},"nativeSrc":"22686:18:125","nodeType":"YulExpressionStatement","src":"22686:18:125"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"22676:1:125","nodeType":"YulIdentifier","src":"22676:1:125"},{"name":"sum","nativeSrc":"22679:3:125","nodeType":"YulIdentifier","src":"22679:3:125"}],"functionName":{"name":"gt","nativeSrc":"22673:2:125","nodeType":"YulIdentifier","src":"22673:2:125"},"nativeSrc":"22673:10:125","nodeType":"YulFunctionCall","src":"22673:10:125"},"nativeSrc":"22670:36:125","nodeType":"YulIf","src":"22670:36:125"}]},"name":"checked_add_t_uint256","nativeSrc":"22587:125:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"22618:1:125","nodeType":"YulTypedName","src":"22618:1:125","type":""},{"name":"y","nativeSrc":"22621:1:125","nodeType":"YulTypedName","src":"22621:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"22627:3:125","nodeType":"YulTypedName","src":"22627:3:125","type":""}],"src":"22587:125:125"},{"body":{"nativeSrc":"22765:128:125","nodeType":"YulBlock","src":"22765:128:125","statements":[{"nativeSrc":"22775:55:125","nodeType":"YulAssignment","src":"22775:55:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"22791:1:125","nodeType":"YulIdentifier","src":"22791:1:125"},{"kind":"number","nativeSrc":"22794:12:125","nodeType":"YulLiteral","src":"22794:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"22787:3:125","nodeType":"YulIdentifier","src":"22787:3:125"},"nativeSrc":"22787:20:125","nodeType":"YulFunctionCall","src":"22787:20:125"},{"arguments":[{"name":"y","nativeSrc":"22813:1:125","nodeType":"YulIdentifier","src":"22813:1:125"},{"kind":"number","nativeSrc":"22816:12:125","nodeType":"YulLiteral","src":"22816:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"22809:3:125","nodeType":"YulIdentifier","src":"22809:3:125"},"nativeSrc":"22809:20:125","nodeType":"YulFunctionCall","src":"22809:20:125"}],"functionName":{"name":"sub","nativeSrc":"22783:3:125","nodeType":"YulIdentifier","src":"22783:3:125"},"nativeSrc":"22783:47:125","nodeType":"YulFunctionCall","src":"22783:47:125"},"variableNames":[{"name":"diff","nativeSrc":"22775:4:125","nodeType":"YulIdentifier","src":"22775:4:125"}]},{"body":{"nativeSrc":"22865:22:125","nodeType":"YulBlock","src":"22865:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"22867:16:125","nodeType":"YulIdentifier","src":"22867:16:125"},"nativeSrc":"22867:18:125","nodeType":"YulFunctionCall","src":"22867:18:125"},"nativeSrc":"22867:18:125","nodeType":"YulExpressionStatement","src":"22867:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"22845:4:125","nodeType":"YulIdentifier","src":"22845:4:125"},{"kind":"number","nativeSrc":"22851:12:125","nodeType":"YulLiteral","src":"22851:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"gt","nativeSrc":"22842:2:125","nodeType":"YulIdentifier","src":"22842:2:125"},"nativeSrc":"22842:22:125","nodeType":"YulFunctionCall","src":"22842:22:125"},"nativeSrc":"22839:48:125","nodeType":"YulIf","src":"22839:48:125"}]},"name":"checked_sub_t_uint40","nativeSrc":"22717:176:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"22747:1:125","nodeType":"YulTypedName","src":"22747:1:125","type":""},{"name":"y","nativeSrc":"22750:1:125","nodeType":"YulTypedName","src":"22750:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"22756:4:125","nodeType":"YulTypedName","src":"22756:4:125","type":""}],"src":"22717:176:125"},{"body":{"nativeSrc":"22950:116:125","nodeType":"YulBlock","src":"22950:116:125","statements":[{"nativeSrc":"22960:20:125","nodeType":"YulAssignment","src":"22960:20:125","value":{"arguments":[{"name":"x","nativeSrc":"22975:1:125","nodeType":"YulIdentifier","src":"22975:1:125"},{"name":"y","nativeSrc":"22978:1:125","nodeType":"YulIdentifier","src":"22978:1:125"}],"functionName":{"name":"mul","nativeSrc":"22971:3:125","nodeType":"YulIdentifier","src":"22971:3:125"},"nativeSrc":"22971:9:125","nodeType":"YulFunctionCall","src":"22971:9:125"},"variableNames":[{"name":"product","nativeSrc":"22960:7:125","nodeType":"YulIdentifier","src":"22960:7:125"}]},{"body":{"nativeSrc":"23038:22:125","nodeType":"YulBlock","src":"23038:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"23040:16:125","nodeType":"YulIdentifier","src":"23040:16:125"},"nativeSrc":"23040:18:125","nodeType":"YulFunctionCall","src":"23040:18:125"},"nativeSrc":"23040:18:125","nodeType":"YulExpressionStatement","src":"23040:18:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nativeSrc":"23009:1:125","nodeType":"YulIdentifier","src":"23009:1:125"}],"functionName":{"name":"iszero","nativeSrc":"23002:6:125","nodeType":"YulIdentifier","src":"23002:6:125"},"nativeSrc":"23002:9:125","nodeType":"YulFunctionCall","src":"23002:9:125"},{"arguments":[{"name":"y","nativeSrc":"23016:1:125","nodeType":"YulIdentifier","src":"23016:1:125"},{"arguments":[{"name":"product","nativeSrc":"23023:7:125","nodeType":"YulIdentifier","src":"23023:7:125"},{"name":"x","nativeSrc":"23032:1:125","nodeType":"YulIdentifier","src":"23032:1:125"}],"functionName":{"name":"div","nativeSrc":"23019:3:125","nodeType":"YulIdentifier","src":"23019:3:125"},"nativeSrc":"23019:15:125","nodeType":"YulFunctionCall","src":"23019:15:125"}],"functionName":{"name":"eq","nativeSrc":"23013:2:125","nodeType":"YulIdentifier","src":"23013:2:125"},"nativeSrc":"23013:22:125","nodeType":"YulFunctionCall","src":"23013:22:125"}],"functionName":{"name":"or","nativeSrc":"22999:2:125","nodeType":"YulIdentifier","src":"22999:2:125"},"nativeSrc":"22999:37:125","nodeType":"YulFunctionCall","src":"22999:37:125"}],"functionName":{"name":"iszero","nativeSrc":"22992:6:125","nodeType":"YulIdentifier","src":"22992:6:125"},"nativeSrc":"22992:45:125","nodeType":"YulFunctionCall","src":"22992:45:125"},"nativeSrc":"22989:71:125","nodeType":"YulIf","src":"22989:71:125"}]},"name":"checked_mul_t_uint256","nativeSrc":"22898:168:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"22929:1:125","nodeType":"YulTypedName","src":"22929:1:125","type":""},{"name":"y","nativeSrc":"22932:1:125","nodeType":"YulTypedName","src":"22932:1:125","type":""}],"returnVariables":[{"name":"product","nativeSrc":"22938:7:125","nodeType":"YulTypedName","src":"22938:7:125","type":""}],"src":"22898:168:125"},{"body":{"nativeSrc":"23152:103:125","nodeType":"YulBlock","src":"23152:103:125","statements":[{"body":{"nativeSrc":"23198:16:125","nodeType":"YulBlock","src":"23198:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23207:1:125","nodeType":"YulLiteral","src":"23207:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"23210:1:125","nodeType":"YulLiteral","src":"23210:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23200:6:125","nodeType":"YulIdentifier","src":"23200:6:125"},"nativeSrc":"23200:12:125","nodeType":"YulFunctionCall","src":"23200:12:125"},"nativeSrc":"23200:12:125","nodeType":"YulExpressionStatement","src":"23200:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"23173:7:125","nodeType":"YulIdentifier","src":"23173:7:125"},{"name":"headStart","nativeSrc":"23182:9:125","nodeType":"YulIdentifier","src":"23182:9:125"}],"functionName":{"name":"sub","nativeSrc":"23169:3:125","nodeType":"YulIdentifier","src":"23169:3:125"},"nativeSrc":"23169:23:125","nodeType":"YulFunctionCall","src":"23169:23:125"},{"kind":"number","nativeSrc":"23194:2:125","nodeType":"YulLiteral","src":"23194:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"23165:3:125","nodeType":"YulIdentifier","src":"23165:3:125"},"nativeSrc":"23165:32:125","nodeType":"YulFunctionCall","src":"23165:32:125"},"nativeSrc":"23162:52:125","nodeType":"YulIf","src":"23162:52:125"},{"nativeSrc":"23223:26:125","nodeType":"YulAssignment","src":"23223:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"23239:9:125","nodeType":"YulIdentifier","src":"23239:9:125"}],"functionName":{"name":"mload","nativeSrc":"23233:5:125","nodeType":"YulIdentifier","src":"23233:5:125"},"nativeSrc":"23233:16:125","nodeType":"YulFunctionCall","src":"23233:16:125"},"variableNames":[{"name":"value0","nativeSrc":"23223:6:125","nodeType":"YulIdentifier","src":"23223:6:125"}]}]},"name":"abi_decode_tuple_t_bytes32_fromMemory","nativeSrc":"23071:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23118:9:125","nodeType":"YulTypedName","src":"23118:9:125","type":""},{"name":"dataEnd","nativeSrc":"23129:7:125","nodeType":"YulTypedName","src":"23129:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"23141:6:125","nodeType":"YulTypedName","src":"23141:6:125","type":""}],"src":"23071:184:125"},{"body":{"nativeSrc":"23389:119:125","nodeType":"YulBlock","src":"23389:119:125","statements":[{"nativeSrc":"23399:26:125","nodeType":"YulAssignment","src":"23399:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"23411:9:125","nodeType":"YulIdentifier","src":"23411:9:125"},{"kind":"number","nativeSrc":"23422:2:125","nodeType":"YulLiteral","src":"23422:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23407:3:125","nodeType":"YulIdentifier","src":"23407:3:125"},"nativeSrc":"23407:18:125","nodeType":"YulFunctionCall","src":"23407:18:125"},"variableNames":[{"name":"tail","nativeSrc":"23399:4:125","nodeType":"YulIdentifier","src":"23399:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"23441:9:125","nodeType":"YulIdentifier","src":"23441:9:125"},{"name":"value0","nativeSrc":"23452:6:125","nodeType":"YulIdentifier","src":"23452:6:125"}],"functionName":{"name":"mstore","nativeSrc":"23434:6:125","nodeType":"YulIdentifier","src":"23434:6:125"},"nativeSrc":"23434:25:125","nodeType":"YulFunctionCall","src":"23434:25:125"},"nativeSrc":"23434:25:125","nodeType":"YulExpressionStatement","src":"23434:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23479:9:125","nodeType":"YulIdentifier","src":"23479:9:125"},{"kind":"number","nativeSrc":"23490:2:125","nodeType":"YulLiteral","src":"23490:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23475:3:125","nodeType":"YulIdentifier","src":"23475:3:125"},"nativeSrc":"23475:18:125","nodeType":"YulFunctionCall","src":"23475:18:125"},{"name":"value1","nativeSrc":"23495:6:125","nodeType":"YulIdentifier","src":"23495:6:125"}],"functionName":{"name":"mstore","nativeSrc":"23468:6:125","nodeType":"YulIdentifier","src":"23468:6:125"},"nativeSrc":"23468:34:125","nodeType":"YulFunctionCall","src":"23468:34:125"},"nativeSrc":"23468:34:125","nodeType":"YulExpressionStatement","src":"23468:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"23260:248:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23350:9:125","nodeType":"YulTypedName","src":"23350:9:125","type":""},{"name":"value1","nativeSrc":"23361:6:125","nodeType":"YulTypedName","src":"23361:6:125","type":""},{"name":"value0","nativeSrc":"23369:6:125","nodeType":"YulTypedName","src":"23369:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"23380:4:125","nodeType":"YulTypedName","src":"23380:4:125","type":""}],"src":"23260:248:125"},{"body":{"nativeSrc":"23545:95:125","nodeType":"YulBlock","src":"23545:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23562:1:125","nodeType":"YulLiteral","src":"23562:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"23569:3:125","nodeType":"YulLiteral","src":"23569:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"23574:10:125","nodeType":"YulLiteral","src":"23574:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"23565:3:125","nodeType":"YulIdentifier","src":"23565:3:125"},"nativeSrc":"23565:20:125","nodeType":"YulFunctionCall","src":"23565:20:125"}],"functionName":{"name":"mstore","nativeSrc":"23555:6:125","nodeType":"YulIdentifier","src":"23555:6:125"},"nativeSrc":"23555:31:125","nodeType":"YulFunctionCall","src":"23555:31:125"},"nativeSrc":"23555:31:125","nodeType":"YulExpressionStatement","src":"23555:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"23602:1:125","nodeType":"YulLiteral","src":"23602:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"23605:4:125","nodeType":"YulLiteral","src":"23605:4:125","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"23595:6:125","nodeType":"YulIdentifier","src":"23595:6:125"},"nativeSrc":"23595:15:125","nodeType":"YulFunctionCall","src":"23595:15:125"},"nativeSrc":"23595:15:125","nodeType":"YulExpressionStatement","src":"23595:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"23626:1:125","nodeType":"YulLiteral","src":"23626:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"23629:4:125","nodeType":"YulLiteral","src":"23629:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"23619:6:125","nodeType":"YulIdentifier","src":"23619:6:125"},"nativeSrc":"23619:15:125","nodeType":"YulFunctionCall","src":"23619:15:125"},"nativeSrc":"23619:15:125","nodeType":"YulExpressionStatement","src":"23619:15:125"}]},"name":"panic_error_0x12","nativeSrc":"23513:127:125","nodeType":"YulFunctionDefinition","src":"23513:127:125"},{"body":{"nativeSrc":"23752:184:125","nodeType":"YulBlock","src":"23752:184:125","statements":[{"body":{"nativeSrc":"23798:16:125","nodeType":"YulBlock","src":"23798:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23807:1:125","nodeType":"YulLiteral","src":"23807:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"23810:1:125","nodeType":"YulLiteral","src":"23810:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23800:6:125","nodeType":"YulIdentifier","src":"23800:6:125"},"nativeSrc":"23800:12:125","nodeType":"YulFunctionCall","src":"23800:12:125"},"nativeSrc":"23800:12:125","nodeType":"YulExpressionStatement","src":"23800:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"23773:7:125","nodeType":"YulIdentifier","src":"23773:7:125"},{"name":"headStart","nativeSrc":"23782:9:125","nodeType":"YulIdentifier","src":"23782:9:125"}],"functionName":{"name":"sub","nativeSrc":"23769:3:125","nodeType":"YulIdentifier","src":"23769:3:125"},"nativeSrc":"23769:23:125","nodeType":"YulFunctionCall","src":"23769:23:125"},{"kind":"number","nativeSrc":"23794:2:125","nodeType":"YulLiteral","src":"23794:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"23765:3:125","nodeType":"YulIdentifier","src":"23765:3:125"},"nativeSrc":"23765:32:125","nodeType":"YulFunctionCall","src":"23765:32:125"},"nativeSrc":"23762:52:125","nodeType":"YulIf","src":"23762:52:125"},{"nativeSrc":"23823:29:125","nodeType":"YulVariableDeclaration","src":"23823:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"23842:9:125","nodeType":"YulIdentifier","src":"23842:9:125"}],"functionName":{"name":"mload","nativeSrc":"23836:5:125","nodeType":"YulIdentifier","src":"23836:5:125"},"nativeSrc":"23836:16:125","nodeType":"YulFunctionCall","src":"23836:16:125"},"variables":[{"name":"value","nativeSrc":"23827:5:125","nodeType":"YulTypedName","src":"23827:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"23900:5:125","nodeType":"YulIdentifier","src":"23900:5:125"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"23861:38:125","nodeType":"YulIdentifier","src":"23861:38:125"},"nativeSrc":"23861:45:125","nodeType":"YulFunctionCall","src":"23861:45:125"},"nativeSrc":"23861:45:125","nodeType":"YulExpressionStatement","src":"23861:45:125"},{"nativeSrc":"23915:15:125","nodeType":"YulAssignment","src":"23915:15:125","value":{"name":"value","nativeSrc":"23925:5:125","nodeType":"YulIdentifier","src":"23925:5:125"},"variableNames":[{"name":"value0","nativeSrc":"23915:6:125","nodeType":"YulIdentifier","src":"23915:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IPremiumsAccount_$14743_fromMemory","nativeSrc":"23645:291:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23718:9:125","nodeType":"YulTypedName","src":"23718:9:125","type":""},{"name":"dataEnd","nativeSrc":"23729:7:125","nodeType":"YulTypedName","src":"23729:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"23741:6:125","nodeType":"YulTypedName","src":"23741:6:125","type":""}],"src":"23645:291:125"},{"body":{"nativeSrc":"24043:184:125","nodeType":"YulBlock","src":"24043:184:125","statements":[{"body":{"nativeSrc":"24089:16:125","nodeType":"YulBlock","src":"24089:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24098:1:125","nodeType":"YulLiteral","src":"24098:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"24101:1:125","nodeType":"YulLiteral","src":"24101:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24091:6:125","nodeType":"YulIdentifier","src":"24091:6:125"},"nativeSrc":"24091:12:125","nodeType":"YulFunctionCall","src":"24091:12:125"},"nativeSrc":"24091:12:125","nodeType":"YulExpressionStatement","src":"24091:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"24064:7:125","nodeType":"YulIdentifier","src":"24064:7:125"},{"name":"headStart","nativeSrc":"24073:9:125","nodeType":"YulIdentifier","src":"24073:9:125"}],"functionName":{"name":"sub","nativeSrc":"24060:3:125","nodeType":"YulIdentifier","src":"24060:3:125"},"nativeSrc":"24060:23:125","nodeType":"YulFunctionCall","src":"24060:23:125"},{"kind":"number","nativeSrc":"24085:2:125","nodeType":"YulLiteral","src":"24085:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"24056:3:125","nodeType":"YulIdentifier","src":"24056:3:125"},"nativeSrc":"24056:32:125","nodeType":"YulFunctionCall","src":"24056:32:125"},"nativeSrc":"24053:52:125","nodeType":"YulIf","src":"24053:52:125"},{"nativeSrc":"24114:29:125","nodeType":"YulVariableDeclaration","src":"24114:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"24133:9:125","nodeType":"YulIdentifier","src":"24133:9:125"}],"functionName":{"name":"mload","nativeSrc":"24127:5:125","nodeType":"YulIdentifier","src":"24127:5:125"},"nativeSrc":"24127:16:125","nodeType":"YulFunctionCall","src":"24127:16:125"},"variables":[{"name":"value","nativeSrc":"24118:5:125","nodeType":"YulTypedName","src":"24118:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"24191:5:125","nodeType":"YulIdentifier","src":"24191:5:125"}],"functionName":{"name":"validator_revert_contract_IUnderwriter","nativeSrc":"24152:38:125","nodeType":"YulIdentifier","src":"24152:38:125"},"nativeSrc":"24152:45:125","nodeType":"YulFunctionCall","src":"24152:45:125"},"nativeSrc":"24152:45:125","nodeType":"YulExpressionStatement","src":"24152:45:125"},{"nativeSrc":"24206:15:125","nodeType":"YulAssignment","src":"24206:15:125","value":{"name":"value","nativeSrc":"24216:5:125","nodeType":"YulIdentifier","src":"24216:5:125"},"variableNames":[{"name":"value0","nativeSrc":"24206:6:125","nodeType":"YulIdentifier","src":"24206:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory","nativeSrc":"23941:286:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24009:9:125","nodeType":"YulTypedName","src":"24009:9:125","type":""},{"name":"dataEnd","nativeSrc":"24020:7:125","nodeType":"YulTypedName","src":"24020:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"24032:6:125","nodeType":"YulTypedName","src":"24032:6:125","type":""}],"src":"23941:286:125"}]},"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 validator_revert_contract_IUnderwriter(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$_IUnderwriter_$14830(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IUnderwriter(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptrt_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := calldataload(headStart)\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, shl(5, length)), 0x20), dataEnd) { revert(0, 0) }\n        value0 := add(_1, 0x20)\n        value1 := length\n        let value := calldataload(add(headStart, 0x20))\n        validator_revert_contract_IUnderwriter(value)\n        value2 := value\n    }\n    function validator_revert_uint40(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint40(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint40(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 allocate_memory_2372() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xe0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory_2373() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0180)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_uint40t_uint40t_struct$_Params_$7718_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        let _1 := sub(dataEnd, headStart)\n        if slt(_1, 352) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_uint40(value_2)\n        value2 := value_2\n        let value_3 := calldataload(add(headStart, 96))\n        validator_revert_uint40(value_3)\n        value3 := value_3\n        if slt(add(_1, not(127)), 0xe0) { revert(0, 0) }\n        let value_4 := allocate_memory_2372()\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(value_4, value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 160))\n        mstore(add(value_4, 32), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(value_4, 64), value_7)\n        let value_8 := 0\n        value_8 := calldataload(add(headStart, 0xe0))\n        mstore(add(value_4, 96), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(headStart, 256))\n        mstore(add(value_4, 128), value_9)\n        let value_10 := 0\n        value_10 := calldataload(add(headStart, 288))\n        mstore(add(value_4, 160), value_10)\n        let value_11 := 0\n        value_11 := calldataload(add(headStart, 320))\n        mstore(add(value_4, 192), value_11)\n        value4 := value_4\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_contract$_IUnderwriter_$14830t_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IUnderwriter(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IUnderwriter(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_contract$_IPolicyPool_$14638__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_bytes_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IUnderwriter(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\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 array := allocate_memory(add(and(add(length, 0x1f), not(31)), 32))\n        mstore(array, length)\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        calldatacopy(add(array, 32), add(_1, 32), length)\n        mstore(add(add(array, length), 32), 0)\n        value1 := array\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_bytes32__to_t_bytes32__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_bytes_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_bytes_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n    }\n    function abi_encode_uint40(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffff))\n    }\n    function abi_encode_struct_PolicyData(value, pos)\n    {\n        mstore(pos, mload(value))\n        mstore(add(pos, 0x20), mload(add(value, 0x20)))\n        mstore(add(pos, 0x40), mload(add(value, 0x40)))\n        mstore(add(pos, 0x60), mload(add(value, 0x60)))\n        mstore(add(pos, 0x80), mload(add(value, 0x80)))\n        mstore(add(pos, 0xa0), mload(add(value, 0xa0)))\n        mstore(add(pos, 0xc0), mload(add(value, 0xc0)))\n        mstore(add(pos, 0xe0), mload(add(value, 0xe0)))\n        mstore(add(pos, 0x0100), mload(add(value, 0x0100)))\n        mstore(add(pos, 0x0120), mload(add(value, 0x0120)))\n        let memberValue0 := mload(add(value, 0x0140))\n        abi_encode_uint40(memberValue0, add(pos, 0x0140))\n        let memberValue0_1 := mload(add(value, 0x0160))\n        abi_encode_uint40(memberValue0_1, add(pos, 0x0160))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 384)\n        abi_encode_struct_PolicyData(value0, headStart)\n    }\n    function abi_encode_tuple_t_contract$_IPremiumsAccount_$14743__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_bytes_calldata_ptrt_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n        let value := calldataload(add(headStart, 32))\n        validator_revert_contract_IUnderwriter(value)\n        value2 := value\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_tuple_t_struct$_PolicyData_$7744_calldata_ptrt_uint256(headStart, dataEnd) -> value0, value1\n    {\n        let _1 := sub(dataEnd, headStart)\n        if slt(_1, 416) { revert(0, 0) }\n        if slt(_1, 384) { revert(0, 0) }\n        value0 := headStart\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\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_contract_IUnderwriter(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_contract$_IERC20Metadata_$24925__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_contract$_IUnderwriter_$14830__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_contract$_IUnderwriter_$14830_t_contract$_IUnderwriter_$14830__to_t_address_t_address__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(160, 1), 1)))\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\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_tuple_t_rational_1_by_1__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_address_t_bytes_calldata_ptr__to_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), 64)\n        mstore(add(headStart, 64), value2)\n        calldatacopy(add(headStart, 96), value1, value2)\n        mstore(add(add(headStart, value2), 96), 0)\n        tail := add(add(headStart, and(add(value2, 31), not(31))), 96)\n    }\n    function abi_decode_uint40_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_uint40(value)\n    }\n    function abi_decode_struct_PolicyData_fromMemory(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0x0180) { revert(0, 0) }\n        value := allocate_memory_2373()\n        let value_1 := 0\n        value_1 := mload(headStart)\n        mstore(value, value_1)\n        let value_2 := 0\n        value_2 := mload(add(headStart, 32))\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := mload(add(headStart, 64))\n        mstore(add(value, 64), value_3)\n        let value_4 := 0\n        value_4 := mload(add(headStart, 96))\n        mstore(add(value, 96), value_4)\n        let value_5 := 0\n        value_5 := mload(add(headStart, 128))\n        mstore(add(value, 128), value_5)\n        let value_6 := 0\n        value_6 := mload(add(headStart, 160))\n        mstore(add(value, 160), value_6)\n        let value_7 := 0\n        value_7 := mload(add(headStart, 192))\n        mstore(add(value, 192), value_7)\n        let value_8 := 0\n        value_8 := mload(add(headStart, 224))\n        mstore(add(value, 224), value_8)\n        let value_9 := 0\n        value_9 := mload(add(headStart, 256))\n        mstore(add(value, 256), value_9)\n        let value_10 := 0\n        value_10 := mload(add(headStart, 288))\n        mstore(add(value, 288), value_10)\n        mstore(add(value, 320), abi_decode_uint40_fromMemory(add(headStart, 320)))\n        mstore(add(value, 352), abi_decode_uint40_fromMemory(add(headStart, 352)))\n    }\n    function abi_decode_uint96_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_struct_Params_fromMemory(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0xe0) { revert(0, 0) }\n        value := allocate_memory_2372()\n        let value_1 := 0\n        value_1 := mload(headStart)\n        mstore(value, value_1)\n        let value_2 := 0\n        value_2 := mload(add(headStart, 32))\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := mload(add(headStart, 64))\n        mstore(add(value, 64), value_3)\n        let value_4 := 0\n        value_4 := mload(add(headStart, 96))\n        mstore(add(value, 96), value_4)\n        let value_5 := 0\n        value_5 := mload(add(headStart, 128))\n        mstore(add(value, 128), value_5)\n        let value_6 := 0\n        value_6 := mload(add(headStart, 160))\n        mstore(add(value, 160), value_6)\n        let value_7 := 0\n        value_7 := mload(add(headStart, 192))\n        mstore(add(value, 192), value_7)\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$7718_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 768) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_fromMemory(headStart, dataEnd)\n        let value := 0\n        value := mload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := mload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := mload(add(headStart, 448))\n        value3 := value_2\n        let value_3 := mload(add(headStart, 480))\n        validator_revert_uint40(value_3)\n        value4 := value_3\n        value5 := abi_decode_uint96_fromMemory(add(headStart, 512))\n        value6 := abi_decode_struct_Params_fromMemory(add(headStart, 544), dataEnd)\n    }\n    function abi_encode_tuple_t_uint40_t_uint40__to_t_uint40_t_uint40__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffff))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_struct$_PolicyData_$7744_memory_ptr_t_address_t_uint96__to_t_struct$_PolicyData_$7744_memory_ptr_t_struct$_PolicyData_$7744_memory_ptr_t_address_t_uint96__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 832)\n        abi_encode_struct_PolicyData(value0, headStart)\n        abi_encode_struct_PolicyData(value1, add(headStart, 384))\n        mstore(add(headStart, 768), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 800), and(value3, 0xffffffffffffffffffffffff))\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := mload(headStart)\n        value0 := value\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 480) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData_fromMemory(headStart, dataEnd)\n        let value := 0\n        value := mload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := mload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := mload(add(headStart, 448))\n        value3 := value_2\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 480)\n        abi_encode_struct_PolicyData(value0, headStart)\n        mstore(add(headStart, 384), value1)\n        mstore(add(headStart, 416), value2)\n        mstore(add(headStart, 448), value3)\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$7718_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 384) { revert(0, 0) }\n        let value := 0\n        value := mload(headStart)\n        value0 := value\n        let value_1 := 0\n        value_1 := mload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := mload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := mload(add(headStart, 96))\n        validator_revert_uint40(value_3)\n        value3 := value_3\n        value4 := abi_decode_uint96_fromMemory(add(headStart, 128))\n        value5 := abi_decode_struct_Params_fromMemory(add(headStart, 160), dataEnd)\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_address_t_address_t_uint96__to_t_struct$_PolicyData_$7744_memory_ptr_t_address_t_address_t_uint96__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 480)\n        abi_encode_struct_PolicyData(value0, headStart)\n        mstore(add(headStart, 384), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 416), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 448), and(value3, 0xffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$7744_calldata_ptr_t_uint256__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 416)\n        let value := 0\n        value := calldataload(value0)\n        mstore(headStart, value)\n        let value_1 := 0\n        value_1 := calldataload(add(value0, 0x20))\n        mstore(add(headStart, 0x20), value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(value0, 0x40))\n        mstore(add(headStart, 0x40), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(value0, 0x60))\n        mstore(add(headStart, 0x60), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(value0, 0x80))\n        mstore(add(headStart, 0x80), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(value0, 0xa0))\n        mstore(add(headStart, 0xa0), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(value0, 0xc0))\n        mstore(add(headStart, 0xc0), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(value0, 0xe0))\n        mstore(add(headStart, 0xe0), value_7)\n        let value_8 := 0\n        value_8 := calldataload(add(value0, 0x0100))\n        mstore(add(headStart, 0x0100), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(value0, 0x0120))\n        mstore(add(headStart, 0x0120), value_9)\n        let memberValue0 := abi_decode_uint40(add(value0, 0x0140))\n        abi_encode_uint40(memberValue0, add(headStart, 0x0140))\n        let memberValue0_1 := abi_decode_uint40(add(value0, 0x0160))\n        abi_encode_uint40(memberValue0_1, add(headStart, 0x0160))\n        mstore(add(headStart, 384), value1)\n    }\n    function abi_encode_tuple_t_address_t_address__to_t_address_t_address__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(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IUnderwriter(value)\n        value0 := value\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 checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function checked_sub_t_uint40(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffffff), and(y, 0xffffffffff))\n        if gt(diff, 0xffffffffff) { panic_error_0x11() }\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        product := mul(x, y)\n        if iszero(or(iszero(x), eq(y, div(product, x)))) { panic_error_0x11() }\n    }\n    function abi_decode_tuple_t_bytes32_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_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 panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function abi_decode_tuple_t_contract$_IPremiumsAccount_$14743_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IUnderwriter(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_contract$_IPolicyPool_$14638_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IUnderwriter(value)\n        value0 := value\n    }\n}","id":125,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"10959":[{"length":32,"start":471},{"length":32,"start":1822},{"length":32,"start":2094},{"length":32,"start":2560},{"length":32,"start":2723},{"length":32,"start":2988},{"length":32,"start":5093}],"13532":[{"length":32,"start":653},{"length":32,"start":4761}],"23450":[{"length":32,"start":3803},{"length":32,"start":3844},{"length":32,"start":4174}]},"linkReferences":{},"object":"608060405260043610610105575f3560e01c806368beecf911610092578063ad3cb1cc11610062578063ad3cb1cc146102ef578063bd644c561461032c578063deaa59df1461034b578063e5a6b10f1461036a578063f00db2601461037e575f5ffd5b806368beecf91461025357806373a952e81461027f57806373d0efd0146102b15780638dab1952146102d0575f5ffd5b8063485cc955116100d8578063485cc955146101aa5780634d15eb03146101c95780634f1ef2861461020f578063521eb2731461022257806352d1902d1461023f575f5ffd5b806301ffc9a71461010957806308bb5f7b1461013d5780631f0f3e181461015e57806323d09ac91461017d575b5f5ffd5b348015610114575f5ffd5b50610128610123366004611650565b61039b565b60405190151581526020015b60405180910390f35b348015610148575f5ffd5b5061015c61015736600461168b565b6103c6565b005b348015610169575f5ffd5b5061015c6101783660046116a6565b610469565b348015610188575f5ffd5b5061019c6101973660046117d7565b6104af565b604051908152602001610134565b3480156101b5575f5ffd5b5061015c6101c4366004611889565b6104cb565b3480156101d4575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610134565b61015c61021d3660046118c0565b6105c4565b34801561022d575f5ffd5b506033546001600160a01b03166101f7565b34801561024a575f5ffd5b5061019c6105e3565b34801561025e575f5ffd5b5061027261026d3660046119a9565b6105fe565b6040516101349190611a7e565b34801561028a575f5ffd5b507f00000000000000000000000000000000000000000000000000000000000000006101f7565b3480156102bc575f5ffd5b5061015c6102cb3660046119a9565b6107a8565b3480156102db575f5ffd5b506102726102ea366004611a8d565b6108b3565b3480156102fa575f5ffd5b5061031f604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516101349190611ad4565b348015610337575f5ffd5b5061015c610346366004611b09565b610a8c565b348015610356575f5ffd5b5061015c61036536600461168b565b610b0b565b348015610375575f5ffd5b506101f7610ba9565b348015610389575f5ffd5b506032546001600160a01b03166101f7565b5f6103a582610c2f565b806103c057506001600160e01b031982166321b7e09b60e01b145b92915050565b806001600160a01b0381166103ff57604051633f8317d160e21b81526001600160a01b0390911660048201526024015b60405180910390fd5b50603254604080516001600160a01b03928316815291831660208301527fae536502f25a82de70abed467008489d54fa0cbf58cdc51718efe6d49406724f910160405180910390a1603280546001600160a01b0319166001600160a01b0392909216919091179055565b5f5b828110156104a9576104a084848381811061048857610488611b3a565b905060200281019061049a9190611b4e565b846108b3565b5060010161046b565b50505050565b5f6104bd8287878688610c64565b60e001519695505050505050565b5f6104d4610e8e565b805490915060ff600160401b82041615906001600160401b03165f811580156104fa5750825b90505f826001600160401b031660011480156105155750303b155b905081158015610523575080155b156105415760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561056b57845460ff60401b1916600160401b1785555b6105758787610eb6565b83156105bb57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50505050505050565b6105cc610ed0565b6105d582610f76565b6105df8282610f82565b5050565b5f6105ec611043565b505f5160206120255f395f51905f5290565b6106066115ed565b603254604051634dd4a16b60e11b81525f918291829182918291829182916001600160a01b031690639ba942d6906106469030908e908e90600401611b90565b61030060405180830381865afa158015610662573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106869190611cf8565b96509650965096509650965096505f1985036106b1576106ae868589610140015186856104af565b94505b4264ffffffffff168364ffffffffff1610156106f15760405163a67fcb1d60e01b815264ffffffffff8085166004830152421660248201526044016103f6565b61070481868887878c610140015161108c565b60405163663d833760e01b81529098506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063663d833790610759908a908c9033908890600401611d71565b6020604051808303815f875af1158015610775573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107999190611db9565b88525050505050505092915050565b60325460405163197c2bfd60e11b81525f918291829182916001600160a01b03909116906332f857fa906107e49030908a908a90600401611b90565b6101e060405180830381865afa158015610800573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108249190611dd0565b93509350935093507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316636f520b73858585856040518563ffffffff1660e01b815260040161087e9493929190611e0f565b5f604051808303815f87803b158015610895575f5ffd5b505af11580156108a7573d5f5f3e3d5ffd5b50505050505050505050565b6108bb6115ed565b603254604051635d04bd1560e11b81525f91829182918291829182916001600160a01b039091169063ba097a2a906108fb9030908e908e90600401611b90565b61018060405180830381865afa158015610917573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061093b9190611e3c565b9550955095509550955095505f4290505f1986036109635761096087868387866104af565b95505b838164ffffffffff808216908316116109a05760405163a67fcb1d60e01b815264ffffffffff9283166004820152911660248201526044016103f6565b508990506001600160a01b0381166109d757604051632c74914160e11b81526001600160a01b0390911660048201526024016103f6565b506109e682878988888661108c565b604051630d100acb60e01b81529098506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690630d100acb90610a3b908b9033908e908990600401611e9d565b6020604051808303815f875af1158015610a57573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7b9190611db9565b8852505050505050505b9392505050565b604051635eb2262b60e11b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063bd644c5690610ada9085908590600401611edf565b5f604051808303815f87803b158015610af1575f5ffd5b505af1158015610b03573d5f5f3e3d5ffd5b505050505050565b806001600160a01b038116610b3f57604051633146914d60e11b81526001600160a01b0390911660048201526024016103f6565b50603354604080516001600160a01b03928316815291831660208301527fe3d815eb4e0fdd9b02285235cb46b09f34bee9bd0eb8d8dc3a1fe84694079bc2910160405180910390a1603380546001600160a01b0319166001600160a01b0392909216919091179055565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c06573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c2a9190611f87565b905090565b5f6001600160e01b031982166301ffc9a760e01b14806103c057506001600160e01b03198216634d15eb0360e01b1492915050565b610ca46040518061010001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b8551610cc590670de0b6b3a7640000610cbe888883611193565b9190611193565b81526020860151610ce0908690670de0b6b3a7640000611193565b6020820181905281511015610d0a578051602082018051610d02908390611fb6565b905250610d11565b5f60208201525b6040860151610d2a908690670de0b6b3a7640000611193565b604082015260208101518151610d409190611fc9565b81604001511115610d755760208101518151610d5c9190611fc9565b81604001818151610d6d9190611fb6565b905250610d7c565b5f60408201525b610dc1610d898385611fdc565b64ffffffffff168760a00151610d9f9190611ff9565b610db56301e13380670de0b6b3a7640000611ff9565b60208401519190611193565b6060820152610e0b610dd38385611fdc565b64ffffffffff168760c00151610de99190611ff9565b610dff6301e13380670de0b6b3a7640000611ff9565b60408401519190611193565b6080820181905260608201515f91610e2291611fc9565b6080880151909150610e3e908290670de0b6b3a7640000611193565b60608801518351610e5791670de0b6b3a7640000611193565b610e619190611fc9565b60a0830181905282518291610e7591611fc9565b610e7f9190611fc9565b60e08301525095945050505050565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a006103c0565b610ebe611243565b610ec6611268565b6105df8282611270565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480610f5657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610f4a5f5160206120255f395f51905f52546001600160a01b031690565b6001600160a01b031614155b15610f745760405163703e46dd60e11b815260040160405180910390fd5b565b610f7f8161128a565b50565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015610fdc575060408051601f3d908101601f19168201909252610fd991810190611db9565b60015b61100457604051634c9c8ce360e01b81526001600160a01b03831660048201526024016103f6565b5f5160206120255f395f51905f52811461103457604051632a87526960e21b8152600481018290526024016103f6565b61103e8383611348565b505050565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f745760405163703e46dd60e11b815260040160405180910390fd5b6110946115ed565b85858082106110bf5760405163319308d960e11b8152600481019290925260248201526044016103f6565b50506110c96115ed565b602081018690526080810185905264ffffffffff80841661014083015284166101608201525f6110fc8988888888610c64565b805160a0808501919091526020820151604080860191909152820151606080860191909152820151610100850152608082015161012085015281015160c084015260e08101519091508890818111156111715760405163fc09662760e01b8152600481019290925260248201526044016103f6565b505060e08101516111829089611fb6565b60e083015250979650505050505050565b5f5f5f6111a0868661139d565b91509150815f036111c4578381816111ba576111ba612010565b0492505050610a85565b8184116111db576111db60038515026011186113b9565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b61124b6113ca565b610f7457604051631afcd79f60e31b815260040160405180910390fd5b610f74611243565b611278611243565b61128181610b0b565b6105df826103c6565b611293816113e3565b5f8190507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03166373a952e86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112fd573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113219190611f87565b6001600160a01b0316146105df5760405163050f87e160e21b815260040160405180910390fd5b61135182611494565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156113955761103e82826114f7565b6105df611597565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f6113d3610e8e565b54600160401b900460ff16919050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316634d15eb036040518163ffffffff1660e01b8152600401602060405180830381865afa158015611449573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061146d9190611f87565b6001600160a01b031614610f7f5760405163d2b3d33f60e01b815260040160405180910390fd5b806001600160a01b03163b5f036114c957604051634c9c8ce360e01b81526001600160a01b03821660048201526024016103f6565b5f5160206120255f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f61150484846115b6565b905080801561152557505f3d118061152557505f846001600160a01b03163b115b1561153a576115326115c9565b9150506103c0565b801561156457604051639996b31560e01b81526001600160a01b03851660048201526024016103f6565b3d15611577576115726115e2565b611590565b60405163d6bda27560e01b815260040160405180910390fd5b5092915050565b3415610f745760405163b398979f60e01b815260040160405180910390fd5b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b6040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b5f60208284031215611660575f5ffd5b81356001600160e01b031981168114610a85575f5ffd5b6001600160a01b0381168114610f7f575f5ffd5b5f6020828403121561169b575f5ffd5b8135610a8581611677565b5f5f5f604084860312156116b8575f5ffd5b83356001600160401b038111156116cd575f5ffd5b8401601f810186136116dd575f5ffd5b80356001600160401b038111156116f2575f5ffd5b8660208260051b8401011115611706575f5ffd5b60209182019450925084013561171b81611677565b809150509250925092565b64ffffffffff81168114610f7f575f5ffd5b803561174381611726565b919050565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b038111828210171561177e5761177e611748565b60405290565b60405161018081016001600160401b038111828210171561177e5761177e611748565b604051601f8201601f191681016001600160401b03811182821017156117cf576117cf611748565b604052919050565b5f5f5f5f5f8587036101608112156117ed575f5ffd5b8635955060208701359450604087013561180681611726565b9350606087013561181681611726565b925060e0607f1982011215611829575f5ffd5b5061183261175c565b608087810135825260a080890135602084015260c0808a0135604085015260e08a013560608501526101008a0135928401929092526101208901359083015261014090970135968101969096525092959194509290565b5f5f6040838503121561189a575f5ffd5b82356118a581611677565b915060208301356118b581611677565b809150509250929050565b5f5f604083850312156118d1575f5ffd5b82356118dc81611677565b915060208301356001600160401b038111156118f6575f5ffd5b8301601f81018513611906575f5ffd5b80356001600160401b0381111561191f5761191f611748565b611932601f8201601f19166020016117a7565b818152866020838501011115611946575f5ffd5b816020840160208301375f602083830101528093505050509250929050565b5f5f83601f840112611975575f5ffd5b5081356001600160401b0381111561198b575f5ffd5b6020830191508360208285010111156119a2575f5ffd5b9250929050565b5f5f602083850312156119ba575f5ffd5b82356001600160401b038111156119cf575f5ffd5b6119db85828601611965565b90969095509350505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e0830152610100810151610100830152610120810151610120830152610140810151611a6361014084018264ffffffffff169052565b5061016081015161103e61016084018264ffffffffff169052565b61018081016103c082846119e7565b5f5f5f60408486031215611a9f575f5ffd5b83356001600160401b03811115611ab4575f5ffd5b611ac086828701611965565b909450925050602084013561171b81611677565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f5f8284036101a0811215611b1c575f5ffd5b610180811215611b2a575f5ffd5b5091936101808501359350915050565b634e487b7160e01b5f52603260045260245ffd5b5f5f8335601e19843603018112611b63575f5ffd5b8301803591506001600160401b03821115611b7c575f5ffd5b6020019150368190038213156119a2575f5ffd5b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b805161174381611726565b5f6101808284031215611beb575f5ffd5b611bf3611784565b825181526020808401519082015260408084015190820152606080840151908201526080808401519082015260a0808401519082015260c0808401519082015260e08084015190820152610100808401519082015261012080840151908201529050611c626101408301611bcf565b610140820152611c756101608301611bcf565b61016082015292915050565b80516001600160601b0381168114611743575f5ffd5b5f60e08284031215611ca7575f5ffd5b611caf61175c565b825181526020808401519082015260408084015190820152606080840151908201526080808401519082015260a0808401519082015260c0928301519281019290925250919050565b5f5f5f5f5f5f5f610300888a031215611d0f575f5ffd5b611d198989611bda565b6101808901516101a08a01516101c08b01516101e08c0151939a5091985096509450611d4481611726565b9250611d536102008901611c81565b9150611d63896102208a01611c97565b905092959891949750929550565b6103408101611d8082876119e7565b611d8e6101808301866119e7565b6001600160a01b03939093166103008201526001600160601b03919091166103209091015292915050565b5f60208284031215611dc9575f5ffd5b5051919050565b5f5f5f5f6101e08587031215611de4575f5ffd5b611dee8686611bda565b6101808601516101a08701516101c090970151919890975090945092505050565b6101e08101611e1e82876119e7565b84610180830152836101a0830152826101c083015295945050505050565b5f5f5f5f5f5f6101808789031215611e52575f5ffd5b86516020880151604089015160608a01519298509096509450611e7481611726565b9250611e8260808801611c81565b9150611e918860a08901611c97565b90509295509295509295565b6101e08101611eac82876119e7565b6001600160a01b03948516610180830152929093166101a08401526001600160601b03166101c090920191909152919050565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e08084013590820152610100808401359082015261012080840135908201526101a08101611f516101408501611738565b64ffffffffff16610140830152611f6b6101608501611738565b64ffffffffff1661016083015261018090910191909152919050565b5f60208284031215611f97575f5ffd5b8151610a8581611677565b634e487b7160e01b5f52601160045260245ffd5b818103818111156103c0576103c0611fa2565b808201808211156103c0576103c0611fa2565b64ffffffffff82811682821603908111156103c0576103c0611fa2565b80820281158282048414176103c0576103c0611fa2565b634e487b7160e01b5f52601260045260245ffdfe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca264697066735822122081525ec86a26307c33f3baebee28f99f4ba0b3b4905897cf439260de42902ee064736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x105 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x68BEECF9 GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xAD3CB1CC GT PUSH2 0x62 JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x2EF JUMPI DUP1 PUSH4 0xBD644C56 EQ PUSH2 0x32C JUMPI DUP1 PUSH4 0xDEAA59DF EQ PUSH2 0x34B JUMPI DUP1 PUSH4 0xE5A6B10F EQ PUSH2 0x36A JUMPI DUP1 PUSH4 0xF00DB260 EQ PUSH2 0x37E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x68BEECF9 EQ PUSH2 0x253 JUMPI DUP1 PUSH4 0x73A952E8 EQ PUSH2 0x27F JUMPI DUP1 PUSH4 0x73D0EFD0 EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0x8DAB1952 EQ PUSH2 0x2D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x485CC955 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0x485CC955 EQ PUSH2 0x1AA JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x1C9 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x20F JUMPI DUP1 PUSH4 0x521EB273 EQ PUSH2 0x222 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x23F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x109 JUMPI DUP1 PUSH4 0x8BB5F7B EQ PUSH2 0x13D JUMPI DUP1 PUSH4 0x1F0F3E18 EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x23D09AC9 EQ PUSH2 0x17D JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x114 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x128 PUSH2 0x123 CALLDATASIZE PUSH1 0x4 PUSH2 0x1650 JUMP JUMPDEST PUSH2 0x39B 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 0x148 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x157 CALLDATASIZE PUSH1 0x4 PUSH2 0x168B JUMP JUMPDEST PUSH2 0x3C6 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x169 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x178 CALLDATASIZE PUSH1 0x4 PUSH2 0x16A6 JUMP JUMPDEST PUSH2 0x469 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x188 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x19C PUSH2 0x197 CALLDATASIZE PUSH1 0x4 PUSH2 0x17D7 JUMP JUMPDEST PUSH2 0x4AF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x134 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x1C4 CALLDATASIZE PUSH1 0x4 PUSH2 0x1889 JUMP JUMPDEST PUSH2 0x4CB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1D4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x134 JUMP JUMPDEST PUSH2 0x15C PUSH2 0x21D CALLDATASIZE PUSH1 0x4 PUSH2 0x18C0 JUMP JUMPDEST PUSH2 0x5C4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x22D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x33 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1F7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x24A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x19C PUSH2 0x5E3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x272 PUSH2 0x26D CALLDATASIZE PUSH1 0x4 PUSH2 0x19A9 JUMP JUMPDEST PUSH2 0x5FE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x1A7E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x28A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x1F7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x2CB CALLDATASIZE PUSH1 0x4 PUSH2 0x19A9 JUMP JUMPDEST PUSH2 0x7A8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2DB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x272 PUSH2 0x2EA CALLDATASIZE PUSH1 0x4 PUSH2 0x1A8D JUMP JUMPDEST PUSH2 0x8B3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x31F PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x1AD4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x337 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x346 CALLDATASIZE PUSH1 0x4 PUSH2 0x1B09 JUMP JUMPDEST PUSH2 0xA8C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x356 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x15C PUSH2 0x365 CALLDATASIZE PUSH1 0x4 PUSH2 0x168B JUMP JUMPDEST PUSH2 0xB0B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x375 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1F7 PUSH2 0xBA9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x389 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x32 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1F7 JUMP JUMPDEST PUSH0 PUSH2 0x3A5 DUP3 PUSH2 0xC2F JUMP JUMPDEST DUP1 PUSH2 0x3C0 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x21B7E09B PUSH1 0xE0 SHL EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x3FF JUMPI PUSH1 0x40 MLOAD PUSH4 0x3F8317D1 PUSH1 0xE2 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 PUSH1 0x32 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0xAE536502F25A82DE70ABED467008489D54FA0CBF58CDC51718EFE6D49406724F SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x32 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4A9 JUMPI PUSH2 0x4A0 DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x488 JUMPI PUSH2 0x488 PUSH2 0x1B3A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x49A SWAP2 SWAP1 PUSH2 0x1B4E JUMP JUMPDEST DUP5 PUSH2 0x8B3 JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x46B JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x4BD DUP3 DUP8 DUP8 DUP7 DUP9 PUSH2 0xC64 JUMP JUMPDEST PUSH1 0xE0 ADD MLOAD SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x4D4 PUSH2 0xE8E JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x4FA JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x515 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x523 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x541 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x56B JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x575 DUP8 DUP8 PUSH2 0xEB6 JUMP JUMPDEST DUP4 ISZERO PUSH2 0x5BB JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x5CC PUSH2 0xED0 JUMP JUMPDEST PUSH2 0x5D5 DUP3 PUSH2 0xF76 JUMP JUMPDEST PUSH2 0x5DF DUP3 DUP3 PUSH2 0xF82 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x5EC PUSH2 0x1043 JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2025 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH2 0x606 PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x32 SLOAD PUSH1 0x40 MLOAD PUSH4 0x4DD4A16B PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x9BA942D6 SWAP1 PUSH2 0x646 SWAP1 ADDRESS SWAP1 DUP15 SWAP1 DUP15 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B90 JUMP JUMPDEST PUSH2 0x300 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x662 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 0x686 SWAP2 SWAP1 PUSH2 0x1CF8 JUMP JUMPDEST SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP PUSH0 NOT DUP6 SUB PUSH2 0x6B1 JUMPI PUSH2 0x6AE DUP7 DUP6 DUP10 PUSH2 0x140 ADD MLOAD DUP7 DUP6 PUSH2 0x4AF JUMP JUMPDEST SWAP5 POP JUMPDEST TIMESTAMP PUSH5 0xFFFFFFFFFF AND DUP4 PUSH5 0xFFFFFFFFFF AND LT ISZERO PUSH2 0x6F1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA67FCB1D PUSH1 0xE0 SHL DUP2 MSTORE PUSH5 0xFFFFFFFFFF DUP1 DUP6 AND PUSH1 0x4 DUP4 ADD MSTORE TIMESTAMP AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0x704 DUP2 DUP7 DUP9 DUP8 DUP8 DUP13 PUSH2 0x140 ADD MLOAD PUSH2 0x108C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x663D8337 PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP9 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x663D8337 SWAP1 PUSH2 0x759 SWAP1 DUP11 SWAP1 DUP13 SWAP1 CALLER SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x1D71 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x775 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 0x799 SWAP2 SWAP1 PUSH2 0x1DB9 JUMP JUMPDEST DUP9 MSTORE POP POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x32 SLOAD PUSH1 0x40 MLOAD PUSH4 0x197C2BFD PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x32F857FA SWAP1 PUSH2 0x7E4 SWAP1 ADDRESS SWAP1 DUP11 SWAP1 DUP11 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B90 JUMP JUMPDEST PUSH2 0x1E0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x800 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 0x824 SWAP2 SWAP1 PUSH2 0x1DD0 JUMP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x6F520B73 DUP6 DUP6 DUP6 DUP6 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x87E SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1E0F JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x895 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x8A7 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x8BB PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x32 SLOAD PUSH1 0x40 MLOAD PUSH4 0x5D04BD15 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0xBA097A2A SWAP1 PUSH2 0x8FB SWAP1 ADDRESS SWAP1 DUP15 SWAP1 DUP15 SWAP1 PUSH1 0x4 ADD PUSH2 0x1B90 JUMP JUMPDEST PUSH2 0x180 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x917 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 0x93B SWAP2 SWAP1 PUSH2 0x1E3C JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP SWAP6 POP SWAP6 POP SWAP6 POP PUSH0 TIMESTAMP SWAP1 POP PUSH0 NOT DUP7 SUB PUSH2 0x963 JUMPI PUSH2 0x960 DUP8 DUP7 DUP4 DUP8 DUP7 PUSH2 0x4AF JUMP JUMPDEST SWAP6 POP JUMPDEST DUP4 DUP2 PUSH5 0xFFFFFFFFFF DUP1 DUP3 AND SWAP1 DUP4 AND GT PUSH2 0x9A0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA67FCB1D PUSH1 0xE0 SHL DUP2 MSTORE PUSH5 0xFFFFFFFFFF SWAP3 DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP2 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3F6 JUMP JUMPDEST POP DUP10 SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x9D7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2C749141 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST POP PUSH2 0x9E6 DUP3 DUP8 DUP10 DUP9 DUP9 DUP7 PUSH2 0x108C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD100ACB PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP9 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0xD100ACB SWAP1 PUSH2 0xA3B SWAP1 DUP12 SWAP1 CALLER SWAP1 DUP15 SWAP1 DUP10 SWAP1 PUSH1 0x4 ADD PUSH2 0x1E9D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xA57 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 0xA7B SWAP2 SWAP1 PUSH2 0x1DB9 JUMP JUMPDEST DUP9 MSTORE POP POP POP POP POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5EB2262B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0xBD644C56 SWAP1 PUSH2 0xADA SWAP1 DUP6 SWAP1 DUP6 SWAP1 PUSH1 0x4 ADD PUSH2 0x1EDF JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xAF1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xB03 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0xB3F JUMPI PUSH1 0x40 MLOAD PUSH4 0x3146914D PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST POP PUSH1 0x33 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE PUSH32 0xE3D815EB4E0FDD9B02285235CB46B09F34BEE9BD0EB8D8DC3A1FE84694079BC2 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x33 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC06 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 0xC2A SWAP2 SWAP1 PUSH2 0x1F87 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x3C0 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x4D15EB03 PUSH1 0xE0 SHL EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xCA4 PUSH1 0x40 MLOAD DUP1 PUSH2 0x100 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP6 MLOAD PUSH2 0xCC5 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0xCBE DUP9 DUP9 DUP4 PUSH2 0x1193 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x1193 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP7 ADD MLOAD PUSH2 0xCE0 SWAP1 DUP7 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE DUP2 MLOAD LT ISZERO PUSH2 0xD0A JUMPI DUP1 MLOAD PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH2 0xD02 SWAP1 DUP4 SWAP1 PUSH2 0x1FB6 JUMP JUMPDEST SWAP1 MSTORE POP PUSH2 0xD11 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD MSTORE JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD PUSH2 0xD2A SWAP1 DUP7 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x20 DUP2 ADD MLOAD DUP2 MLOAD PUSH2 0xD40 SWAP2 SWAP1 PUSH2 0x1FC9 JUMP JUMPDEST DUP2 PUSH1 0x40 ADD MLOAD GT ISZERO PUSH2 0xD75 JUMPI PUSH1 0x20 DUP2 ADD MLOAD DUP2 MLOAD PUSH2 0xD5C SWAP2 SWAP1 PUSH2 0x1FC9 JUMP JUMPDEST DUP2 PUSH1 0x40 ADD DUP2 DUP2 MLOAD PUSH2 0xD6D SWAP2 SWAP1 PUSH2 0x1FB6 JUMP JUMPDEST SWAP1 MSTORE POP PUSH2 0xD7C JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD MSTORE JUMPDEST PUSH2 0xDC1 PUSH2 0xD89 DUP4 DUP6 PUSH2 0x1FDC JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP8 PUSH1 0xA0 ADD MLOAD PUSH2 0xD9F SWAP2 SWAP1 PUSH2 0x1FF9 JUMP JUMPDEST PUSH2 0xDB5 PUSH4 0x1E13380 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1FF9 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP2 SWAP1 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0xE0B PUSH2 0xDD3 DUP4 DUP6 PUSH2 0x1FDC JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP8 PUSH1 0xC0 ADD MLOAD PUSH2 0xDE9 SWAP2 SWAP1 PUSH2 0x1FF9 JUMP JUMPDEST PUSH2 0xDFF PUSH4 0x1E13380 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1FF9 JUMP JUMPDEST PUSH1 0x40 DUP5 ADD MLOAD SWAP2 SWAP1 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x60 DUP3 ADD MLOAD PUSH0 SWAP2 PUSH2 0xE22 SWAP2 PUSH2 0x1FC9 JUMP JUMPDEST PUSH1 0x80 DUP9 ADD MLOAD SWAP1 SWAP2 POP PUSH2 0xE3E SWAP1 DUP3 SWAP1 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1193 JUMP JUMPDEST PUSH1 0x60 DUP9 ADD MLOAD DUP4 MLOAD PUSH2 0xE57 SWAP2 PUSH8 0xDE0B6B3A7640000 PUSH2 0x1193 JUMP JUMPDEST PUSH2 0xE61 SWAP2 SWAP1 PUSH2 0x1FC9 JUMP JUMPDEST PUSH1 0xA0 DUP4 ADD DUP2 SWAP1 MSTORE DUP3 MLOAD DUP3 SWAP2 PUSH2 0xE75 SWAP2 PUSH2 0x1FC9 JUMP JUMPDEST PUSH2 0xE7F SWAP2 SWAP1 PUSH2 0x1FC9 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x3C0 JUMP JUMPDEST PUSH2 0xEBE PUSH2 0x1243 JUMP JUMPDEST PUSH2 0xEC6 PUSH2 0x1268 JUMP JUMPDEST PUSH2 0x5DF DUP3 DUP3 PUSH2 0x1270 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0xF56 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xF4A PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2025 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0xF74 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0xF7F DUP2 PUSH2 0x128A JUMP JUMPDEST POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xFDC JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xFD9 SWAP2 DUP2 ADD SWAP1 PUSH2 0x1DB9 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1004 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2025 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x1034 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST PUSH2 0x103E DUP4 DUP4 PUSH2 0x1348 JUMP JUMPDEST POP POP POP JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0xF74 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1094 PUSH2 0x15ED JUMP JUMPDEST DUP6 DUP6 DUP1 DUP3 LT PUSH2 0x10BF JUMPI PUSH1 0x40 MLOAD PUSH4 0x319308D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3F6 JUMP JUMPDEST POP POP PUSH2 0x10C9 PUSH2 0x15ED JUMP JUMPDEST PUSH1 0x20 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH5 0xFFFFFFFFFF DUP1 DUP5 AND PUSH2 0x140 DUP4 ADD MSTORE DUP5 AND PUSH2 0x160 DUP3 ADD MSTORE PUSH0 PUSH2 0x10FC DUP10 DUP9 DUP9 DUP9 DUP9 PUSH2 0xC64 JUMP JUMPDEST DUP1 MLOAD PUSH1 0xA0 DUP1 DUP6 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP3 ADD MLOAD PUSH1 0x40 DUP1 DUP7 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP3 ADD MLOAD PUSH1 0x60 DUP1 DUP7 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP3 ADD MLOAD PUSH2 0x100 DUP6 ADD MSTORE PUSH1 0x80 DUP3 ADD MLOAD PUSH2 0x120 DUP6 ADD MSTORE DUP2 ADD MLOAD PUSH1 0xC0 DUP5 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD SWAP1 SWAP2 POP DUP9 SWAP1 DUP2 DUP2 GT ISZERO PUSH2 0x1171 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFC096627 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3F6 JUMP JUMPDEST POP POP PUSH1 0xE0 DUP2 ADD MLOAD PUSH2 0x1182 SWAP1 DUP10 PUSH2 0x1FB6 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD MSTORE POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x11A0 DUP7 DUP7 PUSH2 0x139D JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x11C4 JUMPI DUP4 DUP2 DUP2 PUSH2 0x11BA JUMPI PUSH2 0x11BA PUSH2 0x2010 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0xA85 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x11DB JUMPI PUSH2 0x11DB PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x13B9 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x124B PUSH2 0x13CA JUMP JUMPDEST PUSH2 0xF74 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xF74 PUSH2 0x1243 JUMP JUMPDEST PUSH2 0x1278 PUSH2 0x1243 JUMP JUMPDEST PUSH2 0x1281 DUP2 PUSH2 0xB0B JUMP JUMPDEST PUSH2 0x5DF DUP3 PUSH2 0x3C6 JUMP JUMPDEST PUSH2 0x1293 DUP2 PUSH2 0x13E3 JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x73A952E8 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x12FD 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 0x1321 SWAP2 SWAP1 PUSH2 0x1F87 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5DF JUMPI PUSH1 0x40 MLOAD PUSH4 0x50F87E1 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1351 DUP3 PUSH2 0x1494 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x1395 JUMPI PUSH2 0x103E DUP3 DUP3 PUSH2 0x14F7 JUMP JUMPDEST PUSH2 0x5DF PUSH2 0x1597 JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 PUSH2 0x13D3 PUSH2 0xE8E JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x4D15EB03 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1449 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 0x146D SWAP2 SWAP1 PUSH2 0x1F87 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF7F JUMPI PUSH1 0x40 MLOAD PUSH4 0xD2B3D33F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x14C9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3F6 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x2025 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x1504 DUP5 DUP5 PUSH2 0x15B6 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1525 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x1525 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x153A JUMPI PUSH2 0x1532 PUSH2 0x15C9 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3C0 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1564 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 0x3F6 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x1577 JUMPI PUSH2 0x1572 PUSH2 0x15E2 JUMP JUMPDEST PUSH2 0x1590 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0xF74 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1660 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xA85 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xF7F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x169B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xA85 DUP2 PUSH2 0x1677 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x16B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x16CD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x16DD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x16F2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP5 ADD ADD GT ISZERO PUSH2 0x1706 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 SWAP2 DUP3 ADD SWAP5 POP SWAP3 POP DUP5 ADD CALLDATALOAD PUSH2 0x171B DUP2 PUSH2 0x1677 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xF7F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0x1743 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x177E JUMPI PUSH2 0x177E PUSH2 0x1748 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x177E JUMPI PUSH2 0x177E PUSH2 0x1748 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x17CF JUMPI PUSH2 0x17CF PUSH2 0x1748 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 DUP6 DUP8 SUB PUSH2 0x160 DUP2 SLT ISZERO PUSH2 0x17ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH2 0x1806 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP4 POP PUSH1 0x60 DUP8 ADD CALLDATALOAD PUSH2 0x1816 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP3 POP PUSH1 0xE0 PUSH1 0x7F NOT DUP3 ADD SLT ISZERO PUSH2 0x1829 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1832 PUSH2 0x175C JUMP JUMPDEST PUSH1 0x80 DUP8 DUP2 ADD CALLDATALOAD DUP3 MSTORE PUSH1 0xA0 DUP1 DUP10 ADD CALLDATALOAD PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0xC0 DUP1 DUP11 ADD CALLDATALOAD PUSH1 0x40 DUP6 ADD MSTORE PUSH1 0xE0 DUP11 ADD CALLDATALOAD PUSH1 0x60 DUP6 ADD MSTORE PUSH2 0x100 DUP11 ADD CALLDATALOAD SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH2 0x120 DUP10 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE PUSH2 0x140 SWAP1 SWAP8 ADD CALLDATALOAD SWAP7 DUP2 ADD SWAP7 SWAP1 SWAP7 MSTORE POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x189A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x18A5 DUP2 PUSH2 0x1677 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x18B5 DUP2 PUSH2 0x1677 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x18D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x18DC DUP2 PUSH2 0x1677 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x18F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x1906 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x191F JUMPI PUSH2 0x191F PUSH2 0x1748 JUMP JUMPDEST PUSH2 0x1932 PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x17A7 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP7 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x1946 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 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x1975 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x198B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x19A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x19BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x19CF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x19DB DUP6 DUP3 DUP7 ADD PUSH2 0x1965 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0x1A63 PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP2 ADD MLOAD PUSH2 0x103E PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST PUSH2 0x180 DUP2 ADD PUSH2 0x3C0 DUP3 DUP5 PUSH2 0x19E7 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1A9F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1AB4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1AC0 DUP7 DUP3 DUP8 ADD PUSH2 0x1965 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x171B DUP2 PUSH2 0x1677 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 PUSH0 PUSH0 DUP3 DUP5 SUB PUSH2 0x1A0 DUP2 SLT ISZERO PUSH2 0x1B1C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x180 DUP2 SLT ISZERO PUSH2 0x1B2A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP4 PUSH2 0x180 DUP6 ADD CALLDATALOAD SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x1B63 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x1B7C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x19A2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE DUP2 ADD DUP3 SWAP1 MSTORE DUP2 DUP4 PUSH1 0x60 DUP4 ADD CALLDATACOPY PUSH0 DUP2 DUP4 ADD PUSH1 0x60 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP3 ADD PUSH1 0x1F NOT AND ADD ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0x1743 DUP2 PUSH2 0x1726 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1BEB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1BF3 PUSH2 0x1784 JUMP JUMPDEST DUP3 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0x1C62 PUSH2 0x140 DUP4 ADD PUSH2 0x1BCF JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x1C75 PUSH2 0x160 DUP4 ADD PUSH2 0x1BCF JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1743 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xE0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1CA7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1CAF PUSH2 0x175C JUMP JUMPDEST DUP3 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 SWAP3 DUP4 ADD MLOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x300 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x1D0F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1D19 DUP10 DUP10 PUSH2 0x1BDA JUMP JUMPDEST PUSH2 0x180 DUP10 ADD MLOAD PUSH2 0x1A0 DUP11 ADD MLOAD PUSH2 0x1C0 DUP12 ADD MLOAD PUSH2 0x1E0 DUP13 ADD MLOAD SWAP4 SWAP11 POP SWAP2 SWAP9 POP SWAP7 POP SWAP5 POP PUSH2 0x1D44 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP3 POP PUSH2 0x1D53 PUSH2 0x200 DUP10 ADD PUSH2 0x1C81 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D63 DUP10 PUSH2 0x220 DUP11 ADD PUSH2 0x1C97 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH2 0x340 DUP2 ADD PUSH2 0x1D80 DUP3 DUP8 PUSH2 0x19E7 JUMP JUMPDEST PUSH2 0x1D8E PUSH2 0x180 DUP4 ADD DUP7 PUSH2 0x19E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND PUSH2 0x300 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH2 0x320 SWAP1 SWAP2 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DC9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1DE4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1DEE DUP7 DUP7 PUSH2 0x1BDA JUMP JUMPDEST PUSH2 0x180 DUP7 ADD MLOAD PUSH2 0x1A0 DUP8 ADD MLOAD PUSH2 0x1C0 SWAP1 SWAP8 ADD MLOAD SWAP2 SWAP9 SWAP1 SWAP8 POP SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0x1E1E DUP3 DUP8 PUSH2 0x19E7 JUMP JUMPDEST DUP5 PUSH2 0x180 DUP4 ADD MSTORE DUP4 PUSH2 0x1A0 DUP4 ADD MSTORE DUP3 PUSH2 0x1C0 DUP4 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x180 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x1E52 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 MLOAD PUSH1 0x20 DUP9 ADD MLOAD PUSH1 0x40 DUP10 ADD MLOAD PUSH1 0x60 DUP11 ADD MLOAD SWAP3 SWAP9 POP SWAP1 SWAP7 POP SWAP5 POP PUSH2 0x1E74 DUP2 PUSH2 0x1726 JUMP JUMPDEST SWAP3 POP PUSH2 0x1E82 PUSH1 0x80 DUP9 ADD PUSH2 0x1C81 JUMP JUMPDEST SWAP2 POP PUSH2 0x1E91 DUP9 PUSH1 0xA0 DUP10 ADD PUSH2 0x1C97 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0x1EAC DUP3 DUP8 PUSH2 0x19E7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND PUSH2 0x180 DUP4 ADD MSTORE SWAP3 SWAP1 SWAP4 AND PUSH2 0x1A0 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x1C0 SWAP1 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x1A0 DUP2 ADD PUSH2 0x1F51 PUSH2 0x140 DUP6 ADD PUSH2 0x1738 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND PUSH2 0x140 DUP4 ADD MSTORE PUSH2 0x1F6B PUSH2 0x160 DUP6 ADD PUSH2 0x1738 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND PUSH2 0x160 DUP4 ADD MSTORE PUSH2 0x180 SWAP1 SWAP2 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F97 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xA85 DUP2 PUSH2 0x1677 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 0x3C0 JUMPI PUSH2 0x3C0 PUSH2 0x1FA2 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x3C0 JUMPI PUSH2 0x3C0 PUSH2 0x1FA2 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x3C0 JUMPI PUSH2 0x3C0 PUSH2 0x1FA2 JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x3C0 JUMPI PUSH2 0x3C0 PUSH2 0x1FA2 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBCA264697066735822122081 MSTORE MCOPY 0xC8 PUSH11 0x26307C33F3BAEBEE28F99F 0x4B LOG0 0xB3 0xB4 SWAP1 PC SWAP8 0xCF NUMBER SWAP3 PUSH1 0xDE TIMESTAMP SWAP1 0x2E RJUMP 0x6473 PUSH16 0x6C634300081E00330000000000000000 ","sourceMap":"708:8644:28:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3207:193;;;;;;;;;;-1:-1:-1;3207:193:28;;;;;:::i;:::-;;:::i;:::-;;;470:14:125;;463:22;445:41;;433:2;418:18;3207:193:28;;;;;;;;4499:202;;;;;;;;;;-1:-1:-1;4499:202:28;;;;;:::i;:::-;;:::i;:::-;;6620:185;;;;;;;;;;-1:-1:-1;6620:185:28;;;;;:::i;:::-;;:::i;4850:267::-;;;;;;;;;;-1:-1:-1;4850:267:28;;;;;:::i;:::-;;:::i;:::-;;;4719:25:125;;;4707:2;4692:18;4850:267:28;4573:177:125;2048:134:28;;;;;;;;;;-1:-1:-1;2048:134:28;;;;;:::i;:::-;;:::i;2366:94:25:-;;;;;;;;;;-1:-1:-1;2444:11:25;2366:94;;;-1:-1:-1;;;;;5383:32:125;;;5365:51;;5353:2;5338:18;2366:94:25;5198:224:125;3911:214:76;;;;;;:::i;:::-;;:::i;3434:82:28:-;;;;;;;;;;-1:-1:-1;3504:7:28;;-1:-1:-1;;;;;3504:7:28;3434:82;;3466:126:76;;;;;;;;;;;;;:::i;7052:847:28:-;;;;;;;;;;-1:-1:-1;7052:847:28;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4735:111::-;;;;;;;;;;-1:-1:-1;4825:16:28;4735:111;;8180:373;;;;;;;;;;-1:-1:-1;8180:373:28;;;;;:::i;:::-;;:::i;5430:847::-;;;;;;;;;;-1:-1:-1;5430:847:28;;;;;:::i;:::-;;:::i;1732:58:76:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1732:58:76;;;;;;;;;;;;:::i;8936:135:28:-;;;;;;;;;;-1:-1:-1;8936:135:28;;;;;:::i;:::-;;:::i;3805:190::-;;;;;;;;;;-1:-1:-1;3805:190:28;;;;;:::i;:::-;;:::i;2464:97:25:-;;;;;;;;;;;;;:::i;4143:88:28:-;;;;;;;;;;-1:-1:-1;4214:12:28;;-1:-1:-1;;;;;4214:12:28;4143:88;;3207:193;3292:4;3311:36;3335:11;3311:23;:36::i;:::-;:84;;;-1:-1:-1;;;;;;;3351:44:28;;-1:-1:-1;;;3351:44:28;3311:84;3304:91;3207:193;-1:-1:-1;;3207:193:28:o;4499:202::-;4572:5;-1:-1:-1;;;;;4564:28:28;;4556:64;;;;-1:-1:-1;;;4556:64:28;;-1:-1:-1;;;;;5383:32:125;;;4556:64:28;;;5365:51:125;5338:18;;4556:64:28;;;;;;;;;-1:-1:-1;4650:12:28;;4631:39;;;-1:-1:-1;;;;;4650:12:28;;;11249:51:125;;11336:32;;;11331:2;11316:18;;11309:60;4631:39:28;;11222:18:125;4631:39:28;;;;;;;4676:12;:20;;-1:-1:-1;;;;;;4676:20:28;-1:-1:-1;;;;;4676:20:28;;;;;;;;;;4499:202::o;6620:185::-;6709:9;6704:97;6724:20;;;6704:97;;;6759:35;6769:9;;6779:1;6769:12;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;6783:10;6759:9;:35::i;:::-;-1:-1:-1;6746:3:28;;6704:97;;;;6620:185;;;:::o;4850:267::-;5013:7;5035:64;5060:1;5063:6;5071:8;5081:10;5093:5;5035:24;:64::i;:::-;:77;;;;4850:267;-1:-1:-1;;;;;;4850:267:28:o;2048:134::-;4158:30:75;4191:26;:24;:26::i;:::-;4302:15;;4158:59;;-1:-1:-1;4302:15:75;-1:-1:-1;;;4302:15:75;;;4301:16;;-1:-1:-1;;;;;4348:14:75;4279:19;4724:16;;:34;;;;;4744:14;4724:34;4704:54;;4768:17;4788:11;-1:-1:-1;;;;;4788:16:75;4803:1;4788:16;:50;;;;-1:-1:-1;4816:4:75;4808:25;:30;4788:50;4768:70;;4854:12;4853:13;:30;;;;;4871:12;4870:13;4853:30;4849:91;;;4906:23;;-1:-1:-1;;;4906:23:75;;;;;;;;;;;4849:91;4949:18;;-1:-1:-1;;4949:18:75;4966:1;4949:18;;;4977:67;;;;5011:22;;-1:-1:-1;;;;5011:22:75;-1:-1:-1;;;5011:22:75;;;4977:67;2137:40:28::1;2155:12;2169:7;2137:17;:40::i;:::-;5068:14:75::0;5064:101;;;5098:23;;-1:-1:-1;;;;5098:23:75;;;5140:14;;-1:-1:-1;12191:50:125;;5140:14:75;;12179:2:125;12164:18;5140:14:75;;;;;;;5064:101;4092:1079;;;;;2048:134:28;;:::o;3911:214:76:-;2568:13;:11;:13::i;:::-;4026:36:::1;4044:17;4026;:36::i;:::-;4072:46;4094:17;4113:4;4072:21;:46::i;:::-;3911:214:::0;;:::o;3466:126::-;3527:7;2839:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;3466:126:76;:::o;7052:847:28:-;7127:31;;:::i;:::-;7372:12;;:61;;-1:-1:-1;;;7372:61:28;;7174:34;;;;;;;;;;;;;;-1:-1:-1;;;;;7372:12:28;;:35;;:61;;7416:4;;7423:9;;;;7372:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7166:267;;;;;;;;;;;;;;-1:-1:-1;;7444:7:28;:28;7440:132;;7492:73;7510:6;7518:8;7528:9;:15;;;7545:10;7557:7;7492:17;:73::i;:::-;7482:83;;7440:132;7601:15;7581:36;;:10;:36;;;7577:113;;;7626:64;;-1:-1:-1;;;7626:64:28;;16607:12:125;16595:25;;;7626:64:28;;;16577:44:125;7673:15:28;16657:25:125;16637:18;;;16630:53;16550:18;;7626:64:28;16407:282:125;7577:113:28;7705:82;7723:7;7732;7741:6;7749:8;7759:10;7771:9;:15;;;7705:17;:82::i;:::-;7806:68;;-1:-1:-1;;;7806:68:28;;7696:91;;-1:-1:-1;;;;;;7806:11:28;:25;;;;:68;;7832:9;;7696:91;;7851:10;;7863;;7806:68;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7794:80;;-1:-1:-1;;;;;;;7052:847:28;;;;:::o;8180:373::-;8394:12;;:62;;-1:-1:-1;;;8394:62:28;;8259:39;;;;;;;;-1:-1:-1;;;;;8394:12:28;;;;:36;;:62;;8439:4;;8446:9;;;;8394:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8251:205;;;;;;;;8463:11;-1:-1:-1;;;;;8463:24:28;;8488:14;8504:17;8523:11;8536;8463:85;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8245:308;;;;8180:373;;:::o;5430:847::-;5511:31;;:::i;:::-;5714:12;;:53;;-1:-1:-1;;;5714:53:28;;5558:14;;;;;;;;;;;;-1:-1:-1;;;;;5714:12:28;;;;:27;;:53;;5750:4;;5757:9;;;;5714:53;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5550:217;;;;;;;;;;;;5774:11;5795:15;5774:37;;-1:-1:-1;;5821:7:28;:28;5817:121;;5869:62;5887:6;5895:8;5905:4;5911:10;5923:7;5869:17;:62::i;:::-;5859:72;;5817:121;5951:10;5964:4;5951:17;;;;;;;;5943:73;;;;-1:-1:-1;;;5943:73:28;;16607:12:125;16595:25;;;5943:73:28;;;16577:44:125;16657:25;;16637:18;;;16630:53;16550:18;;5943:73:28;16407:282:125;5943:73:28;-1:-1:-1;6030:10:28;;-1:-1:-1;;;;;;6030:24:28;;6022:62;;;;-1:-1:-1;;;6022:62:28;;-1:-1:-1;;;;;5383:32:125;;;6022:62:28;;;5365:51:125;5338:18;;6022:62:28;5198:224:125;6022:62:28;;6099:71;6117:7;6126;6135:6;6143:8;6153:10;6165:4;6099:17;:71::i;:::-;6188:65;;-1:-1:-1;;;6188:65:28;;6090:80;;-1:-1:-1;;;;;;6188:11:28;:21;;;;:65;;6090:80;;6218:10;;6230;;6242;;6188:65;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6176:77;;-1:-1:-1;;;;;;;5430:847:28;;;;;;:::o;8936:135::-;9025:41;;-1:-1:-1;;;9025:41:28;;-1:-1:-1;;;;;9025:11:28;:25;;;;:41;;9051:6;;9059;;9025:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8936:135;;:::o;3805:190::-;3864:9;-1:-1:-1;;;;;3864:23:28;;3856:58;;;;-1:-1:-1;;;3856:58:28;;-1:-1:-1;;;;;5383:32:125;;;3856:58:28;;;5365:51:125;5338:18;;3856:58:28;5198:224:125;3856:58:28;-1:-1:-1;3946:7:28;;3925:40;;;-1:-1:-1;;;;;3946:7:28;;;11249:51:125;;11336:32;;;11331:2;11316:18;;11309:60;3925:40:28;;11222:18:125;3925:40:28;;;;;;;3971:7;:19;;-1:-1:-1;;;;;;3971:19:28;-1:-1:-1;;;;;3971:19:28;;;;;;;;;;3805:190::o;2464:97:25:-;2505:14;2534:11;-1:-1:-1;;;;;2534:20:25;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2527:29;;2464:97;:::o;2156:206::-;2241:4;-1:-1:-1;;;;;;2260:40:25;;-1:-1:-1;;;2260:40:25;;:97;;-1:-1:-1;;;;;;;2304:53:25;;-1:-1:-1;;;2304:53:25;2253:104;2156:206;-1:-1:-1;;2156:206:25:o;5144:1314:23:-;5309:36;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5309:36:23;5414:12;;5378:54;;643:4;5378:28;:6;5392:8;643:4;5378:13;:28::i;:::-;:35;:54;:35;:54::i;:::-;5353:79;;5471:20;;;;5457:40;;:6;;643:4;5457:13;:40::i;:::-;5438:16;;;:59;;;5526:22;;-1:-1:-1;5503:145:23;;;5578:22;;5558:16;;;:42;;;;5578:22;;5558:42;:::i;:::-;;;-1:-1:-1;5503:145:23;;;5640:1;5621:16;;;:20;5503:145;5687:18;;;;5673:38;;:6;;643:4;5673:13;:38::i;:::-;5654:16;;;:57;5766:16;;;;5741:22;;:41;;5766:16;5741:41;:::i;:::-;5721:10;:16;;;:62;5717:185;;;5838:16;;;;5813:22;;:41;;5838:16;5813:41;:::i;:::-;5793:10;:16;;:61;;;;;;;:::i;:::-;;;-1:-1:-1;5717:185:23;;;5894:1;5875:16;;;:20;5717:185;5949:86;5991:18;6004:5;5991:10;:18;:::i;:::-;5973:37;;:8;:14;;;:37;;;;:::i;:::-;6012:22;696:8;643:4;6012:22;:::i;:::-;5949:16;;;;;:86;:23;:86::i;:::-;5930:16;;;:105;6060:86;6102:18;6115:5;6102:10;:18;:::i;:::-;6084:37;;:8;:14;;;:37;;;;:::i;:::-;6123:22;696:8;643:4;6123:22;:::i;:::-;6060:16;;;;;:86;:23;:86::i;:::-;6041:16;;;:105;;;6171:16;;;;6152;;6171:35;;;:::i;:::-;6330:21;;;;6152:54;;-1:-1:-1;6314:43:23;;6152:54;;643:4;6314:15;:43::i;:::-;6279:20;;;;6249:22;;:56;;643:4;6249:29;:56::i;:::-;:108;;;;:::i;:::-;6213:27;;;:144;;;6390:22;;6445:8;;6390:52;;;:::i;:::-;:63;;;;:::i;:::-;6364:23;;;:89;-1:-1:-1;6364:10:23;5144:1314;-1:-1:-1;;;;;5144:1314:23:o;9071:205:75:-;9129:30;;3147:66;9186:27;8819:122;2447:192:28;6929:20:75;:18;:20::i;:::-;2550:28:28::1;:26;:28::i;:::-;2584:50;2612:12;2626:7;2584:27;:50::i;4328:312:76:-:0;4408:4;-1:-1:-1;;;;;4417:6:76;4400:23;;;:120;;;4514:6;-1:-1:-1;;;;;4478:42:76;:32;-1:-1:-1;;;;;;;;;;;1519:53:72;-1:-1:-1;;;;;1519:53:72;;1441:138;4478:32:76;-1:-1:-1;;;;;4478:42:76;;;4400:120;4383:251;;;4594:29;;-1:-1:-1;;;4594:29:76;;;;;;;;;;;4383:251;4328:312::o;1807:106:25:-;1880:28;1900:7;1880:19;:28::i;:::-;1807:106;:::o;5782:538:76:-;5899:17;-1:-1:-1;;;;;5881:50:76;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5881:52:76;;;;;;;;-1:-1:-1;;5881:52:76;;;;;;;;;;;;:::i;:::-;;;5877:437;;6243:60;;-1:-1:-1;;;6243:60:76;;-1:-1:-1;;;;;5383:32:125;;6243:60:76;;;5365:51:125;5338:18;;6243:60:76;5198:224:125;5877:437:76;-1:-1:-1;;;;;;;;;;;5975:40:76;;5971:120;;6042:34;;-1:-1:-1;;;6042:34:76;;;;;4719:25:125;;;4692:18;;6042:34:76;4573:177:125;5971:120:76;6104:54;6134:17;6153:4;6104:29;:54::i;:::-;5934:235;5782:538;;:::o;4757:213::-;4831:4;-1:-1:-1;;;;;4840:6:76;4823:23;;4819:145;;4924:29;;-1:-1:-1;;;4924:29:76;;;;;;;;;;;7346:997:23;7525:27;;:::i;:::-;7568:7;7578:6;7568:16;;;7560:64;;;;-1:-1:-1;;;7560:64:23;;;;;23434:25:125;;;;23475:18;;;23468:34;23407:18;;7560:64:23;23260:248:125;7560:64:23;;;7630:24;;:::i;:::-;7661:13;;;:22;;;7689:15;;;:26;;;7721:20;;;;:12;;;:20;7747:30;;:17;;;:30;-1:-1:-1;7823:64:23;7841:8;7677:6;7707:8;7767:10;7736:5;7823:17;:64::i;:::-;7915:22;;7894:18;;;;:43;;;;7958:16;;;;7943:12;;;;:31;;;;7995:16;;;-1:-1:-1;7980:12:23;;;:31;;;;8032:16;;;8017:12;;;:31;8069:16;;;;8054:12;;;:31;8117:27;;;8091:23;;;:53;8159:23;;;;7784:103;;-1:-1:-1;8186:7:23;;8159:34;;;;8151:101;;;;-1:-1:-1;;;8151:101:23;;;;;23434:25:125;;;;23475:18;;;23468:34;23407:18;;8151:101:23;23260:248:125;8151:101:23;-1:-1:-1;;8296:23:23;;;;8286:33;;:7;:33;:::i;:::-;8259:24;;;:60;-1:-1:-1;8259:24:23;7346:997;-1:-1:-1;;;;;;;7346:997:23:o;7258:3683:105:-;7340:14;7391:12;7405:11;7420:12;7427:1;7430;7420:6;:12::i;:::-;7390:42;;;;7514:4;7522:1;7514:9;7510:365;;7849:11;7843:3;:17;;;;;:::i;:::-;;7836:24;;;;;;7510:365;8000:4;7985:11;:19;7981:142;;8024:84;5328:5;8044:16;;5327:36;940:4:95;5322:42:105;8024:11;:84::i;:::-;8375:17;8526:11;8523:1;8520;8513:25;8918:12;8948:15;;;8933:31;;9083:22;;;;;9816:1;9797;:15;;9796:21;;10049;;;10045:25;;10034:36;10119:21;;;10115:25;;10104:36;10191:21;;;10187:25;;10176:36;10262:21;;;10258:25;;10247:36;10335:21;;;10331:25;;10320:36;10409:21;;;10405:25;;;10394:36;9325:12;;;;9321:23;;;9346:1;9317:31;8638:18;;;8628:29;;;9432:11;;;;8681:19;;;;9176:14;;;;9425:18;;;;10884:13;;-1:-1:-1;;7258:3683:105;;;;;:::o;7082:141:75:-;7149:17;:15;:17::i;:::-;7144:73;;7189:17;;-1:-1:-1;;;7189:17:75;;;;;;;;;;;1737:66:25;6929:20:75;:18;:20::i;2694:170:28:-;6929:20:75;:18;:20::i;:::-;2807:18:28::1;2817:7;2807:9;:18::i;:::-;2831:28;2846:12;2831:14;:28::i;2868:280::-:0;2951:34;2977:7;2951:25;:34::i;:::-;2991:17;3023:7;2991:40;;3068:16;-1:-1:-1;;;;;3041:43:28;:5;-1:-1:-1;;;;;3041:21:28;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3041:43:28;;3037:107;;3101:36;;-1:-1:-1;;;3101:36:28;;;;;;;;;;;2264:344:72;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:72;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;2454:148::-;2573:18;:16;:18::i;1027:550:105:-;1088:12;;-1:-1:-1;;1471:1:105;1468;1461:20;1501:9;;;;1549:11;;;1535:12;;;;1531:30;;;;;1027:550;-1:-1:-1;;1027:550:105:o;1776:194:95:-;1881:10;1875:4;1868:24;1918:4;1912;1905:18;1949:4;1943;1936:18;8485:120:75;8535:4;8558:26;:24;:26::i;:::-;:40;-1:-1:-1;;;8558:40:75;;;;;;-1:-1:-1;8485:120:75:o;1917:180:25:-;2041:11;-1:-1:-1;;;;;1995:57:25;2016:7;-1:-1:-1;;;;;1995:40:25;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1995:57:25;;1991:101;;2061:31;;-1:-1:-1;;;2061:31:25;;;;;;;;;;;1671:281:72;1748:17;-1:-1:-1;;;;;1748:29:72;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:72;;-1:-1:-1;;;;;5383:32:125;;1805:47:72;;;5365:51:125;5338:18;;1805:47:72;5198:224:125;1744:119:72;-1:-1:-1;;;;;;;;;;;1872:73:72;;-1:-1:-1;;;;;;1872:73:72;-1:-1:-1;;;;;1872:73:72;;;;;;;;;;1671:281::o;4691:549:87:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:87;4583:16:91;4886:33:87;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:87;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:87;;-1:-1:-1;;;;;5383:32:125;;5045:24:87;;;5365:51:125;5338:18;;5045:24:87;5198:224:125;5011:223:87;4583:16:91;5090:33:87;5086:148;;5139:27;:25;:27::i;:::-;5086:148;;;5204:19;;-1:-1:-1;;;5204:19:87;;;;;;;;;;;5086:148;4788:452;4691:549;;;;:::o;6113:122:72:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:72;;;;;;;;;;;3383:242:91;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:91:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:286:125:-;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:125;;209:43;;199:71;;266:1;263;256:12;497:145;-1:-1:-1;;;;;586:31:125;;576:42;;566:70;;632:1;629;622:12;647:283;728:6;781:2;769:9;760:7;756:23;752:32;749:52;;;797:1;794;787:12;749:52;836:9;823:23;855:45;894:5;855:45;:::i;935:776::-;1041:6;1049;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1166:9;1153:23;-1:-1:-1;;;;;1191:6:125;1188:30;1185:50;;;1231:1;1228;1221:12;1185:50;1254:22;;1307:4;1299:13;;1295:27;-1:-1:-1;1285:55:125;;1336:1;1333;1326:12;1285:55;1376:2;1363:16;-1:-1:-1;;;;;1394:6:125;1391:30;1388:50;;;1434:1;1431;1424:12;1388:50;1489:7;1482:4;1472:6;1469:1;1465:14;1461:2;1457:23;1453:34;1450:47;1447:67;;;1510:1;1507;1500:12;1447:67;1541:4;1533:13;;;;-1:-1:-1;1565:6:125;-1:-1:-1;1606:20:125;;1593:34;1636:45;1593:34;1636:45;:::i;:::-;1700:5;1690:15;;;935:776;;;;;:::o;1716:123::-;1801:12;1794:5;1790:24;1783:5;1780:35;1770:63;;1829:1;1826;1819:12;1844:132;1911:20;;1940:30;1911:20;1940:30;:::i;:::-;1844:132;;;:::o;1981:127::-;2042:10;2037:3;2033:20;2030:1;2023:31;2073:4;2070:1;2063:15;2097:4;2094:1;2087:15;2113:253;2185:2;2179:9;2227:4;2215:17;;-1:-1:-1;;;;;2247:34:125;;2283:22;;;2244:62;2241:88;;;2309:18;;:::i;:::-;2345:2;2338:22;2113:253;:::o;2371:255::-;2443:2;2437:9;2485:6;2473:19;;-1:-1:-1;;;;;2507:34:125;;2543:22;;;2504:62;2501:88;;;2569:18;;:::i;2631:275::-;2702:2;2696:9;2767:2;2748:13;;-1:-1:-1;;2744:27:125;2732:40;;-1:-1:-1;;;;;2787:34:125;;2823:22;;;2784:62;2781:88;;;2849:18;;:::i;:::-;2885:2;2878:22;2631:275;;-1:-1:-1;2631:275:125:o;2911:1657::-;3028:6;3036;3044;3052;3060;3104:9;3095:7;3091:23;3134:3;3130:2;3126:12;3123:32;;;3151:1;3148;3141:12;3123:32;3196:23;;;-1:-1:-1;3316:2:125;3301:18;;3288:32;;-1:-1:-1;3398:2:125;3383:18;;3370:32;3411;3370;3411;:::i;:::-;3462:7;-1:-1:-1;3521:2:125;3506:18;;3493:32;3534;3493;3534;:::i;:::-;3585:7;-1:-1:-1;3627:4:125;-1:-1:-1;;3608:17:125;;3604:28;3601:48;;;3645:1;3642;3635:12;3601:48;;3673:22;;:::i;:::-;3768:3;3753:19;;;3740:33;3782:24;;3879:3;3864:19;;;3851:33;3913:2;3900:16;;3893:33;3999:3;3984:19;;;3971:33;4033:2;4020:16;;4013:33;4119:4;4104:20;;4091:34;4154:2;4141:16;;4134:33;4240:3;4225:19;;4212:33;4261:17;;;4254:34;;;;4363:3;4348:19;;4335:33;4384:17;;;4377:35;4487:3;4472:19;;;4459:33;4508:17;;;4501:35;;;;-1:-1:-1;2911:1657:125;;;;-1:-1:-1;2911:1657:125;3789:7;2911:1657::o;4755:438::-;4845:6;4853;4906:2;4894:9;4885:7;4881:23;4877:32;4874:52;;;4922:1;4919;4912:12;4874:52;4961:9;4948:23;4980:45;5019:5;4980:45;:::i;:::-;5044:5;-1:-1:-1;5101:2:125;5086:18;;5073:32;5114:47;5073:32;5114:47;:::i;:::-;5180:7;5170:17;;;4755:438;;;;;:::o;5427:914::-;5504:6;5512;5565:2;5553:9;5544:7;5540:23;5536:32;5533:52;;;5581:1;5578;5571:12;5533:52;5620:9;5607:23;5639:45;5678:5;5639:45;:::i;:::-;5703:5;-1:-1:-1;5759:2:125;5744:18;;5731:32;-1:-1:-1;;;;;5775:30:125;;5772:50;;;5818:1;5815;5808:12;5772:50;5841:22;;5894:4;5886:13;;5882:27;-1:-1:-1;5872:55:125;;5923:1;5920;5913:12;5872:55;5963:2;5950:16;-1:-1:-1;;;;;5981:6:125;5978:30;5975:56;;;6011:18;;:::i;:::-;6053:57;6100:2;6077:17;;-1:-1:-1;;6073:31:125;6106:2;6069:40;6053:57;:::i;:::-;6133:6;6126:5;6119:21;6181:7;6176:2;6167:6;6163:2;6159:15;6155:24;6152:37;6149:57;;;6202:1;6199;6192:12;6149:57;6257:6;6252:2;6248;6244:11;6239:2;6232:5;6228:14;6215:49;6309:1;6304:2;6295:6;6288:5;6284:18;6280:27;6273:38;6330:5;6320:15;;;;;5427:914;;;;;:::o;6736:347::-;6787:8;6797:6;6851:3;6844:4;6836:6;6832:17;6828:27;6818:55;;6869:1;6866;6859:12;6818:55;-1:-1:-1;6892:20:125;;-1:-1:-1;;;;;6924:30:125;;6921:50;;;6967:1;6964;6957:12;6921:50;7004:4;6996:6;6992:17;6980:29;;7056:3;7049:4;7040:6;7032;7028:19;7024:30;7021:39;7018:59;;;7073:1;7070;7063:12;7018:59;6736:347;;;;;:::o;7088:409::-;7158:6;7166;7219:2;7207:9;7198:7;7194:23;7190:32;7187:52;;;7235:1;7232;7225:12;7187:52;7275:9;7262:23;-1:-1:-1;;;;;7300:6:125;7297:30;7294:50;;;7340:1;7337;7330:12;7294:50;7379:58;7429:7;7420:6;7409:9;7405:22;7379:58;:::i;:::-;7456:8;;7353:84;;-1:-1:-1;7088:409:125;-1:-1:-1;;;;7088:409:125:o;7603:835::-;7685:5;7679:12;7674:3;7667:25;7741:4;7734:5;7730:16;7724:23;7717:4;7712:3;7708:14;7701:47;7797:4;7790:5;7786:16;7780:23;7773:4;7768:3;7764:14;7757:47;7853:4;7846:5;7842:16;7836:23;7829:4;7824:3;7820:14;7813:47;7909:4;7902:5;7898:16;7892:23;7885:4;7880:3;7876:14;7869:47;7965:4;7958:5;7954:16;7948:23;7941:4;7936:3;7932:14;7925:47;8021:4;8014:5;8010:16;8004:23;7997:4;7992:3;7988:14;7981:47;8077:4;8070:5;8066:16;8060:23;8053:4;8048:3;8044:14;8037:47;8135:6;8128:5;8124:18;8118:25;8109:6;8104:3;8100:16;8093:51;8195:6;8188:5;8184:18;8178:25;8169:6;8164:3;8160:16;8153:51;8250:6;8243:5;8239:18;8233:25;8267:49;8308:6;8303:3;8299:16;8285:12;7578;7567:24;7555:37;;7502:96;8267:49;;8364:6;8357:5;8353:18;8347:25;8381:51;8424:6;8419:3;8415:16;8399:14;7578:12;7567:24;7555:37;;7502:96;8443:256;8633:3;8618:19;;8646:47;8622:9;8675:6;8646:47;:::i;8938:558::-;9017:6;9025;9033;9086:2;9074:9;9065:7;9061:23;9057:32;9054:52;;;9102:1;9099;9092:12;9054:52;9142:9;9129:23;-1:-1:-1;;;;;9167:6:125;9164:30;9161:50;;;9207:1;9204;9197:12;9161:50;9246:58;9296:7;9287:6;9276:9;9272:22;9246:58;:::i;:::-;9323:8;;-1:-1:-1;9220:84:125;-1:-1:-1;;9408:2:125;9393:18;;9380:32;9421:45;9380:32;9421:45;:::i;9501:418::-;9650:2;9639:9;9632:21;9613:4;9682:6;9676:13;9725:6;9720:2;9709:9;9705:18;9698:34;9784:6;9779:2;9771:6;9767:15;9762:2;9751:9;9747:18;9741:50;9840:1;9835:2;9826:6;9815:9;9811:22;9807:31;9800:42;9910:2;9903;9899:7;9894:2;9886:6;9882:15;9878:29;9867:9;9863:45;9859:54;9851:62;;;9501:418;;;;:::o;9924:374::-;10022:6;10030;10074:9;10065:7;10061:23;10104:3;10100:2;10096:12;10093:32;;;10121:1;10118;10111:12;10093:32;10145:3;10141:2;10137:12;10134:32;;;10162:1;10159;10152:12;10134:32;-1:-1:-1;10185:9:125;;10263:3;10248:19;;10235:33;;-1:-1:-1;9924:374:125;-1:-1:-1;;9924:374:125:o;11380:127::-;11441:10;11436:3;11432:20;11429:1;11422:31;11472:4;11469:1;11462:15;11496:4;11493:1;11486:15;11512:521;11589:4;11595:6;11655:11;11642:25;11749:2;11745:7;11734:8;11718:14;11714:29;11710:43;11690:18;11686:68;11676:96;;11768:1;11765;11758:12;11676:96;11795:33;;11847:20;;;-1:-1:-1;;;;;;11879:30:125;;11876:50;;;11922:1;11919;11912:12;11876:50;11955:4;11943:17;;-1:-1:-1;11986:14:125;11982:27;;;11972:38;;11969:58;;;12023:1;12020;12013:12;12252:485;-1:-1:-1;;;;;12437:32:125;;12419:51;;12506:2;12501;12486:18;;12479:30;;;12525:18;;12518:34;;;12545:6;12594;12589:2;12574:18;;12561:48;12658:1;12629:22;;;12653:2;12625:31;;;12618:42;;;;12721:2;12700:15;;;-1:-1:-1;;12696:29:125;12681:45;12677:54;;12252:485;-1:-1:-1;;12252:485:125:o;12742:136::-;12820:13;;12842:30;12820:13;12842:30;:::i;12883:1449::-;12951:5;12999:6;12987:9;12982:3;12978:19;12974:32;12971:52;;;13019:1;13016;13009:12;12971:52;13041:22;;:::i;:::-;13108:16;;13133:22;;13221:2;13206:18;;;13200:25;13241:14;;;13234:31;13331:2;13316:18;;;13310:25;13351:14;;;13344:31;13441:2;13426:18;;;13420:25;13461:14;;;13454:31;13551:3;13536:19;;;13530:26;13572:15;;;13565:32;13663:3;13648:19;;;13642:26;13684:15;;;13677:32;13775:3;13760:19;;;13754:26;13796:15;;;13789:32;13887:3;13872:19;;;13866:26;13908:15;;;13901:32;13999:3;13984:19;;;13978:26;14020:15;;;14013:32;14113:3;14098:19;;;14092:26;14134:15;;;14127:33;13032:31;-1:-1:-1;14193:49:125;14237:3;14222:19;;14193:49;:::i;:::-;14187:3;14180:5;14176:15;14169:74;14276:49;14320:3;14309:9;14305:19;14276:49;:::i;:::-;14270:3;14263:5;14259:15;14252:74;12883:1449;;;;:::o;14337:183::-;14415:13;;-1:-1:-1;;;;;14457:38:125;;14447:49;;14437:77;;14510:1;14507;14500:12;14525:938;14589:5;14637:4;14625:9;14620:3;14616:19;14612:30;14609:50;;;14655:1;14652;14645:12;14609:50;14677:22;;:::i;:::-;14744:16;;14769:22;;14857:2;14842:18;;;14836:25;14877:14;;;14870:31;14967:2;14952:18;;;14946:25;14987:14;;;14980:31;15077:2;15062:18;;;15056:25;15097:14;;;15090:31;15187:3;15172:19;;;15166:26;15208:15;;;15201:32;15299:3;15284:19;;;15278:26;15320:15;;;15313:32;15411:3;15396:19;;;15390:26;15432:15;;;15425:32;;;;-1:-1:-1;14668:31:125;14525:938;-1:-1:-1;14525:938:125:o;15468:934::-;15642:6;15650;15658;15666;15674;15682;15690;15743:3;15731:9;15722:7;15718:23;15714:33;15711:53;;;15760:1;15757;15750:12;15711:53;15783:59;15834:7;15823:9;15783:59;:::i;:::-;15904:3;15889:19;;15883:26;15999:3;15984:19;;15978:26;16096:3;16081:19;;16075:26;16172:3;16157:19;;16151:26;15773:69;;-1:-1:-1;15883:26:125;;-1:-1:-1;15978:26:125;-1:-1:-1;16075:26:125;-1:-1:-1;16186:32:125;16151:26;16186:32;:::i;:::-;16237:7;-1:-1:-1;16263:49:125;16307:3;16292:19;;16263:49;:::i;:::-;16253:59;;16331:65;16388:7;16382:3;16371:9;16367:19;16331:65;:::i;:::-;16321:75;;15468:934;;;;;;;;;;:::o;16694:607::-;17022:3;17007:19;;17035:47;17011:9;17064:6;17035:47;:::i;:::-;17091:57;17143:3;17132:9;17128:19;17120:6;17091:57;:::i;:::-;-1:-1:-1;;;;;17185:32:125;;;;17179:3;17164:19;;17157:61;-1:-1:-1;;;;;17255:39:125;;;;17249:3;17234:19;;;17227:68;16694:607;;-1:-1:-1;;16694:607:125:o;17306:230::-;17376:6;17429:2;17417:9;17408:7;17404:23;17400:32;17397:52;;;17445:1;17442;17435:12;17397:52;-1:-1:-1;17490:16:125;;17306:230;-1:-1:-1;17306:230:125:o;17541:592::-;17666:6;17674;17682;17690;17743:3;17731:9;17722:7;17718:23;17714:33;17711:53;;;17760:1;17757;17750:12;17711:53;17783:59;17834:7;17823:9;17783:59;:::i;:::-;17904:3;17889:19;;17883:26;17999:3;17984:19;;17978:26;18096:3;18081:19;;;18075:26;17773:69;;17883:26;;-1:-1:-1;18075:26:125;;-1:-1:-1;17541:592:125;-1:-1:-1;;;17541:592:125:o;18138:472::-;18412:3;18397:19;;18425:47;18401:9;18454:6;18425:47;:::i;:::-;18509:6;18503:3;18492:9;18488:19;18481:35;18553:6;18547:3;18536:9;18532:19;18525:35;18597:6;18591:3;18580:9;18576:19;18569:35;18138:472;;;;;;;:::o;18615:798::-;18752:6;18760;18768;18776;18784;18792;18845:3;18833:9;18824:7;18820:23;18816:33;18813:53;;;18862:1;18859;18852:12;18813:53;18907:16;;19013:2;18998:18;;18992:25;19109:2;19094:18;;19088:25;19184:2;19169:18;;19163:25;18907:16;;-1:-1:-1;18992:25:125;;-1:-1:-1;19088:25:125;-1:-1:-1;19197:32:125;19163:25;19197:32;:::i;:::-;19248:7;-1:-1:-1;19274:49:125;19318:3;19303:19;;19274:49;:::i;:::-;19264:59;;19342:65;19399:7;19393:3;19382:9;19378:19;19342:65;:::i;:::-;19332:75;;18615:798;;;;;;;;:::o;19418:555::-;19690:3;19675:19;;19703:47;19679:9;19732:6;19703:47;:::i;:::-;-1:-1:-1;;;;;19787:32:125;;;19781:3;19766:19;;19759:61;19857:32;;;;19851:3;19836:19;;19829:61;-1:-1:-1;;;;;19927:39:125;19921:3;19906:19;;;19899:68;;;;19418:555;;-1:-1:-1;19418:555:125:o;19978:1740::-;20243:20;;20272:24;;20366:4;20354:17;;;20341:31;20388:20;;;20381:37;20488:4;20476:17;;;20463:31;20510:20;;;20503:37;20610:4;20598:17;;;20585:31;20632:20;;;20625:37;20732:4;20720:17;;;20707:31;20754:20;;;20747:37;20854:4;20842:17;;;20829:31;20876:20;;;20869:37;20976:4;20964:17;;;20951:31;20998:20;;;20991:37;21098:4;21086:17;;;21073:31;21120:20;;;21113:37;21220:6;21208:19;;;21195:33;21244:22;;;21237:39;21346:6;21334:19;;;21321:33;21370:22;;;21363:39;20198:3;20183:19;;21431:38;21461:6;21449:19;;21431:38;:::i;:::-;7578:12;7567:24;21525:6;21510:22;;7555:37;21564:38;21594:6;21582:19;;21564:38;:::i;:::-;7578:12;7567:24;21660:6;21645:22;;7555:37;21699:3;21684:19;;;21677:35;;;;19978:1740;;-1:-1:-1;19978:1740:125:o;22028:289::-;22122:6;22175:2;22163:9;22154:7;22150:23;22146:32;22143:52;;;22191:1;22188;22181:12;22143:52;22223:9;22217:16;22242:45;22281:5;22242:45;:::i;22322:127::-;22383:10;22378:3;22374:20;22371:1;22364:31;22414:4;22411:1;22404:15;22438:4;22435:1;22428:15;22454:128;22521:9;;;22542:11;;;22539:37;;;22556:18;;:::i;22587:125::-;22652:9;;;22673:10;;;22670:36;;;22686:18;;:::i;22717:176::-;22816:12;22809:20;;;22787;;;22783:47;;22842:22;;22839:48;;;22867:18;;:::i;22898:168::-;22971:9;;;23002;;23019:15;;;23013:22;;22999:37;22989:71;;23040:18;;:::i;23513:127::-;23574:10;23569:3;23565:20;23562:1;23555:31;23605:4;23602:1;23595:15;23629:4;23626:1;23619:15"},"methodIdentifiers":{"UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","cancelPolicy(bytes)":"73d0efd0","currency()":"e5a6b10f","getMinimumPremium(uint256,uint256,uint40,uint40,(uint256,uint256,uint256,uint256,uint256,uint256,uint256))":"23d09ac9","initialize(address,address)":"485cc955","newPolicies(bytes[],address)":"1f0f3e18","newPolicy(bytes,address)":"8dab1952","policyPool()":"4d15eb03","premiumsAccount()":"73a952e8","proxiableUUID()":"52d1902d","replacePolicy(bytes)":"68beecf9","resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)":"bd644c56","setUnderwriter(address)":"08bb5f7b","setWallet(address)":"deaa59df","supportsInterface(bytes4)":"01ffc9a7","underwriter()":"f00db260","upgradeToAndCall(address,bytes)":"4f1ef286","wallet()":"521eb273"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"policyPool_\",\"type\":\"address\"},{\"internalType\":\"contract IPremiumsAccount\",\"name\":\"premiumsAccount_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"now\",\"type\":\"uint40\"}],\"name\":\"ExpirationMustBeInTheFuture\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"customer\",\"type\":\"address\"}],\"name\":\"InvalidCustomer\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"contract IUnderwriter\",\"name\":\"uw\",\"type\":\"address\"}],\"name\":\"InvalidUnderwriter\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"wallet\",\"type\":\"address\"}],\"name\":\"InvalidWallet\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NoZeroPolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"PremiumExceedsPayout\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minPremium\",\"type\":\"uint256\"}],\"name\":\"PremiumLessThanMinimum\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"PremiumsAccountMustBePartOfThePool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangePolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UpgradeCannotChangePremiumsAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"oldWallet\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newWallet\",\"type\":\"address\"}],\"name\":\"PartnerWalletChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"contract IUnderwriter\",\"name\":\"oldUW\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"contract IUnderwriter\",\"name\":\"newUW\",\"type\":\"address\"}],\"name\":\"UnderwriterChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"cancelPolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"moc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCollRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"collRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroPpFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCocFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrRoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srRoc\",\"type\":\"uint256\"}],\"internalType\":\"struct Policy.Params\",\"name\":\"p\",\"type\":\"tuple\"}],\"name\":\"getMinimumPremium\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IUnderwriter\",\"name\":\"underwriter_\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"wallet_\",\"type\":\"address\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"inputData\",\"type\":\"bytes[]\"},{\"internalType\":\"address\",\"name\":\"onBehalfOf\",\"type\":\"address\"}],\"name\":\"newPolicies\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"},{\"internalType\":\"address\",\"name\":\"onBehalfOf\",\"type\":\"address\"}],\"name\":\"newPolicy\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"premiumsAccount\",\"outputs\":[{\"internalType\":\"contract IPremiumsAccount\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"replacePolicy\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"resolvePolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IUnderwriter\",\"name\":\"newUW\",\"type\":\"address\"}],\"name\":\"setUnderwriter\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newWallet\",\"type\":\"address\"}],\"name\":\"setWallet\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"underwriter\",\"outputs\":[{\"internalType\":\"contract IUnderwriter\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"wallet\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"Risk Module that keeps the configuration and is responsible for injecting policies and policy resolution\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"PremiumLessThanMinimum(uint256,uint256)\":[{\"details\":\"The minPremium is the one that results of computing the CoCs, purePremium and ensuroCommission for the given parameters, assuming partnerCommission = 0.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"cancelPolicy(bytes)\":{\"details\":\"Cancels a policy, giving back all (or part) of the pure premium and the non-accrued CoC\",\"params\":{\"inputData\":\"Input data that will be decoded by the _underwriter to construct the oldPolicy and the                  parameters for the new policy.\"}},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"initialize(address,address)\":{\"details\":\"Initializes the RiskModule\",\"params\":{\"underwriter_\":\"Contract in charge of decoding and validating the input and pricing the policies\",\"wallet_\":\"Address of the RiskModule provider\"}},\"newPolicies(bytes[],address)\":{\"details\":\"Creates several policies, the premium is paid by msg.sender\",\"params\":{\"inputData\":\"Input data that will be decoded by the _underwriter to construct the parameters for the                  new policy.\",\"onBehalfOf\":\"The address that will be the owner of the created policy (same for all the policies)\"}},\"newPolicy(bytes,address)\":{\"details\":\"Creates a new policy. The premium will paid by msg.sender\",\"params\":{\"inputData\":\"Input data that will be decoded by the _underwriter to construct the parameters for the                  new policy.\",\"onBehalfOf\":\"The address that will be the owner of the created policy\"}},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"replacePolicy(bytes)\":{\"details\":\"Replaces a policy with a new one, with the same owner\",\"params\":{\"inputData\":\"Input data that will be decoded by the _underwriter to construct the oldPolicy and the                  parameters for the new policy.\"}},\"resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"details\":\"Resolves a policy, if payout > 0, it pays to the policy holder. Requirements: - payout <= policy.payout - block.timestamp >= policy.expiration Emits: - {PolicyPool.PolicyResolved}\",\"params\":{\"payout\":\"The payout to transfer to the policy holder\",\"policy\":\"The policy previously created (from {NewPolicy} event)\"}},\"setUnderwriter(address)\":{\"details\":\"Changes the underwriter contract, responsible for pricing and validating new policies, replacements and cancellations. Events: - {RiskModule-UnderwriterChanged}\",\"params\":{\"newUW\":\"The new underwriter contract. It can't be address(0)\"}},\"setWallet(address)\":{\"details\":\"Changes the wallet that will receive the partner commission of the policies created by this risk module. Events: - {RiskModule-PartnerWalletChanged}\",\"params\":{\"newWallet\":\"The new wallet that will receive the partner commissions. It can't be address(0).\"}},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"}},\"stateVariables\":{\"__gap\":{\"details\":\"This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\"},\"_premiumsAccount\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"}},\"title\":\"Ensuro Risk Module contract\",\"version\":1},\"userdoc\":{\"errors\":{\"PremiumExceedsPayout(uint256,uint256)\":[{\"notice\":\"Raised when the premium exceeds the payoutreceived premium is less than the minimum\"}],\"PremiumLessThanMinimum(uint256,uint256)\":[{\"notice\":\"Raised when the received premium is less than the minimum\"}]},\"kind\":\"user\",\"methods\":{\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"},\"premiumsAccount()\":{\"notice\":\"Returns the {PremiumsAccount} where the premiums of this risk module are collected. Never changes.\"},\"underwriter()\":{\"notice\":\"Returns the underwriter contract, responsible for pricing and validating new policies, replacements and cancellations.\"},\"wallet()\":{\"notice\":\"Returns the address of the partner that receives the partnerCommission\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/RiskModule.sol\":\"RiskModule\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@ensuro/core/contracts/PolicyPoolComponent.sol\":{\"keccak256\":\"0x59be0e577af81ab215ac850da84692d6ae7a465917701260f390bc92240c4707\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://c55648f183f32e74d6d83cfc2a8eb606c75a6c3bc598e8ec2a38f9fb3b676f8c\",\"dweb:/ipfs/QmdDFuZz6cn9ywUuxv4bTY3STMWQMWTAzitbocywFMoByb\"]},\"@ensuro/core/contracts/RiskModule.sol\":{\"keccak256\":\"0x4af5f3f209900f192826e166344e0edc4e89de3aaee4a470e9ee1ef1a863ff1e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://459864526e7d577709f22c0bcbc7bf9cc67e81f65de2cee086b1b4ef56956f98\",\"dweb:/ipfs/QmYePgYEDcfMFtZuYK55qM15LxNpwHB55Pa3WQYsw34d9H\"]},\"@ensuro/core/contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"@ensuro/core/contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"@ensuro/core/contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"@ensuro/core/contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]},\"@ensuro/core/contracts/interfaces/IUnderwriter.sol\":{\"keccak256\":\"0x2d2ed693a29e809ddc60c4669a6ea5bf8a74497593e8e099ea76c27505472acb\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4534e64481c50a88d782c615dce9ac3bda35509e0252ca306456665e57f26527\",\"dweb:/ipfs/QmdNGFXjRm2t8cZe5zi9C6YNh9BMHDnk4dfWNfHxmHgqwJ\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":11093,"contract":"@ensuro/core/contracts/RiskModule.sol:RiskModule","label":"__gap","offset":0,"slot":"0","type":"t_array(t_uint256)50_storage"},{"astId":13535,"contract":"@ensuro/core/contracts/RiskModule.sol:RiskModule","label":"_underwriter","offset":0,"slot":"50","type":"t_contract(IUnderwriter)14830"},{"astId":13537,"contract":"@ensuro/core/contracts/RiskModule.sol:RiskModule","label":"_wallet","offset":0,"slot":"51","type":"t_address"},{"astId":14133,"contract":"@ensuro/core/contracts/RiskModule.sol:RiskModule","label":"__gap","offset":0,"slot":"52","type":"t_array(t_uint256)48_storage"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_array(t_uint256)48_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[48]","numberOfBytes":"1536"},"t_array(t_uint256)50_storage":{"base":"t_uint256","encoding":"inplace","label":"uint256[50]","numberOfBytes":"1600"},"t_contract(IUnderwriter)14830":{"encoding":"inplace","label":"contract IUnderwriter","numberOfBytes":"20"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"}}}}},"@ensuro/core/contracts/interfaces/ICooler.sol":{"ICooler":{"abi":[{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"cooldownPeriod","outputs":[{"internalType":"uint40","name":"","type":"uint40"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"}],"name":"pendingWithdrawals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"cooldownPeriod(address,address,uint256)":"5ce095ee","pendingWithdrawals(address)":"f3f43703"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"cooldownPeriod\",\"outputs\":[{\"internalType\":\"uint40\",\"name\":\"\",\"type\":\"uint40\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"}],\"name\":\"pendingWithdrawals\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"details\":\"This contract will hold the tokens during the cooldown period\",\"kind\":\"dev\",\"methods\":{\"cooldownPeriod(address,address,uint256)\":{\"params\":{\"amount\":\"The amount requested to withdraw\",\"eToken\":\"The eToken (see {EToken})\",\"owner\":\"The owner of the tokens requested to withdraw\"},\"returns\":{\"_0\":\"The cooldown period in seconds\"}},\"pendingWithdrawals(address)\":{\"params\":{\"eToken\":\"The eToken (see {EToken})\"},\"returns\":{\"_0\":\"The amount in currency that is pending\"}}},\"title\":\"ICooler - Interface of Cooler contracts, for eTokens that have cooldown\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"cooldownPeriod(address,address,uint256)\":{\"notice\":\"Returns the cooldown period in seconds required for withdrawals in a given eToken\"},\"pendingWithdrawals(address)\":{\"notice\":\"Returns the amount of pending (scheduled) withdrawals for a given eToken\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/interfaces/ICooler.sol\":\"ICooler\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/interfaces/ICooler.sol\":{\"keccak256\":\"0xd2f546d8a15bbc201e1811a050fce315eb72016c4360bf31066a8041f4159cae\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://3a974feacac260a76883322b18e3f0251aa3430f24bab1b7b4c21853a3498a9a\",\"dweb:/ipfs/QmQFixSYSFiJem2UYPJa2ky2eorFNXBncDZ1yrxPMRK66F\"]},\"@ensuro/core/contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/core/contracts/interfaces/IEToken.sol":{"IEToken":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"policyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"SCRLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"policyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"int256","name":"adjustment","type":"int256"}],"name":"SCRUnlocked","type":"event"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"addBorrower","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"updated","type":"bool"}],"name":"getCurrentScale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"getLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"internalLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint256","name":"scrAmount","type":"uint256"},{"internalType":"uint256","name":"policyInterestRate","type":"uint256"}],"name":"lockScr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redistribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"removeBorrower","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"onBehalfOf","type":"address"}],"name":"repayLoan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"scr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"scrInterestRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenInterestRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalWithdrawable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint256","name":"scrAmount","type":"uint256"},{"internalType":"uint256","name":"policyInterestRate","type":"uint256"},{"internalType":"int256","name":"adjustment","type":"int256"}],"name":"unlockScr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint256","name":"scrAmount","type":"uint256"},{"internalType":"uint256","name":"policyInterestRate","type":"uint256"},{"internalType":"int256","name":"adjustment","type":"int256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"refundAmount","type":"uint256"}],"name":"unlockScrWithRefund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"receiver","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"withdrawn","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"addBorrower(address)":"e3a8e29c","cooler()":"cf6a9a94","deposit(uint256,address,address)":"2e2d2984","getCurrentScale(bool)":"79d989fb","getLoan(address)":"33481fc9","internalLoan(uint256,address)":"c3df9dac","lockScr(uint256,uint256,uint256)":"4ffcda8c","redistribute(uint256)":"a0ce552d","removeBorrower(address)":"76c7fc55","repayLoan(uint256,address)":"918344d3","scr()":"6c6f4542","scrInterestRate()":"9d90724d","tokenInterestRate()":"159ec2df","totalWithdrawable()":"0600a865","unlockScr(uint256,uint256,uint256,int256)":"a227dc41","unlockScrWithRefund(uint256,uint256,uint256,int256,address,uint256)":"3ad2820b","withdraw(uint256,address,address,address)":"23e103a8"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"interestRate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SCRLocked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"interestRate\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"adjustment\",\"type\":\"int256\"}],\"name\":\"SCRUnlocked\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"addBorrower\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cooler\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"updated\",\"type\":\"bool\"}],\"name\":\"getCurrentScale\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"getLoan\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"internalLoan\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"scrAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"policyInterestRate\",\"type\":\"uint256\"}],\"name\":\"lockScr\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redistribute\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"borrower\",\"type\":\"address\"}],\"name\":\"removeBorrower\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"onBehalfOf\",\"type\":\"address\"}],\"name\":\"repayLoan\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"scr\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"scrInterestRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"tokenInterestRate\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalWithdrawable\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"scrAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"policyInterestRate\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"adjustment\",\"type\":\"int256\"}],\"name\":\"unlockScr\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"scrAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"policyInterestRate\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"adjustment\",\"type\":\"int256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"refundAmount\",\"type\":\"uint256\"}],\"name\":\"unlockScrWithRefund\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"withdrawn\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"events\":{\"SCRLocked(uint256,uint256,uint256)\":{\"params\":{\"interestRate\":\"The annualized interestRate paid for the capital (wad)\",\"policyId\":\"The id of the policy that locks the capital\",\"value\":\"The amount locked\"}},\"SCRUnlocked(uint256,uint256,uint256,int256)\":{\"params\":{\"adjustment\":\"Discrete amount of adjustment done to the totalSupply to reflect when more or less                   than the received cost of capital has been accrued since the SCR was locked.\",\"interestRate\":\"The annualized interestRate that was paid for the capital (wad)\",\"policyId\":\"The id of the policy that unlocks the capital (should be the that locked before with SCRLocked)\",\"value\":\"The amount unlocked\"}}},\"kind\":\"dev\",\"methods\":{\"addBorrower(address)\":{\"custom:emits\":\"InternalBorrowerAdded\",\"custom:pre\":\"Must be called by `policyPool()`\",\"details\":\"Borrowers (typically PremiumsAccounts) can: - lock/unlock SCR via {lockScr}/{unlockScr}/{unlockScrWithRefund} - take internal loans via {internalLoan}\",\"params\":{\"borrower\":\"The address of the _borrower_, a PremiumsAccount that has this eToken as senior or junior eToken.\"}},\"deposit(uint256,address,address)\":{\"custom:emits\":\"Transfer with `from` = 0x0 and to = `provider` (mint)\",\"custom:pre\":\"Must be called by `policyPool()`The amount was transferred`utilizationRate()` after the deposit is >= `minUtilizationRate()`If there is a whitelist, caller must be authorized to deposit. If caller != receiver, then transfer from caller             to received must be authorized\",\"details\":\"Called from the PolicyPool, assumes the amount has already been transferred. `amount` of eToken are minted and given to the provider in exchange of the liquidity provided.\",\"params\":{\"amount\":\"The amount deposited.\",\"caller\":\"The user that initiates the deposit\",\"receiver\":\"The user that will receive the minted eTokens\"}},\"getCurrentScale(bool)\":{\"params\":{\"updated\":\"When it's false, it returns the last scale stored. When it's true, it projects that scale applying                the accrued returns of the scr\"}},\"internalLoan(uint256,address)\":{\"custom:emits\":\"{InternalLoan}{ERC20-Transfer} transferring `lent` to `receiver`\",\"custom:pre\":\"Must be called by a _borrower_ previously added with `addBorrower`.\",\"details\":\"This reduces the `totalSupply()` of the eToken, and stores a debt that will be repaid (hopefully) with `repayLoan`.\",\"params\":{\"amount\":\"The amount required\",\"receiver\":\"The received of the funds lent. This is usually the policyholder if the loan is used for a payout.\"},\"returns\":{\"_0\":\"Returns the amount that wasn't able to fulfil. `amount - lent`\"}},\"lockScr(uint256,uint256,uint256)\":{\"custom:emits\":\"SCRLocked\",\"custom:pre\":\"Must be called by a _borrower_ (PremiumsAccount) previously added with `addBorrower`.`scrAmount` <= `fundsAvailableToLock()`\",\"params\":{\"policyId\":\"The id of the policy that locks the capital\",\"policyInterestRate\":\"The annualized interest rate (wad) to be paid for the `scrAmount`\",\"scrAmount\":\"The amount to lock\"}},\"redistribute(uint256)\":{\"params\":{\"amount\":\"The amount of eTokens to burn\"}},\"removeBorrower(address)\":{\"custom:emits\":\"InternalBorrowerRemoved with the defaulted debt\",\"custom:pre\":\"Must be called by `policyPool()`\",\"params\":{\"borrower\":\"The address of the _borrower_, a PremiumsAccount that has this eToken as senior or junior eToken.\"}},\"repayLoan(uint256,address)\":{\"custom:emits\":\"{InternalLoanRepaid}{ERC20-Transfer} transferring `amount` from `msg.sender` to `this`\",\"custom:pre\":\"`msg.sender` approved the spending of `currency()` for at least `amount`\",\"params\":{\"amount\":\"The amount to repaid, that will be transferred from `msg.sender` balance.\",\"onBehalfOf\":\"The address of the borrower that took the loan. Usually `onBehalfOf == msg.sender` but we keep it open because in some cases with might need someone else pays the debt.\"}},\"unlockScr(uint256,uint256,uint256,int256)\":{\"custom:emits\":\"SCRUnlocked\",\"custom:pre\":\"Must be called by a _borrower_ (PremiumsAccount) previously added with `addBorrower`.`scrAmount` must be <= {scr}\",\"details\":\"The capital no longer needed as solvency, enabling withdrawal.\",\"params\":{\"adjustment\":\"Discrete amount of adjustment done to the totalSupply to reflect when more or less                   than the received cost of capital has been accrued since the SCR was locked.\",\"policyId\":\"The id of the policy that locked the scr originally\",\"policyInterestRate\":\"The annualized interest rate that was paid for the `scrAmount`, must be the same that                           was sent in `lockScr` call.\",\"scrAmount\":\"The amount to unlock\"}},\"unlockScrWithRefund(uint256,uint256,uint256,int256,address,uint256)\":{\"custom:emits\":\"SCRUnlockedCoCRefunded\",\"custom:pre\":\"Must be called by a _borrower_ previously added with `addBorrower`.\",\"details\":\"The capital no longer needed as solvency . It refunds part of the Coc received that wasn't accrued (or if it was already accrued, it is adjusted). The refund doesn't affect the totalSupply. It just changes the reserves.\",\"params\":{\"policyId\":\"The id of the policy that locked the scr originally\",\"policyInterestRate\":\"The annualized interest rate that was paid for the `scrAmount`, must be the same that was sent in `lockScr` call.\",\"receiver\":\"The address of the receiver of the refund\",\"refundAmount\":\"The amount to refund\",\"scrAmount\":\"The amount to unlock\"}},\"withdraw(uint256,address,address,address)\":{\"custom:emits\":\"Transfer with `from` = `provider` and to = `0x0` (burn)\",\"custom:pre\":\"Must be called by `policyPool()`\",\"details\":\"`withdrawn` eTokens are be burned and the user receives the same amount in `currency()`. If `amount == type(uint256).max`, it withdraws up to `maxWithdraw` (i.e., as much as possible). Otherwise, it reverts if `amount > maxWithdraw`.\",\"params\":{\"amount\":\"The amount to withdraw. If `amount == type(uint256).max`, withdraws up to `maxWithdraw`.\",\"caller\":\"The user that initiates the withdrawal\",\"owner\":\"The owner of the eTokens (either caller==owner or caller has allowance)\",\"receiver\":\"The address that will receive the resulting `currency()`\"}}},\"title\":\"IEToken interface\",\"version\":1},\"userdoc\":{\"events\":{\"SCRLocked(uint256,uint256,uint256)\":{\"notice\":\"Event emitted when part of the funds of the eToken are locked as solvency capital.\"},\"SCRUnlocked(uint256,uint256,uint256,int256)\":{\"notice\":\"Event emitted when the locked funds are unlocked and no longer used as solvency capital.\"}},\"kind\":\"user\",\"methods\":{\"addBorrower(address)\":{\"notice\":\"Adds an authorized _borrower_ to the eToken. This _borrower_ will be allowed to lock/unlock funds and to take loans.\"},\"cooler()\":{\"notice\":\"Returns the cooler contract plugged into the eToken\"},\"deposit(uint256,address,address)\":{\"notice\":\"Registers a deposit of liquidity in the pool.\"},\"getCurrentScale(bool)\":{\"notice\":\"Returns the number that scales the shares to reflect the earnings or losses (rebasing token)\"},\"getLoan(address)\":{\"notice\":\"Returns the updated debt (principal + interest) of the `borrower`.\"},\"internalLoan(uint256,address)\":{\"notice\":\"Lends `amount` to the borrower (msg.sender), transferring the money to `receiver`.\"},\"lockScr(uint256,uint256,uint256)\":{\"notice\":\"Locks part of the liquidity of the EToken as solvency capital.\"},\"redistribute(uint256)\":{\"notice\":\"Redistributes a given amount of eTokens of the caller between the remaining LPs\"},\"removeBorrower(address)\":{\"notice\":\"Removes an authorized _borrower_ to the eToken. The _borrower_ can't no longer lock funds or take loans.\"},\"repayLoan(uint256,address)\":{\"notice\":\"Repays a loan taken with `internalLoan`.\"},\"scr()\":{\"notice\":\"Returns the amount of capital that's locked as solvency capital for active policies.\"},\"scrInterestRate()\":{\"notice\":\"The weighted average annualized interest rate paid by the currently locked `scr()`.\"},\"tokenInterestRate()\":{\"notice\":\"The annualized interest rate at which the `totalSupply()` grows\"},\"totalWithdrawable()\":{\"notice\":\"Returns the total amount that can be withdrawn\"},\"unlockScr(uint256,uint256,uint256,int256)\":{\"notice\":\"Unlocks solvency capital previously locked with `lockScr`.\"},\"unlockScrWithRefund(uint256,uint256,uint256,int256,address,uint256)\":{\"notice\":\"Unlocks solvency capital previously locked with `lockScr`, doing a refund of the CoC previously received\"},\"withdraw(uint256,address,address,address)\":{\"notice\":\"Withdraws an amount from an eToken.\"}},\"notice\":\"Interface for EToken smart contracts, these are the capital pools.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/interfaces/IEToken.sol\":\"IEToken\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/core/contracts/interfaces/ILPWhitelist.sol":{"ILPWhitelist":{"abi":[{"inputs":[{"internalType":"contract IEToken","name":"etoken","type":"address"},{"internalType":"address","name":"provider","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"acceptsDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"etoken","type":"address"},{"internalType":"address","name":"providerFrom","type":"address"},{"internalType":"address","name":"providerTo","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"acceptsTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"etoken","type":"address"},{"internalType":"address","name":"provider","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"acceptsWithdrawal","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":{"acceptsDeposit(address,address,uint256)":"37ee20dd","acceptsTransfer(address,address,address,uint256)":"5fcdca37","acceptsWithdrawal(address,address,uint256)":"9051c763"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"etoken\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"provider\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"acceptsDeposit\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"etoken\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"providerFrom\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"providerTo\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"acceptsTransfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"etoken\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"provider\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"acceptsWithdrawal\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"kind\":\"dev\",\"methods\":{\"acceptsDeposit(address,address,uint256)\":{\"details\":\"Indicates whether or not a liquidity provider can do a deposit in an eToken.\",\"params\":{\"amount\":\"The amount of the deposit\",\"etoken\":\"The eToken (see {EToken}) where the provider wants to deposit money.\",\"provider\":\"The address of the liquidity provider (user) that wants to deposit\"},\"returns\":{\"_0\":\"true if `provider` deposit is accepted, false if not\"}},\"acceptsTransfer(address,address,address,uint256)\":{\"details\":\"Indicates whether or not the eTokens can be transferred from `providerFrom` to `providerTo`\",\"params\":{\"amount\":\"The amount of tokens to be transferred\",\"etoken\":\"The eToken (see {EToken}) that the LPs have the intention to transfer.\",\"providerFrom\":\"The current owner of the tokens\",\"providerTo\":\"The destination of the tokens if the transfer is accepted\"},\"returns\":{\"_0\":\"true if the transfer operation is accepted, false if not.\"}},\"acceptsWithdrawal(address,address,uint256)\":{\"details\":\"Indicates whether or not a liquidity provider can withdraw an eToken.\",\"params\":{\"amount\":\"The amount of the withdrawal\",\"etoken\":\"The eToken (see {EToken}) where the provider wants to withdraw money.\",\"provider\":\"The address of the liquidity provider (user) that wants to withdraw\"},\"returns\":{\"_0\":\"true if `provider` withdraw request is accepted, false if not\"}}},\"title\":\"ILPWhitelist - Interface that handles the whitelisting of Liquidity Providers\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/interfaces/ILPWhitelist.sol\":\"ILPWhitelist\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"@ensuro/core/contracts/interfaces/ILPWhitelist.sol\":{\"keccak256\":\"0x71555d613cf2e4efa341593f2611adc078e4b3f745a15db0c3cba2717f1312eb\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://474679208452130bd5f1acb2ee3c8585f219a441925af65121fee370882de42a\",\"dweb:/ipfs/QmcPoJQnQWKZteafe1T2sEVQHG1YPX8a731W7hqZZVyyxq\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/core/contracts/interfaces/IPolicyHolder.sol":{"IPolicyHolder":{"abi":[{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"policyId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"onPayoutReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"cancelledPolicyId","type":"uint256"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"name":"onPolicyCancelled","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"onPolicyExpired","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"oldPolicyId","type":"uint256"},{"internalType":"uint256","name":"newPolicyId","type":"uint256"}],"name":"onPolicyReplaced","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"onERC721Received(address,address,uint256,bytes)":"150b7a02","onPayoutReceived(address,address,uint256,uint256)":"d6281d3e","onPolicyCancelled(address,address,uint256,uint256,uint256,uint256)":"62eb345e","onPolicyExpired(address,address,uint256)":"e8e617b7","onPolicyReplaced(address,address,uint256,uint256)":"5ee0c7dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"onPayoutReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"cancelledPolicyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"name\":\"onPolicyCancelled\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"onPolicyExpired\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"oldPolicyId\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"newPolicyId\",\"type\":\"uint256\"}],\"name\":\"onPolicyReplaced\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for any contract that wants to be a holder of Ensuro Policies and receive the payouts\",\"kind\":\"dev\",\"methods\":{\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\"},\"onPayoutReceived(address,address,uint256,uint256)\":{\"details\":\"Whenever an Policy is resolved with payout > 0, this function is called It must return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the payout will be successful. If any other value is returned or it reverts, the policy resolution / payout will be reverted. The selector can be obtained in Solidity with `IPolicyHolder.onPayoutReceived.selector`.\"},\"onPolicyCancelled(address,address,uint256,uint256,uint256,uint256)\":{\"details\":\"Whenever a policy is cancelled, this function is called It must return its Solidity selector to confirm the operation. If interface is not implemented by the recipient, it will be ignored and the cancellation will be successful. If any other value is returned or it reverts, the policy cancellation will be reverted. The selector can be obtained in Solidity with `IPolicyHolder.onPolicyCancelled.selector`.\"},\"onPolicyExpired(address,address,uint256)\":{\"details\":\"Whenever an Policy is expired or resolved with payout = 0, this function is called It should return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the payout will be successful. No mather what's the return value or even if this function reverts, this function will not revert the policy expiration. The selector can be obtained in Solidity with `IPolicyHolder.onPolicyExpired.selector`.\"},\"onPolicyReplaced(address,address,uint256,uint256)\":{\"details\":\"Whenever a policy is replaced, this function is called It must return its Solidity selector to confirm the operation. If interface is not implemented by the recipient, it will be ignored and the replacement will be successful. If any other value is returned or it reverts, the policy replacement will be reverted. The selector can be obtained in Solidity with `IPolicyHolder.onPolicyReplaced.selector`.\"}},\"title\":\"Policy holder interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/interfaces/IPolicyHolder.sol\":\"IPolicyHolder\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/interfaces/IPolicyHolder.sol\":{\"keccak256\":\"0xedfdb90379573eaab3213424a517042dd7f015cdb4ee734859609a019275797e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://321e424f1c9afd92e0cb38e4131ce30aaf7df551388b6d1d1abe60ea9dcd0e8a\",\"dweb:/ipfs/QmfFraGLbyy67ugA373JcZfPf7J34uzMHXbyBjoH9enWsK\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/core/contracts/interfaces/IPolicyPool.sol":{"IPolicyPool":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"indexed":false,"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"NewPolicy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":true,"internalType":"uint256","name":"cancelledPolicyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"name":"PolicyCancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":true,"internalType":"uint256","name":"oldPolicyId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newPolicyId","type":"uint256"}],"name":"PolicyReplaced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IRiskModule","name":"riskModule","type":"address"},{"indexed":true,"internalType":"uint256","name":"policyId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"payout","type":"uint256"}],"name":"PolicyResolved","type":"event"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policyToCancel","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"name":"cancelPolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"depositWithPermit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"expirePolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"getPolicyHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"policyId","type":"uint256"}],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"address","name":"payer","type":"address"},{"internalType":"address","name":"policyHolder","type":"address"},{"internalType":"uint96","name":"internalId","type":"uint96"}],"name":"newPolicy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"newPolicy_","type":"tuple"},{"internalType":"address","name":"payer","type":"address"},{"internalType":"uint96","name":"internalId","type":"uint96"}],"name":"replacePolicy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"resolvePolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IEToken","name":"eToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"cancelPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)":"6f520b73","currency()":"e5a6b10f","deposit(address,uint256,address)":"f45346dc","depositWithPermit(address,uint256,address,uint256,uint8,bytes32,bytes32)":"de27010a","expirePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"f720bbbf","getPolicyHash(uint256)":"792da09e","isActive(uint256)":"82afd23b","newPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,address,uint96)":"0d100acb","replacePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,uint96)":"663d8337","resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)":"bd644c56","treasury()":"61d027b3","withdraw(address,uint256,address,address)":"dfcd412e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"indexed\":false,\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"NewPolicy\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"cancelledPolicyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"name\":\"PolicyCancelled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"oldPolicyId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"newPolicyId\",\"type\":\"uint256\"}],\"name\":\"PolicyReplaced\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"contract IRiskModule\",\"name\":\"riskModule\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"PolicyResolved\",\"type\":\"event\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policyToCancel\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"name\":\"cancelPolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"depositWithPermit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"expirePolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"getPolicyHash\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"policyId\",\"type\":\"uint256\"}],\"name\":\"isActive\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"address\",\"name\":\"payer\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"policyHolder\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"}],\"name\":\"newPolicy\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"newPolicy_\",\"type\":\"tuple\"},{\"internalType\":\"address\",\"name\":\"payer\",\"type\":\"address\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"}],\"name\":\"replacePolicy\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"resolvePolicy\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"treasury\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"eToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"Some methods of this interface will be called by other components of the protocol (like RiskModule or      PremiumsAccount).\",\"events\":{\"NewPolicy(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"details\":\"Contains all the data about the policy that is later required for doing operations with the policy like      resolution or expiration.\",\"params\":{\"policy\":\"The {Policy-PolicyData} struct with all the immutable fields of the policy.\",\"riskModule\":\"The risk module that created the policy\"}},\"PolicyCancelled(address,uint256,uint256,uint256,uint256)\":{\"details\":\"After this, the policy is no longer active. The refund amounts are transferred to the policy holder.\",\"params\":{\"cancelledPolicyId\":\"The id of the cancelled policy.\",\"jrCocRefund\":\"The amount of Jr CoC refunded\",\"purePremiumRefund\":\"The amount of pure premium refunded\",\"riskModule\":\"The risk module that created the policy\",\"srCocRefund\":\"The amount of Sr CoC refunded\"}},\"PolicyReplaced(address,uint256,uint256)\":{\"details\":\"The event contains only the id of the replacement policy, the full data is available in the NewPolicy event.\",\"params\":{\"newPolicyId\":\"The id of the new policy.\",\"oldPolicyId\":\"The id of the replaced policy.\",\"riskModule\":\"The risk module that created the policy\"}},\"PolicyResolved(address,uint256,uint256)\":{\"details\":\"If the policy expired, the `payout` is 0, otherwise is the amount transferred to the policyholder.\",\"params\":{\"payout\":\"The payout that has been paid to the policy holder. 0 when the policy expired.\",\"policyId\":\"The unique id of the policy\",\"riskModule\":\"The risk module where that created the policy initially.\"}}},\"kind\":\"dev\",\"methods\":{\"cancelPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)\":{\"custom:emits\":\"PolicyCancelled with the refund amountsERC20-Transfer transfers of the refunds amount to the policy holder\",\"custom:pre\":\"`msg.sender` must be an active or deprecated RiskModulePolicy not expired Events:\",\"details\":\"After this call the policy is not claimable and funds are unlocked\",\"params\":{\"jrCocRefund\":\"The amount to refund from jrCoc (<= policyToCancel.jrCoc)\",\"policyToCancel\":\"A policy created previously and not expired, that will be cancelled\",\"purePremiumRefund\":\"The amount to refund from pure premiums (<= policyToCancel.purePremium)\",\"srCocRefund\":\"The amount to refund from srCoc (<= policyToCancel.jrCoc)\"}},\"deposit(address,uint256,address)\":{\"custom:emits\":\"EToken-Transfer from 0x0 to `receiver`, reflects the eTokens minted.ERC20-Transfer from `msg.sender` to address(eToken)\",\"custom:pre\":\"`msg.sender` approved the spending of `currency()` for at least `amount``eToken` is an active eToken installed in the pool.\",\"details\":\"Forwards the call to {EToken-deposit}, after transferring the funds.      The user will receive etokens for the same amount deposited.\",\"params\":{\"amount\":\"The amount to deposit\",\"eToken\":\"The address of the eToken to which the user wants to provide liquidity\",\"receiver\":\"The user that will receive the minted tokens\"}},\"depositWithPermit(address,uint256,address,uint256,uint8,bytes32,bytes32)\":{\"custom:emits\":\"EToken-Transfer from 0x0 to `receiver`, reflects the eTokens minted.ERC20-Transfer from `msg.sender` to address(eToken)\",\"custom:pre\":\"`msg.sender` approved the spending of `currency()` for at least `amount``eToken` is an active eToken installed in the pool.\",\"details\":\"Forwards the call to {EToken-deposit}, after transferring the funds.      The user will receive etokens for the same amount deposited. EIP-2612 compatible version, allows sending a      signed permit in the same operation.\",\"params\":{\"amount\":\"The amount to deposit\",\"deadline\":\"The deadline of the permit\",\"eToken\":\"The address of the eToken to which the user wants to provide liquidity\",\"r\":\"Component of the secp256k1 signature\",\"receiver\":\"The user that will receive the minted tokens\",\"s\":\"Component of the secp256k1 signature\",\"v\":\"Component of the secp256k1 signature\"}},\"expirePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"custom:emits\":\"PolicyResolved with the payout == 0\",\"custom:pre\":\"`policy`: must be a Policy not resolved before`policy.expiration` <= block.timestamp\",\"details\":\"Resolves a policy with a payout 0, unlocking the solvency. Can be called by anyone, but only after      `Policy.expiration`.\",\"params\":{\"policy\":\"A policy previously created with `newPolicy`\"}},\"getPolicyHash(uint256)\":{\"details\":\"Returns `bytes32(0)` if the policy isn't active.\",\"params\":{\"policyId\":\"The id of the policy queried\"},\"returns\":{\"_0\":\"Returns the hash of a given policy id\"}},\"isActive(uint256)\":{\"details\":\"A policy is active when it's still in the PolicyPool, not yet resolved or expired.      Be aware that a policy might be active but the `block.timestamp` might be after the expiration date, so it      can't be triggered with a payout.\",\"params\":{\"policyId\":\"The id of the policy queried\"},\"returns\":{\"_0\":\"Whether the policy is active or not\"}},\"newPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,address,uint96)\":{\"custom:emits\":\"NewPolicy with all the details about the policyERC20-Transfer transfers from `payer` to the different receivers of the premium               (see Premium Split in the docs)\",\"custom:pre\":\"`msg.sender` must be an active RiskModule`rm.premiumsAccount()` must be an active PremiumsAccount`payer` approved the spending of `currency()` for at least `policy.premium``internalId` must be unique within the risk module (`msg.sender`) and not used before\",\"custom:throws\":\"PolicyAlreadyExists when reusing an internalId\",\"details\":\"It charges the premium and distributes it to the different parties (PremiumsAccount, ETokens, treasury)\",\"params\":{\"internalId\":\"A unique id within the RiskModule, that will be used to compute the policy id\",\"payer\":\"The address that will pay for the premium\",\"policy\":\"A policy created with {Policy-initialize}\",\"policyHolder\":\"The address of the policy holder\"},\"returns\":{\"_0\":\"The policy id, identifying the NFT and the policy\"}},\"replacePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,uint96)\":{\"custom:emits\":\"PolicyReplaced with the ids of the new and replaced policyNewPolicy with all the details of the new policy\",\"custom:pre\":\"`msg.sender` must be an active RiskModule`rm.premiumsAccount()` must be an active PremiumsAccount`payer` approved the spending of `currency()` for at least `newPolicy_.premium - oldPolicy.premium``internalId` must be unique within `policy.riskModule` and not used before\",\"custom:throws\":\"PolicyAlreadyExpired when trying to replace an expired policyInvalidPolicyReplacement when trying to reduce some of the premium componentsa\",\"details\":\"After this call, the oldPolicy is no longer active and a new policy is created. Diferencial changes to      premiums and locked SCR.\",\"params\":{\"internalId\":\"A unique id within the RiskModule, that will be used to compute the policy id\",\"newPolicy_\":\"A policy created with {Policy-initialize}\",\"oldPolicy\":\"A policy created previously and not expired\",\"payer\":\"The address that will pay for the premium difference\"},\"returns\":{\"_0\":\"The policy id, identifying the NFT and the policy\"}},\"resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"custom:emits\":\"PolicyResolved with the payout amountERC20-Transfer to the policyholder with the payout\",\"custom:pre\":\"`msg.sender` must be an active or deprecated RiskModule`payout`: must be less than equal to `policy.payout`.`policy`: must be a Policy not resolved before and not expired (if payout > 0).\",\"details\":\"After this call the policy is no longer active and the funds have been unlocked.\",\"params\":{\"payout\":\"The amount to pay to the policyholder\",\"policy\":\"A policy previously created with `newPolicy`\"}},\"withdraw(address,uint256,address,address)\":{\"custom:emits\":\"EToken-Transfer from `owner` to `0x0`, reflects the eTokens burned.ERC20-Transfer from address(eToken) to `receiver`\",\"custom:pre\":\"`eToken` is an active (or deprecated) eToken installed in the pool.\",\"details\":\"Forwards the call to {EToken-withdraw}. `amount` of eTokens will be burned and the user will receive the      same amount in `currency()`.\",\"params\":{\"amount\":\"The amount to withdraw. If equal to type(uint256).max, means full withdrawal.               If the balance is not enough or can't be withdrawn (locked as SCR), it withdraws               as much as it can, but doesn't fails.\",\"eToken\":\"The address of the eToken from where the user wants to withdraw liquidity\",\"owner\":\"The user that owns the eTokens (must be msg.sender or have allowance)\",\"receiver\":\"The user that will receive the resulting `currency()`\"},\"returns\":{\"_0\":\"Returns the actual amount withdrawn.\"}}},\"title\":\"Interface of PolicyPool contracts\",\"version\":1},\"userdoc\":{\"events\":{\"NewPolicy(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Event emitted every time a new policy is added to the pool\"},\"PolicyCancelled(address,uint256,uint256,uint256,uint256)\":{\"notice\":\"Event emitted when a policy is cancelled, and part of the paid premium is refunded.\"},\"PolicyReplaced(address,uint256,uint256)\":{\"notice\":\"Event emitted every time a new policy replaces an old Policy.\"},\"PolicyResolved(address,uint256,uint256)\":{\"notice\":\"Event emitted every time a policy is removed from the pool\"}},\"kind\":\"user\",\"methods\":{\"cancelPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256)\":{\"notice\":\"Cancels a policy, doing optional refunds of parts of the premium.\"},\"currency()\":{\"notice\":\"Reference to the main currency (ERC20, e.g. USDC) used in the protocol\"},\"deposit(address,uint256,address)\":{\"notice\":\"Deposits liquidity into an eToken\"},\"depositWithPermit(address,uint256,address,uint256,uint8,bytes32,bytes32)\":{\"notice\":\"Deposits liquidity into an eToken, EIP-2612 compatible version.\"},\"expirePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Expires a policy, unlocked the solvency.\"},\"getPolicyHash(uint256)\":{\"notice\":\"Returns the stored hash of the policy\"},\"isActive(uint256)\":{\"notice\":\"Returns whether a policy is active\"},\"newPolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,address,uint96)\":{\"notice\":\"Creates a new Policy\"},\"replacePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),address,uint96)\":{\"notice\":\"Replaces a policy with another\"},\"resolvePolicy((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"notice\":\"Resolves a policy with a payout, sending the payment to the owner of the policy NFT.\"},\"treasury()\":{\"notice\":\"Address of the treasury, that receives protocol fees.\"},\"withdraw(address,uint256,address,address)\":{\"notice\":\"Withdraws an amount from an eToken\"}},\"notice\":\"There's a single instance of PolicyPool contract for a given deployment of the protocol\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/interfaces/IPolicyPool.sol\":\"IPolicyPool\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@ensuro/core/contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"@ensuro/core/contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"@ensuro/core/contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/core/contracts/interfaces/IPolicyPoolComponent.sol":{"IPolicyPoolComponent":{"abi":[{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","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":{"policyPool()":"4d15eb03","supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"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.\"}},\"title\":\"IPolicyPoolComponent interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"policyPool()\":{\"notice\":\"Returns the address of the PolicyPool (see {PolicyPool}) where this component belongs.\"}},\"notice\":\"Interface for Contracts linked (owned) by a PolicyPool. Useful to avoid cyclic dependencies\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/interfaces/IPolicyPoolComponent.sol\":\"IPolicyPoolComponent\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@ensuro/core/contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"@ensuro/core/contracts/interfaces/IPolicyPool.sol\":{\"keccak256\":\"0xe128d35f335d6a708d6210912c23dd3dcfd9f0b5d740406c1ae97cdd5908c947\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe93525493391f5589a7a71e957ae38b32f5f3c0196c038dc335d008aa60a9c3\",\"dweb:/ipfs/QmNyWA4Ye9ev4ZTEqb8RuiBKCtbGifcARJyhmujjashJGs\"]},\"@ensuro/core/contracts/interfaces/IPolicyPoolComponent.sol\":{\"keccak256\":\"0xcce983054086973c80acbf04699629eee7e7bba273ef846a002543dd2fec2bac\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://edb4f7aceb52860e2e456ac8f8754c0d49f202ae427e9e3a1fc78f6ccc4d65ca\",\"dweb:/ipfs/QmeW6YGU5rHRNCB7CxEsr8cEqECth6fSh8VGytrFBZrDo8\"]},\"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"@ensuro/core/contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol":{"IPremiumsAccount":{"abi":[{"inputs":[],"name":"etks","outputs":[{"internalType":"contract IEToken","name":"juniorEtk","type":"address"},{"internalType":"contract IEToken","name":"seniorEtk","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"juniorEtk","outputs":[{"internalType":"contract IEToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policyToCancel","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"},{"internalType":"address","name":"policyHolder","type":"address"}],"name":"policyCancelled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"policyCreated","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"name":"policyExpired","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"newPolicy","type":"tuple"}],"name":"policyReplaced","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"policyHolder","type":"address"},{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"policyResolvedWithPayout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"purePremiums","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"seniorEtk","outputs":[{"internalType":"contract IEToken","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"etks()":"5e445859","juniorEtk()":"536ebbfc","policyCancelled((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256,address)":"ee1f9a6a","policyCreated((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"f79ac183","policyExpired((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"76185ff1","policyReplaced((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))":"d5c6c166","policyResolvedWithPayout(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)":"1dda2899","purePremiums()":"26ccbd22","seniorEtk()":"7b83037b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"etks\",\"outputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"juniorEtk\",\"type\":\"address\"},{\"internalType\":\"contract IEToken\",\"name\":\"seniorEtk\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"juniorEtk\",\"outputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policyToCancel\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"policyHolder\",\"type\":\"address\"}],\"name\":\"policyCancelled\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"policyCreated\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"name\":\"policyExpired\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"newPolicy\",\"type\":\"tuple\"}],\"name\":\"policyReplaced\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"policyHolder\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"}],\"name\":\"policyResolvedWithPayout\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"purePremiums\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"seniorEtk\",\"outputs\":[{\"internalType\":\"contract IEToken\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"kind\":\"dev\",\"methods\":{\"policyCancelled((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256,address)\":{\"custom:emits\":\"{EToken-SCRUnlocked}\",\"custom:pre\":\"Must be called by `policyPool()`\",\"params\":{\"jrCocRefund\":\"The jrCoc that will be reimbursed to the policy holder\",\"policyHolder\":\"Owner of the policy that will receive the reimbursement\",\"policyToCancel\":\"The policy that is being cancelled\",\"purePremiumRefund\":\"The pure premium amount that will be reimbursed to the policy holder\",\"srCocRefund\":\"The srCoc that will be reimbursed to the policy holder\"}},\"policyCreated((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"custom:emits\":\"{EToken-SCRLocked}\",\"custom:pre\":\"Must be called by `policyPool()`\",\"params\":{\"policy\":\"The policy to add (created in this transaction)\"}},\"policyExpired((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"custom:emits\":\"{ERC20-Transfer}: `to == policyHolder`, `amount == payout`{EToken-InternalLoanRepaid}: optional, if a loan was taken before\",\"custom:pre\":\"Must be called by `policyPool()`\",\"params\":{\"policy\":\"The policy that has expired\"}},\"policyReplaced((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"custom:emits\":\"{EToken-SCRUnlocked}{EToken-SCRLocked}\",\"custom:pre\":\"Must be called by `policyPool()`\",\"params\":{\"newPolicy\":\"The policy that will replace the old one (created in this transaction)\",\"oldPolicy\":\"The policy to replace (created in a previous transaction)\"}},\"policyResolvedWithPayout(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"custom:emits\":\"{ERC20-Transfer}: `to == policyHolder`, `amount == payout`{EToken-InternalLoan}: optional, if a loan needs to be taken{EToken-SCRUnlocked}\",\"custom:pre\":\"Must be called by `policyPool()`\",\"params\":{\"payout\":\"The amount that has to be transferred to `policyHolder`\",\"policy\":\"The policy that was resolved\",\"policyHolder\":\"The one that will receive the payout\"}}},\"title\":\"IPremiumsAccount interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"etks()\":{\"notice\":\"Returns the juniorEtk and seniorEtk. See {juniorEtk()} and {seniorEtk()}\"},\"juniorEtk()\":{\"notice\":\"The junior eToken, the primary source of solvency, used if the premiums account is exhausted.\"},\"policyCancelled((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256,uint256,uint256,address)\":{\"notice\":\"Reflects the cancellation of a policy, doing the required refunds.\"},\"policyCreated((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Adds a policy to the PremiumsAccount. Stores the pure premiums and locks the aditional funds from junior and senior eTokens.\"},\"policyExpired((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"The PremiumsAccount is notified that the policy has expired, unlocks the SCR and earns the pure premium.\"},\"policyReplaced((uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40))\":{\"notice\":\"Replaces a policy with another in PremiumsAccount. Stores the pure premiums difference and re-locks the aditional funds from junior and senior eTokens.\"},\"policyResolvedWithPayout(address,(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint40,uint40),uint256)\":{\"notice\":\"The PremiumsAccount is notified that the policy was resolved and issues the payout to the policyHolder.\"},\"purePremiums()\":{\"notice\":\"The total amount of premiums hold by this PremiumsAccount\"},\"seniorEtk()\":{\"notice\":\"The senior eToken, the secondary source of solvency, used if the premiums account is exhausted and junior too\"}},\"notice\":\"Interface for Premiums Account contracts.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol\":\"IPremiumsAccount\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@ensuro/core/contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/core/contracts/interfaces/IRiskModule.sol":{"IRiskModule":{"abi":[{"inputs":[],"name":"premiumsAccount","outputs":[{"internalType":"contract IPremiumsAccount","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wallet","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":{"premiumsAccount()":"73a952e8","wallet()":"521eb273"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"premiumsAccount\",\"outputs\":[{\"internalType\":\"contract IPremiumsAccount\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"wallet\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"kind\":\"dev\",\"methods\":{},\"title\":\"IRiskModule interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"premiumsAccount()\":{\"notice\":\"Returns the {PremiumsAccount} where the premiums of this risk module are collected. Never changes.\"},\"wallet()\":{\"notice\":\"Returns the address of the partner that receives the partnerCommission\"}},\"notice\":\"Interface for RiskModule smart contracts. Gives access to RiskModule configuration parameters\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/interfaces/IRiskModule.sol\":\"IRiskModule\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@ensuro/core/contracts/interfaces/IEToken.sol\":{\"keccak256\":\"0x42feb957b02350a52b7817de9410e30ac8b89d0aca38075a952ca212c7fefc7f\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://70ecd345c04beb07e151f3ce548ad2865ca5561b8149483f3dcb0c57127bcbbd\",\"dweb:/ipfs/QmPuA16rKHvc2m4Vf3d97MpYPWyt6rA9CxzDSNEFTdiWg7\"]},\"@ensuro/core/contracts/interfaces/IPremiumsAccount.sol\":{\"keccak256\":\"0x8604cc882d467350b4e7a4db21e6196b4e92f37f86b4ed05ea2481d3c3f3ed70\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://b2e154e7b1f25a86689727a54b15b8443f98c62afe4b088c11bc65fb39e8842f\",\"dweb:/ipfs/QmZvmBGoxtsYG1UauSW1PD4x2wqtRmPuFU61cMa8apcrq8\"]},\"@ensuro/core/contracts/interfaces/IRiskModule.sol\":{\"keccak256\":\"0x0904569a987704b1af9df274c03f41b7677a5f4ee12b4bd4bafdb9b676590812\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://046225c427fcb113a3300cdefa11e0a3322bbb9668eb7dabe60b404da13d1235\",\"dweb:/ipfs/QmciCctpAnp6EQMa11DyzdidE6PMWkkbjZuXvQyJpLFvUY\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/core/contracts/interfaces/IUnderwriter.sol":{"IUnderwriter":{"abi":[{"inputs":[{"internalType":"address","name":"rm","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"priceNewPolicy","outputs":[{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint96","name":"internalId","type":"uint96"},{"components":[{"internalType":"uint256","name":"moc","type":"uint256"},{"internalType":"uint256","name":"jrCollRatio","type":"uint256"},{"internalType":"uint256","name":"collRatio","type":"uint256"},{"internalType":"uint256","name":"ensuroPpFee","type":"uint256"},{"internalType":"uint256","name":"ensuroCocFee","type":"uint256"},{"internalType":"uint256","name":"jrRoc","type":"uint256"},{"internalType":"uint256","name":"srRoc","type":"uint256"}],"internalType":"struct Policy.Params","name":"params","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rm","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"pricePolicyCancellation","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policyToCancel","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rm","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"pricePolicyReplacement","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint96","name":"internalId","type":"uint96"},{"components":[{"internalType":"uint256","name":"moc","type":"uint256"},{"internalType":"uint256","name":"jrCollRatio","type":"uint256"},{"internalType":"uint256","name":"collRatio","type":"uint256"},{"internalType":"uint256","name":"ensuroPpFee","type":"uint256"},{"internalType":"uint256","name":"ensuroCocFee","type":"uint256"},{"internalType":"uint256","name":"jrRoc","type":"uint256"},{"internalType":"uint256","name":"srRoc","type":"uint256"}],"internalType":"struct Policy.Params","name":"params","type":"tuple"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"priceNewPolicy(address,bytes)":"ba097a2a","pricePolicyCancellation(address,bytes)":"32f857fa","pricePolicyReplacement(address,bytes)":"9ba942d6"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"rm\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"priceNewPolicy\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"moc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCollRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"collRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroPpFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCocFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrRoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srRoc\",\"type\":\"uint256\"}],\"internalType\":\"struct Policy.Params\",\"name\":\"params\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"rm\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"pricePolicyCancellation\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policyToCancel\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"rm\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"pricePolicyReplacement\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"moc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCollRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"collRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroPpFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCocFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrRoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srRoc\",\"type\":\"uint256\"}],\"internalType\":\"struct Policy.Params\",\"name\":\"params\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"kind\":\"dev\",\"methods\":{\"priceNewPolicy(address,bytes)\":{\"custom:pre\":\"`inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.The caller must satisfy any access/authentication requirements imposed by the implementation.\",\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"expiration\":\" Policy expiration timestamp (seconds since epoch).\",\"internalId\":\" Unique id within `rm` used to derive the policy id.\",\"lossProb\":\"   Loss probability used for pricing/risk calculations.\",\"params\":\"     Additional policy parameters used by {Policy-initialize}.\",\"payout\":\"     The policy payout.\",\"premium\":\"    The total premium for the policy.\"}},\"pricePolicyCancellation(address,bytes)\":{\"custom:pre\":\"`inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.The caller must satisfy any access/authentication requirements imposed by the implementation.\",\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"jrCocRefund\":\"      Amount to refund from junior CoC (or a sentinel value, if supported).\",\"policyToCancel\":\"   The policy to cancel (as {Policy-PolicyData}).\",\"purePremiumRefund\":\"Amount to refund from pure premium.\",\"srCocRefund\":\"      Amount to refund from senior CoC (or a sentinel value, if supported).\"}},\"pricePolicyReplacement(address,bytes)\":{\"custom:pre\":\"`inputData` must follow the ABI/layout expected by the concrete Underwriter implementation.The caller must satisfy any access/authentication requirements imposed by the implementation.\",\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"expiration\":\" Replacement policy expiration timestamp.\",\"internalId\":\" Unique id within `rm` for the replacement policy.\",\"lossProb\":\"   Loss probability used for pricing/risk calculations.\",\"oldPolicy\":\"  The policy being replaced (as {Policy-PolicyData}).\",\"params\":\"     Additional policy parameters used by {Policy-initialize}.\",\"payout\":\"     The replacement policy payout.\",\"premium\":\"    The replacement policy premium.\"}}},\"title\":\"Underwriter interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"priceNewPolicy(address,bytes)\":{\"notice\":\"Prices a new policy request for RiskModule `rm`.\"},\"pricePolicyCancellation(address,bytes)\":{\"notice\":\"Prices a policy cancellation request for RiskModule `rm`.\"},\"pricePolicyReplacement(address,bytes)\":{\"notice\":\"Prices a policy replacement request for RiskModule `rm`.\"}},\"notice\":\"Interface for a contract that validates inputs and converts it into the fields required to create a policy\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/interfaces/IUnderwriter.sol\":\"IUnderwriter\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@ensuro/core/contracts/interfaces/IUnderwriter.sol\":{\"keccak256\":\"0x2d2ed693a29e809ddc60c4669a6ea5bf8a74497593e8e099ea76c27505472acb\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4534e64481c50a88d782c615dce9ac3bda35509e0252ca306456665e57f26527\",\"dweb:/ipfs/QmdNGFXjRm2t8cZe5zi9C6YNh9BMHDnk4dfWNfHxmHgqwJ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/core/contracts/underwriters/FullSignedUW.sol":{"FullSignedUW":{"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"},{"inputs":[{"internalType":"uint256","name":"actual","type":"uint256"},{"internalType":"uint256","name":"expected","type":"uint256"}],"name":"InvalidInputSize","type":"error"},{"inputs":[],"name":"SignatureRmMismatch","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"UnauthorizedSigner","type":"error"},{"inputs":[{"internalType":"address","name":"rm","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"priceNewPolicy","outputs":[{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint96","name":"internalId","type":"uint96"},{"components":[{"internalType":"uint256","name":"moc","type":"uint256"},{"internalType":"uint256","name":"jrCollRatio","type":"uint256"},{"internalType":"uint256","name":"collRatio","type":"uint256"},{"internalType":"uint256","name":"ensuroPpFee","type":"uint256"},{"internalType":"uint256","name":"ensuroCocFee","type":"uint256"},{"internalType":"uint256","name":"jrRoc","type":"uint256"},{"internalType":"uint256","name":"srRoc","type":"uint256"}],"internalType":"struct Policy.Params","name":"params","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rm","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"pricePolicyCancellation","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policyToCancel","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rm","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"pricePolicyReplacement","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint96","name":"internalId","type":"uint96"},{"components":[{"internalType":"uint256","name":"moc","type":"uint256"},{"internalType":"uint256","name":"jrCollRatio","type":"uint256"},{"internalType":"uint256","name":"collRatio","type":"uint256"},{"internalType":"uint256","name":"ensuroPpFee","type":"uint256"},{"internalType":"uint256","name":"ensuroCocFee","type":"uint256"},{"internalType":"uint256","name":"jrRoc","type":"uint256"},{"internalType":"uint256","name":"srRoc","type":"uint256"}],"internalType":"struct Policy.Params","name":"params","type":"tuple"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"6080604052348015600e575f5ffd5b506111138061001c5f395ff3fe608060405234801561000f575f5ffd5b506004361061003f575f3560e01c806332f857fa146100435780639ba942d61461006f578063ba097a2a14610095575b5f5ffd5b610056610051366004610a6a565b6100ba565b6040516100669493929190610b86565b60405180910390f35b61008261007d366004610a6a565b610197565b6040516100669796959493929190610bf7565b6100a86100a3366004610a6a565b6102bd565b60405161006696959493929190610c58565b6100c26109f0565b5f5f5f6100f48787876101e07fe1cc1aa1166fa42e3a9bf6f2e810db30f295c27e6aeef2638722d3726d7515706103a9565b6101026101e05f8789610ca7565b81019061010f9190610dd8565b83519397509195509350915060601c6001600160a01b0388161461014657604051634b4bde0960e11b815260040160405180910390fd5b5f19820361016a57610157846105b2565b8461010001516101679190610e27565b91505b5f19810361018e5761017b846105fb565b84610120015161018b9190610e27565b90505b93509350935093565b61019f6109f0565b5f5f5f5f5f6101dd6040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b6102158a8a8a6101ef61018080610e3a565b7fb8bf8abee956c23073a3f628100e45da0cf4d7ca1e953d176e06c48753d2863e6103a9565b5f89818a61022561018080610e3a565b9261023293929190610ca7565b81019061023f9190610ed8565b959d50939b509199509750955090925090506001600160a01b038b166102658260601c90565b6001600160a01b03161480156102875750875160601c6001600160a01b038c16145b6102a457604051634b4bde0960e11b815260040160405180910390fd5b6102ad81610634565b9250509397509397509397909450565b5f5f5f5f5f6102fb6040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b61032a8989896101807f4568705da1639073be69afeb2376d89cef780c68efd064ab4c2e8049be434a186103a9565b5f610339610180828a8c610ca7565b8101906103469190610f46565b949b50929950909750955090925090506001600160a01b038a1661036a8260601c90565b6001600160a01b03161461039157604051634b4bde0960e11b815260040160405180910390fd5b61039a81610634565b92505093975093979195509350565b826103b5604184610e3a565b81146103ee57806103c7604185610e3a565b604051632c28914160e11b8152600481019290925260248201526044015b60405180910390fd5b5f6104376103fe8583888a610ca7565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061064392505050565b90505f6104838261044a85888a8c610ca7565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061067d92505050565b90505f886001600160a01b0316633a7b7a396040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104c2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104e69190610f9c565b60405163b700961360e01b81526001600160a01b0384811660048301528b811660248301526001600160e01b031988166044830152919091169063b7009613906064016040805180830381865afa158015610543573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105679190610fbe565b5090508185826105a5576040516344b0689760e01b81526001600160a01b0390921660048301526001600160e01b03191660248201526044016103e5565b5050505050505050505050565b5f6105bc826106a5565b64ffffffffff1682610140015164ffffffffff16426105db9190610e27565b8361010001516105eb9190611002565b6105f5919061102d565b92915050565b5f610605826106a5565b64ffffffffff1682610140015164ffffffffff16426106249190610e27565b8361012001516105eb9190611002565b5f6105f5600160601b83611040565b5f61064e82516106bc565b8260405160200161066092919061106a565b604051602081830303815290604052805190602001209050919050565b5f5f5f5f61068b868661074c565b92509250925061069b8282610795565b5090949350505050565b5f8161014001518261016001516105f591906110ac565b60605f6106c883610851565b60010190505f8167ffffffffffffffff8111156106e7576106e7610cce565b6040519080825280601f01601f191660200182016040528015610711576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461071b57509392505050565b5f5f5f8351604103610783576020840151604085015160608601515f1a61077588828585610928565b95509550955050505061078e565b505081515f91506002905b9250925092565b5f8260038111156107a8576107a86110c9565b036107b1575050565b60018260038111156107c5576107c56110c9565b036107e35760405163f645eedf60e01b815260040160405180910390fd5b60028260038111156107f7576107f76110c9565b036108185760405163fce698f760e01b8152600481018290526024016103e5565b600382600381111561082c5761082c6110c9565b0361084d576040516335e2f38360e21b8152600481018290526024016103e5565b5050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061088f5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106108bb576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106108d957662386f26fc10000830492506010015b6305f5e10083106108f1576305f5e100830492506008015b612710831061090557612710830492506004015b60648310610917576064830492506002015b600a83106105f55760010192915050565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084111561096157505f915060039050826109e6565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa1580156109b2573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b0381166109dd57505f9250600191508290506109e6565b92505f91508190505b9450945094915050565b6040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b6001600160a01b0381168114610a67575f5ffd5b50565b5f5f5f60408486031215610a7c575f5ffd5b8335610a8781610a53565b9250602084013567ffffffffffffffff811115610aa2575f5ffd5b8401601f81018613610ab2575f5ffd5b803567ffffffffffffffff811115610ac8575f5ffd5b866020828401011115610ad9575f5ffd5b939660209190910195509293505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e0830152610100810151610100830152610120810151610120830152610140810151610b6661014084018264ffffffffff169052565b50610160810151610b8161016084018264ffffffffff169052565b505050565b6101e08101610b958287610aea565b84610180830152836101a0830152826101c083015295945050505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c08301525050565b6103008101610c06828a610aea565b87610180830152866101a0830152856101c083015264ffffffffff85166101e08301526bffffffffffffffffffffffff8416610200830152610c4c610220830184610bb3565b98975050505050505050565b868152602081018690526040810185905264ffffffffff841660608201526bffffffffffffffffffffffff831660808201526101808101610c9c60a0830184610bb3565b979650505050505050565b5f5f85851115610cb5575f5ffd5b83861115610cc1575f5ffd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b604051610180810167ffffffffffffffff81118282101715610d1257634e487b7160e01b5f52604160045260245ffd5b60405290565b803564ffffffffff81168114610d2c575f5ffd5b919050565b5f6101808284031215610d42575f5ffd5b610d4a610ce2565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e08084013590820152610100808401359082015261012080840135908201529050610db96101408301610d18565b610140820152610dcc6101608301610d18565b61016082015292915050565b5f5f5f5f6101e08587031215610dec575f5ffd5b610df68686610d31565b9661018086013596506101a0860135956101c00135945092505050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156105f5576105f5610e13565b808201808211156105f5576105f5610e13565b5f60e08284031215610e5d575f5ffd5b60405160e0810167ffffffffffffffff81118282101715610e8c57634e487b7160e01b5f52604160045260245ffd5b604090815283358252602080850135908301528381013590820152606080840135908201526080808401359082015260a0808401359082015260c0928301359281019290925250919050565b5f5f5f5f5f5f5f610300888a031215610eef575f5ffd5b610ef98989610d31565b965061018088013595506101a088013594506101c08801359350610f206101e08901610d18565b92506102008801359150610f38896102208a01610e4d565b905092959891949750929550565b5f5f5f5f5f5f6101808789031215610f5c575f5ffd5b863595506020870135945060408701359350610f7a60608801610d18565b925060808701359150610f908860a08901610e4d565b90509295509295509295565b5f60208284031215610fac575f5ffd5b8151610fb781610a53565b9392505050565b5f5f60408385031215610fcf575f5ffd5b82518015158114610fde575f5ffd5b602084015190925063ffffffff81168114610ff7575f5ffd5b809150509250929050565b80820281158282048414176105f5576105f5610e13565b634e487b7160e01b5f52601260045260245ffd5b5f8261103b5761103b611019565b500490565b5f8261104e5761104e611019565b500690565b5f81518060208401855e5f93019283525090919050565b7f19457468657265756d205369676e6564204d6573736167653a0a00000000000081525f6110a461109e601a840186611053565b84611053565b949350505050565b64ffffffffff82811682821603908111156105f5576105f5610e13565b634e487b7160e01b5f52602160045260245ffdfea2646970667358221220bb09a27e627e67e45bfdf138acaa3d95f7b995958b1b8c24144d0244ea2de5be64736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1113 DUP1 PUSH2 0x1C PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x3F JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x32F857FA EQ PUSH2 0x43 JUMPI DUP1 PUSH4 0x9BA942D6 EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0xBA097A2A EQ PUSH2 0x95 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x56 PUSH2 0x51 CALLDATASIZE PUSH1 0x4 PUSH2 0xA6A JUMP JUMPDEST PUSH2 0xBA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xB86 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x82 PUSH2 0x7D CALLDATASIZE PUSH1 0x4 PUSH2 0xA6A JUMP JUMPDEST PUSH2 0x197 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xBF7 JUMP JUMPDEST PUSH2 0xA8 PUSH2 0xA3 CALLDATASIZE PUSH1 0x4 PUSH2 0xA6A JUMP JUMPDEST PUSH2 0x2BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xC58 JUMP JUMPDEST PUSH2 0xC2 PUSH2 0x9F0 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0xF4 DUP8 DUP8 DUP8 PUSH2 0x1E0 PUSH32 0xE1CC1AA1166FA42E3A9BF6F2E810DB30F295C27E6AEEF2638722D3726D751570 PUSH2 0x3A9 JUMP JUMPDEST PUSH2 0x102 PUSH2 0x1E0 PUSH0 DUP8 DUP10 PUSH2 0xCA7 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x10F SWAP2 SWAP1 PUSH2 0xDD8 JUMP JUMPDEST DUP4 MLOAD SWAP4 SWAP8 POP SWAP2 SWAP6 POP SWAP4 POP SWAP2 POP PUSH1 0x60 SHR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND EQ PUSH2 0x146 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B4BDE09 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 NOT DUP3 SUB PUSH2 0x16A JUMPI PUSH2 0x157 DUP5 PUSH2 0x5B2 JUMP JUMPDEST DUP5 PUSH2 0x100 ADD MLOAD PUSH2 0x167 SWAP2 SWAP1 PUSH2 0xE27 JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x18E JUMPI PUSH2 0x17B DUP5 PUSH2 0x5FB JUMP JUMPDEST DUP5 PUSH2 0x120 ADD MLOAD PUSH2 0x18B SWAP2 SWAP1 PUSH2 0xE27 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 JUMP JUMPDEST PUSH2 0x19F PUSH2 0x9F0 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1DD PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0x215 DUP11 DUP11 DUP11 PUSH2 0x1EF PUSH2 0x180 DUP1 PUSH2 0xE3A JUMP JUMPDEST PUSH32 0xB8BF8ABEE956C23073A3F628100E45DA0CF4D7CA1E953D176E06C48753D2863E PUSH2 0x3A9 JUMP JUMPDEST PUSH0 DUP10 DUP2 DUP11 PUSH2 0x225 PUSH2 0x180 DUP1 PUSH2 0xE3A JUMP JUMPDEST SWAP3 PUSH2 0x232 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xCA7 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x23F SWAP2 SWAP1 PUSH2 0xED8 JUMP JUMPDEST SWAP6 SWAP14 POP SWAP4 SWAP12 POP SWAP2 SWAP10 POP SWAP8 POP SWAP6 POP SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND PUSH2 0x265 DUP3 PUSH1 0x60 SHR SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 ISZERO PUSH2 0x287 JUMPI POP DUP8 MLOAD PUSH1 0x60 SHR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND EQ JUMPDEST PUSH2 0x2A4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B4BDE09 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2AD DUP2 PUSH2 0x634 JUMP JUMPDEST SWAP3 POP POP SWAP4 SWAP8 POP SWAP4 SWAP8 POP SWAP4 SWAP8 SWAP1 SWAP5 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x2FB PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0x32A DUP10 DUP10 DUP10 PUSH2 0x180 PUSH32 0x4568705DA1639073BE69AFEB2376D89CEF780C68EFD064AB4C2E8049BE434A18 PUSH2 0x3A9 JUMP JUMPDEST PUSH0 PUSH2 0x339 PUSH2 0x180 DUP3 DUP11 DUP13 PUSH2 0xCA7 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x346 SWAP2 SWAP1 PUSH2 0xF46 JUMP JUMPDEST SWAP5 SWAP12 POP SWAP3 SWAP10 POP SWAP1 SWAP8 POP SWAP6 POP SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND PUSH2 0x36A DUP3 PUSH1 0x60 SHR SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x391 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B4BDE09 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x39A DUP2 PUSH2 0x634 JUMP JUMPDEST SWAP3 POP POP SWAP4 SWAP8 POP SWAP4 SWAP8 SWAP2 SWAP6 POP SWAP4 POP JUMP JUMPDEST DUP3 PUSH2 0x3B5 PUSH1 0x41 DUP5 PUSH2 0xE3A JUMP JUMPDEST DUP2 EQ PUSH2 0x3EE JUMPI DUP1 PUSH2 0x3C7 PUSH1 0x41 DUP6 PUSH2 0xE3A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2C289141 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x437 PUSH2 0x3FE DUP6 DUP4 DUP9 DUP11 PUSH2 0xCA7 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 0x643 SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x483 DUP3 PUSH2 0x44A DUP6 DUP9 DUP11 DUP13 PUSH2 0xCA7 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 0x67D SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH0 DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3A7B7A39 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x4C2 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 0x4E6 SWAP2 SWAP1 PUSH2 0xF9C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xB7009613 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP12 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP9 AND PUSH1 0x44 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xB7009613 SWAP1 PUSH1 0x64 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x543 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 0x567 SWAP2 SWAP1 PUSH2 0xFBE JUMP JUMPDEST POP SWAP1 POP DUP2 DUP6 DUP3 PUSH2 0x5A5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x44B06897 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 0xE0 SHL SUB NOT AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3E5 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x5BC DUP3 PUSH2 0x6A5 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x5DB SWAP2 SWAP1 PUSH2 0xE27 JUMP JUMPDEST DUP4 PUSH2 0x100 ADD MLOAD PUSH2 0x5EB SWAP2 SWAP1 PUSH2 0x1002 JUMP JUMPDEST PUSH2 0x5F5 SWAP2 SWAP1 PUSH2 0x102D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x605 DUP3 PUSH2 0x6A5 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x624 SWAP2 SWAP1 PUSH2 0xE27 JUMP JUMPDEST DUP4 PUSH2 0x120 ADD MLOAD PUSH2 0x5EB SWAP2 SWAP1 PUSH2 0x1002 JUMP JUMPDEST PUSH0 PUSH2 0x5F5 PUSH1 0x1 PUSH1 0x60 SHL DUP4 PUSH2 0x1040 JUMP JUMPDEST PUSH0 PUSH2 0x64E DUP3 MLOAD PUSH2 0x6BC JUMP JUMPDEST DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x660 SWAP3 SWAP2 SWAP1 PUSH2 0x106A 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 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x68B DUP7 DUP7 PUSH2 0x74C JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x69B DUP3 DUP3 PUSH2 0x795 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x140 ADD MLOAD DUP3 PUSH2 0x160 ADD MLOAD PUSH2 0x5F5 SWAP2 SWAP1 PUSH2 0x10AC JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x6C8 DUP4 PUSH2 0x851 JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x6E7 JUMPI PUSH2 0x6E7 PUSH2 0xCCE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x711 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0x71B JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x41 SUB PUSH2 0x783 JUMPI PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH0 BYTE PUSH2 0x775 DUP9 DUP3 DUP6 DUP6 PUSH2 0x928 JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP PUSH2 0x78E 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 0x7A8 JUMPI PUSH2 0x7A8 PUSH2 0x10C9 JUMP JUMPDEST SUB PUSH2 0x7B1 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x7C5 JUMPI PUSH2 0x7C5 PUSH2 0x10C9 JUMP JUMPDEST SUB PUSH2 0x7E3 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 0x7F7 JUMPI PUSH2 0x7F7 PUSH2 0x10C9 JUMP JUMPDEST SUB PUSH2 0x818 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x3E5 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x82C JUMPI PUSH2 0x82C PUSH2 0x10C9 JUMP JUMPDEST SUB PUSH2 0x84D JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x3E5 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0x88F JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x8BB JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x8D9 JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x8F1 JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x905 JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x917 JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x5F5 JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0x961 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x9E6 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 0x9B2 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 0x9DD JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x9E6 JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xA67 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xA7C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0xA87 DUP2 PUSH2 0xA53 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAA2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0xAB2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAC8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0xAD9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 POP SWAP3 SWAP4 POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0xB66 PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP2 ADD MLOAD PUSH2 0xB81 PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0xB95 DUP3 DUP8 PUSH2 0xAEA JUMP JUMPDEST DUP5 PUSH2 0x180 DUP4 ADD MSTORE DUP4 PUSH2 0x1A0 DUP4 ADD MSTORE DUP3 PUSH2 0x1C0 DUP4 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0xC06 DUP3 DUP11 PUSH2 0xAEA JUMP JUMPDEST DUP8 PUSH2 0x180 DUP4 ADD MSTORE DUP7 PUSH2 0x1A0 DUP4 ADD MSTORE DUP6 PUSH2 0x1C0 DUP4 ADD MSTORE PUSH5 0xFFFFFFFFFF DUP6 AND PUSH2 0x1E0 DUP4 ADD MSTORE PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND PUSH2 0x200 DUP4 ADD MSTORE PUSH2 0xC4C PUSH2 0x220 DUP4 ADD DUP5 PUSH2 0xBB3 JUMP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x40 DUP2 ADD DUP6 SWAP1 MSTORE PUSH5 0xFFFFFFFFFF DUP5 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP4 AND PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x180 DUP2 ADD PUSH2 0xC9C PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0xBB3 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0xCB5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0xCC1 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 PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xD12 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xD2C JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD42 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xD4A PUSH2 0xCE2 JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0xDB9 PUSH2 0x140 DUP4 ADD PUSH2 0xD18 JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0xDCC PUSH2 0x160 DUP4 ADD PUSH2 0xD18 JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xDEC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xDF6 DUP7 DUP7 PUSH2 0xD31 JUMP JUMPDEST SWAP7 PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP7 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP6 PUSH2 0x1C0 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP 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 0x5F5 JUMPI PUSH2 0x5F5 PUSH2 0xE13 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x5F5 JUMPI PUSH2 0x5F5 PUSH2 0xE13 JUMP JUMPDEST PUSH0 PUSH1 0xE0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE5D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xE8C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 SWAP1 DUP2 MSTORE DUP4 CALLDATALOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP6 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE DUP4 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 SWAP3 DUP4 ADD CALLDATALOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x300 DUP9 DUP11 SUB SLT ISZERO PUSH2 0xEEF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xEF9 DUP10 DUP10 PUSH2 0xD31 JUMP JUMPDEST SWAP7 POP PUSH2 0x180 DUP9 ADD CALLDATALOAD SWAP6 POP PUSH2 0x1A0 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH2 0x1C0 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0xF20 PUSH2 0x1E0 DUP10 ADD PUSH2 0xD18 JUMP JUMPDEST SWAP3 POP PUSH2 0x200 DUP9 ADD CALLDATALOAD SWAP2 POP PUSH2 0xF38 DUP10 PUSH2 0x220 DUP11 ADD PUSH2 0xE4D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x180 DUP8 DUP10 SUB SLT ISZERO PUSH2 0xF5C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0xF7A PUSH1 0x60 DUP9 ADD PUSH2 0xD18 JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD SWAP2 POP PUSH2 0xF90 DUP9 PUSH1 0xA0 DUP10 ADD PUSH2 0xE4D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFAC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xFB7 DUP2 PUSH2 0xA53 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFCF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xFDE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xFF7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x5F5 JUMPI PUSH2 0x5F5 PUSH2 0xE13 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH2 0x103B JUMPI PUSH2 0x103B PUSH2 0x1019 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x104E JUMPI PUSH2 0x104E PUSH2 0x1019 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 PUSH1 0x20 DUP5 ADD DUP6 MCOPY PUSH0 SWAP4 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x19457468657265756D205369676E6564204D6573736167653A0A000000000000 DUP2 MSTORE PUSH0 PUSH2 0x10A4 PUSH2 0x109E PUSH1 0x1A DUP5 ADD DUP7 PUSH2 0x1053 JUMP JUMPDEST DUP5 PUSH2 0x1053 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x5F5 JUMPI PUSH2 0x5F5 PUSH2 0xE13 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 0xBB MULMOD LOG2 PUSH31 0x627E67E45BFDF138ACAA3D95F7B995958B1B8C24144D0244EA2DE5BE64736F PUSH13 0x634300081E0033000000000000 ","sourceMap":"722:5887:38:-:0;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_checkSignature_14995":{"entryPoint":937,"id":14995,"parameterSlots":5,"returnSlots":0},"@_throwError_33172":{"entryPoint":1941,"id":33172,"parameterSlots":2,"returnSlots":0},"@duration_8215":{"entryPoint":1701,"id":8215,"parameterSlots":1,"returnSlots":1},"@extractInternalId_8286":{"entryPoint":1588,"id":8286,"parameterSlots":1,"returnSlots":1},"@extractRiskModule_8267":{"entryPoint":null,"id":8267,"parameterSlots":1,"returnSlots":1},"@jrAccruedInterest_8149":{"entryPoint":1458,"id":8149,"parameterSlots":1,"returnSlots":1},"@log10_34998":{"entryPoint":2129,"id":34998,"parameterSlots":1,"returnSlots":1},"@priceNewPolicy_15075":{"entryPoint":701,"id":15075,"parameterSlots":3,"returnSlots":6},"@pricePolicyCancellation_15264":{"entryPoint":186,"id":15264,"parameterSlots":3,"returnSlots":4},"@pricePolicyReplacement_15169":{"entryPoint":407,"id":15169,"parameterSlots":3,"returnSlots":7},"@recover_32871":{"entryPoint":1661,"id":32871,"parameterSlots":2,"returnSlots":1},"@srAccruedInterest_8199":{"entryPoint":1531,"id":8199,"parameterSlots":1,"returnSlots":1},"@toEthSignedMessageHash_33254":{"entryPoint":1603,"id":33254,"parameterSlots":1,"returnSlots":1},"@toString_31350":{"entryPoint":1724,"id":31350,"parameterSlots":1,"returnSlots":1},"@tryRecover_32788":{"entryPoint":1868,"id":32788,"parameterSlots":2,"returnSlots":3},"@tryRecover_33059":{"entryPoint":2344,"id":33059,"parameterSlots":4,"returnSlots":3},"abi_decode_struct_Params":{"entryPoint":3661,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_struct_PolicyData":{"entryPoint":3377,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_calldata_ptr":{"entryPoint":2666,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_boolt_uint32_fromMemory":{"entryPoint":4030,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IAccessManager_$22178_fromMemory":{"entryPoint":3996,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256":{"entryPoint":3544,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint256t_struct$_Params_$7718_memory_ptr":{"entryPoint":3800,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint256t_struct$_Params_$7718_memory_ptr":{"entryPoint":3910,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_uint40":{"entryPoint":3352,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_bytes":{"entryPoint":4179,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_struct_Params":{"entryPoint":2995,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_struct_PolicyData":{"entryPoint":2794,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_packed_t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4_t_bytes_memory_ptr_t_bytes_memory_ptr__to_t_bytes26_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":4202,"id":null,"parameterSlots":3,"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_bytes4__to_t_address_t_bytes4__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_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_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":2950,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__fromStack_reversed":{"entryPoint":3063,"id":null,"parameterSlots":8,"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_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__to_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__fromStack_reversed":{"entryPoint":3160,"id":null,"parameterSlots":7,"returnSlots":1},"abi_encode_uint40":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"allocate_memory":{"entryPoint":3298,"id":null,"parameterSlots":0,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":3239,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_uint256":{"entryPoint":3642,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":4141,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":4098,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":3623,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint40":{"entryPoint":4268,"id":null,"parameterSlots":2,"returnSlots":1},"mod_t_uint256":{"entryPoint":4160,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":3603,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":4121,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":4297,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":3278,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":2643,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:14609:125","nodeType":"YulBlock","src":"0:14609:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"59:86:125","nodeType":"YulBlock","src":"59:86:125","statements":[{"body":{"nativeSrc":"123:16:125","nodeType":"YulBlock","src":"123:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:125","nodeType":"YulLiteral","src":"132:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:125","nodeType":"YulLiteral","src":"135:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:125","nodeType":"YulIdentifier","src":"125:6:125"},"nativeSrc":"125:12:125","nodeType":"YulFunctionCall","src":"125:12:125"},"nativeSrc":"125:12:125","nodeType":"YulExpressionStatement","src":"125:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:125","nodeType":"YulIdentifier","src":"82:5:125"},{"arguments":[{"name":"value","nativeSrc":"93:5:125","nodeType":"YulIdentifier","src":"93:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:125","nodeType":"YulLiteral","src":"108:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:125","nodeType":"YulLiteral","src":"113:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:125","nodeType":"YulIdentifier","src":"104:3:125"},"nativeSrc":"104:11:125","nodeType":"YulFunctionCall","src":"104:11:125"},{"kind":"number","nativeSrc":"117:1:125","nodeType":"YulLiteral","src":"117:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:125","nodeType":"YulIdentifier","src":"100:3:125"},"nativeSrc":"100:19:125","nodeType":"YulFunctionCall","src":"100:19:125"}],"functionName":{"name":"and","nativeSrc":"89:3:125","nodeType":"YulIdentifier","src":"89:3:125"},"nativeSrc":"89:31:125","nodeType":"YulFunctionCall","src":"89:31:125"}],"functionName":{"name":"eq","nativeSrc":"79:2:125","nodeType":"YulIdentifier","src":"79:2:125"},"nativeSrc":"79:42:125","nodeType":"YulFunctionCall","src":"79:42:125"}],"functionName":{"name":"iszero","nativeSrc":"72:6:125","nodeType":"YulIdentifier","src":"72:6:125"},"nativeSrc":"72:50:125","nodeType":"YulFunctionCall","src":"72:50:125"},"nativeSrc":"69:70:125","nodeType":"YulIf","src":"69:70:125"}]},"name":"validator_revert_address","nativeSrc":"14:131:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:125","nodeType":"YulTypedName","src":"48:5:125","type":""}],"src":"14:131:125"},{"body":{"nativeSrc":"256:615:125","nodeType":"YulBlock","src":"256:615:125","statements":[{"body":{"nativeSrc":"302:16:125","nodeType":"YulBlock","src":"302:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"311:1:125","nodeType":"YulLiteral","src":"311:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"314:1:125","nodeType":"YulLiteral","src":"314:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"304:6:125","nodeType":"YulIdentifier","src":"304:6:125"},"nativeSrc":"304:12:125","nodeType":"YulFunctionCall","src":"304:12:125"},"nativeSrc":"304:12:125","nodeType":"YulExpressionStatement","src":"304:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"277:7:125","nodeType":"YulIdentifier","src":"277:7:125"},{"name":"headStart","nativeSrc":"286:9:125","nodeType":"YulIdentifier","src":"286:9:125"}],"functionName":{"name":"sub","nativeSrc":"273:3:125","nodeType":"YulIdentifier","src":"273:3:125"},"nativeSrc":"273:23:125","nodeType":"YulFunctionCall","src":"273:23:125"},{"kind":"number","nativeSrc":"298:2:125","nodeType":"YulLiteral","src":"298:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"269:3:125","nodeType":"YulIdentifier","src":"269:3:125"},"nativeSrc":"269:32:125","nodeType":"YulFunctionCall","src":"269:32:125"},"nativeSrc":"266:52:125","nodeType":"YulIf","src":"266:52:125"},{"nativeSrc":"327:36:125","nodeType":"YulVariableDeclaration","src":"327:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"353:9:125","nodeType":"YulIdentifier","src":"353:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"340:12:125","nodeType":"YulIdentifier","src":"340:12:125"},"nativeSrc":"340:23:125","nodeType":"YulFunctionCall","src":"340:23:125"},"variables":[{"name":"value","nativeSrc":"331:5:125","nodeType":"YulTypedName","src":"331:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"397:5:125","nodeType":"YulIdentifier","src":"397:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"372:24:125","nodeType":"YulIdentifier","src":"372:24:125"},"nativeSrc":"372:31:125","nodeType":"YulFunctionCall","src":"372:31:125"},"nativeSrc":"372:31:125","nodeType":"YulExpressionStatement","src":"372:31:125"},{"nativeSrc":"412:15:125","nodeType":"YulAssignment","src":"412:15:125","value":{"name":"value","nativeSrc":"422:5:125","nodeType":"YulIdentifier","src":"422:5:125"},"variableNames":[{"name":"value0","nativeSrc":"412:6:125","nodeType":"YulIdentifier","src":"412:6:125"}]},{"nativeSrc":"436:46:125","nodeType":"YulVariableDeclaration","src":"436:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"467:9:125","nodeType":"YulIdentifier","src":"467:9:125"},{"kind":"number","nativeSrc":"478:2:125","nodeType":"YulLiteral","src":"478:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"463:3:125","nodeType":"YulIdentifier","src":"463:3:125"},"nativeSrc":"463:18:125","nodeType":"YulFunctionCall","src":"463:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"450:12:125","nodeType":"YulIdentifier","src":"450:12:125"},"nativeSrc":"450:32:125","nodeType":"YulFunctionCall","src":"450:32:125"},"variables":[{"name":"offset","nativeSrc":"440:6:125","nodeType":"YulTypedName","src":"440:6:125","type":""}]},{"body":{"nativeSrc":"525:16:125","nodeType":"YulBlock","src":"525:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"534:1:125","nodeType":"YulLiteral","src":"534:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"537:1:125","nodeType":"YulLiteral","src":"537:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"527:6:125","nodeType":"YulIdentifier","src":"527:6:125"},"nativeSrc":"527:12:125","nodeType":"YulFunctionCall","src":"527:12:125"},"nativeSrc":"527:12:125","nodeType":"YulExpressionStatement","src":"527:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"497:6:125","nodeType":"YulIdentifier","src":"497:6:125"},{"kind":"number","nativeSrc":"505:18:125","nodeType":"YulLiteral","src":"505:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"494:2:125","nodeType":"YulIdentifier","src":"494:2:125"},"nativeSrc":"494:30:125","nodeType":"YulFunctionCall","src":"494:30:125"},"nativeSrc":"491:50:125","nodeType":"YulIf","src":"491:50:125"},{"nativeSrc":"550:32:125","nodeType":"YulVariableDeclaration","src":"550:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"564:9:125","nodeType":"YulIdentifier","src":"564:9:125"},{"name":"offset","nativeSrc":"575:6:125","nodeType":"YulIdentifier","src":"575:6:125"}],"functionName":{"name":"add","nativeSrc":"560:3:125","nodeType":"YulIdentifier","src":"560:3:125"},"nativeSrc":"560:22:125","nodeType":"YulFunctionCall","src":"560:22:125"},"variables":[{"name":"_1","nativeSrc":"554:2:125","nodeType":"YulTypedName","src":"554:2:125","type":""}]},{"body":{"nativeSrc":"630:16:125","nodeType":"YulBlock","src":"630:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"639:1:125","nodeType":"YulLiteral","src":"639:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"642:1:125","nodeType":"YulLiteral","src":"642:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"632:6:125","nodeType":"YulIdentifier","src":"632:6:125"},"nativeSrc":"632:12:125","nodeType":"YulFunctionCall","src":"632:12:125"},"nativeSrc":"632:12:125","nodeType":"YulExpressionStatement","src":"632:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"609:2:125","nodeType":"YulIdentifier","src":"609:2:125"},{"kind":"number","nativeSrc":"613:4:125","nodeType":"YulLiteral","src":"613:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"605:3:125","nodeType":"YulIdentifier","src":"605:3:125"},"nativeSrc":"605:13:125","nodeType":"YulFunctionCall","src":"605:13:125"},{"name":"dataEnd","nativeSrc":"620:7:125","nodeType":"YulIdentifier","src":"620:7:125"}],"functionName":{"name":"slt","nativeSrc":"601:3:125","nodeType":"YulIdentifier","src":"601:3:125"},"nativeSrc":"601:27:125","nodeType":"YulFunctionCall","src":"601:27:125"}],"functionName":{"name":"iszero","nativeSrc":"594:6:125","nodeType":"YulIdentifier","src":"594:6:125"},"nativeSrc":"594:35:125","nodeType":"YulFunctionCall","src":"594:35:125"},"nativeSrc":"591:55:125","nodeType":"YulIf","src":"591:55:125"},{"nativeSrc":"655:30:125","nodeType":"YulVariableDeclaration","src":"655:30:125","value":{"arguments":[{"name":"_1","nativeSrc":"682:2:125","nodeType":"YulIdentifier","src":"682:2:125"}],"functionName":{"name":"calldataload","nativeSrc":"669:12:125","nodeType":"YulIdentifier","src":"669:12:125"},"nativeSrc":"669:16:125","nodeType":"YulFunctionCall","src":"669:16:125"},"variables":[{"name":"length","nativeSrc":"659:6:125","nodeType":"YulTypedName","src":"659:6:125","type":""}]},{"body":{"nativeSrc":"728:16:125","nodeType":"YulBlock","src":"728:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"737:1:125","nodeType":"YulLiteral","src":"737:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"740:1:125","nodeType":"YulLiteral","src":"740:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"730:6:125","nodeType":"YulIdentifier","src":"730:6:125"},"nativeSrc":"730:12:125","nodeType":"YulFunctionCall","src":"730:12:125"},"nativeSrc":"730:12:125","nodeType":"YulExpressionStatement","src":"730:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"700:6:125","nodeType":"YulIdentifier","src":"700:6:125"},{"kind":"number","nativeSrc":"708:18:125","nodeType":"YulLiteral","src":"708:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"697:2:125","nodeType":"YulIdentifier","src":"697:2:125"},"nativeSrc":"697:30:125","nodeType":"YulFunctionCall","src":"697:30:125"},"nativeSrc":"694:50:125","nodeType":"YulIf","src":"694:50:125"},{"body":{"nativeSrc":"794:16:125","nodeType":"YulBlock","src":"794:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"803:1:125","nodeType":"YulLiteral","src":"803:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"806:1:125","nodeType":"YulLiteral","src":"806:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"796:6:125","nodeType":"YulIdentifier","src":"796:6:125"},"nativeSrc":"796:12:125","nodeType":"YulFunctionCall","src":"796:12:125"},"nativeSrc":"796:12:125","nodeType":"YulExpressionStatement","src":"796:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"767:2:125","nodeType":"YulIdentifier","src":"767:2:125"},{"name":"length","nativeSrc":"771:6:125","nodeType":"YulIdentifier","src":"771:6:125"}],"functionName":{"name":"add","nativeSrc":"763:3:125","nodeType":"YulIdentifier","src":"763:3:125"},"nativeSrc":"763:15:125","nodeType":"YulFunctionCall","src":"763:15:125"},{"kind":"number","nativeSrc":"780:2:125","nodeType":"YulLiteral","src":"780:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"759:3:125","nodeType":"YulIdentifier","src":"759:3:125"},"nativeSrc":"759:24:125","nodeType":"YulFunctionCall","src":"759:24:125"},{"name":"dataEnd","nativeSrc":"785:7:125","nodeType":"YulIdentifier","src":"785:7:125"}],"functionName":{"name":"gt","nativeSrc":"756:2:125","nodeType":"YulIdentifier","src":"756:2:125"},"nativeSrc":"756:37:125","nodeType":"YulFunctionCall","src":"756:37:125"},"nativeSrc":"753:57:125","nodeType":"YulIf","src":"753:57:125"},{"nativeSrc":"819:21:125","nodeType":"YulAssignment","src":"819:21:125","value":{"arguments":[{"name":"_1","nativeSrc":"833:2:125","nodeType":"YulIdentifier","src":"833:2:125"},{"kind":"number","nativeSrc":"837:2:125","nodeType":"YulLiteral","src":"837:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"829:3:125","nodeType":"YulIdentifier","src":"829:3:125"},"nativeSrc":"829:11:125","nodeType":"YulFunctionCall","src":"829:11:125"},"variableNames":[{"name":"value1","nativeSrc":"819:6:125","nodeType":"YulIdentifier","src":"819:6:125"}]},{"nativeSrc":"849:16:125","nodeType":"YulAssignment","src":"849:16:125","value":{"name":"length","nativeSrc":"859:6:125","nodeType":"YulIdentifier","src":"859:6:125"},"variableNames":[{"name":"value2","nativeSrc":"849:6:125","nodeType":"YulIdentifier","src":"849:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptr","nativeSrc":"150:721:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"206:9:125","nodeType":"YulTypedName","src":"206:9:125","type":""},{"name":"dataEnd","nativeSrc":"217:7:125","nodeType":"YulTypedName","src":"217:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"229:6:125","nodeType":"YulTypedName","src":"229:6:125","type":""},{"name":"value1","nativeSrc":"237:6:125","nodeType":"YulTypedName","src":"237:6:125","type":""},{"name":"value2","nativeSrc":"245:6:125","nodeType":"YulTypedName","src":"245:6:125","type":""}],"src":"150:721:125"},{"body":{"nativeSrc":"919:53:125","nodeType":"YulBlock","src":"919:53:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"936:3:125","nodeType":"YulIdentifier","src":"936:3:125"},{"arguments":[{"name":"value","nativeSrc":"945:5:125","nodeType":"YulIdentifier","src":"945:5:125"},{"kind":"number","nativeSrc":"952:12:125","nodeType":"YulLiteral","src":"952:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"941:3:125","nodeType":"YulIdentifier","src":"941:3:125"},"nativeSrc":"941:24:125","nodeType":"YulFunctionCall","src":"941:24:125"}],"functionName":{"name":"mstore","nativeSrc":"929:6:125","nodeType":"YulIdentifier","src":"929:6:125"},"nativeSrc":"929:37:125","nodeType":"YulFunctionCall","src":"929:37:125"},"nativeSrc":"929:37:125","nodeType":"YulExpressionStatement","src":"929:37:125"}]},"name":"abi_encode_uint40","nativeSrc":"876:96:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"903:5:125","nodeType":"YulTypedName","src":"903:5:125","type":""},{"name":"pos","nativeSrc":"910:3:125","nodeType":"YulTypedName","src":"910:3:125","type":""}],"src":"876:96:125"},{"body":{"nativeSrc":"1031:781:125","nodeType":"YulBlock","src":"1031:781:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"1048:3:125","nodeType":"YulIdentifier","src":"1048:3:125"},{"arguments":[{"name":"value","nativeSrc":"1059:5:125","nodeType":"YulIdentifier","src":"1059:5:125"}],"functionName":{"name":"mload","nativeSrc":"1053:5:125","nodeType":"YulIdentifier","src":"1053:5:125"},"nativeSrc":"1053:12:125","nodeType":"YulFunctionCall","src":"1053:12:125"}],"functionName":{"name":"mstore","nativeSrc":"1041:6:125","nodeType":"YulIdentifier","src":"1041:6:125"},"nativeSrc":"1041:25:125","nodeType":"YulFunctionCall","src":"1041:25:125"},"nativeSrc":"1041:25:125","nodeType":"YulExpressionStatement","src":"1041:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1086:3:125","nodeType":"YulIdentifier","src":"1086:3:125"},{"kind":"number","nativeSrc":"1091:4:125","nodeType":"YulLiteral","src":"1091:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1082:3:125","nodeType":"YulIdentifier","src":"1082:3:125"},"nativeSrc":"1082:14:125","nodeType":"YulFunctionCall","src":"1082:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1108:5:125","nodeType":"YulIdentifier","src":"1108:5:125"},{"kind":"number","nativeSrc":"1115:4:125","nodeType":"YulLiteral","src":"1115:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1104:3:125","nodeType":"YulIdentifier","src":"1104:3:125"},"nativeSrc":"1104:16:125","nodeType":"YulFunctionCall","src":"1104:16:125"}],"functionName":{"name":"mload","nativeSrc":"1098:5:125","nodeType":"YulIdentifier","src":"1098:5:125"},"nativeSrc":"1098:23:125","nodeType":"YulFunctionCall","src":"1098:23:125"}],"functionName":{"name":"mstore","nativeSrc":"1075:6:125","nodeType":"YulIdentifier","src":"1075:6:125"},"nativeSrc":"1075:47:125","nodeType":"YulFunctionCall","src":"1075:47:125"},"nativeSrc":"1075:47:125","nodeType":"YulExpressionStatement","src":"1075:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1142:3:125","nodeType":"YulIdentifier","src":"1142:3:125"},{"kind":"number","nativeSrc":"1147:4:125","nodeType":"YulLiteral","src":"1147:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"1138:3:125","nodeType":"YulIdentifier","src":"1138:3:125"},"nativeSrc":"1138:14:125","nodeType":"YulFunctionCall","src":"1138:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1164:5:125","nodeType":"YulIdentifier","src":"1164:5:125"},{"kind":"number","nativeSrc":"1171:4:125","nodeType":"YulLiteral","src":"1171:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"1160:3:125","nodeType":"YulIdentifier","src":"1160:3:125"},"nativeSrc":"1160:16:125","nodeType":"YulFunctionCall","src":"1160:16:125"}],"functionName":{"name":"mload","nativeSrc":"1154:5:125","nodeType":"YulIdentifier","src":"1154:5:125"},"nativeSrc":"1154:23:125","nodeType":"YulFunctionCall","src":"1154:23:125"}],"functionName":{"name":"mstore","nativeSrc":"1131:6:125","nodeType":"YulIdentifier","src":"1131:6:125"},"nativeSrc":"1131:47:125","nodeType":"YulFunctionCall","src":"1131:47:125"},"nativeSrc":"1131:47:125","nodeType":"YulExpressionStatement","src":"1131:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1198:3:125","nodeType":"YulIdentifier","src":"1198:3:125"},{"kind":"number","nativeSrc":"1203:4:125","nodeType":"YulLiteral","src":"1203:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"1194:3:125","nodeType":"YulIdentifier","src":"1194:3:125"},"nativeSrc":"1194:14:125","nodeType":"YulFunctionCall","src":"1194:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1220:5:125","nodeType":"YulIdentifier","src":"1220:5:125"},{"kind":"number","nativeSrc":"1227:4:125","nodeType":"YulLiteral","src":"1227:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"1216:3:125","nodeType":"YulIdentifier","src":"1216:3:125"},"nativeSrc":"1216:16:125","nodeType":"YulFunctionCall","src":"1216:16:125"}],"functionName":{"name":"mload","nativeSrc":"1210:5:125","nodeType":"YulIdentifier","src":"1210:5:125"},"nativeSrc":"1210:23:125","nodeType":"YulFunctionCall","src":"1210:23:125"}],"functionName":{"name":"mstore","nativeSrc":"1187:6:125","nodeType":"YulIdentifier","src":"1187:6:125"},"nativeSrc":"1187:47:125","nodeType":"YulFunctionCall","src":"1187:47:125"},"nativeSrc":"1187:47:125","nodeType":"YulExpressionStatement","src":"1187:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1254:3:125","nodeType":"YulIdentifier","src":"1254:3:125"},{"kind":"number","nativeSrc":"1259:4:125","nodeType":"YulLiteral","src":"1259:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"1250:3:125","nodeType":"YulIdentifier","src":"1250:3:125"},"nativeSrc":"1250:14:125","nodeType":"YulFunctionCall","src":"1250:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1276:5:125","nodeType":"YulIdentifier","src":"1276:5:125"},{"kind":"number","nativeSrc":"1283:4:125","nodeType":"YulLiteral","src":"1283:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"1272:3:125","nodeType":"YulIdentifier","src":"1272:3:125"},"nativeSrc":"1272:16:125","nodeType":"YulFunctionCall","src":"1272:16:125"}],"functionName":{"name":"mload","nativeSrc":"1266:5:125","nodeType":"YulIdentifier","src":"1266:5:125"},"nativeSrc":"1266:23:125","nodeType":"YulFunctionCall","src":"1266:23:125"}],"functionName":{"name":"mstore","nativeSrc":"1243:6:125","nodeType":"YulIdentifier","src":"1243:6:125"},"nativeSrc":"1243:47:125","nodeType":"YulFunctionCall","src":"1243:47:125"},"nativeSrc":"1243:47:125","nodeType":"YulExpressionStatement","src":"1243:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1310:3:125","nodeType":"YulIdentifier","src":"1310:3:125"},{"kind":"number","nativeSrc":"1315:4:125","nodeType":"YulLiteral","src":"1315:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"1306:3:125","nodeType":"YulIdentifier","src":"1306:3:125"},"nativeSrc":"1306:14:125","nodeType":"YulFunctionCall","src":"1306:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1332:5:125","nodeType":"YulIdentifier","src":"1332:5:125"},{"kind":"number","nativeSrc":"1339:4:125","nodeType":"YulLiteral","src":"1339:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"1328:3:125","nodeType":"YulIdentifier","src":"1328:3:125"},"nativeSrc":"1328:16:125","nodeType":"YulFunctionCall","src":"1328:16:125"}],"functionName":{"name":"mload","nativeSrc":"1322:5:125","nodeType":"YulIdentifier","src":"1322:5:125"},"nativeSrc":"1322:23:125","nodeType":"YulFunctionCall","src":"1322:23:125"}],"functionName":{"name":"mstore","nativeSrc":"1299:6:125","nodeType":"YulIdentifier","src":"1299:6:125"},"nativeSrc":"1299:47:125","nodeType":"YulFunctionCall","src":"1299:47:125"},"nativeSrc":"1299:47:125","nodeType":"YulExpressionStatement","src":"1299:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1366:3:125","nodeType":"YulIdentifier","src":"1366:3:125"},{"kind":"number","nativeSrc":"1371:4:125","nodeType":"YulLiteral","src":"1371:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"1362:3:125","nodeType":"YulIdentifier","src":"1362:3:125"},"nativeSrc":"1362:14:125","nodeType":"YulFunctionCall","src":"1362:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1388:5:125","nodeType":"YulIdentifier","src":"1388:5:125"},{"kind":"number","nativeSrc":"1395:4:125","nodeType":"YulLiteral","src":"1395:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"1384:3:125","nodeType":"YulIdentifier","src":"1384:3:125"},"nativeSrc":"1384:16:125","nodeType":"YulFunctionCall","src":"1384:16:125"}],"functionName":{"name":"mload","nativeSrc":"1378:5:125","nodeType":"YulIdentifier","src":"1378:5:125"},"nativeSrc":"1378:23:125","nodeType":"YulFunctionCall","src":"1378:23:125"}],"functionName":{"name":"mstore","nativeSrc":"1355:6:125","nodeType":"YulIdentifier","src":"1355:6:125"},"nativeSrc":"1355:47:125","nodeType":"YulFunctionCall","src":"1355:47:125"},"nativeSrc":"1355:47:125","nodeType":"YulExpressionStatement","src":"1355:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1422:3:125","nodeType":"YulIdentifier","src":"1422:3:125"},{"kind":"number","nativeSrc":"1427:4:125","nodeType":"YulLiteral","src":"1427:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"1418:3:125","nodeType":"YulIdentifier","src":"1418:3:125"},"nativeSrc":"1418:14:125","nodeType":"YulFunctionCall","src":"1418:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1444:5:125","nodeType":"YulIdentifier","src":"1444:5:125"},{"kind":"number","nativeSrc":"1451:4:125","nodeType":"YulLiteral","src":"1451:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"1440:3:125","nodeType":"YulIdentifier","src":"1440:3:125"},"nativeSrc":"1440:16:125","nodeType":"YulFunctionCall","src":"1440:16:125"}],"functionName":{"name":"mload","nativeSrc":"1434:5:125","nodeType":"YulIdentifier","src":"1434:5:125"},"nativeSrc":"1434:23:125","nodeType":"YulFunctionCall","src":"1434:23:125"}],"functionName":{"name":"mstore","nativeSrc":"1411:6:125","nodeType":"YulIdentifier","src":"1411:6:125"},"nativeSrc":"1411:47:125","nodeType":"YulFunctionCall","src":"1411:47:125"},"nativeSrc":"1411:47:125","nodeType":"YulExpressionStatement","src":"1411:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1478:3:125","nodeType":"YulIdentifier","src":"1478:3:125"},{"kind":"number","nativeSrc":"1483:6:125","nodeType":"YulLiteral","src":"1483:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"1474:3:125","nodeType":"YulIdentifier","src":"1474:3:125"},"nativeSrc":"1474:16:125","nodeType":"YulFunctionCall","src":"1474:16:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1502:5:125","nodeType":"YulIdentifier","src":"1502:5:125"},{"kind":"number","nativeSrc":"1509:6:125","nodeType":"YulLiteral","src":"1509:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"1498:3:125","nodeType":"YulIdentifier","src":"1498:3:125"},"nativeSrc":"1498:18:125","nodeType":"YulFunctionCall","src":"1498:18:125"}],"functionName":{"name":"mload","nativeSrc":"1492:5:125","nodeType":"YulIdentifier","src":"1492:5:125"},"nativeSrc":"1492:25:125","nodeType":"YulFunctionCall","src":"1492:25:125"}],"functionName":{"name":"mstore","nativeSrc":"1467:6:125","nodeType":"YulIdentifier","src":"1467:6:125"},"nativeSrc":"1467:51:125","nodeType":"YulFunctionCall","src":"1467:51:125"},"nativeSrc":"1467:51:125","nodeType":"YulExpressionStatement","src":"1467:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1538:3:125","nodeType":"YulIdentifier","src":"1538:3:125"},{"kind":"number","nativeSrc":"1543:6:125","nodeType":"YulLiteral","src":"1543:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"1534:3:125","nodeType":"YulIdentifier","src":"1534:3:125"},"nativeSrc":"1534:16:125","nodeType":"YulFunctionCall","src":"1534:16:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1562:5:125","nodeType":"YulIdentifier","src":"1562:5:125"},{"kind":"number","nativeSrc":"1569:6:125","nodeType":"YulLiteral","src":"1569:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"1558:3:125","nodeType":"YulIdentifier","src":"1558:3:125"},"nativeSrc":"1558:18:125","nodeType":"YulFunctionCall","src":"1558:18:125"}],"functionName":{"name":"mload","nativeSrc":"1552:5:125","nodeType":"YulIdentifier","src":"1552:5:125"},"nativeSrc":"1552:25:125","nodeType":"YulFunctionCall","src":"1552:25:125"}],"functionName":{"name":"mstore","nativeSrc":"1527:6:125","nodeType":"YulIdentifier","src":"1527:6:125"},"nativeSrc":"1527:51:125","nodeType":"YulFunctionCall","src":"1527:51:125"},"nativeSrc":"1527:51:125","nodeType":"YulExpressionStatement","src":"1527:51:125"},{"nativeSrc":"1587:45:125","nodeType":"YulVariableDeclaration","src":"1587:45:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1617:5:125","nodeType":"YulIdentifier","src":"1617:5:125"},{"kind":"number","nativeSrc":"1624:6:125","nodeType":"YulLiteral","src":"1624:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"1613:3:125","nodeType":"YulIdentifier","src":"1613:3:125"},"nativeSrc":"1613:18:125","nodeType":"YulFunctionCall","src":"1613:18:125"}],"functionName":{"name":"mload","nativeSrc":"1607:5:125","nodeType":"YulIdentifier","src":"1607:5:125"},"nativeSrc":"1607:25:125","nodeType":"YulFunctionCall","src":"1607:25:125"},"variables":[{"name":"memberValue0","nativeSrc":"1591:12:125","nodeType":"YulTypedName","src":"1591:12:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"1659:12:125","nodeType":"YulIdentifier","src":"1659:12:125"},{"arguments":[{"name":"pos","nativeSrc":"1677:3:125","nodeType":"YulIdentifier","src":"1677:3:125"},{"kind":"number","nativeSrc":"1682:6:125","nodeType":"YulLiteral","src":"1682:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"1673:3:125","nodeType":"YulIdentifier","src":"1673:3:125"},"nativeSrc":"1673:16:125","nodeType":"YulFunctionCall","src":"1673:16:125"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"1641:17:125","nodeType":"YulIdentifier","src":"1641:17:125"},"nativeSrc":"1641:49:125","nodeType":"YulFunctionCall","src":"1641:49:125"},"nativeSrc":"1641:49:125","nodeType":"YulExpressionStatement","src":"1641:49:125"},{"nativeSrc":"1699:47:125","nodeType":"YulVariableDeclaration","src":"1699:47:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1731:5:125","nodeType":"YulIdentifier","src":"1731:5:125"},{"kind":"number","nativeSrc":"1738:6:125","nodeType":"YulLiteral","src":"1738:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"1727:3:125","nodeType":"YulIdentifier","src":"1727:3:125"},"nativeSrc":"1727:18:125","nodeType":"YulFunctionCall","src":"1727:18:125"}],"functionName":{"name":"mload","nativeSrc":"1721:5:125","nodeType":"YulIdentifier","src":"1721:5:125"},"nativeSrc":"1721:25:125","nodeType":"YulFunctionCall","src":"1721:25:125"},"variables":[{"name":"memberValue0_1","nativeSrc":"1703:14:125","nodeType":"YulTypedName","src":"1703:14:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nativeSrc":"1773:14:125","nodeType":"YulIdentifier","src":"1773:14:125"},{"arguments":[{"name":"pos","nativeSrc":"1793:3:125","nodeType":"YulIdentifier","src":"1793:3:125"},{"kind":"number","nativeSrc":"1798:6:125","nodeType":"YulLiteral","src":"1798:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"1789:3:125","nodeType":"YulIdentifier","src":"1789:3:125"},"nativeSrc":"1789:16:125","nodeType":"YulFunctionCall","src":"1789:16:125"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"1755:17:125","nodeType":"YulIdentifier","src":"1755:17:125"},"nativeSrc":"1755:51:125","nodeType":"YulFunctionCall","src":"1755:51:125"},"nativeSrc":"1755:51:125","nodeType":"YulExpressionStatement","src":"1755:51:125"}]},"name":"abi_encode_struct_PolicyData","nativeSrc":"977:835:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"1015:5:125","nodeType":"YulTypedName","src":"1015:5:125","type":""},{"name":"pos","nativeSrc":"1022:3:125","nodeType":"YulTypedName","src":"1022:3:125","type":""}],"src":"977:835:125"},{"body":{"nativeSrc":"2058:231:125","nodeType":"YulBlock","src":"2058:231:125","statements":[{"nativeSrc":"2068:27:125","nodeType":"YulAssignment","src":"2068:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2080:9:125","nodeType":"YulIdentifier","src":"2080:9:125"},{"kind":"number","nativeSrc":"2091:3:125","nodeType":"YulLiteral","src":"2091:3:125","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"2076:3:125","nodeType":"YulIdentifier","src":"2076:3:125"},"nativeSrc":"2076:19:125","nodeType":"YulFunctionCall","src":"2076:19:125"},"variableNames":[{"name":"tail","nativeSrc":"2068:4:125","nodeType":"YulIdentifier","src":"2068:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"2133:6:125","nodeType":"YulIdentifier","src":"2133:6:125"},{"name":"headStart","nativeSrc":"2141:9:125","nodeType":"YulIdentifier","src":"2141:9:125"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"2104:28:125","nodeType":"YulIdentifier","src":"2104:28:125"},"nativeSrc":"2104:47:125","nodeType":"YulFunctionCall","src":"2104:47:125"},"nativeSrc":"2104:47:125","nodeType":"YulExpressionStatement","src":"2104:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2171:9:125","nodeType":"YulIdentifier","src":"2171:9:125"},{"kind":"number","nativeSrc":"2182:3:125","nodeType":"YulLiteral","src":"2182:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"2167:3:125","nodeType":"YulIdentifier","src":"2167:3:125"},"nativeSrc":"2167:19:125","nodeType":"YulFunctionCall","src":"2167:19:125"},{"name":"value1","nativeSrc":"2188:6:125","nodeType":"YulIdentifier","src":"2188:6:125"}],"functionName":{"name":"mstore","nativeSrc":"2160:6:125","nodeType":"YulIdentifier","src":"2160:6:125"},"nativeSrc":"2160:35:125","nodeType":"YulFunctionCall","src":"2160:35:125"},"nativeSrc":"2160:35:125","nodeType":"YulExpressionStatement","src":"2160:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2215:9:125","nodeType":"YulIdentifier","src":"2215:9:125"},{"kind":"number","nativeSrc":"2226:3:125","nodeType":"YulLiteral","src":"2226:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"2211:3:125","nodeType":"YulIdentifier","src":"2211:3:125"},"nativeSrc":"2211:19:125","nodeType":"YulFunctionCall","src":"2211:19:125"},{"name":"value2","nativeSrc":"2232:6:125","nodeType":"YulIdentifier","src":"2232:6:125"}],"functionName":{"name":"mstore","nativeSrc":"2204:6:125","nodeType":"YulIdentifier","src":"2204:6:125"},"nativeSrc":"2204:35:125","nodeType":"YulFunctionCall","src":"2204:35:125"},"nativeSrc":"2204:35:125","nodeType":"YulExpressionStatement","src":"2204:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2259:9:125","nodeType":"YulIdentifier","src":"2259:9:125"},{"kind":"number","nativeSrc":"2270:3:125","nodeType":"YulLiteral","src":"2270:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"2255:3:125","nodeType":"YulIdentifier","src":"2255:3:125"},"nativeSrc":"2255:19:125","nodeType":"YulFunctionCall","src":"2255:19:125"},{"name":"value3","nativeSrc":"2276:6:125","nodeType":"YulIdentifier","src":"2276:6:125"}],"functionName":{"name":"mstore","nativeSrc":"2248:6:125","nodeType":"YulIdentifier","src":"2248:6:125"},"nativeSrc":"2248:35:125","nodeType":"YulFunctionCall","src":"2248:35:125"},"nativeSrc":"2248:35:125","nodeType":"YulExpressionStatement","src":"2248:35:125"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"1817:472:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2003:9:125","nodeType":"YulTypedName","src":"2003:9:125","type":""},{"name":"value3","nativeSrc":"2014:6:125","nodeType":"YulTypedName","src":"2014:6:125","type":""},{"name":"value2","nativeSrc":"2022:6:125","nodeType":"YulTypedName","src":"2022:6:125","type":""},{"name":"value1","nativeSrc":"2030:6:125","nodeType":"YulTypedName","src":"2030:6:125","type":""},{"name":"value0","nativeSrc":"2038:6:125","nodeType":"YulTypedName","src":"2038:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2049:4:125","nodeType":"YulTypedName","src":"2049:4:125","type":""}],"src":"1817:472:125"},{"body":{"nativeSrc":"2344:377:125","nodeType":"YulBlock","src":"2344:377:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"2361:3:125","nodeType":"YulIdentifier","src":"2361:3:125"},{"arguments":[{"name":"value","nativeSrc":"2372:5:125","nodeType":"YulIdentifier","src":"2372:5:125"}],"functionName":{"name":"mload","nativeSrc":"2366:5:125","nodeType":"YulIdentifier","src":"2366:5:125"},"nativeSrc":"2366:12:125","nodeType":"YulFunctionCall","src":"2366:12:125"}],"functionName":{"name":"mstore","nativeSrc":"2354:6:125","nodeType":"YulIdentifier","src":"2354:6:125"},"nativeSrc":"2354:25:125","nodeType":"YulFunctionCall","src":"2354:25:125"},"nativeSrc":"2354:25:125","nodeType":"YulExpressionStatement","src":"2354:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2399:3:125","nodeType":"YulIdentifier","src":"2399:3:125"},{"kind":"number","nativeSrc":"2404:4:125","nodeType":"YulLiteral","src":"2404:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2395:3:125","nodeType":"YulIdentifier","src":"2395:3:125"},"nativeSrc":"2395:14:125","nodeType":"YulFunctionCall","src":"2395:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2421:5:125","nodeType":"YulIdentifier","src":"2421:5:125"},{"kind":"number","nativeSrc":"2428:4:125","nodeType":"YulLiteral","src":"2428:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2417:3:125","nodeType":"YulIdentifier","src":"2417:3:125"},"nativeSrc":"2417:16:125","nodeType":"YulFunctionCall","src":"2417:16:125"}],"functionName":{"name":"mload","nativeSrc":"2411:5:125","nodeType":"YulIdentifier","src":"2411:5:125"},"nativeSrc":"2411:23:125","nodeType":"YulFunctionCall","src":"2411:23:125"}],"functionName":{"name":"mstore","nativeSrc":"2388:6:125","nodeType":"YulIdentifier","src":"2388:6:125"},"nativeSrc":"2388:47:125","nodeType":"YulFunctionCall","src":"2388:47:125"},"nativeSrc":"2388:47:125","nodeType":"YulExpressionStatement","src":"2388:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2455:3:125","nodeType":"YulIdentifier","src":"2455:3:125"},{"kind":"number","nativeSrc":"2460:4:125","nodeType":"YulLiteral","src":"2460:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"2451:3:125","nodeType":"YulIdentifier","src":"2451:3:125"},"nativeSrc":"2451:14:125","nodeType":"YulFunctionCall","src":"2451:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2477:5:125","nodeType":"YulIdentifier","src":"2477:5:125"},{"kind":"number","nativeSrc":"2484:4:125","nodeType":"YulLiteral","src":"2484:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"2473:3:125","nodeType":"YulIdentifier","src":"2473:3:125"},"nativeSrc":"2473:16:125","nodeType":"YulFunctionCall","src":"2473:16:125"}],"functionName":{"name":"mload","nativeSrc":"2467:5:125","nodeType":"YulIdentifier","src":"2467:5:125"},"nativeSrc":"2467:23:125","nodeType":"YulFunctionCall","src":"2467:23:125"}],"functionName":{"name":"mstore","nativeSrc":"2444:6:125","nodeType":"YulIdentifier","src":"2444:6:125"},"nativeSrc":"2444:47:125","nodeType":"YulFunctionCall","src":"2444:47:125"},"nativeSrc":"2444:47:125","nodeType":"YulExpressionStatement","src":"2444:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2511:3:125","nodeType":"YulIdentifier","src":"2511:3:125"},{"kind":"number","nativeSrc":"2516:4:125","nodeType":"YulLiteral","src":"2516:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"2507:3:125","nodeType":"YulIdentifier","src":"2507:3:125"},"nativeSrc":"2507:14:125","nodeType":"YulFunctionCall","src":"2507:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2533:5:125","nodeType":"YulIdentifier","src":"2533:5:125"},{"kind":"number","nativeSrc":"2540:4:125","nodeType":"YulLiteral","src":"2540:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"2529:3:125","nodeType":"YulIdentifier","src":"2529:3:125"},"nativeSrc":"2529:16:125","nodeType":"YulFunctionCall","src":"2529:16:125"}],"functionName":{"name":"mload","nativeSrc":"2523:5:125","nodeType":"YulIdentifier","src":"2523:5:125"},"nativeSrc":"2523:23:125","nodeType":"YulFunctionCall","src":"2523:23:125"}],"functionName":{"name":"mstore","nativeSrc":"2500:6:125","nodeType":"YulIdentifier","src":"2500:6:125"},"nativeSrc":"2500:47:125","nodeType":"YulFunctionCall","src":"2500:47:125"},"nativeSrc":"2500:47:125","nodeType":"YulExpressionStatement","src":"2500:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2567:3:125","nodeType":"YulIdentifier","src":"2567:3:125"},{"kind":"number","nativeSrc":"2572:4:125","nodeType":"YulLiteral","src":"2572:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"2563:3:125","nodeType":"YulIdentifier","src":"2563:3:125"},"nativeSrc":"2563:14:125","nodeType":"YulFunctionCall","src":"2563:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2589:5:125","nodeType":"YulIdentifier","src":"2589:5:125"},{"kind":"number","nativeSrc":"2596:4:125","nodeType":"YulLiteral","src":"2596:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"2585:3:125","nodeType":"YulIdentifier","src":"2585:3:125"},"nativeSrc":"2585:16:125","nodeType":"YulFunctionCall","src":"2585:16:125"}],"functionName":{"name":"mload","nativeSrc":"2579:5:125","nodeType":"YulIdentifier","src":"2579:5:125"},"nativeSrc":"2579:23:125","nodeType":"YulFunctionCall","src":"2579:23:125"}],"functionName":{"name":"mstore","nativeSrc":"2556:6:125","nodeType":"YulIdentifier","src":"2556:6:125"},"nativeSrc":"2556:47:125","nodeType":"YulFunctionCall","src":"2556:47:125"},"nativeSrc":"2556:47:125","nodeType":"YulExpressionStatement","src":"2556:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2623:3:125","nodeType":"YulIdentifier","src":"2623:3:125"},{"kind":"number","nativeSrc":"2628:4:125","nodeType":"YulLiteral","src":"2628:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"2619:3:125","nodeType":"YulIdentifier","src":"2619:3:125"},"nativeSrc":"2619:14:125","nodeType":"YulFunctionCall","src":"2619:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2645:5:125","nodeType":"YulIdentifier","src":"2645:5:125"},{"kind":"number","nativeSrc":"2652:4:125","nodeType":"YulLiteral","src":"2652:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"2641:3:125","nodeType":"YulIdentifier","src":"2641:3:125"},"nativeSrc":"2641:16:125","nodeType":"YulFunctionCall","src":"2641:16:125"}],"functionName":{"name":"mload","nativeSrc":"2635:5:125","nodeType":"YulIdentifier","src":"2635:5:125"},"nativeSrc":"2635:23:125","nodeType":"YulFunctionCall","src":"2635:23:125"}],"functionName":{"name":"mstore","nativeSrc":"2612:6:125","nodeType":"YulIdentifier","src":"2612:6:125"},"nativeSrc":"2612:47:125","nodeType":"YulFunctionCall","src":"2612:47:125"},"nativeSrc":"2612:47:125","nodeType":"YulExpressionStatement","src":"2612:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2679:3:125","nodeType":"YulIdentifier","src":"2679:3:125"},{"kind":"number","nativeSrc":"2684:4:125","nodeType":"YulLiteral","src":"2684:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"2675:3:125","nodeType":"YulIdentifier","src":"2675:3:125"},"nativeSrc":"2675:14:125","nodeType":"YulFunctionCall","src":"2675:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2701:5:125","nodeType":"YulIdentifier","src":"2701:5:125"},{"kind":"number","nativeSrc":"2708:4:125","nodeType":"YulLiteral","src":"2708:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"2697:3:125","nodeType":"YulIdentifier","src":"2697:3:125"},"nativeSrc":"2697:16:125","nodeType":"YulFunctionCall","src":"2697:16:125"}],"functionName":{"name":"mload","nativeSrc":"2691:5:125","nodeType":"YulIdentifier","src":"2691:5:125"},"nativeSrc":"2691:23:125","nodeType":"YulFunctionCall","src":"2691:23:125"}],"functionName":{"name":"mstore","nativeSrc":"2668:6:125","nodeType":"YulIdentifier","src":"2668:6:125"},"nativeSrc":"2668:47:125","nodeType":"YulFunctionCall","src":"2668:47:125"},"nativeSrc":"2668:47:125","nodeType":"YulExpressionStatement","src":"2668:47:125"}]},"name":"abi_encode_struct_Params","nativeSrc":"2294:427:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"2328:5:125","nodeType":"YulTypedName","src":"2328:5:125","type":""},{"name":"pos","nativeSrc":"2335:3:125","nodeType":"YulTypedName","src":"2335:3:125","type":""}],"src":"2294:427:125"},{"body":{"nativeSrc":"3095:433:125","nodeType":"YulBlock","src":"3095:433:125","statements":[{"nativeSrc":"3105:27:125","nodeType":"YulAssignment","src":"3105:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3117:9:125","nodeType":"YulIdentifier","src":"3117:9:125"},{"kind":"number","nativeSrc":"3128:3:125","nodeType":"YulLiteral","src":"3128:3:125","type":"","value":"768"}],"functionName":{"name":"add","nativeSrc":"3113:3:125","nodeType":"YulIdentifier","src":"3113:3:125"},"nativeSrc":"3113:19:125","nodeType":"YulFunctionCall","src":"3113:19:125"},"variableNames":[{"name":"tail","nativeSrc":"3105:4:125","nodeType":"YulIdentifier","src":"3105:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"3170:6:125","nodeType":"YulIdentifier","src":"3170:6:125"},{"name":"headStart","nativeSrc":"3178:9:125","nodeType":"YulIdentifier","src":"3178:9:125"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"3141:28:125","nodeType":"YulIdentifier","src":"3141:28:125"},"nativeSrc":"3141:47:125","nodeType":"YulFunctionCall","src":"3141:47:125"},"nativeSrc":"3141:47:125","nodeType":"YulExpressionStatement","src":"3141:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3208:9:125","nodeType":"YulIdentifier","src":"3208:9:125"},{"kind":"number","nativeSrc":"3219:3:125","nodeType":"YulLiteral","src":"3219:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"3204:3:125","nodeType":"YulIdentifier","src":"3204:3:125"},"nativeSrc":"3204:19:125","nodeType":"YulFunctionCall","src":"3204:19:125"},{"name":"value1","nativeSrc":"3225:6:125","nodeType":"YulIdentifier","src":"3225:6:125"}],"functionName":{"name":"mstore","nativeSrc":"3197:6:125","nodeType":"YulIdentifier","src":"3197:6:125"},"nativeSrc":"3197:35:125","nodeType":"YulFunctionCall","src":"3197:35:125"},"nativeSrc":"3197:35:125","nodeType":"YulExpressionStatement","src":"3197:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3252:9:125","nodeType":"YulIdentifier","src":"3252:9:125"},{"kind":"number","nativeSrc":"3263:3:125","nodeType":"YulLiteral","src":"3263:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"3248:3:125","nodeType":"YulIdentifier","src":"3248:3:125"},"nativeSrc":"3248:19:125","nodeType":"YulFunctionCall","src":"3248:19:125"},{"name":"value2","nativeSrc":"3269:6:125","nodeType":"YulIdentifier","src":"3269:6:125"}],"functionName":{"name":"mstore","nativeSrc":"3241:6:125","nodeType":"YulIdentifier","src":"3241:6:125"},"nativeSrc":"3241:35:125","nodeType":"YulFunctionCall","src":"3241:35:125"},"nativeSrc":"3241:35:125","nodeType":"YulExpressionStatement","src":"3241:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3296:9:125","nodeType":"YulIdentifier","src":"3296:9:125"},{"kind":"number","nativeSrc":"3307:3:125","nodeType":"YulLiteral","src":"3307:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"3292:3:125","nodeType":"YulIdentifier","src":"3292:3:125"},"nativeSrc":"3292:19:125","nodeType":"YulFunctionCall","src":"3292:19:125"},{"name":"value3","nativeSrc":"3313:6:125","nodeType":"YulIdentifier","src":"3313:6:125"}],"functionName":{"name":"mstore","nativeSrc":"3285:6:125","nodeType":"YulIdentifier","src":"3285:6:125"},"nativeSrc":"3285:35:125","nodeType":"YulFunctionCall","src":"3285:35:125"},"nativeSrc":"3285:35:125","nodeType":"YulExpressionStatement","src":"3285:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3340:9:125","nodeType":"YulIdentifier","src":"3340:9:125"},{"kind":"number","nativeSrc":"3351:3:125","nodeType":"YulLiteral","src":"3351:3:125","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"3336:3:125","nodeType":"YulIdentifier","src":"3336:3:125"},"nativeSrc":"3336:19:125","nodeType":"YulFunctionCall","src":"3336:19:125"},{"arguments":[{"name":"value4","nativeSrc":"3361:6:125","nodeType":"YulIdentifier","src":"3361:6:125"},{"kind":"number","nativeSrc":"3369:12:125","nodeType":"YulLiteral","src":"3369:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"3357:3:125","nodeType":"YulIdentifier","src":"3357:3:125"},"nativeSrc":"3357:25:125","nodeType":"YulFunctionCall","src":"3357:25:125"}],"functionName":{"name":"mstore","nativeSrc":"3329:6:125","nodeType":"YulIdentifier","src":"3329:6:125"},"nativeSrc":"3329:54:125","nodeType":"YulFunctionCall","src":"3329:54:125"},"nativeSrc":"3329:54:125","nodeType":"YulExpressionStatement","src":"3329:54:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3403:9:125","nodeType":"YulIdentifier","src":"3403:9:125"},{"kind":"number","nativeSrc":"3414:3:125","nodeType":"YulLiteral","src":"3414:3:125","type":"","value":"512"}],"functionName":{"name":"add","nativeSrc":"3399:3:125","nodeType":"YulIdentifier","src":"3399:3:125"},"nativeSrc":"3399:19:125","nodeType":"YulFunctionCall","src":"3399:19:125"},{"arguments":[{"name":"value5","nativeSrc":"3424:6:125","nodeType":"YulIdentifier","src":"3424:6:125"},{"kind":"number","nativeSrc":"3432:26:125","nodeType":"YulLiteral","src":"3432:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"3420:3:125","nodeType":"YulIdentifier","src":"3420:3:125"},"nativeSrc":"3420:39:125","nodeType":"YulFunctionCall","src":"3420:39:125"}],"functionName":{"name":"mstore","nativeSrc":"3392:6:125","nodeType":"YulIdentifier","src":"3392:6:125"},"nativeSrc":"3392:68:125","nodeType":"YulFunctionCall","src":"3392:68:125"},"nativeSrc":"3392:68:125","nodeType":"YulExpressionStatement","src":"3392:68:125"},{"expression":{"arguments":[{"name":"value6","nativeSrc":"3494:6:125","nodeType":"YulIdentifier","src":"3494:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"3506:9:125","nodeType":"YulIdentifier","src":"3506:9:125"},{"kind":"number","nativeSrc":"3517:3:125","nodeType":"YulLiteral","src":"3517:3:125","type":"","value":"544"}],"functionName":{"name":"add","nativeSrc":"3502:3:125","nodeType":"YulIdentifier","src":"3502:3:125"},"nativeSrc":"3502:19:125","nodeType":"YulFunctionCall","src":"3502:19:125"}],"functionName":{"name":"abi_encode_struct_Params","nativeSrc":"3469:24:125","nodeType":"YulIdentifier","src":"3469:24:125"},"nativeSrc":"3469:53:125","nodeType":"YulFunctionCall","src":"3469:53:125"},"nativeSrc":"3469:53:125","nodeType":"YulExpressionStatement","src":"3469:53:125"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__fromStack_reversed","nativeSrc":"2726:802:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3016:9:125","nodeType":"YulTypedName","src":"3016:9:125","type":""},{"name":"value6","nativeSrc":"3027:6:125","nodeType":"YulTypedName","src":"3027:6:125","type":""},{"name":"value5","nativeSrc":"3035:6:125","nodeType":"YulTypedName","src":"3035:6:125","type":""},{"name":"value4","nativeSrc":"3043:6:125","nodeType":"YulTypedName","src":"3043:6:125","type":""},{"name":"value3","nativeSrc":"3051:6:125","nodeType":"YulTypedName","src":"3051:6:125","type":""},{"name":"value2","nativeSrc":"3059:6:125","nodeType":"YulTypedName","src":"3059:6:125","type":""},{"name":"value1","nativeSrc":"3067:6:125","nodeType":"YulTypedName","src":"3067:6:125","type":""},{"name":"value0","nativeSrc":"3075:6:125","nodeType":"YulTypedName","src":"3075:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3086:4:125","nodeType":"YulTypedName","src":"3086:4:125","type":""}],"src":"2726:802:125"},{"body":{"nativeSrc":"3818:364:125","nodeType":"YulBlock","src":"3818:364:125","statements":[{"nativeSrc":"3828:27:125","nodeType":"YulAssignment","src":"3828:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3840:9:125","nodeType":"YulIdentifier","src":"3840:9:125"},{"kind":"number","nativeSrc":"3851:3:125","nodeType":"YulLiteral","src":"3851:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"3836:3:125","nodeType":"YulIdentifier","src":"3836:3:125"},"nativeSrc":"3836:19:125","nodeType":"YulFunctionCall","src":"3836:19:125"},"variableNames":[{"name":"tail","nativeSrc":"3828:4:125","nodeType":"YulIdentifier","src":"3828:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3871:9:125","nodeType":"YulIdentifier","src":"3871:9:125"},{"name":"value0","nativeSrc":"3882:6:125","nodeType":"YulIdentifier","src":"3882:6:125"}],"functionName":{"name":"mstore","nativeSrc":"3864:6:125","nodeType":"YulIdentifier","src":"3864:6:125"},"nativeSrc":"3864:25:125","nodeType":"YulFunctionCall","src":"3864:25:125"},"nativeSrc":"3864:25:125","nodeType":"YulExpressionStatement","src":"3864:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3909:9:125","nodeType":"YulIdentifier","src":"3909:9:125"},{"kind":"number","nativeSrc":"3920:2:125","nodeType":"YulLiteral","src":"3920:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3905:3:125","nodeType":"YulIdentifier","src":"3905:3:125"},"nativeSrc":"3905:18:125","nodeType":"YulFunctionCall","src":"3905:18:125"},{"name":"value1","nativeSrc":"3925:6:125","nodeType":"YulIdentifier","src":"3925:6:125"}],"functionName":{"name":"mstore","nativeSrc":"3898:6:125","nodeType":"YulIdentifier","src":"3898:6:125"},"nativeSrc":"3898:34:125","nodeType":"YulFunctionCall","src":"3898:34:125"},"nativeSrc":"3898:34:125","nodeType":"YulExpressionStatement","src":"3898:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3952:9:125","nodeType":"YulIdentifier","src":"3952:9:125"},{"kind":"number","nativeSrc":"3963:2:125","nodeType":"YulLiteral","src":"3963:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3948:3:125","nodeType":"YulIdentifier","src":"3948:3:125"},"nativeSrc":"3948:18:125","nodeType":"YulFunctionCall","src":"3948:18:125"},{"name":"value2","nativeSrc":"3968:6:125","nodeType":"YulIdentifier","src":"3968:6:125"}],"functionName":{"name":"mstore","nativeSrc":"3941:6:125","nodeType":"YulIdentifier","src":"3941:6:125"},"nativeSrc":"3941:34:125","nodeType":"YulFunctionCall","src":"3941:34:125"},"nativeSrc":"3941:34:125","nodeType":"YulExpressionStatement","src":"3941:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3995:9:125","nodeType":"YulIdentifier","src":"3995:9:125"},{"kind":"number","nativeSrc":"4006:2:125","nodeType":"YulLiteral","src":"4006:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3991:3:125","nodeType":"YulIdentifier","src":"3991:3:125"},"nativeSrc":"3991:18:125","nodeType":"YulFunctionCall","src":"3991:18:125"},{"arguments":[{"name":"value3","nativeSrc":"4015:6:125","nodeType":"YulIdentifier","src":"4015:6:125"},{"kind":"number","nativeSrc":"4023:12:125","nodeType":"YulLiteral","src":"4023:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"4011:3:125","nodeType":"YulIdentifier","src":"4011:3:125"},"nativeSrc":"4011:25:125","nodeType":"YulFunctionCall","src":"4011:25:125"}],"functionName":{"name":"mstore","nativeSrc":"3984:6:125","nodeType":"YulIdentifier","src":"3984:6:125"},"nativeSrc":"3984:53:125","nodeType":"YulFunctionCall","src":"3984:53:125"},"nativeSrc":"3984:53:125","nodeType":"YulExpressionStatement","src":"3984:53:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4057:9:125","nodeType":"YulIdentifier","src":"4057:9:125"},{"kind":"number","nativeSrc":"4068:3:125","nodeType":"YulLiteral","src":"4068:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4053:3:125","nodeType":"YulIdentifier","src":"4053:3:125"},"nativeSrc":"4053:19:125","nodeType":"YulFunctionCall","src":"4053:19:125"},{"arguments":[{"name":"value4","nativeSrc":"4078:6:125","nodeType":"YulIdentifier","src":"4078:6:125"},{"kind":"number","nativeSrc":"4086:26:125","nodeType":"YulLiteral","src":"4086:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"4074:3:125","nodeType":"YulIdentifier","src":"4074:3:125"},"nativeSrc":"4074:39:125","nodeType":"YulFunctionCall","src":"4074:39:125"}],"functionName":{"name":"mstore","nativeSrc":"4046:6:125","nodeType":"YulIdentifier","src":"4046:6:125"},"nativeSrc":"4046:68:125","nodeType":"YulFunctionCall","src":"4046:68:125"},"nativeSrc":"4046:68:125","nodeType":"YulExpressionStatement","src":"4046:68:125"},{"expression":{"arguments":[{"name":"value5","nativeSrc":"4148:6:125","nodeType":"YulIdentifier","src":"4148:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"4160:9:125","nodeType":"YulIdentifier","src":"4160:9:125"},{"kind":"number","nativeSrc":"4171:3:125","nodeType":"YulLiteral","src":"4171:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"4156:3:125","nodeType":"YulIdentifier","src":"4156:3:125"},"nativeSrc":"4156:19:125","nodeType":"YulFunctionCall","src":"4156:19:125"}],"functionName":{"name":"abi_encode_struct_Params","nativeSrc":"4123:24:125","nodeType":"YulIdentifier","src":"4123:24:125"},"nativeSrc":"4123:53:125","nodeType":"YulFunctionCall","src":"4123:53:125"},"nativeSrc":"4123:53:125","nodeType":"YulExpressionStatement","src":"4123:53:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__to_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__fromStack_reversed","nativeSrc":"3533:649:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3747:9:125","nodeType":"YulTypedName","src":"3747:9:125","type":""},{"name":"value5","nativeSrc":"3758:6:125","nodeType":"YulTypedName","src":"3758:6:125","type":""},{"name":"value4","nativeSrc":"3766:6:125","nodeType":"YulTypedName","src":"3766:6:125","type":""},{"name":"value3","nativeSrc":"3774:6:125","nodeType":"YulTypedName","src":"3774:6:125","type":""},{"name":"value2","nativeSrc":"3782:6:125","nodeType":"YulTypedName","src":"3782:6:125","type":""},{"name":"value1","nativeSrc":"3790:6:125","nodeType":"YulTypedName","src":"3790:6:125","type":""},{"name":"value0","nativeSrc":"3798:6:125","nodeType":"YulTypedName","src":"3798:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3809:4:125","nodeType":"YulTypedName","src":"3809:4:125","type":""}],"src":"3533:649:125"},{"body":{"nativeSrc":"4317:201:125","nodeType":"YulBlock","src":"4317:201:125","statements":[{"body":{"nativeSrc":"4355:16:125","nodeType":"YulBlock","src":"4355:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4364:1:125","nodeType":"YulLiteral","src":"4364:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4367:1:125","nodeType":"YulLiteral","src":"4367:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4357:6:125","nodeType":"YulIdentifier","src":"4357:6:125"},"nativeSrc":"4357:12:125","nodeType":"YulFunctionCall","src":"4357:12:125"},"nativeSrc":"4357:12:125","nodeType":"YulExpressionStatement","src":"4357:12:125"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"4333:10:125","nodeType":"YulIdentifier","src":"4333:10:125"},{"name":"endIndex","nativeSrc":"4345:8:125","nodeType":"YulIdentifier","src":"4345:8:125"}],"functionName":{"name":"gt","nativeSrc":"4330:2:125","nodeType":"YulIdentifier","src":"4330:2:125"},"nativeSrc":"4330:24:125","nodeType":"YulFunctionCall","src":"4330:24:125"},"nativeSrc":"4327:44:125","nodeType":"YulIf","src":"4327:44:125"},{"body":{"nativeSrc":"4404:16:125","nodeType":"YulBlock","src":"4404:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4413:1:125","nodeType":"YulLiteral","src":"4413:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4416:1:125","nodeType":"YulLiteral","src":"4416:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4406:6:125","nodeType":"YulIdentifier","src":"4406:6:125"},"nativeSrc":"4406:12:125","nodeType":"YulFunctionCall","src":"4406:12:125"},"nativeSrc":"4406:12:125","nodeType":"YulExpressionStatement","src":"4406:12:125"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"4386:8:125","nodeType":"YulIdentifier","src":"4386:8:125"},{"name":"length","nativeSrc":"4396:6:125","nodeType":"YulIdentifier","src":"4396:6:125"}],"functionName":{"name":"gt","nativeSrc":"4383:2:125","nodeType":"YulIdentifier","src":"4383:2:125"},"nativeSrc":"4383:20:125","nodeType":"YulFunctionCall","src":"4383:20:125"},"nativeSrc":"4380:40:125","nodeType":"YulIf","src":"4380:40:125"},{"nativeSrc":"4429:36:125","nodeType":"YulAssignment","src":"4429:36:125","value":{"arguments":[{"name":"offset","nativeSrc":"4446:6:125","nodeType":"YulIdentifier","src":"4446:6:125"},{"name":"startIndex","nativeSrc":"4454:10:125","nodeType":"YulIdentifier","src":"4454:10:125"}],"functionName":{"name":"add","nativeSrc":"4442:3:125","nodeType":"YulIdentifier","src":"4442:3:125"},"nativeSrc":"4442:23:125","nodeType":"YulFunctionCall","src":"4442:23:125"},"variableNames":[{"name":"offsetOut","nativeSrc":"4429:9:125","nodeType":"YulIdentifier","src":"4429:9:125"}]},{"nativeSrc":"4474:38:125","nodeType":"YulAssignment","src":"4474:38:125","value":{"arguments":[{"name":"endIndex","nativeSrc":"4491:8:125","nodeType":"YulIdentifier","src":"4491:8:125"},{"name":"startIndex","nativeSrc":"4501:10:125","nodeType":"YulIdentifier","src":"4501:10:125"}],"functionName":{"name":"sub","nativeSrc":"4487:3:125","nodeType":"YulIdentifier","src":"4487:3:125"},"nativeSrc":"4487:25:125","nodeType":"YulFunctionCall","src":"4487:25:125"},"variableNames":[{"name":"lengthOut","nativeSrc":"4474:9:125","nodeType":"YulIdentifier","src":"4474:9:125"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"4187:331:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"4251:6:125","nodeType":"YulTypedName","src":"4251:6:125","type":""},{"name":"length","nativeSrc":"4259:6:125","nodeType":"YulTypedName","src":"4259:6:125","type":""},{"name":"startIndex","nativeSrc":"4267:10:125","nodeType":"YulTypedName","src":"4267:10:125","type":""},{"name":"endIndex","nativeSrc":"4279:8:125","nodeType":"YulTypedName","src":"4279:8:125","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"4292:9:125","nodeType":"YulTypedName","src":"4292:9:125","type":""},{"name":"lengthOut","nativeSrc":"4303:9:125","nodeType":"YulTypedName","src":"4303:9:125","type":""}],"src":"4187:331:125"},{"body":{"nativeSrc":"4555:95:125","nodeType":"YulBlock","src":"4555:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4572:1:125","nodeType":"YulLiteral","src":"4572:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4579:3:125","nodeType":"YulLiteral","src":"4579:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"4584:10:125","nodeType":"YulLiteral","src":"4584:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4575:3:125","nodeType":"YulIdentifier","src":"4575:3:125"},"nativeSrc":"4575:20:125","nodeType":"YulFunctionCall","src":"4575:20:125"}],"functionName":{"name":"mstore","nativeSrc":"4565:6:125","nodeType":"YulIdentifier","src":"4565:6:125"},"nativeSrc":"4565:31:125","nodeType":"YulFunctionCall","src":"4565:31:125"},"nativeSrc":"4565:31:125","nodeType":"YulExpressionStatement","src":"4565:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4612:1:125","nodeType":"YulLiteral","src":"4612:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"4615:4:125","nodeType":"YulLiteral","src":"4615:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"4605:6:125","nodeType":"YulIdentifier","src":"4605:6:125"},"nativeSrc":"4605:15:125","nodeType":"YulFunctionCall","src":"4605:15:125"},"nativeSrc":"4605:15:125","nodeType":"YulExpressionStatement","src":"4605:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4636:1:125","nodeType":"YulLiteral","src":"4636:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4639:4:125","nodeType":"YulLiteral","src":"4639:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4629:6:125","nodeType":"YulIdentifier","src":"4629:6:125"},"nativeSrc":"4629:15:125","nodeType":"YulFunctionCall","src":"4629:15:125"},"nativeSrc":"4629:15:125","nodeType":"YulExpressionStatement","src":"4629:15:125"}]},"name":"panic_error_0x41","nativeSrc":"4523:127:125","nodeType":"YulFunctionDefinition","src":"4523:127:125"},{"body":{"nativeSrc":"4696:306:125","nodeType":"YulBlock","src":"4696:306:125","statements":[{"nativeSrc":"4706:19:125","nodeType":"YulAssignment","src":"4706:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"4722:2:125","nodeType":"YulLiteral","src":"4722:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"4716:5:125","nodeType":"YulIdentifier","src":"4716:5:125"},"nativeSrc":"4716:9:125","nodeType":"YulFunctionCall","src":"4716:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"4706:6:125","nodeType":"YulIdentifier","src":"4706:6:125"}]},{"nativeSrc":"4734:37:125","nodeType":"YulVariableDeclaration","src":"4734:37:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"4756:6:125","nodeType":"YulIdentifier","src":"4756:6:125"},{"kind":"number","nativeSrc":"4764:6:125","nodeType":"YulLiteral","src":"4764:6:125","type":"","value":"0x0180"}],"functionName":{"name":"add","nativeSrc":"4752:3:125","nodeType":"YulIdentifier","src":"4752:3:125"},"nativeSrc":"4752:19:125","nodeType":"YulFunctionCall","src":"4752:19:125"},"variables":[{"name":"newFreePtr","nativeSrc":"4738:10:125","nodeType":"YulTypedName","src":"4738:10:125","type":""}]},{"body":{"nativeSrc":"4854:111:125","nodeType":"YulBlock","src":"4854:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4875:1:125","nodeType":"YulLiteral","src":"4875:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4882:3:125","nodeType":"YulLiteral","src":"4882:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"4887:10:125","nodeType":"YulLiteral","src":"4887:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4878:3:125","nodeType":"YulIdentifier","src":"4878:3:125"},"nativeSrc":"4878:20:125","nodeType":"YulFunctionCall","src":"4878:20:125"}],"functionName":{"name":"mstore","nativeSrc":"4868:6:125","nodeType":"YulIdentifier","src":"4868:6:125"},"nativeSrc":"4868:31:125","nodeType":"YulFunctionCall","src":"4868:31:125"},"nativeSrc":"4868:31:125","nodeType":"YulExpressionStatement","src":"4868:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4919:1:125","nodeType":"YulLiteral","src":"4919:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"4922:4:125","nodeType":"YulLiteral","src":"4922:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"4912:6:125","nodeType":"YulIdentifier","src":"4912:6:125"},"nativeSrc":"4912:15:125","nodeType":"YulFunctionCall","src":"4912:15:125"},"nativeSrc":"4912:15:125","nodeType":"YulExpressionStatement","src":"4912:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4947:1:125","nodeType":"YulLiteral","src":"4947:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4950:4:125","nodeType":"YulLiteral","src":"4950:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4940:6:125","nodeType":"YulIdentifier","src":"4940:6:125"},"nativeSrc":"4940:15:125","nodeType":"YulFunctionCall","src":"4940:15:125"},"nativeSrc":"4940:15:125","nodeType":"YulExpressionStatement","src":"4940:15:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"4789:10:125","nodeType":"YulIdentifier","src":"4789:10:125"},{"kind":"number","nativeSrc":"4801:18:125","nodeType":"YulLiteral","src":"4801:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4786:2:125","nodeType":"YulIdentifier","src":"4786:2:125"},"nativeSrc":"4786:34:125","nodeType":"YulFunctionCall","src":"4786:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"4825:10:125","nodeType":"YulIdentifier","src":"4825:10:125"},{"name":"memPtr","nativeSrc":"4837:6:125","nodeType":"YulIdentifier","src":"4837:6:125"}],"functionName":{"name":"lt","nativeSrc":"4822:2:125","nodeType":"YulIdentifier","src":"4822:2:125"},"nativeSrc":"4822:22:125","nodeType":"YulFunctionCall","src":"4822:22:125"}],"functionName":{"name":"or","nativeSrc":"4783:2:125","nodeType":"YulIdentifier","src":"4783:2:125"},"nativeSrc":"4783:62:125","nodeType":"YulFunctionCall","src":"4783:62:125"},"nativeSrc":"4780:185:125","nodeType":"YulIf","src":"4780:185:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4981:2:125","nodeType":"YulLiteral","src":"4981:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"4985:10:125","nodeType":"YulIdentifier","src":"4985:10:125"}],"functionName":{"name":"mstore","nativeSrc":"4974:6:125","nodeType":"YulIdentifier","src":"4974:6:125"},"nativeSrc":"4974:22:125","nodeType":"YulFunctionCall","src":"4974:22:125"},"nativeSrc":"4974:22:125","nodeType":"YulExpressionStatement","src":"4974:22:125"}]},"name":"allocate_memory","nativeSrc":"4655:347:125","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"4685:6:125","nodeType":"YulTypedName","src":"4685:6:125","type":""}],"src":"4655:347:125"},{"body":{"nativeSrc":"5055:117:125","nodeType":"YulBlock","src":"5055:117:125","statements":[{"nativeSrc":"5065:29:125","nodeType":"YulAssignment","src":"5065:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"5087:6:125","nodeType":"YulIdentifier","src":"5087:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"5074:12:125","nodeType":"YulIdentifier","src":"5074:12:125"},"nativeSrc":"5074:20:125","nodeType":"YulFunctionCall","src":"5074:20:125"},"variableNames":[{"name":"value","nativeSrc":"5065:5:125","nodeType":"YulIdentifier","src":"5065:5:125"}]},{"body":{"nativeSrc":"5150:16:125","nodeType":"YulBlock","src":"5150:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5159:1:125","nodeType":"YulLiteral","src":"5159:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5162:1:125","nodeType":"YulLiteral","src":"5162:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5152:6:125","nodeType":"YulIdentifier","src":"5152:6:125"},"nativeSrc":"5152:12:125","nodeType":"YulFunctionCall","src":"5152:12:125"},"nativeSrc":"5152:12:125","nodeType":"YulExpressionStatement","src":"5152:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5116:5:125","nodeType":"YulIdentifier","src":"5116:5:125"},{"arguments":[{"name":"value","nativeSrc":"5127:5:125","nodeType":"YulIdentifier","src":"5127:5:125"},{"kind":"number","nativeSrc":"5134:12:125","nodeType":"YulLiteral","src":"5134:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"5123:3:125","nodeType":"YulIdentifier","src":"5123:3:125"},"nativeSrc":"5123:24:125","nodeType":"YulFunctionCall","src":"5123:24:125"}],"functionName":{"name":"eq","nativeSrc":"5113:2:125","nodeType":"YulIdentifier","src":"5113:2:125"},"nativeSrc":"5113:35:125","nodeType":"YulFunctionCall","src":"5113:35:125"}],"functionName":{"name":"iszero","nativeSrc":"5106:6:125","nodeType":"YulIdentifier","src":"5106:6:125"},"nativeSrc":"5106:43:125","nodeType":"YulFunctionCall","src":"5106:43:125"},"nativeSrc":"5103:63:125","nodeType":"YulIf","src":"5103:63:125"}]},"name":"abi_decode_uint40","nativeSrc":"5007:165:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"5034:6:125","nodeType":"YulTypedName","src":"5034:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"5045:5:125","nodeType":"YulTypedName","src":"5045:5:125","type":""}],"src":"5007:165:125"},{"body":{"nativeSrc":"5244:1414:125","nodeType":"YulBlock","src":"5244:1414:125","statements":[{"body":{"nativeSrc":"5290:16:125","nodeType":"YulBlock","src":"5290:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5299:1:125","nodeType":"YulLiteral","src":"5299:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5302:1:125","nodeType":"YulLiteral","src":"5302:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5292:6:125","nodeType":"YulIdentifier","src":"5292:6:125"},"nativeSrc":"5292:12:125","nodeType":"YulFunctionCall","src":"5292:12:125"},"nativeSrc":"5292:12:125","nodeType":"YulExpressionStatement","src":"5292:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"5265:3:125","nodeType":"YulIdentifier","src":"5265:3:125"},{"name":"headStart","nativeSrc":"5270:9:125","nodeType":"YulIdentifier","src":"5270:9:125"}],"functionName":{"name":"sub","nativeSrc":"5261:3:125","nodeType":"YulIdentifier","src":"5261:3:125"},"nativeSrc":"5261:19:125","nodeType":"YulFunctionCall","src":"5261:19:125"},{"kind":"number","nativeSrc":"5282:6:125","nodeType":"YulLiteral","src":"5282:6:125","type":"","value":"0x0180"}],"functionName":{"name":"slt","nativeSrc":"5257:3:125","nodeType":"YulIdentifier","src":"5257:3:125"},"nativeSrc":"5257:32:125","nodeType":"YulFunctionCall","src":"5257:32:125"},"nativeSrc":"5254:52:125","nodeType":"YulIf","src":"5254:52:125"},{"nativeSrc":"5315:26:125","nodeType":"YulAssignment","src":"5315:26:125","value":{"arguments":[],"functionName":{"name":"allocate_memory","nativeSrc":"5324:15:125","nodeType":"YulIdentifier","src":"5324:15:125"},"nativeSrc":"5324:17:125","nodeType":"YulFunctionCall","src":"5324:17:125"},"variableNames":[{"name":"value","nativeSrc":"5315:5:125","nodeType":"YulIdentifier","src":"5315:5:125"}]},{"nativeSrc":"5350:16:125","nodeType":"YulVariableDeclaration","src":"5350:16:125","value":{"kind":"number","nativeSrc":"5365:1:125","nodeType":"YulLiteral","src":"5365:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"5354:7:125","nodeType":"YulTypedName","src":"5354:7:125","type":""}]},{"nativeSrc":"5375:34:125","nodeType":"YulAssignment","src":"5375:34:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5399:9:125","nodeType":"YulIdentifier","src":"5399:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"5386:12:125","nodeType":"YulIdentifier","src":"5386:12:125"},"nativeSrc":"5386:23:125","nodeType":"YulFunctionCall","src":"5386:23:125"},"variableNames":[{"name":"value_1","nativeSrc":"5375:7:125","nodeType":"YulIdentifier","src":"5375:7:125"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5425:5:125","nodeType":"YulIdentifier","src":"5425:5:125"},{"name":"value_1","nativeSrc":"5432:7:125","nodeType":"YulIdentifier","src":"5432:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5418:6:125","nodeType":"YulIdentifier","src":"5418:6:125"},"nativeSrc":"5418:22:125","nodeType":"YulFunctionCall","src":"5418:22:125"},"nativeSrc":"5418:22:125","nodeType":"YulExpressionStatement","src":"5418:22:125"},{"nativeSrc":"5449:16:125","nodeType":"YulVariableDeclaration","src":"5449:16:125","value":{"kind":"number","nativeSrc":"5464:1:125","nodeType":"YulLiteral","src":"5464:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"5453:7:125","nodeType":"YulTypedName","src":"5453:7:125","type":""}]},{"nativeSrc":"5474:43:125","nodeType":"YulAssignment","src":"5474:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5502:9:125","nodeType":"YulIdentifier","src":"5502:9:125"},{"kind":"number","nativeSrc":"5513:2:125","nodeType":"YulLiteral","src":"5513:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5498:3:125","nodeType":"YulIdentifier","src":"5498:3:125"},"nativeSrc":"5498:18:125","nodeType":"YulFunctionCall","src":"5498:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"5485:12:125","nodeType":"YulIdentifier","src":"5485:12:125"},"nativeSrc":"5485:32:125","nodeType":"YulFunctionCall","src":"5485:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"5474:7:125","nodeType":"YulIdentifier","src":"5474:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5537:5:125","nodeType":"YulIdentifier","src":"5537:5:125"},{"kind":"number","nativeSrc":"5544:2:125","nodeType":"YulLiteral","src":"5544:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5533:3:125","nodeType":"YulIdentifier","src":"5533:3:125"},"nativeSrc":"5533:14:125","nodeType":"YulFunctionCall","src":"5533:14:125"},{"name":"value_2","nativeSrc":"5549:7:125","nodeType":"YulIdentifier","src":"5549:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5526:6:125","nodeType":"YulIdentifier","src":"5526:6:125"},"nativeSrc":"5526:31:125","nodeType":"YulFunctionCall","src":"5526:31:125"},"nativeSrc":"5526:31:125","nodeType":"YulExpressionStatement","src":"5526:31:125"},{"nativeSrc":"5566:16:125","nodeType":"YulVariableDeclaration","src":"5566:16:125","value":{"kind":"number","nativeSrc":"5581:1:125","nodeType":"YulLiteral","src":"5581:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"5570:7:125","nodeType":"YulTypedName","src":"5570:7:125","type":""}]},{"nativeSrc":"5591:43:125","nodeType":"YulAssignment","src":"5591:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5619:9:125","nodeType":"YulIdentifier","src":"5619:9:125"},{"kind":"number","nativeSrc":"5630:2:125","nodeType":"YulLiteral","src":"5630:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5615:3:125","nodeType":"YulIdentifier","src":"5615:3:125"},"nativeSrc":"5615:18:125","nodeType":"YulFunctionCall","src":"5615:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"5602:12:125","nodeType":"YulIdentifier","src":"5602:12:125"},"nativeSrc":"5602:32:125","nodeType":"YulFunctionCall","src":"5602:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"5591:7:125","nodeType":"YulIdentifier","src":"5591:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5654:5:125","nodeType":"YulIdentifier","src":"5654:5:125"},{"kind":"number","nativeSrc":"5661:2:125","nodeType":"YulLiteral","src":"5661:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5650:3:125","nodeType":"YulIdentifier","src":"5650:3:125"},"nativeSrc":"5650:14:125","nodeType":"YulFunctionCall","src":"5650:14:125"},{"name":"value_3","nativeSrc":"5666:7:125","nodeType":"YulIdentifier","src":"5666:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5643:6:125","nodeType":"YulIdentifier","src":"5643:6:125"},"nativeSrc":"5643:31:125","nodeType":"YulFunctionCall","src":"5643:31:125"},"nativeSrc":"5643:31:125","nodeType":"YulExpressionStatement","src":"5643:31:125"},{"nativeSrc":"5683:16:125","nodeType":"YulVariableDeclaration","src":"5683:16:125","value":{"kind":"number","nativeSrc":"5698:1:125","nodeType":"YulLiteral","src":"5698:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"5687:7:125","nodeType":"YulTypedName","src":"5687:7:125","type":""}]},{"nativeSrc":"5708:43:125","nodeType":"YulAssignment","src":"5708:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5736:9:125","nodeType":"YulIdentifier","src":"5736:9:125"},{"kind":"number","nativeSrc":"5747:2:125","nodeType":"YulLiteral","src":"5747:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5732:3:125","nodeType":"YulIdentifier","src":"5732:3:125"},"nativeSrc":"5732:18:125","nodeType":"YulFunctionCall","src":"5732:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"5719:12:125","nodeType":"YulIdentifier","src":"5719:12:125"},"nativeSrc":"5719:32:125","nodeType":"YulFunctionCall","src":"5719:32:125"},"variableNames":[{"name":"value_4","nativeSrc":"5708:7:125","nodeType":"YulIdentifier","src":"5708:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5771:5:125","nodeType":"YulIdentifier","src":"5771:5:125"},{"kind":"number","nativeSrc":"5778:2:125","nodeType":"YulLiteral","src":"5778:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5767:3:125","nodeType":"YulIdentifier","src":"5767:3:125"},"nativeSrc":"5767:14:125","nodeType":"YulFunctionCall","src":"5767:14:125"},{"name":"value_4","nativeSrc":"5783:7:125","nodeType":"YulIdentifier","src":"5783:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5760:6:125","nodeType":"YulIdentifier","src":"5760:6:125"},"nativeSrc":"5760:31:125","nodeType":"YulFunctionCall","src":"5760:31:125"},"nativeSrc":"5760:31:125","nodeType":"YulExpressionStatement","src":"5760:31:125"},{"nativeSrc":"5800:16:125","nodeType":"YulVariableDeclaration","src":"5800:16:125","value":{"kind":"number","nativeSrc":"5815:1:125","nodeType":"YulLiteral","src":"5815:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"5804:7:125","nodeType":"YulTypedName","src":"5804:7:125","type":""}]},{"nativeSrc":"5825:44:125","nodeType":"YulAssignment","src":"5825:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5853:9:125","nodeType":"YulIdentifier","src":"5853:9:125"},{"kind":"number","nativeSrc":"5864:3:125","nodeType":"YulLiteral","src":"5864:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5849:3:125","nodeType":"YulIdentifier","src":"5849:3:125"},"nativeSrc":"5849:19:125","nodeType":"YulFunctionCall","src":"5849:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"5836:12:125","nodeType":"YulIdentifier","src":"5836:12:125"},"nativeSrc":"5836:33:125","nodeType":"YulFunctionCall","src":"5836:33:125"},"variableNames":[{"name":"value_5","nativeSrc":"5825:7:125","nodeType":"YulIdentifier","src":"5825:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5889:5:125","nodeType":"YulIdentifier","src":"5889:5:125"},{"kind":"number","nativeSrc":"5896:3:125","nodeType":"YulLiteral","src":"5896:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5885:3:125","nodeType":"YulIdentifier","src":"5885:3:125"},"nativeSrc":"5885:15:125","nodeType":"YulFunctionCall","src":"5885:15:125"},{"name":"value_5","nativeSrc":"5902:7:125","nodeType":"YulIdentifier","src":"5902:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5878:6:125","nodeType":"YulIdentifier","src":"5878:6:125"},"nativeSrc":"5878:32:125","nodeType":"YulFunctionCall","src":"5878:32:125"},"nativeSrc":"5878:32:125","nodeType":"YulExpressionStatement","src":"5878:32:125"},{"nativeSrc":"5919:16:125","nodeType":"YulVariableDeclaration","src":"5919:16:125","value":{"kind":"number","nativeSrc":"5934:1:125","nodeType":"YulLiteral","src":"5934:1:125","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"5923:7:125","nodeType":"YulTypedName","src":"5923:7:125","type":""}]},{"nativeSrc":"5944:44:125","nodeType":"YulAssignment","src":"5944:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5972:9:125","nodeType":"YulIdentifier","src":"5972:9:125"},{"kind":"number","nativeSrc":"5983:3:125","nodeType":"YulLiteral","src":"5983:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"5968:3:125","nodeType":"YulIdentifier","src":"5968:3:125"},"nativeSrc":"5968:19:125","nodeType":"YulFunctionCall","src":"5968:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"5955:12:125","nodeType":"YulIdentifier","src":"5955:12:125"},"nativeSrc":"5955:33:125","nodeType":"YulFunctionCall","src":"5955:33:125"},"variableNames":[{"name":"value_6","nativeSrc":"5944:7:125","nodeType":"YulIdentifier","src":"5944:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6008:5:125","nodeType":"YulIdentifier","src":"6008:5:125"},{"kind":"number","nativeSrc":"6015:3:125","nodeType":"YulLiteral","src":"6015:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"6004:3:125","nodeType":"YulIdentifier","src":"6004:3:125"},"nativeSrc":"6004:15:125","nodeType":"YulFunctionCall","src":"6004:15:125"},{"name":"value_6","nativeSrc":"6021:7:125","nodeType":"YulIdentifier","src":"6021:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5997:6:125","nodeType":"YulIdentifier","src":"5997:6:125"},"nativeSrc":"5997:32:125","nodeType":"YulFunctionCall","src":"5997:32:125"},"nativeSrc":"5997:32:125","nodeType":"YulExpressionStatement","src":"5997:32:125"},{"nativeSrc":"6038:16:125","nodeType":"YulVariableDeclaration","src":"6038:16:125","value":{"kind":"number","nativeSrc":"6053:1:125","nodeType":"YulLiteral","src":"6053:1:125","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"6042:7:125","nodeType":"YulTypedName","src":"6042:7:125","type":""}]},{"nativeSrc":"6063:44:125","nodeType":"YulAssignment","src":"6063:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6091:9:125","nodeType":"YulIdentifier","src":"6091:9:125"},{"kind":"number","nativeSrc":"6102:3:125","nodeType":"YulLiteral","src":"6102:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"6087:3:125","nodeType":"YulIdentifier","src":"6087:3:125"},"nativeSrc":"6087:19:125","nodeType":"YulFunctionCall","src":"6087:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"6074:12:125","nodeType":"YulIdentifier","src":"6074:12:125"},"nativeSrc":"6074:33:125","nodeType":"YulFunctionCall","src":"6074:33:125"},"variableNames":[{"name":"value_7","nativeSrc":"6063:7:125","nodeType":"YulIdentifier","src":"6063:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6127:5:125","nodeType":"YulIdentifier","src":"6127:5:125"},{"kind":"number","nativeSrc":"6134:3:125","nodeType":"YulLiteral","src":"6134:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"6123:3:125","nodeType":"YulIdentifier","src":"6123:3:125"},"nativeSrc":"6123:15:125","nodeType":"YulFunctionCall","src":"6123:15:125"},{"name":"value_7","nativeSrc":"6140:7:125","nodeType":"YulIdentifier","src":"6140:7:125"}],"functionName":{"name":"mstore","nativeSrc":"6116:6:125","nodeType":"YulIdentifier","src":"6116:6:125"},"nativeSrc":"6116:32:125","nodeType":"YulFunctionCall","src":"6116:32:125"},"nativeSrc":"6116:32:125","nodeType":"YulExpressionStatement","src":"6116:32:125"},{"nativeSrc":"6157:16:125","nodeType":"YulVariableDeclaration","src":"6157:16:125","value":{"kind":"number","nativeSrc":"6172:1:125","nodeType":"YulLiteral","src":"6172:1:125","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"6161:7:125","nodeType":"YulTypedName","src":"6161:7:125","type":""}]},{"nativeSrc":"6182:44:125","nodeType":"YulAssignment","src":"6182:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6210:9:125","nodeType":"YulIdentifier","src":"6210:9:125"},{"kind":"number","nativeSrc":"6221:3:125","nodeType":"YulLiteral","src":"6221:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"6206:3:125","nodeType":"YulIdentifier","src":"6206:3:125"},"nativeSrc":"6206:19:125","nodeType":"YulFunctionCall","src":"6206:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"6193:12:125","nodeType":"YulIdentifier","src":"6193:12:125"},"nativeSrc":"6193:33:125","nodeType":"YulFunctionCall","src":"6193:33:125"},"variableNames":[{"name":"value_8","nativeSrc":"6182:7:125","nodeType":"YulIdentifier","src":"6182:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6246:5:125","nodeType":"YulIdentifier","src":"6246:5:125"},{"kind":"number","nativeSrc":"6253:3:125","nodeType":"YulLiteral","src":"6253:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"6242:3:125","nodeType":"YulIdentifier","src":"6242:3:125"},"nativeSrc":"6242:15:125","nodeType":"YulFunctionCall","src":"6242:15:125"},{"name":"value_8","nativeSrc":"6259:7:125","nodeType":"YulIdentifier","src":"6259:7:125"}],"functionName":{"name":"mstore","nativeSrc":"6235:6:125","nodeType":"YulIdentifier","src":"6235:6:125"},"nativeSrc":"6235:32:125","nodeType":"YulFunctionCall","src":"6235:32:125"},"nativeSrc":"6235:32:125","nodeType":"YulExpressionStatement","src":"6235:32:125"},{"nativeSrc":"6276:16:125","nodeType":"YulVariableDeclaration","src":"6276:16:125","value":{"kind":"number","nativeSrc":"6291:1:125","nodeType":"YulLiteral","src":"6291:1:125","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"6280:7:125","nodeType":"YulTypedName","src":"6280:7:125","type":""}]},{"nativeSrc":"6301:44:125","nodeType":"YulAssignment","src":"6301:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6329:9:125","nodeType":"YulIdentifier","src":"6329:9:125"},{"kind":"number","nativeSrc":"6340:3:125","nodeType":"YulLiteral","src":"6340:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"6325:3:125","nodeType":"YulIdentifier","src":"6325:3:125"},"nativeSrc":"6325:19:125","nodeType":"YulFunctionCall","src":"6325:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"6312:12:125","nodeType":"YulIdentifier","src":"6312:12:125"},"nativeSrc":"6312:33:125","nodeType":"YulFunctionCall","src":"6312:33:125"},"variableNames":[{"name":"value_9","nativeSrc":"6301:7:125","nodeType":"YulIdentifier","src":"6301:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6365:5:125","nodeType":"YulIdentifier","src":"6365:5:125"},{"kind":"number","nativeSrc":"6372:3:125","nodeType":"YulLiteral","src":"6372:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"6361:3:125","nodeType":"YulIdentifier","src":"6361:3:125"},"nativeSrc":"6361:15:125","nodeType":"YulFunctionCall","src":"6361:15:125"},{"name":"value_9","nativeSrc":"6378:7:125","nodeType":"YulIdentifier","src":"6378:7:125"}],"functionName":{"name":"mstore","nativeSrc":"6354:6:125","nodeType":"YulIdentifier","src":"6354:6:125"},"nativeSrc":"6354:32:125","nodeType":"YulFunctionCall","src":"6354:32:125"},"nativeSrc":"6354:32:125","nodeType":"YulExpressionStatement","src":"6354:32:125"},{"nativeSrc":"6395:17:125","nodeType":"YulVariableDeclaration","src":"6395:17:125","value":{"kind":"number","nativeSrc":"6411:1:125","nodeType":"YulLiteral","src":"6411:1:125","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"6399:8:125","nodeType":"YulTypedName","src":"6399:8:125","type":""}]},{"nativeSrc":"6421:45:125","nodeType":"YulAssignment","src":"6421:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6450:9:125","nodeType":"YulIdentifier","src":"6450:9:125"},{"kind":"number","nativeSrc":"6461:3:125","nodeType":"YulLiteral","src":"6461:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"6446:3:125","nodeType":"YulIdentifier","src":"6446:3:125"},"nativeSrc":"6446:19:125","nodeType":"YulFunctionCall","src":"6446:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"6433:12:125","nodeType":"YulIdentifier","src":"6433:12:125"},"nativeSrc":"6433:33:125","nodeType":"YulFunctionCall","src":"6433:33:125"},"variableNames":[{"name":"value_10","nativeSrc":"6421:8:125","nodeType":"YulIdentifier","src":"6421:8:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6486:5:125","nodeType":"YulIdentifier","src":"6486:5:125"},{"kind":"number","nativeSrc":"6493:3:125","nodeType":"YulLiteral","src":"6493:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"6482:3:125","nodeType":"YulIdentifier","src":"6482:3:125"},"nativeSrc":"6482:15:125","nodeType":"YulFunctionCall","src":"6482:15:125"},{"name":"value_10","nativeSrc":"6499:8:125","nodeType":"YulIdentifier","src":"6499:8:125"}],"functionName":{"name":"mstore","nativeSrc":"6475:6:125","nodeType":"YulIdentifier","src":"6475:6:125"},"nativeSrc":"6475:33:125","nodeType":"YulFunctionCall","src":"6475:33:125"},"nativeSrc":"6475:33:125","nodeType":"YulExpressionStatement","src":"6475:33:125"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6528:5:125","nodeType":"YulIdentifier","src":"6528:5:125"},{"kind":"number","nativeSrc":"6535:3:125","nodeType":"YulLiteral","src":"6535:3:125","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"6524:3:125","nodeType":"YulIdentifier","src":"6524:3:125"},"nativeSrc":"6524:15:125","nodeType":"YulFunctionCall","src":"6524:15:125"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6563:9:125","nodeType":"YulIdentifier","src":"6563:9:125"},{"kind":"number","nativeSrc":"6574:3:125","nodeType":"YulLiteral","src":"6574:3:125","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"6559:3:125","nodeType":"YulIdentifier","src":"6559:3:125"},"nativeSrc":"6559:19:125","nodeType":"YulFunctionCall","src":"6559:19:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"6541:17:125","nodeType":"YulIdentifier","src":"6541:17:125"},"nativeSrc":"6541:38:125","nodeType":"YulFunctionCall","src":"6541:38:125"}],"functionName":{"name":"mstore","nativeSrc":"6517:6:125","nodeType":"YulIdentifier","src":"6517:6:125"},"nativeSrc":"6517:63:125","nodeType":"YulFunctionCall","src":"6517:63:125"},"nativeSrc":"6517:63:125","nodeType":"YulExpressionStatement","src":"6517:63:125"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6600:5:125","nodeType":"YulIdentifier","src":"6600:5:125"},{"kind":"number","nativeSrc":"6607:3:125","nodeType":"YulLiteral","src":"6607:3:125","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"6596:3:125","nodeType":"YulIdentifier","src":"6596:3:125"},"nativeSrc":"6596:15:125","nodeType":"YulFunctionCall","src":"6596:15:125"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6635:9:125","nodeType":"YulIdentifier","src":"6635:9:125"},{"kind":"number","nativeSrc":"6646:3:125","nodeType":"YulLiteral","src":"6646:3:125","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"6631:3:125","nodeType":"YulIdentifier","src":"6631:3:125"},"nativeSrc":"6631:19:125","nodeType":"YulFunctionCall","src":"6631:19:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"6613:17:125","nodeType":"YulIdentifier","src":"6613:17:125"},"nativeSrc":"6613:38:125","nodeType":"YulFunctionCall","src":"6613:38:125"}],"functionName":{"name":"mstore","nativeSrc":"6589:6:125","nodeType":"YulIdentifier","src":"6589:6:125"},"nativeSrc":"6589:63:125","nodeType":"YulFunctionCall","src":"6589:63:125"},"nativeSrc":"6589:63:125","nodeType":"YulExpressionStatement","src":"6589:63:125"}]},"name":"abi_decode_struct_PolicyData","nativeSrc":"5177:1481:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5215:9:125","nodeType":"YulTypedName","src":"5215:9:125","type":""},{"name":"end","nativeSrc":"5226:3:125","nodeType":"YulTypedName","src":"5226:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"5234:5:125","nodeType":"YulTypedName","src":"5234:5:125","type":""}],"src":"5177:1481:125"},{"body":{"nativeSrc":"6812:442:125","nodeType":"YulBlock","src":"6812:442:125","statements":[{"body":{"nativeSrc":"6859:16:125","nodeType":"YulBlock","src":"6859:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6868:1:125","nodeType":"YulLiteral","src":"6868:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6871:1:125","nodeType":"YulLiteral","src":"6871:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6861:6:125","nodeType":"YulIdentifier","src":"6861:6:125"},"nativeSrc":"6861:12:125","nodeType":"YulFunctionCall","src":"6861:12:125"},"nativeSrc":"6861:12:125","nodeType":"YulExpressionStatement","src":"6861:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6833:7:125","nodeType":"YulIdentifier","src":"6833:7:125"},{"name":"headStart","nativeSrc":"6842:9:125","nodeType":"YulIdentifier","src":"6842:9:125"}],"functionName":{"name":"sub","nativeSrc":"6829:3:125","nodeType":"YulIdentifier","src":"6829:3:125"},"nativeSrc":"6829:23:125","nodeType":"YulFunctionCall","src":"6829:23:125"},{"kind":"number","nativeSrc":"6854:3:125","nodeType":"YulLiteral","src":"6854:3:125","type":"","value":"480"}],"functionName":{"name":"slt","nativeSrc":"6825:3:125","nodeType":"YulIdentifier","src":"6825:3:125"},"nativeSrc":"6825:33:125","nodeType":"YulFunctionCall","src":"6825:33:125"},"nativeSrc":"6822:53:125","nodeType":"YulIf","src":"6822:53:125"},{"nativeSrc":"6884:58:125","nodeType":"YulAssignment","src":"6884:58:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6923:9:125","nodeType":"YulIdentifier","src":"6923:9:125"},{"name":"dataEnd","nativeSrc":"6934:7:125","nodeType":"YulIdentifier","src":"6934:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"6894:28:125","nodeType":"YulIdentifier","src":"6894:28:125"},"nativeSrc":"6894:48:125","nodeType":"YulFunctionCall","src":"6894:48:125"},"variableNames":[{"name":"value0","nativeSrc":"6884:6:125","nodeType":"YulIdentifier","src":"6884:6:125"}]},{"nativeSrc":"6951:14:125","nodeType":"YulVariableDeclaration","src":"6951:14:125","value":{"kind":"number","nativeSrc":"6964:1:125","nodeType":"YulLiteral","src":"6964:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"6955:5:125","nodeType":"YulTypedName","src":"6955:5:125","type":""}]},{"nativeSrc":"6974:42:125","nodeType":"YulAssignment","src":"6974:42:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7000:9:125","nodeType":"YulIdentifier","src":"7000:9:125"},{"kind":"number","nativeSrc":"7011:3:125","nodeType":"YulLiteral","src":"7011:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"6996:3:125","nodeType":"YulIdentifier","src":"6996:3:125"},"nativeSrc":"6996:19:125","nodeType":"YulFunctionCall","src":"6996:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"6983:12:125","nodeType":"YulIdentifier","src":"6983:12:125"},"nativeSrc":"6983:33:125","nodeType":"YulFunctionCall","src":"6983:33:125"},"variableNames":[{"name":"value","nativeSrc":"6974:5:125","nodeType":"YulIdentifier","src":"6974:5:125"}]},{"nativeSrc":"7025:15:125","nodeType":"YulAssignment","src":"7025:15:125","value":{"name":"value","nativeSrc":"7035:5:125","nodeType":"YulIdentifier","src":"7035:5:125"},"variableNames":[{"name":"value1","nativeSrc":"7025:6:125","nodeType":"YulIdentifier","src":"7025:6:125"}]},{"nativeSrc":"7049:16:125","nodeType":"YulVariableDeclaration","src":"7049:16:125","value":{"kind":"number","nativeSrc":"7064:1:125","nodeType":"YulLiteral","src":"7064:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"7053:7:125","nodeType":"YulTypedName","src":"7053:7:125","type":""}]},{"nativeSrc":"7074:44:125","nodeType":"YulAssignment","src":"7074:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7102:9:125","nodeType":"YulIdentifier","src":"7102:9:125"},{"kind":"number","nativeSrc":"7113:3:125","nodeType":"YulLiteral","src":"7113:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"7098:3:125","nodeType":"YulIdentifier","src":"7098:3:125"},"nativeSrc":"7098:19:125","nodeType":"YulFunctionCall","src":"7098:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"7085:12:125","nodeType":"YulIdentifier","src":"7085:12:125"},"nativeSrc":"7085:33:125","nodeType":"YulFunctionCall","src":"7085:33:125"},"variableNames":[{"name":"value_1","nativeSrc":"7074:7:125","nodeType":"YulIdentifier","src":"7074:7:125"}]},{"nativeSrc":"7127:17:125","nodeType":"YulAssignment","src":"7127:17:125","value":{"name":"value_1","nativeSrc":"7137:7:125","nodeType":"YulIdentifier","src":"7137:7:125"},"variableNames":[{"name":"value2","nativeSrc":"7127:6:125","nodeType":"YulIdentifier","src":"7127:6:125"}]},{"nativeSrc":"7153:16:125","nodeType":"YulVariableDeclaration","src":"7153:16:125","value":{"kind":"number","nativeSrc":"7168:1:125","nodeType":"YulLiteral","src":"7168:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"7157:7:125","nodeType":"YulTypedName","src":"7157:7:125","type":""}]},{"nativeSrc":"7178:44:125","nodeType":"YulAssignment","src":"7178:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7206:9:125","nodeType":"YulIdentifier","src":"7206:9:125"},{"kind":"number","nativeSrc":"7217:3:125","nodeType":"YulLiteral","src":"7217:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"7202:3:125","nodeType":"YulIdentifier","src":"7202:3:125"},"nativeSrc":"7202:19:125","nodeType":"YulFunctionCall","src":"7202:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"7189:12:125","nodeType":"YulIdentifier","src":"7189:12:125"},"nativeSrc":"7189:33:125","nodeType":"YulFunctionCall","src":"7189:33:125"},"variableNames":[{"name":"value_2","nativeSrc":"7178:7:125","nodeType":"YulIdentifier","src":"7178:7:125"}]},{"nativeSrc":"7231:17:125","nodeType":"YulAssignment","src":"7231:17:125","value":{"name":"value_2","nativeSrc":"7241:7:125","nodeType":"YulIdentifier","src":"7241:7:125"},"variableNames":[{"name":"value3","nativeSrc":"7231:6:125","nodeType":"YulIdentifier","src":"7231:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256","nativeSrc":"6663:591:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6754:9:125","nodeType":"YulTypedName","src":"6754:9:125","type":""},{"name":"dataEnd","nativeSrc":"6765:7:125","nodeType":"YulTypedName","src":"6765:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6777:6:125","nodeType":"YulTypedName","src":"6777:6:125","type":""},{"name":"value1","nativeSrc":"6785:6:125","nodeType":"YulTypedName","src":"6785:6:125","type":""},{"name":"value2","nativeSrc":"6793:6:125","nodeType":"YulTypedName","src":"6793:6:125","type":""},{"name":"value3","nativeSrc":"6801:6:125","nodeType":"YulTypedName","src":"6801:6:125","type":""}],"src":"6663:591:125"},{"body":{"nativeSrc":"7291:95:125","nodeType":"YulBlock","src":"7291:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7308:1:125","nodeType":"YulLiteral","src":"7308:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"7315:3:125","nodeType":"YulLiteral","src":"7315:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"7320:10:125","nodeType":"YulLiteral","src":"7320:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"7311:3:125","nodeType":"YulIdentifier","src":"7311:3:125"},"nativeSrc":"7311:20:125","nodeType":"YulFunctionCall","src":"7311:20:125"}],"functionName":{"name":"mstore","nativeSrc":"7301:6:125","nodeType":"YulIdentifier","src":"7301:6:125"},"nativeSrc":"7301:31:125","nodeType":"YulFunctionCall","src":"7301:31:125"},"nativeSrc":"7301:31:125","nodeType":"YulExpressionStatement","src":"7301:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7348:1:125","nodeType":"YulLiteral","src":"7348:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"7351:4:125","nodeType":"YulLiteral","src":"7351:4:125","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"7341:6:125","nodeType":"YulIdentifier","src":"7341:6:125"},"nativeSrc":"7341:15:125","nodeType":"YulFunctionCall","src":"7341:15:125"},"nativeSrc":"7341:15:125","nodeType":"YulExpressionStatement","src":"7341:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7372:1:125","nodeType":"YulLiteral","src":"7372:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7375:4:125","nodeType":"YulLiteral","src":"7375:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"7365:6:125","nodeType":"YulIdentifier","src":"7365:6:125"},"nativeSrc":"7365:15:125","nodeType":"YulFunctionCall","src":"7365:15:125"},"nativeSrc":"7365:15:125","nodeType":"YulExpressionStatement","src":"7365:15:125"}]},"name":"panic_error_0x11","nativeSrc":"7259:127:125","nodeType":"YulFunctionDefinition","src":"7259:127:125"},{"body":{"nativeSrc":"7440:79:125","nodeType":"YulBlock","src":"7440:79:125","statements":[{"nativeSrc":"7450:17:125","nodeType":"YulAssignment","src":"7450:17:125","value":{"arguments":[{"name":"x","nativeSrc":"7462:1:125","nodeType":"YulIdentifier","src":"7462:1:125"},{"name":"y","nativeSrc":"7465:1:125","nodeType":"YulIdentifier","src":"7465:1:125"}],"functionName":{"name":"sub","nativeSrc":"7458:3:125","nodeType":"YulIdentifier","src":"7458:3:125"},"nativeSrc":"7458:9:125","nodeType":"YulFunctionCall","src":"7458:9:125"},"variableNames":[{"name":"diff","nativeSrc":"7450:4:125","nodeType":"YulIdentifier","src":"7450:4:125"}]},{"body":{"nativeSrc":"7491:22:125","nodeType":"YulBlock","src":"7491:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"7493:16:125","nodeType":"YulIdentifier","src":"7493:16:125"},"nativeSrc":"7493:18:125","nodeType":"YulFunctionCall","src":"7493:18:125"},"nativeSrc":"7493:18:125","nodeType":"YulExpressionStatement","src":"7493:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"7482:4:125","nodeType":"YulIdentifier","src":"7482:4:125"},{"name":"x","nativeSrc":"7488:1:125","nodeType":"YulIdentifier","src":"7488:1:125"}],"functionName":{"name":"gt","nativeSrc":"7479:2:125","nodeType":"YulIdentifier","src":"7479:2:125"},"nativeSrc":"7479:11:125","nodeType":"YulFunctionCall","src":"7479:11:125"},"nativeSrc":"7476:37:125","nodeType":"YulIf","src":"7476:37:125"}]},"name":"checked_sub_t_uint256","nativeSrc":"7391:128:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"7422:1:125","nodeType":"YulTypedName","src":"7422:1:125","type":""},{"name":"y","nativeSrc":"7425:1:125","nodeType":"YulTypedName","src":"7425:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"7431:4:125","nodeType":"YulTypedName","src":"7431:4:125","type":""}],"src":"7391:128:125"},{"body":{"nativeSrc":"7572:77:125","nodeType":"YulBlock","src":"7572:77:125","statements":[{"nativeSrc":"7582:16:125","nodeType":"YulAssignment","src":"7582:16:125","value":{"arguments":[{"name":"x","nativeSrc":"7593:1:125","nodeType":"YulIdentifier","src":"7593:1:125"},{"name":"y","nativeSrc":"7596:1:125","nodeType":"YulIdentifier","src":"7596:1:125"}],"functionName":{"name":"add","nativeSrc":"7589:3:125","nodeType":"YulIdentifier","src":"7589:3:125"},"nativeSrc":"7589:9:125","nodeType":"YulFunctionCall","src":"7589:9:125"},"variableNames":[{"name":"sum","nativeSrc":"7582:3:125","nodeType":"YulIdentifier","src":"7582:3:125"}]},{"body":{"nativeSrc":"7621:22:125","nodeType":"YulBlock","src":"7621:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"7623:16:125","nodeType":"YulIdentifier","src":"7623:16:125"},"nativeSrc":"7623:18:125","nodeType":"YulFunctionCall","src":"7623:18:125"},"nativeSrc":"7623:18:125","nodeType":"YulExpressionStatement","src":"7623:18:125"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"7613:1:125","nodeType":"YulIdentifier","src":"7613:1:125"},{"name":"sum","nativeSrc":"7616:3:125","nodeType":"YulIdentifier","src":"7616:3:125"}],"functionName":{"name":"gt","nativeSrc":"7610:2:125","nodeType":"YulIdentifier","src":"7610:2:125"},"nativeSrc":"7610:10:125","nodeType":"YulFunctionCall","src":"7610:10:125"},"nativeSrc":"7607:36:125","nodeType":"YulIf","src":"7607:36:125"}]},"name":"checked_add_t_uint256","nativeSrc":"7524:125:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"7555:1:125","nodeType":"YulTypedName","src":"7555:1:125","type":""},{"name":"y","nativeSrc":"7558:1:125","nodeType":"YulTypedName","src":"7558:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"7564:3:125","nodeType":"YulTypedName","src":"7564:3:125","type":""}],"src":"7524:125:125"},{"body":{"nativeSrc":"7717:1225:125","nodeType":"YulBlock","src":"7717:1225:125","statements":[{"body":{"nativeSrc":"7761:16:125","nodeType":"YulBlock","src":"7761:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7770:1:125","nodeType":"YulLiteral","src":"7770:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7773:1:125","nodeType":"YulLiteral","src":"7773:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7763:6:125","nodeType":"YulIdentifier","src":"7763:6:125"},"nativeSrc":"7763:12:125","nodeType":"YulFunctionCall","src":"7763:12:125"},"nativeSrc":"7763:12:125","nodeType":"YulExpressionStatement","src":"7763:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"7738:3:125","nodeType":"YulIdentifier","src":"7738:3:125"},{"name":"headStart","nativeSrc":"7743:9:125","nodeType":"YulIdentifier","src":"7743:9:125"}],"functionName":{"name":"sub","nativeSrc":"7734:3:125","nodeType":"YulIdentifier","src":"7734:3:125"},"nativeSrc":"7734:19:125","nodeType":"YulFunctionCall","src":"7734:19:125"},{"kind":"number","nativeSrc":"7755:4:125","nodeType":"YulLiteral","src":"7755:4:125","type":"","value":"0xe0"}],"functionName":{"name":"slt","nativeSrc":"7730:3:125","nodeType":"YulIdentifier","src":"7730:3:125"},"nativeSrc":"7730:30:125","nodeType":"YulFunctionCall","src":"7730:30:125"},"nativeSrc":"7727:50:125","nodeType":"YulIf","src":"7727:50:125"},{"nativeSrc":"7786:15:125","nodeType":"YulVariableDeclaration","src":"7786:15:125","value":{"kind":"number","nativeSrc":"7800:1:125","nodeType":"YulLiteral","src":"7800:1:125","type":"","value":"0"},"variables":[{"name":"memPtr","nativeSrc":"7790:6:125","nodeType":"YulTypedName","src":"7790:6:125","type":""}]},{"nativeSrc":"7810:19:125","nodeType":"YulAssignment","src":"7810:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"7826:2:125","nodeType":"YulLiteral","src":"7826:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"7820:5:125","nodeType":"YulIdentifier","src":"7820:5:125"},"nativeSrc":"7820:9:125","nodeType":"YulFunctionCall","src":"7820:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"7810:6:125","nodeType":"YulIdentifier","src":"7810:6:125"}]},{"nativeSrc":"7838:35:125","nodeType":"YulVariableDeclaration","src":"7838:35:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"7860:6:125","nodeType":"YulIdentifier","src":"7860:6:125"},{"kind":"number","nativeSrc":"7868:4:125","nodeType":"YulLiteral","src":"7868:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"7856:3:125","nodeType":"YulIdentifier","src":"7856:3:125"},"nativeSrc":"7856:17:125","nodeType":"YulFunctionCall","src":"7856:17:125"},"variables":[{"name":"newFreePtr","nativeSrc":"7842:10:125","nodeType":"YulTypedName","src":"7842:10:125","type":""}]},{"body":{"nativeSrc":"7956:111:125","nodeType":"YulBlock","src":"7956:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7977:1:125","nodeType":"YulLiteral","src":"7977:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"7984:3:125","nodeType":"YulLiteral","src":"7984:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"7989:10:125","nodeType":"YulLiteral","src":"7989:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"7980:3:125","nodeType":"YulIdentifier","src":"7980:3:125"},"nativeSrc":"7980:20:125","nodeType":"YulFunctionCall","src":"7980:20:125"}],"functionName":{"name":"mstore","nativeSrc":"7970:6:125","nodeType":"YulIdentifier","src":"7970:6:125"},"nativeSrc":"7970:31:125","nodeType":"YulFunctionCall","src":"7970:31:125"},"nativeSrc":"7970:31:125","nodeType":"YulExpressionStatement","src":"7970:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8021:1:125","nodeType":"YulLiteral","src":"8021:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"8024:4:125","nodeType":"YulLiteral","src":"8024:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"8014:6:125","nodeType":"YulIdentifier","src":"8014:6:125"},"nativeSrc":"8014:15:125","nodeType":"YulFunctionCall","src":"8014:15:125"},"nativeSrc":"8014:15:125","nodeType":"YulExpressionStatement","src":"8014:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8049:1:125","nodeType":"YulLiteral","src":"8049:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8052:4:125","nodeType":"YulLiteral","src":"8052:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"8042:6:125","nodeType":"YulIdentifier","src":"8042:6:125"},"nativeSrc":"8042:15:125","nodeType":"YulFunctionCall","src":"8042:15:125"},"nativeSrc":"8042:15:125","nodeType":"YulExpressionStatement","src":"8042:15:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"7891:10:125","nodeType":"YulIdentifier","src":"7891:10:125"},{"kind":"number","nativeSrc":"7903:18:125","nodeType":"YulLiteral","src":"7903:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7888:2:125","nodeType":"YulIdentifier","src":"7888:2:125"},"nativeSrc":"7888:34:125","nodeType":"YulFunctionCall","src":"7888:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"7927:10:125","nodeType":"YulIdentifier","src":"7927:10:125"},{"name":"memPtr","nativeSrc":"7939:6:125","nodeType":"YulIdentifier","src":"7939:6:125"}],"functionName":{"name":"lt","nativeSrc":"7924:2:125","nodeType":"YulIdentifier","src":"7924:2:125"},"nativeSrc":"7924:22:125","nodeType":"YulFunctionCall","src":"7924:22:125"}],"functionName":{"name":"or","nativeSrc":"7885:2:125","nodeType":"YulIdentifier","src":"7885:2:125"},"nativeSrc":"7885:62:125","nodeType":"YulFunctionCall","src":"7885:62:125"},"nativeSrc":"7882:185:125","nodeType":"YulIf","src":"7882:185:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8083:2:125","nodeType":"YulLiteral","src":"8083:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"8087:10:125","nodeType":"YulIdentifier","src":"8087:10:125"}],"functionName":{"name":"mstore","nativeSrc":"8076:6:125","nodeType":"YulIdentifier","src":"8076:6:125"},"nativeSrc":"8076:22:125","nodeType":"YulFunctionCall","src":"8076:22:125"},"nativeSrc":"8076:22:125","nodeType":"YulExpressionStatement","src":"8076:22:125"},{"nativeSrc":"8107:15:125","nodeType":"YulAssignment","src":"8107:15:125","value":{"name":"memPtr","nativeSrc":"8116:6:125","nodeType":"YulIdentifier","src":"8116:6:125"},"variableNames":[{"name":"value","nativeSrc":"8107:5:125","nodeType":"YulIdentifier","src":"8107:5:125"}]},{"nativeSrc":"8131:16:125","nodeType":"YulVariableDeclaration","src":"8131:16:125","value":{"kind":"number","nativeSrc":"8146:1:125","nodeType":"YulLiteral","src":"8146:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"8135:7:125","nodeType":"YulTypedName","src":"8135:7:125","type":""}]},{"nativeSrc":"8156:34:125","nodeType":"YulAssignment","src":"8156:34:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8180:9:125","nodeType":"YulIdentifier","src":"8180:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"8167:12:125","nodeType":"YulIdentifier","src":"8167:12:125"},"nativeSrc":"8167:23:125","nodeType":"YulFunctionCall","src":"8167:23:125"},"variableNames":[{"name":"value_1","nativeSrc":"8156:7:125","nodeType":"YulIdentifier","src":"8156:7:125"}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"8206:6:125","nodeType":"YulIdentifier","src":"8206:6:125"},{"name":"value_1","nativeSrc":"8214:7:125","nodeType":"YulIdentifier","src":"8214:7:125"}],"functionName":{"name":"mstore","nativeSrc":"8199:6:125","nodeType":"YulIdentifier","src":"8199:6:125"},"nativeSrc":"8199:23:125","nodeType":"YulFunctionCall","src":"8199:23:125"},"nativeSrc":"8199:23:125","nodeType":"YulExpressionStatement","src":"8199:23:125"},{"nativeSrc":"8231:16:125","nodeType":"YulVariableDeclaration","src":"8231:16:125","value":{"kind":"number","nativeSrc":"8246:1:125","nodeType":"YulLiteral","src":"8246:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"8235:7:125","nodeType":"YulTypedName","src":"8235:7:125","type":""}]},{"nativeSrc":"8256:43:125","nodeType":"YulAssignment","src":"8256:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8284:9:125","nodeType":"YulIdentifier","src":"8284:9:125"},{"kind":"number","nativeSrc":"8295:2:125","nodeType":"YulLiteral","src":"8295:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8280:3:125","nodeType":"YulIdentifier","src":"8280:3:125"},"nativeSrc":"8280:18:125","nodeType":"YulFunctionCall","src":"8280:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"8267:12:125","nodeType":"YulIdentifier","src":"8267:12:125"},"nativeSrc":"8267:32:125","nodeType":"YulFunctionCall","src":"8267:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"8256:7:125","nodeType":"YulIdentifier","src":"8256:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8319:6:125","nodeType":"YulIdentifier","src":"8319:6:125"},{"kind":"number","nativeSrc":"8327:2:125","nodeType":"YulLiteral","src":"8327:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8315:3:125","nodeType":"YulIdentifier","src":"8315:3:125"},"nativeSrc":"8315:15:125","nodeType":"YulFunctionCall","src":"8315:15:125"},{"name":"value_2","nativeSrc":"8332:7:125","nodeType":"YulIdentifier","src":"8332:7:125"}],"functionName":{"name":"mstore","nativeSrc":"8308:6:125","nodeType":"YulIdentifier","src":"8308:6:125"},"nativeSrc":"8308:32:125","nodeType":"YulFunctionCall","src":"8308:32:125"},"nativeSrc":"8308:32:125","nodeType":"YulExpressionStatement","src":"8308:32:125"},{"nativeSrc":"8349:16:125","nodeType":"YulVariableDeclaration","src":"8349:16:125","value":{"kind":"number","nativeSrc":"8364:1:125","nodeType":"YulLiteral","src":"8364:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"8353:7:125","nodeType":"YulTypedName","src":"8353:7:125","type":""}]},{"nativeSrc":"8374:43:125","nodeType":"YulAssignment","src":"8374:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8402:9:125","nodeType":"YulIdentifier","src":"8402:9:125"},{"kind":"number","nativeSrc":"8413:2:125","nodeType":"YulLiteral","src":"8413:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8398:3:125","nodeType":"YulIdentifier","src":"8398:3:125"},"nativeSrc":"8398:18:125","nodeType":"YulFunctionCall","src":"8398:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"8385:12:125","nodeType":"YulIdentifier","src":"8385:12:125"},"nativeSrc":"8385:32:125","nodeType":"YulFunctionCall","src":"8385:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"8374:7:125","nodeType":"YulIdentifier","src":"8374:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8437:6:125","nodeType":"YulIdentifier","src":"8437:6:125"},{"kind":"number","nativeSrc":"8445:2:125","nodeType":"YulLiteral","src":"8445:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8433:3:125","nodeType":"YulIdentifier","src":"8433:3:125"},"nativeSrc":"8433:15:125","nodeType":"YulFunctionCall","src":"8433:15:125"},{"name":"value_3","nativeSrc":"8450:7:125","nodeType":"YulIdentifier","src":"8450:7:125"}],"functionName":{"name":"mstore","nativeSrc":"8426:6:125","nodeType":"YulIdentifier","src":"8426:6:125"},"nativeSrc":"8426:32:125","nodeType":"YulFunctionCall","src":"8426:32:125"},"nativeSrc":"8426:32:125","nodeType":"YulExpressionStatement","src":"8426:32:125"},{"nativeSrc":"8467:16:125","nodeType":"YulVariableDeclaration","src":"8467:16:125","value":{"kind":"number","nativeSrc":"8482:1:125","nodeType":"YulLiteral","src":"8482:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"8471:7:125","nodeType":"YulTypedName","src":"8471:7:125","type":""}]},{"nativeSrc":"8492:43:125","nodeType":"YulAssignment","src":"8492:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8520:9:125","nodeType":"YulIdentifier","src":"8520:9:125"},{"kind":"number","nativeSrc":"8531:2:125","nodeType":"YulLiteral","src":"8531:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8516:3:125","nodeType":"YulIdentifier","src":"8516:3:125"},"nativeSrc":"8516:18:125","nodeType":"YulFunctionCall","src":"8516:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"8503:12:125","nodeType":"YulIdentifier","src":"8503:12:125"},"nativeSrc":"8503:32:125","nodeType":"YulFunctionCall","src":"8503:32:125"},"variableNames":[{"name":"value_4","nativeSrc":"8492:7:125","nodeType":"YulIdentifier","src":"8492:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8555:6:125","nodeType":"YulIdentifier","src":"8555:6:125"},{"kind":"number","nativeSrc":"8563:2:125","nodeType":"YulLiteral","src":"8563:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8551:3:125","nodeType":"YulIdentifier","src":"8551:3:125"},"nativeSrc":"8551:15:125","nodeType":"YulFunctionCall","src":"8551:15:125"},{"name":"value_4","nativeSrc":"8568:7:125","nodeType":"YulIdentifier","src":"8568:7:125"}],"functionName":{"name":"mstore","nativeSrc":"8544:6:125","nodeType":"YulIdentifier","src":"8544:6:125"},"nativeSrc":"8544:32:125","nodeType":"YulFunctionCall","src":"8544:32:125"},"nativeSrc":"8544:32:125","nodeType":"YulExpressionStatement","src":"8544:32:125"},{"nativeSrc":"8585:16:125","nodeType":"YulVariableDeclaration","src":"8585:16:125","value":{"kind":"number","nativeSrc":"8600:1:125","nodeType":"YulLiteral","src":"8600:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"8589:7:125","nodeType":"YulTypedName","src":"8589:7:125","type":""}]},{"nativeSrc":"8610:44:125","nodeType":"YulAssignment","src":"8610:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8638:9:125","nodeType":"YulIdentifier","src":"8638:9:125"},{"kind":"number","nativeSrc":"8649:3:125","nodeType":"YulLiteral","src":"8649:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"8634:3:125","nodeType":"YulIdentifier","src":"8634:3:125"},"nativeSrc":"8634:19:125","nodeType":"YulFunctionCall","src":"8634:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"8621:12:125","nodeType":"YulIdentifier","src":"8621:12:125"},"nativeSrc":"8621:33:125","nodeType":"YulFunctionCall","src":"8621:33:125"},"variableNames":[{"name":"value_5","nativeSrc":"8610:7:125","nodeType":"YulIdentifier","src":"8610:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8674:6:125","nodeType":"YulIdentifier","src":"8674:6:125"},{"kind":"number","nativeSrc":"8682:3:125","nodeType":"YulLiteral","src":"8682:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"8670:3:125","nodeType":"YulIdentifier","src":"8670:3:125"},"nativeSrc":"8670:16:125","nodeType":"YulFunctionCall","src":"8670:16:125"},{"name":"value_5","nativeSrc":"8688:7:125","nodeType":"YulIdentifier","src":"8688:7:125"}],"functionName":{"name":"mstore","nativeSrc":"8663:6:125","nodeType":"YulIdentifier","src":"8663:6:125"},"nativeSrc":"8663:33:125","nodeType":"YulFunctionCall","src":"8663:33:125"},"nativeSrc":"8663:33:125","nodeType":"YulExpressionStatement","src":"8663:33:125"},{"nativeSrc":"8705:16:125","nodeType":"YulVariableDeclaration","src":"8705:16:125","value":{"kind":"number","nativeSrc":"8720:1:125","nodeType":"YulLiteral","src":"8720:1:125","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"8709:7:125","nodeType":"YulTypedName","src":"8709:7:125","type":""}]},{"nativeSrc":"8730:44:125","nodeType":"YulAssignment","src":"8730:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8758:9:125","nodeType":"YulIdentifier","src":"8758:9:125"},{"kind":"number","nativeSrc":"8769:3:125","nodeType":"YulLiteral","src":"8769:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"8754:3:125","nodeType":"YulIdentifier","src":"8754:3:125"},"nativeSrc":"8754:19:125","nodeType":"YulFunctionCall","src":"8754:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"8741:12:125","nodeType":"YulIdentifier","src":"8741:12:125"},"nativeSrc":"8741:33:125","nodeType":"YulFunctionCall","src":"8741:33:125"},"variableNames":[{"name":"value_6","nativeSrc":"8730:7:125","nodeType":"YulIdentifier","src":"8730:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8794:6:125","nodeType":"YulIdentifier","src":"8794:6:125"},{"kind":"number","nativeSrc":"8802:3:125","nodeType":"YulLiteral","src":"8802:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"8790:3:125","nodeType":"YulIdentifier","src":"8790:3:125"},"nativeSrc":"8790:16:125","nodeType":"YulFunctionCall","src":"8790:16:125"},{"name":"value_6","nativeSrc":"8808:7:125","nodeType":"YulIdentifier","src":"8808:7:125"}],"functionName":{"name":"mstore","nativeSrc":"8783:6:125","nodeType":"YulIdentifier","src":"8783:6:125"},"nativeSrc":"8783:33:125","nodeType":"YulFunctionCall","src":"8783:33:125"},"nativeSrc":"8783:33:125","nodeType":"YulExpressionStatement","src":"8783:33:125"},{"nativeSrc":"8825:16:125","nodeType":"YulVariableDeclaration","src":"8825:16:125","value":{"kind":"number","nativeSrc":"8840:1:125","nodeType":"YulLiteral","src":"8840:1:125","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"8829:7:125","nodeType":"YulTypedName","src":"8829:7:125","type":""}]},{"nativeSrc":"8850:44:125","nodeType":"YulAssignment","src":"8850:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8878:9:125","nodeType":"YulIdentifier","src":"8878:9:125"},{"kind":"number","nativeSrc":"8889:3:125","nodeType":"YulLiteral","src":"8889:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"8874:3:125","nodeType":"YulIdentifier","src":"8874:3:125"},"nativeSrc":"8874:19:125","nodeType":"YulFunctionCall","src":"8874:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"8861:12:125","nodeType":"YulIdentifier","src":"8861:12:125"},"nativeSrc":"8861:33:125","nodeType":"YulFunctionCall","src":"8861:33:125"},"variableNames":[{"name":"value_7","nativeSrc":"8850:7:125","nodeType":"YulIdentifier","src":"8850:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8914:6:125","nodeType":"YulIdentifier","src":"8914:6:125"},{"kind":"number","nativeSrc":"8922:3:125","nodeType":"YulLiteral","src":"8922:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"8910:3:125","nodeType":"YulIdentifier","src":"8910:3:125"},"nativeSrc":"8910:16:125","nodeType":"YulFunctionCall","src":"8910:16:125"},{"name":"value_7","nativeSrc":"8928:7:125","nodeType":"YulIdentifier","src":"8928:7:125"}],"functionName":{"name":"mstore","nativeSrc":"8903:6:125","nodeType":"YulIdentifier","src":"8903:6:125"},"nativeSrc":"8903:33:125","nodeType":"YulFunctionCall","src":"8903:33:125"},"nativeSrc":"8903:33:125","nodeType":"YulExpressionStatement","src":"8903:33:125"}]},"name":"abi_decode_struct_Params","nativeSrc":"7654:1288:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7688:9:125","nodeType":"YulTypedName","src":"7688:9:125","type":""},{"name":"end","nativeSrc":"7699:3:125","nodeType":"YulTypedName","src":"7699:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"7707:5:125","nodeType":"YulTypedName","src":"7707:5:125","type":""}],"src":"7654:1288:125"},{"body":{"nativeSrc":"9170:676:125","nodeType":"YulBlock","src":"9170:676:125","statements":[{"body":{"nativeSrc":"9217:16:125","nodeType":"YulBlock","src":"9217:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9226:1:125","nodeType":"YulLiteral","src":"9226:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9229:1:125","nodeType":"YulLiteral","src":"9229:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9219:6:125","nodeType":"YulIdentifier","src":"9219:6:125"},"nativeSrc":"9219:12:125","nodeType":"YulFunctionCall","src":"9219:12:125"},"nativeSrc":"9219:12:125","nodeType":"YulExpressionStatement","src":"9219:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9191:7:125","nodeType":"YulIdentifier","src":"9191:7:125"},{"name":"headStart","nativeSrc":"9200:9:125","nodeType":"YulIdentifier","src":"9200:9:125"}],"functionName":{"name":"sub","nativeSrc":"9187:3:125","nodeType":"YulIdentifier","src":"9187:3:125"},"nativeSrc":"9187:23:125","nodeType":"YulFunctionCall","src":"9187:23:125"},{"kind":"number","nativeSrc":"9212:3:125","nodeType":"YulLiteral","src":"9212:3:125","type":"","value":"768"}],"functionName":{"name":"slt","nativeSrc":"9183:3:125","nodeType":"YulIdentifier","src":"9183:3:125"},"nativeSrc":"9183:33:125","nodeType":"YulFunctionCall","src":"9183:33:125"},"nativeSrc":"9180:53:125","nodeType":"YulIf","src":"9180:53:125"},{"nativeSrc":"9242:58:125","nodeType":"YulAssignment","src":"9242:58:125","value":{"arguments":[{"name":"headStart","nativeSrc":"9281:9:125","nodeType":"YulIdentifier","src":"9281:9:125"},{"name":"dataEnd","nativeSrc":"9292:7:125","nodeType":"YulIdentifier","src":"9292:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"9252:28:125","nodeType":"YulIdentifier","src":"9252:28:125"},"nativeSrc":"9252:48:125","nodeType":"YulFunctionCall","src":"9252:48:125"},"variableNames":[{"name":"value0","nativeSrc":"9242:6:125","nodeType":"YulIdentifier","src":"9242:6:125"}]},{"nativeSrc":"9309:14:125","nodeType":"YulVariableDeclaration","src":"9309:14:125","value":{"kind":"number","nativeSrc":"9322:1:125","nodeType":"YulLiteral","src":"9322:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"9313:5:125","nodeType":"YulTypedName","src":"9313:5:125","type":""}]},{"nativeSrc":"9332:42:125","nodeType":"YulAssignment","src":"9332:42:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9358:9:125","nodeType":"YulIdentifier","src":"9358:9:125"},{"kind":"number","nativeSrc":"9369:3:125","nodeType":"YulLiteral","src":"9369:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"9354:3:125","nodeType":"YulIdentifier","src":"9354:3:125"},"nativeSrc":"9354:19:125","nodeType":"YulFunctionCall","src":"9354:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"9341:12:125","nodeType":"YulIdentifier","src":"9341:12:125"},"nativeSrc":"9341:33:125","nodeType":"YulFunctionCall","src":"9341:33:125"},"variableNames":[{"name":"value","nativeSrc":"9332:5:125","nodeType":"YulIdentifier","src":"9332:5:125"}]},{"nativeSrc":"9383:15:125","nodeType":"YulAssignment","src":"9383:15:125","value":{"name":"value","nativeSrc":"9393:5:125","nodeType":"YulIdentifier","src":"9393:5:125"},"variableNames":[{"name":"value1","nativeSrc":"9383:6:125","nodeType":"YulIdentifier","src":"9383:6:125"}]},{"nativeSrc":"9407:16:125","nodeType":"YulVariableDeclaration","src":"9407:16:125","value":{"kind":"number","nativeSrc":"9422:1:125","nodeType":"YulLiteral","src":"9422:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"9411:7:125","nodeType":"YulTypedName","src":"9411:7:125","type":""}]},{"nativeSrc":"9432:44:125","nodeType":"YulAssignment","src":"9432:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9460:9:125","nodeType":"YulIdentifier","src":"9460:9:125"},{"kind":"number","nativeSrc":"9471:3:125","nodeType":"YulLiteral","src":"9471:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"9456:3:125","nodeType":"YulIdentifier","src":"9456:3:125"},"nativeSrc":"9456:19:125","nodeType":"YulFunctionCall","src":"9456:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"9443:12:125","nodeType":"YulIdentifier","src":"9443:12:125"},"nativeSrc":"9443:33:125","nodeType":"YulFunctionCall","src":"9443:33:125"},"variableNames":[{"name":"value_1","nativeSrc":"9432:7:125","nodeType":"YulIdentifier","src":"9432:7:125"}]},{"nativeSrc":"9485:17:125","nodeType":"YulAssignment","src":"9485:17:125","value":{"name":"value_1","nativeSrc":"9495:7:125","nodeType":"YulIdentifier","src":"9495:7:125"},"variableNames":[{"name":"value2","nativeSrc":"9485:6:125","nodeType":"YulIdentifier","src":"9485:6:125"}]},{"nativeSrc":"9511:16:125","nodeType":"YulVariableDeclaration","src":"9511:16:125","value":{"kind":"number","nativeSrc":"9526:1:125","nodeType":"YulLiteral","src":"9526:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"9515:7:125","nodeType":"YulTypedName","src":"9515:7:125","type":""}]},{"nativeSrc":"9536:44:125","nodeType":"YulAssignment","src":"9536:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9564:9:125","nodeType":"YulIdentifier","src":"9564:9:125"},{"kind":"number","nativeSrc":"9575:3:125","nodeType":"YulLiteral","src":"9575:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"9560:3:125","nodeType":"YulIdentifier","src":"9560:3:125"},"nativeSrc":"9560:19:125","nodeType":"YulFunctionCall","src":"9560:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"9547:12:125","nodeType":"YulIdentifier","src":"9547:12:125"},"nativeSrc":"9547:33:125","nodeType":"YulFunctionCall","src":"9547:33:125"},"variableNames":[{"name":"value_2","nativeSrc":"9536:7:125","nodeType":"YulIdentifier","src":"9536:7:125"}]},{"nativeSrc":"9589:17:125","nodeType":"YulAssignment","src":"9589:17:125","value":{"name":"value_2","nativeSrc":"9599:7:125","nodeType":"YulIdentifier","src":"9599:7:125"},"variableNames":[{"name":"value3","nativeSrc":"9589:6:125","nodeType":"YulIdentifier","src":"9589:6:125"}]},{"nativeSrc":"9615:48:125","nodeType":"YulAssignment","src":"9615:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9647:9:125","nodeType":"YulIdentifier","src":"9647:9:125"},{"kind":"number","nativeSrc":"9658:3:125","nodeType":"YulLiteral","src":"9658:3:125","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"9643:3:125","nodeType":"YulIdentifier","src":"9643:3:125"},"nativeSrc":"9643:19:125","nodeType":"YulFunctionCall","src":"9643:19:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"9625:17:125","nodeType":"YulIdentifier","src":"9625:17:125"},"nativeSrc":"9625:38:125","nodeType":"YulFunctionCall","src":"9625:38:125"},"variableNames":[{"name":"value4","nativeSrc":"9615:6:125","nodeType":"YulIdentifier","src":"9615:6:125"}]},{"nativeSrc":"9672:16:125","nodeType":"YulVariableDeclaration","src":"9672:16:125","value":{"kind":"number","nativeSrc":"9687:1:125","nodeType":"YulLiteral","src":"9687:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"9676:7:125","nodeType":"YulTypedName","src":"9676:7:125","type":""}]},{"nativeSrc":"9697:44:125","nodeType":"YulAssignment","src":"9697:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9725:9:125","nodeType":"YulIdentifier","src":"9725:9:125"},{"kind":"number","nativeSrc":"9736:3:125","nodeType":"YulLiteral","src":"9736:3:125","type":"","value":"512"}],"functionName":{"name":"add","nativeSrc":"9721:3:125","nodeType":"YulIdentifier","src":"9721:3:125"},"nativeSrc":"9721:19:125","nodeType":"YulFunctionCall","src":"9721:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"9708:12:125","nodeType":"YulIdentifier","src":"9708:12:125"},"nativeSrc":"9708:33:125","nodeType":"YulFunctionCall","src":"9708:33:125"},"variableNames":[{"name":"value_3","nativeSrc":"9697:7:125","nodeType":"YulIdentifier","src":"9697:7:125"}]},{"nativeSrc":"9750:17:125","nodeType":"YulAssignment","src":"9750:17:125","value":{"name":"value_3","nativeSrc":"9760:7:125","nodeType":"YulIdentifier","src":"9760:7:125"},"variableNames":[{"name":"value5","nativeSrc":"9750:6:125","nodeType":"YulIdentifier","src":"9750:6:125"}]},{"nativeSrc":"9776:64:125","nodeType":"YulAssignment","src":"9776:64:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9815:9:125","nodeType":"YulIdentifier","src":"9815:9:125"},{"kind":"number","nativeSrc":"9826:3:125","nodeType":"YulLiteral","src":"9826:3:125","type":"","value":"544"}],"functionName":{"name":"add","nativeSrc":"9811:3:125","nodeType":"YulIdentifier","src":"9811:3:125"},"nativeSrc":"9811:19:125","nodeType":"YulFunctionCall","src":"9811:19:125"},{"name":"dataEnd","nativeSrc":"9832:7:125","nodeType":"YulIdentifier","src":"9832:7:125"}],"functionName":{"name":"abi_decode_struct_Params","nativeSrc":"9786:24:125","nodeType":"YulIdentifier","src":"9786:24:125"},"nativeSrc":"9786:54:125","nodeType":"YulFunctionCall","src":"9786:54:125"},"variableNames":[{"name":"value6","nativeSrc":"9776:6:125","nodeType":"YulIdentifier","src":"9776:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint256t_struct$_Params_$7718_memory_ptr","nativeSrc":"8947:899:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9088:9:125","nodeType":"YulTypedName","src":"9088:9:125","type":""},{"name":"dataEnd","nativeSrc":"9099:7:125","nodeType":"YulTypedName","src":"9099:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9111:6:125","nodeType":"YulTypedName","src":"9111:6:125","type":""},{"name":"value1","nativeSrc":"9119:6:125","nodeType":"YulTypedName","src":"9119:6:125","type":""},{"name":"value2","nativeSrc":"9127:6:125","nodeType":"YulTypedName","src":"9127:6:125","type":""},{"name":"value3","nativeSrc":"9135:6:125","nodeType":"YulTypedName","src":"9135:6:125","type":""},{"name":"value4","nativeSrc":"9143:6:125","nodeType":"YulTypedName","src":"9143:6:125","type":""},{"name":"value5","nativeSrc":"9151:6:125","nodeType":"YulTypedName","src":"9151:6:125","type":""},{"name":"value6","nativeSrc":"9159:6:125","nodeType":"YulTypedName","src":"9159:6:125","type":""}],"src":"8947:899:125"},{"body":{"nativeSrc":"10029:596:125","nodeType":"YulBlock","src":"10029:596:125","statements":[{"body":{"nativeSrc":"10076:16:125","nodeType":"YulBlock","src":"10076:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10085:1:125","nodeType":"YulLiteral","src":"10085:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10088:1:125","nodeType":"YulLiteral","src":"10088:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10078:6:125","nodeType":"YulIdentifier","src":"10078:6:125"},"nativeSrc":"10078:12:125","nodeType":"YulFunctionCall","src":"10078:12:125"},"nativeSrc":"10078:12:125","nodeType":"YulExpressionStatement","src":"10078:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10050:7:125","nodeType":"YulIdentifier","src":"10050:7:125"},{"name":"headStart","nativeSrc":"10059:9:125","nodeType":"YulIdentifier","src":"10059:9:125"}],"functionName":{"name":"sub","nativeSrc":"10046:3:125","nodeType":"YulIdentifier","src":"10046:3:125"},"nativeSrc":"10046:23:125","nodeType":"YulFunctionCall","src":"10046:23:125"},{"kind":"number","nativeSrc":"10071:3:125","nodeType":"YulLiteral","src":"10071:3:125","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"10042:3:125","nodeType":"YulIdentifier","src":"10042:3:125"},"nativeSrc":"10042:33:125","nodeType":"YulFunctionCall","src":"10042:33:125"},"nativeSrc":"10039:53:125","nodeType":"YulIf","src":"10039:53:125"},{"nativeSrc":"10101:14:125","nodeType":"YulVariableDeclaration","src":"10101:14:125","value":{"kind":"number","nativeSrc":"10114:1:125","nodeType":"YulLiteral","src":"10114:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"10105:5:125","nodeType":"YulTypedName","src":"10105:5:125","type":""}]},{"nativeSrc":"10124:32:125","nodeType":"YulAssignment","src":"10124:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10146:9:125","nodeType":"YulIdentifier","src":"10146:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"10133:12:125","nodeType":"YulIdentifier","src":"10133:12:125"},"nativeSrc":"10133:23:125","nodeType":"YulFunctionCall","src":"10133:23:125"},"variableNames":[{"name":"value","nativeSrc":"10124:5:125","nodeType":"YulIdentifier","src":"10124:5:125"}]},{"nativeSrc":"10165:15:125","nodeType":"YulAssignment","src":"10165:15:125","value":{"name":"value","nativeSrc":"10175:5:125","nodeType":"YulIdentifier","src":"10175:5:125"},"variableNames":[{"name":"value0","nativeSrc":"10165:6:125","nodeType":"YulIdentifier","src":"10165:6:125"}]},{"nativeSrc":"10189:16:125","nodeType":"YulVariableDeclaration","src":"10189:16:125","value":{"kind":"number","nativeSrc":"10204:1:125","nodeType":"YulLiteral","src":"10204:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"10193:7:125","nodeType":"YulTypedName","src":"10193:7:125","type":""}]},{"nativeSrc":"10214:43:125","nodeType":"YulAssignment","src":"10214:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10242:9:125","nodeType":"YulIdentifier","src":"10242:9:125"},{"kind":"number","nativeSrc":"10253:2:125","nodeType":"YulLiteral","src":"10253:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10238:3:125","nodeType":"YulIdentifier","src":"10238:3:125"},"nativeSrc":"10238:18:125","nodeType":"YulFunctionCall","src":"10238:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"10225:12:125","nodeType":"YulIdentifier","src":"10225:12:125"},"nativeSrc":"10225:32:125","nodeType":"YulFunctionCall","src":"10225:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"10214:7:125","nodeType":"YulIdentifier","src":"10214:7:125"}]},{"nativeSrc":"10266:17:125","nodeType":"YulAssignment","src":"10266:17:125","value":{"name":"value_1","nativeSrc":"10276:7:125","nodeType":"YulIdentifier","src":"10276:7:125"},"variableNames":[{"name":"value1","nativeSrc":"10266:6:125","nodeType":"YulIdentifier","src":"10266:6:125"}]},{"nativeSrc":"10292:16:125","nodeType":"YulVariableDeclaration","src":"10292:16:125","value":{"kind":"number","nativeSrc":"10307:1:125","nodeType":"YulLiteral","src":"10307:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"10296:7:125","nodeType":"YulTypedName","src":"10296:7:125","type":""}]},{"nativeSrc":"10317:43:125","nodeType":"YulAssignment","src":"10317:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10345:9:125","nodeType":"YulIdentifier","src":"10345:9:125"},{"kind":"number","nativeSrc":"10356:2:125","nodeType":"YulLiteral","src":"10356:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10341:3:125","nodeType":"YulIdentifier","src":"10341:3:125"},"nativeSrc":"10341:18:125","nodeType":"YulFunctionCall","src":"10341:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"10328:12:125","nodeType":"YulIdentifier","src":"10328:12:125"},"nativeSrc":"10328:32:125","nodeType":"YulFunctionCall","src":"10328:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"10317:7:125","nodeType":"YulIdentifier","src":"10317:7:125"}]},{"nativeSrc":"10369:17:125","nodeType":"YulAssignment","src":"10369:17:125","value":{"name":"value_2","nativeSrc":"10379:7:125","nodeType":"YulIdentifier","src":"10379:7:125"},"variableNames":[{"name":"value2","nativeSrc":"10369:6:125","nodeType":"YulIdentifier","src":"10369:6:125"}]},{"nativeSrc":"10395:47:125","nodeType":"YulAssignment","src":"10395:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10427:9:125","nodeType":"YulIdentifier","src":"10427:9:125"},{"kind":"number","nativeSrc":"10438:2:125","nodeType":"YulLiteral","src":"10438:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"10423:3:125","nodeType":"YulIdentifier","src":"10423:3:125"},"nativeSrc":"10423:18:125","nodeType":"YulFunctionCall","src":"10423:18:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"10405:17:125","nodeType":"YulIdentifier","src":"10405:17:125"},"nativeSrc":"10405:37:125","nodeType":"YulFunctionCall","src":"10405:37:125"},"variableNames":[{"name":"value3","nativeSrc":"10395:6:125","nodeType":"YulIdentifier","src":"10395:6:125"}]},{"nativeSrc":"10451:16:125","nodeType":"YulVariableDeclaration","src":"10451:16:125","value":{"kind":"number","nativeSrc":"10466:1:125","nodeType":"YulLiteral","src":"10466:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"10455:7:125","nodeType":"YulTypedName","src":"10455:7:125","type":""}]},{"nativeSrc":"10476:44:125","nodeType":"YulAssignment","src":"10476:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10504:9:125","nodeType":"YulIdentifier","src":"10504:9:125"},{"kind":"number","nativeSrc":"10515:3:125","nodeType":"YulLiteral","src":"10515:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"10500:3:125","nodeType":"YulIdentifier","src":"10500:3:125"},"nativeSrc":"10500:19:125","nodeType":"YulFunctionCall","src":"10500:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"10487:12:125","nodeType":"YulIdentifier","src":"10487:12:125"},"nativeSrc":"10487:33:125","nodeType":"YulFunctionCall","src":"10487:33:125"},"variableNames":[{"name":"value_3","nativeSrc":"10476:7:125","nodeType":"YulIdentifier","src":"10476:7:125"}]},{"nativeSrc":"10529:17:125","nodeType":"YulAssignment","src":"10529:17:125","value":{"name":"value_3","nativeSrc":"10539:7:125","nodeType":"YulIdentifier","src":"10539:7:125"},"variableNames":[{"name":"value4","nativeSrc":"10529:6:125","nodeType":"YulIdentifier","src":"10529:6:125"}]},{"nativeSrc":"10555:64:125","nodeType":"YulAssignment","src":"10555:64:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10594:9:125","nodeType":"YulIdentifier","src":"10594:9:125"},{"kind":"number","nativeSrc":"10605:3:125","nodeType":"YulLiteral","src":"10605:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"10590:3:125","nodeType":"YulIdentifier","src":"10590:3:125"},"nativeSrc":"10590:19:125","nodeType":"YulFunctionCall","src":"10590:19:125"},{"name":"dataEnd","nativeSrc":"10611:7:125","nodeType":"YulIdentifier","src":"10611:7:125"}],"functionName":{"name":"abi_decode_struct_Params","nativeSrc":"10565:24:125","nodeType":"YulIdentifier","src":"10565:24:125"},"nativeSrc":"10565:54:125","nodeType":"YulFunctionCall","src":"10565:54:125"},"variableNames":[{"name":"value5","nativeSrc":"10555:6:125","nodeType":"YulIdentifier","src":"10555:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint256t_struct$_Params_$7718_memory_ptr","nativeSrc":"9851:774:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9955:9:125","nodeType":"YulTypedName","src":"9955:9:125","type":""},{"name":"dataEnd","nativeSrc":"9966:7:125","nodeType":"YulTypedName","src":"9966:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9978:6:125","nodeType":"YulTypedName","src":"9978:6:125","type":""},{"name":"value1","nativeSrc":"9986:6:125","nodeType":"YulTypedName","src":"9986:6:125","type":""},{"name":"value2","nativeSrc":"9994:6:125","nodeType":"YulTypedName","src":"9994:6:125","type":""},{"name":"value3","nativeSrc":"10002:6:125","nodeType":"YulTypedName","src":"10002:6:125","type":""},{"name":"value4","nativeSrc":"10010:6:125","nodeType":"YulTypedName","src":"10010:6:125","type":""},{"name":"value5","nativeSrc":"10018:6:125","nodeType":"YulTypedName","src":"10018:6:125","type":""}],"src":"9851:774:125"},{"body":{"nativeSrc":"10759:119:125","nodeType":"YulBlock","src":"10759:119:125","statements":[{"nativeSrc":"10769:26:125","nodeType":"YulAssignment","src":"10769:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10781:9:125","nodeType":"YulIdentifier","src":"10781:9:125"},{"kind":"number","nativeSrc":"10792:2:125","nodeType":"YulLiteral","src":"10792:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10777:3:125","nodeType":"YulIdentifier","src":"10777:3:125"},"nativeSrc":"10777:18:125","nodeType":"YulFunctionCall","src":"10777:18:125"},"variableNames":[{"name":"tail","nativeSrc":"10769:4:125","nodeType":"YulIdentifier","src":"10769:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10811:9:125","nodeType":"YulIdentifier","src":"10811:9:125"},{"name":"value0","nativeSrc":"10822:6:125","nodeType":"YulIdentifier","src":"10822:6:125"}],"functionName":{"name":"mstore","nativeSrc":"10804:6:125","nodeType":"YulIdentifier","src":"10804:6:125"},"nativeSrc":"10804:25:125","nodeType":"YulFunctionCall","src":"10804:25:125"},"nativeSrc":"10804:25:125","nodeType":"YulExpressionStatement","src":"10804:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10849:9:125","nodeType":"YulIdentifier","src":"10849:9:125"},{"kind":"number","nativeSrc":"10860:2:125","nodeType":"YulLiteral","src":"10860:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10845:3:125","nodeType":"YulIdentifier","src":"10845:3:125"},"nativeSrc":"10845:18:125","nodeType":"YulFunctionCall","src":"10845:18:125"},{"name":"value1","nativeSrc":"10865:6:125","nodeType":"YulIdentifier","src":"10865:6:125"}],"functionName":{"name":"mstore","nativeSrc":"10838:6:125","nodeType":"YulIdentifier","src":"10838:6:125"},"nativeSrc":"10838:34:125","nodeType":"YulFunctionCall","src":"10838:34:125"},"nativeSrc":"10838:34:125","nodeType":"YulExpressionStatement","src":"10838:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"10630:248:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10720:9:125","nodeType":"YulTypedName","src":"10720:9:125","type":""},{"name":"value1","nativeSrc":"10731:6:125","nodeType":"YulTypedName","src":"10731:6:125","type":""},{"name":"value0","nativeSrc":"10739:6:125","nodeType":"YulTypedName","src":"10739:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10750:4:125","nodeType":"YulTypedName","src":"10750:4:125","type":""}],"src":"10630:248:125"},{"body":{"nativeSrc":"10988:170:125","nodeType":"YulBlock","src":"10988:170:125","statements":[{"body":{"nativeSrc":"11034:16:125","nodeType":"YulBlock","src":"11034:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11043:1:125","nodeType":"YulLiteral","src":"11043:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11046:1:125","nodeType":"YulLiteral","src":"11046:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11036:6:125","nodeType":"YulIdentifier","src":"11036:6:125"},"nativeSrc":"11036:12:125","nodeType":"YulFunctionCall","src":"11036:12:125"},"nativeSrc":"11036:12:125","nodeType":"YulExpressionStatement","src":"11036:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11009:7:125","nodeType":"YulIdentifier","src":"11009:7:125"},{"name":"headStart","nativeSrc":"11018:9:125","nodeType":"YulIdentifier","src":"11018:9:125"}],"functionName":{"name":"sub","nativeSrc":"11005:3:125","nodeType":"YulIdentifier","src":"11005:3:125"},"nativeSrc":"11005:23:125","nodeType":"YulFunctionCall","src":"11005:23:125"},{"kind":"number","nativeSrc":"11030:2:125","nodeType":"YulLiteral","src":"11030:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"11001:3:125","nodeType":"YulIdentifier","src":"11001:3:125"},"nativeSrc":"11001:32:125","nodeType":"YulFunctionCall","src":"11001:32:125"},"nativeSrc":"10998:52:125","nodeType":"YulIf","src":"10998:52:125"},{"nativeSrc":"11059:29:125","nodeType":"YulVariableDeclaration","src":"11059:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11078:9:125","nodeType":"YulIdentifier","src":"11078:9:125"}],"functionName":{"name":"mload","nativeSrc":"11072:5:125","nodeType":"YulIdentifier","src":"11072:5:125"},"nativeSrc":"11072:16:125","nodeType":"YulFunctionCall","src":"11072:16:125"},"variables":[{"name":"value","nativeSrc":"11063:5:125","nodeType":"YulTypedName","src":"11063:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11122:5:125","nodeType":"YulIdentifier","src":"11122:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"11097:24:125","nodeType":"YulIdentifier","src":"11097:24:125"},"nativeSrc":"11097:31:125","nodeType":"YulFunctionCall","src":"11097:31:125"},"nativeSrc":"11097:31:125","nodeType":"YulExpressionStatement","src":"11097:31:125"},{"nativeSrc":"11137:15:125","nodeType":"YulAssignment","src":"11137:15:125","value":{"name":"value","nativeSrc":"11147:5:125","nodeType":"YulIdentifier","src":"11147:5:125"},"variableNames":[{"name":"value0","nativeSrc":"11137:6:125","nodeType":"YulIdentifier","src":"11137:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IAccessManager_$22178_fromMemory","nativeSrc":"10883:275:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10954:9:125","nodeType":"YulTypedName","src":"10954:9:125","type":""},{"name":"dataEnd","nativeSrc":"10965:7:125","nodeType":"YulTypedName","src":"10965:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10977:6:125","nodeType":"YulTypedName","src":"10977:6:125","type":""}],"src":"10883:275:125"},{"body":{"nativeSrc":"11318:241:125","nodeType":"YulBlock","src":"11318:241:125","statements":[{"nativeSrc":"11328:26:125","nodeType":"YulAssignment","src":"11328:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11340:9:125","nodeType":"YulIdentifier","src":"11340:9:125"},{"kind":"number","nativeSrc":"11351:2:125","nodeType":"YulLiteral","src":"11351:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11336:3:125","nodeType":"YulIdentifier","src":"11336:3:125"},"nativeSrc":"11336:18:125","nodeType":"YulFunctionCall","src":"11336:18:125"},"variableNames":[{"name":"tail","nativeSrc":"11328:4:125","nodeType":"YulIdentifier","src":"11328:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11370:9:125","nodeType":"YulIdentifier","src":"11370:9:125"},{"arguments":[{"name":"value0","nativeSrc":"11385:6:125","nodeType":"YulIdentifier","src":"11385:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11401:3:125","nodeType":"YulLiteral","src":"11401:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"11406:1:125","nodeType":"YulLiteral","src":"11406:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11397:3:125","nodeType":"YulIdentifier","src":"11397:3:125"},"nativeSrc":"11397:11:125","nodeType":"YulFunctionCall","src":"11397:11:125"},{"kind":"number","nativeSrc":"11410:1:125","nodeType":"YulLiteral","src":"11410:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11393:3:125","nodeType":"YulIdentifier","src":"11393:3:125"},"nativeSrc":"11393:19:125","nodeType":"YulFunctionCall","src":"11393:19:125"}],"functionName":{"name":"and","nativeSrc":"11381:3:125","nodeType":"YulIdentifier","src":"11381:3:125"},"nativeSrc":"11381:32:125","nodeType":"YulFunctionCall","src":"11381:32:125"}],"functionName":{"name":"mstore","nativeSrc":"11363:6:125","nodeType":"YulIdentifier","src":"11363:6:125"},"nativeSrc":"11363:51:125","nodeType":"YulFunctionCall","src":"11363:51:125"},"nativeSrc":"11363:51:125","nodeType":"YulExpressionStatement","src":"11363:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11434:9:125","nodeType":"YulIdentifier","src":"11434:9:125"},{"kind":"number","nativeSrc":"11445:2:125","nodeType":"YulLiteral","src":"11445:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11430:3:125","nodeType":"YulIdentifier","src":"11430:3:125"},"nativeSrc":"11430:18:125","nodeType":"YulFunctionCall","src":"11430:18:125"},{"arguments":[{"name":"value1","nativeSrc":"11454:6:125","nodeType":"YulIdentifier","src":"11454:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11470:3:125","nodeType":"YulLiteral","src":"11470:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"11475:1:125","nodeType":"YulLiteral","src":"11475:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11466:3:125","nodeType":"YulIdentifier","src":"11466:3:125"},"nativeSrc":"11466:11:125","nodeType":"YulFunctionCall","src":"11466:11:125"},{"kind":"number","nativeSrc":"11479:1:125","nodeType":"YulLiteral","src":"11479:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11462:3:125","nodeType":"YulIdentifier","src":"11462:3:125"},"nativeSrc":"11462:19:125","nodeType":"YulFunctionCall","src":"11462:19:125"}],"functionName":{"name":"and","nativeSrc":"11450:3:125","nodeType":"YulIdentifier","src":"11450:3:125"},"nativeSrc":"11450:32:125","nodeType":"YulFunctionCall","src":"11450:32:125"}],"functionName":{"name":"mstore","nativeSrc":"11423:6:125","nodeType":"YulIdentifier","src":"11423:6:125"},"nativeSrc":"11423:60:125","nodeType":"YulFunctionCall","src":"11423:60:125"},"nativeSrc":"11423:60:125","nodeType":"YulExpressionStatement","src":"11423:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11503:9:125","nodeType":"YulIdentifier","src":"11503:9:125"},{"kind":"number","nativeSrc":"11514:2:125","nodeType":"YulLiteral","src":"11514:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11499:3:125","nodeType":"YulIdentifier","src":"11499:3:125"},"nativeSrc":"11499:18:125","nodeType":"YulFunctionCall","src":"11499:18:125"},{"arguments":[{"name":"value2","nativeSrc":"11523:6:125","nodeType":"YulIdentifier","src":"11523:6:125"},{"arguments":[{"kind":"number","nativeSrc":"11535:3:125","nodeType":"YulLiteral","src":"11535:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"11540:10:125","nodeType":"YulLiteral","src":"11540:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"11531:3:125","nodeType":"YulIdentifier","src":"11531:3:125"},"nativeSrc":"11531:20:125","nodeType":"YulFunctionCall","src":"11531:20:125"}],"functionName":{"name":"and","nativeSrc":"11519:3:125","nodeType":"YulIdentifier","src":"11519:3:125"},"nativeSrc":"11519:33:125","nodeType":"YulFunctionCall","src":"11519:33:125"}],"functionName":{"name":"mstore","nativeSrc":"11492:6:125","nodeType":"YulIdentifier","src":"11492:6:125"},"nativeSrc":"11492:61:125","nodeType":"YulFunctionCall","src":"11492:61:125"},"nativeSrc":"11492:61:125","nodeType":"YulExpressionStatement","src":"11492:61:125"}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"11163:396:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11271:9:125","nodeType":"YulTypedName","src":"11271:9:125","type":""},{"name":"value2","nativeSrc":"11282:6:125","nodeType":"YulTypedName","src":"11282:6:125","type":""},{"name":"value1","nativeSrc":"11290:6:125","nodeType":"YulTypedName","src":"11290:6:125","type":""},{"name":"value0","nativeSrc":"11298:6:125","nodeType":"YulTypedName","src":"11298:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11309:4:125","nodeType":"YulTypedName","src":"11309:4:125","type":""}],"src":"11163:396:125"},{"body":{"nativeSrc":"11658:348:125","nodeType":"YulBlock","src":"11658:348:125","statements":[{"body":{"nativeSrc":"11704:16:125","nodeType":"YulBlock","src":"11704:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11713:1:125","nodeType":"YulLiteral","src":"11713:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11716:1:125","nodeType":"YulLiteral","src":"11716:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11706:6:125","nodeType":"YulIdentifier","src":"11706:6:125"},"nativeSrc":"11706:12:125","nodeType":"YulFunctionCall","src":"11706:12:125"},"nativeSrc":"11706:12:125","nodeType":"YulExpressionStatement","src":"11706:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11679:7:125","nodeType":"YulIdentifier","src":"11679:7:125"},{"name":"headStart","nativeSrc":"11688:9:125","nodeType":"YulIdentifier","src":"11688:9:125"}],"functionName":{"name":"sub","nativeSrc":"11675:3:125","nodeType":"YulIdentifier","src":"11675:3:125"},"nativeSrc":"11675:23:125","nodeType":"YulFunctionCall","src":"11675:23:125"},{"kind":"number","nativeSrc":"11700:2:125","nodeType":"YulLiteral","src":"11700:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"11671:3:125","nodeType":"YulIdentifier","src":"11671:3:125"},"nativeSrc":"11671:32:125","nodeType":"YulFunctionCall","src":"11671:32:125"},"nativeSrc":"11668:52:125","nodeType":"YulIf","src":"11668:52:125"},{"nativeSrc":"11729:29:125","nodeType":"YulVariableDeclaration","src":"11729:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11748:9:125","nodeType":"YulIdentifier","src":"11748:9:125"}],"functionName":{"name":"mload","nativeSrc":"11742:5:125","nodeType":"YulIdentifier","src":"11742:5:125"},"nativeSrc":"11742:16:125","nodeType":"YulFunctionCall","src":"11742:16:125"},"variables":[{"name":"value","nativeSrc":"11733:5:125","nodeType":"YulTypedName","src":"11733:5:125","type":""}]},{"body":{"nativeSrc":"11811:16:125","nodeType":"YulBlock","src":"11811:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11820:1:125","nodeType":"YulLiteral","src":"11820:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11823:1:125","nodeType":"YulLiteral","src":"11823:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11813:6:125","nodeType":"YulIdentifier","src":"11813:6:125"},"nativeSrc":"11813:12:125","nodeType":"YulFunctionCall","src":"11813:12:125"},"nativeSrc":"11813:12:125","nodeType":"YulExpressionStatement","src":"11813:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11780:5:125","nodeType":"YulIdentifier","src":"11780:5:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11801:5:125","nodeType":"YulIdentifier","src":"11801:5:125"}],"functionName":{"name":"iszero","nativeSrc":"11794:6:125","nodeType":"YulIdentifier","src":"11794:6:125"},"nativeSrc":"11794:13:125","nodeType":"YulFunctionCall","src":"11794:13:125"}],"functionName":{"name":"iszero","nativeSrc":"11787:6:125","nodeType":"YulIdentifier","src":"11787:6:125"},"nativeSrc":"11787:21:125","nodeType":"YulFunctionCall","src":"11787:21:125"}],"functionName":{"name":"eq","nativeSrc":"11777:2:125","nodeType":"YulIdentifier","src":"11777:2:125"},"nativeSrc":"11777:32:125","nodeType":"YulFunctionCall","src":"11777:32:125"}],"functionName":{"name":"iszero","nativeSrc":"11770:6:125","nodeType":"YulIdentifier","src":"11770:6:125"},"nativeSrc":"11770:40:125","nodeType":"YulFunctionCall","src":"11770:40:125"},"nativeSrc":"11767:60:125","nodeType":"YulIf","src":"11767:60:125"},{"nativeSrc":"11836:15:125","nodeType":"YulAssignment","src":"11836:15:125","value":{"name":"value","nativeSrc":"11846:5:125","nodeType":"YulIdentifier","src":"11846:5:125"},"variableNames":[{"name":"value0","nativeSrc":"11836:6:125","nodeType":"YulIdentifier","src":"11836:6:125"}]},{"nativeSrc":"11860:40:125","nodeType":"YulVariableDeclaration","src":"11860:40:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11885:9:125","nodeType":"YulIdentifier","src":"11885:9:125"},{"kind":"number","nativeSrc":"11896:2:125","nodeType":"YulLiteral","src":"11896:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11881:3:125","nodeType":"YulIdentifier","src":"11881:3:125"},"nativeSrc":"11881:18:125","nodeType":"YulFunctionCall","src":"11881:18:125"}],"functionName":{"name":"mload","nativeSrc":"11875:5:125","nodeType":"YulIdentifier","src":"11875:5:125"},"nativeSrc":"11875:25:125","nodeType":"YulFunctionCall","src":"11875:25:125"},"variables":[{"name":"value_1","nativeSrc":"11864:7:125","nodeType":"YulTypedName","src":"11864:7:125","type":""}]},{"body":{"nativeSrc":"11958:16:125","nodeType":"YulBlock","src":"11958:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11967:1:125","nodeType":"YulLiteral","src":"11967:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11970:1:125","nodeType":"YulLiteral","src":"11970:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11960:6:125","nodeType":"YulIdentifier","src":"11960:6:125"},"nativeSrc":"11960:12:125","nodeType":"YulFunctionCall","src":"11960:12:125"},"nativeSrc":"11960:12:125","nodeType":"YulExpressionStatement","src":"11960:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"11922:7:125","nodeType":"YulIdentifier","src":"11922:7:125"},{"arguments":[{"name":"value_1","nativeSrc":"11935:7:125","nodeType":"YulIdentifier","src":"11935:7:125"},{"kind":"number","nativeSrc":"11944:10:125","nodeType":"YulLiteral","src":"11944:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"11931:3:125","nodeType":"YulIdentifier","src":"11931:3:125"},"nativeSrc":"11931:24:125","nodeType":"YulFunctionCall","src":"11931:24:125"}],"functionName":{"name":"eq","nativeSrc":"11919:2:125","nodeType":"YulIdentifier","src":"11919:2:125"},"nativeSrc":"11919:37:125","nodeType":"YulFunctionCall","src":"11919:37:125"}],"functionName":{"name":"iszero","nativeSrc":"11912:6:125","nodeType":"YulIdentifier","src":"11912:6:125"},"nativeSrc":"11912:45:125","nodeType":"YulFunctionCall","src":"11912:45:125"},"nativeSrc":"11909:65:125","nodeType":"YulIf","src":"11909:65:125"},{"nativeSrc":"11983:17:125","nodeType":"YulAssignment","src":"11983:17:125","value":{"name":"value_1","nativeSrc":"11993:7:125","nodeType":"YulIdentifier","src":"11993:7:125"},"variableNames":[{"name":"value1","nativeSrc":"11983:6:125","nodeType":"YulIdentifier","src":"11983:6:125"}]}]},"name":"abi_decode_tuple_t_boolt_uint32_fromMemory","nativeSrc":"11564:442:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11616:9:125","nodeType":"YulTypedName","src":"11616:9:125","type":""},{"name":"dataEnd","nativeSrc":"11627:7:125","nodeType":"YulTypedName","src":"11627:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11639:6:125","nodeType":"YulTypedName","src":"11639:6:125","type":""},{"name":"value1","nativeSrc":"11647:6:125","nodeType":"YulTypedName","src":"11647:6:125","type":""}],"src":"11564:442:125"},{"body":{"nativeSrc":"12138:172:125","nodeType":"YulBlock","src":"12138:172:125","statements":[{"nativeSrc":"12148:26:125","nodeType":"YulAssignment","src":"12148:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12160:9:125","nodeType":"YulIdentifier","src":"12160:9:125"},{"kind":"number","nativeSrc":"12171:2:125","nodeType":"YulLiteral","src":"12171:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12156:3:125","nodeType":"YulIdentifier","src":"12156:3:125"},"nativeSrc":"12156:18:125","nodeType":"YulFunctionCall","src":"12156:18:125"},"variableNames":[{"name":"tail","nativeSrc":"12148:4:125","nodeType":"YulIdentifier","src":"12148:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12190:9:125","nodeType":"YulIdentifier","src":"12190:9:125"},{"arguments":[{"name":"value0","nativeSrc":"12205:6:125","nodeType":"YulIdentifier","src":"12205:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12221:3:125","nodeType":"YulLiteral","src":"12221:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"12226:1:125","nodeType":"YulLiteral","src":"12226:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12217:3:125","nodeType":"YulIdentifier","src":"12217:3:125"},"nativeSrc":"12217:11:125","nodeType":"YulFunctionCall","src":"12217:11:125"},{"kind":"number","nativeSrc":"12230:1:125","nodeType":"YulLiteral","src":"12230:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12213:3:125","nodeType":"YulIdentifier","src":"12213:3:125"},"nativeSrc":"12213:19:125","nodeType":"YulFunctionCall","src":"12213:19:125"}],"functionName":{"name":"and","nativeSrc":"12201:3:125","nodeType":"YulIdentifier","src":"12201:3:125"},"nativeSrc":"12201:32:125","nodeType":"YulFunctionCall","src":"12201:32:125"}],"functionName":{"name":"mstore","nativeSrc":"12183:6:125","nodeType":"YulIdentifier","src":"12183:6:125"},"nativeSrc":"12183:51:125","nodeType":"YulFunctionCall","src":"12183:51:125"},"nativeSrc":"12183:51:125","nodeType":"YulExpressionStatement","src":"12183:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12254:9:125","nodeType":"YulIdentifier","src":"12254:9:125"},{"kind":"number","nativeSrc":"12265:2:125","nodeType":"YulLiteral","src":"12265:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12250:3:125","nodeType":"YulIdentifier","src":"12250:3:125"},"nativeSrc":"12250:18:125","nodeType":"YulFunctionCall","src":"12250:18:125"},{"arguments":[{"name":"value1","nativeSrc":"12274:6:125","nodeType":"YulIdentifier","src":"12274:6:125"},{"arguments":[{"kind":"number","nativeSrc":"12286:3:125","nodeType":"YulLiteral","src":"12286:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"12291:10:125","nodeType":"YulLiteral","src":"12291:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"12282:3:125","nodeType":"YulIdentifier","src":"12282:3:125"},"nativeSrc":"12282:20:125","nodeType":"YulFunctionCall","src":"12282:20:125"}],"functionName":{"name":"and","nativeSrc":"12270:3:125","nodeType":"YulIdentifier","src":"12270:3:125"},"nativeSrc":"12270:33:125","nodeType":"YulFunctionCall","src":"12270:33:125"}],"functionName":{"name":"mstore","nativeSrc":"12243:6:125","nodeType":"YulIdentifier","src":"12243:6:125"},"nativeSrc":"12243:61:125","nodeType":"YulFunctionCall","src":"12243:61:125"},"nativeSrc":"12243:61:125","nodeType":"YulExpressionStatement","src":"12243:61:125"}]},"name":"abi_encode_tuple_t_address_t_bytes4__to_t_address_t_bytes4__fromStack_reversed","nativeSrc":"12011:299:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12099:9:125","nodeType":"YulTypedName","src":"12099:9:125","type":""},{"name":"value1","nativeSrc":"12110:6:125","nodeType":"YulTypedName","src":"12110:6:125","type":""},{"name":"value0","nativeSrc":"12118:6:125","nodeType":"YulTypedName","src":"12118:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12129:4:125","nodeType":"YulTypedName","src":"12129:4:125","type":""}],"src":"12011:299:125"},{"body":{"nativeSrc":"12367:116:125","nodeType":"YulBlock","src":"12367:116:125","statements":[{"nativeSrc":"12377:20:125","nodeType":"YulAssignment","src":"12377:20:125","value":{"arguments":[{"name":"x","nativeSrc":"12392:1:125","nodeType":"YulIdentifier","src":"12392:1:125"},{"name":"y","nativeSrc":"12395:1:125","nodeType":"YulIdentifier","src":"12395:1:125"}],"functionName":{"name":"mul","nativeSrc":"12388:3:125","nodeType":"YulIdentifier","src":"12388:3:125"},"nativeSrc":"12388:9:125","nodeType":"YulFunctionCall","src":"12388:9:125"},"variableNames":[{"name":"product","nativeSrc":"12377:7:125","nodeType":"YulIdentifier","src":"12377:7:125"}]},{"body":{"nativeSrc":"12455:22:125","nodeType":"YulBlock","src":"12455:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"12457:16:125","nodeType":"YulIdentifier","src":"12457:16:125"},"nativeSrc":"12457:18:125","nodeType":"YulFunctionCall","src":"12457:18:125"},"nativeSrc":"12457:18:125","nodeType":"YulExpressionStatement","src":"12457:18:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nativeSrc":"12426:1:125","nodeType":"YulIdentifier","src":"12426:1:125"}],"functionName":{"name":"iszero","nativeSrc":"12419:6:125","nodeType":"YulIdentifier","src":"12419:6:125"},"nativeSrc":"12419:9:125","nodeType":"YulFunctionCall","src":"12419:9:125"},{"arguments":[{"name":"y","nativeSrc":"12433:1:125","nodeType":"YulIdentifier","src":"12433:1:125"},{"arguments":[{"name":"product","nativeSrc":"12440:7:125","nodeType":"YulIdentifier","src":"12440:7:125"},{"name":"x","nativeSrc":"12449:1:125","nodeType":"YulIdentifier","src":"12449:1:125"}],"functionName":{"name":"div","nativeSrc":"12436:3:125","nodeType":"YulIdentifier","src":"12436:3:125"},"nativeSrc":"12436:15:125","nodeType":"YulFunctionCall","src":"12436:15:125"}],"functionName":{"name":"eq","nativeSrc":"12430:2:125","nodeType":"YulIdentifier","src":"12430:2:125"},"nativeSrc":"12430:22:125","nodeType":"YulFunctionCall","src":"12430:22:125"}],"functionName":{"name":"or","nativeSrc":"12416:2:125","nodeType":"YulIdentifier","src":"12416:2:125"},"nativeSrc":"12416:37:125","nodeType":"YulFunctionCall","src":"12416:37:125"}],"functionName":{"name":"iszero","nativeSrc":"12409:6:125","nodeType":"YulIdentifier","src":"12409:6:125"},"nativeSrc":"12409:45:125","nodeType":"YulFunctionCall","src":"12409:45:125"},"nativeSrc":"12406:71:125","nodeType":"YulIf","src":"12406:71:125"}]},"name":"checked_mul_t_uint256","nativeSrc":"12315:168:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"12346:1:125","nodeType":"YulTypedName","src":"12346:1:125","type":""},{"name":"y","nativeSrc":"12349:1:125","nodeType":"YulTypedName","src":"12349:1:125","type":""}],"returnVariables":[{"name":"product","nativeSrc":"12355:7:125","nodeType":"YulTypedName","src":"12355:7:125","type":""}],"src":"12315:168:125"},{"body":{"nativeSrc":"12520:95:125","nodeType":"YulBlock","src":"12520:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12537:1:125","nodeType":"YulLiteral","src":"12537:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"12544:3:125","nodeType":"YulLiteral","src":"12544:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"12549:10:125","nodeType":"YulLiteral","src":"12549:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"12540:3:125","nodeType":"YulIdentifier","src":"12540:3:125"},"nativeSrc":"12540:20:125","nodeType":"YulFunctionCall","src":"12540:20:125"}],"functionName":{"name":"mstore","nativeSrc":"12530:6:125","nodeType":"YulIdentifier","src":"12530:6:125"},"nativeSrc":"12530:31:125","nodeType":"YulFunctionCall","src":"12530:31:125"},"nativeSrc":"12530:31:125","nodeType":"YulExpressionStatement","src":"12530:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12577:1:125","nodeType":"YulLiteral","src":"12577:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"12580:4:125","nodeType":"YulLiteral","src":"12580:4:125","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"12570:6:125","nodeType":"YulIdentifier","src":"12570:6:125"},"nativeSrc":"12570:15:125","nodeType":"YulFunctionCall","src":"12570:15:125"},"nativeSrc":"12570:15:125","nodeType":"YulExpressionStatement","src":"12570:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12601:1:125","nodeType":"YulLiteral","src":"12601:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12604:4:125","nodeType":"YulLiteral","src":"12604:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"12594:6:125","nodeType":"YulIdentifier","src":"12594:6:125"},"nativeSrc":"12594:15:125","nodeType":"YulFunctionCall","src":"12594:15:125"},"nativeSrc":"12594:15:125","nodeType":"YulExpressionStatement","src":"12594:15:125"}]},"name":"panic_error_0x12","nativeSrc":"12488:127:125","nodeType":"YulFunctionDefinition","src":"12488:127:125"},{"body":{"nativeSrc":"12666:74:125","nodeType":"YulBlock","src":"12666:74:125","statements":[{"body":{"nativeSrc":"12689:22:125","nodeType":"YulBlock","src":"12689:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"12691:16:125","nodeType":"YulIdentifier","src":"12691:16:125"},"nativeSrc":"12691:18:125","nodeType":"YulFunctionCall","src":"12691:18:125"},"nativeSrc":"12691:18:125","nodeType":"YulExpressionStatement","src":"12691:18:125"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"12686:1:125","nodeType":"YulIdentifier","src":"12686:1:125"}],"functionName":{"name":"iszero","nativeSrc":"12679:6:125","nodeType":"YulIdentifier","src":"12679:6:125"},"nativeSrc":"12679:9:125","nodeType":"YulFunctionCall","src":"12679:9:125"},"nativeSrc":"12676:35:125","nodeType":"YulIf","src":"12676:35:125"},{"nativeSrc":"12720:14:125","nodeType":"YulAssignment","src":"12720:14:125","value":{"arguments":[{"name":"x","nativeSrc":"12729:1:125","nodeType":"YulIdentifier","src":"12729:1:125"},{"name":"y","nativeSrc":"12732:1:125","nodeType":"YulIdentifier","src":"12732:1:125"}],"functionName":{"name":"div","nativeSrc":"12725:3:125","nodeType":"YulIdentifier","src":"12725:3:125"},"nativeSrc":"12725:9:125","nodeType":"YulFunctionCall","src":"12725:9:125"},"variableNames":[{"name":"r","nativeSrc":"12720:1:125","nodeType":"YulIdentifier","src":"12720:1:125"}]}]},"name":"checked_div_t_uint256","nativeSrc":"12620:120:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"12651:1:125","nodeType":"YulTypedName","src":"12651:1:125","type":""},{"name":"y","nativeSrc":"12654:1:125","nodeType":"YulTypedName","src":"12654:1:125","type":""}],"returnVariables":[{"name":"r","nativeSrc":"12660:1:125","nodeType":"YulTypedName","src":"12660:1:125","type":""}],"src":"12620:120:125"},{"body":{"nativeSrc":"12783:74:125","nodeType":"YulBlock","src":"12783:74:125","statements":[{"body":{"nativeSrc":"12806:22:125","nodeType":"YulBlock","src":"12806:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"12808:16:125","nodeType":"YulIdentifier","src":"12808:16:125"},"nativeSrc":"12808:18:125","nodeType":"YulFunctionCall","src":"12808:18:125"},"nativeSrc":"12808:18:125","nodeType":"YulExpressionStatement","src":"12808:18:125"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"12803:1:125","nodeType":"YulIdentifier","src":"12803:1:125"}],"functionName":{"name":"iszero","nativeSrc":"12796:6:125","nodeType":"YulIdentifier","src":"12796:6:125"},"nativeSrc":"12796:9:125","nodeType":"YulFunctionCall","src":"12796:9:125"},"nativeSrc":"12793:35:125","nodeType":"YulIf","src":"12793:35:125"},{"nativeSrc":"12837:14:125","nodeType":"YulAssignment","src":"12837:14:125","value":{"arguments":[{"name":"x","nativeSrc":"12846:1:125","nodeType":"YulIdentifier","src":"12846:1:125"},{"name":"y","nativeSrc":"12849:1:125","nodeType":"YulIdentifier","src":"12849:1:125"}],"functionName":{"name":"mod","nativeSrc":"12842:3:125","nodeType":"YulIdentifier","src":"12842:3:125"},"nativeSrc":"12842:9:125","nodeType":"YulFunctionCall","src":"12842:9:125"},"variableNames":[{"name":"r","nativeSrc":"12837:1:125","nodeType":"YulIdentifier","src":"12837:1:125"}]}]},"name":"mod_t_uint256","nativeSrc":"12745:112:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"12768:1:125","nodeType":"YulTypedName","src":"12768:1:125","type":""},{"name":"y","nativeSrc":"12771:1:125","nodeType":"YulTypedName","src":"12771:1:125","type":""}],"returnVariables":[{"name":"r","nativeSrc":"12777:1:125","nodeType":"YulTypedName","src":"12777:1:125","type":""}],"src":"12745:112:125"},{"body":{"nativeSrc":"12911:162:125","nodeType":"YulBlock","src":"12911:162:125","statements":[{"nativeSrc":"12921:26:125","nodeType":"YulVariableDeclaration","src":"12921:26:125","value":{"arguments":[{"name":"value","nativeSrc":"12941:5:125","nodeType":"YulIdentifier","src":"12941:5:125"}],"functionName":{"name":"mload","nativeSrc":"12935:5:125","nodeType":"YulIdentifier","src":"12935:5:125"},"nativeSrc":"12935:12:125","nodeType":"YulFunctionCall","src":"12935:12:125"},"variables":[{"name":"length","nativeSrc":"12925:6:125","nodeType":"YulTypedName","src":"12925:6:125","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"12962:3:125","nodeType":"YulIdentifier","src":"12962:3:125"},{"arguments":[{"name":"value","nativeSrc":"12971:5:125","nodeType":"YulIdentifier","src":"12971:5:125"},{"kind":"number","nativeSrc":"12978:4:125","nodeType":"YulLiteral","src":"12978:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12967:3:125","nodeType":"YulIdentifier","src":"12967:3:125"},"nativeSrc":"12967:16:125","nodeType":"YulFunctionCall","src":"12967:16:125"},{"name":"length","nativeSrc":"12985:6:125","nodeType":"YulIdentifier","src":"12985:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"12956:5:125","nodeType":"YulIdentifier","src":"12956:5:125"},"nativeSrc":"12956:36:125","nodeType":"YulFunctionCall","src":"12956:36:125"},"nativeSrc":"12956:36:125","nodeType":"YulExpressionStatement","src":"12956:36:125"},{"nativeSrc":"13001:26:125","nodeType":"YulVariableDeclaration","src":"13001:26:125","value":{"arguments":[{"name":"pos","nativeSrc":"13015:3:125","nodeType":"YulIdentifier","src":"13015:3:125"},{"name":"length","nativeSrc":"13020:6:125","nodeType":"YulIdentifier","src":"13020:6:125"}],"functionName":{"name":"add","nativeSrc":"13011:3:125","nodeType":"YulIdentifier","src":"13011:3:125"},"nativeSrc":"13011:16:125","nodeType":"YulFunctionCall","src":"13011:16:125"},"variables":[{"name":"_1","nativeSrc":"13005:2:125","nodeType":"YulTypedName","src":"13005:2:125","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"13043:2:125","nodeType":"YulIdentifier","src":"13043:2:125"},{"kind":"number","nativeSrc":"13047:1:125","nodeType":"YulLiteral","src":"13047:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"13036:6:125","nodeType":"YulIdentifier","src":"13036:6:125"},"nativeSrc":"13036:13:125","nodeType":"YulFunctionCall","src":"13036:13:125"},"nativeSrc":"13036:13:125","nodeType":"YulExpressionStatement","src":"13036:13:125"},{"nativeSrc":"13058:9:125","nodeType":"YulAssignment","src":"13058:9:125","value":{"name":"_1","nativeSrc":"13065:2:125","nodeType":"YulIdentifier","src":"13065:2:125"},"variableNames":[{"name":"end","nativeSrc":"13058:3:125","nodeType":"YulIdentifier","src":"13058:3:125"}]}]},"name":"abi_encode_bytes","nativeSrc":"12862:211:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"12888:5:125","nodeType":"YulTypedName","src":"12888:5:125","type":""},{"name":"pos","nativeSrc":"12895:3:125","nodeType":"YulTypedName","src":"12895:3:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"12903:3:125","nodeType":"YulTypedName","src":"12903:3:125","type":""}],"src":"12862:211:125"},{"body":{"nativeSrc":"13352:175:125","nodeType":"YulBlock","src":"13352:175:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"13369:3:125","nodeType":"YulIdentifier","src":"13369:3:125"},{"kind":"number","nativeSrc":"13374:66:125","nodeType":"YulLiteral","src":"13374:66:125","type":"","value":"0x19457468657265756d205369676e6564204d6573736167653a0a000000000000"}],"functionName":{"name":"mstore","nativeSrc":"13362:6:125","nodeType":"YulIdentifier","src":"13362:6:125"},"nativeSrc":"13362:79:125","nodeType":"YulFunctionCall","src":"13362:79:125"},"nativeSrc":"13362:79:125","nodeType":"YulExpressionStatement","src":"13362:79:125"},{"nativeSrc":"13450:71:125","nodeType":"YulAssignment","src":"13450:71:125","value":{"arguments":[{"name":"value1","nativeSrc":"13474:6:125","nodeType":"YulIdentifier","src":"13474:6:125"},{"arguments":[{"name":"value0","nativeSrc":"13499:6:125","nodeType":"YulIdentifier","src":"13499:6:125"},{"arguments":[{"name":"pos","nativeSrc":"13511:3:125","nodeType":"YulIdentifier","src":"13511:3:125"},{"kind":"number","nativeSrc":"13516:2:125","nodeType":"YulLiteral","src":"13516:2:125","type":"","value":"26"}],"functionName":{"name":"add","nativeSrc":"13507:3:125","nodeType":"YulIdentifier","src":"13507:3:125"},"nativeSrc":"13507:12:125","nodeType":"YulFunctionCall","src":"13507:12:125"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"13482:16:125","nodeType":"YulIdentifier","src":"13482:16:125"},"nativeSrc":"13482:38:125","nodeType":"YulFunctionCall","src":"13482:38:125"}],"functionName":{"name":"abi_encode_bytes","nativeSrc":"13457:16:125","nodeType":"YulIdentifier","src":"13457:16:125"},"nativeSrc":"13457:64:125","nodeType":"YulFunctionCall","src":"13457:64:125"},"variableNames":[{"name":"end","nativeSrc":"13450:3:125","nodeType":"YulIdentifier","src":"13450:3:125"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4_t_bytes_memory_ptr_t_bytes_memory_ptr__to_t_bytes26_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"13078:449:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"13320:3:125","nodeType":"YulTypedName","src":"13320:3:125","type":""},{"name":"value1","nativeSrc":"13325:6:125","nodeType":"YulTypedName","src":"13325:6:125","type":""},{"name":"value0","nativeSrc":"13333:6:125","nodeType":"YulTypedName","src":"13333:6:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"13344:3:125","nodeType":"YulTypedName","src":"13344:3:125","type":""}],"src":"13078:449:125"},{"body":{"nativeSrc":"13580:128:125","nodeType":"YulBlock","src":"13580:128:125","statements":[{"nativeSrc":"13590:55:125","nodeType":"YulAssignment","src":"13590:55:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"13606:1:125","nodeType":"YulIdentifier","src":"13606:1:125"},{"kind":"number","nativeSrc":"13609:12:125","nodeType":"YulLiteral","src":"13609:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"13602:3:125","nodeType":"YulIdentifier","src":"13602:3:125"},"nativeSrc":"13602:20:125","nodeType":"YulFunctionCall","src":"13602:20:125"},{"arguments":[{"name":"y","nativeSrc":"13628:1:125","nodeType":"YulIdentifier","src":"13628:1:125"},{"kind":"number","nativeSrc":"13631:12:125","nodeType":"YulLiteral","src":"13631:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"13624:3:125","nodeType":"YulIdentifier","src":"13624:3:125"},"nativeSrc":"13624:20:125","nodeType":"YulFunctionCall","src":"13624:20:125"}],"functionName":{"name":"sub","nativeSrc":"13598:3:125","nodeType":"YulIdentifier","src":"13598:3:125"},"nativeSrc":"13598:47:125","nodeType":"YulFunctionCall","src":"13598:47:125"},"variableNames":[{"name":"diff","nativeSrc":"13590:4:125","nodeType":"YulIdentifier","src":"13590:4:125"}]},{"body":{"nativeSrc":"13680:22:125","nodeType":"YulBlock","src":"13680:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"13682:16:125","nodeType":"YulIdentifier","src":"13682:16:125"},"nativeSrc":"13682:18:125","nodeType":"YulFunctionCall","src":"13682:18:125"},"nativeSrc":"13682:18:125","nodeType":"YulExpressionStatement","src":"13682:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"13660:4:125","nodeType":"YulIdentifier","src":"13660:4:125"},{"kind":"number","nativeSrc":"13666:12:125","nodeType":"YulLiteral","src":"13666:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"gt","nativeSrc":"13657:2:125","nodeType":"YulIdentifier","src":"13657:2:125"},"nativeSrc":"13657:22:125","nodeType":"YulFunctionCall","src":"13657:22:125"},"nativeSrc":"13654:48:125","nodeType":"YulIf","src":"13654:48:125"}]},"name":"checked_sub_t_uint40","nativeSrc":"13532:176:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"13562:1:125","nodeType":"YulTypedName","src":"13562:1:125","type":""},{"name":"y","nativeSrc":"13565:1:125","nodeType":"YulTypedName","src":"13565:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"13571:4:125","nodeType":"YulTypedName","src":"13571:4:125","type":""}],"src":"13532:176:125"},{"body":{"nativeSrc":"13745:95:125","nodeType":"YulBlock","src":"13745:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13762:1:125","nodeType":"YulLiteral","src":"13762:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"13769:3:125","nodeType":"YulLiteral","src":"13769:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"13774:10:125","nodeType":"YulLiteral","src":"13774:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"13765:3:125","nodeType":"YulIdentifier","src":"13765:3:125"},"nativeSrc":"13765:20:125","nodeType":"YulFunctionCall","src":"13765:20:125"}],"functionName":{"name":"mstore","nativeSrc":"13755:6:125","nodeType":"YulIdentifier","src":"13755:6:125"},"nativeSrc":"13755:31:125","nodeType":"YulFunctionCall","src":"13755:31:125"},"nativeSrc":"13755:31:125","nodeType":"YulExpressionStatement","src":"13755:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"13802:1:125","nodeType":"YulLiteral","src":"13802:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"13805:4:125","nodeType":"YulLiteral","src":"13805:4:125","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"13795:6:125","nodeType":"YulIdentifier","src":"13795:6:125"},"nativeSrc":"13795:15:125","nodeType":"YulFunctionCall","src":"13795:15:125"},"nativeSrc":"13795:15:125","nodeType":"YulExpressionStatement","src":"13795:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"13826:1:125","nodeType":"YulLiteral","src":"13826:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"13829:4:125","nodeType":"YulLiteral","src":"13829:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"13819:6:125","nodeType":"YulIdentifier","src":"13819:6:125"},"nativeSrc":"13819:15:125","nodeType":"YulFunctionCall","src":"13819:15:125"},"nativeSrc":"13819:15:125","nodeType":"YulExpressionStatement","src":"13819:15:125"}]},"name":"panic_error_0x21","nativeSrc":"13713:127:125","nodeType":"YulFunctionDefinition","src":"13713:127:125"},{"body":{"nativeSrc":"13946:76:125","nodeType":"YulBlock","src":"13946:76:125","statements":[{"nativeSrc":"13956:26:125","nodeType":"YulAssignment","src":"13956:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"13968:9:125","nodeType":"YulIdentifier","src":"13968:9:125"},{"kind":"number","nativeSrc":"13979:2:125","nodeType":"YulLiteral","src":"13979:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13964:3:125","nodeType":"YulIdentifier","src":"13964:3:125"},"nativeSrc":"13964:18:125","nodeType":"YulFunctionCall","src":"13964:18:125"},"variableNames":[{"name":"tail","nativeSrc":"13956:4:125","nodeType":"YulIdentifier","src":"13956:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13998:9:125","nodeType":"YulIdentifier","src":"13998:9:125"},{"name":"value0","nativeSrc":"14009:6:125","nodeType":"YulIdentifier","src":"14009:6:125"}],"functionName":{"name":"mstore","nativeSrc":"13991:6:125","nodeType":"YulIdentifier","src":"13991:6:125"},"nativeSrc":"13991:25:125","nodeType":"YulFunctionCall","src":"13991:25:125"},"nativeSrc":"13991:25:125","nodeType":"YulExpressionStatement","src":"13991:25:125"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"13845:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13915:9:125","nodeType":"YulTypedName","src":"13915:9:125","type":""},{"name":"value0","nativeSrc":"13926:6:125","nodeType":"YulTypedName","src":"13926:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13937:4:125","nodeType":"YulTypedName","src":"13937:4:125","type":""}],"src":"13845:177:125"},{"body":{"nativeSrc":"14128:76:125","nodeType":"YulBlock","src":"14128:76:125","statements":[{"nativeSrc":"14138:26:125","nodeType":"YulAssignment","src":"14138:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14150:9:125","nodeType":"YulIdentifier","src":"14150:9:125"},{"kind":"number","nativeSrc":"14161:2:125","nodeType":"YulLiteral","src":"14161:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14146:3:125","nodeType":"YulIdentifier","src":"14146:3:125"},"nativeSrc":"14146:18:125","nodeType":"YulFunctionCall","src":"14146:18:125"},"variableNames":[{"name":"tail","nativeSrc":"14138:4:125","nodeType":"YulIdentifier","src":"14138:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14180:9:125","nodeType":"YulIdentifier","src":"14180:9:125"},{"name":"value0","nativeSrc":"14191:6:125","nodeType":"YulIdentifier","src":"14191:6:125"}],"functionName":{"name":"mstore","nativeSrc":"14173:6:125","nodeType":"YulIdentifier","src":"14173:6:125"},"nativeSrc":"14173:25:125","nodeType":"YulFunctionCall","src":"14173:25:125"},"nativeSrc":"14173:25:125","nodeType":"YulExpressionStatement","src":"14173:25:125"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"14027:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14097:9:125","nodeType":"YulTypedName","src":"14097:9:125","type":""},{"name":"value0","nativeSrc":"14108:6:125","nodeType":"YulTypedName","src":"14108:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14119:4:125","nodeType":"YulTypedName","src":"14119:4:125","type":""}],"src":"14027:177:125"},{"body":{"nativeSrc":"14390:217:125","nodeType":"YulBlock","src":"14390:217:125","statements":[{"nativeSrc":"14400:27:125","nodeType":"YulAssignment","src":"14400:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14412:9:125","nodeType":"YulIdentifier","src":"14412:9:125"},{"kind":"number","nativeSrc":"14423:3:125","nodeType":"YulLiteral","src":"14423:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"14408:3:125","nodeType":"YulIdentifier","src":"14408:3:125"},"nativeSrc":"14408:19:125","nodeType":"YulFunctionCall","src":"14408:19:125"},"variableNames":[{"name":"tail","nativeSrc":"14400:4:125","nodeType":"YulIdentifier","src":"14400:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14443:9:125","nodeType":"YulIdentifier","src":"14443:9:125"},{"name":"value0","nativeSrc":"14454:6:125","nodeType":"YulIdentifier","src":"14454:6:125"}],"functionName":{"name":"mstore","nativeSrc":"14436:6:125","nodeType":"YulIdentifier","src":"14436:6:125"},"nativeSrc":"14436:25:125","nodeType":"YulFunctionCall","src":"14436:25:125"},"nativeSrc":"14436:25:125","nodeType":"YulExpressionStatement","src":"14436:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14481:9:125","nodeType":"YulIdentifier","src":"14481:9:125"},{"kind":"number","nativeSrc":"14492:2:125","nodeType":"YulLiteral","src":"14492:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14477:3:125","nodeType":"YulIdentifier","src":"14477:3:125"},"nativeSrc":"14477:18:125","nodeType":"YulFunctionCall","src":"14477:18:125"},{"arguments":[{"name":"value1","nativeSrc":"14501:6:125","nodeType":"YulIdentifier","src":"14501:6:125"},{"kind":"number","nativeSrc":"14509:4:125","nodeType":"YulLiteral","src":"14509:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"14497:3:125","nodeType":"YulIdentifier","src":"14497:3:125"},"nativeSrc":"14497:17:125","nodeType":"YulFunctionCall","src":"14497:17:125"}],"functionName":{"name":"mstore","nativeSrc":"14470:6:125","nodeType":"YulIdentifier","src":"14470:6:125"},"nativeSrc":"14470:45:125","nodeType":"YulFunctionCall","src":"14470:45:125"},"nativeSrc":"14470:45:125","nodeType":"YulExpressionStatement","src":"14470:45:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14535:9:125","nodeType":"YulIdentifier","src":"14535:9:125"},{"kind":"number","nativeSrc":"14546:2:125","nodeType":"YulLiteral","src":"14546:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14531:3:125","nodeType":"YulIdentifier","src":"14531:3:125"},"nativeSrc":"14531:18:125","nodeType":"YulFunctionCall","src":"14531:18:125"},{"name":"value2","nativeSrc":"14551:6:125","nodeType":"YulIdentifier","src":"14551:6:125"}],"functionName":{"name":"mstore","nativeSrc":"14524:6:125","nodeType":"YulIdentifier","src":"14524:6:125"},"nativeSrc":"14524:34:125","nodeType":"YulFunctionCall","src":"14524:34:125"},"nativeSrc":"14524:34:125","nodeType":"YulExpressionStatement","src":"14524:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14578:9:125","nodeType":"YulIdentifier","src":"14578:9:125"},{"kind":"number","nativeSrc":"14589:2:125","nodeType":"YulLiteral","src":"14589:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14574:3:125","nodeType":"YulIdentifier","src":"14574:3:125"},"nativeSrc":"14574:18:125","nodeType":"YulFunctionCall","src":"14574:18:125"},{"name":"value3","nativeSrc":"14594:6:125","nodeType":"YulIdentifier","src":"14594:6:125"}],"functionName":{"name":"mstore","nativeSrc":"14567:6:125","nodeType":"YulIdentifier","src":"14567:6:125"},"nativeSrc":"14567:34:125","nodeType":"YulFunctionCall","src":"14567:34:125"},"nativeSrc":"14567:34:125","nodeType":"YulExpressionStatement","src":"14567:34:125"}]},"name":"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"14209:398:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14335:9:125","nodeType":"YulTypedName","src":"14335:9:125","type":""},{"name":"value3","nativeSrc":"14346:6:125","nodeType":"YulTypedName","src":"14346:6:125","type":""},{"name":"value2","nativeSrc":"14354:6:125","nodeType":"YulTypedName","src":"14354:6:125","type":""},{"name":"value1","nativeSrc":"14362:6:125","nodeType":"YulTypedName","src":"14362:6:125","type":""},{"name":"value0","nativeSrc":"14370:6:125","nodeType":"YulTypedName","src":"14370:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14381:4:125","nodeType":"YulTypedName","src":"14381:4:125","type":""}],"src":"14209:398:125"}]},"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_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 _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        value1 := add(_1, 32)\n        value2 := length\n    }\n    function abi_encode_uint40(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffff))\n    }\n    function abi_encode_struct_PolicyData(value, pos)\n    {\n        mstore(pos, mload(value))\n        mstore(add(pos, 0x20), mload(add(value, 0x20)))\n        mstore(add(pos, 0x40), mload(add(value, 0x40)))\n        mstore(add(pos, 0x60), mload(add(value, 0x60)))\n        mstore(add(pos, 0x80), mload(add(value, 0x80)))\n        mstore(add(pos, 0xa0), mload(add(value, 0xa0)))\n        mstore(add(pos, 0xc0), mload(add(value, 0xc0)))\n        mstore(add(pos, 0xe0), mload(add(value, 0xe0)))\n        mstore(add(pos, 0x0100), mload(add(value, 0x0100)))\n        mstore(add(pos, 0x0120), mload(add(value, 0x0120)))\n        let memberValue0 := mload(add(value, 0x0140))\n        abi_encode_uint40(memberValue0, add(pos, 0x0140))\n        let memberValue0_1 := mload(add(value, 0x0160))\n        abi_encode_uint40(memberValue0_1, add(pos, 0x0160))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 480)\n        abi_encode_struct_PolicyData(value0, headStart)\n        mstore(add(headStart, 384), value1)\n        mstore(add(headStart, 416), value2)\n        mstore(add(headStart, 448), value3)\n    }\n    function abi_encode_struct_Params(value, pos)\n    {\n        mstore(pos, mload(value))\n        mstore(add(pos, 0x20), mload(add(value, 0x20)))\n        mstore(add(pos, 0x40), mload(add(value, 0x40)))\n        mstore(add(pos, 0x60), mload(add(value, 0x60)))\n        mstore(add(pos, 0x80), mload(add(value, 0x80)))\n        mstore(add(pos, 0xa0), mload(add(value, 0xa0)))\n        mstore(add(pos, 0xc0), mload(add(value, 0xc0)))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__fromStack_reversed(headStart, value6, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 768)\n        abi_encode_struct_PolicyData(value0, headStart)\n        mstore(add(headStart, 384), value1)\n        mstore(add(headStart, 416), value2)\n        mstore(add(headStart, 448), value3)\n        mstore(add(headStart, 480), and(value4, 0xffffffffff))\n        mstore(add(headStart, 512), and(value5, 0xffffffffffffffffffffffff))\n        abi_encode_struct_Params(value6, add(headStart, 544))\n    }\n    function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__to_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 384)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), and(value3, 0xffffffffff))\n        mstore(add(headStart, 128), and(value4, 0xffffffffffffffffffffffff))\n        abi_encode_struct_Params(value5, add(headStart, 160))\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 allocate_memory() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0180)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_uint40(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_struct_PolicyData(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0x0180) { revert(0, 0) }\n        value := allocate_memory()\n        let value_1 := 0\n        value_1 := calldataload(headStart)\n        mstore(value, value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 32))\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 64))\n        mstore(add(value, 64), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 96))\n        mstore(add(value, 96), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(add(value, 128), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 160))\n        mstore(add(value, 160), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(value, 192), value_7)\n        let value_8 := 0\n        value_8 := calldataload(add(headStart, 224))\n        mstore(add(value, 224), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(headStart, 256))\n        mstore(add(value, 256), value_9)\n        let value_10 := 0\n        value_10 := calldataload(add(headStart, 288))\n        mstore(add(value, 288), value_10)\n        mstore(add(value, 320), abi_decode_uint40(add(headStart, 320)))\n        mstore(add(value, 352), abi_decode_uint40(add(headStart, 352)))\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 480) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData(headStart, dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 448))\n        value3 := value_2\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 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_decode_struct_Params(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0xe0) { revert(0, 0) }\n        let memPtr := 0\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xe0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n        value := memPtr\n        let value_1 := 0\n        value_1 := calldataload(headStart)\n        mstore(memPtr, value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 32))\n        mstore(add(memPtr, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 64))\n        mstore(add(memPtr, 64), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 96))\n        mstore(add(memPtr, 96), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(add(memPtr, 128), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 160))\n        mstore(add(memPtr, 160), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(memPtr, 192), value_7)\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint256t_struct$_Params_$7718_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 768) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData(headStart, dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 448))\n        value3 := value_2\n        value4 := abi_decode_uint40(add(headStart, 480))\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 512))\n        value5 := value_3\n        value6 := abi_decode_struct_Params(add(headStart, 544), dataEnd)\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint256t_struct$_Params_$7718_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 384) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        value3 := abi_decode_uint40(add(headStart, 96))\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 128))\n        value4 := value_3\n        value5 := abi_decode_struct_Params(add(headStart, 160), dataEnd)\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_decode_tuple_t_contract$_IAccessManager_$22178_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\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_decode_tuple_t_boolt_uint32_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        if iszero(eq(value_1, and(value_1, 0xffffffff))) { revert(0, 0) }\n        value1 := value_1\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 checked_mul_t_uint256(x, y) -> product\n    {\n        product := mul(x, y)\n        if iszero(or(iszero(x), eq(y, div(product, x)))) { panic_error_0x11() }\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\n    }\n    function mod_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := mod(x, y)\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_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4_t_bytes_memory_ptr_t_bytes_memory_ptr__to_t_bytes26_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        mstore(pos, 0x19457468657265756d205369676e6564204d6573736167653a0a000000000000)\n        end := abi_encode_bytes(value1, abi_encode_bytes(value0, add(pos, 26)))\n    }\n    function checked_sub_t_uint40(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffffff), and(y, 0xffffffffff))\n        if gt(diff, 0xffffffffff) { panic_error_0x11() }\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_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, 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_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":125,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b506004361061003f575f3560e01c806332f857fa146100435780639ba942d61461006f578063ba097a2a14610095575b5f5ffd5b610056610051366004610a6a565b6100ba565b6040516100669493929190610b86565b60405180910390f35b61008261007d366004610a6a565b610197565b6040516100669796959493929190610bf7565b6100a86100a3366004610a6a565b6102bd565b60405161006696959493929190610c58565b6100c26109f0565b5f5f5f6100f48787876101e07fe1cc1aa1166fa42e3a9bf6f2e810db30f295c27e6aeef2638722d3726d7515706103a9565b6101026101e05f8789610ca7565b81019061010f9190610dd8565b83519397509195509350915060601c6001600160a01b0388161461014657604051634b4bde0960e11b815260040160405180910390fd5b5f19820361016a57610157846105b2565b8461010001516101679190610e27565b91505b5f19810361018e5761017b846105fb565b84610120015161018b9190610e27565b90505b93509350935093565b61019f6109f0565b5f5f5f5f5f6101dd6040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b6102158a8a8a6101ef61018080610e3a565b7fb8bf8abee956c23073a3f628100e45da0cf4d7ca1e953d176e06c48753d2863e6103a9565b5f89818a61022561018080610e3a565b9261023293929190610ca7565b81019061023f9190610ed8565b959d50939b509199509750955090925090506001600160a01b038b166102658260601c90565b6001600160a01b03161480156102875750875160601c6001600160a01b038c16145b6102a457604051634b4bde0960e11b815260040160405180910390fd5b6102ad81610634565b9250509397509397509397909450565b5f5f5f5f5f6102fb6040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b61032a8989896101807f4568705da1639073be69afeb2376d89cef780c68efd064ab4c2e8049be434a186103a9565b5f610339610180828a8c610ca7565b8101906103469190610f46565b949b50929950909750955090925090506001600160a01b038a1661036a8260601c90565b6001600160a01b03161461039157604051634b4bde0960e11b815260040160405180910390fd5b61039a81610634565b92505093975093979195509350565b826103b5604184610e3a565b81146103ee57806103c7604185610e3a565b604051632c28914160e11b8152600481019290925260248201526044015b60405180910390fd5b5f6104376103fe8583888a610ca7565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061064392505050565b90505f6104838261044a85888a8c610ca7565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061067d92505050565b90505f886001600160a01b0316633a7b7a396040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104c2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104e69190610f9c565b60405163b700961360e01b81526001600160a01b0384811660048301528b811660248301526001600160e01b031988166044830152919091169063b7009613906064016040805180830381865afa158015610543573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105679190610fbe565b5090508185826105a5576040516344b0689760e01b81526001600160a01b0390921660048301526001600160e01b03191660248201526044016103e5565b5050505050505050505050565b5f6105bc826106a5565b64ffffffffff1682610140015164ffffffffff16426105db9190610e27565b8361010001516105eb9190611002565b6105f5919061102d565b92915050565b5f610605826106a5565b64ffffffffff1682610140015164ffffffffff16426106249190610e27565b8361012001516105eb9190611002565b5f6105f5600160601b83611040565b5f61064e82516106bc565b8260405160200161066092919061106a565b604051602081830303815290604052805190602001209050919050565b5f5f5f5f61068b868661074c565b92509250925061069b8282610795565b5090949350505050565b5f8161014001518261016001516105f591906110ac565b60605f6106c883610851565b60010190505f8167ffffffffffffffff8111156106e7576106e7610cce565b6040519080825280601f01601f191660200182016040528015610711576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461071b57509392505050565b5f5f5f8351604103610783576020840151604085015160608601515f1a61077588828585610928565b95509550955050505061078e565b505081515f91506002905b9250925092565b5f8260038111156107a8576107a86110c9565b036107b1575050565b60018260038111156107c5576107c56110c9565b036107e35760405163f645eedf60e01b815260040160405180910390fd5b60028260038111156107f7576107f76110c9565b036108185760405163fce698f760e01b8152600481018290526024016103e5565b600382600381111561082c5761082c6110c9565b0361084d576040516335e2f38360e21b8152600481018290526024016103e5565b5050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061088f5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106108bb576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106108d957662386f26fc10000830492506010015b6305f5e10083106108f1576305f5e100830492506008015b612710831061090557612710830492506004015b60648310610917576064830492506002015b600a83106105f55760010192915050565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084111561096157505f915060039050826109e6565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa1580156109b2573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b0381166109dd57505f9250600191508290506109e6565b92505f91508190505b9450945094915050565b6040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b6001600160a01b0381168114610a67575f5ffd5b50565b5f5f5f60408486031215610a7c575f5ffd5b8335610a8781610a53565b9250602084013567ffffffffffffffff811115610aa2575f5ffd5b8401601f81018613610ab2575f5ffd5b803567ffffffffffffffff811115610ac8575f5ffd5b866020828401011115610ad9575f5ffd5b939660209190910195509293505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e0830152610100810151610100830152610120810151610120830152610140810151610b6661014084018264ffffffffff169052565b50610160810151610b8161016084018264ffffffffff169052565b505050565b6101e08101610b958287610aea565b84610180830152836101a0830152826101c083015295945050505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c08301525050565b6103008101610c06828a610aea565b87610180830152866101a0830152856101c083015264ffffffffff85166101e08301526bffffffffffffffffffffffff8416610200830152610c4c610220830184610bb3565b98975050505050505050565b868152602081018690526040810185905264ffffffffff841660608201526bffffffffffffffffffffffff831660808201526101808101610c9c60a0830184610bb3565b979650505050505050565b5f5f85851115610cb5575f5ffd5b83861115610cc1575f5ffd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b604051610180810167ffffffffffffffff81118282101715610d1257634e487b7160e01b5f52604160045260245ffd5b60405290565b803564ffffffffff81168114610d2c575f5ffd5b919050565b5f6101808284031215610d42575f5ffd5b610d4a610ce2565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e08084013590820152610100808401359082015261012080840135908201529050610db96101408301610d18565b610140820152610dcc6101608301610d18565b61016082015292915050565b5f5f5f5f6101e08587031215610dec575f5ffd5b610df68686610d31565b9661018086013596506101a0860135956101c00135945092505050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156105f5576105f5610e13565b808201808211156105f5576105f5610e13565b5f60e08284031215610e5d575f5ffd5b60405160e0810167ffffffffffffffff81118282101715610e8c57634e487b7160e01b5f52604160045260245ffd5b604090815283358252602080850135908301528381013590820152606080840135908201526080808401359082015260a0808401359082015260c0928301359281019290925250919050565b5f5f5f5f5f5f5f610300888a031215610eef575f5ffd5b610ef98989610d31565b965061018088013595506101a088013594506101c08801359350610f206101e08901610d18565b92506102008801359150610f38896102208a01610e4d565b905092959891949750929550565b5f5f5f5f5f5f6101808789031215610f5c575f5ffd5b863595506020870135945060408701359350610f7a60608801610d18565b925060808701359150610f908860a08901610e4d565b90509295509295509295565b5f60208284031215610fac575f5ffd5b8151610fb781610a53565b9392505050565b5f5f60408385031215610fcf575f5ffd5b82518015158114610fde575f5ffd5b602084015190925063ffffffff81168114610ff7575f5ffd5b809150509250929050565b80820281158282048414176105f5576105f5610e13565b634e487b7160e01b5f52601260045260245ffd5b5f8261103b5761103b611019565b500490565b5f8261104e5761104e611019565b500690565b5f81518060208401855e5f93019283525090919050565b7f19457468657265756d205369676e6564204d6573736167653a0a00000000000081525f6110a461109e601a840186611053565b84611053565b949350505050565b64ffffffffff82811682821603908111156105f5576105f5610e13565b634e487b7160e01b5f52602160045260245ffdfea2646970667358221220bb09a27e627e67e45bfdf138acaa3d95f7b995958b1b8c24144d0244ea2de5be64736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x3F JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x32F857FA EQ PUSH2 0x43 JUMPI DUP1 PUSH4 0x9BA942D6 EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0xBA097A2A EQ PUSH2 0x95 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x56 PUSH2 0x51 CALLDATASIZE PUSH1 0x4 PUSH2 0xA6A JUMP JUMPDEST PUSH2 0xBA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xB86 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x82 PUSH2 0x7D CALLDATASIZE PUSH1 0x4 PUSH2 0xA6A JUMP JUMPDEST PUSH2 0x197 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xBF7 JUMP JUMPDEST PUSH2 0xA8 PUSH2 0xA3 CALLDATASIZE PUSH1 0x4 PUSH2 0xA6A JUMP JUMPDEST PUSH2 0x2BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xC58 JUMP JUMPDEST PUSH2 0xC2 PUSH2 0x9F0 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0xF4 DUP8 DUP8 DUP8 PUSH2 0x1E0 PUSH32 0xE1CC1AA1166FA42E3A9BF6F2E810DB30F295C27E6AEEF2638722D3726D751570 PUSH2 0x3A9 JUMP JUMPDEST PUSH2 0x102 PUSH2 0x1E0 PUSH0 DUP8 DUP10 PUSH2 0xCA7 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x10F SWAP2 SWAP1 PUSH2 0xDD8 JUMP JUMPDEST DUP4 MLOAD SWAP4 SWAP8 POP SWAP2 SWAP6 POP SWAP4 POP SWAP2 POP PUSH1 0x60 SHR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND EQ PUSH2 0x146 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B4BDE09 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 NOT DUP3 SUB PUSH2 0x16A JUMPI PUSH2 0x157 DUP5 PUSH2 0x5B2 JUMP JUMPDEST DUP5 PUSH2 0x100 ADD MLOAD PUSH2 0x167 SWAP2 SWAP1 PUSH2 0xE27 JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x18E JUMPI PUSH2 0x17B DUP5 PUSH2 0x5FB JUMP JUMPDEST DUP5 PUSH2 0x120 ADD MLOAD PUSH2 0x18B SWAP2 SWAP1 PUSH2 0xE27 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 JUMP JUMPDEST PUSH2 0x19F PUSH2 0x9F0 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1DD PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0x215 DUP11 DUP11 DUP11 PUSH2 0x1EF PUSH2 0x180 DUP1 PUSH2 0xE3A JUMP JUMPDEST PUSH32 0xB8BF8ABEE956C23073A3F628100E45DA0CF4D7CA1E953D176E06C48753D2863E PUSH2 0x3A9 JUMP JUMPDEST PUSH0 DUP10 DUP2 DUP11 PUSH2 0x225 PUSH2 0x180 DUP1 PUSH2 0xE3A JUMP JUMPDEST SWAP3 PUSH2 0x232 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xCA7 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x23F SWAP2 SWAP1 PUSH2 0xED8 JUMP JUMPDEST SWAP6 SWAP14 POP SWAP4 SWAP12 POP SWAP2 SWAP10 POP SWAP8 POP SWAP6 POP SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND PUSH2 0x265 DUP3 PUSH1 0x60 SHR SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 ISZERO PUSH2 0x287 JUMPI POP DUP8 MLOAD PUSH1 0x60 SHR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP13 AND EQ JUMPDEST PUSH2 0x2A4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B4BDE09 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2AD DUP2 PUSH2 0x634 JUMP JUMPDEST SWAP3 POP POP SWAP4 SWAP8 POP SWAP4 SWAP8 POP SWAP4 SWAP8 SWAP1 SWAP5 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x2FB PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0x32A DUP10 DUP10 DUP10 PUSH2 0x180 PUSH32 0x4568705DA1639073BE69AFEB2376D89CEF780C68EFD064AB4C2E8049BE434A18 PUSH2 0x3A9 JUMP JUMPDEST PUSH0 PUSH2 0x339 PUSH2 0x180 DUP3 DUP11 DUP13 PUSH2 0xCA7 JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x346 SWAP2 SWAP1 PUSH2 0xF46 JUMP JUMPDEST SWAP5 SWAP12 POP SWAP3 SWAP10 POP SWAP1 SWAP8 POP SWAP6 POP SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP11 AND PUSH2 0x36A DUP3 PUSH1 0x60 SHR SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x391 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B4BDE09 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x39A DUP2 PUSH2 0x634 JUMP JUMPDEST SWAP3 POP POP SWAP4 SWAP8 POP SWAP4 SWAP8 SWAP2 SWAP6 POP SWAP4 POP JUMP JUMPDEST DUP3 PUSH2 0x3B5 PUSH1 0x41 DUP5 PUSH2 0xE3A JUMP JUMPDEST DUP2 EQ PUSH2 0x3EE JUMPI DUP1 PUSH2 0x3C7 PUSH1 0x41 DUP6 PUSH2 0xE3A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x2C289141 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x437 PUSH2 0x3FE DUP6 DUP4 DUP9 DUP11 PUSH2 0xCA7 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 0x643 SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x483 DUP3 PUSH2 0x44A DUP6 DUP9 DUP11 DUP13 PUSH2 0xCA7 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 0x67D SWAP3 POP POP POP JUMP JUMPDEST SWAP1 POP PUSH0 DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3A7B7A39 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x4C2 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 0x4E6 SWAP2 SWAP1 PUSH2 0xF9C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xB7009613 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP12 DUP2 AND PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP9 AND PUSH1 0x44 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0xB7009613 SWAP1 PUSH1 0x64 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x543 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 0x567 SWAP2 SWAP1 PUSH2 0xFBE JUMP JUMPDEST POP SWAP1 POP DUP2 DUP6 DUP3 PUSH2 0x5A5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x44B06897 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 0xE0 SHL SUB NOT AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3E5 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x5BC DUP3 PUSH2 0x6A5 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x5DB SWAP2 SWAP1 PUSH2 0xE27 JUMP JUMPDEST DUP4 PUSH2 0x100 ADD MLOAD PUSH2 0x5EB SWAP2 SWAP1 PUSH2 0x1002 JUMP JUMPDEST PUSH2 0x5F5 SWAP2 SWAP1 PUSH2 0x102D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x605 DUP3 PUSH2 0x6A5 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x624 SWAP2 SWAP1 PUSH2 0xE27 JUMP JUMPDEST DUP4 PUSH2 0x120 ADD MLOAD PUSH2 0x5EB SWAP2 SWAP1 PUSH2 0x1002 JUMP JUMPDEST PUSH0 PUSH2 0x5F5 PUSH1 0x1 PUSH1 0x60 SHL DUP4 PUSH2 0x1040 JUMP JUMPDEST PUSH0 PUSH2 0x64E DUP3 MLOAD PUSH2 0x6BC JUMP JUMPDEST DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x660 SWAP3 SWAP2 SWAP1 PUSH2 0x106A 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 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x68B DUP7 DUP7 PUSH2 0x74C JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x69B DUP3 DUP3 PUSH2 0x795 JUMP JUMPDEST POP SWAP1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x140 ADD MLOAD DUP3 PUSH2 0x160 ADD MLOAD PUSH2 0x5F5 SWAP2 SWAP1 PUSH2 0x10AC JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x6C8 DUP4 PUSH2 0x851 JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x6E7 JUMPI PUSH2 0x6E7 PUSH2 0xCCE JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x711 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0x71B JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x41 SUB PUSH2 0x783 JUMPI PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 DUP6 ADD MLOAD PUSH1 0x60 DUP7 ADD MLOAD PUSH0 BYTE PUSH2 0x775 DUP9 DUP3 DUP6 DUP6 PUSH2 0x928 JUMP JUMPDEST SWAP6 POP SWAP6 POP SWAP6 POP POP POP POP PUSH2 0x78E 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 0x7A8 JUMPI PUSH2 0x7A8 PUSH2 0x10C9 JUMP JUMPDEST SUB PUSH2 0x7B1 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x7C5 JUMPI PUSH2 0x7C5 PUSH2 0x10C9 JUMP JUMPDEST SUB PUSH2 0x7E3 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 0x7F7 JUMPI PUSH2 0x7F7 PUSH2 0x10C9 JUMP JUMPDEST SUB PUSH2 0x818 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x3E5 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x82C JUMPI PUSH2 0x82C PUSH2 0x10C9 JUMP JUMPDEST SUB PUSH2 0x84D JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x3E5 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0x88F JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x8BB JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x8D9 JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x8F1 JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x905 JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x917 JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x5F5 JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0x961 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x9E6 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 0x9B2 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 0x9DD JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x9E6 JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xA67 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xA7C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0xA87 DUP2 PUSH2 0xA53 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAA2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0xAB2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAC8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0xAD9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 POP SWAP3 SWAP4 POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0xB66 PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP2 ADD MLOAD PUSH2 0xB81 PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0xB95 DUP3 DUP8 PUSH2 0xAEA JUMP JUMPDEST DUP5 PUSH2 0x180 DUP4 ADD MSTORE DUP4 PUSH2 0x1A0 DUP4 ADD MSTORE DUP3 PUSH2 0x1C0 DUP4 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0xC06 DUP3 DUP11 PUSH2 0xAEA JUMP JUMPDEST DUP8 PUSH2 0x180 DUP4 ADD MSTORE DUP7 PUSH2 0x1A0 DUP4 ADD MSTORE DUP6 PUSH2 0x1C0 DUP4 ADD MSTORE PUSH5 0xFFFFFFFFFF DUP6 AND PUSH2 0x1E0 DUP4 ADD MSTORE PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP5 AND PUSH2 0x200 DUP4 ADD MSTORE PUSH2 0xC4C PUSH2 0x220 DUP4 ADD DUP5 PUSH2 0xBB3 JUMP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x40 DUP2 ADD DUP6 SWAP1 MSTORE PUSH5 0xFFFFFFFFFF DUP5 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF DUP4 AND PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x180 DUP2 ADD PUSH2 0xC9C PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0xBB3 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0xCB5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0xCC1 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 PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xD12 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xD2C JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD42 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xD4A PUSH2 0xCE2 JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0xDB9 PUSH2 0x140 DUP4 ADD PUSH2 0xD18 JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0xDCC PUSH2 0x160 DUP4 ADD PUSH2 0xD18 JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xDEC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xDF6 DUP7 DUP7 PUSH2 0xD31 JUMP JUMPDEST SWAP7 PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP7 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP6 PUSH2 0x1C0 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP 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 0x5F5 JUMPI PUSH2 0x5F5 PUSH2 0xE13 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x5F5 JUMPI PUSH2 0x5F5 PUSH2 0xE13 JUMP JUMPDEST PUSH0 PUSH1 0xE0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE5D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xE8C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 SWAP1 DUP2 MSTORE DUP4 CALLDATALOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP6 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE DUP4 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 SWAP3 DUP4 ADD CALLDATALOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x300 DUP9 DUP11 SUB SLT ISZERO PUSH2 0xEEF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xEF9 DUP10 DUP10 PUSH2 0xD31 JUMP JUMPDEST SWAP7 POP PUSH2 0x180 DUP9 ADD CALLDATALOAD SWAP6 POP PUSH2 0x1A0 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH2 0x1C0 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0xF20 PUSH2 0x1E0 DUP10 ADD PUSH2 0xD18 JUMP JUMPDEST SWAP3 POP PUSH2 0x200 DUP9 ADD CALLDATALOAD SWAP2 POP PUSH2 0xF38 DUP10 PUSH2 0x220 DUP11 ADD PUSH2 0xE4D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x180 DUP8 DUP10 SUB SLT ISZERO PUSH2 0xF5C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0xF7A PUSH1 0x60 DUP9 ADD PUSH2 0xD18 JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP8 ADD CALLDATALOAD SWAP2 POP PUSH2 0xF90 DUP9 PUSH1 0xA0 DUP10 ADD PUSH2 0xE4D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFAC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xFB7 DUP2 PUSH2 0xA53 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFCF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xFDE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0xFF7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x5F5 JUMPI PUSH2 0x5F5 PUSH2 0xE13 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH2 0x103B JUMPI PUSH2 0x103B PUSH2 0x1019 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x104E JUMPI PUSH2 0x104E PUSH2 0x1019 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 PUSH1 0x20 DUP5 ADD DUP6 MCOPY PUSH0 SWAP4 ADD SWAP3 DUP4 MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x19457468657265756D205369676E6564204D6573736167653A0A000000000000 DUP2 MSTORE PUSH0 PUSH2 0x10A4 PUSH2 0x109E PUSH1 0x1A DUP5 ADD DUP7 PUSH2 0x1053 JUMP JUMPDEST DUP5 PUSH2 0x1053 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x5F5 JUMPI PUSH2 0x5F5 PUSH2 0xE13 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 0xBB MULMOD LOG2 PUSH31 0x627E67E45BFDF138ACAA3D95F7B995958B1B8C24144D0244EA2DE5BE64736F PUSH13 0x634300081E0033000000000000 ","sourceMap":"722:5887:38:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5741:866;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;4835:871;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;:::i;4087:713::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;:::i;5741:866::-;5879:39;;:::i;:::-;5926:25;5959:19;5986;6020:81;6036:2;6040:9;;1332:29;1060:37;6020:15;:81::i;:::-;6189:36;1332:29;6199:1;6189:9;;:36;:::i;:::-;6171:114;;;;;;;:::i;:::-;6324:17;;;;-1:-1:-1;6107:178:38;;-1:-1:-1;6107:178:38;-1:-1:-1;6107:178:38;-1:-1:-1;11057:2:23;11045:14;-1:-1:-1;;;;;6299:49:38;;;6291:81;;;;-1:-1:-1;;;6291:81:38;;;;;;;;;;;;-1:-1:-1;;6382:11:38;:32;6378:109;;6453:34;:14;:32;:34::i;:::-;6430:14;:20;;;:57;;;;:::i;:::-;6416:71;;6378:109;-1:-1:-1;;6497:11:38;:32;6493:109;;6568:34;:14;:32;:34::i;:::-;6545:14;:20;;;:57;;;;:::i;:::-;6531:71;;6493:109;5741:866;;;;;;;:::o;4835:871::-;4972:34;;:::i;:::-;5014:14;5036:15;5059:16;5083:17;5108;5133:27;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5133:27:38;5175:83;5191:2;5195:9;;1234:30;1150:15;;1234:30;:::i;:::-;958:38;5175:15;:83::i;:::-;5264:16;5375:9;5264:16;5375:9;1234:30;1150:15;;1234:30;:::i;:::-;5375:37;;;;;;;:::i;:::-;5357:147;;;;;;;:::i;:::-;5286:218;;-1:-1:-1;5286:218:38;;-1:-1:-1;5286:218:38;;-1:-1:-1;5286:218:38;-1:-1:-1;5286:218:38;-1:-1:-1;5286:218:38;;-1:-1:-1;5286:218:38;-1:-1:-1;;;;;;5525:40:38;;:34;5286:218;11057:2:23;11045:14;;10939:127;5525:34:38;-1:-1:-1;;;;;5525:40:38;;:88;;;;-1:-1:-1;5594:12:38;;11057:2:23;11045:14;-1:-1:-1;;;;;5569:44:38;;;5525:88;5510:138;;;;-1:-1:-1;;;5510:138:38;;;;;;;;;;;;5667:34;5692:8;5667:24;:34::i;:::-;5654:47;;5169:537;4835:871;;;;;;;;;;;:::o;4087:713::-;4216:14;4238:15;4261:16;4285:17;4310;4335:27;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4335:27:38;4377:75;4393:2;4397:9;;1150:15;859:34;4377:15;:75::i;:::-;4458:16;4558:33;1150:15;4458:16;4558:9;;:33;:::i;:::-;4540:124;;;;;;;:::i;:::-;4480:184;;-1:-1:-1;4480:184:38;;-1:-1:-1;4480:184:38;;-1:-1:-1;4480:184:38;-1:-1:-1;4480:184:38;;-1:-1:-1;4480:184:38;-1:-1:-1;;;;;;4678:40:38;;:34;4480:184;11057:2:23;11045:14;;10939:127;4678:34:38;-1:-1:-1;;;;;4678:40:38;;4670:72;;;;-1:-1:-1;;;4670:72:38;;;;;;;;;;;;4761:34;4786:8;4761:24;:34::i;:::-;4748:47;;4371:429;4087:713;;;;;;;;;;:::o;3333:719::-;3498:9;3540:26;1407:2;3540:9;:26;:::i;:::-;3524:11;:43;3520:113;;3593:11;3606:26;1407:2;3606:9;:26;:::i;:::-;3576:57;;-1:-1:-1;;;3576:57:38;;;;;10804:25:125;;;;10845:18;;;10838:34;10777:18;;3576:57:38;;;;;;;;3520:113;3662:17;3682:63;3722:22;3734:9;3662:17;3722:9;;:22;:::i;:::-;3682:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3682:39:38;;-1:-1:-1;;;3682:63:38:i;:::-;3662:83;-1:-1:-1;3751:14:38;3768:58;3662:83;3793:32;3813:11;3803:9;3793;;:32;:::i;:::-;3768:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3768:13:38;;-1:-1:-1;;;3768:58:38:i;:::-;3751:75;;3879:14;3926:2;-1:-1:-1;;;;;3899:46:38;;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:82;;-1:-1:-1;;;3899:82:38;;-1:-1:-1;;;;;11381:32:125;;;3899:82:38;;;11363:51:125;11450:32;;;11430:18;;;11423:60;-1:-1:-1;;;;;;11519:33:125;;11499:18;;;11492:61;3899:56:38;;;;;;;11336:18:125;;3899:82:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;3878:103:38;-1:-1:-1;4025:6:38;4033:12;3878:103;3987:60;;;;-1:-1:-1;;;3987:60:38;;-1:-1:-1;;;;;12201:32:125;;;3987:60:38;;;12183:51:125;-1:-1:-1;;;;;;12270:33:125;12250:18;;;12243:61;12156:18;;3987:60:38;12011:299:125;3987:60:38;;;3450:602;;;;3333:719;;;;;:::o;9199:171:23:-;9275:7;9349:16;9358:6;9349:8;:16::i;:::-;9297:68;;9332:6;:12;;;9314:30;;:15;:30;;;;:::i;:::-;9298:6;:12;;;:47;;;;:::i;:::-;9297:68;;;;:::i;:::-;9290:75;9199:171;-1:-1:-1;;9199:171:23:o;10226:::-;10302:7;10376:16;10385:6;10376:8;:16::i;:::-;10324:68;;10359:6;:12;;;10341:30;;:15;:30;;;;:::i;:::-;10325:6;:12;;;:47;;;;:::i;11139:122::-;11207:6;11235:20;-1:-1:-1;;;11235:8:23;:20;:::i;2171:229:101:-;2248:7;2349:32;2366:7;:14;2349:16;:32::i;:::-;2384:7;2296:96;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2286:107;;;;;;2267:126;;2171:229;;;:::o;5290:255:99:-;5368:7;5388:17;5407:18;5427:16;5447:27;5458:4;5464:9;5447:10;:27::i;:::-;5387:87;;;;;;5484:28;5496:5;5503:8;5484:11;:28::i;:::-;-1:-1:-1;5529:9:99;;5290:255;-1:-1:-1;;;;5290:255:99:o;10461:125:23:-;10528:6;10569;:12;;;10549:6;:17;;;:32;;;;:::i;1343:634:98:-;1399:13;1448:14;1465:17;1476:5;1465:10;:17::i;:::-;1485:1;1465:21;1448:38;;1500:20;1534:6;1523:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1523:18:98;-1:-1:-1;1500:41:98;-1:-1:-1;1630:30:98;;;1646:4;1630:30;1687:247;-1:-1:-1;;1718:5:98;-1:-1:-1;;;1817:2:98;1806:14;;1801:32;1718:5;1788:46;1878:2;1869:11;;;-1:-1:-1;1898:21:98;1687:247;1898:21;-1:-1:-1;1954:6:98;1343:634;-1:-1:-1;;;1343:634:98:o;2433:778:99:-;2536:17;2555:16;2573:14;2603:9;:16;2623:2;2603:22;2599:606;;2908:4;2893:20;;2887:27;2957:4;2942:20;;2936:27;3014:4;2999:20;;2993:27;2641:9;2985:36;3055:25;3066:4;2985:36;2887:27;2936;3055:10;:25::i;:::-;3048:32;;;;;;;;;;;2599:606;-1:-1:-1;;3176:16:99;;3127:1;;-1:-1:-1;3131:35:99;;2599:606;2433:778;;;;;:::o;11630:532::-;11725:20;11716:5;:29;;;;;;;;:::i;:::-;;11712:444;;11630:532;;:::o;11712:444::-;11821:29;11812:5;:38;;;;;;;;:::i;:::-;;11808:348;;11873:23;;-1:-1:-1;;;11873:23:99;;;;;;;;;;;11808:348;11926:35;11917:5;:44;;;;;;;;:::i;:::-;;11913:243;;11984:46;;-1:-1:-1;;;11984:46:99;;;;;13991:25:125;;;13964:18;;11984:46:99;13845:177:125;11913:243:99;12060:30;12051:5;:39;;;;;;;;:::i;:::-;;12047:109;;12113:32;;-1:-1:-1;;;12113:32:99;;;;;13991:25:125;;;13964:18;;12113:32:99;13845:177:125;12047:109:99;11630:532;;:::o;29170:916:105:-;29223:7;;-1:-1:-1;;;29298:17:105;;29294:103;;-1:-1:-1;;;29335:17:105;;;-1:-1:-1;29380:2:105;29370:12;29294:103;29423:8;29414:5;:17;29410:103;;29460:8;29451:17;;;-1:-1:-1;29496:2:105;29486:12;29410:103;29539:8;29530:5;:17;29526:103;;29576:8;29567:17;;;-1:-1:-1;29612:2:105;29602:12;29526:103;29655:7;29646:5;:16;29642:100;;29691:7;29682:16;;;-1:-1:-1;29726:1:105;29716:11;29642:100;29768:7;29759:5;:16;29755:100;;29804:7;29795:16;;;-1:-1:-1;29839:1:105;29829:11;29755:100;29881:7;29872:5;:16;29868:100;;29917:7;29908:16;;;-1:-1:-1;29952:1:105;29942:11;29868:100;29994:7;29985:5;:16;29981:66;;30031:1;30021:11;30073:6;29170:916;-1:-1:-1;;29170:916:105:o;7142:1551:99:-;7268:17;;;8222:66;8209:79;;8205:164;;;-1:-1:-1;8320:1:99;;-1:-1:-1;8324:30:99;;-1:-1:-1;8356:1:99;8304:54;;8205:164;8480:24;;;8463:14;8480:24;;;;;;;;;14436:25:125;;;14509:4;14497:17;;14477:18;;;14470:45;;;;14531:18;;;14524:34;;;14574:18;;;14567:34;;;8480:24:99;;14408:19:125;;8480:24:99;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8480:24:99;;-1:-1:-1;;8480:24:99;;;-1:-1:-1;;;;;;;8518:20:99;;8514:113;;-1:-1:-1;8570:1:99;;-1:-1:-1;8574:29:99;;-1:-1:-1;8570:1:99;;-1:-1:-1;8554:62:99;;8514:113;8645:6;-1:-1:-1;8653:20:99;;-1:-1:-1;8653:20:99;;-1:-1:-1;7142:1551:99;;;;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:131:125:-;-1:-1:-1;;;;;89:31:125;;79:42;;69:70;;135:1;132;125:12;69:70;14:131;:::o;150:721::-;229:6;237;245;298:2;286:9;277:7;273:23;269:32;266:52;;;314:1;311;304:12;266:52;353:9;340:23;372:31;397:5;372:31;:::i;:::-;422:5;-1:-1:-1;478:2:125;463:18;;450:32;505:18;494:30;;491:50;;;537:1;534;527:12;491:50;560:22;;613:4;605:13;;601:27;-1:-1:-1;591:55:125;;642:1;639;632:12;591:55;682:2;669:16;708:18;700:6;697:30;694:50;;;740:1;737;730:12;694:50;785:7;780:2;771:6;767:2;763:15;759:24;756:37;753:57;;;806:1;803;796:12;753:57;150:721;;837:2;829:11;;;;;-1:-1:-1;859:6:125;;-1:-1:-1;;;150:721:125:o;977:835::-;1059:5;1053:12;1048:3;1041:25;1115:4;1108:5;1104:16;1098:23;1091:4;1086:3;1082:14;1075:47;1171:4;1164:5;1160:16;1154:23;1147:4;1142:3;1138:14;1131:47;1227:4;1220:5;1216:16;1210:23;1203:4;1198:3;1194:14;1187:47;1283:4;1276:5;1272:16;1266:23;1259:4;1254:3;1250:14;1243:47;1339:4;1332:5;1328:16;1322:23;1315:4;1310:3;1306:14;1299:47;1395:4;1388:5;1384:16;1378:23;1371:4;1366:3;1362:14;1355:47;1451:4;1444:5;1440:16;1434:23;1427:4;1422:3;1418:14;1411:47;1509:6;1502:5;1498:18;1492:25;1483:6;1478:3;1474:16;1467:51;1569:6;1562:5;1558:18;1552:25;1543:6;1538:3;1534:16;1527:51;1624:6;1617:5;1613:18;1607:25;1641:49;1682:6;1677:3;1673:16;1659:12;952;941:24;929:37;;876:96;1641:49;;1738:6;1731:5;1727:18;1721:25;1755:51;1798:6;1793:3;1789:16;1773:14;952:12;941:24;929:37;;876:96;1755:51;;977:835;;:::o;1817:472::-;2091:3;2076:19;;2104:47;2080:9;2133:6;2104:47;:::i;:::-;2188:6;2182:3;2171:9;2167:19;2160:35;2232:6;2226:3;2215:9;2211:19;2204:35;2276:6;2270:3;2259:9;2255:19;2248:35;1817:472;;;;;;;:::o;2294:427::-;2372:5;2366:12;2361:3;2354:25;2428:4;2421:5;2417:16;2411:23;2404:4;2399:3;2395:14;2388:47;2484:4;2477:5;2473:16;2467:23;2460:4;2455:3;2451:14;2444:47;2540:4;2533:5;2529:16;2523:23;2516:4;2511:3;2507:14;2500:47;2596:4;2589:5;2585:16;2579:23;2572:4;2567:3;2563:14;2556:47;2652:4;2645:5;2641:16;2635:23;2628:4;2623:3;2619:14;2612:47;2708:4;2701:5;2697:16;2691:23;2684:4;2679:3;2675:14;2668:47;;;2294:427::o;2726:802::-;3128:3;3113:19;;3141:47;3117:9;3170:6;3141:47;:::i;:::-;3225:6;3219:3;3208:9;3204:19;3197:35;3269:6;3263:3;3252:9;3248:19;3241:35;3313:6;3307:3;3296:9;3292:19;3285:35;3369:12;3361:6;3357:25;3351:3;3340:9;3336:19;3329:54;3432:26;3424:6;3420:39;3414:3;3403:9;3399:19;3392:68;3469:53;3517:3;3506:9;3502:19;3494:6;3469:53;:::i;:::-;2726:802;;;;;;;;;;:::o;3533:649::-;3864:25;;;3920:2;3905:18;;3898:34;;;3963:2;3948:18;;3941:34;;;4023:12;4011:25;;4006:2;3991:18;;3984:53;4086:26;4074:39;;4068:3;4053:19;;4046:68;3851:3;3836:19;;4123:53;4171:3;4156:19;;4148:6;4123:53;:::i;:::-;3533:649;;;;;;;;;:::o;4187:331::-;4292:9;4303;4345:8;4333:10;4330:24;4327:44;;;4367:1;4364;4357:12;4327:44;4396:6;4386:8;4383:20;4380:40;;;4416:1;4413;4406:12;4380:40;-1:-1:-1;;4442:23:125;;;4487:25;;;;;-1:-1:-1;4187:331:125:o;4523:127::-;4584:10;4579:3;4575:20;4572:1;4565:31;4615:4;4612:1;4605:15;4639:4;4636:1;4629:15;4655:347;4722:2;4716:9;4764:6;4752:19;;4801:18;4786:34;;4822:22;;;4783:62;4780:185;;;4887:10;4882:3;4878:20;4875:1;4868:31;4922:4;4919:1;4912:15;4950:4;4947:1;4940:15;4780:185;4981:2;4974:22;4655:347;:::o;5007:165::-;5074:20;;5134:12;5123:24;;5113:35;;5103:63;;5162:1;5159;5152:12;5103:63;5007:165;;;:::o;5177:1481::-;5234:5;5282:6;5270:9;5265:3;5261:19;5257:32;5254:52;;;5302:1;5299;5292:12;5254:52;5324:17;;:::i;:::-;5386:23;;5418:22;;5513:2;5498:18;;;5485:32;5533:14;;;5526:31;5630:2;5615:18;;;5602:32;5650:14;;;5643:31;5747:2;5732:18;;;5719:32;5767:14;;;5760:31;5864:3;5849:19;;;5836:33;5885:15;;;5878:32;5983:3;5968:19;;;5955:33;6004:15;;;5997:32;6102:3;6087:19;;;6074:33;6123:15;;;6116:32;6221:3;6206:19;;;6193:33;6242:15;;;6235:32;6340:3;6325:19;;;6312:33;6361:15;;;6354:32;6461:3;6446:19;;;6433:33;6482:15;;;6475:33;5315:26;-1:-1:-1;6541:38:125;6574:3;6559:19;;6541:38;:::i;:::-;6535:3;6528:5;6524:15;6517:63;6613:38;6646:3;6635:9;6631:19;6613:38;:::i;:::-;6607:3;6600:5;6596:15;6589:63;5177:1481;;;;:::o;6663:591::-;6777:6;6785;6793;6801;6854:3;6842:9;6833:7;6829:23;6825:33;6822:53;;;6871:1;6868;6861:12;6822:53;6894:48;6934:7;6923:9;6894:48;:::i;:::-;6884:58;7011:3;6996:19;;6983:33;;-1:-1:-1;7113:3:125;7098:19;;7085:33;;7217:3;7202:19;7189:33;;-1:-1:-1;6663:591:125;-1:-1:-1;;;6663:591:125:o;7259:127::-;7320:10;7315:3;7311:20;7308:1;7301:31;7351:4;7348:1;7341:15;7375:4;7372:1;7365:15;7391:128;7458:9;;;7479:11;;;7476:37;;;7493:18;;:::i;7524:125::-;7589:9;;;7610:10;;;7607:36;;;7623:18;;:::i;7654:1288::-;7707:5;7755:4;7743:9;7738:3;7734:19;7730:30;7727:50;;;7773:1;7770;7763:12;7727:50;7826:2;7820:9;7868:4;7856:17;;7903:18;7888:34;;7924:22;;;7885:62;7882:185;;;7989:10;7984:3;7980:20;7977:1;7970:31;8024:4;8021:1;8014:15;8052:4;8049:1;8042:15;7882:185;8083:2;8076:22;;;8167:23;;8199;;8295:2;8280:18;;;8267:32;8315:15;;;8308:32;8398:18;;;8385:32;8433:15;;;8426:32;8531:2;8516:18;;;8503:32;8551:15;;;8544:32;8649:3;8634:19;;;8621:33;8670:16;;;8663:33;8769:3;8754:19;;;8741:33;8790:16;;;8783:33;8889:3;8874:19;;;8861:33;8910:16;;;8903:33;;;;-1:-1:-1;8116:6:125;7654:1288;-1:-1:-1;7654:1288:125:o;8947:899::-;9111:6;9119;9127;9135;9143;9151;9159;9212:3;9200:9;9191:7;9187:23;9183:33;9180:53;;;9229:1;9226;9219:12;9180:53;9252:48;9292:7;9281:9;9252:48;:::i;:::-;9242:58;-1:-1:-1;9369:3:125;9354:19;;9341:33;;-1:-1:-1;9471:3:125;9456:19;;9443:33;;-1:-1:-1;9575:3:125;9560:19;;9547:33;;-1:-1:-1;9625:38:125;9658:3;9643:19;;9625:38;:::i;:::-;9615:48;-1:-1:-1;9736:3:125;9721:19;;9708:33;;-1:-1:-1;9786:54:125;9832:7;9826:3;9811:19;;9786:54;:::i;:::-;9776:64;;8947:899;;;;;;;;;;:::o;9851:774::-;9978:6;9986;9994;10002;10010;10018;10071:3;10059:9;10050:7;10046:23;10042:33;10039:53;;;10088:1;10085;10078:12;10039:53;10133:23;;;-1:-1:-1;10253:2:125;10238:18;;10225:32;;-1:-1:-1;10356:2:125;10341:18;;10328:32;;-1:-1:-1;10405:37:125;10438:2;10423:18;;10405:37;:::i;:::-;10395:47;-1:-1:-1;10515:3:125;10500:19;;10487:33;;-1:-1:-1;10565:54:125;10611:7;10605:3;10590:19;;10565:54;:::i;:::-;10555:64;;9851:774;;;;;;;;:::o;10883:275::-;10977:6;11030:2;11018:9;11009:7;11005:23;11001:32;10998:52;;;11046:1;11043;11036:12;10998:52;11078:9;11072:16;11097:31;11122:5;11097:31;:::i;:::-;11147:5;10883:275;-1:-1:-1;;;10883:275:125:o;11564:442::-;11639:6;11647;11700:2;11688:9;11679:7;11675:23;11671:32;11668:52;;;11716:1;11713;11706:12;11668:52;11748:9;11742:16;11801:5;11794:13;11787:21;11780:5;11777:32;11767:60;;11823:1;11820;11813:12;11767:60;11896:2;11881:18;;11875:25;11846:5;;-1:-1:-1;11944:10:125;11931:24;;11919:37;;11909:65;;11970:1;11967;11960:12;11909:65;11993:7;11983:17;;;11564:442;;;;;:::o;12315:168::-;12388:9;;;12419;;12436:15;;;12430:22;;12416:37;12406:71;;12457:18;;:::i;12488:127::-;12549:10;12544:3;12540:20;12537:1;12530:31;12580:4;12577:1;12570:15;12604:4;12601:1;12594:15;12620:120;12660:1;12686;12676:35;;12691:18;;:::i;:::-;-1:-1:-1;12725:9:125;;12620:120::o;12745:112::-;12777:1;12803;12793:35;;12808:18;;:::i;:::-;-1:-1:-1;12842:9:125;;12745:112::o;12862:211::-;12903:3;12941:5;12935:12;12985:6;12978:4;12971:5;12967:16;12962:3;12956:36;13047:1;13011:16;;13036:13;;;-1:-1:-1;13011:16:125;;12862:211;-1:-1:-1;12862:211:125:o;13078:449::-;13374:66;13369:3;13362:79;13344:3;13457:64;13482:38;13516:2;13511:3;13507:12;13499:6;13482:38;:::i;:::-;13474:6;13457:64;:::i;:::-;13450:71;13078:449;-1:-1:-1;;;;13078:449:125:o;13532:176::-;13631:12;13624:20;;;13602;;;13598:47;;13657:22;;13654:48;;;13682:18;;:::i;13713:127::-;13774:10;13769:3;13765:20;13762:1;13755:31;13805:4;13802:1;13795:15;13829:4;13826:1;13819:15"},"methodIdentifiers":{"priceNewPolicy(address,bytes)":"ba097a2a","pricePolicyCancellation(address,bytes)":"32f857fa","pricePolicyReplacement(address,bytes)":"9ba942d6"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"actual\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expected\",\"type\":\"uint256\"}],\"name\":\"InvalidInputSize\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"SignatureRmMismatch\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"UnauthorizedSigner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"rm\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"priceNewPolicy\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"moc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCollRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"collRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroPpFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCocFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrRoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srRoc\",\"type\":\"uint256\"}],\"internalType\":\"struct Policy.Params\",\"name\":\"params\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"rm\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"pricePolicyCancellation\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policyToCancel\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"rm\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"pricePolicyReplacement\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"moc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCollRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"collRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroPpFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCocFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrRoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srRoc\",\"type\":\"uint256\"}],\"internalType\":\"struct Policy.Params\",\"name\":\"params\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"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.\"}],\"InvalidInputSize(uint256,uint256)\":[{\"details\":\"The signature is expected to be exactly 65 bytes, so `inputData.length` must be `inputSize + 65`.\",\"params\":{\"actual\":\"The actual length of `inputData` in bytes.\",\"expected\":\"The expected length of `inputData` in bytes.\"}}],\"UnauthorizedSigner(address,bytes4)\":[{\"details\":\"`selector` is the permission/role identifier checked through the RM's AccessManager (one of `FULL_PRICE_*`).\",\"params\":{\"selector\":\"The required permission/role id for the operation.\",\"signer\":\"The address recovered from the appended ECDSA signature.\"}}]},\"kind\":\"dev\",\"methods\":{\"priceNewPolicy(address,bytes)\":{\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"expiration\":\" Policy expiration timestamp (seconds since epoch).\",\"internalId\":\" Unique id within `rm` used to derive the policy id.\",\"lossProb\":\"   Loss probability used for pricing/risk calculations.\",\"params\":\"     Additional policy parameters used by {Policy-initialize}.\",\"payout\":\"     The policy payout.\",\"premium\":\"    The total premium for the policy.\"}},\"pricePolicyCancellation(address,bytes)\":{\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"jrCocRefund\":\"      Amount to refund from junior CoC (or a sentinel value, if supported).\",\"policyToCancel\":\"   The policy to cancel (as {Policy-PolicyData}).\",\"purePremiumRefund\":\"Amount to refund from pure premium.\",\"srCocRefund\":\"      Amount to refund from senior CoC (or a sentinel value, if supported).\"}},\"pricePolicyReplacement(address,bytes)\":{\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"expiration\":\" Replacement policy expiration timestamp.\",\"internalId\":\" Unique id within `rm` for the replacement policy.\",\"lossProb\":\"   Loss probability used for pricing/risk calculations.\",\"oldPolicy\":\"  The policy being replaced (as {Policy-PolicyData}).\",\"params\":\"     Additional policy parameters used by {Policy-initialize}.\",\"payout\":\"     The replacement policy payout.\",\"premium\":\"    The replacement policy premium.\"}}},\"title\":\"FullSignedUW\",\"version\":1},\"userdoc\":{\"errors\":{\"InvalidInputSize(uint256,uint256)\":[{\"notice\":\"Thrown when `inputData` does not have the expected length: `payload || signature`.\"}],\"SignatureRmMismatch()\":[{\"notice\":\"Thrown when the received signature doesn't match the calling rm\"}],\"UnauthorizedSigner(address,bytes4)\":[{\"notice\":\"Thrown when the recovered signer is not authorized to perform the requested pricing operation on `rm`.\"}]},\"kind\":\"user\",\"methods\":{\"priceNewPolicy(address,bytes)\":{\"notice\":\"Prices a new policy request for RiskModule `rm`.\"},\"pricePolicyCancellation(address,bytes)\":{\"notice\":\"Prices a policy cancellation request for RiskModule `rm`.\"},\"pricePolicyReplacement(address,bytes)\":{\"notice\":\"Prices a policy replacement request for RiskModule `rm`.\"}},\"notice\":\"Underwriter that just decodes what it receives and checks it was signed by an authorized account.      The signer needs to have the specific selectors granted in the target RM\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/underwriters/FullSignedUW.sol\":\"FullSignedUW\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/access-managed-proxy/contracts/AMPUtils.sol\":{\"keccak256\":\"0x3f25097d759aa89ce9a7a94f98b854a3dc23c51f7f895b95a8d489e74d5f1d98\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://2912cf8c79b973d07fbb741e7d1048026f0a71489df2adf97552b83b23b427d7\",\"dweb:/ipfs/QmRTfFaqy72p4RfY99hKM1K9wH5kxaTnikH5VJjpL7K7sD\"]},\"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol\":{\"keccak256\":\"0x0d3a66feed9000ccbc8a8e6c597b7fe4659f56b5a4dfa2ab1eea314171ae9745\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fa3f292954915546ce72159da1dbcd44b8cdc19ea0b5b3fc6dbb47070451583c\",\"dweb:/ipfs/QmeL7krtsKLpuS9hy5w6eRoRsXU874XtgNWutUavxRKzmA\"]},\"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol\":{\"keccak256\":\"0xe84ff4706a5ae4c03f011343dfb73ce8b731e1eb2287d25018a449b3e802092e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://53202b0391daa08f69fda5c471f957f9811dba1d2033e5e3e3a7a78c1d05eb39\",\"dweb:/ipfs/QmabycaktcAsVJFEdf7F4Lk1WsAz9qesqQARLwjYvM722m\"]},\"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol\":{\"keccak256\":\"0xdd762bad2f6ad362f5a38fb333d2a953f6c9d0beea122dbaef0e333a7b83a054\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://a2bb86de08187cee5956393ca2cf096a09eb6ac694471e436ca12e377d97cb40\",\"dweb:/ipfs/Qmf6cNjug4swjsvTJYjbzhMMfAfSFdUuyJjkEf3b1cu2hn\"]},\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@ensuro/core/contracts/interfaces/IUnderwriter.sol\":{\"keccak256\":\"0x2d2ed693a29e809ddc60c4669a6ea5bf8a74497593e8e099ea76c27505472acb\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4534e64481c50a88d782c615dce9ac3bda35509e0252ca306456665e57f26527\",\"dweb:/ipfs/QmdNGFXjRm2t8cZe5zi9C6YNh9BMHDnk4dfWNfHxmHgqwJ\"]},\"@ensuro/core/contracts/underwriters/FullSignedUW.sol\":{\"keccak256\":\"0x7452b0113c97105fc9a1dd1df7238733cc0039af32ae38fea918e0c6c77d4212\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://c03ade625828601ee93aa666b5e6f6d78f1b22e1b334765a6d0a72221feda540\",\"dweb:/ipfs/QmcXigemCo18657ZtraZrmEm4QGtVENHg7oa3izgX9Ldwd\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x71e3e350e83af0018a1683cc2ce4c13893cc01f78e5c9c305f6828608ffcfa18\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a7b521c9999007715c9bdedffaad2ef7d2ccfa07bca2a39ba9e0c2e8a944a63\",\"dweb:/ipfs/QmamPG6Y1p7iZh4cF8Hfp3oufowSRyB3S3DisTKkmVWSai\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa3066ff86b94128a9d3956a63a0511fa1aae41bd455772ab587b32ff322acb2e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf7b192fd82acf6187970c80548f624b1b9c80425b62fa49e7fdb538a52de049\",\"dweb:/ipfs/QmWXG1YCde1tqDYTbNwjkZDWVgPEjzaQGSDqWkyKLzaNua\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0x80935e4fae2c414f4e7789e13a820d06901182a5733ab006f8d68b5b09db993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://752d991d6ca1087587b48103bc623f74888054f58581ff29166d90889c4765c5\",\"dweb:/ipfs/QmRBsa6K2ChKxVWYY54YiyYhDBPbmY5HyKCtij5LoWh56o\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x360cf86214a764694dae1522a38200b1737fe90e46dcf56a0f89de143071cc20\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e393290a46ca6d1fa1addb40709d26e1d250638ab6acdd103b5af21768ebc7b\",\"dweb:/ipfs/QmPwT3tXwQ9NbGtZ99XRq7sr8LCQP8XaCrzw49JdXGn7us\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x6abeed5940e1da7bb329e458db9a1c5c4ea6f86d651b952af99c6bddcd6bbb94\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fe75e9a6b759c5d7fd82fb59bd4f58c672b36f0a69b84f4789b7c7895d3e61c\",\"dweb:/ipfs/QmX28wsir8w5sS3acfJMNHcBwoPsDpqCu7WDkPnUWLMNiZ\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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}}},"@ensuro/core/contracts/underwriters/FullTrustedUW.sol":{"FullTrustedUW":{"abi":[{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"priceNewPolicy","outputs":[{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint96","name":"internalId","type":"uint96"},{"components":[{"internalType":"uint256","name":"moc","type":"uint256"},{"internalType":"uint256","name":"jrCollRatio","type":"uint256"},{"internalType":"uint256","name":"collRatio","type":"uint256"},{"internalType":"uint256","name":"ensuroPpFee","type":"uint256"},{"internalType":"uint256","name":"ensuroCocFee","type":"uint256"},{"internalType":"uint256","name":"jrRoc","type":"uint256"},{"internalType":"uint256","name":"srRoc","type":"uint256"}],"internalType":"struct Policy.Params","name":"params","type":"tuple"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"pricePolicyCancellation","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policyToCancel","type":"tuple"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"}],"name":"pricePolicyReplacement","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"oldPolicy","type":"tuple"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"premium","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint40","name":"expiration","type":"uint40"},{"internalType":"uint96","name":"internalId","type":"uint96"},{"components":[{"internalType":"uint256","name":"moc","type":"uint256"},{"internalType":"uint256","name":"jrCollRatio","type":"uint256"},{"internalType":"uint256","name":"collRatio","type":"uint256"},{"internalType":"uint256","name":"ensuroPpFee","type":"uint256"},{"internalType":"uint256","name":"ensuroCocFee","type":"uint256"},{"internalType":"uint256","name":"jrRoc","type":"uint256"},{"internalType":"uint256","name":"srRoc","type":"uint256"}],"internalType":"struct Policy.Params","name":"params","type":"tuple"}],"stateMutability":"pure","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"6080604052348015600e575f5ffd5b506108878061001c5f395ff3fe608060405234801561000f575f5ffd5b506004361061003f575f3560e01c806332f857fa146100435780639ba942d61461006f578063ba097a2a14610095575b5f5ffd5b6100566100513660046102f5565b6100ba565b604051610066949392919061041c565b60405180910390f35b61008261007d3660046102f5565b61012c565b604051610066979695949392919061048d565b6100a86100a33660046102f5565b610199565b604051610066969594939291906104e9565b6100c2610292565b5f80806100d185870187610629565b92965090945092509050600182016100ff576100ec846101f9565b8461010001516100fc9190610678565b91505b5f1981036101235761011084610242565b8461012001516101209190610678565b90505b93509350935093565b610134610292565b5f5f5f5f5f6101726040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b61017e888a018a61072c565b96509650965096509650965096509397509397509397909450565b5f5f5f5f5f6101d76040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b6101e3878901896107a1565b949e939d50919b50995097509095509350505050565b5f6102038261027b565b64ffffffffff1682610140015164ffffffffff16426102229190610678565b83610100015161023291906107fe565b61023c9190610815565b92915050565b5f61024c8261027b565b64ffffffffff1682610140015164ffffffffff164261026b9190610678565b83610120015161023291906107fe565b5f81610140015182610160015161023c9190610834565b6040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b5f5f5f60408486031215610307575f5ffd5b83356001600160a01b038116811461031d575f5ffd5b9250602084013567ffffffffffffffff811115610338575f5ffd5b8401601f81018613610348575f5ffd5b803567ffffffffffffffff81111561035e575f5ffd5b86602082840101111561036f575f5ffd5b939660209190910195509293505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e08301526101008101516101008301526101208101516101208301526101408101516103fc61014084018264ffffffffff169052565b5061016081015161041761016084018264ffffffffff169052565b505050565b6101e0810161042b8287610380565b84610180830152836101a0830152826101c083015295945050505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c08301525050565b610300810161049c828a610380565b87610180830152866101a0830152856101c083015264ffffffffff85166101e08301526001600160601b0384166102008301526104dd610220830184610449565b98975050505050505050565b868152602081018690526040810185905264ffffffffff841660608201526001600160601b0383166080820152610180810161052860a0830184610449565b979650505050505050565b604051610180810167ffffffffffffffff8111828210171561056357634e487b7160e01b5f52604160045260245ffd5b60405290565b803564ffffffffff8116811461057d575f5ffd5b919050565b5f6101808284031215610593575f5ffd5b61059b610533565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e0808401359082015261010080840135908201526101208084013590820152905061060a6101408301610569565b61014082015261061d6101608301610569565b61016082015292915050565b5f5f5f5f6101e0858703121561063d575f5ffd5b6106478686610582565b9661018086013596506101a0860135956101c00135945092505050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561023c5761023c610664565b80356001600160601b038116811461057d575f5ffd5b5f60e082840312156106b1575f5ffd5b60405160e0810167ffffffffffffffff811182821017156106e057634e487b7160e01b5f52604160045260245ffd5b604090815283358252602080850135908301528381013590820152606080840135908201526080808401359082015260a0808401359082015260c0928301359281019290925250919050565b5f5f5f5f5f5f5f610300888a031215610743575f5ffd5b61074d8989610582565b965061018088013595506101a088013594506101c088013593506107746101e08901610569565b9250610783610200890161068b565b9150610793896102208a016106a1565b905092959891949750929550565b5f5f5f5f5f5f61018087890312156107b7575f5ffd5b8635955060208701359450604087013593506107d560608801610569565b92506107e36080880161068b565b91506107f28860a089016106a1565b90509295509295509295565b808202811582820484141761023c5761023c610664565b5f8261082f57634e487b7160e01b5f52601260045260245ffd5b500490565b64ffffffffff828116828216039081111561023c5761023c61066456fea2646970667358221220397420a52b179eae14125fbb6787dd0e909f52462792ba19c8fb58bdf2454ff464736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x887 DUP1 PUSH2 0x1C PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x3F JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x32F857FA EQ PUSH2 0x43 JUMPI DUP1 PUSH4 0x9BA942D6 EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0xBA097A2A EQ PUSH2 0x95 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x56 PUSH2 0x51 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F5 JUMP JUMPDEST PUSH2 0xBA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x41C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x82 PUSH2 0x7D CALLDATASIZE PUSH1 0x4 PUSH2 0x2F5 JUMP JUMPDEST PUSH2 0x12C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x48D JUMP JUMPDEST PUSH2 0xA8 PUSH2 0xA3 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F5 JUMP JUMPDEST PUSH2 0x199 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4E9 JUMP JUMPDEST PUSH2 0xC2 PUSH2 0x292 JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0xD1 DUP6 DUP8 ADD DUP8 PUSH2 0x629 JUMP JUMPDEST SWAP3 SWAP7 POP SWAP1 SWAP5 POP SWAP3 POP SWAP1 POP PUSH1 0x1 DUP3 ADD PUSH2 0xFF JUMPI PUSH2 0xEC DUP5 PUSH2 0x1F9 JUMP JUMPDEST DUP5 PUSH2 0x100 ADD MLOAD PUSH2 0xFC SWAP2 SWAP1 PUSH2 0x678 JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x123 JUMPI PUSH2 0x110 DUP5 PUSH2 0x242 JUMP JUMPDEST DUP5 PUSH2 0x120 ADD MLOAD PUSH2 0x120 SWAP2 SWAP1 PUSH2 0x678 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x292 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x172 PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0x17E DUP9 DUP11 ADD DUP11 PUSH2 0x72C JUMP JUMPDEST SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP4 SWAP8 POP SWAP4 SWAP8 POP SWAP4 SWAP8 SWAP1 SWAP5 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1D7 PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0x1E3 DUP8 DUP10 ADD DUP10 PUSH2 0x7A1 JUMP JUMPDEST SWAP5 SWAP15 SWAP4 SWAP14 POP SWAP2 SWAP12 POP SWAP10 POP SWAP8 POP SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x203 DUP3 PUSH2 0x27B JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x222 SWAP2 SWAP1 PUSH2 0x678 JUMP JUMPDEST DUP4 PUSH2 0x100 ADD MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x7FE JUMP JUMPDEST PUSH2 0x23C SWAP2 SWAP1 PUSH2 0x815 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x24C DUP3 PUSH2 0x27B JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x26B SWAP2 SWAP1 PUSH2 0x678 JUMP JUMPDEST DUP4 PUSH2 0x120 ADD MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x7FE JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x140 ADD MLOAD DUP3 PUSH2 0x160 ADD MLOAD PUSH2 0x23C SWAP2 SWAP1 PUSH2 0x834 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x307 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x31D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x338 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x348 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x35E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x36F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 POP SWAP3 SWAP4 POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0x3FC PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP2 ADD MLOAD PUSH2 0x417 PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0x42B DUP3 DUP8 PUSH2 0x380 JUMP JUMPDEST DUP5 PUSH2 0x180 DUP4 ADD MSTORE DUP4 PUSH2 0x1A0 DUP4 ADD MSTORE DUP3 PUSH2 0x1C0 DUP4 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0x49C DUP3 DUP11 PUSH2 0x380 JUMP JUMPDEST DUP8 PUSH2 0x180 DUP4 ADD MSTORE DUP7 PUSH2 0x1A0 DUP4 ADD MSTORE DUP6 PUSH2 0x1C0 DUP4 ADD MSTORE PUSH5 0xFFFFFFFFFF DUP6 AND PUSH2 0x1E0 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP5 AND PUSH2 0x200 DUP4 ADD MSTORE PUSH2 0x4DD PUSH2 0x220 DUP4 ADD DUP5 PUSH2 0x449 JUMP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x40 DUP2 ADD DUP6 SWAP1 MSTORE PUSH5 0xFFFFFFFFFF DUP5 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP4 AND PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x180 DUP2 ADD PUSH2 0x528 PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x449 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x563 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x57D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x593 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x59B PUSH2 0x533 JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0x60A PUSH2 0x140 DUP4 ADD PUSH2 0x569 JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x61D PUSH2 0x160 DUP4 ADD PUSH2 0x569 JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x63D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x647 DUP7 DUP7 PUSH2 0x582 JUMP JUMPDEST SWAP7 PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP7 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP6 PUSH2 0x1C0 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP 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 0x23C JUMPI PUSH2 0x23C PUSH2 0x664 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x57D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xE0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x6E0 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 SWAP1 DUP2 MSTORE DUP4 CALLDATALOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP6 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE DUP4 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 SWAP3 DUP4 ADD CALLDATALOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x300 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x743 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x74D DUP10 DUP10 PUSH2 0x582 JUMP JUMPDEST SWAP7 POP PUSH2 0x180 DUP9 ADD CALLDATALOAD SWAP6 POP PUSH2 0x1A0 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH2 0x1C0 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0x774 PUSH2 0x1E0 DUP10 ADD PUSH2 0x569 JUMP JUMPDEST SWAP3 POP PUSH2 0x783 PUSH2 0x200 DUP10 ADD PUSH2 0x68B JUMP JUMPDEST SWAP2 POP PUSH2 0x793 DUP10 PUSH2 0x220 DUP11 ADD PUSH2 0x6A1 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x180 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x7B7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x7D5 PUSH1 0x60 DUP9 ADD PUSH2 0x569 JUMP JUMPDEST SWAP3 POP PUSH2 0x7E3 PUSH1 0x80 DUP9 ADD PUSH2 0x68B JUMP JUMPDEST SWAP2 POP PUSH2 0x7F2 DUP9 PUSH1 0xA0 DUP10 ADD PUSH2 0x6A1 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x23C JUMPI PUSH2 0x23C PUSH2 0x664 JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x82F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x23C JUMPI PUSH2 0x23C PUSH2 0x664 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CODECOPY PUSH21 0x20A52B179EAE14125FBB6787DD0E909F52462792BA NOT 0xC8 EXTSTATICCALL PC 0xBD CALLCODE GASLIMIT 0x4F DELEGATECALL PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"382:1703:39:-:0;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@duration_8215":{"entryPoint":635,"id":8215,"parameterSlots":1,"returnSlots":1},"@jrAccruedInterest_8149":{"entryPoint":505,"id":8149,"parameterSlots":1,"returnSlots":1},"@priceNewPolicy_15319":{"entryPoint":409,"id":15319,"parameterSlots":3,"returnSlots":6},"@pricePolicyCancellation_15438":{"entryPoint":186,"id":15438,"parameterSlots":3,"returnSlots":4},"@pricePolicyReplacement_15365":{"entryPoint":300,"id":15365,"parameterSlots":3,"returnSlots":7},"@srAccruedInterest_8199":{"entryPoint":578,"id":8199,"parameterSlots":1,"returnSlots":1},"abi_decode_struct_Params":{"entryPoint":1697,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_struct_PolicyData":{"entryPoint":1410,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_bytes_calldata_ptr":{"entryPoint":757,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256":{"entryPoint":1577,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$7718_memory_ptr":{"entryPoint":1836,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$7718_memory_ptr":{"entryPoint":1953,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_uint40":{"entryPoint":1385,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint96":{"entryPoint":1675,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_struct_Params":{"entryPoint":1097,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_struct_PolicyData":{"entryPoint":896,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":1052,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__fromStack_reversed":{"entryPoint":1165,"id":null,"parameterSlots":8,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__to_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__fromStack_reversed":{"entryPoint":1257,"id":null,"parameterSlots":7,"returnSlots":1},"abi_encode_uint40":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"allocate_memory":{"entryPoint":1331,"id":null,"parameterSlots":0,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":2069,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":2046,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":1656,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint40":{"entryPoint":2100,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":1636,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:10596:125","nodeType":"YulBlock","src":"0:10596:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"120:654:125","nodeType":"YulBlock","src":"120:654:125","statements":[{"body":{"nativeSrc":"166:16:125","nodeType":"YulBlock","src":"166:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"175:1:125","nodeType":"YulLiteral","src":"175:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"178:1:125","nodeType":"YulLiteral","src":"178:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"168:6:125","nodeType":"YulIdentifier","src":"168:6:125"},"nativeSrc":"168:12:125","nodeType":"YulFunctionCall","src":"168:12:125"},"nativeSrc":"168:12:125","nodeType":"YulExpressionStatement","src":"168:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"141:7:125","nodeType":"YulIdentifier","src":"141:7:125"},{"name":"headStart","nativeSrc":"150:9:125","nodeType":"YulIdentifier","src":"150:9:125"}],"functionName":{"name":"sub","nativeSrc":"137:3:125","nodeType":"YulIdentifier","src":"137:3:125"},"nativeSrc":"137:23:125","nodeType":"YulFunctionCall","src":"137:23:125"},{"kind":"number","nativeSrc":"162:2:125","nodeType":"YulLiteral","src":"162:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"133:3:125","nodeType":"YulIdentifier","src":"133:3:125"},"nativeSrc":"133:32:125","nodeType":"YulFunctionCall","src":"133:32:125"},"nativeSrc":"130:52:125","nodeType":"YulIf","src":"130:52:125"},{"nativeSrc":"191:36:125","nodeType":"YulVariableDeclaration","src":"191:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"217:9:125","nodeType":"YulIdentifier","src":"217:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"204:12:125","nodeType":"YulIdentifier","src":"204:12:125"},"nativeSrc":"204:23:125","nodeType":"YulFunctionCall","src":"204:23:125"},"variables":[{"name":"value","nativeSrc":"195:5:125","nodeType":"YulTypedName","src":"195:5:125","type":""}]},{"body":{"nativeSrc":"290:16:125","nodeType":"YulBlock","src":"290:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"299:1:125","nodeType":"YulLiteral","src":"299:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"302:1:125","nodeType":"YulLiteral","src":"302:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"292:6:125","nodeType":"YulIdentifier","src":"292:6:125"},"nativeSrc":"292:12:125","nodeType":"YulFunctionCall","src":"292:12:125"},"nativeSrc":"292:12:125","nodeType":"YulExpressionStatement","src":"292:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"249:5:125","nodeType":"YulIdentifier","src":"249:5:125"},{"arguments":[{"name":"value","nativeSrc":"260:5:125","nodeType":"YulIdentifier","src":"260:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"275:3:125","nodeType":"YulLiteral","src":"275:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"280:1:125","nodeType":"YulLiteral","src":"280:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"271:3:125","nodeType":"YulIdentifier","src":"271:3:125"},"nativeSrc":"271:11:125","nodeType":"YulFunctionCall","src":"271:11:125"},{"kind":"number","nativeSrc":"284:1:125","nodeType":"YulLiteral","src":"284:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"267:3:125","nodeType":"YulIdentifier","src":"267:3:125"},"nativeSrc":"267:19:125","nodeType":"YulFunctionCall","src":"267:19:125"}],"functionName":{"name":"and","nativeSrc":"256:3:125","nodeType":"YulIdentifier","src":"256:3:125"},"nativeSrc":"256:31:125","nodeType":"YulFunctionCall","src":"256:31:125"}],"functionName":{"name":"eq","nativeSrc":"246:2:125","nodeType":"YulIdentifier","src":"246:2:125"},"nativeSrc":"246:42:125","nodeType":"YulFunctionCall","src":"246:42:125"}],"functionName":{"name":"iszero","nativeSrc":"239:6:125","nodeType":"YulIdentifier","src":"239:6:125"},"nativeSrc":"239:50:125","nodeType":"YulFunctionCall","src":"239:50:125"},"nativeSrc":"236:70:125","nodeType":"YulIf","src":"236:70:125"},{"nativeSrc":"315:15:125","nodeType":"YulAssignment","src":"315:15:125","value":{"name":"value","nativeSrc":"325:5:125","nodeType":"YulIdentifier","src":"325:5:125"},"variableNames":[{"name":"value0","nativeSrc":"315:6:125","nodeType":"YulIdentifier","src":"315:6:125"}]},{"nativeSrc":"339:46:125","nodeType":"YulVariableDeclaration","src":"339:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"370:9:125","nodeType":"YulIdentifier","src":"370:9:125"},{"kind":"number","nativeSrc":"381:2:125","nodeType":"YulLiteral","src":"381:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"366:3:125","nodeType":"YulIdentifier","src":"366:3:125"},"nativeSrc":"366:18:125","nodeType":"YulFunctionCall","src":"366:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"353:12:125","nodeType":"YulIdentifier","src":"353:12:125"},"nativeSrc":"353:32:125","nodeType":"YulFunctionCall","src":"353:32:125"},"variables":[{"name":"offset","nativeSrc":"343:6:125","nodeType":"YulTypedName","src":"343:6:125","type":""}]},{"body":{"nativeSrc":"428:16:125","nodeType":"YulBlock","src":"428:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"437:1:125","nodeType":"YulLiteral","src":"437:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"440:1:125","nodeType":"YulLiteral","src":"440:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"430:6:125","nodeType":"YulIdentifier","src":"430:6:125"},"nativeSrc":"430:12:125","nodeType":"YulFunctionCall","src":"430:12:125"},"nativeSrc":"430:12:125","nodeType":"YulExpressionStatement","src":"430:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"400:6:125","nodeType":"YulIdentifier","src":"400:6:125"},{"kind":"number","nativeSrc":"408:18:125","nodeType":"YulLiteral","src":"408:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"397:2:125","nodeType":"YulIdentifier","src":"397:2:125"},"nativeSrc":"397:30:125","nodeType":"YulFunctionCall","src":"397:30:125"},"nativeSrc":"394:50:125","nodeType":"YulIf","src":"394:50:125"},{"nativeSrc":"453:32:125","nodeType":"YulVariableDeclaration","src":"453:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"467:9:125","nodeType":"YulIdentifier","src":"467:9:125"},{"name":"offset","nativeSrc":"478:6:125","nodeType":"YulIdentifier","src":"478:6:125"}],"functionName":{"name":"add","nativeSrc":"463:3:125","nodeType":"YulIdentifier","src":"463:3:125"},"nativeSrc":"463:22:125","nodeType":"YulFunctionCall","src":"463:22:125"},"variables":[{"name":"_1","nativeSrc":"457:2:125","nodeType":"YulTypedName","src":"457:2:125","type":""}]},{"body":{"nativeSrc":"533:16:125","nodeType":"YulBlock","src":"533:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"542:1:125","nodeType":"YulLiteral","src":"542:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"545:1:125","nodeType":"YulLiteral","src":"545:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"535:6:125","nodeType":"YulIdentifier","src":"535:6:125"},"nativeSrc":"535:12:125","nodeType":"YulFunctionCall","src":"535:12:125"},"nativeSrc":"535:12:125","nodeType":"YulExpressionStatement","src":"535:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"512:2:125","nodeType":"YulIdentifier","src":"512:2:125"},{"kind":"number","nativeSrc":"516:4:125","nodeType":"YulLiteral","src":"516:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"508:3:125","nodeType":"YulIdentifier","src":"508:3:125"},"nativeSrc":"508:13:125","nodeType":"YulFunctionCall","src":"508:13:125"},{"name":"dataEnd","nativeSrc":"523:7:125","nodeType":"YulIdentifier","src":"523:7:125"}],"functionName":{"name":"slt","nativeSrc":"504:3:125","nodeType":"YulIdentifier","src":"504:3:125"},"nativeSrc":"504:27:125","nodeType":"YulFunctionCall","src":"504:27:125"}],"functionName":{"name":"iszero","nativeSrc":"497:6:125","nodeType":"YulIdentifier","src":"497:6:125"},"nativeSrc":"497:35:125","nodeType":"YulFunctionCall","src":"497:35:125"},"nativeSrc":"494:55:125","nodeType":"YulIf","src":"494:55:125"},{"nativeSrc":"558:30:125","nodeType":"YulVariableDeclaration","src":"558:30:125","value":{"arguments":[{"name":"_1","nativeSrc":"585:2:125","nodeType":"YulIdentifier","src":"585:2:125"}],"functionName":{"name":"calldataload","nativeSrc":"572:12:125","nodeType":"YulIdentifier","src":"572:12:125"},"nativeSrc":"572:16:125","nodeType":"YulFunctionCall","src":"572:16:125"},"variables":[{"name":"length","nativeSrc":"562:6:125","nodeType":"YulTypedName","src":"562:6:125","type":""}]},{"body":{"nativeSrc":"631:16:125","nodeType":"YulBlock","src":"631:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"640:1:125","nodeType":"YulLiteral","src":"640:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"643:1:125","nodeType":"YulLiteral","src":"643:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"633:6:125","nodeType":"YulIdentifier","src":"633:6:125"},"nativeSrc":"633:12:125","nodeType":"YulFunctionCall","src":"633:12:125"},"nativeSrc":"633:12:125","nodeType":"YulExpressionStatement","src":"633:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"603:6:125","nodeType":"YulIdentifier","src":"603:6:125"},{"kind":"number","nativeSrc":"611:18:125","nodeType":"YulLiteral","src":"611:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"600:2:125","nodeType":"YulIdentifier","src":"600:2:125"},"nativeSrc":"600:30:125","nodeType":"YulFunctionCall","src":"600:30:125"},"nativeSrc":"597:50:125","nodeType":"YulIf","src":"597:50:125"},{"body":{"nativeSrc":"697:16:125","nodeType":"YulBlock","src":"697:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"706:1:125","nodeType":"YulLiteral","src":"706:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"709:1:125","nodeType":"YulLiteral","src":"709:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"699:6:125","nodeType":"YulIdentifier","src":"699:6:125"},"nativeSrc":"699:12:125","nodeType":"YulFunctionCall","src":"699:12:125"},"nativeSrc":"699:12:125","nodeType":"YulExpressionStatement","src":"699:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"670:2:125","nodeType":"YulIdentifier","src":"670:2:125"},{"name":"length","nativeSrc":"674:6:125","nodeType":"YulIdentifier","src":"674:6:125"}],"functionName":{"name":"add","nativeSrc":"666:3:125","nodeType":"YulIdentifier","src":"666:3:125"},"nativeSrc":"666:15:125","nodeType":"YulFunctionCall","src":"666:15:125"},{"kind":"number","nativeSrc":"683:2:125","nodeType":"YulLiteral","src":"683:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"662:3:125","nodeType":"YulIdentifier","src":"662:3:125"},"nativeSrc":"662:24:125","nodeType":"YulFunctionCall","src":"662:24:125"},{"name":"dataEnd","nativeSrc":"688:7:125","nodeType":"YulIdentifier","src":"688:7:125"}],"functionName":{"name":"gt","nativeSrc":"659:2:125","nodeType":"YulIdentifier","src":"659:2:125"},"nativeSrc":"659:37:125","nodeType":"YulFunctionCall","src":"659:37:125"},"nativeSrc":"656:57:125","nodeType":"YulIf","src":"656:57:125"},{"nativeSrc":"722:21:125","nodeType":"YulAssignment","src":"722:21:125","value":{"arguments":[{"name":"_1","nativeSrc":"736:2:125","nodeType":"YulIdentifier","src":"736:2:125"},{"kind":"number","nativeSrc":"740:2:125","nodeType":"YulLiteral","src":"740:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"732:3:125","nodeType":"YulIdentifier","src":"732:3:125"},"nativeSrc":"732:11:125","nodeType":"YulFunctionCall","src":"732:11:125"},"variableNames":[{"name":"value1","nativeSrc":"722:6:125","nodeType":"YulIdentifier","src":"722:6:125"}]},{"nativeSrc":"752:16:125","nodeType":"YulAssignment","src":"752:16:125","value":{"name":"length","nativeSrc":"762:6:125","nodeType":"YulIdentifier","src":"762:6:125"},"variableNames":[{"name":"value2","nativeSrc":"752:6:125","nodeType":"YulIdentifier","src":"752:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptr","nativeSrc":"14:760:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"70:9:125","nodeType":"YulTypedName","src":"70:9:125","type":""},{"name":"dataEnd","nativeSrc":"81:7:125","nodeType":"YulTypedName","src":"81:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"93:6:125","nodeType":"YulTypedName","src":"93:6:125","type":""},{"name":"value1","nativeSrc":"101:6:125","nodeType":"YulTypedName","src":"101:6:125","type":""},{"name":"value2","nativeSrc":"109:6:125","nodeType":"YulTypedName","src":"109:6:125","type":""}],"src":"14:760:125"},{"body":{"nativeSrc":"822:53:125","nodeType":"YulBlock","src":"822:53:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"839:3:125","nodeType":"YulIdentifier","src":"839:3:125"},{"arguments":[{"name":"value","nativeSrc":"848:5:125","nodeType":"YulIdentifier","src":"848:5:125"},{"kind":"number","nativeSrc":"855:12:125","nodeType":"YulLiteral","src":"855:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"844:3:125","nodeType":"YulIdentifier","src":"844:3:125"},"nativeSrc":"844:24:125","nodeType":"YulFunctionCall","src":"844:24:125"}],"functionName":{"name":"mstore","nativeSrc":"832:6:125","nodeType":"YulIdentifier","src":"832:6:125"},"nativeSrc":"832:37:125","nodeType":"YulFunctionCall","src":"832:37:125"},"nativeSrc":"832:37:125","nodeType":"YulExpressionStatement","src":"832:37:125"}]},"name":"abi_encode_uint40","nativeSrc":"779:96:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"806:5:125","nodeType":"YulTypedName","src":"806:5:125","type":""},{"name":"pos","nativeSrc":"813:3:125","nodeType":"YulTypedName","src":"813:3:125","type":""}],"src":"779:96:125"},{"body":{"nativeSrc":"934:781:125","nodeType":"YulBlock","src":"934:781:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"951:3:125","nodeType":"YulIdentifier","src":"951:3:125"},{"arguments":[{"name":"value","nativeSrc":"962:5:125","nodeType":"YulIdentifier","src":"962:5:125"}],"functionName":{"name":"mload","nativeSrc":"956:5:125","nodeType":"YulIdentifier","src":"956:5:125"},"nativeSrc":"956:12:125","nodeType":"YulFunctionCall","src":"956:12:125"}],"functionName":{"name":"mstore","nativeSrc":"944:6:125","nodeType":"YulIdentifier","src":"944:6:125"},"nativeSrc":"944:25:125","nodeType":"YulFunctionCall","src":"944:25:125"},"nativeSrc":"944:25:125","nodeType":"YulExpressionStatement","src":"944:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"989:3:125","nodeType":"YulIdentifier","src":"989:3:125"},{"kind":"number","nativeSrc":"994:4:125","nodeType":"YulLiteral","src":"994:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"985:3:125","nodeType":"YulIdentifier","src":"985:3:125"},"nativeSrc":"985:14:125","nodeType":"YulFunctionCall","src":"985:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1011:5:125","nodeType":"YulIdentifier","src":"1011:5:125"},{"kind":"number","nativeSrc":"1018:4:125","nodeType":"YulLiteral","src":"1018:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1007:3:125","nodeType":"YulIdentifier","src":"1007:3:125"},"nativeSrc":"1007:16:125","nodeType":"YulFunctionCall","src":"1007:16:125"}],"functionName":{"name":"mload","nativeSrc":"1001:5:125","nodeType":"YulIdentifier","src":"1001:5:125"},"nativeSrc":"1001:23:125","nodeType":"YulFunctionCall","src":"1001:23:125"}],"functionName":{"name":"mstore","nativeSrc":"978:6:125","nodeType":"YulIdentifier","src":"978:6:125"},"nativeSrc":"978:47:125","nodeType":"YulFunctionCall","src":"978:47:125"},"nativeSrc":"978:47:125","nodeType":"YulExpressionStatement","src":"978:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1045:3:125","nodeType":"YulIdentifier","src":"1045:3:125"},{"kind":"number","nativeSrc":"1050:4:125","nodeType":"YulLiteral","src":"1050:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"1041:3:125","nodeType":"YulIdentifier","src":"1041:3:125"},"nativeSrc":"1041:14:125","nodeType":"YulFunctionCall","src":"1041:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1067:5:125","nodeType":"YulIdentifier","src":"1067:5:125"},{"kind":"number","nativeSrc":"1074:4:125","nodeType":"YulLiteral","src":"1074:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"1063:3:125","nodeType":"YulIdentifier","src":"1063:3:125"},"nativeSrc":"1063:16:125","nodeType":"YulFunctionCall","src":"1063:16:125"}],"functionName":{"name":"mload","nativeSrc":"1057:5:125","nodeType":"YulIdentifier","src":"1057:5:125"},"nativeSrc":"1057:23:125","nodeType":"YulFunctionCall","src":"1057:23:125"}],"functionName":{"name":"mstore","nativeSrc":"1034:6:125","nodeType":"YulIdentifier","src":"1034:6:125"},"nativeSrc":"1034:47:125","nodeType":"YulFunctionCall","src":"1034:47:125"},"nativeSrc":"1034:47:125","nodeType":"YulExpressionStatement","src":"1034:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1101:3:125","nodeType":"YulIdentifier","src":"1101:3:125"},{"kind":"number","nativeSrc":"1106:4:125","nodeType":"YulLiteral","src":"1106:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"1097:3:125","nodeType":"YulIdentifier","src":"1097:3:125"},"nativeSrc":"1097:14:125","nodeType":"YulFunctionCall","src":"1097:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1123:5:125","nodeType":"YulIdentifier","src":"1123:5:125"},{"kind":"number","nativeSrc":"1130:4:125","nodeType":"YulLiteral","src":"1130:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"1119:3:125","nodeType":"YulIdentifier","src":"1119:3:125"},"nativeSrc":"1119:16:125","nodeType":"YulFunctionCall","src":"1119:16:125"}],"functionName":{"name":"mload","nativeSrc":"1113:5:125","nodeType":"YulIdentifier","src":"1113:5:125"},"nativeSrc":"1113:23:125","nodeType":"YulFunctionCall","src":"1113:23:125"}],"functionName":{"name":"mstore","nativeSrc":"1090:6:125","nodeType":"YulIdentifier","src":"1090:6:125"},"nativeSrc":"1090:47:125","nodeType":"YulFunctionCall","src":"1090:47:125"},"nativeSrc":"1090:47:125","nodeType":"YulExpressionStatement","src":"1090:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1157:3:125","nodeType":"YulIdentifier","src":"1157:3:125"},{"kind":"number","nativeSrc":"1162:4:125","nodeType":"YulLiteral","src":"1162:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"1153:3:125","nodeType":"YulIdentifier","src":"1153:3:125"},"nativeSrc":"1153:14:125","nodeType":"YulFunctionCall","src":"1153:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1179:5:125","nodeType":"YulIdentifier","src":"1179:5:125"},{"kind":"number","nativeSrc":"1186:4:125","nodeType":"YulLiteral","src":"1186:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"1175:3:125","nodeType":"YulIdentifier","src":"1175:3:125"},"nativeSrc":"1175:16:125","nodeType":"YulFunctionCall","src":"1175:16:125"}],"functionName":{"name":"mload","nativeSrc":"1169:5:125","nodeType":"YulIdentifier","src":"1169:5:125"},"nativeSrc":"1169:23:125","nodeType":"YulFunctionCall","src":"1169:23:125"}],"functionName":{"name":"mstore","nativeSrc":"1146:6:125","nodeType":"YulIdentifier","src":"1146:6:125"},"nativeSrc":"1146:47:125","nodeType":"YulFunctionCall","src":"1146:47:125"},"nativeSrc":"1146:47:125","nodeType":"YulExpressionStatement","src":"1146:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1213:3:125","nodeType":"YulIdentifier","src":"1213:3:125"},{"kind":"number","nativeSrc":"1218:4:125","nodeType":"YulLiteral","src":"1218:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"1209:3:125","nodeType":"YulIdentifier","src":"1209:3:125"},"nativeSrc":"1209:14:125","nodeType":"YulFunctionCall","src":"1209:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1235:5:125","nodeType":"YulIdentifier","src":"1235:5:125"},{"kind":"number","nativeSrc":"1242:4:125","nodeType":"YulLiteral","src":"1242:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"1231:3:125","nodeType":"YulIdentifier","src":"1231:3:125"},"nativeSrc":"1231:16:125","nodeType":"YulFunctionCall","src":"1231:16:125"}],"functionName":{"name":"mload","nativeSrc":"1225:5:125","nodeType":"YulIdentifier","src":"1225:5:125"},"nativeSrc":"1225:23:125","nodeType":"YulFunctionCall","src":"1225:23:125"}],"functionName":{"name":"mstore","nativeSrc":"1202:6:125","nodeType":"YulIdentifier","src":"1202:6:125"},"nativeSrc":"1202:47:125","nodeType":"YulFunctionCall","src":"1202:47:125"},"nativeSrc":"1202:47:125","nodeType":"YulExpressionStatement","src":"1202:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1269:3:125","nodeType":"YulIdentifier","src":"1269:3:125"},{"kind":"number","nativeSrc":"1274:4:125","nodeType":"YulLiteral","src":"1274:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"1265:3:125","nodeType":"YulIdentifier","src":"1265:3:125"},"nativeSrc":"1265:14:125","nodeType":"YulFunctionCall","src":"1265:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1291:5:125","nodeType":"YulIdentifier","src":"1291:5:125"},{"kind":"number","nativeSrc":"1298:4:125","nodeType":"YulLiteral","src":"1298:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"1287:3:125","nodeType":"YulIdentifier","src":"1287:3:125"},"nativeSrc":"1287:16:125","nodeType":"YulFunctionCall","src":"1287:16:125"}],"functionName":{"name":"mload","nativeSrc":"1281:5:125","nodeType":"YulIdentifier","src":"1281:5:125"},"nativeSrc":"1281:23:125","nodeType":"YulFunctionCall","src":"1281:23:125"}],"functionName":{"name":"mstore","nativeSrc":"1258:6:125","nodeType":"YulIdentifier","src":"1258:6:125"},"nativeSrc":"1258:47:125","nodeType":"YulFunctionCall","src":"1258:47:125"},"nativeSrc":"1258:47:125","nodeType":"YulExpressionStatement","src":"1258:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1325:3:125","nodeType":"YulIdentifier","src":"1325:3:125"},{"kind":"number","nativeSrc":"1330:4:125","nodeType":"YulLiteral","src":"1330:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"1321:3:125","nodeType":"YulIdentifier","src":"1321:3:125"},"nativeSrc":"1321:14:125","nodeType":"YulFunctionCall","src":"1321:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1347:5:125","nodeType":"YulIdentifier","src":"1347:5:125"},{"kind":"number","nativeSrc":"1354:4:125","nodeType":"YulLiteral","src":"1354:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"1343:3:125","nodeType":"YulIdentifier","src":"1343:3:125"},"nativeSrc":"1343:16:125","nodeType":"YulFunctionCall","src":"1343:16:125"}],"functionName":{"name":"mload","nativeSrc":"1337:5:125","nodeType":"YulIdentifier","src":"1337:5:125"},"nativeSrc":"1337:23:125","nodeType":"YulFunctionCall","src":"1337:23:125"}],"functionName":{"name":"mstore","nativeSrc":"1314:6:125","nodeType":"YulIdentifier","src":"1314:6:125"},"nativeSrc":"1314:47:125","nodeType":"YulFunctionCall","src":"1314:47:125"},"nativeSrc":"1314:47:125","nodeType":"YulExpressionStatement","src":"1314:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1381:3:125","nodeType":"YulIdentifier","src":"1381:3:125"},{"kind":"number","nativeSrc":"1386:6:125","nodeType":"YulLiteral","src":"1386:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"1377:3:125","nodeType":"YulIdentifier","src":"1377:3:125"},"nativeSrc":"1377:16:125","nodeType":"YulFunctionCall","src":"1377:16:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1405:5:125","nodeType":"YulIdentifier","src":"1405:5:125"},{"kind":"number","nativeSrc":"1412:6:125","nodeType":"YulLiteral","src":"1412:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"1401:3:125","nodeType":"YulIdentifier","src":"1401:3:125"},"nativeSrc":"1401:18:125","nodeType":"YulFunctionCall","src":"1401:18:125"}],"functionName":{"name":"mload","nativeSrc":"1395:5:125","nodeType":"YulIdentifier","src":"1395:5:125"},"nativeSrc":"1395:25:125","nodeType":"YulFunctionCall","src":"1395:25:125"}],"functionName":{"name":"mstore","nativeSrc":"1370:6:125","nodeType":"YulIdentifier","src":"1370:6:125"},"nativeSrc":"1370:51:125","nodeType":"YulFunctionCall","src":"1370:51:125"},"nativeSrc":"1370:51:125","nodeType":"YulExpressionStatement","src":"1370:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1441:3:125","nodeType":"YulIdentifier","src":"1441:3:125"},{"kind":"number","nativeSrc":"1446:6:125","nodeType":"YulLiteral","src":"1446:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"1437:3:125","nodeType":"YulIdentifier","src":"1437:3:125"},"nativeSrc":"1437:16:125","nodeType":"YulFunctionCall","src":"1437:16:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1465:5:125","nodeType":"YulIdentifier","src":"1465:5:125"},{"kind":"number","nativeSrc":"1472:6:125","nodeType":"YulLiteral","src":"1472:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"1461:3:125","nodeType":"YulIdentifier","src":"1461:3:125"},"nativeSrc":"1461:18:125","nodeType":"YulFunctionCall","src":"1461:18:125"}],"functionName":{"name":"mload","nativeSrc":"1455:5:125","nodeType":"YulIdentifier","src":"1455:5:125"},"nativeSrc":"1455:25:125","nodeType":"YulFunctionCall","src":"1455:25:125"}],"functionName":{"name":"mstore","nativeSrc":"1430:6:125","nodeType":"YulIdentifier","src":"1430:6:125"},"nativeSrc":"1430:51:125","nodeType":"YulFunctionCall","src":"1430:51:125"},"nativeSrc":"1430:51:125","nodeType":"YulExpressionStatement","src":"1430:51:125"},{"nativeSrc":"1490:45:125","nodeType":"YulVariableDeclaration","src":"1490:45:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1520:5:125","nodeType":"YulIdentifier","src":"1520:5:125"},{"kind":"number","nativeSrc":"1527:6:125","nodeType":"YulLiteral","src":"1527:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"1516:3:125","nodeType":"YulIdentifier","src":"1516:3:125"},"nativeSrc":"1516:18:125","nodeType":"YulFunctionCall","src":"1516:18:125"}],"functionName":{"name":"mload","nativeSrc":"1510:5:125","nodeType":"YulIdentifier","src":"1510:5:125"},"nativeSrc":"1510:25:125","nodeType":"YulFunctionCall","src":"1510:25:125"},"variables":[{"name":"memberValue0","nativeSrc":"1494:12:125","nodeType":"YulTypedName","src":"1494:12:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"1562:12:125","nodeType":"YulIdentifier","src":"1562:12:125"},{"arguments":[{"name":"pos","nativeSrc":"1580:3:125","nodeType":"YulIdentifier","src":"1580:3:125"},{"kind":"number","nativeSrc":"1585:6:125","nodeType":"YulLiteral","src":"1585:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"1576:3:125","nodeType":"YulIdentifier","src":"1576:3:125"},"nativeSrc":"1576:16:125","nodeType":"YulFunctionCall","src":"1576:16:125"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"1544:17:125","nodeType":"YulIdentifier","src":"1544:17:125"},"nativeSrc":"1544:49:125","nodeType":"YulFunctionCall","src":"1544:49:125"},"nativeSrc":"1544:49:125","nodeType":"YulExpressionStatement","src":"1544:49:125"},{"nativeSrc":"1602:47:125","nodeType":"YulVariableDeclaration","src":"1602:47:125","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1634:5:125","nodeType":"YulIdentifier","src":"1634:5:125"},{"kind":"number","nativeSrc":"1641:6:125","nodeType":"YulLiteral","src":"1641:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"1630:3:125","nodeType":"YulIdentifier","src":"1630:3:125"},"nativeSrc":"1630:18:125","nodeType":"YulFunctionCall","src":"1630:18:125"}],"functionName":{"name":"mload","nativeSrc":"1624:5:125","nodeType":"YulIdentifier","src":"1624:5:125"},"nativeSrc":"1624:25:125","nodeType":"YulFunctionCall","src":"1624:25:125"},"variables":[{"name":"memberValue0_1","nativeSrc":"1606:14:125","nodeType":"YulTypedName","src":"1606:14:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nativeSrc":"1676:14:125","nodeType":"YulIdentifier","src":"1676:14:125"},{"arguments":[{"name":"pos","nativeSrc":"1696:3:125","nodeType":"YulIdentifier","src":"1696:3:125"},{"kind":"number","nativeSrc":"1701:6:125","nodeType":"YulLiteral","src":"1701:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"1692:3:125","nodeType":"YulIdentifier","src":"1692:3:125"},"nativeSrc":"1692:16:125","nodeType":"YulFunctionCall","src":"1692:16:125"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"1658:17:125","nodeType":"YulIdentifier","src":"1658:17:125"},"nativeSrc":"1658:51:125","nodeType":"YulFunctionCall","src":"1658:51:125"},"nativeSrc":"1658:51:125","nodeType":"YulExpressionStatement","src":"1658:51:125"}]},"name":"abi_encode_struct_PolicyData","nativeSrc":"880:835:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"918:5:125","nodeType":"YulTypedName","src":"918:5:125","type":""},{"name":"pos","nativeSrc":"925:3:125","nodeType":"YulTypedName","src":"925:3:125","type":""}],"src":"880:835:125"},{"body":{"nativeSrc":"1961:231:125","nodeType":"YulBlock","src":"1961:231:125","statements":[{"nativeSrc":"1971:27:125","nodeType":"YulAssignment","src":"1971:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1983:9:125","nodeType":"YulIdentifier","src":"1983:9:125"},{"kind":"number","nativeSrc":"1994:3:125","nodeType":"YulLiteral","src":"1994:3:125","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"1979:3:125","nodeType":"YulIdentifier","src":"1979:3:125"},"nativeSrc":"1979:19:125","nodeType":"YulFunctionCall","src":"1979:19:125"},"variableNames":[{"name":"tail","nativeSrc":"1971:4:125","nodeType":"YulIdentifier","src":"1971:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"2036:6:125","nodeType":"YulIdentifier","src":"2036:6:125"},{"name":"headStart","nativeSrc":"2044:9:125","nodeType":"YulIdentifier","src":"2044:9:125"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"2007:28:125","nodeType":"YulIdentifier","src":"2007:28:125"},"nativeSrc":"2007:47:125","nodeType":"YulFunctionCall","src":"2007:47:125"},"nativeSrc":"2007:47:125","nodeType":"YulExpressionStatement","src":"2007:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2074:9:125","nodeType":"YulIdentifier","src":"2074:9:125"},{"kind":"number","nativeSrc":"2085:3:125","nodeType":"YulLiteral","src":"2085:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"2070:3:125","nodeType":"YulIdentifier","src":"2070:3:125"},"nativeSrc":"2070:19:125","nodeType":"YulFunctionCall","src":"2070:19:125"},{"name":"value1","nativeSrc":"2091:6:125","nodeType":"YulIdentifier","src":"2091:6:125"}],"functionName":{"name":"mstore","nativeSrc":"2063:6:125","nodeType":"YulIdentifier","src":"2063:6:125"},"nativeSrc":"2063:35:125","nodeType":"YulFunctionCall","src":"2063:35:125"},"nativeSrc":"2063:35:125","nodeType":"YulExpressionStatement","src":"2063:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2118:9:125","nodeType":"YulIdentifier","src":"2118:9:125"},{"kind":"number","nativeSrc":"2129:3:125","nodeType":"YulLiteral","src":"2129:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"2114:3:125","nodeType":"YulIdentifier","src":"2114:3:125"},"nativeSrc":"2114:19:125","nodeType":"YulFunctionCall","src":"2114:19:125"},{"name":"value2","nativeSrc":"2135:6:125","nodeType":"YulIdentifier","src":"2135:6:125"}],"functionName":{"name":"mstore","nativeSrc":"2107:6:125","nodeType":"YulIdentifier","src":"2107:6:125"},"nativeSrc":"2107:35:125","nodeType":"YulFunctionCall","src":"2107:35:125"},"nativeSrc":"2107:35:125","nodeType":"YulExpressionStatement","src":"2107:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2162:9:125","nodeType":"YulIdentifier","src":"2162:9:125"},{"kind":"number","nativeSrc":"2173:3:125","nodeType":"YulLiteral","src":"2173:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"2158:3:125","nodeType":"YulIdentifier","src":"2158:3:125"},"nativeSrc":"2158:19:125","nodeType":"YulFunctionCall","src":"2158:19:125"},{"name":"value3","nativeSrc":"2179:6:125","nodeType":"YulIdentifier","src":"2179:6:125"}],"functionName":{"name":"mstore","nativeSrc":"2151:6:125","nodeType":"YulIdentifier","src":"2151:6:125"},"nativeSrc":"2151:35:125","nodeType":"YulFunctionCall","src":"2151:35:125"},"nativeSrc":"2151:35:125","nodeType":"YulExpressionStatement","src":"2151:35:125"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"1720:472:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1906:9:125","nodeType":"YulTypedName","src":"1906:9:125","type":""},{"name":"value3","nativeSrc":"1917:6:125","nodeType":"YulTypedName","src":"1917:6:125","type":""},{"name":"value2","nativeSrc":"1925:6:125","nodeType":"YulTypedName","src":"1925:6:125","type":""},{"name":"value1","nativeSrc":"1933:6:125","nodeType":"YulTypedName","src":"1933:6:125","type":""},{"name":"value0","nativeSrc":"1941:6:125","nodeType":"YulTypedName","src":"1941:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1952:4:125","nodeType":"YulTypedName","src":"1952:4:125","type":""}],"src":"1720:472:125"},{"body":{"nativeSrc":"2247:377:125","nodeType":"YulBlock","src":"2247:377:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"2264:3:125","nodeType":"YulIdentifier","src":"2264:3:125"},{"arguments":[{"name":"value","nativeSrc":"2275:5:125","nodeType":"YulIdentifier","src":"2275:5:125"}],"functionName":{"name":"mload","nativeSrc":"2269:5:125","nodeType":"YulIdentifier","src":"2269:5:125"},"nativeSrc":"2269:12:125","nodeType":"YulFunctionCall","src":"2269:12:125"}],"functionName":{"name":"mstore","nativeSrc":"2257:6:125","nodeType":"YulIdentifier","src":"2257:6:125"},"nativeSrc":"2257:25:125","nodeType":"YulFunctionCall","src":"2257:25:125"},"nativeSrc":"2257:25:125","nodeType":"YulExpressionStatement","src":"2257:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2302:3:125","nodeType":"YulIdentifier","src":"2302:3:125"},{"kind":"number","nativeSrc":"2307:4:125","nodeType":"YulLiteral","src":"2307:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2298:3:125","nodeType":"YulIdentifier","src":"2298:3:125"},"nativeSrc":"2298:14:125","nodeType":"YulFunctionCall","src":"2298:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2324:5:125","nodeType":"YulIdentifier","src":"2324:5:125"},{"kind":"number","nativeSrc":"2331:4:125","nodeType":"YulLiteral","src":"2331:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2320:3:125","nodeType":"YulIdentifier","src":"2320:3:125"},"nativeSrc":"2320:16:125","nodeType":"YulFunctionCall","src":"2320:16:125"}],"functionName":{"name":"mload","nativeSrc":"2314:5:125","nodeType":"YulIdentifier","src":"2314:5:125"},"nativeSrc":"2314:23:125","nodeType":"YulFunctionCall","src":"2314:23:125"}],"functionName":{"name":"mstore","nativeSrc":"2291:6:125","nodeType":"YulIdentifier","src":"2291:6:125"},"nativeSrc":"2291:47:125","nodeType":"YulFunctionCall","src":"2291:47:125"},"nativeSrc":"2291:47:125","nodeType":"YulExpressionStatement","src":"2291:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2358:3:125","nodeType":"YulIdentifier","src":"2358:3:125"},{"kind":"number","nativeSrc":"2363:4:125","nodeType":"YulLiteral","src":"2363:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"2354:3:125","nodeType":"YulIdentifier","src":"2354:3:125"},"nativeSrc":"2354:14:125","nodeType":"YulFunctionCall","src":"2354:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2380:5:125","nodeType":"YulIdentifier","src":"2380:5:125"},{"kind":"number","nativeSrc":"2387:4:125","nodeType":"YulLiteral","src":"2387:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"2376:3:125","nodeType":"YulIdentifier","src":"2376:3:125"},"nativeSrc":"2376:16:125","nodeType":"YulFunctionCall","src":"2376:16:125"}],"functionName":{"name":"mload","nativeSrc":"2370:5:125","nodeType":"YulIdentifier","src":"2370:5:125"},"nativeSrc":"2370:23:125","nodeType":"YulFunctionCall","src":"2370:23:125"}],"functionName":{"name":"mstore","nativeSrc":"2347:6:125","nodeType":"YulIdentifier","src":"2347:6:125"},"nativeSrc":"2347:47:125","nodeType":"YulFunctionCall","src":"2347:47:125"},"nativeSrc":"2347:47:125","nodeType":"YulExpressionStatement","src":"2347:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2414:3:125","nodeType":"YulIdentifier","src":"2414:3:125"},{"kind":"number","nativeSrc":"2419:4:125","nodeType":"YulLiteral","src":"2419:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"2410:3:125","nodeType":"YulIdentifier","src":"2410:3:125"},"nativeSrc":"2410:14:125","nodeType":"YulFunctionCall","src":"2410:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2436:5:125","nodeType":"YulIdentifier","src":"2436:5:125"},{"kind":"number","nativeSrc":"2443:4:125","nodeType":"YulLiteral","src":"2443:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"2432:3:125","nodeType":"YulIdentifier","src":"2432:3:125"},"nativeSrc":"2432:16:125","nodeType":"YulFunctionCall","src":"2432:16:125"}],"functionName":{"name":"mload","nativeSrc":"2426:5:125","nodeType":"YulIdentifier","src":"2426:5:125"},"nativeSrc":"2426:23:125","nodeType":"YulFunctionCall","src":"2426:23:125"}],"functionName":{"name":"mstore","nativeSrc":"2403:6:125","nodeType":"YulIdentifier","src":"2403:6:125"},"nativeSrc":"2403:47:125","nodeType":"YulFunctionCall","src":"2403:47:125"},"nativeSrc":"2403:47:125","nodeType":"YulExpressionStatement","src":"2403:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2470:3:125","nodeType":"YulIdentifier","src":"2470:3:125"},{"kind":"number","nativeSrc":"2475:4:125","nodeType":"YulLiteral","src":"2475:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"2466:3:125","nodeType":"YulIdentifier","src":"2466:3:125"},"nativeSrc":"2466:14:125","nodeType":"YulFunctionCall","src":"2466:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2492:5:125","nodeType":"YulIdentifier","src":"2492:5:125"},{"kind":"number","nativeSrc":"2499:4:125","nodeType":"YulLiteral","src":"2499:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"2488:3:125","nodeType":"YulIdentifier","src":"2488:3:125"},"nativeSrc":"2488:16:125","nodeType":"YulFunctionCall","src":"2488:16:125"}],"functionName":{"name":"mload","nativeSrc":"2482:5:125","nodeType":"YulIdentifier","src":"2482:5:125"},"nativeSrc":"2482:23:125","nodeType":"YulFunctionCall","src":"2482:23:125"}],"functionName":{"name":"mstore","nativeSrc":"2459:6:125","nodeType":"YulIdentifier","src":"2459:6:125"},"nativeSrc":"2459:47:125","nodeType":"YulFunctionCall","src":"2459:47:125"},"nativeSrc":"2459:47:125","nodeType":"YulExpressionStatement","src":"2459:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2526:3:125","nodeType":"YulIdentifier","src":"2526:3:125"},{"kind":"number","nativeSrc":"2531:4:125","nodeType":"YulLiteral","src":"2531:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"2522:3:125","nodeType":"YulIdentifier","src":"2522:3:125"},"nativeSrc":"2522:14:125","nodeType":"YulFunctionCall","src":"2522:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2548:5:125","nodeType":"YulIdentifier","src":"2548:5:125"},{"kind":"number","nativeSrc":"2555:4:125","nodeType":"YulLiteral","src":"2555:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"2544:3:125","nodeType":"YulIdentifier","src":"2544:3:125"},"nativeSrc":"2544:16:125","nodeType":"YulFunctionCall","src":"2544:16:125"}],"functionName":{"name":"mload","nativeSrc":"2538:5:125","nodeType":"YulIdentifier","src":"2538:5:125"},"nativeSrc":"2538:23:125","nodeType":"YulFunctionCall","src":"2538:23:125"}],"functionName":{"name":"mstore","nativeSrc":"2515:6:125","nodeType":"YulIdentifier","src":"2515:6:125"},"nativeSrc":"2515:47:125","nodeType":"YulFunctionCall","src":"2515:47:125"},"nativeSrc":"2515:47:125","nodeType":"YulExpressionStatement","src":"2515:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2582:3:125","nodeType":"YulIdentifier","src":"2582:3:125"},{"kind":"number","nativeSrc":"2587:4:125","nodeType":"YulLiteral","src":"2587:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"2578:3:125","nodeType":"YulIdentifier","src":"2578:3:125"},"nativeSrc":"2578:14:125","nodeType":"YulFunctionCall","src":"2578:14:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2604:5:125","nodeType":"YulIdentifier","src":"2604:5:125"},{"kind":"number","nativeSrc":"2611:4:125","nodeType":"YulLiteral","src":"2611:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"2600:3:125","nodeType":"YulIdentifier","src":"2600:3:125"},"nativeSrc":"2600:16:125","nodeType":"YulFunctionCall","src":"2600:16:125"}],"functionName":{"name":"mload","nativeSrc":"2594:5:125","nodeType":"YulIdentifier","src":"2594:5:125"},"nativeSrc":"2594:23:125","nodeType":"YulFunctionCall","src":"2594:23:125"}],"functionName":{"name":"mstore","nativeSrc":"2571:6:125","nodeType":"YulIdentifier","src":"2571:6:125"},"nativeSrc":"2571:47:125","nodeType":"YulFunctionCall","src":"2571:47:125"},"nativeSrc":"2571:47:125","nodeType":"YulExpressionStatement","src":"2571:47:125"}]},"name":"abi_encode_struct_Params","nativeSrc":"2197:427:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"2231:5:125","nodeType":"YulTypedName","src":"2231:5:125","type":""},{"name":"pos","nativeSrc":"2238:3:125","nodeType":"YulTypedName","src":"2238:3:125","type":""}],"src":"2197:427:125"},{"body":{"nativeSrc":"2998:433:125","nodeType":"YulBlock","src":"2998:433:125","statements":[{"nativeSrc":"3008:27:125","nodeType":"YulAssignment","src":"3008:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3020:9:125","nodeType":"YulIdentifier","src":"3020:9:125"},{"kind":"number","nativeSrc":"3031:3:125","nodeType":"YulLiteral","src":"3031:3:125","type":"","value":"768"}],"functionName":{"name":"add","nativeSrc":"3016:3:125","nodeType":"YulIdentifier","src":"3016:3:125"},"nativeSrc":"3016:19:125","nodeType":"YulFunctionCall","src":"3016:19:125"},"variableNames":[{"name":"tail","nativeSrc":"3008:4:125","nodeType":"YulIdentifier","src":"3008:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"3073:6:125","nodeType":"YulIdentifier","src":"3073:6:125"},{"name":"headStart","nativeSrc":"3081:9:125","nodeType":"YulIdentifier","src":"3081:9:125"}],"functionName":{"name":"abi_encode_struct_PolicyData","nativeSrc":"3044:28:125","nodeType":"YulIdentifier","src":"3044:28:125"},"nativeSrc":"3044:47:125","nodeType":"YulFunctionCall","src":"3044:47:125"},"nativeSrc":"3044:47:125","nodeType":"YulExpressionStatement","src":"3044:47:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3111:9:125","nodeType":"YulIdentifier","src":"3111:9:125"},{"kind":"number","nativeSrc":"3122:3:125","nodeType":"YulLiteral","src":"3122:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"3107:3:125","nodeType":"YulIdentifier","src":"3107:3:125"},"nativeSrc":"3107:19:125","nodeType":"YulFunctionCall","src":"3107:19:125"},{"name":"value1","nativeSrc":"3128:6:125","nodeType":"YulIdentifier","src":"3128:6:125"}],"functionName":{"name":"mstore","nativeSrc":"3100:6:125","nodeType":"YulIdentifier","src":"3100:6:125"},"nativeSrc":"3100:35:125","nodeType":"YulFunctionCall","src":"3100:35:125"},"nativeSrc":"3100:35:125","nodeType":"YulExpressionStatement","src":"3100:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3155:9:125","nodeType":"YulIdentifier","src":"3155:9:125"},{"kind":"number","nativeSrc":"3166:3:125","nodeType":"YulLiteral","src":"3166:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"3151:3:125","nodeType":"YulIdentifier","src":"3151:3:125"},"nativeSrc":"3151:19:125","nodeType":"YulFunctionCall","src":"3151:19:125"},{"name":"value2","nativeSrc":"3172:6:125","nodeType":"YulIdentifier","src":"3172:6:125"}],"functionName":{"name":"mstore","nativeSrc":"3144:6:125","nodeType":"YulIdentifier","src":"3144:6:125"},"nativeSrc":"3144:35:125","nodeType":"YulFunctionCall","src":"3144:35:125"},"nativeSrc":"3144:35:125","nodeType":"YulExpressionStatement","src":"3144:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3199:9:125","nodeType":"YulIdentifier","src":"3199:9:125"},{"kind":"number","nativeSrc":"3210:3:125","nodeType":"YulLiteral","src":"3210:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"3195:3:125","nodeType":"YulIdentifier","src":"3195:3:125"},"nativeSrc":"3195:19:125","nodeType":"YulFunctionCall","src":"3195:19:125"},{"name":"value3","nativeSrc":"3216:6:125","nodeType":"YulIdentifier","src":"3216:6:125"}],"functionName":{"name":"mstore","nativeSrc":"3188:6:125","nodeType":"YulIdentifier","src":"3188:6:125"},"nativeSrc":"3188:35:125","nodeType":"YulFunctionCall","src":"3188:35:125"},"nativeSrc":"3188:35:125","nodeType":"YulExpressionStatement","src":"3188:35:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3243:9:125","nodeType":"YulIdentifier","src":"3243:9:125"},{"kind":"number","nativeSrc":"3254:3:125","nodeType":"YulLiteral","src":"3254:3:125","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"3239:3:125","nodeType":"YulIdentifier","src":"3239:3:125"},"nativeSrc":"3239:19:125","nodeType":"YulFunctionCall","src":"3239:19:125"},{"arguments":[{"name":"value4","nativeSrc":"3264:6:125","nodeType":"YulIdentifier","src":"3264:6:125"},{"kind":"number","nativeSrc":"3272:12:125","nodeType":"YulLiteral","src":"3272:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"3260:3:125","nodeType":"YulIdentifier","src":"3260:3:125"},"nativeSrc":"3260:25:125","nodeType":"YulFunctionCall","src":"3260:25:125"}],"functionName":{"name":"mstore","nativeSrc":"3232:6:125","nodeType":"YulIdentifier","src":"3232:6:125"},"nativeSrc":"3232:54:125","nodeType":"YulFunctionCall","src":"3232:54:125"},"nativeSrc":"3232:54:125","nodeType":"YulExpressionStatement","src":"3232:54:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3306:9:125","nodeType":"YulIdentifier","src":"3306:9:125"},{"kind":"number","nativeSrc":"3317:3:125","nodeType":"YulLiteral","src":"3317:3:125","type":"","value":"512"}],"functionName":{"name":"add","nativeSrc":"3302:3:125","nodeType":"YulIdentifier","src":"3302:3:125"},"nativeSrc":"3302:19:125","nodeType":"YulFunctionCall","src":"3302:19:125"},{"arguments":[{"name":"value5","nativeSrc":"3327:6:125","nodeType":"YulIdentifier","src":"3327:6:125"},{"kind":"number","nativeSrc":"3335:26:125","nodeType":"YulLiteral","src":"3335:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"3323:3:125","nodeType":"YulIdentifier","src":"3323:3:125"},"nativeSrc":"3323:39:125","nodeType":"YulFunctionCall","src":"3323:39:125"}],"functionName":{"name":"mstore","nativeSrc":"3295:6:125","nodeType":"YulIdentifier","src":"3295:6:125"},"nativeSrc":"3295:68:125","nodeType":"YulFunctionCall","src":"3295:68:125"},"nativeSrc":"3295:68:125","nodeType":"YulExpressionStatement","src":"3295:68:125"},{"expression":{"arguments":[{"name":"value6","nativeSrc":"3397:6:125","nodeType":"YulIdentifier","src":"3397:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"3409:9:125","nodeType":"YulIdentifier","src":"3409:9:125"},{"kind":"number","nativeSrc":"3420:3:125","nodeType":"YulLiteral","src":"3420:3:125","type":"","value":"544"}],"functionName":{"name":"add","nativeSrc":"3405:3:125","nodeType":"YulIdentifier","src":"3405:3:125"},"nativeSrc":"3405:19:125","nodeType":"YulFunctionCall","src":"3405:19:125"}],"functionName":{"name":"abi_encode_struct_Params","nativeSrc":"3372:24:125","nodeType":"YulIdentifier","src":"3372:24:125"},"nativeSrc":"3372:53:125","nodeType":"YulFunctionCall","src":"3372:53:125"},"nativeSrc":"3372:53:125","nodeType":"YulExpressionStatement","src":"3372:53:125"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__fromStack_reversed","nativeSrc":"2629:802:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2919:9:125","nodeType":"YulTypedName","src":"2919:9:125","type":""},{"name":"value6","nativeSrc":"2930:6:125","nodeType":"YulTypedName","src":"2930:6:125","type":""},{"name":"value5","nativeSrc":"2938:6:125","nodeType":"YulTypedName","src":"2938:6:125","type":""},{"name":"value4","nativeSrc":"2946:6:125","nodeType":"YulTypedName","src":"2946:6:125","type":""},{"name":"value3","nativeSrc":"2954:6:125","nodeType":"YulTypedName","src":"2954:6:125","type":""},{"name":"value2","nativeSrc":"2962:6:125","nodeType":"YulTypedName","src":"2962:6:125","type":""},{"name":"value1","nativeSrc":"2970:6:125","nodeType":"YulTypedName","src":"2970:6:125","type":""},{"name":"value0","nativeSrc":"2978:6:125","nodeType":"YulTypedName","src":"2978:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2989:4:125","nodeType":"YulTypedName","src":"2989:4:125","type":""}],"src":"2629:802:125"},{"body":{"nativeSrc":"3721:364:125","nodeType":"YulBlock","src":"3721:364:125","statements":[{"nativeSrc":"3731:27:125","nodeType":"YulAssignment","src":"3731:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3743:9:125","nodeType":"YulIdentifier","src":"3743:9:125"},{"kind":"number","nativeSrc":"3754:3:125","nodeType":"YulLiteral","src":"3754:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"3739:3:125","nodeType":"YulIdentifier","src":"3739:3:125"},"nativeSrc":"3739:19:125","nodeType":"YulFunctionCall","src":"3739:19:125"},"variableNames":[{"name":"tail","nativeSrc":"3731:4:125","nodeType":"YulIdentifier","src":"3731:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3774:9:125","nodeType":"YulIdentifier","src":"3774:9:125"},{"name":"value0","nativeSrc":"3785:6:125","nodeType":"YulIdentifier","src":"3785:6:125"}],"functionName":{"name":"mstore","nativeSrc":"3767:6:125","nodeType":"YulIdentifier","src":"3767:6:125"},"nativeSrc":"3767:25:125","nodeType":"YulFunctionCall","src":"3767:25:125"},"nativeSrc":"3767:25:125","nodeType":"YulExpressionStatement","src":"3767:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3812:9:125","nodeType":"YulIdentifier","src":"3812:9:125"},{"kind":"number","nativeSrc":"3823:2:125","nodeType":"YulLiteral","src":"3823:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3808:3:125","nodeType":"YulIdentifier","src":"3808:3:125"},"nativeSrc":"3808:18:125","nodeType":"YulFunctionCall","src":"3808:18:125"},{"name":"value1","nativeSrc":"3828:6:125","nodeType":"YulIdentifier","src":"3828:6:125"}],"functionName":{"name":"mstore","nativeSrc":"3801:6:125","nodeType":"YulIdentifier","src":"3801:6:125"},"nativeSrc":"3801:34:125","nodeType":"YulFunctionCall","src":"3801:34:125"},"nativeSrc":"3801:34:125","nodeType":"YulExpressionStatement","src":"3801:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3855:9:125","nodeType":"YulIdentifier","src":"3855:9:125"},{"kind":"number","nativeSrc":"3866:2:125","nodeType":"YulLiteral","src":"3866:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3851:3:125","nodeType":"YulIdentifier","src":"3851:3:125"},"nativeSrc":"3851:18:125","nodeType":"YulFunctionCall","src":"3851:18:125"},{"name":"value2","nativeSrc":"3871:6:125","nodeType":"YulIdentifier","src":"3871:6:125"}],"functionName":{"name":"mstore","nativeSrc":"3844:6:125","nodeType":"YulIdentifier","src":"3844:6:125"},"nativeSrc":"3844:34:125","nodeType":"YulFunctionCall","src":"3844:34:125"},"nativeSrc":"3844:34:125","nodeType":"YulExpressionStatement","src":"3844:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3898:9:125","nodeType":"YulIdentifier","src":"3898:9:125"},{"kind":"number","nativeSrc":"3909:2:125","nodeType":"YulLiteral","src":"3909:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3894:3:125","nodeType":"YulIdentifier","src":"3894:3:125"},"nativeSrc":"3894:18:125","nodeType":"YulFunctionCall","src":"3894:18:125"},{"arguments":[{"name":"value3","nativeSrc":"3918:6:125","nodeType":"YulIdentifier","src":"3918:6:125"},{"kind":"number","nativeSrc":"3926:12:125","nodeType":"YulLiteral","src":"3926:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"3914:3:125","nodeType":"YulIdentifier","src":"3914:3:125"},"nativeSrc":"3914:25:125","nodeType":"YulFunctionCall","src":"3914:25:125"}],"functionName":{"name":"mstore","nativeSrc":"3887:6:125","nodeType":"YulIdentifier","src":"3887:6:125"},"nativeSrc":"3887:53:125","nodeType":"YulFunctionCall","src":"3887:53:125"},"nativeSrc":"3887:53:125","nodeType":"YulExpressionStatement","src":"3887:53:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3960:9:125","nodeType":"YulIdentifier","src":"3960:9:125"},{"kind":"number","nativeSrc":"3971:3:125","nodeType":"YulLiteral","src":"3971:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"3956:3:125","nodeType":"YulIdentifier","src":"3956:3:125"},"nativeSrc":"3956:19:125","nodeType":"YulFunctionCall","src":"3956:19:125"},{"arguments":[{"name":"value4","nativeSrc":"3981:6:125","nodeType":"YulIdentifier","src":"3981:6:125"},{"kind":"number","nativeSrc":"3989:26:125","nodeType":"YulLiteral","src":"3989:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"3977:3:125","nodeType":"YulIdentifier","src":"3977:3:125"},"nativeSrc":"3977:39:125","nodeType":"YulFunctionCall","src":"3977:39:125"}],"functionName":{"name":"mstore","nativeSrc":"3949:6:125","nodeType":"YulIdentifier","src":"3949:6:125"},"nativeSrc":"3949:68:125","nodeType":"YulFunctionCall","src":"3949:68:125"},"nativeSrc":"3949:68:125","nodeType":"YulExpressionStatement","src":"3949:68:125"},{"expression":{"arguments":[{"name":"value5","nativeSrc":"4051:6:125","nodeType":"YulIdentifier","src":"4051:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"4063:9:125","nodeType":"YulIdentifier","src":"4063:9:125"},{"kind":"number","nativeSrc":"4074:3:125","nodeType":"YulLiteral","src":"4074:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"4059:3:125","nodeType":"YulIdentifier","src":"4059:3:125"},"nativeSrc":"4059:19:125","nodeType":"YulFunctionCall","src":"4059:19:125"}],"functionName":{"name":"abi_encode_struct_Params","nativeSrc":"4026:24:125","nodeType":"YulIdentifier","src":"4026:24:125"},"nativeSrc":"4026:53:125","nodeType":"YulFunctionCall","src":"4026:53:125"},"nativeSrc":"4026:53:125","nodeType":"YulExpressionStatement","src":"4026:53:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__to_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__fromStack_reversed","nativeSrc":"3436:649:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3650:9:125","nodeType":"YulTypedName","src":"3650:9:125","type":""},{"name":"value5","nativeSrc":"3661:6:125","nodeType":"YulTypedName","src":"3661:6:125","type":""},{"name":"value4","nativeSrc":"3669:6:125","nodeType":"YulTypedName","src":"3669:6:125","type":""},{"name":"value3","nativeSrc":"3677:6:125","nodeType":"YulTypedName","src":"3677:6:125","type":""},{"name":"value2","nativeSrc":"3685:6:125","nodeType":"YulTypedName","src":"3685:6:125","type":""},{"name":"value1","nativeSrc":"3693:6:125","nodeType":"YulTypedName","src":"3693:6:125","type":""},{"name":"value0","nativeSrc":"3701:6:125","nodeType":"YulTypedName","src":"3701:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3712:4:125","nodeType":"YulTypedName","src":"3712:4:125","type":""}],"src":"3436:649:125"},{"body":{"nativeSrc":"4131:306:125","nodeType":"YulBlock","src":"4131:306:125","statements":[{"nativeSrc":"4141:19:125","nodeType":"YulAssignment","src":"4141:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"4157:2:125","nodeType":"YulLiteral","src":"4157:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"4151:5:125","nodeType":"YulIdentifier","src":"4151:5:125"},"nativeSrc":"4151:9:125","nodeType":"YulFunctionCall","src":"4151:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"4141:6:125","nodeType":"YulIdentifier","src":"4141:6:125"}]},{"nativeSrc":"4169:37:125","nodeType":"YulVariableDeclaration","src":"4169:37:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"4191:6:125","nodeType":"YulIdentifier","src":"4191:6:125"},{"kind":"number","nativeSrc":"4199:6:125","nodeType":"YulLiteral","src":"4199:6:125","type":"","value":"0x0180"}],"functionName":{"name":"add","nativeSrc":"4187:3:125","nodeType":"YulIdentifier","src":"4187:3:125"},"nativeSrc":"4187:19:125","nodeType":"YulFunctionCall","src":"4187:19:125"},"variables":[{"name":"newFreePtr","nativeSrc":"4173:10:125","nodeType":"YulTypedName","src":"4173:10:125","type":""}]},{"body":{"nativeSrc":"4289:111:125","nodeType":"YulBlock","src":"4289:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4310:1:125","nodeType":"YulLiteral","src":"4310:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4317:3:125","nodeType":"YulLiteral","src":"4317:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"4322:10:125","nodeType":"YulLiteral","src":"4322:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4313:3:125","nodeType":"YulIdentifier","src":"4313:3:125"},"nativeSrc":"4313:20:125","nodeType":"YulFunctionCall","src":"4313:20:125"}],"functionName":{"name":"mstore","nativeSrc":"4303:6:125","nodeType":"YulIdentifier","src":"4303:6:125"},"nativeSrc":"4303:31:125","nodeType":"YulFunctionCall","src":"4303:31:125"},"nativeSrc":"4303:31:125","nodeType":"YulExpressionStatement","src":"4303:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4354:1:125","nodeType":"YulLiteral","src":"4354:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"4357:4:125","nodeType":"YulLiteral","src":"4357:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"4347:6:125","nodeType":"YulIdentifier","src":"4347:6:125"},"nativeSrc":"4347:15:125","nodeType":"YulFunctionCall","src":"4347:15:125"},"nativeSrc":"4347:15:125","nodeType":"YulExpressionStatement","src":"4347:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4382:1:125","nodeType":"YulLiteral","src":"4382:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4385:4:125","nodeType":"YulLiteral","src":"4385:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4375:6:125","nodeType":"YulIdentifier","src":"4375:6:125"},"nativeSrc":"4375:15:125","nodeType":"YulFunctionCall","src":"4375:15:125"},"nativeSrc":"4375:15:125","nodeType":"YulExpressionStatement","src":"4375:15:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"4224:10:125","nodeType":"YulIdentifier","src":"4224:10:125"},{"kind":"number","nativeSrc":"4236:18:125","nodeType":"YulLiteral","src":"4236:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4221:2:125","nodeType":"YulIdentifier","src":"4221:2:125"},"nativeSrc":"4221:34:125","nodeType":"YulFunctionCall","src":"4221:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"4260:10:125","nodeType":"YulIdentifier","src":"4260:10:125"},{"name":"memPtr","nativeSrc":"4272:6:125","nodeType":"YulIdentifier","src":"4272:6:125"}],"functionName":{"name":"lt","nativeSrc":"4257:2:125","nodeType":"YulIdentifier","src":"4257:2:125"},"nativeSrc":"4257:22:125","nodeType":"YulFunctionCall","src":"4257:22:125"}],"functionName":{"name":"or","nativeSrc":"4218:2:125","nodeType":"YulIdentifier","src":"4218:2:125"},"nativeSrc":"4218:62:125","nodeType":"YulFunctionCall","src":"4218:62:125"},"nativeSrc":"4215:185:125","nodeType":"YulIf","src":"4215:185:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4416:2:125","nodeType":"YulLiteral","src":"4416:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"4420:10:125","nodeType":"YulIdentifier","src":"4420:10:125"}],"functionName":{"name":"mstore","nativeSrc":"4409:6:125","nodeType":"YulIdentifier","src":"4409:6:125"},"nativeSrc":"4409:22:125","nodeType":"YulFunctionCall","src":"4409:22:125"},"nativeSrc":"4409:22:125","nodeType":"YulExpressionStatement","src":"4409:22:125"}]},"name":"allocate_memory","nativeSrc":"4090:347:125","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"4120:6:125","nodeType":"YulTypedName","src":"4120:6:125","type":""}],"src":"4090:347:125"},{"body":{"nativeSrc":"4490:117:125","nodeType":"YulBlock","src":"4490:117:125","statements":[{"nativeSrc":"4500:29:125","nodeType":"YulAssignment","src":"4500:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"4522:6:125","nodeType":"YulIdentifier","src":"4522:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"4509:12:125","nodeType":"YulIdentifier","src":"4509:12:125"},"nativeSrc":"4509:20:125","nodeType":"YulFunctionCall","src":"4509:20:125"},"variableNames":[{"name":"value","nativeSrc":"4500:5:125","nodeType":"YulIdentifier","src":"4500:5:125"}]},{"body":{"nativeSrc":"4585:16:125","nodeType":"YulBlock","src":"4585:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4594:1:125","nodeType":"YulLiteral","src":"4594:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4597:1:125","nodeType":"YulLiteral","src":"4597:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4587:6:125","nodeType":"YulIdentifier","src":"4587:6:125"},"nativeSrc":"4587:12:125","nodeType":"YulFunctionCall","src":"4587:12:125"},"nativeSrc":"4587:12:125","nodeType":"YulExpressionStatement","src":"4587:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4551:5:125","nodeType":"YulIdentifier","src":"4551:5:125"},{"arguments":[{"name":"value","nativeSrc":"4562:5:125","nodeType":"YulIdentifier","src":"4562:5:125"},{"kind":"number","nativeSrc":"4569:12:125","nodeType":"YulLiteral","src":"4569:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"4558:3:125","nodeType":"YulIdentifier","src":"4558:3:125"},"nativeSrc":"4558:24:125","nodeType":"YulFunctionCall","src":"4558:24:125"}],"functionName":{"name":"eq","nativeSrc":"4548:2:125","nodeType":"YulIdentifier","src":"4548:2:125"},"nativeSrc":"4548:35:125","nodeType":"YulFunctionCall","src":"4548:35:125"}],"functionName":{"name":"iszero","nativeSrc":"4541:6:125","nodeType":"YulIdentifier","src":"4541:6:125"},"nativeSrc":"4541:43:125","nodeType":"YulFunctionCall","src":"4541:43:125"},"nativeSrc":"4538:63:125","nodeType":"YulIf","src":"4538:63:125"}]},"name":"abi_decode_uint40","nativeSrc":"4442:165:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"4469:6:125","nodeType":"YulTypedName","src":"4469:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"4480:5:125","nodeType":"YulTypedName","src":"4480:5:125","type":""}],"src":"4442:165:125"},{"body":{"nativeSrc":"4679:1414:125","nodeType":"YulBlock","src":"4679:1414:125","statements":[{"body":{"nativeSrc":"4725:16:125","nodeType":"YulBlock","src":"4725:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4734:1:125","nodeType":"YulLiteral","src":"4734:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4737:1:125","nodeType":"YulLiteral","src":"4737:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4727:6:125","nodeType":"YulIdentifier","src":"4727:6:125"},"nativeSrc":"4727:12:125","nodeType":"YulFunctionCall","src":"4727:12:125"},"nativeSrc":"4727:12:125","nodeType":"YulExpressionStatement","src":"4727:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"4700:3:125","nodeType":"YulIdentifier","src":"4700:3:125"},{"name":"headStart","nativeSrc":"4705:9:125","nodeType":"YulIdentifier","src":"4705:9:125"}],"functionName":{"name":"sub","nativeSrc":"4696:3:125","nodeType":"YulIdentifier","src":"4696:3:125"},"nativeSrc":"4696:19:125","nodeType":"YulFunctionCall","src":"4696:19:125"},{"kind":"number","nativeSrc":"4717:6:125","nodeType":"YulLiteral","src":"4717:6:125","type":"","value":"0x0180"}],"functionName":{"name":"slt","nativeSrc":"4692:3:125","nodeType":"YulIdentifier","src":"4692:3:125"},"nativeSrc":"4692:32:125","nodeType":"YulFunctionCall","src":"4692:32:125"},"nativeSrc":"4689:52:125","nodeType":"YulIf","src":"4689:52:125"},{"nativeSrc":"4750:26:125","nodeType":"YulAssignment","src":"4750:26:125","value":{"arguments":[],"functionName":{"name":"allocate_memory","nativeSrc":"4759:15:125","nodeType":"YulIdentifier","src":"4759:15:125"},"nativeSrc":"4759:17:125","nodeType":"YulFunctionCall","src":"4759:17:125"},"variableNames":[{"name":"value","nativeSrc":"4750:5:125","nodeType":"YulIdentifier","src":"4750:5:125"}]},{"nativeSrc":"4785:16:125","nodeType":"YulVariableDeclaration","src":"4785:16:125","value":{"kind":"number","nativeSrc":"4800:1:125","nodeType":"YulLiteral","src":"4800:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"4789:7:125","nodeType":"YulTypedName","src":"4789:7:125","type":""}]},{"nativeSrc":"4810:34:125","nodeType":"YulAssignment","src":"4810:34:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4834:9:125","nodeType":"YulIdentifier","src":"4834:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"4821:12:125","nodeType":"YulIdentifier","src":"4821:12:125"},"nativeSrc":"4821:23:125","nodeType":"YulFunctionCall","src":"4821:23:125"},"variableNames":[{"name":"value_1","nativeSrc":"4810:7:125","nodeType":"YulIdentifier","src":"4810:7:125"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4860:5:125","nodeType":"YulIdentifier","src":"4860:5:125"},{"name":"value_1","nativeSrc":"4867:7:125","nodeType":"YulIdentifier","src":"4867:7:125"}],"functionName":{"name":"mstore","nativeSrc":"4853:6:125","nodeType":"YulIdentifier","src":"4853:6:125"},"nativeSrc":"4853:22:125","nodeType":"YulFunctionCall","src":"4853:22:125"},"nativeSrc":"4853:22:125","nodeType":"YulExpressionStatement","src":"4853:22:125"},{"nativeSrc":"4884:16:125","nodeType":"YulVariableDeclaration","src":"4884:16:125","value":{"kind":"number","nativeSrc":"4899:1:125","nodeType":"YulLiteral","src":"4899:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"4888:7:125","nodeType":"YulTypedName","src":"4888:7:125","type":""}]},{"nativeSrc":"4909:43:125","nodeType":"YulAssignment","src":"4909:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4937:9:125","nodeType":"YulIdentifier","src":"4937:9:125"},{"kind":"number","nativeSrc":"4948:2:125","nodeType":"YulLiteral","src":"4948:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4933:3:125","nodeType":"YulIdentifier","src":"4933:3:125"},"nativeSrc":"4933:18:125","nodeType":"YulFunctionCall","src":"4933:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"4920:12:125","nodeType":"YulIdentifier","src":"4920:12:125"},"nativeSrc":"4920:32:125","nodeType":"YulFunctionCall","src":"4920:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"4909:7:125","nodeType":"YulIdentifier","src":"4909:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4972:5:125","nodeType":"YulIdentifier","src":"4972:5:125"},{"kind":"number","nativeSrc":"4979:2:125","nodeType":"YulLiteral","src":"4979:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4968:3:125","nodeType":"YulIdentifier","src":"4968:3:125"},"nativeSrc":"4968:14:125","nodeType":"YulFunctionCall","src":"4968:14:125"},{"name":"value_2","nativeSrc":"4984:7:125","nodeType":"YulIdentifier","src":"4984:7:125"}],"functionName":{"name":"mstore","nativeSrc":"4961:6:125","nodeType":"YulIdentifier","src":"4961:6:125"},"nativeSrc":"4961:31:125","nodeType":"YulFunctionCall","src":"4961:31:125"},"nativeSrc":"4961:31:125","nodeType":"YulExpressionStatement","src":"4961:31:125"},{"nativeSrc":"5001:16:125","nodeType":"YulVariableDeclaration","src":"5001:16:125","value":{"kind":"number","nativeSrc":"5016:1:125","nodeType":"YulLiteral","src":"5016:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"5005:7:125","nodeType":"YulTypedName","src":"5005:7:125","type":""}]},{"nativeSrc":"5026:43:125","nodeType":"YulAssignment","src":"5026:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5054:9:125","nodeType":"YulIdentifier","src":"5054:9:125"},{"kind":"number","nativeSrc":"5065:2:125","nodeType":"YulLiteral","src":"5065:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5050:3:125","nodeType":"YulIdentifier","src":"5050:3:125"},"nativeSrc":"5050:18:125","nodeType":"YulFunctionCall","src":"5050:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"5037:12:125","nodeType":"YulIdentifier","src":"5037:12:125"},"nativeSrc":"5037:32:125","nodeType":"YulFunctionCall","src":"5037:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"5026:7:125","nodeType":"YulIdentifier","src":"5026:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5089:5:125","nodeType":"YulIdentifier","src":"5089:5:125"},{"kind":"number","nativeSrc":"5096:2:125","nodeType":"YulLiteral","src":"5096:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5085:3:125","nodeType":"YulIdentifier","src":"5085:3:125"},"nativeSrc":"5085:14:125","nodeType":"YulFunctionCall","src":"5085:14:125"},{"name":"value_3","nativeSrc":"5101:7:125","nodeType":"YulIdentifier","src":"5101:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5078:6:125","nodeType":"YulIdentifier","src":"5078:6:125"},"nativeSrc":"5078:31:125","nodeType":"YulFunctionCall","src":"5078:31:125"},"nativeSrc":"5078:31:125","nodeType":"YulExpressionStatement","src":"5078:31:125"},{"nativeSrc":"5118:16:125","nodeType":"YulVariableDeclaration","src":"5118:16:125","value":{"kind":"number","nativeSrc":"5133:1:125","nodeType":"YulLiteral","src":"5133:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"5122:7:125","nodeType":"YulTypedName","src":"5122:7:125","type":""}]},{"nativeSrc":"5143:43:125","nodeType":"YulAssignment","src":"5143:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5171:9:125","nodeType":"YulIdentifier","src":"5171:9:125"},{"kind":"number","nativeSrc":"5182:2:125","nodeType":"YulLiteral","src":"5182:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5167:3:125","nodeType":"YulIdentifier","src":"5167:3:125"},"nativeSrc":"5167:18:125","nodeType":"YulFunctionCall","src":"5167:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"5154:12:125","nodeType":"YulIdentifier","src":"5154:12:125"},"nativeSrc":"5154:32:125","nodeType":"YulFunctionCall","src":"5154:32:125"},"variableNames":[{"name":"value_4","nativeSrc":"5143:7:125","nodeType":"YulIdentifier","src":"5143:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5206:5:125","nodeType":"YulIdentifier","src":"5206:5:125"},{"kind":"number","nativeSrc":"5213:2:125","nodeType":"YulLiteral","src":"5213:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5202:3:125","nodeType":"YulIdentifier","src":"5202:3:125"},"nativeSrc":"5202:14:125","nodeType":"YulFunctionCall","src":"5202:14:125"},{"name":"value_4","nativeSrc":"5218:7:125","nodeType":"YulIdentifier","src":"5218:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5195:6:125","nodeType":"YulIdentifier","src":"5195:6:125"},"nativeSrc":"5195:31:125","nodeType":"YulFunctionCall","src":"5195:31:125"},"nativeSrc":"5195:31:125","nodeType":"YulExpressionStatement","src":"5195:31:125"},{"nativeSrc":"5235:16:125","nodeType":"YulVariableDeclaration","src":"5235:16:125","value":{"kind":"number","nativeSrc":"5250:1:125","nodeType":"YulLiteral","src":"5250:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"5239:7:125","nodeType":"YulTypedName","src":"5239:7:125","type":""}]},{"nativeSrc":"5260:44:125","nodeType":"YulAssignment","src":"5260:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5288:9:125","nodeType":"YulIdentifier","src":"5288:9:125"},{"kind":"number","nativeSrc":"5299:3:125","nodeType":"YulLiteral","src":"5299:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5284:3:125","nodeType":"YulIdentifier","src":"5284:3:125"},"nativeSrc":"5284:19:125","nodeType":"YulFunctionCall","src":"5284:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"5271:12:125","nodeType":"YulIdentifier","src":"5271:12:125"},"nativeSrc":"5271:33:125","nodeType":"YulFunctionCall","src":"5271:33:125"},"variableNames":[{"name":"value_5","nativeSrc":"5260:7:125","nodeType":"YulIdentifier","src":"5260:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5324:5:125","nodeType":"YulIdentifier","src":"5324:5:125"},{"kind":"number","nativeSrc":"5331:3:125","nodeType":"YulLiteral","src":"5331:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5320:3:125","nodeType":"YulIdentifier","src":"5320:3:125"},"nativeSrc":"5320:15:125","nodeType":"YulFunctionCall","src":"5320:15:125"},{"name":"value_5","nativeSrc":"5337:7:125","nodeType":"YulIdentifier","src":"5337:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5313:6:125","nodeType":"YulIdentifier","src":"5313:6:125"},"nativeSrc":"5313:32:125","nodeType":"YulFunctionCall","src":"5313:32:125"},"nativeSrc":"5313:32:125","nodeType":"YulExpressionStatement","src":"5313:32:125"},{"nativeSrc":"5354:16:125","nodeType":"YulVariableDeclaration","src":"5354:16:125","value":{"kind":"number","nativeSrc":"5369:1:125","nodeType":"YulLiteral","src":"5369:1:125","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"5358:7:125","nodeType":"YulTypedName","src":"5358:7:125","type":""}]},{"nativeSrc":"5379:44:125","nodeType":"YulAssignment","src":"5379:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5407:9:125","nodeType":"YulIdentifier","src":"5407:9:125"},{"kind":"number","nativeSrc":"5418:3:125","nodeType":"YulLiteral","src":"5418:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"5403:3:125","nodeType":"YulIdentifier","src":"5403:3:125"},"nativeSrc":"5403:19:125","nodeType":"YulFunctionCall","src":"5403:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"5390:12:125","nodeType":"YulIdentifier","src":"5390:12:125"},"nativeSrc":"5390:33:125","nodeType":"YulFunctionCall","src":"5390:33:125"},"variableNames":[{"name":"value_6","nativeSrc":"5379:7:125","nodeType":"YulIdentifier","src":"5379:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5443:5:125","nodeType":"YulIdentifier","src":"5443:5:125"},{"kind":"number","nativeSrc":"5450:3:125","nodeType":"YulLiteral","src":"5450:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"5439:3:125","nodeType":"YulIdentifier","src":"5439:3:125"},"nativeSrc":"5439:15:125","nodeType":"YulFunctionCall","src":"5439:15:125"},{"name":"value_6","nativeSrc":"5456:7:125","nodeType":"YulIdentifier","src":"5456:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5432:6:125","nodeType":"YulIdentifier","src":"5432:6:125"},"nativeSrc":"5432:32:125","nodeType":"YulFunctionCall","src":"5432:32:125"},"nativeSrc":"5432:32:125","nodeType":"YulExpressionStatement","src":"5432:32:125"},{"nativeSrc":"5473:16:125","nodeType":"YulVariableDeclaration","src":"5473:16:125","value":{"kind":"number","nativeSrc":"5488:1:125","nodeType":"YulLiteral","src":"5488:1:125","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"5477:7:125","nodeType":"YulTypedName","src":"5477:7:125","type":""}]},{"nativeSrc":"5498:44:125","nodeType":"YulAssignment","src":"5498:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5526:9:125","nodeType":"YulIdentifier","src":"5526:9:125"},{"kind":"number","nativeSrc":"5537:3:125","nodeType":"YulLiteral","src":"5537:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"5522:3:125","nodeType":"YulIdentifier","src":"5522:3:125"},"nativeSrc":"5522:19:125","nodeType":"YulFunctionCall","src":"5522:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"5509:12:125","nodeType":"YulIdentifier","src":"5509:12:125"},"nativeSrc":"5509:33:125","nodeType":"YulFunctionCall","src":"5509:33:125"},"variableNames":[{"name":"value_7","nativeSrc":"5498:7:125","nodeType":"YulIdentifier","src":"5498:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5562:5:125","nodeType":"YulIdentifier","src":"5562:5:125"},{"kind":"number","nativeSrc":"5569:3:125","nodeType":"YulLiteral","src":"5569:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"5558:3:125","nodeType":"YulIdentifier","src":"5558:3:125"},"nativeSrc":"5558:15:125","nodeType":"YulFunctionCall","src":"5558:15:125"},{"name":"value_7","nativeSrc":"5575:7:125","nodeType":"YulIdentifier","src":"5575:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5551:6:125","nodeType":"YulIdentifier","src":"5551:6:125"},"nativeSrc":"5551:32:125","nodeType":"YulFunctionCall","src":"5551:32:125"},"nativeSrc":"5551:32:125","nodeType":"YulExpressionStatement","src":"5551:32:125"},{"nativeSrc":"5592:16:125","nodeType":"YulVariableDeclaration","src":"5592:16:125","value":{"kind":"number","nativeSrc":"5607:1:125","nodeType":"YulLiteral","src":"5607:1:125","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"5596:7:125","nodeType":"YulTypedName","src":"5596:7:125","type":""}]},{"nativeSrc":"5617:44:125","nodeType":"YulAssignment","src":"5617:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5645:9:125","nodeType":"YulIdentifier","src":"5645:9:125"},{"kind":"number","nativeSrc":"5656:3:125","nodeType":"YulLiteral","src":"5656:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"5641:3:125","nodeType":"YulIdentifier","src":"5641:3:125"},"nativeSrc":"5641:19:125","nodeType":"YulFunctionCall","src":"5641:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"5628:12:125","nodeType":"YulIdentifier","src":"5628:12:125"},"nativeSrc":"5628:33:125","nodeType":"YulFunctionCall","src":"5628:33:125"},"variableNames":[{"name":"value_8","nativeSrc":"5617:7:125","nodeType":"YulIdentifier","src":"5617:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5681:5:125","nodeType":"YulIdentifier","src":"5681:5:125"},{"kind":"number","nativeSrc":"5688:3:125","nodeType":"YulLiteral","src":"5688:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"5677:3:125","nodeType":"YulIdentifier","src":"5677:3:125"},"nativeSrc":"5677:15:125","nodeType":"YulFunctionCall","src":"5677:15:125"},{"name":"value_8","nativeSrc":"5694:7:125","nodeType":"YulIdentifier","src":"5694:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5670:6:125","nodeType":"YulIdentifier","src":"5670:6:125"},"nativeSrc":"5670:32:125","nodeType":"YulFunctionCall","src":"5670:32:125"},"nativeSrc":"5670:32:125","nodeType":"YulExpressionStatement","src":"5670:32:125"},{"nativeSrc":"5711:16:125","nodeType":"YulVariableDeclaration","src":"5711:16:125","value":{"kind":"number","nativeSrc":"5726:1:125","nodeType":"YulLiteral","src":"5726:1:125","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"5715:7:125","nodeType":"YulTypedName","src":"5715:7:125","type":""}]},{"nativeSrc":"5736:44:125","nodeType":"YulAssignment","src":"5736:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5764:9:125","nodeType":"YulIdentifier","src":"5764:9:125"},{"kind":"number","nativeSrc":"5775:3:125","nodeType":"YulLiteral","src":"5775:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"5760:3:125","nodeType":"YulIdentifier","src":"5760:3:125"},"nativeSrc":"5760:19:125","nodeType":"YulFunctionCall","src":"5760:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"5747:12:125","nodeType":"YulIdentifier","src":"5747:12:125"},"nativeSrc":"5747:33:125","nodeType":"YulFunctionCall","src":"5747:33:125"},"variableNames":[{"name":"value_9","nativeSrc":"5736:7:125","nodeType":"YulIdentifier","src":"5736:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5800:5:125","nodeType":"YulIdentifier","src":"5800:5:125"},{"kind":"number","nativeSrc":"5807:3:125","nodeType":"YulLiteral","src":"5807:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"5796:3:125","nodeType":"YulIdentifier","src":"5796:3:125"},"nativeSrc":"5796:15:125","nodeType":"YulFunctionCall","src":"5796:15:125"},{"name":"value_9","nativeSrc":"5813:7:125","nodeType":"YulIdentifier","src":"5813:7:125"}],"functionName":{"name":"mstore","nativeSrc":"5789:6:125","nodeType":"YulIdentifier","src":"5789:6:125"},"nativeSrc":"5789:32:125","nodeType":"YulFunctionCall","src":"5789:32:125"},"nativeSrc":"5789:32:125","nodeType":"YulExpressionStatement","src":"5789:32:125"},{"nativeSrc":"5830:17:125","nodeType":"YulVariableDeclaration","src":"5830:17:125","value":{"kind":"number","nativeSrc":"5846:1:125","nodeType":"YulLiteral","src":"5846:1:125","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"5834:8:125","nodeType":"YulTypedName","src":"5834:8:125","type":""}]},{"nativeSrc":"5856:45:125","nodeType":"YulAssignment","src":"5856:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5885:9:125","nodeType":"YulIdentifier","src":"5885:9:125"},{"kind":"number","nativeSrc":"5896:3:125","nodeType":"YulLiteral","src":"5896:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"5881:3:125","nodeType":"YulIdentifier","src":"5881:3:125"},"nativeSrc":"5881:19:125","nodeType":"YulFunctionCall","src":"5881:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"5868:12:125","nodeType":"YulIdentifier","src":"5868:12:125"},"nativeSrc":"5868:33:125","nodeType":"YulFunctionCall","src":"5868:33:125"},"variableNames":[{"name":"value_10","nativeSrc":"5856:8:125","nodeType":"YulIdentifier","src":"5856:8:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5921:5:125","nodeType":"YulIdentifier","src":"5921:5:125"},{"kind":"number","nativeSrc":"5928:3:125","nodeType":"YulLiteral","src":"5928:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"5917:3:125","nodeType":"YulIdentifier","src":"5917:3:125"},"nativeSrc":"5917:15:125","nodeType":"YulFunctionCall","src":"5917:15:125"},{"name":"value_10","nativeSrc":"5934:8:125","nodeType":"YulIdentifier","src":"5934:8:125"}],"functionName":{"name":"mstore","nativeSrc":"5910:6:125","nodeType":"YulIdentifier","src":"5910:6:125"},"nativeSrc":"5910:33:125","nodeType":"YulFunctionCall","src":"5910:33:125"},"nativeSrc":"5910:33:125","nodeType":"YulExpressionStatement","src":"5910:33:125"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5963:5:125","nodeType":"YulIdentifier","src":"5963:5:125"},{"kind":"number","nativeSrc":"5970:3:125","nodeType":"YulLiteral","src":"5970:3:125","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"5959:3:125","nodeType":"YulIdentifier","src":"5959:3:125"},"nativeSrc":"5959:15:125","nodeType":"YulFunctionCall","src":"5959:15:125"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5998:9:125","nodeType":"YulIdentifier","src":"5998:9:125"},{"kind":"number","nativeSrc":"6009:3:125","nodeType":"YulLiteral","src":"6009:3:125","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"5994:3:125","nodeType":"YulIdentifier","src":"5994:3:125"},"nativeSrc":"5994:19:125","nodeType":"YulFunctionCall","src":"5994:19:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"5976:17:125","nodeType":"YulIdentifier","src":"5976:17:125"},"nativeSrc":"5976:38:125","nodeType":"YulFunctionCall","src":"5976:38:125"}],"functionName":{"name":"mstore","nativeSrc":"5952:6:125","nodeType":"YulIdentifier","src":"5952:6:125"},"nativeSrc":"5952:63:125","nodeType":"YulFunctionCall","src":"5952:63:125"},"nativeSrc":"5952:63:125","nodeType":"YulExpressionStatement","src":"5952:63:125"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6035:5:125","nodeType":"YulIdentifier","src":"6035:5:125"},{"kind":"number","nativeSrc":"6042:3:125","nodeType":"YulLiteral","src":"6042:3:125","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"6031:3:125","nodeType":"YulIdentifier","src":"6031:3:125"},"nativeSrc":"6031:15:125","nodeType":"YulFunctionCall","src":"6031:15:125"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6070:9:125","nodeType":"YulIdentifier","src":"6070:9:125"},{"kind":"number","nativeSrc":"6081:3:125","nodeType":"YulLiteral","src":"6081:3:125","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"6066:3:125","nodeType":"YulIdentifier","src":"6066:3:125"},"nativeSrc":"6066:19:125","nodeType":"YulFunctionCall","src":"6066:19:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"6048:17:125","nodeType":"YulIdentifier","src":"6048:17:125"},"nativeSrc":"6048:38:125","nodeType":"YulFunctionCall","src":"6048:38:125"}],"functionName":{"name":"mstore","nativeSrc":"6024:6:125","nodeType":"YulIdentifier","src":"6024:6:125"},"nativeSrc":"6024:63:125","nodeType":"YulFunctionCall","src":"6024:63:125"},"nativeSrc":"6024:63:125","nodeType":"YulExpressionStatement","src":"6024:63:125"}]},"name":"abi_decode_struct_PolicyData","nativeSrc":"4612:1481:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4650:9:125","nodeType":"YulTypedName","src":"4650:9:125","type":""},{"name":"end","nativeSrc":"4661:3:125","nodeType":"YulTypedName","src":"4661:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"4669:5:125","nodeType":"YulTypedName","src":"4669:5:125","type":""}],"src":"4612:1481:125"},{"body":{"nativeSrc":"6247:442:125","nodeType":"YulBlock","src":"6247:442:125","statements":[{"body":{"nativeSrc":"6294:16:125","nodeType":"YulBlock","src":"6294:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6303:1:125","nodeType":"YulLiteral","src":"6303:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6306:1:125","nodeType":"YulLiteral","src":"6306:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6296:6:125","nodeType":"YulIdentifier","src":"6296:6:125"},"nativeSrc":"6296:12:125","nodeType":"YulFunctionCall","src":"6296:12:125"},"nativeSrc":"6296:12:125","nodeType":"YulExpressionStatement","src":"6296:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6268:7:125","nodeType":"YulIdentifier","src":"6268:7:125"},{"name":"headStart","nativeSrc":"6277:9:125","nodeType":"YulIdentifier","src":"6277:9:125"}],"functionName":{"name":"sub","nativeSrc":"6264:3:125","nodeType":"YulIdentifier","src":"6264:3:125"},"nativeSrc":"6264:23:125","nodeType":"YulFunctionCall","src":"6264:23:125"},{"kind":"number","nativeSrc":"6289:3:125","nodeType":"YulLiteral","src":"6289:3:125","type":"","value":"480"}],"functionName":{"name":"slt","nativeSrc":"6260:3:125","nodeType":"YulIdentifier","src":"6260:3:125"},"nativeSrc":"6260:33:125","nodeType":"YulFunctionCall","src":"6260:33:125"},"nativeSrc":"6257:53:125","nodeType":"YulIf","src":"6257:53:125"},{"nativeSrc":"6319:58:125","nodeType":"YulAssignment","src":"6319:58:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6358:9:125","nodeType":"YulIdentifier","src":"6358:9:125"},{"name":"dataEnd","nativeSrc":"6369:7:125","nodeType":"YulIdentifier","src":"6369:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"6329:28:125","nodeType":"YulIdentifier","src":"6329:28:125"},"nativeSrc":"6329:48:125","nodeType":"YulFunctionCall","src":"6329:48:125"},"variableNames":[{"name":"value0","nativeSrc":"6319:6:125","nodeType":"YulIdentifier","src":"6319:6:125"}]},{"nativeSrc":"6386:14:125","nodeType":"YulVariableDeclaration","src":"6386:14:125","value":{"kind":"number","nativeSrc":"6399:1:125","nodeType":"YulLiteral","src":"6399:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"6390:5:125","nodeType":"YulTypedName","src":"6390:5:125","type":""}]},{"nativeSrc":"6409:42:125","nodeType":"YulAssignment","src":"6409:42:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6435:9:125","nodeType":"YulIdentifier","src":"6435:9:125"},{"kind":"number","nativeSrc":"6446:3:125","nodeType":"YulLiteral","src":"6446:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"6431:3:125","nodeType":"YulIdentifier","src":"6431:3:125"},"nativeSrc":"6431:19:125","nodeType":"YulFunctionCall","src":"6431:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"6418:12:125","nodeType":"YulIdentifier","src":"6418:12:125"},"nativeSrc":"6418:33:125","nodeType":"YulFunctionCall","src":"6418:33:125"},"variableNames":[{"name":"value","nativeSrc":"6409:5:125","nodeType":"YulIdentifier","src":"6409:5:125"}]},{"nativeSrc":"6460:15:125","nodeType":"YulAssignment","src":"6460:15:125","value":{"name":"value","nativeSrc":"6470:5:125","nodeType":"YulIdentifier","src":"6470:5:125"},"variableNames":[{"name":"value1","nativeSrc":"6460:6:125","nodeType":"YulIdentifier","src":"6460:6:125"}]},{"nativeSrc":"6484:16:125","nodeType":"YulVariableDeclaration","src":"6484:16:125","value":{"kind":"number","nativeSrc":"6499:1:125","nodeType":"YulLiteral","src":"6499:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"6488:7:125","nodeType":"YulTypedName","src":"6488:7:125","type":""}]},{"nativeSrc":"6509:44:125","nodeType":"YulAssignment","src":"6509:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6537:9:125","nodeType":"YulIdentifier","src":"6537:9:125"},{"kind":"number","nativeSrc":"6548:3:125","nodeType":"YulLiteral","src":"6548:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"6533:3:125","nodeType":"YulIdentifier","src":"6533:3:125"},"nativeSrc":"6533:19:125","nodeType":"YulFunctionCall","src":"6533:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"6520:12:125","nodeType":"YulIdentifier","src":"6520:12:125"},"nativeSrc":"6520:33:125","nodeType":"YulFunctionCall","src":"6520:33:125"},"variableNames":[{"name":"value_1","nativeSrc":"6509:7:125","nodeType":"YulIdentifier","src":"6509:7:125"}]},{"nativeSrc":"6562:17:125","nodeType":"YulAssignment","src":"6562:17:125","value":{"name":"value_1","nativeSrc":"6572:7:125","nodeType":"YulIdentifier","src":"6572:7:125"},"variableNames":[{"name":"value2","nativeSrc":"6562:6:125","nodeType":"YulIdentifier","src":"6562:6:125"}]},{"nativeSrc":"6588:16:125","nodeType":"YulVariableDeclaration","src":"6588:16:125","value":{"kind":"number","nativeSrc":"6603:1:125","nodeType":"YulLiteral","src":"6603:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"6592:7:125","nodeType":"YulTypedName","src":"6592:7:125","type":""}]},{"nativeSrc":"6613:44:125","nodeType":"YulAssignment","src":"6613:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6641:9:125","nodeType":"YulIdentifier","src":"6641:9:125"},{"kind":"number","nativeSrc":"6652:3:125","nodeType":"YulLiteral","src":"6652:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"6637:3:125","nodeType":"YulIdentifier","src":"6637:3:125"},"nativeSrc":"6637:19:125","nodeType":"YulFunctionCall","src":"6637:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"6624:12:125","nodeType":"YulIdentifier","src":"6624:12:125"},"nativeSrc":"6624:33:125","nodeType":"YulFunctionCall","src":"6624:33:125"},"variableNames":[{"name":"value_2","nativeSrc":"6613:7:125","nodeType":"YulIdentifier","src":"6613:7:125"}]},{"nativeSrc":"6666:17:125","nodeType":"YulAssignment","src":"6666:17:125","value":{"name":"value_2","nativeSrc":"6676:7:125","nodeType":"YulIdentifier","src":"6676:7:125"},"variableNames":[{"name":"value3","nativeSrc":"6666:6:125","nodeType":"YulIdentifier","src":"6666:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256","nativeSrc":"6098:591:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6189:9:125","nodeType":"YulTypedName","src":"6189:9:125","type":""},{"name":"dataEnd","nativeSrc":"6200:7:125","nodeType":"YulTypedName","src":"6200:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6212:6:125","nodeType":"YulTypedName","src":"6212:6:125","type":""},{"name":"value1","nativeSrc":"6220:6:125","nodeType":"YulTypedName","src":"6220:6:125","type":""},{"name":"value2","nativeSrc":"6228:6:125","nodeType":"YulTypedName","src":"6228:6:125","type":""},{"name":"value3","nativeSrc":"6236:6:125","nodeType":"YulTypedName","src":"6236:6:125","type":""}],"src":"6098:591:125"},{"body":{"nativeSrc":"6726:95:125","nodeType":"YulBlock","src":"6726:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6743:1:125","nodeType":"YulLiteral","src":"6743:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"6750:3:125","nodeType":"YulLiteral","src":"6750:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"6755:10:125","nodeType":"YulLiteral","src":"6755:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"6746:3:125","nodeType":"YulIdentifier","src":"6746:3:125"},"nativeSrc":"6746:20:125","nodeType":"YulFunctionCall","src":"6746:20:125"}],"functionName":{"name":"mstore","nativeSrc":"6736:6:125","nodeType":"YulIdentifier","src":"6736:6:125"},"nativeSrc":"6736:31:125","nodeType":"YulFunctionCall","src":"6736:31:125"},"nativeSrc":"6736:31:125","nodeType":"YulExpressionStatement","src":"6736:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6783:1:125","nodeType":"YulLiteral","src":"6783:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"6786:4:125","nodeType":"YulLiteral","src":"6786:4:125","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"6776:6:125","nodeType":"YulIdentifier","src":"6776:6:125"},"nativeSrc":"6776:15:125","nodeType":"YulFunctionCall","src":"6776:15:125"},"nativeSrc":"6776:15:125","nodeType":"YulExpressionStatement","src":"6776:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6807:1:125","nodeType":"YulLiteral","src":"6807:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6810:4:125","nodeType":"YulLiteral","src":"6810:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"6800:6:125","nodeType":"YulIdentifier","src":"6800:6:125"},"nativeSrc":"6800:15:125","nodeType":"YulFunctionCall","src":"6800:15:125"},"nativeSrc":"6800:15:125","nodeType":"YulExpressionStatement","src":"6800:15:125"}]},"name":"panic_error_0x11","nativeSrc":"6694:127:125","nodeType":"YulFunctionDefinition","src":"6694:127:125"},{"body":{"nativeSrc":"6875:79:125","nodeType":"YulBlock","src":"6875:79:125","statements":[{"nativeSrc":"6885:17:125","nodeType":"YulAssignment","src":"6885:17:125","value":{"arguments":[{"name":"x","nativeSrc":"6897:1:125","nodeType":"YulIdentifier","src":"6897:1:125"},{"name":"y","nativeSrc":"6900:1:125","nodeType":"YulIdentifier","src":"6900:1:125"}],"functionName":{"name":"sub","nativeSrc":"6893:3:125","nodeType":"YulIdentifier","src":"6893:3:125"},"nativeSrc":"6893:9:125","nodeType":"YulFunctionCall","src":"6893:9:125"},"variableNames":[{"name":"diff","nativeSrc":"6885:4:125","nodeType":"YulIdentifier","src":"6885:4:125"}]},{"body":{"nativeSrc":"6926:22:125","nodeType":"YulBlock","src":"6926:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"6928:16:125","nodeType":"YulIdentifier","src":"6928:16:125"},"nativeSrc":"6928:18:125","nodeType":"YulFunctionCall","src":"6928:18:125"},"nativeSrc":"6928:18:125","nodeType":"YulExpressionStatement","src":"6928:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"6917:4:125","nodeType":"YulIdentifier","src":"6917:4:125"},{"name":"x","nativeSrc":"6923:1:125","nodeType":"YulIdentifier","src":"6923:1:125"}],"functionName":{"name":"gt","nativeSrc":"6914:2:125","nodeType":"YulIdentifier","src":"6914:2:125"},"nativeSrc":"6914:11:125","nodeType":"YulFunctionCall","src":"6914:11:125"},"nativeSrc":"6911:37:125","nodeType":"YulIf","src":"6911:37:125"}]},"name":"checked_sub_t_uint256","nativeSrc":"6826:128:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"6857:1:125","nodeType":"YulTypedName","src":"6857:1:125","type":""},{"name":"y","nativeSrc":"6860:1:125","nodeType":"YulTypedName","src":"6860:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"6866:4:125","nodeType":"YulTypedName","src":"6866:4:125","type":""}],"src":"6826:128:125"},{"body":{"nativeSrc":"7007:131:125","nodeType":"YulBlock","src":"7007:131:125","statements":[{"nativeSrc":"7017:29:125","nodeType":"YulAssignment","src":"7017:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"7039:6:125","nodeType":"YulIdentifier","src":"7039:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"7026:12:125","nodeType":"YulIdentifier","src":"7026:12:125"},"nativeSrc":"7026:20:125","nodeType":"YulFunctionCall","src":"7026:20:125"},"variableNames":[{"name":"value","nativeSrc":"7017:5:125","nodeType":"YulIdentifier","src":"7017:5:125"}]},{"body":{"nativeSrc":"7116:16:125","nodeType":"YulBlock","src":"7116:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7125:1:125","nodeType":"YulLiteral","src":"7125:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7128:1:125","nodeType":"YulLiteral","src":"7128:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7118:6:125","nodeType":"YulIdentifier","src":"7118:6:125"},"nativeSrc":"7118:12:125","nodeType":"YulFunctionCall","src":"7118:12:125"},"nativeSrc":"7118:12:125","nodeType":"YulExpressionStatement","src":"7118:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7068:5:125","nodeType":"YulIdentifier","src":"7068:5:125"},{"arguments":[{"name":"value","nativeSrc":"7079:5:125","nodeType":"YulIdentifier","src":"7079:5:125"},{"kind":"number","nativeSrc":"7086:26:125","nodeType":"YulLiteral","src":"7086:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"7075:3:125","nodeType":"YulIdentifier","src":"7075:3:125"},"nativeSrc":"7075:38:125","nodeType":"YulFunctionCall","src":"7075:38:125"}],"functionName":{"name":"eq","nativeSrc":"7065:2:125","nodeType":"YulIdentifier","src":"7065:2:125"},"nativeSrc":"7065:49:125","nodeType":"YulFunctionCall","src":"7065:49:125"}],"functionName":{"name":"iszero","nativeSrc":"7058:6:125","nodeType":"YulIdentifier","src":"7058:6:125"},"nativeSrc":"7058:57:125","nodeType":"YulFunctionCall","src":"7058:57:125"},"nativeSrc":"7055:77:125","nodeType":"YulIf","src":"7055:77:125"}]},"name":"abi_decode_uint96","nativeSrc":"6959:179:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"6986:6:125","nodeType":"YulTypedName","src":"6986:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"6997:5:125","nodeType":"YulTypedName","src":"6997:5:125","type":""}],"src":"6959:179:125"},{"body":{"nativeSrc":"7206:1225:125","nodeType":"YulBlock","src":"7206:1225:125","statements":[{"body":{"nativeSrc":"7250:16:125","nodeType":"YulBlock","src":"7250:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7259:1:125","nodeType":"YulLiteral","src":"7259:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7262:1:125","nodeType":"YulLiteral","src":"7262:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7252:6:125","nodeType":"YulIdentifier","src":"7252:6:125"},"nativeSrc":"7252:12:125","nodeType":"YulFunctionCall","src":"7252:12:125"},"nativeSrc":"7252:12:125","nodeType":"YulExpressionStatement","src":"7252:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"7227:3:125","nodeType":"YulIdentifier","src":"7227:3:125"},{"name":"headStart","nativeSrc":"7232:9:125","nodeType":"YulIdentifier","src":"7232:9:125"}],"functionName":{"name":"sub","nativeSrc":"7223:3:125","nodeType":"YulIdentifier","src":"7223:3:125"},"nativeSrc":"7223:19:125","nodeType":"YulFunctionCall","src":"7223:19:125"},{"kind":"number","nativeSrc":"7244:4:125","nodeType":"YulLiteral","src":"7244:4:125","type":"","value":"0xe0"}],"functionName":{"name":"slt","nativeSrc":"7219:3:125","nodeType":"YulIdentifier","src":"7219:3:125"},"nativeSrc":"7219:30:125","nodeType":"YulFunctionCall","src":"7219:30:125"},"nativeSrc":"7216:50:125","nodeType":"YulIf","src":"7216:50:125"},{"nativeSrc":"7275:15:125","nodeType":"YulVariableDeclaration","src":"7275:15:125","value":{"kind":"number","nativeSrc":"7289:1:125","nodeType":"YulLiteral","src":"7289:1:125","type":"","value":"0"},"variables":[{"name":"memPtr","nativeSrc":"7279:6:125","nodeType":"YulTypedName","src":"7279:6:125","type":""}]},{"nativeSrc":"7299:19:125","nodeType":"YulAssignment","src":"7299:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"7315:2:125","nodeType":"YulLiteral","src":"7315:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"7309:5:125","nodeType":"YulIdentifier","src":"7309:5:125"},"nativeSrc":"7309:9:125","nodeType":"YulFunctionCall","src":"7309:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"7299:6:125","nodeType":"YulIdentifier","src":"7299:6:125"}]},{"nativeSrc":"7327:35:125","nodeType":"YulVariableDeclaration","src":"7327:35:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"7349:6:125","nodeType":"YulIdentifier","src":"7349:6:125"},{"kind":"number","nativeSrc":"7357:4:125","nodeType":"YulLiteral","src":"7357:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"7345:3:125","nodeType":"YulIdentifier","src":"7345:3:125"},"nativeSrc":"7345:17:125","nodeType":"YulFunctionCall","src":"7345:17:125"},"variables":[{"name":"newFreePtr","nativeSrc":"7331:10:125","nodeType":"YulTypedName","src":"7331:10:125","type":""}]},{"body":{"nativeSrc":"7445:111:125","nodeType":"YulBlock","src":"7445:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7466:1:125","nodeType":"YulLiteral","src":"7466:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"7473:3:125","nodeType":"YulLiteral","src":"7473:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"7478:10:125","nodeType":"YulLiteral","src":"7478:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"7469:3:125","nodeType":"YulIdentifier","src":"7469:3:125"},"nativeSrc":"7469:20:125","nodeType":"YulFunctionCall","src":"7469:20:125"}],"functionName":{"name":"mstore","nativeSrc":"7459:6:125","nodeType":"YulIdentifier","src":"7459:6:125"},"nativeSrc":"7459:31:125","nodeType":"YulFunctionCall","src":"7459:31:125"},"nativeSrc":"7459:31:125","nodeType":"YulExpressionStatement","src":"7459:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7510:1:125","nodeType":"YulLiteral","src":"7510:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"7513:4:125","nodeType":"YulLiteral","src":"7513:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"7503:6:125","nodeType":"YulIdentifier","src":"7503:6:125"},"nativeSrc":"7503:15:125","nodeType":"YulFunctionCall","src":"7503:15:125"},"nativeSrc":"7503:15:125","nodeType":"YulExpressionStatement","src":"7503:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7538:1:125","nodeType":"YulLiteral","src":"7538:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7541:4:125","nodeType":"YulLiteral","src":"7541:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"7531:6:125","nodeType":"YulIdentifier","src":"7531:6:125"},"nativeSrc":"7531:15:125","nodeType":"YulFunctionCall","src":"7531:15:125"},"nativeSrc":"7531:15:125","nodeType":"YulExpressionStatement","src":"7531:15:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"7380:10:125","nodeType":"YulIdentifier","src":"7380:10:125"},{"kind":"number","nativeSrc":"7392:18:125","nodeType":"YulLiteral","src":"7392:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7377:2:125","nodeType":"YulIdentifier","src":"7377:2:125"},"nativeSrc":"7377:34:125","nodeType":"YulFunctionCall","src":"7377:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"7416:10:125","nodeType":"YulIdentifier","src":"7416:10:125"},{"name":"memPtr","nativeSrc":"7428:6:125","nodeType":"YulIdentifier","src":"7428:6:125"}],"functionName":{"name":"lt","nativeSrc":"7413:2:125","nodeType":"YulIdentifier","src":"7413:2:125"},"nativeSrc":"7413:22:125","nodeType":"YulFunctionCall","src":"7413:22:125"}],"functionName":{"name":"or","nativeSrc":"7374:2:125","nodeType":"YulIdentifier","src":"7374:2:125"},"nativeSrc":"7374:62:125","nodeType":"YulFunctionCall","src":"7374:62:125"},"nativeSrc":"7371:185:125","nodeType":"YulIf","src":"7371:185:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7572:2:125","nodeType":"YulLiteral","src":"7572:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"7576:10:125","nodeType":"YulIdentifier","src":"7576:10:125"}],"functionName":{"name":"mstore","nativeSrc":"7565:6:125","nodeType":"YulIdentifier","src":"7565:6:125"},"nativeSrc":"7565:22:125","nodeType":"YulFunctionCall","src":"7565:22:125"},"nativeSrc":"7565:22:125","nodeType":"YulExpressionStatement","src":"7565:22:125"},{"nativeSrc":"7596:15:125","nodeType":"YulAssignment","src":"7596:15:125","value":{"name":"memPtr","nativeSrc":"7605:6:125","nodeType":"YulIdentifier","src":"7605:6:125"},"variableNames":[{"name":"value","nativeSrc":"7596:5:125","nodeType":"YulIdentifier","src":"7596:5:125"}]},{"nativeSrc":"7620:16:125","nodeType":"YulVariableDeclaration","src":"7620:16:125","value":{"kind":"number","nativeSrc":"7635:1:125","nodeType":"YulLiteral","src":"7635:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"7624:7:125","nodeType":"YulTypedName","src":"7624:7:125","type":""}]},{"nativeSrc":"7645:34:125","nodeType":"YulAssignment","src":"7645:34:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7669:9:125","nodeType":"YulIdentifier","src":"7669:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"7656:12:125","nodeType":"YulIdentifier","src":"7656:12:125"},"nativeSrc":"7656:23:125","nodeType":"YulFunctionCall","src":"7656:23:125"},"variableNames":[{"name":"value_1","nativeSrc":"7645:7:125","nodeType":"YulIdentifier","src":"7645:7:125"}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"7695:6:125","nodeType":"YulIdentifier","src":"7695:6:125"},{"name":"value_1","nativeSrc":"7703:7:125","nodeType":"YulIdentifier","src":"7703:7:125"}],"functionName":{"name":"mstore","nativeSrc":"7688:6:125","nodeType":"YulIdentifier","src":"7688:6:125"},"nativeSrc":"7688:23:125","nodeType":"YulFunctionCall","src":"7688:23:125"},"nativeSrc":"7688:23:125","nodeType":"YulExpressionStatement","src":"7688:23:125"},{"nativeSrc":"7720:16:125","nodeType":"YulVariableDeclaration","src":"7720:16:125","value":{"kind":"number","nativeSrc":"7735:1:125","nodeType":"YulLiteral","src":"7735:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"7724:7:125","nodeType":"YulTypedName","src":"7724:7:125","type":""}]},{"nativeSrc":"7745:43:125","nodeType":"YulAssignment","src":"7745:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7773:9:125","nodeType":"YulIdentifier","src":"7773:9:125"},{"kind":"number","nativeSrc":"7784:2:125","nodeType":"YulLiteral","src":"7784:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7769:3:125","nodeType":"YulIdentifier","src":"7769:3:125"},"nativeSrc":"7769:18:125","nodeType":"YulFunctionCall","src":"7769:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"7756:12:125","nodeType":"YulIdentifier","src":"7756:12:125"},"nativeSrc":"7756:32:125","nodeType":"YulFunctionCall","src":"7756:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"7745:7:125","nodeType":"YulIdentifier","src":"7745:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"7808:6:125","nodeType":"YulIdentifier","src":"7808:6:125"},{"kind":"number","nativeSrc":"7816:2:125","nodeType":"YulLiteral","src":"7816:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7804:3:125","nodeType":"YulIdentifier","src":"7804:3:125"},"nativeSrc":"7804:15:125","nodeType":"YulFunctionCall","src":"7804:15:125"},{"name":"value_2","nativeSrc":"7821:7:125","nodeType":"YulIdentifier","src":"7821:7:125"}],"functionName":{"name":"mstore","nativeSrc":"7797:6:125","nodeType":"YulIdentifier","src":"7797:6:125"},"nativeSrc":"7797:32:125","nodeType":"YulFunctionCall","src":"7797:32:125"},"nativeSrc":"7797:32:125","nodeType":"YulExpressionStatement","src":"7797:32:125"},{"nativeSrc":"7838:16:125","nodeType":"YulVariableDeclaration","src":"7838:16:125","value":{"kind":"number","nativeSrc":"7853:1:125","nodeType":"YulLiteral","src":"7853:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"7842:7:125","nodeType":"YulTypedName","src":"7842:7:125","type":""}]},{"nativeSrc":"7863:43:125","nodeType":"YulAssignment","src":"7863:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7891:9:125","nodeType":"YulIdentifier","src":"7891:9:125"},{"kind":"number","nativeSrc":"7902:2:125","nodeType":"YulLiteral","src":"7902:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7887:3:125","nodeType":"YulIdentifier","src":"7887:3:125"},"nativeSrc":"7887:18:125","nodeType":"YulFunctionCall","src":"7887:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"7874:12:125","nodeType":"YulIdentifier","src":"7874:12:125"},"nativeSrc":"7874:32:125","nodeType":"YulFunctionCall","src":"7874:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"7863:7:125","nodeType":"YulIdentifier","src":"7863:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"7926:6:125","nodeType":"YulIdentifier","src":"7926:6:125"},{"kind":"number","nativeSrc":"7934:2:125","nodeType":"YulLiteral","src":"7934:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7922:3:125","nodeType":"YulIdentifier","src":"7922:3:125"},"nativeSrc":"7922:15:125","nodeType":"YulFunctionCall","src":"7922:15:125"},{"name":"value_3","nativeSrc":"7939:7:125","nodeType":"YulIdentifier","src":"7939:7:125"}],"functionName":{"name":"mstore","nativeSrc":"7915:6:125","nodeType":"YulIdentifier","src":"7915:6:125"},"nativeSrc":"7915:32:125","nodeType":"YulFunctionCall","src":"7915:32:125"},"nativeSrc":"7915:32:125","nodeType":"YulExpressionStatement","src":"7915:32:125"},{"nativeSrc":"7956:16:125","nodeType":"YulVariableDeclaration","src":"7956:16:125","value":{"kind":"number","nativeSrc":"7971:1:125","nodeType":"YulLiteral","src":"7971:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"7960:7:125","nodeType":"YulTypedName","src":"7960:7:125","type":""}]},{"nativeSrc":"7981:43:125","nodeType":"YulAssignment","src":"7981:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8009:9:125","nodeType":"YulIdentifier","src":"8009:9:125"},{"kind":"number","nativeSrc":"8020:2:125","nodeType":"YulLiteral","src":"8020:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8005:3:125","nodeType":"YulIdentifier","src":"8005:3:125"},"nativeSrc":"8005:18:125","nodeType":"YulFunctionCall","src":"8005:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"7992:12:125","nodeType":"YulIdentifier","src":"7992:12:125"},"nativeSrc":"7992:32:125","nodeType":"YulFunctionCall","src":"7992:32:125"},"variableNames":[{"name":"value_4","nativeSrc":"7981:7:125","nodeType":"YulIdentifier","src":"7981:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8044:6:125","nodeType":"YulIdentifier","src":"8044:6:125"},{"kind":"number","nativeSrc":"8052:2:125","nodeType":"YulLiteral","src":"8052:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8040:3:125","nodeType":"YulIdentifier","src":"8040:3:125"},"nativeSrc":"8040:15:125","nodeType":"YulFunctionCall","src":"8040:15:125"},{"name":"value_4","nativeSrc":"8057:7:125","nodeType":"YulIdentifier","src":"8057:7:125"}],"functionName":{"name":"mstore","nativeSrc":"8033:6:125","nodeType":"YulIdentifier","src":"8033:6:125"},"nativeSrc":"8033:32:125","nodeType":"YulFunctionCall","src":"8033:32:125"},"nativeSrc":"8033:32:125","nodeType":"YulExpressionStatement","src":"8033:32:125"},{"nativeSrc":"8074:16:125","nodeType":"YulVariableDeclaration","src":"8074:16:125","value":{"kind":"number","nativeSrc":"8089:1:125","nodeType":"YulLiteral","src":"8089:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"8078:7:125","nodeType":"YulTypedName","src":"8078:7:125","type":""}]},{"nativeSrc":"8099:44:125","nodeType":"YulAssignment","src":"8099:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8127:9:125","nodeType":"YulIdentifier","src":"8127:9:125"},{"kind":"number","nativeSrc":"8138:3:125","nodeType":"YulLiteral","src":"8138:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"8123:3:125","nodeType":"YulIdentifier","src":"8123:3:125"},"nativeSrc":"8123:19:125","nodeType":"YulFunctionCall","src":"8123:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"8110:12:125","nodeType":"YulIdentifier","src":"8110:12:125"},"nativeSrc":"8110:33:125","nodeType":"YulFunctionCall","src":"8110:33:125"},"variableNames":[{"name":"value_5","nativeSrc":"8099:7:125","nodeType":"YulIdentifier","src":"8099:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8163:6:125","nodeType":"YulIdentifier","src":"8163:6:125"},{"kind":"number","nativeSrc":"8171:3:125","nodeType":"YulLiteral","src":"8171:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"8159:3:125","nodeType":"YulIdentifier","src":"8159:3:125"},"nativeSrc":"8159:16:125","nodeType":"YulFunctionCall","src":"8159:16:125"},{"name":"value_5","nativeSrc":"8177:7:125","nodeType":"YulIdentifier","src":"8177:7:125"}],"functionName":{"name":"mstore","nativeSrc":"8152:6:125","nodeType":"YulIdentifier","src":"8152:6:125"},"nativeSrc":"8152:33:125","nodeType":"YulFunctionCall","src":"8152:33:125"},"nativeSrc":"8152:33:125","nodeType":"YulExpressionStatement","src":"8152:33:125"},{"nativeSrc":"8194:16:125","nodeType":"YulVariableDeclaration","src":"8194:16:125","value":{"kind":"number","nativeSrc":"8209:1:125","nodeType":"YulLiteral","src":"8209:1:125","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"8198:7:125","nodeType":"YulTypedName","src":"8198:7:125","type":""}]},{"nativeSrc":"8219:44:125","nodeType":"YulAssignment","src":"8219:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8247:9:125","nodeType":"YulIdentifier","src":"8247:9:125"},{"kind":"number","nativeSrc":"8258:3:125","nodeType":"YulLiteral","src":"8258:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"8243:3:125","nodeType":"YulIdentifier","src":"8243:3:125"},"nativeSrc":"8243:19:125","nodeType":"YulFunctionCall","src":"8243:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"8230:12:125","nodeType":"YulIdentifier","src":"8230:12:125"},"nativeSrc":"8230:33:125","nodeType":"YulFunctionCall","src":"8230:33:125"},"variableNames":[{"name":"value_6","nativeSrc":"8219:7:125","nodeType":"YulIdentifier","src":"8219:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8283:6:125","nodeType":"YulIdentifier","src":"8283:6:125"},{"kind":"number","nativeSrc":"8291:3:125","nodeType":"YulLiteral","src":"8291:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"8279:3:125","nodeType":"YulIdentifier","src":"8279:3:125"},"nativeSrc":"8279:16:125","nodeType":"YulFunctionCall","src":"8279:16:125"},{"name":"value_6","nativeSrc":"8297:7:125","nodeType":"YulIdentifier","src":"8297:7:125"}],"functionName":{"name":"mstore","nativeSrc":"8272:6:125","nodeType":"YulIdentifier","src":"8272:6:125"},"nativeSrc":"8272:33:125","nodeType":"YulFunctionCall","src":"8272:33:125"},"nativeSrc":"8272:33:125","nodeType":"YulExpressionStatement","src":"8272:33:125"},{"nativeSrc":"8314:16:125","nodeType":"YulVariableDeclaration","src":"8314:16:125","value":{"kind":"number","nativeSrc":"8329:1:125","nodeType":"YulLiteral","src":"8329:1:125","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"8318:7:125","nodeType":"YulTypedName","src":"8318:7:125","type":""}]},{"nativeSrc":"8339:44:125","nodeType":"YulAssignment","src":"8339:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8367:9:125","nodeType":"YulIdentifier","src":"8367:9:125"},{"kind":"number","nativeSrc":"8378:3:125","nodeType":"YulLiteral","src":"8378:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"8363:3:125","nodeType":"YulIdentifier","src":"8363:3:125"},"nativeSrc":"8363:19:125","nodeType":"YulFunctionCall","src":"8363:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"8350:12:125","nodeType":"YulIdentifier","src":"8350:12:125"},"nativeSrc":"8350:33:125","nodeType":"YulFunctionCall","src":"8350:33:125"},"variableNames":[{"name":"value_7","nativeSrc":"8339:7:125","nodeType":"YulIdentifier","src":"8339:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"8403:6:125","nodeType":"YulIdentifier","src":"8403:6:125"},{"kind":"number","nativeSrc":"8411:3:125","nodeType":"YulLiteral","src":"8411:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"8399:3:125","nodeType":"YulIdentifier","src":"8399:3:125"},"nativeSrc":"8399:16:125","nodeType":"YulFunctionCall","src":"8399:16:125"},{"name":"value_7","nativeSrc":"8417:7:125","nodeType":"YulIdentifier","src":"8417:7:125"}],"functionName":{"name":"mstore","nativeSrc":"8392:6:125","nodeType":"YulIdentifier","src":"8392:6:125"},"nativeSrc":"8392:33:125","nodeType":"YulFunctionCall","src":"8392:33:125"},"nativeSrc":"8392:33:125","nodeType":"YulExpressionStatement","src":"8392:33:125"}]},"name":"abi_decode_struct_Params","nativeSrc":"7143:1288:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7177:9:125","nodeType":"YulTypedName","src":"7177:9:125","type":""},{"name":"end","nativeSrc":"7188:3:125","nodeType":"YulTypedName","src":"7188:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"7196:5:125","nodeType":"YulTypedName","src":"7196:5:125","type":""}],"src":"7143:1288:125"},{"body":{"nativeSrc":"8658:629:125","nodeType":"YulBlock","src":"8658:629:125","statements":[{"body":{"nativeSrc":"8705:16:125","nodeType":"YulBlock","src":"8705:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8714:1:125","nodeType":"YulLiteral","src":"8714:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8717:1:125","nodeType":"YulLiteral","src":"8717:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8707:6:125","nodeType":"YulIdentifier","src":"8707:6:125"},"nativeSrc":"8707:12:125","nodeType":"YulFunctionCall","src":"8707:12:125"},"nativeSrc":"8707:12:125","nodeType":"YulExpressionStatement","src":"8707:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8679:7:125","nodeType":"YulIdentifier","src":"8679:7:125"},{"name":"headStart","nativeSrc":"8688:9:125","nodeType":"YulIdentifier","src":"8688:9:125"}],"functionName":{"name":"sub","nativeSrc":"8675:3:125","nodeType":"YulIdentifier","src":"8675:3:125"},"nativeSrc":"8675:23:125","nodeType":"YulFunctionCall","src":"8675:23:125"},{"kind":"number","nativeSrc":"8700:3:125","nodeType":"YulLiteral","src":"8700:3:125","type":"","value":"768"}],"functionName":{"name":"slt","nativeSrc":"8671:3:125","nodeType":"YulIdentifier","src":"8671:3:125"},"nativeSrc":"8671:33:125","nodeType":"YulFunctionCall","src":"8671:33:125"},"nativeSrc":"8668:53:125","nodeType":"YulIf","src":"8668:53:125"},{"nativeSrc":"8730:58:125","nodeType":"YulAssignment","src":"8730:58:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8769:9:125","nodeType":"YulIdentifier","src":"8769:9:125"},{"name":"dataEnd","nativeSrc":"8780:7:125","nodeType":"YulIdentifier","src":"8780:7:125"}],"functionName":{"name":"abi_decode_struct_PolicyData","nativeSrc":"8740:28:125","nodeType":"YulIdentifier","src":"8740:28:125"},"nativeSrc":"8740:48:125","nodeType":"YulFunctionCall","src":"8740:48:125"},"variableNames":[{"name":"value0","nativeSrc":"8730:6:125","nodeType":"YulIdentifier","src":"8730:6:125"}]},{"nativeSrc":"8797:14:125","nodeType":"YulVariableDeclaration","src":"8797:14:125","value":{"kind":"number","nativeSrc":"8810:1:125","nodeType":"YulLiteral","src":"8810:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"8801:5:125","nodeType":"YulTypedName","src":"8801:5:125","type":""}]},{"nativeSrc":"8820:42:125","nodeType":"YulAssignment","src":"8820:42:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8846:9:125","nodeType":"YulIdentifier","src":"8846:9:125"},{"kind":"number","nativeSrc":"8857:3:125","nodeType":"YulLiteral","src":"8857:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"8842:3:125","nodeType":"YulIdentifier","src":"8842:3:125"},"nativeSrc":"8842:19:125","nodeType":"YulFunctionCall","src":"8842:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"8829:12:125","nodeType":"YulIdentifier","src":"8829:12:125"},"nativeSrc":"8829:33:125","nodeType":"YulFunctionCall","src":"8829:33:125"},"variableNames":[{"name":"value","nativeSrc":"8820:5:125","nodeType":"YulIdentifier","src":"8820:5:125"}]},{"nativeSrc":"8871:15:125","nodeType":"YulAssignment","src":"8871:15:125","value":{"name":"value","nativeSrc":"8881:5:125","nodeType":"YulIdentifier","src":"8881:5:125"},"variableNames":[{"name":"value1","nativeSrc":"8871:6:125","nodeType":"YulIdentifier","src":"8871:6:125"}]},{"nativeSrc":"8895:16:125","nodeType":"YulVariableDeclaration","src":"8895:16:125","value":{"kind":"number","nativeSrc":"8910:1:125","nodeType":"YulLiteral","src":"8910:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"8899:7:125","nodeType":"YulTypedName","src":"8899:7:125","type":""}]},{"nativeSrc":"8920:44:125","nodeType":"YulAssignment","src":"8920:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8948:9:125","nodeType":"YulIdentifier","src":"8948:9:125"},{"kind":"number","nativeSrc":"8959:3:125","nodeType":"YulLiteral","src":"8959:3:125","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"8944:3:125","nodeType":"YulIdentifier","src":"8944:3:125"},"nativeSrc":"8944:19:125","nodeType":"YulFunctionCall","src":"8944:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"8931:12:125","nodeType":"YulIdentifier","src":"8931:12:125"},"nativeSrc":"8931:33:125","nodeType":"YulFunctionCall","src":"8931:33:125"},"variableNames":[{"name":"value_1","nativeSrc":"8920:7:125","nodeType":"YulIdentifier","src":"8920:7:125"}]},{"nativeSrc":"8973:17:125","nodeType":"YulAssignment","src":"8973:17:125","value":{"name":"value_1","nativeSrc":"8983:7:125","nodeType":"YulIdentifier","src":"8983:7:125"},"variableNames":[{"name":"value2","nativeSrc":"8973:6:125","nodeType":"YulIdentifier","src":"8973:6:125"}]},{"nativeSrc":"8999:16:125","nodeType":"YulVariableDeclaration","src":"8999:16:125","value":{"kind":"number","nativeSrc":"9014:1:125","nodeType":"YulLiteral","src":"9014:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"9003:7:125","nodeType":"YulTypedName","src":"9003:7:125","type":""}]},{"nativeSrc":"9024:44:125","nodeType":"YulAssignment","src":"9024:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9052:9:125","nodeType":"YulIdentifier","src":"9052:9:125"},{"kind":"number","nativeSrc":"9063:3:125","nodeType":"YulLiteral","src":"9063:3:125","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"9048:3:125","nodeType":"YulIdentifier","src":"9048:3:125"},"nativeSrc":"9048:19:125","nodeType":"YulFunctionCall","src":"9048:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"9035:12:125","nodeType":"YulIdentifier","src":"9035:12:125"},"nativeSrc":"9035:33:125","nodeType":"YulFunctionCall","src":"9035:33:125"},"variableNames":[{"name":"value_2","nativeSrc":"9024:7:125","nodeType":"YulIdentifier","src":"9024:7:125"}]},{"nativeSrc":"9077:17:125","nodeType":"YulAssignment","src":"9077:17:125","value":{"name":"value_2","nativeSrc":"9087:7:125","nodeType":"YulIdentifier","src":"9087:7:125"},"variableNames":[{"name":"value3","nativeSrc":"9077:6:125","nodeType":"YulIdentifier","src":"9077:6:125"}]},{"nativeSrc":"9103:48:125","nodeType":"YulAssignment","src":"9103:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9135:9:125","nodeType":"YulIdentifier","src":"9135:9:125"},{"kind":"number","nativeSrc":"9146:3:125","nodeType":"YulLiteral","src":"9146:3:125","type":"","value":"480"}],"functionName":{"name":"add","nativeSrc":"9131:3:125","nodeType":"YulIdentifier","src":"9131:3:125"},"nativeSrc":"9131:19:125","nodeType":"YulFunctionCall","src":"9131:19:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"9113:17:125","nodeType":"YulIdentifier","src":"9113:17:125"},"nativeSrc":"9113:38:125","nodeType":"YulFunctionCall","src":"9113:38:125"},"variableNames":[{"name":"value4","nativeSrc":"9103:6:125","nodeType":"YulIdentifier","src":"9103:6:125"}]},{"nativeSrc":"9160:48:125","nodeType":"YulAssignment","src":"9160:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9192:9:125","nodeType":"YulIdentifier","src":"9192:9:125"},{"kind":"number","nativeSrc":"9203:3:125","nodeType":"YulLiteral","src":"9203:3:125","type":"","value":"512"}],"functionName":{"name":"add","nativeSrc":"9188:3:125","nodeType":"YulIdentifier","src":"9188:3:125"},"nativeSrc":"9188:19:125","nodeType":"YulFunctionCall","src":"9188:19:125"}],"functionName":{"name":"abi_decode_uint96","nativeSrc":"9170:17:125","nodeType":"YulIdentifier","src":"9170:17:125"},"nativeSrc":"9170:38:125","nodeType":"YulFunctionCall","src":"9170:38:125"},"variableNames":[{"name":"value5","nativeSrc":"9160:6:125","nodeType":"YulIdentifier","src":"9160:6:125"}]},{"nativeSrc":"9217:64:125","nodeType":"YulAssignment","src":"9217:64:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9256:9:125","nodeType":"YulIdentifier","src":"9256:9:125"},{"kind":"number","nativeSrc":"9267:3:125","nodeType":"YulLiteral","src":"9267:3:125","type":"","value":"544"}],"functionName":{"name":"add","nativeSrc":"9252:3:125","nodeType":"YulIdentifier","src":"9252:3:125"},"nativeSrc":"9252:19:125","nodeType":"YulFunctionCall","src":"9252:19:125"},{"name":"dataEnd","nativeSrc":"9273:7:125","nodeType":"YulIdentifier","src":"9273:7:125"}],"functionName":{"name":"abi_decode_struct_Params","nativeSrc":"9227:24:125","nodeType":"YulIdentifier","src":"9227:24:125"},"nativeSrc":"9227:54:125","nodeType":"YulFunctionCall","src":"9227:54:125"},"variableNames":[{"name":"value6","nativeSrc":"9217:6:125","nodeType":"YulIdentifier","src":"9217:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$7718_memory_ptr","nativeSrc":"8436:851:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8576:9:125","nodeType":"YulTypedName","src":"8576:9:125","type":""},{"name":"dataEnd","nativeSrc":"8587:7:125","nodeType":"YulTypedName","src":"8587:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8599:6:125","nodeType":"YulTypedName","src":"8599:6:125","type":""},{"name":"value1","nativeSrc":"8607:6:125","nodeType":"YulTypedName","src":"8607:6:125","type":""},{"name":"value2","nativeSrc":"8615:6:125","nodeType":"YulTypedName","src":"8615:6:125","type":""},{"name":"value3","nativeSrc":"8623:6:125","nodeType":"YulTypedName","src":"8623:6:125","type":""},{"name":"value4","nativeSrc":"8631:6:125","nodeType":"YulTypedName","src":"8631:6:125","type":""},{"name":"value5","nativeSrc":"8639:6:125","nodeType":"YulTypedName","src":"8639:6:125","type":""},{"name":"value6","nativeSrc":"8647:6:125","nodeType":"YulTypedName","src":"8647:6:125","type":""}],"src":"8436:851:125"},{"body":{"nativeSrc":"9469:549:125","nodeType":"YulBlock","src":"9469:549:125","statements":[{"body":{"nativeSrc":"9516:16:125","nodeType":"YulBlock","src":"9516:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9525:1:125","nodeType":"YulLiteral","src":"9525:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9528:1:125","nodeType":"YulLiteral","src":"9528:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9518:6:125","nodeType":"YulIdentifier","src":"9518:6:125"},"nativeSrc":"9518:12:125","nodeType":"YulFunctionCall","src":"9518:12:125"},"nativeSrc":"9518:12:125","nodeType":"YulExpressionStatement","src":"9518:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9490:7:125","nodeType":"YulIdentifier","src":"9490:7:125"},{"name":"headStart","nativeSrc":"9499:9:125","nodeType":"YulIdentifier","src":"9499:9:125"}],"functionName":{"name":"sub","nativeSrc":"9486:3:125","nodeType":"YulIdentifier","src":"9486:3:125"},"nativeSrc":"9486:23:125","nodeType":"YulFunctionCall","src":"9486:23:125"},{"kind":"number","nativeSrc":"9511:3:125","nodeType":"YulLiteral","src":"9511:3:125","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"9482:3:125","nodeType":"YulIdentifier","src":"9482:3:125"},"nativeSrc":"9482:33:125","nodeType":"YulFunctionCall","src":"9482:33:125"},"nativeSrc":"9479:53:125","nodeType":"YulIf","src":"9479:53:125"},{"nativeSrc":"9541:14:125","nodeType":"YulVariableDeclaration","src":"9541:14:125","value":{"kind":"number","nativeSrc":"9554:1:125","nodeType":"YulLiteral","src":"9554:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"9545:5:125","nodeType":"YulTypedName","src":"9545:5:125","type":""}]},{"nativeSrc":"9564:32:125","nodeType":"YulAssignment","src":"9564:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"9586:9:125","nodeType":"YulIdentifier","src":"9586:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"9573:12:125","nodeType":"YulIdentifier","src":"9573:12:125"},"nativeSrc":"9573:23:125","nodeType":"YulFunctionCall","src":"9573:23:125"},"variableNames":[{"name":"value","nativeSrc":"9564:5:125","nodeType":"YulIdentifier","src":"9564:5:125"}]},{"nativeSrc":"9605:15:125","nodeType":"YulAssignment","src":"9605:15:125","value":{"name":"value","nativeSrc":"9615:5:125","nodeType":"YulIdentifier","src":"9615:5:125"},"variableNames":[{"name":"value0","nativeSrc":"9605:6:125","nodeType":"YulIdentifier","src":"9605:6:125"}]},{"nativeSrc":"9629:16:125","nodeType":"YulVariableDeclaration","src":"9629:16:125","value":{"kind":"number","nativeSrc":"9644:1:125","nodeType":"YulLiteral","src":"9644:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"9633:7:125","nodeType":"YulTypedName","src":"9633:7:125","type":""}]},{"nativeSrc":"9654:43:125","nodeType":"YulAssignment","src":"9654:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9682:9:125","nodeType":"YulIdentifier","src":"9682:9:125"},{"kind":"number","nativeSrc":"9693:2:125","nodeType":"YulLiteral","src":"9693:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9678:3:125","nodeType":"YulIdentifier","src":"9678:3:125"},"nativeSrc":"9678:18:125","nodeType":"YulFunctionCall","src":"9678:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"9665:12:125","nodeType":"YulIdentifier","src":"9665:12:125"},"nativeSrc":"9665:32:125","nodeType":"YulFunctionCall","src":"9665:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"9654:7:125","nodeType":"YulIdentifier","src":"9654:7:125"}]},{"nativeSrc":"9706:17:125","nodeType":"YulAssignment","src":"9706:17:125","value":{"name":"value_1","nativeSrc":"9716:7:125","nodeType":"YulIdentifier","src":"9716:7:125"},"variableNames":[{"name":"value1","nativeSrc":"9706:6:125","nodeType":"YulIdentifier","src":"9706:6:125"}]},{"nativeSrc":"9732:16:125","nodeType":"YulVariableDeclaration","src":"9732:16:125","value":{"kind":"number","nativeSrc":"9747:1:125","nodeType":"YulLiteral","src":"9747:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"9736:7:125","nodeType":"YulTypedName","src":"9736:7:125","type":""}]},{"nativeSrc":"9757:43:125","nodeType":"YulAssignment","src":"9757:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9785:9:125","nodeType":"YulIdentifier","src":"9785:9:125"},{"kind":"number","nativeSrc":"9796:2:125","nodeType":"YulLiteral","src":"9796:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9781:3:125","nodeType":"YulIdentifier","src":"9781:3:125"},"nativeSrc":"9781:18:125","nodeType":"YulFunctionCall","src":"9781:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"9768:12:125","nodeType":"YulIdentifier","src":"9768:12:125"},"nativeSrc":"9768:32:125","nodeType":"YulFunctionCall","src":"9768:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"9757:7:125","nodeType":"YulIdentifier","src":"9757:7:125"}]},{"nativeSrc":"9809:17:125","nodeType":"YulAssignment","src":"9809:17:125","value":{"name":"value_2","nativeSrc":"9819:7:125","nodeType":"YulIdentifier","src":"9819:7:125"},"variableNames":[{"name":"value2","nativeSrc":"9809:6:125","nodeType":"YulIdentifier","src":"9809:6:125"}]},{"nativeSrc":"9835:47:125","nodeType":"YulAssignment","src":"9835:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9867:9:125","nodeType":"YulIdentifier","src":"9867:9:125"},{"kind":"number","nativeSrc":"9878:2:125","nodeType":"YulLiteral","src":"9878:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9863:3:125","nodeType":"YulIdentifier","src":"9863:3:125"},"nativeSrc":"9863:18:125","nodeType":"YulFunctionCall","src":"9863:18:125"}],"functionName":{"name":"abi_decode_uint40","nativeSrc":"9845:17:125","nodeType":"YulIdentifier","src":"9845:17:125"},"nativeSrc":"9845:37:125","nodeType":"YulFunctionCall","src":"9845:37:125"},"variableNames":[{"name":"value3","nativeSrc":"9835:6:125","nodeType":"YulIdentifier","src":"9835:6:125"}]},{"nativeSrc":"9891:48:125","nodeType":"YulAssignment","src":"9891:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9923:9:125","nodeType":"YulIdentifier","src":"9923:9:125"},{"kind":"number","nativeSrc":"9934:3:125","nodeType":"YulLiteral","src":"9934:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"9919:3:125","nodeType":"YulIdentifier","src":"9919:3:125"},"nativeSrc":"9919:19:125","nodeType":"YulFunctionCall","src":"9919:19:125"}],"functionName":{"name":"abi_decode_uint96","nativeSrc":"9901:17:125","nodeType":"YulIdentifier","src":"9901:17:125"},"nativeSrc":"9901:38:125","nodeType":"YulFunctionCall","src":"9901:38:125"},"variableNames":[{"name":"value4","nativeSrc":"9891:6:125","nodeType":"YulIdentifier","src":"9891:6:125"}]},{"nativeSrc":"9948:64:125","nodeType":"YulAssignment","src":"9948:64:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9987:9:125","nodeType":"YulIdentifier","src":"9987:9:125"},{"kind":"number","nativeSrc":"9998:3:125","nodeType":"YulLiteral","src":"9998:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"9983:3:125","nodeType":"YulIdentifier","src":"9983:3:125"},"nativeSrc":"9983:19:125","nodeType":"YulFunctionCall","src":"9983:19:125"},{"name":"dataEnd","nativeSrc":"10004:7:125","nodeType":"YulIdentifier","src":"10004:7:125"}],"functionName":{"name":"abi_decode_struct_Params","nativeSrc":"9958:24:125","nodeType":"YulIdentifier","src":"9958:24:125"},"nativeSrc":"9958:54:125","nodeType":"YulFunctionCall","src":"9958:54:125"},"variableNames":[{"name":"value5","nativeSrc":"9948:6:125","nodeType":"YulIdentifier","src":"9948:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$7718_memory_ptr","nativeSrc":"9292:726:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9395:9:125","nodeType":"YulTypedName","src":"9395:9:125","type":""},{"name":"dataEnd","nativeSrc":"9406:7:125","nodeType":"YulTypedName","src":"9406:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9418:6:125","nodeType":"YulTypedName","src":"9418:6:125","type":""},{"name":"value1","nativeSrc":"9426:6:125","nodeType":"YulTypedName","src":"9426:6:125","type":""},{"name":"value2","nativeSrc":"9434:6:125","nodeType":"YulTypedName","src":"9434:6:125","type":""},{"name":"value3","nativeSrc":"9442:6:125","nodeType":"YulTypedName","src":"9442:6:125","type":""},{"name":"value4","nativeSrc":"9450:6:125","nodeType":"YulTypedName","src":"9450:6:125","type":""},{"name":"value5","nativeSrc":"9458:6:125","nodeType":"YulTypedName","src":"9458:6:125","type":""}],"src":"9292:726:125"},{"body":{"nativeSrc":"10075:116:125","nodeType":"YulBlock","src":"10075:116:125","statements":[{"nativeSrc":"10085:20:125","nodeType":"YulAssignment","src":"10085:20:125","value":{"arguments":[{"name":"x","nativeSrc":"10100:1:125","nodeType":"YulIdentifier","src":"10100:1:125"},{"name":"y","nativeSrc":"10103:1:125","nodeType":"YulIdentifier","src":"10103:1:125"}],"functionName":{"name":"mul","nativeSrc":"10096:3:125","nodeType":"YulIdentifier","src":"10096:3:125"},"nativeSrc":"10096:9:125","nodeType":"YulFunctionCall","src":"10096:9:125"},"variableNames":[{"name":"product","nativeSrc":"10085:7:125","nodeType":"YulIdentifier","src":"10085:7:125"}]},{"body":{"nativeSrc":"10163:22:125","nodeType":"YulBlock","src":"10163:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"10165:16:125","nodeType":"YulIdentifier","src":"10165:16:125"},"nativeSrc":"10165:18:125","nodeType":"YulFunctionCall","src":"10165:18:125"},"nativeSrc":"10165:18:125","nodeType":"YulExpressionStatement","src":"10165:18:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nativeSrc":"10134:1:125","nodeType":"YulIdentifier","src":"10134:1:125"}],"functionName":{"name":"iszero","nativeSrc":"10127:6:125","nodeType":"YulIdentifier","src":"10127:6:125"},"nativeSrc":"10127:9:125","nodeType":"YulFunctionCall","src":"10127:9:125"},{"arguments":[{"name":"y","nativeSrc":"10141:1:125","nodeType":"YulIdentifier","src":"10141:1:125"},{"arguments":[{"name":"product","nativeSrc":"10148:7:125","nodeType":"YulIdentifier","src":"10148:7:125"},{"name":"x","nativeSrc":"10157:1:125","nodeType":"YulIdentifier","src":"10157:1:125"}],"functionName":{"name":"div","nativeSrc":"10144:3:125","nodeType":"YulIdentifier","src":"10144:3:125"},"nativeSrc":"10144:15:125","nodeType":"YulFunctionCall","src":"10144:15:125"}],"functionName":{"name":"eq","nativeSrc":"10138:2:125","nodeType":"YulIdentifier","src":"10138:2:125"},"nativeSrc":"10138:22:125","nodeType":"YulFunctionCall","src":"10138:22:125"}],"functionName":{"name":"or","nativeSrc":"10124:2:125","nodeType":"YulIdentifier","src":"10124:2:125"},"nativeSrc":"10124:37:125","nodeType":"YulFunctionCall","src":"10124:37:125"}],"functionName":{"name":"iszero","nativeSrc":"10117:6:125","nodeType":"YulIdentifier","src":"10117:6:125"},"nativeSrc":"10117:45:125","nodeType":"YulFunctionCall","src":"10117:45:125"},"nativeSrc":"10114:71:125","nodeType":"YulIf","src":"10114:71:125"}]},"name":"checked_mul_t_uint256","nativeSrc":"10023:168:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"10054:1:125","nodeType":"YulTypedName","src":"10054:1:125","type":""},{"name":"y","nativeSrc":"10057:1:125","nodeType":"YulTypedName","src":"10057:1:125","type":""}],"returnVariables":[{"name":"product","nativeSrc":"10063:7:125","nodeType":"YulTypedName","src":"10063:7:125","type":""}],"src":"10023:168:125"},{"body":{"nativeSrc":"10242:171:125","nodeType":"YulBlock","src":"10242:171:125","statements":[{"body":{"nativeSrc":"10273:111:125","nodeType":"YulBlock","src":"10273:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10294:1:125","nodeType":"YulLiteral","src":"10294:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"10301:3:125","nodeType":"YulLiteral","src":"10301:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"10306:10:125","nodeType":"YulLiteral","src":"10306:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"10297:3:125","nodeType":"YulIdentifier","src":"10297:3:125"},"nativeSrc":"10297:20:125","nodeType":"YulFunctionCall","src":"10297:20:125"}],"functionName":{"name":"mstore","nativeSrc":"10287:6:125","nodeType":"YulIdentifier","src":"10287:6:125"},"nativeSrc":"10287:31:125","nodeType":"YulFunctionCall","src":"10287:31:125"},"nativeSrc":"10287:31:125","nodeType":"YulExpressionStatement","src":"10287:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10338:1:125","nodeType":"YulLiteral","src":"10338:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"10341:4:125","nodeType":"YulLiteral","src":"10341:4:125","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"10331:6:125","nodeType":"YulIdentifier","src":"10331:6:125"},"nativeSrc":"10331:15:125","nodeType":"YulFunctionCall","src":"10331:15:125"},"nativeSrc":"10331:15:125","nodeType":"YulExpressionStatement","src":"10331:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10366:1:125","nodeType":"YulLiteral","src":"10366:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10369:4:125","nodeType":"YulLiteral","src":"10369:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"10359:6:125","nodeType":"YulIdentifier","src":"10359:6:125"},"nativeSrc":"10359:15:125","nodeType":"YulFunctionCall","src":"10359:15:125"},"nativeSrc":"10359:15:125","nodeType":"YulExpressionStatement","src":"10359:15:125"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"10262:1:125","nodeType":"YulIdentifier","src":"10262:1:125"}],"functionName":{"name":"iszero","nativeSrc":"10255:6:125","nodeType":"YulIdentifier","src":"10255:6:125"},"nativeSrc":"10255:9:125","nodeType":"YulFunctionCall","src":"10255:9:125"},"nativeSrc":"10252:132:125","nodeType":"YulIf","src":"10252:132:125"},{"nativeSrc":"10393:14:125","nodeType":"YulAssignment","src":"10393:14:125","value":{"arguments":[{"name":"x","nativeSrc":"10402:1:125","nodeType":"YulIdentifier","src":"10402:1:125"},{"name":"y","nativeSrc":"10405:1:125","nodeType":"YulIdentifier","src":"10405:1:125"}],"functionName":{"name":"div","nativeSrc":"10398:3:125","nodeType":"YulIdentifier","src":"10398:3:125"},"nativeSrc":"10398:9:125","nodeType":"YulFunctionCall","src":"10398:9:125"},"variableNames":[{"name":"r","nativeSrc":"10393:1:125","nodeType":"YulIdentifier","src":"10393:1:125"}]}]},"name":"checked_div_t_uint256","nativeSrc":"10196:217:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"10227:1:125","nodeType":"YulTypedName","src":"10227:1:125","type":""},{"name":"y","nativeSrc":"10230:1:125","nodeType":"YulTypedName","src":"10230:1:125","type":""}],"returnVariables":[{"name":"r","nativeSrc":"10236:1:125","nodeType":"YulTypedName","src":"10236:1:125","type":""}],"src":"10196:217:125"},{"body":{"nativeSrc":"10466:128:125","nodeType":"YulBlock","src":"10466:128:125","statements":[{"nativeSrc":"10476:55:125","nodeType":"YulAssignment","src":"10476:55:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"10492:1:125","nodeType":"YulIdentifier","src":"10492:1:125"},{"kind":"number","nativeSrc":"10495:12:125","nodeType":"YulLiteral","src":"10495:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"10488:3:125","nodeType":"YulIdentifier","src":"10488:3:125"},"nativeSrc":"10488:20:125","nodeType":"YulFunctionCall","src":"10488:20:125"},{"arguments":[{"name":"y","nativeSrc":"10514:1:125","nodeType":"YulIdentifier","src":"10514:1:125"},{"kind":"number","nativeSrc":"10517:12:125","nodeType":"YulLiteral","src":"10517:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"10510:3:125","nodeType":"YulIdentifier","src":"10510:3:125"},"nativeSrc":"10510:20:125","nodeType":"YulFunctionCall","src":"10510:20:125"}],"functionName":{"name":"sub","nativeSrc":"10484:3:125","nodeType":"YulIdentifier","src":"10484:3:125"},"nativeSrc":"10484:47:125","nodeType":"YulFunctionCall","src":"10484:47:125"},"variableNames":[{"name":"diff","nativeSrc":"10476:4:125","nodeType":"YulIdentifier","src":"10476:4:125"}]},{"body":{"nativeSrc":"10566:22:125","nodeType":"YulBlock","src":"10566:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"10568:16:125","nodeType":"YulIdentifier","src":"10568:16:125"},"nativeSrc":"10568:18:125","nodeType":"YulFunctionCall","src":"10568:18:125"},"nativeSrc":"10568:18:125","nodeType":"YulExpressionStatement","src":"10568:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"10546:4:125","nodeType":"YulIdentifier","src":"10546:4:125"},{"kind":"number","nativeSrc":"10552:12:125","nodeType":"YulLiteral","src":"10552:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"gt","nativeSrc":"10543:2:125","nodeType":"YulIdentifier","src":"10543:2:125"},"nativeSrc":"10543:22:125","nodeType":"YulFunctionCall","src":"10543:22:125"},"nativeSrc":"10540:48:125","nodeType":"YulIf","src":"10540:48:125"}]},"name":"checked_sub_t_uint40","nativeSrc":"10418:176:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"10448:1:125","nodeType":"YulTypedName","src":"10448:1:125","type":""},{"name":"y","nativeSrc":"10451:1:125","nodeType":"YulTypedName","src":"10451:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"10457:4:125","nodeType":"YulTypedName","src":"10457:4:125","type":""}],"src":"10418:176:125"}]},"contents":"{\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        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\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        value1 := add(_1, 32)\n        value2 := length\n    }\n    function abi_encode_uint40(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffff))\n    }\n    function abi_encode_struct_PolicyData(value, pos)\n    {\n        mstore(pos, mload(value))\n        mstore(add(pos, 0x20), mload(add(value, 0x20)))\n        mstore(add(pos, 0x40), mload(add(value, 0x40)))\n        mstore(add(pos, 0x60), mload(add(value, 0x60)))\n        mstore(add(pos, 0x80), mload(add(value, 0x80)))\n        mstore(add(pos, 0xa0), mload(add(value, 0xa0)))\n        mstore(add(pos, 0xc0), mload(add(value, 0xc0)))\n        mstore(add(pos, 0xe0), mload(add(value, 0xe0)))\n        mstore(add(pos, 0x0100), mload(add(value, 0x0100)))\n        mstore(add(pos, 0x0120), mload(add(value, 0x0120)))\n        let memberValue0 := mload(add(value, 0x0140))\n        abi_encode_uint40(memberValue0, add(pos, 0x0140))\n        let memberValue0_1 := mload(add(value, 0x0160))\n        abi_encode_uint40(memberValue0_1, add(pos, 0x0160))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 480)\n        abi_encode_struct_PolicyData(value0, headStart)\n        mstore(add(headStart, 384), value1)\n        mstore(add(headStart, 416), value2)\n        mstore(add(headStart, 448), value3)\n    }\n    function abi_encode_struct_Params(value, pos)\n    {\n        mstore(pos, mload(value))\n        mstore(add(pos, 0x20), mload(add(value, 0x20)))\n        mstore(add(pos, 0x40), mload(add(value, 0x40)))\n        mstore(add(pos, 0x60), mload(add(value, 0x60)))\n        mstore(add(pos, 0x80), mload(add(value, 0x80)))\n        mstore(add(pos, 0xa0), mload(add(value, 0xa0)))\n        mstore(add(pos, 0xc0), mload(add(value, 0xc0)))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__fromStack_reversed(headStart, value6, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 768)\n        abi_encode_struct_PolicyData(value0, headStart)\n        mstore(add(headStart, 384), value1)\n        mstore(add(headStart, 416), value2)\n        mstore(add(headStart, 448), value3)\n        mstore(add(headStart, 480), and(value4, 0xffffffffff))\n        mstore(add(headStart, 512), and(value5, 0xffffffffffffffffffffffff))\n        abi_encode_struct_Params(value6, add(headStart, 544))\n    }\n    function abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__to_t_uint256_t_uint256_t_uint256_t_uint40_t_uint96_t_struct$_Params_$7718_memory_ptr__fromStack_reversed(headStart, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 384)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), and(value3, 0xffffffffff))\n        mstore(add(headStart, 128), and(value4, 0xffffffffffffffffffffffff))\n        abi_encode_struct_Params(value5, add(headStart, 160))\n    }\n    function allocate_memory() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x0180)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_uint40(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_struct_PolicyData(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0x0180) { revert(0, 0) }\n        value := allocate_memory()\n        let value_1 := 0\n        value_1 := calldataload(headStart)\n        mstore(value, value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 32))\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 64))\n        mstore(add(value, 64), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 96))\n        mstore(add(value, 96), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(add(value, 128), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 160))\n        mstore(add(value, 160), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(value, 192), value_7)\n        let value_8 := 0\n        value_8 := calldataload(add(headStart, 224))\n        mstore(add(value, 224), value_8)\n        let value_9 := 0\n        value_9 := calldataload(add(headStart, 256))\n        mstore(add(value, 256), value_9)\n        let value_10 := 0\n        value_10 := calldataload(add(headStart, 288))\n        mstore(add(value, 288), value_10)\n        mstore(add(value, 320), abi_decode_uint40(add(headStart, 320)))\n        mstore(add(value, 352), abi_decode_uint40(add(headStart, 352)))\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 480) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData(headStart, dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 448))\n        value3 := value_2\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 abi_decode_uint96(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_struct_Params(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0xe0) { revert(0, 0) }\n        let memPtr := 0\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xe0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x41)\n            revert(0, 0x24)\n        }\n        mstore(64, newFreePtr)\n        value := memPtr\n        let value_1 := 0\n        value_1 := calldataload(headStart)\n        mstore(memPtr, value_1)\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 32))\n        mstore(add(memPtr, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 64))\n        mstore(add(memPtr, 64), value_3)\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 96))\n        mstore(add(memPtr, 96), value_4)\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 128))\n        mstore(add(memPtr, 128), value_5)\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 160))\n        mstore(add(memPtr, 160), value_6)\n        let value_7 := 0\n        value_7 := calldataload(add(headStart, 192))\n        mstore(add(memPtr, 192), value_7)\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptrt_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$7718_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 768) { revert(0, 0) }\n        value0 := abi_decode_struct_PolicyData(headStart, dataEnd)\n        let value := 0\n        value := calldataload(add(headStart, 384))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 416))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 448))\n        value3 := value_2\n        value4 := abi_decode_uint40(add(headStart, 480))\n        value5 := abi_decode_uint96(add(headStart, 512))\n        value6 := abi_decode_struct_Params(add(headStart, 544), dataEnd)\n    }\n    function abi_decode_tuple_t_uint256t_uint256t_uint256t_uint40t_uint96t_struct$_Params_$7718_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 384) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        value3 := abi_decode_uint40(add(headStart, 96))\n        value4 := abi_decode_uint96(add(headStart, 128))\n        value5 := abi_decode_struct_Params(add(headStart, 160), dataEnd)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        product := mul(x, y)\n        if iszero(or(iszero(x), eq(y, div(product, x)))) { panic_error_0x11() }\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function checked_sub_t_uint40(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffffff), and(y, 0xffffffffff))\n        if gt(diff, 0xffffffffff) { panic_error_0x11() }\n    }\n}","id":125,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b506004361061003f575f3560e01c806332f857fa146100435780639ba942d61461006f578063ba097a2a14610095575b5f5ffd5b6100566100513660046102f5565b6100ba565b604051610066949392919061041c565b60405180910390f35b61008261007d3660046102f5565b61012c565b604051610066979695949392919061048d565b6100a86100a33660046102f5565b610199565b604051610066969594939291906104e9565b6100c2610292565b5f80806100d185870187610629565b92965090945092509050600182016100ff576100ec846101f9565b8461010001516100fc9190610678565b91505b5f1981036101235761011084610242565b8461012001516101209190610678565b90505b93509350935093565b610134610292565b5f5f5f5f5f6101726040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b61017e888a018a61072c565b96509650965096509650965096509397509397509397909450565b5f5f5f5f5f6101d76040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b6101e3878901896107a1565b949e939d50919b50995097509095509350505050565b5f6102038261027b565b64ffffffffff1682610140015164ffffffffff16426102229190610678565b83610100015161023291906107fe565b61023c9190610815565b92915050565b5f61024c8261027b565b64ffffffffff1682610140015164ffffffffff164261026b9190610678565b83610120015161023291906107fe565b5f81610140015182610160015161023c9190610834565b6040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b5f5f5f60408486031215610307575f5ffd5b83356001600160a01b038116811461031d575f5ffd5b9250602084013567ffffffffffffffff811115610338575f5ffd5b8401601f81018613610348575f5ffd5b803567ffffffffffffffff81111561035e575f5ffd5b86602082840101111561036f575f5ffd5b939660209190910195509293505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e08301526101008101516101008301526101208101516101208301526101408101516103fc61014084018264ffffffffff169052565b5061016081015161041761016084018264ffffffffff169052565b505050565b6101e0810161042b8287610380565b84610180830152836101a0830152826101c083015295945050505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c08301525050565b610300810161049c828a610380565b87610180830152866101a0830152856101c083015264ffffffffff85166101e08301526001600160601b0384166102008301526104dd610220830184610449565b98975050505050505050565b868152602081018690526040810185905264ffffffffff841660608201526001600160601b0383166080820152610180810161052860a0830184610449565b979650505050505050565b604051610180810167ffffffffffffffff8111828210171561056357634e487b7160e01b5f52604160045260245ffd5b60405290565b803564ffffffffff8116811461057d575f5ffd5b919050565b5f6101808284031215610593575f5ffd5b61059b610533565b823581526020808401359082015260408084013590820152606080840135908201526080808401359082015260a0808401359082015260c0808401359082015260e0808401359082015261010080840135908201526101208084013590820152905061060a6101408301610569565b61014082015261061d6101608301610569565b61016082015292915050565b5f5f5f5f6101e0858703121561063d575f5ffd5b6106478686610582565b9661018086013596506101a0860135956101c00135945092505050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561023c5761023c610664565b80356001600160601b038116811461057d575f5ffd5b5f60e082840312156106b1575f5ffd5b60405160e0810167ffffffffffffffff811182821017156106e057634e487b7160e01b5f52604160045260245ffd5b604090815283358252602080850135908301528381013590820152606080840135908201526080808401359082015260a0808401359082015260c0928301359281019290925250919050565b5f5f5f5f5f5f5f610300888a031215610743575f5ffd5b61074d8989610582565b965061018088013595506101a088013594506101c088013593506107746101e08901610569565b9250610783610200890161068b565b9150610793896102208a016106a1565b905092959891949750929550565b5f5f5f5f5f5f61018087890312156107b7575f5ffd5b8635955060208701359450604087013593506107d560608801610569565b92506107e36080880161068b565b91506107f28860a089016106a1565b90509295509295509295565b808202811582820484141761023c5761023c610664565b5f8261082f57634e487b7160e01b5f52601260045260245ffd5b500490565b64ffffffffff828116828216039081111561023c5761023c61066456fea2646970667358221220397420a52b179eae14125fbb6787dd0e909f52462792ba19c8fb58bdf2454ff464736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x3F JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x32F857FA EQ PUSH2 0x43 JUMPI DUP1 PUSH4 0x9BA942D6 EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0xBA097A2A EQ PUSH2 0x95 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x56 PUSH2 0x51 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F5 JUMP JUMPDEST PUSH2 0xBA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x41C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x82 PUSH2 0x7D CALLDATASIZE PUSH1 0x4 PUSH2 0x2F5 JUMP JUMPDEST PUSH2 0x12C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x48D JUMP JUMPDEST PUSH2 0xA8 PUSH2 0xA3 CALLDATASIZE PUSH1 0x4 PUSH2 0x2F5 JUMP JUMPDEST PUSH2 0x199 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4E9 JUMP JUMPDEST PUSH2 0xC2 PUSH2 0x292 JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0xD1 DUP6 DUP8 ADD DUP8 PUSH2 0x629 JUMP JUMPDEST SWAP3 SWAP7 POP SWAP1 SWAP5 POP SWAP3 POP SWAP1 POP PUSH1 0x1 DUP3 ADD PUSH2 0xFF JUMPI PUSH2 0xEC DUP5 PUSH2 0x1F9 JUMP JUMPDEST DUP5 PUSH2 0x100 ADD MLOAD PUSH2 0xFC SWAP2 SWAP1 PUSH2 0x678 JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x123 JUMPI PUSH2 0x110 DUP5 PUSH2 0x242 JUMP JUMPDEST DUP5 PUSH2 0x120 ADD MLOAD PUSH2 0x120 SWAP2 SWAP1 PUSH2 0x678 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 JUMP JUMPDEST PUSH2 0x134 PUSH2 0x292 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x172 PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0x17E DUP9 DUP11 ADD DUP11 PUSH2 0x72C JUMP JUMPDEST SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP4 SWAP8 POP SWAP4 SWAP8 POP SWAP4 SWAP8 SWAP1 SWAP5 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1D7 PUSH1 0x40 MLOAD DUP1 PUSH1 0xE0 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH2 0x1E3 DUP8 DUP10 ADD DUP10 PUSH2 0x7A1 JUMP JUMPDEST SWAP5 SWAP15 SWAP4 SWAP14 POP SWAP2 SWAP12 POP SWAP10 POP SWAP8 POP SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x203 DUP3 PUSH2 0x27B JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x222 SWAP2 SWAP1 PUSH2 0x678 JUMP JUMPDEST DUP4 PUSH2 0x100 ADD MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x7FE JUMP JUMPDEST PUSH2 0x23C SWAP2 SWAP1 PUSH2 0x815 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x24C DUP3 PUSH2 0x27B JUMP JUMPDEST PUSH5 0xFFFFFFFFFF AND DUP3 PUSH2 0x140 ADD MLOAD PUSH5 0xFFFFFFFFFF AND TIMESTAMP PUSH2 0x26B SWAP2 SWAP1 PUSH2 0x678 JUMP JUMPDEST DUP4 PUSH2 0x120 ADD MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x7FE JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x140 ADD MLOAD DUP3 PUSH2 0x160 ADD MLOAD PUSH2 0x23C SWAP2 SWAP1 PUSH2 0x834 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x307 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x31D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x338 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x348 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x35E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x36F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 POP SWAP3 SWAP4 POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0x3FC PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP2 ADD MLOAD PUSH2 0x417 PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1E0 DUP2 ADD PUSH2 0x42B DUP3 DUP8 PUSH2 0x380 JUMP JUMPDEST DUP5 PUSH2 0x180 DUP4 ADD MSTORE DUP4 PUSH2 0x1A0 DUP4 ADD MSTORE DUP3 PUSH2 0x1C0 DUP4 ADD MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE POP POP JUMP JUMPDEST PUSH2 0x300 DUP2 ADD PUSH2 0x49C DUP3 DUP11 PUSH2 0x380 JUMP JUMPDEST DUP8 PUSH2 0x180 DUP4 ADD MSTORE DUP7 PUSH2 0x1A0 DUP4 ADD MSTORE DUP6 PUSH2 0x1C0 DUP4 ADD MSTORE PUSH5 0xFFFFFFFFFF DUP6 AND PUSH2 0x1E0 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP5 AND PUSH2 0x200 DUP4 ADD MSTORE PUSH2 0x4DD PUSH2 0x220 DUP4 ADD DUP5 PUSH2 0x449 JUMP JUMPDEST SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST DUP7 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x40 DUP2 ADD DUP6 SWAP1 MSTORE PUSH5 0xFFFFFFFFFF DUP5 AND PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP4 AND PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x180 DUP2 ADD PUSH2 0x528 PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x449 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x563 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x57D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x593 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x59B PUSH2 0x533 JUMP JUMPDEST DUP3 CALLDATALOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE SWAP1 POP PUSH2 0x60A PUSH2 0x140 DUP4 ADD PUSH2 0x569 JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x61D PUSH2 0x160 DUP4 ADD PUSH2 0x569 JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x1E0 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x63D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x647 DUP7 DUP7 PUSH2 0x582 JUMP JUMPDEST SWAP7 PUSH2 0x180 DUP7 ADD CALLDATALOAD SWAP7 POP PUSH2 0x1A0 DUP7 ADD CALLDATALOAD SWAP6 PUSH2 0x1C0 ADD CALLDATALOAD SWAP5 POP SWAP3 POP POP 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 0x23C JUMPI PUSH2 0x23C PUSH2 0x664 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x57D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xE0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xE0 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x6E0 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 SWAP1 DUP2 MSTORE DUP4 CALLDATALOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP6 ADD CALLDATALOAD SWAP1 DUP4 ADD MSTORE DUP4 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 SWAP3 DUP4 ADD CALLDATALOAD SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x300 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x743 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x74D DUP10 DUP10 PUSH2 0x582 JUMP JUMPDEST SWAP7 POP PUSH2 0x180 DUP9 ADD CALLDATALOAD SWAP6 POP PUSH2 0x1A0 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH2 0x1C0 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0x774 PUSH2 0x1E0 DUP10 ADD PUSH2 0x569 JUMP JUMPDEST SWAP3 POP PUSH2 0x783 PUSH2 0x200 DUP10 ADD PUSH2 0x68B JUMP JUMPDEST SWAP2 POP PUSH2 0x793 DUP10 PUSH2 0x220 DUP11 ADD PUSH2 0x6A1 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x180 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x7B7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x7D5 PUSH1 0x60 DUP9 ADD PUSH2 0x569 JUMP JUMPDEST SWAP3 POP PUSH2 0x7E3 PUSH1 0x80 DUP9 ADD PUSH2 0x68B JUMP JUMPDEST SWAP2 POP PUSH2 0x7F2 DUP9 PUSH1 0xA0 DUP10 ADD PUSH2 0x6A1 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x23C JUMPI PUSH2 0x23C PUSH2 0x664 JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x82F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x23C JUMPI PUSH2 0x23C PUSH2 0x664 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CODECOPY PUSH21 0x20A52B179EAE14125FBB6787DD0E909F52462792BA NOT 0xC8 EXTSTATICCALL PC 0xBD CALLCODE GASLIMIT 0x4F DELEGATECALL PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"382:1703:39:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1412:671;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;919:458;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;:::i;495:389::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;:::i;1412:671::-;1556:39;;:::i;:::-;1603:25;;;1761:87;;;;1779:9;1761:87;:::i;:::-;1697:151;;-1:-1:-1;1697:151:39;;-1:-1:-1;1697:151:39;-1:-1:-1;1697:151:39;-1:-1:-1;1858:32:39;;;1854:109;;1929:34;:14;:32;:34::i;:::-;1906:14;:20;;;:57;;;;:::i;:::-;1892:71;;1854:109;-1:-1:-1;;1973:11:39;:32;1969:109;;2044:34;:14;:32;:34::i;:::-;2021:14;:20;;;:57;;;;:::i;:::-;2007:71;;1969:109;1412:671;;;;;;;:::o;919:458::-;1062:34;;:::i;:::-;1104:14;1126:15;1149:16;1173:17;1198;1223:27;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1223:27:39;1272:100;;;;1283:9;1272:100;:::i;:::-;1265:107;;;;;;;;;;;;;;919:458;;;;;;;;;;;:::o;495:389::-;630:14;652:15;675:16;699:17;724;749:27;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;749:27:39;798:81;;;;809:9;798:81;:::i;:::-;791:88;;;;-1:-1:-1;791:88:39;;-1:-1:-1;791:88:39;-1:-1:-1;791:88:39;-1:-1:-1;791:88:39;;-1:-1:-1;495:389:39;-1:-1:-1;;;;495:389:39:o;9199:171:23:-;9275:7;9349:16;9358:6;9349:8;:16::i;:::-;9297:68;;9332:6;:12;;;9314:30;;:15;:30;;;;:::i;:::-;9298:6;:12;;;:47;;;;:::i;:::-;9297:68;;;;:::i;:::-;9290:75;9199:171;-1:-1:-1;;9199:171:23:o;10226:::-;10302:7;10376:16;10385:6;10376:8;:16::i;:::-;10324:68;;10359:6;:12;;;10341:30;;:15;:30;;;;:::i;:::-;10325:6;:12;;;:47;;;;:::i;10461:125::-;10528:6;10569;:12;;;10549:6;:17;;;:32;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:760:125:-;93:6;101;109;162:2;150:9;141:7;137:23;133:32;130:52;;;178:1;175;168:12;130:52;204:23;;-1:-1:-1;;;;;256:31:125;;246:42;;236:70;;302:1;299;292:12;236:70;325:5;-1:-1:-1;381:2:125;366:18;;353:32;408:18;397:30;;394:50;;;440:1;437;430:12;394:50;463:22;;516:4;508:13;;504:27;-1:-1:-1;494:55:125;;545:1;542;535:12;494:55;585:2;572:16;611:18;603:6;600:30;597:50;;;643:1;640;633:12;597:50;688:7;683:2;674:6;670:2;666:15;662:24;659:37;656:57;;;709:1;706;699:12;656:57;14:760;;740:2;732:11;;;;;-1:-1:-1;762:6:125;;-1:-1:-1;;;14:760:125:o;880:835::-;962:5;956:12;951:3;944:25;1018:4;1011:5;1007:16;1001:23;994:4;989:3;985:14;978:47;1074:4;1067:5;1063:16;1057:23;1050:4;1045:3;1041:14;1034:47;1130:4;1123:5;1119:16;1113:23;1106:4;1101:3;1097:14;1090:47;1186:4;1179:5;1175:16;1169:23;1162:4;1157:3;1153:14;1146:47;1242:4;1235:5;1231:16;1225:23;1218:4;1213:3;1209:14;1202:47;1298:4;1291:5;1287:16;1281:23;1274:4;1269:3;1265:14;1258:47;1354:4;1347:5;1343:16;1337:23;1330:4;1325:3;1321:14;1314:47;1412:6;1405:5;1401:18;1395:25;1386:6;1381:3;1377:16;1370:51;1472:6;1465:5;1461:18;1455:25;1446:6;1441:3;1437:16;1430:51;1527:6;1520:5;1516:18;1510:25;1544:49;1585:6;1580:3;1576:16;1562:12;855;844:24;832:37;;779:96;1544:49;;1641:6;1634:5;1630:18;1624:25;1658:51;1701:6;1696:3;1692:16;1676:14;855:12;844:24;832:37;;779:96;1658:51;;880:835;;:::o;1720:472::-;1994:3;1979:19;;2007:47;1983:9;2036:6;2007:47;:::i;:::-;2091:6;2085:3;2074:9;2070:19;2063:35;2135:6;2129:3;2118:9;2114:19;2107:35;2179:6;2173:3;2162:9;2158:19;2151:35;1720:472;;;;;;;:::o;2197:427::-;2275:5;2269:12;2264:3;2257:25;2331:4;2324:5;2320:16;2314:23;2307:4;2302:3;2298:14;2291:47;2387:4;2380:5;2376:16;2370:23;2363:4;2358:3;2354:14;2347:47;2443:4;2436:5;2432:16;2426:23;2419:4;2414:3;2410:14;2403:47;2499:4;2492:5;2488:16;2482:23;2475:4;2470:3;2466:14;2459:47;2555:4;2548:5;2544:16;2538:23;2531:4;2526:3;2522:14;2515:47;2611:4;2604:5;2600:16;2594:23;2587:4;2582:3;2578:14;2571:47;;;2197:427::o;2629:802::-;3031:3;3016:19;;3044:47;3020:9;3073:6;3044:47;:::i;:::-;3128:6;3122:3;3111:9;3107:19;3100:35;3172:6;3166:3;3155:9;3151:19;3144:35;3216:6;3210:3;3199:9;3195:19;3188:35;3272:12;3264:6;3260:25;3254:3;3243:9;3239:19;3232:54;-1:-1:-1;;;;;3327:6:125;3323:39;3317:3;3306:9;3302:19;3295:68;3372:53;3420:3;3409:9;3405:19;3397:6;3372:53;:::i;:::-;2629:802;;;;;;;;;;:::o;3436:649::-;3767:25;;;3823:2;3808:18;;3801:34;;;3866:2;3851:18;;3844:34;;;3926:12;3914:25;;3909:2;3894:18;;3887:53;-1:-1:-1;;;;;3977:39:125;;3971:3;3956:19;;3949:68;3754:3;3739:19;;4026:53;4074:3;4059:19;;4051:6;4026:53;:::i;:::-;3436:649;;;;;;;;;:::o;4090:347::-;4157:2;4151:9;4199:6;4187:19;;4236:18;4221:34;;4257:22;;;4218:62;4215:185;;;4322:10;4317:3;4313:20;4310:1;4303:31;4357:4;4354:1;4347:15;4385:4;4382:1;4375:15;4215:185;4416:2;4409:22;4090:347;:::o;4442:165::-;4509:20;;4569:12;4558:24;;4548:35;;4538:63;;4597:1;4594;4587:12;4538:63;4442:165;;;:::o;4612:1481::-;4669:5;4717:6;4705:9;4700:3;4696:19;4692:32;4689:52;;;4737:1;4734;4727:12;4689:52;4759:17;;:::i;:::-;4821:23;;4853:22;;4948:2;4933:18;;;4920:32;4968:14;;;4961:31;5065:2;5050:18;;;5037:32;5085:14;;;5078:31;5182:2;5167:18;;;5154:32;5202:14;;;5195:31;5299:3;5284:19;;;5271:33;5320:15;;;5313:32;5418:3;5403:19;;;5390:33;5439:15;;;5432:32;5537:3;5522:19;;;5509:33;5558:15;;;5551:32;5656:3;5641:19;;;5628:33;5677:15;;;5670:32;5775:3;5760:19;;;5747:33;5796:15;;;5789:32;5896:3;5881:19;;;5868:33;5917:15;;;5910:33;4750:26;-1:-1:-1;5976:38:125;6009:3;5994:19;;5976:38;:::i;:::-;5970:3;5963:5;5959:15;5952:63;6048:38;6081:3;6070:9;6066:19;6048:38;:::i;:::-;6042:3;6035:5;6031:15;6024:63;4612:1481;;;;:::o;6098:591::-;6212:6;6220;6228;6236;6289:3;6277:9;6268:7;6264:23;6260:33;6257:53;;;6306:1;6303;6296:12;6257:53;6329:48;6369:7;6358:9;6329:48;:::i;:::-;6319:58;6446:3;6431:19;;6418:33;;-1:-1:-1;6548:3:125;6533:19;;6520:33;;6652:3;6637:19;6624:33;;-1:-1:-1;6098:591:125;-1:-1:-1;;;6098:591:125:o;6694:127::-;6755:10;6750:3;6746:20;6743:1;6736:31;6786:4;6783:1;6776:15;6810:4;6807:1;6800:15;6826:128;6893:9;;;6914:11;;;6911:37;;;6928:18;;:::i;6959:179::-;7026:20;;-1:-1:-1;;;;;7075:38:125;;7065:49;;7055:77;;7128:1;7125;7118:12;7143:1288;7196:5;7244:4;7232:9;7227:3;7223:19;7219:30;7216:50;;;7262:1;7259;7252:12;7216:50;7315:2;7309:9;7357:4;7345:17;;7392:18;7377:34;;7413:22;;;7374:62;7371:185;;;7478:10;7473:3;7469:20;7466:1;7459:31;7513:4;7510:1;7503:15;7541:4;7538:1;7531:15;7371:185;7572:2;7565:22;;;7656:23;;7688;;7784:2;7769:18;;;7756:32;7804:15;;;7797:32;7887:18;;;7874:32;7922:15;;;7915:32;8020:2;8005:18;;;7992:32;8040:15;;;8033:32;8138:3;8123:19;;;8110:33;8159:16;;;8152:33;8258:3;8243:19;;;8230:33;8279:16;;;8272:33;8378:3;8363:19;;;8350:33;8399:16;;;8392:33;;;;-1:-1:-1;7605:6:125;7143:1288;-1:-1:-1;7143:1288:125:o;8436:851::-;8599:6;8607;8615;8623;8631;8639;8647;8700:3;8688:9;8679:7;8675:23;8671:33;8668:53;;;8717:1;8714;8707:12;8668:53;8740:48;8780:7;8769:9;8740:48;:::i;:::-;8730:58;-1:-1:-1;8857:3:125;8842:19;;8829:33;;-1:-1:-1;8959:3:125;8944:19;;8931:33;;-1:-1:-1;9063:3:125;9048:19;;9035:33;;-1:-1:-1;9113:38:125;9146:3;9131:19;;9113:38;:::i;:::-;9103:48;;9170:38;9203:3;9192:9;9188:19;9170:38;:::i;:::-;9160:48;;9227:54;9273:7;9267:3;9256:9;9252:19;9227:54;:::i;:::-;9217:64;;8436:851;;;;;;;;;;:::o;9292:726::-;9418:6;9426;9434;9442;9450;9458;9511:3;9499:9;9490:7;9486:23;9482:33;9479:53;;;9528:1;9525;9518:12;9479:53;9573:23;;;-1:-1:-1;9693:2:125;9678:18;;9665:32;;-1:-1:-1;9796:2:125;9781:18;;9768:32;;-1:-1:-1;9845:37:125;9878:2;9863:18;;9845:37;:::i;:::-;9835:47;;9901:38;9934:3;9923:9;9919:19;9901:38;:::i;:::-;9891:48;;9958:54;10004:7;9998:3;9987:9;9983:19;9958:54;:::i;:::-;9948:64;;9292:726;;;;;;;;:::o;10023:168::-;10096:9;;;10127;;10144:15;;;10138:22;;10124:37;10114:71;;10165:18;;:::i;10196:217::-;10236:1;10262;10252:132;;10306:10;10301:3;10297:20;10294:1;10287:31;10341:4;10338:1;10331:15;10369:4;10366:1;10359:15;10252:132;-1:-1:-1;10398:9:125;;10196:217::o;10418:176::-;10517:12;10510:20;;;10488;;;10484:47;;10543:22;;10540:48;;;10568:18;;:::i"},"methodIdentifiers":{"priceNewPolicy(address,bytes)":"ba097a2a","pricePolicyCancellation(address,bytes)":"32f857fa","pricePolicyReplacement(address,bytes)":"9ba942d6"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"priceNewPolicy\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"moc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCollRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"collRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroPpFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCocFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrRoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srRoc\",\"type\":\"uint256\"}],\"internalType\":\"struct Policy.Params\",\"name\":\"params\",\"type\":\"tuple\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"pricePolicyCancellation\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policyToCancel\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"}],\"name\":\"pricePolicyReplacement\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"oldPolicy\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"premium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"},{\"internalType\":\"uint96\",\"name\":\"internalId\",\"type\":\"uint96\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"moc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCollRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"collRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroPpFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCocFee\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrRoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srRoc\",\"type\":\"uint256\"}],\"internalType\":\"struct Policy.Params\",\"name\":\"params\",\"type\":\"tuple\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"kind\":\"dev\",\"methods\":{\"priceNewPolicy(address,bytes)\":{\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"expiration\":\" Policy expiration timestamp (seconds since epoch).\",\"internalId\":\" Unique id within `rm` used to derive the policy id.\",\"lossProb\":\"   Loss probability used for pricing/risk calculations.\",\"params\":\"     Additional policy parameters used by {Policy-initialize}.\",\"payout\":\"     The policy payout.\",\"premium\":\"    The total premium for the policy.\"}},\"pricePolicyCancellation(address,bytes)\":{\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"jrCocRefund\":\"      Amount to refund from junior CoC (or a sentinel value, if supported).\",\"policyToCancel\":\"   The policy to cancel (as {Policy-PolicyData}).\",\"purePremiumRefund\":\"Amount to refund from pure premium.\",\"srCocRefund\":\"      Amount to refund from senior CoC (or a sentinel value, if supported).\"}},\"pricePolicyReplacement(address,bytes)\":{\"params\":{\"inputData\":\"Opaque payload consumed by the Underwriter implementation.\",\"rm\":\"The RiskModule address requesting pricing (implementations may use it for access checks).\"},\"returns\":{\"expiration\":\" Replacement policy expiration timestamp.\",\"internalId\":\" Unique id within `rm` for the replacement policy.\",\"lossProb\":\"   Loss probability used for pricing/risk calculations.\",\"oldPolicy\":\"  The policy being replaced (as {Policy-PolicyData}).\",\"params\":\"     Additional policy parameters used by {Policy-initialize}.\",\"payout\":\"     The replacement policy payout.\",\"premium\":\"    The replacement policy premium.\"}}},\"title\":\"FullTrustedUW\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"priceNewPolicy(address,bytes)\":{\"notice\":\"Prices a new policy request for RiskModule `rm`.\"},\"pricePolicyCancellation(address,bytes)\":{\"notice\":\"Prices a policy cancellation request for RiskModule `rm`.\"},\"pricePolicyReplacement(address,bytes)\":{\"notice\":\"Prices a policy replacement request for RiskModule `rm`.\"}},\"notice\":\"Underwriter that just decodes what it receives. The access validations should be done on risk module methods.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/core/contracts/underwriters/FullTrustedUW.sol\":\"FullTrustedUW\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@ensuro/core/contracts/interfaces/IUnderwriter.sol\":{\"keccak256\":\"0x2d2ed693a29e809ddc60c4669a6ea5bf8a74497593e8e099ea76c27505472acb\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4534e64481c50a88d782c615dce9ac3bda35509e0252ca306456665e57f26527\",\"dweb:/ipfs/QmdNGFXjRm2t8cZe5zi9C6YNh9BMHDnk4dfWNfHxmHgqwJ\"]},\"@ensuro/core/contracts/underwriters/FullTrustedUW.sol\":{\"keccak256\":\"0xc9a41ee68004887de4fc7206e022868591414d003b391cb41e2fd280f35c9f4e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://46f845aae1e50c2d4eba9d2a114a0044b35e2d4f94d7ec1649c95ae1beb85565\",\"dweb:/ipfs/QmeANJLmWUt6GXRA5xbADFVWoeU7zVfE4opaWtyQ4mVGcX\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@ensuro/utils/contracts/TestCurrency.sol":{"TestCurrency":{"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"}],"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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":{"@_15473":{"entryPoint":null,"id":15473,"parameterSlots":4,"returnSlots":0},"@_23652":{"entryPoint":null,"id":23652,"parameterSlots":2,"returnSlots":0},"@_mint_23955":{"entryPoint":102,"id":23955,"parameterSlots":2,"returnSlots":0},"@_update_23922":{"entryPoint":163,"id":23922,"parameterSlots":3,"returnSlots":0},"abi_decode_string_fromMemory":{"entryPoint":477,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint8_fromMemory":{"entryPoint":614,"id":null,"parameterSlots":2,"returnSlots":4},"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":1065,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":803,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":879,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":747,"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":457,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:5121:125","nodeType":"YulBlock","src":"0:5121:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"46:95:125","nodeType":"YulBlock","src":"46:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"63:1:125","nodeType":"YulLiteral","src":"63:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"70:3:125","nodeType":"YulLiteral","src":"70:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"75:10:125","nodeType":"YulLiteral","src":"75:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"66:3:125","nodeType":"YulIdentifier","src":"66:3:125"},"nativeSrc":"66:20:125","nodeType":"YulFunctionCall","src":"66:20:125"}],"functionName":{"name":"mstore","nativeSrc":"56:6:125","nodeType":"YulIdentifier","src":"56:6:125"},"nativeSrc":"56:31:125","nodeType":"YulFunctionCall","src":"56:31:125"},"nativeSrc":"56:31:125","nodeType":"YulExpressionStatement","src":"56:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"103:1:125","nodeType":"YulLiteral","src":"103:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"106:4:125","nodeType":"YulLiteral","src":"106:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"96:6:125","nodeType":"YulIdentifier","src":"96:6:125"},"nativeSrc":"96:15:125","nodeType":"YulFunctionCall","src":"96:15:125"},"nativeSrc":"96:15:125","nodeType":"YulExpressionStatement","src":"96:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"127:1:125","nodeType":"YulLiteral","src":"127:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"130:4:125","nodeType":"YulLiteral","src":"130:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"120:6:125","nodeType":"YulIdentifier","src":"120:6:125"},"nativeSrc":"120:15:125","nodeType":"YulFunctionCall","src":"120:15:125"},"nativeSrc":"120:15:125","nodeType":"YulExpressionStatement","src":"120:15:125"}]},"name":"panic_error_0x41","nativeSrc":"14:127:125","nodeType":"YulFunctionDefinition","src":"14:127:125"},{"body":{"nativeSrc":"210:659:125","nodeType":"YulBlock","src":"210:659:125","statements":[{"body":{"nativeSrc":"259:16:125","nodeType":"YulBlock","src":"259:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"268:1:125","nodeType":"YulLiteral","src":"268:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"271:1:125","nodeType":"YulLiteral","src":"271:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"261:6:125","nodeType":"YulIdentifier","src":"261:6:125"},"nativeSrc":"261:12:125","nodeType":"YulFunctionCall","src":"261:12:125"},"nativeSrc":"261:12:125","nodeType":"YulExpressionStatement","src":"261:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"238:6:125","nodeType":"YulIdentifier","src":"238:6:125"},{"kind":"number","nativeSrc":"246:4:125","nodeType":"YulLiteral","src":"246:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"234:3:125","nodeType":"YulIdentifier","src":"234:3:125"},"nativeSrc":"234:17:125","nodeType":"YulFunctionCall","src":"234:17:125"},{"name":"end","nativeSrc":"253:3:125","nodeType":"YulIdentifier","src":"253:3:125"}],"functionName":{"name":"slt","nativeSrc":"230:3:125","nodeType":"YulIdentifier","src":"230:3:125"},"nativeSrc":"230:27:125","nodeType":"YulFunctionCall","src":"230:27:125"}],"functionName":{"name":"iszero","nativeSrc":"223:6:125","nodeType":"YulIdentifier","src":"223:6:125"},"nativeSrc":"223:35:125","nodeType":"YulFunctionCall","src":"223:35:125"},"nativeSrc":"220:55:125","nodeType":"YulIf","src":"220:55:125"},{"nativeSrc":"284:27:125","nodeType":"YulVariableDeclaration","src":"284:27:125","value":{"arguments":[{"name":"offset","nativeSrc":"304:6:125","nodeType":"YulIdentifier","src":"304:6:125"}],"functionName":{"name":"mload","nativeSrc":"298:5:125","nodeType":"YulIdentifier","src":"298:5:125"},"nativeSrc":"298:13:125","nodeType":"YulFunctionCall","src":"298:13:125"},"variables":[{"name":"length","nativeSrc":"288:6:125","nodeType":"YulTypedName","src":"288:6:125","type":""}]},{"body":{"nativeSrc":"354:22:125","nodeType":"YulBlock","src":"354:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"356:16:125","nodeType":"YulIdentifier","src":"356:16:125"},"nativeSrc":"356:18:125","nodeType":"YulFunctionCall","src":"356:18:125"},"nativeSrc":"356:18:125","nodeType":"YulExpressionStatement","src":"356:18:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"326:6:125","nodeType":"YulIdentifier","src":"326:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"342:2:125","nodeType":"YulLiteral","src":"342:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"346:1:125","nodeType":"YulLiteral","src":"346:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"338:3:125","nodeType":"YulIdentifier","src":"338:3:125"},"nativeSrc":"338:10:125","nodeType":"YulFunctionCall","src":"338:10:125"},{"kind":"number","nativeSrc":"350:1:125","nodeType":"YulLiteral","src":"350:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"334:3:125","nodeType":"YulIdentifier","src":"334:3:125"},"nativeSrc":"334:18:125","nodeType":"YulFunctionCall","src":"334:18:125"}],"functionName":{"name":"gt","nativeSrc":"323:2:125","nodeType":"YulIdentifier","src":"323:2:125"},"nativeSrc":"323:30:125","nodeType":"YulFunctionCall","src":"323:30:125"},"nativeSrc":"320:56:125","nodeType":"YulIf","src":"320:56:125"},{"nativeSrc":"385:23:125","nodeType":"YulVariableDeclaration","src":"385:23:125","value":{"arguments":[{"kind":"number","nativeSrc":"405:2:125","nodeType":"YulLiteral","src":"405:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"399:5:125","nodeType":"YulIdentifier","src":"399:5:125"},"nativeSrc":"399:9:125","nodeType":"YulFunctionCall","src":"399:9:125"},"variables":[{"name":"memPtr","nativeSrc":"389:6:125","nodeType":"YulTypedName","src":"389:6:125","type":""}]},{"nativeSrc":"417:85:125","nodeType":"YulVariableDeclaration","src":"417:85:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"439:6:125","nodeType":"YulIdentifier","src":"439:6:125"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"463:6:125","nodeType":"YulIdentifier","src":"463:6:125"},{"kind":"number","nativeSrc":"471:4:125","nodeType":"YulLiteral","src":"471:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"459:3:125","nodeType":"YulIdentifier","src":"459:3:125"},"nativeSrc":"459:17:125","nodeType":"YulFunctionCall","src":"459:17:125"},{"arguments":[{"kind":"number","nativeSrc":"482:2:125","nodeType":"YulLiteral","src":"482:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"478:3:125","nodeType":"YulIdentifier","src":"478:3:125"},"nativeSrc":"478:7:125","nodeType":"YulFunctionCall","src":"478:7:125"}],"functionName":{"name":"and","nativeSrc":"455:3:125","nodeType":"YulIdentifier","src":"455:3:125"},"nativeSrc":"455:31:125","nodeType":"YulFunctionCall","src":"455:31:125"},{"kind":"number","nativeSrc":"488:2:125","nodeType":"YulLiteral","src":"488:2:125","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"451:3:125","nodeType":"YulIdentifier","src":"451:3:125"},"nativeSrc":"451:40:125","nodeType":"YulFunctionCall","src":"451:40:125"},{"arguments":[{"kind":"number","nativeSrc":"497:2:125","nodeType":"YulLiteral","src":"497:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"493:3:125","nodeType":"YulIdentifier","src":"493:3:125"},"nativeSrc":"493:7:125","nodeType":"YulFunctionCall","src":"493:7:125"}],"functionName":{"name":"and","nativeSrc":"447:3:125","nodeType":"YulIdentifier","src":"447:3:125"},"nativeSrc":"447:54:125","nodeType":"YulFunctionCall","src":"447:54:125"}],"functionName":{"name":"add","nativeSrc":"435:3:125","nodeType":"YulIdentifier","src":"435:3:125"},"nativeSrc":"435:67:125","nodeType":"YulFunctionCall","src":"435:67:125"},"variables":[{"name":"newFreePtr","nativeSrc":"421:10:125","nodeType":"YulTypedName","src":"421:10:125","type":""}]},{"body":{"nativeSrc":"577:22:125","nodeType":"YulBlock","src":"577:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"579:16:125","nodeType":"YulIdentifier","src":"579:16:125"},"nativeSrc":"579:18:125","nodeType":"YulFunctionCall","src":"579:18:125"},"nativeSrc":"579:18:125","nodeType":"YulExpressionStatement","src":"579:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"520:10:125","nodeType":"YulIdentifier","src":"520:10:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"540:2:125","nodeType":"YulLiteral","src":"540:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"544:1:125","nodeType":"YulLiteral","src":"544:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"536:3:125","nodeType":"YulIdentifier","src":"536:3:125"},"nativeSrc":"536:10:125","nodeType":"YulFunctionCall","src":"536:10:125"},{"kind":"number","nativeSrc":"548:1:125","nodeType":"YulLiteral","src":"548:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"532:3:125","nodeType":"YulIdentifier","src":"532:3:125"},"nativeSrc":"532:18:125","nodeType":"YulFunctionCall","src":"532:18:125"}],"functionName":{"name":"gt","nativeSrc":"517:2:125","nodeType":"YulIdentifier","src":"517:2:125"},"nativeSrc":"517:34:125","nodeType":"YulFunctionCall","src":"517:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"556:10:125","nodeType":"YulIdentifier","src":"556:10:125"},{"name":"memPtr","nativeSrc":"568:6:125","nodeType":"YulIdentifier","src":"568:6:125"}],"functionName":{"name":"lt","nativeSrc":"553:2:125","nodeType":"YulIdentifier","src":"553:2:125"},"nativeSrc":"553:22:125","nodeType":"YulFunctionCall","src":"553:22:125"}],"functionName":{"name":"or","nativeSrc":"514:2:125","nodeType":"YulIdentifier","src":"514:2:125"},"nativeSrc":"514:62:125","nodeType":"YulFunctionCall","src":"514:62:125"},"nativeSrc":"511:88:125","nodeType":"YulIf","src":"511:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"615:2:125","nodeType":"YulLiteral","src":"615:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"619:10:125","nodeType":"YulIdentifier","src":"619:10:125"}],"functionName":{"name":"mstore","nativeSrc":"608:6:125","nodeType":"YulIdentifier","src":"608:6:125"},"nativeSrc":"608:22:125","nodeType":"YulFunctionCall","src":"608:22:125"},"nativeSrc":"608:22:125","nodeType":"YulExpressionStatement","src":"608:22:125"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"646:6:125","nodeType":"YulIdentifier","src":"646:6:125"},{"name":"length","nativeSrc":"654:6:125","nodeType":"YulIdentifier","src":"654:6:125"}],"functionName":{"name":"mstore","nativeSrc":"639:6:125","nodeType":"YulIdentifier","src":"639:6:125"},"nativeSrc":"639:22:125","nodeType":"YulFunctionCall","src":"639:22:125"},"nativeSrc":"639:22:125","nodeType":"YulExpressionStatement","src":"639:22:125"},{"body":{"nativeSrc":"713:16:125","nodeType":"YulBlock","src":"713:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"722:1:125","nodeType":"YulLiteral","src":"722:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"725:1:125","nodeType":"YulLiteral","src":"725:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"715:6:125","nodeType":"YulIdentifier","src":"715:6:125"},"nativeSrc":"715:12:125","nodeType":"YulFunctionCall","src":"715:12:125"},"nativeSrc":"715:12:125","nodeType":"YulExpressionStatement","src":"715:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"684:6:125","nodeType":"YulIdentifier","src":"684:6:125"},{"name":"length","nativeSrc":"692:6:125","nodeType":"YulIdentifier","src":"692:6:125"}],"functionName":{"name":"add","nativeSrc":"680:3:125","nodeType":"YulIdentifier","src":"680:3:125"},"nativeSrc":"680:19:125","nodeType":"YulFunctionCall","src":"680:19:125"},{"kind":"number","nativeSrc":"701:4:125","nodeType":"YulLiteral","src":"701:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"676:3:125","nodeType":"YulIdentifier","src":"676:3:125"},"nativeSrc":"676:30:125","nodeType":"YulFunctionCall","src":"676:30:125"},{"name":"end","nativeSrc":"708:3:125","nodeType":"YulIdentifier","src":"708:3:125"}],"functionName":{"name":"gt","nativeSrc":"673:2:125","nodeType":"YulIdentifier","src":"673:2:125"},"nativeSrc":"673:39:125","nodeType":"YulFunctionCall","src":"673:39:125"},"nativeSrc":"670:59:125","nodeType":"YulIf","src":"670:59:125"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"748:6:125","nodeType":"YulIdentifier","src":"748:6:125"},{"kind":"number","nativeSrc":"756:4:125","nodeType":"YulLiteral","src":"756:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"744:3:125","nodeType":"YulIdentifier","src":"744:3:125"},"nativeSrc":"744:17:125","nodeType":"YulFunctionCall","src":"744:17:125"},{"arguments":[{"name":"offset","nativeSrc":"767:6:125","nodeType":"YulIdentifier","src":"767:6:125"},{"kind":"number","nativeSrc":"775:4:125","nodeType":"YulLiteral","src":"775:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"763:3:125","nodeType":"YulIdentifier","src":"763:3:125"},"nativeSrc":"763:17:125","nodeType":"YulFunctionCall","src":"763:17:125"},{"name":"length","nativeSrc":"782:6:125","nodeType":"YulIdentifier","src":"782:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"738:5:125","nodeType":"YulIdentifier","src":"738:5:125"},"nativeSrc":"738:51:125","nodeType":"YulFunctionCall","src":"738:51:125"},"nativeSrc":"738:51:125","nodeType":"YulExpressionStatement","src":"738:51:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"813:6:125","nodeType":"YulIdentifier","src":"813:6:125"},{"name":"length","nativeSrc":"821:6:125","nodeType":"YulIdentifier","src":"821:6:125"}],"functionName":{"name":"add","nativeSrc":"809:3:125","nodeType":"YulIdentifier","src":"809:3:125"},"nativeSrc":"809:19:125","nodeType":"YulFunctionCall","src":"809:19:125"},{"kind":"number","nativeSrc":"830:4:125","nodeType":"YulLiteral","src":"830:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"805:3:125","nodeType":"YulIdentifier","src":"805:3:125"},"nativeSrc":"805:30:125","nodeType":"YulFunctionCall","src":"805:30:125"},{"kind":"number","nativeSrc":"837:1:125","nodeType":"YulLiteral","src":"837:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"798:6:125","nodeType":"YulIdentifier","src":"798:6:125"},"nativeSrc":"798:41:125","nodeType":"YulFunctionCall","src":"798:41:125"},"nativeSrc":"798:41:125","nodeType":"YulExpressionStatement","src":"798:41:125"},{"nativeSrc":"848:15:125","nodeType":"YulAssignment","src":"848:15:125","value":{"name":"memPtr","nativeSrc":"857:6:125","nodeType":"YulIdentifier","src":"857:6:125"},"variableNames":[{"name":"array","nativeSrc":"848:5:125","nodeType":"YulIdentifier","src":"848:5:125"}]}]},"name":"abi_decode_string_fromMemory","nativeSrc":"146:723:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"184:6:125","nodeType":"YulTypedName","src":"184:6:125","type":""},{"name":"end","nativeSrc":"192:3:125","nodeType":"YulTypedName","src":"192:3:125","type":""}],"returnVariables":[{"name":"array","nativeSrc":"200:5:125","nodeType":"YulTypedName","src":"200:5:125","type":""}],"src":"146:723:125"},{"body":{"nativeSrc":"1024:619:125","nodeType":"YulBlock","src":"1024:619:125","statements":[{"body":{"nativeSrc":"1071:16:125","nodeType":"YulBlock","src":"1071:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1080:1:125","nodeType":"YulLiteral","src":"1080:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1083:1:125","nodeType":"YulLiteral","src":"1083:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1073:6:125","nodeType":"YulIdentifier","src":"1073:6:125"},"nativeSrc":"1073:12:125","nodeType":"YulFunctionCall","src":"1073:12:125"},"nativeSrc":"1073:12:125","nodeType":"YulExpressionStatement","src":"1073:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1045:7:125","nodeType":"YulIdentifier","src":"1045:7:125"},{"name":"headStart","nativeSrc":"1054:9:125","nodeType":"YulIdentifier","src":"1054:9:125"}],"functionName":{"name":"sub","nativeSrc":"1041:3:125","nodeType":"YulIdentifier","src":"1041:3:125"},"nativeSrc":"1041:23:125","nodeType":"YulFunctionCall","src":"1041:23:125"},{"kind":"number","nativeSrc":"1066:3:125","nodeType":"YulLiteral","src":"1066:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"1037:3:125","nodeType":"YulIdentifier","src":"1037:3:125"},"nativeSrc":"1037:33:125","nodeType":"YulFunctionCall","src":"1037:33:125"},"nativeSrc":"1034:53:125","nodeType":"YulIf","src":"1034:53:125"},{"nativeSrc":"1096:30:125","nodeType":"YulVariableDeclaration","src":"1096:30:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1116:9:125","nodeType":"YulIdentifier","src":"1116:9:125"}],"functionName":{"name":"mload","nativeSrc":"1110:5:125","nodeType":"YulIdentifier","src":"1110:5:125"},"nativeSrc":"1110:16:125","nodeType":"YulFunctionCall","src":"1110:16:125"},"variables":[{"name":"offset","nativeSrc":"1100:6:125","nodeType":"YulTypedName","src":"1100:6:125","type":""}]},{"body":{"nativeSrc":"1169:16:125","nodeType":"YulBlock","src":"1169:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1178:1:125","nodeType":"YulLiteral","src":"1178:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1181:1:125","nodeType":"YulLiteral","src":"1181:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1171:6:125","nodeType":"YulIdentifier","src":"1171:6:125"},"nativeSrc":"1171:12:125","nodeType":"YulFunctionCall","src":"1171:12:125"},"nativeSrc":"1171:12:125","nodeType":"YulExpressionStatement","src":"1171:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1141:6:125","nodeType":"YulIdentifier","src":"1141:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1157:2:125","nodeType":"YulLiteral","src":"1157:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"1161:1:125","nodeType":"YulLiteral","src":"1161:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1153:3:125","nodeType":"YulIdentifier","src":"1153:3:125"},"nativeSrc":"1153:10:125","nodeType":"YulFunctionCall","src":"1153:10:125"},{"kind":"number","nativeSrc":"1165:1:125","nodeType":"YulLiteral","src":"1165:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1149:3:125","nodeType":"YulIdentifier","src":"1149:3:125"},"nativeSrc":"1149:18:125","nodeType":"YulFunctionCall","src":"1149:18:125"}],"functionName":{"name":"gt","nativeSrc":"1138:2:125","nodeType":"YulIdentifier","src":"1138:2:125"},"nativeSrc":"1138:30:125","nodeType":"YulFunctionCall","src":"1138:30:125"},"nativeSrc":"1135:50:125","nodeType":"YulIf","src":"1135:50:125"},{"nativeSrc":"1194:71:125","nodeType":"YulAssignment","src":"1194:71:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1237:9:125","nodeType":"YulIdentifier","src":"1237:9:125"},{"name":"offset","nativeSrc":"1248:6:125","nodeType":"YulIdentifier","src":"1248:6:125"}],"functionName":{"name":"add","nativeSrc":"1233:3:125","nodeType":"YulIdentifier","src":"1233:3:125"},"nativeSrc":"1233:22:125","nodeType":"YulFunctionCall","src":"1233:22:125"},{"name":"dataEnd","nativeSrc":"1257:7:125","nodeType":"YulIdentifier","src":"1257:7:125"}],"functionName":{"name":"abi_decode_string_fromMemory","nativeSrc":"1204:28:125","nodeType":"YulIdentifier","src":"1204:28:125"},"nativeSrc":"1204:61:125","nodeType":"YulFunctionCall","src":"1204:61:125"},"variableNames":[{"name":"value0","nativeSrc":"1194:6:125","nodeType":"YulIdentifier","src":"1194:6:125"}]},{"nativeSrc":"1274:41:125","nodeType":"YulVariableDeclaration","src":"1274:41:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1300:9:125","nodeType":"YulIdentifier","src":"1300:9:125"},{"kind":"number","nativeSrc":"1311:2:125","nodeType":"YulLiteral","src":"1311:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1296:3:125","nodeType":"YulIdentifier","src":"1296:3:125"},"nativeSrc":"1296:18:125","nodeType":"YulFunctionCall","src":"1296:18:125"}],"functionName":{"name":"mload","nativeSrc":"1290:5:125","nodeType":"YulIdentifier","src":"1290:5:125"},"nativeSrc":"1290:25:125","nodeType":"YulFunctionCall","src":"1290:25:125"},"variables":[{"name":"offset_1","nativeSrc":"1278:8:125","nodeType":"YulTypedName","src":"1278:8:125","type":""}]},{"body":{"nativeSrc":"1360:16:125","nodeType":"YulBlock","src":"1360:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1369:1:125","nodeType":"YulLiteral","src":"1369:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1372:1:125","nodeType":"YulLiteral","src":"1372:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1362:6:125","nodeType":"YulIdentifier","src":"1362:6:125"},"nativeSrc":"1362:12:125","nodeType":"YulFunctionCall","src":"1362:12:125"},"nativeSrc":"1362:12:125","nodeType":"YulExpressionStatement","src":"1362:12:125"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"1330:8:125","nodeType":"YulIdentifier","src":"1330:8:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1348:2:125","nodeType":"YulLiteral","src":"1348:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"1352:1:125","nodeType":"YulLiteral","src":"1352:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1344:3:125","nodeType":"YulIdentifier","src":"1344:3:125"},"nativeSrc":"1344:10:125","nodeType":"YulFunctionCall","src":"1344:10:125"},{"kind":"number","nativeSrc":"1356:1:125","nodeType":"YulLiteral","src":"1356:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1340:3:125","nodeType":"YulIdentifier","src":"1340:3:125"},"nativeSrc":"1340:18:125","nodeType":"YulFunctionCall","src":"1340:18:125"}],"functionName":{"name":"gt","nativeSrc":"1327:2:125","nodeType":"YulIdentifier","src":"1327:2:125"},"nativeSrc":"1327:32:125","nodeType":"YulFunctionCall","src":"1327:32:125"},"nativeSrc":"1324:52:125","nodeType":"YulIf","src":"1324:52:125"},{"nativeSrc":"1385:73:125","nodeType":"YulAssignment","src":"1385:73:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1428:9:125","nodeType":"YulIdentifier","src":"1428:9:125"},{"name":"offset_1","nativeSrc":"1439:8:125","nodeType":"YulIdentifier","src":"1439:8:125"}],"functionName":{"name":"add","nativeSrc":"1424:3:125","nodeType":"YulIdentifier","src":"1424:3:125"},"nativeSrc":"1424:24:125","nodeType":"YulFunctionCall","src":"1424:24:125"},{"name":"dataEnd","nativeSrc":"1450:7:125","nodeType":"YulIdentifier","src":"1450:7:125"}],"functionName":{"name":"abi_decode_string_fromMemory","nativeSrc":"1395:28:125","nodeType":"YulIdentifier","src":"1395:28:125"},"nativeSrc":"1395:63:125","nodeType":"YulFunctionCall","src":"1395:63:125"},"variableNames":[{"name":"value1","nativeSrc":"1385:6:125","nodeType":"YulIdentifier","src":"1385:6:125"}]},{"nativeSrc":"1467:35:125","nodeType":"YulAssignment","src":"1467:35:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1487:9:125","nodeType":"YulIdentifier","src":"1487:9:125"},{"kind":"number","nativeSrc":"1498:2:125","nodeType":"YulLiteral","src":"1498:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1483:3:125","nodeType":"YulIdentifier","src":"1483:3:125"},"nativeSrc":"1483:18:125","nodeType":"YulFunctionCall","src":"1483:18:125"}],"functionName":{"name":"mload","nativeSrc":"1477:5:125","nodeType":"YulIdentifier","src":"1477:5:125"},"nativeSrc":"1477:25:125","nodeType":"YulFunctionCall","src":"1477:25:125"},"variableNames":[{"name":"value2","nativeSrc":"1467:6:125","nodeType":"YulIdentifier","src":"1467:6:125"}]},{"nativeSrc":"1511:38:125","nodeType":"YulVariableDeclaration","src":"1511:38:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1534:9:125","nodeType":"YulIdentifier","src":"1534:9:125"},{"kind":"number","nativeSrc":"1545:2:125","nodeType":"YulLiteral","src":"1545:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1530:3:125","nodeType":"YulIdentifier","src":"1530:3:125"},"nativeSrc":"1530:18:125","nodeType":"YulFunctionCall","src":"1530:18:125"}],"functionName":{"name":"mload","nativeSrc":"1524:5:125","nodeType":"YulIdentifier","src":"1524:5:125"},"nativeSrc":"1524:25:125","nodeType":"YulFunctionCall","src":"1524:25:125"},"variables":[{"name":"value","nativeSrc":"1515:5:125","nodeType":"YulTypedName","src":"1515:5:125","type":""}]},{"body":{"nativeSrc":"1597:16:125","nodeType":"YulBlock","src":"1597:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1606:1:125","nodeType":"YulLiteral","src":"1606:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1609:1:125","nodeType":"YulLiteral","src":"1609:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1599:6:125","nodeType":"YulIdentifier","src":"1599:6:125"},"nativeSrc":"1599:12:125","nodeType":"YulFunctionCall","src":"1599:12:125"},"nativeSrc":"1599:12:125","nodeType":"YulExpressionStatement","src":"1599:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1571:5:125","nodeType":"YulIdentifier","src":"1571:5:125"},{"arguments":[{"name":"value","nativeSrc":"1582:5:125","nodeType":"YulIdentifier","src":"1582:5:125"},{"kind":"number","nativeSrc":"1589:4:125","nodeType":"YulLiteral","src":"1589:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"1578:3:125","nodeType":"YulIdentifier","src":"1578:3:125"},"nativeSrc":"1578:16:125","nodeType":"YulFunctionCall","src":"1578:16:125"}],"functionName":{"name":"eq","nativeSrc":"1568:2:125","nodeType":"YulIdentifier","src":"1568:2:125"},"nativeSrc":"1568:27:125","nodeType":"YulFunctionCall","src":"1568:27:125"}],"functionName":{"name":"iszero","nativeSrc":"1561:6:125","nodeType":"YulIdentifier","src":"1561:6:125"},"nativeSrc":"1561:35:125","nodeType":"YulFunctionCall","src":"1561:35:125"},"nativeSrc":"1558:55:125","nodeType":"YulIf","src":"1558:55:125"},{"nativeSrc":"1622:15:125","nodeType":"YulAssignment","src":"1622:15:125","value":{"name":"value","nativeSrc":"1632:5:125","nodeType":"YulIdentifier","src":"1632:5:125"},"variableNames":[{"name":"value3","nativeSrc":"1622:6:125","nodeType":"YulIdentifier","src":"1622:6:125"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256t_uint8_fromMemory","nativeSrc":"874:769:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"966:9:125","nodeType":"YulTypedName","src":"966:9:125","type":""},{"name":"dataEnd","nativeSrc":"977:7:125","nodeType":"YulTypedName","src":"977:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"989:6:125","nodeType":"YulTypedName","src":"989:6:125","type":""},{"name":"value1","nativeSrc":"997:6:125","nodeType":"YulTypedName","src":"997:6:125","type":""},{"name":"value2","nativeSrc":"1005:6:125","nodeType":"YulTypedName","src":"1005:6:125","type":""},{"name":"value3","nativeSrc":"1013:6:125","nodeType":"YulTypedName","src":"1013:6:125","type":""}],"src":"874:769:125"},{"body":{"nativeSrc":"1703:325:125","nodeType":"YulBlock","src":"1703:325:125","statements":[{"nativeSrc":"1713:22:125","nodeType":"YulAssignment","src":"1713:22:125","value":{"arguments":[{"kind":"number","nativeSrc":"1727:1:125","nodeType":"YulLiteral","src":"1727:1:125","type":"","value":"1"},{"name":"data","nativeSrc":"1730:4:125","nodeType":"YulIdentifier","src":"1730:4:125"}],"functionName":{"name":"shr","nativeSrc":"1723:3:125","nodeType":"YulIdentifier","src":"1723:3:125"},"nativeSrc":"1723:12:125","nodeType":"YulFunctionCall","src":"1723:12:125"},"variableNames":[{"name":"length","nativeSrc":"1713:6:125","nodeType":"YulIdentifier","src":"1713:6:125"}]},{"nativeSrc":"1744:38:125","nodeType":"YulVariableDeclaration","src":"1744:38:125","value":{"arguments":[{"name":"data","nativeSrc":"1774:4:125","nodeType":"YulIdentifier","src":"1774:4:125"},{"kind":"number","nativeSrc":"1780:1:125","nodeType":"YulLiteral","src":"1780:1:125","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"1770:3:125","nodeType":"YulIdentifier","src":"1770:3:125"},"nativeSrc":"1770:12:125","nodeType":"YulFunctionCall","src":"1770:12:125"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"1748:18:125","nodeType":"YulTypedName","src":"1748:18:125","type":""}]},{"body":{"nativeSrc":"1821:31:125","nodeType":"YulBlock","src":"1821:31:125","statements":[{"nativeSrc":"1823:27:125","nodeType":"YulAssignment","src":"1823:27:125","value":{"arguments":[{"name":"length","nativeSrc":"1837:6:125","nodeType":"YulIdentifier","src":"1837:6:125"},{"kind":"number","nativeSrc":"1845:4:125","nodeType":"YulLiteral","src":"1845:4:125","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"1833:3:125","nodeType":"YulIdentifier","src":"1833:3:125"},"nativeSrc":"1833:17:125","nodeType":"YulFunctionCall","src":"1833:17:125"},"variableNames":[{"name":"length","nativeSrc":"1823:6:125","nodeType":"YulIdentifier","src":"1823:6:125"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"1801:18:125","nodeType":"YulIdentifier","src":"1801:18:125"}],"functionName":{"name":"iszero","nativeSrc":"1794:6:125","nodeType":"YulIdentifier","src":"1794:6:125"},"nativeSrc":"1794:26:125","nodeType":"YulFunctionCall","src":"1794:26:125"},"nativeSrc":"1791:61:125","nodeType":"YulIf","src":"1791:61:125"},{"body":{"nativeSrc":"1911:111:125","nodeType":"YulBlock","src":"1911:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1932:1:125","nodeType":"YulLiteral","src":"1932:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1939:3:125","nodeType":"YulLiteral","src":"1939:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"1944:10:125","nodeType":"YulLiteral","src":"1944:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1935:3:125","nodeType":"YulIdentifier","src":"1935:3:125"},"nativeSrc":"1935:20:125","nodeType":"YulFunctionCall","src":"1935:20:125"}],"functionName":{"name":"mstore","nativeSrc":"1925:6:125","nodeType":"YulIdentifier","src":"1925:6:125"},"nativeSrc":"1925:31:125","nodeType":"YulFunctionCall","src":"1925:31:125"},"nativeSrc":"1925:31:125","nodeType":"YulExpressionStatement","src":"1925:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1976:1:125","nodeType":"YulLiteral","src":"1976:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"1979:4:125","nodeType":"YulLiteral","src":"1979:4:125","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"1969:6:125","nodeType":"YulIdentifier","src":"1969:6:125"},"nativeSrc":"1969:15:125","nodeType":"YulFunctionCall","src":"1969:15:125"},"nativeSrc":"1969:15:125","nodeType":"YulExpressionStatement","src":"1969:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2004:1:125","nodeType":"YulLiteral","src":"2004:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2007:4:125","nodeType":"YulLiteral","src":"2007:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1997:6:125","nodeType":"YulIdentifier","src":"1997:6:125"},"nativeSrc":"1997:15:125","nodeType":"YulFunctionCall","src":"1997:15:125"},"nativeSrc":"1997:15:125","nodeType":"YulExpressionStatement","src":"1997:15:125"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"1867:18:125","nodeType":"YulIdentifier","src":"1867:18:125"},{"arguments":[{"name":"length","nativeSrc":"1890:6:125","nodeType":"YulIdentifier","src":"1890:6:125"},{"kind":"number","nativeSrc":"1898:2:125","nodeType":"YulLiteral","src":"1898:2:125","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"1887:2:125","nodeType":"YulIdentifier","src":"1887:2:125"},"nativeSrc":"1887:14:125","nodeType":"YulFunctionCall","src":"1887:14:125"}],"functionName":{"name":"eq","nativeSrc":"1864:2:125","nodeType":"YulIdentifier","src":"1864:2:125"},"nativeSrc":"1864:38:125","nodeType":"YulFunctionCall","src":"1864:38:125"},"nativeSrc":"1861:161:125","nodeType":"YulIf","src":"1861:161:125"}]},"name":"extract_byte_array_length","nativeSrc":"1648:380:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"1683:4:125","nodeType":"YulTypedName","src":"1683:4:125","type":""}],"returnVariables":[{"name":"length","nativeSrc":"1692:6:125","nodeType":"YulTypedName","src":"1692:6:125","type":""}],"src":"1648:380:125"},{"body":{"nativeSrc":"2089:65:125","nodeType":"YulBlock","src":"2089:65:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2106:1:125","nodeType":"YulLiteral","src":"2106:1:125","type":"","value":"0"},{"name":"ptr","nativeSrc":"2109:3:125","nodeType":"YulIdentifier","src":"2109:3:125"}],"functionName":{"name":"mstore","nativeSrc":"2099:6:125","nodeType":"YulIdentifier","src":"2099:6:125"},"nativeSrc":"2099:14:125","nodeType":"YulFunctionCall","src":"2099:14:125"},"nativeSrc":"2099:14:125","nodeType":"YulExpressionStatement","src":"2099:14:125"},{"nativeSrc":"2122:26:125","nodeType":"YulAssignment","src":"2122:26:125","value":{"arguments":[{"kind":"number","nativeSrc":"2140:1:125","nodeType":"YulLiteral","src":"2140:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2143:4:125","nodeType":"YulLiteral","src":"2143:4:125","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2130:9:125","nodeType":"YulIdentifier","src":"2130:9:125"},"nativeSrc":"2130:18:125","nodeType":"YulFunctionCall","src":"2130:18:125"},"variableNames":[{"name":"data","nativeSrc":"2122:4:125","nodeType":"YulIdentifier","src":"2122:4:125"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"2033:121:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"2072:3:125","nodeType":"YulTypedName","src":"2072:3:125","type":""}],"returnVariables":[{"name":"data","nativeSrc":"2080:4:125","nodeType":"YulTypedName","src":"2080:4:125","type":""}],"src":"2033:121:125"},{"body":{"nativeSrc":"2240:437:125","nodeType":"YulBlock","src":"2240:437:125","statements":[{"body":{"nativeSrc":"2273:398:125","nodeType":"YulBlock","src":"2273:398:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2294:1:125","nodeType":"YulLiteral","src":"2294:1:125","type":"","value":"0"},{"name":"array","nativeSrc":"2297:5:125","nodeType":"YulIdentifier","src":"2297:5:125"}],"functionName":{"name":"mstore","nativeSrc":"2287:6:125","nodeType":"YulIdentifier","src":"2287:6:125"},"nativeSrc":"2287:16:125","nodeType":"YulFunctionCall","src":"2287:16:125"},"nativeSrc":"2287:16:125","nodeType":"YulExpressionStatement","src":"2287:16:125"},{"nativeSrc":"2316:30:125","nodeType":"YulVariableDeclaration","src":"2316:30:125","value":{"arguments":[{"kind":"number","nativeSrc":"2338:1:125","nodeType":"YulLiteral","src":"2338:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2341:4:125","nodeType":"YulLiteral","src":"2341:4:125","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2328:9:125","nodeType":"YulIdentifier","src":"2328:9:125"},"nativeSrc":"2328:18:125","nodeType":"YulFunctionCall","src":"2328:18:125"},"variables":[{"name":"data","nativeSrc":"2320:4:125","nodeType":"YulTypedName","src":"2320:4:125","type":""}]},{"nativeSrc":"2359:57:125","nodeType":"YulVariableDeclaration","src":"2359:57:125","value":{"arguments":[{"name":"data","nativeSrc":"2382:4:125","nodeType":"YulIdentifier","src":"2382:4:125"},{"arguments":[{"kind":"number","nativeSrc":"2392:1:125","nodeType":"YulLiteral","src":"2392:1:125","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"2399:10:125","nodeType":"YulIdentifier","src":"2399:10:125"},{"kind":"number","nativeSrc":"2411:2:125","nodeType":"YulLiteral","src":"2411:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2395:3:125","nodeType":"YulIdentifier","src":"2395:3:125"},"nativeSrc":"2395:19:125","nodeType":"YulFunctionCall","src":"2395:19:125"}],"functionName":{"name":"shr","nativeSrc":"2388:3:125","nodeType":"YulIdentifier","src":"2388:3:125"},"nativeSrc":"2388:27:125","nodeType":"YulFunctionCall","src":"2388:27:125"}],"functionName":{"name":"add","nativeSrc":"2378:3:125","nodeType":"YulIdentifier","src":"2378:3:125"},"nativeSrc":"2378:38:125","nodeType":"YulFunctionCall","src":"2378:38:125"},"variables":[{"name":"deleteStart","nativeSrc":"2363:11:125","nodeType":"YulTypedName","src":"2363:11:125","type":""}]},{"body":{"nativeSrc":"2453:23:125","nodeType":"YulBlock","src":"2453:23:125","statements":[{"nativeSrc":"2455:19:125","nodeType":"YulAssignment","src":"2455:19:125","value":{"name":"data","nativeSrc":"2470:4:125","nodeType":"YulIdentifier","src":"2470:4:125"},"variableNames":[{"name":"deleteStart","nativeSrc":"2455:11:125","nodeType":"YulIdentifier","src":"2455:11:125"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"2435:10:125","nodeType":"YulIdentifier","src":"2435:10:125"},{"kind":"number","nativeSrc":"2447:4:125","nodeType":"YulLiteral","src":"2447:4:125","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"2432:2:125","nodeType":"YulIdentifier","src":"2432:2:125"},"nativeSrc":"2432:20:125","nodeType":"YulFunctionCall","src":"2432:20:125"},"nativeSrc":"2429:47:125","nodeType":"YulIf","src":"2429:47:125"},{"nativeSrc":"2489:41:125","nodeType":"YulVariableDeclaration","src":"2489:41:125","value":{"arguments":[{"name":"data","nativeSrc":"2503:4:125","nodeType":"YulIdentifier","src":"2503:4:125"},{"arguments":[{"kind":"number","nativeSrc":"2513:1:125","nodeType":"YulLiteral","src":"2513:1:125","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"2520:3:125","nodeType":"YulIdentifier","src":"2520:3:125"},{"kind":"number","nativeSrc":"2525:2:125","nodeType":"YulLiteral","src":"2525:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2516:3:125","nodeType":"YulIdentifier","src":"2516:3:125"},"nativeSrc":"2516:12:125","nodeType":"YulFunctionCall","src":"2516:12:125"}],"functionName":{"name":"shr","nativeSrc":"2509:3:125","nodeType":"YulIdentifier","src":"2509:3:125"},"nativeSrc":"2509:20:125","nodeType":"YulFunctionCall","src":"2509:20:125"}],"functionName":{"name":"add","nativeSrc":"2499:3:125","nodeType":"YulIdentifier","src":"2499:3:125"},"nativeSrc":"2499:31:125","nodeType":"YulFunctionCall","src":"2499:31:125"},"variables":[{"name":"_1","nativeSrc":"2493:2:125","nodeType":"YulTypedName","src":"2493:2:125","type":""}]},{"nativeSrc":"2543:24:125","nodeType":"YulVariableDeclaration","src":"2543:24:125","value":{"name":"deleteStart","nativeSrc":"2556:11:125","nodeType":"YulIdentifier","src":"2556:11:125"},"variables":[{"name":"start","nativeSrc":"2547:5:125","nodeType":"YulTypedName","src":"2547:5:125","type":""}]},{"body":{"nativeSrc":"2641:20:125","nodeType":"YulBlock","src":"2641:20:125","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"2650:5:125","nodeType":"YulIdentifier","src":"2650:5:125"},{"kind":"number","nativeSrc":"2657:1:125","nodeType":"YulLiteral","src":"2657:1:125","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"2643:6:125","nodeType":"YulIdentifier","src":"2643:6:125"},"nativeSrc":"2643:16:125","nodeType":"YulFunctionCall","src":"2643:16:125"},"nativeSrc":"2643:16:125","nodeType":"YulExpressionStatement","src":"2643:16:125"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"2591:5:125","nodeType":"YulIdentifier","src":"2591:5:125"},{"name":"_1","nativeSrc":"2598:2:125","nodeType":"YulIdentifier","src":"2598:2:125"}],"functionName":{"name":"lt","nativeSrc":"2588:2:125","nodeType":"YulIdentifier","src":"2588:2:125"},"nativeSrc":"2588:13:125","nodeType":"YulFunctionCall","src":"2588:13:125"},"nativeSrc":"2580:81:125","nodeType":"YulForLoop","post":{"nativeSrc":"2602:26:125","nodeType":"YulBlock","src":"2602:26:125","statements":[{"nativeSrc":"2604:22:125","nodeType":"YulAssignment","src":"2604:22:125","value":{"arguments":[{"name":"start","nativeSrc":"2617:5:125","nodeType":"YulIdentifier","src":"2617:5:125"},{"kind":"number","nativeSrc":"2624:1:125","nodeType":"YulLiteral","src":"2624:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"2613:3:125","nodeType":"YulIdentifier","src":"2613:3:125"},"nativeSrc":"2613:13:125","nodeType":"YulFunctionCall","src":"2613:13:125"},"variableNames":[{"name":"start","nativeSrc":"2604:5:125","nodeType":"YulIdentifier","src":"2604:5:125"}]}]},"pre":{"nativeSrc":"2584:3:125","nodeType":"YulBlock","src":"2584:3:125","statements":[]},"src":"2580:81:125"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"2256:3:125","nodeType":"YulIdentifier","src":"2256:3:125"},{"kind":"number","nativeSrc":"2261:2:125","nodeType":"YulLiteral","src":"2261:2:125","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"2253:2:125","nodeType":"YulIdentifier","src":"2253:2:125"},"nativeSrc":"2253:11:125","nodeType":"YulFunctionCall","src":"2253:11:125"},"nativeSrc":"2250:421:125","nodeType":"YulIf","src":"2250:421:125"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"2159:518:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"2212:5:125","nodeType":"YulTypedName","src":"2212:5:125","type":""},{"name":"len","nativeSrc":"2219:3:125","nodeType":"YulTypedName","src":"2219:3:125","type":""},{"name":"startIndex","nativeSrc":"2224:10:125","nodeType":"YulTypedName","src":"2224:10:125","type":""}],"src":"2159:518:125"},{"body":{"nativeSrc":"2767:81:125","nodeType":"YulBlock","src":"2767:81:125","statements":[{"nativeSrc":"2777:65:125","nodeType":"YulAssignment","src":"2777:65:125","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"2792:4:125","nodeType":"YulIdentifier","src":"2792:4:125"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2810:1:125","nodeType":"YulLiteral","src":"2810:1:125","type":"","value":"3"},{"name":"len","nativeSrc":"2813:3:125","nodeType":"YulIdentifier","src":"2813:3:125"}],"functionName":{"name":"shl","nativeSrc":"2806:3:125","nodeType":"YulIdentifier","src":"2806:3:125"},"nativeSrc":"2806:11:125","nodeType":"YulFunctionCall","src":"2806:11:125"},{"arguments":[{"kind":"number","nativeSrc":"2823:1:125","nodeType":"YulLiteral","src":"2823:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2819:3:125","nodeType":"YulIdentifier","src":"2819:3:125"},"nativeSrc":"2819:6:125","nodeType":"YulFunctionCall","src":"2819:6:125"}],"functionName":{"name":"shr","nativeSrc":"2802:3:125","nodeType":"YulIdentifier","src":"2802:3:125"},"nativeSrc":"2802:24:125","nodeType":"YulFunctionCall","src":"2802:24:125"}],"functionName":{"name":"not","nativeSrc":"2798:3:125","nodeType":"YulIdentifier","src":"2798:3:125"},"nativeSrc":"2798:29:125","nodeType":"YulFunctionCall","src":"2798:29:125"}],"functionName":{"name":"and","nativeSrc":"2788:3:125","nodeType":"YulIdentifier","src":"2788:3:125"},"nativeSrc":"2788:40:125","nodeType":"YulFunctionCall","src":"2788:40:125"},{"arguments":[{"kind":"number","nativeSrc":"2834:1:125","nodeType":"YulLiteral","src":"2834:1:125","type":"","value":"1"},{"name":"len","nativeSrc":"2837:3:125","nodeType":"YulIdentifier","src":"2837:3:125"}],"functionName":{"name":"shl","nativeSrc":"2830:3:125","nodeType":"YulIdentifier","src":"2830:3:125"},"nativeSrc":"2830:11:125","nodeType":"YulFunctionCall","src":"2830:11:125"}],"functionName":{"name":"or","nativeSrc":"2785:2:125","nodeType":"YulIdentifier","src":"2785:2:125"},"nativeSrc":"2785:57:125","nodeType":"YulFunctionCall","src":"2785:57:125"},"variableNames":[{"name":"used","nativeSrc":"2777:4:125","nodeType":"YulIdentifier","src":"2777:4:125"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"2682:166:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"2744:4:125","nodeType":"YulTypedName","src":"2744:4:125","type":""},{"name":"len","nativeSrc":"2750:3:125","nodeType":"YulTypedName","src":"2750:3:125","type":""}],"returnVariables":[{"name":"used","nativeSrc":"2758:4:125","nodeType":"YulTypedName","src":"2758:4:125","type":""}],"src":"2682:166:125"},{"body":{"nativeSrc":"2949:1203:125","nodeType":"YulBlock","src":"2949:1203:125","statements":[{"nativeSrc":"2959:24:125","nodeType":"YulVariableDeclaration","src":"2959:24:125","value":{"arguments":[{"name":"src","nativeSrc":"2979:3:125","nodeType":"YulIdentifier","src":"2979:3:125"}],"functionName":{"name":"mload","nativeSrc":"2973:5:125","nodeType":"YulIdentifier","src":"2973:5:125"},"nativeSrc":"2973:10:125","nodeType":"YulFunctionCall","src":"2973:10:125"},"variables":[{"name":"newLen","nativeSrc":"2963:6:125","nodeType":"YulTypedName","src":"2963:6:125","type":""}]},{"body":{"nativeSrc":"3026:22:125","nodeType":"YulBlock","src":"3026:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3028:16:125","nodeType":"YulIdentifier","src":"3028:16:125"},"nativeSrc":"3028:18:125","nodeType":"YulFunctionCall","src":"3028:18:125"},"nativeSrc":"3028:18:125","nodeType":"YulExpressionStatement","src":"3028:18:125"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"2998:6:125","nodeType":"YulIdentifier","src":"2998:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3014:2:125","nodeType":"YulLiteral","src":"3014:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"3018:1:125","nodeType":"YulLiteral","src":"3018:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3010:3:125","nodeType":"YulIdentifier","src":"3010:3:125"},"nativeSrc":"3010:10:125","nodeType":"YulFunctionCall","src":"3010:10:125"},{"kind":"number","nativeSrc":"3022:1:125","nodeType":"YulLiteral","src":"3022:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3006:3:125","nodeType":"YulIdentifier","src":"3006:3:125"},"nativeSrc":"3006:18:125","nodeType":"YulFunctionCall","src":"3006:18:125"}],"functionName":{"name":"gt","nativeSrc":"2995:2:125","nodeType":"YulIdentifier","src":"2995:2:125"},"nativeSrc":"2995:30:125","nodeType":"YulFunctionCall","src":"2995:30:125"},"nativeSrc":"2992:56:125","nodeType":"YulIf","src":"2992:56:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"3101:4:125","nodeType":"YulIdentifier","src":"3101:4:125"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"3139:4:125","nodeType":"YulIdentifier","src":"3139:4:125"}],"functionName":{"name":"sload","nativeSrc":"3133:5:125","nodeType":"YulIdentifier","src":"3133:5:125"},"nativeSrc":"3133:11:125","nodeType":"YulFunctionCall","src":"3133:11:125"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"3107:25:125","nodeType":"YulIdentifier","src":"3107:25:125"},"nativeSrc":"3107:38:125","nodeType":"YulFunctionCall","src":"3107:38:125"},{"name":"newLen","nativeSrc":"3147:6:125","nodeType":"YulIdentifier","src":"3147:6:125"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"3057:43:125","nodeType":"YulIdentifier","src":"3057:43:125"},"nativeSrc":"3057:97:125","nodeType":"YulFunctionCall","src":"3057:97:125"},"nativeSrc":"3057:97:125","nodeType":"YulExpressionStatement","src":"3057:97:125"},{"nativeSrc":"3163:18:125","nodeType":"YulVariableDeclaration","src":"3163:18:125","value":{"kind":"number","nativeSrc":"3180:1:125","nodeType":"YulLiteral","src":"3180:1:125","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"3167:9:125","nodeType":"YulTypedName","src":"3167:9:125","type":""}]},{"nativeSrc":"3190:17:125","nodeType":"YulAssignment","src":"3190:17:125","value":{"kind":"number","nativeSrc":"3203:4:125","nodeType":"YulLiteral","src":"3203:4:125","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"3190:9:125","nodeType":"YulIdentifier","src":"3190:9:125"}]},{"cases":[{"body":{"nativeSrc":"3253:642:125","nodeType":"YulBlock","src":"3253:642:125","statements":[{"nativeSrc":"3267:35:125","nodeType":"YulVariableDeclaration","src":"3267:35:125","value":{"arguments":[{"name":"newLen","nativeSrc":"3286:6:125","nodeType":"YulIdentifier","src":"3286:6:125"},{"arguments":[{"kind":"number","nativeSrc":"3298:2:125","nodeType":"YulLiteral","src":"3298:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"3294:3:125","nodeType":"YulIdentifier","src":"3294:3:125"},"nativeSrc":"3294:7:125","nodeType":"YulFunctionCall","src":"3294:7:125"}],"functionName":{"name":"and","nativeSrc":"3282:3:125","nodeType":"YulIdentifier","src":"3282:3:125"},"nativeSrc":"3282:20:125","nodeType":"YulFunctionCall","src":"3282:20:125"},"variables":[{"name":"loopEnd","nativeSrc":"3271:7:125","nodeType":"YulTypedName","src":"3271:7:125","type":""}]},{"nativeSrc":"3315:49:125","nodeType":"YulVariableDeclaration","src":"3315:49:125","value":{"arguments":[{"name":"slot","nativeSrc":"3359:4:125","nodeType":"YulIdentifier","src":"3359:4:125"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"3329:29:125","nodeType":"YulIdentifier","src":"3329:29:125"},"nativeSrc":"3329:35:125","nodeType":"YulFunctionCall","src":"3329:35:125"},"variables":[{"name":"dstPtr","nativeSrc":"3319:6:125","nodeType":"YulTypedName","src":"3319:6:125","type":""}]},{"nativeSrc":"3377:10:125","nodeType":"YulVariableDeclaration","src":"3377:10:125","value":{"kind":"number","nativeSrc":"3386:1:125","nodeType":"YulLiteral","src":"3386:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"3381:1:125","nodeType":"YulTypedName","src":"3381:1:125","type":""}]},{"body":{"nativeSrc":"3457:165:125","nodeType":"YulBlock","src":"3457:165:125","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3482:6:125","nodeType":"YulIdentifier","src":"3482:6:125"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3500:3:125","nodeType":"YulIdentifier","src":"3500:3:125"},{"name":"srcOffset","nativeSrc":"3505:9:125","nodeType":"YulIdentifier","src":"3505:9:125"}],"functionName":{"name":"add","nativeSrc":"3496:3:125","nodeType":"YulIdentifier","src":"3496:3:125"},"nativeSrc":"3496:19:125","nodeType":"YulFunctionCall","src":"3496:19:125"}],"functionName":{"name":"mload","nativeSrc":"3490:5:125","nodeType":"YulIdentifier","src":"3490:5:125"},"nativeSrc":"3490:26:125","nodeType":"YulFunctionCall","src":"3490:26:125"}],"functionName":{"name":"sstore","nativeSrc":"3475:6:125","nodeType":"YulIdentifier","src":"3475:6:125"},"nativeSrc":"3475:42:125","nodeType":"YulFunctionCall","src":"3475:42:125"},"nativeSrc":"3475:42:125","nodeType":"YulExpressionStatement","src":"3475:42:125"},{"nativeSrc":"3534:24:125","nodeType":"YulAssignment","src":"3534:24:125","value":{"arguments":[{"name":"dstPtr","nativeSrc":"3548:6:125","nodeType":"YulIdentifier","src":"3548:6:125"},{"kind":"number","nativeSrc":"3556:1:125","nodeType":"YulLiteral","src":"3556:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3544:3:125","nodeType":"YulIdentifier","src":"3544:3:125"},"nativeSrc":"3544:14:125","nodeType":"YulFunctionCall","src":"3544:14:125"},"variableNames":[{"name":"dstPtr","nativeSrc":"3534:6:125","nodeType":"YulIdentifier","src":"3534:6:125"}]},{"nativeSrc":"3575:33:125","nodeType":"YulAssignment","src":"3575:33:125","value":{"arguments":[{"name":"srcOffset","nativeSrc":"3592:9:125","nodeType":"YulIdentifier","src":"3592:9:125"},{"kind":"number","nativeSrc":"3603:4:125","nodeType":"YulLiteral","src":"3603:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3588:3:125","nodeType":"YulIdentifier","src":"3588:3:125"},"nativeSrc":"3588:20:125","nodeType":"YulFunctionCall","src":"3588:20:125"},"variableNames":[{"name":"srcOffset","nativeSrc":"3575:9:125","nodeType":"YulIdentifier","src":"3575:9:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"3411:1:125","nodeType":"YulIdentifier","src":"3411:1:125"},{"name":"loopEnd","nativeSrc":"3414:7:125","nodeType":"YulIdentifier","src":"3414:7:125"}],"functionName":{"name":"lt","nativeSrc":"3408:2:125","nodeType":"YulIdentifier","src":"3408:2:125"},"nativeSrc":"3408:14:125","nodeType":"YulFunctionCall","src":"3408:14:125"},"nativeSrc":"3400:222:125","nodeType":"YulForLoop","post":{"nativeSrc":"3423:21:125","nodeType":"YulBlock","src":"3423:21:125","statements":[{"nativeSrc":"3425:17:125","nodeType":"YulAssignment","src":"3425:17:125","value":{"arguments":[{"name":"i","nativeSrc":"3434:1:125","nodeType":"YulIdentifier","src":"3434:1:125"},{"kind":"number","nativeSrc":"3437:4:125","nodeType":"YulLiteral","src":"3437:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3430:3:125","nodeType":"YulIdentifier","src":"3430:3:125"},"nativeSrc":"3430:12:125","nodeType":"YulFunctionCall","src":"3430:12:125"},"variableNames":[{"name":"i","nativeSrc":"3425:1:125","nodeType":"YulIdentifier","src":"3425:1:125"}]}]},"pre":{"nativeSrc":"3404:3:125","nodeType":"YulBlock","src":"3404:3:125","statements":[]},"src":"3400:222:125"},{"body":{"nativeSrc":"3670:166:125","nodeType":"YulBlock","src":"3670:166:125","statements":[{"nativeSrc":"3688:43:125","nodeType":"YulVariableDeclaration","src":"3688:43:125","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3715:3:125","nodeType":"YulIdentifier","src":"3715:3:125"},{"name":"srcOffset","nativeSrc":"3720:9:125","nodeType":"YulIdentifier","src":"3720:9:125"}],"functionName":{"name":"add","nativeSrc":"3711:3:125","nodeType":"YulIdentifier","src":"3711:3:125"},"nativeSrc":"3711:19:125","nodeType":"YulFunctionCall","src":"3711:19:125"}],"functionName":{"name":"mload","nativeSrc":"3705:5:125","nodeType":"YulIdentifier","src":"3705:5:125"},"nativeSrc":"3705:26:125","nodeType":"YulFunctionCall","src":"3705:26:125"},"variables":[{"name":"lastValue","nativeSrc":"3692:9:125","nodeType":"YulTypedName","src":"3692:9:125","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3755:6:125","nodeType":"YulIdentifier","src":"3755:6:125"},{"arguments":[{"name":"lastValue","nativeSrc":"3767:9:125","nodeType":"YulIdentifier","src":"3767:9:125"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3794:1:125","nodeType":"YulLiteral","src":"3794:1:125","type":"","value":"3"},{"name":"newLen","nativeSrc":"3797:6:125","nodeType":"YulIdentifier","src":"3797:6:125"}],"functionName":{"name":"shl","nativeSrc":"3790:3:125","nodeType":"YulIdentifier","src":"3790:3:125"},"nativeSrc":"3790:14:125","nodeType":"YulFunctionCall","src":"3790:14:125"},{"kind":"number","nativeSrc":"3806:3:125","nodeType":"YulLiteral","src":"3806:3:125","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"3786:3:125","nodeType":"YulIdentifier","src":"3786:3:125"},"nativeSrc":"3786:24:125","nodeType":"YulFunctionCall","src":"3786:24:125"},{"arguments":[{"kind":"number","nativeSrc":"3816:1:125","nodeType":"YulLiteral","src":"3816:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3812:3:125","nodeType":"YulIdentifier","src":"3812:3:125"},"nativeSrc":"3812:6:125","nodeType":"YulFunctionCall","src":"3812:6:125"}],"functionName":{"name":"shr","nativeSrc":"3782:3:125","nodeType":"YulIdentifier","src":"3782:3:125"},"nativeSrc":"3782:37:125","nodeType":"YulFunctionCall","src":"3782:37:125"}],"functionName":{"name":"not","nativeSrc":"3778:3:125","nodeType":"YulIdentifier","src":"3778:3:125"},"nativeSrc":"3778:42:125","nodeType":"YulFunctionCall","src":"3778:42:125"}],"functionName":{"name":"and","nativeSrc":"3763:3:125","nodeType":"YulIdentifier","src":"3763:3:125"},"nativeSrc":"3763:58:125","nodeType":"YulFunctionCall","src":"3763:58:125"}],"functionName":{"name":"sstore","nativeSrc":"3748:6:125","nodeType":"YulIdentifier","src":"3748:6:125"},"nativeSrc":"3748:74:125","nodeType":"YulFunctionCall","src":"3748:74:125"},"nativeSrc":"3748:74:125","nodeType":"YulExpressionStatement","src":"3748:74:125"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"3641:7:125","nodeType":"YulIdentifier","src":"3641:7:125"},{"name":"newLen","nativeSrc":"3650:6:125","nodeType":"YulIdentifier","src":"3650:6:125"}],"functionName":{"name":"lt","nativeSrc":"3638:2:125","nodeType":"YulIdentifier","src":"3638:2:125"},"nativeSrc":"3638:19:125","nodeType":"YulFunctionCall","src":"3638:19:125"},"nativeSrc":"3635:201:125","nodeType":"YulIf","src":"3635:201:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"3856:4:125","nodeType":"YulIdentifier","src":"3856:4:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3870:1:125","nodeType":"YulLiteral","src":"3870:1:125","type":"","value":"1"},{"name":"newLen","nativeSrc":"3873:6:125","nodeType":"YulIdentifier","src":"3873:6:125"}],"functionName":{"name":"shl","nativeSrc":"3866:3:125","nodeType":"YulIdentifier","src":"3866:3:125"},"nativeSrc":"3866:14:125","nodeType":"YulFunctionCall","src":"3866:14:125"},{"kind":"number","nativeSrc":"3882:1:125","nodeType":"YulLiteral","src":"3882:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3862:3:125","nodeType":"YulIdentifier","src":"3862:3:125"},"nativeSrc":"3862:22:125","nodeType":"YulFunctionCall","src":"3862:22:125"}],"functionName":{"name":"sstore","nativeSrc":"3849:6:125","nodeType":"YulIdentifier","src":"3849:6:125"},"nativeSrc":"3849:36:125","nodeType":"YulFunctionCall","src":"3849:36:125"},"nativeSrc":"3849:36:125","nodeType":"YulExpressionStatement","src":"3849:36:125"}]},"nativeSrc":"3246:649:125","nodeType":"YulCase","src":"3246:649:125","value":{"kind":"number","nativeSrc":"3251:1:125","nodeType":"YulLiteral","src":"3251:1:125","type":"","value":"1"}},{"body":{"nativeSrc":"3912:234:125","nodeType":"YulBlock","src":"3912:234:125","statements":[{"nativeSrc":"3926:14:125","nodeType":"YulVariableDeclaration","src":"3926:14:125","value":{"kind":"number","nativeSrc":"3939:1:125","nodeType":"YulLiteral","src":"3939:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3930:5:125","nodeType":"YulTypedName","src":"3930:5:125","type":""}]},{"body":{"nativeSrc":"3975:67:125","nodeType":"YulBlock","src":"3975:67:125","statements":[{"nativeSrc":"3993:35:125","nodeType":"YulAssignment","src":"3993:35:125","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"4012:3:125","nodeType":"YulIdentifier","src":"4012:3:125"},{"name":"srcOffset","nativeSrc":"4017:9:125","nodeType":"YulIdentifier","src":"4017:9:125"}],"functionName":{"name":"add","nativeSrc":"4008:3:125","nodeType":"YulIdentifier","src":"4008:3:125"},"nativeSrc":"4008:19:125","nodeType":"YulFunctionCall","src":"4008:19:125"}],"functionName":{"name":"mload","nativeSrc":"4002:5:125","nodeType":"YulIdentifier","src":"4002:5:125"},"nativeSrc":"4002:26:125","nodeType":"YulFunctionCall","src":"4002:26:125"},"variableNames":[{"name":"value","nativeSrc":"3993:5:125","nodeType":"YulIdentifier","src":"3993:5:125"}]}]},"condition":{"name":"newLen","nativeSrc":"3956:6:125","nodeType":"YulIdentifier","src":"3956:6:125"},"nativeSrc":"3953:89:125","nodeType":"YulIf","src":"3953:89:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"4062:4:125","nodeType":"YulIdentifier","src":"4062:4:125"},{"arguments":[{"name":"value","nativeSrc":"4121:5:125","nodeType":"YulIdentifier","src":"4121:5:125"},{"name":"newLen","nativeSrc":"4128:6:125","nodeType":"YulIdentifier","src":"4128:6:125"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"4068:52:125","nodeType":"YulIdentifier","src":"4068:52:125"},"nativeSrc":"4068:67:125","nodeType":"YulFunctionCall","src":"4068:67:125"}],"functionName":{"name":"sstore","nativeSrc":"4055:6:125","nodeType":"YulIdentifier","src":"4055:6:125"},"nativeSrc":"4055:81:125","nodeType":"YulFunctionCall","src":"4055:81:125"},"nativeSrc":"4055:81:125","nodeType":"YulExpressionStatement","src":"4055:81:125"}]},"nativeSrc":"3904:242:125","nodeType":"YulCase","src":"3904:242:125","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"3226:6:125","nodeType":"YulIdentifier","src":"3226:6:125"},{"kind":"number","nativeSrc":"3234:2:125","nodeType":"YulLiteral","src":"3234:2:125","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"3223:2:125","nodeType":"YulIdentifier","src":"3223:2:125"},"nativeSrc":"3223:14:125","nodeType":"YulFunctionCall","src":"3223:14:125"},"nativeSrc":"3216:930:125","nodeType":"YulSwitch","src":"3216:930:125"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"2853:1299:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"2934:4:125","nodeType":"YulTypedName","src":"2934:4:125","type":""},{"name":"src","nativeSrc":"2940:3:125","nodeType":"YulTypedName","src":"2940:3:125","type":""}],"src":"2853:1299:125"},{"body":{"nativeSrc":"4258:102:125","nodeType":"YulBlock","src":"4258:102:125","statements":[{"nativeSrc":"4268:26:125","nodeType":"YulAssignment","src":"4268:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4280:9:125","nodeType":"YulIdentifier","src":"4280:9:125"},{"kind":"number","nativeSrc":"4291:2:125","nodeType":"YulLiteral","src":"4291:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4276:3:125","nodeType":"YulIdentifier","src":"4276:3:125"},"nativeSrc":"4276:18:125","nodeType":"YulFunctionCall","src":"4276:18:125"},"variableNames":[{"name":"tail","nativeSrc":"4268:4:125","nodeType":"YulIdentifier","src":"4268:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4310:9:125","nodeType":"YulIdentifier","src":"4310:9:125"},{"arguments":[{"name":"value0","nativeSrc":"4325:6:125","nodeType":"YulIdentifier","src":"4325:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4341:3:125","nodeType":"YulLiteral","src":"4341:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"4346:1:125","nodeType":"YulLiteral","src":"4346:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4337:3:125","nodeType":"YulIdentifier","src":"4337:3:125"},"nativeSrc":"4337:11:125","nodeType":"YulFunctionCall","src":"4337:11:125"},{"kind":"number","nativeSrc":"4350:1:125","nodeType":"YulLiteral","src":"4350:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4333:3:125","nodeType":"YulIdentifier","src":"4333:3:125"},"nativeSrc":"4333:19:125","nodeType":"YulFunctionCall","src":"4333:19:125"}],"functionName":{"name":"and","nativeSrc":"4321:3:125","nodeType":"YulIdentifier","src":"4321:3:125"},"nativeSrc":"4321:32:125","nodeType":"YulFunctionCall","src":"4321:32:125"}],"functionName":{"name":"mstore","nativeSrc":"4303:6:125","nodeType":"YulIdentifier","src":"4303:6:125"},"nativeSrc":"4303:51:125","nodeType":"YulFunctionCall","src":"4303:51:125"},"nativeSrc":"4303:51:125","nodeType":"YulExpressionStatement","src":"4303:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"4157:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4227:9:125","nodeType":"YulTypedName","src":"4227:9:125","type":""},{"name":"value0","nativeSrc":"4238:6:125","nodeType":"YulTypedName","src":"4238:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4249:4:125","nodeType":"YulTypedName","src":"4249:4:125","type":""}],"src":"4157:203:125"},{"body":{"nativeSrc":"4413:174:125","nodeType":"YulBlock","src":"4413:174:125","statements":[{"nativeSrc":"4423:16:125","nodeType":"YulAssignment","src":"4423:16:125","value":{"arguments":[{"name":"x","nativeSrc":"4434:1:125","nodeType":"YulIdentifier","src":"4434:1:125"},{"name":"y","nativeSrc":"4437:1:125","nodeType":"YulIdentifier","src":"4437:1:125"}],"functionName":{"name":"add","nativeSrc":"4430:3:125","nodeType":"YulIdentifier","src":"4430:3:125"},"nativeSrc":"4430:9:125","nodeType":"YulFunctionCall","src":"4430:9:125"},"variableNames":[{"name":"sum","nativeSrc":"4423:3:125","nodeType":"YulIdentifier","src":"4423:3:125"}]},{"body":{"nativeSrc":"4470:111:125","nodeType":"YulBlock","src":"4470:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4491:1:125","nodeType":"YulLiteral","src":"4491:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4498:3:125","nodeType":"YulLiteral","src":"4498:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"4503:10:125","nodeType":"YulLiteral","src":"4503:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4494:3:125","nodeType":"YulIdentifier","src":"4494:3:125"},"nativeSrc":"4494:20:125","nodeType":"YulFunctionCall","src":"4494:20:125"}],"functionName":{"name":"mstore","nativeSrc":"4484:6:125","nodeType":"YulIdentifier","src":"4484:6:125"},"nativeSrc":"4484:31:125","nodeType":"YulFunctionCall","src":"4484:31:125"},"nativeSrc":"4484:31:125","nodeType":"YulExpressionStatement","src":"4484:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4535:1:125","nodeType":"YulLiteral","src":"4535:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"4538:4:125","nodeType":"YulLiteral","src":"4538:4:125","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"4528:6:125","nodeType":"YulIdentifier","src":"4528:6:125"},"nativeSrc":"4528:15:125","nodeType":"YulFunctionCall","src":"4528:15:125"},"nativeSrc":"4528:15:125","nodeType":"YulExpressionStatement","src":"4528:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4563:1:125","nodeType":"YulLiteral","src":"4563:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4566:4:125","nodeType":"YulLiteral","src":"4566:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4556:6:125","nodeType":"YulIdentifier","src":"4556:6:125"},"nativeSrc":"4556:15:125","nodeType":"YulFunctionCall","src":"4556:15:125"},"nativeSrc":"4556:15:125","nodeType":"YulExpressionStatement","src":"4556:15:125"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"4454:1:125","nodeType":"YulIdentifier","src":"4454:1:125"},{"name":"sum","nativeSrc":"4457:3:125","nodeType":"YulIdentifier","src":"4457:3:125"}],"functionName":{"name":"gt","nativeSrc":"4451:2:125","nodeType":"YulIdentifier","src":"4451:2:125"},"nativeSrc":"4451:10:125","nodeType":"YulFunctionCall","src":"4451:10:125"},"nativeSrc":"4448:133:125","nodeType":"YulIf","src":"4448:133:125"}]},"name":"checked_add_t_uint256","nativeSrc":"4365:222:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"4396:1:125","nodeType":"YulTypedName","src":"4396:1:125","type":""},{"name":"y","nativeSrc":"4399:1:125","nodeType":"YulTypedName","src":"4399:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"4405:3:125","nodeType":"YulTypedName","src":"4405:3:125","type":""}],"src":"4365:222:125"},{"body":{"nativeSrc":"4749:188:125","nodeType":"YulBlock","src":"4749:188:125","statements":[{"nativeSrc":"4759:26:125","nodeType":"YulAssignment","src":"4759:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4771:9:125","nodeType":"YulIdentifier","src":"4771:9:125"},{"kind":"number","nativeSrc":"4782:2:125","nodeType":"YulLiteral","src":"4782:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4767:3:125","nodeType":"YulIdentifier","src":"4767:3:125"},"nativeSrc":"4767:18:125","nodeType":"YulFunctionCall","src":"4767:18:125"},"variableNames":[{"name":"tail","nativeSrc":"4759:4:125","nodeType":"YulIdentifier","src":"4759:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4801:9:125","nodeType":"YulIdentifier","src":"4801:9:125"},{"arguments":[{"name":"value0","nativeSrc":"4816:6:125","nodeType":"YulIdentifier","src":"4816:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4832:3:125","nodeType":"YulLiteral","src":"4832:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"4837:1:125","nodeType":"YulLiteral","src":"4837:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4828:3:125","nodeType":"YulIdentifier","src":"4828:3:125"},"nativeSrc":"4828:11:125","nodeType":"YulFunctionCall","src":"4828:11:125"},{"kind":"number","nativeSrc":"4841:1:125","nodeType":"YulLiteral","src":"4841:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4824:3:125","nodeType":"YulIdentifier","src":"4824:3:125"},"nativeSrc":"4824:19:125","nodeType":"YulFunctionCall","src":"4824:19:125"}],"functionName":{"name":"and","nativeSrc":"4812:3:125","nodeType":"YulIdentifier","src":"4812:3:125"},"nativeSrc":"4812:32:125","nodeType":"YulFunctionCall","src":"4812:32:125"}],"functionName":{"name":"mstore","nativeSrc":"4794:6:125","nodeType":"YulIdentifier","src":"4794:6:125"},"nativeSrc":"4794:51:125","nodeType":"YulFunctionCall","src":"4794:51:125"},"nativeSrc":"4794:51:125","nodeType":"YulExpressionStatement","src":"4794:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4865:9:125","nodeType":"YulIdentifier","src":"4865:9:125"},{"kind":"number","nativeSrc":"4876:2:125","nodeType":"YulLiteral","src":"4876:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4861:3:125","nodeType":"YulIdentifier","src":"4861:3:125"},"nativeSrc":"4861:18:125","nodeType":"YulFunctionCall","src":"4861:18:125"},{"name":"value1","nativeSrc":"4881:6:125","nodeType":"YulIdentifier","src":"4881:6:125"}],"functionName":{"name":"mstore","nativeSrc":"4854:6:125","nodeType":"YulIdentifier","src":"4854:6:125"},"nativeSrc":"4854:34:125","nodeType":"YulFunctionCall","src":"4854:34:125"},"nativeSrc":"4854:34:125","nodeType":"YulExpressionStatement","src":"4854:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4908:9:125","nodeType":"YulIdentifier","src":"4908:9:125"},{"kind":"number","nativeSrc":"4919:2:125","nodeType":"YulLiteral","src":"4919:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4904:3:125","nodeType":"YulIdentifier","src":"4904:3:125"},"nativeSrc":"4904:18:125","nodeType":"YulFunctionCall","src":"4904:18:125"},{"name":"value2","nativeSrc":"4924:6:125","nodeType":"YulIdentifier","src":"4924:6:125"}],"functionName":{"name":"mstore","nativeSrc":"4897:6:125","nodeType":"YulIdentifier","src":"4897:6:125"},"nativeSrc":"4897:34:125","nodeType":"YulFunctionCall","src":"4897:34:125"},"nativeSrc":"4897:34:125","nodeType":"YulExpressionStatement","src":"4897:34:125"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"4592:345:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4702:9:125","nodeType":"YulTypedName","src":"4702:9:125","type":""},{"name":"value2","nativeSrc":"4713:6:125","nodeType":"YulTypedName","src":"4713:6:125","type":""},{"name":"value1","nativeSrc":"4721:6:125","nodeType":"YulTypedName","src":"4721:6:125","type":""},{"name":"value0","nativeSrc":"4729:6:125","nodeType":"YulTypedName","src":"4729:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4740:4:125","nodeType":"YulTypedName","src":"4740:4:125","type":""}],"src":"4592:345:125"},{"body":{"nativeSrc":"5043:76:125","nodeType":"YulBlock","src":"5043:76:125","statements":[{"nativeSrc":"5053:26:125","nodeType":"YulAssignment","src":"5053:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5065:9:125","nodeType":"YulIdentifier","src":"5065:9:125"},{"kind":"number","nativeSrc":"5076:2:125","nodeType":"YulLiteral","src":"5076:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5061:3:125","nodeType":"YulIdentifier","src":"5061:3:125"},"nativeSrc":"5061:18:125","nodeType":"YulFunctionCall","src":"5061:18:125"},"variableNames":[{"name":"tail","nativeSrc":"5053:4:125","nodeType":"YulIdentifier","src":"5053:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5095:9:125","nodeType":"YulIdentifier","src":"5095:9:125"},{"name":"value0","nativeSrc":"5106:6:125","nodeType":"YulIdentifier","src":"5106:6:125"}],"functionName":{"name":"mstore","nativeSrc":"5088:6:125","nodeType":"YulIdentifier","src":"5088:6:125"},"nativeSrc":"5088:25:125","nodeType":"YulFunctionCall","src":"5088:25:125"},"nativeSrc":"5088:25:125","nodeType":"YulExpressionStatement","src":"5088:25:125"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"4942:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5012:9:125","nodeType":"YulTypedName","src":"5012:9:125","type":""},{"name":"value0","nativeSrc":"5023:6:125","nodeType":"YulTypedName","src":"5023:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5034:4:125","nodeType":"YulTypedName","src":"5034:4:125","type":""}],"src":"4942:177:125"}]},"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_uint8_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { 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    }\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":125,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60a060405234801561000f575f5ffd5b50604051610c2a380380610c2a83398101604081905261002e91610266565b8383600361003c838261036f565b506004610049828261036f565b50505060ff811660805261005d3383610066565b5050505061044e565b6001600160a01b0382166100945760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b61009f5f83836100a3565b5050565b6001600160a01b0383166100cd578060025f8282546100c29190610429565b9091555061013d9050565b6001600160a01b0383165f908152602081905260409020548181101561011f5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161008b565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661015957600280548290039055610177565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516101bc91815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126101ec575f5ffd5b81516001600160401b03811115610205576102056101c9565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610233576102336101c9565b60405281815283820160200185101561024a575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f5f5f5f60808587031215610279575f5ffd5b84516001600160401b0381111561028e575f5ffd5b61029a878288016101dd565b602087015190955090506001600160401b038111156102b7575f5ffd5b6102c3878288016101dd565b93505060408501519150606085015160ff811681146102e0575f5ffd5b939692955090935050565b600181811c908216806102ff57607f821691505b60208210810361031d57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561036a57805f5260205f20601f840160051c810160208510156103485750805b601f840160051c820191505b81811015610367575f8155600101610354565b50505b505050565b81516001600160401b03811115610388576103886101c9565b61039c8161039684546102eb565b84610323565b6020601f8211600181146103ce575f83156103b75750848201515b5f19600385901b1c1916600184901b178455610367565b5f84815260208120601f198516915b828110156103fd57878501518255602094850194600190920191016103dd565b508482101561041a57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561044857634e487b7160e01b5f52601160045260245ffd5b92915050565b6080516107c46104665f395f61011701526107c45ff3fe608060405234801561000f575f5ffd5b50600436106100a6575f3560e01c806340c10f191161006e57806340c10f191461014157806370a082311461015657806395d89b411461017e5780639dc29fac14610186578063a9059cbb14610199578063dd62ed3e146101ac575f5ffd5b806306fdde03146100aa578063095ea7b3146100c857806318160ddd146100eb57806323b872dd146100fd578063313ce56714610110575b5f5ffd5b6100b26101e4565b6040516100bf9190610634565b60405180910390f35b6100db6100d6366004610684565b610274565b60405190151581526020016100bf565b6002545b6040519081526020016100bf565b6100db61010b3660046106ac565b61028d565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016100bf565b61015461014f366004610684565b6102b0565b005b6100ef6101643660046106e6565b6001600160a01b03165f9081526020819052604090205490565b6100b26102be565b610154610194366004610684565b6102cd565b6100db6101a7366004610684565b6102d7565b6100ef6101ba366004610706565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101f390610737565b80601f016020809104026020016040519081016040528092919081815260200182805461021f90610737565b801561026a5780601f106102415761010080835404028352916020019161026a565b820191905f5260205f20905b81548152906001019060200180831161024d57829003601f168201915b5050505050905090565b5f336102818185856102e4565b60019150505b92915050565b5f3361029a8582856102f6565b6102a5858585610377565b506001949350505050565b6102ba82826103d4565b5050565b6060600480546101f390610737565b6102ba8282610408565b5f33610281818585610377565b6102f1838383600161043c565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610371578181101561036357604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61037184848484035f61043c565b50505050565b6001600160a01b0383166103a057604051634b637e8f60e11b81525f600482015260240161035a565b6001600160a01b0382166103c95760405163ec442f0560e01b81525f600482015260240161035a565b6102f183838361050e565b6001600160a01b0382166103fd5760405163ec442f0560e01b81525f600482015260240161035a565b6102ba5f838361050e565b6001600160a01b03821661043157604051634b637e8f60e11b81525f600482015260240161035a565b6102ba825f8361050e565b6001600160a01b0384166104655760405163e602df0560e01b81525f600482015260240161035a565b6001600160a01b03831661048e57604051634a1406b160e11b81525f600482015260240161035a565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561037157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161050091815260200190565b60405180910390a350505050565b6001600160a01b038316610538578060025f82825461052d919061076f565b909155506105a89050565b6001600160a01b0383165f908152602081905260409020548181101561058a5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161035a565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166105c4576002805482900390556105e2565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161062791815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b038116811461067f575f5ffd5b919050565b5f5f60408385031215610695575f5ffd5b61069e83610669565b946020939093013593505050565b5f5f5f606084860312156106be575f5ffd5b6106c784610669565b92506106d560208501610669565b929592945050506040919091013590565b5f602082840312156106f6575f5ffd5b6106ff82610669565b9392505050565b5f5f60408385031215610717575f5ffd5b61072083610669565b915061072e60208401610669565b90509250929050565b600181811c9082168061074b57607f821691505b60208210810361076957634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561028757634e487b7160e01b5f52601160045260245ffdfea26469706673582212202ae8dd9ab4ee7abaa60bb9c3c6bccc689154f1f33065a301d737974cef5c28f864736f6c634300081e0033","opcodes":"PUSH1 0xA0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0xC2A CODESIZE SUB DUP1 PUSH2 0xC2A DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2E SWAP2 PUSH2 0x266 JUMP JUMPDEST DUP4 DUP4 PUSH1 0x3 PUSH2 0x3C DUP4 DUP3 PUSH2 0x36F JUMP JUMPDEST POP PUSH1 0x4 PUSH2 0x49 DUP3 DUP3 PUSH2 0x36F JUMP JUMPDEST POP POP POP PUSH1 0xFF DUP2 AND PUSH1 0x80 MSTORE PUSH2 0x5D CALLER DUP4 PUSH2 0x66 JUMP JUMPDEST POP POP POP POP PUSH2 0x44E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x94 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 0x9F PUSH0 DUP4 DUP4 PUSH2 0xA3 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xCD JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xC2 SWAP2 SWAP1 PUSH2 0x429 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x13D 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 0x11F 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 0x8B 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 0x159 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x177 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 0x1BC 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 0x1EC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x205 JUMPI PUSH2 0x205 PUSH2 0x1C9 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 0x233 JUMPI PUSH2 0x233 PUSH2 0x1C9 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP4 DUP3 ADD PUSH1 0x20 ADD DUP6 LT ISZERO PUSH2 0x24A 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 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x279 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x28E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x29A DUP8 DUP3 DUP9 ADD PUSH2 0x1DD JUMP JUMPDEST PUSH1 0x20 DUP8 ADD MLOAD SWAP1 SWAP6 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2B7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2C3 DUP8 DUP3 DUP9 ADD PUSH2 0x1DD JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 DUP6 ADD MLOAD SWAP2 POP PUSH1 0x60 DUP6 ADD MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x2E0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x2FF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x31D 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 0x36A JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x348 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x367 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x354 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x388 JUMPI PUSH2 0x388 PUSH2 0x1C9 JUMP JUMPDEST PUSH2 0x39C DUP2 PUSH2 0x396 DUP5 SLOAD PUSH2 0x2EB JUMP JUMPDEST DUP5 PUSH2 0x323 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x3CE JUMPI PUSH0 DUP4 ISZERO PUSH2 0x3B7 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 0x367 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x3FD JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x3DD JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x41A 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 0x448 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 PUSH2 0x7C4 PUSH2 0x466 PUSH0 CODECOPY PUSH0 PUSH2 0x117 ADD MSTORE PUSH2 0x7C4 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 0x40C10F19 GT PUSH2 0x6E JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x141 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x156 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x17E JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x186 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x199 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x1AC 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 0x1E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBF SWAP2 SWAP1 PUSH2 0x634 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDB PUSH2 0xD6 CALLDATASIZE PUSH1 0x4 PUSH2 0x684 JUMP JUMPDEST PUSH2 0x274 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 0x6AC JUMP JUMPDEST PUSH2 0x28D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH2 0x154 PUSH2 0x14F CALLDATASIZE PUSH1 0x4 PUSH2 0x684 JUMP JUMPDEST PUSH2 0x2B0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xEF PUSH2 0x164 CALLDATASIZE PUSH1 0x4 PUSH2 0x6E6 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 PUSH2 0xB2 PUSH2 0x2BE JUMP JUMPDEST PUSH2 0x154 PUSH2 0x194 CALLDATASIZE PUSH1 0x4 PUSH2 0x684 JUMP JUMPDEST PUSH2 0x2CD JUMP JUMPDEST PUSH2 0xDB PUSH2 0x1A7 CALLDATASIZE PUSH1 0x4 PUSH2 0x684 JUMP JUMPDEST PUSH2 0x2D7 JUMP JUMPDEST PUSH2 0xEF PUSH2 0x1BA CALLDATASIZE PUSH1 0x4 PUSH2 0x706 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 0x1F3 SWAP1 PUSH2 0x737 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 0x21F SWAP1 PUSH2 0x737 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x26A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x241 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x26A 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 0x24D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x281 DUP2 DUP6 DUP6 PUSH2 0x2E4 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x29A DUP6 DUP3 DUP6 PUSH2 0x2F6 JUMP JUMPDEST PUSH2 0x2A5 DUP6 DUP6 DUP6 PUSH2 0x377 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x2BA DUP3 DUP3 PUSH2 0x3D4 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1F3 SWAP1 PUSH2 0x737 JUMP JUMPDEST PUSH2 0x2BA DUP3 DUP3 PUSH2 0x408 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x281 DUP2 DUP6 DUP6 PUSH2 0x377 JUMP JUMPDEST PUSH2 0x2F1 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x43C 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 0x371 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x363 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 0x371 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x43C JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3A0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3C9 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH2 0x2F1 DUP4 DUP4 DUP4 PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3FD JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH2 0x2BA PUSH0 DUP4 DUP4 PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x431 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH2 0x2BA DUP3 PUSH0 DUP4 PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x465 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x48E JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A 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 0x371 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 0x500 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 0x538 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x52D SWAP2 SWAP1 PUSH2 0x76F JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x5A8 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 0x58A 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 0x35A 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 0x5C4 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x5E2 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 0x627 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 0x67F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x695 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x69E DUP4 PUSH2 0x669 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 0x6BE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x6C7 DUP5 PUSH2 0x669 JUMP JUMPDEST SWAP3 POP PUSH2 0x6D5 PUSH1 0x20 DUP6 ADD PUSH2 0x669 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 0x6F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x6FF DUP3 PUSH2 0x669 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x717 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x720 DUP4 PUSH2 0x669 JUMP JUMPDEST SWAP2 POP PUSH2 0x72E PUSH1 0x20 DUP5 ADD PUSH2 0x669 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x74B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x769 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x287 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2A 0xE8 0xDD SWAP11 0xB4 RETURNCONTRACT 0x7A 0xBA 0xA6 SIGNEXTEND 0xB9 0xC3 0xC6 0xBC 0xCC PUSH9 0x9154F1F33065A301D7 CALLDATACOPY SWAP8 0x4C 0xEF TLOAD 0x28 EXTCALL PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"133:600:40:-:0;;;207:208;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;329:5;336:7;1648:5:77;:13;329:5:40;1648::77;:13;:::i;:::-;-1:-1:-1;1671:7:77;:17;1681:7;1671;:17;:::i;:::-;-1:-1:-1;;;351:21:40::1;::::0;::::1;;::::0;378:32:::1;384:10;396:13:::0;378:5:::1;:32::i;:::-;207:208:::0;;;;133:600;;7362:208:77;-1:-1:-1;;;;;7432:21:77;;7428:91;;7476:32;;-1:-1:-1;;;7476:32:77;;7505:1;7476:32;;;4303:51:125;4276:18;;7476:32:77;;;;;;;;7428:91;7528:35;7544:1;7548:7;7557:5;7528:7;:35::i;:::-;7362:208;;:::o;5912:1107::-;-1:-1:-1;;;;;6001:18:77;;5997:540;;6153:5;6137:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;5997:540:77;;-1:-1:-1;5997:540:77;;-1:-1:-1;;;;;6211:15:77;;6189:19;6211:15;;;;;;;;;;;6244:19;;;6240:115;;;6290:50;;-1:-1:-1;;;6290:50:77;;-1:-1:-1;;;;;4812:32:125;;6290:50:77;;;4794:51:125;4861:18;;;4854:34;;;4904:18;;;4897:34;;;4767:18;;6290:50:77;4592:345:125;6240:115:77;-1:-1:-1;;;;;6475:15:77;;:9;:15;;;;;;;;;;6493:19;;;;6475:37;;5997:540;-1:-1:-1;;;;;6551:16:77;;6547:425;;6714:12;:21;;;;;;;6547:425;;;-1:-1:-1;;;;;6925:13:77;;:9;:13;;;;;;;;;;:22;;;;;;6547:425;7002:2;-1:-1:-1;;;;;6987:25:77;6996:4;-1:-1:-1;;;;;6987:25:77;;7006:5;6987:25;;;;5088::125;;5076:2;5061:18;;4942:177;6987:25:77;;;;;;;;5912:1107;;;:::o;14:127:125:-;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:125;;320:56;;;356:18;;:::i;:::-;405:2;399:9;497:2;459:17;;-1:-1:-1;;455:31:125;;;488:2;451:40;447:54;435:67;;-1:-1:-1;;;;;517:34:125;;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:125;;;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:125:o;874:769::-;989:6;997;1005;1013;1066:3;1054:9;1045:7;1041:23;1037:33;1034:53;;;1083:1;1080;1073:12;1034:53;1110:16;;-1:-1:-1;;;;;1138:30:125;;1135:50;;;1181:1;1178;1171:12;1135:50;1204:61;1257:7;1248:6;1237:9;1233:22;1204:61;:::i;:::-;1311:2;1296:18;;1290:25;1194:71;;-1:-1:-1;1290:25:125;-1:-1:-1;;;;;;1327:32:125;;1324:52;;;1372:1;1369;1362:12;1324:52;1395:63;1450:7;1439:8;1428:9;1424:24;1395:63;:::i;:::-;1385:73;;;1498:2;1487:9;1483:18;1477:25;1467:35;;1545:2;1534:9;1530:18;1524:25;1589:4;1582:5;1578:16;1571:5;1568:27;1558:55;;1609:1;1606;1599:12;1558:55;874:769;;;;-1:-1:-1;874:769:125;;-1:-1:-1;;874:769:125:o;1648:380::-;1727:1;1723:12;;;;1770;;;1791:61;;1845:4;1837:6;1833:17;1823:27;;1791:61;1898:2;1890:6;1887:14;1867:18;1864:38;1861:161;;1944:10;1939:3;1935:20;1932:1;1925:31;1979:4;1976:1;1969:15;2007:4;2004:1;1997:15;1861:161;;1648:380;;;:::o;2159:518::-;2261:2;2256:3;2253:11;2250:421;;;2297:5;2294:1;2287:16;2341:4;2338:1;2328:18;2411:2;2399:10;2395:19;2392:1;2388:27;2382:4;2378:38;2447:4;2435:10;2432:20;2429:47;;;-1:-1:-1;2470:4:125;2429:47;2525:2;2520:3;2516:12;2513:1;2509:20;2503:4;2499:31;2489:41;;2580:81;2598:2;2591:5;2588:13;2580:81;;;2657:1;2643:16;;2624:1;2613:13;2580:81;;;2584:3;;2250:421;2159:518;;;:::o;2853:1299::-;2973:10;;-1:-1:-1;;;;;2995:30:125;;2992:56;;;3028:18;;:::i;:::-;3057:97;3147:6;3107:38;3139:4;3133:11;3107:38;:::i;:::-;3101:4;3057:97;:::i;:::-;3203:4;3234:2;3223:14;;3251:1;3246:649;;;;3939:1;3956:6;3953:89;;;-1:-1:-1;4008:19:125;;;4002:26;3953:89;-1:-1:-1;;2810:1:125;2806:11;;;2802:24;2798:29;2788:40;2834:1;2830:11;;;2785:57;4055:81;;3216:930;;3246:649;2106:1;2099:14;;;2143:4;2130:18;;-1:-1:-1;;3282:20:125;;;3400:222;3414:7;3411:1;3408:14;3400:222;;;3496:19;;;3490:26;3475:42;;3603:4;3588:20;;;;3556:1;3544:14;;;;3430:12;3400:222;;;3404:3;3650:6;3641:7;3638:19;3635:201;;;3711:19;;;3705:26;-1:-1:-1;;3794:1:125;3790:14;;;3806:3;3786:24;3782:37;3778:42;3763:58;3748:74;;3635:201;-1:-1:-1;;;;3882:1:125;3866:14;;;3862:22;3849:36;;-1:-1:-1;2853:1299:125:o;4365:222::-;4430:9;;;4451:10;;;4448:133;;;4503:10;4498:3;4494:20;4491:1;4484:31;4538:4;4535:1;4528:15;4566:4;4563:1;4556:15;4448:133;4365:222;;;;:::o;4942:177::-;133:600:40;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_approve_24006":{"entryPoint":740,"id":24006,"parameterSlots":3,"returnSlots":0},"@_approve_24066":{"entryPoint":1084,"id":24066,"parameterSlots":4,"returnSlots":0},"@_burn_23988":{"entryPoint":1032,"id":23988,"parameterSlots":2,"returnSlots":0},"@_mint_23955":{"entryPoint":980,"id":23955,"parameterSlots":2,"returnSlots":0},"@_msgSender_26771":{"entryPoint":null,"id":26771,"parameterSlots":0,"returnSlots":1},"@_spendAllowance_24114":{"entryPoint":758,"id":24114,"parameterSlots":3,"returnSlots":0},"@_transfer_23845":{"entryPoint":887,"id":23845,"parameterSlots":3,"returnSlots":0},"@_update_23922":{"entryPoint":1294,"id":23922,"parameterSlots":3,"returnSlots":0},"@allowance_23742":{"entryPoint":null,"id":23742,"parameterSlots":2,"returnSlots":1},"@approve_23766":{"entryPoint":628,"id":23766,"parameterSlots":2,"returnSlots":1},"@balanceOf_23701":{"entryPoint":null,"id":23701,"parameterSlots":1,"returnSlots":1},"@burn_15508":{"entryPoint":717,"id":15508,"parameterSlots":2,"returnSlots":0},"@decimals_15482":{"entryPoint":null,"id":15482,"parameterSlots":0,"returnSlots":1},"@mint_15495":{"entryPoint":688,"id":15495,"parameterSlots":2,"returnSlots":0},"@name_23661":{"entryPoint":484,"id":23661,"parameterSlots":0,"returnSlots":1},"@symbol_23670":{"entryPoint":702,"id":23670,"parameterSlots":0,"returnSlots":1},"@totalSupply_23688":{"entryPoint":null,"id":23688,"parameterSlots":0,"returnSlots":1},"@transferFrom_23798":{"entryPoint":653,"id":23798,"parameterSlots":3,"returnSlots":1},"@transfer_23725":{"entryPoint":727,"id":23725,"parameterSlots":2,"returnSlots":1},"abi_decode_address":{"entryPoint":1641,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":1766,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":1798,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":1708,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":1668,"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":1588,"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},"checked_add_t_uint256":{"entryPoint":1903,"id":null,"parameterSlots":2,"returnSlots":1},"extract_byte_array_length":{"entryPoint":1847,"id":null,"parameterSlots":1,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:3485:125","nodeType":"YulBlock","src":"0:3485:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"135:297:125","nodeType":"YulBlock","src":"135:297:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"152:9:125","nodeType":"YulIdentifier","src":"152:9:125"},{"kind":"number","nativeSrc":"163:2:125","nodeType":"YulLiteral","src":"163:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"145:6:125","nodeType":"YulIdentifier","src":"145:6:125"},"nativeSrc":"145:21:125","nodeType":"YulFunctionCall","src":"145:21:125"},"nativeSrc":"145:21:125","nodeType":"YulExpressionStatement","src":"145:21:125"},{"nativeSrc":"175:27:125","nodeType":"YulVariableDeclaration","src":"175:27:125","value":{"arguments":[{"name":"value0","nativeSrc":"195:6:125","nodeType":"YulIdentifier","src":"195:6:125"}],"functionName":{"name":"mload","nativeSrc":"189:5:125","nodeType":"YulIdentifier","src":"189:5:125"},"nativeSrc":"189:13:125","nodeType":"YulFunctionCall","src":"189:13:125"},"variables":[{"name":"length","nativeSrc":"179:6:125","nodeType":"YulTypedName","src":"179:6:125","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"222:9:125","nodeType":"YulIdentifier","src":"222:9:125"},{"kind":"number","nativeSrc":"233:2:125","nodeType":"YulLiteral","src":"233:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"218:3:125","nodeType":"YulIdentifier","src":"218:3:125"},"nativeSrc":"218:18:125","nodeType":"YulFunctionCall","src":"218:18:125"},{"name":"length","nativeSrc":"238:6:125","nodeType":"YulIdentifier","src":"238:6:125"}],"functionName":{"name":"mstore","nativeSrc":"211:6:125","nodeType":"YulIdentifier","src":"211:6:125"},"nativeSrc":"211:34:125","nodeType":"YulFunctionCall","src":"211:34:125"},"nativeSrc":"211:34:125","nodeType":"YulExpressionStatement","src":"211:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"264:9:125","nodeType":"YulIdentifier","src":"264:9:125"},{"kind":"number","nativeSrc":"275:2:125","nodeType":"YulLiteral","src":"275:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"260:3:125","nodeType":"YulIdentifier","src":"260:3:125"},"nativeSrc":"260:18:125","nodeType":"YulFunctionCall","src":"260:18:125"},{"arguments":[{"name":"value0","nativeSrc":"284:6:125","nodeType":"YulIdentifier","src":"284:6:125"},{"kind":"number","nativeSrc":"292:2:125","nodeType":"YulLiteral","src":"292:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"280:3:125","nodeType":"YulIdentifier","src":"280:3:125"},"nativeSrc":"280:15:125","nodeType":"YulFunctionCall","src":"280:15:125"},{"name":"length","nativeSrc":"297:6:125","nodeType":"YulIdentifier","src":"297:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"254:5:125","nodeType":"YulIdentifier","src":"254:5:125"},"nativeSrc":"254:50:125","nodeType":"YulFunctionCall","src":"254:50:125"},"nativeSrc":"254:50:125","nodeType":"YulExpressionStatement","src":"254:50:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"328:9:125","nodeType":"YulIdentifier","src":"328:9:125"},{"name":"length","nativeSrc":"339:6:125","nodeType":"YulIdentifier","src":"339:6:125"}],"functionName":{"name":"add","nativeSrc":"324:3:125","nodeType":"YulIdentifier","src":"324:3:125"},"nativeSrc":"324:22:125","nodeType":"YulFunctionCall","src":"324:22:125"},{"kind":"number","nativeSrc":"348:2:125","nodeType":"YulLiteral","src":"348:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"320:3:125","nodeType":"YulIdentifier","src":"320:3:125"},"nativeSrc":"320:31:125","nodeType":"YulFunctionCall","src":"320:31:125"},{"kind":"number","nativeSrc":"353:1:125","nodeType":"YulLiteral","src":"353:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"313:6:125","nodeType":"YulIdentifier","src":"313:6:125"},"nativeSrc":"313:42:125","nodeType":"YulFunctionCall","src":"313:42:125"},"nativeSrc":"313:42:125","nodeType":"YulExpressionStatement","src":"313:42:125"},{"nativeSrc":"364:62:125","nodeType":"YulAssignment","src":"364:62:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"380:9:125","nodeType":"YulIdentifier","src":"380:9:125"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"399:6:125","nodeType":"YulIdentifier","src":"399:6:125"},{"kind":"number","nativeSrc":"407:2:125","nodeType":"YulLiteral","src":"407:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"395:3:125","nodeType":"YulIdentifier","src":"395:3:125"},"nativeSrc":"395:15:125","nodeType":"YulFunctionCall","src":"395:15:125"},{"arguments":[{"kind":"number","nativeSrc":"416:2:125","nodeType":"YulLiteral","src":"416:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"412:3:125","nodeType":"YulIdentifier","src":"412:3:125"},"nativeSrc":"412:7:125","nodeType":"YulFunctionCall","src":"412:7:125"}],"functionName":{"name":"and","nativeSrc":"391:3:125","nodeType":"YulIdentifier","src":"391:3:125"},"nativeSrc":"391:29:125","nodeType":"YulFunctionCall","src":"391:29:125"}],"functionName":{"name":"add","nativeSrc":"376:3:125","nodeType":"YulIdentifier","src":"376:3:125"},"nativeSrc":"376:45:125","nodeType":"YulFunctionCall","src":"376:45:125"},{"kind":"number","nativeSrc":"423:2:125","nodeType":"YulLiteral","src":"423:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"372:3:125","nodeType":"YulIdentifier","src":"372:3:125"},"nativeSrc":"372:54:125","nodeType":"YulFunctionCall","src":"372:54:125"},"variableNames":[{"name":"tail","nativeSrc":"364:4:125","nodeType":"YulIdentifier","src":"364:4:125"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"14:418:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"104:9:125","nodeType":"YulTypedName","src":"104:9:125","type":""},{"name":"value0","nativeSrc":"115:6:125","nodeType":"YulTypedName","src":"115:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"126:4:125","nodeType":"YulTypedName","src":"126:4:125","type":""}],"src":"14:418:125"},{"body":{"nativeSrc":"486:124:125","nodeType":"YulBlock","src":"486:124:125","statements":[{"nativeSrc":"496:29:125","nodeType":"YulAssignment","src":"496:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"518:6:125","nodeType":"YulIdentifier","src":"518:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"505:12:125","nodeType":"YulIdentifier","src":"505:12:125"},"nativeSrc":"505:20:125","nodeType":"YulFunctionCall","src":"505:20:125"},"variableNames":[{"name":"value","nativeSrc":"496:5:125","nodeType":"YulIdentifier","src":"496:5:125"}]},{"body":{"nativeSrc":"588:16:125","nodeType":"YulBlock","src":"588:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"597:1:125","nodeType":"YulLiteral","src":"597:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"600:1:125","nodeType":"YulLiteral","src":"600:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"590:6:125","nodeType":"YulIdentifier","src":"590:6:125"},"nativeSrc":"590:12:125","nodeType":"YulFunctionCall","src":"590:12:125"},"nativeSrc":"590:12:125","nodeType":"YulExpressionStatement","src":"590:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"547:5:125","nodeType":"YulIdentifier","src":"547:5:125"},{"arguments":[{"name":"value","nativeSrc":"558:5:125","nodeType":"YulIdentifier","src":"558:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"573:3:125","nodeType":"YulLiteral","src":"573:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"578:1:125","nodeType":"YulLiteral","src":"578:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"569:3:125","nodeType":"YulIdentifier","src":"569:3:125"},"nativeSrc":"569:11:125","nodeType":"YulFunctionCall","src":"569:11:125"},{"kind":"number","nativeSrc":"582:1:125","nodeType":"YulLiteral","src":"582:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"565:3:125","nodeType":"YulIdentifier","src":"565:3:125"},"nativeSrc":"565:19:125","nodeType":"YulFunctionCall","src":"565:19:125"}],"functionName":{"name":"and","nativeSrc":"554:3:125","nodeType":"YulIdentifier","src":"554:3:125"},"nativeSrc":"554:31:125","nodeType":"YulFunctionCall","src":"554:31:125"}],"functionName":{"name":"eq","nativeSrc":"544:2:125","nodeType":"YulIdentifier","src":"544:2:125"},"nativeSrc":"544:42:125","nodeType":"YulFunctionCall","src":"544:42:125"}],"functionName":{"name":"iszero","nativeSrc":"537:6:125","nodeType":"YulIdentifier","src":"537:6:125"},"nativeSrc":"537:50:125","nodeType":"YulFunctionCall","src":"537:50:125"},"nativeSrc":"534:70:125","nodeType":"YulIf","src":"534:70:125"}]},"name":"abi_decode_address","nativeSrc":"437:173:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"465:6:125","nodeType":"YulTypedName","src":"465:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"476:5:125","nodeType":"YulTypedName","src":"476:5:125","type":""}],"src":"437:173:125"},{"body":{"nativeSrc":"702:213:125","nodeType":"YulBlock","src":"702:213:125","statements":[{"body":{"nativeSrc":"748:16:125","nodeType":"YulBlock","src":"748:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"757:1:125","nodeType":"YulLiteral","src":"757:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"760:1:125","nodeType":"YulLiteral","src":"760:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"750:6:125","nodeType":"YulIdentifier","src":"750:6:125"},"nativeSrc":"750:12:125","nodeType":"YulFunctionCall","src":"750:12:125"},"nativeSrc":"750:12:125","nodeType":"YulExpressionStatement","src":"750:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"723:7:125","nodeType":"YulIdentifier","src":"723:7:125"},{"name":"headStart","nativeSrc":"732:9:125","nodeType":"YulIdentifier","src":"732:9:125"}],"functionName":{"name":"sub","nativeSrc":"719:3:125","nodeType":"YulIdentifier","src":"719:3:125"},"nativeSrc":"719:23:125","nodeType":"YulFunctionCall","src":"719:23:125"},{"kind":"number","nativeSrc":"744:2:125","nodeType":"YulLiteral","src":"744:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"715:3:125","nodeType":"YulIdentifier","src":"715:3:125"},"nativeSrc":"715:32:125","nodeType":"YulFunctionCall","src":"715:32:125"},"nativeSrc":"712:52:125","nodeType":"YulIf","src":"712:52:125"},{"nativeSrc":"773:39:125","nodeType":"YulAssignment","src":"773:39:125","value":{"arguments":[{"name":"headStart","nativeSrc":"802:9:125","nodeType":"YulIdentifier","src":"802:9:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"783:18:125","nodeType":"YulIdentifier","src":"783:18:125"},"nativeSrc":"783:29:125","nodeType":"YulFunctionCall","src":"783:29:125"},"variableNames":[{"name":"value0","nativeSrc":"773:6:125","nodeType":"YulIdentifier","src":"773:6:125"}]},{"nativeSrc":"821:14:125","nodeType":"YulVariableDeclaration","src":"821:14:125","value":{"kind":"number","nativeSrc":"834:1:125","nodeType":"YulLiteral","src":"834:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"825:5:125","nodeType":"YulTypedName","src":"825:5:125","type":""}]},{"nativeSrc":"844:41:125","nodeType":"YulAssignment","src":"844:41:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"870:9:125","nodeType":"YulIdentifier","src":"870:9:125"},{"kind":"number","nativeSrc":"881:2:125","nodeType":"YulLiteral","src":"881:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"866:3:125","nodeType":"YulIdentifier","src":"866:3:125"},"nativeSrc":"866:18:125","nodeType":"YulFunctionCall","src":"866:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"853:12:125","nodeType":"YulIdentifier","src":"853:12:125"},"nativeSrc":"853:32:125","nodeType":"YulFunctionCall","src":"853:32:125"},"variableNames":[{"name":"value","nativeSrc":"844:5:125","nodeType":"YulIdentifier","src":"844:5:125"}]},{"nativeSrc":"894:15:125","nodeType":"YulAssignment","src":"894:15:125","value":{"name":"value","nativeSrc":"904:5:125","nodeType":"YulIdentifier","src":"904:5:125"},"variableNames":[{"name":"value1","nativeSrc":"894:6:125","nodeType":"YulIdentifier","src":"894:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"615:300:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"660:9:125","nodeType":"YulTypedName","src":"660:9:125","type":""},{"name":"dataEnd","nativeSrc":"671:7:125","nodeType":"YulTypedName","src":"671:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"683:6:125","nodeType":"YulTypedName","src":"683:6:125","type":""},{"name":"value1","nativeSrc":"691:6:125","nodeType":"YulTypedName","src":"691:6:125","type":""}],"src":"615:300:125"},{"body":{"nativeSrc":"1015:92:125","nodeType":"YulBlock","src":"1015:92:125","statements":[{"nativeSrc":"1025:26:125","nodeType":"YulAssignment","src":"1025:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1037:9:125","nodeType":"YulIdentifier","src":"1037:9:125"},{"kind":"number","nativeSrc":"1048:2:125","nodeType":"YulLiteral","src":"1048:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1033:3:125","nodeType":"YulIdentifier","src":"1033:3:125"},"nativeSrc":"1033:18:125","nodeType":"YulFunctionCall","src":"1033:18:125"},"variableNames":[{"name":"tail","nativeSrc":"1025:4:125","nodeType":"YulIdentifier","src":"1025:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1067:9:125","nodeType":"YulIdentifier","src":"1067:9:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"1092:6:125","nodeType":"YulIdentifier","src":"1092:6:125"}],"functionName":{"name":"iszero","nativeSrc":"1085:6:125","nodeType":"YulIdentifier","src":"1085:6:125"},"nativeSrc":"1085:14:125","nodeType":"YulFunctionCall","src":"1085:14:125"}],"functionName":{"name":"iszero","nativeSrc":"1078:6:125","nodeType":"YulIdentifier","src":"1078:6:125"},"nativeSrc":"1078:22:125","nodeType":"YulFunctionCall","src":"1078:22:125"}],"functionName":{"name":"mstore","nativeSrc":"1060:6:125","nodeType":"YulIdentifier","src":"1060:6:125"},"nativeSrc":"1060:41:125","nodeType":"YulFunctionCall","src":"1060:41:125"},"nativeSrc":"1060:41:125","nodeType":"YulExpressionStatement","src":"1060:41:125"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"920:187:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"984:9:125","nodeType":"YulTypedName","src":"984:9:125","type":""},{"name":"value0","nativeSrc":"995:6:125","nodeType":"YulTypedName","src":"995:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1006:4:125","nodeType":"YulTypedName","src":"1006:4:125","type":""}],"src":"920:187:125"},{"body":{"nativeSrc":"1213:76:125","nodeType":"YulBlock","src":"1213:76:125","statements":[{"nativeSrc":"1223:26:125","nodeType":"YulAssignment","src":"1223:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1235:9:125","nodeType":"YulIdentifier","src":"1235:9:125"},{"kind":"number","nativeSrc":"1246:2:125","nodeType":"YulLiteral","src":"1246:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1231:3:125","nodeType":"YulIdentifier","src":"1231:3:125"},"nativeSrc":"1231:18:125","nodeType":"YulFunctionCall","src":"1231:18:125"},"variableNames":[{"name":"tail","nativeSrc":"1223:4:125","nodeType":"YulIdentifier","src":"1223:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1265:9:125","nodeType":"YulIdentifier","src":"1265:9:125"},{"name":"value0","nativeSrc":"1276:6:125","nodeType":"YulIdentifier","src":"1276:6:125"}],"functionName":{"name":"mstore","nativeSrc":"1258:6:125","nodeType":"YulIdentifier","src":"1258:6:125"},"nativeSrc":"1258:25:125","nodeType":"YulFunctionCall","src":"1258:25:125"},"nativeSrc":"1258:25:125","nodeType":"YulExpressionStatement","src":"1258:25:125"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"1112:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1182:9:125","nodeType":"YulTypedName","src":"1182:9:125","type":""},{"name":"value0","nativeSrc":"1193:6:125","nodeType":"YulTypedName","src":"1193:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1204:4:125","nodeType":"YulTypedName","src":"1204:4:125","type":""}],"src":"1112:177:125"},{"body":{"nativeSrc":"1398:270:125","nodeType":"YulBlock","src":"1398:270:125","statements":[{"body":{"nativeSrc":"1444:16:125","nodeType":"YulBlock","src":"1444:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1453:1:125","nodeType":"YulLiteral","src":"1453:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1456:1:125","nodeType":"YulLiteral","src":"1456:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1446:6:125","nodeType":"YulIdentifier","src":"1446:6:125"},"nativeSrc":"1446:12:125","nodeType":"YulFunctionCall","src":"1446:12:125"},"nativeSrc":"1446:12:125","nodeType":"YulExpressionStatement","src":"1446:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1419:7:125","nodeType":"YulIdentifier","src":"1419:7:125"},{"name":"headStart","nativeSrc":"1428:9:125","nodeType":"YulIdentifier","src":"1428:9:125"}],"functionName":{"name":"sub","nativeSrc":"1415:3:125","nodeType":"YulIdentifier","src":"1415:3:125"},"nativeSrc":"1415:23:125","nodeType":"YulFunctionCall","src":"1415:23:125"},{"kind":"number","nativeSrc":"1440:2:125","nodeType":"YulLiteral","src":"1440:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"1411:3:125","nodeType":"YulIdentifier","src":"1411:3:125"},"nativeSrc":"1411:32:125","nodeType":"YulFunctionCall","src":"1411:32:125"},"nativeSrc":"1408:52:125","nodeType":"YulIf","src":"1408:52:125"},{"nativeSrc":"1469:39:125","nodeType":"YulAssignment","src":"1469:39:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1498:9:125","nodeType":"YulIdentifier","src":"1498:9:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1479:18:125","nodeType":"YulIdentifier","src":"1479:18:125"},"nativeSrc":"1479:29:125","nodeType":"YulFunctionCall","src":"1479:29:125"},"variableNames":[{"name":"value0","nativeSrc":"1469:6:125","nodeType":"YulIdentifier","src":"1469:6:125"}]},{"nativeSrc":"1517:48:125","nodeType":"YulAssignment","src":"1517:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1550:9:125","nodeType":"YulIdentifier","src":"1550:9:125"},{"kind":"number","nativeSrc":"1561:2:125","nodeType":"YulLiteral","src":"1561:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1546:3:125","nodeType":"YulIdentifier","src":"1546:3:125"},"nativeSrc":"1546:18:125","nodeType":"YulFunctionCall","src":"1546:18:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1527:18:125","nodeType":"YulIdentifier","src":"1527:18:125"},"nativeSrc":"1527:38:125","nodeType":"YulFunctionCall","src":"1527:38:125"},"variableNames":[{"name":"value1","nativeSrc":"1517:6:125","nodeType":"YulIdentifier","src":"1517:6:125"}]},{"nativeSrc":"1574:14:125","nodeType":"YulVariableDeclaration","src":"1574:14:125","value":{"kind":"number","nativeSrc":"1587:1:125","nodeType":"YulLiteral","src":"1587:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1578:5:125","nodeType":"YulTypedName","src":"1578:5:125","type":""}]},{"nativeSrc":"1597:41:125","nodeType":"YulAssignment","src":"1597:41:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1623:9:125","nodeType":"YulIdentifier","src":"1623:9:125"},{"kind":"number","nativeSrc":"1634:2:125","nodeType":"YulLiteral","src":"1634:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1619:3:125","nodeType":"YulIdentifier","src":"1619:3:125"},"nativeSrc":"1619:18:125","nodeType":"YulFunctionCall","src":"1619:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"1606:12:125","nodeType":"YulIdentifier","src":"1606:12:125"},"nativeSrc":"1606:32:125","nodeType":"YulFunctionCall","src":"1606:32:125"},"variableNames":[{"name":"value","nativeSrc":"1597:5:125","nodeType":"YulIdentifier","src":"1597:5:125"}]},{"nativeSrc":"1647:15:125","nodeType":"YulAssignment","src":"1647:15:125","value":{"name":"value","nativeSrc":"1657:5:125","nodeType":"YulIdentifier","src":"1657:5:125"},"variableNames":[{"name":"value2","nativeSrc":"1647:6:125","nodeType":"YulIdentifier","src":"1647:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"1294:374:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1348:9:125","nodeType":"YulTypedName","src":"1348:9:125","type":""},{"name":"dataEnd","nativeSrc":"1359:7:125","nodeType":"YulTypedName","src":"1359:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1371:6:125","nodeType":"YulTypedName","src":"1371:6:125","type":""},{"name":"value1","nativeSrc":"1379:6:125","nodeType":"YulTypedName","src":"1379:6:125","type":""},{"name":"value2","nativeSrc":"1387:6:125","nodeType":"YulTypedName","src":"1387:6:125","type":""}],"src":"1294:374:125"},{"body":{"nativeSrc":"1770:87:125","nodeType":"YulBlock","src":"1770:87:125","statements":[{"nativeSrc":"1780:26:125","nodeType":"YulAssignment","src":"1780:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1792:9:125","nodeType":"YulIdentifier","src":"1792:9:125"},{"kind":"number","nativeSrc":"1803:2:125","nodeType":"YulLiteral","src":"1803:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1788:3:125","nodeType":"YulIdentifier","src":"1788:3:125"},"nativeSrc":"1788:18:125","nodeType":"YulFunctionCall","src":"1788:18:125"},"variableNames":[{"name":"tail","nativeSrc":"1780:4:125","nodeType":"YulIdentifier","src":"1780:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1822:9:125","nodeType":"YulIdentifier","src":"1822:9:125"},{"arguments":[{"name":"value0","nativeSrc":"1837:6:125","nodeType":"YulIdentifier","src":"1837:6:125"},{"kind":"number","nativeSrc":"1845:4:125","nodeType":"YulLiteral","src":"1845:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"1833:3:125","nodeType":"YulIdentifier","src":"1833:3:125"},"nativeSrc":"1833:17:125","nodeType":"YulFunctionCall","src":"1833:17:125"}],"functionName":{"name":"mstore","nativeSrc":"1815:6:125","nodeType":"YulIdentifier","src":"1815:6:125"},"nativeSrc":"1815:36:125","nodeType":"YulFunctionCall","src":"1815:36:125"},"nativeSrc":"1815:36:125","nodeType":"YulExpressionStatement","src":"1815:36:125"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"1673:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1739:9:125","nodeType":"YulTypedName","src":"1739:9:125","type":""},{"name":"value0","nativeSrc":"1750:6:125","nodeType":"YulTypedName","src":"1750:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1761:4:125","nodeType":"YulTypedName","src":"1761:4:125","type":""}],"src":"1673:184:125"},{"body":{"nativeSrc":"1932:116:125","nodeType":"YulBlock","src":"1932:116:125","statements":[{"body":{"nativeSrc":"1978:16:125","nodeType":"YulBlock","src":"1978:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1987:1:125","nodeType":"YulLiteral","src":"1987:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1990:1:125","nodeType":"YulLiteral","src":"1990:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1980:6:125","nodeType":"YulIdentifier","src":"1980:6:125"},"nativeSrc":"1980:12:125","nodeType":"YulFunctionCall","src":"1980:12:125"},"nativeSrc":"1980:12:125","nodeType":"YulExpressionStatement","src":"1980:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1953:7:125","nodeType":"YulIdentifier","src":"1953:7:125"},{"name":"headStart","nativeSrc":"1962:9:125","nodeType":"YulIdentifier","src":"1962:9:125"}],"functionName":{"name":"sub","nativeSrc":"1949:3:125","nodeType":"YulIdentifier","src":"1949:3:125"},"nativeSrc":"1949:23:125","nodeType":"YulFunctionCall","src":"1949:23:125"},{"kind":"number","nativeSrc":"1974:2:125","nodeType":"YulLiteral","src":"1974:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1945:3:125","nodeType":"YulIdentifier","src":"1945:3:125"},"nativeSrc":"1945:32:125","nodeType":"YulFunctionCall","src":"1945:32:125"},"nativeSrc":"1942:52:125","nodeType":"YulIf","src":"1942:52:125"},{"nativeSrc":"2003:39:125","nodeType":"YulAssignment","src":"2003:39:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2032:9:125","nodeType":"YulIdentifier","src":"2032:9:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2013:18:125","nodeType":"YulIdentifier","src":"2013:18:125"},"nativeSrc":"2013:29:125","nodeType":"YulFunctionCall","src":"2013:29:125"},"variableNames":[{"name":"value0","nativeSrc":"2003:6:125","nodeType":"YulIdentifier","src":"2003:6:125"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"1862:186:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1898:9:125","nodeType":"YulTypedName","src":"1898:9:125","type":""},{"name":"dataEnd","nativeSrc":"1909:7:125","nodeType":"YulTypedName","src":"1909:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1921:6:125","nodeType":"YulTypedName","src":"1921:6:125","type":""}],"src":"1862:186:125"},{"body":{"nativeSrc":"2140:173:125","nodeType":"YulBlock","src":"2140:173:125","statements":[{"body":{"nativeSrc":"2186:16:125","nodeType":"YulBlock","src":"2186:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2195:1:125","nodeType":"YulLiteral","src":"2195:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2198:1:125","nodeType":"YulLiteral","src":"2198:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2188:6:125","nodeType":"YulIdentifier","src":"2188:6:125"},"nativeSrc":"2188:12:125","nodeType":"YulFunctionCall","src":"2188:12:125"},"nativeSrc":"2188:12:125","nodeType":"YulExpressionStatement","src":"2188:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2161:7:125","nodeType":"YulIdentifier","src":"2161:7:125"},{"name":"headStart","nativeSrc":"2170:9:125","nodeType":"YulIdentifier","src":"2170:9:125"}],"functionName":{"name":"sub","nativeSrc":"2157:3:125","nodeType":"YulIdentifier","src":"2157:3:125"},"nativeSrc":"2157:23:125","nodeType":"YulFunctionCall","src":"2157:23:125"},{"kind":"number","nativeSrc":"2182:2:125","nodeType":"YulLiteral","src":"2182:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2153:3:125","nodeType":"YulIdentifier","src":"2153:3:125"},"nativeSrc":"2153:32:125","nodeType":"YulFunctionCall","src":"2153:32:125"},"nativeSrc":"2150:52:125","nodeType":"YulIf","src":"2150:52:125"},{"nativeSrc":"2211:39:125","nodeType":"YulAssignment","src":"2211:39:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2240:9:125","nodeType":"YulIdentifier","src":"2240:9:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2221:18:125","nodeType":"YulIdentifier","src":"2221:18:125"},"nativeSrc":"2221:29:125","nodeType":"YulFunctionCall","src":"2221:29:125"},"variableNames":[{"name":"value0","nativeSrc":"2211:6:125","nodeType":"YulIdentifier","src":"2211:6:125"}]},{"nativeSrc":"2259:48:125","nodeType":"YulAssignment","src":"2259:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2292:9:125","nodeType":"YulIdentifier","src":"2292:9:125"},{"kind":"number","nativeSrc":"2303:2:125","nodeType":"YulLiteral","src":"2303:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2288:3:125","nodeType":"YulIdentifier","src":"2288:3:125"},"nativeSrc":"2288:18:125","nodeType":"YulFunctionCall","src":"2288:18:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2269:18:125","nodeType":"YulIdentifier","src":"2269:18:125"},"nativeSrc":"2269:38:125","nodeType":"YulFunctionCall","src":"2269:38:125"},"variableNames":[{"name":"value1","nativeSrc":"2259:6:125","nodeType":"YulIdentifier","src":"2259:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"2053:260:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2098:9:125","nodeType":"YulTypedName","src":"2098:9:125","type":""},{"name":"dataEnd","nativeSrc":"2109:7:125","nodeType":"YulTypedName","src":"2109:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2121:6:125","nodeType":"YulTypedName","src":"2121:6:125","type":""},{"name":"value1","nativeSrc":"2129:6:125","nodeType":"YulTypedName","src":"2129:6:125","type":""}],"src":"2053:260:125"},{"body":{"nativeSrc":"2373:325:125","nodeType":"YulBlock","src":"2373:325:125","statements":[{"nativeSrc":"2383:22:125","nodeType":"YulAssignment","src":"2383:22:125","value":{"arguments":[{"kind":"number","nativeSrc":"2397:1:125","nodeType":"YulLiteral","src":"2397:1:125","type":"","value":"1"},{"name":"data","nativeSrc":"2400:4:125","nodeType":"YulIdentifier","src":"2400:4:125"}],"functionName":{"name":"shr","nativeSrc":"2393:3:125","nodeType":"YulIdentifier","src":"2393:3:125"},"nativeSrc":"2393:12:125","nodeType":"YulFunctionCall","src":"2393:12:125"},"variableNames":[{"name":"length","nativeSrc":"2383:6:125","nodeType":"YulIdentifier","src":"2383:6:125"}]},{"nativeSrc":"2414:38:125","nodeType":"YulVariableDeclaration","src":"2414:38:125","value":{"arguments":[{"name":"data","nativeSrc":"2444:4:125","nodeType":"YulIdentifier","src":"2444:4:125"},{"kind":"number","nativeSrc":"2450:1:125","nodeType":"YulLiteral","src":"2450:1:125","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"2440:3:125","nodeType":"YulIdentifier","src":"2440:3:125"},"nativeSrc":"2440:12:125","nodeType":"YulFunctionCall","src":"2440:12:125"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"2418:18:125","nodeType":"YulTypedName","src":"2418:18:125","type":""}]},{"body":{"nativeSrc":"2491:31:125","nodeType":"YulBlock","src":"2491:31:125","statements":[{"nativeSrc":"2493:27:125","nodeType":"YulAssignment","src":"2493:27:125","value":{"arguments":[{"name":"length","nativeSrc":"2507:6:125","nodeType":"YulIdentifier","src":"2507:6:125"},{"kind":"number","nativeSrc":"2515:4:125","nodeType":"YulLiteral","src":"2515:4:125","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"2503:3:125","nodeType":"YulIdentifier","src":"2503:3:125"},"nativeSrc":"2503:17:125","nodeType":"YulFunctionCall","src":"2503:17:125"},"variableNames":[{"name":"length","nativeSrc":"2493:6:125","nodeType":"YulIdentifier","src":"2493:6:125"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"2471:18:125","nodeType":"YulIdentifier","src":"2471:18:125"}],"functionName":{"name":"iszero","nativeSrc":"2464:6:125","nodeType":"YulIdentifier","src":"2464:6:125"},"nativeSrc":"2464:26:125","nodeType":"YulFunctionCall","src":"2464:26:125"},"nativeSrc":"2461:61:125","nodeType":"YulIf","src":"2461:61:125"},{"body":{"nativeSrc":"2581:111:125","nodeType":"YulBlock","src":"2581:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2602:1:125","nodeType":"YulLiteral","src":"2602:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"2609:3:125","nodeType":"YulLiteral","src":"2609:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"2614:10:125","nodeType":"YulLiteral","src":"2614:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"2605:3:125","nodeType":"YulIdentifier","src":"2605:3:125"},"nativeSrc":"2605:20:125","nodeType":"YulFunctionCall","src":"2605:20:125"}],"functionName":{"name":"mstore","nativeSrc":"2595:6:125","nodeType":"YulIdentifier","src":"2595:6:125"},"nativeSrc":"2595:31:125","nodeType":"YulFunctionCall","src":"2595:31:125"},"nativeSrc":"2595:31:125","nodeType":"YulExpressionStatement","src":"2595:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2646:1:125","nodeType":"YulLiteral","src":"2646:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"2649:4:125","nodeType":"YulLiteral","src":"2649:4:125","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"2639:6:125","nodeType":"YulIdentifier","src":"2639:6:125"},"nativeSrc":"2639:15:125","nodeType":"YulFunctionCall","src":"2639:15:125"},"nativeSrc":"2639:15:125","nodeType":"YulExpressionStatement","src":"2639:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2674:1:125","nodeType":"YulLiteral","src":"2674:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2677:4:125","nodeType":"YulLiteral","src":"2677:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"2667:6:125","nodeType":"YulIdentifier","src":"2667:6:125"},"nativeSrc":"2667:15:125","nodeType":"YulFunctionCall","src":"2667:15:125"},"nativeSrc":"2667:15:125","nodeType":"YulExpressionStatement","src":"2667:15:125"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"2537:18:125","nodeType":"YulIdentifier","src":"2537:18:125"},{"arguments":[{"name":"length","nativeSrc":"2560:6:125","nodeType":"YulIdentifier","src":"2560:6:125"},{"kind":"number","nativeSrc":"2568:2:125","nodeType":"YulLiteral","src":"2568:2:125","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"2557:2:125","nodeType":"YulIdentifier","src":"2557:2:125"},"nativeSrc":"2557:14:125","nodeType":"YulFunctionCall","src":"2557:14:125"}],"functionName":{"name":"eq","nativeSrc":"2534:2:125","nodeType":"YulIdentifier","src":"2534:2:125"},"nativeSrc":"2534:38:125","nodeType":"YulFunctionCall","src":"2534:38:125"},"nativeSrc":"2531:161:125","nodeType":"YulIf","src":"2531:161:125"}]},"name":"extract_byte_array_length","nativeSrc":"2318:380:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"2353:4:125","nodeType":"YulTypedName","src":"2353:4:125","type":""}],"returnVariables":[{"name":"length","nativeSrc":"2362:6:125","nodeType":"YulTypedName","src":"2362:6:125","type":""}],"src":"2318:380:125"},{"body":{"nativeSrc":"2860:188:125","nodeType":"YulBlock","src":"2860:188:125","statements":[{"nativeSrc":"2870:26:125","nodeType":"YulAssignment","src":"2870:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2882:9:125","nodeType":"YulIdentifier","src":"2882:9:125"},{"kind":"number","nativeSrc":"2893:2:125","nodeType":"YulLiteral","src":"2893:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"2878:3:125","nodeType":"YulIdentifier","src":"2878:3:125"},"nativeSrc":"2878:18:125","nodeType":"YulFunctionCall","src":"2878:18:125"},"variableNames":[{"name":"tail","nativeSrc":"2870:4:125","nodeType":"YulIdentifier","src":"2870:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2912:9:125","nodeType":"YulIdentifier","src":"2912:9:125"},{"arguments":[{"name":"value0","nativeSrc":"2927:6:125","nodeType":"YulIdentifier","src":"2927:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2943:3:125","nodeType":"YulLiteral","src":"2943:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"2948:1:125","nodeType":"YulLiteral","src":"2948:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2939:3:125","nodeType":"YulIdentifier","src":"2939:3:125"},"nativeSrc":"2939:11:125","nodeType":"YulFunctionCall","src":"2939:11:125"},{"kind":"number","nativeSrc":"2952:1:125","nodeType":"YulLiteral","src":"2952:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2935:3:125","nodeType":"YulIdentifier","src":"2935:3:125"},"nativeSrc":"2935:19:125","nodeType":"YulFunctionCall","src":"2935:19:125"}],"functionName":{"name":"and","nativeSrc":"2923:3:125","nodeType":"YulIdentifier","src":"2923:3:125"},"nativeSrc":"2923:32:125","nodeType":"YulFunctionCall","src":"2923:32:125"}],"functionName":{"name":"mstore","nativeSrc":"2905:6:125","nodeType":"YulIdentifier","src":"2905:6:125"},"nativeSrc":"2905:51:125","nodeType":"YulFunctionCall","src":"2905:51:125"},"nativeSrc":"2905:51:125","nodeType":"YulExpressionStatement","src":"2905:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2976:9:125","nodeType":"YulIdentifier","src":"2976:9:125"},{"kind":"number","nativeSrc":"2987:2:125","nodeType":"YulLiteral","src":"2987:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2972:3:125","nodeType":"YulIdentifier","src":"2972:3:125"},"nativeSrc":"2972:18:125","nodeType":"YulFunctionCall","src":"2972:18:125"},{"name":"value1","nativeSrc":"2992:6:125","nodeType":"YulIdentifier","src":"2992:6:125"}],"functionName":{"name":"mstore","nativeSrc":"2965:6:125","nodeType":"YulIdentifier","src":"2965:6:125"},"nativeSrc":"2965:34:125","nodeType":"YulFunctionCall","src":"2965:34:125"},"nativeSrc":"2965:34:125","nodeType":"YulExpressionStatement","src":"2965:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3019:9:125","nodeType":"YulIdentifier","src":"3019:9:125"},{"kind":"number","nativeSrc":"3030:2:125","nodeType":"YulLiteral","src":"3030:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3015:3:125","nodeType":"YulIdentifier","src":"3015:3:125"},"nativeSrc":"3015:18:125","nodeType":"YulFunctionCall","src":"3015:18:125"},{"name":"value2","nativeSrc":"3035:6:125","nodeType":"YulIdentifier","src":"3035:6:125"}],"functionName":{"name":"mstore","nativeSrc":"3008:6:125","nodeType":"YulIdentifier","src":"3008:6:125"},"nativeSrc":"3008:34:125","nodeType":"YulFunctionCall","src":"3008:34:125"},"nativeSrc":"3008:34:125","nodeType":"YulExpressionStatement","src":"3008:34:125"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"2703:345:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2813:9:125","nodeType":"YulTypedName","src":"2813:9:125","type":""},{"name":"value2","nativeSrc":"2824:6:125","nodeType":"YulTypedName","src":"2824:6:125","type":""},{"name":"value1","nativeSrc":"2832:6:125","nodeType":"YulTypedName","src":"2832:6:125","type":""},{"name":"value0","nativeSrc":"2840:6:125","nodeType":"YulTypedName","src":"2840:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2851:4:125","nodeType":"YulTypedName","src":"2851:4:125","type":""}],"src":"2703:345:125"},{"body":{"nativeSrc":"3154:102:125","nodeType":"YulBlock","src":"3154:102:125","statements":[{"nativeSrc":"3164:26:125","nodeType":"YulAssignment","src":"3164:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3176:9:125","nodeType":"YulIdentifier","src":"3176:9:125"},{"kind":"number","nativeSrc":"3187:2:125","nodeType":"YulLiteral","src":"3187:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3172:3:125","nodeType":"YulIdentifier","src":"3172:3:125"},"nativeSrc":"3172:18:125","nodeType":"YulFunctionCall","src":"3172:18:125"},"variableNames":[{"name":"tail","nativeSrc":"3164:4:125","nodeType":"YulIdentifier","src":"3164:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3206:9:125","nodeType":"YulIdentifier","src":"3206:9:125"},{"arguments":[{"name":"value0","nativeSrc":"3221:6:125","nodeType":"YulIdentifier","src":"3221:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3237:3:125","nodeType":"YulLiteral","src":"3237:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"3242:1:125","nodeType":"YulLiteral","src":"3242:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3233:3:125","nodeType":"YulIdentifier","src":"3233:3:125"},"nativeSrc":"3233:11:125","nodeType":"YulFunctionCall","src":"3233:11:125"},{"kind":"number","nativeSrc":"3246:1:125","nodeType":"YulLiteral","src":"3246:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3229:3:125","nodeType":"YulIdentifier","src":"3229:3:125"},"nativeSrc":"3229:19:125","nodeType":"YulFunctionCall","src":"3229:19:125"}],"functionName":{"name":"and","nativeSrc":"3217:3:125","nodeType":"YulIdentifier","src":"3217:3:125"},"nativeSrc":"3217:32:125","nodeType":"YulFunctionCall","src":"3217:32:125"}],"functionName":{"name":"mstore","nativeSrc":"3199:6:125","nodeType":"YulIdentifier","src":"3199:6:125"},"nativeSrc":"3199:51:125","nodeType":"YulFunctionCall","src":"3199:51:125"},"nativeSrc":"3199:51:125","nodeType":"YulExpressionStatement","src":"3199:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"3053:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3123:9:125","nodeType":"YulTypedName","src":"3123:9:125","type":""},{"name":"value0","nativeSrc":"3134:6:125","nodeType":"YulTypedName","src":"3134:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3145:4:125","nodeType":"YulTypedName","src":"3145:4:125","type":""}],"src":"3053:203:125"},{"body":{"nativeSrc":"3309:174:125","nodeType":"YulBlock","src":"3309:174:125","statements":[{"nativeSrc":"3319:16:125","nodeType":"YulAssignment","src":"3319:16:125","value":{"arguments":[{"name":"x","nativeSrc":"3330:1:125","nodeType":"YulIdentifier","src":"3330:1:125"},{"name":"y","nativeSrc":"3333:1:125","nodeType":"YulIdentifier","src":"3333:1:125"}],"functionName":{"name":"add","nativeSrc":"3326:3:125","nodeType":"YulIdentifier","src":"3326:3:125"},"nativeSrc":"3326:9:125","nodeType":"YulFunctionCall","src":"3326:9:125"},"variableNames":[{"name":"sum","nativeSrc":"3319:3:125","nodeType":"YulIdentifier","src":"3319:3:125"}]},{"body":{"nativeSrc":"3366:111:125","nodeType":"YulBlock","src":"3366:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3387:1:125","nodeType":"YulLiteral","src":"3387:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"3394:3:125","nodeType":"YulLiteral","src":"3394:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"3399:10:125","nodeType":"YulLiteral","src":"3399:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"3390:3:125","nodeType":"YulIdentifier","src":"3390:3:125"},"nativeSrc":"3390:20:125","nodeType":"YulFunctionCall","src":"3390:20:125"}],"functionName":{"name":"mstore","nativeSrc":"3380:6:125","nodeType":"YulIdentifier","src":"3380:6:125"},"nativeSrc":"3380:31:125","nodeType":"YulFunctionCall","src":"3380:31:125"},"nativeSrc":"3380:31:125","nodeType":"YulExpressionStatement","src":"3380:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3431:1:125","nodeType":"YulLiteral","src":"3431:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"3434:4:125","nodeType":"YulLiteral","src":"3434:4:125","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"3424:6:125","nodeType":"YulIdentifier","src":"3424:6:125"},"nativeSrc":"3424:15:125","nodeType":"YulFunctionCall","src":"3424:15:125"},"nativeSrc":"3424:15:125","nodeType":"YulExpressionStatement","src":"3424:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3459:1:125","nodeType":"YulLiteral","src":"3459:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3462:4:125","nodeType":"YulLiteral","src":"3462:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"3452:6:125","nodeType":"YulIdentifier","src":"3452:6:125"},"nativeSrc":"3452:15:125","nodeType":"YulFunctionCall","src":"3452:15:125"},"nativeSrc":"3452:15:125","nodeType":"YulExpressionStatement","src":"3452:15:125"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"3350:1:125","nodeType":"YulIdentifier","src":"3350:1:125"},{"name":"sum","nativeSrc":"3353:3:125","nodeType":"YulIdentifier","src":"3353:3:125"}],"functionName":{"name":"gt","nativeSrc":"3347:2:125","nodeType":"YulIdentifier","src":"3347:2:125"},"nativeSrc":"3347:10:125","nodeType":"YulFunctionCall","src":"3347:10:125"},"nativeSrc":"3344:133:125","nodeType":"YulIf","src":"3344:133:125"}]},"name":"checked_add_t_uint256","nativeSrc":"3261:222:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"3292:1:125","nodeType":"YulTypedName","src":"3292:1:125","type":""},{"name":"y","nativeSrc":"3295:1:125","nodeType":"YulTypedName","src":"3295:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"3301:3:125","nodeType":"YulTypedName","src":"3301:3:125","type":""}],"src":"3261:222:125"}]},"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_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 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}","id":125,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"15447":[{"length":32,"start":279}]},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b50600436106100a6575f3560e01c806340c10f191161006e57806340c10f191461014157806370a082311461015657806395d89b411461017e5780639dc29fac14610186578063a9059cbb14610199578063dd62ed3e146101ac575f5ffd5b806306fdde03146100aa578063095ea7b3146100c857806318160ddd146100eb57806323b872dd146100fd578063313ce56714610110575b5f5ffd5b6100b26101e4565b6040516100bf9190610634565b60405180910390f35b6100db6100d6366004610684565b610274565b60405190151581526020016100bf565b6002545b6040519081526020016100bf565b6100db61010b3660046106ac565b61028d565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000001681526020016100bf565b61015461014f366004610684565b6102b0565b005b6100ef6101643660046106e6565b6001600160a01b03165f9081526020819052604090205490565b6100b26102be565b610154610194366004610684565b6102cd565b6100db6101a7366004610684565b6102d7565b6100ef6101ba366004610706565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101f390610737565b80601f016020809104026020016040519081016040528092919081815260200182805461021f90610737565b801561026a5780601f106102415761010080835404028352916020019161026a565b820191905f5260205f20905b81548152906001019060200180831161024d57829003601f168201915b5050505050905090565b5f336102818185856102e4565b60019150505b92915050565b5f3361029a8582856102f6565b6102a5858585610377565b506001949350505050565b6102ba82826103d4565b5050565b6060600480546101f390610737565b6102ba8282610408565b5f33610281818585610377565b6102f1838383600161043c565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610371578181101561036357604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61037184848484035f61043c565b50505050565b6001600160a01b0383166103a057604051634b637e8f60e11b81525f600482015260240161035a565b6001600160a01b0382166103c95760405163ec442f0560e01b81525f600482015260240161035a565b6102f183838361050e565b6001600160a01b0382166103fd5760405163ec442f0560e01b81525f600482015260240161035a565b6102ba5f838361050e565b6001600160a01b03821661043157604051634b637e8f60e11b81525f600482015260240161035a565b6102ba825f8361050e565b6001600160a01b0384166104655760405163e602df0560e01b81525f600482015260240161035a565b6001600160a01b03831661048e57604051634a1406b160e11b81525f600482015260240161035a565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561037157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161050091815260200190565b60405180910390a350505050565b6001600160a01b038316610538578060025f82825461052d919061076f565b909155506105a89050565b6001600160a01b0383165f908152602081905260409020548181101561058a5760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161035a565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166105c4576002805482900390556105e2565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161062791815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b038116811461067f575f5ffd5b919050565b5f5f60408385031215610695575f5ffd5b61069e83610669565b946020939093013593505050565b5f5f5f606084860312156106be575f5ffd5b6106c784610669565b92506106d560208501610669565b929592945050506040919091013590565b5f602082840312156106f6575f5ffd5b6106ff82610669565b9392505050565b5f5f60408385031215610717575f5ffd5b61072083610669565b915061072e60208401610669565b90509250929050565b600181811c9082168061074b57607f821691505b60208210810361076957634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561028757634e487b7160e01b5f52601160045260245ffdfea26469706673582212202ae8dd9ab4ee7abaa60bb9c3c6bccc689154f1f33065a301d737974cef5c28f864736f6c634300081e0033","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 0x40C10F19 GT PUSH2 0x6E JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x141 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x156 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x17E JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x186 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x199 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x1AC 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 0x1E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBF SWAP2 SWAP1 PUSH2 0x634 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDB PUSH2 0xD6 CALLDATASIZE PUSH1 0x4 PUSH2 0x684 JUMP JUMPDEST PUSH2 0x274 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 0x6AC JUMP JUMPDEST PUSH2 0x28D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xBF JUMP JUMPDEST PUSH2 0x154 PUSH2 0x14F CALLDATASIZE PUSH1 0x4 PUSH2 0x684 JUMP JUMPDEST PUSH2 0x2B0 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xEF PUSH2 0x164 CALLDATASIZE PUSH1 0x4 PUSH2 0x6E6 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 PUSH2 0xB2 PUSH2 0x2BE JUMP JUMPDEST PUSH2 0x154 PUSH2 0x194 CALLDATASIZE PUSH1 0x4 PUSH2 0x684 JUMP JUMPDEST PUSH2 0x2CD JUMP JUMPDEST PUSH2 0xDB PUSH2 0x1A7 CALLDATASIZE PUSH1 0x4 PUSH2 0x684 JUMP JUMPDEST PUSH2 0x2D7 JUMP JUMPDEST PUSH2 0xEF PUSH2 0x1BA CALLDATASIZE PUSH1 0x4 PUSH2 0x706 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 0x1F3 SWAP1 PUSH2 0x737 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 0x21F SWAP1 PUSH2 0x737 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x26A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x241 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x26A 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 0x24D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x281 DUP2 DUP6 DUP6 PUSH2 0x2E4 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x29A DUP6 DUP3 DUP6 PUSH2 0x2F6 JUMP JUMPDEST PUSH2 0x2A5 DUP6 DUP6 DUP6 PUSH2 0x377 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x2BA DUP3 DUP3 PUSH2 0x3D4 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1F3 SWAP1 PUSH2 0x737 JUMP JUMPDEST PUSH2 0x2BA DUP3 DUP3 PUSH2 0x408 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x281 DUP2 DUP6 DUP6 PUSH2 0x377 JUMP JUMPDEST PUSH2 0x2F1 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x43C 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 0x371 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x363 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 0x371 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x43C JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3A0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3C9 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH2 0x2F1 DUP4 DUP4 DUP4 PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3FD JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH2 0x2BA PUSH0 DUP4 DUP4 PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x431 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH2 0x2BA DUP3 PUSH0 DUP4 PUSH2 0x50E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x465 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x48E JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x35A 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 0x371 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 0x500 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 0x538 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x52D SWAP2 SWAP1 PUSH2 0x76F JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x5A8 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 0x58A 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 0x35A 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 0x5C4 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x5E2 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 0x627 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 0x67F JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x695 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x69E DUP4 PUSH2 0x669 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 0x6BE JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x6C7 DUP5 PUSH2 0x669 JUMP JUMPDEST SWAP3 POP PUSH2 0x6D5 PUSH1 0x20 DUP6 ADD PUSH2 0x669 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 0x6F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x6FF DUP3 PUSH2 0x669 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x717 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x720 DUP4 PUSH2 0x669 JUMP JUMPDEST SWAP2 POP PUSH2 0x72E PUSH1 0x20 DUP5 ADD PUSH2 0x669 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x74B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x769 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x287 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2A 0xE8 0xDD SWAP11 0xB4 RETURNCONTRACT 0x7A 0xBA 0xA6 SIGNEXTEND 0xB9 0xC3 0xC6 0xBC 0xCC PUSH9 0x9154F1F33065A301D7 CALLDATACOPY SWAP8 0x4C 0xEF TLOAD 0x28 EXTCALL PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"133:600:40:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3902:186;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:125;;1078:22;1060:41;;1048:2;1033:18;3902:186:77;920:187:125;2803:97:77;2881:12;;2803:97;;;1258:25:125;;;1246:2;1231:18;2803:97:77;1112:177:125;4680:244:77;;;;;;:::i;:::-;;:::i;419:92:40:-;;;1845:4:125;497:9:40;1833:17:125;1815:36;;1803:2;1788:18;419:92:40;1673:184:125;515:106:40;;;;;;:::i;:::-;;:::i;:::-;;2933:116:77;;;;;;:::i;:::-;-1:-1:-1;;;;;3024:18:77;2998:7;3024:18;;;;;;;;;;;;2933:116;1962:93;;;:::i;625:106:40:-;;;;;;:::i;:::-;;:::i;3244:178:77:-;;;;;;:::i;:::-;;:::i;3455:140::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3561:18:77;;;3535:7;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3455:140;1760:89;1805:13;1837:5;1830:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89;:::o;3902:186::-;3975:4;735:10:89;4029:31:77;735:10:89;4045:7:77;4054:5;4029:8;:31::i;:::-;4077:4;4070:11;;;3902:186;;;;;:::o;4680:244::-;4767:4;735:10:89;4823:37:77;4839:4;735:10:89;4854:5:77;4823:15;:37::i;:::-;4870:26;4880:4;4886:2;4890:5;4870:9;:26::i;:::-;-1:-1:-1;4913:4:77;;4680:244;-1:-1:-1;;;;4680:244:77:o;515:106:40:-;592:24;598:9;609:6;592:5;:24::i;:::-;515:106;;:::o;1962:93:77:-;2009:13;2041:7;2034:14;;;;;:::i;625:106:40:-;702:24;708:9;719:6;702:5;:24::i;3244:178:77:-;3313:4;735:10:89;3367:27:77;735:10:89;3384:2:77;3388:5;3367:9;:27::i;8630:128::-;8714:37;8723:5;8730:7;8739:5;8746:4;8714:8;:37::i;:::-;8630:128;;;:::o;10321:476::-;-1:-1:-1;;;;;3561:18:77;;;10420:24;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10486:36:77;;10482:309;;;10561:5;10542:16;:24;10538:130;;;10593:60;;-1:-1:-1;;;10593:60:77;;-1:-1:-1;;;;;2923:32:125;;10593:60:77;;;2905:51:125;2972:18;;;2965:34;;;3015:18;;;3008:34;;;2878:18;;10593:60:77;;;;;;;;10538:130;10709:57;10718:5;10725:7;10753:5;10734:16;:24;10760:5;10709:8;:57::i;:::-;10410:387;10321:476;;;:::o;5297:300::-;-1:-1:-1;;;;;5380:18:77;;5376:86;;5421:30;;-1:-1:-1;;;5421:30:77;;5448:1;5421:30;;;3199:51:125;3172:18;;5421:30:77;3053:203:125;5376:86:77;-1:-1:-1;;;;;5475:16:77;;5471:86;;5514:32;;-1:-1:-1;;;5514:32:77;;5543:1;5514:32;;;3199:51:125;3172:18;;5514:32:77;3053:203:125;5471:86:77;5566:24;5574:4;5580:2;5584:5;5566:7;:24::i;7362:208::-;-1:-1:-1;;;;;7432:21:77;;7428:91;;7476:32;;-1:-1:-1;;;7476:32:77;;7505:1;7476:32;;;3199:51:125;3172:18;;7476:32:77;3053:203:125;7428:91:77;7528:35;7544:1;7548:7;7557:5;7528:7;:35::i;7888:206::-;-1:-1:-1;;;;;7958:21:77;;7954:89;;8002:30;;-1:-1:-1;;;8002:30:77;;8029:1;8002:30;;;3199:51:125;3172:18;;8002:30:77;3053:203:125;7954:89:77;8052:35;8060:7;8077:1;8081:5;8052:7;:35::i;9607:432::-;-1:-1:-1;;;;;9719:19:77;;9715:89;;9761:32;;-1:-1:-1;;;9761:32:77;;9790:1;9761:32;;;3199:51:125;3172:18;;9761:32:77;3053:203:125;9715:89:77;-1:-1:-1;;;;;9817:21:77;;9813:90;;9861:31;;-1:-1:-1;;;9861:31:77;;9889:1;9861:31;;;3199:51:125;3172:18;;9861:31:77;3053:203:125;9813:90:77;-1:-1:-1;;;;;9912:18:77;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;9957:76;;;;10007:7;-1:-1:-1;;;;;9991:31:77;10000:5;-1:-1:-1;;;;;9991:31:77;;10016:5;9991:31;;;;1258:25:125;;1246:2;1231:18;;1112:177;9991:31:77;;;;;;;;9607:432;;;;:::o;5912:1107::-;-1:-1:-1;;;;;6001:18:77;;5997:540;;6153:5;6137:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;5997:540:77;;-1:-1:-1;5997:540:77;;-1:-1:-1;;;;;6211:15:77;;6189:19;6211:15;;;;;;;;;;;6244:19;;;6240:115;;;6290:50;;-1:-1:-1;;;6290:50:77;;-1:-1:-1;;;;;2923:32:125;;6290:50:77;;;2905:51:125;2972:18;;;2965:34;;;3015:18;;;3008:34;;;2878:18;;6290:50:77;2703:345:125;6240:115:77;-1:-1:-1;;;;;6475:15:77;;:9;:15;;;;;;;;;;6493:19;;;;6475:37;;5997:540;-1:-1:-1;;;;;6551:16:77;;6547:425;;6714:12;:21;;;;;;;6547:425;;;-1:-1:-1;;;;;6925:13:77;;:9;:13;;;;;;;;;;:22;;;;;;6547:425;7002:2;-1:-1:-1;;;;;6987:25:77;6996:4;-1:-1:-1;;;;;6987:25:77;;7006:5;6987:25;;;;1258::125;;1246:2;1231:18;;1112:177;6987:25:77;;;;;;;;5912:1107;;;:::o;14:418:125:-;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:125;;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:125: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:125;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:125:o;2053:260::-;2121:6;2129;2182:2;2170:9;2161:7;2157:23;2153:32;2150:52;;;2198:1;2195;2188:12;2150:52;2221:29;2240:9;2221:29;:::i;:::-;2211:39;;2269:38;2303:2;2292:9;2288:18;2269:38;:::i;:::-;2259:48;;2053:260;;;;;:::o;2318:380::-;2397:1;2393:12;;;;2440;;;2461:61;;2515:4;2507:6;2503:17;2493:27;;2461:61;2568:2;2560:6;2557:14;2537:18;2534:38;2531:161;;2614:10;2609:3;2605:20;2602:1;2595:31;2649:4;2646:1;2639:15;2677:4;2674:1;2667:15;2531:161;;2318:380;;;:::o;3261:222::-;3326:9;;;3347:10;;;3344:133;;;3399:10;3394:3;3390:20;3387:1;3380:31;3434:4;3431:1;3424:15;3462:4;3459:1;3452:15"},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","burn(address,uint256)":"9dc29fac","decimals()":"313ce567","mint(address,uint256)":"40c10f19","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\"}],\"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\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":{\"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\":\"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\":\"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\":\"Returns the value of tokens owned by `account`.\"},\"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\":\"Returns the value of tokens in existence.\"},\"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\":{\"@ensuro/utils/contracts/TestCurrency.sol\":\"TestCurrency\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/utils/contracts/TestCurrency.sol\":{\"keccak256\":\"0x83da2209baf46f2ea6907aa5ebacfa2c3b0064cd52eb5a180363805cf34cacb9\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://009d1abdd87bbe885a242d23c7e66368712e754cdc0b4bfe55f1c901b6fd0248\",\"dweb:/ipfs/QmeeqBi1FFT6W9XNFg8mTFdBT3DH8PiZ2SSixsdkQMfzFP\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x669464167428061ee0f8618b73b3ee90aff8405683e7ddde8cd77dadaa1afe29\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0dda78587a7358b4fdf6b9fca0fde5a5e34930f36d5268a16028627fc0170195\",\"dweb:/ipfs/QmQ1b6cCceDRWNxti9HifsTCzmVP25Haxs1bWugm52vTqH\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":23623,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":23629,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":23631,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":23633,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":23635,"contract":"@ensuro/utils/contracts/TestCurrency.sol:TestCurrency","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"}}}}},"@ensuro/utils/contracts/TestERC4626.sol":{"IMintable":{"abi":[{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"burn(address,uint256)":"9dc29fac","mint(address,uint256)":"40c10f19"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"mint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/utils/contracts/TestERC4626.sol\":\"IMintable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/utils/contracts/TestERC4626.sol\":{\"keccak256\":\"0x688032ec63b79e352f3eb8ceb1a358d9b61ff630a346807b1e9a017de0200150\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://6d40c7e350166b37b8f5301916939a752ffe296c30f7413b45b9c6b2c4c8e4ce\",\"dweb:/ipfs/QmWRG5CZsU1jeuoryJZP3Sg1cQU8Mu9C5bB7TwhF2M1ZaQ\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x669464167428061ee0f8618b73b3ee90aff8405683e7ddde8cd77dadaa1afe29\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0dda78587a7358b4fdf6b9fca0fde5a5e34930f36d5268a16028627fc0170195\",\"dweb:/ipfs/QmQ1b6cCceDRWNxti9HifsTCzmVP25Haxs1bWugm52vTqH\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol\":{\"keccak256\":\"0x8a6a0045f0bb52251a9a5d8bb5f4156f4eb3ba8521b1fca6a304befaab3e7d23\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ebd5125436dbb18ba3646cbdb4a8385a9e2bf28abc9d8178a9e7f31cca65f8b8\",\"dweb:/ipfs/QmPioMpycRKdAetJNYYfWCw36rQuyxNqhgHDFGRVLaPKnT\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Memory.sol\":{\"keccak256\":\"0x35feec480590c0ed9c1623df077ba9af406ad57cd9d149ff278c7316d6fe8fe0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://839967d079db4cd624c3f735a6e911953c0e2347418c016f6a0cc18ed1aa9603\",\"dweb:/ipfs/QmaWxNL8Ymkwerfvq1LNzpbq2PMzTGsnXzqsYExNyvKWka\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}},"TestERC4626":{"abi":[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"contract IERC20Metadata","name":"asset_","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"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxMint","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxRedeem","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxWithdraw","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"VaultIsBroken","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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"OVERRIDE_UNSET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"broken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","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":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int256","name":"assets","type":"int256"}],"name":"discreteEarning","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"overrideMaxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"overrideMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"overrideMaxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"overrideMaxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"broken_","type":"bool"}],"name":"setBroken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum TestERC4626.OverrideOption","name":"option","type":"uint8"},{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setOverride","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","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"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_15609":{"entryPoint":null,"id":15609,"parameterSlots":3,"returnSlots":0},"@_23652":{"entryPoint":null,"id":23652,"parameterSlots":2,"returnSlots":0},"@_24285":{"entryPoint":null,"id":24285,"parameterSlots":1,"returnSlots":0},"@_tryGetAssetDecimals_24363":{"entryPoint":171,"id":24363,"parameterSlots":1,"returnSlots":2},"@getFreeMemoryPointer_26988":{"entryPoint":null,"id":26988,"parameterSlots":0,"returnSlots":1},"@returnDataSize_26948":{"entryPoint":null,"id":26948,"parameterSlots":0,"returnSlots":1},"@setFreeMemoryPointer_26997":{"entryPoint":null,"id":26997,"parameterSlots":1,"returnSlots":0},"@staticcallReturn64Bytes_26912":{"entryPoint":316,"id":26912,"parameterSlots":2,"returnSlots":3},"abi_decode_string_fromMemory":{"entryPoint":369,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC20Metadata_$24925_fromMemory":{"entryPoint":506,"id":null,"parameterSlots":2,"returnSlots":3},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":957,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":695,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":771,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":639,"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":349,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:4363:125","nodeType":"YulBlock","src":"0:4363:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"46:95:125","nodeType":"YulBlock","src":"46:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"63:1:125","nodeType":"YulLiteral","src":"63:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"70:3:125","nodeType":"YulLiteral","src":"70:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"75:10:125","nodeType":"YulLiteral","src":"75:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"66:3:125","nodeType":"YulIdentifier","src":"66:3:125"},"nativeSrc":"66:20:125","nodeType":"YulFunctionCall","src":"66:20:125"}],"functionName":{"name":"mstore","nativeSrc":"56:6:125","nodeType":"YulIdentifier","src":"56:6:125"},"nativeSrc":"56:31:125","nodeType":"YulFunctionCall","src":"56:31:125"},"nativeSrc":"56:31:125","nodeType":"YulExpressionStatement","src":"56:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"103:1:125","nodeType":"YulLiteral","src":"103:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"106:4:125","nodeType":"YulLiteral","src":"106:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"96:6:125","nodeType":"YulIdentifier","src":"96:6:125"},"nativeSrc":"96:15:125","nodeType":"YulFunctionCall","src":"96:15:125"},"nativeSrc":"96:15:125","nodeType":"YulExpressionStatement","src":"96:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"127:1:125","nodeType":"YulLiteral","src":"127:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"130:4:125","nodeType":"YulLiteral","src":"130:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"120:6:125","nodeType":"YulIdentifier","src":"120:6:125"},"nativeSrc":"120:15:125","nodeType":"YulFunctionCall","src":"120:15:125"},"nativeSrc":"120:15:125","nodeType":"YulExpressionStatement","src":"120:15:125"}]},"name":"panic_error_0x41","nativeSrc":"14:127:125","nodeType":"YulFunctionDefinition","src":"14:127:125"},{"body":{"nativeSrc":"210:659:125","nodeType":"YulBlock","src":"210:659:125","statements":[{"body":{"nativeSrc":"259:16:125","nodeType":"YulBlock","src":"259:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"268:1:125","nodeType":"YulLiteral","src":"268:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"271:1:125","nodeType":"YulLiteral","src":"271:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"261:6:125","nodeType":"YulIdentifier","src":"261:6:125"},"nativeSrc":"261:12:125","nodeType":"YulFunctionCall","src":"261:12:125"},"nativeSrc":"261:12:125","nodeType":"YulExpressionStatement","src":"261:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"238:6:125","nodeType":"YulIdentifier","src":"238:6:125"},{"kind":"number","nativeSrc":"246:4:125","nodeType":"YulLiteral","src":"246:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"234:3:125","nodeType":"YulIdentifier","src":"234:3:125"},"nativeSrc":"234:17:125","nodeType":"YulFunctionCall","src":"234:17:125"},{"name":"end","nativeSrc":"253:3:125","nodeType":"YulIdentifier","src":"253:3:125"}],"functionName":{"name":"slt","nativeSrc":"230:3:125","nodeType":"YulIdentifier","src":"230:3:125"},"nativeSrc":"230:27:125","nodeType":"YulFunctionCall","src":"230:27:125"}],"functionName":{"name":"iszero","nativeSrc":"223:6:125","nodeType":"YulIdentifier","src":"223:6:125"},"nativeSrc":"223:35:125","nodeType":"YulFunctionCall","src":"223:35:125"},"nativeSrc":"220:55:125","nodeType":"YulIf","src":"220:55:125"},{"nativeSrc":"284:27:125","nodeType":"YulVariableDeclaration","src":"284:27:125","value":{"arguments":[{"name":"offset","nativeSrc":"304:6:125","nodeType":"YulIdentifier","src":"304:6:125"}],"functionName":{"name":"mload","nativeSrc":"298:5:125","nodeType":"YulIdentifier","src":"298:5:125"},"nativeSrc":"298:13:125","nodeType":"YulFunctionCall","src":"298:13:125"},"variables":[{"name":"length","nativeSrc":"288:6:125","nodeType":"YulTypedName","src":"288:6:125","type":""}]},{"body":{"nativeSrc":"354:22:125","nodeType":"YulBlock","src":"354:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"356:16:125","nodeType":"YulIdentifier","src":"356:16:125"},"nativeSrc":"356:18:125","nodeType":"YulFunctionCall","src":"356:18:125"},"nativeSrc":"356:18:125","nodeType":"YulExpressionStatement","src":"356:18:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"326:6:125","nodeType":"YulIdentifier","src":"326:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"342:2:125","nodeType":"YulLiteral","src":"342:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"346:1:125","nodeType":"YulLiteral","src":"346:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"338:3:125","nodeType":"YulIdentifier","src":"338:3:125"},"nativeSrc":"338:10:125","nodeType":"YulFunctionCall","src":"338:10:125"},{"kind":"number","nativeSrc":"350:1:125","nodeType":"YulLiteral","src":"350:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"334:3:125","nodeType":"YulIdentifier","src":"334:3:125"},"nativeSrc":"334:18:125","nodeType":"YulFunctionCall","src":"334:18:125"}],"functionName":{"name":"gt","nativeSrc":"323:2:125","nodeType":"YulIdentifier","src":"323:2:125"},"nativeSrc":"323:30:125","nodeType":"YulFunctionCall","src":"323:30:125"},"nativeSrc":"320:56:125","nodeType":"YulIf","src":"320:56:125"},{"nativeSrc":"385:23:125","nodeType":"YulVariableDeclaration","src":"385:23:125","value":{"arguments":[{"kind":"number","nativeSrc":"405:2:125","nodeType":"YulLiteral","src":"405:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"399:5:125","nodeType":"YulIdentifier","src":"399:5:125"},"nativeSrc":"399:9:125","nodeType":"YulFunctionCall","src":"399:9:125"},"variables":[{"name":"memPtr","nativeSrc":"389:6:125","nodeType":"YulTypedName","src":"389:6:125","type":""}]},{"nativeSrc":"417:85:125","nodeType":"YulVariableDeclaration","src":"417:85:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"439:6:125","nodeType":"YulIdentifier","src":"439:6:125"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"463:6:125","nodeType":"YulIdentifier","src":"463:6:125"},{"kind":"number","nativeSrc":"471:4:125","nodeType":"YulLiteral","src":"471:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"459:3:125","nodeType":"YulIdentifier","src":"459:3:125"},"nativeSrc":"459:17:125","nodeType":"YulFunctionCall","src":"459:17:125"},{"arguments":[{"kind":"number","nativeSrc":"482:2:125","nodeType":"YulLiteral","src":"482:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"478:3:125","nodeType":"YulIdentifier","src":"478:3:125"},"nativeSrc":"478:7:125","nodeType":"YulFunctionCall","src":"478:7:125"}],"functionName":{"name":"and","nativeSrc":"455:3:125","nodeType":"YulIdentifier","src":"455:3:125"},"nativeSrc":"455:31:125","nodeType":"YulFunctionCall","src":"455:31:125"},{"kind":"number","nativeSrc":"488:2:125","nodeType":"YulLiteral","src":"488:2:125","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"451:3:125","nodeType":"YulIdentifier","src":"451:3:125"},"nativeSrc":"451:40:125","nodeType":"YulFunctionCall","src":"451:40:125"},{"arguments":[{"kind":"number","nativeSrc":"497:2:125","nodeType":"YulLiteral","src":"497:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"493:3:125","nodeType":"YulIdentifier","src":"493:3:125"},"nativeSrc":"493:7:125","nodeType":"YulFunctionCall","src":"493:7:125"}],"functionName":{"name":"and","nativeSrc":"447:3:125","nodeType":"YulIdentifier","src":"447:3:125"},"nativeSrc":"447:54:125","nodeType":"YulFunctionCall","src":"447:54:125"}],"functionName":{"name":"add","nativeSrc":"435:3:125","nodeType":"YulIdentifier","src":"435:3:125"},"nativeSrc":"435:67:125","nodeType":"YulFunctionCall","src":"435:67:125"},"variables":[{"name":"newFreePtr","nativeSrc":"421:10:125","nodeType":"YulTypedName","src":"421:10:125","type":""}]},{"body":{"nativeSrc":"577:22:125","nodeType":"YulBlock","src":"577:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"579:16:125","nodeType":"YulIdentifier","src":"579:16:125"},"nativeSrc":"579:18:125","nodeType":"YulFunctionCall","src":"579:18:125"},"nativeSrc":"579:18:125","nodeType":"YulExpressionStatement","src":"579:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"520:10:125","nodeType":"YulIdentifier","src":"520:10:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"540:2:125","nodeType":"YulLiteral","src":"540:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"544:1:125","nodeType":"YulLiteral","src":"544:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"536:3:125","nodeType":"YulIdentifier","src":"536:3:125"},"nativeSrc":"536:10:125","nodeType":"YulFunctionCall","src":"536:10:125"},{"kind":"number","nativeSrc":"548:1:125","nodeType":"YulLiteral","src":"548:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"532:3:125","nodeType":"YulIdentifier","src":"532:3:125"},"nativeSrc":"532:18:125","nodeType":"YulFunctionCall","src":"532:18:125"}],"functionName":{"name":"gt","nativeSrc":"517:2:125","nodeType":"YulIdentifier","src":"517:2:125"},"nativeSrc":"517:34:125","nodeType":"YulFunctionCall","src":"517:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"556:10:125","nodeType":"YulIdentifier","src":"556:10:125"},{"name":"memPtr","nativeSrc":"568:6:125","nodeType":"YulIdentifier","src":"568:6:125"}],"functionName":{"name":"lt","nativeSrc":"553:2:125","nodeType":"YulIdentifier","src":"553:2:125"},"nativeSrc":"553:22:125","nodeType":"YulFunctionCall","src":"553:22:125"}],"functionName":{"name":"or","nativeSrc":"514:2:125","nodeType":"YulIdentifier","src":"514:2:125"},"nativeSrc":"514:62:125","nodeType":"YulFunctionCall","src":"514:62:125"},"nativeSrc":"511:88:125","nodeType":"YulIf","src":"511:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"615:2:125","nodeType":"YulLiteral","src":"615:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"619:10:125","nodeType":"YulIdentifier","src":"619:10:125"}],"functionName":{"name":"mstore","nativeSrc":"608:6:125","nodeType":"YulIdentifier","src":"608:6:125"},"nativeSrc":"608:22:125","nodeType":"YulFunctionCall","src":"608:22:125"},"nativeSrc":"608:22:125","nodeType":"YulExpressionStatement","src":"608:22:125"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"646:6:125","nodeType":"YulIdentifier","src":"646:6:125"},{"name":"length","nativeSrc":"654:6:125","nodeType":"YulIdentifier","src":"654:6:125"}],"functionName":{"name":"mstore","nativeSrc":"639:6:125","nodeType":"YulIdentifier","src":"639:6:125"},"nativeSrc":"639:22:125","nodeType":"YulFunctionCall","src":"639:22:125"},"nativeSrc":"639:22:125","nodeType":"YulExpressionStatement","src":"639:22:125"},{"body":{"nativeSrc":"713:16:125","nodeType":"YulBlock","src":"713:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"722:1:125","nodeType":"YulLiteral","src":"722:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"725:1:125","nodeType":"YulLiteral","src":"725:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"715:6:125","nodeType":"YulIdentifier","src":"715:6:125"},"nativeSrc":"715:12:125","nodeType":"YulFunctionCall","src":"715:12:125"},"nativeSrc":"715:12:125","nodeType":"YulExpressionStatement","src":"715:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"684:6:125","nodeType":"YulIdentifier","src":"684:6:125"},{"name":"length","nativeSrc":"692:6:125","nodeType":"YulIdentifier","src":"692:6:125"}],"functionName":{"name":"add","nativeSrc":"680:3:125","nodeType":"YulIdentifier","src":"680:3:125"},"nativeSrc":"680:19:125","nodeType":"YulFunctionCall","src":"680:19:125"},{"kind":"number","nativeSrc":"701:4:125","nodeType":"YulLiteral","src":"701:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"676:3:125","nodeType":"YulIdentifier","src":"676:3:125"},"nativeSrc":"676:30:125","nodeType":"YulFunctionCall","src":"676:30:125"},{"name":"end","nativeSrc":"708:3:125","nodeType":"YulIdentifier","src":"708:3:125"}],"functionName":{"name":"gt","nativeSrc":"673:2:125","nodeType":"YulIdentifier","src":"673:2:125"},"nativeSrc":"673:39:125","nodeType":"YulFunctionCall","src":"673:39:125"},"nativeSrc":"670:59:125","nodeType":"YulIf","src":"670:59:125"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"748:6:125","nodeType":"YulIdentifier","src":"748:6:125"},{"kind":"number","nativeSrc":"756:4:125","nodeType":"YulLiteral","src":"756:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"744:3:125","nodeType":"YulIdentifier","src":"744:3:125"},"nativeSrc":"744:17:125","nodeType":"YulFunctionCall","src":"744:17:125"},{"arguments":[{"name":"offset","nativeSrc":"767:6:125","nodeType":"YulIdentifier","src":"767:6:125"},{"kind":"number","nativeSrc":"775:4:125","nodeType":"YulLiteral","src":"775:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"763:3:125","nodeType":"YulIdentifier","src":"763:3:125"},"nativeSrc":"763:17:125","nodeType":"YulFunctionCall","src":"763:17:125"},{"name":"length","nativeSrc":"782:6:125","nodeType":"YulIdentifier","src":"782:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"738:5:125","nodeType":"YulIdentifier","src":"738:5:125"},"nativeSrc":"738:51:125","nodeType":"YulFunctionCall","src":"738:51:125"},"nativeSrc":"738:51:125","nodeType":"YulExpressionStatement","src":"738:51:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"813:6:125","nodeType":"YulIdentifier","src":"813:6:125"},{"name":"length","nativeSrc":"821:6:125","nodeType":"YulIdentifier","src":"821:6:125"}],"functionName":{"name":"add","nativeSrc":"809:3:125","nodeType":"YulIdentifier","src":"809:3:125"},"nativeSrc":"809:19:125","nodeType":"YulFunctionCall","src":"809:19:125"},{"kind":"number","nativeSrc":"830:4:125","nodeType":"YulLiteral","src":"830:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"805:3:125","nodeType":"YulIdentifier","src":"805:3:125"},"nativeSrc":"805:30:125","nodeType":"YulFunctionCall","src":"805:30:125"},{"kind":"number","nativeSrc":"837:1:125","nodeType":"YulLiteral","src":"837:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"798:6:125","nodeType":"YulIdentifier","src":"798:6:125"},"nativeSrc":"798:41:125","nodeType":"YulFunctionCall","src":"798:41:125"},"nativeSrc":"798:41:125","nodeType":"YulExpressionStatement","src":"798:41:125"},{"nativeSrc":"848:15:125","nodeType":"YulAssignment","src":"848:15:125","value":{"name":"memPtr","nativeSrc":"857:6:125","nodeType":"YulIdentifier","src":"857:6:125"},"variableNames":[{"name":"array","nativeSrc":"848:5:125","nodeType":"YulIdentifier","src":"848:5:125"}]}]},"name":"abi_decode_string_fromMemory","nativeSrc":"146:723:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"184:6:125","nodeType":"YulTypedName","src":"184:6:125","type":""},{"name":"end","nativeSrc":"192:3:125","nodeType":"YulTypedName","src":"192:3:125","type":""}],"returnVariables":[{"name":"array","nativeSrc":"200:5:125","nodeType":"YulTypedName","src":"200:5:125","type":""}],"src":"146:723:125"},{"body":{"nativeSrc":"1033:589:125","nodeType":"YulBlock","src":"1033:589:125","statements":[{"body":{"nativeSrc":"1079:16:125","nodeType":"YulBlock","src":"1079:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1088:1:125","nodeType":"YulLiteral","src":"1088:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1091:1:125","nodeType":"YulLiteral","src":"1091:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1081:6:125","nodeType":"YulIdentifier","src":"1081:6:125"},"nativeSrc":"1081:12:125","nodeType":"YulFunctionCall","src":"1081:12:125"},"nativeSrc":"1081:12:125","nodeType":"YulExpressionStatement","src":"1081:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1054:7:125","nodeType":"YulIdentifier","src":"1054:7:125"},{"name":"headStart","nativeSrc":"1063:9:125","nodeType":"YulIdentifier","src":"1063:9:125"}],"functionName":{"name":"sub","nativeSrc":"1050:3:125","nodeType":"YulIdentifier","src":"1050:3:125"},"nativeSrc":"1050:23:125","nodeType":"YulFunctionCall","src":"1050:23:125"},{"kind":"number","nativeSrc":"1075:2:125","nodeType":"YulLiteral","src":"1075:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"1046:3:125","nodeType":"YulIdentifier","src":"1046:3:125"},"nativeSrc":"1046:32:125","nodeType":"YulFunctionCall","src":"1046:32:125"},"nativeSrc":"1043:52:125","nodeType":"YulIf","src":"1043:52:125"},{"nativeSrc":"1104:30:125","nodeType":"YulVariableDeclaration","src":"1104:30:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1124:9:125","nodeType":"YulIdentifier","src":"1124:9:125"}],"functionName":{"name":"mload","nativeSrc":"1118:5:125","nodeType":"YulIdentifier","src":"1118:5:125"},"nativeSrc":"1118:16:125","nodeType":"YulFunctionCall","src":"1118:16:125"},"variables":[{"name":"offset","nativeSrc":"1108:6:125","nodeType":"YulTypedName","src":"1108:6:125","type":""}]},{"body":{"nativeSrc":"1177:16:125","nodeType":"YulBlock","src":"1177:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1186:1:125","nodeType":"YulLiteral","src":"1186:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1189:1:125","nodeType":"YulLiteral","src":"1189:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1179:6:125","nodeType":"YulIdentifier","src":"1179:6:125"},"nativeSrc":"1179:12:125","nodeType":"YulFunctionCall","src":"1179:12:125"},"nativeSrc":"1179:12:125","nodeType":"YulExpressionStatement","src":"1179:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1149:6:125","nodeType":"YulIdentifier","src":"1149:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1165:2:125","nodeType":"YulLiteral","src":"1165:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"1169:1:125","nodeType":"YulLiteral","src":"1169:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1161:3:125","nodeType":"YulIdentifier","src":"1161:3:125"},"nativeSrc":"1161:10:125","nodeType":"YulFunctionCall","src":"1161:10:125"},{"kind":"number","nativeSrc":"1173:1:125","nodeType":"YulLiteral","src":"1173:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1157:3:125","nodeType":"YulIdentifier","src":"1157:3:125"},"nativeSrc":"1157:18:125","nodeType":"YulFunctionCall","src":"1157:18:125"}],"functionName":{"name":"gt","nativeSrc":"1146:2:125","nodeType":"YulIdentifier","src":"1146:2:125"},"nativeSrc":"1146:30:125","nodeType":"YulFunctionCall","src":"1146:30:125"},"nativeSrc":"1143:50:125","nodeType":"YulIf","src":"1143:50:125"},{"nativeSrc":"1202:71:125","nodeType":"YulAssignment","src":"1202:71:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1245:9:125","nodeType":"YulIdentifier","src":"1245:9:125"},{"name":"offset","nativeSrc":"1256:6:125","nodeType":"YulIdentifier","src":"1256:6:125"}],"functionName":{"name":"add","nativeSrc":"1241:3:125","nodeType":"YulIdentifier","src":"1241:3:125"},"nativeSrc":"1241:22:125","nodeType":"YulFunctionCall","src":"1241:22:125"},{"name":"dataEnd","nativeSrc":"1265:7:125","nodeType":"YulIdentifier","src":"1265:7:125"}],"functionName":{"name":"abi_decode_string_fromMemory","nativeSrc":"1212:28:125","nodeType":"YulIdentifier","src":"1212:28:125"},"nativeSrc":"1212:61:125","nodeType":"YulFunctionCall","src":"1212:61:125"},"variableNames":[{"name":"value0","nativeSrc":"1202:6:125","nodeType":"YulIdentifier","src":"1202:6:125"}]},{"nativeSrc":"1282:41:125","nodeType":"YulVariableDeclaration","src":"1282:41:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1308:9:125","nodeType":"YulIdentifier","src":"1308:9:125"},{"kind":"number","nativeSrc":"1319:2:125","nodeType":"YulLiteral","src":"1319:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1304:3:125","nodeType":"YulIdentifier","src":"1304:3:125"},"nativeSrc":"1304:18:125","nodeType":"YulFunctionCall","src":"1304:18:125"}],"functionName":{"name":"mload","nativeSrc":"1298:5:125","nodeType":"YulIdentifier","src":"1298:5:125"},"nativeSrc":"1298:25:125","nodeType":"YulFunctionCall","src":"1298:25:125"},"variables":[{"name":"offset_1","nativeSrc":"1286:8:125","nodeType":"YulTypedName","src":"1286:8:125","type":""}]},{"body":{"nativeSrc":"1368:16:125","nodeType":"YulBlock","src":"1368:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1377:1:125","nodeType":"YulLiteral","src":"1377:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1380:1:125","nodeType":"YulLiteral","src":"1380:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1370:6:125","nodeType":"YulIdentifier","src":"1370:6:125"},"nativeSrc":"1370:12:125","nodeType":"YulFunctionCall","src":"1370:12:125"},"nativeSrc":"1370:12:125","nodeType":"YulExpressionStatement","src":"1370:12:125"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"1338:8:125","nodeType":"YulIdentifier","src":"1338:8:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1356:2:125","nodeType":"YulLiteral","src":"1356:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"1360:1:125","nodeType":"YulLiteral","src":"1360:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1352:3:125","nodeType":"YulIdentifier","src":"1352:3:125"},"nativeSrc":"1352:10:125","nodeType":"YulFunctionCall","src":"1352:10:125"},{"kind":"number","nativeSrc":"1364:1:125","nodeType":"YulLiteral","src":"1364:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1348:3:125","nodeType":"YulIdentifier","src":"1348:3:125"},"nativeSrc":"1348:18:125","nodeType":"YulFunctionCall","src":"1348:18:125"}],"functionName":{"name":"gt","nativeSrc":"1335:2:125","nodeType":"YulIdentifier","src":"1335:2:125"},"nativeSrc":"1335:32:125","nodeType":"YulFunctionCall","src":"1335:32:125"},"nativeSrc":"1332:52:125","nodeType":"YulIf","src":"1332:52:125"},{"nativeSrc":"1393:73:125","nodeType":"YulAssignment","src":"1393:73:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1436:9:125","nodeType":"YulIdentifier","src":"1436:9:125"},{"name":"offset_1","nativeSrc":"1447:8:125","nodeType":"YulIdentifier","src":"1447:8:125"}],"functionName":{"name":"add","nativeSrc":"1432:3:125","nodeType":"YulIdentifier","src":"1432:3:125"},"nativeSrc":"1432:24:125","nodeType":"YulFunctionCall","src":"1432:24:125"},{"name":"dataEnd","nativeSrc":"1458:7:125","nodeType":"YulIdentifier","src":"1458:7:125"}],"functionName":{"name":"abi_decode_string_fromMemory","nativeSrc":"1403:28:125","nodeType":"YulIdentifier","src":"1403:28:125"},"nativeSrc":"1403:63:125","nodeType":"YulFunctionCall","src":"1403:63:125"},"variableNames":[{"name":"value1","nativeSrc":"1393:6:125","nodeType":"YulIdentifier","src":"1393:6:125"}]},{"nativeSrc":"1475:38:125","nodeType":"YulVariableDeclaration","src":"1475:38:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1498:9:125","nodeType":"YulIdentifier","src":"1498:9:125"},{"kind":"number","nativeSrc":"1509:2:125","nodeType":"YulLiteral","src":"1509:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1494:3:125","nodeType":"YulIdentifier","src":"1494:3:125"},"nativeSrc":"1494:18:125","nodeType":"YulFunctionCall","src":"1494:18:125"}],"functionName":{"name":"mload","nativeSrc":"1488:5:125","nodeType":"YulIdentifier","src":"1488:5:125"},"nativeSrc":"1488:25:125","nodeType":"YulFunctionCall","src":"1488:25:125"},"variables":[{"name":"value","nativeSrc":"1479:5:125","nodeType":"YulTypedName","src":"1479:5:125","type":""}]},{"body":{"nativeSrc":"1576:16:125","nodeType":"YulBlock","src":"1576:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1585:1:125","nodeType":"YulLiteral","src":"1585:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1588:1:125","nodeType":"YulLiteral","src":"1588:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1578:6:125","nodeType":"YulIdentifier","src":"1578:6:125"},"nativeSrc":"1578:12:125","nodeType":"YulFunctionCall","src":"1578:12:125"},"nativeSrc":"1578:12:125","nodeType":"YulExpressionStatement","src":"1578:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1535:5:125","nodeType":"YulIdentifier","src":"1535:5:125"},{"arguments":[{"name":"value","nativeSrc":"1546:5:125","nodeType":"YulIdentifier","src":"1546:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1561:3:125","nodeType":"YulLiteral","src":"1561:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"1566:1:125","nodeType":"YulLiteral","src":"1566:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1557:3:125","nodeType":"YulIdentifier","src":"1557:3:125"},"nativeSrc":"1557:11:125","nodeType":"YulFunctionCall","src":"1557:11:125"},{"kind":"number","nativeSrc":"1570:1:125","nodeType":"YulLiteral","src":"1570:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1553:3:125","nodeType":"YulIdentifier","src":"1553:3:125"},"nativeSrc":"1553:19:125","nodeType":"YulFunctionCall","src":"1553:19:125"}],"functionName":{"name":"and","nativeSrc":"1542:3:125","nodeType":"YulIdentifier","src":"1542:3:125"},"nativeSrc":"1542:31:125","nodeType":"YulFunctionCall","src":"1542:31:125"}],"functionName":{"name":"eq","nativeSrc":"1532:2:125","nodeType":"YulIdentifier","src":"1532:2:125"},"nativeSrc":"1532:42:125","nodeType":"YulFunctionCall","src":"1532:42:125"}],"functionName":{"name":"iszero","nativeSrc":"1525:6:125","nodeType":"YulIdentifier","src":"1525:6:125"},"nativeSrc":"1525:50:125","nodeType":"YulFunctionCall","src":"1525:50:125"},"nativeSrc":"1522:70:125","nodeType":"YulIf","src":"1522:70:125"},{"nativeSrc":"1601:15:125","nodeType":"YulAssignment","src":"1601:15:125","value":{"name":"value","nativeSrc":"1611:5:125","nodeType":"YulIdentifier","src":"1611:5:125"},"variableNames":[{"name":"value2","nativeSrc":"1601:6:125","nodeType":"YulIdentifier","src":"1601:6:125"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC20Metadata_$24925_fromMemory","nativeSrc":"874:748:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"983:9:125","nodeType":"YulTypedName","src":"983:9:125","type":""},{"name":"dataEnd","nativeSrc":"994:7:125","nodeType":"YulTypedName","src":"994:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1006:6:125","nodeType":"YulTypedName","src":"1006:6:125","type":""},{"name":"value1","nativeSrc":"1014:6:125","nodeType":"YulTypedName","src":"1014:6:125","type":""},{"name":"value2","nativeSrc":"1022:6:125","nodeType":"YulTypedName","src":"1022:6:125","type":""}],"src":"874:748:125"},{"body":{"nativeSrc":"1682:325:125","nodeType":"YulBlock","src":"1682:325:125","statements":[{"nativeSrc":"1692:22:125","nodeType":"YulAssignment","src":"1692:22:125","value":{"arguments":[{"kind":"number","nativeSrc":"1706:1:125","nodeType":"YulLiteral","src":"1706:1:125","type":"","value":"1"},{"name":"data","nativeSrc":"1709:4:125","nodeType":"YulIdentifier","src":"1709:4:125"}],"functionName":{"name":"shr","nativeSrc":"1702:3:125","nodeType":"YulIdentifier","src":"1702:3:125"},"nativeSrc":"1702:12:125","nodeType":"YulFunctionCall","src":"1702:12:125"},"variableNames":[{"name":"length","nativeSrc":"1692:6:125","nodeType":"YulIdentifier","src":"1692:6:125"}]},{"nativeSrc":"1723:38:125","nodeType":"YulVariableDeclaration","src":"1723:38:125","value":{"arguments":[{"name":"data","nativeSrc":"1753:4:125","nodeType":"YulIdentifier","src":"1753:4:125"},{"kind":"number","nativeSrc":"1759:1:125","nodeType":"YulLiteral","src":"1759:1:125","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"1749:3:125","nodeType":"YulIdentifier","src":"1749:3:125"},"nativeSrc":"1749:12:125","nodeType":"YulFunctionCall","src":"1749:12:125"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"1727:18:125","nodeType":"YulTypedName","src":"1727:18:125","type":""}]},{"body":{"nativeSrc":"1800:31:125","nodeType":"YulBlock","src":"1800:31:125","statements":[{"nativeSrc":"1802:27:125","nodeType":"YulAssignment","src":"1802:27:125","value":{"arguments":[{"name":"length","nativeSrc":"1816:6:125","nodeType":"YulIdentifier","src":"1816:6:125"},{"kind":"number","nativeSrc":"1824:4:125","nodeType":"YulLiteral","src":"1824:4:125","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"1812:3:125","nodeType":"YulIdentifier","src":"1812:3:125"},"nativeSrc":"1812:17:125","nodeType":"YulFunctionCall","src":"1812:17:125"},"variableNames":[{"name":"length","nativeSrc":"1802:6:125","nodeType":"YulIdentifier","src":"1802:6:125"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"1780:18:125","nodeType":"YulIdentifier","src":"1780:18:125"}],"functionName":{"name":"iszero","nativeSrc":"1773:6:125","nodeType":"YulIdentifier","src":"1773:6:125"},"nativeSrc":"1773:26:125","nodeType":"YulFunctionCall","src":"1773:26:125"},"nativeSrc":"1770:61:125","nodeType":"YulIf","src":"1770:61:125"},{"body":{"nativeSrc":"1890:111:125","nodeType":"YulBlock","src":"1890:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1911:1:125","nodeType":"YulLiteral","src":"1911:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1918:3:125","nodeType":"YulLiteral","src":"1918:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"1923:10:125","nodeType":"YulLiteral","src":"1923:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1914:3:125","nodeType":"YulIdentifier","src":"1914:3:125"},"nativeSrc":"1914:20:125","nodeType":"YulFunctionCall","src":"1914:20:125"}],"functionName":{"name":"mstore","nativeSrc":"1904:6:125","nodeType":"YulIdentifier","src":"1904:6:125"},"nativeSrc":"1904:31:125","nodeType":"YulFunctionCall","src":"1904:31:125"},"nativeSrc":"1904:31:125","nodeType":"YulExpressionStatement","src":"1904:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1955:1:125","nodeType":"YulLiteral","src":"1955:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"1958:4:125","nodeType":"YulLiteral","src":"1958:4:125","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"1948:6:125","nodeType":"YulIdentifier","src":"1948:6:125"},"nativeSrc":"1948:15:125","nodeType":"YulFunctionCall","src":"1948:15:125"},"nativeSrc":"1948:15:125","nodeType":"YulExpressionStatement","src":"1948:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1983:1:125","nodeType":"YulLiteral","src":"1983:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1986:4:125","nodeType":"YulLiteral","src":"1986:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1976:6:125","nodeType":"YulIdentifier","src":"1976:6:125"},"nativeSrc":"1976:15:125","nodeType":"YulFunctionCall","src":"1976:15:125"},"nativeSrc":"1976:15:125","nodeType":"YulExpressionStatement","src":"1976:15:125"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"1846:18:125","nodeType":"YulIdentifier","src":"1846:18:125"},{"arguments":[{"name":"length","nativeSrc":"1869:6:125","nodeType":"YulIdentifier","src":"1869:6:125"},{"kind":"number","nativeSrc":"1877:2:125","nodeType":"YulLiteral","src":"1877:2:125","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"1866:2:125","nodeType":"YulIdentifier","src":"1866:2:125"},"nativeSrc":"1866:14:125","nodeType":"YulFunctionCall","src":"1866:14:125"}],"functionName":{"name":"eq","nativeSrc":"1843:2:125","nodeType":"YulIdentifier","src":"1843:2:125"},"nativeSrc":"1843:38:125","nodeType":"YulFunctionCall","src":"1843:38:125"},"nativeSrc":"1840:161:125","nodeType":"YulIf","src":"1840:161:125"}]},"name":"extract_byte_array_length","nativeSrc":"1627:380:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"1662:4:125","nodeType":"YulTypedName","src":"1662:4:125","type":""}],"returnVariables":[{"name":"length","nativeSrc":"1671:6:125","nodeType":"YulTypedName","src":"1671:6:125","type":""}],"src":"1627:380:125"},{"body":{"nativeSrc":"2068:65:125","nodeType":"YulBlock","src":"2068:65:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2085:1:125","nodeType":"YulLiteral","src":"2085:1:125","type":"","value":"0"},{"name":"ptr","nativeSrc":"2088:3:125","nodeType":"YulIdentifier","src":"2088:3:125"}],"functionName":{"name":"mstore","nativeSrc":"2078:6:125","nodeType":"YulIdentifier","src":"2078:6:125"},"nativeSrc":"2078:14:125","nodeType":"YulFunctionCall","src":"2078:14:125"},"nativeSrc":"2078:14:125","nodeType":"YulExpressionStatement","src":"2078:14:125"},{"nativeSrc":"2101:26:125","nodeType":"YulAssignment","src":"2101:26:125","value":{"arguments":[{"kind":"number","nativeSrc":"2119:1:125","nodeType":"YulLiteral","src":"2119:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2122:4:125","nodeType":"YulLiteral","src":"2122:4:125","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2109:9:125","nodeType":"YulIdentifier","src":"2109:9:125"},"nativeSrc":"2109:18:125","nodeType":"YulFunctionCall","src":"2109:18:125"},"variableNames":[{"name":"data","nativeSrc":"2101:4:125","nodeType":"YulIdentifier","src":"2101:4:125"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"2012:121:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"2051:3:125","nodeType":"YulTypedName","src":"2051:3:125","type":""}],"returnVariables":[{"name":"data","nativeSrc":"2059:4:125","nodeType":"YulTypedName","src":"2059:4:125","type":""}],"src":"2012:121:125"},{"body":{"nativeSrc":"2219:437:125","nodeType":"YulBlock","src":"2219:437:125","statements":[{"body":{"nativeSrc":"2252:398:125","nodeType":"YulBlock","src":"2252:398:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2273:1:125","nodeType":"YulLiteral","src":"2273:1:125","type":"","value":"0"},{"name":"array","nativeSrc":"2276:5:125","nodeType":"YulIdentifier","src":"2276:5:125"}],"functionName":{"name":"mstore","nativeSrc":"2266:6:125","nodeType":"YulIdentifier","src":"2266:6:125"},"nativeSrc":"2266:16:125","nodeType":"YulFunctionCall","src":"2266:16:125"},"nativeSrc":"2266:16:125","nodeType":"YulExpressionStatement","src":"2266:16:125"},{"nativeSrc":"2295:30:125","nodeType":"YulVariableDeclaration","src":"2295:30:125","value":{"arguments":[{"kind":"number","nativeSrc":"2317:1:125","nodeType":"YulLiteral","src":"2317:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2320:4:125","nodeType":"YulLiteral","src":"2320:4:125","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2307:9:125","nodeType":"YulIdentifier","src":"2307:9:125"},"nativeSrc":"2307:18:125","nodeType":"YulFunctionCall","src":"2307:18:125"},"variables":[{"name":"data","nativeSrc":"2299:4:125","nodeType":"YulTypedName","src":"2299:4:125","type":""}]},{"nativeSrc":"2338:57:125","nodeType":"YulVariableDeclaration","src":"2338:57:125","value":{"arguments":[{"name":"data","nativeSrc":"2361:4:125","nodeType":"YulIdentifier","src":"2361:4:125"},{"arguments":[{"kind":"number","nativeSrc":"2371:1:125","nodeType":"YulLiteral","src":"2371:1:125","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"2378:10:125","nodeType":"YulIdentifier","src":"2378:10:125"},{"kind":"number","nativeSrc":"2390:2:125","nodeType":"YulLiteral","src":"2390:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2374:3:125","nodeType":"YulIdentifier","src":"2374:3:125"},"nativeSrc":"2374:19:125","nodeType":"YulFunctionCall","src":"2374:19:125"}],"functionName":{"name":"shr","nativeSrc":"2367:3:125","nodeType":"YulIdentifier","src":"2367:3:125"},"nativeSrc":"2367:27:125","nodeType":"YulFunctionCall","src":"2367:27:125"}],"functionName":{"name":"add","nativeSrc":"2357:3:125","nodeType":"YulIdentifier","src":"2357:3:125"},"nativeSrc":"2357:38:125","nodeType":"YulFunctionCall","src":"2357:38:125"},"variables":[{"name":"deleteStart","nativeSrc":"2342:11:125","nodeType":"YulTypedName","src":"2342:11:125","type":""}]},{"body":{"nativeSrc":"2432:23:125","nodeType":"YulBlock","src":"2432:23:125","statements":[{"nativeSrc":"2434:19:125","nodeType":"YulAssignment","src":"2434:19:125","value":{"name":"data","nativeSrc":"2449:4:125","nodeType":"YulIdentifier","src":"2449:4:125"},"variableNames":[{"name":"deleteStart","nativeSrc":"2434:11:125","nodeType":"YulIdentifier","src":"2434:11:125"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"2414:10:125","nodeType":"YulIdentifier","src":"2414:10:125"},{"kind":"number","nativeSrc":"2426:4:125","nodeType":"YulLiteral","src":"2426:4:125","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"2411:2:125","nodeType":"YulIdentifier","src":"2411:2:125"},"nativeSrc":"2411:20:125","nodeType":"YulFunctionCall","src":"2411:20:125"},"nativeSrc":"2408:47:125","nodeType":"YulIf","src":"2408:47:125"},{"nativeSrc":"2468:41:125","nodeType":"YulVariableDeclaration","src":"2468:41:125","value":{"arguments":[{"name":"data","nativeSrc":"2482:4:125","nodeType":"YulIdentifier","src":"2482:4:125"},{"arguments":[{"kind":"number","nativeSrc":"2492:1:125","nodeType":"YulLiteral","src":"2492:1:125","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"2499:3:125","nodeType":"YulIdentifier","src":"2499:3:125"},{"kind":"number","nativeSrc":"2504:2:125","nodeType":"YulLiteral","src":"2504:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2495:3:125","nodeType":"YulIdentifier","src":"2495:3:125"},"nativeSrc":"2495:12:125","nodeType":"YulFunctionCall","src":"2495:12:125"}],"functionName":{"name":"shr","nativeSrc":"2488:3:125","nodeType":"YulIdentifier","src":"2488:3:125"},"nativeSrc":"2488:20:125","nodeType":"YulFunctionCall","src":"2488:20:125"}],"functionName":{"name":"add","nativeSrc":"2478:3:125","nodeType":"YulIdentifier","src":"2478:3:125"},"nativeSrc":"2478:31:125","nodeType":"YulFunctionCall","src":"2478:31:125"},"variables":[{"name":"_1","nativeSrc":"2472:2:125","nodeType":"YulTypedName","src":"2472:2:125","type":""}]},{"nativeSrc":"2522:24:125","nodeType":"YulVariableDeclaration","src":"2522:24:125","value":{"name":"deleteStart","nativeSrc":"2535:11:125","nodeType":"YulIdentifier","src":"2535:11:125"},"variables":[{"name":"start","nativeSrc":"2526:5:125","nodeType":"YulTypedName","src":"2526:5:125","type":""}]},{"body":{"nativeSrc":"2620:20:125","nodeType":"YulBlock","src":"2620:20:125","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"2629:5:125","nodeType":"YulIdentifier","src":"2629:5:125"},{"kind":"number","nativeSrc":"2636:1:125","nodeType":"YulLiteral","src":"2636:1:125","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"2622:6:125","nodeType":"YulIdentifier","src":"2622:6:125"},"nativeSrc":"2622:16:125","nodeType":"YulFunctionCall","src":"2622:16:125"},"nativeSrc":"2622:16:125","nodeType":"YulExpressionStatement","src":"2622:16:125"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"2570:5:125","nodeType":"YulIdentifier","src":"2570:5:125"},{"name":"_1","nativeSrc":"2577:2:125","nodeType":"YulIdentifier","src":"2577:2:125"}],"functionName":{"name":"lt","nativeSrc":"2567:2:125","nodeType":"YulIdentifier","src":"2567:2:125"},"nativeSrc":"2567:13:125","nodeType":"YulFunctionCall","src":"2567:13:125"},"nativeSrc":"2559:81:125","nodeType":"YulForLoop","post":{"nativeSrc":"2581:26:125","nodeType":"YulBlock","src":"2581:26:125","statements":[{"nativeSrc":"2583:22:125","nodeType":"YulAssignment","src":"2583:22:125","value":{"arguments":[{"name":"start","nativeSrc":"2596:5:125","nodeType":"YulIdentifier","src":"2596:5:125"},{"kind":"number","nativeSrc":"2603:1:125","nodeType":"YulLiteral","src":"2603:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"2592:3:125","nodeType":"YulIdentifier","src":"2592:3:125"},"nativeSrc":"2592:13:125","nodeType":"YulFunctionCall","src":"2592:13:125"},"variableNames":[{"name":"start","nativeSrc":"2583:5:125","nodeType":"YulIdentifier","src":"2583:5:125"}]}]},"pre":{"nativeSrc":"2563:3:125","nodeType":"YulBlock","src":"2563:3:125","statements":[]},"src":"2559:81:125"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"2235:3:125","nodeType":"YulIdentifier","src":"2235:3:125"},{"kind":"number","nativeSrc":"2240:2:125","nodeType":"YulLiteral","src":"2240:2:125","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"2232:2:125","nodeType":"YulIdentifier","src":"2232:2:125"},"nativeSrc":"2232:11:125","nodeType":"YulFunctionCall","src":"2232:11:125"},"nativeSrc":"2229:421:125","nodeType":"YulIf","src":"2229:421:125"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"2138:518:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"2191:5:125","nodeType":"YulTypedName","src":"2191:5:125","type":""},{"name":"len","nativeSrc":"2198:3:125","nodeType":"YulTypedName","src":"2198:3:125","type":""},{"name":"startIndex","nativeSrc":"2203:10:125","nodeType":"YulTypedName","src":"2203:10:125","type":""}],"src":"2138:518:125"},{"body":{"nativeSrc":"2746:81:125","nodeType":"YulBlock","src":"2746:81:125","statements":[{"nativeSrc":"2756:65:125","nodeType":"YulAssignment","src":"2756:65:125","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"2771:4:125","nodeType":"YulIdentifier","src":"2771:4:125"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2789:1:125","nodeType":"YulLiteral","src":"2789:1:125","type":"","value":"3"},{"name":"len","nativeSrc":"2792:3:125","nodeType":"YulIdentifier","src":"2792:3:125"}],"functionName":{"name":"shl","nativeSrc":"2785:3:125","nodeType":"YulIdentifier","src":"2785:3:125"},"nativeSrc":"2785:11:125","nodeType":"YulFunctionCall","src":"2785:11:125"},{"arguments":[{"kind":"number","nativeSrc":"2802:1:125","nodeType":"YulLiteral","src":"2802:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2798:3:125","nodeType":"YulIdentifier","src":"2798:3:125"},"nativeSrc":"2798:6:125","nodeType":"YulFunctionCall","src":"2798:6:125"}],"functionName":{"name":"shr","nativeSrc":"2781:3:125","nodeType":"YulIdentifier","src":"2781:3:125"},"nativeSrc":"2781:24:125","nodeType":"YulFunctionCall","src":"2781:24:125"}],"functionName":{"name":"not","nativeSrc":"2777:3:125","nodeType":"YulIdentifier","src":"2777:3:125"},"nativeSrc":"2777:29:125","nodeType":"YulFunctionCall","src":"2777:29:125"}],"functionName":{"name":"and","nativeSrc":"2767:3:125","nodeType":"YulIdentifier","src":"2767:3:125"},"nativeSrc":"2767:40:125","nodeType":"YulFunctionCall","src":"2767:40:125"},{"arguments":[{"kind":"number","nativeSrc":"2813:1:125","nodeType":"YulLiteral","src":"2813:1:125","type":"","value":"1"},{"name":"len","nativeSrc":"2816:3:125","nodeType":"YulIdentifier","src":"2816:3:125"}],"functionName":{"name":"shl","nativeSrc":"2809:3:125","nodeType":"YulIdentifier","src":"2809:3:125"},"nativeSrc":"2809:11:125","nodeType":"YulFunctionCall","src":"2809:11:125"}],"functionName":{"name":"or","nativeSrc":"2764:2:125","nodeType":"YulIdentifier","src":"2764:2:125"},"nativeSrc":"2764:57:125","nodeType":"YulFunctionCall","src":"2764:57:125"},"variableNames":[{"name":"used","nativeSrc":"2756:4:125","nodeType":"YulIdentifier","src":"2756:4:125"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"2661:166:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"2723:4:125","nodeType":"YulTypedName","src":"2723:4:125","type":""},{"name":"len","nativeSrc":"2729:3:125","nodeType":"YulTypedName","src":"2729:3:125","type":""}],"returnVariables":[{"name":"used","nativeSrc":"2737:4:125","nodeType":"YulTypedName","src":"2737:4:125","type":""}],"src":"2661:166:125"},{"body":{"nativeSrc":"2928:1203:125","nodeType":"YulBlock","src":"2928:1203:125","statements":[{"nativeSrc":"2938:24:125","nodeType":"YulVariableDeclaration","src":"2938:24:125","value":{"arguments":[{"name":"src","nativeSrc":"2958:3:125","nodeType":"YulIdentifier","src":"2958:3:125"}],"functionName":{"name":"mload","nativeSrc":"2952:5:125","nodeType":"YulIdentifier","src":"2952:5:125"},"nativeSrc":"2952:10:125","nodeType":"YulFunctionCall","src":"2952:10:125"},"variables":[{"name":"newLen","nativeSrc":"2942:6:125","nodeType":"YulTypedName","src":"2942:6:125","type":""}]},{"body":{"nativeSrc":"3005:22:125","nodeType":"YulBlock","src":"3005:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3007:16:125","nodeType":"YulIdentifier","src":"3007:16:125"},"nativeSrc":"3007:18:125","nodeType":"YulFunctionCall","src":"3007:18:125"},"nativeSrc":"3007:18:125","nodeType":"YulExpressionStatement","src":"3007:18:125"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"2977:6:125","nodeType":"YulIdentifier","src":"2977:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2993:2:125","nodeType":"YulLiteral","src":"2993:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"2997:1:125","nodeType":"YulLiteral","src":"2997:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2989:3:125","nodeType":"YulIdentifier","src":"2989:3:125"},"nativeSrc":"2989:10:125","nodeType":"YulFunctionCall","src":"2989:10:125"},{"kind":"number","nativeSrc":"3001:1:125","nodeType":"YulLiteral","src":"3001:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2985:3:125","nodeType":"YulIdentifier","src":"2985:3:125"},"nativeSrc":"2985:18:125","nodeType":"YulFunctionCall","src":"2985:18:125"}],"functionName":{"name":"gt","nativeSrc":"2974:2:125","nodeType":"YulIdentifier","src":"2974:2:125"},"nativeSrc":"2974:30:125","nodeType":"YulFunctionCall","src":"2974:30:125"},"nativeSrc":"2971:56:125","nodeType":"YulIf","src":"2971:56:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"3080:4:125","nodeType":"YulIdentifier","src":"3080:4:125"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"3118:4:125","nodeType":"YulIdentifier","src":"3118:4:125"}],"functionName":{"name":"sload","nativeSrc":"3112:5:125","nodeType":"YulIdentifier","src":"3112:5:125"},"nativeSrc":"3112:11:125","nodeType":"YulFunctionCall","src":"3112:11:125"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"3086:25:125","nodeType":"YulIdentifier","src":"3086:25:125"},"nativeSrc":"3086:38:125","nodeType":"YulFunctionCall","src":"3086:38:125"},{"name":"newLen","nativeSrc":"3126:6:125","nodeType":"YulIdentifier","src":"3126:6:125"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"3036:43:125","nodeType":"YulIdentifier","src":"3036:43:125"},"nativeSrc":"3036:97:125","nodeType":"YulFunctionCall","src":"3036:97:125"},"nativeSrc":"3036:97:125","nodeType":"YulExpressionStatement","src":"3036:97:125"},{"nativeSrc":"3142:18:125","nodeType":"YulVariableDeclaration","src":"3142:18:125","value":{"kind":"number","nativeSrc":"3159:1:125","nodeType":"YulLiteral","src":"3159:1:125","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"3146:9:125","nodeType":"YulTypedName","src":"3146:9:125","type":""}]},{"nativeSrc":"3169:17:125","nodeType":"YulAssignment","src":"3169:17:125","value":{"kind":"number","nativeSrc":"3182:4:125","nodeType":"YulLiteral","src":"3182:4:125","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"3169:9:125","nodeType":"YulIdentifier","src":"3169:9:125"}]},{"cases":[{"body":{"nativeSrc":"3232:642:125","nodeType":"YulBlock","src":"3232:642:125","statements":[{"nativeSrc":"3246:35:125","nodeType":"YulVariableDeclaration","src":"3246:35:125","value":{"arguments":[{"name":"newLen","nativeSrc":"3265:6:125","nodeType":"YulIdentifier","src":"3265:6:125"},{"arguments":[{"kind":"number","nativeSrc":"3277:2:125","nodeType":"YulLiteral","src":"3277:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"3273:3:125","nodeType":"YulIdentifier","src":"3273:3:125"},"nativeSrc":"3273:7:125","nodeType":"YulFunctionCall","src":"3273:7:125"}],"functionName":{"name":"and","nativeSrc":"3261:3:125","nodeType":"YulIdentifier","src":"3261:3:125"},"nativeSrc":"3261:20:125","nodeType":"YulFunctionCall","src":"3261:20:125"},"variables":[{"name":"loopEnd","nativeSrc":"3250:7:125","nodeType":"YulTypedName","src":"3250:7:125","type":""}]},{"nativeSrc":"3294:49:125","nodeType":"YulVariableDeclaration","src":"3294:49:125","value":{"arguments":[{"name":"slot","nativeSrc":"3338:4:125","nodeType":"YulIdentifier","src":"3338:4:125"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"3308:29:125","nodeType":"YulIdentifier","src":"3308:29:125"},"nativeSrc":"3308:35:125","nodeType":"YulFunctionCall","src":"3308:35:125"},"variables":[{"name":"dstPtr","nativeSrc":"3298:6:125","nodeType":"YulTypedName","src":"3298:6:125","type":""}]},{"nativeSrc":"3356:10:125","nodeType":"YulVariableDeclaration","src":"3356:10:125","value":{"kind":"number","nativeSrc":"3365:1:125","nodeType":"YulLiteral","src":"3365:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"3360:1:125","nodeType":"YulTypedName","src":"3360:1:125","type":""}]},{"body":{"nativeSrc":"3436:165:125","nodeType":"YulBlock","src":"3436:165:125","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3461:6:125","nodeType":"YulIdentifier","src":"3461:6:125"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3479:3:125","nodeType":"YulIdentifier","src":"3479:3:125"},{"name":"srcOffset","nativeSrc":"3484:9:125","nodeType":"YulIdentifier","src":"3484:9:125"}],"functionName":{"name":"add","nativeSrc":"3475:3:125","nodeType":"YulIdentifier","src":"3475:3:125"},"nativeSrc":"3475:19:125","nodeType":"YulFunctionCall","src":"3475:19:125"}],"functionName":{"name":"mload","nativeSrc":"3469:5:125","nodeType":"YulIdentifier","src":"3469:5:125"},"nativeSrc":"3469:26:125","nodeType":"YulFunctionCall","src":"3469:26:125"}],"functionName":{"name":"sstore","nativeSrc":"3454:6:125","nodeType":"YulIdentifier","src":"3454:6:125"},"nativeSrc":"3454:42:125","nodeType":"YulFunctionCall","src":"3454:42:125"},"nativeSrc":"3454:42:125","nodeType":"YulExpressionStatement","src":"3454:42:125"},{"nativeSrc":"3513:24:125","nodeType":"YulAssignment","src":"3513:24:125","value":{"arguments":[{"name":"dstPtr","nativeSrc":"3527:6:125","nodeType":"YulIdentifier","src":"3527:6:125"},{"kind":"number","nativeSrc":"3535:1:125","nodeType":"YulLiteral","src":"3535:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3523:3:125","nodeType":"YulIdentifier","src":"3523:3:125"},"nativeSrc":"3523:14:125","nodeType":"YulFunctionCall","src":"3523:14:125"},"variableNames":[{"name":"dstPtr","nativeSrc":"3513:6:125","nodeType":"YulIdentifier","src":"3513:6:125"}]},{"nativeSrc":"3554:33:125","nodeType":"YulAssignment","src":"3554:33:125","value":{"arguments":[{"name":"srcOffset","nativeSrc":"3571:9:125","nodeType":"YulIdentifier","src":"3571:9:125"},{"kind":"number","nativeSrc":"3582:4:125","nodeType":"YulLiteral","src":"3582:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3567:3:125","nodeType":"YulIdentifier","src":"3567:3:125"},"nativeSrc":"3567:20:125","nodeType":"YulFunctionCall","src":"3567:20:125"},"variableNames":[{"name":"srcOffset","nativeSrc":"3554:9:125","nodeType":"YulIdentifier","src":"3554:9:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"3390:1:125","nodeType":"YulIdentifier","src":"3390:1:125"},{"name":"loopEnd","nativeSrc":"3393:7:125","nodeType":"YulIdentifier","src":"3393:7:125"}],"functionName":{"name":"lt","nativeSrc":"3387:2:125","nodeType":"YulIdentifier","src":"3387:2:125"},"nativeSrc":"3387:14:125","nodeType":"YulFunctionCall","src":"3387:14:125"},"nativeSrc":"3379:222:125","nodeType":"YulForLoop","post":{"nativeSrc":"3402:21:125","nodeType":"YulBlock","src":"3402:21:125","statements":[{"nativeSrc":"3404:17:125","nodeType":"YulAssignment","src":"3404:17:125","value":{"arguments":[{"name":"i","nativeSrc":"3413:1:125","nodeType":"YulIdentifier","src":"3413:1:125"},{"kind":"number","nativeSrc":"3416:4:125","nodeType":"YulLiteral","src":"3416:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3409:3:125","nodeType":"YulIdentifier","src":"3409:3:125"},"nativeSrc":"3409:12:125","nodeType":"YulFunctionCall","src":"3409:12:125"},"variableNames":[{"name":"i","nativeSrc":"3404:1:125","nodeType":"YulIdentifier","src":"3404:1:125"}]}]},"pre":{"nativeSrc":"3383:3:125","nodeType":"YulBlock","src":"3383:3:125","statements":[]},"src":"3379:222:125"},{"body":{"nativeSrc":"3649:166:125","nodeType":"YulBlock","src":"3649:166:125","statements":[{"nativeSrc":"3667:43:125","nodeType":"YulVariableDeclaration","src":"3667:43:125","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3694:3:125","nodeType":"YulIdentifier","src":"3694:3:125"},{"name":"srcOffset","nativeSrc":"3699:9:125","nodeType":"YulIdentifier","src":"3699:9:125"}],"functionName":{"name":"add","nativeSrc":"3690:3:125","nodeType":"YulIdentifier","src":"3690:3:125"},"nativeSrc":"3690:19:125","nodeType":"YulFunctionCall","src":"3690:19:125"}],"functionName":{"name":"mload","nativeSrc":"3684:5:125","nodeType":"YulIdentifier","src":"3684:5:125"},"nativeSrc":"3684:26:125","nodeType":"YulFunctionCall","src":"3684:26:125"},"variables":[{"name":"lastValue","nativeSrc":"3671:9:125","nodeType":"YulTypedName","src":"3671:9:125","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3734:6:125","nodeType":"YulIdentifier","src":"3734:6:125"},{"arguments":[{"name":"lastValue","nativeSrc":"3746:9:125","nodeType":"YulIdentifier","src":"3746:9:125"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3773:1:125","nodeType":"YulLiteral","src":"3773:1:125","type":"","value":"3"},{"name":"newLen","nativeSrc":"3776:6:125","nodeType":"YulIdentifier","src":"3776:6:125"}],"functionName":{"name":"shl","nativeSrc":"3769:3:125","nodeType":"YulIdentifier","src":"3769:3:125"},"nativeSrc":"3769:14:125","nodeType":"YulFunctionCall","src":"3769:14:125"},{"kind":"number","nativeSrc":"3785:3:125","nodeType":"YulLiteral","src":"3785:3:125","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"3765:3:125","nodeType":"YulIdentifier","src":"3765:3:125"},"nativeSrc":"3765:24:125","nodeType":"YulFunctionCall","src":"3765:24:125"},{"arguments":[{"kind":"number","nativeSrc":"3795:1:125","nodeType":"YulLiteral","src":"3795:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3791:3:125","nodeType":"YulIdentifier","src":"3791:3:125"},"nativeSrc":"3791:6:125","nodeType":"YulFunctionCall","src":"3791:6:125"}],"functionName":{"name":"shr","nativeSrc":"3761:3:125","nodeType":"YulIdentifier","src":"3761:3:125"},"nativeSrc":"3761:37:125","nodeType":"YulFunctionCall","src":"3761:37:125"}],"functionName":{"name":"not","nativeSrc":"3757:3:125","nodeType":"YulIdentifier","src":"3757:3:125"},"nativeSrc":"3757:42:125","nodeType":"YulFunctionCall","src":"3757:42:125"}],"functionName":{"name":"and","nativeSrc":"3742:3:125","nodeType":"YulIdentifier","src":"3742:3:125"},"nativeSrc":"3742:58:125","nodeType":"YulFunctionCall","src":"3742:58:125"}],"functionName":{"name":"sstore","nativeSrc":"3727:6:125","nodeType":"YulIdentifier","src":"3727:6:125"},"nativeSrc":"3727:74:125","nodeType":"YulFunctionCall","src":"3727:74:125"},"nativeSrc":"3727:74:125","nodeType":"YulExpressionStatement","src":"3727:74:125"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"3620:7:125","nodeType":"YulIdentifier","src":"3620:7:125"},{"name":"newLen","nativeSrc":"3629:6:125","nodeType":"YulIdentifier","src":"3629:6:125"}],"functionName":{"name":"lt","nativeSrc":"3617:2:125","nodeType":"YulIdentifier","src":"3617:2:125"},"nativeSrc":"3617:19:125","nodeType":"YulFunctionCall","src":"3617:19:125"},"nativeSrc":"3614:201:125","nodeType":"YulIf","src":"3614:201:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"3835:4:125","nodeType":"YulIdentifier","src":"3835:4:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3849:1:125","nodeType":"YulLiteral","src":"3849:1:125","type":"","value":"1"},{"name":"newLen","nativeSrc":"3852:6:125","nodeType":"YulIdentifier","src":"3852:6:125"}],"functionName":{"name":"shl","nativeSrc":"3845:3:125","nodeType":"YulIdentifier","src":"3845:3:125"},"nativeSrc":"3845:14:125","nodeType":"YulFunctionCall","src":"3845:14:125"},{"kind":"number","nativeSrc":"3861:1:125","nodeType":"YulLiteral","src":"3861:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3841:3:125","nodeType":"YulIdentifier","src":"3841:3:125"},"nativeSrc":"3841:22:125","nodeType":"YulFunctionCall","src":"3841:22:125"}],"functionName":{"name":"sstore","nativeSrc":"3828:6:125","nodeType":"YulIdentifier","src":"3828:6:125"},"nativeSrc":"3828:36:125","nodeType":"YulFunctionCall","src":"3828:36:125"},"nativeSrc":"3828:36:125","nodeType":"YulExpressionStatement","src":"3828:36:125"}]},"nativeSrc":"3225:649:125","nodeType":"YulCase","src":"3225:649:125","value":{"kind":"number","nativeSrc":"3230:1:125","nodeType":"YulLiteral","src":"3230:1:125","type":"","value":"1"}},{"body":{"nativeSrc":"3891:234:125","nodeType":"YulBlock","src":"3891:234:125","statements":[{"nativeSrc":"3905:14:125","nodeType":"YulVariableDeclaration","src":"3905:14:125","value":{"kind":"number","nativeSrc":"3918:1:125","nodeType":"YulLiteral","src":"3918:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3909:5:125","nodeType":"YulTypedName","src":"3909:5:125","type":""}]},{"body":{"nativeSrc":"3954:67:125","nodeType":"YulBlock","src":"3954:67:125","statements":[{"nativeSrc":"3972:35:125","nodeType":"YulAssignment","src":"3972:35:125","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3991:3:125","nodeType":"YulIdentifier","src":"3991:3:125"},{"name":"srcOffset","nativeSrc":"3996:9:125","nodeType":"YulIdentifier","src":"3996:9:125"}],"functionName":{"name":"add","nativeSrc":"3987:3:125","nodeType":"YulIdentifier","src":"3987:3:125"},"nativeSrc":"3987:19:125","nodeType":"YulFunctionCall","src":"3987:19:125"}],"functionName":{"name":"mload","nativeSrc":"3981:5:125","nodeType":"YulIdentifier","src":"3981:5:125"},"nativeSrc":"3981:26:125","nodeType":"YulFunctionCall","src":"3981:26:125"},"variableNames":[{"name":"value","nativeSrc":"3972:5:125","nodeType":"YulIdentifier","src":"3972:5:125"}]}]},"condition":{"name":"newLen","nativeSrc":"3935:6:125","nodeType":"YulIdentifier","src":"3935:6:125"},"nativeSrc":"3932:89:125","nodeType":"YulIf","src":"3932:89:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"4041:4:125","nodeType":"YulIdentifier","src":"4041:4:125"},{"arguments":[{"name":"value","nativeSrc":"4100:5:125","nodeType":"YulIdentifier","src":"4100:5:125"},{"name":"newLen","nativeSrc":"4107:6:125","nodeType":"YulIdentifier","src":"4107:6:125"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"4047:52:125","nodeType":"YulIdentifier","src":"4047:52:125"},"nativeSrc":"4047:67:125","nodeType":"YulFunctionCall","src":"4047:67:125"}],"functionName":{"name":"sstore","nativeSrc":"4034:6:125","nodeType":"YulIdentifier","src":"4034:6:125"},"nativeSrc":"4034:81:125","nodeType":"YulFunctionCall","src":"4034:81:125"},"nativeSrc":"4034:81:125","nodeType":"YulExpressionStatement","src":"4034:81:125"}]},"nativeSrc":"3883:242:125","nodeType":"YulCase","src":"3883:242:125","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"3205:6:125","nodeType":"YulIdentifier","src":"3205:6:125"},{"kind":"number","nativeSrc":"3213:2:125","nodeType":"YulLiteral","src":"3213:2:125","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"3202:2:125","nodeType":"YulIdentifier","src":"3202:2:125"},"nativeSrc":"3202:14:125","nodeType":"YulFunctionCall","src":"3202:14:125"},"nativeSrc":"3195:930:125","nodeType":"YulSwitch","src":"3195:930:125"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"2832:1299:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"2913:4:125","nodeType":"YulTypedName","src":"2913:4:125","type":""},{"name":"src","nativeSrc":"2919:3:125","nodeType":"YulTypedName","src":"2919:3:125","type":""}],"src":"2832:1299:125"},{"body":{"nativeSrc":"4185:176:125","nodeType":"YulBlock","src":"4185:176:125","statements":[{"nativeSrc":"4195:17:125","nodeType":"YulAssignment","src":"4195:17:125","value":{"arguments":[{"name":"x","nativeSrc":"4207:1:125","nodeType":"YulIdentifier","src":"4207:1:125"},{"name":"y","nativeSrc":"4210:1:125","nodeType":"YulIdentifier","src":"4210:1:125"}],"functionName":{"name":"sub","nativeSrc":"4203:3:125","nodeType":"YulIdentifier","src":"4203:3:125"},"nativeSrc":"4203:9:125","nodeType":"YulFunctionCall","src":"4203:9:125"},"variableNames":[{"name":"diff","nativeSrc":"4195:4:125","nodeType":"YulIdentifier","src":"4195:4:125"}]},{"body":{"nativeSrc":"4244:111:125","nodeType":"YulBlock","src":"4244:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4265:1:125","nodeType":"YulLiteral","src":"4265:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4272:3:125","nodeType":"YulLiteral","src":"4272:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"4277:10:125","nodeType":"YulLiteral","src":"4277:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4268:3:125","nodeType":"YulIdentifier","src":"4268:3:125"},"nativeSrc":"4268:20:125","nodeType":"YulFunctionCall","src":"4268:20:125"}],"functionName":{"name":"mstore","nativeSrc":"4258:6:125","nodeType":"YulIdentifier","src":"4258:6:125"},"nativeSrc":"4258:31:125","nodeType":"YulFunctionCall","src":"4258:31:125"},"nativeSrc":"4258:31:125","nodeType":"YulExpressionStatement","src":"4258:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4309:1:125","nodeType":"YulLiteral","src":"4309:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"4312:4:125","nodeType":"YulLiteral","src":"4312:4:125","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"4302:6:125","nodeType":"YulIdentifier","src":"4302:6:125"},"nativeSrc":"4302:15:125","nodeType":"YulFunctionCall","src":"4302:15:125"},"nativeSrc":"4302:15:125","nodeType":"YulExpressionStatement","src":"4302:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4337:1:125","nodeType":"YulLiteral","src":"4337:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4340:4:125","nodeType":"YulLiteral","src":"4340:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4330:6:125","nodeType":"YulIdentifier","src":"4330:6:125"},"nativeSrc":"4330:15:125","nodeType":"YulFunctionCall","src":"4330:15:125"},"nativeSrc":"4330:15:125","nodeType":"YulExpressionStatement","src":"4330:15:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"4227:4:125","nodeType":"YulIdentifier","src":"4227:4:125"},{"name":"x","nativeSrc":"4233:1:125","nodeType":"YulIdentifier","src":"4233:1:125"}],"functionName":{"name":"gt","nativeSrc":"4224:2:125","nodeType":"YulIdentifier","src":"4224:2:125"},"nativeSrc":"4224:11:125","nodeType":"YulFunctionCall","src":"4224:11:125"},"nativeSrc":"4221:134:125","nodeType":"YulIf","src":"4221:134:125"}]},"name":"checked_sub_t_uint256","nativeSrc":"4136:225:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"4167:1:125","nodeType":"YulTypedName","src":"4167:1:125","type":""},{"name":"y","nativeSrc":"4170:1:125","nodeType":"YulTypedName","src":"4170:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"4176:4:125","nodeType":"YulTypedName","src":"4176:4:125","type":""}],"src":"4136:225:125"}]},"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_contract$_IERC20Metadata_$24925_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { 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        let value := mload(add(headStart, 64))\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value2 := value\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 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}","id":125,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60c060405234801561000f575f5ffd5b50604051611a80380380611a8083398101604081905261002e916101fa565b808383600361003d8382610303565b50600461004a8282610303565b5050505f5f61005e836100ab60201b60201c565b915091508161006e576012610070565b805b60ff1660a05250506001600160a01b031660805261009060635f196103bd565b600681905560078190556008819055600955506103e2915050565b5f80806100b760405190565b6040805160048152602481019091526020810180516001600160e01b0390811663313ce56760e01b179091529192505f9182916100f79188919061013c16565b50909250905061010683604052565b818015610114575060203d10155b8015610121575060ff8111155b61012c575f5f610130565b6001815b94509450505050915091565b5f5f5f60405f855160208701885afa92505f51915060205190509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610180575f5ffd5b81516001600160401b038111156101995761019961015d565b604051601f8201601f19908116603f011681016001600160401b03811182821017156101c7576101c761015d565b6040528181528382016020018510156101de575f5ffd5b8160208501602083015e5f918101602001919091529392505050565b5f5f5f6060848603121561020c575f5ffd5b83516001600160401b03811115610221575f5ffd5b61022d86828701610171565b602086015190945090506001600160401b0381111561024a575f5ffd5b61025686828701610171565b604086015190935090506001600160a01b0381168114610274575f5ffd5b809150509250925092565b600181811c9082168061029357607f821691505b6020821081036102b157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156102fe57805f5260205f20601f840160051c810160208510156102dc5750805b601f840160051c820191505b818110156102fb575f81556001016102e8565b50505b505050565b81516001600160401b0381111561031c5761031c61015d565b6103308161032a845461027f565b846102b7565b6020601f821160018114610362575f831561034b5750848201515b5f19600385901b1c1916600184901b1784556102fb565b5f84815260208120601f198516915b828110156103915787850151825560209485019460019092019101610371565b50848210156103ae57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b818103818111156103dc57634e487b7160e01b5f52601160045260245ffd5b92915050565b60805160a05161165a6104265f395f61061e01525f81816102ce015281816104a20152818161082e0152818161088b01528181610e0d0152610ebf015261165a5ff3fe608060405234801561000f575f5ffd5b50600436106101fd575f3560e01c806386de9e4f11610114578063c6e6f592116100a9578063d6dd023411610079578063d6dd023414610439578063d905777e1461044c578063dd62ed3e1461045f578063ef8b30f7146103f7578063f3c0b89214610497575f5ffd5b8063c6e6f592146103f7578063c7361ed21461040a578063cc7fcc601461041d578063ce96cb7714610426575f5ffd5b8063b3d7f6b9116100e4578063b3d7f6b9146103ab578063b460af94146103be578063ba087652146103d1578063c63d75b6146103e4575f5ffd5b806386de9e4f1461035a57806394bf804d1461037d57806395d89b4114610390578063a9059cbb14610398575f5ffd5b8063313ce56711610195578063402d267d11610165578063402d267d146103015780634cdad5061461023a5780636e553f651461031457806370a08231146103275780637fb1ad621461034f575f5ffd5b8063313ce5671461029e57806338359018146102b857806338d52e0f146102c157806339d88aff146102f8575f5ffd5b8063095ea7b3116101d0578063095ea7b31461024d5780630a28a4771461027057806318160ddd1461028357806323b872dd1461028b575f5ffd5b806301e1d11414610201578063034548cd1461021c57806306fdde031461022557806307a2d13a1461023a575b5f5ffd5b61020961049f565b6040519081526020015b60405180910390f35b61020960075481565b61022d61052e565b60405161021391906111f7565b61020961024836600461122c565b6105be565b61026061025b36600461125e565b6105cf565b6040519015158152602001610213565b61020961027e36600461122c565b6105e6565b600254610209565b610260610299366004611286565b6105f2565b6102a6610617565b60405160ff9091168152602001610213565b61020960085481565b6040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602001610213565b61020960065481565b61020961030f3660046112c0565b610642565b6102096103223660046112d9565b610666565b6102096103353660046112c0565b6001600160a01b03165f9081526020819052604090205490565b60055460ff16610260565b61037b610368366004611303565b6005805460ff1916911515919091179055565b005b61020961038b3660046112d9565b6106c3565b61022d61070f565b6102606103a636600461125e565b61071e565b6102096103b936600461122c565b61072b565b6102096103cc366004611322565b610737565b6102096103df366004611322565b61078d565b6102096103f23660046112c0565b6107da565b61020961040536600461122c565b6107f7565b61037b61041836600461122c565b610802565b61020960095481565b6102096104343660046112c0565b6108f3565b61037b61044736600461135b565b610919565b61020961045a3660046112c0565b610998565b61020961046d36600461137a565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6102096109be565b5f7f00000000000000000000000000000000000000000000000000000000000000006040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015610505573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061052991906113a2565b905090565b60606003805461053d906113b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610569906113b9565b80156105b45780601f1061058b576101008083540402835291602001916105b4565b820191905f5260205f20905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b5f6105c9825f6109cd565b92915050565b5f336105dc818585610a05565b5060019392505050565b5f6105c9826001610a17565b5f336105ff858285610a46565b61060a858585610aaf565b60019150505b9392505050565b5f610529817f0000000000000000000000000000000000000000000000000000000000000000611405565b5f61064f60635f1961141e565b6006541461065f576006546105c9565b5f196105c9565b5f5f61067183610642565b9050808411156106a357828482604051633c8097d960e11b815260040161069a93929190611431565b60405180910390fd5b5f6106ad856107f7565b90506106bb33858784610b0c565b949350505050565b5f5f6106ce836107da565b9050808411156106f75782848260405163284ff66760e01b815260040161069a93929190611431565b5f6107018561072b565b90506106bb33858388610b0c565b60606004805461053d906113b9565b5f336105dc818585610aaf565b5f6105c98260016109cd565b5f5f610742836108f3565b90508085111561076b57828582604051633fa733bb60e21b815260040161069a93929190611431565b5f610775866105e6565b90506107843386868985610b61565b95945050505050565b5f5f61079883610998565b9050808511156107c157828582604051632e52afbb60e21b815260040161069a93929190611431565b5f6107cb866105be565b9050610784338686848a610b61565b5f6107e760635f1961141e565b6007541461065f576007546105c9565b5f6105c9825f610a17565b5f811315610889576040516340c10f1960e01b8152306004820152602481018290526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340c10f19906044015b5f604051808303815f87803b158015610870575f5ffd5b505af1158015610882573d5f5f3e3d5ffd5b5050505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316639dc29fac306108c284611452565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401610859565b5f61090060635f1961141e565b60085414610910576008546105c9565b6105c982610bb7565b5f82600381111561092c5761092c61146c565b036109375760068190555b600182600381111561094b5761094b61146c565b036109565760078190555b600282600381111561096a5761096a61146c565b036109755760088190555b60038260038111156109895761098961146c565b036109945760098190555b5050565b5f6109a560635f1961141e565b600954146109b5576009546105c9565b6105c982610bc4565b6109ca60635f1961141e565b81565b5f6106106109d961049f565b6109e4906001611480565b6109ef5f600a611576565b6002546109fc9190611480565b85919085610be1565b610a128383836001610c23565b505050565b5f610610610a2682600a611576565b600254610a339190611480565b610a3b61049f565b6109fc906001611480565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610aa95781811015610a9b57828183604051637dc7a0d960e11b815260040161069a93929190611431565b610aa984848484035f610c23565b50505050565b6001600160a01b038316610ad857604051634b637e8f60e11b81525f600482015260240161069a565b6001600160a01b038216610b015760405163ec442f0560e01b81525f600482015260240161069a565b610a12838383610cf5565b60055460ff1615610b2060045f3681611584565b610b29916115ab565b90610b54576040516340c2fd5360e11b81526001600160e01b0319909116600482015260240161069a565b50610aa984848484610e08565b60055460ff1615610b7560045f3681611584565b610b7e916115ab565b90610ba9576040516340c2fd5360e11b81526001600160e01b0319909116600482015260240161069a565b506108828585858585610e8c565b5f6105c961024883610998565b6001600160a01b0381165f908152602081905260408120546105c9565b5f610c0e610bee83610f4c565b8015610c0957505f8480610c0457610c046115e3565b868809115b151590565b610c19868686610f78565b6107849190611480565b6001600160a01b038416610c4c5760405163e602df0560e01b81525f600482015260240161069a565b6001600160a01b038316610c7557604051634a1406b160e11b81525f600482015260240161069a565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610aa957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ce791815260200190565b60405180910390a350505050565b6001600160a01b038316610d1f578060025f828254610d149190611480565b90915550610d7c9050565b6001600160a01b0383165f9081526020819052604090205481811015610d5e5783818360405163391434e360e21b815260040161069a93929190611431565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610d9857600280548290039055610db6565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dfb91815260200190565b60405180910390a3505050565b610e347f0000000000000000000000000000000000000000000000000000000000000000853085611028565b610e3e838261105e565b826001600160a01b0316846001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d78484604051610ce7929190918252602082015260400190565b826001600160a01b0316856001600160a01b031614610eb057610eb0838683610a46565b610eba8382611092565b610ee57f000000000000000000000000000000000000000000000000000000000000000085846110c6565b826001600160a01b0316846001600160a01b0316866001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db8585604051610f3d929190918252602082015260400190565b60405180910390a45050505050565b5f6002826003811115610f6157610f6161146c565b610f6b91906115f7565b60ff166001149050919050565b5f5f5f610f8586866110fb565b91509150815f03610fa957838181610f9f57610f9f6115e3565b0492505050610610565b818411610fc057610fc06003851502601118611117565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b611036848484846001611128565b610aa957604051635274afe760e01b81526001600160a01b038516600482015260240161069a565b6001600160a01b0382166110875760405163ec442f0560e01b81525f600482015260240161069a565b6109945f8383610cf5565b6001600160a01b0382166110bb57604051634b637e8f60e11b81525f600482015260240161069a565b610994825f83610cf5565b6110d38383836001611195565b610a1257604051635274afe760e01b81526001600160a01b038416600482015260240161069a565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f51148316611184578383151615611178573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f511483166111eb5783831516156111df573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f6020828403121561123c575f5ffd5b5035919050565b80356001600160a01b0381168114611259575f5ffd5b919050565b5f5f6040838503121561126f575f5ffd5b61127883611243565b946020939093013593505050565b5f5f5f60608486031215611298575f5ffd5b6112a184611243565b92506112af60208501611243565b929592945050506040919091013590565b5f602082840312156112d0575f5ffd5b61061082611243565b5f5f604083850312156112ea575f5ffd5b823591506112fa60208401611243565b90509250929050565b5f60208284031215611313575f5ffd5b81358015158114610610575f5ffd5b5f5f5f60608486031215611334575f5ffd5b8335925061134460208501611243565b915061135260408501611243565b90509250925092565b5f5f6040838503121561136c575f5ffd5b823560048110611278575f5ffd5b5f5f6040838503121561138b575f5ffd5b61139483611243565b91506112fa60208401611243565b5f602082840312156113b2575f5ffd5b5051919050565b600181811c908216806113cd57607f821691505b6020821081036113eb57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b60ff81811683821601908111156105c9576105c96113f1565b818103818111156105c9576105c96113f1565b6001600160a01b039390931683526020830191909152604082015260600190565b5f600160ff1b8201611466576114666113f1565b505f0390565b634e487b7160e01b5f52602160045260245ffd5b808201808211156105c9576105c96113f1565b6001815b60018411156114ce578085048111156114b2576114b26113f1565b60018416156114c057908102905b60019390931c928002611497565b935093915050565b5f826114e4575060016105c9565b816114f057505f6105c9565b816001811461150657600281146115105761152c565b60019150506105c9565b60ff841115611521576115216113f1565b50506001821b6105c9565b5060208310610133831016604e8410600b841016171561154f575081810a6105c9565b61155b5f198484611493565b805f190482111561156e5761156e6113f1565b029392505050565b5f61061060ff8416836114d6565b5f5f85851115611592575f5ffd5b8386111561159e575f5ffd5b5050820193919092039150565b80356001600160e01b031981169060048410156115dc576001600160e01b0319600485900360031b81901b82161691505b5092915050565b634e487b7160e01b5f52601260045260245ffd5b5f60ff83168061161557634e487b7160e01b5f52601260045260245ffd5b8060ff8416069150509291505056fea264697066735822122041a239773b0c4f47712d5277cd163f3256eb28220d6a600a22cf02fd0bf1a59064736f6c634300081e0033","opcodes":"PUSH1 0xC0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x1A80 CODESIZE SUB DUP1 PUSH2 0x1A80 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2E SWAP2 PUSH2 0x1FA JUMP JUMPDEST DUP1 DUP4 DUP4 PUSH1 0x3 PUSH2 0x3D DUP4 DUP3 PUSH2 0x303 JUMP JUMPDEST POP PUSH1 0x4 PUSH2 0x4A DUP3 DUP3 PUSH2 0x303 JUMP JUMPDEST POP POP POP PUSH0 PUSH0 PUSH2 0x5E DUP4 PUSH2 0xAB PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x6E JUMPI PUSH1 0x12 PUSH2 0x70 JUMP JUMPDEST DUP1 JUMPDEST PUSH1 0xFF AND PUSH1 0xA0 MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 MSTORE PUSH2 0x90 PUSH1 0x63 PUSH0 NOT PUSH2 0x3BD JUMP JUMPDEST PUSH1 0x6 DUP2 SWAP1 SSTORE PUSH1 0x7 DUP2 SWAP1 SSTORE PUSH1 0x8 DUP2 SWAP1 SSTORE PUSH1 0x9 SSTORE POP PUSH2 0x3E2 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH2 0xB7 PUSH1 0x40 MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x4 DUP2 MSTORE PUSH1 0x24 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB SWAP1 DUP2 AND PUSH4 0x313CE567 PUSH1 0xE0 SHL OR SWAP1 SWAP2 MSTORE SWAP2 SWAP3 POP PUSH0 SWAP2 DUP3 SWAP2 PUSH2 0xF7 SWAP2 DUP9 SWAP2 SWAP1 PUSH2 0x13C AND JUMP JUMPDEST POP SWAP1 SWAP3 POP SWAP1 POP PUSH2 0x106 DUP4 PUSH1 0x40 MSTORE JUMP JUMPDEST DUP2 DUP1 ISZERO PUSH2 0x114 JUMPI POP PUSH1 0x20 RETURNDATASIZE LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x121 JUMPI POP PUSH1 0xFF DUP2 GT ISZERO JUMPDEST PUSH2 0x12C JUMPI PUSH0 PUSH0 PUSH2 0x130 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST SWAP5 POP SWAP5 POP POP POP POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 PUSH0 DUP6 MLOAD PUSH1 0x20 DUP8 ADD DUP9 GAS STATICCALL SWAP3 POP PUSH0 MLOAD SWAP2 POP PUSH1 0x20 MLOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 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 0x180 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x199 JUMPI PUSH2 0x199 PUSH2 0x15D 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 0x1C7 JUMPI PUSH2 0x1C7 PUSH2 0x15D JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP4 DUP3 ADD PUSH1 0x20 ADD DUP6 LT ISZERO PUSH2 0x1DE 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 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x20C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x221 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x22D DUP7 DUP3 DUP8 ADD PUSH2 0x171 JUMP JUMPDEST PUSH1 0x20 DUP7 ADD MLOAD SWAP1 SWAP5 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x24A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x256 DUP7 DUP3 DUP8 ADD PUSH2 0x171 JUMP JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD SWAP1 SWAP4 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x274 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x293 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x2B1 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 0x2FE JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x2DC JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2FB JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x2E8 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x31C JUMPI PUSH2 0x31C PUSH2 0x15D JUMP JUMPDEST PUSH2 0x330 DUP2 PUSH2 0x32A DUP5 SLOAD PUSH2 0x27F JUMP JUMPDEST DUP5 PUSH2 0x2B7 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x362 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x34B 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 0x2FB JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x391 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x371 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x3AE 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 DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x3DC 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 0x165A PUSH2 0x426 PUSH0 CODECOPY PUSH0 PUSH2 0x61E ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x2CE ADD MSTORE DUP2 DUP2 PUSH2 0x4A2 ADD MSTORE DUP2 DUP2 PUSH2 0x82E ADD MSTORE DUP2 DUP2 PUSH2 0x88B ADD MSTORE DUP2 DUP2 PUSH2 0xE0D ADD MSTORE PUSH2 0xEBF ADD MSTORE PUSH2 0x165A PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1FD JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x86DE9E4F GT PUSH2 0x114 JUMPI DUP1 PUSH4 0xC6E6F592 GT PUSH2 0xA9 JUMPI DUP1 PUSH4 0xD6DD0234 GT PUSH2 0x79 JUMPI DUP1 PUSH4 0xD6DD0234 EQ PUSH2 0x439 JUMPI DUP1 PUSH4 0xD905777E EQ PUSH2 0x44C JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x45F JUMPI DUP1 PUSH4 0xEF8B30F7 EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0xF3C0B892 EQ PUSH2 0x497 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC6E6F592 EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0xC7361ED2 EQ PUSH2 0x40A JUMPI DUP1 PUSH4 0xCC7FCC60 EQ PUSH2 0x41D JUMPI DUP1 PUSH4 0xCE96CB77 EQ PUSH2 0x426 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB3D7F6B9 GT PUSH2 0xE4 JUMPI DUP1 PUSH4 0xB3D7F6B9 EQ PUSH2 0x3AB JUMPI DUP1 PUSH4 0xB460AF94 EQ PUSH2 0x3BE JUMPI DUP1 PUSH4 0xBA087652 EQ PUSH2 0x3D1 JUMPI DUP1 PUSH4 0xC63D75B6 EQ PUSH2 0x3E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x86DE9E4F EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0x94BF804D EQ PUSH2 0x37D JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x390 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x398 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0x195 JUMPI DUP1 PUSH4 0x402D267D GT PUSH2 0x165 JUMPI DUP1 PUSH4 0x402D267D EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x23A JUMPI DUP1 PUSH4 0x6E553F65 EQ PUSH2 0x314 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x327 JUMPI DUP1 PUSH4 0x7FB1AD62 EQ PUSH2 0x34F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 EQ PUSH2 0x29E JUMPI DUP1 PUSH4 0x38359018 EQ PUSH2 0x2B8 JUMPI DUP1 PUSH4 0x38D52E0F EQ PUSH2 0x2C1 JUMPI DUP1 PUSH4 0x39D88AFF EQ PUSH2 0x2F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x1D0 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0xA28A477 EQ PUSH2 0x270 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x283 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x28B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1E1D114 EQ PUSH2 0x201 JUMPI DUP1 PUSH4 0x34548CD EQ PUSH2 0x21C JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0x7A2D13A EQ PUSH2 0x23A JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x209 PUSH2 0x49F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x209 PUSH1 0x7 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22D PUSH2 0x52E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x213 SWAP2 SWAP1 PUSH2 0x11F7 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x248 CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x5BE JUMP JUMPDEST PUSH2 0x260 PUSH2 0x25B CALLDATASIZE PUSH1 0x4 PUSH2 0x125E JUMP JUMPDEST PUSH2 0x5CF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x27E CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x5E6 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x209 JUMP JUMPDEST PUSH2 0x260 PUSH2 0x299 CALLDATASIZE PUSH1 0x4 PUSH2 0x1286 JUMP JUMPDEST PUSH2 0x5F2 JUMP JUMPDEST PUSH2 0x2A6 PUSH2 0x617 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x30F CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH2 0x642 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x322 CALLDATASIZE PUSH1 0x4 PUSH2 0x12D9 JUMP JUMPDEST PUSH2 0x666 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x335 CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 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 0x5 SLOAD PUSH1 0xFF AND PUSH2 0x260 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x368 CALLDATASIZE PUSH1 0x4 PUSH2 0x1303 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x209 PUSH2 0x38B CALLDATASIZE PUSH1 0x4 PUSH2 0x12D9 JUMP JUMPDEST PUSH2 0x6C3 JUMP JUMPDEST PUSH2 0x22D PUSH2 0x70F JUMP JUMPDEST PUSH2 0x260 PUSH2 0x3A6 CALLDATASIZE PUSH1 0x4 PUSH2 0x125E JUMP JUMPDEST PUSH2 0x71E JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3B9 CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x72B JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3CC CALLDATASIZE PUSH1 0x4 PUSH2 0x1322 JUMP JUMPDEST PUSH2 0x737 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3DF CALLDATASIZE PUSH1 0x4 PUSH2 0x1322 JUMP JUMPDEST PUSH2 0x78D JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3F2 CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH2 0x7DA JUMP JUMPDEST PUSH2 0x209 PUSH2 0x405 CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x7F7 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x418 CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x802 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x434 CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH2 0x8F3 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x447 CALLDATASIZE PUSH1 0x4 PUSH2 0x135B JUMP JUMPDEST PUSH2 0x919 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x45A CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH2 0x998 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x46D CALLDATASIZE PUSH1 0x4 PUSH2 0x137A 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 PUSH2 0x209 PUSH2 0x9BE JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0x70A08231 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 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x505 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 0x529 SWAP2 SWAP1 PUSH2 0x13A2 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x53D SWAP1 PUSH2 0x13B9 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 0x569 SWAP1 PUSH2 0x13B9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5B4 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x58B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5B4 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 0x597 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x5C9 DUP3 PUSH0 PUSH2 0x9CD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5DC DUP2 DUP6 DUP6 PUSH2 0xA05 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x5C9 DUP3 PUSH1 0x1 PUSH2 0xA17 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5FF DUP6 DUP3 DUP6 PUSH2 0xA46 JUMP JUMPDEST PUSH2 0x60A DUP6 DUP6 DUP6 PUSH2 0xAAF JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x529 DUP2 PUSH32 0x0 PUSH2 0x1405 JUMP JUMPDEST PUSH0 PUSH2 0x64F PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST PUSH1 0x6 SLOAD EQ PUSH2 0x65F JUMPI PUSH1 0x6 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH0 NOT PUSH2 0x5C9 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x671 DUP4 PUSH2 0x642 JUMP JUMPDEST SWAP1 POP DUP1 DUP5 GT ISZERO PUSH2 0x6A3 JUMPI DUP3 DUP5 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3C8097D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x6AD DUP6 PUSH2 0x7F7 JUMP JUMPDEST SWAP1 POP PUSH2 0x6BB CALLER DUP6 DUP8 DUP5 PUSH2 0xB0C JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x6CE DUP4 PUSH2 0x7DA JUMP JUMPDEST SWAP1 POP DUP1 DUP5 GT ISZERO PUSH2 0x6F7 JUMPI DUP3 DUP5 DUP3 PUSH1 0x40 MLOAD PUSH4 0x284FF667 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH0 PUSH2 0x701 DUP6 PUSH2 0x72B JUMP JUMPDEST SWAP1 POP PUSH2 0x6BB CALLER DUP6 DUP4 DUP9 PUSH2 0xB0C JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x53D SWAP1 PUSH2 0x13B9 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5DC DUP2 DUP6 DUP6 PUSH2 0xAAF JUMP JUMPDEST PUSH0 PUSH2 0x5C9 DUP3 PUSH1 0x1 PUSH2 0x9CD JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x742 DUP4 PUSH2 0x8F3 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x76B JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3FA733BB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH0 PUSH2 0x775 DUP7 PUSH2 0x5E6 JUMP JUMPDEST SWAP1 POP PUSH2 0x784 CALLER DUP7 DUP7 DUP10 DUP6 PUSH2 0xB61 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x798 DUP4 PUSH2 0x998 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x7C1 JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x2E52AFBB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH0 PUSH2 0x7CB DUP7 PUSH2 0x5BE JUMP JUMPDEST SWAP1 POP PUSH2 0x784 CALLER DUP7 DUP7 DUP5 DUP11 PUSH2 0xB61 JUMP JUMPDEST PUSH0 PUSH2 0x7E7 PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST PUSH1 0x7 SLOAD EQ PUSH2 0x65F JUMPI PUSH1 0x7 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH0 PUSH2 0x5C9 DUP3 PUSH0 PUSH2 0xA17 JUMP JUMPDEST PUSH0 DUP2 SGT ISZERO PUSH2 0x889 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C10F19 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x40C10F19 SWAP1 PUSH1 0x44 ADD JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x870 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x882 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x9DC29FAC ADDRESS PUSH2 0x8C2 DUP5 PUSH2 0x1452 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x859 JUMP JUMPDEST PUSH0 PUSH2 0x900 PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST PUSH1 0x8 SLOAD EQ PUSH2 0x910 JUMPI PUSH1 0x8 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH2 0x5C9 DUP3 PUSH2 0xBB7 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x92C JUMPI PUSH2 0x92C PUSH2 0x146C JUMP JUMPDEST SUB PUSH2 0x937 JUMPI PUSH1 0x6 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x94B JUMPI PUSH2 0x94B PUSH2 0x146C JUMP JUMPDEST SUB PUSH2 0x956 JUMPI PUSH1 0x7 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x96A JUMPI PUSH2 0x96A PUSH2 0x146C JUMP JUMPDEST SUB PUSH2 0x975 JUMPI PUSH1 0x8 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x989 JUMPI PUSH2 0x989 PUSH2 0x146C JUMP JUMPDEST SUB PUSH2 0x994 JUMPI PUSH1 0x9 DUP2 SWAP1 SSTORE JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x9A5 PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST PUSH1 0x9 SLOAD EQ PUSH2 0x9B5 JUMPI PUSH1 0x9 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH2 0x5C9 DUP3 PUSH2 0xBC4 JUMP JUMPDEST PUSH2 0x9CA PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST DUP2 JUMP JUMPDEST PUSH0 PUSH2 0x610 PUSH2 0x9D9 PUSH2 0x49F JUMP JUMPDEST PUSH2 0x9E4 SWAP1 PUSH1 0x1 PUSH2 0x1480 JUMP JUMPDEST PUSH2 0x9EF PUSH0 PUSH1 0xA PUSH2 0x1576 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x9FC SWAP2 SWAP1 PUSH2 0x1480 JUMP JUMPDEST DUP6 SWAP2 SWAP1 DUP6 PUSH2 0xBE1 JUMP JUMPDEST PUSH2 0xA12 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0xC23 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x610 PUSH2 0xA26 DUP3 PUSH1 0xA PUSH2 0x1576 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0xA33 SWAP2 SWAP1 PUSH2 0x1480 JUMP JUMPDEST PUSH2 0xA3B PUSH2 0x49F JUMP JUMPDEST PUSH2 0x9FC SWAP1 PUSH1 0x1 PUSH2 0x1480 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 0xAA9 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xA9B JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH2 0xAA9 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0xC23 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xAD8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xB01 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH2 0xA12 DUP4 DUP4 DUP4 PUSH2 0xCF5 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0xB20 PUSH1 0x4 PUSH0 CALLDATASIZE DUP2 PUSH2 0x1584 JUMP JUMPDEST PUSH2 0xB29 SWAP2 PUSH2 0x15AB JUMP JUMPDEST SWAP1 PUSH2 0xB54 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C2FD53 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST POP PUSH2 0xAA9 DUP5 DUP5 DUP5 DUP5 PUSH2 0xE08 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0xB75 PUSH1 0x4 PUSH0 CALLDATASIZE DUP2 PUSH2 0x1584 JUMP JUMPDEST PUSH2 0xB7E SWAP2 PUSH2 0x15AB JUMP JUMPDEST SWAP1 PUSH2 0xBA9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C2FD53 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST POP PUSH2 0x882 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0xE8C JUMP JUMPDEST PUSH0 PUSH2 0x5C9 PUSH2 0x248 DUP4 PUSH2 0x998 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 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH0 PUSH2 0xC0E PUSH2 0xBEE DUP4 PUSH2 0xF4C JUMP JUMPDEST DUP1 ISZERO PUSH2 0xC09 JUMPI POP PUSH0 DUP5 DUP1 PUSH2 0xC04 JUMPI PUSH2 0xC04 PUSH2 0x15E3 JUMP JUMPDEST DUP7 DUP9 MULMOD GT JUMPDEST ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH2 0xC19 DUP7 DUP7 DUP7 PUSH2 0xF78 JUMP JUMPDEST PUSH2 0x784 SWAP2 SWAP1 PUSH2 0x1480 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0xC4C JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xC75 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A 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 0xAA9 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 0xCE7 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 0xD1F JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xD14 SWAP2 SWAP1 PUSH2 0x1480 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xD7C 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 0xD5E JUMPI DUP4 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 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 0xD98 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0xDB6 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 0xDFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0xE34 PUSH32 0x0 DUP6 ADDRESS DUP6 PUSH2 0x1028 JUMP JUMPDEST PUSH2 0xE3E DUP4 DUP3 PUSH2 0x105E JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDCBC1C05240F31FF3AD067EF1EE35CE4997762752E3A095284754544F4C709D7 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0xCE7 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xEB0 JUMPI PUSH2 0xEB0 DUP4 DUP7 DUP4 PUSH2 0xA46 JUMP JUMPDEST PUSH2 0xEBA DUP4 DUP3 PUSH2 0x1092 JUMP JUMPDEST PUSH2 0xEE5 PUSH32 0x0 DUP6 DUP5 PUSH2 0x10C6 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFBDE797D201C681B91056529119E0B02407C7BB96A4A2C75C01FC9667232C8DB DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0xF3D SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xF61 JUMPI PUSH2 0xF61 PUSH2 0x146C JUMP JUMPDEST PUSH2 0xF6B SWAP2 SWAP1 PUSH2 0x15F7 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x1 EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0xF85 DUP7 DUP7 PUSH2 0x10FB JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0xFA9 JUMPI DUP4 DUP2 DUP2 PUSH2 0xF9F JUMPI PUSH2 0xF9F PUSH2 0x15E3 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x610 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0xFC0 JUMPI PUSH2 0xFC0 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x1117 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1036 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x1128 JUMP JUMPDEST PUSH2 0xAA9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1087 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH2 0x994 PUSH0 DUP4 DUP4 PUSH2 0xCF5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x10BB JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH2 0x994 DUP3 PUSH0 DUP4 PUSH2 0xCF5 JUMP JUMPDEST PUSH2 0x10D3 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x1195 JUMP JUMPDEST PUSH2 0xA12 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x1184 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x1178 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x11EB JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x11DF JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP 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 PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x123C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1259 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x126F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1278 DUP4 PUSH2 0x1243 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 0x1298 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x12A1 DUP5 PUSH2 0x1243 JUMP JUMPDEST SWAP3 POP PUSH2 0x12AF PUSH1 0x20 DUP6 ADD PUSH2 0x1243 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 0x12D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x610 DUP3 PUSH2 0x1243 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x12EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x12FA PUSH1 0x20 DUP5 ADD PUSH2 0x1243 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1313 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x610 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1334 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH2 0x1344 PUSH1 0x20 DUP6 ADD PUSH2 0x1243 JUMP JUMPDEST SWAP2 POP PUSH2 0x1352 PUSH1 0x40 DUP6 ADD PUSH2 0x1243 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x136C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x4 DUP2 LT PUSH2 0x1278 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x138B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1394 DUP4 PUSH2 0x1243 JUMP JUMPDEST SWAP2 POP PUSH2 0x12FA PUSH1 0x20 DUP5 ADD PUSH2 0x1243 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x13B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x13CD JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x13EB 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 PUSH1 0xFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x5C9 JUMPI PUSH2 0x5C9 PUSH2 0x13F1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x5C9 JUMPI PUSH2 0x5C9 PUSH2 0x13F1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x1466 JUMPI PUSH2 0x1466 PUSH2 0x13F1 JUMP JUMPDEST POP PUSH0 SUB SWAP1 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 0x5C9 JUMPI PUSH2 0x5C9 PUSH2 0x13F1 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x14CE JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x14B2 JUMPI PUSH2 0x14B2 PUSH2 0x13F1 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x14C0 JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x1497 JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x14E4 JUMPI POP PUSH1 0x1 PUSH2 0x5C9 JUMP JUMPDEST DUP2 PUSH2 0x14F0 JUMPI POP PUSH0 PUSH2 0x5C9 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x1506 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x1510 JUMPI PUSH2 0x152C JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x5C9 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x1521 JUMPI PUSH2 0x1521 PUSH2 0x13F1 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x5C9 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x154F JUMPI POP DUP2 DUP2 EXP PUSH2 0x5C9 JUMP JUMPDEST PUSH2 0x155B PUSH0 NOT DUP5 DUP5 PUSH2 0x1493 JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x156E JUMPI PUSH2 0x156E PUSH2 0x13F1 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x610 PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x14D6 JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x1592 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x159E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x15DC 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 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x1615 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 PUSH1 0xFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 COINBASE LOG2 CODECOPY PUSH24 0x3B0C4F47712D5277CD163F3256EB28220D6A600A22CF02FD SIGNEXTEND CALL 0xA5 SWAP1 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"462:2711:41:-:0;;;953:223;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1062:6;1038:5;1045:7;1648:5:77;:13;1038:5:41;1648::77;:13;:::i;:::-;-1:-1:-1;1671:7:77;:17;1681:7;1671;:17;:::i;:::-;;1582:113;;5565:12:79;5579:19;5602:28;5623:6;5602:20;;;:28;;:::i;:::-;5564:66;;;;5662:7;:28;;5688:2;5662:28;;;5672:13;5662:28;5640:50;;;;-1:-1:-1;;;;;;;5700:15:79;;;711:22:41::2;731:2;-1:-1:-1::0;;711:22:41::2;:::i;:::-;1136:18;:35:::0;;;1118:15:::2;:53:::0;;;1096:19:::2;:75:::0;;;1076:17:::2;:95:::0;-1:-1:-1;462:2711:41;;-1:-1:-1;;462:2711:41;5865:607:79;5932:7;;;5993:29;1025:4:92;1019:11;;895:151;5993:29:79;6156:43;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6156:43:79;;;-1:-1:-1;;;6156:43:79;;;;5972:50;;-1:-1:-1;6033:12:79;;;;6077:132;;6135:6;;6156:43;6077:36;:132;:::i;:::-;-1:-1:-1;6032:177:79;;-1:-1:-1;6032:177:79;-1:-1:-1;6219:32:79;6247:3;1311:4:92;1304:17;1198:139;6219:32:79;6282:7;:46;;;;-1:-1:-1;6326:2:79;4583:16:91;6293:35:79;;6282:46;:94;;;;-1:-1:-1;6361:15:79;6332:44;;;6282:94;6281:184;;6456:5;6463:1;6281:184;;;6397:4;6417:16;6281:184;6262:203;;;;;;;5865:607;;;:::o;2893:374:91:-;3006:12;3020:15;3037;3176:4;3170;3163;3157:11;3150:4;3144;3140:15;3132:6;3125:5;3114:67;3103:78;;3211:4;3205:11;3194:22;;3246:4;3240:11;3229:22;;2893:374;;;;;:::o;14:127:125:-;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:125;;320:56;;;356:18;;:::i;:::-;405:2;399:9;497:2;459:17;;-1:-1:-1;;455:31:125;;;488:2;451:40;447:54;435:67;;-1:-1:-1;;;;;517:34:125;;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:125;;;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:125:o;874:748::-;1006:6;1014;1022;1075:2;1063:9;1054:7;1050:23;1046:32;1043:52;;;1091:1;1088;1081:12;1043:52;1118:16;;-1:-1:-1;;;;;1146:30:125;;1143:50;;;1189:1;1186;1179:12;1143:50;1212:61;1265:7;1256:6;1245:9;1241:22;1212:61;:::i;:::-;1319:2;1304:18;;1298:25;1202:71;;-1:-1:-1;1298:25:125;-1:-1:-1;;;;;;1335:32:125;;1332:52;;;1380:1;1377;1370:12;1332:52;1403:63;1458:7;1447:8;1436:9;1432:24;1403:63;:::i;:::-;1509:2;1494:18;;1488:25;1393:73;;-1:-1:-1;1488:25:125;-1:-1:-1;;;;;;1542:31:125;;1532:42;;1522:70;;1588:1;1585;1578:12;1522:70;1611:5;1601:15;;;874:748;;;;;:::o;1627:380::-;1706:1;1702:12;;;;1749;;;1770:61;;1824:4;1816:6;1812:17;1802:27;;1770:61;1877:2;1869:6;1866:14;1846:18;1843:38;1840:161;;1923:10;1918:3;1914:20;1911:1;1904:31;1958:4;1955:1;1948:15;1986:4;1983:1;1976:15;1840:161;;1627:380;;;:::o;2138:518::-;2240:2;2235:3;2232:11;2229:421;;;2276:5;2273:1;2266:16;2320:4;2317:1;2307:18;2390:2;2378:10;2374:19;2371:1;2367:27;2361:4;2357:38;2426:4;2414:10;2411:20;2408:47;;;-1:-1:-1;2449:4:125;2408:47;2504:2;2499:3;2495:12;2492:1;2488:20;2482:4;2478:31;2468:41;;2559:81;2577:2;2570:5;2567:13;2559:81;;;2636:1;2622:16;;2603:1;2592:13;2559:81;;;2563:3;;2229:421;2138:518;;;:::o;2832:1299::-;2952:10;;-1:-1:-1;;;;;2974:30:125;;2971:56;;;3007:18;;:::i;:::-;3036:97;3126:6;3086:38;3118:4;3112:11;3086:38;:::i;:::-;3080:4;3036:97;:::i;:::-;3182:4;3213:2;3202:14;;3230:1;3225:649;;;;3918:1;3935:6;3932:89;;;-1:-1:-1;3987:19:125;;;3981:26;3932:89;-1:-1:-1;;2789:1:125;2785:11;;;2781:24;2777:29;2767:40;2813:1;2809:11;;;2764:57;4034:81;;3195:930;;3225:649;2085:1;2078:14;;;2122:4;2109:18;;-1:-1:-1;;3261:20:125;;;3379:222;3393:7;3390:1;3387:14;3379:222;;;3475:19;;;3469:26;3454:42;;3582:4;3567:20;;;;3535:1;3523:14;;;;3409:12;3379:222;;;3383:3;3629:6;3620:7;3617:19;3614:201;;;3690:19;;;3684:26;-1:-1:-1;;3773:1:125;3769:14;;;3785:3;3765:24;3761:37;3757:42;3742:58;3727:74;;3614:201;-1:-1:-1;;;;3861:1:125;3845:14;;;3841:22;3828:36;;-1:-1:-1;2832:1299:125:o;4136:225::-;4203:9;;;4224:11;;;4221:134;;;4277:10;4272:3;4268:20;4265:1;4258:31;4312:4;4309:1;4302:15;4340:4;4337:1;4330:15;4221:134;4136:225;;;;:::o;:::-;462:2711:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@OVERRIDE_UNSET_15553":{"entryPoint":2494,"id":15553,"parameterSlots":0,"returnSlots":0},"@_approve_24006":{"entryPoint":2565,"id":24006,"parameterSlots":3,"returnSlots":0},"@_approve_24066":{"entryPoint":3107,"id":24066,"parameterSlots":4,"returnSlots":0},"@_burn_23988":{"entryPoint":4242,"id":23988,"parameterSlots":2,"returnSlots":0},"@_convertToAssets_24800":{"entryPoint":2509,"id":24800,"parameterSlots":2,"returnSlots":1},"@_convertToShares_24772":{"entryPoint":2583,"id":24772,"parameterSlots":2,"returnSlots":1},"@_decimalsOffset_24898":{"entryPoint":null,"id":24898,"parameterSlots":0,"returnSlots":1},"@_deposit_15633":{"entryPoint":2828,"id":15633,"parameterSlots":4,"returnSlots":0},"@_deposit_24840":{"entryPoint":3592,"id":24840,"parameterSlots":4,"returnSlots":0},"@_mint_23955":{"entryPoint":4190,"id":23955,"parameterSlots":2,"returnSlots":0},"@_msgSender_26771":{"entryPoint":null,"id":26771,"parameterSlots":0,"returnSlots":1},"@_safeTransferFrom_25392":{"entryPoint":4392,"id":25392,"parameterSlots":5,"returnSlots":1},"@_safeTransfer_25367":{"entryPoint":4501,"id":25367,"parameterSlots":4,"returnSlots":1},"@_spendAllowance_24114":{"entryPoint":2630,"id":24114,"parameterSlots":3,"returnSlots":0},"@_transfer_23845":{"entryPoint":2735,"id":23845,"parameterSlots":3,"returnSlots":0},"@_update_23922":{"entryPoint":3317,"id":23922,"parameterSlots":3,"returnSlots":0},"@_withdraw_15660":{"entryPoint":2913,"id":15660,"parameterSlots":5,"returnSlots":0},"@_withdraw_24890":{"entryPoint":3724,"id":24890,"parameterSlots":5,"returnSlots":0},"@allowance_23742":{"entryPoint":null,"id":23742,"parameterSlots":2,"returnSlots":1},"@approve_23766":{"entryPoint":1487,"id":23766,"parameterSlots":2,"returnSlots":1},"@asset_24390":{"entryPoint":null,"id":24390,"parameterSlots":0,"returnSlots":1},"@balanceOf_23701":{"entryPoint":null,"id":23701,"parameterSlots":1,"returnSlots":1},"@broken_15721":{"entryPoint":null,"id":15721,"parameterSlots":0,"returnSlots":1},"@convertToAssets_24440":{"entryPoint":1470,"id":24440,"parameterSlots":1,"returnSlots":1},"@convertToShares_24424":{"entryPoint":2039,"id":24424,"parameterSlots":1,"returnSlots":1},"@decimals_24378":{"entryPoint":1559,"id":24378,"parameterSlots":0,"returnSlots":1},"@deposit_24606":{"entryPoint":1638,"id":24606,"parameterSlots":2,"returnSlots":1},"@discreteEarning_15703":{"entryPoint":2050,"id":15703,"parameterSlots":1,"returnSlots":0},"@maxDeposit_15740":{"entryPoint":1602,"id":15740,"parameterSlots":1,"returnSlots":1},"@maxDeposit_24455":{"entryPoint":null,"id":24455,"parameterSlots":1,"returnSlots":1},"@maxMint_15759":{"entryPoint":2010,"id":15759,"parameterSlots":1,"returnSlots":1},"@maxMint_24470":{"entryPoint":null,"id":24470,"parameterSlots":1,"returnSlots":1},"@maxRedeem_15797":{"entryPoint":2456,"id":15797,"parameterSlots":1,"returnSlots":1},"@maxRedeem_24498":{"entryPoint":3012,"id":24498,"parameterSlots":1,"returnSlots":1},"@maxWithdraw_15778":{"entryPoint":2291,"id":15778,"parameterSlots":1,"returnSlots":1},"@maxWithdraw_24485":{"entryPoint":2999,"id":24485,"parameterSlots":1,"returnSlots":1},"@mint_24650":{"entryPoint":1731,"id":24650,"parameterSlots":2,"returnSlots":1},"@mul512_33585":{"entryPoint":4347,"id":33585,"parameterSlots":2,"returnSlots":2},"@mulDiv_34072":{"entryPoint":3960,"id":34072,"parameterSlots":3,"returnSlots":1},"@mulDiv_34109":{"entryPoint":3041,"id":34109,"parameterSlots":4,"returnSlots":1},"@name_23661":{"entryPoint":1326,"id":23661,"parameterSlots":0,"returnSlots":1},"@overrideMaxDeposit_15538":{"entryPoint":null,"id":15538,"parameterSlots":0,"returnSlots":0},"@overrideMaxMint_15540":{"entryPoint":null,"id":15540,"parameterSlots":0,"returnSlots":0},"@overrideMaxRedeem_15544":{"entryPoint":null,"id":15544,"parameterSlots":0,"returnSlots":0},"@overrideMaxWithdraw_15542":{"entryPoint":null,"id":15542,"parameterSlots":0,"returnSlots":0},"@panic_30996":{"entryPoint":4375,"id":30996,"parameterSlots":1,"returnSlots":0},"@previewDeposit_24514":{"entryPoint":null,"id":24514,"parameterSlots":1,"returnSlots":1},"@previewMint_24530":{"entryPoint":1835,"id":24530,"parameterSlots":1,"returnSlots":1},"@previewRedeem_24562":{"entryPoint":null,"id":24562,"parameterSlots":1,"returnSlots":1},"@previewWithdraw_24546":{"entryPoint":1510,"id":24546,"parameterSlots":1,"returnSlots":1},"@redeem_24744":{"entryPoint":1933,"id":24744,"parameterSlots":3,"returnSlots":1},"@safeTransferFrom_25041":{"entryPoint":4136,"id":25041,"parameterSlots":4,"returnSlots":0},"@safeTransfer_25010":{"entryPoint":4294,"id":25010,"parameterSlots":3,"returnSlots":0},"@setBroken_15713":{"entryPoint":null,"id":15713,"parameterSlots":1,"returnSlots":0},"@setOverride_15842":{"entryPoint":2329,"id":15842,"parameterSlots":2,"returnSlots":0},"@symbol_23670":{"entryPoint":1807,"id":23670,"parameterSlots":0,"returnSlots":1},"@ternary_33834":{"entryPoint":null,"id":33834,"parameterSlots":3,"returnSlots":1},"@toUint_36951":{"entryPoint":null,"id":36951,"parameterSlots":1,"returnSlots":1},"@totalAssets_24408":{"entryPoint":1183,"id":24408,"parameterSlots":0,"returnSlots":1},"@totalSupply_23688":{"entryPoint":null,"id":23688,"parameterSlots":0,"returnSlots":1},"@transferFrom_23798":{"entryPoint":1522,"id":23798,"parameterSlots":3,"returnSlots":1},"@transfer_23725":{"entryPoint":1822,"id":23725,"parameterSlots":2,"returnSlots":1},"@unsignedRoundsUp_35165":{"entryPoint":3916,"id":35165,"parameterSlots":1,"returnSlots":1},"@withdraw_24697":{"entryPoint":1847,"id":24697,"parameterSlots":3,"returnSlots":1},"abi_decode_address":{"entryPoint":4675,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":4800,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":4986,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":4742,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":4702,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bool":{"entryPoint":4867,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_enum$_OverrideOption_$15558t_uint256":{"entryPoint":4955,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_int256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":4652,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":5026,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_address":{"entryPoint":4825,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_addresst_address":{"entryPoint":4898,"id":null,"parameterSlots":2,"returnSlots":3},"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__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":5169,"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_bytes4__to_t_bytes4__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":4599,"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_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"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":5508,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_uint256":{"entryPoint":5248,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint8":{"entryPoint":5125,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_helper":{"entryPoint":5267,"id":null,"parameterSlots":3,"returnSlots":2},"checked_exp_t_uint256_t_uint8":{"entryPoint":5494,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_unsigned":{"entryPoint":5334,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":5150,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4":{"entryPoint":5547,"id":null,"parameterSlots":2,"returnSlots":1},"extract_byte_array_length":{"entryPoint":5049,"id":null,"parameterSlots":1,"returnSlots":1},"mod_t_uint8":{"entryPoint":5623,"id":null,"parameterSlots":2,"returnSlots":1},"negate_t_int256":{"entryPoint":5202,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":5105,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":5603,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":5228,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:9287:125","nodeType":"YulBlock","src":"0:9287:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"115:76:125","nodeType":"YulBlock","src":"115:76:125","statements":[{"nativeSrc":"125:26:125","nodeType":"YulAssignment","src":"125:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"137:9:125","nodeType":"YulIdentifier","src":"137:9:125"},{"kind":"number","nativeSrc":"148:2:125","nodeType":"YulLiteral","src":"148:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"133:3:125","nodeType":"YulIdentifier","src":"133:3:125"},"nativeSrc":"133:18:125","nodeType":"YulFunctionCall","src":"133:18:125"},"variableNames":[{"name":"tail","nativeSrc":"125:4:125","nodeType":"YulIdentifier","src":"125:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"167:9:125","nodeType":"YulIdentifier","src":"167:9:125"},{"name":"value0","nativeSrc":"178:6:125","nodeType":"YulIdentifier","src":"178:6:125"}],"functionName":{"name":"mstore","nativeSrc":"160:6:125","nodeType":"YulIdentifier","src":"160:6:125"},"nativeSrc":"160:25:125","nodeType":"YulFunctionCall","src":"160:25:125"},"nativeSrc":"160:25:125","nodeType":"YulExpressionStatement","src":"160:25:125"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"14:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"84:9:125","nodeType":"YulTypedName","src":"84:9:125","type":""},{"name":"value0","nativeSrc":"95:6:125","nodeType":"YulTypedName","src":"95:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"106:4:125","nodeType":"YulTypedName","src":"106:4:125","type":""}],"src":"14:177:125"},{"body":{"nativeSrc":"317:297:125","nodeType":"YulBlock","src":"317:297:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"334:9:125","nodeType":"YulIdentifier","src":"334:9:125"},{"kind":"number","nativeSrc":"345:2:125","nodeType":"YulLiteral","src":"345:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"327:6:125","nodeType":"YulIdentifier","src":"327:6:125"},"nativeSrc":"327:21:125","nodeType":"YulFunctionCall","src":"327:21:125"},"nativeSrc":"327:21:125","nodeType":"YulExpressionStatement","src":"327:21:125"},{"nativeSrc":"357:27:125","nodeType":"YulVariableDeclaration","src":"357:27:125","value":{"arguments":[{"name":"value0","nativeSrc":"377:6:125","nodeType":"YulIdentifier","src":"377:6:125"}],"functionName":{"name":"mload","nativeSrc":"371:5:125","nodeType":"YulIdentifier","src":"371:5:125"},"nativeSrc":"371:13:125","nodeType":"YulFunctionCall","src":"371:13:125"},"variables":[{"name":"length","nativeSrc":"361:6:125","nodeType":"YulTypedName","src":"361:6:125","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"404:9:125","nodeType":"YulIdentifier","src":"404:9:125"},{"kind":"number","nativeSrc":"415:2:125","nodeType":"YulLiteral","src":"415:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"400:3:125","nodeType":"YulIdentifier","src":"400:3:125"},"nativeSrc":"400:18:125","nodeType":"YulFunctionCall","src":"400:18:125"},{"name":"length","nativeSrc":"420:6:125","nodeType":"YulIdentifier","src":"420:6:125"}],"functionName":{"name":"mstore","nativeSrc":"393:6:125","nodeType":"YulIdentifier","src":"393:6:125"},"nativeSrc":"393:34:125","nodeType":"YulFunctionCall","src":"393:34:125"},"nativeSrc":"393:34:125","nodeType":"YulExpressionStatement","src":"393:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"446:9:125","nodeType":"YulIdentifier","src":"446:9:125"},{"kind":"number","nativeSrc":"457:2:125","nodeType":"YulLiteral","src":"457:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"442:3:125","nodeType":"YulIdentifier","src":"442:3:125"},"nativeSrc":"442:18:125","nodeType":"YulFunctionCall","src":"442:18:125"},{"arguments":[{"name":"value0","nativeSrc":"466:6:125","nodeType":"YulIdentifier","src":"466:6:125"},{"kind":"number","nativeSrc":"474:2:125","nodeType":"YulLiteral","src":"474:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"462:3:125","nodeType":"YulIdentifier","src":"462:3:125"},"nativeSrc":"462:15:125","nodeType":"YulFunctionCall","src":"462:15:125"},{"name":"length","nativeSrc":"479:6:125","nodeType":"YulIdentifier","src":"479:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"436:5:125","nodeType":"YulIdentifier","src":"436:5:125"},"nativeSrc":"436:50:125","nodeType":"YulFunctionCall","src":"436:50:125"},"nativeSrc":"436:50:125","nodeType":"YulExpressionStatement","src":"436:50:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"510:9:125","nodeType":"YulIdentifier","src":"510:9:125"},{"name":"length","nativeSrc":"521:6:125","nodeType":"YulIdentifier","src":"521:6:125"}],"functionName":{"name":"add","nativeSrc":"506:3:125","nodeType":"YulIdentifier","src":"506:3:125"},"nativeSrc":"506:22:125","nodeType":"YulFunctionCall","src":"506:22:125"},{"kind":"number","nativeSrc":"530:2:125","nodeType":"YulLiteral","src":"530:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"502:3:125","nodeType":"YulIdentifier","src":"502:3:125"},"nativeSrc":"502:31:125","nodeType":"YulFunctionCall","src":"502:31:125"},{"kind":"number","nativeSrc":"535:1:125","nodeType":"YulLiteral","src":"535:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"495:6:125","nodeType":"YulIdentifier","src":"495:6:125"},"nativeSrc":"495:42:125","nodeType":"YulFunctionCall","src":"495:42:125"},"nativeSrc":"495:42:125","nodeType":"YulExpressionStatement","src":"495:42:125"},{"nativeSrc":"546:62:125","nodeType":"YulAssignment","src":"546:62:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"562:9:125","nodeType":"YulIdentifier","src":"562:9:125"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"581:6:125","nodeType":"YulIdentifier","src":"581:6:125"},{"kind":"number","nativeSrc":"589:2:125","nodeType":"YulLiteral","src":"589:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"577:3:125","nodeType":"YulIdentifier","src":"577:3:125"},"nativeSrc":"577:15:125","nodeType":"YulFunctionCall","src":"577:15:125"},{"arguments":[{"kind":"number","nativeSrc":"598:2:125","nodeType":"YulLiteral","src":"598:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"594:3:125","nodeType":"YulIdentifier","src":"594:3:125"},"nativeSrc":"594:7:125","nodeType":"YulFunctionCall","src":"594:7:125"}],"functionName":{"name":"and","nativeSrc":"573:3:125","nodeType":"YulIdentifier","src":"573:3:125"},"nativeSrc":"573:29:125","nodeType":"YulFunctionCall","src":"573:29:125"}],"functionName":{"name":"add","nativeSrc":"558:3:125","nodeType":"YulIdentifier","src":"558:3:125"},"nativeSrc":"558:45:125","nodeType":"YulFunctionCall","src":"558:45:125"},{"kind":"number","nativeSrc":"605:2:125","nodeType":"YulLiteral","src":"605:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"554:3:125","nodeType":"YulIdentifier","src":"554:3:125"},"nativeSrc":"554:54:125","nodeType":"YulFunctionCall","src":"554:54:125"},"variableNames":[{"name":"tail","nativeSrc":"546:4:125","nodeType":"YulIdentifier","src":"546:4:125"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"196:418:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"286:9:125","nodeType":"YulTypedName","src":"286:9:125","type":""},{"name":"value0","nativeSrc":"297:6:125","nodeType":"YulTypedName","src":"297:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"308:4:125","nodeType":"YulTypedName","src":"308:4:125","type":""}],"src":"196:418:125"},{"body":{"nativeSrc":"689:156:125","nodeType":"YulBlock","src":"689:156:125","statements":[{"body":{"nativeSrc":"735:16:125","nodeType":"YulBlock","src":"735:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"744:1:125","nodeType":"YulLiteral","src":"744:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"747:1:125","nodeType":"YulLiteral","src":"747:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"737:6:125","nodeType":"YulIdentifier","src":"737:6:125"},"nativeSrc":"737:12:125","nodeType":"YulFunctionCall","src":"737:12:125"},"nativeSrc":"737:12:125","nodeType":"YulExpressionStatement","src":"737:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"710:7:125","nodeType":"YulIdentifier","src":"710:7:125"},{"name":"headStart","nativeSrc":"719:9:125","nodeType":"YulIdentifier","src":"719:9:125"}],"functionName":{"name":"sub","nativeSrc":"706:3:125","nodeType":"YulIdentifier","src":"706:3:125"},"nativeSrc":"706:23:125","nodeType":"YulFunctionCall","src":"706:23:125"},{"kind":"number","nativeSrc":"731:2:125","nodeType":"YulLiteral","src":"731:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"702:3:125","nodeType":"YulIdentifier","src":"702:3:125"},"nativeSrc":"702:32:125","nodeType":"YulFunctionCall","src":"702:32:125"},"nativeSrc":"699:52:125","nodeType":"YulIf","src":"699:52:125"},{"nativeSrc":"760:14:125","nodeType":"YulVariableDeclaration","src":"760:14:125","value":{"kind":"number","nativeSrc":"773:1:125","nodeType":"YulLiteral","src":"773:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"764:5:125","nodeType":"YulTypedName","src":"764:5:125","type":""}]},{"nativeSrc":"783:32:125","nodeType":"YulAssignment","src":"783:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"805:9:125","nodeType":"YulIdentifier","src":"805:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"792:12:125","nodeType":"YulIdentifier","src":"792:12:125"},"nativeSrc":"792:23:125","nodeType":"YulFunctionCall","src":"792:23:125"},"variableNames":[{"name":"value","nativeSrc":"783:5:125","nodeType":"YulIdentifier","src":"783:5:125"}]},{"nativeSrc":"824:15:125","nodeType":"YulAssignment","src":"824:15:125","value":{"name":"value","nativeSrc":"834:5:125","nodeType":"YulIdentifier","src":"834:5:125"},"variableNames":[{"name":"value0","nativeSrc":"824:6:125","nodeType":"YulIdentifier","src":"824:6:125"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"619:226:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"655:9:125","nodeType":"YulTypedName","src":"655:9:125","type":""},{"name":"dataEnd","nativeSrc":"666:7:125","nodeType":"YulTypedName","src":"666:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"678:6:125","nodeType":"YulTypedName","src":"678:6:125","type":""}],"src":"619:226:125"},{"body":{"nativeSrc":"899:124:125","nodeType":"YulBlock","src":"899:124:125","statements":[{"nativeSrc":"909:29:125","nodeType":"YulAssignment","src":"909:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"931:6:125","nodeType":"YulIdentifier","src":"931:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"918:12:125","nodeType":"YulIdentifier","src":"918:12:125"},"nativeSrc":"918:20:125","nodeType":"YulFunctionCall","src":"918:20:125"},"variableNames":[{"name":"value","nativeSrc":"909:5:125","nodeType":"YulIdentifier","src":"909:5:125"}]},{"body":{"nativeSrc":"1001:16:125","nodeType":"YulBlock","src":"1001:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1010:1:125","nodeType":"YulLiteral","src":"1010:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1013:1:125","nodeType":"YulLiteral","src":"1013:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1003:6:125","nodeType":"YulIdentifier","src":"1003:6:125"},"nativeSrc":"1003:12:125","nodeType":"YulFunctionCall","src":"1003:12:125"},"nativeSrc":"1003:12:125","nodeType":"YulExpressionStatement","src":"1003:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"960:5:125","nodeType":"YulIdentifier","src":"960:5:125"},{"arguments":[{"name":"value","nativeSrc":"971:5:125","nodeType":"YulIdentifier","src":"971:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"986:3:125","nodeType":"YulLiteral","src":"986:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"991:1:125","nodeType":"YulLiteral","src":"991:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"982:3:125","nodeType":"YulIdentifier","src":"982:3:125"},"nativeSrc":"982:11:125","nodeType":"YulFunctionCall","src":"982:11:125"},{"kind":"number","nativeSrc":"995:1:125","nodeType":"YulLiteral","src":"995:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"978:3:125","nodeType":"YulIdentifier","src":"978:3:125"},"nativeSrc":"978:19:125","nodeType":"YulFunctionCall","src":"978:19:125"}],"functionName":{"name":"and","nativeSrc":"967:3:125","nodeType":"YulIdentifier","src":"967:3:125"},"nativeSrc":"967:31:125","nodeType":"YulFunctionCall","src":"967:31:125"}],"functionName":{"name":"eq","nativeSrc":"957:2:125","nodeType":"YulIdentifier","src":"957:2:125"},"nativeSrc":"957:42:125","nodeType":"YulFunctionCall","src":"957:42:125"}],"functionName":{"name":"iszero","nativeSrc":"950:6:125","nodeType":"YulIdentifier","src":"950:6:125"},"nativeSrc":"950:50:125","nodeType":"YulFunctionCall","src":"950:50:125"},"nativeSrc":"947:70:125","nodeType":"YulIf","src":"947:70:125"}]},"name":"abi_decode_address","nativeSrc":"850:173:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"878:6:125","nodeType":"YulTypedName","src":"878:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"889:5:125","nodeType":"YulTypedName","src":"889:5:125","type":""}],"src":"850:173:125"},{"body":{"nativeSrc":"1115:213:125","nodeType":"YulBlock","src":"1115:213:125","statements":[{"body":{"nativeSrc":"1161:16:125","nodeType":"YulBlock","src":"1161:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1170:1:125","nodeType":"YulLiteral","src":"1170:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1173:1:125","nodeType":"YulLiteral","src":"1173:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1163:6:125","nodeType":"YulIdentifier","src":"1163:6:125"},"nativeSrc":"1163:12:125","nodeType":"YulFunctionCall","src":"1163:12:125"},"nativeSrc":"1163:12:125","nodeType":"YulExpressionStatement","src":"1163:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1136:7:125","nodeType":"YulIdentifier","src":"1136:7:125"},{"name":"headStart","nativeSrc":"1145:9:125","nodeType":"YulIdentifier","src":"1145:9:125"}],"functionName":{"name":"sub","nativeSrc":"1132:3:125","nodeType":"YulIdentifier","src":"1132:3:125"},"nativeSrc":"1132:23:125","nodeType":"YulFunctionCall","src":"1132:23:125"},{"kind":"number","nativeSrc":"1157:2:125","nodeType":"YulLiteral","src":"1157:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1128:3:125","nodeType":"YulIdentifier","src":"1128:3:125"},"nativeSrc":"1128:32:125","nodeType":"YulFunctionCall","src":"1128:32:125"},"nativeSrc":"1125:52:125","nodeType":"YulIf","src":"1125:52:125"},{"nativeSrc":"1186:39:125","nodeType":"YulAssignment","src":"1186:39:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1215:9:125","nodeType":"YulIdentifier","src":"1215:9:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1196:18:125","nodeType":"YulIdentifier","src":"1196:18:125"},"nativeSrc":"1196:29:125","nodeType":"YulFunctionCall","src":"1196:29:125"},"variableNames":[{"name":"value0","nativeSrc":"1186:6:125","nodeType":"YulIdentifier","src":"1186:6:125"}]},{"nativeSrc":"1234:14:125","nodeType":"YulVariableDeclaration","src":"1234:14:125","value":{"kind":"number","nativeSrc":"1247:1:125","nodeType":"YulLiteral","src":"1247:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1238:5:125","nodeType":"YulTypedName","src":"1238:5:125","type":""}]},{"nativeSrc":"1257:41:125","nodeType":"YulAssignment","src":"1257:41:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1283:9:125","nodeType":"YulIdentifier","src":"1283:9:125"},{"kind":"number","nativeSrc":"1294:2:125","nodeType":"YulLiteral","src":"1294:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1279:3:125","nodeType":"YulIdentifier","src":"1279:3:125"},"nativeSrc":"1279:18:125","nodeType":"YulFunctionCall","src":"1279:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"1266:12:125","nodeType":"YulIdentifier","src":"1266:12:125"},"nativeSrc":"1266:32:125","nodeType":"YulFunctionCall","src":"1266:32:125"},"variableNames":[{"name":"value","nativeSrc":"1257:5:125","nodeType":"YulIdentifier","src":"1257:5:125"}]},{"nativeSrc":"1307:15:125","nodeType":"YulAssignment","src":"1307:15:125","value":{"name":"value","nativeSrc":"1317:5:125","nodeType":"YulIdentifier","src":"1317:5:125"},"variableNames":[{"name":"value1","nativeSrc":"1307:6:125","nodeType":"YulIdentifier","src":"1307:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"1028:300:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1073:9:125","nodeType":"YulTypedName","src":"1073:9:125","type":""},{"name":"dataEnd","nativeSrc":"1084:7:125","nodeType":"YulTypedName","src":"1084:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1096:6:125","nodeType":"YulTypedName","src":"1096:6:125","type":""},{"name":"value1","nativeSrc":"1104:6:125","nodeType":"YulTypedName","src":"1104:6:125","type":""}],"src":"1028:300:125"},{"body":{"nativeSrc":"1428:92:125","nodeType":"YulBlock","src":"1428:92:125","statements":[{"nativeSrc":"1438:26:125","nodeType":"YulAssignment","src":"1438:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1450:9:125","nodeType":"YulIdentifier","src":"1450:9:125"},{"kind":"number","nativeSrc":"1461:2:125","nodeType":"YulLiteral","src":"1461:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1446:3:125","nodeType":"YulIdentifier","src":"1446:3:125"},"nativeSrc":"1446:18:125","nodeType":"YulFunctionCall","src":"1446:18:125"},"variableNames":[{"name":"tail","nativeSrc":"1438:4:125","nodeType":"YulIdentifier","src":"1438:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1480:9:125","nodeType":"YulIdentifier","src":"1480:9:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"1505:6:125","nodeType":"YulIdentifier","src":"1505:6:125"}],"functionName":{"name":"iszero","nativeSrc":"1498:6:125","nodeType":"YulIdentifier","src":"1498:6:125"},"nativeSrc":"1498:14:125","nodeType":"YulFunctionCall","src":"1498:14:125"}],"functionName":{"name":"iszero","nativeSrc":"1491:6:125","nodeType":"YulIdentifier","src":"1491:6:125"},"nativeSrc":"1491:22:125","nodeType":"YulFunctionCall","src":"1491:22:125"}],"functionName":{"name":"mstore","nativeSrc":"1473:6:125","nodeType":"YulIdentifier","src":"1473:6:125"},"nativeSrc":"1473:41:125","nodeType":"YulFunctionCall","src":"1473:41:125"},"nativeSrc":"1473:41:125","nodeType":"YulExpressionStatement","src":"1473:41:125"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"1333:187:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1397:9:125","nodeType":"YulTypedName","src":"1397:9:125","type":""},{"name":"value0","nativeSrc":"1408:6:125","nodeType":"YulTypedName","src":"1408:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1419:4:125","nodeType":"YulTypedName","src":"1419:4:125","type":""}],"src":"1333:187:125"},{"body":{"nativeSrc":"1629:270:125","nodeType":"YulBlock","src":"1629:270:125","statements":[{"body":{"nativeSrc":"1675:16:125","nodeType":"YulBlock","src":"1675:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1684:1:125","nodeType":"YulLiteral","src":"1684:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1687:1:125","nodeType":"YulLiteral","src":"1687:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1677:6:125","nodeType":"YulIdentifier","src":"1677:6:125"},"nativeSrc":"1677:12:125","nodeType":"YulFunctionCall","src":"1677:12:125"},"nativeSrc":"1677:12:125","nodeType":"YulExpressionStatement","src":"1677:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1650:7:125","nodeType":"YulIdentifier","src":"1650:7:125"},{"name":"headStart","nativeSrc":"1659:9:125","nodeType":"YulIdentifier","src":"1659:9:125"}],"functionName":{"name":"sub","nativeSrc":"1646:3:125","nodeType":"YulIdentifier","src":"1646:3:125"},"nativeSrc":"1646:23:125","nodeType":"YulFunctionCall","src":"1646:23:125"},{"kind":"number","nativeSrc":"1671:2:125","nodeType":"YulLiteral","src":"1671:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"1642:3:125","nodeType":"YulIdentifier","src":"1642:3:125"},"nativeSrc":"1642:32:125","nodeType":"YulFunctionCall","src":"1642:32:125"},"nativeSrc":"1639:52:125","nodeType":"YulIf","src":"1639:52:125"},{"nativeSrc":"1700:39:125","nodeType":"YulAssignment","src":"1700:39:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1729:9:125","nodeType":"YulIdentifier","src":"1729:9:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1710:18:125","nodeType":"YulIdentifier","src":"1710:18:125"},"nativeSrc":"1710:29:125","nodeType":"YulFunctionCall","src":"1710:29:125"},"variableNames":[{"name":"value0","nativeSrc":"1700:6:125","nodeType":"YulIdentifier","src":"1700:6:125"}]},{"nativeSrc":"1748:48:125","nodeType":"YulAssignment","src":"1748:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1781:9:125","nodeType":"YulIdentifier","src":"1781:9:125"},{"kind":"number","nativeSrc":"1792:2:125","nodeType":"YulLiteral","src":"1792:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1777:3:125","nodeType":"YulIdentifier","src":"1777:3:125"},"nativeSrc":"1777:18:125","nodeType":"YulFunctionCall","src":"1777:18:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1758:18:125","nodeType":"YulIdentifier","src":"1758:18:125"},"nativeSrc":"1758:38:125","nodeType":"YulFunctionCall","src":"1758:38:125"},"variableNames":[{"name":"value1","nativeSrc":"1748:6:125","nodeType":"YulIdentifier","src":"1748:6:125"}]},{"nativeSrc":"1805:14:125","nodeType":"YulVariableDeclaration","src":"1805:14:125","value":{"kind":"number","nativeSrc":"1818:1:125","nodeType":"YulLiteral","src":"1818:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1809:5:125","nodeType":"YulTypedName","src":"1809:5:125","type":""}]},{"nativeSrc":"1828:41:125","nodeType":"YulAssignment","src":"1828:41:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1854:9:125","nodeType":"YulIdentifier","src":"1854:9:125"},{"kind":"number","nativeSrc":"1865:2:125","nodeType":"YulLiteral","src":"1865:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1850:3:125","nodeType":"YulIdentifier","src":"1850:3:125"},"nativeSrc":"1850:18:125","nodeType":"YulFunctionCall","src":"1850:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"1837:12:125","nodeType":"YulIdentifier","src":"1837:12:125"},"nativeSrc":"1837:32:125","nodeType":"YulFunctionCall","src":"1837:32:125"},"variableNames":[{"name":"value","nativeSrc":"1828:5:125","nodeType":"YulIdentifier","src":"1828:5:125"}]},{"nativeSrc":"1878:15:125","nodeType":"YulAssignment","src":"1878:15:125","value":{"name":"value","nativeSrc":"1888:5:125","nodeType":"YulIdentifier","src":"1888:5:125"},"variableNames":[{"name":"value2","nativeSrc":"1878:6:125","nodeType":"YulIdentifier","src":"1878:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"1525:374:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1579:9:125","nodeType":"YulTypedName","src":"1579:9:125","type":""},{"name":"dataEnd","nativeSrc":"1590:7:125","nodeType":"YulTypedName","src":"1590:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1602:6:125","nodeType":"YulTypedName","src":"1602:6:125","type":""},{"name":"value1","nativeSrc":"1610:6:125","nodeType":"YulTypedName","src":"1610:6:125","type":""},{"name":"value2","nativeSrc":"1618:6:125","nodeType":"YulTypedName","src":"1618:6:125","type":""}],"src":"1525:374:125"},{"body":{"nativeSrc":"2001:87:125","nodeType":"YulBlock","src":"2001:87:125","statements":[{"nativeSrc":"2011:26:125","nodeType":"YulAssignment","src":"2011:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2023:9:125","nodeType":"YulIdentifier","src":"2023:9:125"},{"kind":"number","nativeSrc":"2034:2:125","nodeType":"YulLiteral","src":"2034:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2019:3:125","nodeType":"YulIdentifier","src":"2019:3:125"},"nativeSrc":"2019:18:125","nodeType":"YulFunctionCall","src":"2019:18:125"},"variableNames":[{"name":"tail","nativeSrc":"2011:4:125","nodeType":"YulIdentifier","src":"2011:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2053:9:125","nodeType":"YulIdentifier","src":"2053:9:125"},{"arguments":[{"name":"value0","nativeSrc":"2068:6:125","nodeType":"YulIdentifier","src":"2068:6:125"},{"kind":"number","nativeSrc":"2076:4:125","nodeType":"YulLiteral","src":"2076:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"2064:3:125","nodeType":"YulIdentifier","src":"2064:3:125"},"nativeSrc":"2064:17:125","nodeType":"YulFunctionCall","src":"2064:17:125"}],"functionName":{"name":"mstore","nativeSrc":"2046:6:125","nodeType":"YulIdentifier","src":"2046:6:125"},"nativeSrc":"2046:36:125","nodeType":"YulFunctionCall","src":"2046:36:125"},"nativeSrc":"2046:36:125","nodeType":"YulExpressionStatement","src":"2046:36:125"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"1904:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1970:9:125","nodeType":"YulTypedName","src":"1970:9:125","type":""},{"name":"value0","nativeSrc":"1981:6:125","nodeType":"YulTypedName","src":"1981:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1992:4:125","nodeType":"YulTypedName","src":"1992:4:125","type":""}],"src":"1904:184:125"},{"body":{"nativeSrc":"2194:102:125","nodeType":"YulBlock","src":"2194:102:125","statements":[{"nativeSrc":"2204:26:125","nodeType":"YulAssignment","src":"2204:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2216:9:125","nodeType":"YulIdentifier","src":"2216:9:125"},{"kind":"number","nativeSrc":"2227:2:125","nodeType":"YulLiteral","src":"2227:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2212:3:125","nodeType":"YulIdentifier","src":"2212:3:125"},"nativeSrc":"2212:18:125","nodeType":"YulFunctionCall","src":"2212:18:125"},"variableNames":[{"name":"tail","nativeSrc":"2204:4:125","nodeType":"YulIdentifier","src":"2204:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2246:9:125","nodeType":"YulIdentifier","src":"2246:9:125"},{"arguments":[{"name":"value0","nativeSrc":"2261:6:125","nodeType":"YulIdentifier","src":"2261:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2277:3:125","nodeType":"YulLiteral","src":"2277:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"2282:1:125","nodeType":"YulLiteral","src":"2282:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2273:3:125","nodeType":"YulIdentifier","src":"2273:3:125"},"nativeSrc":"2273:11:125","nodeType":"YulFunctionCall","src":"2273:11:125"},{"kind":"number","nativeSrc":"2286:1:125","nodeType":"YulLiteral","src":"2286:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2269:3:125","nodeType":"YulIdentifier","src":"2269:3:125"},"nativeSrc":"2269:19:125","nodeType":"YulFunctionCall","src":"2269:19:125"}],"functionName":{"name":"and","nativeSrc":"2257:3:125","nodeType":"YulIdentifier","src":"2257:3:125"},"nativeSrc":"2257:32:125","nodeType":"YulFunctionCall","src":"2257:32:125"}],"functionName":{"name":"mstore","nativeSrc":"2239:6:125","nodeType":"YulIdentifier","src":"2239:6:125"},"nativeSrc":"2239:51:125","nodeType":"YulFunctionCall","src":"2239:51:125"},"nativeSrc":"2239:51:125","nodeType":"YulExpressionStatement","src":"2239:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"2093:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2163:9:125","nodeType":"YulTypedName","src":"2163:9:125","type":""},{"name":"value0","nativeSrc":"2174:6:125","nodeType":"YulTypedName","src":"2174:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2185:4:125","nodeType":"YulTypedName","src":"2185:4:125","type":""}],"src":"2093:203:125"},{"body":{"nativeSrc":"2371:116:125","nodeType":"YulBlock","src":"2371:116:125","statements":[{"body":{"nativeSrc":"2417:16:125","nodeType":"YulBlock","src":"2417:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2426:1:125","nodeType":"YulLiteral","src":"2426:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2429:1:125","nodeType":"YulLiteral","src":"2429:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2419:6:125","nodeType":"YulIdentifier","src":"2419:6:125"},"nativeSrc":"2419:12:125","nodeType":"YulFunctionCall","src":"2419:12:125"},"nativeSrc":"2419:12:125","nodeType":"YulExpressionStatement","src":"2419:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2392:7:125","nodeType":"YulIdentifier","src":"2392:7:125"},{"name":"headStart","nativeSrc":"2401:9:125","nodeType":"YulIdentifier","src":"2401:9:125"}],"functionName":{"name":"sub","nativeSrc":"2388:3:125","nodeType":"YulIdentifier","src":"2388:3:125"},"nativeSrc":"2388:23:125","nodeType":"YulFunctionCall","src":"2388:23:125"},{"kind":"number","nativeSrc":"2413:2:125","nodeType":"YulLiteral","src":"2413:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"2384:3:125","nodeType":"YulIdentifier","src":"2384:3:125"},"nativeSrc":"2384:32:125","nodeType":"YulFunctionCall","src":"2384:32:125"},"nativeSrc":"2381:52:125","nodeType":"YulIf","src":"2381:52:125"},{"nativeSrc":"2442:39:125","nodeType":"YulAssignment","src":"2442:39:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2471:9:125","nodeType":"YulIdentifier","src":"2471:9:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2452:18:125","nodeType":"YulIdentifier","src":"2452:18:125"},"nativeSrc":"2452:29:125","nodeType":"YulFunctionCall","src":"2452:29:125"},"variableNames":[{"name":"value0","nativeSrc":"2442:6:125","nodeType":"YulIdentifier","src":"2442:6:125"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"2301:186:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2337:9:125","nodeType":"YulTypedName","src":"2337:9:125","type":""},{"name":"dataEnd","nativeSrc":"2348:7:125","nodeType":"YulTypedName","src":"2348:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2360:6:125","nodeType":"YulTypedName","src":"2360:6:125","type":""}],"src":"2301:186:125"},{"body":{"nativeSrc":"2579:213:125","nodeType":"YulBlock","src":"2579:213:125","statements":[{"body":{"nativeSrc":"2625:16:125","nodeType":"YulBlock","src":"2625:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2634:1:125","nodeType":"YulLiteral","src":"2634:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2637:1:125","nodeType":"YulLiteral","src":"2637:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2627:6:125","nodeType":"YulIdentifier","src":"2627:6:125"},"nativeSrc":"2627:12:125","nodeType":"YulFunctionCall","src":"2627:12:125"},"nativeSrc":"2627:12:125","nodeType":"YulExpressionStatement","src":"2627:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2600:7:125","nodeType":"YulIdentifier","src":"2600:7:125"},{"name":"headStart","nativeSrc":"2609:9:125","nodeType":"YulIdentifier","src":"2609:9:125"}],"functionName":{"name":"sub","nativeSrc":"2596:3:125","nodeType":"YulIdentifier","src":"2596:3:125"},"nativeSrc":"2596:23:125","nodeType":"YulFunctionCall","src":"2596:23:125"},{"kind":"number","nativeSrc":"2621:2:125","nodeType":"YulLiteral","src":"2621:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2592:3:125","nodeType":"YulIdentifier","src":"2592:3:125"},"nativeSrc":"2592:32:125","nodeType":"YulFunctionCall","src":"2592:32:125"},"nativeSrc":"2589:52:125","nodeType":"YulIf","src":"2589:52:125"},{"nativeSrc":"2650:14:125","nodeType":"YulVariableDeclaration","src":"2650:14:125","value":{"kind":"number","nativeSrc":"2663:1:125","nodeType":"YulLiteral","src":"2663:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2654:5:125","nodeType":"YulTypedName","src":"2654:5:125","type":""}]},{"nativeSrc":"2673:32:125","nodeType":"YulAssignment","src":"2673:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2695:9:125","nodeType":"YulIdentifier","src":"2695:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"2682:12:125","nodeType":"YulIdentifier","src":"2682:12:125"},"nativeSrc":"2682:23:125","nodeType":"YulFunctionCall","src":"2682:23:125"},"variableNames":[{"name":"value","nativeSrc":"2673:5:125","nodeType":"YulIdentifier","src":"2673:5:125"}]},{"nativeSrc":"2714:15:125","nodeType":"YulAssignment","src":"2714:15:125","value":{"name":"value","nativeSrc":"2724:5:125","nodeType":"YulIdentifier","src":"2724:5:125"},"variableNames":[{"name":"value0","nativeSrc":"2714:6:125","nodeType":"YulIdentifier","src":"2714:6:125"}]},{"nativeSrc":"2738:48:125","nodeType":"YulAssignment","src":"2738:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2771:9:125","nodeType":"YulIdentifier","src":"2771:9:125"},{"kind":"number","nativeSrc":"2782:2:125","nodeType":"YulLiteral","src":"2782:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2767:3:125","nodeType":"YulIdentifier","src":"2767:3:125"},"nativeSrc":"2767:18:125","nodeType":"YulFunctionCall","src":"2767:18:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2748:18:125","nodeType":"YulIdentifier","src":"2748:18:125"},"nativeSrc":"2748:38:125","nodeType":"YulFunctionCall","src":"2748:38:125"},"variableNames":[{"name":"value1","nativeSrc":"2738:6:125","nodeType":"YulIdentifier","src":"2738:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_address","nativeSrc":"2492:300:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2537:9:125","nodeType":"YulTypedName","src":"2537:9:125","type":""},{"name":"dataEnd","nativeSrc":"2548:7:125","nodeType":"YulTypedName","src":"2548:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2560:6:125","nodeType":"YulTypedName","src":"2560:6:125","type":""},{"name":"value1","nativeSrc":"2568:6:125","nodeType":"YulTypedName","src":"2568:6:125","type":""}],"src":"2492:300:125"},{"body":{"nativeSrc":"2864:206:125","nodeType":"YulBlock","src":"2864:206:125","statements":[{"body":{"nativeSrc":"2910:16:125","nodeType":"YulBlock","src":"2910:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2919:1:125","nodeType":"YulLiteral","src":"2919:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2922:1:125","nodeType":"YulLiteral","src":"2922:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2912:6:125","nodeType":"YulIdentifier","src":"2912:6:125"},"nativeSrc":"2912:12:125","nodeType":"YulFunctionCall","src":"2912:12:125"},"nativeSrc":"2912:12:125","nodeType":"YulExpressionStatement","src":"2912:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2885:7:125","nodeType":"YulIdentifier","src":"2885:7:125"},{"name":"headStart","nativeSrc":"2894:9:125","nodeType":"YulIdentifier","src":"2894:9:125"}],"functionName":{"name":"sub","nativeSrc":"2881:3:125","nodeType":"YulIdentifier","src":"2881:3:125"},"nativeSrc":"2881:23:125","nodeType":"YulFunctionCall","src":"2881:23:125"},{"kind":"number","nativeSrc":"2906:2:125","nodeType":"YulLiteral","src":"2906:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"2877:3:125","nodeType":"YulIdentifier","src":"2877:3:125"},"nativeSrc":"2877:32:125","nodeType":"YulFunctionCall","src":"2877:32:125"},"nativeSrc":"2874:52:125","nodeType":"YulIf","src":"2874:52:125"},{"nativeSrc":"2935:36:125","nodeType":"YulVariableDeclaration","src":"2935:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2961:9:125","nodeType":"YulIdentifier","src":"2961:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"2948:12:125","nodeType":"YulIdentifier","src":"2948:12:125"},"nativeSrc":"2948:23:125","nodeType":"YulFunctionCall","src":"2948:23:125"},"variables":[{"name":"value","nativeSrc":"2939:5:125","nodeType":"YulTypedName","src":"2939:5:125","type":""}]},{"body":{"nativeSrc":"3024:16:125","nodeType":"YulBlock","src":"3024:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3033:1:125","nodeType":"YulLiteral","src":"3033:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3036:1:125","nodeType":"YulLiteral","src":"3036:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3026:6:125","nodeType":"YulIdentifier","src":"3026:6:125"},"nativeSrc":"3026:12:125","nodeType":"YulFunctionCall","src":"3026:12:125"},"nativeSrc":"3026:12:125","nodeType":"YulExpressionStatement","src":"3026:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2993:5:125","nodeType":"YulIdentifier","src":"2993:5:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3014:5:125","nodeType":"YulIdentifier","src":"3014:5:125"}],"functionName":{"name":"iszero","nativeSrc":"3007:6:125","nodeType":"YulIdentifier","src":"3007:6:125"},"nativeSrc":"3007:13:125","nodeType":"YulFunctionCall","src":"3007:13:125"}],"functionName":{"name":"iszero","nativeSrc":"3000:6:125","nodeType":"YulIdentifier","src":"3000:6:125"},"nativeSrc":"3000:21:125","nodeType":"YulFunctionCall","src":"3000:21:125"}],"functionName":{"name":"eq","nativeSrc":"2990:2:125","nodeType":"YulIdentifier","src":"2990:2:125"},"nativeSrc":"2990:32:125","nodeType":"YulFunctionCall","src":"2990:32:125"}],"functionName":{"name":"iszero","nativeSrc":"2983:6:125","nodeType":"YulIdentifier","src":"2983:6:125"},"nativeSrc":"2983:40:125","nodeType":"YulFunctionCall","src":"2983:40:125"},"nativeSrc":"2980:60:125","nodeType":"YulIf","src":"2980:60:125"},{"nativeSrc":"3049:15:125","nodeType":"YulAssignment","src":"3049:15:125","value":{"name":"value","nativeSrc":"3059:5:125","nodeType":"YulIdentifier","src":"3059:5:125"},"variableNames":[{"name":"value0","nativeSrc":"3049:6:125","nodeType":"YulIdentifier","src":"3049:6:125"}]}]},"name":"abi_decode_tuple_t_bool","nativeSrc":"2797:273:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2830:9:125","nodeType":"YulTypedName","src":"2830:9:125","type":""},{"name":"dataEnd","nativeSrc":"2841:7:125","nodeType":"YulTypedName","src":"2841:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2853:6:125","nodeType":"YulTypedName","src":"2853:6:125","type":""}],"src":"2797:273:125"},{"body":{"nativeSrc":"3179:270:125","nodeType":"YulBlock","src":"3179:270:125","statements":[{"body":{"nativeSrc":"3225:16:125","nodeType":"YulBlock","src":"3225:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3234:1:125","nodeType":"YulLiteral","src":"3234:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3237:1:125","nodeType":"YulLiteral","src":"3237:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3227:6:125","nodeType":"YulIdentifier","src":"3227:6:125"},"nativeSrc":"3227:12:125","nodeType":"YulFunctionCall","src":"3227:12:125"},"nativeSrc":"3227:12:125","nodeType":"YulExpressionStatement","src":"3227:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3200:7:125","nodeType":"YulIdentifier","src":"3200:7:125"},{"name":"headStart","nativeSrc":"3209:9:125","nodeType":"YulIdentifier","src":"3209:9:125"}],"functionName":{"name":"sub","nativeSrc":"3196:3:125","nodeType":"YulIdentifier","src":"3196:3:125"},"nativeSrc":"3196:23:125","nodeType":"YulFunctionCall","src":"3196:23:125"},{"kind":"number","nativeSrc":"3221:2:125","nodeType":"YulLiteral","src":"3221:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"3192:3:125","nodeType":"YulIdentifier","src":"3192:3:125"},"nativeSrc":"3192:32:125","nodeType":"YulFunctionCall","src":"3192:32:125"},"nativeSrc":"3189:52:125","nodeType":"YulIf","src":"3189:52:125"},{"nativeSrc":"3250:14:125","nodeType":"YulVariableDeclaration","src":"3250:14:125","value":{"kind":"number","nativeSrc":"3263:1:125","nodeType":"YulLiteral","src":"3263:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3254:5:125","nodeType":"YulTypedName","src":"3254:5:125","type":""}]},{"nativeSrc":"3273:32:125","nodeType":"YulAssignment","src":"3273:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3295:9:125","nodeType":"YulIdentifier","src":"3295:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"3282:12:125","nodeType":"YulIdentifier","src":"3282:12:125"},"nativeSrc":"3282:23:125","nodeType":"YulFunctionCall","src":"3282:23:125"},"variableNames":[{"name":"value","nativeSrc":"3273:5:125","nodeType":"YulIdentifier","src":"3273:5:125"}]},{"nativeSrc":"3314:15:125","nodeType":"YulAssignment","src":"3314:15:125","value":{"name":"value","nativeSrc":"3324:5:125","nodeType":"YulIdentifier","src":"3324:5:125"},"variableNames":[{"name":"value0","nativeSrc":"3314:6:125","nodeType":"YulIdentifier","src":"3314:6:125"}]},{"nativeSrc":"3338:48:125","nodeType":"YulAssignment","src":"3338:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3371:9:125","nodeType":"YulIdentifier","src":"3371:9:125"},{"kind":"number","nativeSrc":"3382:2:125","nodeType":"YulLiteral","src":"3382:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3367:3:125","nodeType":"YulIdentifier","src":"3367:3:125"},"nativeSrc":"3367:18:125","nodeType":"YulFunctionCall","src":"3367:18:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3348:18:125","nodeType":"YulIdentifier","src":"3348:18:125"},"nativeSrc":"3348:38:125","nodeType":"YulFunctionCall","src":"3348:38:125"},"variableNames":[{"name":"value1","nativeSrc":"3338:6:125","nodeType":"YulIdentifier","src":"3338:6:125"}]},{"nativeSrc":"3395:48:125","nodeType":"YulAssignment","src":"3395:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3428:9:125","nodeType":"YulIdentifier","src":"3428:9:125"},{"kind":"number","nativeSrc":"3439:2:125","nodeType":"YulLiteral","src":"3439:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3424:3:125","nodeType":"YulIdentifier","src":"3424:3:125"},"nativeSrc":"3424:18:125","nodeType":"YulFunctionCall","src":"3424:18:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3405:18:125","nodeType":"YulIdentifier","src":"3405:18:125"},"nativeSrc":"3405:38:125","nodeType":"YulFunctionCall","src":"3405:38:125"},"variableNames":[{"name":"value2","nativeSrc":"3395:6:125","nodeType":"YulIdentifier","src":"3395:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_addresst_address","nativeSrc":"3075:374:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3129:9:125","nodeType":"YulTypedName","src":"3129:9:125","type":""},{"name":"dataEnd","nativeSrc":"3140:7:125","nodeType":"YulTypedName","src":"3140:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3152:6:125","nodeType":"YulTypedName","src":"3152:6:125","type":""},{"name":"value1","nativeSrc":"3160:6:125","nodeType":"YulTypedName","src":"3160:6:125","type":""},{"name":"value2","nativeSrc":"3168:6:125","nodeType":"YulTypedName","src":"3168:6:125","type":""}],"src":"3075:374:125"},{"body":{"nativeSrc":"3523:110:125","nodeType":"YulBlock","src":"3523:110:125","statements":[{"body":{"nativeSrc":"3569:16:125","nodeType":"YulBlock","src":"3569:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3578:1:125","nodeType":"YulLiteral","src":"3578:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3581:1:125","nodeType":"YulLiteral","src":"3581:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3571:6:125","nodeType":"YulIdentifier","src":"3571:6:125"},"nativeSrc":"3571:12:125","nodeType":"YulFunctionCall","src":"3571:12:125"},"nativeSrc":"3571:12:125","nodeType":"YulExpressionStatement","src":"3571:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3544:7:125","nodeType":"YulIdentifier","src":"3544:7:125"},{"name":"headStart","nativeSrc":"3553:9:125","nodeType":"YulIdentifier","src":"3553:9:125"}],"functionName":{"name":"sub","nativeSrc":"3540:3:125","nodeType":"YulIdentifier","src":"3540:3:125"},"nativeSrc":"3540:23:125","nodeType":"YulFunctionCall","src":"3540:23:125"},{"kind":"number","nativeSrc":"3565:2:125","nodeType":"YulLiteral","src":"3565:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"3536:3:125","nodeType":"YulIdentifier","src":"3536:3:125"},"nativeSrc":"3536:32:125","nodeType":"YulFunctionCall","src":"3536:32:125"},"nativeSrc":"3533:52:125","nodeType":"YulIf","src":"3533:52:125"},{"nativeSrc":"3594:33:125","nodeType":"YulAssignment","src":"3594:33:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3617:9:125","nodeType":"YulIdentifier","src":"3617:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"3604:12:125","nodeType":"YulIdentifier","src":"3604:12:125"},"nativeSrc":"3604:23:125","nodeType":"YulFunctionCall","src":"3604:23:125"},"variableNames":[{"name":"value0","nativeSrc":"3594:6:125","nodeType":"YulIdentifier","src":"3594:6:125"}]}]},"name":"abi_decode_tuple_t_int256","nativeSrc":"3454:179:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3489:9:125","nodeType":"YulTypedName","src":"3489:9:125","type":""},{"name":"dataEnd","nativeSrc":"3500:7:125","nodeType":"YulTypedName","src":"3500:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3512:6:125","nodeType":"YulTypedName","src":"3512:6:125","type":""}],"src":"3454:179:125"},{"body":{"nativeSrc":"3745:289:125","nodeType":"YulBlock","src":"3745:289:125","statements":[{"body":{"nativeSrc":"3791:16:125","nodeType":"YulBlock","src":"3791:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3800:1:125","nodeType":"YulLiteral","src":"3800:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3803:1:125","nodeType":"YulLiteral","src":"3803:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3793:6:125","nodeType":"YulIdentifier","src":"3793:6:125"},"nativeSrc":"3793:12:125","nodeType":"YulFunctionCall","src":"3793:12:125"},"nativeSrc":"3793:12:125","nodeType":"YulExpressionStatement","src":"3793:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3766:7:125","nodeType":"YulIdentifier","src":"3766:7:125"},{"name":"headStart","nativeSrc":"3775:9:125","nodeType":"YulIdentifier","src":"3775:9:125"}],"functionName":{"name":"sub","nativeSrc":"3762:3:125","nodeType":"YulIdentifier","src":"3762:3:125"},"nativeSrc":"3762:23:125","nodeType":"YulFunctionCall","src":"3762:23:125"},{"kind":"number","nativeSrc":"3787:2:125","nodeType":"YulLiteral","src":"3787:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3758:3:125","nodeType":"YulIdentifier","src":"3758:3:125"},"nativeSrc":"3758:32:125","nodeType":"YulFunctionCall","src":"3758:32:125"},"nativeSrc":"3755:52:125","nodeType":"YulIf","src":"3755:52:125"},{"nativeSrc":"3816:36:125","nodeType":"YulVariableDeclaration","src":"3816:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3842:9:125","nodeType":"YulIdentifier","src":"3842:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"3829:12:125","nodeType":"YulIdentifier","src":"3829:12:125"},"nativeSrc":"3829:23:125","nodeType":"YulFunctionCall","src":"3829:23:125"},"variables":[{"name":"value","nativeSrc":"3820:5:125","nodeType":"YulTypedName","src":"3820:5:125","type":""}]},{"body":{"nativeSrc":"3885:16:125","nodeType":"YulBlock","src":"3885:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3894:1:125","nodeType":"YulLiteral","src":"3894:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3897:1:125","nodeType":"YulLiteral","src":"3897:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3887:6:125","nodeType":"YulIdentifier","src":"3887:6:125"},"nativeSrc":"3887:12:125","nodeType":"YulFunctionCall","src":"3887:12:125"},"nativeSrc":"3887:12:125","nodeType":"YulExpressionStatement","src":"3887:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3874:5:125","nodeType":"YulIdentifier","src":"3874:5:125"},{"kind":"number","nativeSrc":"3881:1:125","nodeType":"YulLiteral","src":"3881:1:125","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"3871:2:125","nodeType":"YulIdentifier","src":"3871:2:125"},"nativeSrc":"3871:12:125","nodeType":"YulFunctionCall","src":"3871:12:125"}],"functionName":{"name":"iszero","nativeSrc":"3864:6:125","nodeType":"YulIdentifier","src":"3864:6:125"},"nativeSrc":"3864:20:125","nodeType":"YulFunctionCall","src":"3864:20:125"},"nativeSrc":"3861:40:125","nodeType":"YulIf","src":"3861:40:125"},{"nativeSrc":"3910:15:125","nodeType":"YulAssignment","src":"3910:15:125","value":{"name":"value","nativeSrc":"3920:5:125","nodeType":"YulIdentifier","src":"3920:5:125"},"variableNames":[{"name":"value0","nativeSrc":"3910:6:125","nodeType":"YulIdentifier","src":"3910:6:125"}]},{"nativeSrc":"3934:16:125","nodeType":"YulVariableDeclaration","src":"3934:16:125","value":{"kind":"number","nativeSrc":"3949:1:125","nodeType":"YulLiteral","src":"3949:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"3938:7:125","nodeType":"YulTypedName","src":"3938:7:125","type":""}]},{"nativeSrc":"3959:43:125","nodeType":"YulAssignment","src":"3959:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3987:9:125","nodeType":"YulIdentifier","src":"3987:9:125"},{"kind":"number","nativeSrc":"3998:2:125","nodeType":"YulLiteral","src":"3998:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3983:3:125","nodeType":"YulIdentifier","src":"3983:3:125"},"nativeSrc":"3983:18:125","nodeType":"YulFunctionCall","src":"3983:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3970:12:125","nodeType":"YulIdentifier","src":"3970:12:125"},"nativeSrc":"3970:32:125","nodeType":"YulFunctionCall","src":"3970:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"3959:7:125","nodeType":"YulIdentifier","src":"3959:7:125"}]},{"nativeSrc":"4011:17:125","nodeType":"YulAssignment","src":"4011:17:125","value":{"name":"value_1","nativeSrc":"4021:7:125","nodeType":"YulIdentifier","src":"4021:7:125"},"variableNames":[{"name":"value1","nativeSrc":"4011:6:125","nodeType":"YulIdentifier","src":"4011:6:125"}]}]},"name":"abi_decode_tuple_t_enum$_OverrideOption_$15558t_uint256","nativeSrc":"3638:396:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3703:9:125","nodeType":"YulTypedName","src":"3703:9:125","type":""},{"name":"dataEnd","nativeSrc":"3714:7:125","nodeType":"YulTypedName","src":"3714:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3726:6:125","nodeType":"YulTypedName","src":"3726:6:125","type":""},{"name":"value1","nativeSrc":"3734:6:125","nodeType":"YulTypedName","src":"3734:6:125","type":""}],"src":"3638:396:125"},{"body":{"nativeSrc":"4126:173:125","nodeType":"YulBlock","src":"4126:173:125","statements":[{"body":{"nativeSrc":"4172:16:125","nodeType":"YulBlock","src":"4172:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4181:1:125","nodeType":"YulLiteral","src":"4181:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4184:1:125","nodeType":"YulLiteral","src":"4184:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4174:6:125","nodeType":"YulIdentifier","src":"4174:6:125"},"nativeSrc":"4174:12:125","nodeType":"YulFunctionCall","src":"4174:12:125"},"nativeSrc":"4174:12:125","nodeType":"YulExpressionStatement","src":"4174:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4147:7:125","nodeType":"YulIdentifier","src":"4147:7:125"},{"name":"headStart","nativeSrc":"4156:9:125","nodeType":"YulIdentifier","src":"4156:9:125"}],"functionName":{"name":"sub","nativeSrc":"4143:3:125","nodeType":"YulIdentifier","src":"4143:3:125"},"nativeSrc":"4143:23:125","nodeType":"YulFunctionCall","src":"4143:23:125"},{"kind":"number","nativeSrc":"4168:2:125","nodeType":"YulLiteral","src":"4168:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4139:3:125","nodeType":"YulIdentifier","src":"4139:3:125"},"nativeSrc":"4139:32:125","nodeType":"YulFunctionCall","src":"4139:32:125"},"nativeSrc":"4136:52:125","nodeType":"YulIf","src":"4136:52:125"},{"nativeSrc":"4197:39:125","nodeType":"YulAssignment","src":"4197:39:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4226:9:125","nodeType":"YulIdentifier","src":"4226:9:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"4207:18:125","nodeType":"YulIdentifier","src":"4207:18:125"},"nativeSrc":"4207:29:125","nodeType":"YulFunctionCall","src":"4207:29:125"},"variableNames":[{"name":"value0","nativeSrc":"4197:6:125","nodeType":"YulIdentifier","src":"4197:6:125"}]},{"nativeSrc":"4245:48:125","nodeType":"YulAssignment","src":"4245:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4278:9:125","nodeType":"YulIdentifier","src":"4278:9:125"},{"kind":"number","nativeSrc":"4289:2:125","nodeType":"YulLiteral","src":"4289:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4274:3:125","nodeType":"YulIdentifier","src":"4274:3:125"},"nativeSrc":"4274:18:125","nodeType":"YulFunctionCall","src":"4274:18:125"}],"functionName":{"name":"abi_decode_address","nativeSrc":"4255:18:125","nodeType":"YulIdentifier","src":"4255:18:125"},"nativeSrc":"4255:38:125","nodeType":"YulFunctionCall","src":"4255:38:125"},"variableNames":[{"name":"value1","nativeSrc":"4245:6:125","nodeType":"YulIdentifier","src":"4245:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"4039:260:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4084:9:125","nodeType":"YulTypedName","src":"4084:9:125","type":""},{"name":"dataEnd","nativeSrc":"4095:7:125","nodeType":"YulTypedName","src":"4095:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4107:6:125","nodeType":"YulTypedName","src":"4107:6:125","type":""},{"name":"value1","nativeSrc":"4115:6:125","nodeType":"YulTypedName","src":"4115:6:125","type":""}],"src":"4039:260:125"},{"body":{"nativeSrc":"4385:103:125","nodeType":"YulBlock","src":"4385:103:125","statements":[{"body":{"nativeSrc":"4431:16:125","nodeType":"YulBlock","src":"4431:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4440:1:125","nodeType":"YulLiteral","src":"4440:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4443:1:125","nodeType":"YulLiteral","src":"4443:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4433:6:125","nodeType":"YulIdentifier","src":"4433:6:125"},"nativeSrc":"4433:12:125","nodeType":"YulFunctionCall","src":"4433:12:125"},"nativeSrc":"4433:12:125","nodeType":"YulExpressionStatement","src":"4433:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4406:7:125","nodeType":"YulIdentifier","src":"4406:7:125"},{"name":"headStart","nativeSrc":"4415:9:125","nodeType":"YulIdentifier","src":"4415:9:125"}],"functionName":{"name":"sub","nativeSrc":"4402:3:125","nodeType":"YulIdentifier","src":"4402:3:125"},"nativeSrc":"4402:23:125","nodeType":"YulFunctionCall","src":"4402:23:125"},{"kind":"number","nativeSrc":"4427:2:125","nodeType":"YulLiteral","src":"4427:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"4398:3:125","nodeType":"YulIdentifier","src":"4398:3:125"},"nativeSrc":"4398:32:125","nodeType":"YulFunctionCall","src":"4398:32:125"},"nativeSrc":"4395:52:125","nodeType":"YulIf","src":"4395:52:125"},{"nativeSrc":"4456:26:125","nodeType":"YulAssignment","src":"4456:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4472:9:125","nodeType":"YulIdentifier","src":"4472:9:125"}],"functionName":{"name":"mload","nativeSrc":"4466:5:125","nodeType":"YulIdentifier","src":"4466:5:125"},"nativeSrc":"4466:16:125","nodeType":"YulFunctionCall","src":"4466:16:125"},"variableNames":[{"name":"value0","nativeSrc":"4456:6:125","nodeType":"YulIdentifier","src":"4456:6:125"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"4304:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4351:9:125","nodeType":"YulTypedName","src":"4351:9:125","type":""},{"name":"dataEnd","nativeSrc":"4362:7:125","nodeType":"YulTypedName","src":"4362:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4374:6:125","nodeType":"YulTypedName","src":"4374:6:125","type":""}],"src":"4304:184:125"},{"body":{"nativeSrc":"4548:325:125","nodeType":"YulBlock","src":"4548:325:125","statements":[{"nativeSrc":"4558:22:125","nodeType":"YulAssignment","src":"4558:22:125","value":{"arguments":[{"kind":"number","nativeSrc":"4572:1:125","nodeType":"YulLiteral","src":"4572:1:125","type":"","value":"1"},{"name":"data","nativeSrc":"4575:4:125","nodeType":"YulIdentifier","src":"4575:4:125"}],"functionName":{"name":"shr","nativeSrc":"4568:3:125","nodeType":"YulIdentifier","src":"4568:3:125"},"nativeSrc":"4568:12:125","nodeType":"YulFunctionCall","src":"4568:12:125"},"variableNames":[{"name":"length","nativeSrc":"4558:6:125","nodeType":"YulIdentifier","src":"4558:6:125"}]},{"nativeSrc":"4589:38:125","nodeType":"YulVariableDeclaration","src":"4589:38:125","value":{"arguments":[{"name":"data","nativeSrc":"4619:4:125","nodeType":"YulIdentifier","src":"4619:4:125"},{"kind":"number","nativeSrc":"4625:1:125","nodeType":"YulLiteral","src":"4625:1:125","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"4615:3:125","nodeType":"YulIdentifier","src":"4615:3:125"},"nativeSrc":"4615:12:125","nodeType":"YulFunctionCall","src":"4615:12:125"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"4593:18:125","nodeType":"YulTypedName","src":"4593:18:125","type":""}]},{"body":{"nativeSrc":"4666:31:125","nodeType":"YulBlock","src":"4666:31:125","statements":[{"nativeSrc":"4668:27:125","nodeType":"YulAssignment","src":"4668:27:125","value":{"arguments":[{"name":"length","nativeSrc":"4682:6:125","nodeType":"YulIdentifier","src":"4682:6:125"},{"kind":"number","nativeSrc":"4690:4:125","nodeType":"YulLiteral","src":"4690:4:125","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"4678:3:125","nodeType":"YulIdentifier","src":"4678:3:125"},"nativeSrc":"4678:17:125","nodeType":"YulFunctionCall","src":"4678:17:125"},"variableNames":[{"name":"length","nativeSrc":"4668:6:125","nodeType":"YulIdentifier","src":"4668:6:125"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"4646:18:125","nodeType":"YulIdentifier","src":"4646:18:125"}],"functionName":{"name":"iszero","nativeSrc":"4639:6:125","nodeType":"YulIdentifier","src":"4639:6:125"},"nativeSrc":"4639:26:125","nodeType":"YulFunctionCall","src":"4639:26:125"},"nativeSrc":"4636:61:125","nodeType":"YulIf","src":"4636:61:125"},{"body":{"nativeSrc":"4756:111:125","nodeType":"YulBlock","src":"4756:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4777:1:125","nodeType":"YulLiteral","src":"4777:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4784:3:125","nodeType":"YulLiteral","src":"4784:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"4789:10:125","nodeType":"YulLiteral","src":"4789:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4780:3:125","nodeType":"YulIdentifier","src":"4780:3:125"},"nativeSrc":"4780:20:125","nodeType":"YulFunctionCall","src":"4780:20:125"}],"functionName":{"name":"mstore","nativeSrc":"4770:6:125","nodeType":"YulIdentifier","src":"4770:6:125"},"nativeSrc":"4770:31:125","nodeType":"YulFunctionCall","src":"4770:31:125"},"nativeSrc":"4770:31:125","nodeType":"YulExpressionStatement","src":"4770:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4821:1:125","nodeType":"YulLiteral","src":"4821:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"4824:4:125","nodeType":"YulLiteral","src":"4824:4:125","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"4814:6:125","nodeType":"YulIdentifier","src":"4814:6:125"},"nativeSrc":"4814:15:125","nodeType":"YulFunctionCall","src":"4814:15:125"},"nativeSrc":"4814:15:125","nodeType":"YulExpressionStatement","src":"4814:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4849:1:125","nodeType":"YulLiteral","src":"4849:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4852:4:125","nodeType":"YulLiteral","src":"4852:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4842:6:125","nodeType":"YulIdentifier","src":"4842:6:125"},"nativeSrc":"4842:15:125","nodeType":"YulFunctionCall","src":"4842:15:125"},"nativeSrc":"4842:15:125","nodeType":"YulExpressionStatement","src":"4842:15:125"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"4712:18:125","nodeType":"YulIdentifier","src":"4712:18:125"},{"arguments":[{"name":"length","nativeSrc":"4735:6:125","nodeType":"YulIdentifier","src":"4735:6:125"},{"kind":"number","nativeSrc":"4743:2:125","nodeType":"YulLiteral","src":"4743:2:125","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"4732:2:125","nodeType":"YulIdentifier","src":"4732:2:125"},"nativeSrc":"4732:14:125","nodeType":"YulFunctionCall","src":"4732:14:125"}],"functionName":{"name":"eq","nativeSrc":"4709:2:125","nodeType":"YulIdentifier","src":"4709:2:125"},"nativeSrc":"4709:38:125","nodeType":"YulFunctionCall","src":"4709:38:125"},"nativeSrc":"4706:161:125","nodeType":"YulIf","src":"4706:161:125"}]},"name":"extract_byte_array_length","nativeSrc":"4493:380:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"4528:4:125","nodeType":"YulTypedName","src":"4528:4:125","type":""}],"returnVariables":[{"name":"length","nativeSrc":"4537:6:125","nodeType":"YulTypedName","src":"4537:6:125","type":""}],"src":"4493:380:125"},{"body":{"nativeSrc":"4910:95:125","nodeType":"YulBlock","src":"4910:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4927:1:125","nodeType":"YulLiteral","src":"4927:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4934:3:125","nodeType":"YulLiteral","src":"4934:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"4939:10:125","nodeType":"YulLiteral","src":"4939:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4930:3:125","nodeType":"YulIdentifier","src":"4930:3:125"},"nativeSrc":"4930:20:125","nodeType":"YulFunctionCall","src":"4930:20:125"}],"functionName":{"name":"mstore","nativeSrc":"4920:6:125","nodeType":"YulIdentifier","src":"4920:6:125"},"nativeSrc":"4920:31:125","nodeType":"YulFunctionCall","src":"4920:31:125"},"nativeSrc":"4920:31:125","nodeType":"YulExpressionStatement","src":"4920:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4967:1:125","nodeType":"YulLiteral","src":"4967:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"4970:4:125","nodeType":"YulLiteral","src":"4970:4:125","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"4960:6:125","nodeType":"YulIdentifier","src":"4960:6:125"},"nativeSrc":"4960:15:125","nodeType":"YulFunctionCall","src":"4960:15:125"},"nativeSrc":"4960:15:125","nodeType":"YulExpressionStatement","src":"4960:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4991:1:125","nodeType":"YulLiteral","src":"4991:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4994:4:125","nodeType":"YulLiteral","src":"4994:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4984:6:125","nodeType":"YulIdentifier","src":"4984:6:125"},"nativeSrc":"4984:15:125","nodeType":"YulFunctionCall","src":"4984:15:125"},"nativeSrc":"4984:15:125","nodeType":"YulExpressionStatement","src":"4984:15:125"}]},"name":"panic_error_0x11","nativeSrc":"4878:127:125","nodeType":"YulFunctionDefinition","src":"4878:127:125"},{"body":{"nativeSrc":"5056:102:125","nodeType":"YulBlock","src":"5056:102:125","statements":[{"nativeSrc":"5066:38:125","nodeType":"YulAssignment","src":"5066:38:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"5081:1:125","nodeType":"YulIdentifier","src":"5081:1:125"},{"kind":"number","nativeSrc":"5084:4:125","nodeType":"YulLiteral","src":"5084:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"5077:3:125","nodeType":"YulIdentifier","src":"5077:3:125"},"nativeSrc":"5077:12:125","nodeType":"YulFunctionCall","src":"5077:12:125"},{"arguments":[{"name":"y","nativeSrc":"5095:1:125","nodeType":"YulIdentifier","src":"5095:1:125"},{"kind":"number","nativeSrc":"5098:4:125","nodeType":"YulLiteral","src":"5098:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"5091:3:125","nodeType":"YulIdentifier","src":"5091:3:125"},"nativeSrc":"5091:12:125","nodeType":"YulFunctionCall","src":"5091:12:125"}],"functionName":{"name":"add","nativeSrc":"5073:3:125","nodeType":"YulIdentifier","src":"5073:3:125"},"nativeSrc":"5073:31:125","nodeType":"YulFunctionCall","src":"5073:31:125"},"variableNames":[{"name":"sum","nativeSrc":"5066:3:125","nodeType":"YulIdentifier","src":"5066:3:125"}]},{"body":{"nativeSrc":"5130:22:125","nodeType":"YulBlock","src":"5130:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"5132:16:125","nodeType":"YulIdentifier","src":"5132:16:125"},"nativeSrc":"5132:18:125","nodeType":"YulFunctionCall","src":"5132:18:125"},"nativeSrc":"5132:18:125","nodeType":"YulExpressionStatement","src":"5132:18:125"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"5119:3:125","nodeType":"YulIdentifier","src":"5119:3:125"},{"kind":"number","nativeSrc":"5124:4:125","nodeType":"YulLiteral","src":"5124:4:125","type":"","value":"0xff"}],"functionName":{"name":"gt","nativeSrc":"5116:2:125","nodeType":"YulIdentifier","src":"5116:2:125"},"nativeSrc":"5116:13:125","nodeType":"YulFunctionCall","src":"5116:13:125"},"nativeSrc":"5113:39:125","nodeType":"YulIf","src":"5113:39:125"}]},"name":"checked_add_t_uint8","nativeSrc":"5010:148:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"5039:1:125","nodeType":"YulTypedName","src":"5039:1:125","type":""},{"name":"y","nativeSrc":"5042:1:125","nodeType":"YulTypedName","src":"5042:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"5048:3:125","nodeType":"YulTypedName","src":"5048:3:125","type":""}],"src":"5010:148:125"},{"body":{"nativeSrc":"5212:79:125","nodeType":"YulBlock","src":"5212:79:125","statements":[{"nativeSrc":"5222:17:125","nodeType":"YulAssignment","src":"5222:17:125","value":{"arguments":[{"name":"x","nativeSrc":"5234:1:125","nodeType":"YulIdentifier","src":"5234:1:125"},{"name":"y","nativeSrc":"5237:1:125","nodeType":"YulIdentifier","src":"5237:1:125"}],"functionName":{"name":"sub","nativeSrc":"5230:3:125","nodeType":"YulIdentifier","src":"5230:3:125"},"nativeSrc":"5230:9:125","nodeType":"YulFunctionCall","src":"5230:9:125"},"variableNames":[{"name":"diff","nativeSrc":"5222:4:125","nodeType":"YulIdentifier","src":"5222:4:125"}]},{"body":{"nativeSrc":"5263:22:125","nodeType":"YulBlock","src":"5263:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"5265:16:125","nodeType":"YulIdentifier","src":"5265:16:125"},"nativeSrc":"5265:18:125","nodeType":"YulFunctionCall","src":"5265:18:125"},"nativeSrc":"5265:18:125","nodeType":"YulExpressionStatement","src":"5265:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"5254:4:125","nodeType":"YulIdentifier","src":"5254:4:125"},{"name":"x","nativeSrc":"5260:1:125","nodeType":"YulIdentifier","src":"5260:1:125"}],"functionName":{"name":"gt","nativeSrc":"5251:2:125","nodeType":"YulIdentifier","src":"5251:2:125"},"nativeSrc":"5251:11:125","nodeType":"YulFunctionCall","src":"5251:11:125"},"nativeSrc":"5248:37:125","nodeType":"YulIf","src":"5248:37:125"}]},"name":"checked_sub_t_uint256","nativeSrc":"5163:128:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"5194:1:125","nodeType":"YulTypedName","src":"5194:1:125","type":""},{"name":"y","nativeSrc":"5197:1:125","nodeType":"YulTypedName","src":"5197:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"5203:4:125","nodeType":"YulTypedName","src":"5203:4:125","type":""}],"src":"5163:128:125"},{"body":{"nativeSrc":"5453:188:125","nodeType":"YulBlock","src":"5453:188:125","statements":[{"nativeSrc":"5463:26:125","nodeType":"YulAssignment","src":"5463:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5475:9:125","nodeType":"YulIdentifier","src":"5475:9:125"},{"kind":"number","nativeSrc":"5486:2:125","nodeType":"YulLiteral","src":"5486:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5471:3:125","nodeType":"YulIdentifier","src":"5471:3:125"},"nativeSrc":"5471:18:125","nodeType":"YulFunctionCall","src":"5471:18:125"},"variableNames":[{"name":"tail","nativeSrc":"5463:4:125","nodeType":"YulIdentifier","src":"5463:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5505:9:125","nodeType":"YulIdentifier","src":"5505:9:125"},{"arguments":[{"name":"value0","nativeSrc":"5520:6:125","nodeType":"YulIdentifier","src":"5520:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5536:3:125","nodeType":"YulLiteral","src":"5536:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"5541:1:125","nodeType":"YulLiteral","src":"5541:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5532:3:125","nodeType":"YulIdentifier","src":"5532:3:125"},"nativeSrc":"5532:11:125","nodeType":"YulFunctionCall","src":"5532:11:125"},{"kind":"number","nativeSrc":"5545:1:125","nodeType":"YulLiteral","src":"5545:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5528:3:125","nodeType":"YulIdentifier","src":"5528:3:125"},"nativeSrc":"5528:19:125","nodeType":"YulFunctionCall","src":"5528:19:125"}],"functionName":{"name":"and","nativeSrc":"5516:3:125","nodeType":"YulIdentifier","src":"5516:3:125"},"nativeSrc":"5516:32:125","nodeType":"YulFunctionCall","src":"5516:32:125"}],"functionName":{"name":"mstore","nativeSrc":"5498:6:125","nodeType":"YulIdentifier","src":"5498:6:125"},"nativeSrc":"5498:51:125","nodeType":"YulFunctionCall","src":"5498:51:125"},"nativeSrc":"5498:51:125","nodeType":"YulExpressionStatement","src":"5498:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5569:9:125","nodeType":"YulIdentifier","src":"5569:9:125"},{"kind":"number","nativeSrc":"5580:2:125","nodeType":"YulLiteral","src":"5580:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5565:3:125","nodeType":"YulIdentifier","src":"5565:3:125"},"nativeSrc":"5565:18:125","nodeType":"YulFunctionCall","src":"5565:18:125"},{"name":"value1","nativeSrc":"5585:6:125","nodeType":"YulIdentifier","src":"5585:6:125"}],"functionName":{"name":"mstore","nativeSrc":"5558:6:125","nodeType":"YulIdentifier","src":"5558:6:125"},"nativeSrc":"5558:34:125","nodeType":"YulFunctionCall","src":"5558:34:125"},"nativeSrc":"5558:34:125","nodeType":"YulExpressionStatement","src":"5558:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5612:9:125","nodeType":"YulIdentifier","src":"5612:9:125"},{"kind":"number","nativeSrc":"5623:2:125","nodeType":"YulLiteral","src":"5623:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5608:3:125","nodeType":"YulIdentifier","src":"5608:3:125"},"nativeSrc":"5608:18:125","nodeType":"YulFunctionCall","src":"5608:18:125"},{"name":"value2","nativeSrc":"5628:6:125","nodeType":"YulIdentifier","src":"5628:6:125"}],"functionName":{"name":"mstore","nativeSrc":"5601:6:125","nodeType":"YulIdentifier","src":"5601:6:125"},"nativeSrc":"5601:34:125","nodeType":"YulFunctionCall","src":"5601:34:125"},"nativeSrc":"5601:34:125","nodeType":"YulExpressionStatement","src":"5601:34:125"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"5296:345:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5406:9:125","nodeType":"YulTypedName","src":"5406:9:125","type":""},{"name":"value2","nativeSrc":"5417:6:125","nodeType":"YulTypedName","src":"5417:6:125","type":""},{"name":"value1","nativeSrc":"5425:6:125","nodeType":"YulTypedName","src":"5425:6:125","type":""},{"name":"value0","nativeSrc":"5433:6:125","nodeType":"YulTypedName","src":"5433:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5444:4:125","nodeType":"YulTypedName","src":"5444:4:125","type":""}],"src":"5296:345:125"},{"body":{"nativeSrc":"5775:145:125","nodeType":"YulBlock","src":"5775:145:125","statements":[{"nativeSrc":"5785:26:125","nodeType":"YulAssignment","src":"5785:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5797:9:125","nodeType":"YulIdentifier","src":"5797:9:125"},{"kind":"number","nativeSrc":"5808:2:125","nodeType":"YulLiteral","src":"5808:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5793:3:125","nodeType":"YulIdentifier","src":"5793:3:125"},"nativeSrc":"5793:18:125","nodeType":"YulFunctionCall","src":"5793:18:125"},"variableNames":[{"name":"tail","nativeSrc":"5785:4:125","nodeType":"YulIdentifier","src":"5785:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5827:9:125","nodeType":"YulIdentifier","src":"5827:9:125"},{"arguments":[{"name":"value0","nativeSrc":"5842:6:125","nodeType":"YulIdentifier","src":"5842:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5858:3:125","nodeType":"YulLiteral","src":"5858:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"5863:1:125","nodeType":"YulLiteral","src":"5863:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5854:3:125","nodeType":"YulIdentifier","src":"5854:3:125"},"nativeSrc":"5854:11:125","nodeType":"YulFunctionCall","src":"5854:11:125"},{"kind":"number","nativeSrc":"5867:1:125","nodeType":"YulLiteral","src":"5867:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5850:3:125","nodeType":"YulIdentifier","src":"5850:3:125"},"nativeSrc":"5850:19:125","nodeType":"YulFunctionCall","src":"5850:19:125"}],"functionName":{"name":"and","nativeSrc":"5838:3:125","nodeType":"YulIdentifier","src":"5838:3:125"},"nativeSrc":"5838:32:125","nodeType":"YulFunctionCall","src":"5838:32:125"}],"functionName":{"name":"mstore","nativeSrc":"5820:6:125","nodeType":"YulIdentifier","src":"5820:6:125"},"nativeSrc":"5820:51:125","nodeType":"YulFunctionCall","src":"5820:51:125"},"nativeSrc":"5820:51:125","nodeType":"YulExpressionStatement","src":"5820:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5891:9:125","nodeType":"YulIdentifier","src":"5891:9:125"},{"kind":"number","nativeSrc":"5902:2:125","nodeType":"YulLiteral","src":"5902:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5887:3:125","nodeType":"YulIdentifier","src":"5887:3:125"},"nativeSrc":"5887:18:125","nodeType":"YulFunctionCall","src":"5887:18:125"},{"name":"value1","nativeSrc":"5907:6:125","nodeType":"YulIdentifier","src":"5907:6:125"}],"functionName":{"name":"mstore","nativeSrc":"5880:6:125","nodeType":"YulIdentifier","src":"5880:6:125"},"nativeSrc":"5880:34:125","nodeType":"YulFunctionCall","src":"5880:34:125"},"nativeSrc":"5880:34:125","nodeType":"YulExpressionStatement","src":"5880:34:125"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"5646:274:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5736:9:125","nodeType":"YulTypedName","src":"5736:9:125","type":""},{"name":"value1","nativeSrc":"5747:6:125","nodeType":"YulTypedName","src":"5747:6:125","type":""},{"name":"value0","nativeSrc":"5755:6:125","nodeType":"YulTypedName","src":"5755:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5766:4:125","nodeType":"YulTypedName","src":"5766:4:125","type":""}],"src":"5646:274:125"},{"body":{"nativeSrc":"5968:93:125","nodeType":"YulBlock","src":"5968:93:125","statements":[{"body":{"nativeSrc":"6004:22:125","nodeType":"YulBlock","src":"6004:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"6006:16:125","nodeType":"YulIdentifier","src":"6006:16:125"},"nativeSrc":"6006:18:125","nodeType":"YulFunctionCall","src":"6006:18:125"},"nativeSrc":"6006:18:125","nodeType":"YulExpressionStatement","src":"6006:18:125"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"5984:5:125","nodeType":"YulIdentifier","src":"5984:5:125"},{"arguments":[{"kind":"number","nativeSrc":"5995:3:125","nodeType":"YulLiteral","src":"5995:3:125","type":"","value":"255"},{"kind":"number","nativeSrc":"6000:1:125","nodeType":"YulLiteral","src":"6000:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5991:3:125","nodeType":"YulIdentifier","src":"5991:3:125"},"nativeSrc":"5991:11:125","nodeType":"YulFunctionCall","src":"5991:11:125"}],"functionName":{"name":"eq","nativeSrc":"5981:2:125","nodeType":"YulIdentifier","src":"5981:2:125"},"nativeSrc":"5981:22:125","nodeType":"YulFunctionCall","src":"5981:22:125"},"nativeSrc":"5978:48:125","nodeType":"YulIf","src":"5978:48:125"},{"nativeSrc":"6035:20:125","nodeType":"YulAssignment","src":"6035:20:125","value":{"arguments":[{"kind":"number","nativeSrc":"6046:1:125","nodeType":"YulLiteral","src":"6046:1:125","type":"","value":"0"},{"name":"value","nativeSrc":"6049:5:125","nodeType":"YulIdentifier","src":"6049:5:125"}],"functionName":{"name":"sub","nativeSrc":"6042:3:125","nodeType":"YulIdentifier","src":"6042:3:125"},"nativeSrc":"6042:13:125","nodeType":"YulFunctionCall","src":"6042:13:125"},"variableNames":[{"name":"ret","nativeSrc":"6035:3:125","nodeType":"YulIdentifier","src":"6035:3:125"}]}]},"name":"negate_t_int256","nativeSrc":"5925:136:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"5950:5:125","nodeType":"YulTypedName","src":"5950:5:125","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"5960:3:125","nodeType":"YulTypedName","src":"5960:3:125","type":""}],"src":"5925:136:125"},{"body":{"nativeSrc":"6098:95:125","nodeType":"YulBlock","src":"6098:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6115:1:125","nodeType":"YulLiteral","src":"6115:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"6122:3:125","nodeType":"YulLiteral","src":"6122:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"6127:10:125","nodeType":"YulLiteral","src":"6127:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"6118:3:125","nodeType":"YulIdentifier","src":"6118:3:125"},"nativeSrc":"6118:20:125","nodeType":"YulFunctionCall","src":"6118:20:125"}],"functionName":{"name":"mstore","nativeSrc":"6108:6:125","nodeType":"YulIdentifier","src":"6108:6:125"},"nativeSrc":"6108:31:125","nodeType":"YulFunctionCall","src":"6108:31:125"},"nativeSrc":"6108:31:125","nodeType":"YulExpressionStatement","src":"6108:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6155:1:125","nodeType":"YulLiteral","src":"6155:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"6158:4:125","nodeType":"YulLiteral","src":"6158:4:125","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"6148:6:125","nodeType":"YulIdentifier","src":"6148:6:125"},"nativeSrc":"6148:15:125","nodeType":"YulFunctionCall","src":"6148:15:125"},"nativeSrc":"6148:15:125","nodeType":"YulExpressionStatement","src":"6148:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6179:1:125","nodeType":"YulLiteral","src":"6179:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6182:4:125","nodeType":"YulLiteral","src":"6182:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"6172:6:125","nodeType":"YulIdentifier","src":"6172:6:125"},"nativeSrc":"6172:15:125","nodeType":"YulFunctionCall","src":"6172:15:125"},"nativeSrc":"6172:15:125","nodeType":"YulExpressionStatement","src":"6172:15:125"}]},"name":"panic_error_0x21","nativeSrc":"6066:127:125","nodeType":"YulFunctionDefinition","src":"6066:127:125"},{"body":{"nativeSrc":"6246:77:125","nodeType":"YulBlock","src":"6246:77:125","statements":[{"nativeSrc":"6256:16:125","nodeType":"YulAssignment","src":"6256:16:125","value":{"arguments":[{"name":"x","nativeSrc":"6267:1:125","nodeType":"YulIdentifier","src":"6267:1:125"},{"name":"y","nativeSrc":"6270:1:125","nodeType":"YulIdentifier","src":"6270:1:125"}],"functionName":{"name":"add","nativeSrc":"6263:3:125","nodeType":"YulIdentifier","src":"6263:3:125"},"nativeSrc":"6263:9:125","nodeType":"YulFunctionCall","src":"6263:9:125"},"variableNames":[{"name":"sum","nativeSrc":"6256:3:125","nodeType":"YulIdentifier","src":"6256:3:125"}]},{"body":{"nativeSrc":"6295:22:125","nodeType":"YulBlock","src":"6295:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"6297:16:125","nodeType":"YulIdentifier","src":"6297:16:125"},"nativeSrc":"6297:18:125","nodeType":"YulFunctionCall","src":"6297:18:125"},"nativeSrc":"6297:18:125","nodeType":"YulExpressionStatement","src":"6297:18:125"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"6287:1:125","nodeType":"YulIdentifier","src":"6287:1:125"},{"name":"sum","nativeSrc":"6290:3:125","nodeType":"YulIdentifier","src":"6290:3:125"}],"functionName":{"name":"gt","nativeSrc":"6284:2:125","nodeType":"YulIdentifier","src":"6284:2:125"},"nativeSrc":"6284:10:125","nodeType":"YulFunctionCall","src":"6284:10:125"},"nativeSrc":"6281:36:125","nodeType":"YulIf","src":"6281:36:125"}]},"name":"checked_add_t_uint256","nativeSrc":"6198:125:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"6229:1:125","nodeType":"YulTypedName","src":"6229:1:125","type":""},{"name":"y","nativeSrc":"6232:1:125","nodeType":"YulTypedName","src":"6232:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"6238:3:125","nodeType":"YulTypedName","src":"6238:3:125","type":""}],"src":"6198:125:125"},{"body":{"nativeSrc":"6397:306:125","nodeType":"YulBlock","src":"6397:306:125","statements":[{"nativeSrc":"6407:10:125","nodeType":"YulAssignment","src":"6407:10:125","value":{"kind":"number","nativeSrc":"6416:1:125","nodeType":"YulLiteral","src":"6416:1:125","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"6407:5:125","nodeType":"YulIdentifier","src":"6407:5:125"}]},{"nativeSrc":"6426:13:125","nodeType":"YulAssignment","src":"6426:13:125","value":{"name":"_base","nativeSrc":"6434:5:125","nodeType":"YulIdentifier","src":"6434:5:125"},"variableNames":[{"name":"base","nativeSrc":"6426:4:125","nodeType":"YulIdentifier","src":"6426:4:125"}]},{"body":{"nativeSrc":"6484:213:125","nodeType":"YulBlock","src":"6484:213:125","statements":[{"body":{"nativeSrc":"6526:22:125","nodeType":"YulBlock","src":"6526:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"6528:16:125","nodeType":"YulIdentifier","src":"6528:16:125"},"nativeSrc":"6528:18:125","nodeType":"YulFunctionCall","src":"6528:18:125"},"nativeSrc":"6528:18:125","nodeType":"YulExpressionStatement","src":"6528:18:125"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"6504:4:125","nodeType":"YulIdentifier","src":"6504:4:125"},{"arguments":[{"name":"max","nativeSrc":"6514:3:125","nodeType":"YulIdentifier","src":"6514:3:125"},{"name":"base","nativeSrc":"6519:4:125","nodeType":"YulIdentifier","src":"6519:4:125"}],"functionName":{"name":"div","nativeSrc":"6510:3:125","nodeType":"YulIdentifier","src":"6510:3:125"},"nativeSrc":"6510:14:125","nodeType":"YulFunctionCall","src":"6510:14:125"}],"functionName":{"name":"gt","nativeSrc":"6501:2:125","nodeType":"YulIdentifier","src":"6501:2:125"},"nativeSrc":"6501:24:125","nodeType":"YulFunctionCall","src":"6501:24:125"},"nativeSrc":"6498:50:125","nodeType":"YulIf","src":"6498:50:125"},{"body":{"nativeSrc":"6581:29:125","nodeType":"YulBlock","src":"6581:29:125","statements":[{"nativeSrc":"6583:25:125","nodeType":"YulAssignment","src":"6583:25:125","value":{"arguments":[{"name":"power","nativeSrc":"6596:5:125","nodeType":"YulIdentifier","src":"6596:5:125"},{"name":"base","nativeSrc":"6603:4:125","nodeType":"YulIdentifier","src":"6603:4:125"}],"functionName":{"name":"mul","nativeSrc":"6592:3:125","nodeType":"YulIdentifier","src":"6592:3:125"},"nativeSrc":"6592:16:125","nodeType":"YulFunctionCall","src":"6592:16:125"},"variableNames":[{"name":"power","nativeSrc":"6583:5:125","nodeType":"YulIdentifier","src":"6583:5:125"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"6568:8:125","nodeType":"YulIdentifier","src":"6568:8:125"},{"kind":"number","nativeSrc":"6578:1:125","nodeType":"YulLiteral","src":"6578:1:125","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"6564:3:125","nodeType":"YulIdentifier","src":"6564:3:125"},"nativeSrc":"6564:16:125","nodeType":"YulFunctionCall","src":"6564:16:125"},"nativeSrc":"6561:49:125","nodeType":"YulIf","src":"6561:49:125"},{"nativeSrc":"6623:23:125","nodeType":"YulAssignment","src":"6623:23:125","value":{"arguments":[{"name":"base","nativeSrc":"6635:4:125","nodeType":"YulIdentifier","src":"6635:4:125"},{"name":"base","nativeSrc":"6641:4:125","nodeType":"YulIdentifier","src":"6641:4:125"}],"functionName":{"name":"mul","nativeSrc":"6631:3:125","nodeType":"YulIdentifier","src":"6631:3:125"},"nativeSrc":"6631:15:125","nodeType":"YulFunctionCall","src":"6631:15:125"},"variableNames":[{"name":"base","nativeSrc":"6623:4:125","nodeType":"YulIdentifier","src":"6623:4:125"}]},{"nativeSrc":"6659:28:125","nodeType":"YulAssignment","src":"6659:28:125","value":{"arguments":[{"kind":"number","nativeSrc":"6675:1:125","nodeType":"YulLiteral","src":"6675:1:125","type":"","value":"1"},{"name":"exponent","nativeSrc":"6678:8:125","nodeType":"YulIdentifier","src":"6678:8:125"}],"functionName":{"name":"shr","nativeSrc":"6671:3:125","nodeType":"YulIdentifier","src":"6671:3:125"},"nativeSrc":"6671:16:125","nodeType":"YulFunctionCall","src":"6671:16:125"},"variableNames":[{"name":"exponent","nativeSrc":"6659:8:125","nodeType":"YulIdentifier","src":"6659:8:125"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"6459:8:125","nodeType":"YulIdentifier","src":"6459:8:125"},{"kind":"number","nativeSrc":"6469:1:125","nodeType":"YulLiteral","src":"6469:1:125","type":"","value":"1"}],"functionName":{"name":"gt","nativeSrc":"6456:2:125","nodeType":"YulIdentifier","src":"6456:2:125"},"nativeSrc":"6456:15:125","nodeType":"YulFunctionCall","src":"6456:15:125"},"nativeSrc":"6448:249:125","nodeType":"YulForLoop","post":{"nativeSrc":"6472:3:125","nodeType":"YulBlock","src":"6472:3:125","statements":[]},"pre":{"nativeSrc":"6452:3:125","nodeType":"YulBlock","src":"6452:3:125","statements":[]},"src":"6448:249:125"}]},"name":"checked_exp_helper","nativeSrc":"6328:375:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"_base","nativeSrc":"6356:5:125","nodeType":"YulTypedName","src":"6356:5:125","type":""},{"name":"exponent","nativeSrc":"6363:8:125","nodeType":"YulTypedName","src":"6363:8:125","type":""},{"name":"max","nativeSrc":"6373:3:125","nodeType":"YulTypedName","src":"6373:3:125","type":""}],"returnVariables":[{"name":"power","nativeSrc":"6381:5:125","nodeType":"YulTypedName","src":"6381:5:125","type":""},{"name":"base","nativeSrc":"6388:4:125","nodeType":"YulTypedName","src":"6388:4:125","type":""}],"src":"6328:375:125"},{"body":{"nativeSrc":"6767:843:125","nodeType":"YulBlock","src":"6767:843:125","statements":[{"body":{"nativeSrc":"6805:52:125","nodeType":"YulBlock","src":"6805:52:125","statements":[{"nativeSrc":"6819:10:125","nodeType":"YulAssignment","src":"6819:10:125","value":{"kind":"number","nativeSrc":"6828:1:125","nodeType":"YulLiteral","src":"6828:1:125","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"6819:5:125","nodeType":"YulIdentifier","src":"6819:5:125"}]},{"nativeSrc":"6842:5:125","nodeType":"YulLeave","src":"6842:5:125"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"6787:8:125","nodeType":"YulIdentifier","src":"6787:8:125"}],"functionName":{"name":"iszero","nativeSrc":"6780:6:125","nodeType":"YulIdentifier","src":"6780:6:125"},"nativeSrc":"6780:16:125","nodeType":"YulFunctionCall","src":"6780:16:125"},"nativeSrc":"6777:80:125","nodeType":"YulIf","src":"6777:80:125"},{"body":{"nativeSrc":"6890:52:125","nodeType":"YulBlock","src":"6890:52:125","statements":[{"nativeSrc":"6904:10:125","nodeType":"YulAssignment","src":"6904:10:125","value":{"kind":"number","nativeSrc":"6913:1:125","nodeType":"YulLiteral","src":"6913:1:125","type":"","value":"0"},"variableNames":[{"name":"power","nativeSrc":"6904:5:125","nodeType":"YulIdentifier","src":"6904:5:125"}]},{"nativeSrc":"6927:5:125","nodeType":"YulLeave","src":"6927:5:125"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"6876:4:125","nodeType":"YulIdentifier","src":"6876:4:125"}],"functionName":{"name":"iszero","nativeSrc":"6869:6:125","nodeType":"YulIdentifier","src":"6869:6:125"},"nativeSrc":"6869:12:125","nodeType":"YulFunctionCall","src":"6869:12:125"},"nativeSrc":"6866:76:125","nodeType":"YulIf","src":"6866:76:125"},{"cases":[{"body":{"nativeSrc":"6978:52:125","nodeType":"YulBlock","src":"6978:52:125","statements":[{"nativeSrc":"6992:10:125","nodeType":"YulAssignment","src":"6992:10:125","value":{"kind":"number","nativeSrc":"7001:1:125","nodeType":"YulLiteral","src":"7001:1:125","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"6992:5:125","nodeType":"YulIdentifier","src":"6992:5:125"}]},{"nativeSrc":"7015:5:125","nodeType":"YulLeave","src":"7015:5:125"}]},"nativeSrc":"6971:59:125","nodeType":"YulCase","src":"6971:59:125","value":{"kind":"number","nativeSrc":"6976:1:125","nodeType":"YulLiteral","src":"6976:1:125","type":"","value":"1"}},{"body":{"nativeSrc":"7046:167:125","nodeType":"YulBlock","src":"7046:167:125","statements":[{"body":{"nativeSrc":"7081:22:125","nodeType":"YulBlock","src":"7081:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"7083:16:125","nodeType":"YulIdentifier","src":"7083:16:125"},"nativeSrc":"7083:18:125","nodeType":"YulFunctionCall","src":"7083:18:125"},"nativeSrc":"7083:18:125","nodeType":"YulExpressionStatement","src":"7083:18:125"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"7066:8:125","nodeType":"YulIdentifier","src":"7066:8:125"},{"kind":"number","nativeSrc":"7076:3:125","nodeType":"YulLiteral","src":"7076:3:125","type":"","value":"255"}],"functionName":{"name":"gt","nativeSrc":"7063:2:125","nodeType":"YulIdentifier","src":"7063:2:125"},"nativeSrc":"7063:17:125","nodeType":"YulFunctionCall","src":"7063:17:125"},"nativeSrc":"7060:43:125","nodeType":"YulIf","src":"7060:43:125"},{"nativeSrc":"7116:25:125","nodeType":"YulAssignment","src":"7116:25:125","value":{"arguments":[{"name":"exponent","nativeSrc":"7129:8:125","nodeType":"YulIdentifier","src":"7129:8:125"},{"kind":"number","nativeSrc":"7139:1:125","nodeType":"YulLiteral","src":"7139:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7125:3:125","nodeType":"YulIdentifier","src":"7125:3:125"},"nativeSrc":"7125:16:125","nodeType":"YulFunctionCall","src":"7125:16:125"},"variableNames":[{"name":"power","nativeSrc":"7116:5:125","nodeType":"YulIdentifier","src":"7116:5:125"}]},{"nativeSrc":"7154:11:125","nodeType":"YulVariableDeclaration","src":"7154:11:125","value":{"kind":"number","nativeSrc":"7164:1:125","nodeType":"YulLiteral","src":"7164:1:125","type":"","value":"0"},"variables":[{"name":"_1","nativeSrc":"7158:2:125","nodeType":"YulTypedName","src":"7158:2:125","type":""}]},{"nativeSrc":"7178:7:125","nodeType":"YulAssignment","src":"7178:7:125","value":{"kind":"number","nativeSrc":"7184:1:125","nodeType":"YulLiteral","src":"7184:1:125","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"7178:2:125","nodeType":"YulIdentifier","src":"7178:2:125"}]},{"nativeSrc":"7198:5:125","nodeType":"YulLeave","src":"7198:5:125"}]},"nativeSrc":"7039:174:125","nodeType":"YulCase","src":"7039:174:125","value":{"kind":"number","nativeSrc":"7044:1:125","nodeType":"YulLiteral","src":"7044:1:125","type":"","value":"2"}}],"expression":{"name":"base","nativeSrc":"6958:4:125","nodeType":"YulIdentifier","src":"6958:4:125"},"nativeSrc":"6951:262:125","nodeType":"YulSwitch","src":"6951:262:125"},{"body":{"nativeSrc":"7311:114:125","nodeType":"YulBlock","src":"7311:114:125","statements":[{"nativeSrc":"7325:28:125","nodeType":"YulAssignment","src":"7325:28:125","value":{"arguments":[{"name":"base","nativeSrc":"7338:4:125","nodeType":"YulIdentifier","src":"7338:4:125"},{"name":"exponent","nativeSrc":"7344:8:125","nodeType":"YulIdentifier","src":"7344:8:125"}],"functionName":{"name":"exp","nativeSrc":"7334:3:125","nodeType":"YulIdentifier","src":"7334:3:125"},"nativeSrc":"7334:19:125","nodeType":"YulFunctionCall","src":"7334:19:125"},"variableNames":[{"name":"power","nativeSrc":"7325:5:125","nodeType":"YulIdentifier","src":"7325:5:125"}]},{"nativeSrc":"7366:11:125","nodeType":"YulVariableDeclaration","src":"7366:11:125","value":{"kind":"number","nativeSrc":"7376:1:125","nodeType":"YulLiteral","src":"7376:1:125","type":"","value":"0"},"variables":[{"name":"_2","nativeSrc":"7370:2:125","nodeType":"YulTypedName","src":"7370:2:125","type":""}]},{"nativeSrc":"7390:7:125","nodeType":"YulAssignment","src":"7390:7:125","value":{"kind":"number","nativeSrc":"7396:1:125","nodeType":"YulLiteral","src":"7396:1:125","type":"","value":"0"},"variableNames":[{"name":"_2","nativeSrc":"7390:2:125","nodeType":"YulIdentifier","src":"7390:2:125"}]},{"nativeSrc":"7410:5:125","nodeType":"YulLeave","src":"7410:5:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"base","nativeSrc":"7235:4:125","nodeType":"YulIdentifier","src":"7235:4:125"},{"kind":"number","nativeSrc":"7241:2:125","nodeType":"YulLiteral","src":"7241:2:125","type":"","value":"11"}],"functionName":{"name":"lt","nativeSrc":"7232:2:125","nodeType":"YulIdentifier","src":"7232:2:125"},"nativeSrc":"7232:12:125","nodeType":"YulFunctionCall","src":"7232:12:125"},{"arguments":[{"name":"exponent","nativeSrc":"7249:8:125","nodeType":"YulIdentifier","src":"7249:8:125"},{"kind":"number","nativeSrc":"7259:2:125","nodeType":"YulLiteral","src":"7259:2:125","type":"","value":"78"}],"functionName":{"name":"lt","nativeSrc":"7246:2:125","nodeType":"YulIdentifier","src":"7246:2:125"},"nativeSrc":"7246:16:125","nodeType":"YulFunctionCall","src":"7246:16:125"}],"functionName":{"name":"and","nativeSrc":"7228:3:125","nodeType":"YulIdentifier","src":"7228:3:125"},"nativeSrc":"7228:35:125","nodeType":"YulFunctionCall","src":"7228:35:125"},{"arguments":[{"arguments":[{"name":"base","nativeSrc":"7272:4:125","nodeType":"YulIdentifier","src":"7272:4:125"},{"kind":"number","nativeSrc":"7278:3:125","nodeType":"YulLiteral","src":"7278:3:125","type":"","value":"307"}],"functionName":{"name":"lt","nativeSrc":"7269:2:125","nodeType":"YulIdentifier","src":"7269:2:125"},"nativeSrc":"7269:13:125","nodeType":"YulFunctionCall","src":"7269:13:125"},{"arguments":[{"name":"exponent","nativeSrc":"7287:8:125","nodeType":"YulIdentifier","src":"7287:8:125"},{"kind":"number","nativeSrc":"7297:2:125","nodeType":"YulLiteral","src":"7297:2:125","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"7284:2:125","nodeType":"YulIdentifier","src":"7284:2:125"},"nativeSrc":"7284:16:125","nodeType":"YulFunctionCall","src":"7284:16:125"}],"functionName":{"name":"and","nativeSrc":"7265:3:125","nodeType":"YulIdentifier","src":"7265:3:125"},"nativeSrc":"7265:36:125","nodeType":"YulFunctionCall","src":"7265:36:125"}],"functionName":{"name":"or","nativeSrc":"7225:2:125","nodeType":"YulIdentifier","src":"7225:2:125"},"nativeSrc":"7225:77:125","nodeType":"YulFunctionCall","src":"7225:77:125"},"nativeSrc":"7222:203:125","nodeType":"YulIf","src":"7222:203:125"},{"nativeSrc":"7434:65:125","nodeType":"YulVariableDeclaration","src":"7434:65:125","value":{"arguments":[{"name":"base","nativeSrc":"7476:4:125","nodeType":"YulIdentifier","src":"7476:4:125"},{"name":"exponent","nativeSrc":"7482:8:125","nodeType":"YulIdentifier","src":"7482:8:125"},{"arguments":[{"kind":"number","nativeSrc":"7496:1:125","nodeType":"YulLiteral","src":"7496:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7492:3:125","nodeType":"YulIdentifier","src":"7492:3:125"},"nativeSrc":"7492:6:125","nodeType":"YulFunctionCall","src":"7492:6:125"}],"functionName":{"name":"checked_exp_helper","nativeSrc":"7457:18:125","nodeType":"YulIdentifier","src":"7457:18:125"},"nativeSrc":"7457:42:125","nodeType":"YulFunctionCall","src":"7457:42:125"},"variables":[{"name":"power_1","nativeSrc":"7438:7:125","nodeType":"YulTypedName","src":"7438:7:125","type":""},{"name":"base_1","nativeSrc":"7447:6:125","nodeType":"YulTypedName","src":"7447:6:125","type":""}]},{"body":{"nativeSrc":"7544:22:125","nodeType":"YulBlock","src":"7544:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"7546:16:125","nodeType":"YulIdentifier","src":"7546:16:125"},"nativeSrc":"7546:18:125","nodeType":"YulFunctionCall","src":"7546:18:125"},"nativeSrc":"7546:18:125","nodeType":"YulExpressionStatement","src":"7546:18:125"}]},"condition":{"arguments":[{"name":"power_1","nativeSrc":"7514:7:125","nodeType":"YulIdentifier","src":"7514:7:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7531:1:125","nodeType":"YulLiteral","src":"7531:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"7527:3:125","nodeType":"YulIdentifier","src":"7527:3:125"},"nativeSrc":"7527:6:125","nodeType":"YulFunctionCall","src":"7527:6:125"},{"name":"base_1","nativeSrc":"7535:6:125","nodeType":"YulIdentifier","src":"7535:6:125"}],"functionName":{"name":"div","nativeSrc":"7523:3:125","nodeType":"YulIdentifier","src":"7523:3:125"},"nativeSrc":"7523:19:125","nodeType":"YulFunctionCall","src":"7523:19:125"}],"functionName":{"name":"gt","nativeSrc":"7511:2:125","nodeType":"YulIdentifier","src":"7511:2:125"},"nativeSrc":"7511:32:125","nodeType":"YulFunctionCall","src":"7511:32:125"},"nativeSrc":"7508:58:125","nodeType":"YulIf","src":"7508:58:125"},{"nativeSrc":"7575:29:125","nodeType":"YulAssignment","src":"7575:29:125","value":{"arguments":[{"name":"power_1","nativeSrc":"7588:7:125","nodeType":"YulIdentifier","src":"7588:7:125"},{"name":"base_1","nativeSrc":"7597:6:125","nodeType":"YulIdentifier","src":"7597:6:125"}],"functionName":{"name":"mul","nativeSrc":"7584:3:125","nodeType":"YulIdentifier","src":"7584:3:125"},"nativeSrc":"7584:20:125","nodeType":"YulFunctionCall","src":"7584:20:125"},"variableNames":[{"name":"power","nativeSrc":"7575:5:125","nodeType":"YulIdentifier","src":"7575:5:125"}]}]},"name":"checked_exp_unsigned","nativeSrc":"6708:902:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"6738:4:125","nodeType":"YulTypedName","src":"6738:4:125","type":""},{"name":"exponent","nativeSrc":"6744:8:125","nodeType":"YulTypedName","src":"6744:8:125","type":""}],"returnVariables":[{"name":"power","nativeSrc":"6757:5:125","nodeType":"YulTypedName","src":"6757:5:125","type":""}],"src":"6708:902:125"},{"body":{"nativeSrc":"7683:72:125","nodeType":"YulBlock","src":"7683:72:125","statements":[{"nativeSrc":"7693:56:125","nodeType":"YulAssignment","src":"7693:56:125","value":{"arguments":[{"name":"base","nativeSrc":"7723:4:125","nodeType":"YulIdentifier","src":"7723:4:125"},{"arguments":[{"name":"exponent","nativeSrc":"7733:8:125","nodeType":"YulIdentifier","src":"7733:8:125"},{"kind":"number","nativeSrc":"7743:4:125","nodeType":"YulLiteral","src":"7743:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"7729:3:125","nodeType":"YulIdentifier","src":"7729:3:125"},"nativeSrc":"7729:19:125","nodeType":"YulFunctionCall","src":"7729:19:125"}],"functionName":{"name":"checked_exp_unsigned","nativeSrc":"7702:20:125","nodeType":"YulIdentifier","src":"7702:20:125"},"nativeSrc":"7702:47:125","nodeType":"YulFunctionCall","src":"7702:47:125"},"variableNames":[{"name":"power","nativeSrc":"7693:5:125","nodeType":"YulIdentifier","src":"7693:5:125"}]}]},"name":"checked_exp_t_uint256_t_uint8","nativeSrc":"7615:140:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"7654:4:125","nodeType":"YulTypedName","src":"7654:4:125","type":""},{"name":"exponent","nativeSrc":"7660:8:125","nodeType":"YulTypedName","src":"7660:8:125","type":""}],"returnVariables":[{"name":"power","nativeSrc":"7673:5:125","nodeType":"YulTypedName","src":"7673:5:125","type":""}],"src":"7615:140:125"},{"body":{"nativeSrc":"7890:201:125","nodeType":"YulBlock","src":"7890:201:125","statements":[{"body":{"nativeSrc":"7928:16:125","nodeType":"YulBlock","src":"7928:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7937:1:125","nodeType":"YulLiteral","src":"7937:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7940:1:125","nodeType":"YulLiteral","src":"7940:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7930:6:125","nodeType":"YulIdentifier","src":"7930:6:125"},"nativeSrc":"7930:12:125","nodeType":"YulFunctionCall","src":"7930:12:125"},"nativeSrc":"7930:12:125","nodeType":"YulExpressionStatement","src":"7930:12:125"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"7906:10:125","nodeType":"YulIdentifier","src":"7906:10:125"},{"name":"endIndex","nativeSrc":"7918:8:125","nodeType":"YulIdentifier","src":"7918:8:125"}],"functionName":{"name":"gt","nativeSrc":"7903:2:125","nodeType":"YulIdentifier","src":"7903:2:125"},"nativeSrc":"7903:24:125","nodeType":"YulFunctionCall","src":"7903:24:125"},"nativeSrc":"7900:44:125","nodeType":"YulIf","src":"7900:44:125"},{"body":{"nativeSrc":"7977:16:125","nodeType":"YulBlock","src":"7977:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7986:1:125","nodeType":"YulLiteral","src":"7986:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7989:1:125","nodeType":"YulLiteral","src":"7989:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7979:6:125","nodeType":"YulIdentifier","src":"7979:6:125"},"nativeSrc":"7979:12:125","nodeType":"YulFunctionCall","src":"7979:12:125"},"nativeSrc":"7979:12:125","nodeType":"YulExpressionStatement","src":"7979:12:125"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"7959:8:125","nodeType":"YulIdentifier","src":"7959:8:125"},{"name":"length","nativeSrc":"7969:6:125","nodeType":"YulIdentifier","src":"7969:6:125"}],"functionName":{"name":"gt","nativeSrc":"7956:2:125","nodeType":"YulIdentifier","src":"7956:2:125"},"nativeSrc":"7956:20:125","nodeType":"YulFunctionCall","src":"7956:20:125"},"nativeSrc":"7953:40:125","nodeType":"YulIf","src":"7953:40:125"},{"nativeSrc":"8002:36:125","nodeType":"YulAssignment","src":"8002:36:125","value":{"arguments":[{"name":"offset","nativeSrc":"8019:6:125","nodeType":"YulIdentifier","src":"8019:6:125"},{"name":"startIndex","nativeSrc":"8027:10:125","nodeType":"YulIdentifier","src":"8027:10:125"}],"functionName":{"name":"add","nativeSrc":"8015:3:125","nodeType":"YulIdentifier","src":"8015:3:125"},"nativeSrc":"8015:23:125","nodeType":"YulFunctionCall","src":"8015:23:125"},"variableNames":[{"name":"offsetOut","nativeSrc":"8002:9:125","nodeType":"YulIdentifier","src":"8002:9:125"}]},{"nativeSrc":"8047:38:125","nodeType":"YulAssignment","src":"8047:38:125","value":{"arguments":[{"name":"endIndex","nativeSrc":"8064:8:125","nodeType":"YulIdentifier","src":"8064:8:125"},{"name":"startIndex","nativeSrc":"8074:10:125","nodeType":"YulIdentifier","src":"8074:10:125"}],"functionName":{"name":"sub","nativeSrc":"8060:3:125","nodeType":"YulIdentifier","src":"8060:3:125"},"nativeSrc":"8060:25:125","nodeType":"YulFunctionCall","src":"8060:25:125"},"variableNames":[{"name":"lengthOut","nativeSrc":"8047:9:125","nodeType":"YulIdentifier","src":"8047:9:125"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"7760:331:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"7824:6:125","nodeType":"YulTypedName","src":"7824:6:125","type":""},{"name":"length","nativeSrc":"7832:6:125","nodeType":"YulTypedName","src":"7832:6:125","type":""},{"name":"startIndex","nativeSrc":"7840:10:125","nodeType":"YulTypedName","src":"7840:10:125","type":""},{"name":"endIndex","nativeSrc":"7852:8:125","nodeType":"YulTypedName","src":"7852:8:125","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"7865:9:125","nodeType":"YulTypedName","src":"7865:9:125","type":""},{"name":"lengthOut","nativeSrc":"7876:9:125","nodeType":"YulTypedName","src":"7876:9:125","type":""}],"src":"7760:331:125"},{"body":{"nativeSrc":"8196:238:125","nodeType":"YulBlock","src":"8196:238:125","statements":[{"nativeSrc":"8206:29:125","nodeType":"YulVariableDeclaration","src":"8206:29:125","value":{"arguments":[{"name":"array","nativeSrc":"8229:5:125","nodeType":"YulIdentifier","src":"8229:5:125"}],"functionName":{"name":"calldataload","nativeSrc":"8216:12:125","nodeType":"YulIdentifier","src":"8216:12:125"},"nativeSrc":"8216:19:125","nodeType":"YulFunctionCall","src":"8216:19:125"},"variables":[{"name":"_1","nativeSrc":"8210:2:125","nodeType":"YulTypedName","src":"8210:2:125","type":""}]},{"nativeSrc":"8244:38:125","nodeType":"YulAssignment","src":"8244:38:125","value":{"arguments":[{"name":"_1","nativeSrc":"8257:2:125","nodeType":"YulIdentifier","src":"8257:2:125"},{"arguments":[{"kind":"number","nativeSrc":"8265:3:125","nodeType":"YulLiteral","src":"8265:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"8270:10:125","nodeType":"YulLiteral","src":"8270:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"8261:3:125","nodeType":"YulIdentifier","src":"8261:3:125"},"nativeSrc":"8261:20:125","nodeType":"YulFunctionCall","src":"8261:20:125"}],"functionName":{"name":"and","nativeSrc":"8253:3:125","nodeType":"YulIdentifier","src":"8253:3:125"},"nativeSrc":"8253:29:125","nodeType":"YulFunctionCall","src":"8253:29:125"},"variableNames":[{"name":"value","nativeSrc":"8244:5:125","nodeType":"YulIdentifier","src":"8244:5:125"}]},{"body":{"nativeSrc":"8313:115:125","nodeType":"YulBlock","src":"8313:115:125","statements":[{"nativeSrc":"8327:91:125","nodeType":"YulAssignment","src":"8327:91:125","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"8344:2:125","nodeType":"YulIdentifier","src":"8344:2:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"8356:1:125","nodeType":"YulLiteral","src":"8356:1:125","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"8363:1:125","nodeType":"YulLiteral","src":"8363:1:125","type":"","value":"4"},{"name":"len","nativeSrc":"8366:3:125","nodeType":"YulIdentifier","src":"8366:3:125"}],"functionName":{"name":"sub","nativeSrc":"8359:3:125","nodeType":"YulIdentifier","src":"8359:3:125"},"nativeSrc":"8359:11:125","nodeType":"YulFunctionCall","src":"8359:11:125"}],"functionName":{"name":"shl","nativeSrc":"8352:3:125","nodeType":"YulIdentifier","src":"8352:3:125"},"nativeSrc":"8352:19:125","nodeType":"YulFunctionCall","src":"8352:19:125"},{"arguments":[{"kind":"number","nativeSrc":"8377:3:125","nodeType":"YulLiteral","src":"8377:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"8382:10:125","nodeType":"YulLiteral","src":"8382:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"8373:3:125","nodeType":"YulIdentifier","src":"8373:3:125"},"nativeSrc":"8373:20:125","nodeType":"YulFunctionCall","src":"8373:20:125"}],"functionName":{"name":"shl","nativeSrc":"8348:3:125","nodeType":"YulIdentifier","src":"8348:3:125"},"nativeSrc":"8348:46:125","nodeType":"YulFunctionCall","src":"8348:46:125"}],"functionName":{"name":"and","nativeSrc":"8340:3:125","nodeType":"YulIdentifier","src":"8340:3:125"},"nativeSrc":"8340:55:125","nodeType":"YulFunctionCall","src":"8340:55:125"},{"arguments":[{"kind":"number","nativeSrc":"8401:3:125","nodeType":"YulLiteral","src":"8401:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"8406:10:125","nodeType":"YulLiteral","src":"8406:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"8397:3:125","nodeType":"YulIdentifier","src":"8397:3:125"},"nativeSrc":"8397:20:125","nodeType":"YulFunctionCall","src":"8397:20:125"}],"functionName":{"name":"and","nativeSrc":"8336:3:125","nodeType":"YulIdentifier","src":"8336:3:125"},"nativeSrc":"8336:82:125","nodeType":"YulFunctionCall","src":"8336:82:125"},"variableNames":[{"name":"value","nativeSrc":"8327:5:125","nodeType":"YulIdentifier","src":"8327:5:125"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"8297:3:125","nodeType":"YulIdentifier","src":"8297:3:125"},{"kind":"number","nativeSrc":"8302:1:125","nodeType":"YulLiteral","src":"8302:1:125","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"8294:2:125","nodeType":"YulIdentifier","src":"8294:2:125"},"nativeSrc":"8294:10:125","nodeType":"YulFunctionCall","src":"8294:10:125"},"nativeSrc":"8291:137:125","nodeType":"YulIf","src":"8291:137:125"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4","nativeSrc":"8096:338:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"8171:5:125","nodeType":"YulTypedName","src":"8171:5:125","type":""},{"name":"len","nativeSrc":"8178:3:125","nodeType":"YulTypedName","src":"8178:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"8186:5:125","nodeType":"YulTypedName","src":"8186:5:125","type":""}],"src":"8096:338:125"},{"body":{"nativeSrc":"8538:103:125","nodeType":"YulBlock","src":"8538:103:125","statements":[{"nativeSrc":"8548:26:125","nodeType":"YulAssignment","src":"8548:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8560:9:125","nodeType":"YulIdentifier","src":"8560:9:125"},{"kind":"number","nativeSrc":"8571:2:125","nodeType":"YulLiteral","src":"8571:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8556:3:125","nodeType":"YulIdentifier","src":"8556:3:125"},"nativeSrc":"8556:18:125","nodeType":"YulFunctionCall","src":"8556:18:125"},"variableNames":[{"name":"tail","nativeSrc":"8548:4:125","nodeType":"YulIdentifier","src":"8548:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8590:9:125","nodeType":"YulIdentifier","src":"8590:9:125"},{"arguments":[{"name":"value0","nativeSrc":"8605:6:125","nodeType":"YulIdentifier","src":"8605:6:125"},{"arguments":[{"kind":"number","nativeSrc":"8617:3:125","nodeType":"YulLiteral","src":"8617:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"8622:10:125","nodeType":"YulLiteral","src":"8622:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"8613:3:125","nodeType":"YulIdentifier","src":"8613:3:125"},"nativeSrc":"8613:20:125","nodeType":"YulFunctionCall","src":"8613:20:125"}],"functionName":{"name":"and","nativeSrc":"8601:3:125","nodeType":"YulIdentifier","src":"8601:3:125"},"nativeSrc":"8601:33:125","nodeType":"YulFunctionCall","src":"8601:33:125"}],"functionName":{"name":"mstore","nativeSrc":"8583:6:125","nodeType":"YulIdentifier","src":"8583:6:125"},"nativeSrc":"8583:52:125","nodeType":"YulFunctionCall","src":"8583:52:125"},"nativeSrc":"8583:52:125","nodeType":"YulExpressionStatement","src":"8583:52:125"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nativeSrc":"8439:202:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8507:9:125","nodeType":"YulTypedName","src":"8507:9:125","type":""},{"name":"value0","nativeSrc":"8518:6:125","nodeType":"YulTypedName","src":"8518:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8529:4:125","nodeType":"YulTypedName","src":"8529:4:125","type":""}],"src":"8439:202:125"},{"body":{"nativeSrc":"8678:95:125","nodeType":"YulBlock","src":"8678:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8695:1:125","nodeType":"YulLiteral","src":"8695:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"8702:3:125","nodeType":"YulLiteral","src":"8702:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"8707:10:125","nodeType":"YulLiteral","src":"8707:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"8698:3:125","nodeType":"YulIdentifier","src":"8698:3:125"},"nativeSrc":"8698:20:125","nodeType":"YulFunctionCall","src":"8698:20:125"}],"functionName":{"name":"mstore","nativeSrc":"8688:6:125","nodeType":"YulIdentifier","src":"8688:6:125"},"nativeSrc":"8688:31:125","nodeType":"YulFunctionCall","src":"8688:31:125"},"nativeSrc":"8688:31:125","nodeType":"YulExpressionStatement","src":"8688:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8735:1:125","nodeType":"YulLiteral","src":"8735:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"8738:4:125","nodeType":"YulLiteral","src":"8738:4:125","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"8728:6:125","nodeType":"YulIdentifier","src":"8728:6:125"},"nativeSrc":"8728:15:125","nodeType":"YulFunctionCall","src":"8728:15:125"},"nativeSrc":"8728:15:125","nodeType":"YulExpressionStatement","src":"8728:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8759:1:125","nodeType":"YulLiteral","src":"8759:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8762:4:125","nodeType":"YulLiteral","src":"8762:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"8752:6:125","nodeType":"YulIdentifier","src":"8752:6:125"},"nativeSrc":"8752:15:125","nodeType":"YulFunctionCall","src":"8752:15:125"},"nativeSrc":"8752:15:125","nodeType":"YulExpressionStatement","src":"8752:15:125"}]},"name":"panic_error_0x12","nativeSrc":"8646:127:125","nodeType":"YulFunctionDefinition","src":"8646:127:125"},{"body":{"nativeSrc":"8907:119:125","nodeType":"YulBlock","src":"8907:119:125","statements":[{"nativeSrc":"8917:26:125","nodeType":"YulAssignment","src":"8917:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8929:9:125","nodeType":"YulIdentifier","src":"8929:9:125"},{"kind":"number","nativeSrc":"8940:2:125","nodeType":"YulLiteral","src":"8940:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8925:3:125","nodeType":"YulIdentifier","src":"8925:3:125"},"nativeSrc":"8925:18:125","nodeType":"YulFunctionCall","src":"8925:18:125"},"variableNames":[{"name":"tail","nativeSrc":"8917:4:125","nodeType":"YulIdentifier","src":"8917:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8959:9:125","nodeType":"YulIdentifier","src":"8959:9:125"},{"name":"value0","nativeSrc":"8970:6:125","nodeType":"YulIdentifier","src":"8970:6:125"}],"functionName":{"name":"mstore","nativeSrc":"8952:6:125","nodeType":"YulIdentifier","src":"8952:6:125"},"nativeSrc":"8952:25:125","nodeType":"YulFunctionCall","src":"8952:25:125"},"nativeSrc":"8952:25:125","nodeType":"YulExpressionStatement","src":"8952:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8997:9:125","nodeType":"YulIdentifier","src":"8997:9:125"},{"kind":"number","nativeSrc":"9008:2:125","nodeType":"YulLiteral","src":"9008:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8993:3:125","nodeType":"YulIdentifier","src":"8993:3:125"},"nativeSrc":"8993:18:125","nodeType":"YulFunctionCall","src":"8993:18:125"},{"name":"value1","nativeSrc":"9013:6:125","nodeType":"YulIdentifier","src":"9013:6:125"}],"functionName":{"name":"mstore","nativeSrc":"8986:6:125","nodeType":"YulIdentifier","src":"8986:6:125"},"nativeSrc":"8986:34:125","nodeType":"YulFunctionCall","src":"8986:34:125"},"nativeSrc":"8986:34:125","nodeType":"YulExpressionStatement","src":"8986:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"8778:248:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8868:9:125","nodeType":"YulTypedName","src":"8868:9:125","type":""},{"name":"value1","nativeSrc":"8879:6:125","nodeType":"YulTypedName","src":"8879:6:125","type":""},{"name":"value0","nativeSrc":"8887:6:125","nodeType":"YulTypedName","src":"8887:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8898:4:125","nodeType":"YulTypedName","src":"8898:4:125","type":""}],"src":"8778:248:125"},{"body":{"nativeSrc":"9067:218:125","nodeType":"YulBlock","src":"9067:218:125","statements":[{"nativeSrc":"9077:23:125","nodeType":"YulVariableDeclaration","src":"9077:23:125","value":{"arguments":[{"name":"y","nativeSrc":"9092:1:125","nodeType":"YulIdentifier","src":"9092:1:125"},{"kind":"number","nativeSrc":"9095:4:125","nodeType":"YulLiteral","src":"9095:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"9088:3:125","nodeType":"YulIdentifier","src":"9088:3:125"},"nativeSrc":"9088:12:125","nodeType":"YulFunctionCall","src":"9088:12:125"},"variables":[{"name":"y_1","nativeSrc":"9081:3:125","nodeType":"YulTypedName","src":"9081:3:125","type":""}]},{"body":{"nativeSrc":"9132:111:125","nodeType":"YulBlock","src":"9132:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9153:1:125","nodeType":"YulLiteral","src":"9153:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"9160:3:125","nodeType":"YulLiteral","src":"9160:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"9165:10:125","nodeType":"YulLiteral","src":"9165:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"9156:3:125","nodeType":"YulIdentifier","src":"9156:3:125"},"nativeSrc":"9156:20:125","nodeType":"YulFunctionCall","src":"9156:20:125"}],"functionName":{"name":"mstore","nativeSrc":"9146:6:125","nodeType":"YulIdentifier","src":"9146:6:125"},"nativeSrc":"9146:31:125","nodeType":"YulFunctionCall","src":"9146:31:125"},"nativeSrc":"9146:31:125","nodeType":"YulExpressionStatement","src":"9146:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9197:1:125","nodeType":"YulLiteral","src":"9197:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"9200:4:125","nodeType":"YulLiteral","src":"9200:4:125","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"9190:6:125","nodeType":"YulIdentifier","src":"9190:6:125"},"nativeSrc":"9190:15:125","nodeType":"YulFunctionCall","src":"9190:15:125"},"nativeSrc":"9190:15:125","nodeType":"YulExpressionStatement","src":"9190:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9225:1:125","nodeType":"YulLiteral","src":"9225:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9228:4:125","nodeType":"YulLiteral","src":"9228:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"9218:6:125","nodeType":"YulIdentifier","src":"9218:6:125"},"nativeSrc":"9218:15:125","nodeType":"YulFunctionCall","src":"9218:15:125"},"nativeSrc":"9218:15:125","nodeType":"YulExpressionStatement","src":"9218:15:125"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"9119:3:125","nodeType":"YulIdentifier","src":"9119:3:125"}],"functionName":{"name":"iszero","nativeSrc":"9112:6:125","nodeType":"YulIdentifier","src":"9112:6:125"},"nativeSrc":"9112:11:125","nodeType":"YulFunctionCall","src":"9112:11:125"},"nativeSrc":"9109:134:125","nodeType":"YulIf","src":"9109:134:125"},{"nativeSrc":"9252:27:125","nodeType":"YulAssignment","src":"9252:27:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"9265:1:125","nodeType":"YulIdentifier","src":"9265:1:125"},{"kind":"number","nativeSrc":"9268:4:125","nodeType":"YulLiteral","src":"9268:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"9261:3:125","nodeType":"YulIdentifier","src":"9261:3:125"},"nativeSrc":"9261:12:125","nodeType":"YulFunctionCall","src":"9261:12:125"},{"name":"y_1","nativeSrc":"9275:3:125","nodeType":"YulIdentifier","src":"9275:3:125"}],"functionName":{"name":"mod","nativeSrc":"9257:3:125","nodeType":"YulIdentifier","src":"9257:3:125"},"nativeSrc":"9257:22:125","nodeType":"YulFunctionCall","src":"9257:22:125"},"variableNames":[{"name":"r","nativeSrc":"9252:1:125","nodeType":"YulIdentifier","src":"9252:1:125"}]}]},"name":"mod_t_uint8","nativeSrc":"9031:254:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"9052:1:125","nodeType":"YulTypedName","src":"9052:1:125","type":""},{"name":"y","nativeSrc":"9055:1:125","nodeType":"YulTypedName","src":"9055:1:125","type":""}],"returnVariables":[{"name":"r","nativeSrc":"9061:1:125","nodeType":"YulTypedName","src":"9061:1:125","type":""}],"src":"9031:254:125"}]},"contents":"{\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_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_tuple_t_uint256(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_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_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_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_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_decode_tuple_t_uint256t_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        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_bool(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint256t_addresst_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := abi_decode_address(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_int256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := calldataload(headStart)\n    }\n    function abi_decode_tuple_t_enum$_OverrideOption_$15558t_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        if iszero(lt(value, 4)) { revert(0, 0) }\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\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        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\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 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 panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_add_t_uint8(x, y) -> sum\n    {\n        sum := add(and(x, 0xff), and(y, 0xff))\n        if gt(sum, 0xff) { panic_error_0x11() }\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 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_address_t_uint256__to_t_address_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 negate_t_int256(value) -> ret\n    {\n        if eq(value, shl(255, 1)) { panic_error_0x11() }\n        ret := sub(0, value)\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 checked_exp_helper(_base, exponent, max) -> power, base\n    {\n        power := 1\n        base := _base\n        for { } gt(exponent, 1) { }\n        {\n            if gt(base, div(max, base)) { panic_error_0x11() }\n            if and(exponent, 1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(1, exponent)\n        }\n    }\n    function checked_exp_unsigned(base, exponent) -> power\n    {\n        if iszero(exponent)\n        {\n            power := 1\n            leave\n        }\n        if iszero(base)\n        {\n            power := 0\n            leave\n        }\n        switch base\n        case 1 {\n            power := 1\n            leave\n        }\n        case 2 {\n            if gt(exponent, 255) { panic_error_0x11() }\n            power := shl(exponent, 1)\n            let _1 := 0\n            _1 := 0\n            leave\n        }\n        if or(and(lt(base, 11), lt(exponent, 78)), and(lt(base, 307), lt(exponent, 32)))\n        {\n            power := exp(base, exponent)\n            let _2 := 0\n            _2 := 0\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent, not(0))\n        if gt(power_1, div(not(0), base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_exp_t_uint256_t_uint8(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, and(exponent, 0xff))\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_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_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 panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\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 mod_t_uint8(x, y) -> r\n    {\n        let y_1 := and(y, 0xff)\n        if iszero(y_1)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := mod(and(x, 0xff), y_1)\n    }\n}","id":125,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"24220":[{"length":32,"start":718},{"length":32,"start":1186},{"length":32,"start":2094},{"length":32,"start":2187},{"length":32,"start":3597},{"length":32,"start":3775}],"24222":[{"length":32,"start":1566}]},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b50600436106101fd575f3560e01c806386de9e4f11610114578063c6e6f592116100a9578063d6dd023411610079578063d6dd023414610439578063d905777e1461044c578063dd62ed3e1461045f578063ef8b30f7146103f7578063f3c0b89214610497575f5ffd5b8063c6e6f592146103f7578063c7361ed21461040a578063cc7fcc601461041d578063ce96cb7714610426575f5ffd5b8063b3d7f6b9116100e4578063b3d7f6b9146103ab578063b460af94146103be578063ba087652146103d1578063c63d75b6146103e4575f5ffd5b806386de9e4f1461035a57806394bf804d1461037d57806395d89b4114610390578063a9059cbb14610398575f5ffd5b8063313ce56711610195578063402d267d11610165578063402d267d146103015780634cdad5061461023a5780636e553f651461031457806370a08231146103275780637fb1ad621461034f575f5ffd5b8063313ce5671461029e57806338359018146102b857806338d52e0f146102c157806339d88aff146102f8575f5ffd5b8063095ea7b3116101d0578063095ea7b31461024d5780630a28a4771461027057806318160ddd1461028357806323b872dd1461028b575f5ffd5b806301e1d11414610201578063034548cd1461021c57806306fdde031461022557806307a2d13a1461023a575b5f5ffd5b61020961049f565b6040519081526020015b60405180910390f35b61020960075481565b61022d61052e565b60405161021391906111f7565b61020961024836600461122c565b6105be565b61026061025b36600461125e565b6105cf565b6040519015158152602001610213565b61020961027e36600461122c565b6105e6565b600254610209565b610260610299366004611286565b6105f2565b6102a6610617565b60405160ff9091168152602001610213565b61020960085481565b6040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152602001610213565b61020960065481565b61020961030f3660046112c0565b610642565b6102096103223660046112d9565b610666565b6102096103353660046112c0565b6001600160a01b03165f9081526020819052604090205490565b60055460ff16610260565b61037b610368366004611303565b6005805460ff1916911515919091179055565b005b61020961038b3660046112d9565b6106c3565b61022d61070f565b6102606103a636600461125e565b61071e565b6102096103b936600461122c565b61072b565b6102096103cc366004611322565b610737565b6102096103df366004611322565b61078d565b6102096103f23660046112c0565b6107da565b61020961040536600461122c565b6107f7565b61037b61041836600461122c565b610802565b61020960095481565b6102096104343660046112c0565b6108f3565b61037b61044736600461135b565b610919565b61020961045a3660046112c0565b610998565b61020961046d36600461137a565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6102096109be565b5f7f00000000000000000000000000000000000000000000000000000000000000006040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015610505573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061052991906113a2565b905090565b60606003805461053d906113b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610569906113b9565b80156105b45780601f1061058b576101008083540402835291602001916105b4565b820191905f5260205f20905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b5f6105c9825f6109cd565b92915050565b5f336105dc818585610a05565b5060019392505050565b5f6105c9826001610a17565b5f336105ff858285610a46565b61060a858585610aaf565b60019150505b9392505050565b5f610529817f0000000000000000000000000000000000000000000000000000000000000000611405565b5f61064f60635f1961141e565b6006541461065f576006546105c9565b5f196105c9565b5f5f61067183610642565b9050808411156106a357828482604051633c8097d960e11b815260040161069a93929190611431565b60405180910390fd5b5f6106ad856107f7565b90506106bb33858784610b0c565b949350505050565b5f5f6106ce836107da565b9050808411156106f75782848260405163284ff66760e01b815260040161069a93929190611431565b5f6107018561072b565b90506106bb33858388610b0c565b60606004805461053d906113b9565b5f336105dc818585610aaf565b5f6105c98260016109cd565b5f5f610742836108f3565b90508085111561076b57828582604051633fa733bb60e21b815260040161069a93929190611431565b5f610775866105e6565b90506107843386868985610b61565b95945050505050565b5f5f61079883610998565b9050808511156107c157828582604051632e52afbb60e21b815260040161069a93929190611431565b5f6107cb866105be565b9050610784338686848a610b61565b5f6107e760635f1961141e565b6007541461065f576007546105c9565b5f6105c9825f610a17565b5f811315610889576040516340c10f1960e01b8152306004820152602481018290526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340c10f19906044015b5f604051808303815f87803b158015610870575f5ffd5b505af1158015610882573d5f5f3e3d5ffd5b5050505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316639dc29fac306108c284611452565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401610859565b5f61090060635f1961141e565b60085414610910576008546105c9565b6105c982610bb7565b5f82600381111561092c5761092c61146c565b036109375760068190555b600182600381111561094b5761094b61146c565b036109565760078190555b600282600381111561096a5761096a61146c565b036109755760088190555b60038260038111156109895761098961146c565b036109945760098190555b5050565b5f6109a560635f1961141e565b600954146109b5576009546105c9565b6105c982610bc4565b6109ca60635f1961141e565b81565b5f6106106109d961049f565b6109e4906001611480565b6109ef5f600a611576565b6002546109fc9190611480565b85919085610be1565b610a128383836001610c23565b505050565b5f610610610a2682600a611576565b600254610a339190611480565b610a3b61049f565b6109fc906001611480565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610aa95781811015610a9b57828183604051637dc7a0d960e11b815260040161069a93929190611431565b610aa984848484035f610c23565b50505050565b6001600160a01b038316610ad857604051634b637e8f60e11b81525f600482015260240161069a565b6001600160a01b038216610b015760405163ec442f0560e01b81525f600482015260240161069a565b610a12838383610cf5565b60055460ff1615610b2060045f3681611584565b610b29916115ab565b90610b54576040516340c2fd5360e11b81526001600160e01b0319909116600482015260240161069a565b50610aa984848484610e08565b60055460ff1615610b7560045f3681611584565b610b7e916115ab565b90610ba9576040516340c2fd5360e11b81526001600160e01b0319909116600482015260240161069a565b506108828585858585610e8c565b5f6105c961024883610998565b6001600160a01b0381165f908152602081905260408120546105c9565b5f610c0e610bee83610f4c565b8015610c0957505f8480610c0457610c046115e3565b868809115b151590565b610c19868686610f78565b6107849190611480565b6001600160a01b038416610c4c5760405163e602df0560e01b81525f600482015260240161069a565b6001600160a01b038316610c7557604051634a1406b160e11b81525f600482015260240161069a565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610aa957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ce791815260200190565b60405180910390a350505050565b6001600160a01b038316610d1f578060025f828254610d149190611480565b90915550610d7c9050565b6001600160a01b0383165f9081526020819052604090205481811015610d5e5783818360405163391434e360e21b815260040161069a93929190611431565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610d9857600280548290039055610db6565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dfb91815260200190565b60405180910390a3505050565b610e347f0000000000000000000000000000000000000000000000000000000000000000853085611028565b610e3e838261105e565b826001600160a01b0316846001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d78484604051610ce7929190918252602082015260400190565b826001600160a01b0316856001600160a01b031614610eb057610eb0838683610a46565b610eba8382611092565b610ee57f000000000000000000000000000000000000000000000000000000000000000085846110c6565b826001600160a01b0316846001600160a01b0316866001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db8585604051610f3d929190918252602082015260400190565b60405180910390a45050505050565b5f6002826003811115610f6157610f6161146c565b610f6b91906115f7565b60ff166001149050919050565b5f5f5f610f8586866110fb565b91509150815f03610fa957838181610f9f57610f9f6115e3565b0492505050610610565b818411610fc057610fc06003851502601118611117565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b611036848484846001611128565b610aa957604051635274afe760e01b81526001600160a01b038516600482015260240161069a565b6001600160a01b0382166110875760405163ec442f0560e01b81525f600482015260240161069a565b6109945f8383610cf5565b6001600160a01b0382166110bb57604051634b637e8f60e11b81525f600482015260240161069a565b610994825f83610cf5565b6110d38383836001611195565b610a1257604051635274afe760e01b81526001600160a01b038416600482015260240161069a565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f51148316611184578383151615611178573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f511483166111eb5783831516156111df573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b5f6020828403121561123c575f5ffd5b5035919050565b80356001600160a01b0381168114611259575f5ffd5b919050565b5f5f6040838503121561126f575f5ffd5b61127883611243565b946020939093013593505050565b5f5f5f60608486031215611298575f5ffd5b6112a184611243565b92506112af60208501611243565b929592945050506040919091013590565b5f602082840312156112d0575f5ffd5b61061082611243565b5f5f604083850312156112ea575f5ffd5b823591506112fa60208401611243565b90509250929050565b5f60208284031215611313575f5ffd5b81358015158114610610575f5ffd5b5f5f5f60608486031215611334575f5ffd5b8335925061134460208501611243565b915061135260408501611243565b90509250925092565b5f5f6040838503121561136c575f5ffd5b823560048110611278575f5ffd5b5f5f6040838503121561138b575f5ffd5b61139483611243565b91506112fa60208401611243565b5f602082840312156113b2575f5ffd5b5051919050565b600181811c908216806113cd57607f821691505b6020821081036113eb57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b60ff81811683821601908111156105c9576105c96113f1565b818103818111156105c9576105c96113f1565b6001600160a01b039390931683526020830191909152604082015260600190565b5f600160ff1b8201611466576114666113f1565b505f0390565b634e487b7160e01b5f52602160045260245ffd5b808201808211156105c9576105c96113f1565b6001815b60018411156114ce578085048111156114b2576114b26113f1565b60018416156114c057908102905b60019390931c928002611497565b935093915050565b5f826114e4575060016105c9565b816114f057505f6105c9565b816001811461150657600281146115105761152c565b60019150506105c9565b60ff841115611521576115216113f1565b50506001821b6105c9565b5060208310610133831016604e8410600b841016171561154f575081810a6105c9565b61155b5f198484611493565b805f190482111561156e5761156e6113f1565b029392505050565b5f61061060ff8416836114d6565b5f5f85851115611592575f5ffd5b8386111561159e575f5ffd5b5050820193919092039150565b80356001600160e01b031981169060048410156115dc576001600160e01b0319600485900360031b81901b82161691505b5092915050565b634e487b7160e01b5f52601260045260245ffd5b5f60ff83168061161557634e487b7160e01b5f52601260045260245ffd5b8060ff8416069150509291505056fea264697066735822122041a239773b0c4f47712d5277cd163f3256eb28220d6a600a22cf02fd0bf1a59064736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1FD JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x86DE9E4F GT PUSH2 0x114 JUMPI DUP1 PUSH4 0xC6E6F592 GT PUSH2 0xA9 JUMPI DUP1 PUSH4 0xD6DD0234 GT PUSH2 0x79 JUMPI DUP1 PUSH4 0xD6DD0234 EQ PUSH2 0x439 JUMPI DUP1 PUSH4 0xD905777E EQ PUSH2 0x44C JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x45F JUMPI DUP1 PUSH4 0xEF8B30F7 EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0xF3C0B892 EQ PUSH2 0x497 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC6E6F592 EQ PUSH2 0x3F7 JUMPI DUP1 PUSH4 0xC7361ED2 EQ PUSH2 0x40A JUMPI DUP1 PUSH4 0xCC7FCC60 EQ PUSH2 0x41D JUMPI DUP1 PUSH4 0xCE96CB77 EQ PUSH2 0x426 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xB3D7F6B9 GT PUSH2 0xE4 JUMPI DUP1 PUSH4 0xB3D7F6B9 EQ PUSH2 0x3AB JUMPI DUP1 PUSH4 0xB460AF94 EQ PUSH2 0x3BE JUMPI DUP1 PUSH4 0xBA087652 EQ PUSH2 0x3D1 JUMPI DUP1 PUSH4 0xC63D75B6 EQ PUSH2 0x3E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x86DE9E4F EQ PUSH2 0x35A JUMPI DUP1 PUSH4 0x94BF804D EQ PUSH2 0x37D JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x390 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x398 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0x195 JUMPI DUP1 PUSH4 0x402D267D GT PUSH2 0x165 JUMPI DUP1 PUSH4 0x402D267D EQ PUSH2 0x301 JUMPI DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x23A JUMPI DUP1 PUSH4 0x6E553F65 EQ PUSH2 0x314 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x327 JUMPI DUP1 PUSH4 0x7FB1AD62 EQ PUSH2 0x34F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 EQ PUSH2 0x29E JUMPI DUP1 PUSH4 0x38359018 EQ PUSH2 0x2B8 JUMPI DUP1 PUSH4 0x38D52E0F EQ PUSH2 0x2C1 JUMPI DUP1 PUSH4 0x39D88AFF EQ PUSH2 0x2F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x1D0 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0xA28A477 EQ PUSH2 0x270 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x283 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x28B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1E1D114 EQ PUSH2 0x201 JUMPI DUP1 PUSH4 0x34548CD EQ PUSH2 0x21C JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0x7A2D13A EQ PUSH2 0x23A JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x209 PUSH2 0x49F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x209 PUSH1 0x7 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x22D PUSH2 0x52E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x213 SWAP2 SWAP1 PUSH2 0x11F7 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x248 CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x5BE JUMP JUMPDEST PUSH2 0x260 PUSH2 0x25B CALLDATASIZE PUSH1 0x4 PUSH2 0x125E JUMP JUMPDEST PUSH2 0x5CF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x27E CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x5E6 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x209 JUMP JUMPDEST PUSH2 0x260 PUSH2 0x299 CALLDATASIZE PUSH1 0x4 PUSH2 0x1286 JUMP JUMPDEST PUSH2 0x5F2 JUMP JUMPDEST PUSH2 0x2A6 PUSH2 0x617 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x213 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x6 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x30F CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH2 0x642 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x322 CALLDATASIZE PUSH1 0x4 PUSH2 0x12D9 JUMP JUMPDEST PUSH2 0x666 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x335 CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 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 0x5 SLOAD PUSH1 0xFF AND PUSH2 0x260 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x368 CALLDATASIZE PUSH1 0x4 PUSH2 0x1303 JUMP JUMPDEST PUSH1 0x5 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x209 PUSH2 0x38B CALLDATASIZE PUSH1 0x4 PUSH2 0x12D9 JUMP JUMPDEST PUSH2 0x6C3 JUMP JUMPDEST PUSH2 0x22D PUSH2 0x70F JUMP JUMPDEST PUSH2 0x260 PUSH2 0x3A6 CALLDATASIZE PUSH1 0x4 PUSH2 0x125E JUMP JUMPDEST PUSH2 0x71E JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3B9 CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x72B JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3CC CALLDATASIZE PUSH1 0x4 PUSH2 0x1322 JUMP JUMPDEST PUSH2 0x737 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3DF CALLDATASIZE PUSH1 0x4 PUSH2 0x1322 JUMP JUMPDEST PUSH2 0x78D JUMP JUMPDEST PUSH2 0x209 PUSH2 0x3F2 CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH2 0x7DA JUMP JUMPDEST PUSH2 0x209 PUSH2 0x405 CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x7F7 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x418 CALLDATASIZE PUSH1 0x4 PUSH2 0x122C JUMP JUMPDEST PUSH2 0x802 JUMP JUMPDEST PUSH2 0x209 PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x434 CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH2 0x8F3 JUMP JUMPDEST PUSH2 0x37B PUSH2 0x447 CALLDATASIZE PUSH1 0x4 PUSH2 0x135B JUMP JUMPDEST PUSH2 0x919 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x45A CALLDATASIZE PUSH1 0x4 PUSH2 0x12C0 JUMP JUMPDEST PUSH2 0x998 JUMP JUMPDEST PUSH2 0x209 PUSH2 0x46D CALLDATASIZE PUSH1 0x4 PUSH2 0x137A 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 PUSH2 0x209 PUSH2 0x9BE JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x40 MLOAD PUSH4 0x70A08231 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 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x505 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 0x529 SWAP2 SWAP1 PUSH2 0x13A2 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x53D SWAP1 PUSH2 0x13B9 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 0x569 SWAP1 PUSH2 0x13B9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5B4 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x58B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5B4 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 0x597 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x5C9 DUP3 PUSH0 PUSH2 0x9CD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5DC DUP2 DUP6 DUP6 PUSH2 0xA05 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x5C9 DUP3 PUSH1 0x1 PUSH2 0xA17 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5FF DUP6 DUP3 DUP6 PUSH2 0xA46 JUMP JUMPDEST PUSH2 0x60A DUP6 DUP6 DUP6 PUSH2 0xAAF JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x529 DUP2 PUSH32 0x0 PUSH2 0x1405 JUMP JUMPDEST PUSH0 PUSH2 0x64F PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST PUSH1 0x6 SLOAD EQ PUSH2 0x65F JUMPI PUSH1 0x6 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH0 NOT PUSH2 0x5C9 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x671 DUP4 PUSH2 0x642 JUMP JUMPDEST SWAP1 POP DUP1 DUP5 GT ISZERO PUSH2 0x6A3 JUMPI DUP3 DUP5 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3C8097D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x6AD DUP6 PUSH2 0x7F7 JUMP JUMPDEST SWAP1 POP PUSH2 0x6BB CALLER DUP6 DUP8 DUP5 PUSH2 0xB0C JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x6CE DUP4 PUSH2 0x7DA JUMP JUMPDEST SWAP1 POP DUP1 DUP5 GT ISZERO PUSH2 0x6F7 JUMPI DUP3 DUP5 DUP3 PUSH1 0x40 MLOAD PUSH4 0x284FF667 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH0 PUSH2 0x701 DUP6 PUSH2 0x72B JUMP JUMPDEST SWAP1 POP PUSH2 0x6BB CALLER DUP6 DUP4 DUP9 PUSH2 0xB0C JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x53D SWAP1 PUSH2 0x13B9 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x5DC DUP2 DUP6 DUP6 PUSH2 0xAAF JUMP JUMPDEST PUSH0 PUSH2 0x5C9 DUP3 PUSH1 0x1 PUSH2 0x9CD JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x742 DUP4 PUSH2 0x8F3 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x76B JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3FA733BB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH0 PUSH2 0x775 DUP7 PUSH2 0x5E6 JUMP JUMPDEST SWAP1 POP PUSH2 0x784 CALLER DUP7 DUP7 DUP10 DUP6 PUSH2 0xB61 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x798 DUP4 PUSH2 0x998 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x7C1 JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x2E52AFBB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH0 PUSH2 0x7CB DUP7 PUSH2 0x5BE JUMP JUMPDEST SWAP1 POP PUSH2 0x784 CALLER DUP7 DUP7 DUP5 DUP11 PUSH2 0xB61 JUMP JUMPDEST PUSH0 PUSH2 0x7E7 PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST PUSH1 0x7 SLOAD EQ PUSH2 0x65F JUMPI PUSH1 0x7 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH0 PUSH2 0x5C9 DUP3 PUSH0 PUSH2 0xA17 JUMP JUMPDEST PUSH0 DUP2 SGT ISZERO PUSH2 0x889 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C10F19 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x40C10F19 SWAP1 PUSH1 0x44 ADD JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x870 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x882 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x9DC29FAC ADDRESS PUSH2 0x8C2 DUP5 PUSH2 0x1452 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP6 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x859 JUMP JUMPDEST PUSH0 PUSH2 0x900 PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST PUSH1 0x8 SLOAD EQ PUSH2 0x910 JUMPI PUSH1 0x8 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH2 0x5C9 DUP3 PUSH2 0xBB7 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x92C JUMPI PUSH2 0x92C PUSH2 0x146C JUMP JUMPDEST SUB PUSH2 0x937 JUMPI PUSH1 0x6 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x94B JUMPI PUSH2 0x94B PUSH2 0x146C JUMP JUMPDEST SUB PUSH2 0x956 JUMPI PUSH1 0x7 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x96A JUMPI PUSH2 0x96A PUSH2 0x146C JUMP JUMPDEST SUB PUSH2 0x975 JUMPI PUSH1 0x8 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x989 JUMPI PUSH2 0x989 PUSH2 0x146C JUMP JUMPDEST SUB PUSH2 0x994 JUMPI PUSH1 0x9 DUP2 SWAP1 SSTORE JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x9A5 PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST PUSH1 0x9 SLOAD EQ PUSH2 0x9B5 JUMPI PUSH1 0x9 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH2 0x5C9 DUP3 PUSH2 0xBC4 JUMP JUMPDEST PUSH2 0x9CA PUSH1 0x63 PUSH0 NOT PUSH2 0x141E JUMP JUMPDEST DUP2 JUMP JUMPDEST PUSH0 PUSH2 0x610 PUSH2 0x9D9 PUSH2 0x49F JUMP JUMPDEST PUSH2 0x9E4 SWAP1 PUSH1 0x1 PUSH2 0x1480 JUMP JUMPDEST PUSH2 0x9EF PUSH0 PUSH1 0xA PUSH2 0x1576 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x9FC SWAP2 SWAP1 PUSH2 0x1480 JUMP JUMPDEST DUP6 SWAP2 SWAP1 DUP6 PUSH2 0xBE1 JUMP JUMPDEST PUSH2 0xA12 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0xC23 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x610 PUSH2 0xA26 DUP3 PUSH1 0xA PUSH2 0x1576 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0xA33 SWAP2 SWAP1 PUSH2 0x1480 JUMP JUMPDEST PUSH2 0xA3B PUSH2 0x49F JUMP JUMPDEST PUSH2 0x9FC SWAP1 PUSH1 0x1 PUSH2 0x1480 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 0xAA9 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xA9B JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 JUMP JUMPDEST PUSH2 0xAA9 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0xC23 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xAD8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xB01 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH2 0xA12 DUP4 DUP4 DUP4 PUSH2 0xCF5 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0xB20 PUSH1 0x4 PUSH0 CALLDATASIZE DUP2 PUSH2 0x1584 JUMP JUMPDEST PUSH2 0xB29 SWAP2 PUSH2 0x15AB JUMP JUMPDEST SWAP1 PUSH2 0xB54 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C2FD53 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST POP PUSH2 0xAA9 DUP5 DUP5 DUP5 DUP5 PUSH2 0xE08 JUMP JUMPDEST PUSH1 0x5 SLOAD PUSH1 0xFF AND ISZERO PUSH2 0xB75 PUSH1 0x4 PUSH0 CALLDATASIZE DUP2 PUSH2 0x1584 JUMP JUMPDEST PUSH2 0xB7E SWAP2 PUSH2 0x15AB JUMP JUMPDEST SWAP1 PUSH2 0xBA9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x40C2FD53 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST POP PUSH2 0x882 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0xE8C JUMP JUMPDEST PUSH0 PUSH2 0x5C9 PUSH2 0x248 DUP4 PUSH2 0x998 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 SLOAD PUSH2 0x5C9 JUMP JUMPDEST PUSH0 PUSH2 0xC0E PUSH2 0xBEE DUP4 PUSH2 0xF4C JUMP JUMPDEST DUP1 ISZERO PUSH2 0xC09 JUMPI POP PUSH0 DUP5 DUP1 PUSH2 0xC04 JUMPI PUSH2 0xC04 PUSH2 0x15E3 JUMP JUMPDEST DUP7 DUP9 MULMOD GT JUMPDEST ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH2 0xC19 DUP7 DUP7 DUP7 PUSH2 0xF78 JUMP JUMPDEST PUSH2 0x784 SWAP2 SWAP1 PUSH2 0x1480 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0xC4C JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xC75 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A 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 0xAA9 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 0xCE7 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 0xD1F JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xD14 SWAP2 SWAP1 PUSH2 0x1480 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xD7C 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 0xD5E JUMPI DUP4 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x69A SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1431 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 0xD98 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0xDB6 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 0xDFB SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0xE34 PUSH32 0x0 DUP6 ADDRESS DUP6 PUSH2 0x1028 JUMP JUMPDEST PUSH2 0xE3E DUP4 DUP3 PUSH2 0x105E JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDCBC1C05240F31FF3AD067EF1EE35CE4997762752E3A095284754544F4C709D7 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0xCE7 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xEB0 JUMPI PUSH2 0xEB0 DUP4 DUP7 DUP4 PUSH2 0xA46 JUMP JUMPDEST PUSH2 0xEBA DUP4 DUP3 PUSH2 0x1092 JUMP JUMPDEST PUSH2 0xEE5 PUSH32 0x0 DUP6 DUP5 PUSH2 0x10C6 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFBDE797D201C681B91056529119E0B02407C7BB96A4A2C75C01FC9667232C8DB DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0xF3D SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xF61 JUMPI PUSH2 0xF61 PUSH2 0x146C JUMP JUMPDEST PUSH2 0xF6B SWAP2 SWAP1 PUSH2 0x15F7 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x1 EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0xF85 DUP7 DUP7 PUSH2 0x10FB JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0xFA9 JUMPI DUP4 DUP2 DUP2 PUSH2 0xF9F JUMPI PUSH2 0xF9F PUSH2 0x15E3 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x610 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0xFC0 JUMPI PUSH2 0xFC0 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x1117 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1036 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x1128 JUMP JUMPDEST PUSH2 0xAA9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1087 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH2 0x994 PUSH0 DUP4 DUP4 PUSH2 0xCF5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x10BB JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH2 0x994 DUP3 PUSH0 DUP4 PUSH2 0xCF5 JUMP JUMPDEST PUSH2 0x10D3 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x1195 JUMP JUMPDEST PUSH2 0xA12 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x69A JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x1184 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x1178 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x11EB JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x11DF JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP 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 PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x123C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1259 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x126F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1278 DUP4 PUSH2 0x1243 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 0x1298 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x12A1 DUP5 PUSH2 0x1243 JUMP JUMPDEST SWAP3 POP PUSH2 0x12AF PUSH1 0x20 DUP6 ADD PUSH2 0x1243 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 0x12D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x610 DUP3 PUSH2 0x1243 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x12EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x12FA PUSH1 0x20 DUP5 ADD PUSH2 0x1243 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1313 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x610 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1334 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH2 0x1344 PUSH1 0x20 DUP6 ADD PUSH2 0x1243 JUMP JUMPDEST SWAP2 POP PUSH2 0x1352 PUSH1 0x40 DUP6 ADD PUSH2 0x1243 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x136C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x4 DUP2 LT PUSH2 0x1278 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x138B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1394 DUP4 PUSH2 0x1243 JUMP JUMPDEST SWAP2 POP PUSH2 0x12FA PUSH1 0x20 DUP5 ADD PUSH2 0x1243 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x13B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x13CD JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x13EB 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 PUSH1 0xFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x5C9 JUMPI PUSH2 0x5C9 PUSH2 0x13F1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x5C9 JUMPI PUSH2 0x5C9 PUSH2 0x13F1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x1466 JUMPI PUSH2 0x1466 PUSH2 0x13F1 JUMP JUMPDEST POP PUSH0 SUB SWAP1 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 0x5C9 JUMPI PUSH2 0x5C9 PUSH2 0x13F1 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x14CE JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x14B2 JUMPI PUSH2 0x14B2 PUSH2 0x13F1 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x14C0 JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x1497 JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x14E4 JUMPI POP PUSH1 0x1 PUSH2 0x5C9 JUMP JUMPDEST DUP2 PUSH2 0x14F0 JUMPI POP PUSH0 PUSH2 0x5C9 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x1506 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x1510 JUMPI PUSH2 0x152C JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x5C9 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x1521 JUMPI PUSH2 0x1521 PUSH2 0x13F1 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x5C9 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x154F JUMPI POP DUP2 DUP2 EXP PUSH2 0x5C9 JUMP JUMPDEST PUSH2 0x155B PUSH0 NOT DUP5 DUP5 PUSH2 0x1493 JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x156E JUMPI PUSH2 0x156E PUSH2 0x13F1 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x610 PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x14D6 JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x1592 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x159E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x15DC 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 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x1615 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 PUSH1 0xFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 COINBASE LOG2 CODECOPY PUSH24 0x3B0C4F47712D5277CD163F3256EB28220D6A600A22CF02FD SIGNEXTEND CALL 0xA5 SWAP1 PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"462:2711:41:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7192:125:79;;;:::i;:::-;;;160:25:125;;;148:2;133:18;7192:125:79;;;;;;;;561:30:41;;;;;;1760:89:77;;;:::i;:::-;;;;;;;:::i;7535:148:79:-;;;;;;:::i;:::-;;:::i;3902:186:77:-;;;;;;:::i;:::-;;:::i;:::-;;;1498:14:125;;1491:22;1473:41;;1461:2;1446:18;3902:186:77;1333:187:125;8672:147:79;;;;;;:::i;:::-;;:::i;2803:97:77:-;2881:12;;2803:97;;4680:244;;;;;;:::i;:::-;;:::i;6877:151:79:-;;;:::i;:::-;;;2076:4:125;2064:17;;;2046:36;;2034:2;2019:18;6877:151:79;1904:184:125;595:34:41;;;;;;7063:94:79;;;-1:-1:-1;;;;;7143:6:79;2257:32:125;2239:51;;2227:2;2212:18;7063:94:79;2093:203:125;524:33:41;;;;;;2105:175;;;;;;:::i;:::-;;:::i;9035:392:79:-;;;;;;:::i;:::-;;:::i;2933:116:77:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3024:18:77;2998:7;3024:18;;;;;;;;;;;;2933:116;2029:72:41;2089:7;;;;2029:72;;1955:70;;;;;;:::i;:::-;2003:7;:17;;-1:-1:-1;;2003:17:41;;;;;;;;;;1955:70;;;9462:380:79;;;;;;:::i;:::-;;:::i;1962:93:77:-;;;:::i;3244:178::-;;;;;;:::i;:::-;;:::i;8494:143:79:-;;;;;;:::i;:::-;;:::i;9877:413::-;;;;;;:::i;:::-;;:::i;10325:405::-;;;;;;:::i;:::-;;:::i;2284:163:41:-;;;;;;:::i;:::-;;:::i;7352:148:79:-;;;;;;:::i;:::-;;:::i;1729:222:41:-;;;;;;:::i;:::-;;:::i;633:32::-;;;;;;2451:179;;;;;;:::i;:::-;;:::i;2809:362::-;;;;;;:::i;:::-;;:::i;2634:171::-;;;;;;:::i;:::-;;:::i;3455:140:77:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3561:18:77;;;3535:7;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3455:140;670:63:41;;;:::i;7192:125:79:-;7244:7;7143:6;7270:40;;-1:-1:-1;;;7270:40:79;;7304:4;7270:40;;;2239:51:125;-1:-1:-1;;;;;7270:25:79;;;;;;;2212:18:125;;7270:40:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7263:47;;7192:125;:::o;1760:89:77:-;1805:13;1837:5;1830:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89;:::o;7535:148:79:-;7605:7;7631:45;7648:6;7656:19;7631:16;:45::i;:::-;7624:52;7535:148;-1:-1:-1;;7535:148:79:o;3902:186:77:-;3975:4;735:10:89;4029:31:77;735:10:89;4045:7:77;4054:5;4029:8;:31::i;:::-;-1:-1:-1;4077:4:77;;3902:186;-1:-1:-1;;;3902:186:77:o;8672:147:79:-;8742:7;8768:44;8785:6;8793:18;8768:16;:44::i;4680:244:77:-;4767:4;735:10:89;4823:37:77;4839:4;735:10:89;4854:5:77;4823:15;:37::i;:::-;4870:26;4880:4;4886:2;4890:5;4870:9;:26::i;:::-;4913:4;4906:11;;;4680:244;;;;;;:::o;6877:151:79:-;6958:5;6982:39;6958:5;6982:19;:39;:::i;2105:175:41:-;2170:7;711:22;731:2;-1:-1:-1;;711:22:41;:::i;:::-;2192:18;;:36;:83;;2257:18;;2192:83;;;-1:-1:-1;;2231:23:41;7718:108:79;9035:392;9110:7;9129:17;9149:20;9160:8;9149:10;:20::i;:::-;9129:40;;9192:9;9183:6;:18;9179:110;;;9250:8;9260:6;9268:9;9224:54;;-1:-1:-1;;;9224:54:79;;;;;;;;;;:::i;:::-;;;;;;;;9179:110;9299:14;9316:22;9331:6;9316:14;:22::i;:::-;9299:39;-1:-1:-1;9348:48:79;735:10:89;9371:8:79;9381:6;9389;9348:8;:48::i;:::-;9414:6;9035:392;-1:-1:-1;;;;9035:392:79:o;9462:380::-;9534:7;9553:17;9573;9581:8;9573:7;:17::i;:::-;9553:37;;9613:9;9604:6;:18;9600:107;;;9668:8;9678:6;9686:9;9645:51;;-1:-1:-1;;;9645:51:79;;;;;;;;;;:::i;9600:107::-;9717:14;9734:19;9746:6;9734:11;:19::i;:::-;9717:36;-1:-1:-1;9763:48:79;735:10:89;9786:8:79;9796:6;9804;9763:8;:48::i;1962:93:77:-;2009:13;2041:7;2034:14;;;;;:::i;3244:178::-;3313:4;735:10:89;3367:27:77;735:10:89;3384:2:77;3388:5;3367:9;:27::i;8494:143:79:-;8560:7;8586:44;8603:6;8611:18;8586:16;:44::i;9877:413::-;9968:7;9987:17;10007:18;10019:5;10007:11;:18::i;:::-;9987:38;;10048:9;10039:6;:18;10035:108;;;10107:5;10114:6;10122:9;10080:52;;-1:-1:-1;;;10080:52:79;;;;;;;;;;:::i;10035:108::-;10153:14;10170:23;10186:6;10170:15;:23::i;:::-;10153:40;-1:-1:-1;10203:56:79;735:10:89;10227:8:79;10237:5;10244:6;10252;10203:9;:56::i;:::-;10277:6;9877:413;-1:-1:-1;;;;;9877:413:79:o;10325:405::-;10414:7;10433:17;10453:16;10463:5;10453:9;:16::i;:::-;10433:36;;10492:9;10483:6;:18;10479:106;;;10549:5;10556:6;10564:9;10524:50;;-1:-1:-1;;;10524:50:79;;;;;;;;;;:::i;10479:106::-;10595:14;10612:21;10626:6;10612:13;:21::i;:::-;10595:38;-1:-1:-1;10643:56:79;735:10:89;10667:8:79;10677:5;10684:6;10692;10643:9;:56::i;2284:163:41:-;2346:7;711:22;731:2;-1:-1:-1;;711:22:41;:::i;:::-;2368:15;;:33;:74;;2427:15;;2368:74;;7352:148:79;7422:7;7448:45;7465:6;7473:19;7448:16;:45::i;1729:222:41:-;1797:1;1788:6;:10;1784:163;;;1808:55;;-1:-1:-1;;;1808:55:41;;1840:4;1808:55;;;5820:51:125;5887:18;;;5880:34;;;-1:-1:-1;;;;;7143:6:79;1808:23:41;;;;5793:18:125;;1808:55:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1729:222;:::o;1784:163::-;7143:6:79;-1:-1:-1;;;;;1884:23:41;;1916:4;1931:7;1932:6;1931:7;:::i;:::-;1884:56;;-1:-1:-1;;;;;;1884:56:41;;;;;;;-1:-1:-1;;;;;5838:32:125;;;1884:56:41;;;5820:51:125;5887:18;;;5880:34;5793:18;;1884:56:41;5646:274:125;2451:179:41;2517:7;711:22;731:2;-1:-1:-1;;711:22:41;:::i;:::-;2539:19;;:37;:86;;2606:19;;2539:86;;;2579:24;2597:5;2579:17;:24::i;2809:362::-;2900:22;2890:6;:32;;;;;;;;:::i;:::-;;2886:67;;2924:18;:29;;;2886:67;2973:19;2963:6;:29;;;;;;;;:::i;:::-;;2959:61;;2994:15;:26;;;2959:61;3040:23;3030:6;:33;;;;;;;;:::i;:::-;;3026:69;;3065:19;:30;;;3026:69;3115:21;3105:6;:31;;;;;;;;:::i;:::-;;3101:65;;3138:17;:28;;;3101:65;2809:362;;:::o;2634:171::-;2698:7;711:22;731:2;-1:-1:-1;;711:22:41;:::i;:::-;2720:17;;:35;:80;;2783:17;;2720:80;;;2758:22;2774:5;2758:15;:22::i;670:63::-;711:22;731:2;-1:-1:-1;;711:22:41;:::i;:::-;670:63;:::o;11191:213:79:-;11288:7;11314:83;11328:13;:11;:13::i;:::-;:17;;11344:1;11328:17;:::i;:::-;11363:23;13365:5;11363:2;:23;:::i;:::-;2881:12:77;;11347:39:79;;;;:::i;:::-;11314:6;;:83;11388:8;11314:13;:83::i;8630:128:77:-;8714:37;8723:5;8730:7;8739:5;8746:4;8714:8;:37::i;:::-;8630:128;;;:::o;10854:213:79:-;10951:7;10977:83;11007:23;10951:7;11007:2;:23;:::i;:::-;2881:12:77;;10991:39:79;;;;:::i;:::-;11032:13;:11;:13::i;:::-;:17;;11048:1;11032:17;:::i;10321:476:77:-;-1:-1:-1;;;;;3561:18:77;;;10420:24;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10486:36:77;;10482:309;;;10561:5;10542:16;:24;10538:130;;;10620:7;10629:16;10647:5;10593:60;;-1:-1:-1;;;10593:60:77;;;;;;;;;;:::i;10538:130::-;10709:57;10718:5;10725:7;10753:5;10734:16;:24;10760:5;10709:8;:57::i;:::-;10410:387;10321:476;;;:::o;5297:300::-;-1:-1:-1;;;;;5380:18:77;;5376:86;;5421:30;;-1:-1:-1;;;5421:30:77;;5448:1;5421:30;;;2239:51:125;2212:18;;5421:30:77;2093:203:125;5376:86:77;-1:-1:-1;;;;;5475:16:77;;5471:86;;5514:32;;-1:-1:-1;;;5514:32:77;;5543:1;5514:32;;;2239:51:125;2212:18;;5514:32:77;2093:203:125;5471:86:77;5566:24;5574:4;5580:2;5584:5;5566:7;:24::i;1180:198:41:-;891:7;;;;890:8;921:13;932:1;891:7;921:8;891:7;921:13;:::i;:::-;914:21;;;:::i;:::-;882:55;;;;;-1:-1:-1;;;882:55:41;;-1:-1:-1;;;;;;8601:33:125;;;882:55:41;;;8583:52:125;8556:18;;882:55:41;8439:202:125;882:55:41;;1325:48:::1;1340:6;1348:8;1358:6;1366;1325:14;:48::i;1382:226::-:0;891:7;;;;890:8;921:13;932:1;891:7;921:8;891:7;921:13;:::i;:::-;914:21;;;:::i;:::-;882:55;;;;;-1:-1:-1;;;882:55:41;;-1:-1:-1;;;;;;8601:33:125;;;882:55:41;;;8583:52:125;8556:18;;882:55:41;8439:202:125;882:55:41;;1547:56:::1;1563:6;1571:8;1581:5;1588:6;1596;1547:15;:56::i;8001:129:79:-:0;8066:7;8092:31;8106:16;8116:5;8106:9;:16::i;8165:112::-;-1:-1:-1;;;;;3024:18:77;;8228:7:79;3024:18:77;;;;;;;;;;;8254:16:79;2933:116:77;11070:238:105;11171:7;11225:76;11241:26;11258:8;11241:16;:26::i;:::-;:59;;;;;11299:1;11284:11;11271:25;;;;;:::i;:::-;11281:1;11278;11271:25;:29;11241:59;34914:9:106;34907:17;;34795:145;11225:76:105;11197:25;11204:1;11207;11210:11;11197:6;:25::i;:::-;:104;;;;:::i;9607:432:77:-;-1:-1:-1;;;;;9719:19:77;;9715:89;;9761:32;;-1:-1:-1;;;9761:32:77;;9790:1;9761:32;;;2239:51:125;2212:18;;9761:32:77;2093:203:125;9715:89:77;-1:-1:-1;;;;;9817:21:77;;9813:90;;9861:31;;-1:-1:-1;;;9861:31:77;;9889:1;9861:31;;;2239:51:125;2212:18;;9861:31:77;2093:203:125;9813:90:77;-1:-1:-1;;;;;9912:18:77;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;9957:76;;;;10007:7;-1:-1:-1;;;;;9991:31:77;10000:5;-1:-1:-1;;;;;9991:31:77;;10016:5;9991:31;;;;160:25:125;;148:2;133:18;;14:177;9991:31:77;;;;;;;;9607:432;;;;:::o;5912:1107::-;-1:-1:-1;;;;;6001:18:77;;5997:540;;6153:5;6137:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;5997:540:77;;-1:-1:-1;5997:540:77;;-1:-1:-1;;;;;6211:15:77;;6189:19;6211:15;;;;;;;;;;;6244:19;;;6240:115;;;6315:4;6321:11;6334:5;6290:50;;-1:-1:-1;;;6290:50:77;;;;;;;;;;:::i;6240:115::-;-1:-1:-1;;;;;6475:15:77;;:9;:15;;;;;;;;;;6493:19;;;;6475:37;;5997:540;-1:-1:-1;;;;;6551:16:77;;6547:425;;6714:12;:21;;;;;;;6547:425;;;-1:-1:-1;;;;;6925:13:77;;:9;:13;;;;;;;;;;:22;;;;;;6547:425;7002:2;-1:-1:-1;;;;;6987:25:77;6996:4;-1:-1:-1;;;;;6987:25:77;;7006:5;6987:25;;;;160::125;;148:2;133:18;;14:177;6987:25:77;;;;;;;;5912:1107;;;:::o;11468:841:79:-;12138:74;7143:6;12182;12198:4;12205:6;12138:26;:74::i;:::-;12222:23;12228:8;12238:6;12222:5;:23::i;:::-;12277:8;-1:-1:-1;;;;;12261:41:79;12269:6;-1:-1:-1;;;;;12261:41:79;;12287:6;12295;12261:41;;;;;;8952:25:125;;;9008:2;8993:18;;8986:34;8940:2;8925:18;;8778:248;12376:925:79;12563:5;-1:-1:-1;;;;;12553:15:79;:6;-1:-1:-1;;;;;12553:15:79;;12549:84;;12584:38;12600:5;12607:6;12615;12584:15;:38::i;:::-;13142:20;13148:5;13155:6;13142:5;:20::i;:::-;13172:57;7143:6;13212:8;13222:6;13172:22;:57::i;:::-;13272:5;-1:-1:-1;;;;;13245:49:79;13262:8;-1:-1:-1;;;;;13245:49:79;13254:6;-1:-1:-1;;;;;13245:49:79;;13279:6;13287;13245:49;;;;;;8952:25:125;;;9008:2;8993:18;;8986:34;8940:2;8925:18;;8778:248;13245:49:79;;;;;;;;12376:925;;;;;:::o;32036:122:105:-;32104:4;32145:1;32133:8;32127:15;;;;;;;;:::i;:::-;:19;;;;:::i;:::-;:24;;32150:1;32127:24;32120:31;;32036:122;;;:::o;7258:3683::-;7340:14;7391:12;7405:11;7420:12;7427:1;7430;7420:6;:12::i;:::-;7390:42;;;;7514:4;7522:1;7514:9;7510:365;;7849:11;7843:3;:17;;;;;:::i;:::-;;7836:24;;;;;;7510:365;8000:4;7985:11;:19;7981:142;;8024:84;5328:5;8044:16;;5327:36;940:4:95;5322:42:105;8024:11;:84::i;:::-;8375:17;8526:11;8523:1;8520;8513:25;8918:12;8948:15;;;8933:31;;9083:22;;;;;9816:1;9797;:15;;9796:21;;10049;;;10045:25;;10034:36;10119:21;;;10115:25;;10104:36;10191:21;;;10187:25;;10176:36;10262:21;;;10258:25;;10247:36;10335:21;;;10331:25;;10320:36;10409:21;;;10405:25;;;10394:36;9325:12;;;;9321:23;;;9346:1;9317:31;8638:18;;;8628:29;;;9432:11;;;;8681:19;;;;9176:14;;;;9425:18;;;;10884:13;;-1:-1:-1;;7258:3683:105;;;;;:::o;1662:232:82:-;1767:47;1785:5;1792:4;1798:2;1802:5;1809:4;1767:17;:47::i;:::-;1762:126;;1837:40;;-1:-1:-1;;;1837:40:82;;-1:-1:-1;;;;;2257:32:125;;1837:40:82;;;2239:51:125;2212:18;;1837:40:82;2093:203:125;7362:208:77;-1:-1:-1;;;;;7432:21:77;;7428:91;;7476:32;;-1:-1:-1;;;7476:32:77;;7505:1;7476:32;;;2239:51:125;2212:18;;7476:32:77;2093:203:125;7428:91:77;7528:35;7544:1;7548:7;7557:5;7528:7;:35::i;7888:206::-;-1:-1:-1;;;;;7958:21:77;;7954:89;;8002:30;;-1:-1:-1;;;8002:30:77;;8029:1;8002:30;;;2239:51:125;2212:18;;8002:30:77;2093:203:125;7954:89:77;8052:35;8060:7;8077:1;8081:5;8052:7;:35::i;1219:204:82:-;1306:37;1320:5;1327:2;1331:5;1338:4;1306:13;:37::i;:::-;1301:116;;1366:40;;-1:-1:-1;;;1366:40:82;;-1:-1:-1;;;;;2257:32:125;;1366:40:82;;;2239:51:125;2212:18;;1366:40:82;2093:203:125;1027:550:105;1088:12;;-1:-1:-1;;1471:1:105;1468;1461:20;1501:9;;;;1549:11;;;1535:12;;;;1531:30;;;;;1027:550;-1:-1:-1;;1027:550:105:o;1776:194:95:-;1881:10;1875:4;1868:24;1918:4;1912;1905:18;1949:4;1943;1936:18;10165:1393:82;10460:4;10454:11;-1:-1:-1;;;10323:12:82;10478:22;;;-1:-1:-1;;;;;10526:26:82;;;10520:4;10513:40;10579:24;;10573:4;10566:38;10624:4;10617:19;;;10323:12;10700:4;10323:12;10688:4;10323:12;;10672:5;10665;10660:45;10649:56;;10917:1;10910:4;10904:11;10901:18;10892:7;10888:32;10878:606;;11049:6;11039:7;11032:15;11028:28;11025:165;;;11105:16;11099:4;11094:3;11079:43;11155:16;11150:3;11143:29;11025:165;11466:1;11458:5;11446:18;11443:25;11424:16;11417:24;11413:56;11404:7;11400:70;11389:81;;10878:606;11504:4;11497:17;-1:-1:-1;11540:1:82;11534:4;11527:15;10165:1393;;-1:-1:-1;;;;;10165:1393:82:o;8373:1244::-;8600:4;8594:11;-1:-1:-1;;;8467:12:82;8618:22;;;-1:-1:-1;;;;;8666:24:82;;8660:4;8653:38;8711:4;8704:19;;;8467:12;8787:4;8467:12;8775:4;8467:12;;8759:5;8752;8747:45;8736:56;;9004:1;8997:4;8991:11;8988:18;8979:7;8975:32;8965:606;;9136:6;9126:7;9119:15;9115:28;9112:165;;;9192:16;9186:4;9181:3;9166:43;9242:16;9237:3;9230:29;9112:165;9553:1;9545:5;9533:18;9530:25;9511:16;9504:24;9500:56;9491:7;9487:70;9476:81;;8965:606;9591:4;9584:17;-1:-1:-1;8373:1244:82;;-1:-1:-1;;;;8373:1244:82:o;196:418:125:-;345:2;334:9;327:21;308:4;377:6;371:13;420:6;415:2;404:9;400:18;393:34;479:6;474:2;466:6;462:15;457:2;446:9;442:18;436:50;535:1;530:2;521:6;510:9;506:22;502:31;495:42;605:2;598;594:7;589:2;581:6;577:15;573:29;562:9;558:45;554:54;546:62;;;196:418;;;;:::o;619:226::-;678:6;731:2;719:9;710:7;706:23;702:32;699:52;;;747:1;744;737:12;699:52;-1:-1:-1;792:23:125;;619:226;-1:-1:-1;619:226:125:o;850:173::-;918:20;;-1:-1:-1;;;;;967:31:125;;957:42;;947:70;;1013:1;1010;1003:12;947:70;850:173;;;:::o;1028:300::-;1096:6;1104;1157:2;1145:9;1136:7;1132:23;1128:32;1125:52;;;1173:1;1170;1163:12;1125:52;1196:29;1215:9;1196:29;:::i;:::-;1186:39;1294:2;1279:18;;;;1266:32;;-1:-1:-1;;;1028:300:125:o;1525:374::-;1602:6;1610;1618;1671:2;1659:9;1650:7;1646:23;1642:32;1639:52;;;1687:1;1684;1677:12;1639:52;1710:29;1729:9;1710:29;:::i;:::-;1700:39;;1758:38;1792:2;1781:9;1777:18;1758:38;:::i;:::-;1525:374;;1748:48;;-1:-1:-1;;;1865:2:125;1850:18;;;;1837:32;;1525:374::o;2301:186::-;2360:6;2413:2;2401:9;2392:7;2388:23;2384:32;2381:52;;;2429:1;2426;2419:12;2381:52;2452:29;2471:9;2452:29;:::i;2492:300::-;2560:6;2568;2621:2;2609:9;2600:7;2596:23;2592:32;2589:52;;;2637:1;2634;2627:12;2589:52;2682:23;;;-1:-1:-1;2748:38:125;2782:2;2767:18;;2748:38;:::i;:::-;2738:48;;2492:300;;;;;:::o;2797:273::-;2853:6;2906:2;2894:9;2885:7;2881:23;2877:32;2874:52;;;2922:1;2919;2912:12;2874:52;2961:9;2948:23;3014:5;3007:13;3000:21;2993:5;2990:32;2980:60;;3036:1;3033;3026:12;3075:374;3152:6;3160;3168;3221:2;3209:9;3200:7;3196:23;3192:32;3189:52;;;3237:1;3234;3227:12;3189:52;3282:23;;;-1:-1:-1;3348:38:125;3382:2;3367:18;;3348:38;:::i;:::-;3338:48;;3405:38;3439:2;3428:9;3424:18;3405:38;:::i;:::-;3395:48;;3075:374;;;;;:::o;3638:396::-;3726:6;3734;3787:2;3775:9;3766:7;3762:23;3758:32;3755:52;;;3803:1;3800;3793:12;3755:52;3842:9;3829:23;3881:1;3874:5;3871:12;3861:40;;3897:1;3894;3887:12;4039:260;4107:6;4115;4168:2;4156:9;4147:7;4143:23;4139:32;4136:52;;;4184:1;4181;4174:12;4136:52;4207:29;4226:9;4207:29;:::i;:::-;4197:39;;4255:38;4289:2;4278:9;4274:18;4255:38;:::i;4304:184::-;4374:6;4427:2;4415:9;4406:7;4402:23;4398:32;4395:52;;;4443:1;4440;4433:12;4395:52;-1:-1:-1;4466:16:125;;4304:184;-1:-1:-1;4304:184:125:o;4493:380::-;4572:1;4568:12;;;;4615;;;4636:61;;4690:4;4682:6;4678:17;4668:27;;4636:61;4743:2;4735:6;4732:14;4712:18;4709:38;4706:161;;4789:10;4784:3;4780:20;4777:1;4770:31;4824:4;4821:1;4814:15;4852:4;4849:1;4842:15;4706:161;;4493:380;;;:::o;4878:127::-;4939:10;4934:3;4930:20;4927:1;4920:31;4970:4;4967:1;4960:15;4994:4;4991:1;4984:15;5010:148;5098:4;5077:12;;;5091;;;5073:31;;5116:13;;5113:39;;;5132:18;;:::i;5163:128::-;5230:9;;;5251:11;;;5248:37;;;5265:18;;:::i;5296:345::-;-1:-1:-1;;;;;5516:32:125;;;;5498:51;;5580:2;5565:18;;5558:34;;;;5623:2;5608:18;;5601:34;5486:2;5471:18;;5296:345::o;5925:136::-;5960:3;-1:-1:-1;;;5981:22:125;;5978:48;;6006:18;;:::i;:::-;-1:-1:-1;6046:1:125;6042:13;;5925:136::o;6066:127::-;6127:10;6122:3;6118:20;6115:1;6108:31;6158:4;6155:1;6148:15;6182:4;6179:1;6172:15;6198:125;6263:9;;;6284:10;;;6281:36;;;6297:18;;:::i;6328:375::-;6416:1;6434:5;6448:249;6469:1;6459:8;6456:15;6448:249;;;6519:4;6514:3;6510:14;6504:4;6501:24;6498:50;;;6528:18;;:::i;:::-;6578:1;6568:8;6564:16;6561:49;;;6592:16;;;;6561:49;6675:1;6671:16;;;;;6631:15;;6448:249;;;6328:375;;;;;;:::o;6708:902::-;6757:5;6787:8;6777:80;;-1:-1:-1;6828:1:125;6842:5;;6777:80;6876:4;6866:76;;-1:-1:-1;6913:1:125;6927:5;;6866:76;6958:4;6976:1;6971:59;;;;7044:1;7039:174;;;;6951:262;;6971:59;7001:1;6992:10;;7015:5;;;7039:174;7076:3;7066:8;7063:17;7060:43;;;7083:18;;:::i;:::-;-1:-1:-1;;7139:1:125;7125:16;;7198:5;;6951:262;;7297:2;7287:8;7284:16;7278:3;7272:4;7269:13;7265:36;7259:2;7249:8;7246:16;7241:2;7235:4;7232:12;7228:35;7225:77;7222:203;;;-1:-1:-1;7334:19:125;;;7410:5;;7222:203;7457:42;-1:-1:-1;;7482:8:125;7476:4;7457:42;:::i;:::-;7535:6;7531:1;7527:6;7523:19;7514:7;7511:32;7508:58;;;7546:18;;:::i;:::-;7584:20;;6708:902;-1:-1:-1;;;6708:902:125:o;7615:140::-;7673:5;7702:47;7743:4;7733:8;7729:19;7723:4;7702:47;:::i;7760:331::-;7865:9;7876;7918:8;7906:10;7903:24;7900:44;;;7940:1;7937;7930:12;7900:44;7969:6;7959:8;7956:20;7953:40;;;7989:1;7986;7979:12;7953:40;-1:-1:-1;;8015:23:125;;;8060:25;;;;;-1:-1:-1;7760:331:125:o;8096:338::-;8216:19;;-1:-1:-1;;;;;;8253:29:125;;;8302:1;8294:10;;8291:137;;;-1:-1:-1;;;;;;8363:1:125;8359:11;;;8356:1;8352:19;8348:46;;;8340:55;;8336:82;;-1:-1:-1;8291:137:125;;8096:338;;;;:::o;8646:127::-;8707:10;8702:3;8698:20;8695:1;8688:31;8738:4;8735:1;8728:15;8762:4;8759:1;8752:15;9031:254;9061:1;9095:4;9092:1;9088:12;9119:3;9109:134;;9165:10;9160:3;9156:20;9153:1;9146:31;9200:4;9197:1;9190:15;9228:4;9225:1;9218:15;9109:134;9275:3;9268:4;9265:1;9261:12;9257:22;9252:27;;;9031:254;;;;:::o"},"methodIdentifiers":{"OVERRIDE_UNSET()":"f3c0b892","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","asset()":"38d52e0f","balanceOf(address)":"70a08231","broken()":"7fb1ad62","convertToAssets(uint256)":"07a2d13a","convertToShares(uint256)":"c6e6f592","decimals()":"313ce567","deposit(uint256,address)":"6e553f65","discreteEarning(int256)":"c7361ed2","maxDeposit(address)":"402d267d","maxMint(address)":"c63d75b6","maxRedeem(address)":"d905777e","maxWithdraw(address)":"ce96cb77","mint(uint256,address)":"94bf804d","name()":"06fdde03","overrideMaxDeposit()":"39d88aff","overrideMaxMint()":"034548cd","overrideMaxRedeem()":"cc7fcc60","overrideMaxWithdraw()":"38359018","previewDeposit(uint256)":"ef8b30f7","previewMint(uint256)":"b3d7f6b9","previewRedeem(uint256)":"4cdad506","previewWithdraw(uint256)":"0a28a477","redeem(uint256,address,address)":"ba087652","setBroken(bool)":"86de9e4f","setOverride(uint8,uint256)":"d6dd0234","symbol()":"95d89b41","totalAssets()":"01e1d114","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","withdraw(uint256,address,address)":"b460af94"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"contract IERC20Metadata\",\"name\":\"asset_\",\"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\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxMint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxRedeem\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxWithdraw\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"VaultIsBroken\",\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"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\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"OVERRIDE_UNSET\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"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\":[],\"name\":\"asset\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"broken\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"convertToShares\",\"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\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"int256\",\"name\":\"assets\",\"type\":\"int256\"}],\"name\":\"discreteEarning\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"overrideMaxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"overrideMaxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"overrideMaxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"overrideMaxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"redeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bool\",\"name\":\"broken_\",\"type\":\"bool\"}],\"name\":\"setBroken\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"enum TestERC4626.OverrideOption\",\"name\":\"option\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"newValue\",\"type\":\"uint256\"}],\"name\":\"setOverride\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalAssets\",\"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\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"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.\"}}],\"ERC4626ExceededMaxDeposit(address,uint256,uint256)\":[{\"details\":\"Attempted to deposit more assets than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxMint(address,uint256,uint256)\":[{\"details\":\"Attempted to mint more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxRedeem(address,uint256,uint256)\":[{\"details\":\"Attempted to redeem more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxWithdraw(address,uint256,uint256)\":[{\"details\":\"Attempted to withdraw more assets than the max amount for `receiver`.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}]},\"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\":\"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.\"},\"asset()\":{\"details\":\"Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing. - MUST be an ERC-20 token contract. - MUST NOT revert.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"convertToAssets(uint256)\":{\"details\":\"Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"convertToShares(uint256)\":{\"details\":\"Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"decimals()\":{\"details\":\"Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This \\\"original\\\" value is cached during construction of the vault contract. If this read operation fails (e.g., the asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals. See {IERC20Metadata-decimals}.\"},\"deposit(uint256,address)\":{\"details\":\"Deposit `assets` underlying tokens and send the corresponding number of vault shares (`shares`) to `receiver`. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   deposit execution, and are accounted for during deposit. - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"maxRedeem(address)\":{\"details\":\"Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault, through a redeem call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock. - MUST NOT revert.\"},\"maxWithdraw(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the Vault, through a withdraw call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST NOT revert.\"},\"mint(uint256,address)\":{\"details\":\"Mints exactly `shares` vault shares to `receiver` in exchange for `assets` underlying tokens. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint   execution, and are accounted for during mint. - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"previewDeposit(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called   in the same transaction. - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the   deposit would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"previewMint(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the   same transaction. - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint   would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by minting.\"},\"previewRedeem(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the   same transaction. - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the   redemption would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by redeeming.\"},\"previewWithdraw(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if   called   in the same transaction. - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though   the withdrawal would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"redeem(uint256,address,address)\":{\"details\":\"Burns exactly shares from owner and sends assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   redeem execution, and are accounted for during redeem. - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalAssets()\":{\"details\":\"Returns the total amount of the underlying asset that is \\u201cmanaged\\u201d by Vault. - SHOULD include any compounding that occurs from yield. - MUST be inclusive of any fees that are charged against assets in the Vault. - MUST NOT revert.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"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`.\"},\"withdraw(uint256,address,address)\":{\"details\":\"Burns shares from owner and sends exactly assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   withdraw execution, and are accounted for during withdraw. - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@ensuro/utils/contracts/TestERC4626.sol\":\"TestERC4626\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/utils/contracts/TestERC4626.sol\":{\"keccak256\":\"0x688032ec63b79e352f3eb8ceb1a358d9b61ff630a346807b1e9a017de0200150\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://6d40c7e350166b37b8f5301916939a752ffe296c30f7413b45b9c6b2c4c8e4ce\",\"dweb:/ipfs/QmWRG5CZsU1jeuoryJZP3Sg1cQU8Mu9C5bB7TwhF2M1ZaQ\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x669464167428061ee0f8618b73b3ee90aff8405683e7ddde8cd77dadaa1afe29\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0dda78587a7358b4fdf6b9fca0fde5a5e34930f36d5268a16028627fc0170195\",\"dweb:/ipfs/QmQ1b6cCceDRWNxti9HifsTCzmVP25Haxs1bWugm52vTqH\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol\":{\"keccak256\":\"0x8a6a0045f0bb52251a9a5d8bb5f4156f4eb3ba8521b1fca6a304befaab3e7d23\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ebd5125436dbb18ba3646cbdb4a8385a9e2bf28abc9d8178a9e7f31cca65f8b8\",\"dweb:/ipfs/QmPioMpycRKdAetJNYYfWCw36rQuyxNqhgHDFGRVLaPKnT\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Memory.sol\":{\"keccak256\":\"0x35feec480590c0ed9c1623df077ba9af406ad57cd9d149ff278c7316d6fe8fe0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://839967d079db4cd624c3f735a6e911953c0e2347418c016f6a0cc18ed1aa9603\",\"dweb:/ipfs/QmaWxNL8Ymkwerfvq1LNzpbq2PMzTGsnXzqsYExNyvKWka\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":23623,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":23629,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":23631,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":23633,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":23635,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_symbol","offset":0,"slot":"4","type":"t_string_storage"},{"astId":15536,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"_broken","offset":0,"slot":"5","type":"t_bool"},{"astId":15538,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"overrideMaxDeposit","offset":0,"slot":"6","type":"t_uint256"},{"astId":15540,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"overrideMaxMint","offset":0,"slot":"7","type":"t_uint256"},{"astId":15542,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"overrideMaxWithdraw","offset":0,"slot":"8","type":"t_uint256"},{"astId":15544,"contract":"@ensuro/utils/contracts/TestERC4626.sol:TestERC4626","label":"overrideMaxRedeem","offset":0,"slot":"9","type":"t_uint256"}],"types":{"t_address":{"encoding":"inplace","label":"address","numberOfBytes":"20"},"t_bool":{"encoding":"inplace","label":"bool","numberOfBytes":"1"},"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-upgradeable/metatx/ERC2771ContextUpgradeable.sol":{"ERC2771ContextUpgradeable":{"abi":[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"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.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"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 on 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.\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"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-upgradeable/metatx/ERC2771ContextUpgradeable.sol\":\"ERC2771ContextUpgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol\":{\"keccak256\":\"0x98d2543d4c386c70cd2d6ac763e6425631f76a944113cf594f90c59357b41cb1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4fa767e1bf957ac88a7477b1710e9f788b815d0ad412e89d3e791d8629549edc\",\"dweb:/ipfs/QmdnDDZy64QjzXXLrjC5zjDTMCHrJo3c4RGmnEpZLKWhhw\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol":{"ERC20Upgradeable":{"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"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","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":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","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.30+commit.73712a01\"},\"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\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"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\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"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.\"}}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"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.\"},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"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\":\"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\":\"Returns the value of tokens owned by `account`.\"},\"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\":\"Returns the value of tokens in existence.\"},\"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-upgradeable/token/ERC20/ERC20Upgradeable.sol\":\"ERC20Upgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\":{\"keccak256\":\"0xd518def45c722a6e803e1e26e625db25e01497f672ca566cca585d234ec903b0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6e7de3fccd96783244790cde282435ce0fd3a44ab4ccb10f17005c743202882f\",\"dweb:/ipfs/QmYSepstTqs5UPJvjeJXkWU5R659yReqrSgSGGh65hkbdK\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol":{"ERC20PermitUpgradeable":{"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"},{"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"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","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":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","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":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","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":{"DOMAIN_SEPARATOR()":"3644e515","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","eip712Domain()":"84b0196e","name()":"06fdde03","nonces(address)":"7ecebe00","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\"},{\"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\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"ERC2612ExpiredSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC2612InvalidSigner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"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\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"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\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"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\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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 ERC-20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[ERC-2612]. Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all.\",\"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.\"}],\"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.\"}}],\"ERC2612ExpiredSignature(uint256)\":[{\"details\":\"Permit deadline has expired.\"}],\"ERC2612InvalidSigner(address,address)\":[{\"details\":\"Mismatched signature.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"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.\"},\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"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\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"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\":\"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\":\"Returns the value of tokens owned by `account`.\"},\"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}.\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"nonces(address)\":{\"details\":\"Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also applies here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]. CAUTION: See Security Considerations above.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"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-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol\":\"ERC20PermitUpgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\":{\"keccak256\":\"0xd518def45c722a6e803e1e26e625db25e01497f672ca566cca585d234ec903b0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6e7de3fccd96783244790cde282435ce0fd3a44ab4ccb10f17005c743202882f\",\"dweb:/ipfs/QmYSepstTqs5UPJvjeJXkWU5R659yReqrSgSGGh65hkbdK\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol\":{\"keccak256\":\"0x2abba89aa289a6c0e38404a5b2e0020ca133e1ae0c790bdfc4cc99a1e2af93ba\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://babdfa68f728f6063f378692ac75dc086d3a7d7a4c04f53779c4365d0b2d1124\",\"dweb:/ipfs/QmNZe3zu6FvpN9xBMadQsxip11VAUyqJWHTbrBGCqes9SC\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts-upgradeable/utils/NoncesUpgradeable.sol\":{\"keccak256\":\"0xe82a34ce4440f4c0a144fcd5c837c05bcd6bfbd947ba184f3e9904c14ed280ad\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f05905d8f1f2941589c625b74f2ca7fb3f2a8d8b9e55c0b31072404720a1cb95\",\"dweb:/ipfs/QmVCzDUqSaUYGLSqwkeEQHBMTrJQtUMjEsBBEsGYBdyazE\"]},\"@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol\":{\"keccak256\":\"0x5c9adc83ba1c3bed191e5c3d462737f02b48d8a6e4aecbad9e6df6ac257fe6c4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5d2cfe337601df0454355fc8e949db2840c7a8a305dfeb50c9c0041ea39d42b8\",\"dweb:/ipfs/QmeXh9iqjQ6t5t4NqUjmv8vaDV1jDrSwXQVkVdyDjk2ZUm\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0xfb223a85dd0b2175cfbbaa325a744e2cd74ecd17c3df2b77b0722f991d2725ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84bf1dea0589ec49c8d15d559cc6d86ee493048a89b2d4adb60fbe705a3d89ae\",\"dweb:/ipfs/Qmd56n556d529wk2pRMhYhm5nhMDhviwereodDikjs68w1\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x53befc41288eaa87edcd3a7be7e8475a32e44c6a29f9bf52fae789781301d9ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a1d7fab53c4ceaf42391b83d9b36d7e9cc524a8da125cffdcd32c56560f9d1c9\",\"dweb:/ipfs/QmaRZdVhQdqNXofeimibkBG65q9GVcXVZEGpycwwX3znC6\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x360cf86214a764694dae1522a38200b1737fe90e46dcf56a0f89de143071cc20\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e393290a46ca6d1fa1addb40709d26e1d250638ab6acdd103b5af21768ebc7b\",\"dweb:/ipfs/QmPwT3tXwQ9NbGtZ99XRq7sr8LCQP8XaCrzw49JdXGn7us\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x6abeed5940e1da7bb329e458db9a1c5c4ea6f86d651b952af99c6bddcd6bbb94\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fe75e9a6b759c5d7fd82fb59bd4f58c672b36f0a69b84f4789b7c7895d3e61c\",\"dweb:/ipfs/QmX28wsir8w5sS3acfJMNHcBwoPsDpqCu7WDkPnUWLMNiZ\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol":{"ERC4626Upgradeable":{"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"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxMint","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxRedeem","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxWithdraw","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","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":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","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":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","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"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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","asset()":"38d52e0f","balanceOf(address)":"70a08231","convertToAssets(uint256)":"07a2d13a","convertToShares(uint256)":"c6e6f592","decimals()":"313ce567","deposit(uint256,address)":"6e553f65","maxDeposit(address)":"402d267d","maxMint(address)":"c63d75b6","maxRedeem(address)":"d905777e","maxWithdraw(address)":"ce96cb77","mint(uint256,address)":"94bf804d","name()":"06fdde03","previewDeposit(uint256)":"ef8b30f7","previewMint(uint256)":"b3d7f6b9","previewRedeem(uint256)":"4cdad506","previewWithdraw(uint256)":"0a28a477","redeem(uint256,address,address)":"ba087652","symbol()":"95d89b41","totalAssets()":"01e1d114","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","withdraw(uint256,address,address)":"b460af94"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxMint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxRedeem\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxWithdraw\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"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\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"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\":[],\"name\":\"asset\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"convertToShares\",\"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\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"redeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalAssets\",\"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\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the ERC-4626 \\\"Tokenized Vault Standard\\\" as defined in https://eips.ethereum.org/EIPS/eip-4626[ERC-4626]. This extension allows the minting and burning of \\\"shares\\\" (represented using the ERC-20 inheritance) in exchange for underlying \\\"assets\\\" through standardized {deposit}, {mint}, {redeem} and {burn} workflows. This contract extends the ERC-20 standard. Any additional extensions included along it would affect the \\\"shares\\\" token represented by this contract and not the \\\"assets\\\" token which is an independent contract. [CAUTION] ==== In empty (or nearly empty) ERC-4626 vaults, deposits are at high risk of being stolen through frontrunning with a \\\"donation\\\" to the vault that inflates the price of a share. This is variously known as a donation or inflation attack and is essentially a problem of slippage. Vault deployers can protect against this attack by making an initial deposit of a non-trivial amount of the asset, such that price manipulation becomes infeasible. Withdrawals may similarly be affected by slippage. Users can protect against this attack as well as unexpected slippage in general by verifying the amount received is as expected, using a wrapper that performs these checks such as https://github.com/fei-protocol/ERC4626#erc4626router-and-base[ERC4626Router]. Since v4.9, this implementation introduces configurable virtual assets and shares to help developers mitigate that risk. The `_decimalsOffset()` corresponds to an offset in the decimal representation between the underlying asset's decimals and the vault decimals. This offset also determines the rate of virtual shares to virtual assets in the vault, which itself determines the initial exchange rate. While not fully preventing the attack, analysis shows that the default offset (0) makes it non-profitable even if an attacker is able to capture value from multiple user deposits, as a result of the value being captured by the virtual shares (out of the attacker's donation) matching the attacker's expected gains. With a larger offset, the attack becomes orders of magnitude more expensive than it is profitable. More details about the underlying math can be found xref:ROOT:erc4626.adoc#inflation-attack[here]. The drawback of this approach is that the virtual shares do capture (a very small) part of the value being accrued to the vault. Also, if the vault experiences losses, the users try to exit the vault, the virtual shares and assets will cause the first user to exit to experience reduced losses in detriment to the last users that will experience bigger losses. Developers willing to revert back to the pre-v4.9 behavior just need to override the `_convertToShares` and `_convertToAssets` functions. To learn more, check out our xref:ROOT:erc4626.adoc[ERC-4626 guide]. ==== [NOTE] ==== When overriding this contract, some elements must be considered: * When overriding the behavior of the deposit or withdraw mechanisms, it is recommended to override the internal functions. Overriding {_deposit} automatically affects both {deposit} and {mint}. Similarly, overriding {_withdraw} automatically affects both {withdraw} and {redeem}. Overall it is not recommended to override the public facing functions since that could lead to inconsistent behaviors between the {deposit} and {mint} or between {withdraw} and {redeem}, which is documented to have lead to loss of funds. * Overrides to the deposit or withdraw mechanism must be reflected in the preview functions as well. * {maxWithdraw} depends on {maxRedeem}. Therefore, overriding {maxRedeem} only is enough. On the other hand, overriding {maxWithdraw} only would have no effect on {maxRedeem}, and could create an inconsistency between the two functions. * If {previewRedeem} is overridden to revert, {maxWithdraw} must be overridden as necessary to ensure it always return successfully. ====\",\"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.\"}}],\"ERC4626ExceededMaxDeposit(address,uint256,uint256)\":[{\"details\":\"Attempted to deposit more assets than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxMint(address,uint256,uint256)\":[{\"details\":\"Attempted to mint more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxRedeem(address,uint256,uint256)\":[{\"details\":\"Attempted to redeem more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxWithdraw(address,uint256,uint256)\":[{\"details\":\"Attempted to withdraw more assets than the max amount for `receiver`.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}]},\"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.\"},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"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\":\"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.\"},\"asset()\":{\"details\":\"Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing. - MUST be an ERC-20 token contract. - MUST NOT revert.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"convertToAssets(uint256)\":{\"details\":\"Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"convertToShares(uint256)\":{\"details\":\"Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"decimals()\":{\"details\":\"Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This \\\"original\\\" value is cached during construction of the vault contract. If this read operation fails (e.g., the asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals. See {IERC20Metadata-decimals}.\"},\"deposit(uint256,address)\":{\"details\":\"Deposit `assets` underlying tokens and send the corresponding number of vault shares (`shares`) to `receiver`. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   deposit execution, and are accounted for during deposit. - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"maxDeposit(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver, through a deposit call. - MUST return a limited value if receiver is subject to some deposit limit. - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited. - MUST NOT revert.\"},\"maxMint(address)\":{\"details\":\"Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call. - MUST return a limited value if receiver is subject to some mint limit. - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted. - MUST NOT revert.\"},\"maxRedeem(address)\":{\"details\":\"Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault, through a redeem call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock. - MUST NOT revert.\"},\"maxWithdraw(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the Vault, through a withdraw call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST NOT revert.\"},\"mint(uint256,address)\":{\"details\":\"Mints exactly `shares` vault shares to `receiver` in exchange for `assets` underlying tokens. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint   execution, and are accounted for during mint. - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"previewDeposit(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called   in the same transaction. - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the   deposit would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"previewMint(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the   same transaction. - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint   would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by minting.\"},\"previewRedeem(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the   same transaction. - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the   redemption would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by redeeming.\"},\"previewWithdraw(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if   called   in the same transaction. - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though   the withdrawal would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"redeem(uint256,address,address)\":{\"details\":\"Burns exactly shares from owner and sends assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   redeem execution, and are accounted for during redeem. - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalAssets()\":{\"details\":\"Returns the total amount of the underlying asset that is \\u201cmanaged\\u201d by Vault. - SHOULD include any compounding that occurs from yield. - MUST be inclusive of any fees that are charged against assets in the Vault. - MUST NOT revert.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"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`.\"},\"withdraw(uint256,address,address)\":{\"details\":\"Burns shares from owner and sends exactly assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   withdraw execution, and are accounted for during withdraw. - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol\":\"ERC4626Upgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\":{\"keccak256\":\"0xd518def45c722a6e803e1e26e625db25e01497f672ca566cca585d234ec903b0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6e7de3fccd96783244790cde282435ce0fd3a44ab4ccb10f17005c743202882f\",\"dweb:/ipfs/QmYSepstTqs5UPJvjeJXkWU5R659yReqrSgSGGh65hkbdK\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol\":{\"keccak256\":\"0x9a451617fef51e7faef5f46de537f9aaca837d470750cfbd7b8a733341dc3951\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1cdebfebb9bbfe1558d15eab9cf8bd1bd5ad8bb934f6a3d9ea8ef022603c1d59\",\"dweb:/ipfs/QmT83ko5MwSdEJsHz8cQbQGBDyM1q9PvzGm9RFmXfWXMgA\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Memory.sol\":{\"keccak256\":\"0x35feec480590c0ed9c1623df077ba9af406ad57cd9d149ff278c7316d6fe8fe0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://839967d079db4cd624c3f735a6e911953c0e2347418c016f6a0cc18ed1aa9603\",\"dweb:/ipfs/QmaWxNL8Ymkwerfvq1LNzpbq2PMzTGsnXzqsYExNyvKWka\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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-upgradeable/token/ERC721/ERC721Upgradeable.sol":{"ERC721Upgradeable":{"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"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","getApproved(uint256)":"081812fc","isApprovedForAll(address,address)":"e985e9c5","name()":"06fdde03","ownerOf(uint256)":"6352211e","safeTransferFrom(address,address,uint256)":"42842e0e","safeTransferFrom(address,address,uint256,bytes)":"b88d4fde","setApprovalForAll(address,bool)":"a22cb465","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","tokenURI(uint256)":"c87b56dd","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including the Metadata extension, but not including the Enumerable extension, which is available separately as {ERC721Enumerable}.\",\"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-721. 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.\"}}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when `owner` enables `approved` to manage the `tokenId` token.\"},\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\"},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"}},\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"name()\":{\"details\":\"Returns the token collection name.\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC-721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or   {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the address zero. Emits an {ApprovalForAll} event.\"},\"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.\"},\"symbol()\":{\"details\":\"Returns the token collection symbol.\"},\"tokenURI(uint256)\":{\"details\":\"Returns the Uniform Resource Identifier (URI) for `tokenId` token.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must understand this adds an external call which potentially creates a reentrancy vulnerability. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol\":\"ERC721Upgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol\":{\"keccak256\":\"0xb813cb6a31231d48456f46d35a82ff89a643e03d015027e0a34dd3a611370b69\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6ac2aa7e379a6804c0814ad4354c8626bceac3c37d641fc0105f666ebdd1aea7\",\"dweb:/ipfs/QmQ1a69VXEfVKP3Vgwk9CGd5surx3YQX5eNDvXDSf6aspG\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol\":{\"keccak256\":\"0x16b88aca1f1c3aa38783416d86207ce6fe574fcd1993dfe54403b5c8b6c74224\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://29f3c5c687fe0d87742b013872f495e67656910530c916a69873860dc8fea812\",\"dweb:/ipfs/QmbspfQXmbhCANqqiunUFm9fiVVQwPet2YKQoJ58km442Y\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xf78f05f3b8c9f75570e85300d7b4600d7f6f6a198449273f31d44c1641adb46f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e28b872613b45e0e801d4995aa4380be2531147bfe2d85c1d6275f1de514fba3\",\"dweb:/ipfs/QmeeFcfShHYaS3BdgVj78nxR28ZaVUwbvr66ud8bT6kzw9\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0xf46268c37522320bb2119a5a394bc5c739a95c0c574c8d08e8c643f4d06e5c76\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://517e4b295f35b9947c72ad7379a6089439ece7bb6f4a2ea0a159da13046c039e\",\"dweb:/ipfs/QmZXzkSfLUbvujig3zVbpDHykpHhqLpvQtdiN3B5j4TA3u\"]},\"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol\":{\"keccak256\":\"0xc7efbc23214ad7dced8bf2249460f4bda114d57f6a0079f84040654280f455bd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1f5bd44efca8c8c0d74439e7b808d1f9c4af1df78f91fef8e8bbca8104645435\",\"dweb:/ipfs/Qmb42XSd8MKsEitp42sZkSFGqDRigk6QgGXtiJyJqUZJJ6\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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-upgradeable/utils/ContextUpgradeable.sol":{"ContextUpgradeable":{"abi":[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"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.\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":\"ContextUpgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol":{"MulticallUpgradeable":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"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.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"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 {Context-_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 {Context-_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.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"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-upgradeable/utils/MulticallUpgradeable.sol\":\"MulticallUpgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol\":{\"keccak256\":\"0x842cc1aad7ab31fce63200401deddce3a84f73fef96b3a4841b310b09ab9aa7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://90c6d93642c21475ba6240ad13a8d75f5df215e0363efc4cbe13f71e779d38d2\",\"dweb:/ipfs/QmXCGRb3aYGf9js21UfV7tATAo26o3gWRgM539WamvniP6\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/utils/NoncesUpgradeable.sol":{"NoncesUpgradeable":{"abi":[{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"nonces(address)":"7ecebe00"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Provides tracking nonces for addresses. Nonces will only increment.\",\"errors\":{\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/NoncesUpgradeable.sol\":\"NoncesUpgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/utils/NoncesUpgradeable.sol\":{\"keccak256\":\"0xe82a34ce4440f4c0a144fcd5c837c05bcd6bfbd947ba184f3e9904c14ed280ad\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f05905d8f1f2941589c625b74f2ca7fb3f2a8d8b9e55c0b31072404720a1cb95\",\"dweb:/ipfs/QmVCzDUqSaUYGLSqwkeEQHBMTrJQtUMjEsBBEsGYBdyazE\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol":{"PausableUpgradeable":{"abi":[{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"paused","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":{"paused()":"5c975abb"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"EnforcedPause\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ExpectedPause\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module which allows children to implement an emergency stop mechanism that can be triggered by an authorized account. This module is used through inheritance. It will make available the modifiers `whenNotPaused` and `whenPaused`, which can be applied to the functions of your contract. Note that they will not be pausable by simply including this module, only once the modifiers are put in place.\",\"errors\":{\"EnforcedPause()\":[{\"details\":\"The operation failed because the contract is paused.\"}],\"ExpectedPause()\":[{\"details\":\"The operation failed because the contract is not paused.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"}},\"kind\":\"dev\",\"methods\":{\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol\":\"PausableUpgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol\":{\"keccak256\":\"0x1149f6c3445a564f5b9cd27c2dc85c6bcaed254c67cb57a416bc7ca1f667ad1f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8a72ecd1a82f8ece4d83280a4920a6269e83bec971a27d0ce2e3a21d2ae08450\",\"dweb:/ipfs/QmSn68D8stm6b7m4nZndhTqincMQdoTqNrRXmAReV9Xb2r\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol":{"EIP712Upgradeable":{"abi":[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"eip712Domain()":"84b0196e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"https://eips.ethereum.org/EIPS/eip-712[EIP-712] is a standard for hashing and signing of typed structured data. The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to produce the hash of their typed data using a combination of `abi.encode` and `keccak256`. This contract implements the EIP-712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA ({_hashTypedDataV4}). The implementation of the domain separator was designed to be as efficient as possible while still properly updating the chain id to protect against replay attacks on an eventual fork of the chain. NOTE: This contract implements the version of the encoding known as \\\"v4\\\", as implemented by the JSON RPC method https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. NOTE: The upgradeable version of this contract does not use an immutable cache and recomputes the domain separator each time {_domainSeparatorV4} is called. That is cheaper than accessing a cached version in cold storage.\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol\":\"EIP712Upgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol\":{\"keccak256\":\"0x5c9adc83ba1c3bed191e5c3d462737f02b48d8a6e4aecbad9e6df6ac257fe6c4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5d2cfe337601df0454355fc8e949db2840c7a8a305dfeb50c9c0041ea39d42b8\",\"dweb:/ipfs/QmeXh9iqjQ6t5t4NqUjmv8vaDV1jDrSwXQVkVdyDjk2ZUm\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0xfb223a85dd0b2175cfbbaa325a744e2cd74ecd17c3df2b77b0722f991d2725ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84bf1dea0589ec49c8d15d559cc6d86ee493048a89b2d4adb60fbe705a3d89ae\",\"dweb:/ipfs/Qmd56n556d529wk2pRMhYhm5nhMDhviwereodDikjs68w1\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x6abeed5940e1da7bb329e458db9a1c5c4ea6f86d651b952af99c6bddcd6bbb94\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fe75e9a6b759c5d7fd82fb59bd4f58c672b36f0a69b84f4789b7c7895d3e61c\",\"dweb:/ipfs/QmX28wsir8w5sS3acfJMNHcBwoPsDpqCu7WDkPnUWLMNiZ\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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-upgradeable/utils/introspection/ERC165Upgradeable.sol":{"ERC165Upgradeable":{"abi":[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"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.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"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); } ```\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"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-upgradeable/utils/introspection/ERC165Upgradeable.sol\":\"ERC165Upgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol\":{\"keccak256\":\"0x16b88aca1f1c3aa38783416d86207ce6fe574fcd1993dfe54403b5c8b6c74224\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://29f3c5c687fe0d87742b013872f495e67656910530c916a69873860dc8fea812\",\"dweb:/ipfs/QmbspfQXmbhCANqqiunUFm9fiVVQwPet2YKQoJ58km442Y\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"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.30+commit.73712a01\"},\"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 to signal 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\":\"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/access/AccessControl.sol\":\"AccessControl\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0x1a6b4f6b7798ab80929d491b89d5427a9b3338c0fd1acd0ba325f69c6f1646af\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7bb7f346c12a14dc622bc105ce3c47202fbc89f4b153a28a63bb68193297330c\",\"dweb:/ipfs/QmagwF8P3bUBXwdo159ueEnY9dLSvEWwK24kk2op58egwG\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xbff9f59c84e5337689161ce7641c0ef8e872d6a7536fbc1f5133f128887aba3c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b308f882e796f7b79c9502deacb0a62983035c6f6f4e962b319ba6a1f4a77d3d\",\"dweb:/ipfs/QmaWCW7ahEQqFjwhSUhV7Ae7WhfNvzSpE7DQ58hvEooqPL\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0x2d9dc2fe26180f74c11c13663647d38e259e45f95eb88f57b61d2160b0109d3e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81233d1f98060113d9922180bb0f14f8335856fe9f339134b09335e9f678c377\",\"dweb:/ipfs/QmWh6R35SarhAn4z2wH8SU456jJSYL2FgucfTFgbHJJN4E\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":19458,"contract":"@openzeppelin/contracts/access/AccessControl.sol:AccessControl","label":"_roles","offset":0,"slot":"0","type":"t_mapping(t_bytes32,t_struct(RoleData)19453_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)19453_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct AccessControl.RoleData)","numberOfBytes":"32","value":"t_struct(RoleData)19453_storage"},"t_struct(RoleData)19453_storage":{"encoding":"inplace","label":"struct AccessControl.RoleData","members":[{"astId":19450,"contract":"@openzeppelin/contracts/access/AccessControl.sol:AccessControl","label":"hasRole","offset":0,"slot":"0","type":"t_mapping(t_address,t_bool)"},{"astId":19452,"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.30+commit.73712a01\"},\"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 to signal 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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xbff9f59c84e5337689161ce7641c0ef8e872d6a7536fbc1f5133f128887aba3c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b308f882e796f7b79c9502deacb0a62983035c6f6f4e962b319ba6a1f4a77d3d\",\"dweb:/ipfs/QmaWCW7ahEQqFjwhSUhV7Ae7WhfNvzSpE7DQ58hvEooqPL\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/access/manager/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":{"@_19940":{"entryPoint":null,"id":19940,"parameterSlots":1,"returnSlots":0},"@_getFullAt_37186":{"entryPoint":1016,"id":37186,"parameterSlots":2,"returnSlots":3},"@_grantRole_20444":{"entryPoint":111,"id":20444,"parameterSlots":4,"returnSlots":1},"@getFull_37206":{"entryPoint":983,"id":37206,"parameterSlots":1,"returnSlots":3},"@get_37224":{"entryPoint":937,"id":37224,"parameterSlots":1,"returnSlots":1},"@max_33853":{"entryPoint":967,"id":33853,"parameterSlots":2,"returnSlots":1},"@pack_37369":{"entryPoint":null,"id":37369,"parameterSlots":3,"returnSlots":1},"@ternary_33834":{"entryPoint":null,"id":33834,"parameterSlots":3,"returnSlots":1},"@timestamp_37118":{"entryPoint":693,"id":37118,"parameterSlots":0,"returnSlots":1},"@toDelay_37148":{"entryPoint":708,"id":37148,"parameterSlots":1,"returnSlots":1},"@toUint48_35942":{"entryPoint":883,"id":35942,"parameterSlots":1,"returnSlots":1},"@toUint_36951":{"entryPoint":null,"id":36951,"parameterSlots":1,"returnSlots":1},"@unpack_37331":{"entryPoint":null,"id":37331,"parameterSlots":1,"returnSlots":3},"@withUpdate_37280":{"entryPoint":717,"id":37280,"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:125","nodeType":"YulBlock","src":"0:1849:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"95:209:125","nodeType":"YulBlock","src":"95:209:125","statements":[{"body":{"nativeSrc":"141:16:125","nodeType":"YulBlock","src":"141:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"150:1:125","nodeType":"YulLiteral","src":"150:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"153:1:125","nodeType":"YulLiteral","src":"153:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"143:6:125","nodeType":"YulIdentifier","src":"143:6:125"},"nativeSrc":"143:12:125","nodeType":"YulFunctionCall","src":"143:12:125"},"nativeSrc":"143:12:125","nodeType":"YulExpressionStatement","src":"143:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"116:7:125","nodeType":"YulIdentifier","src":"116:7:125"},{"name":"headStart","nativeSrc":"125:9:125","nodeType":"YulIdentifier","src":"125:9:125"}],"functionName":{"name":"sub","nativeSrc":"112:3:125","nodeType":"YulIdentifier","src":"112:3:125"},"nativeSrc":"112:23:125","nodeType":"YulFunctionCall","src":"112:23:125"},{"kind":"number","nativeSrc":"137:2:125","nodeType":"YulLiteral","src":"137:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"108:3:125","nodeType":"YulIdentifier","src":"108:3:125"},"nativeSrc":"108:32:125","nodeType":"YulFunctionCall","src":"108:32:125"},"nativeSrc":"105:52:125","nodeType":"YulIf","src":"105:52:125"},{"nativeSrc":"166:29:125","nodeType":"YulVariableDeclaration","src":"166:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"185:9:125","nodeType":"YulIdentifier","src":"185:9:125"}],"functionName":{"name":"mload","nativeSrc":"179:5:125","nodeType":"YulIdentifier","src":"179:5:125"},"nativeSrc":"179:16:125","nodeType":"YulFunctionCall","src":"179:16:125"},"variables":[{"name":"value","nativeSrc":"170:5:125","nodeType":"YulTypedName","src":"170:5:125","type":""}]},{"body":{"nativeSrc":"258:16:125","nodeType":"YulBlock","src":"258:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"267:1:125","nodeType":"YulLiteral","src":"267:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"270:1:125","nodeType":"YulLiteral","src":"270:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"260:6:125","nodeType":"YulIdentifier","src":"260:6:125"},"nativeSrc":"260:12:125","nodeType":"YulFunctionCall","src":"260:12:125"},"nativeSrc":"260:12:125","nodeType":"YulExpressionStatement","src":"260:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"217:5:125","nodeType":"YulIdentifier","src":"217:5:125"},{"arguments":[{"name":"value","nativeSrc":"228:5:125","nodeType":"YulIdentifier","src":"228:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"243:3:125","nodeType":"YulLiteral","src":"243:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"248:1:125","nodeType":"YulLiteral","src":"248:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"239:3:125","nodeType":"YulIdentifier","src":"239:3:125"},"nativeSrc":"239:11:125","nodeType":"YulFunctionCall","src":"239:11:125"},{"kind":"number","nativeSrc":"252:1:125","nodeType":"YulLiteral","src":"252:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"235:3:125","nodeType":"YulIdentifier","src":"235:3:125"},"nativeSrc":"235:19:125","nodeType":"YulFunctionCall","src":"235:19:125"}],"functionName":{"name":"and","nativeSrc":"224:3:125","nodeType":"YulIdentifier","src":"224:3:125"},"nativeSrc":"224:31:125","nodeType":"YulFunctionCall","src":"224:31:125"}],"functionName":{"name":"eq","nativeSrc":"214:2:125","nodeType":"YulIdentifier","src":"214:2:125"},"nativeSrc":"214:42:125","nodeType":"YulFunctionCall","src":"214:42:125"}],"functionName":{"name":"iszero","nativeSrc":"207:6:125","nodeType":"YulIdentifier","src":"207:6:125"},"nativeSrc":"207:50:125","nodeType":"YulFunctionCall","src":"207:50:125"},"nativeSrc":"204:70:125","nodeType":"YulIf","src":"204:70:125"},{"nativeSrc":"283:15:125","nodeType":"YulAssignment","src":"283:15:125","value":{"name":"value","nativeSrc":"293:5:125","nodeType":"YulIdentifier","src":"293:5:125"},"variableNames":[{"name":"value0","nativeSrc":"283:6:125","nodeType":"YulIdentifier","src":"283:6:125"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"14:290:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"61:9:125","nodeType":"YulTypedName","src":"61:9:125","type":""},{"name":"dataEnd","nativeSrc":"72:7:125","nodeType":"YulTypedName","src":"72:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"84:6:125","nodeType":"YulTypedName","src":"84:6:125","type":""}],"src":"14:290:125"},{"body":{"nativeSrc":"410:102:125","nodeType":"YulBlock","src":"410:102:125","statements":[{"nativeSrc":"420:26:125","nodeType":"YulAssignment","src":"420:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"432:9:125","nodeType":"YulIdentifier","src":"432:9:125"},{"kind":"number","nativeSrc":"443:2:125","nodeType":"YulLiteral","src":"443:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"428:3:125","nodeType":"YulIdentifier","src":"428:3:125"},"nativeSrc":"428:18:125","nodeType":"YulFunctionCall","src":"428:18:125"},"variableNames":[{"name":"tail","nativeSrc":"420:4:125","nodeType":"YulIdentifier","src":"420:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"462:9:125","nodeType":"YulIdentifier","src":"462:9:125"},{"arguments":[{"name":"value0","nativeSrc":"477:6:125","nodeType":"YulIdentifier","src":"477:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"493:3:125","nodeType":"YulLiteral","src":"493:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"498:1:125","nodeType":"YulLiteral","src":"498:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"489:3:125","nodeType":"YulIdentifier","src":"489:3:125"},"nativeSrc":"489:11:125","nodeType":"YulFunctionCall","src":"489:11:125"},{"kind":"number","nativeSrc":"502:1:125","nodeType":"YulLiteral","src":"502:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"485:3:125","nodeType":"YulIdentifier","src":"485:3:125"},"nativeSrc":"485:19:125","nodeType":"YulFunctionCall","src":"485:19:125"}],"functionName":{"name":"and","nativeSrc":"473:3:125","nodeType":"YulIdentifier","src":"473:3:125"},"nativeSrc":"473:32:125","nodeType":"YulFunctionCall","src":"473:32:125"}],"functionName":{"name":"mstore","nativeSrc":"455:6:125","nodeType":"YulIdentifier","src":"455:6:125"},"nativeSrc":"455:51:125","nodeType":"YulFunctionCall","src":"455:51:125"},"nativeSrc":"455:51:125","nodeType":"YulExpressionStatement","src":"455:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"309:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"379:9:125","nodeType":"YulTypedName","src":"379:9:125","type":""},{"name":"value0","nativeSrc":"390:6:125","nodeType":"YulTypedName","src":"390:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"401:4:125","nodeType":"YulTypedName","src":"401:4:125","type":""}],"src":"309:203:125"},{"body":{"nativeSrc":"616:101:125","nodeType":"YulBlock","src":"616:101:125","statements":[{"nativeSrc":"626:26:125","nodeType":"YulAssignment","src":"626:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"638:9:125","nodeType":"YulIdentifier","src":"638:9:125"},{"kind":"number","nativeSrc":"649:2:125","nodeType":"YulLiteral","src":"649:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"634:3:125","nodeType":"YulIdentifier","src":"634:3:125"},"nativeSrc":"634:18:125","nodeType":"YulFunctionCall","src":"634:18:125"},"variableNames":[{"name":"tail","nativeSrc":"626:4:125","nodeType":"YulIdentifier","src":"626:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"668:9:125","nodeType":"YulIdentifier","src":"668:9:125"},{"arguments":[{"name":"value0","nativeSrc":"683:6:125","nodeType":"YulIdentifier","src":"683:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"699:2:125","nodeType":"YulLiteral","src":"699:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"703:1:125","nodeType":"YulLiteral","src":"703:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"695:3:125","nodeType":"YulIdentifier","src":"695:3:125"},"nativeSrc":"695:10:125","nodeType":"YulFunctionCall","src":"695:10:125"},{"kind":"number","nativeSrc":"707:1:125","nodeType":"YulLiteral","src":"707:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"691:3:125","nodeType":"YulIdentifier","src":"691:3:125"},"nativeSrc":"691:18:125","nodeType":"YulFunctionCall","src":"691:18:125"}],"functionName":{"name":"and","nativeSrc":"679:3:125","nodeType":"YulIdentifier","src":"679:3:125"},"nativeSrc":"679:31:125","nodeType":"YulFunctionCall","src":"679:31:125"}],"functionName":{"name":"mstore","nativeSrc":"661:6:125","nodeType":"YulIdentifier","src":"661:6:125"},"nativeSrc":"661:50:125","nodeType":"YulFunctionCall","src":"661:50:125"},"nativeSrc":"661:50:125","nodeType":"YulExpressionStatement","src":"661:50:125"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"517:200:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"585:9:125","nodeType":"YulTypedName","src":"585:9:125","type":""},{"name":"value0","nativeSrc":"596:6:125","nodeType":"YulTypedName","src":"596:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"607:4:125","nodeType":"YulTypedName","src":"607:4:125","type":""}],"src":"517:200:125"},{"body":{"nativeSrc":"754:95:125","nodeType":"YulBlock","src":"754:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"771:1:125","nodeType":"YulLiteral","src":"771:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"778:3:125","nodeType":"YulLiteral","src":"778:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"783:10:125","nodeType":"YulLiteral","src":"783:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"774:3:125","nodeType":"YulIdentifier","src":"774:3:125"},"nativeSrc":"774:20:125","nodeType":"YulFunctionCall","src":"774:20:125"}],"functionName":{"name":"mstore","nativeSrc":"764:6:125","nodeType":"YulIdentifier","src":"764:6:125"},"nativeSrc":"764:31:125","nodeType":"YulFunctionCall","src":"764:31:125"},"nativeSrc":"764:31:125","nodeType":"YulExpressionStatement","src":"764:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"811:1:125","nodeType":"YulLiteral","src":"811:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"814:4:125","nodeType":"YulLiteral","src":"814:4:125","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"804:6:125","nodeType":"YulIdentifier","src":"804:6:125"},"nativeSrc":"804:15:125","nodeType":"YulFunctionCall","src":"804:15:125"},"nativeSrc":"804:15:125","nodeType":"YulExpressionStatement","src":"804:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"835:1:125","nodeType":"YulLiteral","src":"835:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"838:4:125","nodeType":"YulLiteral","src":"838:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"828:6:125","nodeType":"YulIdentifier","src":"828:6:125"},"nativeSrc":"828:15:125","nodeType":"YulFunctionCall","src":"828:15:125"},"nativeSrc":"828:15:125","nodeType":"YulExpressionStatement","src":"828:15:125"}]},"name":"panic_error_0x11","nativeSrc":"722:127:125","nodeType":"YulFunctionDefinition","src":"722:127:125"},{"body":{"nativeSrc":"901:132:125","nodeType":"YulBlock","src":"901:132:125","statements":[{"nativeSrc":"911:58:125","nodeType":"YulAssignment","src":"911:58:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"926:1:125","nodeType":"YulIdentifier","src":"926:1:125"},{"kind":"number","nativeSrc":"929:14:125","nodeType":"YulLiteral","src":"929:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"922:3:125","nodeType":"YulIdentifier","src":"922:3:125"},"nativeSrc":"922:22:125","nodeType":"YulFunctionCall","src":"922:22:125"},{"arguments":[{"name":"y","nativeSrc":"950:1:125","nodeType":"YulIdentifier","src":"950:1:125"},{"kind":"number","nativeSrc":"953:14:125","nodeType":"YulLiteral","src":"953:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"946:3:125","nodeType":"YulIdentifier","src":"946:3:125"},"nativeSrc":"946:22:125","nodeType":"YulFunctionCall","src":"946:22:125"}],"functionName":{"name":"add","nativeSrc":"918:3:125","nodeType":"YulIdentifier","src":"918:3:125"},"nativeSrc":"918:51:125","nodeType":"YulFunctionCall","src":"918:51:125"},"variableNames":[{"name":"sum","nativeSrc":"911:3:125","nodeType":"YulIdentifier","src":"911:3:125"}]},{"body":{"nativeSrc":"1005:22:125","nodeType":"YulBlock","src":"1005:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"1007:16:125","nodeType":"YulIdentifier","src":"1007:16:125"},"nativeSrc":"1007:18:125","nodeType":"YulFunctionCall","src":"1007:18:125"},"nativeSrc":"1007:18:125","nodeType":"YulExpressionStatement","src":"1007:18:125"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"984:3:125","nodeType":"YulIdentifier","src":"984:3:125"},{"kind":"number","nativeSrc":"989:14:125","nodeType":"YulLiteral","src":"989:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"981:2:125","nodeType":"YulIdentifier","src":"981:2:125"},"nativeSrc":"981:23:125","nodeType":"YulFunctionCall","src":"981:23:125"},"nativeSrc":"978:49:125","nodeType":"YulIf","src":"978:49:125"}]},"name":"checked_add_t_uint48","nativeSrc":"854:179:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"884:1:125","nodeType":"YulTypedName","src":"884:1:125","type":""},{"name":"y","nativeSrc":"887:1:125","nodeType":"YulTypedName","src":"887:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"893:3:125","nodeType":"YulTypedName","src":"893:3:125","type":""}],"src":"854:179:125"},{"body":{"nativeSrc":"1185:216:125","nodeType":"YulBlock","src":"1185:216:125","statements":[{"nativeSrc":"1195:26:125","nodeType":"YulAssignment","src":"1195:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1207:9:125","nodeType":"YulIdentifier","src":"1207:9:125"},{"kind":"number","nativeSrc":"1218:2:125","nodeType":"YulLiteral","src":"1218:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1203:3:125","nodeType":"YulIdentifier","src":"1203:3:125"},"nativeSrc":"1203:18:125","nodeType":"YulFunctionCall","src":"1203:18:125"},"variableNames":[{"name":"tail","nativeSrc":"1195:4:125","nodeType":"YulIdentifier","src":"1195:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1237:9:125","nodeType":"YulIdentifier","src":"1237:9:125"},{"arguments":[{"name":"value0","nativeSrc":"1252:6:125","nodeType":"YulIdentifier","src":"1252:6:125"},{"kind":"number","nativeSrc":"1260:10:125","nodeType":"YulLiteral","src":"1260:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1248:3:125","nodeType":"YulIdentifier","src":"1248:3:125"},"nativeSrc":"1248:23:125","nodeType":"YulFunctionCall","src":"1248:23:125"}],"functionName":{"name":"mstore","nativeSrc":"1230:6:125","nodeType":"YulIdentifier","src":"1230:6:125"},"nativeSrc":"1230:42:125","nodeType":"YulFunctionCall","src":"1230:42:125"},"nativeSrc":"1230:42:125","nodeType":"YulExpressionStatement","src":"1230:42:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1292:9:125","nodeType":"YulIdentifier","src":"1292:9:125"},{"kind":"number","nativeSrc":"1303:2:125","nodeType":"YulLiteral","src":"1303:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1288:3:125","nodeType":"YulIdentifier","src":"1288:3:125"},"nativeSrc":"1288:18:125","nodeType":"YulFunctionCall","src":"1288:18:125"},{"arguments":[{"name":"value1","nativeSrc":"1312:6:125","nodeType":"YulIdentifier","src":"1312:6:125"},{"kind":"number","nativeSrc":"1320:14:125","nodeType":"YulLiteral","src":"1320:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"1308:3:125","nodeType":"YulIdentifier","src":"1308:3:125"},"nativeSrc":"1308:27:125","nodeType":"YulFunctionCall","src":"1308:27:125"}],"functionName":{"name":"mstore","nativeSrc":"1281:6:125","nodeType":"YulIdentifier","src":"1281:6:125"},"nativeSrc":"1281:55:125","nodeType":"YulFunctionCall","src":"1281:55:125"},"nativeSrc":"1281:55:125","nodeType":"YulExpressionStatement","src":"1281:55:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1356:9:125","nodeType":"YulIdentifier","src":"1356:9:125"},{"kind":"number","nativeSrc":"1367:2:125","nodeType":"YulLiteral","src":"1367:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1352:3:125","nodeType":"YulIdentifier","src":"1352:3:125"},"nativeSrc":"1352:18:125","nodeType":"YulFunctionCall","src":"1352:18:125"},{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"1386:6:125","nodeType":"YulIdentifier","src":"1386:6:125"}],"functionName":{"name":"iszero","nativeSrc":"1379:6:125","nodeType":"YulIdentifier","src":"1379:6:125"},"nativeSrc":"1379:14:125","nodeType":"YulFunctionCall","src":"1379:14:125"}],"functionName":{"name":"iszero","nativeSrc":"1372:6:125","nodeType":"YulIdentifier","src":"1372:6:125"},"nativeSrc":"1372:22:125","nodeType":"YulFunctionCall","src":"1372:22:125"}],"functionName":{"name":"mstore","nativeSrc":"1345:6:125","nodeType":"YulIdentifier","src":"1345:6:125"},"nativeSrc":"1345:50:125","nodeType":"YulFunctionCall","src":"1345:50:125"},"nativeSrc":"1345:50:125","nodeType":"YulExpressionStatement","src":"1345:50:125"}]},"name":"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed","nativeSrc":"1038:363:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1138:9:125","nodeType":"YulTypedName","src":"1138:9:125","type":""},{"name":"value2","nativeSrc":"1149:6:125","nodeType":"YulTypedName","src":"1149:6:125","type":""},{"name":"value1","nativeSrc":"1157:6:125","nodeType":"YulTypedName","src":"1157:6:125","type":""},{"name":"value0","nativeSrc":"1165:6:125","nodeType":"YulTypedName","src":"1165:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1176:4:125","nodeType":"YulTypedName","src":"1176:4:125","type":""}],"src":"1038:363:125"},{"body":{"nativeSrc":"1454:122:125","nodeType":"YulBlock","src":"1454:122:125","statements":[{"nativeSrc":"1464:51:125","nodeType":"YulAssignment","src":"1464:51:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"1480:1:125","nodeType":"YulIdentifier","src":"1480:1:125"},{"kind":"number","nativeSrc":"1483:10:125","nodeType":"YulLiteral","src":"1483:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1476:3:125","nodeType":"YulIdentifier","src":"1476:3:125"},"nativeSrc":"1476:18:125","nodeType":"YulFunctionCall","src":"1476:18:125"},{"arguments":[{"name":"y","nativeSrc":"1500:1:125","nodeType":"YulIdentifier","src":"1500:1:125"},{"kind":"number","nativeSrc":"1503:10:125","nodeType":"YulLiteral","src":"1503:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1496:3:125","nodeType":"YulIdentifier","src":"1496:3:125"},"nativeSrc":"1496:18:125","nodeType":"YulFunctionCall","src":"1496:18:125"}],"functionName":{"name":"sub","nativeSrc":"1472:3:125","nodeType":"YulIdentifier","src":"1472:3:125"},"nativeSrc":"1472:43:125","nodeType":"YulFunctionCall","src":"1472:43:125"},"variableNames":[{"name":"diff","nativeSrc":"1464:4:125","nodeType":"YulIdentifier","src":"1464:4:125"}]},{"body":{"nativeSrc":"1548:22:125","nodeType":"YulBlock","src":"1548:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"1550:16:125","nodeType":"YulIdentifier","src":"1550:16:125"},"nativeSrc":"1550:18:125","nodeType":"YulFunctionCall","src":"1550:18:125"},"nativeSrc":"1550:18:125","nodeType":"YulExpressionStatement","src":"1550:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"1530:4:125","nodeType":"YulIdentifier","src":"1530:4:125"},{"kind":"number","nativeSrc":"1536:10:125","nodeType":"YulLiteral","src":"1536:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"gt","nativeSrc":"1527:2:125","nodeType":"YulIdentifier","src":"1527:2:125"},"nativeSrc":"1527:20:125","nodeType":"YulFunctionCall","src":"1527:20:125"},"nativeSrc":"1524:46:125","nodeType":"YulIf","src":"1524:46:125"}]},"name":"checked_sub_t_uint32","nativeSrc":"1406:170:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"1436:1:125","nodeType":"YulTypedName","src":"1436:1:125","type":""},{"name":"y","nativeSrc":"1439:1:125","nodeType":"YulTypedName","src":"1439:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"1445:4:125","nodeType":"YulTypedName","src":"1445:4:125","type":""}],"src":"1406:170:125"},{"body":{"nativeSrc":"1717:130:125","nodeType":"YulBlock","src":"1717:130:125","statements":[{"nativeSrc":"1727:26:125","nodeType":"YulAssignment","src":"1727:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1739:9:125","nodeType":"YulIdentifier","src":"1739:9:125"},{"kind":"number","nativeSrc":"1750:2:125","nodeType":"YulLiteral","src":"1750:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1735:3:125","nodeType":"YulIdentifier","src":"1735:3:125"},"nativeSrc":"1735:18:125","nodeType":"YulFunctionCall","src":"1735:18:125"},"variableNames":[{"name":"tail","nativeSrc":"1727:4:125","nodeType":"YulIdentifier","src":"1727:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1769:9:125","nodeType":"YulIdentifier","src":"1769:9:125"},{"arguments":[{"name":"value0","nativeSrc":"1784:6:125","nodeType":"YulIdentifier","src":"1784:6:125"},{"kind":"number","nativeSrc":"1792:4:125","nodeType":"YulLiteral","src":"1792:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"1780:3:125","nodeType":"YulIdentifier","src":"1780:3:125"},"nativeSrc":"1780:17:125","nodeType":"YulFunctionCall","src":"1780:17:125"}],"functionName":{"name":"mstore","nativeSrc":"1762:6:125","nodeType":"YulIdentifier","src":"1762:6:125"},"nativeSrc":"1762:36:125","nodeType":"YulFunctionCall","src":"1762:36:125"},"nativeSrc":"1762:36:125","nodeType":"YulExpressionStatement","src":"1762:36:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1818:9:125","nodeType":"YulIdentifier","src":"1818:9:125"},{"kind":"number","nativeSrc":"1829:2:125","nodeType":"YulLiteral","src":"1829:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1814:3:125","nodeType":"YulIdentifier","src":"1814:3:125"},"nativeSrc":"1814:18:125","nodeType":"YulFunctionCall","src":"1814:18:125"},{"name":"value1","nativeSrc":"1834:6:125","nodeType":"YulIdentifier","src":"1834:6:125"}],"functionName":{"name":"mstore","nativeSrc":"1807:6:125","nodeType":"YulIdentifier","src":"1807:6:125"},"nativeSrc":"1807:34:125","nodeType":"YulFunctionCall","src":"1807:34:125"},"nativeSrc":"1807:34:125","nodeType":"YulExpressionStatement","src":"1807:34:125"}]},"name":"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"1581:266:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1678:9:125","nodeType":"YulTypedName","src":"1678:9:125","type":""},{"name":"value1","nativeSrc":"1689:6:125","nodeType":"YulTypedName","src":"1689:6:125","type":""},{"name":"value0","nativeSrc":"1697:6:125","nodeType":"YulTypedName","src":"1697:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1708:4:125","nodeType":"YulTypedName","src":"1708:4:125","type":""}],"src":"1581:266:125"}]},"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":125,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"608060405234801561000f575f5ffd5b50604051612ca3380380612ca383398101604081905261002e91610441565b6001600160a01b03811661005c57604051630409d6d160e11b81525f60048201526024015b60405180910390fd5b6100685f82818061006f565b50506104bc565b5f6002600160401b03196001600160401b038616016100ac5760405163061c6a4360e21b81526001600160401b0386166004820152602401610053565b6001600160401b0385165f9081526001602090815260408083206001600160a01b038816845290915281205465ffffffffffff16159081156101a15763ffffffff85166100f76102b5565b6101019190610482565b905060405180604001604052808265ffffffffffff1681526020016101318663ffffffff166102c460201b60201c565b6001600160701b039081169091526001600160401b0389165f9081526001602090815260408083206001600160a01b038c16845282529091208351815494909201519092166601000000000000026001600160a01b031990931665ffffffffffff90911617919091179055610247565b6001600160401b0387165f9081526001602090815260408083206001600160a01b038a1684529091528120546101ed9166010000000000009091046001600160701b03169086906102cd565b6001600160401b0389165f9081526001602090815260408083206001600160a01b038c168452909152902080546001600160701b03909316660100000000000002600160301b600160a01b03199093169290921790915590505b6040805163ffffffff8616815265ffffffffffff831660208201528315158183015290516001600160a01b038816916001600160401b038a16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a35095945050505050565b5f6102bf42610373565b905090565b63ffffffff1690565b5f80806102e26001600160701b0387166103a9565b90505f61031d8563ffffffff168763ffffffff168463ffffffff1611610308575f610312565b61031288856104a0565b63ffffffff166103c7565b905063ffffffff811661032e6102b5565b6103389190610482565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b5f65ffffffffffff8211156103a5576040516306dfcc6560e41b81526030600482015260248101839052604401610053565b5090565b5f806103bd6001600160701b0384166103d7565b5090949350505050565b8082118183180281185b92915050565b5f80806103eb846103e66102b5565b6103f8565b9250925092509193909250565b6001600160501b03602083901c166001600160701b03831665ffffffffffff604085901c811690841681111561043057828282610434565b815f5f5b9250925092509250925092565b5f60208284031215610451575f5ffd5b81516001600160a01b0381168114610467575f5ffd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b65ffffffffffff81811683821601908111156103d1576103d161046e565b63ffffffff82811682821603908111156103d1576103d161046e565b6127da806104c95f395ff3fe6080604052600436106101db575f3560e01c80636d5115bd116100fd578063b700961311610092578063d22b598911610062578063d22b598914610636578063d6bb62c614610655578063f801a69814610674578063fe0776f5146106ad575f5ffd5b8063b7009613146105a8578063b7d2b162146105e3578063cc1b6c8114610602578063d1f856ee14610617575f5ffd5b8063a166aa89116100cd578063a166aa8914610501578063a64d95ce14610530578063abd9bd2a1461054f578063ac9650d81461057c575f5ffd5b80636d5115bd1461049157806375b238fc146104b0578063853551b8146104c357806394c7d7ee146104e2575f5ffd5b806330cae187116101735780634665096d116101435780634665096d146104035780634c1da1e2146104185780635296295214610437578063530dd45614610456575f5ffd5b806330cae1871461035c5780633adc277a1461037b5780633ca7c02a146103b15780634136a33c146103cb575f5ffd5b806318ff183c116101ae57806318ff183c146102b25780631cff79cd146102d157806325c471a0146102e45780633078f11414610303575f5ffd5b806308d6122d146101df5780630b0a93ba1461020057806312be87271461025f578063167bd39514610293575b5f5ffd5b3480156101ea575f5ffd5b506101fe6101f93660046120c0565b6106cc565b005b34801561020b575f5ffd5b5061024261021a366004612122565b6001600160401b039081165f9081526001602081905260409091200154600160401b90041690565b6040516001600160401b0390911681526020015b60405180910390f35b34801561026a575f5ffd5b5061027e610279366004612122565b61071e565b60405163ffffffff9091168152602001610256565b34801561029e575f5ffd5b506101fe6102ad36600461213b565b610758565b3480156102bd575f5ffd5b506101fe6102cc366004612176565b61076e565b61027e6102df3660046121df565b6107d0565b3480156102ef575f5ffd5b506101fe6102fe366004612242565b6108fc565b34801561030e575f5ffd5b5061032261031d366004612284565b61091e565b604051610256949392919065ffffffffffff948516815263ffffffff93841660208201529190921660408201529116606082015260800190565b348015610367575f5ffd5b506101fe61037636600461229e565b610982565b348015610386575f5ffd5b5061039a6103953660046122cf565b610994565b60405165ffffffffffff9091168152602001610256565b3480156103bc575f5ffd5b506102426001600160401b0381565b3480156103d6575f5ffd5b5061027e6103e53660046122cf565b5f90815260026020526040902054600160301b900463ffffffff1690565b34801561040e575f5ffd5b5062093a8061027e565b348015610423575f5ffd5b5061027e6104323660046122e6565b6109c5565b348015610442575f5ffd5b506101fe61045136600461229e565b6109f2565b348015610461575f5ffd5b50610242610470366004612122565b6001600160401b039081165f90815260016020819052604090912001541690565b34801561049c575f5ffd5b506102426104ab366004612316565b610a04565b3480156104bb575f5ffd5b506102425f81565b3480156104ce575f5ffd5b506101fe6104dd366004612342565b610a3e565b3480156104ed575f5ffd5b506101fe6104fc3660046121df565b610ad5565b34801561050c575f5ffd5b5061052061051b3660046122e6565b610b7f565b6040519015158152602001610256565b34801561053b575f5ffd5b506101fe61054a36600461235d565b610ba6565b34801561055a575f5ffd5b5061056e610569366004612385565b610bb8565b604051908152602001610256565b348015610587575f5ffd5b5061059b6105963660046123e5565b610bf0565b6040516102569190612423565b3480156105b3575f5ffd5b506105c76105c23660046124a7565b610cd5565b60408051921515835263ffffffff909116602083015201610256565b3480156105ee575f5ffd5b506101fe6105fd366004612284565b610d56565b34801561060d575f5ffd5b506206978061027e565b348015610622575f5ffd5b506105c7610631366004612284565b610d6d565b348015610641575f5ffd5b506101fe6106503660046124ef565b610de6565b348015610660575f5ffd5b5061027e61066f366004612385565b610df8565b34801561067f575f5ffd5b5061069361068e36600461250b565b610f4b565b6040805192835263ffffffff909116602083015201610256565b3480156106b8575f5ffd5b506101fe6106c7366004612284565b61108c565b6106d46110b5565b5f5b828110156107175761070f858585848181106106f4576106f4612578565b9050602002016020810190610709919061258c565b8461112c565b6001016106d6565b5050505050565b6001600160401b0381165f9081526001602081905260408220015461075290600160801b90046001600160701b03166111ad565b92915050565b6107606110b5565b61076a82826111cb565b5050565b6107766110b5565b604051637a9e5e4b60e01b81526001600160a01b038281166004830152831690637a9e5e4b906024015f604051808303815f87803b1580156107b6575f5ffd5b505af11580156107c8573d5f5f3e3d5ffd5b505050505050565b5f3381806107e08388888861123c565b91509150811580156107f6575063ffffffff8116155b15610849578287610807888861128d565b6040516381c6f24b60e01b81526001600160a01b0393841660048201529290911660248301526001600160e01b03191660448201526064015b60405180910390fd5b5f61085684898989610bb8565b90505f63ffffffff831615158061087c575061087182610994565b65ffffffffffff1615155b1561088d5761088a826112a4565b90505b6003546108a38a61089e8b8b61128d565b6113a2565b6003819055506108ea8a8a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152503492506113c7915050565b506003559450505050505b9392505050565b6109046110b5565b61091883836109128661071e565b84611493565b50505050565b6001600160401b0382165f9081526001602090815260408083206001600160a01b03851684529091528120805465ffffffffffff81169291829182919061097490600160301b90046001600160701b03166116d9565b969991985096509350505050565b61098a6110b5565b61076a82826116fa565b5f8181526002602052604081205465ffffffffffff166109b38161179d565b6109bd57806108f5565b5f9392505050565b6001600160a01b0381165f90815260208190526040812060010154610752906001600160701b03166111ad565b6109fa6110b5565b61076a82826117cb565b6001600160a01b0382165f908152602081815260408083206001600160e01b0319851684529091529020546001600160401b031692915050565b610a466110b5565b6001600160401b0383161580610a6457506001600160401b03838116145b15610a8d5760405163061c6a4360e21b81526001600160401b0384166004820152602401610840565b826001600160401b03167f1256f5b5ecb89caec12db449738f2fbcd1ba5806cf38f35413f4e5c15bf6a4508383604051610ac89291906125cf565b60405180910390a2505050565b60408051638fb3603760e01b80825291513392918391638fb36037916004808201926020929091908290030181865afa158015610b14573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3891906125ea565b6001600160e01b03191614610b6b57604051630641fee960e31b81526001600160a01b0382166004820152602401610840565b610717610b7a85838686610bb8565b6112a4565b6001600160a01b03165f90815260208190526040902060010154600160701b900460ff1690565b610bae6110b5565b61076a828261187c565b5f84848484604051602001610bd09493929190612605565b604051602081830303815290604052805190602001209050949350505050565b604080515f815260208101909152606090826001600160401b03811115610c1957610c19612676565b604051908082528060200260200182016040528015610c4c57816020015b6060815260200190600190039081610c375790505b5091505f5b83811015610ccd57610ca830868684818110610c6f57610c6f612578565b9050602002810190610c81919061268a565b85604051602001610c94939291906126cc565b60405160208183030381529060405261198b565b838281518110610cba57610cba612578565b6020908102919091010152600101610c51565b505092915050565b5f5f610ce084610b7f565b15610cef57505f905080610d4e565b306001600160a01b03861603610d1357610d098484611a0d565b5f91509150610d4e565b5f610d1e8585610a04565b90505f5f610d2c8389610d6d565b9150915081610d3c575f5f610d46565b63ffffffff811615815b945094505050505b935093915050565b610d5e6110b5565b610d688282611a23565b505050565b5f8067fffffffffffffffe196001600160401b03851601610d935750600190505f610ddf565b5f5f610d9f868661091e565b5050915091508165ffffffffffff165f14158015610dd45750610dc0611b0c565b65ffffffffffff168265ffffffffffff1611155b93509150610ddf9050565b9250929050565b610dee6110b5565b61076a8282611b1b565b5f3381610e05858561128d565b90505f610e1488888888610bb8565b5f8181526002602052604081205491925065ffffffffffff9091169003610e515760405163060a299b60e41b815260048101829052602401610840565b826001600160a01b0316886001600160a01b031614610eea575f610e755f85610d6d565b5090505f610e8f610e8961021a8b87610a04565b86610d6d565b50905081158015610e9e575080155b15610ee757604051630ff89d4760e21b81526001600160a01b038087166004830152808c1660248301528a1660448201526001600160e01b031985166064820152608401610840565b50505b5f81815260026020526040808220805465ffffffffffff1916908190559051600160301b90910463ffffffff1691829184917fbd9ac67a6e2f6463b80927326310338bcbb4bdb7936ce1365ea3e01067e7b9f791a398975050505050505050565b5f803381610f5b8289898961123c565b9150505f8163ffffffff16610f6e611b0c565b610f7891906126ef565b905063ffffffff82161580610fae57505f8665ffffffffffff16118015610fae57508065ffffffffffff168665ffffffffffff16105b15610fbf5782896108078a8a61128d565b610fd98665ffffffffffff168265ffffffffffff16611bd6565b9550610fe7838a8a8a610bb8565b9450610ff285611be5565b5f8581526002602052604090819020805465ffffffffffff891669ffffffffffffffffffff19821617600160301b9182900463ffffffff90811660010190811692830291909117909255915190955086907f82a2da5dee54ea8021c6545b4444620291e07ee83be6dd57edb175062715f3b490611078908a9088908f908f908f9061270d565b60405180910390a350505094509492505050565b6001600160a01b0381163314610d5e57604051635f159e6360e01b815260040160405180910390fd5b335f806110c3838236611c31565b9150915081610d68578063ffffffff165f0361111d575f6110e48136611cf4565b5060405163f07e038f60e01b81526001600160a01b03871660048201526001600160401b03821660248201529092506044019050610840565b610918610b7a84305f36610bb8565b6001600160a01b0383165f818152602081815260408083206001600160e01b0319871680855290835292819020805467ffffffffffffffff19166001600160401b038716908117909155905192835292917f9ea6790c7dadfd01c9f8b9762b3682607af2c7e79e05a9f9fdf5580dde949151910160405180910390a3505050565b5f5f6111c1836001600160701b03166116d9565b5090949350505050565b6001600160a01b0382165f81815260208190526040908190206001018054841515600160701b0260ff60701b19909116179055517f90d4e7bb7e5d933792b3562e1741306f8be94837e1348dacef9b6f1df56eb1389061123090841515815260200190565b60405180910390a25050565b5f80306001600160a01b0386160361126257611259868585611c31565b91509150611284565b6004831061127e5761127986866105c2878761128d565b611259565b505f9050805b94509492505050565b5f61129b600482848661264f565b6108f591612752565b5f8181526002602052604081205465ffffffffffff811690600160301b900463ffffffff168183036112ec5760405163060a299b60e41b815260048101859052602401610840565b6112f4611b0c565b65ffffffffffff168265ffffffffffff16111561132757604051630c65b5bd60e11b815260048101859052602401610840565b6113308261179d565b1561135157604051631e2975b960e21b815260048101859052602401610840565b5f84815260026020526040808220805465ffffffffffff191690555163ffffffff83169186917f76a2a46953689d4861a5d3f6ed883ad7e6af674a21f8e162707159fc9dde614d9190a39392505050565b6001600160a01b0382165f9081526001600160e01b03198216602052604081206108f5565b6060814710156113f35760405163cf47918160e01b815247600482015260248101839052604401610840565b5f6113ff858486611eda565b905080801561142057505f3d118061142057505f856001600160a01b03163b115b156114355761142d611eef565b9150506108f5565b801561145f57604051639996b31560e01b81526001600160a01b0386166004820152602401610840565b3d156114725761146d611f08565b61148b565b60405163d6bda27560e01b815260040160405180910390fd5b509392505050565b5f67fffffffffffffffe196001600160401b038616016114d15760405163061c6a4360e21b81526001600160401b0386166004820152602401610840565b6001600160401b0385165f9081526001602090815260408083206001600160a01b038816845290915281205465ffffffffffff16159081156115c1578463ffffffff1661151c611b0c565b61152691906126ef565b905060405180604001604052808265ffffffffffff1681526020016115548663ffffffff1663ffffffff1690565b6001600160701b039081169091526001600160401b0389165f9081526001602090815260408083206001600160a01b038c1684528252909120835181549490920151909216600160301b026001600160a01b031990931665ffffffffffff9091161791909117905561166b565b6001600160401b0387165f9081526001602090815260408083206001600160a01b038a16845290915281205461160a91600160301b9091046001600160701b0316908690611f13565b6001600160401b0389165f9081526001602090815260408083206001600160a01b038c168452909152902080546001600160701b03909316600160301b0273ffffffffffffffffffffffffffff000000000000199093169290921790915590505b6040805163ffffffff8616815265ffffffffffff831660208201528315158183015290516001600160a01b038816916001600160401b038a16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a35095945050505050565b5f5f5f6116ed846116e8611b0c565b611fb9565b9250925092509193909250565b6001600160401b038216158061171857506001600160401b03828116145b156117415760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b038281165f818152600160208190526040808320909101805467ffffffffffffffff19169486169485179055517f1fd6dd7631312dfac2205b52913f99de03b4d7e381d5d27d3dbfe0713e6e63409190a35050565b5f6117a6611b0c565b65ffffffffffff166117bb62093a80846126ef565b65ffffffffffff16111592915050565b6001600160401b03821615806117e957506001600160401b03828116145b156118125760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b038281165f81815260016020819052604080832090910180546fffffffffffffffff00000000000000001916600160401b958716958602179055517f7a8059630b897b5de4c08ade69f8b90c3ead1f8596d62d10b6c4d14a0afb4ae29190a35050565b67fffffffffffffffe196001600160401b038316016118b95760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b0382165f908152600160208190526040822001546118f290600160801b90046001600160701b03168362069780611f13565b6001600160401b0385165f818152600160208190526040918290200180546001600160701b03909516600160801b026dffffffffffffffffffffffffffff60801b199095169490941790935591519092507ffeb69018ee8b8fd50ea86348f1267d07673379f72cffdeccec63853ee8ce8b4890610ac8908590859063ffffffff92909216825265ffffffffffff16602082015260400190565b60605f6119988484612005565b90508080156119b957505f3d11806119b957505f846001600160a01b03163b115b156119ce576119c6611eef565b915050610752565b80156119f857604051639996b31560e01b81526001600160a01b0385166004820152602401610840565b3d1561147257611a06611f08565b5092915050565b5f611a1883836113a2565b600354149392505050565b5f67fffffffffffffffe196001600160401b03841601611a615760405163061c6a4360e21b81526001600160401b0384166004820152602401610840565b6001600160401b0383165f9081526001602090815260408083206001600160a01b038616845290915281205465ffffffffffff169003611aa257505f610752565b6001600160401b0383165f8181526001602090815260408083206001600160a01b038716808552925280832080546001600160a01b0319169055519092917ff229baa593af28c41b1d16b748cd7688f0c83aaf92d4be41c44005defe84c16691a350600192915050565b5f611b1642612018565b905090565b6001600160a01b0382165f90815260208190526040812060010154611b4d906001600160701b03168362069780611f13565b6001600160a01b0385165f818152602081815260409182902060010180546dffffffffffffffffffffffffffff19166001600160701b039690961695909517909455805163ffffffff8716815265ffffffffffff841694810194909452919350917fa56b76017453f399ec2327ba00375dbfb1fd070ff854341ad6191e6a2e2de19c9101610ac8565b5f8282188284110282186108f5565b5f8181526002602052604090205465ffffffffffff168015801590611c105750611c0e8161179d565b155b1561076a5760405163813e945960e01b815260048101839052602401610840565b5f806004831015611c4657505f905080610d4e565b306001600160a01b03861603611c6957610d0930611c64868661128d565b611a0d565b5f5f5f611c768787611cf4565b92509250925082158015611c8e5750611c8e30610b7f565b15611ca1575f5f94509450505050610d4e565b5f5f611cad848b610d6d565b9150915081611cc6575f5f965096505050505050610d4e565b611cdc8363ffffffff168263ffffffff16611bd6565b63ffffffff8116159b909a5098505050505050505050565b5f80806004841015611d0d57505f915081905080611ed3565b5f611d18868661128d565b90506001600160e01b031981166310a6aa3760e31b1480611d4957506001600160e01b031981166330cae18760e01b145b80611d6457506001600160e01b0319811663294b14a960e11b145b80611d7f57506001600160e01b03198116635326cae760e11b145b80611d9a57506001600160e01b0319811663d22b598960e01b145b15611daf5760015f5f93509350935050611ed3565b6001600160e01b0319811663063fc60f60e21b1480611dde57506001600160e01b0319811663167bd39560e01b145b80611df957506001600160e01b031981166308d6122d60e01b145b15611e38575f611e0d60246004888a61264f565b810190611e1a91906122e6565b90505f611e26826109c5565b600196505f95509350611ed392505050565b6001600160e01b0319811663012e238d60e51b1480611e6757506001600160e01b03198116635be958b160e11b145b15611ebf575f611e7b60246004888a61264f565b810190611e889190612122565b90506001611eb1826001600160401b039081165f90815260016020819052604090912001541690565b5f9450945094505050611ed3565b5f611eca3083610a04565b5f935093509350505b9250925092565b5f5f5f83516020850186885af1949350505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f5f5f611f28866001600160701b03166111ad565b90505f611f638563ffffffff168763ffffffff168463ffffffff1611611f4e575f611f58565b611f588885612788565b63ffffffff16611bd6565b90508063ffffffff16611f74611b0c565b611f7e91906126ef565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b69ffffffffffffffffffff602083901c166001600160701b03831665ffffffffffff604085901c8116908416811115611ff457828282611ff8565b815f5f5b9250925092509250925092565b5f5f5f835160208501865af49392505050565b5f65ffffffffffff82111561204a576040516306dfcc6560e41b81526030600482015260248101839052604401610840565b5090565b6001600160a01b0381168114612062575f5ffd5b50565b5f5f83601f840112612075575f5ffd5b5081356001600160401b0381111561208b575f5ffd5b6020830191508360208260051b8501011115610ddf575f5ffd5b80356001600160401b03811681146120bb575f5ffd5b919050565b5f5f5f5f606085870312156120d3575f5ffd5b84356120de8161204e565b935060208501356001600160401b038111156120f8575f5ffd5b61210487828801612065565b90945092506121179050604086016120a5565b905092959194509250565b5f60208284031215612132575f5ffd5b6108f5826120a5565b5f5f6040838503121561214c575f5ffd5b82356121578161204e565b91506020830135801515811461216b575f5ffd5b809150509250929050565b5f5f60408385031215612187575f5ffd5b82356121928161204e565b9150602083013561216b8161204e565b5f5f83601f8401126121b2575f5ffd5b5081356001600160401b038111156121c8575f5ffd5b602083019150836020828501011115610ddf575f5ffd5b5f5f5f604084860312156121f1575f5ffd5b83356121fc8161204e565b925060208401356001600160401b03811115612216575f5ffd5b612222868287016121a2565b9497909650939450505050565b803563ffffffff811681146120bb575f5ffd5b5f5f5f60608486031215612254575f5ffd5b61225d846120a5565b9250602084013561226d8161204e565b915061227b6040850161222f565b90509250925092565b5f5f60408385031215612295575f5ffd5b612192836120a5565b5f5f604083850312156122af575f5ffd5b6122b8836120a5565b91506122c6602084016120a5565b90509250929050565b5f602082840312156122df575f5ffd5b5035919050565b5f602082840312156122f6575f5ffd5b81356108f58161204e565b6001600160e01b031981168114612062575f5ffd5b5f5f60408385031215612327575f5ffd5b82356123328161204e565b9150602083013561216b81612301565b5f5f5f60408486031215612354575f5ffd5b6121fc846120a5565b5f5f6040838503121561236e575f5ffd5b612377836120a5565b91506122c66020840161222f565b5f5f5f5f60608587031215612398575f5ffd5b84356123a38161204e565b935060208501356123b38161204e565b925060408501356001600160401b038111156123cd575f5ffd5b6123d9878288016121a2565b95989497509550505050565b5f5f602083850312156123f6575f5ffd5b82356001600160401b0381111561240b575f5ffd5b61241785828601612065565b90969095509350505050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b8281101561249b57603f19878603018452815180518087528060208301602089015e5f602082890101526020601f19601f83011688010196505050602082019150602084019350600181019050612449565b50929695505050505050565b5f5f5f606084860312156124b9575f5ffd5b83356124c48161204e565b925060208401356124d48161204e565b915060408401356124e481612301565b809150509250925092565b5f5f60408385031215612500575f5ffd5b82356123778161204e565b5f5f5f5f6060858703121561251e575f5ffd5b84356125298161204e565b935060208501356001600160401b03811115612543575f5ffd5b61254f878288016121a2565b909450925050604085013565ffffffffffff8116811461256d575f5ffd5b939692955090935050565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561259c575f5ffd5b81356108f581612301565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f6125e26020830184866125a7565b949350505050565b5f602082840312156125fa575f5ffd5b81516108f581612301565b6001600160a01b038581168252841660208201526060604082018190525f9061263190830184866125a7565b9695505050505050565b634e487b7160e01b5f52601160045260245ffd5b5f5f8585111561265d575f5ffd5b83861115612669575f5ffd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f5f8335601e1984360301811261269f575f5ffd5b8301803591506001600160401b038211156126b8575f5ffd5b602001915036819003821315610ddf575f5ffd5b828482375f8382015f815283518060208601835e5f910190815295945050505050565b65ffffffffffff81811683821601908111156107525761075261263b565b65ffffffffffff861681526001600160a01b038581166020830152841660408201526080606082018190525f9061274790830184866125a7565b979650505050505050565b80356001600160e01b03198116906004841015611a06576001600160e01b031960049490940360031b84901b1690921692915050565b63ffffffff82811682821603908111156107525761075261263b56fea26469706673582212209b3164b8cdeac6faaf8c03b8a27b787dcccb72987c31447c36cedc0e6df90b7364736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x2CA3 CODESIZE SUB DUP1 PUSH2 0x2CA3 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 0x27DA 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 0x20C0 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 0x2122 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 0x2122 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 0x213B 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 0x2176 JUMP JUMPDEST PUSH2 0x76E JUMP JUMPDEST PUSH2 0x27E PUSH2 0x2DF CALLDATASIZE PUSH1 0x4 PUSH2 0x21DF 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 0x2242 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 0x2284 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 0x229E JUMP JUMPDEST PUSH2 0x982 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x386 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x39A PUSH2 0x395 CALLDATASIZE PUSH1 0x4 PUSH2 0x22CF JUMP JUMPDEST PUSH2 0x994 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 0x22CF 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 0x22E6 JUMP JUMPDEST PUSH2 0x9C5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x442 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x451 CALLDATASIZE PUSH1 0x4 PUSH2 0x229E JUMP JUMPDEST PUSH2 0x9F2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x461 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x470 CALLDATASIZE PUSH1 0x4 PUSH2 0x2122 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 0x2316 JUMP JUMPDEST PUSH2 0xA04 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 0x2342 JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x4FC CALLDATASIZE PUSH1 0x4 PUSH2 0x21DF JUMP JUMPDEST PUSH2 0xAD5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x520 PUSH2 0x51B CALLDATASIZE PUSH1 0x4 PUSH2 0x22E6 JUMP JUMPDEST PUSH2 0xB7F 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 0x235D JUMP JUMPDEST PUSH2 0xBA6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x55A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x56E PUSH2 0x569 CALLDATASIZE PUSH1 0x4 PUSH2 0x2385 JUMP JUMPDEST PUSH2 0xBB8 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 0x23E5 JUMP JUMPDEST PUSH2 0xBF0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x256 SWAP2 SWAP1 PUSH2 0x2423 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5C7 PUSH2 0x5C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x24A7 JUMP JUMPDEST PUSH2 0xCD5 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 0x2284 JUMP JUMPDEST PUSH2 0xD56 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 0x2284 JUMP JUMPDEST PUSH2 0xD6D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x641 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x650 CALLDATASIZE PUSH1 0x4 PUSH2 0x24EF JUMP JUMPDEST PUSH2 0xDE6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x660 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x66F CALLDATASIZE PUSH1 0x4 PUSH2 0x2385 JUMP JUMPDEST PUSH2 0xDF8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x67F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x693 PUSH2 0x68E CALLDATASIZE PUSH1 0x4 PUSH2 0x250B JUMP JUMPDEST PUSH2 0xF4B 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 0x2284 JUMP JUMPDEST PUSH2 0x108C JUMP JUMPDEST PUSH2 0x6D4 PUSH2 0x10B5 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 0x2578 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x709 SWAP2 SWAP1 PUSH2 0x258C JUMP JUMPDEST DUP5 PUSH2 0x112C 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 0x11AD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x760 PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x11CB JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x776 PUSH2 0x10B5 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 0x123C 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 0x128D 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 0xBB8 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH4 0xFFFFFFFF DUP4 AND ISZERO ISZERO DUP1 PUSH2 0x87C JUMPI POP PUSH2 0x871 DUP3 PUSH2 0x994 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x88D JUMPI PUSH2 0x88A DUP3 PUSH2 0x12A4 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x8A3 DUP11 PUSH2 0x89E DUP12 DUP12 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x13A2 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 0x13C7 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 0x10B5 JUMP JUMPDEST PUSH2 0x918 DUP4 DUP4 PUSH2 0x912 DUP7 PUSH2 0x71E JUMP JUMPDEST DUP5 PUSH2 0x1493 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 DUP2 AND SWAP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 SWAP1 PUSH2 0x974 SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x16D9 JUMP JUMPDEST SWAP7 SWAP10 SWAP2 SWAP9 POP SWAP7 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x98A PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x16FA JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x9B3 DUP2 PUSH2 0x179D JUMP JUMPDEST PUSH2 0x9BD 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 0x11AD JUMP JUMPDEST PUSH2 0x9FA PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x17CB 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 0xA46 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ISZERO DUP1 PUSH2 0xA64 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0xA8D 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 0xAC8 SWAP3 SWAP2 SWAP1 PUSH2 0x25CF 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 0xB14 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 0xB38 SWAP2 SWAP1 PUSH2 0x25EA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND EQ PUSH2 0xB6B 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 0xB7A DUP6 DUP4 DUP7 DUP7 PUSH2 0xBB8 JUMP JUMPDEST PUSH2 0x12A4 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 0xBAE PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x187C JUMP JUMPDEST PUSH0 DUP5 DUP5 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xBD0 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2605 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 0xC19 JUMPI PUSH2 0xC19 PUSH2 0x2676 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xC4C JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xC37 JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xCCD JUMPI PUSH2 0xCA8 ADDRESS DUP7 DUP7 DUP5 DUP2 DUP2 LT PUSH2 0xC6F JUMPI PUSH2 0xC6F PUSH2 0x2578 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xC81 SWAP2 SWAP1 PUSH2 0x268A JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xC94 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x26CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x198B JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xCBA JUMPI PUSH2 0xCBA PUSH2 0x2578 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0xC51 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xCE0 DUP5 PUSH2 0xB7F JUMP JUMPDEST ISZERO PUSH2 0xCEF JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xD4E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0xD13 JUMPI PUSH2 0xD09 DUP5 DUP5 PUSH2 0x1A0D JUMP JUMPDEST PUSH0 SWAP2 POP SWAP2 POP PUSH2 0xD4E JUMP JUMPDEST PUSH0 PUSH2 0xD1E DUP6 DUP6 PUSH2 0xA04 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH0 PUSH2 0xD2C DUP4 DUP10 PUSH2 0xD6D JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xD3C JUMPI PUSH0 PUSH0 PUSH2 0xD46 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 0xD5E PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0xD68 DUP3 DUP3 PUSH2 0x1A23 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND ADD PUSH2 0xD93 JUMPI POP PUSH1 0x1 SWAP1 POP PUSH0 PUSH2 0xDDF JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xD9F DUP7 DUP7 PUSH2 0x91E JUMP JUMPDEST POP POP SWAP2 POP SWAP2 POP DUP2 PUSH6 0xFFFFFFFFFFFF AND PUSH0 EQ ISZERO DUP1 ISZERO PUSH2 0xDD4 JUMPI POP PUSH2 0xDC0 PUSH2 0x1B0C JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO JUMPDEST SWAP4 POP SWAP2 POP PUSH2 0xDDF SWAP1 POP JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xDEE PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x1B1B JUMP JUMPDEST PUSH0 CALLER DUP2 PUSH2 0xE05 DUP6 DUP6 PUSH2 0x128D JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0xE14 DUP9 DUP9 DUP9 DUP9 PUSH2 0xBB8 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 0xE51 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 0xEEA JUMPI PUSH0 PUSH2 0xE75 PUSH0 DUP6 PUSH2 0xD6D JUMP JUMPDEST POP SWAP1 POP PUSH0 PUSH2 0xE8F PUSH2 0xE89 PUSH2 0x21A DUP12 DUP8 PUSH2 0xA04 JUMP JUMPDEST DUP7 PUSH2 0xD6D JUMP JUMPDEST POP SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xE9E JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xEE7 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 0xF5B DUP3 DUP10 DUP10 DUP10 PUSH2 0x123C JUMP JUMPDEST SWAP2 POP POP PUSH0 DUP2 PUSH4 0xFFFFFFFF AND PUSH2 0xF6E PUSH2 0x1B0C JUMP JUMPDEST PUSH2 0xF78 SWAP2 SWAP1 PUSH2 0x26EF JUMP JUMPDEST SWAP1 POP PUSH4 0xFFFFFFFF DUP3 AND ISZERO DUP1 PUSH2 0xFAE JUMPI POP PUSH0 DUP7 PUSH6 0xFFFFFFFFFFFF AND GT DUP1 ISZERO PUSH2 0xFAE JUMPI POP DUP1 PUSH6 0xFFFFFFFFFFFF AND DUP7 PUSH6 0xFFFFFFFFFFFF AND LT JUMPDEST ISZERO PUSH2 0xFBF JUMPI DUP3 DUP10 PUSH2 0x807 DUP11 DUP11 PUSH2 0x128D JUMP JUMPDEST PUSH2 0xFD9 DUP7 PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x1BD6 JUMP JUMPDEST SWAP6 POP PUSH2 0xFE7 DUP4 DUP11 DUP11 DUP11 PUSH2 0xBB8 JUMP JUMPDEST SWAP5 POP PUSH2 0xFF2 DUP6 PUSH2 0x1BE5 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 0x1078 SWAP1 DUP11 SWAP1 DUP9 SWAP1 DUP16 SWAP1 DUP16 SWAP1 DUP16 SWAP1 PUSH2 0x270D 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 0xD5E 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 0x10C3 DUP4 DUP3 CALLDATASIZE PUSH2 0x1C31 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xD68 JUMPI DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x111D JUMPI PUSH0 PUSH2 0x10E4 DUP2 CALLDATASIZE PUSH2 0x1CF4 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 0xB7A DUP5 ADDRESS PUSH0 CALLDATASIZE PUSH2 0xBB8 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 0x11C1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x16D9 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 0x1230 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 0x1262 JUMPI PUSH2 0x1259 DUP7 DUP6 DUP6 PUSH2 0x1C31 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1284 JUMP JUMPDEST PUSH1 0x4 DUP4 LT PUSH2 0x127E JUMPI PUSH2 0x1279 DUP7 DUP7 PUSH2 0x5C2 DUP8 DUP8 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x1259 JUMP JUMPDEST POP PUSH0 SWAP1 POP DUP1 JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x129B PUSH1 0x4 DUP3 DUP5 DUP7 PUSH2 0x264F JUMP JUMPDEST PUSH2 0x8F5 SWAP2 PUSH2 0x2752 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 0x12EC 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 0x12F4 PUSH2 0x1B0C JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO PUSH2 0x1327 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 0x1330 DUP3 PUSH2 0x179D JUMP JUMPDEST ISZERO PUSH2 0x1351 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 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH2 0x8F5 JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x13F3 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 PUSH2 0x13FF DUP6 DUP5 DUP7 PUSH2 0x1EDA JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1420 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x1420 JUMPI POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x1435 JUMPI PUSH2 0x142D PUSH2 0x1EEF JUMP JUMPDEST SWAP2 POP POP PUSH2 0x8F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x145F JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x1472 JUMPI PUSH2 0x146D PUSH2 0x1F08 JUMP JUMPDEST PUSH2 0x148B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND ADD PUSH2 0x14D1 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 0x15C1 JUMPI DUP5 PUSH4 0xFFFFFFFF AND PUSH2 0x151C PUSH2 0x1B0C JUMP JUMPDEST PUSH2 0x1526 SWAP2 SWAP1 PUSH2 0x26EF 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 0x1554 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 0x166B 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 0x160A SWAP2 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 DUP7 SWAP1 PUSH2 0x1F13 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 0x16ED DUP5 PUSH2 0x16E8 PUSH2 0x1B0C JUMP JUMPDEST PUSH2 0x1FB9 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x1718 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1741 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 0x17A6 PUSH2 0x1B0C JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x17BB PUSH3 0x93A80 DUP5 PUSH2 0x26EF 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 0x17E9 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1812 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 0x18B9 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 0x18F2 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x1F13 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 0xAC8 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 PUSH2 0x1998 DUP5 DUP5 PUSH2 0x2005 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x19B9 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x19B9 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x19CE JUMPI PUSH2 0x19C6 PUSH2 0x1EEF JUMP JUMPDEST SWAP2 POP POP PUSH2 0x752 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x19F8 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 RETURNDATASIZE ISZERO PUSH2 0x1472 JUMPI PUSH2 0x1A06 PUSH2 0x1F08 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A18 DUP4 DUP4 PUSH2 0x13A2 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 0x1A61 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 0x1AA2 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 0x1B16 TIMESTAMP PUSH2 0x2018 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 0x1B4D SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x1F13 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 0xAC8 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 0x1C10 JUMPI POP PUSH2 0x1C0E DUP2 PUSH2 0x179D 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 0x1C46 JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xD4E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x1C69 JUMPI PUSH2 0xD09 ADDRESS PUSH2 0x1C64 DUP7 DUP7 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x1A0D JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1C76 DUP8 DUP8 PUSH2 0x1CF4 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP DUP3 ISZERO DUP1 ISZERO PUSH2 0x1C8E JUMPI POP PUSH2 0x1C8E ADDRESS PUSH2 0xB7F JUMP JUMPDEST ISZERO PUSH2 0x1CA1 JUMPI PUSH0 PUSH0 SWAP5 POP SWAP5 POP POP POP POP PUSH2 0xD4E JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1CAD DUP5 DUP12 PUSH2 0xD6D JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x1CC6 JUMPI PUSH0 PUSH0 SWAP7 POP SWAP7 POP POP POP POP POP POP PUSH2 0xD4E JUMP JUMPDEST PUSH2 0x1CDC DUP4 PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x1BD6 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 0x1D0D JUMPI POP PUSH0 SWAP2 POP DUP2 SWAP1 POP DUP1 PUSH2 0x1ED3 JUMP JUMPDEST PUSH0 PUSH2 0x1D18 DUP7 DUP7 PUSH2 0x128D JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x10A6AA37 PUSH1 0xE3 SHL EQ DUP1 PUSH2 0x1D49 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x30CAE187 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1D64 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x294B14A9 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x1D7F JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5326CAE7 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x1D9A JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xD22B5989 PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x1DAF JUMPI PUSH1 0x1 PUSH0 PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP PUSH2 0x1ED3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x63FC60F PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x1DDE JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x167BD395 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1DF9 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x8D6122D PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x1E38 JUMPI PUSH0 PUSH2 0x1E0D PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x264F JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1E1A SWAP2 SWAP1 PUSH2 0x22E6 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1E26 DUP3 PUSH2 0x9C5 JUMP JUMPDEST PUSH1 0x1 SWAP7 POP PUSH0 SWAP6 POP SWAP4 POP PUSH2 0x1ED3 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 0x1E67 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5BE958B1 PUSH1 0xE1 SHL EQ JUMPDEST ISZERO PUSH2 0x1EBF JUMPI PUSH0 PUSH2 0x1E7B PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x264F JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1E88 SWAP2 SWAP1 PUSH2 0x2122 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH2 0x1EB1 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 0x1ED3 JUMP JUMPDEST PUSH0 PUSH2 0x1ECA ADDRESS DUP4 PUSH2 0xA04 JUMP JUMPDEST PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 DUP9 GAS CALL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1F28 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11AD JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1F63 DUP6 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1F4E JUMPI PUSH0 PUSH2 0x1F58 JUMP JUMPDEST PUSH2 0x1F58 DUP9 DUP6 PUSH2 0x2788 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x1BD6 JUMP JUMPDEST SWAP1 POP DUP1 PUSH4 0xFFFFFFFF AND PUSH2 0x1F74 PUSH2 0x1B0C JUMP JUMPDEST PUSH2 0x1F7E SWAP2 SWAP1 PUSH2 0x26EF 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 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 0x1FF4 JUMPI DUP3 DUP3 DUP3 PUSH2 0x1FF8 JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH6 0xFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x204A 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 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2062 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2075 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x208B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x20BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x20D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x20DE DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x20F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2104 DUP8 DUP3 DUP9 ADD PUSH2 0x2065 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x2117 SWAP1 POP PUSH1 0x40 DUP7 ADD PUSH2 0x20A5 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2132 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x8F5 DUP3 PUSH2 0x20A5 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x214C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2157 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x216B 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 0x2187 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2192 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x216B DUP2 PUSH2 0x204E JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x21B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x21C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x21F1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x21FC DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2216 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2222 DUP7 DUP3 DUP8 ADD PUSH2 0x21A2 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x20BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2254 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x225D DUP5 PUSH2 0x20A5 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x226D DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH2 0x227B PUSH1 0x40 DUP6 ADD PUSH2 0x222F JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2295 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2192 DUP4 PUSH2 0x20A5 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x22AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x22B8 DUP4 PUSH2 0x20A5 JUMP JUMPDEST SWAP2 POP PUSH2 0x22C6 PUSH1 0x20 DUP5 ADD PUSH2 0x20A5 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22DF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8F5 DUP2 PUSH2 0x204E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x2062 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2327 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2332 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x216B DUP2 PUSH2 0x2301 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2354 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x21FC DUP5 PUSH2 0x20A5 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x236E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2377 DUP4 PUSH2 0x20A5 JUMP JUMPDEST SWAP2 POP PUSH2 0x22C6 PUSH1 0x20 DUP5 ADD PUSH2 0x222F JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2398 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x23A3 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x23B3 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x23CD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x23D9 DUP8 DUP3 DUP9 ADD PUSH2 0x21A2 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x23F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x240B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2417 DUP6 DUP3 DUP7 ADD PUSH2 0x2065 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 0x249B 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 0x2449 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 0x24B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x24C4 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x24D4 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x24E4 DUP2 PUSH2 0x2301 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2500 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2377 DUP2 PUSH2 0x204E JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x251E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2529 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2543 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x254F DUP8 DUP3 DUP9 ADD PUSH2 0x21A2 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x256D 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 0x259C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8F5 DUP2 PUSH2 0x2301 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 0x25E2 PUSH1 0x20 DUP4 ADD DUP5 DUP7 PUSH2 0x25A7 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x25FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x8F5 DUP2 PUSH2 0x2301 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 0x2631 SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x25A7 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP 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 0x265D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x2669 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 0x269F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x26B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH0 DUP4 DUP3 ADD PUSH0 DUP2 MSTORE DUP4 MLOAD DUP1 PUSH1 0x20 DUP7 ADD DUP4 MCOPY PUSH0 SWAP2 ADD SWAP1 DUP2 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x752 JUMPI PUSH2 0x752 PUSH2 0x263B 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 0x2747 SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x25A7 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 0x1A06 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x752 JUMPI PUSH2 0x752 PUSH2 0x263B JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP12 BALANCE PUSH5 0xB8CDEAC6FA 0xAF DUP13 SUB 0xB8 LOG2 PUSH28 0x787DCCCB72987C31447C36CEDC0E6DF90B7364736F6C634300081E00 CALLER ","sourceMap":"3782:26184:56:-:0;;;6339:283;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;6387:26:56;;6383:108;;6436:44;;-1:-1:-1;;;6436:44:56;;6477:1;6436:44;;;455:51:125;428:18;;6436:44:56;;;;;;;;6383:108;6573:42;5493:16;6596:12;5493:16;;6573:10;:42::i;:::-;;6339:283;3782:26184;;11603:1061;11761:4;-1:-1:-1;;;;;;;;;;;11781:21:56;;;11777:90;;11825:31;;-1:-1:-1;;;11825:31:56;;-1:-1:-1;;;;;679:31:125;;11825::56;;;661:50:125;634:18;;11825:31:56;517:200:125;11777:90:56;-1:-1:-1;;;;;11894:14:56;;11877;11894;;;:6;:14;;;;;;;;-1:-1:-1;;;;;11894:31:56;;;;;;;;;:37;;;:42;;11969:585;;;;12006:29;;;:16;:14;:16::i;:::-;:29;;;;:::i;:::-;11998:37;;12083:55;;;;;;;;12098:5;12083:55;;;;;;12112:24;:14;:22;;;;;:24;;:::i;:::-;-1:-1:-1;;;;;12083:55:56;;;;;;-1:-1:-1;;;;;12049:14:56;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12049:31:56;;;;;;;;;:89;;;;;;;;;;;;;;-1:-1:-1;;;;;;12049:89:56;;;;;;;;;;;;;;11969:585;;;-1:-1:-1;;;;;12430:14:56;;12528:1;12430:14;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12430:31:56;;;;;;;;;:37;:113;;:37;;;;-1:-1:-1;;;;;12430:37:56;;12496:14;;12430:48;:113::i;:::-;-1:-1:-1;;;;;12382:14:56;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12382:31:56;;;;;;;;;12381:162;;-1:-1:-1;;;;;12381:162:56;;;;;-1:-1:-1;;;;;;;;12381:162:56;;;;;;;;;;;-1:-1:-1;11969:585:56;12569:62;;;1260:10:125;1248:23;;1230:42;;1320:14;1308:27;;1303:2;1288:18;;1281:55;1379:14;;1372:22;1352:18;;;1345:50;12569:62:56;;-1:-1:-1;;;;;12569:62:56;;;-1:-1:-1;;;;;12569:62:56;;;;;;;;1218:2:125;12569:62:56;;;-1:-1:-1;12648:9:56;11603:1061;-1:-1:-1;;;;;11603:1061:56:o;750:110:108:-;794:6;819:34;837:15;819:17;:34::i;:::-;812:41;;750:110;:::o;2507:108::-;2588:20;;;2507:108::o;4032:390::-;4153:18;;;4213:10;-1:-1:-1;;;;;4213:8:108;;;:10::i;:::-;4198:25;;4233:14;4257:61;4266:10;4257:61;;4286:8;4278:16;;:5;:16;;;:39;;4316:1;4278:39;;;4297:16;4305:8;4297:5;:16;:::i;:::-;4257:61;;:8;:61::i;:::-;4233:86;-1:-1:-1;4338:21:108;;;:11;:9;:11::i;:::-;:21;;;;:::i;:::-;4329:30;-1:-1:-1;5125:19:108;;;5119:2;5095:26;;;;;5088:2;5069:21;;;;;5068:54;:76;4369:46;;;;4032:390;;;;;;:::o;14296:213:106:-;14352:6;14382:16;14374:24;;14370:103;;;14421:41;;-1:-1:-1;;;14421:41:106;;14452:2;14421:41;;;1762:36:125;1814:18;;;1807:34;;;1735:18;;14421:41:106;1581:266:125;14370:103:106;-1:-1:-1;14496:5:106;14296:213::o;3608:130:108:-;3656:6;;3695:14;-1:-1:-1;;;;;3695:12:108;;;:14::i;:::-;-1:-1:-1;3674:35:108;;3608:130;-1:-1:-1;;;;3608:130:108:o;5451:111:105:-;5543:5;;;5328;;;5327:36;5322:42;;5451:111;;;;;:::o;3392:159:108:-;3444:18;;;3515:29;3526:4;3532:11;:9;:11::i;:::-;3515:10;:29::i;:::-;3508:36;;;;;;3392:159;;;;;:::o;2867:307::-;-1:-1:-1;;;;;4770:2:108;4763:9;;;;-1:-1:-1;;;;;3061:11:108;;4799:9;4806:2;4799:9;;;;;;3091:19;;;;;:76;;3135:11;3148:10;3160:6;3091:76;;;3114:10;3126:1;3129;3091:76;3084:83;;;;;;2867:307;;;;;:::o;14:290:125:-;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:125;;214:42;;204:70;;270:1;267;260:12;204:70;293:5;14:290;-1:-1:-1;;;14:290:125: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::-;3782:26184:56;;;;;;"},"deployedBytecode":{"functionDebugData":{"@ADMIN_ROLE_19879":{"entryPoint":null,"id":19879,"parameterSlots":0,"returnSlots":0},"@PUBLIC_ROLE_19887":{"entryPoint":null,"id":19887,"parameterSlots":0,"returnSlots":0},"@_canCallExtended_21526":{"entryPoint":4668,"id":21526,"parameterSlots":4,"returnSlots":2},"@_canCallSelf_21628":{"entryPoint":7217,"id":21628,"parameterSlots":3,"returnSlots":2},"@_checkAuthorized_21328":{"entryPoint":4277,"id":21328,"parameterSlots":0,"returnSlots":0},"@_checkNotScheduled_20932":{"entryPoint":7141,"id":20932,"parameterSlots":1,"returnSlots":0},"@_checkSelector_21681":{"entryPoint":4749,"id":21681,"parameterSlots":2,"returnSlots":1},"@_consumeScheduledOp_21234":{"entryPoint":4772,"id":21234,"parameterSlots":1,"returnSlots":1},"@_contextSuffixLength_26788":{"entryPoint":null,"id":26788,"parameterSlots":0,"returnSlots":1},"@_getAdminRestrictions_21481":{"entryPoint":7412,"id":21481,"parameterSlots":2,"returnSlots":3},"@_getFullAt_37186":{"entryPoint":8121,"id":37186,"parameterSlots":2,"returnSlots":3},"@_grantRole_20444":{"entryPoint":5267,"id":20444,"parameterSlots":4,"returnSlots":1},"@_hashExecutionId_21707":{"entryPoint":5026,"id":21707,"parameterSlots":2,"returnSlots":1},"@_isExecuting_21646":{"entryPoint":6669,"id":21646,"parameterSlots":2,"returnSlots":1},"@_isExpired_21664":{"entryPoint":6045,"id":21664,"parameterSlots":1,"returnSlots":1},"@_msgData_26780":{"entryPoint":null,"id":26780,"parameterSlots":0,"returnSlots":2},"@_msgSender_26771":{"entryPoint":null,"id":26771,"parameterSlots":0,"returnSlots":1},"@_revokeRole_20492":{"entryPoint":6691,"id":20492,"parameterSlots":2,"returnSlots":1},"@_setGrantDelay_20604":{"entryPoint":6268,"id":20604,"parameterSlots":2,"returnSlots":0},"@_setRoleAdmin_20526":{"entryPoint":5882,"id":20526,"parameterSlots":2,"returnSlots":0},"@_setRoleGuardian_20560":{"entryPoint":6091,"id":20560,"parameterSlots":2,"returnSlots":0},"@_setTargetAdminDelay_20716":{"entryPoint":6939,"id":20716,"parameterSlots":2,"returnSlots":0},"@_setTargetClosed_20753":{"entryPoint":4555,"id":20753,"parameterSlots":2,"returnSlots":0},"@_setTargetFunctionRole_20665":{"entryPoint":4396,"id":20665,"parameterSlots":3,"returnSlots":0},"@bubbleRevert_26962":{"entryPoint":7944,"id":26962,"parameterSlots":0,"returnSlots":0},"@callNoReturn_26845":{"entryPoint":7898,"id":26845,"parameterSlots":3,"returnSlots":1},"@canCall_20007":{"entryPoint":3285,"id":20007,"parameterSlots":3,"returnSlots":2},"@cancel_21132":{"entryPoint":3576,"id":21132,"parameterSlots":4,"returnSlots":1},"@consumeScheduledOp_21169":{"entryPoint":2773,"id":21169,"parameterSlots":3,"returnSlots":0},"@delegatecallNoReturn_26924":{"entryPoint":8197,"id":26924,"parameterSlots":2,"returnSlots":1},"@efficientKeccak256_33212":{"entryPoint":null,"id":33212,"parameterSlots":2,"returnSlots":1},"@execute_21030":{"entryPoint":2000,"id":21030,"parameterSlots":3,"returnSlots":1},"@expiration_20016":{"entryPoint":null,"id":20016,"parameterSlots":0,"returnSlots":1},"@functionCallWithValue_25828":{"entryPoint":5063,"id":25828,"parameterSlots":3,"returnSlots":1},"@functionDelegateCall_25956":{"entryPoint":6539,"id":25956,"parameterSlots":2,"returnSlots":1},"@getAccess_20165":{"entryPoint":2334,"id":20165,"parameterSlots":2,"returnSlots":4},"@getFull_37206":{"entryPoint":5849,"id":37206,"parameterSlots":1,"returnSlots":3},"@getNonce_20790":{"entryPoint":null,"id":20790,"parameterSlots":1,"returnSlots":1},"@getRoleAdmin_20087":{"entryPoint":null,"id":20087,"parameterSlots":1,"returnSlots":1},"@getRoleGrantDelay_20117":{"entryPoint":1822,"id":20117,"parameterSlots":1,"returnSlots":1},"@getRoleGuardian_20101":{"entryPoint":null,"id":20101,"parameterSlots":1,"returnSlots":1},"@getSchedule_20776":{"entryPoint":2452,"id":20776,"parameterSlots":1,"returnSlots":1},"@getTargetAdminDelay_20073":{"entryPoint":2501,"id":20073,"parameterSlots":1,"returnSlots":1},"@getTargetFunctionRole_20057":{"entryPoint":2564,"id":20057,"parameterSlots":2,"returnSlots":1},"@get_37224":{"entryPoint":4525,"id":37224,"parameterSlots":1,"returnSlots":1},"@grantRole_20260":{"entryPoint":2300,"id":20260,"parameterSlots":3,"returnSlots":0},"@hasRole_20209":{"entryPoint":3437,"id":20209,"parameterSlots":2,"returnSlots":2},"@hashOperation_21256":{"entryPoint":3000,"id":21256,"parameterSlots":4,"returnSlots":1},"@isTargetClosed_20039":{"entryPoint":2943,"id":20039,"parameterSlots":1,"returnSlots":1},"@labelRole_20238":{"entryPoint":2622,"id":20238,"parameterSlots":3,"returnSlots":0},"@max_33853":{"entryPoint":7126,"id":33853,"parameterSlots":2,"returnSlots":1},"@minSetback_20025":{"entryPoint":null,"id":20025,"parameterSlots":0,"returnSlots":1},"@multicall_27358":{"entryPoint":3056,"id":27358,"parameterSlots":2,"returnSlots":1},"@pack_37369":{"entryPoint":null,"id":37369,"parameterSlots":3,"returnSlots":1},"@renounceRole_20299":{"entryPoint":4236,"id":20299,"parameterSlots":2,"returnSlots":0},"@returnDataSize_26948":{"entryPoint":null,"id":26948,"parameterSlots":0,"returnSlots":1},"@returnData_26956":{"entryPoint":7919,"id":26956,"parameterSlots":0,"returnSlots":1},"@revokeRole_20276":{"entryPoint":3414,"id":20276,"parameterSlots":2,"returnSlots":0},"@schedule_20904":{"entryPoint":3915,"id":20904,"parameterSlots":4,"returnSlots":2},"@setGrantDelay_20347":{"entryPoint":2982,"id":20347,"parameterSlots":2,"returnSlots":0},"@setRoleAdmin_20315":{"entryPoint":2434,"id":20315,"parameterSlots":2,"returnSlots":0},"@setRoleGuardian_20331":{"entryPoint":2546,"id":20331,"parameterSlots":2,"returnSlots":0},"@setTargetAdminDelay_20681":{"entryPoint":3558,"id":20681,"parameterSlots":2,"returnSlots":0},"@setTargetClosed_20732":{"entryPoint":1880,"id":20732,"parameterSlots":2,"returnSlots":0},"@setTargetFunctionRole_20639":{"entryPoint":1740,"id":20639,"parameterSlots":4,"returnSlots":0},"@ternary_33834":{"entryPoint":null,"id":33834,"parameterSlots":3,"returnSlots":1},"@timestamp_37118":{"entryPoint":6924,"id":37118,"parameterSlots":0,"returnSlots":1},"@toDelay_37148":{"entryPoint":null,"id":37148,"parameterSlots":1,"returnSlots":1},"@toUint48_35942":{"entryPoint":8216,"id":35942,"parameterSlots":1,"returnSlots":1},"@toUint_36951":{"entryPoint":null,"id":36951,"parameterSlots":1,"returnSlots":1},"@unpack_37331":{"entryPoint":null,"id":37331,"parameterSlots":1,"returnSlots":3},"@updateAuthority_21274":{"entryPoint":1902,"id":21274,"parameterSlots":2,"returnSlots":0},"@withUpdate_37280":{"entryPoint":7955,"id":37280,"parameterSlots":3,"returnSlots":2},"abi_decode_array_bytes4_dyn_calldata":{"entryPoint":8293,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_bytes_calldata":{"entryPoint":8610,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_address":{"entryPoint":8934,"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":8566,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_bytes4":{"entryPoint":9383,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_bytes_calldata_ptr":{"entryPoint":9093,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_array$_t_bytes4_$dyn_calldata_ptrt_uint64":{"entryPoint":8384,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_bool":{"entryPoint":8507,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes4":{"entryPoint":8982,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes_calldata_ptr":{"entryPoint":8671,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_bytes_calldata_ptrt_uint48":{"entryPoint":9483,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_uint32":{"entryPoint":9455,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":9189,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32":{"entryPoint":8911,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":9612,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4_fromMemory":{"entryPoint":9706,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint64":{"entryPoint":8482,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint64t_address":{"entryPoint":8836,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint64t_addresst_uint32":{"entryPoint":8770,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint64t_string_calldata_ptr":{"entryPoint":9026,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint64t_uint32":{"entryPoint":9053,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint64t_uint64":{"entryPoint":8862,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_uint32":{"entryPoint":8751,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint64":{"entryPoint":8357,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string_calldata":{"entryPoint":9639,"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":9932,"id":null,"parameterSlots":4,"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":9733,"id":null,"parameterSlots":5,"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":9251,"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":9679,"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":9997,"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":9866,"id":null,"parameterSlots":2,"returnSlots":2},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":9807,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_uint48":{"entryPoint":9967,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint32":{"entryPoint":10120,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4":{"entryPoint":10066,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":9787,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":9592,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":9846,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":8270,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_bytes4":{"entryPoint":8961,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:19453:125","nodeType":"YulBlock","src":"0:19453:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"59:86:125","nodeType":"YulBlock","src":"59:86:125","statements":[{"body":{"nativeSrc":"123:16:125","nodeType":"YulBlock","src":"123:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:125","nodeType":"YulLiteral","src":"132:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:125","nodeType":"YulLiteral","src":"135:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:125","nodeType":"YulIdentifier","src":"125:6:125"},"nativeSrc":"125:12:125","nodeType":"YulFunctionCall","src":"125:12:125"},"nativeSrc":"125:12:125","nodeType":"YulExpressionStatement","src":"125:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:125","nodeType":"YulIdentifier","src":"82:5:125"},{"arguments":[{"name":"value","nativeSrc":"93:5:125","nodeType":"YulIdentifier","src":"93:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:125","nodeType":"YulLiteral","src":"108:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:125","nodeType":"YulLiteral","src":"113:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:125","nodeType":"YulIdentifier","src":"104:3:125"},"nativeSrc":"104:11:125","nodeType":"YulFunctionCall","src":"104:11:125"},{"kind":"number","nativeSrc":"117:1:125","nodeType":"YulLiteral","src":"117:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:125","nodeType":"YulIdentifier","src":"100:3:125"},"nativeSrc":"100:19:125","nodeType":"YulFunctionCall","src":"100:19:125"}],"functionName":{"name":"and","nativeSrc":"89:3:125","nodeType":"YulIdentifier","src":"89:3:125"},"nativeSrc":"89:31:125","nodeType":"YulFunctionCall","src":"89:31:125"}],"functionName":{"name":"eq","nativeSrc":"79:2:125","nodeType":"YulIdentifier","src":"79:2:125"},"nativeSrc":"79:42:125","nodeType":"YulFunctionCall","src":"79:42:125"}],"functionName":{"name":"iszero","nativeSrc":"72:6:125","nodeType":"YulIdentifier","src":"72:6:125"},"nativeSrc":"72:50:125","nodeType":"YulFunctionCall","src":"72:50:125"},"nativeSrc":"69:70:125","nodeType":"YulIf","src":"69:70:125"}]},"name":"validator_revert_address","nativeSrc":"14:131:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:125","nodeType":"YulTypedName","src":"48:5:125","type":""}],"src":"14:131:125"},{"body":{"nativeSrc":"233:283:125","nodeType":"YulBlock","src":"233:283:125","statements":[{"body":{"nativeSrc":"282:16:125","nodeType":"YulBlock","src":"282:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"291:1:125","nodeType":"YulLiteral","src":"291:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"294:1:125","nodeType":"YulLiteral","src":"294:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"284:6:125","nodeType":"YulIdentifier","src":"284:6:125"},"nativeSrc":"284:12:125","nodeType":"YulFunctionCall","src":"284:12:125"},"nativeSrc":"284:12:125","nodeType":"YulExpressionStatement","src":"284:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"261:6:125","nodeType":"YulIdentifier","src":"261:6:125"},{"kind":"number","nativeSrc":"269:4:125","nodeType":"YulLiteral","src":"269:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"257:3:125","nodeType":"YulIdentifier","src":"257:3:125"},"nativeSrc":"257:17:125","nodeType":"YulFunctionCall","src":"257:17:125"},{"name":"end","nativeSrc":"276:3:125","nodeType":"YulIdentifier","src":"276:3:125"}],"functionName":{"name":"slt","nativeSrc":"253:3:125","nodeType":"YulIdentifier","src":"253:3:125"},"nativeSrc":"253:27:125","nodeType":"YulFunctionCall","src":"253:27:125"}],"functionName":{"name":"iszero","nativeSrc":"246:6:125","nodeType":"YulIdentifier","src":"246:6:125"},"nativeSrc":"246:35:125","nodeType":"YulFunctionCall","src":"246:35:125"},"nativeSrc":"243:55:125","nodeType":"YulIf","src":"243:55:125"},{"nativeSrc":"307:30:125","nodeType":"YulAssignment","src":"307:30:125","value":{"arguments":[{"name":"offset","nativeSrc":"330:6:125","nodeType":"YulIdentifier","src":"330:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"317:12:125","nodeType":"YulIdentifier","src":"317:12:125"},"nativeSrc":"317:20:125","nodeType":"YulFunctionCall","src":"317:20:125"},"variableNames":[{"name":"length","nativeSrc":"307:6:125","nodeType":"YulIdentifier","src":"307:6:125"}]},{"body":{"nativeSrc":"380:16:125","nodeType":"YulBlock","src":"380:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"389:1:125","nodeType":"YulLiteral","src":"389:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"392:1:125","nodeType":"YulLiteral","src":"392:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"382:6:125","nodeType":"YulIdentifier","src":"382:6:125"},"nativeSrc":"382:12:125","nodeType":"YulFunctionCall","src":"382:12:125"},"nativeSrc":"382:12:125","nodeType":"YulExpressionStatement","src":"382:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"352:6:125","nodeType":"YulIdentifier","src":"352:6:125"},{"kind":"number","nativeSrc":"360:18:125","nodeType":"YulLiteral","src":"360:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"349:2:125","nodeType":"YulIdentifier","src":"349:2:125"},"nativeSrc":"349:30:125","nodeType":"YulFunctionCall","src":"349:30:125"},"nativeSrc":"346:50:125","nodeType":"YulIf","src":"346:50:125"},{"nativeSrc":"405:29:125","nodeType":"YulAssignment","src":"405:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"421:6:125","nodeType":"YulIdentifier","src":"421:6:125"},{"kind":"number","nativeSrc":"429:4:125","nodeType":"YulLiteral","src":"429:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"417:3:125","nodeType":"YulIdentifier","src":"417:3:125"},"nativeSrc":"417:17:125","nodeType":"YulFunctionCall","src":"417:17:125"},"variableNames":[{"name":"arrayPos","nativeSrc":"405:8:125","nodeType":"YulIdentifier","src":"405:8:125"}]},{"body":{"nativeSrc":"494:16:125","nodeType":"YulBlock","src":"494:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"503:1:125","nodeType":"YulLiteral","src":"503:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"506:1:125","nodeType":"YulLiteral","src":"506:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"496:6:125","nodeType":"YulIdentifier","src":"496:6:125"},"nativeSrc":"496:12:125","nodeType":"YulFunctionCall","src":"496:12:125"},"nativeSrc":"496:12:125","nodeType":"YulExpressionStatement","src":"496:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"457:6:125","nodeType":"YulIdentifier","src":"457:6:125"},{"arguments":[{"kind":"number","nativeSrc":"469:1:125","nodeType":"YulLiteral","src":"469:1:125","type":"","value":"5"},{"name":"length","nativeSrc":"472:6:125","nodeType":"YulIdentifier","src":"472:6:125"}],"functionName":{"name":"shl","nativeSrc":"465:3:125","nodeType":"YulIdentifier","src":"465:3:125"},"nativeSrc":"465:14:125","nodeType":"YulFunctionCall","src":"465:14:125"}],"functionName":{"name":"add","nativeSrc":"453:3:125","nodeType":"YulIdentifier","src":"453:3:125"},"nativeSrc":"453:27:125","nodeType":"YulFunctionCall","src":"453:27:125"},{"kind":"number","nativeSrc":"482:4:125","nodeType":"YulLiteral","src":"482:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"449:3:125","nodeType":"YulIdentifier","src":"449:3:125"},"nativeSrc":"449:38:125","nodeType":"YulFunctionCall","src":"449:38:125"},{"name":"end","nativeSrc":"489:3:125","nodeType":"YulIdentifier","src":"489:3:125"}],"functionName":{"name":"gt","nativeSrc":"446:2:125","nodeType":"YulIdentifier","src":"446:2:125"},"nativeSrc":"446:47:125","nodeType":"YulFunctionCall","src":"446:47:125"},"nativeSrc":"443:67:125","nodeType":"YulIf","src":"443:67:125"}]},"name":"abi_decode_array_bytes4_dyn_calldata","nativeSrc":"150:366:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"196:6:125","nodeType":"YulTypedName","src":"196:6:125","type":""},{"name":"end","nativeSrc":"204:3:125","nodeType":"YulTypedName","src":"204:3:125","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"212:8:125","nodeType":"YulTypedName","src":"212:8:125","type":""},{"name":"length","nativeSrc":"222:6:125","nodeType":"YulTypedName","src":"222:6:125","type":""}],"src":"150:366:125"},{"body":{"nativeSrc":"569:123:125","nodeType":"YulBlock","src":"569:123:125","statements":[{"nativeSrc":"579:29:125","nodeType":"YulAssignment","src":"579:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"601:6:125","nodeType":"YulIdentifier","src":"601:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"588:12:125","nodeType":"YulIdentifier","src":"588:12:125"},"nativeSrc":"588:20:125","nodeType":"YulFunctionCall","src":"588:20:125"},"variableNames":[{"name":"value","nativeSrc":"579:5:125","nodeType":"YulIdentifier","src":"579:5:125"}]},{"body":{"nativeSrc":"670:16:125","nodeType":"YulBlock","src":"670:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"679:1:125","nodeType":"YulLiteral","src":"679:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"682:1:125","nodeType":"YulLiteral","src":"682:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"672:6:125","nodeType":"YulIdentifier","src":"672:6:125"},"nativeSrc":"672:12:125","nodeType":"YulFunctionCall","src":"672:12:125"},"nativeSrc":"672:12:125","nodeType":"YulExpressionStatement","src":"672:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"630:5:125","nodeType":"YulIdentifier","src":"630:5:125"},{"arguments":[{"name":"value","nativeSrc":"641:5:125","nodeType":"YulIdentifier","src":"641:5:125"},{"kind":"number","nativeSrc":"648:18:125","nodeType":"YulLiteral","src":"648:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"637:3:125","nodeType":"YulIdentifier","src":"637:3:125"},"nativeSrc":"637:30:125","nodeType":"YulFunctionCall","src":"637:30:125"}],"functionName":{"name":"eq","nativeSrc":"627:2:125","nodeType":"YulIdentifier","src":"627:2:125"},"nativeSrc":"627:41:125","nodeType":"YulFunctionCall","src":"627:41:125"}],"functionName":{"name":"iszero","nativeSrc":"620:6:125","nodeType":"YulIdentifier","src":"620:6:125"},"nativeSrc":"620:49:125","nodeType":"YulFunctionCall","src":"620:49:125"},"nativeSrc":"617:69:125","nodeType":"YulIf","src":"617:69:125"}]},"name":"abi_decode_uint64","nativeSrc":"521:171:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"548:6:125","nodeType":"YulTypedName","src":"548:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"559:5:125","nodeType":"YulTypedName","src":"559:5:125","type":""}],"src":"521:171:125"},{"body":{"nativeSrc":"834:505:125","nodeType":"YulBlock","src":"834:505:125","statements":[{"body":{"nativeSrc":"880:16:125","nodeType":"YulBlock","src":"880:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"889:1:125","nodeType":"YulLiteral","src":"889:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"892:1:125","nodeType":"YulLiteral","src":"892:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"882:6:125","nodeType":"YulIdentifier","src":"882:6:125"},"nativeSrc":"882:12:125","nodeType":"YulFunctionCall","src":"882:12:125"},"nativeSrc":"882:12:125","nodeType":"YulExpressionStatement","src":"882:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"855:7:125","nodeType":"YulIdentifier","src":"855:7:125"},{"name":"headStart","nativeSrc":"864:9:125","nodeType":"YulIdentifier","src":"864:9:125"}],"functionName":{"name":"sub","nativeSrc":"851:3:125","nodeType":"YulIdentifier","src":"851:3:125"},"nativeSrc":"851:23:125","nodeType":"YulFunctionCall","src":"851:23:125"},{"kind":"number","nativeSrc":"876:2:125","nodeType":"YulLiteral","src":"876:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"847:3:125","nodeType":"YulIdentifier","src":"847:3:125"},"nativeSrc":"847:32:125","nodeType":"YulFunctionCall","src":"847:32:125"},"nativeSrc":"844:52:125","nodeType":"YulIf","src":"844:52:125"},{"nativeSrc":"905:36:125","nodeType":"YulVariableDeclaration","src":"905:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"931:9:125","nodeType":"YulIdentifier","src":"931:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"918:12:125","nodeType":"YulIdentifier","src":"918:12:125"},"nativeSrc":"918:23:125","nodeType":"YulFunctionCall","src":"918:23:125"},"variables":[{"name":"value","nativeSrc":"909:5:125","nodeType":"YulTypedName","src":"909:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"975:5:125","nodeType":"YulIdentifier","src":"975:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"950:24:125","nodeType":"YulIdentifier","src":"950:24:125"},"nativeSrc":"950:31:125","nodeType":"YulFunctionCall","src":"950:31:125"},"nativeSrc":"950:31:125","nodeType":"YulExpressionStatement","src":"950:31:125"},{"nativeSrc":"990:15:125","nodeType":"YulAssignment","src":"990:15:125","value":{"name":"value","nativeSrc":"1000:5:125","nodeType":"YulIdentifier","src":"1000:5:125"},"variableNames":[{"name":"value0","nativeSrc":"990:6:125","nodeType":"YulIdentifier","src":"990:6:125"}]},{"nativeSrc":"1014:46:125","nodeType":"YulVariableDeclaration","src":"1014:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1045:9:125","nodeType":"YulIdentifier","src":"1045:9:125"},{"kind":"number","nativeSrc":"1056:2:125","nodeType":"YulLiteral","src":"1056:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1041:3:125","nodeType":"YulIdentifier","src":"1041:3:125"},"nativeSrc":"1041:18:125","nodeType":"YulFunctionCall","src":"1041:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"1028:12:125","nodeType":"YulIdentifier","src":"1028:12:125"},"nativeSrc":"1028:32:125","nodeType":"YulFunctionCall","src":"1028:32:125"},"variables":[{"name":"offset","nativeSrc":"1018:6:125","nodeType":"YulTypedName","src":"1018:6:125","type":""}]},{"body":{"nativeSrc":"1103:16:125","nodeType":"YulBlock","src":"1103:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1112:1:125","nodeType":"YulLiteral","src":"1112:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1115:1:125","nodeType":"YulLiteral","src":"1115:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1105:6:125","nodeType":"YulIdentifier","src":"1105:6:125"},"nativeSrc":"1105:12:125","nodeType":"YulFunctionCall","src":"1105:12:125"},"nativeSrc":"1105:12:125","nodeType":"YulExpressionStatement","src":"1105:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1075:6:125","nodeType":"YulIdentifier","src":"1075:6:125"},{"kind":"number","nativeSrc":"1083:18:125","nodeType":"YulLiteral","src":"1083:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1072:2:125","nodeType":"YulIdentifier","src":"1072:2:125"},"nativeSrc":"1072:30:125","nodeType":"YulFunctionCall","src":"1072:30:125"},"nativeSrc":"1069:50:125","nodeType":"YulIf","src":"1069:50:125"},{"nativeSrc":"1128:95:125","nodeType":"YulVariableDeclaration","src":"1128:95:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1195:9:125","nodeType":"YulIdentifier","src":"1195:9:125"},{"name":"offset","nativeSrc":"1206:6:125","nodeType":"YulIdentifier","src":"1206:6:125"}],"functionName":{"name":"add","nativeSrc":"1191:3:125","nodeType":"YulIdentifier","src":"1191:3:125"},"nativeSrc":"1191:22:125","nodeType":"YulFunctionCall","src":"1191:22:125"},{"name":"dataEnd","nativeSrc":"1215:7:125","nodeType":"YulIdentifier","src":"1215:7:125"}],"functionName":{"name":"abi_decode_array_bytes4_dyn_calldata","nativeSrc":"1154:36:125","nodeType":"YulIdentifier","src":"1154:36:125"},"nativeSrc":"1154:69:125","nodeType":"YulFunctionCall","src":"1154:69:125"},"variables":[{"name":"value1_1","nativeSrc":"1132:8:125","nodeType":"YulTypedName","src":"1132:8:125","type":""},{"name":"value2_1","nativeSrc":"1142:8:125","nodeType":"YulTypedName","src":"1142:8:125","type":""}]},{"nativeSrc":"1232:18:125","nodeType":"YulAssignment","src":"1232:18:125","value":{"name":"value1_1","nativeSrc":"1242:8:125","nodeType":"YulIdentifier","src":"1242:8:125"},"variableNames":[{"name":"value1","nativeSrc":"1232:6:125","nodeType":"YulIdentifier","src":"1232:6:125"}]},{"nativeSrc":"1259:18:125","nodeType":"YulAssignment","src":"1259:18:125","value":{"name":"value2_1","nativeSrc":"1269:8:125","nodeType":"YulIdentifier","src":"1269:8:125"},"variableNames":[{"name":"value2","nativeSrc":"1259:6:125","nodeType":"YulIdentifier","src":"1259:6:125"}]},{"nativeSrc":"1286:47:125","nodeType":"YulAssignment","src":"1286:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1318:9:125","nodeType":"YulIdentifier","src":"1318:9:125"},{"kind":"number","nativeSrc":"1329:2:125","nodeType":"YulLiteral","src":"1329:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1314:3:125","nodeType":"YulIdentifier","src":"1314:3:125"},"nativeSrc":"1314:18:125","nodeType":"YulFunctionCall","src":"1314:18:125"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"1296:17:125","nodeType":"YulIdentifier","src":"1296:17:125"},"nativeSrc":"1296:37:125","nodeType":"YulFunctionCall","src":"1296:37:125"},"variableNames":[{"name":"value3","nativeSrc":"1286:6:125","nodeType":"YulIdentifier","src":"1286:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_array$_t_bytes4_$dyn_calldata_ptrt_uint64","nativeSrc":"697:642:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"776:9:125","nodeType":"YulTypedName","src":"776:9:125","type":""},{"name":"dataEnd","nativeSrc":"787:7:125","nodeType":"YulTypedName","src":"787:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"799:6:125","nodeType":"YulTypedName","src":"799:6:125","type":""},{"name":"value1","nativeSrc":"807:6:125","nodeType":"YulTypedName","src":"807:6:125","type":""},{"name":"value2","nativeSrc":"815:6:125","nodeType":"YulTypedName","src":"815:6:125","type":""},{"name":"value3","nativeSrc":"823:6:125","nodeType":"YulTypedName","src":"823:6:125","type":""}],"src":"697:642:125"},{"body":{"nativeSrc":"1413:115:125","nodeType":"YulBlock","src":"1413:115:125","statements":[{"body":{"nativeSrc":"1459:16:125","nodeType":"YulBlock","src":"1459:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1468:1:125","nodeType":"YulLiteral","src":"1468:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1471:1:125","nodeType":"YulLiteral","src":"1471:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1461:6:125","nodeType":"YulIdentifier","src":"1461:6:125"},"nativeSrc":"1461:12:125","nodeType":"YulFunctionCall","src":"1461:12:125"},"nativeSrc":"1461:12:125","nodeType":"YulExpressionStatement","src":"1461:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1434:7:125","nodeType":"YulIdentifier","src":"1434:7:125"},{"name":"headStart","nativeSrc":"1443:9:125","nodeType":"YulIdentifier","src":"1443:9:125"}],"functionName":{"name":"sub","nativeSrc":"1430:3:125","nodeType":"YulIdentifier","src":"1430:3:125"},"nativeSrc":"1430:23:125","nodeType":"YulFunctionCall","src":"1430:23:125"},{"kind":"number","nativeSrc":"1455:2:125","nodeType":"YulLiteral","src":"1455:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1426:3:125","nodeType":"YulIdentifier","src":"1426:3:125"},"nativeSrc":"1426:32:125","nodeType":"YulFunctionCall","src":"1426:32:125"},"nativeSrc":"1423:52:125","nodeType":"YulIf","src":"1423:52:125"},{"nativeSrc":"1484:38:125","nodeType":"YulAssignment","src":"1484:38:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1512:9:125","nodeType":"YulIdentifier","src":"1512:9:125"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"1494:17:125","nodeType":"YulIdentifier","src":"1494:17:125"},"nativeSrc":"1494:28:125","nodeType":"YulFunctionCall","src":"1494:28:125"},"variableNames":[{"name":"value0","nativeSrc":"1484:6:125","nodeType":"YulIdentifier","src":"1484:6:125"}]}]},"name":"abi_decode_tuple_t_uint64","nativeSrc":"1344:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1379:9:125","nodeType":"YulTypedName","src":"1379:9:125","type":""},{"name":"dataEnd","nativeSrc":"1390:7:125","nodeType":"YulTypedName","src":"1390:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1402:6:125","nodeType":"YulTypedName","src":"1402:6:125","type":""}],"src":"1344:184:125"},{"body":{"nativeSrc":"1632:101:125","nodeType":"YulBlock","src":"1632:101:125","statements":[{"nativeSrc":"1642:26:125","nodeType":"YulAssignment","src":"1642:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1654:9:125","nodeType":"YulIdentifier","src":"1654:9:125"},{"kind":"number","nativeSrc":"1665:2:125","nodeType":"YulLiteral","src":"1665:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1650:3:125","nodeType":"YulIdentifier","src":"1650:3:125"},"nativeSrc":"1650:18:125","nodeType":"YulFunctionCall","src":"1650:18:125"},"variableNames":[{"name":"tail","nativeSrc":"1642:4:125","nodeType":"YulIdentifier","src":"1642:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1684:9:125","nodeType":"YulIdentifier","src":"1684:9:125"},{"arguments":[{"name":"value0","nativeSrc":"1699:6:125","nodeType":"YulIdentifier","src":"1699:6:125"},{"kind":"number","nativeSrc":"1707:18:125","nodeType":"YulLiteral","src":"1707:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"1695:3:125","nodeType":"YulIdentifier","src":"1695:3:125"},"nativeSrc":"1695:31:125","nodeType":"YulFunctionCall","src":"1695:31:125"}],"functionName":{"name":"mstore","nativeSrc":"1677:6:125","nodeType":"YulIdentifier","src":"1677:6:125"},"nativeSrc":"1677:50:125","nodeType":"YulFunctionCall","src":"1677:50:125"},"nativeSrc":"1677:50:125","nodeType":"YulExpressionStatement","src":"1677:50:125"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"1533:200:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1601:9:125","nodeType":"YulTypedName","src":"1601:9:125","type":""},{"name":"value0","nativeSrc":"1612:6:125","nodeType":"YulTypedName","src":"1612:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1623:4:125","nodeType":"YulTypedName","src":"1623:4:125","type":""}],"src":"1533:200:125"},{"body":{"nativeSrc":"1837:93:125","nodeType":"YulBlock","src":"1837:93:125","statements":[{"nativeSrc":"1847:26:125","nodeType":"YulAssignment","src":"1847:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1859:9:125","nodeType":"YulIdentifier","src":"1859:9:125"},{"kind":"number","nativeSrc":"1870:2:125","nodeType":"YulLiteral","src":"1870:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1855:3:125","nodeType":"YulIdentifier","src":"1855:3:125"},"nativeSrc":"1855:18:125","nodeType":"YulFunctionCall","src":"1855:18:125"},"variableNames":[{"name":"tail","nativeSrc":"1847:4:125","nodeType":"YulIdentifier","src":"1847:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1889:9:125","nodeType":"YulIdentifier","src":"1889:9:125"},{"arguments":[{"name":"value0","nativeSrc":"1904:6:125","nodeType":"YulIdentifier","src":"1904:6:125"},{"kind":"number","nativeSrc":"1912:10:125","nodeType":"YulLiteral","src":"1912:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"1900:3:125","nodeType":"YulIdentifier","src":"1900:3:125"},"nativeSrc":"1900:23:125","nodeType":"YulFunctionCall","src":"1900:23:125"}],"functionName":{"name":"mstore","nativeSrc":"1882:6:125","nodeType":"YulIdentifier","src":"1882:6:125"},"nativeSrc":"1882:42:125","nodeType":"YulFunctionCall","src":"1882:42:125"},"nativeSrc":"1882:42:125","nodeType":"YulExpressionStatement","src":"1882:42:125"}]},"name":"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed","nativeSrc":"1738:192:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1806:9:125","nodeType":"YulTypedName","src":"1806:9:125","type":""},{"name":"value0","nativeSrc":"1817:6:125","nodeType":"YulTypedName","src":"1817:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1828:4:125","nodeType":"YulTypedName","src":"1828:4:125","type":""}],"src":"1738:192:125"},{"body":{"nativeSrc":"2019:332:125","nodeType":"YulBlock","src":"2019:332:125","statements":[{"body":{"nativeSrc":"2065:16:125","nodeType":"YulBlock","src":"2065:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2074:1:125","nodeType":"YulLiteral","src":"2074:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2077:1:125","nodeType":"YulLiteral","src":"2077:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2067:6:125","nodeType":"YulIdentifier","src":"2067:6:125"},"nativeSrc":"2067:12:125","nodeType":"YulFunctionCall","src":"2067:12:125"},"nativeSrc":"2067:12:125","nodeType":"YulExpressionStatement","src":"2067:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2040:7:125","nodeType":"YulIdentifier","src":"2040:7:125"},{"name":"headStart","nativeSrc":"2049:9:125","nodeType":"YulIdentifier","src":"2049:9:125"}],"functionName":{"name":"sub","nativeSrc":"2036:3:125","nodeType":"YulIdentifier","src":"2036:3:125"},"nativeSrc":"2036:23:125","nodeType":"YulFunctionCall","src":"2036:23:125"},{"kind":"number","nativeSrc":"2061:2:125","nodeType":"YulLiteral","src":"2061:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2032:3:125","nodeType":"YulIdentifier","src":"2032:3:125"},"nativeSrc":"2032:32:125","nodeType":"YulFunctionCall","src":"2032:32:125"},"nativeSrc":"2029:52:125","nodeType":"YulIf","src":"2029:52:125"},{"nativeSrc":"2090:36:125","nodeType":"YulVariableDeclaration","src":"2090:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2116:9:125","nodeType":"YulIdentifier","src":"2116:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"2103:12:125","nodeType":"YulIdentifier","src":"2103:12:125"},"nativeSrc":"2103:23:125","nodeType":"YulFunctionCall","src":"2103:23:125"},"variables":[{"name":"value","nativeSrc":"2094:5:125","nodeType":"YulTypedName","src":"2094:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2160:5:125","nodeType":"YulIdentifier","src":"2160:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2135:24:125","nodeType":"YulIdentifier","src":"2135:24:125"},"nativeSrc":"2135:31:125","nodeType":"YulFunctionCall","src":"2135:31:125"},"nativeSrc":"2135:31:125","nodeType":"YulExpressionStatement","src":"2135:31:125"},{"nativeSrc":"2175:15:125","nodeType":"YulAssignment","src":"2175:15:125","value":{"name":"value","nativeSrc":"2185:5:125","nodeType":"YulIdentifier","src":"2185:5:125"},"variableNames":[{"name":"value0","nativeSrc":"2175:6:125","nodeType":"YulIdentifier","src":"2175:6:125"}]},{"nativeSrc":"2199:47:125","nodeType":"YulVariableDeclaration","src":"2199:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2231:9:125","nodeType":"YulIdentifier","src":"2231:9:125"},{"kind":"number","nativeSrc":"2242:2:125","nodeType":"YulLiteral","src":"2242:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2227:3:125","nodeType":"YulIdentifier","src":"2227:3:125"},"nativeSrc":"2227:18:125","nodeType":"YulFunctionCall","src":"2227:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"2214:12:125","nodeType":"YulIdentifier","src":"2214:12:125"},"nativeSrc":"2214:32:125","nodeType":"YulFunctionCall","src":"2214:32:125"},"variables":[{"name":"value_1","nativeSrc":"2203:7:125","nodeType":"YulTypedName","src":"2203:7:125","type":""}]},{"body":{"nativeSrc":"2303:16:125","nodeType":"YulBlock","src":"2303:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2312:1:125","nodeType":"YulLiteral","src":"2312:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2315:1:125","nodeType":"YulLiteral","src":"2315:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2305:6:125","nodeType":"YulIdentifier","src":"2305:6:125"},"nativeSrc":"2305:12:125","nodeType":"YulFunctionCall","src":"2305:12:125"},"nativeSrc":"2305:12:125","nodeType":"YulExpressionStatement","src":"2305:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2268:7:125","nodeType":"YulIdentifier","src":"2268:7:125"},{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"2291:7:125","nodeType":"YulIdentifier","src":"2291:7:125"}],"functionName":{"name":"iszero","nativeSrc":"2284:6:125","nodeType":"YulIdentifier","src":"2284:6:125"},"nativeSrc":"2284:15:125","nodeType":"YulFunctionCall","src":"2284:15:125"}],"functionName":{"name":"iszero","nativeSrc":"2277:6:125","nodeType":"YulIdentifier","src":"2277:6:125"},"nativeSrc":"2277:23:125","nodeType":"YulFunctionCall","src":"2277:23:125"}],"functionName":{"name":"eq","nativeSrc":"2265:2:125","nodeType":"YulIdentifier","src":"2265:2:125"},"nativeSrc":"2265:36:125","nodeType":"YulFunctionCall","src":"2265:36:125"}],"functionName":{"name":"iszero","nativeSrc":"2258:6:125","nodeType":"YulIdentifier","src":"2258:6:125"},"nativeSrc":"2258:44:125","nodeType":"YulFunctionCall","src":"2258:44:125"},"nativeSrc":"2255:64:125","nodeType":"YulIf","src":"2255:64:125"},{"nativeSrc":"2328:17:125","nodeType":"YulAssignment","src":"2328:17:125","value":{"name":"value_1","nativeSrc":"2338:7:125","nodeType":"YulIdentifier","src":"2338:7:125"},"variableNames":[{"name":"value1","nativeSrc":"2328:6:125","nodeType":"YulIdentifier","src":"2328:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bool","nativeSrc":"1935:416:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1977:9:125","nodeType":"YulTypedName","src":"1977:9:125","type":""},{"name":"dataEnd","nativeSrc":"1988:7:125","nodeType":"YulTypedName","src":"1988:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2000:6:125","nodeType":"YulTypedName","src":"2000:6:125","type":""},{"name":"value1","nativeSrc":"2008:6:125","nodeType":"YulTypedName","src":"2008:6:125","type":""}],"src":"1935:416:125"},{"body":{"nativeSrc":"2443:301:125","nodeType":"YulBlock","src":"2443:301:125","statements":[{"body":{"nativeSrc":"2489:16:125","nodeType":"YulBlock","src":"2489:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2498:1:125","nodeType":"YulLiteral","src":"2498:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2501:1:125","nodeType":"YulLiteral","src":"2501:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2491:6:125","nodeType":"YulIdentifier","src":"2491:6:125"},"nativeSrc":"2491:12:125","nodeType":"YulFunctionCall","src":"2491:12:125"},"nativeSrc":"2491:12:125","nodeType":"YulExpressionStatement","src":"2491:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2464:7:125","nodeType":"YulIdentifier","src":"2464:7:125"},{"name":"headStart","nativeSrc":"2473:9:125","nodeType":"YulIdentifier","src":"2473:9:125"}],"functionName":{"name":"sub","nativeSrc":"2460:3:125","nodeType":"YulIdentifier","src":"2460:3:125"},"nativeSrc":"2460:23:125","nodeType":"YulFunctionCall","src":"2460:23:125"},{"kind":"number","nativeSrc":"2485:2:125","nodeType":"YulLiteral","src":"2485:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2456:3:125","nodeType":"YulIdentifier","src":"2456:3:125"},"nativeSrc":"2456:32:125","nodeType":"YulFunctionCall","src":"2456:32:125"},"nativeSrc":"2453:52:125","nodeType":"YulIf","src":"2453:52:125"},{"nativeSrc":"2514:36:125","nodeType":"YulVariableDeclaration","src":"2514:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2540:9:125","nodeType":"YulIdentifier","src":"2540:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"2527:12:125","nodeType":"YulIdentifier","src":"2527:12:125"},"nativeSrc":"2527:23:125","nodeType":"YulFunctionCall","src":"2527:23:125"},"variables":[{"name":"value","nativeSrc":"2518:5:125","nodeType":"YulTypedName","src":"2518:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2584:5:125","nodeType":"YulIdentifier","src":"2584:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2559:24:125","nodeType":"YulIdentifier","src":"2559:24:125"},"nativeSrc":"2559:31:125","nodeType":"YulFunctionCall","src":"2559:31:125"},"nativeSrc":"2559:31:125","nodeType":"YulExpressionStatement","src":"2559:31:125"},{"nativeSrc":"2599:15:125","nodeType":"YulAssignment","src":"2599:15:125","value":{"name":"value","nativeSrc":"2609:5:125","nodeType":"YulIdentifier","src":"2609:5:125"},"variableNames":[{"name":"value0","nativeSrc":"2599:6:125","nodeType":"YulIdentifier","src":"2599:6:125"}]},{"nativeSrc":"2623:47:125","nodeType":"YulVariableDeclaration","src":"2623:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2655:9:125","nodeType":"YulIdentifier","src":"2655:9:125"},{"kind":"number","nativeSrc":"2666:2:125","nodeType":"YulLiteral","src":"2666:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2651:3:125","nodeType":"YulIdentifier","src":"2651:3:125"},"nativeSrc":"2651:18:125","nodeType":"YulFunctionCall","src":"2651:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"2638:12:125","nodeType":"YulIdentifier","src":"2638:12:125"},"nativeSrc":"2638:32:125","nodeType":"YulFunctionCall","src":"2638:32:125"},"variables":[{"name":"value_1","nativeSrc":"2627:7:125","nodeType":"YulTypedName","src":"2627:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"2704:7:125","nodeType":"YulIdentifier","src":"2704:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2679:24:125","nodeType":"YulIdentifier","src":"2679:24:125"},"nativeSrc":"2679:33:125","nodeType":"YulFunctionCall","src":"2679:33:125"},"nativeSrc":"2679:33:125","nodeType":"YulExpressionStatement","src":"2679:33:125"},{"nativeSrc":"2721:17:125","nodeType":"YulAssignment","src":"2721:17:125","value":{"name":"value_1","nativeSrc":"2731:7:125","nodeType":"YulIdentifier","src":"2731:7:125"},"variableNames":[{"name":"value1","nativeSrc":"2721:6:125","nodeType":"YulIdentifier","src":"2721:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"2356:388:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2401:9:125","nodeType":"YulTypedName","src":"2401:9:125","type":""},{"name":"dataEnd","nativeSrc":"2412:7:125","nodeType":"YulTypedName","src":"2412:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2424:6:125","nodeType":"YulTypedName","src":"2424:6:125","type":""},{"name":"value1","nativeSrc":"2432:6:125","nodeType":"YulTypedName","src":"2432:6:125","type":""}],"src":"2356:388:125"},{"body":{"nativeSrc":"2821:275:125","nodeType":"YulBlock","src":"2821:275:125","statements":[{"body":{"nativeSrc":"2870:16:125","nodeType":"YulBlock","src":"2870:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2879:1:125","nodeType":"YulLiteral","src":"2879:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2882:1:125","nodeType":"YulLiteral","src":"2882:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2872:6:125","nodeType":"YulIdentifier","src":"2872:6:125"},"nativeSrc":"2872:12:125","nodeType":"YulFunctionCall","src":"2872:12:125"},"nativeSrc":"2872:12:125","nodeType":"YulExpressionStatement","src":"2872:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2849:6:125","nodeType":"YulIdentifier","src":"2849:6:125"},{"kind":"number","nativeSrc":"2857:4:125","nodeType":"YulLiteral","src":"2857:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2845:3:125","nodeType":"YulIdentifier","src":"2845:3:125"},"nativeSrc":"2845:17:125","nodeType":"YulFunctionCall","src":"2845:17:125"},{"name":"end","nativeSrc":"2864:3:125","nodeType":"YulIdentifier","src":"2864:3:125"}],"functionName":{"name":"slt","nativeSrc":"2841:3:125","nodeType":"YulIdentifier","src":"2841:3:125"},"nativeSrc":"2841:27:125","nodeType":"YulFunctionCall","src":"2841:27:125"}],"functionName":{"name":"iszero","nativeSrc":"2834:6:125","nodeType":"YulIdentifier","src":"2834:6:125"},"nativeSrc":"2834:35:125","nodeType":"YulFunctionCall","src":"2834:35:125"},"nativeSrc":"2831:55:125","nodeType":"YulIf","src":"2831:55:125"},{"nativeSrc":"2895:30:125","nodeType":"YulAssignment","src":"2895:30:125","value":{"arguments":[{"name":"offset","nativeSrc":"2918:6:125","nodeType":"YulIdentifier","src":"2918:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"2905:12:125","nodeType":"YulIdentifier","src":"2905:12:125"},"nativeSrc":"2905:20:125","nodeType":"YulFunctionCall","src":"2905:20:125"},"variableNames":[{"name":"length","nativeSrc":"2895:6:125","nodeType":"YulIdentifier","src":"2895:6:125"}]},{"body":{"nativeSrc":"2968:16:125","nodeType":"YulBlock","src":"2968:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2977:1:125","nodeType":"YulLiteral","src":"2977:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2980:1:125","nodeType":"YulLiteral","src":"2980:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2970:6:125","nodeType":"YulIdentifier","src":"2970:6:125"},"nativeSrc":"2970:12:125","nodeType":"YulFunctionCall","src":"2970:12:125"},"nativeSrc":"2970:12:125","nodeType":"YulExpressionStatement","src":"2970:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"2940:6:125","nodeType":"YulIdentifier","src":"2940:6:125"},{"kind":"number","nativeSrc":"2948:18:125","nodeType":"YulLiteral","src":"2948:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2937:2:125","nodeType":"YulIdentifier","src":"2937:2:125"},"nativeSrc":"2937:30:125","nodeType":"YulFunctionCall","src":"2937:30:125"},"nativeSrc":"2934:50:125","nodeType":"YulIf","src":"2934:50:125"},{"nativeSrc":"2993:29:125","nodeType":"YulAssignment","src":"2993:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"3009:6:125","nodeType":"YulIdentifier","src":"3009:6:125"},{"kind":"number","nativeSrc":"3017:4:125","nodeType":"YulLiteral","src":"3017:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3005:3:125","nodeType":"YulIdentifier","src":"3005:3:125"},"nativeSrc":"3005:17:125","nodeType":"YulFunctionCall","src":"3005:17:125"},"variableNames":[{"name":"arrayPos","nativeSrc":"2993:8:125","nodeType":"YulIdentifier","src":"2993:8:125"}]},{"body":{"nativeSrc":"3074:16:125","nodeType":"YulBlock","src":"3074:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3083:1:125","nodeType":"YulLiteral","src":"3083:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3086:1:125","nodeType":"YulLiteral","src":"3086:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3076:6:125","nodeType":"YulIdentifier","src":"3076:6:125"},"nativeSrc":"3076:12:125","nodeType":"YulFunctionCall","src":"3076:12:125"},"nativeSrc":"3076:12:125","nodeType":"YulExpressionStatement","src":"3076:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"3045:6:125","nodeType":"YulIdentifier","src":"3045:6:125"},{"name":"length","nativeSrc":"3053:6:125","nodeType":"YulIdentifier","src":"3053:6:125"}],"functionName":{"name":"add","nativeSrc":"3041:3:125","nodeType":"YulIdentifier","src":"3041:3:125"},"nativeSrc":"3041:19:125","nodeType":"YulFunctionCall","src":"3041:19:125"},{"kind":"number","nativeSrc":"3062:4:125","nodeType":"YulLiteral","src":"3062:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3037:3:125","nodeType":"YulIdentifier","src":"3037:3:125"},"nativeSrc":"3037:30:125","nodeType":"YulFunctionCall","src":"3037:30:125"},{"name":"end","nativeSrc":"3069:3:125","nodeType":"YulIdentifier","src":"3069:3:125"}],"functionName":{"name":"gt","nativeSrc":"3034:2:125","nodeType":"YulIdentifier","src":"3034:2:125"},"nativeSrc":"3034:39:125","nodeType":"YulFunctionCall","src":"3034:39:125"},"nativeSrc":"3031:59:125","nodeType":"YulIf","src":"3031:59:125"}]},"name":"abi_decode_bytes_calldata","nativeSrc":"2749:347:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"2784:6:125","nodeType":"YulTypedName","src":"2784:6:125","type":""},{"name":"end","nativeSrc":"2792:3:125","nodeType":"YulTypedName","src":"2792:3:125","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"2800:8:125","nodeType":"YulTypedName","src":"2800:8:125","type":""},{"name":"length","nativeSrc":"2810:6:125","nodeType":"YulTypedName","src":"2810:6:125","type":""}],"src":"2749:347:125"},{"body":{"nativeSrc":"3207:438:125","nodeType":"YulBlock","src":"3207:438:125","statements":[{"body":{"nativeSrc":"3253:16:125","nodeType":"YulBlock","src":"3253:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3262:1:125","nodeType":"YulLiteral","src":"3262:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3265:1:125","nodeType":"YulLiteral","src":"3265:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3255:6:125","nodeType":"YulIdentifier","src":"3255:6:125"},"nativeSrc":"3255:12:125","nodeType":"YulFunctionCall","src":"3255:12:125"},"nativeSrc":"3255:12:125","nodeType":"YulExpressionStatement","src":"3255:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3228:7:125","nodeType":"YulIdentifier","src":"3228:7:125"},{"name":"headStart","nativeSrc":"3237:9:125","nodeType":"YulIdentifier","src":"3237:9:125"}],"functionName":{"name":"sub","nativeSrc":"3224:3:125","nodeType":"YulIdentifier","src":"3224:3:125"},"nativeSrc":"3224:23:125","nodeType":"YulFunctionCall","src":"3224:23:125"},{"kind":"number","nativeSrc":"3249:2:125","nodeType":"YulLiteral","src":"3249:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3220:3:125","nodeType":"YulIdentifier","src":"3220:3:125"},"nativeSrc":"3220:32:125","nodeType":"YulFunctionCall","src":"3220:32:125"},"nativeSrc":"3217:52:125","nodeType":"YulIf","src":"3217:52:125"},{"nativeSrc":"3278:36:125","nodeType":"YulVariableDeclaration","src":"3278:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3304:9:125","nodeType":"YulIdentifier","src":"3304:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"3291:12:125","nodeType":"YulIdentifier","src":"3291:12:125"},"nativeSrc":"3291:23:125","nodeType":"YulFunctionCall","src":"3291:23:125"},"variables":[{"name":"value","nativeSrc":"3282:5:125","nodeType":"YulTypedName","src":"3282:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3348:5:125","nodeType":"YulIdentifier","src":"3348:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3323:24:125","nodeType":"YulIdentifier","src":"3323:24:125"},"nativeSrc":"3323:31:125","nodeType":"YulFunctionCall","src":"3323:31:125"},"nativeSrc":"3323:31:125","nodeType":"YulExpressionStatement","src":"3323:31:125"},{"nativeSrc":"3363:15:125","nodeType":"YulAssignment","src":"3363:15:125","value":{"name":"value","nativeSrc":"3373:5:125","nodeType":"YulIdentifier","src":"3373:5:125"},"variableNames":[{"name":"value0","nativeSrc":"3363:6:125","nodeType":"YulIdentifier","src":"3363:6:125"}]},{"nativeSrc":"3387:46:125","nodeType":"YulVariableDeclaration","src":"3387:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3418:9:125","nodeType":"YulIdentifier","src":"3418:9:125"},{"kind":"number","nativeSrc":"3429:2:125","nodeType":"YulLiteral","src":"3429:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3414:3:125","nodeType":"YulIdentifier","src":"3414:3:125"},"nativeSrc":"3414:18:125","nodeType":"YulFunctionCall","src":"3414:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3401:12:125","nodeType":"YulIdentifier","src":"3401:12:125"},"nativeSrc":"3401:32:125","nodeType":"YulFunctionCall","src":"3401:32:125"},"variables":[{"name":"offset","nativeSrc":"3391:6:125","nodeType":"YulTypedName","src":"3391:6:125","type":""}]},{"body":{"nativeSrc":"3476:16:125","nodeType":"YulBlock","src":"3476:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3485:1:125","nodeType":"YulLiteral","src":"3485:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3488:1:125","nodeType":"YulLiteral","src":"3488:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3478:6:125","nodeType":"YulIdentifier","src":"3478:6:125"},"nativeSrc":"3478:12:125","nodeType":"YulFunctionCall","src":"3478:12:125"},"nativeSrc":"3478:12:125","nodeType":"YulExpressionStatement","src":"3478:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"3448:6:125","nodeType":"YulIdentifier","src":"3448:6:125"},{"kind":"number","nativeSrc":"3456:18:125","nodeType":"YulLiteral","src":"3456:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3445:2:125","nodeType":"YulIdentifier","src":"3445:2:125"},"nativeSrc":"3445:30:125","nodeType":"YulFunctionCall","src":"3445:30:125"},"nativeSrc":"3442:50:125","nodeType":"YulIf","src":"3442:50:125"},{"nativeSrc":"3501:84:125","nodeType":"YulVariableDeclaration","src":"3501:84:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3557:9:125","nodeType":"YulIdentifier","src":"3557:9:125"},{"name":"offset","nativeSrc":"3568:6:125","nodeType":"YulIdentifier","src":"3568:6:125"}],"functionName":{"name":"add","nativeSrc":"3553:3:125","nodeType":"YulIdentifier","src":"3553:3:125"},"nativeSrc":"3553:22:125","nodeType":"YulFunctionCall","src":"3553:22:125"},{"name":"dataEnd","nativeSrc":"3577:7:125","nodeType":"YulIdentifier","src":"3577:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"3527:25:125","nodeType":"YulIdentifier","src":"3527:25:125"},"nativeSrc":"3527:58:125","nodeType":"YulFunctionCall","src":"3527:58:125"},"variables":[{"name":"value1_1","nativeSrc":"3505:8:125","nodeType":"YulTypedName","src":"3505:8:125","type":""},{"name":"value2_1","nativeSrc":"3515:8:125","nodeType":"YulTypedName","src":"3515:8:125","type":""}]},{"nativeSrc":"3594:18:125","nodeType":"YulAssignment","src":"3594:18:125","value":{"name":"value1_1","nativeSrc":"3604:8:125","nodeType":"YulIdentifier","src":"3604:8:125"},"variableNames":[{"name":"value1","nativeSrc":"3594:6:125","nodeType":"YulIdentifier","src":"3594:6:125"}]},{"nativeSrc":"3621:18:125","nodeType":"YulAssignment","src":"3621:18:125","value":{"name":"value2_1","nativeSrc":"3631:8:125","nodeType":"YulIdentifier","src":"3631:8:125"},"variableNames":[{"name":"value2","nativeSrc":"3621:6:125","nodeType":"YulIdentifier","src":"3621:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptr","nativeSrc":"3101:544:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3157:9:125","nodeType":"YulTypedName","src":"3157:9:125","type":""},{"name":"dataEnd","nativeSrc":"3168:7:125","nodeType":"YulTypedName","src":"3168:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3180:6:125","nodeType":"YulTypedName","src":"3180:6:125","type":""},{"name":"value1","nativeSrc":"3188:6:125","nodeType":"YulTypedName","src":"3188:6:125","type":""},{"name":"value2","nativeSrc":"3196:6:125","nodeType":"YulTypedName","src":"3196:6:125","type":""}],"src":"3101:544:125"},{"body":{"nativeSrc":"3698:115:125","nodeType":"YulBlock","src":"3698:115:125","statements":[{"nativeSrc":"3708:29:125","nodeType":"YulAssignment","src":"3708:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"3730:6:125","nodeType":"YulIdentifier","src":"3730:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"3717:12:125","nodeType":"YulIdentifier","src":"3717:12:125"},"nativeSrc":"3717:20:125","nodeType":"YulFunctionCall","src":"3717:20:125"},"variableNames":[{"name":"value","nativeSrc":"3708:5:125","nodeType":"YulIdentifier","src":"3708:5:125"}]},{"body":{"nativeSrc":"3791:16:125","nodeType":"YulBlock","src":"3791:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3800:1:125","nodeType":"YulLiteral","src":"3800:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3803:1:125","nodeType":"YulLiteral","src":"3803:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3793:6:125","nodeType":"YulIdentifier","src":"3793:6:125"},"nativeSrc":"3793:12:125","nodeType":"YulFunctionCall","src":"3793:12:125"},"nativeSrc":"3793:12:125","nodeType":"YulExpressionStatement","src":"3793:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3759:5:125","nodeType":"YulIdentifier","src":"3759:5:125"},{"arguments":[{"name":"value","nativeSrc":"3770:5:125","nodeType":"YulIdentifier","src":"3770:5:125"},{"kind":"number","nativeSrc":"3777:10:125","nodeType":"YulLiteral","src":"3777:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"3766:3:125","nodeType":"YulIdentifier","src":"3766:3:125"},"nativeSrc":"3766:22:125","nodeType":"YulFunctionCall","src":"3766:22:125"}],"functionName":{"name":"eq","nativeSrc":"3756:2:125","nodeType":"YulIdentifier","src":"3756:2:125"},"nativeSrc":"3756:33:125","nodeType":"YulFunctionCall","src":"3756:33:125"}],"functionName":{"name":"iszero","nativeSrc":"3749:6:125","nodeType":"YulIdentifier","src":"3749:6:125"},"nativeSrc":"3749:41:125","nodeType":"YulFunctionCall","src":"3749:41:125"},"nativeSrc":"3746:61:125","nodeType":"YulIf","src":"3746:61:125"}]},"name":"abi_decode_uint32","nativeSrc":"3650:163:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"3677:6:125","nodeType":"YulTypedName","src":"3677:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"3688:5:125","nodeType":"YulTypedName","src":"3688:5:125","type":""}],"src":"3650:163:125"},{"body":{"nativeSrc":"3920:289:125","nodeType":"YulBlock","src":"3920:289:125","statements":[{"body":{"nativeSrc":"3966:16:125","nodeType":"YulBlock","src":"3966:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3975:1:125","nodeType":"YulLiteral","src":"3975:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3978:1:125","nodeType":"YulLiteral","src":"3978:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3968:6:125","nodeType":"YulIdentifier","src":"3968:6:125"},"nativeSrc":"3968:12:125","nodeType":"YulFunctionCall","src":"3968:12:125"},"nativeSrc":"3968:12:125","nodeType":"YulExpressionStatement","src":"3968:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3941:7:125","nodeType":"YulIdentifier","src":"3941:7:125"},{"name":"headStart","nativeSrc":"3950:9:125","nodeType":"YulIdentifier","src":"3950:9:125"}],"functionName":{"name":"sub","nativeSrc":"3937:3:125","nodeType":"YulIdentifier","src":"3937:3:125"},"nativeSrc":"3937:23:125","nodeType":"YulFunctionCall","src":"3937:23:125"},{"kind":"number","nativeSrc":"3962:2:125","nodeType":"YulLiteral","src":"3962:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"3933:3:125","nodeType":"YulIdentifier","src":"3933:3:125"},"nativeSrc":"3933:32:125","nodeType":"YulFunctionCall","src":"3933:32:125"},"nativeSrc":"3930:52:125","nodeType":"YulIf","src":"3930:52:125"},{"nativeSrc":"3991:38:125","nodeType":"YulAssignment","src":"3991:38:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4019:9:125","nodeType":"YulIdentifier","src":"4019:9:125"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"4001:17:125","nodeType":"YulIdentifier","src":"4001:17:125"},"nativeSrc":"4001:28:125","nodeType":"YulFunctionCall","src":"4001:28:125"},"variableNames":[{"name":"value0","nativeSrc":"3991:6:125","nodeType":"YulIdentifier","src":"3991:6:125"}]},{"nativeSrc":"4038:45:125","nodeType":"YulVariableDeclaration","src":"4038:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4068:9:125","nodeType":"YulIdentifier","src":"4068:9:125"},{"kind":"number","nativeSrc":"4079:2:125","nodeType":"YulLiteral","src":"4079:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4064:3:125","nodeType":"YulIdentifier","src":"4064:3:125"},"nativeSrc":"4064:18:125","nodeType":"YulFunctionCall","src":"4064:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"4051:12:125","nodeType":"YulIdentifier","src":"4051:12:125"},"nativeSrc":"4051:32:125","nodeType":"YulFunctionCall","src":"4051:32:125"},"variables":[{"name":"value","nativeSrc":"4042:5:125","nodeType":"YulTypedName","src":"4042:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4117:5:125","nodeType":"YulIdentifier","src":"4117:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4092:24:125","nodeType":"YulIdentifier","src":"4092:24:125"},"nativeSrc":"4092:31:125","nodeType":"YulFunctionCall","src":"4092:31:125"},"nativeSrc":"4092:31:125","nodeType":"YulExpressionStatement","src":"4092:31:125"},{"nativeSrc":"4132:15:125","nodeType":"YulAssignment","src":"4132:15:125","value":{"name":"value","nativeSrc":"4142:5:125","nodeType":"YulIdentifier","src":"4142:5:125"},"variableNames":[{"name":"value1","nativeSrc":"4132:6:125","nodeType":"YulIdentifier","src":"4132:6:125"}]},{"nativeSrc":"4156:47:125","nodeType":"YulAssignment","src":"4156:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4188:9:125","nodeType":"YulIdentifier","src":"4188:9:125"},{"kind":"number","nativeSrc":"4199:2:125","nodeType":"YulLiteral","src":"4199:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4184:3:125","nodeType":"YulIdentifier","src":"4184:3:125"},"nativeSrc":"4184:18:125","nodeType":"YulFunctionCall","src":"4184:18:125"}],"functionName":{"name":"abi_decode_uint32","nativeSrc":"4166:17:125","nodeType":"YulIdentifier","src":"4166:17:125"},"nativeSrc":"4166:37:125","nodeType":"YulFunctionCall","src":"4166:37:125"},"variableNames":[{"name":"value2","nativeSrc":"4156:6:125","nodeType":"YulIdentifier","src":"4156:6:125"}]}]},"name":"abi_decode_tuple_t_uint64t_addresst_uint32","nativeSrc":"3818:391:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3870:9:125","nodeType":"YulTypedName","src":"3870:9:125","type":""},{"name":"dataEnd","nativeSrc":"3881:7:125","nodeType":"YulTypedName","src":"3881:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3893:6:125","nodeType":"YulTypedName","src":"3893:6:125","type":""},{"name":"value1","nativeSrc":"3901:6:125","nodeType":"YulTypedName","src":"3901:6:125","type":""},{"name":"value2","nativeSrc":"3909:6:125","nodeType":"YulTypedName","src":"3909:6:125","type":""}],"src":"3818:391:125"},{"body":{"nativeSrc":"4300:233:125","nodeType":"YulBlock","src":"4300:233:125","statements":[{"body":{"nativeSrc":"4346:16:125","nodeType":"YulBlock","src":"4346:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4355:1:125","nodeType":"YulLiteral","src":"4355:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4358:1:125","nodeType":"YulLiteral","src":"4358:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4348:6:125","nodeType":"YulIdentifier","src":"4348:6:125"},"nativeSrc":"4348:12:125","nodeType":"YulFunctionCall","src":"4348:12:125"},"nativeSrc":"4348:12:125","nodeType":"YulExpressionStatement","src":"4348:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4321:7:125","nodeType":"YulIdentifier","src":"4321:7:125"},{"name":"headStart","nativeSrc":"4330:9:125","nodeType":"YulIdentifier","src":"4330:9:125"}],"functionName":{"name":"sub","nativeSrc":"4317:3:125","nodeType":"YulIdentifier","src":"4317:3:125"},"nativeSrc":"4317:23:125","nodeType":"YulFunctionCall","src":"4317:23:125"},{"kind":"number","nativeSrc":"4342:2:125","nodeType":"YulLiteral","src":"4342:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4313:3:125","nodeType":"YulIdentifier","src":"4313:3:125"},"nativeSrc":"4313:32:125","nodeType":"YulFunctionCall","src":"4313:32:125"},"nativeSrc":"4310:52:125","nodeType":"YulIf","src":"4310:52:125"},{"nativeSrc":"4371:38:125","nodeType":"YulAssignment","src":"4371:38:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4399:9:125","nodeType":"YulIdentifier","src":"4399:9:125"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"4381:17:125","nodeType":"YulIdentifier","src":"4381:17:125"},"nativeSrc":"4381:28:125","nodeType":"YulFunctionCall","src":"4381:28:125"},"variableNames":[{"name":"value0","nativeSrc":"4371:6:125","nodeType":"YulIdentifier","src":"4371:6:125"}]},{"nativeSrc":"4418:45:125","nodeType":"YulVariableDeclaration","src":"4418:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4448:9:125","nodeType":"YulIdentifier","src":"4448:9:125"},{"kind":"number","nativeSrc":"4459:2:125","nodeType":"YulLiteral","src":"4459:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4444:3:125","nodeType":"YulIdentifier","src":"4444:3:125"},"nativeSrc":"4444:18:125","nodeType":"YulFunctionCall","src":"4444:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"4431:12:125","nodeType":"YulIdentifier","src":"4431:12:125"},"nativeSrc":"4431:32:125","nodeType":"YulFunctionCall","src":"4431:32:125"},"variables":[{"name":"value","nativeSrc":"4422:5:125","nodeType":"YulTypedName","src":"4422:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4497:5:125","nodeType":"YulIdentifier","src":"4497:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4472:24:125","nodeType":"YulIdentifier","src":"4472:24:125"},"nativeSrc":"4472:31:125","nodeType":"YulFunctionCall","src":"4472:31:125"},"nativeSrc":"4472:31:125","nodeType":"YulExpressionStatement","src":"4472:31:125"},{"nativeSrc":"4512:15:125","nodeType":"YulAssignment","src":"4512:15:125","value":{"name":"value","nativeSrc":"4522:5:125","nodeType":"YulIdentifier","src":"4522:5:125"},"variableNames":[{"name":"value1","nativeSrc":"4512:6:125","nodeType":"YulIdentifier","src":"4512:6:125"}]}]},"name":"abi_decode_tuple_t_uint64t_address","nativeSrc":"4214:319:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4258:9:125","nodeType":"YulTypedName","src":"4258:9:125","type":""},{"name":"dataEnd","nativeSrc":"4269:7:125","nodeType":"YulTypedName","src":"4269:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4281:6:125","nodeType":"YulTypedName","src":"4281:6:125","type":""},{"name":"value1","nativeSrc":"4289:6:125","nodeType":"YulTypedName","src":"4289:6:125","type":""}],"src":"4214:319:125"},{"body":{"nativeSrc":"4715:282:125","nodeType":"YulBlock","src":"4715:282:125","statements":[{"nativeSrc":"4725:27:125","nodeType":"YulAssignment","src":"4725:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4737:9:125","nodeType":"YulIdentifier","src":"4737:9:125"},{"kind":"number","nativeSrc":"4748:3:125","nodeType":"YulLiteral","src":"4748:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4733:3:125","nodeType":"YulIdentifier","src":"4733:3:125"},"nativeSrc":"4733:19:125","nodeType":"YulFunctionCall","src":"4733:19:125"},"variableNames":[{"name":"tail","nativeSrc":"4725:4:125","nodeType":"YulIdentifier","src":"4725:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4768:9:125","nodeType":"YulIdentifier","src":"4768:9:125"},{"arguments":[{"name":"value0","nativeSrc":"4783:6:125","nodeType":"YulIdentifier","src":"4783:6:125"},{"kind":"number","nativeSrc":"4791:14:125","nodeType":"YulLiteral","src":"4791:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"4779:3:125","nodeType":"YulIdentifier","src":"4779:3:125"},"nativeSrc":"4779:27:125","nodeType":"YulFunctionCall","src":"4779:27:125"}],"functionName":{"name":"mstore","nativeSrc":"4761:6:125","nodeType":"YulIdentifier","src":"4761:6:125"},"nativeSrc":"4761:46:125","nodeType":"YulFunctionCall","src":"4761:46:125"},"nativeSrc":"4761:46:125","nodeType":"YulExpressionStatement","src":"4761:46:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4827:9:125","nodeType":"YulIdentifier","src":"4827:9:125"},{"kind":"number","nativeSrc":"4838:2:125","nodeType":"YulLiteral","src":"4838:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4823:3:125","nodeType":"YulIdentifier","src":"4823:3:125"},"nativeSrc":"4823:18:125","nodeType":"YulFunctionCall","src":"4823:18:125"},{"arguments":[{"name":"value1","nativeSrc":"4847:6:125","nodeType":"YulIdentifier","src":"4847:6:125"},{"kind":"number","nativeSrc":"4855:10:125","nodeType":"YulLiteral","src":"4855:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"4843:3:125","nodeType":"YulIdentifier","src":"4843:3:125"},"nativeSrc":"4843:23:125","nodeType":"YulFunctionCall","src":"4843:23:125"}],"functionName":{"name":"mstore","nativeSrc":"4816:6:125","nodeType":"YulIdentifier","src":"4816:6:125"},"nativeSrc":"4816:51:125","nodeType":"YulFunctionCall","src":"4816:51:125"},"nativeSrc":"4816:51:125","nodeType":"YulExpressionStatement","src":"4816:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4887:9:125","nodeType":"YulIdentifier","src":"4887:9:125"},{"kind":"number","nativeSrc":"4898:2:125","nodeType":"YulLiteral","src":"4898:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4883:3:125","nodeType":"YulIdentifier","src":"4883:3:125"},"nativeSrc":"4883:18:125","nodeType":"YulFunctionCall","src":"4883:18:125"},{"arguments":[{"name":"value2","nativeSrc":"4907:6:125","nodeType":"YulIdentifier","src":"4907:6:125"},{"kind":"number","nativeSrc":"4915:10:125","nodeType":"YulLiteral","src":"4915:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"4903:3:125","nodeType":"YulIdentifier","src":"4903:3:125"},"nativeSrc":"4903:23:125","nodeType":"YulFunctionCall","src":"4903:23:125"}],"functionName":{"name":"mstore","nativeSrc":"4876:6:125","nodeType":"YulIdentifier","src":"4876:6:125"},"nativeSrc":"4876:51:125","nodeType":"YulFunctionCall","src":"4876:51:125"},"nativeSrc":"4876:51:125","nodeType":"YulExpressionStatement","src":"4876:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4947:9:125","nodeType":"YulIdentifier","src":"4947:9:125"},{"kind":"number","nativeSrc":"4958:2:125","nodeType":"YulLiteral","src":"4958:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4943:3:125","nodeType":"YulIdentifier","src":"4943:3:125"},"nativeSrc":"4943:18:125","nodeType":"YulFunctionCall","src":"4943:18:125"},{"arguments":[{"name":"value3","nativeSrc":"4967:6:125","nodeType":"YulIdentifier","src":"4967:6:125"},{"kind":"number","nativeSrc":"4975:14:125","nodeType":"YulLiteral","src":"4975:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"4963:3:125","nodeType":"YulIdentifier","src":"4963:3:125"},"nativeSrc":"4963:27:125","nodeType":"YulFunctionCall","src":"4963:27:125"}],"functionName":{"name":"mstore","nativeSrc":"4936:6:125","nodeType":"YulIdentifier","src":"4936:6:125"},"nativeSrc":"4936:55:125","nodeType":"YulFunctionCall","src":"4936:55:125"},"nativeSrc":"4936:55:125","nodeType":"YulExpressionStatement","src":"4936:55:125"}]},"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:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4660:9:125","nodeType":"YulTypedName","src":"4660:9:125","type":""},{"name":"value3","nativeSrc":"4671:6:125","nodeType":"YulTypedName","src":"4671:6:125","type":""},{"name":"value2","nativeSrc":"4679:6:125","nodeType":"YulTypedName","src":"4679:6:125","type":""},{"name":"value1","nativeSrc":"4687:6:125","nodeType":"YulTypedName","src":"4687:6:125","type":""},{"name":"value0","nativeSrc":"4695:6:125","nodeType":"YulTypedName","src":"4695:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4706:4:125","nodeType":"YulTypedName","src":"4706:4:125","type":""}],"src":"4538:459:125"},{"body":{"nativeSrc":"5087:171:125","nodeType":"YulBlock","src":"5087:171:125","statements":[{"body":{"nativeSrc":"5133:16:125","nodeType":"YulBlock","src":"5133:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5142:1:125","nodeType":"YulLiteral","src":"5142:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5145:1:125","nodeType":"YulLiteral","src":"5145:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5135:6:125","nodeType":"YulIdentifier","src":"5135:6:125"},"nativeSrc":"5135:12:125","nodeType":"YulFunctionCall","src":"5135:12:125"},"nativeSrc":"5135:12:125","nodeType":"YulExpressionStatement","src":"5135:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5108:7:125","nodeType":"YulIdentifier","src":"5108:7:125"},{"name":"headStart","nativeSrc":"5117:9:125","nodeType":"YulIdentifier","src":"5117:9:125"}],"functionName":{"name":"sub","nativeSrc":"5104:3:125","nodeType":"YulIdentifier","src":"5104:3:125"},"nativeSrc":"5104:23:125","nodeType":"YulFunctionCall","src":"5104:23:125"},{"kind":"number","nativeSrc":"5129:2:125","nodeType":"YulLiteral","src":"5129:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"5100:3:125","nodeType":"YulIdentifier","src":"5100:3:125"},"nativeSrc":"5100:32:125","nodeType":"YulFunctionCall","src":"5100:32:125"},"nativeSrc":"5097:52:125","nodeType":"YulIf","src":"5097:52:125"},{"nativeSrc":"5158:38:125","nodeType":"YulAssignment","src":"5158:38:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5186:9:125","nodeType":"YulIdentifier","src":"5186:9:125"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"5168:17:125","nodeType":"YulIdentifier","src":"5168:17:125"},"nativeSrc":"5168:28:125","nodeType":"YulFunctionCall","src":"5168:28:125"},"variableNames":[{"name":"value0","nativeSrc":"5158:6:125","nodeType":"YulIdentifier","src":"5158:6:125"}]},{"nativeSrc":"5205:47:125","nodeType":"YulAssignment","src":"5205:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5237:9:125","nodeType":"YulIdentifier","src":"5237:9:125"},{"kind":"number","nativeSrc":"5248:2:125","nodeType":"YulLiteral","src":"5248:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5233:3:125","nodeType":"YulIdentifier","src":"5233:3:125"},"nativeSrc":"5233:18:125","nodeType":"YulFunctionCall","src":"5233:18:125"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"5215:17:125","nodeType":"YulIdentifier","src":"5215:17:125"},"nativeSrc":"5215:37:125","nodeType":"YulFunctionCall","src":"5215:37:125"},"variableNames":[{"name":"value1","nativeSrc":"5205:6:125","nodeType":"YulIdentifier","src":"5205:6:125"}]}]},"name":"abi_decode_tuple_t_uint64t_uint64","nativeSrc":"5002:256:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5045:9:125","nodeType":"YulTypedName","src":"5045:9:125","type":""},{"name":"dataEnd","nativeSrc":"5056:7:125","nodeType":"YulTypedName","src":"5056:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5068:6:125","nodeType":"YulTypedName","src":"5068:6:125","type":""},{"name":"value1","nativeSrc":"5076:6:125","nodeType":"YulTypedName","src":"5076:6:125","type":""}],"src":"5002:256:125"},{"body":{"nativeSrc":"5333:110:125","nodeType":"YulBlock","src":"5333:110:125","statements":[{"body":{"nativeSrc":"5379:16:125","nodeType":"YulBlock","src":"5379:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5388:1:125","nodeType":"YulLiteral","src":"5388:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5391:1:125","nodeType":"YulLiteral","src":"5391:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5381:6:125","nodeType":"YulIdentifier","src":"5381:6:125"},"nativeSrc":"5381:12:125","nodeType":"YulFunctionCall","src":"5381:12:125"},"nativeSrc":"5381:12:125","nodeType":"YulExpressionStatement","src":"5381:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5354:7:125","nodeType":"YulIdentifier","src":"5354:7:125"},{"name":"headStart","nativeSrc":"5363:9:125","nodeType":"YulIdentifier","src":"5363:9:125"}],"functionName":{"name":"sub","nativeSrc":"5350:3:125","nodeType":"YulIdentifier","src":"5350:3:125"},"nativeSrc":"5350:23:125","nodeType":"YulFunctionCall","src":"5350:23:125"},{"kind":"number","nativeSrc":"5375:2:125","nodeType":"YulLiteral","src":"5375:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5346:3:125","nodeType":"YulIdentifier","src":"5346:3:125"},"nativeSrc":"5346:32:125","nodeType":"YulFunctionCall","src":"5346:32:125"},"nativeSrc":"5343:52:125","nodeType":"YulIf","src":"5343:52:125"},{"nativeSrc":"5404:33:125","nodeType":"YulAssignment","src":"5404:33:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5427:9:125","nodeType":"YulIdentifier","src":"5427:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"5414:12:125","nodeType":"YulIdentifier","src":"5414:12:125"},"nativeSrc":"5414:23:125","nodeType":"YulFunctionCall","src":"5414:23:125"},"variableNames":[{"name":"value0","nativeSrc":"5404:6:125","nodeType":"YulIdentifier","src":"5404:6:125"}]}]},"name":"abi_decode_tuple_t_bytes32","nativeSrc":"5263:180:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5299:9:125","nodeType":"YulTypedName","src":"5299:9:125","type":""},{"name":"dataEnd","nativeSrc":"5310:7:125","nodeType":"YulTypedName","src":"5310:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5322:6:125","nodeType":"YulTypedName","src":"5322:6:125","type":""}],"src":"5263:180:125"},{"body":{"nativeSrc":"5547:97:125","nodeType":"YulBlock","src":"5547:97:125","statements":[{"nativeSrc":"5557:26:125","nodeType":"YulAssignment","src":"5557:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5569:9:125","nodeType":"YulIdentifier","src":"5569:9:125"},{"kind":"number","nativeSrc":"5580:2:125","nodeType":"YulLiteral","src":"5580:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5565:3:125","nodeType":"YulIdentifier","src":"5565:3:125"},"nativeSrc":"5565:18:125","nodeType":"YulFunctionCall","src":"5565:18:125"},"variableNames":[{"name":"tail","nativeSrc":"5557:4:125","nodeType":"YulIdentifier","src":"5557:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5599:9:125","nodeType":"YulIdentifier","src":"5599:9:125"},{"arguments":[{"name":"value0","nativeSrc":"5614:6:125","nodeType":"YulIdentifier","src":"5614:6:125"},{"kind":"number","nativeSrc":"5622:14:125","nodeType":"YulLiteral","src":"5622:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"5610:3:125","nodeType":"YulIdentifier","src":"5610:3:125"},"nativeSrc":"5610:27:125","nodeType":"YulFunctionCall","src":"5610:27:125"}],"functionName":{"name":"mstore","nativeSrc":"5592:6:125","nodeType":"YulIdentifier","src":"5592:6:125"},"nativeSrc":"5592:46:125","nodeType":"YulFunctionCall","src":"5592:46:125"},"nativeSrc":"5592:46:125","nodeType":"YulExpressionStatement","src":"5592:46:125"}]},"name":"abi_encode_tuple_t_uint48__to_t_uint48__fromStack_reversed","nativeSrc":"5448:196:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5516:9:125","nodeType":"YulTypedName","src":"5516:9:125","type":""},{"name":"value0","nativeSrc":"5527:6:125","nodeType":"YulTypedName","src":"5527:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5538:4:125","nodeType":"YulTypedName","src":"5538:4:125","type":""}],"src":"5448:196:125"},{"body":{"nativeSrc":"5719:177:125","nodeType":"YulBlock","src":"5719:177:125","statements":[{"body":{"nativeSrc":"5765:16:125","nodeType":"YulBlock","src":"5765:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5774:1:125","nodeType":"YulLiteral","src":"5774:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5777:1:125","nodeType":"YulLiteral","src":"5777:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5767:6:125","nodeType":"YulIdentifier","src":"5767:6:125"},"nativeSrc":"5767:12:125","nodeType":"YulFunctionCall","src":"5767:12:125"},"nativeSrc":"5767:12:125","nodeType":"YulExpressionStatement","src":"5767:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5740:7:125","nodeType":"YulIdentifier","src":"5740:7:125"},{"name":"headStart","nativeSrc":"5749:9:125","nodeType":"YulIdentifier","src":"5749:9:125"}],"functionName":{"name":"sub","nativeSrc":"5736:3:125","nodeType":"YulIdentifier","src":"5736:3:125"},"nativeSrc":"5736:23:125","nodeType":"YulFunctionCall","src":"5736:23:125"},{"kind":"number","nativeSrc":"5761:2:125","nodeType":"YulLiteral","src":"5761:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5732:3:125","nodeType":"YulIdentifier","src":"5732:3:125"},"nativeSrc":"5732:32:125","nodeType":"YulFunctionCall","src":"5732:32:125"},"nativeSrc":"5729:52:125","nodeType":"YulIf","src":"5729:52:125"},{"nativeSrc":"5790:36:125","nodeType":"YulVariableDeclaration","src":"5790:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5816:9:125","nodeType":"YulIdentifier","src":"5816:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"5803:12:125","nodeType":"YulIdentifier","src":"5803:12:125"},"nativeSrc":"5803:23:125","nodeType":"YulFunctionCall","src":"5803:23:125"},"variables":[{"name":"value","nativeSrc":"5794:5:125","nodeType":"YulTypedName","src":"5794:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5860:5:125","nodeType":"YulIdentifier","src":"5860:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"5835:24:125","nodeType":"YulIdentifier","src":"5835:24:125"},"nativeSrc":"5835:31:125","nodeType":"YulFunctionCall","src":"5835:31:125"},"nativeSrc":"5835:31:125","nodeType":"YulExpressionStatement","src":"5835:31:125"},{"nativeSrc":"5875:15:125","nodeType":"YulAssignment","src":"5875:15:125","value":{"name":"value","nativeSrc":"5885:5:125","nodeType":"YulIdentifier","src":"5885:5:125"},"variableNames":[{"name":"value0","nativeSrc":"5875:6:125","nodeType":"YulIdentifier","src":"5875:6:125"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"5649:247:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5685:9:125","nodeType":"YulTypedName","src":"5685:9:125","type":""},{"name":"dataEnd","nativeSrc":"5696:7:125","nodeType":"YulTypedName","src":"5696:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5708:6:125","nodeType":"YulTypedName","src":"5708:6:125","type":""}],"src":"5649:247:125"},{"body":{"nativeSrc":"5945:87:125","nodeType":"YulBlock","src":"5945:87:125","statements":[{"body":{"nativeSrc":"6010:16:125","nodeType":"YulBlock","src":"6010:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6019:1:125","nodeType":"YulLiteral","src":"6019:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6022:1:125","nodeType":"YulLiteral","src":"6022:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6012:6:125","nodeType":"YulIdentifier","src":"6012:6:125"},"nativeSrc":"6012:12:125","nodeType":"YulFunctionCall","src":"6012:12:125"},"nativeSrc":"6012:12:125","nodeType":"YulExpressionStatement","src":"6012:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5968:5:125","nodeType":"YulIdentifier","src":"5968:5:125"},{"arguments":[{"name":"value","nativeSrc":"5979:5:125","nodeType":"YulIdentifier","src":"5979:5:125"},{"arguments":[{"kind":"number","nativeSrc":"5990:3:125","nodeType":"YulLiteral","src":"5990:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"5995:10:125","nodeType":"YulLiteral","src":"5995:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"5986:3:125","nodeType":"YulIdentifier","src":"5986:3:125"},"nativeSrc":"5986:20:125","nodeType":"YulFunctionCall","src":"5986:20:125"}],"functionName":{"name":"and","nativeSrc":"5975:3:125","nodeType":"YulIdentifier","src":"5975:3:125"},"nativeSrc":"5975:32:125","nodeType":"YulFunctionCall","src":"5975:32:125"}],"functionName":{"name":"eq","nativeSrc":"5965:2:125","nodeType":"YulIdentifier","src":"5965:2:125"},"nativeSrc":"5965:43:125","nodeType":"YulFunctionCall","src":"5965:43:125"}],"functionName":{"name":"iszero","nativeSrc":"5958:6:125","nodeType":"YulIdentifier","src":"5958:6:125"},"nativeSrc":"5958:51:125","nodeType":"YulFunctionCall","src":"5958:51:125"},"nativeSrc":"5955:71:125","nodeType":"YulIf","src":"5955:71:125"}]},"name":"validator_revert_bytes4","nativeSrc":"5901:131:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"5934:5:125","nodeType":"YulTypedName","src":"5934:5:125","type":""}],"src":"5901:131:125"},{"body":{"nativeSrc":"6123:300:125","nodeType":"YulBlock","src":"6123:300:125","statements":[{"body":{"nativeSrc":"6169:16:125","nodeType":"YulBlock","src":"6169:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6178:1:125","nodeType":"YulLiteral","src":"6178:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6181:1:125","nodeType":"YulLiteral","src":"6181:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6171:6:125","nodeType":"YulIdentifier","src":"6171:6:125"},"nativeSrc":"6171:12:125","nodeType":"YulFunctionCall","src":"6171:12:125"},"nativeSrc":"6171:12:125","nodeType":"YulExpressionStatement","src":"6171:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6144:7:125","nodeType":"YulIdentifier","src":"6144:7:125"},{"name":"headStart","nativeSrc":"6153:9:125","nodeType":"YulIdentifier","src":"6153:9:125"}],"functionName":{"name":"sub","nativeSrc":"6140:3:125","nodeType":"YulIdentifier","src":"6140:3:125"},"nativeSrc":"6140:23:125","nodeType":"YulFunctionCall","src":"6140:23:125"},{"kind":"number","nativeSrc":"6165:2:125","nodeType":"YulLiteral","src":"6165:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6136:3:125","nodeType":"YulIdentifier","src":"6136:3:125"},"nativeSrc":"6136:32:125","nodeType":"YulFunctionCall","src":"6136:32:125"},"nativeSrc":"6133:52:125","nodeType":"YulIf","src":"6133:52:125"},{"nativeSrc":"6194:36:125","nodeType":"YulVariableDeclaration","src":"6194:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6220:9:125","nodeType":"YulIdentifier","src":"6220:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"6207:12:125","nodeType":"YulIdentifier","src":"6207:12:125"},"nativeSrc":"6207:23:125","nodeType":"YulFunctionCall","src":"6207:23:125"},"variables":[{"name":"value","nativeSrc":"6198:5:125","nodeType":"YulTypedName","src":"6198:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6264:5:125","nodeType":"YulIdentifier","src":"6264:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6239:24:125","nodeType":"YulIdentifier","src":"6239:24:125"},"nativeSrc":"6239:31:125","nodeType":"YulFunctionCall","src":"6239:31:125"},"nativeSrc":"6239:31:125","nodeType":"YulExpressionStatement","src":"6239:31:125"},{"nativeSrc":"6279:15:125","nodeType":"YulAssignment","src":"6279:15:125","value":{"name":"value","nativeSrc":"6289:5:125","nodeType":"YulIdentifier","src":"6289:5:125"},"variableNames":[{"name":"value0","nativeSrc":"6279:6:125","nodeType":"YulIdentifier","src":"6279:6:125"}]},{"nativeSrc":"6303:47:125","nodeType":"YulVariableDeclaration","src":"6303:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6335:9:125","nodeType":"YulIdentifier","src":"6335:9:125"},{"kind":"number","nativeSrc":"6346:2:125","nodeType":"YulLiteral","src":"6346:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6331:3:125","nodeType":"YulIdentifier","src":"6331:3:125"},"nativeSrc":"6331:18:125","nodeType":"YulFunctionCall","src":"6331:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"6318:12:125","nodeType":"YulIdentifier","src":"6318:12:125"},"nativeSrc":"6318:32:125","nodeType":"YulFunctionCall","src":"6318:32:125"},"variables":[{"name":"value_1","nativeSrc":"6307:7:125","nodeType":"YulTypedName","src":"6307:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"6383:7:125","nodeType":"YulIdentifier","src":"6383:7:125"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"6359:23:125","nodeType":"YulIdentifier","src":"6359:23:125"},"nativeSrc":"6359:32:125","nodeType":"YulFunctionCall","src":"6359:32:125"},"nativeSrc":"6359:32:125","nodeType":"YulExpressionStatement","src":"6359:32:125"},{"nativeSrc":"6400:17:125","nodeType":"YulAssignment","src":"6400:17:125","value":{"name":"value_1","nativeSrc":"6410:7:125","nodeType":"YulIdentifier","src":"6410:7:125"},"variableNames":[{"name":"value1","nativeSrc":"6400:6:125","nodeType":"YulIdentifier","src":"6400:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes4","nativeSrc":"6037:386:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6081:9:125","nodeType":"YulTypedName","src":"6081:9:125","type":""},{"name":"dataEnd","nativeSrc":"6092:7:125","nodeType":"YulTypedName","src":"6092:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6104:6:125","nodeType":"YulTypedName","src":"6104:6:125","type":""},{"name":"value1","nativeSrc":"6112:6:125","nodeType":"YulTypedName","src":"6112:6:125","type":""}],"src":"6037:386:125"},{"body":{"nativeSrc":"6534:376:125","nodeType":"YulBlock","src":"6534:376:125","statements":[{"body":{"nativeSrc":"6580:16:125","nodeType":"YulBlock","src":"6580:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6589:1:125","nodeType":"YulLiteral","src":"6589:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6592:1:125","nodeType":"YulLiteral","src":"6592:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6582:6:125","nodeType":"YulIdentifier","src":"6582:6:125"},"nativeSrc":"6582:12:125","nodeType":"YulFunctionCall","src":"6582:12:125"},"nativeSrc":"6582:12:125","nodeType":"YulExpressionStatement","src":"6582:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6555:7:125","nodeType":"YulIdentifier","src":"6555:7:125"},{"name":"headStart","nativeSrc":"6564:9:125","nodeType":"YulIdentifier","src":"6564:9:125"}],"functionName":{"name":"sub","nativeSrc":"6551:3:125","nodeType":"YulIdentifier","src":"6551:3:125"},"nativeSrc":"6551:23:125","nodeType":"YulFunctionCall","src":"6551:23:125"},{"kind":"number","nativeSrc":"6576:2:125","nodeType":"YulLiteral","src":"6576:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6547:3:125","nodeType":"YulIdentifier","src":"6547:3:125"},"nativeSrc":"6547:32:125","nodeType":"YulFunctionCall","src":"6547:32:125"},"nativeSrc":"6544:52:125","nodeType":"YulIf","src":"6544:52:125"},{"nativeSrc":"6605:38:125","nodeType":"YulAssignment","src":"6605:38:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6633:9:125","nodeType":"YulIdentifier","src":"6633:9:125"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"6615:17:125","nodeType":"YulIdentifier","src":"6615:17:125"},"nativeSrc":"6615:28:125","nodeType":"YulFunctionCall","src":"6615:28:125"},"variableNames":[{"name":"value0","nativeSrc":"6605:6:125","nodeType":"YulIdentifier","src":"6605:6:125"}]},{"nativeSrc":"6652:46:125","nodeType":"YulVariableDeclaration","src":"6652:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6683:9:125","nodeType":"YulIdentifier","src":"6683:9:125"},{"kind":"number","nativeSrc":"6694:2:125","nodeType":"YulLiteral","src":"6694:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6679:3:125","nodeType":"YulIdentifier","src":"6679:3:125"},"nativeSrc":"6679:18:125","nodeType":"YulFunctionCall","src":"6679:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"6666:12:125","nodeType":"YulIdentifier","src":"6666:12:125"},"nativeSrc":"6666:32:125","nodeType":"YulFunctionCall","src":"6666:32:125"},"variables":[{"name":"offset","nativeSrc":"6656:6:125","nodeType":"YulTypedName","src":"6656:6:125","type":""}]},{"body":{"nativeSrc":"6741:16:125","nodeType":"YulBlock","src":"6741:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6750:1:125","nodeType":"YulLiteral","src":"6750:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6753:1:125","nodeType":"YulLiteral","src":"6753:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6743:6:125","nodeType":"YulIdentifier","src":"6743:6:125"},"nativeSrc":"6743:12:125","nodeType":"YulFunctionCall","src":"6743:12:125"},"nativeSrc":"6743:12:125","nodeType":"YulExpressionStatement","src":"6743:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"6713:6:125","nodeType":"YulIdentifier","src":"6713:6:125"},{"kind":"number","nativeSrc":"6721:18:125","nodeType":"YulLiteral","src":"6721:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6710:2:125","nodeType":"YulIdentifier","src":"6710:2:125"},"nativeSrc":"6710:30:125","nodeType":"YulFunctionCall","src":"6710:30:125"},"nativeSrc":"6707:50:125","nodeType":"YulIf","src":"6707:50:125"},{"nativeSrc":"6766:84:125","nodeType":"YulVariableDeclaration","src":"6766:84:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6822:9:125","nodeType":"YulIdentifier","src":"6822:9:125"},{"name":"offset","nativeSrc":"6833:6:125","nodeType":"YulIdentifier","src":"6833:6:125"}],"functionName":{"name":"add","nativeSrc":"6818:3:125","nodeType":"YulIdentifier","src":"6818:3:125"},"nativeSrc":"6818:22:125","nodeType":"YulFunctionCall","src":"6818:22:125"},{"name":"dataEnd","nativeSrc":"6842:7:125","nodeType":"YulIdentifier","src":"6842:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"6792:25:125","nodeType":"YulIdentifier","src":"6792:25:125"},"nativeSrc":"6792:58:125","nodeType":"YulFunctionCall","src":"6792:58:125"},"variables":[{"name":"value1_1","nativeSrc":"6770:8:125","nodeType":"YulTypedName","src":"6770:8:125","type":""},{"name":"value2_1","nativeSrc":"6780:8:125","nodeType":"YulTypedName","src":"6780:8:125","type":""}]},{"nativeSrc":"6859:18:125","nodeType":"YulAssignment","src":"6859:18:125","value":{"name":"value1_1","nativeSrc":"6869:8:125","nodeType":"YulIdentifier","src":"6869:8:125"},"variableNames":[{"name":"value1","nativeSrc":"6859:6:125","nodeType":"YulIdentifier","src":"6859:6:125"}]},{"nativeSrc":"6886:18:125","nodeType":"YulAssignment","src":"6886:18:125","value":{"name":"value2_1","nativeSrc":"6896:8:125","nodeType":"YulIdentifier","src":"6896:8:125"},"variableNames":[{"name":"value2","nativeSrc":"6886:6:125","nodeType":"YulIdentifier","src":"6886:6:125"}]}]},"name":"abi_decode_tuple_t_uint64t_string_calldata_ptr","nativeSrc":"6428:482:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6484:9:125","nodeType":"YulTypedName","src":"6484:9:125","type":""},{"name":"dataEnd","nativeSrc":"6495:7:125","nodeType":"YulTypedName","src":"6495:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6507:6:125","nodeType":"YulTypedName","src":"6507:6:125","type":""},{"name":"value1","nativeSrc":"6515:6:125","nodeType":"YulTypedName","src":"6515:6:125","type":""},{"name":"value2","nativeSrc":"6523:6:125","nodeType":"YulTypedName","src":"6523:6:125","type":""}],"src":"6428:482:125"},{"body":{"nativeSrc":"7010:92:125","nodeType":"YulBlock","src":"7010:92:125","statements":[{"nativeSrc":"7020:26:125","nodeType":"YulAssignment","src":"7020:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7032:9:125","nodeType":"YulIdentifier","src":"7032:9:125"},{"kind":"number","nativeSrc":"7043:2:125","nodeType":"YulLiteral","src":"7043:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7028:3:125","nodeType":"YulIdentifier","src":"7028:3:125"},"nativeSrc":"7028:18:125","nodeType":"YulFunctionCall","src":"7028:18:125"},"variableNames":[{"name":"tail","nativeSrc":"7020:4:125","nodeType":"YulIdentifier","src":"7020:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7062:9:125","nodeType":"YulIdentifier","src":"7062:9:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"7087:6:125","nodeType":"YulIdentifier","src":"7087:6:125"}],"functionName":{"name":"iszero","nativeSrc":"7080:6:125","nodeType":"YulIdentifier","src":"7080:6:125"},"nativeSrc":"7080:14:125","nodeType":"YulFunctionCall","src":"7080:14:125"}],"functionName":{"name":"iszero","nativeSrc":"7073:6:125","nodeType":"YulIdentifier","src":"7073:6:125"},"nativeSrc":"7073:22:125","nodeType":"YulFunctionCall","src":"7073:22:125"}],"functionName":{"name":"mstore","nativeSrc":"7055:6:125","nodeType":"YulIdentifier","src":"7055:6:125"},"nativeSrc":"7055:41:125","nodeType":"YulFunctionCall","src":"7055:41:125"},"nativeSrc":"7055:41:125","nodeType":"YulExpressionStatement","src":"7055:41:125"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"6915:187:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6979:9:125","nodeType":"YulTypedName","src":"6979:9:125","type":""},{"name":"value0","nativeSrc":"6990:6:125","nodeType":"YulTypedName","src":"6990:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7001:4:125","nodeType":"YulTypedName","src":"7001:4:125","type":""}],"src":"6915:187:125"},{"body":{"nativeSrc":"7192:171:125","nodeType":"YulBlock","src":"7192:171:125","statements":[{"body":{"nativeSrc":"7238:16:125","nodeType":"YulBlock","src":"7238:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7247:1:125","nodeType":"YulLiteral","src":"7247:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7250:1:125","nodeType":"YulLiteral","src":"7250:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7240:6:125","nodeType":"YulIdentifier","src":"7240:6:125"},"nativeSrc":"7240:12:125","nodeType":"YulFunctionCall","src":"7240:12:125"},"nativeSrc":"7240:12:125","nodeType":"YulExpressionStatement","src":"7240:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7213:7:125","nodeType":"YulIdentifier","src":"7213:7:125"},{"name":"headStart","nativeSrc":"7222:9:125","nodeType":"YulIdentifier","src":"7222:9:125"}],"functionName":{"name":"sub","nativeSrc":"7209:3:125","nodeType":"YulIdentifier","src":"7209:3:125"},"nativeSrc":"7209:23:125","nodeType":"YulFunctionCall","src":"7209:23:125"},{"kind":"number","nativeSrc":"7234:2:125","nodeType":"YulLiteral","src":"7234:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"7205:3:125","nodeType":"YulIdentifier","src":"7205:3:125"},"nativeSrc":"7205:32:125","nodeType":"YulFunctionCall","src":"7205:32:125"},"nativeSrc":"7202:52:125","nodeType":"YulIf","src":"7202:52:125"},{"nativeSrc":"7263:38:125","nodeType":"YulAssignment","src":"7263:38:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7291:9:125","nodeType":"YulIdentifier","src":"7291:9:125"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"7273:17:125","nodeType":"YulIdentifier","src":"7273:17:125"},"nativeSrc":"7273:28:125","nodeType":"YulFunctionCall","src":"7273:28:125"},"variableNames":[{"name":"value0","nativeSrc":"7263:6:125","nodeType":"YulIdentifier","src":"7263:6:125"}]},{"nativeSrc":"7310:47:125","nodeType":"YulAssignment","src":"7310:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7342:9:125","nodeType":"YulIdentifier","src":"7342:9:125"},{"kind":"number","nativeSrc":"7353:2:125","nodeType":"YulLiteral","src":"7353:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7338:3:125","nodeType":"YulIdentifier","src":"7338:3:125"},"nativeSrc":"7338:18:125","nodeType":"YulFunctionCall","src":"7338:18:125"}],"functionName":{"name":"abi_decode_uint32","nativeSrc":"7320:17:125","nodeType":"YulIdentifier","src":"7320:17:125"},"nativeSrc":"7320:37:125","nodeType":"YulFunctionCall","src":"7320:37:125"},"variableNames":[{"name":"value1","nativeSrc":"7310:6:125","nodeType":"YulIdentifier","src":"7310:6:125"}]}]},"name":"abi_decode_tuple_t_uint64t_uint32","nativeSrc":"7107:256:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7150:9:125","nodeType":"YulTypedName","src":"7150:9:125","type":""},{"name":"dataEnd","nativeSrc":"7161:7:125","nodeType":"YulTypedName","src":"7161:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7173:6:125","nodeType":"YulTypedName","src":"7173:6:125","type":""},{"name":"value1","nativeSrc":"7181:6:125","nodeType":"YulTypedName","src":"7181:6:125","type":""}],"src":"7107:256:125"},{"body":{"nativeSrc":"7491:562:125","nodeType":"YulBlock","src":"7491:562:125","statements":[{"body":{"nativeSrc":"7537:16:125","nodeType":"YulBlock","src":"7537:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7546:1:125","nodeType":"YulLiteral","src":"7546:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7549:1:125","nodeType":"YulLiteral","src":"7549:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7539:6:125","nodeType":"YulIdentifier","src":"7539:6:125"},"nativeSrc":"7539:12:125","nodeType":"YulFunctionCall","src":"7539:12:125"},"nativeSrc":"7539:12:125","nodeType":"YulExpressionStatement","src":"7539:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7512:7:125","nodeType":"YulIdentifier","src":"7512:7:125"},{"name":"headStart","nativeSrc":"7521:9:125","nodeType":"YulIdentifier","src":"7521:9:125"}],"functionName":{"name":"sub","nativeSrc":"7508:3:125","nodeType":"YulIdentifier","src":"7508:3:125"},"nativeSrc":"7508:23:125","nodeType":"YulFunctionCall","src":"7508:23:125"},{"kind":"number","nativeSrc":"7533:2:125","nodeType":"YulLiteral","src":"7533:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"7504:3:125","nodeType":"YulIdentifier","src":"7504:3:125"},"nativeSrc":"7504:32:125","nodeType":"YulFunctionCall","src":"7504:32:125"},"nativeSrc":"7501:52:125","nodeType":"YulIf","src":"7501:52:125"},{"nativeSrc":"7562:36:125","nodeType":"YulVariableDeclaration","src":"7562:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7588:9:125","nodeType":"YulIdentifier","src":"7588:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"7575:12:125","nodeType":"YulIdentifier","src":"7575:12:125"},"nativeSrc":"7575:23:125","nodeType":"YulFunctionCall","src":"7575:23:125"},"variables":[{"name":"value","nativeSrc":"7566:5:125","nodeType":"YulTypedName","src":"7566:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7632:5:125","nodeType":"YulIdentifier","src":"7632:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7607:24:125","nodeType":"YulIdentifier","src":"7607:24:125"},"nativeSrc":"7607:31:125","nodeType":"YulFunctionCall","src":"7607:31:125"},"nativeSrc":"7607:31:125","nodeType":"YulExpressionStatement","src":"7607:31:125"},{"nativeSrc":"7647:15:125","nodeType":"YulAssignment","src":"7647:15:125","value":{"name":"value","nativeSrc":"7657:5:125","nodeType":"YulIdentifier","src":"7657:5:125"},"variableNames":[{"name":"value0","nativeSrc":"7647:6:125","nodeType":"YulIdentifier","src":"7647:6:125"}]},{"nativeSrc":"7671:47:125","nodeType":"YulVariableDeclaration","src":"7671:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7703:9:125","nodeType":"YulIdentifier","src":"7703:9:125"},{"kind":"number","nativeSrc":"7714:2:125","nodeType":"YulLiteral","src":"7714:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7699:3:125","nodeType":"YulIdentifier","src":"7699:3:125"},"nativeSrc":"7699:18:125","nodeType":"YulFunctionCall","src":"7699:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"7686:12:125","nodeType":"YulIdentifier","src":"7686:12:125"},"nativeSrc":"7686:32:125","nodeType":"YulFunctionCall","src":"7686:32:125"},"variables":[{"name":"value_1","nativeSrc":"7675:7:125","nodeType":"YulTypedName","src":"7675:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"7752:7:125","nodeType":"YulIdentifier","src":"7752:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7727:24:125","nodeType":"YulIdentifier","src":"7727:24:125"},"nativeSrc":"7727:33:125","nodeType":"YulFunctionCall","src":"7727:33:125"},"nativeSrc":"7727:33:125","nodeType":"YulExpressionStatement","src":"7727:33:125"},{"nativeSrc":"7769:17:125","nodeType":"YulAssignment","src":"7769:17:125","value":{"name":"value_1","nativeSrc":"7779:7:125","nodeType":"YulIdentifier","src":"7779:7:125"},"variableNames":[{"name":"value1","nativeSrc":"7769:6:125","nodeType":"YulIdentifier","src":"7769:6:125"}]},{"nativeSrc":"7795:46:125","nodeType":"YulVariableDeclaration","src":"7795:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7826:9:125","nodeType":"YulIdentifier","src":"7826:9:125"},{"kind":"number","nativeSrc":"7837:2:125","nodeType":"YulLiteral","src":"7837:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7822:3:125","nodeType":"YulIdentifier","src":"7822:3:125"},"nativeSrc":"7822:18:125","nodeType":"YulFunctionCall","src":"7822:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"7809:12:125","nodeType":"YulIdentifier","src":"7809:12:125"},"nativeSrc":"7809:32:125","nodeType":"YulFunctionCall","src":"7809:32:125"},"variables":[{"name":"offset","nativeSrc":"7799:6:125","nodeType":"YulTypedName","src":"7799:6:125","type":""}]},{"body":{"nativeSrc":"7884:16:125","nodeType":"YulBlock","src":"7884:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7893:1:125","nodeType":"YulLiteral","src":"7893:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7896:1:125","nodeType":"YulLiteral","src":"7896:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7886:6:125","nodeType":"YulIdentifier","src":"7886:6:125"},"nativeSrc":"7886:12:125","nodeType":"YulFunctionCall","src":"7886:12:125"},"nativeSrc":"7886:12:125","nodeType":"YulExpressionStatement","src":"7886:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"7856:6:125","nodeType":"YulIdentifier","src":"7856:6:125"},{"kind":"number","nativeSrc":"7864:18:125","nodeType":"YulLiteral","src":"7864:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7853:2:125","nodeType":"YulIdentifier","src":"7853:2:125"},"nativeSrc":"7853:30:125","nodeType":"YulFunctionCall","src":"7853:30:125"},"nativeSrc":"7850:50:125","nodeType":"YulIf","src":"7850:50:125"},{"nativeSrc":"7909:84:125","nodeType":"YulVariableDeclaration","src":"7909:84:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7965:9:125","nodeType":"YulIdentifier","src":"7965:9:125"},{"name":"offset","nativeSrc":"7976:6:125","nodeType":"YulIdentifier","src":"7976:6:125"}],"functionName":{"name":"add","nativeSrc":"7961:3:125","nodeType":"YulIdentifier","src":"7961:3:125"},"nativeSrc":"7961:22:125","nodeType":"YulFunctionCall","src":"7961:22:125"},{"name":"dataEnd","nativeSrc":"7985:7:125","nodeType":"YulIdentifier","src":"7985:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"7935:25:125","nodeType":"YulIdentifier","src":"7935:25:125"},"nativeSrc":"7935:58:125","nodeType":"YulFunctionCall","src":"7935:58:125"},"variables":[{"name":"value2_1","nativeSrc":"7913:8:125","nodeType":"YulTypedName","src":"7913:8:125","type":""},{"name":"value3_1","nativeSrc":"7923:8:125","nodeType":"YulTypedName","src":"7923:8:125","type":""}]},{"nativeSrc":"8002:18:125","nodeType":"YulAssignment","src":"8002:18:125","value":{"name":"value2_1","nativeSrc":"8012:8:125","nodeType":"YulIdentifier","src":"8012:8:125"},"variableNames":[{"name":"value2","nativeSrc":"8002:6:125","nodeType":"YulIdentifier","src":"8002:6:125"}]},{"nativeSrc":"8029:18:125","nodeType":"YulAssignment","src":"8029:18:125","value":{"name":"value3_1","nativeSrc":"8039:8:125","nodeType":"YulIdentifier","src":"8039:8:125"},"variableNames":[{"name":"value3","nativeSrc":"8029:6:125","nodeType":"YulIdentifier","src":"8029:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_bytes_calldata_ptr","nativeSrc":"7368:685:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7433:9:125","nodeType":"YulTypedName","src":"7433:9:125","type":""},{"name":"dataEnd","nativeSrc":"7444:7:125","nodeType":"YulTypedName","src":"7444:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7456:6:125","nodeType":"YulTypedName","src":"7456:6:125","type":""},{"name":"value1","nativeSrc":"7464:6:125","nodeType":"YulTypedName","src":"7464:6:125","type":""},{"name":"value2","nativeSrc":"7472:6:125","nodeType":"YulTypedName","src":"7472:6:125","type":""},{"name":"value3","nativeSrc":"7480:6:125","nodeType":"YulTypedName","src":"7480:6:125","type":""}],"src":"7368:685:125"},{"body":{"nativeSrc":"8159:76:125","nodeType":"YulBlock","src":"8159:76:125","statements":[{"nativeSrc":"8169:26:125","nodeType":"YulAssignment","src":"8169:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8181:9:125","nodeType":"YulIdentifier","src":"8181:9:125"},{"kind":"number","nativeSrc":"8192:2:125","nodeType":"YulLiteral","src":"8192:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8177:3:125","nodeType":"YulIdentifier","src":"8177:3:125"},"nativeSrc":"8177:18:125","nodeType":"YulFunctionCall","src":"8177:18:125"},"variableNames":[{"name":"tail","nativeSrc":"8169:4:125","nodeType":"YulIdentifier","src":"8169:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8211:9:125","nodeType":"YulIdentifier","src":"8211:9:125"},{"name":"value0","nativeSrc":"8222:6:125","nodeType":"YulIdentifier","src":"8222:6:125"}],"functionName":{"name":"mstore","nativeSrc":"8204:6:125","nodeType":"YulIdentifier","src":"8204:6:125"},"nativeSrc":"8204:25:125","nodeType":"YulFunctionCall","src":"8204:25:125"},"nativeSrc":"8204:25:125","nodeType":"YulExpressionStatement","src":"8204:25:125"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"8058:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8128:9:125","nodeType":"YulTypedName","src":"8128:9:125","type":""},{"name":"value0","nativeSrc":"8139:6:125","nodeType":"YulTypedName","src":"8139:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8150:4:125","nodeType":"YulTypedName","src":"8150:4:125","type":""}],"src":"8058:177:125"},{"body":{"nativeSrc":"8356:331:125","nodeType":"YulBlock","src":"8356:331:125","statements":[{"body":{"nativeSrc":"8402:16:125","nodeType":"YulBlock","src":"8402:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8411:1:125","nodeType":"YulLiteral","src":"8411:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8414:1:125","nodeType":"YulLiteral","src":"8414:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8404:6:125","nodeType":"YulIdentifier","src":"8404:6:125"},"nativeSrc":"8404:12:125","nodeType":"YulFunctionCall","src":"8404:12:125"},"nativeSrc":"8404:12:125","nodeType":"YulExpressionStatement","src":"8404:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8377:7:125","nodeType":"YulIdentifier","src":"8377:7:125"},{"name":"headStart","nativeSrc":"8386:9:125","nodeType":"YulIdentifier","src":"8386:9:125"}],"functionName":{"name":"sub","nativeSrc":"8373:3:125","nodeType":"YulIdentifier","src":"8373:3:125"},"nativeSrc":"8373:23:125","nodeType":"YulFunctionCall","src":"8373:23:125"},{"kind":"number","nativeSrc":"8398:2:125","nodeType":"YulLiteral","src":"8398:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8369:3:125","nodeType":"YulIdentifier","src":"8369:3:125"},"nativeSrc":"8369:32:125","nodeType":"YulFunctionCall","src":"8369:32:125"},"nativeSrc":"8366:52:125","nodeType":"YulIf","src":"8366:52:125"},{"nativeSrc":"8427:37:125","nodeType":"YulVariableDeclaration","src":"8427:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8454:9:125","nodeType":"YulIdentifier","src":"8454:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"8441:12:125","nodeType":"YulIdentifier","src":"8441:12:125"},"nativeSrc":"8441:23:125","nodeType":"YulFunctionCall","src":"8441:23:125"},"variables":[{"name":"offset","nativeSrc":"8431:6:125","nodeType":"YulTypedName","src":"8431:6:125","type":""}]},{"body":{"nativeSrc":"8507:16:125","nodeType":"YulBlock","src":"8507:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8516:1:125","nodeType":"YulLiteral","src":"8516:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8519:1:125","nodeType":"YulLiteral","src":"8519:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8509:6:125","nodeType":"YulIdentifier","src":"8509:6:125"},"nativeSrc":"8509:12:125","nodeType":"YulFunctionCall","src":"8509:12:125"},"nativeSrc":"8509:12:125","nodeType":"YulExpressionStatement","src":"8509:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"8479:6:125","nodeType":"YulIdentifier","src":"8479:6:125"},{"kind":"number","nativeSrc":"8487:18:125","nodeType":"YulLiteral","src":"8487:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8476:2:125","nodeType":"YulIdentifier","src":"8476:2:125"},"nativeSrc":"8476:30:125","nodeType":"YulFunctionCall","src":"8476:30:125"},"nativeSrc":"8473:50:125","nodeType":"YulIf","src":"8473:50:125"},{"nativeSrc":"8532:95:125","nodeType":"YulVariableDeclaration","src":"8532:95:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8599:9:125","nodeType":"YulIdentifier","src":"8599:9:125"},{"name":"offset","nativeSrc":"8610:6:125","nodeType":"YulIdentifier","src":"8610:6:125"}],"functionName":{"name":"add","nativeSrc":"8595:3:125","nodeType":"YulIdentifier","src":"8595:3:125"},"nativeSrc":"8595:22:125","nodeType":"YulFunctionCall","src":"8595:22:125"},{"name":"dataEnd","nativeSrc":"8619:7:125","nodeType":"YulIdentifier","src":"8619:7:125"}],"functionName":{"name":"abi_decode_array_bytes4_dyn_calldata","nativeSrc":"8558:36:125","nodeType":"YulIdentifier","src":"8558:36:125"},"nativeSrc":"8558:69:125","nodeType":"YulFunctionCall","src":"8558:69:125"},"variables":[{"name":"value0_1","nativeSrc":"8536:8:125","nodeType":"YulTypedName","src":"8536:8:125","type":""},{"name":"value1_1","nativeSrc":"8546:8:125","nodeType":"YulTypedName","src":"8546:8:125","type":""}]},{"nativeSrc":"8636:18:125","nodeType":"YulAssignment","src":"8636:18:125","value":{"name":"value0_1","nativeSrc":"8646:8:125","nodeType":"YulIdentifier","src":"8646:8:125"},"variableNames":[{"name":"value0","nativeSrc":"8636:6:125","nodeType":"YulIdentifier","src":"8636:6:125"}]},{"nativeSrc":"8663:18:125","nodeType":"YulAssignment","src":"8663:18:125","value":{"name":"value1_1","nativeSrc":"8673:8:125","nodeType":"YulIdentifier","src":"8673:8:125"},"variableNames":[{"name":"value1","nativeSrc":"8663:6:125","nodeType":"YulIdentifier","src":"8663:6:125"}]}]},"name":"abi_decode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","nativeSrc":"8240:447:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8314:9:125","nodeType":"YulTypedName","src":"8314:9:125","type":""},{"name":"dataEnd","nativeSrc":"8325:7:125","nodeType":"YulTypedName","src":"8325:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8337:6:125","nodeType":"YulTypedName","src":"8337:6:125","type":""},{"name":"value1","nativeSrc":"8345:6:125","nodeType":"YulTypedName","src":"8345:6:125","type":""}],"src":"8240:447:125"},{"body":{"nativeSrc":"8861:847:125","nodeType":"YulBlock","src":"8861:847:125","statements":[{"nativeSrc":"8871:32:125","nodeType":"YulVariableDeclaration","src":"8871:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8889:9:125","nodeType":"YulIdentifier","src":"8889:9:125"},{"kind":"number","nativeSrc":"8900:2:125","nodeType":"YulLiteral","src":"8900:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8885:3:125","nodeType":"YulIdentifier","src":"8885:3:125"},"nativeSrc":"8885:18:125","nodeType":"YulFunctionCall","src":"8885:18:125"},"variables":[{"name":"tail_1","nativeSrc":"8875:6:125","nodeType":"YulTypedName","src":"8875:6:125","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8919:9:125","nodeType":"YulIdentifier","src":"8919:9:125"},{"kind":"number","nativeSrc":"8930:2:125","nodeType":"YulLiteral","src":"8930:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"8912:6:125","nodeType":"YulIdentifier","src":"8912:6:125"},"nativeSrc":"8912:21:125","nodeType":"YulFunctionCall","src":"8912:21:125"},"nativeSrc":"8912:21:125","nodeType":"YulExpressionStatement","src":"8912:21:125"},{"nativeSrc":"8942:17:125","nodeType":"YulVariableDeclaration","src":"8942:17:125","value":{"name":"tail_1","nativeSrc":"8953:6:125","nodeType":"YulIdentifier","src":"8953:6:125"},"variables":[{"name":"pos","nativeSrc":"8946:3:125","nodeType":"YulTypedName","src":"8946:3:125","type":""}]},{"nativeSrc":"8968:27:125","nodeType":"YulVariableDeclaration","src":"8968:27:125","value":{"arguments":[{"name":"value0","nativeSrc":"8988:6:125","nodeType":"YulIdentifier","src":"8988:6:125"}],"functionName":{"name":"mload","nativeSrc":"8982:5:125","nodeType":"YulIdentifier","src":"8982:5:125"},"nativeSrc":"8982:13:125","nodeType":"YulFunctionCall","src":"8982:13:125"},"variables":[{"name":"length","nativeSrc":"8972:6:125","nodeType":"YulTypedName","src":"8972:6:125","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"9011:6:125","nodeType":"YulIdentifier","src":"9011:6:125"},{"name":"length","nativeSrc":"9019:6:125","nodeType":"YulIdentifier","src":"9019:6:125"}],"functionName":{"name":"mstore","nativeSrc":"9004:6:125","nodeType":"YulIdentifier","src":"9004:6:125"},"nativeSrc":"9004:22:125","nodeType":"YulFunctionCall","src":"9004:22:125"},"nativeSrc":"9004:22:125","nodeType":"YulExpressionStatement","src":"9004:22:125"},{"nativeSrc":"9035:25:125","nodeType":"YulAssignment","src":"9035:25:125","value":{"arguments":[{"name":"headStart","nativeSrc":"9046:9:125","nodeType":"YulIdentifier","src":"9046:9:125"},{"kind":"number","nativeSrc":"9057:2:125","nodeType":"YulLiteral","src":"9057:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9042:3:125","nodeType":"YulIdentifier","src":"9042:3:125"},"nativeSrc":"9042:18:125","nodeType":"YulFunctionCall","src":"9042:18:125"},"variableNames":[{"name":"pos","nativeSrc":"9035:3:125","nodeType":"YulIdentifier","src":"9035:3:125"}]},{"nativeSrc":"9069:53:125","nodeType":"YulVariableDeclaration","src":"9069:53:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9091:9:125","nodeType":"YulIdentifier","src":"9091:9:125"},{"arguments":[{"kind":"number","nativeSrc":"9106:1:125","nodeType":"YulLiteral","src":"9106:1:125","type":"","value":"5"},{"name":"length","nativeSrc":"9109:6:125","nodeType":"YulIdentifier","src":"9109:6:125"}],"functionName":{"name":"shl","nativeSrc":"9102:3:125","nodeType":"YulIdentifier","src":"9102:3:125"},"nativeSrc":"9102:14:125","nodeType":"YulFunctionCall","src":"9102:14:125"}],"functionName":{"name":"add","nativeSrc":"9087:3:125","nodeType":"YulIdentifier","src":"9087:3:125"},"nativeSrc":"9087:30:125","nodeType":"YulFunctionCall","src":"9087:30:125"},{"kind":"number","nativeSrc":"9119:2:125","nodeType":"YulLiteral","src":"9119:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9083:3:125","nodeType":"YulIdentifier","src":"9083:3:125"},"nativeSrc":"9083:39:125","nodeType":"YulFunctionCall","src":"9083:39:125"},"variables":[{"name":"tail_2","nativeSrc":"9073:6:125","nodeType":"YulTypedName","src":"9073:6:125","type":""}]},{"nativeSrc":"9131:29:125","nodeType":"YulVariableDeclaration","src":"9131:29:125","value":{"arguments":[{"name":"value0","nativeSrc":"9149:6:125","nodeType":"YulIdentifier","src":"9149:6:125"},{"kind":"number","nativeSrc":"9157:2:125","nodeType":"YulLiteral","src":"9157:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9145:3:125","nodeType":"YulIdentifier","src":"9145:3:125"},"nativeSrc":"9145:15:125","nodeType":"YulFunctionCall","src":"9145:15:125"},"variables":[{"name":"srcPtr","nativeSrc":"9135:6:125","nodeType":"YulTypedName","src":"9135:6:125","type":""}]},{"nativeSrc":"9169:10:125","nodeType":"YulVariableDeclaration","src":"9169:10:125","value":{"kind":"number","nativeSrc":"9178:1:125","nodeType":"YulLiteral","src":"9178:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"9173:1:125","nodeType":"YulTypedName","src":"9173:1:125","type":""}]},{"body":{"nativeSrc":"9237:442:125","nodeType":"YulBlock","src":"9237:442:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"9258:3:125","nodeType":"YulIdentifier","src":"9258:3:125"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"9271:6:125","nodeType":"YulIdentifier","src":"9271:6:125"},{"name":"headStart","nativeSrc":"9279:9:125","nodeType":"YulIdentifier","src":"9279:9:125"}],"functionName":{"name":"sub","nativeSrc":"9267:3:125","nodeType":"YulIdentifier","src":"9267:3:125"},"nativeSrc":"9267:22:125","nodeType":"YulFunctionCall","src":"9267:22:125"},{"arguments":[{"kind":"number","nativeSrc":"9295:2:125","nodeType":"YulLiteral","src":"9295:2:125","type":"","value":"63"}],"functionName":{"name":"not","nativeSrc":"9291:3:125","nodeType":"YulIdentifier","src":"9291:3:125"},"nativeSrc":"9291:7:125","nodeType":"YulFunctionCall","src":"9291:7:125"}],"functionName":{"name":"add","nativeSrc":"9263:3:125","nodeType":"YulIdentifier","src":"9263:3:125"},"nativeSrc":"9263:36:125","nodeType":"YulFunctionCall","src":"9263:36:125"}],"functionName":{"name":"mstore","nativeSrc":"9251:6:125","nodeType":"YulIdentifier","src":"9251:6:125"},"nativeSrc":"9251:49:125","nodeType":"YulFunctionCall","src":"9251:49:125"},"nativeSrc":"9251:49:125","nodeType":"YulExpressionStatement","src":"9251:49:125"},{"nativeSrc":"9313:23:125","nodeType":"YulVariableDeclaration","src":"9313:23:125","value":{"arguments":[{"name":"srcPtr","nativeSrc":"9329:6:125","nodeType":"YulIdentifier","src":"9329:6:125"}],"functionName":{"name":"mload","nativeSrc":"9323:5:125","nodeType":"YulIdentifier","src":"9323:5:125"},"nativeSrc":"9323:13:125","nodeType":"YulFunctionCall","src":"9323:13:125"},"variables":[{"name":"_1","nativeSrc":"9317:2:125","nodeType":"YulTypedName","src":"9317:2:125","type":""}]},{"nativeSrc":"9349:25:125","nodeType":"YulVariableDeclaration","src":"9349:25:125","value":{"arguments":[{"name":"_1","nativeSrc":"9371:2:125","nodeType":"YulIdentifier","src":"9371:2:125"}],"functionName":{"name":"mload","nativeSrc":"9365:5:125","nodeType":"YulIdentifier","src":"9365:5:125"},"nativeSrc":"9365:9:125","nodeType":"YulFunctionCall","src":"9365:9:125"},"variables":[{"name":"length_1","nativeSrc":"9353:8:125","nodeType":"YulTypedName","src":"9353:8:125","type":""}]},{"expression":{"arguments":[{"name":"tail_2","nativeSrc":"9394:6:125","nodeType":"YulIdentifier","src":"9394:6:125"},{"name":"length_1","nativeSrc":"9402:8:125","nodeType":"YulIdentifier","src":"9402:8:125"}],"functionName":{"name":"mstore","nativeSrc":"9387:6:125","nodeType":"YulIdentifier","src":"9387:6:125"},"nativeSrc":"9387:24:125","nodeType":"YulFunctionCall","src":"9387:24:125"},"nativeSrc":"9387:24:125","nodeType":"YulExpressionStatement","src":"9387:24:125"},{"expression":{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"9434:6:125","nodeType":"YulIdentifier","src":"9434:6:125"},{"kind":"number","nativeSrc":"9442:2:125","nodeType":"YulLiteral","src":"9442:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9430:3:125","nodeType":"YulIdentifier","src":"9430:3:125"},"nativeSrc":"9430:15:125","nodeType":"YulFunctionCall","src":"9430:15:125"},{"arguments":[{"name":"_1","nativeSrc":"9451:2:125","nodeType":"YulIdentifier","src":"9451:2:125"},{"kind":"number","nativeSrc":"9455:2:125","nodeType":"YulLiteral","src":"9455:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9447:3:125","nodeType":"YulIdentifier","src":"9447:3:125"},"nativeSrc":"9447:11:125","nodeType":"YulFunctionCall","src":"9447:11:125"},{"name":"length_1","nativeSrc":"9460:8:125","nodeType":"YulIdentifier","src":"9460:8:125"}],"functionName":{"name":"mcopy","nativeSrc":"9424:5:125","nodeType":"YulIdentifier","src":"9424:5:125"},"nativeSrc":"9424:45:125","nodeType":"YulFunctionCall","src":"9424:45:125"},"nativeSrc":"9424:45:125","nodeType":"YulExpressionStatement","src":"9424:45:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"9497:6:125","nodeType":"YulIdentifier","src":"9497:6:125"},{"name":"length_1","nativeSrc":"9505:8:125","nodeType":"YulIdentifier","src":"9505:8:125"}],"functionName":{"name":"add","nativeSrc":"9493:3:125","nodeType":"YulIdentifier","src":"9493:3:125"},"nativeSrc":"9493:21:125","nodeType":"YulFunctionCall","src":"9493:21:125"},{"kind":"number","nativeSrc":"9516:2:125","nodeType":"YulLiteral","src":"9516:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9489:3:125","nodeType":"YulIdentifier","src":"9489:3:125"},"nativeSrc":"9489:30:125","nodeType":"YulFunctionCall","src":"9489:30:125"},{"kind":"number","nativeSrc":"9521:1:125","nodeType":"YulLiteral","src":"9521:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"9482:6:125","nodeType":"YulIdentifier","src":"9482:6:125"},"nativeSrc":"9482:41:125","nodeType":"YulFunctionCall","src":"9482:41:125"},"nativeSrc":"9482:41:125","nodeType":"YulExpressionStatement","src":"9482:41:125"},{"nativeSrc":"9536:63:125","nodeType":"YulAssignment","src":"9536:63:125","value":{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"9554:6:125","nodeType":"YulIdentifier","src":"9554:6:125"},{"arguments":[{"arguments":[{"name":"length_1","nativeSrc":"9570:8:125","nodeType":"YulIdentifier","src":"9570:8:125"},{"kind":"number","nativeSrc":"9580:2:125","nodeType":"YulLiteral","src":"9580:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"9566:3:125","nodeType":"YulIdentifier","src":"9566:3:125"},"nativeSrc":"9566:17:125","nodeType":"YulFunctionCall","src":"9566:17:125"},{"arguments":[{"kind":"number","nativeSrc":"9589:2:125","nodeType":"YulLiteral","src":"9589:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"9585:3:125","nodeType":"YulIdentifier","src":"9585:3:125"},"nativeSrc":"9585:7:125","nodeType":"YulFunctionCall","src":"9585:7:125"}],"functionName":{"name":"and","nativeSrc":"9562:3:125","nodeType":"YulIdentifier","src":"9562:3:125"},"nativeSrc":"9562:31:125","nodeType":"YulFunctionCall","src":"9562:31:125"}],"functionName":{"name":"add","nativeSrc":"9550:3:125","nodeType":"YulIdentifier","src":"9550:3:125"},"nativeSrc":"9550:44:125","nodeType":"YulFunctionCall","src":"9550:44:125"},{"kind":"number","nativeSrc":"9596:2:125","nodeType":"YulLiteral","src":"9596:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9546:3:125","nodeType":"YulIdentifier","src":"9546:3:125"},"nativeSrc":"9546:53:125","nodeType":"YulFunctionCall","src":"9546:53:125"},"variableNames":[{"name":"tail_2","nativeSrc":"9536:6:125","nodeType":"YulIdentifier","src":"9536:6:125"}]},{"nativeSrc":"9612:25:125","nodeType":"YulAssignment","src":"9612:25:125","value":{"arguments":[{"name":"srcPtr","nativeSrc":"9626:6:125","nodeType":"YulIdentifier","src":"9626:6:125"},{"kind":"number","nativeSrc":"9634:2:125","nodeType":"YulLiteral","src":"9634:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9622:3:125","nodeType":"YulIdentifier","src":"9622:3:125"},"nativeSrc":"9622:15:125","nodeType":"YulFunctionCall","src":"9622:15:125"},"variableNames":[{"name":"srcPtr","nativeSrc":"9612:6:125","nodeType":"YulIdentifier","src":"9612:6:125"}]},{"nativeSrc":"9650:19:125","nodeType":"YulAssignment","src":"9650:19:125","value":{"arguments":[{"name":"pos","nativeSrc":"9661:3:125","nodeType":"YulIdentifier","src":"9661:3:125"},{"kind":"number","nativeSrc":"9666:2:125","nodeType":"YulLiteral","src":"9666:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9657:3:125","nodeType":"YulIdentifier","src":"9657:3:125"},"nativeSrc":"9657:12:125","nodeType":"YulFunctionCall","src":"9657:12:125"},"variableNames":[{"name":"pos","nativeSrc":"9650:3:125","nodeType":"YulIdentifier","src":"9650:3:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"9199:1:125","nodeType":"YulIdentifier","src":"9199:1:125"},{"name":"length","nativeSrc":"9202:6:125","nodeType":"YulIdentifier","src":"9202:6:125"}],"functionName":{"name":"lt","nativeSrc":"9196:2:125","nodeType":"YulIdentifier","src":"9196:2:125"},"nativeSrc":"9196:13:125","nodeType":"YulFunctionCall","src":"9196:13:125"},"nativeSrc":"9188:491:125","nodeType":"YulForLoop","post":{"nativeSrc":"9210:18:125","nodeType":"YulBlock","src":"9210:18:125","statements":[{"nativeSrc":"9212:14:125","nodeType":"YulAssignment","src":"9212:14:125","value":{"arguments":[{"name":"i","nativeSrc":"9221:1:125","nodeType":"YulIdentifier","src":"9221:1:125"},{"kind":"number","nativeSrc":"9224:1:125","nodeType":"YulLiteral","src":"9224:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"9217:3:125","nodeType":"YulIdentifier","src":"9217:3:125"},"nativeSrc":"9217:9:125","nodeType":"YulFunctionCall","src":"9217:9:125"},"variableNames":[{"name":"i","nativeSrc":"9212:1:125","nodeType":"YulIdentifier","src":"9212:1:125"}]}]},"pre":{"nativeSrc":"9192:3:125","nodeType":"YulBlock","src":"9192:3:125","statements":[]},"src":"9188:491:125"},{"nativeSrc":"9688:14:125","nodeType":"YulAssignment","src":"9688:14:125","value":{"name":"tail_2","nativeSrc":"9696:6:125","nodeType":"YulIdentifier","src":"9696:6:125"},"variableNames":[{"name":"tail","nativeSrc":"9688:4:125","nodeType":"YulIdentifier","src":"9688:4:125"}]}]},"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:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8830:9:125","nodeType":"YulTypedName","src":"8830:9:125","type":""},{"name":"value0","nativeSrc":"8841:6:125","nodeType":"YulTypedName","src":"8841:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8852:4:125","nodeType":"YulTypedName","src":"8852:4:125","type":""}],"src":"8692:1016:125"},{"body":{"nativeSrc":"9816:424:125","nodeType":"YulBlock","src":"9816:424:125","statements":[{"body":{"nativeSrc":"9862:16:125","nodeType":"YulBlock","src":"9862:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9871:1:125","nodeType":"YulLiteral","src":"9871:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9874:1:125","nodeType":"YulLiteral","src":"9874:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9864:6:125","nodeType":"YulIdentifier","src":"9864:6:125"},"nativeSrc":"9864:12:125","nodeType":"YulFunctionCall","src":"9864:12:125"},"nativeSrc":"9864:12:125","nodeType":"YulExpressionStatement","src":"9864:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9837:7:125","nodeType":"YulIdentifier","src":"9837:7:125"},{"name":"headStart","nativeSrc":"9846:9:125","nodeType":"YulIdentifier","src":"9846:9:125"}],"functionName":{"name":"sub","nativeSrc":"9833:3:125","nodeType":"YulIdentifier","src":"9833:3:125"},"nativeSrc":"9833:23:125","nodeType":"YulFunctionCall","src":"9833:23:125"},{"kind":"number","nativeSrc":"9858:2:125","nodeType":"YulLiteral","src":"9858:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"9829:3:125","nodeType":"YulIdentifier","src":"9829:3:125"},"nativeSrc":"9829:32:125","nodeType":"YulFunctionCall","src":"9829:32:125"},"nativeSrc":"9826:52:125","nodeType":"YulIf","src":"9826:52:125"},{"nativeSrc":"9887:36:125","nodeType":"YulVariableDeclaration","src":"9887:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"9913:9:125","nodeType":"YulIdentifier","src":"9913:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"9900:12:125","nodeType":"YulIdentifier","src":"9900:12:125"},"nativeSrc":"9900:23:125","nodeType":"YulFunctionCall","src":"9900:23:125"},"variables":[{"name":"value","nativeSrc":"9891:5:125","nodeType":"YulTypedName","src":"9891:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"9957:5:125","nodeType":"YulIdentifier","src":"9957:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"9932:24:125","nodeType":"YulIdentifier","src":"9932:24:125"},"nativeSrc":"9932:31:125","nodeType":"YulFunctionCall","src":"9932:31:125"},"nativeSrc":"9932:31:125","nodeType":"YulExpressionStatement","src":"9932:31:125"},{"nativeSrc":"9972:15:125","nodeType":"YulAssignment","src":"9972:15:125","value":{"name":"value","nativeSrc":"9982:5:125","nodeType":"YulIdentifier","src":"9982:5:125"},"variableNames":[{"name":"value0","nativeSrc":"9972:6:125","nodeType":"YulIdentifier","src":"9972:6:125"}]},{"nativeSrc":"9996:47:125","nodeType":"YulVariableDeclaration","src":"9996:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10028:9:125","nodeType":"YulIdentifier","src":"10028:9:125"},{"kind":"number","nativeSrc":"10039:2:125","nodeType":"YulLiteral","src":"10039:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10024:3:125","nodeType":"YulIdentifier","src":"10024:3:125"},"nativeSrc":"10024:18:125","nodeType":"YulFunctionCall","src":"10024:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"10011:12:125","nodeType":"YulIdentifier","src":"10011:12:125"},"nativeSrc":"10011:32:125","nodeType":"YulFunctionCall","src":"10011:32:125"},"variables":[{"name":"value_1","nativeSrc":"10000:7:125","nodeType":"YulTypedName","src":"10000:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"10077:7:125","nodeType":"YulIdentifier","src":"10077:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10052:24:125","nodeType":"YulIdentifier","src":"10052:24:125"},"nativeSrc":"10052:33:125","nodeType":"YulFunctionCall","src":"10052:33:125"},"nativeSrc":"10052:33:125","nodeType":"YulExpressionStatement","src":"10052:33:125"},{"nativeSrc":"10094:17:125","nodeType":"YulAssignment","src":"10094:17:125","value":{"name":"value_1","nativeSrc":"10104:7:125","nodeType":"YulIdentifier","src":"10104:7:125"},"variableNames":[{"name":"value1","nativeSrc":"10094:6:125","nodeType":"YulIdentifier","src":"10094:6:125"}]},{"nativeSrc":"10120:47:125","nodeType":"YulVariableDeclaration","src":"10120:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10152:9:125","nodeType":"YulIdentifier","src":"10152:9:125"},{"kind":"number","nativeSrc":"10163:2:125","nodeType":"YulLiteral","src":"10163:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10148:3:125","nodeType":"YulIdentifier","src":"10148:3:125"},"nativeSrc":"10148:18:125","nodeType":"YulFunctionCall","src":"10148:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"10135:12:125","nodeType":"YulIdentifier","src":"10135:12:125"},"nativeSrc":"10135:32:125","nodeType":"YulFunctionCall","src":"10135:32:125"},"variables":[{"name":"value_2","nativeSrc":"10124:7:125","nodeType":"YulTypedName","src":"10124:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"10200:7:125","nodeType":"YulIdentifier","src":"10200:7:125"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"10176:23:125","nodeType":"YulIdentifier","src":"10176:23:125"},"nativeSrc":"10176:32:125","nodeType":"YulFunctionCall","src":"10176:32:125"},"nativeSrc":"10176:32:125","nodeType":"YulExpressionStatement","src":"10176:32:125"},{"nativeSrc":"10217:17:125","nodeType":"YulAssignment","src":"10217:17:125","value":{"name":"value_2","nativeSrc":"10227:7:125","nodeType":"YulIdentifier","src":"10227:7:125"},"variableNames":[{"name":"value2","nativeSrc":"10217:6:125","nodeType":"YulIdentifier","src":"10217:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_bytes4","nativeSrc":"9713:527:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9766:9:125","nodeType":"YulTypedName","src":"9766:9:125","type":""},{"name":"dataEnd","nativeSrc":"9777:7:125","nodeType":"YulTypedName","src":"9777:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9789:6:125","nodeType":"YulTypedName","src":"9789:6:125","type":""},{"name":"value1","nativeSrc":"9797:6:125","nodeType":"YulTypedName","src":"9797:6:125","type":""},{"name":"value2","nativeSrc":"9805:6:125","nodeType":"YulTypedName","src":"9805:6:125","type":""}],"src":"9713:527:125"},{"body":{"nativeSrc":"10366:152:125","nodeType":"YulBlock","src":"10366:152:125","statements":[{"nativeSrc":"10376:26:125","nodeType":"YulAssignment","src":"10376:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10388:9:125","nodeType":"YulIdentifier","src":"10388:9:125"},{"kind":"number","nativeSrc":"10399:2:125","nodeType":"YulLiteral","src":"10399:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10384:3:125","nodeType":"YulIdentifier","src":"10384:3:125"},"nativeSrc":"10384:18:125","nodeType":"YulFunctionCall","src":"10384:18:125"},"variableNames":[{"name":"tail","nativeSrc":"10376:4:125","nodeType":"YulIdentifier","src":"10376:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10418:9:125","nodeType":"YulIdentifier","src":"10418:9:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"10443:6:125","nodeType":"YulIdentifier","src":"10443:6:125"}],"functionName":{"name":"iszero","nativeSrc":"10436:6:125","nodeType":"YulIdentifier","src":"10436:6:125"},"nativeSrc":"10436:14:125","nodeType":"YulFunctionCall","src":"10436:14:125"}],"functionName":{"name":"iszero","nativeSrc":"10429:6:125","nodeType":"YulIdentifier","src":"10429:6:125"},"nativeSrc":"10429:22:125","nodeType":"YulFunctionCall","src":"10429:22:125"}],"functionName":{"name":"mstore","nativeSrc":"10411:6:125","nodeType":"YulIdentifier","src":"10411:6:125"},"nativeSrc":"10411:41:125","nodeType":"YulFunctionCall","src":"10411:41:125"},"nativeSrc":"10411:41:125","nodeType":"YulExpressionStatement","src":"10411:41:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10472:9:125","nodeType":"YulIdentifier","src":"10472:9:125"},{"kind":"number","nativeSrc":"10483:2:125","nodeType":"YulLiteral","src":"10483:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10468:3:125","nodeType":"YulIdentifier","src":"10468:3:125"},"nativeSrc":"10468:18:125","nodeType":"YulFunctionCall","src":"10468:18:125"},{"arguments":[{"name":"value1","nativeSrc":"10492:6:125","nodeType":"YulIdentifier","src":"10492:6:125"},{"kind":"number","nativeSrc":"10500:10:125","nodeType":"YulLiteral","src":"10500:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"10488:3:125","nodeType":"YulIdentifier","src":"10488:3:125"},"nativeSrc":"10488:23:125","nodeType":"YulFunctionCall","src":"10488:23:125"}],"functionName":{"name":"mstore","nativeSrc":"10461:6:125","nodeType":"YulIdentifier","src":"10461:6:125"},"nativeSrc":"10461:51:125","nodeType":"YulFunctionCall","src":"10461:51:125"},"nativeSrc":"10461:51:125","nodeType":"YulExpressionStatement","src":"10461:51:125"}]},"name":"abi_encode_tuple_t_bool_t_uint32__to_t_bool_t_uint32__fromStack_reversed","nativeSrc":"10245:273:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10327:9:125","nodeType":"YulTypedName","src":"10327:9:125","type":""},{"name":"value1","nativeSrc":"10338:6:125","nodeType":"YulTypedName","src":"10338:6:125","type":""},{"name":"value0","nativeSrc":"10346:6:125","nodeType":"YulTypedName","src":"10346:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10357:4:125","nodeType":"YulTypedName","src":"10357:4:125","type":""}],"src":"10245:273:125"},{"body":{"nativeSrc":"10609:233:125","nodeType":"YulBlock","src":"10609:233:125","statements":[{"body":{"nativeSrc":"10655:16:125","nodeType":"YulBlock","src":"10655:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10664:1:125","nodeType":"YulLiteral","src":"10664:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10667:1:125","nodeType":"YulLiteral","src":"10667:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10657:6:125","nodeType":"YulIdentifier","src":"10657:6:125"},"nativeSrc":"10657:12:125","nodeType":"YulFunctionCall","src":"10657:12:125"},"nativeSrc":"10657:12:125","nodeType":"YulExpressionStatement","src":"10657:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10630:7:125","nodeType":"YulIdentifier","src":"10630:7:125"},{"name":"headStart","nativeSrc":"10639:9:125","nodeType":"YulIdentifier","src":"10639:9:125"}],"functionName":{"name":"sub","nativeSrc":"10626:3:125","nodeType":"YulIdentifier","src":"10626:3:125"},"nativeSrc":"10626:23:125","nodeType":"YulFunctionCall","src":"10626:23:125"},{"kind":"number","nativeSrc":"10651:2:125","nodeType":"YulLiteral","src":"10651:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"10622:3:125","nodeType":"YulIdentifier","src":"10622:3:125"},"nativeSrc":"10622:32:125","nodeType":"YulFunctionCall","src":"10622:32:125"},"nativeSrc":"10619:52:125","nodeType":"YulIf","src":"10619:52:125"},{"nativeSrc":"10680:36:125","nodeType":"YulVariableDeclaration","src":"10680:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10706:9:125","nodeType":"YulIdentifier","src":"10706:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"10693:12:125","nodeType":"YulIdentifier","src":"10693:12:125"},"nativeSrc":"10693:23:125","nodeType":"YulFunctionCall","src":"10693:23:125"},"variables":[{"name":"value","nativeSrc":"10684:5:125","nodeType":"YulTypedName","src":"10684:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10750:5:125","nodeType":"YulIdentifier","src":"10750:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"10725:24:125","nodeType":"YulIdentifier","src":"10725:24:125"},"nativeSrc":"10725:31:125","nodeType":"YulFunctionCall","src":"10725:31:125"},"nativeSrc":"10725:31:125","nodeType":"YulExpressionStatement","src":"10725:31:125"},{"nativeSrc":"10765:15:125","nodeType":"YulAssignment","src":"10765:15:125","value":{"name":"value","nativeSrc":"10775:5:125","nodeType":"YulIdentifier","src":"10775:5:125"},"variableNames":[{"name":"value0","nativeSrc":"10765:6:125","nodeType":"YulIdentifier","src":"10765:6:125"}]},{"nativeSrc":"10789:47:125","nodeType":"YulAssignment","src":"10789:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10821:9:125","nodeType":"YulIdentifier","src":"10821:9:125"},{"kind":"number","nativeSrc":"10832:2:125","nodeType":"YulLiteral","src":"10832:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10817:3:125","nodeType":"YulIdentifier","src":"10817:3:125"},"nativeSrc":"10817:18:125","nodeType":"YulFunctionCall","src":"10817:18:125"}],"functionName":{"name":"abi_decode_uint32","nativeSrc":"10799:17:125","nodeType":"YulIdentifier","src":"10799:17:125"},"nativeSrc":"10799:37:125","nodeType":"YulFunctionCall","src":"10799:37:125"},"variableNames":[{"name":"value1","nativeSrc":"10789:6:125","nodeType":"YulIdentifier","src":"10789:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint32","nativeSrc":"10523:319:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10567:9:125","nodeType":"YulTypedName","src":"10567:9:125","type":""},{"name":"dataEnd","nativeSrc":"10578:7:125","nodeType":"YulTypedName","src":"10578:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10590:6:125","nodeType":"YulTypedName","src":"10590:6:125","type":""},{"name":"value1","nativeSrc":"10598:6:125","nodeType":"YulTypedName","src":"10598:6:125","type":""}],"src":"10523:319:125"},{"body":{"nativeSrc":"10969:598:125","nodeType":"YulBlock","src":"10969:598:125","statements":[{"body":{"nativeSrc":"11015:16:125","nodeType":"YulBlock","src":"11015:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11024:1:125","nodeType":"YulLiteral","src":"11024:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11027:1:125","nodeType":"YulLiteral","src":"11027:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11017:6:125","nodeType":"YulIdentifier","src":"11017:6:125"},"nativeSrc":"11017:12:125","nodeType":"YulFunctionCall","src":"11017:12:125"},"nativeSrc":"11017:12:125","nodeType":"YulExpressionStatement","src":"11017:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10990:7:125","nodeType":"YulIdentifier","src":"10990:7:125"},{"name":"headStart","nativeSrc":"10999:9:125","nodeType":"YulIdentifier","src":"10999:9:125"}],"functionName":{"name":"sub","nativeSrc":"10986:3:125","nodeType":"YulIdentifier","src":"10986:3:125"},"nativeSrc":"10986:23:125","nodeType":"YulFunctionCall","src":"10986:23:125"},{"kind":"number","nativeSrc":"11011:2:125","nodeType":"YulLiteral","src":"11011:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"10982:3:125","nodeType":"YulIdentifier","src":"10982:3:125"},"nativeSrc":"10982:32:125","nodeType":"YulFunctionCall","src":"10982:32:125"},"nativeSrc":"10979:52:125","nodeType":"YulIf","src":"10979:52:125"},{"nativeSrc":"11040:36:125","nodeType":"YulVariableDeclaration","src":"11040:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11066:9:125","nodeType":"YulIdentifier","src":"11066:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"11053:12:125","nodeType":"YulIdentifier","src":"11053:12:125"},"nativeSrc":"11053:23:125","nodeType":"YulFunctionCall","src":"11053:23:125"},"variables":[{"name":"value","nativeSrc":"11044:5:125","nodeType":"YulTypedName","src":"11044:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11110:5:125","nodeType":"YulIdentifier","src":"11110:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"11085:24:125","nodeType":"YulIdentifier","src":"11085:24:125"},"nativeSrc":"11085:31:125","nodeType":"YulFunctionCall","src":"11085:31:125"},"nativeSrc":"11085:31:125","nodeType":"YulExpressionStatement","src":"11085:31:125"},{"nativeSrc":"11125:15:125","nodeType":"YulAssignment","src":"11125:15:125","value":{"name":"value","nativeSrc":"11135:5:125","nodeType":"YulIdentifier","src":"11135:5:125"},"variableNames":[{"name":"value0","nativeSrc":"11125:6:125","nodeType":"YulIdentifier","src":"11125:6:125"}]},{"nativeSrc":"11149:46:125","nodeType":"YulVariableDeclaration","src":"11149:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11180:9:125","nodeType":"YulIdentifier","src":"11180:9:125"},{"kind":"number","nativeSrc":"11191:2:125","nodeType":"YulLiteral","src":"11191:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11176:3:125","nodeType":"YulIdentifier","src":"11176:3:125"},"nativeSrc":"11176:18:125","nodeType":"YulFunctionCall","src":"11176:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"11163:12:125","nodeType":"YulIdentifier","src":"11163:12:125"},"nativeSrc":"11163:32:125","nodeType":"YulFunctionCall","src":"11163:32:125"},"variables":[{"name":"offset","nativeSrc":"11153:6:125","nodeType":"YulTypedName","src":"11153:6:125","type":""}]},{"body":{"nativeSrc":"11238:16:125","nodeType":"YulBlock","src":"11238:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11247:1:125","nodeType":"YulLiteral","src":"11247:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11250:1:125","nodeType":"YulLiteral","src":"11250:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11240:6:125","nodeType":"YulIdentifier","src":"11240:6:125"},"nativeSrc":"11240:12:125","nodeType":"YulFunctionCall","src":"11240:12:125"},"nativeSrc":"11240:12:125","nodeType":"YulExpressionStatement","src":"11240:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"11210:6:125","nodeType":"YulIdentifier","src":"11210:6:125"},{"kind":"number","nativeSrc":"11218:18:125","nodeType":"YulLiteral","src":"11218:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"11207:2:125","nodeType":"YulIdentifier","src":"11207:2:125"},"nativeSrc":"11207:30:125","nodeType":"YulFunctionCall","src":"11207:30:125"},"nativeSrc":"11204:50:125","nodeType":"YulIf","src":"11204:50:125"},{"nativeSrc":"11263:84:125","nodeType":"YulVariableDeclaration","src":"11263:84:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11319:9:125","nodeType":"YulIdentifier","src":"11319:9:125"},{"name":"offset","nativeSrc":"11330:6:125","nodeType":"YulIdentifier","src":"11330:6:125"}],"functionName":{"name":"add","nativeSrc":"11315:3:125","nodeType":"YulIdentifier","src":"11315:3:125"},"nativeSrc":"11315:22:125","nodeType":"YulFunctionCall","src":"11315:22:125"},{"name":"dataEnd","nativeSrc":"11339:7:125","nodeType":"YulIdentifier","src":"11339:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"11289:25:125","nodeType":"YulIdentifier","src":"11289:25:125"},"nativeSrc":"11289:58:125","nodeType":"YulFunctionCall","src":"11289:58:125"},"variables":[{"name":"value1_1","nativeSrc":"11267:8:125","nodeType":"YulTypedName","src":"11267:8:125","type":""},{"name":"value2_1","nativeSrc":"11277:8:125","nodeType":"YulTypedName","src":"11277:8:125","type":""}]},{"nativeSrc":"11356:18:125","nodeType":"YulAssignment","src":"11356:18:125","value":{"name":"value1_1","nativeSrc":"11366:8:125","nodeType":"YulIdentifier","src":"11366:8:125"},"variableNames":[{"name":"value1","nativeSrc":"11356:6:125","nodeType":"YulIdentifier","src":"11356:6:125"}]},{"nativeSrc":"11383:18:125","nodeType":"YulAssignment","src":"11383:18:125","value":{"name":"value2_1","nativeSrc":"11393:8:125","nodeType":"YulIdentifier","src":"11393:8:125"},"variableNames":[{"name":"value2","nativeSrc":"11383:6:125","nodeType":"YulIdentifier","src":"11383:6:125"}]},{"nativeSrc":"11410:47:125","nodeType":"YulVariableDeclaration","src":"11410:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11442:9:125","nodeType":"YulIdentifier","src":"11442:9:125"},{"kind":"number","nativeSrc":"11453:2:125","nodeType":"YulLiteral","src":"11453:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11438:3:125","nodeType":"YulIdentifier","src":"11438:3:125"},"nativeSrc":"11438:18:125","nodeType":"YulFunctionCall","src":"11438:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"11425:12:125","nodeType":"YulIdentifier","src":"11425:12:125"},"nativeSrc":"11425:32:125","nodeType":"YulFunctionCall","src":"11425:32:125"},"variables":[{"name":"value_1","nativeSrc":"11414:7:125","nodeType":"YulTypedName","src":"11414:7:125","type":""}]},{"body":{"nativeSrc":"11519:16:125","nodeType":"YulBlock","src":"11519:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11528:1:125","nodeType":"YulLiteral","src":"11528:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11531:1:125","nodeType":"YulLiteral","src":"11531:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11521:6:125","nodeType":"YulIdentifier","src":"11521:6:125"},"nativeSrc":"11521:12:125","nodeType":"YulFunctionCall","src":"11521:12:125"},"nativeSrc":"11521:12:125","nodeType":"YulExpressionStatement","src":"11521:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"11479:7:125","nodeType":"YulIdentifier","src":"11479:7:125"},{"arguments":[{"name":"value_1","nativeSrc":"11492:7:125","nodeType":"YulIdentifier","src":"11492:7:125"},{"kind":"number","nativeSrc":"11501:14:125","nodeType":"YulLiteral","src":"11501:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"11488:3:125","nodeType":"YulIdentifier","src":"11488:3:125"},"nativeSrc":"11488:28:125","nodeType":"YulFunctionCall","src":"11488:28:125"}],"functionName":{"name":"eq","nativeSrc":"11476:2:125","nodeType":"YulIdentifier","src":"11476:2:125"},"nativeSrc":"11476:41:125","nodeType":"YulFunctionCall","src":"11476:41:125"}],"functionName":{"name":"iszero","nativeSrc":"11469:6:125","nodeType":"YulIdentifier","src":"11469:6:125"},"nativeSrc":"11469:49:125","nodeType":"YulFunctionCall","src":"11469:49:125"},"nativeSrc":"11466:69:125","nodeType":"YulIf","src":"11466:69:125"},{"nativeSrc":"11544:17:125","nodeType":"YulAssignment","src":"11544:17:125","value":{"name":"value_1","nativeSrc":"11554:7:125","nodeType":"YulIdentifier","src":"11554:7:125"},"variableNames":[{"name":"value3","nativeSrc":"11544:6:125","nodeType":"YulIdentifier","src":"11544:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptrt_uint48","nativeSrc":"10847:720:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10911:9:125","nodeType":"YulTypedName","src":"10911:9:125","type":""},{"name":"dataEnd","nativeSrc":"10922:7:125","nodeType":"YulTypedName","src":"10922:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10934:6:125","nodeType":"YulTypedName","src":"10934:6:125","type":""},{"name":"value1","nativeSrc":"10942:6:125","nodeType":"YulTypedName","src":"10942:6:125","type":""},{"name":"value2","nativeSrc":"10950:6:125","nodeType":"YulTypedName","src":"10950:6:125","type":""},{"name":"value3","nativeSrc":"10958:6:125","nodeType":"YulTypedName","src":"10958:6:125","type":""}],"src":"10847:720:125"},{"body":{"nativeSrc":"11699:136:125","nodeType":"YulBlock","src":"11699:136:125","statements":[{"nativeSrc":"11709:26:125","nodeType":"YulAssignment","src":"11709:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11721:9:125","nodeType":"YulIdentifier","src":"11721:9:125"},{"kind":"number","nativeSrc":"11732:2:125","nodeType":"YulLiteral","src":"11732:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11717:3:125","nodeType":"YulIdentifier","src":"11717:3:125"},"nativeSrc":"11717:18:125","nodeType":"YulFunctionCall","src":"11717:18:125"},"variableNames":[{"name":"tail","nativeSrc":"11709:4:125","nodeType":"YulIdentifier","src":"11709:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11751:9:125","nodeType":"YulIdentifier","src":"11751:9:125"},{"name":"value0","nativeSrc":"11762:6:125","nodeType":"YulIdentifier","src":"11762:6:125"}],"functionName":{"name":"mstore","nativeSrc":"11744:6:125","nodeType":"YulIdentifier","src":"11744:6:125"},"nativeSrc":"11744:25:125","nodeType":"YulFunctionCall","src":"11744:25:125"},"nativeSrc":"11744:25:125","nodeType":"YulExpressionStatement","src":"11744:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11789:9:125","nodeType":"YulIdentifier","src":"11789:9:125"},{"kind":"number","nativeSrc":"11800:2:125","nodeType":"YulLiteral","src":"11800:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11785:3:125","nodeType":"YulIdentifier","src":"11785:3:125"},"nativeSrc":"11785:18:125","nodeType":"YulFunctionCall","src":"11785:18:125"},{"arguments":[{"name":"value1","nativeSrc":"11809:6:125","nodeType":"YulIdentifier","src":"11809:6:125"},{"kind":"number","nativeSrc":"11817:10:125","nodeType":"YulLiteral","src":"11817:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"11805:3:125","nodeType":"YulIdentifier","src":"11805:3:125"},"nativeSrc":"11805:23:125","nodeType":"YulFunctionCall","src":"11805:23:125"}],"functionName":{"name":"mstore","nativeSrc":"11778:6:125","nodeType":"YulIdentifier","src":"11778:6:125"},"nativeSrc":"11778:51:125","nodeType":"YulFunctionCall","src":"11778:51:125"},"nativeSrc":"11778:51:125","nodeType":"YulExpressionStatement","src":"11778:51:125"}]},"name":"abi_encode_tuple_t_bytes32_t_uint32__to_t_bytes32_t_uint32__fromStack_reversed","nativeSrc":"11572:263:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11660:9:125","nodeType":"YulTypedName","src":"11660:9:125","type":""},{"name":"value1","nativeSrc":"11671:6:125","nodeType":"YulTypedName","src":"11671:6:125","type":""},{"name":"value0","nativeSrc":"11679:6:125","nodeType":"YulTypedName","src":"11679:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11690:4:125","nodeType":"YulTypedName","src":"11690:4:125","type":""}],"src":"11572:263:125"},{"body":{"nativeSrc":"11872:95:125","nodeType":"YulBlock","src":"11872:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11889:1:125","nodeType":"YulLiteral","src":"11889:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"11896:3:125","nodeType":"YulLiteral","src":"11896:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"11901:10:125","nodeType":"YulLiteral","src":"11901:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"11892:3:125","nodeType":"YulIdentifier","src":"11892:3:125"},"nativeSrc":"11892:20:125","nodeType":"YulFunctionCall","src":"11892:20:125"}],"functionName":{"name":"mstore","nativeSrc":"11882:6:125","nodeType":"YulIdentifier","src":"11882:6:125"},"nativeSrc":"11882:31:125","nodeType":"YulFunctionCall","src":"11882:31:125"},"nativeSrc":"11882:31:125","nodeType":"YulExpressionStatement","src":"11882:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11929:1:125","nodeType":"YulLiteral","src":"11929:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"11932:4:125","nodeType":"YulLiteral","src":"11932:4:125","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"11922:6:125","nodeType":"YulIdentifier","src":"11922:6:125"},"nativeSrc":"11922:15:125","nodeType":"YulFunctionCall","src":"11922:15:125"},"nativeSrc":"11922:15:125","nodeType":"YulExpressionStatement","src":"11922:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11953:1:125","nodeType":"YulLiteral","src":"11953:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11956:4:125","nodeType":"YulLiteral","src":"11956:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"11946:6:125","nodeType":"YulIdentifier","src":"11946:6:125"},"nativeSrc":"11946:15:125","nodeType":"YulFunctionCall","src":"11946:15:125"},"nativeSrc":"11946:15:125","nodeType":"YulExpressionStatement","src":"11946:15:125"}]},"name":"panic_error_0x32","nativeSrc":"11840:127:125","nodeType":"YulFunctionDefinition","src":"11840:127:125"},{"body":{"nativeSrc":"12041:176:125","nodeType":"YulBlock","src":"12041:176:125","statements":[{"body":{"nativeSrc":"12087:16:125","nodeType":"YulBlock","src":"12087:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12096:1:125","nodeType":"YulLiteral","src":"12096:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12099:1:125","nodeType":"YulLiteral","src":"12099:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12089:6:125","nodeType":"YulIdentifier","src":"12089:6:125"},"nativeSrc":"12089:12:125","nodeType":"YulFunctionCall","src":"12089:12:125"},"nativeSrc":"12089:12:125","nodeType":"YulExpressionStatement","src":"12089:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12062:7:125","nodeType":"YulIdentifier","src":"12062:7:125"},{"name":"headStart","nativeSrc":"12071:9:125","nodeType":"YulIdentifier","src":"12071:9:125"}],"functionName":{"name":"sub","nativeSrc":"12058:3:125","nodeType":"YulIdentifier","src":"12058:3:125"},"nativeSrc":"12058:23:125","nodeType":"YulFunctionCall","src":"12058:23:125"},{"kind":"number","nativeSrc":"12083:2:125","nodeType":"YulLiteral","src":"12083:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"12054:3:125","nodeType":"YulIdentifier","src":"12054:3:125"},"nativeSrc":"12054:32:125","nodeType":"YulFunctionCall","src":"12054:32:125"},"nativeSrc":"12051:52:125","nodeType":"YulIf","src":"12051:52:125"},{"nativeSrc":"12112:36:125","nodeType":"YulVariableDeclaration","src":"12112:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12138:9:125","nodeType":"YulIdentifier","src":"12138:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"12125:12:125","nodeType":"YulIdentifier","src":"12125:12:125"},"nativeSrc":"12125:23:125","nodeType":"YulFunctionCall","src":"12125:23:125"},"variables":[{"name":"value","nativeSrc":"12116:5:125","nodeType":"YulTypedName","src":"12116:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12181:5:125","nodeType":"YulIdentifier","src":"12181:5:125"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"12157:23:125","nodeType":"YulIdentifier","src":"12157:23:125"},"nativeSrc":"12157:30:125","nodeType":"YulFunctionCall","src":"12157:30:125"},"nativeSrc":"12157:30:125","nodeType":"YulExpressionStatement","src":"12157:30:125"},{"nativeSrc":"12196:15:125","nodeType":"YulAssignment","src":"12196:15:125","value":{"name":"value","nativeSrc":"12206:5:125","nodeType":"YulIdentifier","src":"12206:5:125"},"variableNames":[{"name":"value0","nativeSrc":"12196:6:125","nodeType":"YulIdentifier","src":"12196:6:125"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"11972:245:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12007:9:125","nodeType":"YulTypedName","src":"12007:9:125","type":""},{"name":"dataEnd","nativeSrc":"12018:7:125","nodeType":"YulTypedName","src":"12018:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12030:6:125","nodeType":"YulTypedName","src":"12030:6:125","type":""}],"src":"11972:245:125"},{"body":{"nativeSrc":"12323:102:125","nodeType":"YulBlock","src":"12323:102:125","statements":[{"nativeSrc":"12333:26:125","nodeType":"YulAssignment","src":"12333:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12345:9:125","nodeType":"YulIdentifier","src":"12345:9:125"},{"kind":"number","nativeSrc":"12356:2:125","nodeType":"YulLiteral","src":"12356:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12341:3:125","nodeType":"YulIdentifier","src":"12341:3:125"},"nativeSrc":"12341:18:125","nodeType":"YulFunctionCall","src":"12341:18:125"},"variableNames":[{"name":"tail","nativeSrc":"12333:4:125","nodeType":"YulIdentifier","src":"12333:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12375:9:125","nodeType":"YulIdentifier","src":"12375:9:125"},{"arguments":[{"name":"value0","nativeSrc":"12390:6:125","nodeType":"YulIdentifier","src":"12390:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12406:3:125","nodeType":"YulLiteral","src":"12406:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"12411:1:125","nodeType":"YulLiteral","src":"12411:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12402:3:125","nodeType":"YulIdentifier","src":"12402:3:125"},"nativeSrc":"12402:11:125","nodeType":"YulFunctionCall","src":"12402:11:125"},{"kind":"number","nativeSrc":"12415:1:125","nodeType":"YulLiteral","src":"12415:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12398:3:125","nodeType":"YulIdentifier","src":"12398:3:125"},"nativeSrc":"12398:19:125","nodeType":"YulFunctionCall","src":"12398:19:125"}],"functionName":{"name":"and","nativeSrc":"12386:3:125","nodeType":"YulIdentifier","src":"12386:3:125"},"nativeSrc":"12386:32:125","nodeType":"YulFunctionCall","src":"12386:32:125"}],"functionName":{"name":"mstore","nativeSrc":"12368:6:125","nodeType":"YulIdentifier","src":"12368:6:125"},"nativeSrc":"12368:51:125","nodeType":"YulFunctionCall","src":"12368:51:125"},"nativeSrc":"12368:51:125","nodeType":"YulExpressionStatement","src":"12368:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"12222:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12292:9:125","nodeType":"YulTypedName","src":"12292:9:125","type":""},{"name":"value0","nativeSrc":"12303:6:125","nodeType":"YulTypedName","src":"12303:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12314:4:125","nodeType":"YulTypedName","src":"12314:4:125","type":""}],"src":"12222:203:125"},{"body":{"nativeSrc":"12585:241:125","nodeType":"YulBlock","src":"12585:241:125","statements":[{"nativeSrc":"12595:26:125","nodeType":"YulAssignment","src":"12595:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12607:9:125","nodeType":"YulIdentifier","src":"12607:9:125"},{"kind":"number","nativeSrc":"12618:2:125","nodeType":"YulLiteral","src":"12618:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12603:3:125","nodeType":"YulIdentifier","src":"12603:3:125"},"nativeSrc":"12603:18:125","nodeType":"YulFunctionCall","src":"12603:18:125"},"variableNames":[{"name":"tail","nativeSrc":"12595:4:125","nodeType":"YulIdentifier","src":"12595:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12637:9:125","nodeType":"YulIdentifier","src":"12637:9:125"},{"arguments":[{"name":"value0","nativeSrc":"12652:6:125","nodeType":"YulIdentifier","src":"12652:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12668:3:125","nodeType":"YulLiteral","src":"12668:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"12673:1:125","nodeType":"YulLiteral","src":"12673:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12664:3:125","nodeType":"YulIdentifier","src":"12664:3:125"},"nativeSrc":"12664:11:125","nodeType":"YulFunctionCall","src":"12664:11:125"},{"kind":"number","nativeSrc":"12677:1:125","nodeType":"YulLiteral","src":"12677:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12660:3:125","nodeType":"YulIdentifier","src":"12660:3:125"},"nativeSrc":"12660:19:125","nodeType":"YulFunctionCall","src":"12660:19:125"}],"functionName":{"name":"and","nativeSrc":"12648:3:125","nodeType":"YulIdentifier","src":"12648:3:125"},"nativeSrc":"12648:32:125","nodeType":"YulFunctionCall","src":"12648:32:125"}],"functionName":{"name":"mstore","nativeSrc":"12630:6:125","nodeType":"YulIdentifier","src":"12630:6:125"},"nativeSrc":"12630:51:125","nodeType":"YulFunctionCall","src":"12630:51:125"},"nativeSrc":"12630:51:125","nodeType":"YulExpressionStatement","src":"12630:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12701:9:125","nodeType":"YulIdentifier","src":"12701:9:125"},{"kind":"number","nativeSrc":"12712:2:125","nodeType":"YulLiteral","src":"12712:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12697:3:125","nodeType":"YulIdentifier","src":"12697:3:125"},"nativeSrc":"12697:18:125","nodeType":"YulFunctionCall","src":"12697:18:125"},{"arguments":[{"name":"value1","nativeSrc":"12721:6:125","nodeType":"YulIdentifier","src":"12721:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12737:3:125","nodeType":"YulLiteral","src":"12737:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"12742:1:125","nodeType":"YulLiteral","src":"12742:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12733:3:125","nodeType":"YulIdentifier","src":"12733:3:125"},"nativeSrc":"12733:11:125","nodeType":"YulFunctionCall","src":"12733:11:125"},{"kind":"number","nativeSrc":"12746:1:125","nodeType":"YulLiteral","src":"12746:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12729:3:125","nodeType":"YulIdentifier","src":"12729:3:125"},"nativeSrc":"12729:19:125","nodeType":"YulFunctionCall","src":"12729:19:125"}],"functionName":{"name":"and","nativeSrc":"12717:3:125","nodeType":"YulIdentifier","src":"12717:3:125"},"nativeSrc":"12717:32:125","nodeType":"YulFunctionCall","src":"12717:32:125"}],"functionName":{"name":"mstore","nativeSrc":"12690:6:125","nodeType":"YulIdentifier","src":"12690:6:125"},"nativeSrc":"12690:60:125","nodeType":"YulFunctionCall","src":"12690:60:125"},"nativeSrc":"12690:60:125","nodeType":"YulExpressionStatement","src":"12690:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12770:9:125","nodeType":"YulIdentifier","src":"12770:9:125"},{"kind":"number","nativeSrc":"12781:2:125","nodeType":"YulLiteral","src":"12781:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12766:3:125","nodeType":"YulIdentifier","src":"12766:3:125"},"nativeSrc":"12766:18:125","nodeType":"YulFunctionCall","src":"12766:18:125"},{"arguments":[{"name":"value2","nativeSrc":"12790:6:125","nodeType":"YulIdentifier","src":"12790:6:125"},{"arguments":[{"kind":"number","nativeSrc":"12802:3:125","nodeType":"YulLiteral","src":"12802:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"12807:10:125","nodeType":"YulLiteral","src":"12807:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"12798:3:125","nodeType":"YulIdentifier","src":"12798:3:125"},"nativeSrc":"12798:20:125","nodeType":"YulFunctionCall","src":"12798:20:125"}],"functionName":{"name":"and","nativeSrc":"12786:3:125","nodeType":"YulIdentifier","src":"12786:3:125"},"nativeSrc":"12786:33:125","nodeType":"YulFunctionCall","src":"12786:33:125"}],"functionName":{"name":"mstore","nativeSrc":"12759:6:125","nodeType":"YulIdentifier","src":"12759:6:125"},"nativeSrc":"12759:61:125","nodeType":"YulFunctionCall","src":"12759:61:125"},"nativeSrc":"12759:61:125","nodeType":"YulExpressionStatement","src":"12759:61:125"}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"12430:396:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12538:9:125","nodeType":"YulTypedName","src":"12538:9:125","type":""},{"name":"value2","nativeSrc":"12549:6:125","nodeType":"YulTypedName","src":"12549:6:125","type":""},{"name":"value1","nativeSrc":"12557:6:125","nodeType":"YulTypedName","src":"12557:6:125","type":""},{"name":"value0","nativeSrc":"12565:6:125","nodeType":"YulTypedName","src":"12565:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12576:4:125","nodeType":"YulTypedName","src":"12576:4:125","type":""}],"src":"12430:396:125"},{"body":{"nativeSrc":"12898:200:125","nodeType":"YulBlock","src":"12898:200:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"12915:3:125","nodeType":"YulIdentifier","src":"12915:3:125"},{"name":"length","nativeSrc":"12920:6:125","nodeType":"YulIdentifier","src":"12920:6:125"}],"functionName":{"name":"mstore","nativeSrc":"12908:6:125","nodeType":"YulIdentifier","src":"12908:6:125"},"nativeSrc":"12908:19:125","nodeType":"YulFunctionCall","src":"12908:19:125"},"nativeSrc":"12908:19:125","nodeType":"YulExpressionStatement","src":"12908:19:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"12953:3:125","nodeType":"YulIdentifier","src":"12953:3:125"},{"kind":"number","nativeSrc":"12958:4:125","nodeType":"YulLiteral","src":"12958:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12949:3:125","nodeType":"YulIdentifier","src":"12949:3:125"},"nativeSrc":"12949:14:125","nodeType":"YulFunctionCall","src":"12949:14:125"},{"name":"start","nativeSrc":"12965:5:125","nodeType":"YulIdentifier","src":"12965:5:125"},{"name":"length","nativeSrc":"12972:6:125","nodeType":"YulIdentifier","src":"12972:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"12936:12:125","nodeType":"YulIdentifier","src":"12936:12:125"},"nativeSrc":"12936:43:125","nodeType":"YulFunctionCall","src":"12936:43:125"},"nativeSrc":"12936:43:125","nodeType":"YulExpressionStatement","src":"12936:43:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"13003:3:125","nodeType":"YulIdentifier","src":"13003:3:125"},{"name":"length","nativeSrc":"13008:6:125","nodeType":"YulIdentifier","src":"13008:6:125"}],"functionName":{"name":"add","nativeSrc":"12999:3:125","nodeType":"YulIdentifier","src":"12999:3:125"},"nativeSrc":"12999:16:125","nodeType":"YulFunctionCall","src":"12999:16:125"},{"kind":"number","nativeSrc":"13017:4:125","nodeType":"YulLiteral","src":"13017:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"12995:3:125","nodeType":"YulIdentifier","src":"12995:3:125"},"nativeSrc":"12995:27:125","nodeType":"YulFunctionCall","src":"12995:27:125"},{"kind":"number","nativeSrc":"13024:1:125","nodeType":"YulLiteral","src":"13024:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"12988:6:125","nodeType":"YulIdentifier","src":"12988:6:125"},"nativeSrc":"12988:38:125","nodeType":"YulFunctionCall","src":"12988:38:125"},"nativeSrc":"12988:38:125","nodeType":"YulExpressionStatement","src":"12988:38:125"},{"nativeSrc":"13035:57:125","nodeType":"YulAssignment","src":"13035:57:125","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"13050:3:125","nodeType":"YulIdentifier","src":"13050:3:125"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"13063:6:125","nodeType":"YulIdentifier","src":"13063:6:125"},{"kind":"number","nativeSrc":"13071:2:125","nodeType":"YulLiteral","src":"13071:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"13059:3:125","nodeType":"YulIdentifier","src":"13059:3:125"},"nativeSrc":"13059:15:125","nodeType":"YulFunctionCall","src":"13059:15:125"},{"arguments":[{"kind":"number","nativeSrc":"13080:2:125","nodeType":"YulLiteral","src":"13080:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"13076:3:125","nodeType":"YulIdentifier","src":"13076:3:125"},"nativeSrc":"13076:7:125","nodeType":"YulFunctionCall","src":"13076:7:125"}],"functionName":{"name":"and","nativeSrc":"13055:3:125","nodeType":"YulIdentifier","src":"13055:3:125"},"nativeSrc":"13055:29:125","nodeType":"YulFunctionCall","src":"13055:29:125"}],"functionName":{"name":"add","nativeSrc":"13046:3:125","nodeType":"YulIdentifier","src":"13046:3:125"},"nativeSrc":"13046:39:125","nodeType":"YulFunctionCall","src":"13046:39:125"},{"kind":"number","nativeSrc":"13087:4:125","nodeType":"YulLiteral","src":"13087:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"13042:3:125","nodeType":"YulIdentifier","src":"13042:3:125"},"nativeSrc":"13042:50:125","nodeType":"YulFunctionCall","src":"13042:50:125"},"variableNames":[{"name":"end","nativeSrc":"13035:3:125","nodeType":"YulIdentifier","src":"13035:3:125"}]}]},"name":"abi_encode_string_calldata","nativeSrc":"12831:267:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nativeSrc":"12867:5:125","nodeType":"YulTypedName","src":"12867:5:125","type":""},{"name":"length","nativeSrc":"12874:6:125","nodeType":"YulTypedName","src":"12874:6:125","type":""},{"name":"pos","nativeSrc":"12882:3:125","nodeType":"YulTypedName","src":"12882:3:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"12890:3:125","nodeType":"YulTypedName","src":"12890:3:125","type":""}],"src":"12831:267:125"},{"body":{"nativeSrc":"13234:116:125","nodeType":"YulBlock","src":"13234:116:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13251:9:125","nodeType":"YulIdentifier","src":"13251:9:125"},{"kind":"number","nativeSrc":"13262:2:125","nodeType":"YulLiteral","src":"13262:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13244:6:125","nodeType":"YulIdentifier","src":"13244:6:125"},"nativeSrc":"13244:21:125","nodeType":"YulFunctionCall","src":"13244:21:125"},"nativeSrc":"13244:21:125","nodeType":"YulExpressionStatement","src":"13244:21:125"},{"nativeSrc":"13274:70:125","nodeType":"YulAssignment","src":"13274:70:125","value":{"arguments":[{"name":"value0","nativeSrc":"13309:6:125","nodeType":"YulIdentifier","src":"13309:6:125"},{"name":"value1","nativeSrc":"13317:6:125","nodeType":"YulIdentifier","src":"13317:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"13329:9:125","nodeType":"YulIdentifier","src":"13329:9:125"},{"kind":"number","nativeSrc":"13340:2:125","nodeType":"YulLiteral","src":"13340:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13325:3:125","nodeType":"YulIdentifier","src":"13325:3:125"},"nativeSrc":"13325:18:125","nodeType":"YulFunctionCall","src":"13325:18:125"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"13282:26:125","nodeType":"YulIdentifier","src":"13282:26:125"},"nativeSrc":"13282:62:125","nodeType":"YulFunctionCall","src":"13282:62:125"},"variableNames":[{"name":"tail","nativeSrc":"13274:4:125","nodeType":"YulIdentifier","src":"13274:4:125"}]}]},"name":"abi_encode_tuple_t_string_calldata_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"13103:247:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13195:9:125","nodeType":"YulTypedName","src":"13195:9:125","type":""},{"name":"value1","nativeSrc":"13206:6:125","nodeType":"YulTypedName","src":"13206:6:125","type":""},{"name":"value0","nativeSrc":"13214:6:125","nodeType":"YulTypedName","src":"13214:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13225:4:125","nodeType":"YulTypedName","src":"13225:4:125","type":""}],"src":"13103:247:125"},{"body":{"nativeSrc":"13435:169:125","nodeType":"YulBlock","src":"13435:169:125","statements":[{"body":{"nativeSrc":"13481:16:125","nodeType":"YulBlock","src":"13481:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13490:1:125","nodeType":"YulLiteral","src":"13490:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"13493:1:125","nodeType":"YulLiteral","src":"13493:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13483:6:125","nodeType":"YulIdentifier","src":"13483:6:125"},"nativeSrc":"13483:12:125","nodeType":"YulFunctionCall","src":"13483:12:125"},"nativeSrc":"13483:12:125","nodeType":"YulExpressionStatement","src":"13483:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13456:7:125","nodeType":"YulIdentifier","src":"13456:7:125"},{"name":"headStart","nativeSrc":"13465:9:125","nodeType":"YulIdentifier","src":"13465:9:125"}],"functionName":{"name":"sub","nativeSrc":"13452:3:125","nodeType":"YulIdentifier","src":"13452:3:125"},"nativeSrc":"13452:23:125","nodeType":"YulFunctionCall","src":"13452:23:125"},{"kind":"number","nativeSrc":"13477:2:125","nodeType":"YulLiteral","src":"13477:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"13448:3:125","nodeType":"YulIdentifier","src":"13448:3:125"},"nativeSrc":"13448:32:125","nodeType":"YulFunctionCall","src":"13448:32:125"},"nativeSrc":"13445:52:125","nodeType":"YulIf","src":"13445:52:125"},{"nativeSrc":"13506:29:125","nodeType":"YulVariableDeclaration","src":"13506:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"13525:9:125","nodeType":"YulIdentifier","src":"13525:9:125"}],"functionName":{"name":"mload","nativeSrc":"13519:5:125","nodeType":"YulIdentifier","src":"13519:5:125"},"nativeSrc":"13519:16:125","nodeType":"YulFunctionCall","src":"13519:16:125"},"variables":[{"name":"value","nativeSrc":"13510:5:125","nodeType":"YulTypedName","src":"13510:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13568:5:125","nodeType":"YulIdentifier","src":"13568:5:125"}],"functionName":{"name":"validator_revert_bytes4","nativeSrc":"13544:23:125","nodeType":"YulIdentifier","src":"13544:23:125"},"nativeSrc":"13544:30:125","nodeType":"YulFunctionCall","src":"13544:30:125"},"nativeSrc":"13544:30:125","nodeType":"YulExpressionStatement","src":"13544:30:125"},{"nativeSrc":"13583:15:125","nodeType":"YulAssignment","src":"13583:15:125","value":{"name":"value","nativeSrc":"13593:5:125","nodeType":"YulIdentifier","src":"13593:5:125"},"variableNames":[{"name":"value0","nativeSrc":"13583:6:125","nodeType":"YulIdentifier","src":"13583:6:125"}]}]},"name":"abi_decode_tuple_t_bytes4_fromMemory","nativeSrc":"13355:249:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13401:9:125","nodeType":"YulTypedName","src":"13401:9:125","type":""},{"name":"dataEnd","nativeSrc":"13412:7:125","nodeType":"YulTypedName","src":"13412:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13424:6:125","nodeType":"YulTypedName","src":"13424:6:125","type":""}],"src":"13355:249:125"},{"body":{"nativeSrc":"13794:254:125","nodeType":"YulBlock","src":"13794:254:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13811:9:125","nodeType":"YulIdentifier","src":"13811:9:125"},{"arguments":[{"name":"value0","nativeSrc":"13826:6:125","nodeType":"YulIdentifier","src":"13826:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"13842:3:125","nodeType":"YulLiteral","src":"13842:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"13847:1:125","nodeType":"YulLiteral","src":"13847:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"13838:3:125","nodeType":"YulIdentifier","src":"13838:3:125"},"nativeSrc":"13838:11:125","nodeType":"YulFunctionCall","src":"13838:11:125"},{"kind":"number","nativeSrc":"13851:1:125","nodeType":"YulLiteral","src":"13851:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"13834:3:125","nodeType":"YulIdentifier","src":"13834:3:125"},"nativeSrc":"13834:19:125","nodeType":"YulFunctionCall","src":"13834:19:125"}],"functionName":{"name":"and","nativeSrc":"13822:3:125","nodeType":"YulIdentifier","src":"13822:3:125"},"nativeSrc":"13822:32:125","nodeType":"YulFunctionCall","src":"13822:32:125"}],"functionName":{"name":"mstore","nativeSrc":"13804:6:125","nodeType":"YulIdentifier","src":"13804:6:125"},"nativeSrc":"13804:51:125","nodeType":"YulFunctionCall","src":"13804:51:125"},"nativeSrc":"13804:51:125","nodeType":"YulExpressionStatement","src":"13804:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13875:9:125","nodeType":"YulIdentifier","src":"13875:9:125"},{"kind":"number","nativeSrc":"13886:2:125","nodeType":"YulLiteral","src":"13886:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13871:3:125","nodeType":"YulIdentifier","src":"13871:3:125"},"nativeSrc":"13871:18:125","nodeType":"YulFunctionCall","src":"13871:18:125"},{"arguments":[{"name":"value1","nativeSrc":"13895:6:125","nodeType":"YulIdentifier","src":"13895:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"13911:3:125","nodeType":"YulLiteral","src":"13911:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"13916:1:125","nodeType":"YulLiteral","src":"13916:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"13907:3:125","nodeType":"YulIdentifier","src":"13907:3:125"},"nativeSrc":"13907:11:125","nodeType":"YulFunctionCall","src":"13907:11:125"},{"kind":"number","nativeSrc":"13920:1:125","nodeType":"YulLiteral","src":"13920:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"13903:3:125","nodeType":"YulIdentifier","src":"13903:3:125"},"nativeSrc":"13903:19:125","nodeType":"YulFunctionCall","src":"13903:19:125"}],"functionName":{"name":"and","nativeSrc":"13891:3:125","nodeType":"YulIdentifier","src":"13891:3:125"},"nativeSrc":"13891:32:125","nodeType":"YulFunctionCall","src":"13891:32:125"}],"functionName":{"name":"mstore","nativeSrc":"13864:6:125","nodeType":"YulIdentifier","src":"13864:6:125"},"nativeSrc":"13864:60:125","nodeType":"YulFunctionCall","src":"13864:60:125"},"nativeSrc":"13864:60:125","nodeType":"YulExpressionStatement","src":"13864:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13944:9:125","nodeType":"YulIdentifier","src":"13944:9:125"},{"kind":"number","nativeSrc":"13955:2:125","nodeType":"YulLiteral","src":"13955:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13940:3:125","nodeType":"YulIdentifier","src":"13940:3:125"},"nativeSrc":"13940:18:125","nodeType":"YulFunctionCall","src":"13940:18:125"},{"kind":"number","nativeSrc":"13960:2:125","nodeType":"YulLiteral","src":"13960:2:125","type":"","value":"96"}],"functionName":{"name":"mstore","nativeSrc":"13933:6:125","nodeType":"YulIdentifier","src":"13933:6:125"},"nativeSrc":"13933:30:125","nodeType":"YulFunctionCall","src":"13933:30:125"},"nativeSrc":"13933:30:125","nodeType":"YulExpressionStatement","src":"13933:30:125"},{"nativeSrc":"13972:70:125","nodeType":"YulAssignment","src":"13972:70:125","value":{"arguments":[{"name":"value2","nativeSrc":"14007:6:125","nodeType":"YulIdentifier","src":"14007:6:125"},{"name":"value3","nativeSrc":"14015:6:125","nodeType":"YulIdentifier","src":"14015:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"14027:9:125","nodeType":"YulIdentifier","src":"14027:9:125"},{"kind":"number","nativeSrc":"14038:2:125","nodeType":"YulLiteral","src":"14038:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14023:3:125","nodeType":"YulIdentifier","src":"14023:3:125"},"nativeSrc":"14023:18:125","nodeType":"YulFunctionCall","src":"14023:18:125"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"13980:26:125","nodeType":"YulIdentifier","src":"13980:26:125"},"nativeSrc":"13980:62:125","nodeType":"YulFunctionCall","src":"13980:62:125"},"variableNames":[{"name":"tail","nativeSrc":"13972:4:125","nodeType":"YulIdentifier","src":"13972:4:125"}]}]},"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:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13739:9:125","nodeType":"YulTypedName","src":"13739:9:125","type":""},{"name":"value3","nativeSrc":"13750:6:125","nodeType":"YulTypedName","src":"13750:6:125","type":""},{"name":"value2","nativeSrc":"13758:6:125","nodeType":"YulTypedName","src":"13758:6:125","type":""},{"name":"value1","nativeSrc":"13766:6:125","nodeType":"YulTypedName","src":"13766:6:125","type":""},{"name":"value0","nativeSrc":"13774:6:125","nodeType":"YulTypedName","src":"13774:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13785:4:125","nodeType":"YulTypedName","src":"13785:4:125","type":""}],"src":"13609:439:125"},{"body":{"nativeSrc":"14085:95:125","nodeType":"YulBlock","src":"14085:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14102:1:125","nodeType":"YulLiteral","src":"14102:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"14109:3:125","nodeType":"YulLiteral","src":"14109:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"14114:10:125","nodeType":"YulLiteral","src":"14114:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"14105:3:125","nodeType":"YulIdentifier","src":"14105:3:125"},"nativeSrc":"14105:20:125","nodeType":"YulFunctionCall","src":"14105:20:125"}],"functionName":{"name":"mstore","nativeSrc":"14095:6:125","nodeType":"YulIdentifier","src":"14095:6:125"},"nativeSrc":"14095:31:125","nodeType":"YulFunctionCall","src":"14095:31:125"},"nativeSrc":"14095:31:125","nodeType":"YulExpressionStatement","src":"14095:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14142:1:125","nodeType":"YulLiteral","src":"14142:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"14145:4:125","nodeType":"YulLiteral","src":"14145:4:125","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"14135:6:125","nodeType":"YulIdentifier","src":"14135:6:125"},"nativeSrc":"14135:15:125","nodeType":"YulFunctionCall","src":"14135:15:125"},"nativeSrc":"14135:15:125","nodeType":"YulExpressionStatement","src":"14135:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14166:1:125","nodeType":"YulLiteral","src":"14166:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"14169:4:125","nodeType":"YulLiteral","src":"14169:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"14159:6:125","nodeType":"YulIdentifier","src":"14159:6:125"},"nativeSrc":"14159:15:125","nodeType":"YulFunctionCall","src":"14159:15:125"},"nativeSrc":"14159:15:125","nodeType":"YulExpressionStatement","src":"14159:15:125"}]},"name":"panic_error_0x11","nativeSrc":"14053:127:125","nodeType":"YulFunctionDefinition","src":"14053:127:125"},{"body":{"nativeSrc":"14234:79:125","nodeType":"YulBlock","src":"14234:79:125","statements":[{"nativeSrc":"14244:17:125","nodeType":"YulAssignment","src":"14244:17:125","value":{"arguments":[{"name":"x","nativeSrc":"14256:1:125","nodeType":"YulIdentifier","src":"14256:1:125"},{"name":"y","nativeSrc":"14259:1:125","nodeType":"YulIdentifier","src":"14259:1:125"}],"functionName":{"name":"sub","nativeSrc":"14252:3:125","nodeType":"YulIdentifier","src":"14252:3:125"},"nativeSrc":"14252:9:125","nodeType":"YulFunctionCall","src":"14252:9:125"},"variableNames":[{"name":"diff","nativeSrc":"14244:4:125","nodeType":"YulIdentifier","src":"14244:4:125"}]},{"body":{"nativeSrc":"14285:22:125","nodeType":"YulBlock","src":"14285:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"14287:16:125","nodeType":"YulIdentifier","src":"14287:16:125"},"nativeSrc":"14287:18:125","nodeType":"YulFunctionCall","src":"14287:18:125"},"nativeSrc":"14287:18:125","nodeType":"YulExpressionStatement","src":"14287:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"14276:4:125","nodeType":"YulIdentifier","src":"14276:4:125"},{"name":"x","nativeSrc":"14282:1:125","nodeType":"YulIdentifier","src":"14282:1:125"}],"functionName":{"name":"gt","nativeSrc":"14273:2:125","nodeType":"YulIdentifier","src":"14273:2:125"},"nativeSrc":"14273:11:125","nodeType":"YulFunctionCall","src":"14273:11:125"},"nativeSrc":"14270:37:125","nodeType":"YulIf","src":"14270:37:125"}]},"name":"checked_sub_t_uint256","nativeSrc":"14185:128:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"14216:1:125","nodeType":"YulTypedName","src":"14216:1:125","type":""},{"name":"y","nativeSrc":"14219:1:125","nodeType":"YulTypedName","src":"14219:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"14225:4:125","nodeType":"YulTypedName","src":"14225:4:125","type":""}],"src":"14185:128:125"},{"body":{"nativeSrc":"14448:201:125","nodeType":"YulBlock","src":"14448:201:125","statements":[{"body":{"nativeSrc":"14486:16:125","nodeType":"YulBlock","src":"14486:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14495:1:125","nodeType":"YulLiteral","src":"14495:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"14498:1:125","nodeType":"YulLiteral","src":"14498:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14488:6:125","nodeType":"YulIdentifier","src":"14488:6:125"},"nativeSrc":"14488:12:125","nodeType":"YulFunctionCall","src":"14488:12:125"},"nativeSrc":"14488:12:125","nodeType":"YulExpressionStatement","src":"14488:12:125"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"14464:10:125","nodeType":"YulIdentifier","src":"14464:10:125"},{"name":"endIndex","nativeSrc":"14476:8:125","nodeType":"YulIdentifier","src":"14476:8:125"}],"functionName":{"name":"gt","nativeSrc":"14461:2:125","nodeType":"YulIdentifier","src":"14461:2:125"},"nativeSrc":"14461:24:125","nodeType":"YulFunctionCall","src":"14461:24:125"},"nativeSrc":"14458:44:125","nodeType":"YulIf","src":"14458:44:125"},{"body":{"nativeSrc":"14535:16:125","nodeType":"YulBlock","src":"14535:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14544:1:125","nodeType":"YulLiteral","src":"14544:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"14547:1:125","nodeType":"YulLiteral","src":"14547:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14537:6:125","nodeType":"YulIdentifier","src":"14537:6:125"},"nativeSrc":"14537:12:125","nodeType":"YulFunctionCall","src":"14537:12:125"},"nativeSrc":"14537:12:125","nodeType":"YulExpressionStatement","src":"14537:12:125"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"14517:8:125","nodeType":"YulIdentifier","src":"14517:8:125"},{"name":"length","nativeSrc":"14527:6:125","nodeType":"YulIdentifier","src":"14527:6:125"}],"functionName":{"name":"gt","nativeSrc":"14514:2:125","nodeType":"YulIdentifier","src":"14514:2:125"},"nativeSrc":"14514:20:125","nodeType":"YulFunctionCall","src":"14514:20:125"},"nativeSrc":"14511:40:125","nodeType":"YulIf","src":"14511:40:125"},{"nativeSrc":"14560:36:125","nodeType":"YulAssignment","src":"14560:36:125","value":{"arguments":[{"name":"offset","nativeSrc":"14577:6:125","nodeType":"YulIdentifier","src":"14577:6:125"},{"name":"startIndex","nativeSrc":"14585:10:125","nodeType":"YulIdentifier","src":"14585:10:125"}],"functionName":{"name":"add","nativeSrc":"14573:3:125","nodeType":"YulIdentifier","src":"14573:3:125"},"nativeSrc":"14573:23:125","nodeType":"YulFunctionCall","src":"14573:23:125"},"variableNames":[{"name":"offsetOut","nativeSrc":"14560:9:125","nodeType":"YulIdentifier","src":"14560:9:125"}]},{"nativeSrc":"14605:38:125","nodeType":"YulAssignment","src":"14605:38:125","value":{"arguments":[{"name":"endIndex","nativeSrc":"14622:8:125","nodeType":"YulIdentifier","src":"14622:8:125"},{"name":"startIndex","nativeSrc":"14632:10:125","nodeType":"YulIdentifier","src":"14632:10:125"}],"functionName":{"name":"sub","nativeSrc":"14618:3:125","nodeType":"YulIdentifier","src":"14618:3:125"},"nativeSrc":"14618:25:125","nodeType":"YulFunctionCall","src":"14618:25:125"},"variableNames":[{"name":"lengthOut","nativeSrc":"14605:9:125","nodeType":"YulIdentifier","src":"14605:9:125"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"14318:331:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"14382:6:125","nodeType":"YulTypedName","src":"14382:6:125","type":""},{"name":"length","nativeSrc":"14390:6:125","nodeType":"YulTypedName","src":"14390:6:125","type":""},{"name":"startIndex","nativeSrc":"14398:10:125","nodeType":"YulTypedName","src":"14398:10:125","type":""},{"name":"endIndex","nativeSrc":"14410:8:125","nodeType":"YulTypedName","src":"14410:8:125","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"14423:9:125","nodeType":"YulTypedName","src":"14423:9:125","type":""},{"name":"lengthOut","nativeSrc":"14434:9:125","nodeType":"YulTypedName","src":"14434:9:125","type":""}],"src":"14318:331:125"},{"body":{"nativeSrc":"14686:95:125","nodeType":"YulBlock","src":"14686:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14703:1:125","nodeType":"YulLiteral","src":"14703:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"14710:3:125","nodeType":"YulLiteral","src":"14710:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"14715:10:125","nodeType":"YulLiteral","src":"14715:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"14706:3:125","nodeType":"YulIdentifier","src":"14706:3:125"},"nativeSrc":"14706:20:125","nodeType":"YulFunctionCall","src":"14706:20:125"}],"functionName":{"name":"mstore","nativeSrc":"14696:6:125","nodeType":"YulIdentifier","src":"14696:6:125"},"nativeSrc":"14696:31:125","nodeType":"YulFunctionCall","src":"14696:31:125"},"nativeSrc":"14696:31:125","nodeType":"YulExpressionStatement","src":"14696:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14743:1:125","nodeType":"YulLiteral","src":"14743:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"14746:4:125","nodeType":"YulLiteral","src":"14746:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"14736:6:125","nodeType":"YulIdentifier","src":"14736:6:125"},"nativeSrc":"14736:15:125","nodeType":"YulFunctionCall","src":"14736:15:125"},"nativeSrc":"14736:15:125","nodeType":"YulExpressionStatement","src":"14736:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14767:1:125","nodeType":"YulLiteral","src":"14767:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"14770:4:125","nodeType":"YulLiteral","src":"14770:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"14760:6:125","nodeType":"YulIdentifier","src":"14760:6:125"},"nativeSrc":"14760:15:125","nodeType":"YulFunctionCall","src":"14760:15:125"},"nativeSrc":"14760:15:125","nodeType":"YulExpressionStatement","src":"14760:15:125"}]},"name":"panic_error_0x41","nativeSrc":"14654:127:125","nodeType":"YulFunctionDefinition","src":"14654:127:125"},{"body":{"nativeSrc":"14880:427:125","nodeType":"YulBlock","src":"14880:427:125","statements":[{"nativeSrc":"14890:51:125","nodeType":"YulVariableDeclaration","src":"14890:51:125","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"14929:11:125","nodeType":"YulIdentifier","src":"14929:11:125"}],"functionName":{"name":"calldataload","nativeSrc":"14916:12:125","nodeType":"YulIdentifier","src":"14916:12:125"},"nativeSrc":"14916:25:125","nodeType":"YulFunctionCall","src":"14916:25:125"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"14894:18:125","nodeType":"YulTypedName","src":"14894:18:125","type":""}]},{"body":{"nativeSrc":"15030:16:125","nodeType":"YulBlock","src":"15030:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15039:1:125","nodeType":"YulLiteral","src":"15039:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"15042:1:125","nodeType":"YulLiteral","src":"15042:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15032:6:125","nodeType":"YulIdentifier","src":"15032:6:125"},"nativeSrc":"15032:12:125","nodeType":"YulFunctionCall","src":"15032:12:125"},"nativeSrc":"15032:12:125","nodeType":"YulExpressionStatement","src":"15032:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"14964:18:125","nodeType":"YulIdentifier","src":"14964:18:125"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"14992:12:125","nodeType":"YulIdentifier","src":"14992:12:125"},"nativeSrc":"14992:14:125","nodeType":"YulFunctionCall","src":"14992:14:125"},{"name":"base_ref","nativeSrc":"15008:8:125","nodeType":"YulIdentifier","src":"15008:8:125"}],"functionName":{"name":"sub","nativeSrc":"14988:3:125","nodeType":"YulIdentifier","src":"14988:3:125"},"nativeSrc":"14988:29:125","nodeType":"YulFunctionCall","src":"14988:29:125"},{"arguments":[{"kind":"number","nativeSrc":"15023:2:125","nodeType":"YulLiteral","src":"15023:2:125","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"15019:3:125","nodeType":"YulIdentifier","src":"15019:3:125"},"nativeSrc":"15019:7:125","nodeType":"YulFunctionCall","src":"15019:7:125"}],"functionName":{"name":"add","nativeSrc":"14984:3:125","nodeType":"YulIdentifier","src":"14984:3:125"},"nativeSrc":"14984:43:125","nodeType":"YulFunctionCall","src":"14984:43:125"}],"functionName":{"name":"slt","nativeSrc":"14960:3:125","nodeType":"YulIdentifier","src":"14960:3:125"},"nativeSrc":"14960:68:125","nodeType":"YulFunctionCall","src":"14960:68:125"}],"functionName":{"name":"iszero","nativeSrc":"14953:6:125","nodeType":"YulIdentifier","src":"14953:6:125"},"nativeSrc":"14953:76:125","nodeType":"YulFunctionCall","src":"14953:76:125"},"nativeSrc":"14950:96:125","nodeType":"YulIf","src":"14950:96:125"},{"nativeSrc":"15055:47:125","nodeType":"YulVariableDeclaration","src":"15055:47:125","value":{"arguments":[{"name":"base_ref","nativeSrc":"15073:8:125","nodeType":"YulIdentifier","src":"15073:8:125"},{"name":"rel_offset_of_tail","nativeSrc":"15083:18:125","nodeType":"YulIdentifier","src":"15083:18:125"}],"functionName":{"name":"add","nativeSrc":"15069:3:125","nodeType":"YulIdentifier","src":"15069:3:125"},"nativeSrc":"15069:33:125","nodeType":"YulFunctionCall","src":"15069:33:125"},"variables":[{"name":"addr_1","nativeSrc":"15059:6:125","nodeType":"YulTypedName","src":"15059:6:125","type":""}]},{"nativeSrc":"15111:30:125","nodeType":"YulAssignment","src":"15111:30:125","value":{"arguments":[{"name":"addr_1","nativeSrc":"15134:6:125","nodeType":"YulIdentifier","src":"15134:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"15121:12:125","nodeType":"YulIdentifier","src":"15121:12:125"},"nativeSrc":"15121:20:125","nodeType":"YulFunctionCall","src":"15121:20:125"},"variableNames":[{"name":"length","nativeSrc":"15111:6:125","nodeType":"YulIdentifier","src":"15111:6:125"}]},{"body":{"nativeSrc":"15184:16:125","nodeType":"YulBlock","src":"15184:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15193:1:125","nodeType":"YulLiteral","src":"15193:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"15196:1:125","nodeType":"YulLiteral","src":"15196:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15186:6:125","nodeType":"YulIdentifier","src":"15186:6:125"},"nativeSrc":"15186:12:125","nodeType":"YulFunctionCall","src":"15186:12:125"},"nativeSrc":"15186:12:125","nodeType":"YulExpressionStatement","src":"15186:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"15156:6:125","nodeType":"YulIdentifier","src":"15156:6:125"},{"kind":"number","nativeSrc":"15164:18:125","nodeType":"YulLiteral","src":"15164:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"15153:2:125","nodeType":"YulIdentifier","src":"15153:2:125"},"nativeSrc":"15153:30:125","nodeType":"YulFunctionCall","src":"15153:30:125"},"nativeSrc":"15150:50:125","nodeType":"YulIf","src":"15150:50:125"},{"nativeSrc":"15209:25:125","nodeType":"YulAssignment","src":"15209:25:125","value":{"arguments":[{"name":"addr_1","nativeSrc":"15221:6:125","nodeType":"YulIdentifier","src":"15221:6:125"},{"kind":"number","nativeSrc":"15229:4:125","nodeType":"YulLiteral","src":"15229:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15217:3:125","nodeType":"YulIdentifier","src":"15217:3:125"},"nativeSrc":"15217:17:125","nodeType":"YulFunctionCall","src":"15217:17:125"},"variableNames":[{"name":"addr","nativeSrc":"15209:4:125","nodeType":"YulIdentifier","src":"15209:4:125"}]},{"body":{"nativeSrc":"15285:16:125","nodeType":"YulBlock","src":"15285:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15294:1:125","nodeType":"YulLiteral","src":"15294:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"15297:1:125","nodeType":"YulLiteral","src":"15297:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15287:6:125","nodeType":"YulIdentifier","src":"15287:6:125"},"nativeSrc":"15287:12:125","nodeType":"YulFunctionCall","src":"15287:12:125"},"nativeSrc":"15287:12:125","nodeType":"YulExpressionStatement","src":"15287:12:125"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"15250:4:125","nodeType":"YulIdentifier","src":"15250:4:125"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"15260:12:125","nodeType":"YulIdentifier","src":"15260:12:125"},"nativeSrc":"15260:14:125","nodeType":"YulFunctionCall","src":"15260:14:125"},{"name":"length","nativeSrc":"15276:6:125","nodeType":"YulIdentifier","src":"15276:6:125"}],"functionName":{"name":"sub","nativeSrc":"15256:3:125","nodeType":"YulIdentifier","src":"15256:3:125"},"nativeSrc":"15256:27:125","nodeType":"YulFunctionCall","src":"15256:27:125"}],"functionName":{"name":"sgt","nativeSrc":"15246:3:125","nodeType":"YulIdentifier","src":"15246:3:125"},"nativeSrc":"15246:38:125","nodeType":"YulFunctionCall","src":"15246:38:125"},"nativeSrc":"15243:58:125","nodeType":"YulIf","src":"15243:58:125"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"14786:521:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"14837:8:125","nodeType":"YulTypedName","src":"14837:8:125","type":""},{"name":"ptr_to_tail","nativeSrc":"14847:11:125","nodeType":"YulTypedName","src":"14847:11:125","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"14863:4:125","nodeType":"YulTypedName","src":"14863:4:125","type":""},{"name":"length","nativeSrc":"14869:6:125","nodeType":"YulTypedName","src":"14869:6:125","type":""}],"src":"14786:521:125"},{"body":{"nativeSrc":"15505:261:125","nodeType":"YulBlock","src":"15505:261:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"15528:3:125","nodeType":"YulIdentifier","src":"15528:3:125"},{"name":"value0","nativeSrc":"15533:6:125","nodeType":"YulIdentifier","src":"15533:6:125"},{"name":"value1","nativeSrc":"15541:6:125","nodeType":"YulIdentifier","src":"15541:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"15515:12:125","nodeType":"YulIdentifier","src":"15515:12:125"},"nativeSrc":"15515:33:125","nodeType":"YulFunctionCall","src":"15515:33:125"},"nativeSrc":"15515:33:125","nodeType":"YulExpressionStatement","src":"15515:33:125"},{"nativeSrc":"15557:26:125","nodeType":"YulVariableDeclaration","src":"15557:26:125","value":{"arguments":[{"name":"pos","nativeSrc":"15571:3:125","nodeType":"YulIdentifier","src":"15571:3:125"},{"name":"value1","nativeSrc":"15576:6:125","nodeType":"YulIdentifier","src":"15576:6:125"}],"functionName":{"name":"add","nativeSrc":"15567:3:125","nodeType":"YulIdentifier","src":"15567:3:125"},"nativeSrc":"15567:16:125","nodeType":"YulFunctionCall","src":"15567:16:125"},"variables":[{"name":"_1","nativeSrc":"15561:2:125","nodeType":"YulTypedName","src":"15561:2:125","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"15599:2:125","nodeType":"YulIdentifier","src":"15599:2:125"},{"kind":"number","nativeSrc":"15603:1:125","nodeType":"YulLiteral","src":"15603:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"15592:6:125","nodeType":"YulIdentifier","src":"15592:6:125"},"nativeSrc":"15592:13:125","nodeType":"YulFunctionCall","src":"15592:13:125"},"nativeSrc":"15592:13:125","nodeType":"YulExpressionStatement","src":"15592:13:125"},{"nativeSrc":"15614:27:125","nodeType":"YulVariableDeclaration","src":"15614:27:125","value":{"arguments":[{"name":"value2","nativeSrc":"15634:6:125","nodeType":"YulIdentifier","src":"15634:6:125"}],"functionName":{"name":"mload","nativeSrc":"15628:5:125","nodeType":"YulIdentifier","src":"15628:5:125"},"nativeSrc":"15628:13:125","nodeType":"YulFunctionCall","src":"15628:13:125"},"variables":[{"name":"length","nativeSrc":"15618:6:125","nodeType":"YulTypedName","src":"15618:6:125","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"15656:2:125","nodeType":"YulIdentifier","src":"15656:2:125"},{"arguments":[{"name":"value2","nativeSrc":"15664:6:125","nodeType":"YulIdentifier","src":"15664:6:125"},{"kind":"number","nativeSrc":"15672:4:125","nodeType":"YulLiteral","src":"15672:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15660:3:125","nodeType":"YulIdentifier","src":"15660:3:125"},"nativeSrc":"15660:17:125","nodeType":"YulFunctionCall","src":"15660:17:125"},{"name":"length","nativeSrc":"15679:6:125","nodeType":"YulIdentifier","src":"15679:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"15650:5:125","nodeType":"YulIdentifier","src":"15650:5:125"},"nativeSrc":"15650:36:125","nodeType":"YulFunctionCall","src":"15650:36:125"},"nativeSrc":"15650:36:125","nodeType":"YulExpressionStatement","src":"15650:36:125"},{"nativeSrc":"15695:25:125","nodeType":"YulVariableDeclaration","src":"15695:25:125","value":{"arguments":[{"name":"_1","nativeSrc":"15709:2:125","nodeType":"YulIdentifier","src":"15709:2:125"},{"name":"length","nativeSrc":"15713:6:125","nodeType":"YulIdentifier","src":"15713:6:125"}],"functionName":{"name":"add","nativeSrc":"15705:3:125","nodeType":"YulIdentifier","src":"15705:3:125"},"nativeSrc":"15705:15:125","nodeType":"YulFunctionCall","src":"15705:15:125"},"variables":[{"name":"_2","nativeSrc":"15699:2:125","nodeType":"YulTypedName","src":"15699:2:125","type":""}]},{"expression":{"arguments":[{"name":"_2","nativeSrc":"15736:2:125","nodeType":"YulIdentifier","src":"15736:2:125"},{"kind":"number","nativeSrc":"15740:1:125","nodeType":"YulLiteral","src":"15740:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"15729:6:125","nodeType":"YulIdentifier","src":"15729:6:125"},"nativeSrc":"15729:13:125","nodeType":"YulFunctionCall","src":"15729:13:125"},"nativeSrc":"15729:13:125","nodeType":"YulExpressionStatement","src":"15729:13:125"},{"nativeSrc":"15751:9:125","nodeType":"YulAssignment","src":"15751:9:125","value":{"name":"_2","nativeSrc":"15758:2:125","nodeType":"YulIdentifier","src":"15758:2:125"},"variableNames":[{"name":"end","nativeSrc":"15751:3:125","nodeType":"YulIdentifier","src":"15751:3:125"}]}]},"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":"15312:454:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"15465:3:125","nodeType":"YulTypedName","src":"15465:3:125","type":""},{"name":"value2","nativeSrc":"15470:6:125","nodeType":"YulTypedName","src":"15470:6:125","type":""},{"name":"value1","nativeSrc":"15478:6:125","nodeType":"YulTypedName","src":"15478:6:125","type":""},{"name":"value0","nativeSrc":"15486:6:125","nodeType":"YulTypedName","src":"15486:6:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"15497:3:125","nodeType":"YulTypedName","src":"15497:3:125","type":""}],"src":"15312:454:125"},{"body":{"nativeSrc":"15954:311:125","nodeType":"YulBlock","src":"15954:311:125","statements":[{"nativeSrc":"15964:27:125","nodeType":"YulAssignment","src":"15964:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"15976:9:125","nodeType":"YulIdentifier","src":"15976:9:125"},{"kind":"number","nativeSrc":"15987:3:125","nodeType":"YulLiteral","src":"15987:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"15972:3:125","nodeType":"YulIdentifier","src":"15972:3:125"},"nativeSrc":"15972:19:125","nodeType":"YulFunctionCall","src":"15972:19:125"},"variableNames":[{"name":"tail","nativeSrc":"15964:4:125","nodeType":"YulIdentifier","src":"15964:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16007:9:125","nodeType":"YulIdentifier","src":"16007:9:125"},{"arguments":[{"name":"value0","nativeSrc":"16022:6:125","nodeType":"YulIdentifier","src":"16022:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16038:3:125","nodeType":"YulLiteral","src":"16038:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"16043:1:125","nodeType":"YulLiteral","src":"16043:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16034:3:125","nodeType":"YulIdentifier","src":"16034:3:125"},"nativeSrc":"16034:11:125","nodeType":"YulFunctionCall","src":"16034:11:125"},{"kind":"number","nativeSrc":"16047:1:125","nodeType":"YulLiteral","src":"16047:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16030:3:125","nodeType":"YulIdentifier","src":"16030:3:125"},"nativeSrc":"16030:19:125","nodeType":"YulFunctionCall","src":"16030:19:125"}],"functionName":{"name":"and","nativeSrc":"16018:3:125","nodeType":"YulIdentifier","src":"16018:3:125"},"nativeSrc":"16018:32:125","nodeType":"YulFunctionCall","src":"16018:32:125"}],"functionName":{"name":"mstore","nativeSrc":"16000:6:125","nodeType":"YulIdentifier","src":"16000:6:125"},"nativeSrc":"16000:51:125","nodeType":"YulFunctionCall","src":"16000:51:125"},"nativeSrc":"16000:51:125","nodeType":"YulExpressionStatement","src":"16000:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16071:9:125","nodeType":"YulIdentifier","src":"16071:9:125"},{"kind":"number","nativeSrc":"16082:2:125","nodeType":"YulLiteral","src":"16082:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16067:3:125","nodeType":"YulIdentifier","src":"16067:3:125"},"nativeSrc":"16067:18:125","nodeType":"YulFunctionCall","src":"16067:18:125"},{"arguments":[{"name":"value1","nativeSrc":"16091:6:125","nodeType":"YulIdentifier","src":"16091:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16107:3:125","nodeType":"YulLiteral","src":"16107:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"16112:1:125","nodeType":"YulLiteral","src":"16112:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16103:3:125","nodeType":"YulIdentifier","src":"16103:3:125"},"nativeSrc":"16103:11:125","nodeType":"YulFunctionCall","src":"16103:11:125"},{"kind":"number","nativeSrc":"16116:1:125","nodeType":"YulLiteral","src":"16116:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16099:3:125","nodeType":"YulIdentifier","src":"16099:3:125"},"nativeSrc":"16099:19:125","nodeType":"YulFunctionCall","src":"16099:19:125"}],"functionName":{"name":"and","nativeSrc":"16087:3:125","nodeType":"YulIdentifier","src":"16087:3:125"},"nativeSrc":"16087:32:125","nodeType":"YulFunctionCall","src":"16087:32:125"}],"functionName":{"name":"mstore","nativeSrc":"16060:6:125","nodeType":"YulIdentifier","src":"16060:6:125"},"nativeSrc":"16060:60:125","nodeType":"YulFunctionCall","src":"16060:60:125"},"nativeSrc":"16060:60:125","nodeType":"YulExpressionStatement","src":"16060:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16140:9:125","nodeType":"YulIdentifier","src":"16140:9:125"},{"kind":"number","nativeSrc":"16151:2:125","nodeType":"YulLiteral","src":"16151:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16136:3:125","nodeType":"YulIdentifier","src":"16136:3:125"},"nativeSrc":"16136:18:125","nodeType":"YulFunctionCall","src":"16136:18:125"},{"arguments":[{"name":"value2","nativeSrc":"16160:6:125","nodeType":"YulIdentifier","src":"16160:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16176:3:125","nodeType":"YulLiteral","src":"16176:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"16181:1:125","nodeType":"YulLiteral","src":"16181:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16172:3:125","nodeType":"YulIdentifier","src":"16172:3:125"},"nativeSrc":"16172:11:125","nodeType":"YulFunctionCall","src":"16172:11:125"},{"kind":"number","nativeSrc":"16185:1:125","nodeType":"YulLiteral","src":"16185:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16168:3:125","nodeType":"YulIdentifier","src":"16168:3:125"},"nativeSrc":"16168:19:125","nodeType":"YulFunctionCall","src":"16168:19:125"}],"functionName":{"name":"and","nativeSrc":"16156:3:125","nodeType":"YulIdentifier","src":"16156:3:125"},"nativeSrc":"16156:32:125","nodeType":"YulFunctionCall","src":"16156:32:125"}],"functionName":{"name":"mstore","nativeSrc":"16129:6:125","nodeType":"YulIdentifier","src":"16129:6:125"},"nativeSrc":"16129:60:125","nodeType":"YulFunctionCall","src":"16129:60:125"},"nativeSrc":"16129:60:125","nodeType":"YulExpressionStatement","src":"16129:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16209:9:125","nodeType":"YulIdentifier","src":"16209:9:125"},{"kind":"number","nativeSrc":"16220:2:125","nodeType":"YulLiteral","src":"16220:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16205:3:125","nodeType":"YulIdentifier","src":"16205:3:125"},"nativeSrc":"16205:18:125","nodeType":"YulFunctionCall","src":"16205:18:125"},{"arguments":[{"name":"value3","nativeSrc":"16229:6:125","nodeType":"YulIdentifier","src":"16229:6:125"},{"arguments":[{"kind":"number","nativeSrc":"16241:3:125","nodeType":"YulLiteral","src":"16241:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"16246:10:125","nodeType":"YulLiteral","src":"16246:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"16237:3:125","nodeType":"YulIdentifier","src":"16237:3:125"},"nativeSrc":"16237:20:125","nodeType":"YulFunctionCall","src":"16237:20:125"}],"functionName":{"name":"and","nativeSrc":"16225:3:125","nodeType":"YulIdentifier","src":"16225:3:125"},"nativeSrc":"16225:33:125","nodeType":"YulFunctionCall","src":"16225:33:125"}],"functionName":{"name":"mstore","nativeSrc":"16198:6:125","nodeType":"YulIdentifier","src":"16198:6:125"},"nativeSrc":"16198:61:125","nodeType":"YulFunctionCall","src":"16198:61:125"},"nativeSrc":"16198:61:125","nodeType":"YulExpressionStatement","src":"16198:61:125"}]},"name":"abi_encode_tuple_t_address_t_address_t_address_t_bytes4__to_t_address_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"15771:494:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15899:9:125","nodeType":"YulTypedName","src":"15899:9:125","type":""},{"name":"value3","nativeSrc":"15910:6:125","nodeType":"YulTypedName","src":"15910:6:125","type":""},{"name":"value2","nativeSrc":"15918:6:125","nodeType":"YulTypedName","src":"15918:6:125","type":""},{"name":"value1","nativeSrc":"15926:6:125","nodeType":"YulTypedName","src":"15926:6:125","type":""},{"name":"value0","nativeSrc":"15934:6:125","nodeType":"YulTypedName","src":"15934:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15945:4:125","nodeType":"YulTypedName","src":"15945:4:125","type":""}],"src":"15771:494:125"},{"body":{"nativeSrc":"16317:132:125","nodeType":"YulBlock","src":"16317:132:125","statements":[{"nativeSrc":"16327:58:125","nodeType":"YulAssignment","src":"16327:58:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"16342:1:125","nodeType":"YulIdentifier","src":"16342:1:125"},{"kind":"number","nativeSrc":"16345:14:125","nodeType":"YulLiteral","src":"16345:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"16338:3:125","nodeType":"YulIdentifier","src":"16338:3:125"},"nativeSrc":"16338:22:125","nodeType":"YulFunctionCall","src":"16338:22:125"},{"arguments":[{"name":"y","nativeSrc":"16366:1:125","nodeType":"YulIdentifier","src":"16366:1:125"},{"kind":"number","nativeSrc":"16369:14:125","nodeType":"YulLiteral","src":"16369:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"16362:3:125","nodeType":"YulIdentifier","src":"16362:3:125"},"nativeSrc":"16362:22:125","nodeType":"YulFunctionCall","src":"16362:22:125"}],"functionName":{"name":"add","nativeSrc":"16334:3:125","nodeType":"YulIdentifier","src":"16334:3:125"},"nativeSrc":"16334:51:125","nodeType":"YulFunctionCall","src":"16334:51:125"},"variableNames":[{"name":"sum","nativeSrc":"16327:3:125","nodeType":"YulIdentifier","src":"16327:3:125"}]},{"body":{"nativeSrc":"16421:22:125","nodeType":"YulBlock","src":"16421:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"16423:16:125","nodeType":"YulIdentifier","src":"16423:16:125"},"nativeSrc":"16423:18:125","nodeType":"YulFunctionCall","src":"16423:18:125"},"nativeSrc":"16423:18:125","nodeType":"YulExpressionStatement","src":"16423:18:125"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"16400:3:125","nodeType":"YulIdentifier","src":"16400:3:125"},{"kind":"number","nativeSrc":"16405:14:125","nodeType":"YulLiteral","src":"16405:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"16397:2:125","nodeType":"YulIdentifier","src":"16397:2:125"},"nativeSrc":"16397:23:125","nodeType":"YulFunctionCall","src":"16397:23:125"},"nativeSrc":"16394:49:125","nodeType":"YulIf","src":"16394:49:125"}]},"name":"checked_add_t_uint48","nativeSrc":"16270:179:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"16300:1:125","nodeType":"YulTypedName","src":"16300:1:125","type":""},{"name":"y","nativeSrc":"16303:1:125","nodeType":"YulTypedName","src":"16303:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"16309:3:125","nodeType":"YulTypedName","src":"16309:3:125","type":""}],"src":"16270:179:125"},{"body":{"nativeSrc":"16665:320:125","nodeType":"YulBlock","src":"16665:320:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16682:9:125","nodeType":"YulIdentifier","src":"16682:9:125"},{"arguments":[{"name":"value0","nativeSrc":"16697:6:125","nodeType":"YulIdentifier","src":"16697:6:125"},{"kind":"number","nativeSrc":"16705:14:125","nodeType":"YulLiteral","src":"16705:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"16693:3:125","nodeType":"YulIdentifier","src":"16693:3:125"},"nativeSrc":"16693:27:125","nodeType":"YulFunctionCall","src":"16693:27:125"}],"functionName":{"name":"mstore","nativeSrc":"16675:6:125","nodeType":"YulIdentifier","src":"16675:6:125"},"nativeSrc":"16675:46:125","nodeType":"YulFunctionCall","src":"16675:46:125"},"nativeSrc":"16675:46:125","nodeType":"YulExpressionStatement","src":"16675:46:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16741:9:125","nodeType":"YulIdentifier","src":"16741:9:125"},{"kind":"number","nativeSrc":"16752:2:125","nodeType":"YulLiteral","src":"16752:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16737:3:125","nodeType":"YulIdentifier","src":"16737:3:125"},"nativeSrc":"16737:18:125","nodeType":"YulFunctionCall","src":"16737:18:125"},{"arguments":[{"name":"value1","nativeSrc":"16761:6:125","nodeType":"YulIdentifier","src":"16761:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16777:3:125","nodeType":"YulLiteral","src":"16777:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"16782:1:125","nodeType":"YulLiteral","src":"16782:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16773:3:125","nodeType":"YulIdentifier","src":"16773:3:125"},"nativeSrc":"16773:11:125","nodeType":"YulFunctionCall","src":"16773:11:125"},{"kind":"number","nativeSrc":"16786:1:125","nodeType":"YulLiteral","src":"16786:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16769:3:125","nodeType":"YulIdentifier","src":"16769:3:125"},"nativeSrc":"16769:19:125","nodeType":"YulFunctionCall","src":"16769:19:125"}],"functionName":{"name":"and","nativeSrc":"16757:3:125","nodeType":"YulIdentifier","src":"16757:3:125"},"nativeSrc":"16757:32:125","nodeType":"YulFunctionCall","src":"16757:32:125"}],"functionName":{"name":"mstore","nativeSrc":"16730:6:125","nodeType":"YulIdentifier","src":"16730:6:125"},"nativeSrc":"16730:60:125","nodeType":"YulFunctionCall","src":"16730:60:125"},"nativeSrc":"16730:60:125","nodeType":"YulExpressionStatement","src":"16730:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16810:9:125","nodeType":"YulIdentifier","src":"16810:9:125"},{"kind":"number","nativeSrc":"16821:2:125","nodeType":"YulLiteral","src":"16821:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16806:3:125","nodeType":"YulIdentifier","src":"16806:3:125"},"nativeSrc":"16806:18:125","nodeType":"YulFunctionCall","src":"16806:18:125"},{"arguments":[{"name":"value2","nativeSrc":"16830:6:125","nodeType":"YulIdentifier","src":"16830:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"16846:3:125","nodeType":"YulLiteral","src":"16846:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"16851:1:125","nodeType":"YulLiteral","src":"16851:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"16842:3:125","nodeType":"YulIdentifier","src":"16842:3:125"},"nativeSrc":"16842:11:125","nodeType":"YulFunctionCall","src":"16842:11:125"},{"kind":"number","nativeSrc":"16855:1:125","nodeType":"YulLiteral","src":"16855:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"16838:3:125","nodeType":"YulIdentifier","src":"16838:3:125"},"nativeSrc":"16838:19:125","nodeType":"YulFunctionCall","src":"16838:19:125"}],"functionName":{"name":"and","nativeSrc":"16826:3:125","nodeType":"YulIdentifier","src":"16826:3:125"},"nativeSrc":"16826:32:125","nodeType":"YulFunctionCall","src":"16826:32:125"}],"functionName":{"name":"mstore","nativeSrc":"16799:6:125","nodeType":"YulIdentifier","src":"16799:6:125"},"nativeSrc":"16799:60:125","nodeType":"YulFunctionCall","src":"16799:60:125"},"nativeSrc":"16799:60:125","nodeType":"YulExpressionStatement","src":"16799:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16879:9:125","nodeType":"YulIdentifier","src":"16879:9:125"},{"kind":"number","nativeSrc":"16890:2:125","nodeType":"YulLiteral","src":"16890:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16875:3:125","nodeType":"YulIdentifier","src":"16875:3:125"},"nativeSrc":"16875:18:125","nodeType":"YulFunctionCall","src":"16875:18:125"},{"kind":"number","nativeSrc":"16895:3:125","nodeType":"YulLiteral","src":"16895:3:125","type":"","value":"128"}],"functionName":{"name":"mstore","nativeSrc":"16868:6:125","nodeType":"YulIdentifier","src":"16868:6:125"},"nativeSrc":"16868:31:125","nodeType":"YulFunctionCall","src":"16868:31:125"},"nativeSrc":"16868:31:125","nodeType":"YulExpressionStatement","src":"16868:31:125"},{"nativeSrc":"16908:71:125","nodeType":"YulAssignment","src":"16908:71:125","value":{"arguments":[{"name":"value3","nativeSrc":"16943:6:125","nodeType":"YulIdentifier","src":"16943:6:125"},{"name":"value4","nativeSrc":"16951:6:125","nodeType":"YulIdentifier","src":"16951:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"16963:9:125","nodeType":"YulIdentifier","src":"16963:9:125"},{"kind":"number","nativeSrc":"16974:3:125","nodeType":"YulLiteral","src":"16974:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"16959:3:125","nodeType":"YulIdentifier","src":"16959:3:125"},"nativeSrc":"16959:19:125","nodeType":"YulFunctionCall","src":"16959:19:125"}],"functionName":{"name":"abi_encode_string_calldata","nativeSrc":"16916:26:125","nodeType":"YulIdentifier","src":"16916:26:125"},"nativeSrc":"16916:63:125","nodeType":"YulFunctionCall","src":"16916:63:125"},"variableNames":[{"name":"tail","nativeSrc":"16908:4:125","nodeType":"YulIdentifier","src":"16908:4:125"}]}]},"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":"16454:531:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16602:9:125","nodeType":"YulTypedName","src":"16602:9:125","type":""},{"name":"value4","nativeSrc":"16613:6:125","nodeType":"YulTypedName","src":"16613:6:125","type":""},{"name":"value3","nativeSrc":"16621:6:125","nodeType":"YulTypedName","src":"16621:6:125","type":""},{"name":"value2","nativeSrc":"16629:6:125","nodeType":"YulTypedName","src":"16629:6:125","type":""},{"name":"value1","nativeSrc":"16637:6:125","nodeType":"YulTypedName","src":"16637:6:125","type":""},{"name":"value0","nativeSrc":"16645:6:125","nodeType":"YulTypedName","src":"16645:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16656:4:125","nodeType":"YulTypedName","src":"16656:4:125","type":""}],"src":"16454:531:125"},{"body":{"nativeSrc":"17117:170:125","nodeType":"YulBlock","src":"17117:170:125","statements":[{"nativeSrc":"17127:26:125","nodeType":"YulAssignment","src":"17127:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17139:9:125","nodeType":"YulIdentifier","src":"17139:9:125"},{"kind":"number","nativeSrc":"17150:2:125","nodeType":"YulLiteral","src":"17150:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17135:3:125","nodeType":"YulIdentifier","src":"17135:3:125"},"nativeSrc":"17135:18:125","nodeType":"YulFunctionCall","src":"17135:18:125"},"variableNames":[{"name":"tail","nativeSrc":"17127:4:125","nodeType":"YulIdentifier","src":"17127:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17169:9:125","nodeType":"YulIdentifier","src":"17169:9:125"},{"arguments":[{"name":"value0","nativeSrc":"17184:6:125","nodeType":"YulIdentifier","src":"17184:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17200:3:125","nodeType":"YulLiteral","src":"17200:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"17205:1:125","nodeType":"YulLiteral","src":"17205:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"17196:3:125","nodeType":"YulIdentifier","src":"17196:3:125"},"nativeSrc":"17196:11:125","nodeType":"YulFunctionCall","src":"17196:11:125"},{"kind":"number","nativeSrc":"17209:1:125","nodeType":"YulLiteral","src":"17209:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"17192:3:125","nodeType":"YulIdentifier","src":"17192:3:125"},"nativeSrc":"17192:19:125","nodeType":"YulFunctionCall","src":"17192:19:125"}],"functionName":{"name":"and","nativeSrc":"17180:3:125","nodeType":"YulIdentifier","src":"17180:3:125"},"nativeSrc":"17180:32:125","nodeType":"YulFunctionCall","src":"17180:32:125"}],"functionName":{"name":"mstore","nativeSrc":"17162:6:125","nodeType":"YulIdentifier","src":"17162:6:125"},"nativeSrc":"17162:51:125","nodeType":"YulFunctionCall","src":"17162:51:125"},"nativeSrc":"17162:51:125","nodeType":"YulExpressionStatement","src":"17162:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17233:9:125","nodeType":"YulIdentifier","src":"17233:9:125"},{"kind":"number","nativeSrc":"17244:2:125","nodeType":"YulLiteral","src":"17244:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17229:3:125","nodeType":"YulIdentifier","src":"17229:3:125"},"nativeSrc":"17229:18:125","nodeType":"YulFunctionCall","src":"17229:18:125"},{"arguments":[{"name":"value1","nativeSrc":"17253:6:125","nodeType":"YulIdentifier","src":"17253:6:125"},{"kind":"number","nativeSrc":"17261:18:125","nodeType":"YulLiteral","src":"17261:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"17249:3:125","nodeType":"YulIdentifier","src":"17249:3:125"},"nativeSrc":"17249:31:125","nodeType":"YulFunctionCall","src":"17249:31:125"}],"functionName":{"name":"mstore","nativeSrc":"17222:6:125","nodeType":"YulIdentifier","src":"17222:6:125"},"nativeSrc":"17222:59:125","nodeType":"YulFunctionCall","src":"17222:59:125"},"nativeSrc":"17222:59:125","nodeType":"YulExpressionStatement","src":"17222:59:125"}]},"name":"abi_encode_tuple_t_address_t_uint64__to_t_address_t_uint64__fromStack_reversed","nativeSrc":"16990:297:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17078:9:125","nodeType":"YulTypedName","src":"17078:9:125","type":""},{"name":"value1","nativeSrc":"17089:6:125","nodeType":"YulTypedName","src":"17089:6:125","type":""},{"name":"value0","nativeSrc":"17097:6:125","nodeType":"YulTypedName","src":"17097:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17108:4:125","nodeType":"YulTypedName","src":"17108:4:125","type":""}],"src":"16990:297:125"},{"body":{"nativeSrc":"17391:103:125","nodeType":"YulBlock","src":"17391:103:125","statements":[{"nativeSrc":"17401:26:125","nodeType":"YulAssignment","src":"17401:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17413:9:125","nodeType":"YulIdentifier","src":"17413:9:125"},{"kind":"number","nativeSrc":"17424:2:125","nodeType":"YulLiteral","src":"17424:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17409:3:125","nodeType":"YulIdentifier","src":"17409:3:125"},"nativeSrc":"17409:18:125","nodeType":"YulFunctionCall","src":"17409:18:125"},"variableNames":[{"name":"tail","nativeSrc":"17401:4:125","nodeType":"YulIdentifier","src":"17401:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17443:9:125","nodeType":"YulIdentifier","src":"17443:9:125"},{"arguments":[{"name":"value0","nativeSrc":"17458:6:125","nodeType":"YulIdentifier","src":"17458:6:125"},{"arguments":[{"kind":"number","nativeSrc":"17470:3:125","nodeType":"YulLiteral","src":"17470:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"17475:10:125","nodeType":"YulLiteral","src":"17475:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"17466:3:125","nodeType":"YulIdentifier","src":"17466:3:125"},"nativeSrc":"17466:20:125","nodeType":"YulFunctionCall","src":"17466:20:125"}],"functionName":{"name":"and","nativeSrc":"17454:3:125","nodeType":"YulIdentifier","src":"17454:3:125"},"nativeSrc":"17454:33:125","nodeType":"YulFunctionCall","src":"17454:33:125"}],"functionName":{"name":"mstore","nativeSrc":"17436:6:125","nodeType":"YulIdentifier","src":"17436:6:125"},"nativeSrc":"17436:52:125","nodeType":"YulFunctionCall","src":"17436:52:125"},"nativeSrc":"17436:52:125","nodeType":"YulExpressionStatement","src":"17436:52:125"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nativeSrc":"17292:202:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17360:9:125","nodeType":"YulTypedName","src":"17360:9:125","type":""},{"name":"value0","nativeSrc":"17371:6:125","nodeType":"YulTypedName","src":"17371:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17382:4:125","nodeType":"YulTypedName","src":"17382:4:125","type":""}],"src":"17292:202:125"},{"body":{"nativeSrc":"17599:238:125","nodeType":"YulBlock","src":"17599:238:125","statements":[{"nativeSrc":"17609:29:125","nodeType":"YulVariableDeclaration","src":"17609:29:125","value":{"arguments":[{"name":"array","nativeSrc":"17632:5:125","nodeType":"YulIdentifier","src":"17632:5:125"}],"functionName":{"name":"calldataload","nativeSrc":"17619:12:125","nodeType":"YulIdentifier","src":"17619:12:125"},"nativeSrc":"17619:19:125","nodeType":"YulFunctionCall","src":"17619:19:125"},"variables":[{"name":"_1","nativeSrc":"17613:2:125","nodeType":"YulTypedName","src":"17613:2:125","type":""}]},{"nativeSrc":"17647:38:125","nodeType":"YulAssignment","src":"17647:38:125","value":{"arguments":[{"name":"_1","nativeSrc":"17660:2:125","nodeType":"YulIdentifier","src":"17660:2:125"},{"arguments":[{"kind":"number","nativeSrc":"17668:3:125","nodeType":"YulLiteral","src":"17668:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"17673:10:125","nodeType":"YulLiteral","src":"17673:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"17664:3:125","nodeType":"YulIdentifier","src":"17664:3:125"},"nativeSrc":"17664:20:125","nodeType":"YulFunctionCall","src":"17664:20:125"}],"functionName":{"name":"and","nativeSrc":"17656:3:125","nodeType":"YulIdentifier","src":"17656:3:125"},"nativeSrc":"17656:29:125","nodeType":"YulFunctionCall","src":"17656:29:125"},"variableNames":[{"name":"value","nativeSrc":"17647:5:125","nodeType":"YulIdentifier","src":"17647:5:125"}]},{"body":{"nativeSrc":"17716:115:125","nodeType":"YulBlock","src":"17716:115:125","statements":[{"nativeSrc":"17730:91:125","nodeType":"YulAssignment","src":"17730:91:125","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"17747:2:125","nodeType":"YulIdentifier","src":"17747:2:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"17759:1:125","nodeType":"YulLiteral","src":"17759:1:125","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"17766:1:125","nodeType":"YulLiteral","src":"17766:1:125","type":"","value":"4"},{"name":"len","nativeSrc":"17769:3:125","nodeType":"YulIdentifier","src":"17769:3:125"}],"functionName":{"name":"sub","nativeSrc":"17762:3:125","nodeType":"YulIdentifier","src":"17762:3:125"},"nativeSrc":"17762:11:125","nodeType":"YulFunctionCall","src":"17762:11:125"}],"functionName":{"name":"shl","nativeSrc":"17755:3:125","nodeType":"YulIdentifier","src":"17755:3:125"},"nativeSrc":"17755:19:125","nodeType":"YulFunctionCall","src":"17755:19:125"},{"arguments":[{"kind":"number","nativeSrc":"17780:3:125","nodeType":"YulLiteral","src":"17780:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"17785:10:125","nodeType":"YulLiteral","src":"17785:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"17776:3:125","nodeType":"YulIdentifier","src":"17776:3:125"},"nativeSrc":"17776:20:125","nodeType":"YulFunctionCall","src":"17776:20:125"}],"functionName":{"name":"shl","nativeSrc":"17751:3:125","nodeType":"YulIdentifier","src":"17751:3:125"},"nativeSrc":"17751:46:125","nodeType":"YulFunctionCall","src":"17751:46:125"}],"functionName":{"name":"and","nativeSrc":"17743:3:125","nodeType":"YulIdentifier","src":"17743:3:125"},"nativeSrc":"17743:55:125","nodeType":"YulFunctionCall","src":"17743:55:125"},{"arguments":[{"kind":"number","nativeSrc":"17804:3:125","nodeType":"YulLiteral","src":"17804:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"17809:10:125","nodeType":"YulLiteral","src":"17809:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"17800:3:125","nodeType":"YulIdentifier","src":"17800:3:125"},"nativeSrc":"17800:20:125","nodeType":"YulFunctionCall","src":"17800:20:125"}],"functionName":{"name":"and","nativeSrc":"17739:3:125","nodeType":"YulIdentifier","src":"17739:3:125"},"nativeSrc":"17739:82:125","nodeType":"YulFunctionCall","src":"17739:82:125"},"variableNames":[{"name":"value","nativeSrc":"17730:5:125","nodeType":"YulIdentifier","src":"17730:5:125"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"17700:3:125","nodeType":"YulIdentifier","src":"17700:3:125"},{"kind":"number","nativeSrc":"17705:1:125","nodeType":"YulLiteral","src":"17705:1:125","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"17697:2:125","nodeType":"YulIdentifier","src":"17697:2:125"},"nativeSrc":"17697:10:125","nodeType":"YulFunctionCall","src":"17697:10:125"},"nativeSrc":"17694:137:125","nodeType":"YulIf","src":"17694:137:125"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4","nativeSrc":"17499:338:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"17574:5:125","nodeType":"YulTypedName","src":"17574:5:125","type":""},{"name":"len","nativeSrc":"17581:3:125","nodeType":"YulTypedName","src":"17581:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"17589:5:125","nodeType":"YulTypedName","src":"17589:5:125","type":""}],"src":"17499:338:125"},{"body":{"nativeSrc":"17971:119:125","nodeType":"YulBlock","src":"17971:119:125","statements":[{"nativeSrc":"17981:26:125","nodeType":"YulAssignment","src":"17981:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17993:9:125","nodeType":"YulIdentifier","src":"17993:9:125"},{"kind":"number","nativeSrc":"18004:2:125","nodeType":"YulLiteral","src":"18004:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17989:3:125","nodeType":"YulIdentifier","src":"17989:3:125"},"nativeSrc":"17989:18:125","nodeType":"YulFunctionCall","src":"17989:18:125"},"variableNames":[{"name":"tail","nativeSrc":"17981:4:125","nodeType":"YulIdentifier","src":"17981:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18023:9:125","nodeType":"YulIdentifier","src":"18023:9:125"},{"name":"value0","nativeSrc":"18034:6:125","nodeType":"YulIdentifier","src":"18034:6:125"}],"functionName":{"name":"mstore","nativeSrc":"18016:6:125","nodeType":"YulIdentifier","src":"18016:6:125"},"nativeSrc":"18016:25:125","nodeType":"YulFunctionCall","src":"18016:25:125"},"nativeSrc":"18016:25:125","nodeType":"YulExpressionStatement","src":"18016:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18061:9:125","nodeType":"YulIdentifier","src":"18061:9:125"},{"kind":"number","nativeSrc":"18072:2:125","nodeType":"YulLiteral","src":"18072:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18057:3:125","nodeType":"YulIdentifier","src":"18057:3:125"},"nativeSrc":"18057:18:125","nodeType":"YulFunctionCall","src":"18057:18:125"},{"name":"value1","nativeSrc":"18077:6:125","nodeType":"YulIdentifier","src":"18077:6:125"}],"functionName":{"name":"mstore","nativeSrc":"18050:6:125","nodeType":"YulIdentifier","src":"18050:6:125"},"nativeSrc":"18050:34:125","nodeType":"YulFunctionCall","src":"18050:34:125"},"nativeSrc":"18050:34:125","nodeType":"YulExpressionStatement","src":"18050:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"17842:248:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17932:9:125","nodeType":"YulTypedName","src":"17932:9:125","type":""},{"name":"value1","nativeSrc":"17943:6:125","nodeType":"YulTypedName","src":"17943:6:125","type":""},{"name":"value0","nativeSrc":"17951:6:125","nodeType":"YulTypedName","src":"17951:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17962:4:125","nodeType":"YulTypedName","src":"17962:4:125","type":""}],"src":"17842:248:125"},{"body":{"nativeSrc":"18242:216:125","nodeType":"YulBlock","src":"18242:216:125","statements":[{"nativeSrc":"18252:26:125","nodeType":"YulAssignment","src":"18252:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18264:9:125","nodeType":"YulIdentifier","src":"18264:9:125"},{"kind":"number","nativeSrc":"18275:2:125","nodeType":"YulLiteral","src":"18275:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18260:3:125","nodeType":"YulIdentifier","src":"18260:3:125"},"nativeSrc":"18260:18:125","nodeType":"YulFunctionCall","src":"18260:18:125"},"variableNames":[{"name":"tail","nativeSrc":"18252:4:125","nodeType":"YulIdentifier","src":"18252:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18294:9:125","nodeType":"YulIdentifier","src":"18294:9:125"},{"arguments":[{"name":"value0","nativeSrc":"18309:6:125","nodeType":"YulIdentifier","src":"18309:6:125"},{"kind":"number","nativeSrc":"18317:10:125","nodeType":"YulLiteral","src":"18317:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"18305:3:125","nodeType":"YulIdentifier","src":"18305:3:125"},"nativeSrc":"18305:23:125","nodeType":"YulFunctionCall","src":"18305:23:125"}],"functionName":{"name":"mstore","nativeSrc":"18287:6:125","nodeType":"YulIdentifier","src":"18287:6:125"},"nativeSrc":"18287:42:125","nodeType":"YulFunctionCall","src":"18287:42:125"},"nativeSrc":"18287:42:125","nodeType":"YulExpressionStatement","src":"18287:42:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18349:9:125","nodeType":"YulIdentifier","src":"18349:9:125"},{"kind":"number","nativeSrc":"18360:2:125","nodeType":"YulLiteral","src":"18360:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18345:3:125","nodeType":"YulIdentifier","src":"18345:3:125"},"nativeSrc":"18345:18:125","nodeType":"YulFunctionCall","src":"18345:18:125"},{"arguments":[{"name":"value1","nativeSrc":"18369:6:125","nodeType":"YulIdentifier","src":"18369:6:125"},{"kind":"number","nativeSrc":"18377:14:125","nodeType":"YulLiteral","src":"18377:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"18365:3:125","nodeType":"YulIdentifier","src":"18365:3:125"},"nativeSrc":"18365:27:125","nodeType":"YulFunctionCall","src":"18365:27:125"}],"functionName":{"name":"mstore","nativeSrc":"18338:6:125","nodeType":"YulIdentifier","src":"18338:6:125"},"nativeSrc":"18338:55:125","nodeType":"YulFunctionCall","src":"18338:55:125"},"nativeSrc":"18338:55:125","nodeType":"YulExpressionStatement","src":"18338:55:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18413:9:125","nodeType":"YulIdentifier","src":"18413:9:125"},{"kind":"number","nativeSrc":"18424:2:125","nodeType":"YulLiteral","src":"18424:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18409:3:125","nodeType":"YulIdentifier","src":"18409:3:125"},"nativeSrc":"18409:18:125","nodeType":"YulFunctionCall","src":"18409:18:125"},{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"18443:6:125","nodeType":"YulIdentifier","src":"18443:6:125"}],"functionName":{"name":"iszero","nativeSrc":"18436:6:125","nodeType":"YulIdentifier","src":"18436:6:125"},"nativeSrc":"18436:14:125","nodeType":"YulFunctionCall","src":"18436:14:125"}],"functionName":{"name":"iszero","nativeSrc":"18429:6:125","nodeType":"YulIdentifier","src":"18429:6:125"},"nativeSrc":"18429:22:125","nodeType":"YulFunctionCall","src":"18429:22:125"}],"functionName":{"name":"mstore","nativeSrc":"18402:6:125","nodeType":"YulIdentifier","src":"18402:6:125"},"nativeSrc":"18402:50:125","nodeType":"YulFunctionCall","src":"18402:50:125"},"nativeSrc":"18402:50:125","nodeType":"YulExpressionStatement","src":"18402:50:125"}]},"name":"abi_encode_tuple_t_uint32_t_uint48_t_bool__to_t_uint32_t_uint48_t_bool__fromStack_reversed","nativeSrc":"18095:363:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18195:9:125","nodeType":"YulTypedName","src":"18195:9:125","type":""},{"name":"value2","nativeSrc":"18206:6:125","nodeType":"YulTypedName","src":"18206:6:125","type":""},{"name":"value1","nativeSrc":"18214:6:125","nodeType":"YulTypedName","src":"18214:6:125","type":""},{"name":"value0","nativeSrc":"18222:6:125","nodeType":"YulTypedName","src":"18222:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18233:4:125","nodeType":"YulTypedName","src":"18233:4:125","type":""}],"src":"18095:363:125"},{"body":{"nativeSrc":"18588:157:125","nodeType":"YulBlock","src":"18588:157:125","statements":[{"nativeSrc":"18598:26:125","nodeType":"YulAssignment","src":"18598:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18610:9:125","nodeType":"YulIdentifier","src":"18610:9:125"},{"kind":"number","nativeSrc":"18621:2:125","nodeType":"YulLiteral","src":"18621:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18606:3:125","nodeType":"YulIdentifier","src":"18606:3:125"},"nativeSrc":"18606:18:125","nodeType":"YulFunctionCall","src":"18606:18:125"},"variableNames":[{"name":"tail","nativeSrc":"18598:4:125","nodeType":"YulIdentifier","src":"18598:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18640:9:125","nodeType":"YulIdentifier","src":"18640:9:125"},{"arguments":[{"name":"value0","nativeSrc":"18655:6:125","nodeType":"YulIdentifier","src":"18655:6:125"},{"kind":"number","nativeSrc":"18663:10:125","nodeType":"YulLiteral","src":"18663:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"18651:3:125","nodeType":"YulIdentifier","src":"18651:3:125"},"nativeSrc":"18651:23:125","nodeType":"YulFunctionCall","src":"18651:23:125"}],"functionName":{"name":"mstore","nativeSrc":"18633:6:125","nodeType":"YulIdentifier","src":"18633:6:125"},"nativeSrc":"18633:42:125","nodeType":"YulFunctionCall","src":"18633:42:125"},"nativeSrc":"18633:42:125","nodeType":"YulExpressionStatement","src":"18633:42:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18695:9:125","nodeType":"YulIdentifier","src":"18695:9:125"},{"kind":"number","nativeSrc":"18706:2:125","nodeType":"YulLiteral","src":"18706:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18691:3:125","nodeType":"YulIdentifier","src":"18691:3:125"},"nativeSrc":"18691:18:125","nodeType":"YulFunctionCall","src":"18691:18:125"},{"arguments":[{"name":"value1","nativeSrc":"18715:6:125","nodeType":"YulIdentifier","src":"18715:6:125"},{"kind":"number","nativeSrc":"18723:14:125","nodeType":"YulLiteral","src":"18723:14:125","type":"","value":"0xffffffffffff"}],"functionName":{"name":"and","nativeSrc":"18711:3:125","nodeType":"YulIdentifier","src":"18711:3:125"},"nativeSrc":"18711:27:125","nodeType":"YulFunctionCall","src":"18711:27:125"}],"functionName":{"name":"mstore","nativeSrc":"18684:6:125","nodeType":"YulIdentifier","src":"18684:6:125"},"nativeSrc":"18684:55:125","nodeType":"YulFunctionCall","src":"18684:55:125"},"nativeSrc":"18684:55:125","nodeType":"YulExpressionStatement","src":"18684:55:125"}]},"name":"abi_encode_tuple_t_uint32_t_uint48__to_t_uint32_t_uint48__fromStack_reversed","nativeSrc":"18463:282:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18549:9:125","nodeType":"YulTypedName","src":"18549:9:125","type":""},{"name":"value1","nativeSrc":"18560:6:125","nodeType":"YulTypedName","src":"18560:6:125","type":""},{"name":"value0","nativeSrc":"18568:6:125","nodeType":"YulTypedName","src":"18568:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18579:4:125","nodeType":"YulTypedName","src":"18579:4:125","type":""}],"src":"18463:282:125"},{"body":{"nativeSrc":"18828:177:125","nodeType":"YulBlock","src":"18828:177:125","statements":[{"body":{"nativeSrc":"18874:16:125","nodeType":"YulBlock","src":"18874:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18883:1:125","nodeType":"YulLiteral","src":"18883:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"18886:1:125","nodeType":"YulLiteral","src":"18886:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18876:6:125","nodeType":"YulIdentifier","src":"18876:6:125"},"nativeSrc":"18876:12:125","nodeType":"YulFunctionCall","src":"18876:12:125"},"nativeSrc":"18876:12:125","nodeType":"YulExpressionStatement","src":"18876:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18849:7:125","nodeType":"YulIdentifier","src":"18849:7:125"},{"name":"headStart","nativeSrc":"18858:9:125","nodeType":"YulIdentifier","src":"18858:9:125"}],"functionName":{"name":"sub","nativeSrc":"18845:3:125","nodeType":"YulIdentifier","src":"18845:3:125"},"nativeSrc":"18845:23:125","nodeType":"YulFunctionCall","src":"18845:23:125"},{"kind":"number","nativeSrc":"18870:2:125","nodeType":"YulLiteral","src":"18870:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"18841:3:125","nodeType":"YulIdentifier","src":"18841:3:125"},"nativeSrc":"18841:32:125","nodeType":"YulFunctionCall","src":"18841:32:125"},"nativeSrc":"18838:52:125","nodeType":"YulIf","src":"18838:52:125"},{"nativeSrc":"18899:36:125","nodeType":"YulVariableDeclaration","src":"18899:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18925:9:125","nodeType":"YulIdentifier","src":"18925:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"18912:12:125","nodeType":"YulIdentifier","src":"18912:12:125"},"nativeSrc":"18912:23:125","nodeType":"YulFunctionCall","src":"18912:23:125"},"variables":[{"name":"value","nativeSrc":"18903:5:125","nodeType":"YulTypedName","src":"18903:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"18969:5:125","nodeType":"YulIdentifier","src":"18969:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"18944:24:125","nodeType":"YulIdentifier","src":"18944:24:125"},"nativeSrc":"18944:31:125","nodeType":"YulFunctionCall","src":"18944:31:125"},"nativeSrc":"18944:31:125","nodeType":"YulExpressionStatement","src":"18944:31:125"},{"nativeSrc":"18984:15:125","nodeType":"YulAssignment","src":"18984:15:125","value":{"name":"value","nativeSrc":"18994:5:125","nodeType":"YulIdentifier","src":"18994:5:125"},"variableNames":[{"name":"value0","nativeSrc":"18984:6:125","nodeType":"YulIdentifier","src":"18984:6:125"}]}]},"name":"abi_decode_tuple_t_address_payable","nativeSrc":"18750:255:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18794:9:125","nodeType":"YulTypedName","src":"18794:9:125","type":""},{"name":"dataEnd","nativeSrc":"18805:7:125","nodeType":"YulTypedName","src":"18805:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18817:6:125","nodeType":"YulTypedName","src":"18817:6:125","type":""}],"src":"18750:255:125"},{"body":{"nativeSrc":"19058:122:125","nodeType":"YulBlock","src":"19058:122:125","statements":[{"nativeSrc":"19068:51:125","nodeType":"YulAssignment","src":"19068:51:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"19084:1:125","nodeType":"YulIdentifier","src":"19084:1:125"},{"kind":"number","nativeSrc":"19087:10:125","nodeType":"YulLiteral","src":"19087:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"19080:3:125","nodeType":"YulIdentifier","src":"19080:3:125"},"nativeSrc":"19080:18:125","nodeType":"YulFunctionCall","src":"19080:18:125"},{"arguments":[{"name":"y","nativeSrc":"19104:1:125","nodeType":"YulIdentifier","src":"19104:1:125"},{"kind":"number","nativeSrc":"19107:10:125","nodeType":"YulLiteral","src":"19107:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"19100:3:125","nodeType":"YulIdentifier","src":"19100:3:125"},"nativeSrc":"19100:18:125","nodeType":"YulFunctionCall","src":"19100:18:125"}],"functionName":{"name":"sub","nativeSrc":"19076:3:125","nodeType":"YulIdentifier","src":"19076:3:125"},"nativeSrc":"19076:43:125","nodeType":"YulFunctionCall","src":"19076:43:125"},"variableNames":[{"name":"diff","nativeSrc":"19068:4:125","nodeType":"YulIdentifier","src":"19068:4:125"}]},{"body":{"nativeSrc":"19152:22:125","nodeType":"YulBlock","src":"19152:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"19154:16:125","nodeType":"YulIdentifier","src":"19154:16:125"},"nativeSrc":"19154:18:125","nodeType":"YulFunctionCall","src":"19154:18:125"},"nativeSrc":"19154:18:125","nodeType":"YulExpressionStatement","src":"19154:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"19134:4:125","nodeType":"YulIdentifier","src":"19134:4:125"},{"kind":"number","nativeSrc":"19140:10:125","nodeType":"YulLiteral","src":"19140:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"gt","nativeSrc":"19131:2:125","nodeType":"YulIdentifier","src":"19131:2:125"},"nativeSrc":"19131:20:125","nodeType":"YulFunctionCall","src":"19131:20:125"},"nativeSrc":"19128:46:125","nodeType":"YulIf","src":"19128:46:125"}]},"name":"checked_sub_t_uint32","nativeSrc":"19010:170:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"19040:1:125","nodeType":"YulTypedName","src":"19040:1:125","type":""},{"name":"y","nativeSrc":"19043:1:125","nodeType":"YulTypedName","src":"19043:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"19049:4:125","nodeType":"YulTypedName","src":"19049:4:125","type":""}],"src":"19010:170:125"},{"body":{"nativeSrc":"19321:130:125","nodeType":"YulBlock","src":"19321:130:125","statements":[{"nativeSrc":"19331:26:125","nodeType":"YulAssignment","src":"19331:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"19343:9:125","nodeType":"YulIdentifier","src":"19343:9:125"},{"kind":"number","nativeSrc":"19354:2:125","nodeType":"YulLiteral","src":"19354:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19339:3:125","nodeType":"YulIdentifier","src":"19339:3:125"},"nativeSrc":"19339:18:125","nodeType":"YulFunctionCall","src":"19339:18:125"},"variableNames":[{"name":"tail","nativeSrc":"19331:4:125","nodeType":"YulIdentifier","src":"19331:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19373:9:125","nodeType":"YulIdentifier","src":"19373:9:125"},{"arguments":[{"name":"value0","nativeSrc":"19388:6:125","nodeType":"YulIdentifier","src":"19388:6:125"},{"kind":"number","nativeSrc":"19396:4:125","nodeType":"YulLiteral","src":"19396:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"19384:3:125","nodeType":"YulIdentifier","src":"19384:3:125"},"nativeSrc":"19384:17:125","nodeType":"YulFunctionCall","src":"19384:17:125"}],"functionName":{"name":"mstore","nativeSrc":"19366:6:125","nodeType":"YulIdentifier","src":"19366:6:125"},"nativeSrc":"19366:36:125","nodeType":"YulFunctionCall","src":"19366:36:125"},"nativeSrc":"19366:36:125","nodeType":"YulExpressionStatement","src":"19366:36:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19422:9:125","nodeType":"YulIdentifier","src":"19422:9:125"},{"kind":"number","nativeSrc":"19433:2:125","nodeType":"YulLiteral","src":"19433:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19418:3:125","nodeType":"YulIdentifier","src":"19418:3:125"},"nativeSrc":"19418:18:125","nodeType":"YulFunctionCall","src":"19418:18:125"},{"name":"value1","nativeSrc":"19438:6:125","nodeType":"YulIdentifier","src":"19438:6:125"}],"functionName":{"name":"mstore","nativeSrc":"19411:6:125","nodeType":"YulIdentifier","src":"19411:6:125"},"nativeSrc":"19411:34:125","nodeType":"YulFunctionCall","src":"19411:34:125"},"nativeSrc":"19411:34:125","nodeType":"YulExpressionStatement","src":"19411:34:125"}]},"name":"abi_encode_tuple_t_rational_48_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"19185:266:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19282:9:125","nodeType":"YulTypedName","src":"19282:9:125","type":""},{"name":"value1","nativeSrc":"19293:6:125","nodeType":"YulTypedName","src":"19293:6:125","type":""},{"name":"value0","nativeSrc":"19301:6:125","nodeType":"YulTypedName","src":"19301:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19312:4:125","nodeType":"YulTypedName","src":"19312:4:125","type":""}],"src":"19185:266:125"}]},"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_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        let length := mload(value2)\n        mcopy(_1, add(value2, 0x20), length)\n        let _2 := add(_1, length)\n        mstore(_2, 0)\n        end := _2\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_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_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":125,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"6080604052600436106101db575f3560e01c80636d5115bd116100fd578063b700961311610092578063d22b598911610062578063d22b598914610636578063d6bb62c614610655578063f801a69814610674578063fe0776f5146106ad575f5ffd5b8063b7009613146105a8578063b7d2b162146105e3578063cc1b6c8114610602578063d1f856ee14610617575f5ffd5b8063a166aa89116100cd578063a166aa8914610501578063a64d95ce14610530578063abd9bd2a1461054f578063ac9650d81461057c575f5ffd5b80636d5115bd1461049157806375b238fc146104b0578063853551b8146104c357806394c7d7ee146104e2575f5ffd5b806330cae187116101735780634665096d116101435780634665096d146104035780634c1da1e2146104185780635296295214610437578063530dd45614610456575f5ffd5b806330cae1871461035c5780633adc277a1461037b5780633ca7c02a146103b15780634136a33c146103cb575f5ffd5b806318ff183c116101ae57806318ff183c146102b25780631cff79cd146102d157806325c471a0146102e45780633078f11414610303575f5ffd5b806308d6122d146101df5780630b0a93ba1461020057806312be87271461025f578063167bd39514610293575b5f5ffd5b3480156101ea575f5ffd5b506101fe6101f93660046120c0565b6106cc565b005b34801561020b575f5ffd5b5061024261021a366004612122565b6001600160401b039081165f9081526001602081905260409091200154600160401b90041690565b6040516001600160401b0390911681526020015b60405180910390f35b34801561026a575f5ffd5b5061027e610279366004612122565b61071e565b60405163ffffffff9091168152602001610256565b34801561029e575f5ffd5b506101fe6102ad36600461213b565b610758565b3480156102bd575f5ffd5b506101fe6102cc366004612176565b61076e565b61027e6102df3660046121df565b6107d0565b3480156102ef575f5ffd5b506101fe6102fe366004612242565b6108fc565b34801561030e575f5ffd5b5061032261031d366004612284565b61091e565b604051610256949392919065ffffffffffff948516815263ffffffff93841660208201529190921660408201529116606082015260800190565b348015610367575f5ffd5b506101fe61037636600461229e565b610982565b348015610386575f5ffd5b5061039a6103953660046122cf565b610994565b60405165ffffffffffff9091168152602001610256565b3480156103bc575f5ffd5b506102426001600160401b0381565b3480156103d6575f5ffd5b5061027e6103e53660046122cf565b5f90815260026020526040902054600160301b900463ffffffff1690565b34801561040e575f5ffd5b5062093a8061027e565b348015610423575f5ffd5b5061027e6104323660046122e6565b6109c5565b348015610442575f5ffd5b506101fe61045136600461229e565b6109f2565b348015610461575f5ffd5b50610242610470366004612122565b6001600160401b039081165f90815260016020819052604090912001541690565b34801561049c575f5ffd5b506102426104ab366004612316565b610a04565b3480156104bb575f5ffd5b506102425f81565b3480156104ce575f5ffd5b506101fe6104dd366004612342565b610a3e565b3480156104ed575f5ffd5b506101fe6104fc3660046121df565b610ad5565b34801561050c575f5ffd5b5061052061051b3660046122e6565b610b7f565b6040519015158152602001610256565b34801561053b575f5ffd5b506101fe61054a36600461235d565b610ba6565b34801561055a575f5ffd5b5061056e610569366004612385565b610bb8565b604051908152602001610256565b348015610587575f5ffd5b5061059b6105963660046123e5565b610bf0565b6040516102569190612423565b3480156105b3575f5ffd5b506105c76105c23660046124a7565b610cd5565b60408051921515835263ffffffff909116602083015201610256565b3480156105ee575f5ffd5b506101fe6105fd366004612284565b610d56565b34801561060d575f5ffd5b506206978061027e565b348015610622575f5ffd5b506105c7610631366004612284565b610d6d565b348015610641575f5ffd5b506101fe6106503660046124ef565b610de6565b348015610660575f5ffd5b5061027e61066f366004612385565b610df8565b34801561067f575f5ffd5b5061069361068e36600461250b565b610f4b565b6040805192835263ffffffff909116602083015201610256565b3480156106b8575f5ffd5b506101fe6106c7366004612284565b61108c565b6106d46110b5565b5f5b828110156107175761070f858585848181106106f4576106f4612578565b9050602002016020810190610709919061258c565b8461112c565b6001016106d6565b5050505050565b6001600160401b0381165f9081526001602081905260408220015461075290600160801b90046001600160701b03166111ad565b92915050565b6107606110b5565b61076a82826111cb565b5050565b6107766110b5565b604051637a9e5e4b60e01b81526001600160a01b038281166004830152831690637a9e5e4b906024015f604051808303815f87803b1580156107b6575f5ffd5b505af11580156107c8573d5f5f3e3d5ffd5b505050505050565b5f3381806107e08388888861123c565b91509150811580156107f6575063ffffffff8116155b15610849578287610807888861128d565b6040516381c6f24b60e01b81526001600160a01b0393841660048201529290911660248301526001600160e01b03191660448201526064015b60405180910390fd5b5f61085684898989610bb8565b90505f63ffffffff831615158061087c575061087182610994565b65ffffffffffff1615155b1561088d5761088a826112a4565b90505b6003546108a38a61089e8b8b61128d565b6113a2565b6003819055506108ea8a8a8a8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152503492506113c7915050565b506003559450505050505b9392505050565b6109046110b5565b61091883836109128661071e565b84611493565b50505050565b6001600160401b0382165f9081526001602090815260408083206001600160a01b03851684529091528120805465ffffffffffff81169291829182919061097490600160301b90046001600160701b03166116d9565b969991985096509350505050565b61098a6110b5565b61076a82826116fa565b5f8181526002602052604081205465ffffffffffff166109b38161179d565b6109bd57806108f5565b5f9392505050565b6001600160a01b0381165f90815260208190526040812060010154610752906001600160701b03166111ad565b6109fa6110b5565b61076a82826117cb565b6001600160a01b0382165f908152602081815260408083206001600160e01b0319851684529091529020546001600160401b031692915050565b610a466110b5565b6001600160401b0383161580610a6457506001600160401b03838116145b15610a8d5760405163061c6a4360e21b81526001600160401b0384166004820152602401610840565b826001600160401b03167f1256f5b5ecb89caec12db449738f2fbcd1ba5806cf38f35413f4e5c15bf6a4508383604051610ac89291906125cf565b60405180910390a2505050565b60408051638fb3603760e01b80825291513392918391638fb36037916004808201926020929091908290030181865afa158015610b14573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3891906125ea565b6001600160e01b03191614610b6b57604051630641fee960e31b81526001600160a01b0382166004820152602401610840565b610717610b7a85838686610bb8565b6112a4565b6001600160a01b03165f90815260208190526040902060010154600160701b900460ff1690565b610bae6110b5565b61076a828261187c565b5f84848484604051602001610bd09493929190612605565b604051602081830303815290604052805190602001209050949350505050565b604080515f815260208101909152606090826001600160401b03811115610c1957610c19612676565b604051908082528060200260200182016040528015610c4c57816020015b6060815260200190600190039081610c375790505b5091505f5b83811015610ccd57610ca830868684818110610c6f57610c6f612578565b9050602002810190610c81919061268a565b85604051602001610c94939291906126cc565b60405160208183030381529060405261198b565b838281518110610cba57610cba612578565b6020908102919091010152600101610c51565b505092915050565b5f5f610ce084610b7f565b15610cef57505f905080610d4e565b306001600160a01b03861603610d1357610d098484611a0d565b5f91509150610d4e565b5f610d1e8585610a04565b90505f5f610d2c8389610d6d565b9150915081610d3c575f5f610d46565b63ffffffff811615815b945094505050505b935093915050565b610d5e6110b5565b610d688282611a23565b505050565b5f8067fffffffffffffffe196001600160401b03851601610d935750600190505f610ddf565b5f5f610d9f868661091e565b5050915091508165ffffffffffff165f14158015610dd45750610dc0611b0c565b65ffffffffffff168265ffffffffffff1611155b93509150610ddf9050565b9250929050565b610dee6110b5565b61076a8282611b1b565b5f3381610e05858561128d565b90505f610e1488888888610bb8565b5f8181526002602052604081205491925065ffffffffffff9091169003610e515760405163060a299b60e41b815260048101829052602401610840565b826001600160a01b0316886001600160a01b031614610eea575f610e755f85610d6d565b5090505f610e8f610e8961021a8b87610a04565b86610d6d565b50905081158015610e9e575080155b15610ee757604051630ff89d4760e21b81526001600160a01b038087166004830152808c1660248301528a1660448201526001600160e01b031985166064820152608401610840565b50505b5f81815260026020526040808220805465ffffffffffff1916908190559051600160301b90910463ffffffff1691829184917fbd9ac67a6e2f6463b80927326310338bcbb4bdb7936ce1365ea3e01067e7b9f791a398975050505050505050565b5f803381610f5b8289898961123c565b9150505f8163ffffffff16610f6e611b0c565b610f7891906126ef565b905063ffffffff82161580610fae57505f8665ffffffffffff16118015610fae57508065ffffffffffff168665ffffffffffff16105b15610fbf5782896108078a8a61128d565b610fd98665ffffffffffff168265ffffffffffff16611bd6565b9550610fe7838a8a8a610bb8565b9450610ff285611be5565b5f8581526002602052604090819020805465ffffffffffff891669ffffffffffffffffffff19821617600160301b9182900463ffffffff90811660010190811692830291909117909255915190955086907f82a2da5dee54ea8021c6545b4444620291e07ee83be6dd57edb175062715f3b490611078908a9088908f908f908f9061270d565b60405180910390a350505094509492505050565b6001600160a01b0381163314610d5e57604051635f159e6360e01b815260040160405180910390fd5b335f806110c3838236611c31565b9150915081610d68578063ffffffff165f0361111d575f6110e48136611cf4565b5060405163f07e038f60e01b81526001600160a01b03871660048201526001600160401b03821660248201529092506044019050610840565b610918610b7a84305f36610bb8565b6001600160a01b0383165f818152602081815260408083206001600160e01b0319871680855290835292819020805467ffffffffffffffff19166001600160401b038716908117909155905192835292917f9ea6790c7dadfd01c9f8b9762b3682607af2c7e79e05a9f9fdf5580dde949151910160405180910390a3505050565b5f5f6111c1836001600160701b03166116d9565b5090949350505050565b6001600160a01b0382165f81815260208190526040908190206001018054841515600160701b0260ff60701b19909116179055517f90d4e7bb7e5d933792b3562e1741306f8be94837e1348dacef9b6f1df56eb1389061123090841515815260200190565b60405180910390a25050565b5f80306001600160a01b0386160361126257611259868585611c31565b91509150611284565b6004831061127e5761127986866105c2878761128d565b611259565b505f9050805b94509492505050565b5f61129b600482848661264f565b6108f591612752565b5f8181526002602052604081205465ffffffffffff811690600160301b900463ffffffff168183036112ec5760405163060a299b60e41b815260048101859052602401610840565b6112f4611b0c565b65ffffffffffff168265ffffffffffff16111561132757604051630c65b5bd60e11b815260048101859052602401610840565b6113308261179d565b1561135157604051631e2975b960e21b815260048101859052602401610840565b5f84815260026020526040808220805465ffffffffffff191690555163ffffffff83169186917f76a2a46953689d4861a5d3f6ed883ad7e6af674a21f8e162707159fc9dde614d9190a39392505050565b6001600160a01b0382165f9081526001600160e01b03198216602052604081206108f5565b6060814710156113f35760405163cf47918160e01b815247600482015260248101839052604401610840565b5f6113ff858486611eda565b905080801561142057505f3d118061142057505f856001600160a01b03163b115b156114355761142d611eef565b9150506108f5565b801561145f57604051639996b31560e01b81526001600160a01b0386166004820152602401610840565b3d156114725761146d611f08565b61148b565b60405163d6bda27560e01b815260040160405180910390fd5b509392505050565b5f67fffffffffffffffe196001600160401b038616016114d15760405163061c6a4360e21b81526001600160401b0386166004820152602401610840565b6001600160401b0385165f9081526001602090815260408083206001600160a01b038816845290915281205465ffffffffffff16159081156115c1578463ffffffff1661151c611b0c565b61152691906126ef565b905060405180604001604052808265ffffffffffff1681526020016115548663ffffffff1663ffffffff1690565b6001600160701b039081169091526001600160401b0389165f9081526001602090815260408083206001600160a01b038c1684528252909120835181549490920151909216600160301b026001600160a01b031990931665ffffffffffff9091161791909117905561166b565b6001600160401b0387165f9081526001602090815260408083206001600160a01b038a16845290915281205461160a91600160301b9091046001600160701b0316908690611f13565b6001600160401b0389165f9081526001602090815260408083206001600160a01b038c168452909152902080546001600160701b03909316600160301b0273ffffffffffffffffffffffffffff000000000000199093169290921790915590505b6040805163ffffffff8616815265ffffffffffff831660208201528315158183015290516001600160a01b038816916001600160401b038a16917ff98448b987f1428e0e230e1f3c6e2ce15b5693eaf31827fbd0b1ec4b424ae7cf9181900360600190a35095945050505050565b5f5f5f6116ed846116e8611b0c565b611fb9565b9250925092509193909250565b6001600160401b038216158061171857506001600160401b03828116145b156117415760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b038281165f818152600160208190526040808320909101805467ffffffffffffffff19169486169485179055517f1fd6dd7631312dfac2205b52913f99de03b4d7e381d5d27d3dbfe0713e6e63409190a35050565b5f6117a6611b0c565b65ffffffffffff166117bb62093a80846126ef565b65ffffffffffff16111592915050565b6001600160401b03821615806117e957506001600160401b03828116145b156118125760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b038281165f81815260016020819052604080832090910180546fffffffffffffffff00000000000000001916600160401b958716958602179055517f7a8059630b897b5de4c08ade69f8b90c3ead1f8596d62d10b6c4d14a0afb4ae29190a35050565b67fffffffffffffffe196001600160401b038316016118b95760405163061c6a4360e21b81526001600160401b0383166004820152602401610840565b6001600160401b0382165f908152600160208190526040822001546118f290600160801b90046001600160701b03168362069780611f13565b6001600160401b0385165f818152600160208190526040918290200180546001600160701b03909516600160801b026dffffffffffffffffffffffffffff60801b199095169490941790935591519092507ffeb69018ee8b8fd50ea86348f1267d07673379f72cffdeccec63853ee8ce8b4890610ac8908590859063ffffffff92909216825265ffffffffffff16602082015260400190565b60605f6119988484612005565b90508080156119b957505f3d11806119b957505f846001600160a01b03163b115b156119ce576119c6611eef565b915050610752565b80156119f857604051639996b31560e01b81526001600160a01b0385166004820152602401610840565b3d1561147257611a06611f08565b5092915050565b5f611a1883836113a2565b600354149392505050565b5f67fffffffffffffffe196001600160401b03841601611a615760405163061c6a4360e21b81526001600160401b0384166004820152602401610840565b6001600160401b0383165f9081526001602090815260408083206001600160a01b038616845290915281205465ffffffffffff169003611aa257505f610752565b6001600160401b0383165f8181526001602090815260408083206001600160a01b038716808552925280832080546001600160a01b0319169055519092917ff229baa593af28c41b1d16b748cd7688f0c83aaf92d4be41c44005defe84c16691a350600192915050565b5f611b1642612018565b905090565b6001600160a01b0382165f90815260208190526040812060010154611b4d906001600160701b03168362069780611f13565b6001600160a01b0385165f818152602081815260409182902060010180546dffffffffffffffffffffffffffff19166001600160701b039690961695909517909455805163ffffffff8716815265ffffffffffff841694810194909452919350917fa56b76017453f399ec2327ba00375dbfb1fd070ff854341ad6191e6a2e2de19c9101610ac8565b5f8282188284110282186108f5565b5f8181526002602052604090205465ffffffffffff168015801590611c105750611c0e8161179d565b155b1561076a5760405163813e945960e01b815260048101839052602401610840565b5f806004831015611c4657505f905080610d4e565b306001600160a01b03861603611c6957610d0930611c64868661128d565b611a0d565b5f5f5f611c768787611cf4565b92509250925082158015611c8e5750611c8e30610b7f565b15611ca1575f5f94509450505050610d4e565b5f5f611cad848b610d6d565b9150915081611cc6575f5f965096505050505050610d4e565b611cdc8363ffffffff168263ffffffff16611bd6565b63ffffffff8116159b909a5098505050505050505050565b5f80806004841015611d0d57505f915081905080611ed3565b5f611d18868661128d565b90506001600160e01b031981166310a6aa3760e31b1480611d4957506001600160e01b031981166330cae18760e01b145b80611d6457506001600160e01b0319811663294b14a960e11b145b80611d7f57506001600160e01b03198116635326cae760e11b145b80611d9a57506001600160e01b0319811663d22b598960e01b145b15611daf5760015f5f93509350935050611ed3565b6001600160e01b0319811663063fc60f60e21b1480611dde57506001600160e01b0319811663167bd39560e01b145b80611df957506001600160e01b031981166308d6122d60e01b145b15611e38575f611e0d60246004888a61264f565b810190611e1a91906122e6565b90505f611e26826109c5565b600196505f95509350611ed392505050565b6001600160e01b0319811663012e238d60e51b1480611e6757506001600160e01b03198116635be958b160e11b145b15611ebf575f611e7b60246004888a61264f565b810190611e889190612122565b90506001611eb1826001600160401b039081165f90815260016020819052604090912001541690565b5f9450945094505050611ed3565b5f611eca3083610a04565b5f935093509350505b9250925092565b5f5f5f83516020850186885af1949350505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f5f5f611f28866001600160701b03166111ad565b90505f611f638563ffffffff168763ffffffff168463ffffffff1611611f4e575f611f58565b611f588885612788565b63ffffffff16611bd6565b90508063ffffffff16611f74611b0c565b611f7e91906126ef565b925063ffffffff8616602083901b67ffffffff0000000016604085901b6dffffffffffff000000000000000016171793505050935093915050565b69ffffffffffffffffffff602083901c166001600160701b03831665ffffffffffff604085901c8116908416811115611ff457828282611ff8565b815f5f5b9250925092509250925092565b5f5f5f835160208501865af49392505050565b5f65ffffffffffff82111561204a576040516306dfcc6560e41b81526030600482015260248101839052604401610840565b5090565b6001600160a01b0381168114612062575f5ffd5b50565b5f5f83601f840112612075575f5ffd5b5081356001600160401b0381111561208b575f5ffd5b6020830191508360208260051b8501011115610ddf575f5ffd5b80356001600160401b03811681146120bb575f5ffd5b919050565b5f5f5f5f606085870312156120d3575f5ffd5b84356120de8161204e565b935060208501356001600160401b038111156120f8575f5ffd5b61210487828801612065565b90945092506121179050604086016120a5565b905092959194509250565b5f60208284031215612132575f5ffd5b6108f5826120a5565b5f5f6040838503121561214c575f5ffd5b82356121578161204e565b91506020830135801515811461216b575f5ffd5b809150509250929050565b5f5f60408385031215612187575f5ffd5b82356121928161204e565b9150602083013561216b8161204e565b5f5f83601f8401126121b2575f5ffd5b5081356001600160401b038111156121c8575f5ffd5b602083019150836020828501011115610ddf575f5ffd5b5f5f5f604084860312156121f1575f5ffd5b83356121fc8161204e565b925060208401356001600160401b03811115612216575f5ffd5b612222868287016121a2565b9497909650939450505050565b803563ffffffff811681146120bb575f5ffd5b5f5f5f60608486031215612254575f5ffd5b61225d846120a5565b9250602084013561226d8161204e565b915061227b6040850161222f565b90509250925092565b5f5f60408385031215612295575f5ffd5b612192836120a5565b5f5f604083850312156122af575f5ffd5b6122b8836120a5565b91506122c6602084016120a5565b90509250929050565b5f602082840312156122df575f5ffd5b5035919050565b5f602082840312156122f6575f5ffd5b81356108f58161204e565b6001600160e01b031981168114612062575f5ffd5b5f5f60408385031215612327575f5ffd5b82356123328161204e565b9150602083013561216b81612301565b5f5f5f60408486031215612354575f5ffd5b6121fc846120a5565b5f5f6040838503121561236e575f5ffd5b612377836120a5565b91506122c66020840161222f565b5f5f5f5f60608587031215612398575f5ffd5b84356123a38161204e565b935060208501356123b38161204e565b925060408501356001600160401b038111156123cd575f5ffd5b6123d9878288016121a2565b95989497509550505050565b5f5f602083850312156123f6575f5ffd5b82356001600160401b0381111561240b575f5ffd5b61241785828601612065565b90969095509350505050565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b8281101561249b57603f19878603018452815180518087528060208301602089015e5f602082890101526020601f19601f83011688010196505050602082019150602084019350600181019050612449565b50929695505050505050565b5f5f5f606084860312156124b9575f5ffd5b83356124c48161204e565b925060208401356124d48161204e565b915060408401356124e481612301565b809150509250925092565b5f5f60408385031215612500575f5ffd5b82356123778161204e565b5f5f5f5f6060858703121561251e575f5ffd5b84356125298161204e565b935060208501356001600160401b03811115612543575f5ffd5b61254f878288016121a2565b909450925050604085013565ffffffffffff8116811461256d575f5ffd5b939692955090935050565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561259c575f5ffd5b81356108f581612301565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b602081525f6125e26020830184866125a7565b949350505050565b5f602082840312156125fa575f5ffd5b81516108f581612301565b6001600160a01b038581168252841660208201526060604082018190525f9061263190830184866125a7565b9695505050505050565b634e487b7160e01b5f52601160045260245ffd5b5f5f8585111561265d575f5ffd5b83861115612669575f5ffd5b5050820193919092039150565b634e487b7160e01b5f52604160045260245ffd5b5f5f8335601e1984360301811261269f575f5ffd5b8301803591506001600160401b038211156126b8575f5ffd5b602001915036819003821315610ddf575f5ffd5b828482375f8382015f815283518060208601835e5f910190815295945050505050565b65ffffffffffff81811683821601908111156107525761075261263b565b65ffffffffffff861681526001600160a01b038581166020830152841660408201526080606082018190525f9061274790830184866125a7565b979650505050505050565b80356001600160e01b03198116906004841015611a06576001600160e01b031960049490940360031b84901b1690921692915050565b63ffffffff82811682821603908111156107525761075261263b56fea26469706673582212209b3164b8cdeac6faaf8c03b8a27b787dcccb72987c31447c36cedc0e6df90b7364736f6c634300081e0033","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 0x20C0 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 0x2122 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 0x2122 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 0x213B 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 0x2176 JUMP JUMPDEST PUSH2 0x76E JUMP JUMPDEST PUSH2 0x27E PUSH2 0x2DF CALLDATASIZE PUSH1 0x4 PUSH2 0x21DF 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 0x2242 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 0x2284 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 0x229E JUMP JUMPDEST PUSH2 0x982 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x386 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x39A PUSH2 0x395 CALLDATASIZE PUSH1 0x4 PUSH2 0x22CF JUMP JUMPDEST PUSH2 0x994 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 0x22CF 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 0x22E6 JUMP JUMPDEST PUSH2 0x9C5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x442 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x451 CALLDATASIZE PUSH1 0x4 PUSH2 0x229E JUMP JUMPDEST PUSH2 0x9F2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x461 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x242 PUSH2 0x470 CALLDATASIZE PUSH1 0x4 PUSH2 0x2122 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 0x2316 JUMP JUMPDEST PUSH2 0xA04 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 0x2342 JUMP JUMPDEST PUSH2 0xA3E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x4FC CALLDATASIZE PUSH1 0x4 PUSH2 0x21DF JUMP JUMPDEST PUSH2 0xAD5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x520 PUSH2 0x51B CALLDATASIZE PUSH1 0x4 PUSH2 0x22E6 JUMP JUMPDEST PUSH2 0xB7F 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 0x235D JUMP JUMPDEST PUSH2 0xBA6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x55A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x56E PUSH2 0x569 CALLDATASIZE PUSH1 0x4 PUSH2 0x2385 JUMP JUMPDEST PUSH2 0xBB8 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 0x23E5 JUMP JUMPDEST PUSH2 0xBF0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x256 SWAP2 SWAP1 PUSH2 0x2423 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x5C7 PUSH2 0x5C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x24A7 JUMP JUMPDEST PUSH2 0xCD5 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 0x2284 JUMP JUMPDEST PUSH2 0xD56 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 0x2284 JUMP JUMPDEST PUSH2 0xD6D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x641 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x1FE PUSH2 0x650 CALLDATASIZE PUSH1 0x4 PUSH2 0x24EF JUMP JUMPDEST PUSH2 0xDE6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x660 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27E PUSH2 0x66F CALLDATASIZE PUSH1 0x4 PUSH2 0x2385 JUMP JUMPDEST PUSH2 0xDF8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x67F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x693 PUSH2 0x68E CALLDATASIZE PUSH1 0x4 PUSH2 0x250B JUMP JUMPDEST PUSH2 0xF4B 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 0x2284 JUMP JUMPDEST PUSH2 0x108C JUMP JUMPDEST PUSH2 0x6D4 PUSH2 0x10B5 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 0x2578 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x709 SWAP2 SWAP1 PUSH2 0x258C JUMP JUMPDEST DUP5 PUSH2 0x112C 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 0x11AD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x760 PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x11CB JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x776 PUSH2 0x10B5 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 0x123C 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 0x128D 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 0xBB8 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH4 0xFFFFFFFF DUP4 AND ISZERO ISZERO DUP1 PUSH2 0x87C JUMPI POP PUSH2 0x871 DUP3 PUSH2 0x994 JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND ISZERO ISZERO JUMPDEST ISZERO PUSH2 0x88D JUMPI PUSH2 0x88A DUP3 PUSH2 0x12A4 JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x3 SLOAD PUSH2 0x8A3 DUP11 PUSH2 0x89E DUP12 DUP12 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x13A2 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 0x13C7 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 0x10B5 JUMP JUMPDEST PUSH2 0x918 DUP4 DUP4 PUSH2 0x912 DUP7 PUSH2 0x71E JUMP JUMPDEST DUP5 PUSH2 0x1493 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 DUP2 AND SWAP3 SWAP2 DUP3 SWAP2 DUP3 SWAP2 SWAP1 PUSH2 0x974 SWAP1 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x16D9 JUMP JUMPDEST SWAP7 SWAP10 SWAP2 SWAP9 POP SWAP7 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x98A PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x16FA JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x9B3 DUP2 PUSH2 0x179D JUMP JUMPDEST PUSH2 0x9BD 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 0x11AD JUMP JUMPDEST PUSH2 0x9FA PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x17CB 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 0xA46 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND ISZERO DUP1 PUSH2 0xA64 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0xA8D 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 0xAC8 SWAP3 SWAP2 SWAP1 PUSH2 0x25CF 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 0xB14 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 0xB38 SWAP2 SWAP1 PUSH2 0x25EA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND EQ PUSH2 0xB6B 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 0xB7A DUP6 DUP4 DUP7 DUP7 PUSH2 0xBB8 JUMP JUMPDEST PUSH2 0x12A4 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 0xBAE PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x187C JUMP JUMPDEST PUSH0 DUP5 DUP5 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xBD0 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2605 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 0xC19 JUMPI PUSH2 0xC19 PUSH2 0x2676 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xC4C JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xC37 JUMPI SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xCCD JUMPI PUSH2 0xCA8 ADDRESS DUP7 DUP7 DUP5 DUP2 DUP2 LT PUSH2 0xC6F JUMPI PUSH2 0xC6F PUSH2 0x2578 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0xC81 SWAP2 SWAP1 PUSH2 0x268A JUMP JUMPDEST DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xC94 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x26CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x198B JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xCBA JUMPI PUSH2 0xCBA PUSH2 0x2578 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0xC51 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xCE0 DUP5 PUSH2 0xB7F JUMP JUMPDEST ISZERO PUSH2 0xCEF JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xD4E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0xD13 JUMPI PUSH2 0xD09 DUP5 DUP5 PUSH2 0x1A0D JUMP JUMPDEST PUSH0 SWAP2 POP SWAP2 POP PUSH2 0xD4E JUMP JUMPDEST PUSH0 PUSH2 0xD1E DUP6 DUP6 PUSH2 0xA04 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH0 PUSH2 0xD2C DUP4 DUP10 PUSH2 0xD6D JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xD3C JUMPI PUSH0 PUSH0 PUSH2 0xD46 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 0xD5E PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0xD68 DUP3 DUP3 PUSH2 0x1A23 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP6 AND ADD PUSH2 0xD93 JUMPI POP PUSH1 0x1 SWAP1 POP PUSH0 PUSH2 0xDDF JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0xD9F DUP7 DUP7 PUSH2 0x91E JUMP JUMPDEST POP POP SWAP2 POP SWAP2 POP DUP2 PUSH6 0xFFFFFFFFFFFF AND PUSH0 EQ ISZERO DUP1 ISZERO PUSH2 0xDD4 JUMPI POP PUSH2 0xDC0 PUSH2 0x1B0C JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO JUMPDEST SWAP4 POP SWAP2 POP PUSH2 0xDDF SWAP1 POP JUMP JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xDEE PUSH2 0x10B5 JUMP JUMPDEST PUSH2 0x76A DUP3 DUP3 PUSH2 0x1B1B JUMP JUMPDEST PUSH0 CALLER DUP2 PUSH2 0xE05 DUP6 DUP6 PUSH2 0x128D JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0xE14 DUP9 DUP9 DUP9 DUP9 PUSH2 0xBB8 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 0xE51 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 0xEEA JUMPI PUSH0 PUSH2 0xE75 PUSH0 DUP6 PUSH2 0xD6D JUMP JUMPDEST POP SWAP1 POP PUSH0 PUSH2 0xE8F PUSH2 0xE89 PUSH2 0x21A DUP12 DUP8 PUSH2 0xA04 JUMP JUMPDEST DUP7 PUSH2 0xD6D JUMP JUMPDEST POP SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xE9E JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xEE7 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 0xF5B DUP3 DUP10 DUP10 DUP10 PUSH2 0x123C JUMP JUMPDEST SWAP2 POP POP PUSH0 DUP2 PUSH4 0xFFFFFFFF AND PUSH2 0xF6E PUSH2 0x1B0C JUMP JUMPDEST PUSH2 0xF78 SWAP2 SWAP1 PUSH2 0x26EF JUMP JUMPDEST SWAP1 POP PUSH4 0xFFFFFFFF DUP3 AND ISZERO DUP1 PUSH2 0xFAE JUMPI POP PUSH0 DUP7 PUSH6 0xFFFFFFFFFFFF AND GT DUP1 ISZERO PUSH2 0xFAE JUMPI POP DUP1 PUSH6 0xFFFFFFFFFFFF AND DUP7 PUSH6 0xFFFFFFFFFFFF AND LT JUMPDEST ISZERO PUSH2 0xFBF JUMPI DUP3 DUP10 PUSH2 0x807 DUP11 DUP11 PUSH2 0x128D JUMP JUMPDEST PUSH2 0xFD9 DUP7 PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x1BD6 JUMP JUMPDEST SWAP6 POP PUSH2 0xFE7 DUP4 DUP11 DUP11 DUP11 PUSH2 0xBB8 JUMP JUMPDEST SWAP5 POP PUSH2 0xFF2 DUP6 PUSH2 0x1BE5 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 0x1078 SWAP1 DUP11 SWAP1 DUP9 SWAP1 DUP16 SWAP1 DUP16 SWAP1 DUP16 SWAP1 PUSH2 0x270D 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 0xD5E 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 0x10C3 DUP4 DUP3 CALLDATASIZE PUSH2 0x1C31 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0xD68 JUMPI DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x111D JUMPI PUSH0 PUSH2 0x10E4 DUP2 CALLDATASIZE PUSH2 0x1CF4 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 0xB7A DUP5 ADDRESS PUSH0 CALLDATASIZE PUSH2 0xBB8 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 0x11C1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x16D9 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 0x1230 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 0x1262 JUMPI PUSH2 0x1259 DUP7 DUP6 DUP6 PUSH2 0x1C31 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x1284 JUMP JUMPDEST PUSH1 0x4 DUP4 LT PUSH2 0x127E JUMPI PUSH2 0x1279 DUP7 DUP7 PUSH2 0x5C2 DUP8 DUP8 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x1259 JUMP JUMPDEST POP PUSH0 SWAP1 POP DUP1 JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x129B PUSH1 0x4 DUP3 DUP5 DUP7 PUSH2 0x264F JUMP JUMPDEST PUSH2 0x8F5 SWAP2 PUSH2 0x2752 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 0x12EC 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 0x12F4 PUSH2 0x1B0C JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND DUP3 PUSH6 0xFFFFFFFFFFFF AND GT ISZERO PUSH2 0x1327 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 0x1330 DUP3 PUSH2 0x179D JUMP JUMPDEST ISZERO PUSH2 0x1351 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 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH2 0x8F5 JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x13F3 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 PUSH2 0x13FF DUP6 DUP5 DUP7 PUSH2 0x1EDA JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x1420 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x1420 JUMPI POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x1435 JUMPI PUSH2 0x142D PUSH2 0x1EEF JUMP JUMPDEST SWAP2 POP POP PUSH2 0x8F5 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x145F JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x840 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x1472 JUMPI PUSH2 0x146D PUSH2 0x1F08 JUMP JUMPDEST PUSH2 0x148B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFE NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP7 AND ADD PUSH2 0x14D1 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 0x15C1 JUMPI DUP5 PUSH4 0xFFFFFFFF AND PUSH2 0x151C PUSH2 0x1B0C JUMP JUMPDEST PUSH2 0x1526 SWAP2 SWAP1 PUSH2 0x26EF 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 0x1554 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 0x166B 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 0x160A SWAP2 PUSH1 0x1 PUSH1 0x30 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND SWAP1 DUP7 SWAP1 PUSH2 0x1F13 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 0x16ED DUP5 PUSH2 0x16E8 PUSH2 0x1B0C JUMP JUMPDEST PUSH2 0x1FB9 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND ISZERO DUP1 PUSH2 0x1718 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1741 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 0x17A6 PUSH2 0x1B0C JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF AND PUSH2 0x17BB PUSH3 0x93A80 DUP5 PUSH2 0x26EF 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 0x17E9 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND EQ JUMPDEST ISZERO PUSH2 0x1812 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 0x18B9 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 0x18F2 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x1F13 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 0xAC8 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 PUSH2 0x1998 DUP5 DUP5 PUSH2 0x2005 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x19B9 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x19B9 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x19CE JUMPI PUSH2 0x19C6 PUSH2 0x1EEF JUMP JUMPDEST SWAP2 POP POP PUSH2 0x752 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x19F8 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 RETURNDATASIZE ISZERO PUSH2 0x1472 JUMPI PUSH2 0x1A06 PUSH2 0x1F08 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A18 DUP4 DUP4 PUSH2 0x13A2 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 0x1A61 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 0x1AA2 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 0x1B16 TIMESTAMP PUSH2 0x2018 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 0x1B4D SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND DUP4 PUSH3 0x69780 PUSH2 0x1F13 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 0xAC8 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 0x1C10 JUMPI POP PUSH2 0x1C0E DUP2 PUSH2 0x179D 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 0x1C46 JUMPI POP PUSH0 SWAP1 POP DUP1 PUSH2 0xD4E JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SUB PUSH2 0x1C69 JUMPI PUSH2 0xD09 ADDRESS PUSH2 0x1C64 DUP7 DUP7 PUSH2 0x128D JUMP JUMPDEST PUSH2 0x1A0D JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1C76 DUP8 DUP8 PUSH2 0x1CF4 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP DUP3 ISZERO DUP1 ISZERO PUSH2 0x1C8E JUMPI POP PUSH2 0x1C8E ADDRESS PUSH2 0xB7F JUMP JUMPDEST ISZERO PUSH2 0x1CA1 JUMPI PUSH0 PUSH0 SWAP5 POP SWAP5 POP POP POP POP PUSH2 0xD4E JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1CAD DUP5 DUP12 PUSH2 0xD6D JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x1CC6 JUMPI PUSH0 PUSH0 SWAP7 POP SWAP7 POP POP POP POP POP POP PUSH2 0xD4E JUMP JUMPDEST PUSH2 0x1CDC DUP4 PUSH4 0xFFFFFFFF AND DUP3 PUSH4 0xFFFFFFFF AND PUSH2 0x1BD6 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 0x1D0D JUMPI POP PUSH0 SWAP2 POP DUP2 SWAP1 POP DUP1 PUSH2 0x1ED3 JUMP JUMPDEST PUSH0 PUSH2 0x1D18 DUP7 DUP7 PUSH2 0x128D JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x10A6AA37 PUSH1 0xE3 SHL EQ DUP1 PUSH2 0x1D49 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x30CAE187 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1D64 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x294B14A9 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x1D7F JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5326CAE7 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x1D9A JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0xD22B5989 PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x1DAF JUMPI PUSH1 0x1 PUSH0 PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP PUSH2 0x1ED3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x63FC60F PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x1DDE JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x167BD395 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1DF9 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x8D6122D PUSH1 0xE0 SHL EQ JUMPDEST ISZERO PUSH2 0x1E38 JUMPI PUSH0 PUSH2 0x1E0D PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x264F JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1E1A SWAP2 SWAP1 PUSH2 0x22E6 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1E26 DUP3 PUSH2 0x9C5 JUMP JUMPDEST PUSH1 0x1 SWAP7 POP PUSH0 SWAP6 POP SWAP4 POP PUSH2 0x1ED3 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 0x1E67 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x5BE958B1 PUSH1 0xE1 SHL EQ JUMPDEST ISZERO PUSH2 0x1EBF JUMPI PUSH0 PUSH2 0x1E7B PUSH1 0x24 PUSH1 0x4 DUP9 DUP11 PUSH2 0x264F JUMP JUMPDEST DUP2 ADD SWAP1 PUSH2 0x1E88 SWAP2 SWAP1 PUSH2 0x2122 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH2 0x1EB1 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 0x1ED3 JUMP JUMPDEST PUSH0 PUSH2 0x1ECA ADDRESS DUP4 PUSH2 0xA04 JUMP JUMPDEST PUSH0 SWAP4 POP SWAP4 POP SWAP4 POP POP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 DUP9 GAS CALL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x1F28 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x70 SHL SUB AND PUSH2 0x11AD JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1F63 DUP6 PUSH4 0xFFFFFFFF AND DUP8 PUSH4 0xFFFFFFFF AND DUP5 PUSH4 0xFFFFFFFF AND GT PUSH2 0x1F4E JUMPI PUSH0 PUSH2 0x1F58 JUMP JUMPDEST PUSH2 0x1F58 DUP9 DUP6 PUSH2 0x2788 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x1BD6 JUMP JUMPDEST SWAP1 POP DUP1 PUSH4 0xFFFFFFFF AND PUSH2 0x1F74 PUSH2 0x1B0C JUMP JUMPDEST PUSH2 0x1F7E SWAP2 SWAP1 PUSH2 0x26EF 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 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 0x1FF4 JUMPI DUP3 DUP3 DUP3 PUSH2 0x1FF8 JUMP JUMPDEST DUP2 PUSH0 PUSH0 JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH6 0xFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x204A 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 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2062 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2075 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x208B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x20BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x20D3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x20DE DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x20F8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2104 DUP8 DUP3 DUP9 ADD PUSH2 0x2065 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP PUSH2 0x2117 SWAP1 POP PUSH1 0x40 DUP7 ADD PUSH2 0x20A5 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2132 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x8F5 DUP3 PUSH2 0x20A5 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x214C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2157 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x216B 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 0x2187 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2192 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x216B DUP2 PUSH2 0x204E JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x21B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x21C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x21F1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x21FC DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2216 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2222 DUP7 DUP3 DUP8 ADD PUSH2 0x21A2 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x20BB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2254 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x225D DUP5 PUSH2 0x20A5 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x226D DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH2 0x227B PUSH1 0x40 DUP6 ADD PUSH2 0x222F JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2295 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2192 DUP4 PUSH2 0x20A5 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x22AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x22B8 DUP4 PUSH2 0x20A5 JUMP JUMPDEST SWAP2 POP PUSH2 0x22C6 PUSH1 0x20 DUP5 ADD PUSH2 0x20A5 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22DF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8F5 DUP2 PUSH2 0x204E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x2062 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2327 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2332 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x216B DUP2 PUSH2 0x2301 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2354 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x21FC DUP5 PUSH2 0x20A5 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x236E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2377 DUP4 PUSH2 0x20A5 JUMP JUMPDEST SWAP2 POP PUSH2 0x22C6 PUSH1 0x20 DUP5 ADD PUSH2 0x222F JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2398 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x23A3 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x23B3 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x23CD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x23D9 DUP8 DUP3 DUP9 ADD PUSH2 0x21A2 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x23F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x240B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x2417 DUP6 DUP3 DUP7 ADD PUSH2 0x2065 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 0x249B 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 0x2449 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 0x24B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x24C4 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x24D4 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x24E4 DUP2 PUSH2 0x2301 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2500 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x2377 DUP2 PUSH2 0x204E JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x251E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x2529 DUP2 PUSH2 0x204E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2543 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x254F DUP8 DUP3 DUP9 ADD PUSH2 0x21A2 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH6 0xFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x256D 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 0x259C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x8F5 DUP2 PUSH2 0x2301 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 0x25E2 PUSH1 0x20 DUP4 ADD DUP5 DUP7 PUSH2 0x25A7 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x25FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x8F5 DUP2 PUSH2 0x2301 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 0x2631 SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x25A7 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP 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 0x265D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x2669 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 0x269F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x26B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0xDDF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH0 DUP4 DUP3 ADD PUSH0 DUP2 MSTORE DUP4 MLOAD DUP1 PUSH1 0x20 DUP7 ADD DUP4 MCOPY PUSH0 SWAP2 ADD SWAP1 DUP2 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH6 0xFFFFFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x752 JUMPI PUSH2 0x752 PUSH2 0x263B 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 0x2747 SWAP1 DUP4 ADD DUP5 DUP7 PUSH2 0x25A7 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 0x1A06 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x752 JUMPI PUSH2 0x752 PUSH2 0x263B JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP12 BALANCE PUSH5 0xB8CDEAC6FA 0xAF DUP13 SUB 0xB8 LOG2 PUSH28 0x787DCCCB72987C31447C36CEDC0E6DF90B7364736F6C634300081E00 CALLER ","sourceMap":"3782:26184:56:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15209:291;;;;;;;;;;-1:-1:-1;15209:291:56;;;;;:::i;:::-;;:::i;:::-;;8594:124;;;;;;;;;;-1:-1:-1;8594:124:56;;;;;:::i;:::-;-1:-1:-1;;;;;8688:14:56;;;8663:6;8688:14;;;:6;:14;;;;;;;;:23;;-1:-1:-1;;;8688:23:56;;;;8594:124;;;;-1:-1:-1;;;;;1695:31:125;;;1677:50;;1665:2;1650:18;8594:124:56;;;;;;;;8759:134;;;;;;;;;;-1:-1:-1;8759:134:56;;;;;:::i;:::-;;:::i;:::-;;;1912:10:125;1900:23;;;1882:42;;1870:2;1855:18;8759:134:56;1738:192:125;16678:133:56;;;;;;;;;;-1:-1:-1;16678:133:56;;;;;:::i;:::-;;:::i;23845:159::-;;;;;;;;;;-1:-1:-1;23845:159:56;;;;;:::i;:::-;;:::i;19792:1238::-;;;;;;:::i;:::-;;:::i;10258:191::-;;;;;;;;;;-1:-1:-1;10258:191:56;;;;;:::i;:::-;;:::i;8934:408::-;;;;;;;;;;-1:-1:-1;8934:408:56;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;4791:14:125;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;10946:126:56;;;;;;;;;;-1:-1:-1;10946:126:56;;;;;:::i;:::-;;:::i;17306:184::-;;;;;;;;;;-1:-1:-1;17306:184:56;;;;;:::i;:::-;;:::i;:::-;;;5622:14:125;5610:27;;;5592:46;;5580:2;5565:18;17306:184:56;5448:196:125;5638:53:56;;;;;;;;;;;;-1:-1:-1;;;;;5638:53:56;;17531:111;;;;;;;;;;-1:-1:-1;17531:111:56;;;;;:::i;:::-;17590:6;17615:14;;;:10;:14;;;;;:20;-1:-1:-1;;;17615:20:56;;;;;17531:111;7626:90;;;;;;;;;;-1:-1:-1;7702:7:56;7626:90;;8255:139;;;;;;;;;;-1:-1:-1;8255:139:56;;;;;:::i;:::-;;:::i;11113:138::-;;;;;;;;;;-1:-1:-1;11113:138:56;;;;;:::i;:::-;;:::i;8435:118::-;;;;;;;;;;-1:-1:-1;8435:118:56;;;;;:::i;:::-;-1:-1:-1;;;;;8526:14:56;;;8501:6;8526:14;;;:6;:14;;;;;;;;:20;;;;8435:118;8050:164;;;;;;;;;;-1:-1:-1;8050:164:56;;;;;:::i;:::-;;:::i;5457:52::-;;;;;;;;;;;;5493:16;5457:52;;9961:256;;;;;;;;;;-1:-1:-1;9961:256:56;;;;;:::i;:::-;;:::i;22220:376::-;;;;;;;;;;-1:-1:-1;22220:376:56;;;;;:::i;:::-;;:::i;7887:122::-;;;;;;;;;;-1:-1:-1;7887:122:56;;;;;:::i;:::-;;:::i;:::-;;;7080:14:125;;7073:22;7055:41;;7043:2;7028:18;7887:122:56;6915:187:125;11292:134:56;;;;;;;;;;-1:-1:-1;11292:134:56;;;;;:::i;:::-;;:::i;23503:181::-;;;;;;;;;;-1:-1:-1;23503:181:56;;;;;:::i;:::-;;:::i;:::-;;;8204:25:125;;;8192:2;8177:18;23503:181:56;8058:177:125;1224:482:93;;;;;;;;;;-1:-1:-1;1224:482:93;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6783:802:56:-;;;;;;;;;;-1:-1:-1;6783:802:56;;;;;:::i;:::-;;:::i;:::-;;;;10436:14:125;;10429:22;10411:41;;10500:10;10488:23;;;10483:2;10468:18;;10461:51;10384:18;6783:802:56;10245:273:125;10490:127:56;;;;;;;;;;-1:-1:-1;10490:127:56;;;;;:::i;:::-;;:::i;7757:89::-;;;;;;;;;;-1:-1:-1;7833:6:56;7757:89;;9383:418;;;;;;;;;;-1:-1:-1;9383:418:56;;;;;:::i;:::-;;:::i;15928:147::-;;;;;;;;;;-1:-1:-1;15928:147:56;;;;;:::i;:::-;;:::i;21071:1108::-;;;;;;;;;;-1:-1:-1;21071:1108:56;;;;;:::i;:::-;;:::i;17683:1373::-;;;;;;;;;;-1:-1:-1;17683:1373:56;;;;;:::i;:::-;;:::i;:::-;;;;11744:25:125;;;11817:10;11805:23;;;11800:2;11785:18;;11778:51;11717:18;17683:1373:56;11572:263:125;10658:247:56;;;;;;;;;;-1:-1:-1;10658:247:56;;;;;:::i;:::-;;:::i;15209:291::-;6297:18;:16;:18::i;:::-;15375:9:::1;15370:124;15390:20:::0;;::::1;15370:124;;;15431:52;15454:6;15462:9;;15472:1;15462:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;15476:6;15431:22;:52::i;:::-;15412:3;;15370:124;;;;15209:291:::0;;;;:::o;8759:134::-;-1:-1:-1;;;;;8855:14:56;;8830:6;8855:14;;;:6;:14;;;;;;;:25;;:31;;-1:-1:-1;;;8855:25:56;;-1:-1:-1;;;;;8855:25:56;:29;:31::i;:::-;8848:38;8759:134;-1:-1:-1;;8759:134:56:o;16678:133::-;6297:18;:16;:18::i;:::-;16772:32:::1;16789:6;16797;16772:16;:32::i;:::-;16678:133:::0;;:::o;23845:159::-;6297:18;:16;:18::i;:::-;23948:49:::1;::::0;-1:-1:-1;;;23948:49:56;;-1:-1:-1;;;;;12386:32:125;;;23948:49:56::1;::::0;::::1;12368:51:125::0;23948:35:56;::::1;::::0;::::1;::::0;12341:18:125;;23948:49:56::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23845:159:::0;;:::o;19792:1238::-;19878:6;735:10:89;19878:6:56;;20051:38;735:10:89;20076:6:56;20084:4;;20051:16;:38::i;:::-;20016:73;;;;20150:9;20149:10;:26;;;;-1:-1:-1;20163:12:56;;;;20149:26;20145:131;;;20228:6;20236;20244:20;20259:4;;20244:14;:20::i;:::-;20198:67;;-1:-1:-1;;;20198:67:56;;-1:-1:-1;;;;;12648:32:125;;;20198:67:56;;;12630:51:125;12717:32;;;;12697:18;;;12690:60;-1:-1:-1;;;;;;12786:33:125;12766:18;;;12759:61;12603:18;;20198:67:56;;;;;;;;20145:131;20286:19;20308:35;20322:6;20330;20338:4;;20308:13;:35::i;:::-;20286:57;-1:-1:-1;20353:12:56;20545;;;;;;:45;;;20561:24;20573:11;20561;:24::i;:::-;:29;;;;20545:45;20541:116;;;20614:32;20634:11;20614:19;:32::i;:::-;20606:40;;20541:116;20749:12;;20786:46;20803:6;20811:20;20826:4;;20811:14;:20::i;:::-;20786:16;:46::i;:::-;20771:12;:61;;;;20867:54;20897:6;20905:4;;20867:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20911:9:56;;-1:-1:-1;20867:29:56;;-1:-1:-1;;20867:54:56:i;:::-;-1:-1:-1;20968:12:56;:32;21018:5;-1:-1:-1;;;;;19792:1238:56;;;;;;:::o;10258:191::-;6297:18;:16;:18::i;:::-;10372:70:::1;10383:6;10391:7;10400:25;10418:6;10400:17;:25::i;:::-;10427:14;10372:10;:70::i;:::-;;10258:191:::0;;;:::o;8934:408::-;-1:-1:-1;;;;;9141:14:56;;9036:12;9141:14;;;:6;:14;;;;;;;;-1:-1:-1;;;;;9141:31:56;;;;;;;;;9191:12;;;;;;9036;;;;;9141:31;9252:22;;-1:-1:-1;;;9252:12:56;;-1:-1:-1;;;;;9252:12:56;:20;:22::i;:::-;8934:408;;9213:61;;-1:-1:-1;9213:61:56;-1:-1:-1;8934:408:56;-1:-1:-1;;;;8934:408:56:o;10946:126::-;6297:18;:16;:18::i;:::-;11037:28:::1;11051:6;11059:5;11037:13;:28::i;17306:184::-:0;17368:6;17405:14;;;:10;:14;;;;;:24;;;17446:21;17405:24;17446:10;:21::i;:::-;:37;;17474:9;17446:37;;;17470:1;17439:44;17306:184;-1:-1:-1;;;17306:184:56:o;8255:139::-;-1:-1:-1;;;;;8354:16:56;;8329:6;8354:16;;;;;;;;;;:27;;;:33;;-1:-1:-1;;;;;8354:27:56;:31;:33::i;11113:138::-;6297:18;:16;:18::i;:::-;11210:34:::1;11227:6;11235:8;11210:16;:34::i;8050:164::-:0;-1:-1:-1;;;;;8168:16:56;;8143:6;8168:16;;;;;;;;;;;-1:-1:-1;;;;;;8168:39:56;;;;;;;;;;-1:-1:-1;;;;;8168:39:56;8050:164;;;;:::o;9961:256::-;6297:18;:16;:18::i;:::-;-1:-1:-1;;;;;10062:20:56;::::1;::::0;;:45:::1;;-1:-1:-1::0;;;;;;10086:21:56;;::::1;;10062:45;10058:114;;;10130:31;::::0;-1:-1:-1;;;10130:31:56;;-1:-1:-1;;;;;1695:31:125;;10130::56::1;::::0;::::1;1677:50:125::0;1650:18;;10130:31:56::1;1533:200:125::0;10058:114:56::1;10196:6;-1:-1:-1::0;;;;;10186:24:56::1;;10204:5;;10186:24;;;;;;;:::i;:::-;;;;;;;;9961:256:::0;;;:::o;22220:376::-;22353:47;;;-1:-1:-1;;;22353:47:56;;;;;735:10:89;;22404:46:56;735:10:89;;22404:46:56;;22353:47;;;;;;;;;;;;;;;735:10:89;22353:47:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22353:97:56;;22349:175;;22473:40;;-1:-1:-1;;;22473:40:56;;-1:-1:-1;;;;;12386:32:125;;22473:40:56;;;12368:51:125;12341:18;;22473:40:56;12222:203:125;22349:175:56;22533:56;22553:35;22567:6;22575;22583:4;;22553:13;:35::i;:::-;22533:19;:56::i;7887:122::-;-1:-1:-1;;;;;7979:16:56;7956:4;7979:16;;;;;;;;;;:23;;;-1:-1:-1;;;7979:23:56;;;;;7887:122::o;11292:134::-;6297:18;:16;:18::i;:::-;11387:32:::1;11402:6;11410:8;11387:14;:32::i;23503:181::-:0;23608:7;23655:6;23663;23671:4;;23644:32;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23634:43;;;;;;23627:50;;23503:181;;;;;;:::o;1224:482:93:-;1388:12;;;1324:20;1388:12;;;;;;;;1290:22;;1499:4;-1:-1:-1;;;;;1487:24:93;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1477:34:93;-1:-1:-1;1526:9:93;1521:155;1541:15;;;1521:155;;;1590:75;1627:4;1647;;1652:1;1647:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;1656;1634:30;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1590:28;:75::i;:::-;1577:7;1585:1;1577:10;;;;;;;;:::i;:::-;;;;;;;;;;:88;1558:3;;1521:155;;;;1685:14;1224:482;;;;:::o;6783:802:56:-;6908:14;6924:12;6952:22;6967:6;6952:14;:22::i;:::-;6948:631;;;-1:-1:-1;6998:5:56;;-1:-1:-1;6998:5:56;6990:17;;6948:631;7046:4;-1:-1:-1;;;;;7028:23:56;;;7024:555;;7294:30;7307:6;7315:8;7294:12;:30::i;:::-;7326:1;7286:42;;;;;;7024:555;7359:13;7375:39;7397:6;7405:8;7375:21;:39::i;:::-;7359:55;;7429:13;7444:19;7467:23;7475:6;7483;7467:7;:23::i;:::-;7428:62;;;;7511:8;:57;;7559:5;7566:1;7511:57;;;7523:17;;;;:12;7511:57;7504:64;;;;;;;7024:555;6783:802;;;;;;:::o;10490:127::-;6297:18;:16;:18::i;:::-;10582:28:::1;10594:6;10602:7;10582:11;:28::i;:::-;;10490:127:::0;;:::o;9383:418::-;9483:13;;-1:-1:-1;;;;;;;9535:21:56;;;9531:264;;-1:-1:-1;9580:4:56;;-1:-1:-1;9586:1:56;9572:16;;9531:264;9620:19;9641;9668:26;9678:6;9686:7;9668:9;:26::i;:::-;9619:75;;;;;;9716:12;:17;;9732:1;9716:17;;:53;;;;;9753:16;:14;:16::i;:::-;9737:32;;:12;:32;;;;9716:53;9708:76;-1:-1:-1;9771:12:56;-1:-1:-1;9708:76:56;;-1:-1:-1;9708:76:56;9531:264;9383:418;;;;;:::o;15928:147::-;6297:18;:16;:18::i;:::-;16030:38:::1;16051:6;16059:8;16030:20;:38::i;21071:1108::-:0;21164:6;735:10:89;21164:6:56;21242:20;21257:4;;21242:14;:20::i;:::-;21224:38;;21273:19;21295:35;21309:6;21317;21325:4;;21295:13;:35::i;:::-;21344:23;;;;:10;:23;;;;;:33;21273:57;;-1:-1:-1;21344:33:56;;;;:38;;21340:614;;21405:38;;-1:-1:-1;;;21405:38:56;;;;;8204:25:125;;;8177:18;;21405:38:56;8058:177:125;21340:614:56;21474:9;-1:-1:-1;;;;;21464:19:56;:6;-1:-1:-1;;;;;21464:19:56;;21460:494;;21633:12;21651:30;5493:16;21671:9;21651:7;:30::i;:::-;21632:49;;;21696:15;21717:76;21725:56;21741:39;21763:6;21771:8;21741:21;:39::i;21725:56::-;21783:9;21717:7;:76::i;:::-;21695:98;;;21812:7;21811:8;:23;;;;;21824:10;21823:11;21811:23;21807:137;;;21861:68;;-1:-1:-1;;;21861:68:56;;-1:-1:-1;;;;;16018:32:125;;;21861:68:56;;;16000:51:125;16087:32;;;16067:18;;;16060:60;16156:32;;16136:18;;;16129:60;-1:-1:-1;;;;;;16225:33:125;;16205:18;;;16198:61;15972:19;;21861:68:56;15771:494:125;21807:137:56;21485:469;;21460:494;21971:23;;;;:10;:23;;;;;;21964:40;;-1:-1:-1;;21964:40:56;;;;;22112:37;;-1:-1:-1;;;22068:29:56;;;;;;;;21971:23;;22112:37;;;22167:5;21071:1108;-1:-1:-1;;;;;;;;21071:1108:56:o;17683:1373::-;17805:19;;735:10:89;17805:19:56;17991:38;735:10:89;18016:6:56;18024:4;;17991:16;:38::i;:::-;17970:59;;;18040:14;18076:7;18057:26;;:16;:14;:16::i;:::-;:26;;;;:::i;:::-;18040:43;-1:-1:-1;18190:12:56;;;;;:44;;;18214:1;18207:4;:8;;;:26;;;;;18226:7;18219:14;;:4;:14;;;18207:26;18186:149;;;18287:6;18295;18303:20;18318:4;;18303:14;:20::i;18186:149::-;18407:23;18416:4;18407:23;;18422:7;18407:23;;:8;:23::i;:::-;18393:38;;18551:35;18565:6;18573;18581:4;;18551:13;:35::i;:::-;18537:49;;18597:31;18616:11;18597:18;:31::i;:::-;18750:23;;;;:10;:23;;;;;;;:29;;18803:40;;;-1:-1:-1;;18853:37:56;;;-1:-1:-1;;;18750:29:56;;;;;;;;18782:1;18750:33;18853:37;;;;;;;;;;;;;18905:66;;18750:33;;-1:-1:-1;18750:23:56;;18905:66;;;;18803:40;;18950:6;;18958;;18966:4;;;;18905:66;:::i;:::-;;;;;;;;17840:1216;;;17683:1373;;;;;;;:::o;10658:247::-;-1:-1:-1;;;;;10752:34:56;;735:10:89;10752:34:56;10748:102;;10809:30;;-1:-1:-1;;;10809:30:56;;;;;;;;;;;24358:503;735:10:89;24404:14:56;;24476:32;735:10:89;24404:14:56;809::89;24476:12:56;:32::i;:::-;24443:65;;;;24523:9;24518:337;;24552:5;:10;;24561:1;24552:10;24548:297;;24585:19;24610:33;24585:19;809:14:89;24610:21:56;:33::i;:::-;-1:-1:-1;24668:54:56;;-1:-1:-1;;;24668:54:56;;-1:-1:-1;;;;;17180:32:125;;24668:54:56;;;17162:51:125;-1:-1:-1;;;;;17249:31:125;;17229:18;;;17222:59;24582:61:56;;-1:-1:-1;17135:18:125;;;-1:-1:-1;24668:54:56;16990:297:125;24548::56;24761:69;24781:48;24795:6;24811:4;809:14:89;;23503:181:56;:::i;15659:228::-;-1:-1:-1;;;;;15766:16:56;;:8;:16;;;;;;;;;;;-1:-1:-1;;;;;;15766:39:56;;;;;;;;;;;;:48;;-1:-1:-1;;15766:48:56;-1:-1:-1;;;;;15766:48:56;;;;;;;;15829:51;;17436:52:125;;;15766:48:56;:16;15829:51;;17409:18:125;15829:51:56;;;;;;;15659:228;;;:::o;3608:130:108:-;3656:6;3675:12;3695:14;:4;-1:-1:-1;;;;;3695:12:108;;:14::i;:::-;-1:-1:-1;3674:35:108;;3608:130;-1:-1:-1;;;;3608:130:108:o;16981:164:56:-;-1:-1:-1;;;;;17063:16:56;;:8;:16;;;;;;;;;;;;:23;;:32;;;;;-1:-1:-1;;;17063:32:56;-1:-1:-1;;;;17063:32:56;;;;;;17110:28;;;;;17089:6;7080:14:125;7073:22;7055:41;;7043:2;7028:18;;6915:187;17110:28:56;;;;;;;;16981:164;;:::o;27376:378::-;27507:14;;27569:4;-1:-1:-1;;;;;27551:23:56;;;27547:201;;27597:26;27610:6;27618:4;;27597:12;:26::i;:::-;27590:33;;;;;;27547:201;27675:1;27661:15;;:76;;27692:45;27700:6;27708;27716:20;27731:4;;27716:14;:20::i;27692:45::-;27661:76;;;-1:-1:-1;27680:5:56;;-1:-1:-1;27680:5:56;27547:201;27376:378;;;;;;;:::o;29590:116::-;29657:6;29689:9;29696:1;29657:6;29689:4;;:9;:::i;:::-;29682:17;;;:::i;22786:676::-;22862:6;22899:23;;;:10;:23;;;;;:33;;;;;-1:-1:-1;;;22957:29:56;;;;23001:14;;;22997:294;;23038:38;;-1:-1:-1;;;23038:38:56;;;;;8204:25:125;;;8177:18;;23038:38:56;8058:177:125;22997:294:56;23109:16;:14;:16::i;:::-;23097:28;;:9;:28;;;23093:198;;;23148:34;;-1:-1:-1;;;23148:34:56;;;;;8204:25:125;;;8177:18;;23148:34:56;8058:177:125;23093:198:56;23203:21;23214:9;23203:10;:21::i;:::-;23199:92;;;23247:33;;-1:-1:-1;;;23247:33:56;;;;;8204:25:125;;;8177:18;;23247:33:56;8058:177:125;23199:92:56;23308:23;;;;:10;:23;;;;;;23301:40;;-1:-1:-1;;23301:40:56;;;23395:37;;;;;23319:11;;23395:37;;23308:23;23395:37;23450:5;22786:676;-1:-1:-1;;;22786:676:56:o;29780:184::-;-1:-1:-1;;;;;29921:24:56;;29861:7;928:15:100;;;-1:-1:-1;;;;;;29887:70:56;;963:4:100;956:15;1009:4;993:21;;29887:70:56;791:239:100;3165:696:87;3264:12;3316:5;3292:21;:29;3288:123;;;3344:56;;-1:-1:-1;;;3344:56:87;;3371:21;3344:56;;;18016:25:125;18057:18;;;18050:34;;;17989:18;;3344:56:87;17842:248:125;3288:123:87;3420:12;3435:46;3461:6;3469:5;3476:4;3435:25;:46::i;:::-;3420:61;;3495:7;:72;;;;-1:-1:-1;3539:1:87;4583:16:91;3507:33:87;:59;;;;3565:1;3544:6;-1:-1:-1;;;;;3544:18:87;;:22;3507:59;3491:364;;;3590:25;:23;:25::i;:::-;3583:32;;;;;3491:364;3636:7;3632:223;;;3666:24;;-1:-1:-1;;;3666:24:87;;-1:-1:-1;;;;;12386:32:125;;3666:24:87;;;12368:51:125;12341:18;;3666:24:87;12222:203:125;3632:223:87;4583:16:91;3711:33:87;3707:148;;3760:27;:25;:27::i;:::-;3707:148;;;3825:19;;-1:-1:-1;;;3825:19:87;;;;;;;;;;;3707:148;3278:583;3165:696;;;;;:::o;11603:1061:56:-;11761:4;-1:-1:-1;;;;;;;11781:21:56;;;11777:90;;11825:31;;-1:-1:-1;;;11825:31:56;;-1:-1:-1;;;;;1695:31:125;;11825::56;;;1677:50:125;1650:18;;11825:31:56;1533:200:125;11777:90:56;-1:-1:-1;;;;;11894:14:56;;11877;11894;;;:6;:14;;;;;;;;-1:-1:-1;;;;;11894:31:56;;;;;;;;;:37;;;:42;;11969:585;;;;12025:10;12006:29;;:16;:14;:16::i;:::-;:29;;;;:::i;:::-;11998:37;;12083:55;;;;;;;;12098:5;12083:55;;;;;;12112:24;:14;:22;;2588:20:108;;;2507:108;12112:24:56;-1:-1:-1;;;;;12083:55:56;;;;;;-1:-1:-1;;;;;12049:14:56;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12049:31:56;;;;;;;;;:89;;;;;;;;;;;;-1:-1:-1;;;12049:89:56;-1:-1:-1;;;;;;12049:89:56;;;;;;;;;;;;;;11969:585;;;-1:-1:-1;;;;;12430:14:56;;12528:1;12430:14;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12430:31:56;;;;;;;;;:37;:113;;-1:-1:-1;;;12430:37:56;;;-1:-1:-1;;;;;12430:37:56;;12496:14;;12430:48;:113::i;:::-;-1:-1:-1;;;;;12382:14:56;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;12382:31:56;;;;;;;;;12381:162;;-1:-1:-1;;;;;12381:162:56;;;-1:-1:-1;;;12381:162:56;-1:-1:-1;;12381:162:56;;;;;;;;;;;-1:-1:-1;11969:585:56;12569:62;;;18317:10:125;18305:23;;18287:42;;18377:14;18365:27;;18360:2;18345:18;;18338:55;18436:14;;18429:22;18409:18;;;18402:50;12569:62:56;;-1:-1:-1;;;;;12569:62:56;;;-1:-1:-1;;;;;12569:62:56;;;;;;;;18275:2:125;12569:62:56;;;-1:-1:-1;12648:9:56;11603:1061;-1:-1:-1;;;;;11603:1061:56:o;3392:159:108:-;3444:18;3464:17;3483:13;3515:29;3526:4;3532:11;:9;:11::i;:::-;3515:10;:29::i;:::-;3508:36;;;;;;3392:159;;;;;:::o;13620:285:56:-;-1:-1:-1;;;;;13703:20:56;;;;:45;;-1:-1:-1;;;;;;13727:21:56;;;;13703:45;13699:114;;;13771:31;;-1:-1:-1;;;13771:31:56;;-1:-1:-1;;;;;1695:31:125;;13771::56;;;1677:50:125;1650:18;;13771:31:56;1533:200:125;13699:114:56;-1:-1:-1;;;;;13823:14:56;;;;;;;:6;:14;;;;;;;;:20;;;:28;;-1:-1:-1;;13823:28:56;;;;;;;;;13867:31;;;13823:14;13867:31;13620:285;;:::o;29346:134::-;29406:4;29457:16;:14;:16::i;:::-;29429:44;;:24;7702:7;29429:9;:24;:::i;:::-;:44;;;;;29346:134;-1:-1:-1;;29346:134:56:o;14224:303::-;-1:-1:-1;;;;;14313:20:56;;;;:45;;-1:-1:-1;;;;;;14337:21:56;;;;14313:45;14309:114;;;14381:31;;-1:-1:-1;;;14381:31:56;;-1:-1:-1;;;;;1695:31:125;;14381::56;;;1677:50:125;1650:18;;14381:31:56;1533:200:125;14309:114:56;-1:-1:-1;;;;;14433:14:56;;;;;;;:6;:14;;;;;;;;:23;;;:34;;-1:-1:-1;;14433:34:56;-1:-1:-1;;;14433:34:56;;;;;;;;;14483:37;;;14433:14;14483:37;14224:303;;:::o;14674:374::-;-1:-1:-1;;;;;;;14761:21:56;;;14757:90;;14805:31;;-1:-1:-1;;;14805:31:56;;-1:-1:-1;;;;;1695:31:125;;14805::56;;;1677:50:125;1650:18;;14805:31:56;1533:200:125;14757:90:56;-1:-1:-1;;;;;14918:14:56;;14857:13;14918:14;;;:6;:14;;;;;;;:25;;:60;;-1:-1:-1;;;14918:25:56;;-1:-1:-1;;;;;14918:25:56;14955:8;7833:6;14918:36;:60::i;:::-;-1:-1:-1;;;;;14881:14:56;;;;;;:6;:14;;;;;;;;;:25;14880:98;;-1:-1:-1;;;;;14880:98:56;;;-1:-1:-1;;;14880:98:56;-1:-1:-1;;;;14880:98:56;;;;;;;;;;14994:47;;14880:98;;-1:-1:-1;14994:47:56;;;;15024:8;;14880:98;;18663:10:125;18651:23;;;;18633:42;;18723:14;18711:27;18706:2;18691:18;;18684:55;18621:2;18606:18;;18463:282;4691:549:87;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:87;4583:16:91;4886:33:87;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:87;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:87;;-1:-1:-1;;;;;12386:32:125;;5045:24:87;;;12368:51:125;12341:18;;5045:24:87;12222:203:125;5011:223:87;4583:16:91;5090:33:87;5086:148;;5139:27;:25;:27::i;:::-;4788:452;4691:549;;;;:::o;29085:157:56:-;29162:4;29201:34;29218:6;29226:8;29201:16;:34::i;:::-;29185:12;;:50;;29085:157;-1:-1:-1;;;29085:157:56:o;12925:400::-;13004:4;-1:-1:-1;;;;;;;13024:21:56;;;13020:90;;13068:31;;-1:-1:-1;;;13068:31:56;;-1:-1:-1;;;;;1695:31:125;;13068::56;;;1677:50:125;1650:18;;13068:31:56;1533:200:125;13020:90:56;-1:-1:-1;;;;;13124:14:56;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;13124:31:56;;;;;;;;;:37;;;:42;;13120:85;;-1:-1:-1;13189:5:56;13182:12;;13120:85;-1:-1:-1;;;;;13222:14:56;;;;;;:6;:14;;;;;;;;-1:-1:-1;;;;;13222:31:56;;;;;;;;;;13215:38;;-1:-1:-1;;;;;;13215:38:56;;;13269:28;13222:31;;:14;13269:28;;;-1:-1:-1;13314:4:56;12925:400;;;;:::o;750:110:108:-;794:6;819:34;837:15;819:17;:34::i;:::-;812:41;;750:110;:::o;16230:287:56:-;-1:-1:-1;;;;;16383:16:56;;16320:13;16383:16;;;;;;;;;;:27;;;:62;;-1:-1:-1;;;;;16383:27:56;16422:8;7833:6;16383:38;:62::i;:::-;-1:-1:-1;;;;;16344:16:56;;:8;:16;;;;;;;;;;;;:27;;16343:102;;-1:-1:-1;;16343:102:56;-1:-1:-1;;;;;16343:102:56;;;;;;;;;;;16461:49;;18663:10:125;18651:23;;18633:42;;18723:14;18711:27;;18691:18;;;18684:55;;;;16343:102:56;;-1:-1:-1;16344:16:56;16461:49;;18606:18:125;16461:49:56;18463:282:125;5451:111:105;5509:7;5328:5;;;5543;;;5327:36;5322:42;;5535:20;5087:294;19250:272:56;19322:20;19345:23;;;:10;:23;;;;;:33;;;19392:18;;;;;:48;;;19415:25;19426:13;19415:10;:25::i;:::-;19414:26;19392:48;19388:128;;;19463:42;;-1:-1:-1;;;19463:42:56;;;;;8204:25:125;;;8177:18;;19463:42:56;8058:177:125;27858:1107:56;27939:14;;27997:1;27983:15;;27979:63;;;-1:-1:-1;28022:5:56;;-1:-1:-1;28022:5:56;28014:17;;27979:63;28074:4;-1:-1:-1;;;;;28056:23:56;;;28052:334;;28322:49;28343:4;28350:20;28365:4;;28350:14;:20::i;:::-;28322:12;:49::i;28052:334::-;28397:20;28419:13;28434:21;28459:27;28481:4;;28459:21;:27::i;:::-;28396:90;;;;;;28567:15;28566:16;:49;;;;;28586:29;28609:4;28586:14;:29::i;:::-;28562:97;;;28639:5;28646:1;28631:17;;;;;;;;;28562:97;28670:11;28683:21;28708:23;28716:6;28724;28708:7;:23::i;:::-;28669:62;;;;28746:6;28741:55;;28776:5;28783:1;28768:17;;;;;;;;;;;28741:55;28881:40;28890:14;28881:40;;28906:14;28881:40;;:8;:40::i;:::-;28940:10;;;;;;;-1:-1:-1;27858:1107:56;-1:-1:-1;;;;;;;;;27858:1107:56:o;25267:1678::-;25355:20;;;25448:1;25434:15;;25430:66;;;-1:-1:-1;25473:5:56;;-1:-1:-1;25473:5:56;;-1:-1:-1;25473:5:56;25465:20;;25430:66;25506:15;25524:20;25539:4;;25524:14;:20::i;:::-;25506:38;-1:-1:-1;;;;;;;25664:35:56;;-1:-1:-1;;;25664:35:56;;:89;;-1:-1:-1;;;;;;;25715:38:56;;-1:-1:-1;;;25715:38:56;25664:89;:146;;;-1:-1:-1;;;;;;;25769:41:56;;-1:-1:-1;;;25769:41:56;25664:146;:201;;;-1:-1:-1;;;;;;;25826:39:56;;-1:-1:-1;;;25826:39:56;25664:201;:262;;;-1:-1:-1;;;;;;;25881:45:56;;-1:-1:-1;;;25881:45:56;25664:262;25647:343;;;25959:4;5493:16;25977:1;25951:28;;;;;;;;;25647:343;-1:-1:-1;;;;;;26097:41:56;;-1:-1:-1;;;26097:41:56;;:98;;-1:-1:-1;;;;;;;26154:41:56;;-1:-1:-1;;;26154:41:56;26097:98;:161;;;-1:-1:-1;;;;;;;26211:47:56;;-1:-1:-1;;;26211:47:56;26097:161;26080:414;;;26326:14;26354:15;26364:4;26359;26354;;:15;:::i;:::-;26343:38;;;;;;;:::i;:::-;26326:55;;26395:12;26410:27;26430:6;26410:19;:27::i;:::-;26459:4;;-1:-1:-1;5493:16:56;;-1:-1:-1;26395:42:56;-1:-1:-1;26451:32:56;;-1:-1:-1;;;26451:32:56;26080:414;-1:-1:-1;;;;;;26613:35:56;;-1:-1:-1;;;26613:35:56;;:75;;-1:-1:-1;;;;;;;26652:36:56;;-1:-1:-1;;;26652:36:56;26613:75;26609:254;;;26747:13;26774:15;26784:4;26779;26774;;:15;:::i;:::-;26763:37;;;;;;;:::i;:::-;26747:53;;26822:4;26828:20;26841:6;-1:-1:-1;;;;;8526:14:56;;;8501:6;8526:14;;;:6;:14;;;;;;;;:20;;;;8435:118;26828:20;26850:1;26814:38;;;;;;;;;;26609:254;26881:5;26888:46;26918:4;26925:8;26888:21;:46::i;:::-;26936:1;26873:65;;;;;;;25267:1678;;;;;;:::o;791:248:91:-;881:12;1018:4;1012;1005;999:11;992:4;986;982:15;975:5;967:6;960:5;955:68;944:79;791:248;-1:-1:-1;;;;791:248:91:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;4032:390:108;4153:18;4173:13;4198:12;4213:10;:4;-1:-1:-1;;;;;4213:8:108;;:10::i;:::-;4198:25;;4233:14;4257:61;4266:10;4257:61;;4286:8;4278:16;;:5;:16;;;:39;;4316:1;4278:39;;;4297:16;4305:8;4297:5;:16;:::i;:::-;4257:61;;:8;:61::i;:::-;4233:86;;4352:7;4338:21;;:11;:9;:11::i;:::-;:21;;;;:::i;:::-;4329:30;-1:-1:-1;5125:19:108;;;5119:2;5095:26;;;;;5088:2;5069:21;;;;;5068:54;:76;4369:46;;;;4032:390;;;;;;:::o;2867:307::-;4763:9;4770:2;4763:9;;;;-1:-1:-1;;;;;3061:11:108;;4799:9;4806:2;4799:9;;;;;;3091:19;;;;;:76;;3135:11;3148:10;3160:6;3091:76;;;3114:10;3126:1;3129;3091:76;3084:83;;;;;;2867:307;;;;;:::o;3383:242:91:-;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:91:o;14296:213:106:-;14352:6;14382:16;14374:24;;14370:103;;;14421:41;;-1:-1:-1;;;14421:41:106;;14452:2;14421:41;;;19366:36:125;19418:18;;;19411:34;;;19339:18;;14421:41:106;19185:266:125;14370:103:106;-1:-1:-1;14496:5:106;14296:213::o;14:131:125:-;-1:-1:-1;;;;;89:31:125;;79:42;;69:70;;135:1;132;125:12;69:70;14:131;:::o;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:125;;-1:-1:-1;;;;;349:30:125;;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:125;;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:125;1041:18;;1028:32;-1:-1:-1;;;;;1072:30:125;;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:125;-1:-1:-1;1296:37:125;;-1:-1:-1;1329:2:125;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:125;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:125;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:125;;-1:-1:-1;;;;;2937:30:125;;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:125;3414:18;;3401:32;-1:-1:-1;;;;;3445:30:125;;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:125;;-1:-1:-1;;;;3101:544:125: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:125;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:125;;5263:180;-1:-1:-1;5263:180:125: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:125;;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:125;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:125;7699:18;;7686:32;7727:33;7686:32;7727:33;:::i;:::-;7779:7;-1:-1:-1;7837:2:125;7822:18;;7809:32;-1:-1:-1;;;;;7853:30:125;;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:125;-1:-1:-1;;;;7368:685:125: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:125;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:125;-1:-1:-1;;;;8240:447:125: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:125;;8692:1016;-1:-1:-1;;;;;;8692:1016:125: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:125;10024:18;;10011:32;10052:33;10011:32;10052:33;:::i;:::-;10104:7;-1:-1:-1;10163:2:125;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:125;11176:18;;11163:32;-1:-1:-1;;;;;11207:30:125;;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:125;-1:-1:-1;;11453:2:125;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:125;;-1:-1:-1;;10847:720:125: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:125;12999:16;;;13017:4;12995:27;;;12988:38;;;;13080:2;13059:15;;;-1:-1:-1;;13055:29:125;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:125: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:125;;;13804:51;;13891:32;;13886:2;13871:18;;13864:60;13960:2;13955;13940:18;;13933:30;;;-1:-1:-1;;13980:62:125;;14023:18;;14015:6;14007;13980:62;:::i;:::-;13972:70;13609:439;-1:-1:-1;;;;;;13609:439:125:o;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:125;;;14618:25;;;;;-1:-1:-1;14318:331:125: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:125;;15150:50;;;15196:1;15193;15186:12;15150:50;15229:4;15217:17;;-1:-1:-1;15260:14:125;15256:27;;;15246:38;;15243:58;;;15297:1;15294;15287:12;15312:454;15541:6;15533;15528:3;15515:33;15497:3;15576:6;15571:3;15567:16;15603:1;15599:2;15592:13;15634:6;15628:13;15679:6;15672:4;15664:6;15660:17;15656:2;15650:36;15740:1;15705:15;;15729:13;;;15705:15;15312:454;-1:-1:-1;;;;;15312:454:125:o;16270:179::-;16369:14;16338:22;;;16362;;;16334:51;;16397:23;;16394:49;;;16423:18;;:::i;16454:531::-;16705:14;16693:27;;16675:46;;-1:-1:-1;;;;;16757:32:125;;;16752:2;16737:18;;16730:60;16826:32;;16821:2;16806:18;;16799:60;16895:3;16890:2;16875:18;;16868:31;;;-1:-1:-1;;16916:63:125;;16959:19;;16951:6;16943;16916:63;:::i;:::-;16908:71;16454:531;-1:-1:-1;;;;;;;16454:531:125:o;17499:338::-;17619:19;;-1:-1:-1;;;;;;17656:29:125;;;17705:1;17697:10;;17694:137;;;-1:-1:-1;;;;;;17766:1:125;17762:11;;;;17759:1;17755:19;17751:46;;;17743:55;17739:82;;;;17499:338;-1:-1:-1;;17499:338:125:o;19010:170::-;19107:10;19100:18;;;19080;;;19076:43;;19131:20;;19128:46;;;19154: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.30+commit.73712a01\"},\"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 `allowed` 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 contracts 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 operations 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 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\":{\"@openzeppelin/contracts/access/manager/AccessManager.sol\":\"AccessManager\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/manager/AccessManager.sol\":{\"keccak256\":\"0xb3c26f8cf9921ba0e73cbe23346d5cf3b765ff3933f89e0684e03667aeb54523\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://335bbeb612a6db2f2b41d9f8b282fef5711540dbdc68920ee500a75796397f2c\",\"dweb:/ipfs/QmZSAzYsCu3HTQikU6tvMAurvdkQV2rDvpJoskSegwmNEE\"]},\"@openzeppelin/contracts/access/manager/IAccessManaged.sol\":{\"keccak256\":\"0x1121e070554cffc6d536f658332a1a3d65fb2ea5573cd774f4ecbd02a2fcf4b7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6913b339d10018d60322c56faa6d6455e707b3c46a15261b639389a710a42ff3\",\"dweb:/ipfs/QmXrKvfnS5hnXACEzu1Kd4DBBW2gJm2Tg2tFpLynhvuTUM\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x71e3e350e83af0018a1683cc2ce4c13893cc01f78e5c9c305f6828608ffcfa18\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a7b521c9999007715c9bdedffaad2ef7d2ccfa07bca2a39ba9e0c2e8a944a63\",\"dweb:/ipfs/QmamPG6Y1p7iZh4cF8Hfp3oufowSRyB3S3DisTKkmVWSai\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@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/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Multicall.sol\":{\"keccak256\":\"0x72a5499dfae7676e4298a7299bccd3b27438ba1a4c72df5cd69c1c343c7ea20d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://de0fb51ccae3a0ff377ed185d187440fc612a71bf8e42fdb0e032ce747fa3eef\",\"dweb:/ipfs/QmPNBaiVsAiUhz8qfXcSy27S7CqBbtSd8rPqmaykKBhw7Q\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/cryptography/Hashes.sol\":{\"keccak256\":\"0x8cbd338f083224b4b6f0ff42cbda641a0a6c31ffcdca197452b97fe4d0918269\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f517dec5ba0c6491395acbf7f1d621f4e89e8f218bf5303c867b1c5ad70c6b11\",\"dweb:/ipfs/QmWmXHRLEw8W6ckth7NyYTU88YfvuS7xSsfae5ksL8qNUe\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x3765cc1833212456000f02d5de0478c2055b5f318e27032537c6d47c91e68b05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e77d9fd11b604fb3820ba6794f1e2516deb1093dada1c7225da6c46def95256\",\"dweb:/ipfs/QmcqQo9mmD5kekxFtJcvZTyCPaEgxQsSVfp7wLiE91fdAc\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":19892,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"_targets","offset":0,"slot":"0","type":"t_mapping(t_address,t_struct(TargetConfig)19847_storage)"},{"astId":19897,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"_roles","offset":0,"slot":"1","type":"t_mapping(t_uint64,t_struct(Role)19866_storage)"},{"astId":19902,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"_schedules","offset":0,"slot":"2","type":"t_mapping(t_bytes32,t_struct(Schedule)19871_storage)"},{"astId":19904,"contract":"@openzeppelin/contracts/access/manager/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)19853_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct AccessManager.Access)","numberOfBytes":"32","value":"t_struct(Access)19853_storage"},"t_mapping(t_address,t_struct(TargetConfig)19847_storage)":{"encoding":"mapping","key":"t_address","label":"mapping(address => struct AccessManager.TargetConfig)","numberOfBytes":"32","value":"t_struct(TargetConfig)19847_storage"},"t_mapping(t_bytes32,t_struct(Schedule)19871_storage)":{"encoding":"mapping","key":"t_bytes32","label":"mapping(bytes32 => struct AccessManager.Schedule)","numberOfBytes":"32","value":"t_struct(Schedule)19871_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)19866_storage)":{"encoding":"mapping","key":"t_uint64","label":"mapping(uint64 => struct AccessManager.Role)","numberOfBytes":"32","value":"t_struct(Role)19866_storage"},"t_struct(Access)19853_storage":{"encoding":"inplace","label":"struct AccessManager.Access","members":[{"astId":19849,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"since","offset":0,"slot":"0","type":"t_uint48"},{"astId":19852,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"delay","offset":6,"slot":"0","type":"t_userDefinedValueType(Delay)37133"}],"numberOfBytes":"32"},"t_struct(Role)19866_storage":{"encoding":"inplace","label":"struct AccessManager.Role","members":[{"astId":19858,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"members","offset":0,"slot":"0","type":"t_mapping(t_address,t_struct(Access)19853_storage)"},{"astId":19860,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"admin","offset":0,"slot":"1","type":"t_uint64"},{"astId":19862,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"guardian","offset":8,"slot":"1","type":"t_uint64"},{"astId":19865,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"grantDelay","offset":16,"slot":"1","type":"t_userDefinedValueType(Delay)37133"}],"numberOfBytes":"64"},"t_struct(Schedule)19871_storage":{"encoding":"inplace","label":"struct AccessManager.Schedule","members":[{"astId":19868,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"timepoint","offset":0,"slot":"0","type":"t_uint48"},{"astId":19870,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"nonce","offset":6,"slot":"0","type":"t_uint32"}],"numberOfBytes":"32"},"t_struct(TargetConfig)19847_storage":{"encoding":"inplace","label":"struct AccessManager.TargetConfig","members":[{"astId":19841,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"allowedRoles","offset":0,"slot":"0","type":"t_mapping(t_bytes4,t_uint64)"},{"astId":19844,"contract":"@openzeppelin/contracts/access/manager/AccessManager.sol:AccessManager","label":"adminDelay","offset":0,"slot":"1","type":"t_userDefinedValueType(Delay)37133"},{"astId":19846,"contract":"@openzeppelin/contracts/access/manager/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)37133":{"encoding":"inplace","label":"Time.Delay","numberOfBytes":"14"}}}}},"@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.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/manager/IAccessManaged.sol\":{\"keccak256\":\"0x1121e070554cffc6d536f658332a1a3d65fb2ea5573cd774f4ecbd02a2fcf4b7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6913b339d10018d60322c56faa6d6455e707b3c46a15261b639389a710a42ff3\",\"dweb:/ipfs/QmXrKvfnS5hnXACEzu1Kd4DBBW2gJm2Tg2tFpLynhvuTUM\"]}},\"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.30+commit.73712a01\"},\"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 `allowed` 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 contracts 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 operations 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 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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x71e3e350e83af0018a1683cc2ce4c13893cc01f78e5c9c305f6828608ffcfa18\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a7b521c9999007715c9bdedffaad2ef7d2ccfa07bca2a39ba9e0c2e8a944a63\",\"dweb:/ipfs/QmamPG6Y1p7iZh4cF8Hfp3oufowSRyB3S3DisTKkmVWSai\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/interfaces/IERC1363.sol":{"IERC1363":{"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":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","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":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferFromAndCall","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":"transferFromAndCall","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","approveAndCall(address,uint256)":"3177029f","approveAndCall(address,uint256,bytes)":"cae9ca51","balanceOf(address)":"70a08231","supportsInterface(bytes4)":"01ffc9a7","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferAndCall(address,uint256)":"1296ee62","transferAndCall(address,uint256,bytes)":"4000aea0","transferFrom(address,address,uint256)":"23b872dd","transferFromAndCall(address,address,uint256)":"d8fbe994","transferFromAndCall(address,address,uint256,bytes)":"c1d34b89"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"approveAndCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"approveAndCall\",\"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\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferAndCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"transferAndCall\",\"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\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"transferFromAndCall\",\"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\":\"transferFromAndCall\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363]. Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.\",\"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.\"},\"approveAndCall(address,uint256)\":{\"details\":\"Sets a `value` amount of tokens as the allowance of `spender` over the caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\",\"params\":{\"spender\":\"The address which will spend the funds.\",\"value\":\"The amount of tokens to be spent.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"approveAndCall(address,uint256,bytes)\":{\"details\":\"Sets a `value` amount of tokens as the allowance of `spender` over the caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.\",\"params\":{\"data\":\"Additional data with no specified format, sent in call to `spender`.\",\"spender\":\"The address which will spend the funds.\",\"value\":\"The amount of tokens to be spent.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"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.\"},\"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.\"},\"transferAndCall(address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to` and then calls {IERC1363Receiver-onTransferReceived} on `to`.\",\"params\":{\"to\":\"The address which you want to transfer to.\",\"value\":\"The amount of tokens to be transferred.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"transferAndCall(address,uint256,bytes)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to` and then calls {IERC1363Receiver-onTransferReceived} on `to`.\",\"params\":{\"data\":\"Additional data with no specified format, sent in call to `to`.\",\"to\":\"The address which you want to transfer to.\",\"value\":\"The amount of tokens to be transferred.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"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.\"},\"transferFromAndCall(address,address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism and then calls {IERC1363Receiver-onTransferReceived} on `to`.\",\"params\":{\"from\":\"The address which you want to send tokens from.\",\"to\":\"The address which you want to transfer to.\",\"value\":\"The amount of tokens to be transferred.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}},\"transferFromAndCall(address,address,uint256,bytes)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism and then calls {IERC1363Receiver-onTransferReceived} on `to`.\",\"params\":{\"data\":\"Additional data with no specified format, sent in call to `to`.\",\"from\":\"The address which you want to send tokens from.\",\"to\":\"The address which you want to transfer to.\",\"value\":\"The amount of tokens to be transferred.\"},\"returns\":{\"_0\":\"A boolean value indicating whether the operation succeeded unless throwing.\"}}},\"title\":\"IERC1363\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":\"IERC1363\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/interfaces/IERC1967.sol":{"IERC1967":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"previousAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"AdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"BeaconUpgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"}],\"devdoc\":{\"details\":\"ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":\"IERC1967\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/interfaces/IERC4626.sol":{"IERC4626":{"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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","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":[],"name":"asset","outputs":[{"internalType":"address","name":"assetTokenAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"maxAssets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"maxShares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"maxShares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"maxAssets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewWithdraw","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"totalManagedAssets","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"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"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","asset()":"38d52e0f","balanceOf(address)":"70a08231","convertToAssets(uint256)":"07a2d13a","convertToShares(uint256)":"c6e6f592","decimals()":"313ce567","deposit(uint256,address)":"6e553f65","maxDeposit(address)":"402d267d","maxMint(address)":"c63d75b6","maxRedeem(address)":"d905777e","maxWithdraw(address)":"ce96cb77","mint(uint256,address)":"94bf804d","name()":"06fdde03","previewDeposit(uint256)":"ef8b30f7","previewMint(uint256)":"b3d7f6b9","previewRedeem(uint256)":"4cdad506","previewWithdraw(uint256)":"0a28a477","redeem(uint256,address,address)":"ba087652","symbol()":"95d89b41","totalAssets()":"01e1d114","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","withdraw(uint256,address,address)":"b460af94"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"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\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"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\":[],\"name\":\"asset\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"assetTokenAddress\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"convertToShares\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"maxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"maxAssets\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"maxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"maxShares\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"maxShares\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"maxAssets\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"redeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"totalManagedAssets\",\"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\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-4626 \\\"Tokenized Vault Standard\\\", as defined in https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].\",\"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.\"},\"asset()\":{\"details\":\"Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing. - MUST be an ERC-20 token contract. - MUST NOT revert.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"convertToAssets(uint256)\":{\"details\":\"Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"convertToShares(uint256)\":{\"details\":\"Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"deposit(uint256,address)\":{\"details\":\"Deposit `assets` underlying tokens and send the corresponding number of vault shares (`shares`) to `receiver`. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   deposit execution, and are accounted for during deposit. - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"maxDeposit(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver, through a deposit call. - MUST return a limited value if receiver is subject to some deposit limit. - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited. - MUST NOT revert.\"},\"maxMint(address)\":{\"details\":\"Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call. - MUST return a limited value if receiver is subject to some mint limit. - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted. - MUST NOT revert.\"},\"maxRedeem(address)\":{\"details\":\"Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault, through a redeem call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock. - MUST NOT revert.\"},\"maxWithdraw(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the Vault, through a withdraw call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST NOT revert.\"},\"mint(uint256,address)\":{\"details\":\"Mints exactly `shares` vault shares to `receiver` in exchange for `assets` underlying tokens. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint   execution, and are accounted for during mint. - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"previewDeposit(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called   in the same transaction. - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the   deposit would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"previewMint(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the   same transaction. - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint   would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by minting.\"},\"previewRedeem(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the   same transaction. - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the   redemption would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by redeeming.\"},\"previewWithdraw(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if   called   in the same transaction. - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though   the withdrawal would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"redeem(uint256,address,address)\":{\"details\":\"Burns exactly shares from owner and sends assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   redeem execution, and are accounted for during redeem. - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token.\"},\"totalAssets()\":{\"details\":\"Returns the total amount of the underlying asset that is \\u201cmanaged\\u201d by Vault. - SHOULD include any compounding that occurs from yield. - MUST be inclusive of any fees that are charged against assets in the Vault. - MUST NOT revert.\"},\"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.\"},\"withdraw(uint256,address,address)\":{\"details\":\"Burns shares from owner and sends exactly assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   withdraw execution, and are accounted for during withdraw. - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC4626.sol\":\"IERC4626\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/interfaces/IERC5267.sol":{"IERC5267":{"abi":[{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"eip712Domain()":"84b0196e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"}},\"kind\":\"dev\",\"methods\":{\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":\"IERC5267\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0xfb223a85dd0b2175cfbbaa325a744e2cd74ecd17c3df2b77b0722f991d2725ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84bf1dea0589ec49c8d15d559cc6d86ee493048a89b2d4adb60fbe705a3d89ae\",\"dweb:/ipfs/Qmd56n556d529wk2pRMhYhm5nhMDhviwereodDikjs68w1\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/interfaces/draft-IERC1822.sol":{"IERC1822Proxiable":{"abi":[{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"proxiableUUID()":"52d1902d"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"ERC-1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified proxy whose upgrades are fully controlled by the current implementation.\",\"kind\":\"dev\",\"methods\":{\"proxiableUUID()\":{\"details\":\"Returns the storage slot that the proxiable contract assumes is being used to store the implementation address. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":\"IERC1822Proxiable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]}},\"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.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]}},\"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.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]}},\"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.30+commit.73712a01\"},\"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-721. 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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]}},\"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.30+commit.73712a01\"},\"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 on 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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/metatx/ERC2771Context.sol\":{\"keccak256\":\"0xfdb17e982a8744014f1804df7cacdd01f1423d19d79645da61def434eb17e4f3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4b626c1803f1bd5739859d1fe12bedb8c2c964a1f93e70d6f8c3c031d338d4e3\",\"dweb:/ipfs/QmacvfA17VWEhUApA4NykdWRC1koBXqvUdgCH13ZahmRxm\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol":{"ERC1967Proxy":{"abi":[{"inputs":[{"internalType":"address","name":"implementation","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"}],"evm":{"bytecode":{"functionDebugData":{"@_22813":{"entryPoint":null,"id":22813,"parameterSlots":2,"returnSlots":0},"@_checkNonPayable_23119":{"entryPoint":429,"id":23119,"parameterSlots":0,"returnSlots":0},"@_setImplementation_22899":{"entryPoint":145,"id":22899,"parameterSlots":1,"returnSlots":0},"@bubbleRevert_26962":{"entryPoint":506,"id":26962,"parameterSlots":0,"returnSlots":0},"@delegatecallNoReturn_26924":{"entryPoint":462,"id":26924,"parameterSlots":2,"returnSlots":1},"@functionDelegateCall_25956":{"entryPoint":268,"id":25956,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_31145":{"entryPoint":null,"id":31145,"parameterSlots":1,"returnSlots":1},"@returnDataSize_26948":{"entryPoint":null,"id":26948,"parameterSlots":0,"returnSlots":1},"@returnData_26956":{"entryPoint":481,"id":26956,"parameterSlots":0,"returnSlots":1},"@upgradeToAndCall_22935":{"entryPoint":51,"id":22935,"parameterSlots":2,"returnSlots":0},"abi_decode_tuple_t_addresst_bytes_memory_ptr_fromMemory":{"entryPoint":537,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x41":{"entryPoint":517,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:1457:125","nodeType":"YulBlock","src":"0:1457:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"46:95:125","nodeType":"YulBlock","src":"46:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"63:1:125","nodeType":"YulLiteral","src":"63:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"70:3:125","nodeType":"YulLiteral","src":"70:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"75:10:125","nodeType":"YulLiteral","src":"75:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"66:3:125","nodeType":"YulIdentifier","src":"66:3:125"},"nativeSrc":"66:20:125","nodeType":"YulFunctionCall","src":"66:20:125"}],"functionName":{"name":"mstore","nativeSrc":"56:6:125","nodeType":"YulIdentifier","src":"56:6:125"},"nativeSrc":"56:31:125","nodeType":"YulFunctionCall","src":"56:31:125"},"nativeSrc":"56:31:125","nodeType":"YulExpressionStatement","src":"56:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"103:1:125","nodeType":"YulLiteral","src":"103:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"106:4:125","nodeType":"YulLiteral","src":"106:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"96:6:125","nodeType":"YulIdentifier","src":"96:6:125"},"nativeSrc":"96:15:125","nodeType":"YulFunctionCall","src":"96:15:125"},"nativeSrc":"96:15:125","nodeType":"YulExpressionStatement","src":"96:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"127:1:125","nodeType":"YulLiteral","src":"127:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"130:4:125","nodeType":"YulLiteral","src":"130:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"120:6:125","nodeType":"YulIdentifier","src":"120:6:125"},"nativeSrc":"120:15:125","nodeType":"YulFunctionCall","src":"120:15:125"},"nativeSrc":"120:15:125","nodeType":"YulExpressionStatement","src":"120:15:125"}]},"name":"panic_error_0x41","nativeSrc":"14:127:125","nodeType":"YulFunctionDefinition","src":"14:127:125"},{"body":{"nativeSrc":"253:994:125","nodeType":"YulBlock","src":"253:994:125","statements":[{"body":{"nativeSrc":"299:16:125","nodeType":"YulBlock","src":"299:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"308:1:125","nodeType":"YulLiteral","src":"308:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"311:1:125","nodeType":"YulLiteral","src":"311:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"301:6:125","nodeType":"YulIdentifier","src":"301:6:125"},"nativeSrc":"301:12:125","nodeType":"YulFunctionCall","src":"301:12:125"},"nativeSrc":"301:12:125","nodeType":"YulExpressionStatement","src":"301:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"274:7:125","nodeType":"YulIdentifier","src":"274:7:125"},{"name":"headStart","nativeSrc":"283:9:125","nodeType":"YulIdentifier","src":"283:9:125"}],"functionName":{"name":"sub","nativeSrc":"270:3:125","nodeType":"YulIdentifier","src":"270:3:125"},"nativeSrc":"270:23:125","nodeType":"YulFunctionCall","src":"270:23:125"},{"kind":"number","nativeSrc":"295:2:125","nodeType":"YulLiteral","src":"295:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"266:3:125","nodeType":"YulIdentifier","src":"266:3:125"},"nativeSrc":"266:32:125","nodeType":"YulFunctionCall","src":"266:32:125"},"nativeSrc":"263:52:125","nodeType":"YulIf","src":"263:52:125"},{"nativeSrc":"324:29:125","nodeType":"YulVariableDeclaration","src":"324:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"343:9:125","nodeType":"YulIdentifier","src":"343:9:125"}],"functionName":{"name":"mload","nativeSrc":"337:5:125","nodeType":"YulIdentifier","src":"337:5:125"},"nativeSrc":"337:16:125","nodeType":"YulFunctionCall","src":"337:16:125"},"variables":[{"name":"value","nativeSrc":"328:5:125","nodeType":"YulTypedName","src":"328:5:125","type":""}]},{"body":{"nativeSrc":"416:16:125","nodeType":"YulBlock","src":"416:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"425:1:125","nodeType":"YulLiteral","src":"425:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"428:1:125","nodeType":"YulLiteral","src":"428:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"418:6:125","nodeType":"YulIdentifier","src":"418:6:125"},"nativeSrc":"418:12:125","nodeType":"YulFunctionCall","src":"418:12:125"},"nativeSrc":"418:12:125","nodeType":"YulExpressionStatement","src":"418:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"375:5:125","nodeType":"YulIdentifier","src":"375:5:125"},{"arguments":[{"name":"value","nativeSrc":"386:5:125","nodeType":"YulIdentifier","src":"386:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"401:3:125","nodeType":"YulLiteral","src":"401:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"406:1:125","nodeType":"YulLiteral","src":"406:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"397:3:125","nodeType":"YulIdentifier","src":"397:3:125"},"nativeSrc":"397:11:125","nodeType":"YulFunctionCall","src":"397:11:125"},{"kind":"number","nativeSrc":"410:1:125","nodeType":"YulLiteral","src":"410:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"393:3:125","nodeType":"YulIdentifier","src":"393:3:125"},"nativeSrc":"393:19:125","nodeType":"YulFunctionCall","src":"393:19:125"}],"functionName":{"name":"and","nativeSrc":"382:3:125","nodeType":"YulIdentifier","src":"382:3:125"},"nativeSrc":"382:31:125","nodeType":"YulFunctionCall","src":"382:31:125"}],"functionName":{"name":"eq","nativeSrc":"372:2:125","nodeType":"YulIdentifier","src":"372:2:125"},"nativeSrc":"372:42:125","nodeType":"YulFunctionCall","src":"372:42:125"}],"functionName":{"name":"iszero","nativeSrc":"365:6:125","nodeType":"YulIdentifier","src":"365:6:125"},"nativeSrc":"365:50:125","nodeType":"YulFunctionCall","src":"365:50:125"},"nativeSrc":"362:70:125","nodeType":"YulIf","src":"362:70:125"},{"nativeSrc":"441:15:125","nodeType":"YulAssignment","src":"441:15:125","value":{"name":"value","nativeSrc":"451:5:125","nodeType":"YulIdentifier","src":"451:5:125"},"variableNames":[{"name":"value0","nativeSrc":"441:6:125","nodeType":"YulIdentifier","src":"441:6:125"}]},{"nativeSrc":"465:39:125","nodeType":"YulVariableDeclaration","src":"465:39:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"489:9:125","nodeType":"YulIdentifier","src":"489:9:125"},{"kind":"number","nativeSrc":"500:2:125","nodeType":"YulLiteral","src":"500:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"485:3:125","nodeType":"YulIdentifier","src":"485:3:125"},"nativeSrc":"485:18:125","nodeType":"YulFunctionCall","src":"485:18:125"}],"functionName":{"name":"mload","nativeSrc":"479:5:125","nodeType":"YulIdentifier","src":"479:5:125"},"nativeSrc":"479:25:125","nodeType":"YulFunctionCall","src":"479:25:125"},"variables":[{"name":"offset","nativeSrc":"469:6:125","nodeType":"YulTypedName","src":"469:6:125","type":""}]},{"body":{"nativeSrc":"547:16:125","nodeType":"YulBlock","src":"547:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"556:1:125","nodeType":"YulLiteral","src":"556:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"559:1:125","nodeType":"YulLiteral","src":"559:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"549:6:125","nodeType":"YulIdentifier","src":"549:6:125"},"nativeSrc":"549:12:125","nodeType":"YulFunctionCall","src":"549:12:125"},"nativeSrc":"549:12:125","nodeType":"YulExpressionStatement","src":"549:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"519:6:125","nodeType":"YulIdentifier","src":"519:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"535:2:125","nodeType":"YulLiteral","src":"535:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"539:1:125","nodeType":"YulLiteral","src":"539:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"531:3:125","nodeType":"YulIdentifier","src":"531:3:125"},"nativeSrc":"531:10:125","nodeType":"YulFunctionCall","src":"531:10:125"},{"kind":"number","nativeSrc":"543:1:125","nodeType":"YulLiteral","src":"543:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"527:3:125","nodeType":"YulIdentifier","src":"527:3:125"},"nativeSrc":"527:18:125","nodeType":"YulFunctionCall","src":"527:18:125"}],"functionName":{"name":"gt","nativeSrc":"516:2:125","nodeType":"YulIdentifier","src":"516:2:125"},"nativeSrc":"516:30:125","nodeType":"YulFunctionCall","src":"516:30:125"},"nativeSrc":"513:50:125","nodeType":"YulIf","src":"513:50:125"},{"nativeSrc":"572:32:125","nodeType":"YulVariableDeclaration","src":"572:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"586:9:125","nodeType":"YulIdentifier","src":"586:9:125"},{"name":"offset","nativeSrc":"597:6:125","nodeType":"YulIdentifier","src":"597:6:125"}],"functionName":{"name":"add","nativeSrc":"582:3:125","nodeType":"YulIdentifier","src":"582:3:125"},"nativeSrc":"582:22:125","nodeType":"YulFunctionCall","src":"582:22:125"},"variables":[{"name":"_1","nativeSrc":"576:2:125","nodeType":"YulTypedName","src":"576:2:125","type":""}]},{"body":{"nativeSrc":"652:16:125","nodeType":"YulBlock","src":"652:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"661:1:125","nodeType":"YulLiteral","src":"661:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"664:1:125","nodeType":"YulLiteral","src":"664:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"654:6:125","nodeType":"YulIdentifier","src":"654:6:125"},"nativeSrc":"654:12:125","nodeType":"YulFunctionCall","src":"654:12:125"},"nativeSrc":"654:12:125","nodeType":"YulExpressionStatement","src":"654:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"631:2:125","nodeType":"YulIdentifier","src":"631:2:125"},{"kind":"number","nativeSrc":"635:4:125","nodeType":"YulLiteral","src":"635:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"627:3:125","nodeType":"YulIdentifier","src":"627:3:125"},"nativeSrc":"627:13:125","nodeType":"YulFunctionCall","src":"627:13:125"},{"name":"dataEnd","nativeSrc":"642:7:125","nodeType":"YulIdentifier","src":"642:7:125"}],"functionName":{"name":"slt","nativeSrc":"623:3:125","nodeType":"YulIdentifier","src":"623:3:125"},"nativeSrc":"623:27:125","nodeType":"YulFunctionCall","src":"623:27:125"}],"functionName":{"name":"iszero","nativeSrc":"616:6:125","nodeType":"YulIdentifier","src":"616:6:125"},"nativeSrc":"616:35:125","nodeType":"YulFunctionCall","src":"616:35:125"},"nativeSrc":"613:55:125","nodeType":"YulIf","src":"613:55:125"},{"nativeSrc":"677:23:125","nodeType":"YulVariableDeclaration","src":"677:23:125","value":{"arguments":[{"name":"_1","nativeSrc":"697:2:125","nodeType":"YulIdentifier","src":"697:2:125"}],"functionName":{"name":"mload","nativeSrc":"691:5:125","nodeType":"YulIdentifier","src":"691:5:125"},"nativeSrc":"691:9:125","nodeType":"YulFunctionCall","src":"691:9:125"},"variables":[{"name":"length","nativeSrc":"681:6:125","nodeType":"YulTypedName","src":"681:6:125","type":""}]},{"body":{"nativeSrc":"743:22:125","nodeType":"YulBlock","src":"743:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"745:16:125","nodeType":"YulIdentifier","src":"745:16:125"},"nativeSrc":"745:18:125","nodeType":"YulFunctionCall","src":"745:18:125"},"nativeSrc":"745:18:125","nodeType":"YulExpressionStatement","src":"745:18:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"715:6:125","nodeType":"YulIdentifier","src":"715:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"731:2:125","nodeType":"YulLiteral","src":"731:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"735:1:125","nodeType":"YulLiteral","src":"735:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"727:3:125","nodeType":"YulIdentifier","src":"727:3:125"},"nativeSrc":"727:10:125","nodeType":"YulFunctionCall","src":"727:10:125"},{"kind":"number","nativeSrc":"739:1:125","nodeType":"YulLiteral","src":"739:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"723:3:125","nodeType":"YulIdentifier","src":"723:3:125"},"nativeSrc":"723:18:125","nodeType":"YulFunctionCall","src":"723:18:125"}],"functionName":{"name":"gt","nativeSrc":"712:2:125","nodeType":"YulIdentifier","src":"712:2:125"},"nativeSrc":"712:30:125","nodeType":"YulFunctionCall","src":"712:30:125"},"nativeSrc":"709:56:125","nodeType":"YulIf","src":"709:56:125"},{"nativeSrc":"774:23:125","nodeType":"YulVariableDeclaration","src":"774:23:125","value":{"arguments":[{"kind":"number","nativeSrc":"794:2:125","nodeType":"YulLiteral","src":"794:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"788:5:125","nodeType":"YulIdentifier","src":"788:5:125"},"nativeSrc":"788:9:125","nodeType":"YulFunctionCall","src":"788:9:125"},"variables":[{"name":"memPtr","nativeSrc":"778:6:125","nodeType":"YulTypedName","src":"778:6:125","type":""}]},{"nativeSrc":"806:85:125","nodeType":"YulVariableDeclaration","src":"806:85:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"828:6:125","nodeType":"YulIdentifier","src":"828:6:125"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"852:6:125","nodeType":"YulIdentifier","src":"852:6:125"},{"kind":"number","nativeSrc":"860:4:125","nodeType":"YulLiteral","src":"860:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"848:3:125","nodeType":"YulIdentifier","src":"848:3:125"},"nativeSrc":"848:17:125","nodeType":"YulFunctionCall","src":"848:17:125"},{"arguments":[{"kind":"number","nativeSrc":"871:2:125","nodeType":"YulLiteral","src":"871:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"867:3:125","nodeType":"YulIdentifier","src":"867:3:125"},"nativeSrc":"867:7:125","nodeType":"YulFunctionCall","src":"867:7:125"}],"functionName":{"name":"and","nativeSrc":"844:3:125","nodeType":"YulIdentifier","src":"844:3:125"},"nativeSrc":"844:31:125","nodeType":"YulFunctionCall","src":"844:31:125"},{"kind":"number","nativeSrc":"877:2:125","nodeType":"YulLiteral","src":"877:2:125","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"840:3:125","nodeType":"YulIdentifier","src":"840:3:125"},"nativeSrc":"840:40:125","nodeType":"YulFunctionCall","src":"840:40:125"},{"arguments":[{"kind":"number","nativeSrc":"886:2:125","nodeType":"YulLiteral","src":"886:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"882:3:125","nodeType":"YulIdentifier","src":"882:3:125"},"nativeSrc":"882:7:125","nodeType":"YulFunctionCall","src":"882:7:125"}],"functionName":{"name":"and","nativeSrc":"836:3:125","nodeType":"YulIdentifier","src":"836:3:125"},"nativeSrc":"836:54:125","nodeType":"YulFunctionCall","src":"836:54:125"}],"functionName":{"name":"add","nativeSrc":"824:3:125","nodeType":"YulIdentifier","src":"824:3:125"},"nativeSrc":"824:67:125","nodeType":"YulFunctionCall","src":"824:67:125"},"variables":[{"name":"newFreePtr","nativeSrc":"810:10:125","nodeType":"YulTypedName","src":"810:10:125","type":""}]},{"body":{"nativeSrc":"966:22:125","nodeType":"YulBlock","src":"966:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"968:16:125","nodeType":"YulIdentifier","src":"968:16:125"},"nativeSrc":"968:18:125","nodeType":"YulFunctionCall","src":"968:18:125"},"nativeSrc":"968:18:125","nodeType":"YulExpressionStatement","src":"968:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"909:10:125","nodeType":"YulIdentifier","src":"909:10:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"929:2:125","nodeType":"YulLiteral","src":"929:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"933:1:125","nodeType":"YulLiteral","src":"933:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"925:3:125","nodeType":"YulIdentifier","src":"925:3:125"},"nativeSrc":"925:10:125","nodeType":"YulFunctionCall","src":"925:10:125"},{"kind":"number","nativeSrc":"937:1:125","nodeType":"YulLiteral","src":"937:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"921:3:125","nodeType":"YulIdentifier","src":"921:3:125"},"nativeSrc":"921:18:125","nodeType":"YulFunctionCall","src":"921:18:125"}],"functionName":{"name":"gt","nativeSrc":"906:2:125","nodeType":"YulIdentifier","src":"906:2:125"},"nativeSrc":"906:34:125","nodeType":"YulFunctionCall","src":"906:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"945:10:125","nodeType":"YulIdentifier","src":"945:10:125"},{"name":"memPtr","nativeSrc":"957:6:125","nodeType":"YulIdentifier","src":"957:6:125"}],"functionName":{"name":"lt","nativeSrc":"942:2:125","nodeType":"YulIdentifier","src":"942:2:125"},"nativeSrc":"942:22:125","nodeType":"YulFunctionCall","src":"942:22:125"}],"functionName":{"name":"or","nativeSrc":"903:2:125","nodeType":"YulIdentifier","src":"903:2:125"},"nativeSrc":"903:62:125","nodeType":"YulFunctionCall","src":"903:62:125"},"nativeSrc":"900:88:125","nodeType":"YulIf","src":"900:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1004:2:125","nodeType":"YulLiteral","src":"1004:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1008:10:125","nodeType":"YulIdentifier","src":"1008:10:125"}],"functionName":{"name":"mstore","nativeSrc":"997:6:125","nodeType":"YulIdentifier","src":"997:6:125"},"nativeSrc":"997:22:125","nodeType":"YulFunctionCall","src":"997:22:125"},"nativeSrc":"997:22:125","nodeType":"YulExpressionStatement","src":"997:22:125"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"1035:6:125","nodeType":"YulIdentifier","src":"1035:6:125"},{"name":"length","nativeSrc":"1043:6:125","nodeType":"YulIdentifier","src":"1043:6:125"}],"functionName":{"name":"mstore","nativeSrc":"1028:6:125","nodeType":"YulIdentifier","src":"1028:6:125"},"nativeSrc":"1028:22:125","nodeType":"YulFunctionCall","src":"1028:22:125"},"nativeSrc":"1028:22:125","nodeType":"YulExpressionStatement","src":"1028:22:125"},{"body":{"nativeSrc":"1100:16:125","nodeType":"YulBlock","src":"1100:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1109:1:125","nodeType":"YulLiteral","src":"1109:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1112:1:125","nodeType":"YulLiteral","src":"1112:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1102:6:125","nodeType":"YulIdentifier","src":"1102:6:125"},"nativeSrc":"1102:12:125","nodeType":"YulFunctionCall","src":"1102:12:125"},"nativeSrc":"1102:12:125","nodeType":"YulExpressionStatement","src":"1102:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1073:2:125","nodeType":"YulIdentifier","src":"1073:2:125"},{"name":"length","nativeSrc":"1077:6:125","nodeType":"YulIdentifier","src":"1077:6:125"}],"functionName":{"name":"add","nativeSrc":"1069:3:125","nodeType":"YulIdentifier","src":"1069:3:125"},"nativeSrc":"1069:15:125","nodeType":"YulFunctionCall","src":"1069:15:125"},{"kind":"number","nativeSrc":"1086:2:125","nodeType":"YulLiteral","src":"1086:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1065:3:125","nodeType":"YulIdentifier","src":"1065:3:125"},"nativeSrc":"1065:24:125","nodeType":"YulFunctionCall","src":"1065:24:125"},{"name":"dataEnd","nativeSrc":"1091:7:125","nodeType":"YulIdentifier","src":"1091:7:125"}],"functionName":{"name":"gt","nativeSrc":"1062:2:125","nodeType":"YulIdentifier","src":"1062:2:125"},"nativeSrc":"1062:37:125","nodeType":"YulFunctionCall","src":"1062:37:125"},"nativeSrc":"1059:57:125","nodeType":"YulIf","src":"1059:57:125"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"1135:6:125","nodeType":"YulIdentifier","src":"1135:6:125"},{"kind":"number","nativeSrc":"1143:2:125","nodeType":"YulLiteral","src":"1143:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1131:3:125","nodeType":"YulIdentifier","src":"1131:3:125"},"nativeSrc":"1131:15:125","nodeType":"YulFunctionCall","src":"1131:15:125"},{"arguments":[{"name":"_1","nativeSrc":"1152:2:125","nodeType":"YulIdentifier","src":"1152:2:125"},{"kind":"number","nativeSrc":"1156:2:125","nodeType":"YulLiteral","src":"1156:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1148:3:125","nodeType":"YulIdentifier","src":"1148:3:125"},"nativeSrc":"1148:11:125","nodeType":"YulFunctionCall","src":"1148:11:125"},{"name":"length","nativeSrc":"1161:6:125","nodeType":"YulIdentifier","src":"1161:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"1125:5:125","nodeType":"YulIdentifier","src":"1125:5:125"},"nativeSrc":"1125:43:125","nodeType":"YulFunctionCall","src":"1125:43:125"},"nativeSrc":"1125:43:125","nodeType":"YulExpressionStatement","src":"1125:43:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"1192:6:125","nodeType":"YulIdentifier","src":"1192:6:125"},{"name":"length","nativeSrc":"1200:6:125","nodeType":"YulIdentifier","src":"1200:6:125"}],"functionName":{"name":"add","nativeSrc":"1188:3:125","nodeType":"YulIdentifier","src":"1188:3:125"},"nativeSrc":"1188:19:125","nodeType":"YulFunctionCall","src":"1188:19:125"},{"kind":"number","nativeSrc":"1209:2:125","nodeType":"YulLiteral","src":"1209:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1184:3:125","nodeType":"YulIdentifier","src":"1184:3:125"},"nativeSrc":"1184:28:125","nodeType":"YulFunctionCall","src":"1184:28:125"},{"kind":"number","nativeSrc":"1214:1:125","nodeType":"YulLiteral","src":"1214:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"1177:6:125","nodeType":"YulIdentifier","src":"1177:6:125"},"nativeSrc":"1177:39:125","nodeType":"YulFunctionCall","src":"1177:39:125"},"nativeSrc":"1177:39:125","nodeType":"YulExpressionStatement","src":"1177:39:125"},{"nativeSrc":"1225:16:125","nodeType":"YulAssignment","src":"1225:16:125","value":{"name":"memPtr","nativeSrc":"1235:6:125","nodeType":"YulIdentifier","src":"1235:6:125"},"variableNames":[{"name":"value1","nativeSrc":"1225:6:125","nodeType":"YulIdentifier","src":"1225:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr_fromMemory","nativeSrc":"146:1101:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"211:9:125","nodeType":"YulTypedName","src":"211:9:125","type":""},{"name":"dataEnd","nativeSrc":"222:7:125","nodeType":"YulTypedName","src":"222:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"234:6:125","nodeType":"YulTypedName","src":"234:6:125","type":""},{"name":"value1","nativeSrc":"242:6:125","nodeType":"YulTypedName","src":"242:6:125","type":""}],"src":"146:1101:125"},{"body":{"nativeSrc":"1353:102:125","nodeType":"YulBlock","src":"1353:102:125","statements":[{"nativeSrc":"1363:26:125","nodeType":"YulAssignment","src":"1363:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"1375:9:125","nodeType":"YulIdentifier","src":"1375:9:125"},{"kind":"number","nativeSrc":"1386:2:125","nodeType":"YulLiteral","src":"1386:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1371:3:125","nodeType":"YulIdentifier","src":"1371:3:125"},"nativeSrc":"1371:18:125","nodeType":"YulFunctionCall","src":"1371:18:125"},"variableNames":[{"name":"tail","nativeSrc":"1363:4:125","nodeType":"YulIdentifier","src":"1363:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1405:9:125","nodeType":"YulIdentifier","src":"1405:9:125"},{"arguments":[{"name":"value0","nativeSrc":"1420:6:125","nodeType":"YulIdentifier","src":"1420:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1436:3:125","nodeType":"YulLiteral","src":"1436:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"1441:1:125","nodeType":"YulLiteral","src":"1441:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1432:3:125","nodeType":"YulIdentifier","src":"1432:3:125"},"nativeSrc":"1432:11:125","nodeType":"YulFunctionCall","src":"1432:11:125"},{"kind":"number","nativeSrc":"1445:1:125","nodeType":"YulLiteral","src":"1445:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1428:3:125","nodeType":"YulIdentifier","src":"1428:3:125"},"nativeSrc":"1428:19:125","nodeType":"YulFunctionCall","src":"1428:19:125"}],"functionName":{"name":"and","nativeSrc":"1416:3:125","nodeType":"YulIdentifier","src":"1416:3:125"},"nativeSrc":"1416:32:125","nodeType":"YulFunctionCall","src":"1416:32:125"}],"functionName":{"name":"mstore","nativeSrc":"1398:6:125","nodeType":"YulIdentifier","src":"1398:6:125"},"nativeSrc":"1398:51:125","nodeType":"YulFunctionCall","src":"1398:51:125"},"nativeSrc":"1398:51:125","nodeType":"YulExpressionStatement","src":"1398:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"1252:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1322:9:125","nodeType":"YulTypedName","src":"1322:9:125","type":""},{"name":"value0","nativeSrc":"1333:6:125","nodeType":"YulTypedName","src":"1333:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1344:4:125","nodeType":"YulTypedName","src":"1344:4:125","type":""}],"src":"1252:203:125"}]},"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_tuple_t_addresst_bytes_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { 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        let offset := mload(add(headStart, 32))\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 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(_1, length), 32), dataEnd) { revert(0, 0) }\n        mcopy(add(memPtr, 32), add(_1, 32), length)\n        mstore(add(add(memPtr, length), 32), 0)\n        value1 := memPtr\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}","id":125,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"608060405260405161039738038061039783398101604081905261002291610219565b61002c8282610033565b50506102e8565b61003c82610091565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a280511561008557610080828261010c565b505050565b61008d6101ad565b5050565b806001600160a01b03163b5f036100cb57604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f61011984846101ce565b905080801561013a57505f3d118061013a57505f846001600160a01b03163b115b1561014f576101476101e1565b9150506101a7565b801561017957604051639996b31560e01b81526001600160a01b03851660048201526024016100c2565b3d1561018c576101876101fa565b6101a5565b60405163d6bda27560e01b815260040160405180910390fd5b505b92915050565b34156101cc5760405163b398979f60e01b815260040160405180910390fd5b565b5f5f5f835160208501865af49392505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b634e487b7160e01b5f52604160045260245ffd5b5f5f6040838503121561022a575f5ffd5b82516001600160a01b0381168114610240575f5ffd5b60208401519092506001600160401b0381111561025b575f5ffd5b8301601f8101851361026b575f5ffd5b80516001600160401b0381111561028457610284610205565b604051601f8201601f19908116603f011681016001600160401b03811182821017156102b2576102b2610205565b6040528181528282016020018710156102c9575f5ffd5b8160208401602083015e5f602083830101528093505050509250929050565b60a3806102f45f395ff3fe6080604052600a600c565b005b60186014601a565b6050565b565b5f604b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b365f5f375f5f365f845af43d5f5f3e8080156069573d5ff35b3d5ffdfea264697066735822122032820715615b6af5eebbd7375e360eb7f78faaa705e7b7a0dba4041b79e7a22564736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH2 0x397 CODESIZE SUB DUP1 PUSH2 0x397 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x22 SWAP2 PUSH2 0x219 JUMP JUMPDEST PUSH2 0x2C DUP3 DUP3 PUSH2 0x33 JUMP JUMPDEST POP POP PUSH2 0x2E8 JUMP JUMPDEST PUSH2 0x3C DUP3 PUSH2 0x91 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x85 JUMPI PUSH2 0x80 DUP3 DUP3 PUSH2 0x10C JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x8D PUSH2 0x1AD JUMP JUMPDEST POP POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0xCB JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x119 DUP5 DUP5 PUSH2 0x1CE JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x13A JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x13A JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x14F JUMPI PUSH2 0x147 PUSH2 0x1E1 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1A7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x179 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 0xC2 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x18C JUMPI PUSH2 0x187 PUSH2 0x1FA JUMP JUMPDEST PUSH2 0x1A5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x1CC JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x22A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x240 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x25B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x26B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x284 JUMPI PUSH2 0x284 PUSH2 0x205 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 0x2B2 JUMPI PUSH2 0x2B2 PUSH2 0x205 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP3 DUP3 ADD PUSH1 0x20 ADD DUP8 LT ISZERO PUSH2 0x2C9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD MCOPY PUSH0 PUSH1 0x20 DUP4 DUP4 ADD ADD MSTORE DUP1 SWAP4 POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0xA3 DUP1 PUSH2 0x2F4 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0xA PUSH1 0xC JUMP JUMPDEST STOP JUMPDEST PUSH1 0x18 PUSH1 0x14 PUSH1 0x1A JUMP JUMPDEST PUSH1 0x50 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x4B PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH1 0x69 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ORIGIN DUP3 SMOD ISZERO PUSH2 0x5B6A CREATE2 RETURNCONTRACT 0xBB 0xD7 CALLDATACOPY MCOPY CALLDATASIZE 0xE 0xB7 0xF7 DUP16 0xAA 0xA7 SDIV SWAPN 0xB7 LOG0 0xDB LOG4 DIV SHL PUSH26 0xE7A22564736F6C634300081E0033000000000000000000000000 ","sourceMap":"600:1117:71:-:0;;;1081:133;;;;;;;;;;;;;;;;;;:::i;:::-;1155:52;1185:14;1201:5;1155:29;:52::i;:::-;1081:133;;600:1117;;2264:344:72;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:72;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;:::-;;2264:344;;:::o;2454:148::-;2573:18;:16;:18::i;:::-;2264:344;;:::o;1671:281::-;1748:17;-1:-1:-1;;;;;1748:29:72;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:72;;-1:-1:-1;;;;;1416:32:125;;1805:47:72;;;1398:51:125;1371:18;;1805:47:72;;;;;;;;1744:119;811:66;1872:73;;-1:-1:-1;;;;;;1872:73:72;-1:-1:-1;;;;;1872:73:72;;;;;;;;;;1671:281::o;4691:549:87:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:87;4583:16:91;4886:33:87;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:87;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:87;;-1:-1:-1;;;;;1416:32:125;;5045:24:87;;;1398:51:125;1371:18;;5045:24:87;1252:203:125;5011:223:87;4583:16:91;5090:33:87;5086:148;;5139:27;:25;:27::i;:::-;5086:148;;;5204:19;;-1:-1:-1;;;5204:19:87;;;;;;;;;;;5086:148;4788:452;4691:549;;;;;:::o;6113:122:72:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:72;;;;;;;;;;;6159:70;6113:122::o;3383:242:91:-;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:91:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;14:127:125;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:1101;234:6;242;295:2;283:9;274:7;270:23;266:32;263:52;;;311:1;308;301:12;263:52;337:16;;-1:-1:-1;;;;;382:31:125;;372:42;;362:70;;428:1;425;418:12;362:70;500:2;485:18;;479:25;451:5;;-1:-1:-1;;;;;;516:30:125;;513:50;;;559:1;556;549:12;513:50;582:22;;635:4;627:13;;623:27;-1:-1:-1;613:55:125;;664:1;661;654:12;613:55;691:9;;-1:-1:-1;;;;;712:30:125;;709:56;;;745:18;;:::i;:::-;794:2;788:9;886:2;848:17;;-1:-1:-1;;844:31:125;;;877:2;840:40;836:54;824:67;;-1:-1:-1;;;;;906:34:125;;942:22;;;903:62;900:88;;;968:18;;:::i;:::-;1004:2;997:22;1028;;;1069:15;;;1086:2;1065:24;1062:37;-1:-1:-1;1059:57:125;;;1112:1;1109;1102:12;1059:57;1161:6;1156:2;1152;1148:11;1143:2;1135:6;1131:15;1125:43;1214:1;1209:2;1200:6;1192;1188:19;1184:28;1177:39;1235:6;1225:16;;;;;146:1101;;;;;:::o;1252:203::-;600:1117:71;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_23155":{"entryPoint":null,"id":23155,"parameterSlots":0,"returnSlots":0},"@_delegate_23131":{"entryPoint":80,"id":23131,"parameterSlots":1,"returnSlots":0},"@_fallback_23147":{"entryPoint":12,"id":23147,"parameterSlots":0,"returnSlots":0},"@_implementation_22825":{"entryPoint":26,"id":22825,"parameterSlots":0,"returnSlots":1},"@getAddressSlot_31145":{"entryPoint":null,"id":31145,"parameterSlots":1,"returnSlots":1},"@getImplementation_22872":{"entryPoint":null,"id":22872,"parameterSlots":0,"returnSlots":1}},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"6080604052600a600c565b005b60186014601a565b6050565b565b5f604b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b365f5f375f5f365f845af43d5f5f3e8080156069573d5ff35b3d5ffdfea264697066735822122032820715615b6af5eebbd7375e360eb7f78faaa705e7b7a0dba4041b79e7a22564736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0xA PUSH1 0xC JUMP JUMPDEST STOP JUMPDEST PUSH1 0x18 PUSH1 0x14 PUSH1 0x1A JUMP JUMPDEST PUSH1 0x50 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH1 0x4B PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH0 CALLDATACOPY PUSH0 PUSH0 CALLDATASIZE PUSH0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH1 0x69 JUMPI RETURNDATASIZE PUSH0 RETURN JUMPDEST RETURNDATASIZE PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ORIGIN DUP3 SMOD ISZERO PUSH2 0x5B6A CREATE2 RETURNCONTRACT 0xBB 0xD7 CALLDATACOPY MCOPY CALLDATASIZE 0xE 0xB7 0xF7 DUP16 0xAA 0xA7 SDIV SWAPN 0xB7 LOG0 0xDB LOG4 DIV SHL PUSH26 0xE7A22564736F6C634300081E0033000000000000000000000000 ","sourceMap":"600:1117:71:-:0;;;2676:11:73;:9;:11::i;:::-;600:1117:71;2350:83:73;2398:28;2408:17;:15;:17::i;:::-;2398:9;:28::i;:::-;2350:83::o;1583:132:71:-;1650:7;1676:32;811:66:72;1519:53;-1:-1:-1;;;;;1519:53:72;;1441:138;1676:32:71;1669:39;;1583:132;:::o;949:922:73:-;1293:14;1287:4;1281;1268:40;1513:4;1507;1491:14;1485:4;1469:14;1462:5;1449:69;1598:16;1592:4;1586;1571:44;1636:6;1703:69;;;;1824:16;1818:4;1811:30;1703:69;1741:16;1735:4;1728:30"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"}],\"devdoc\":{\"details\":\"This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an implementation address that can be changed. This address is stored in storage in the location specified by https://eips.ethereum.org/EIPS/eip-1967[ERC-1967], so that it doesn't conflict with the storage layout of the implementation behind the proxy.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}]},\"events\":{\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the upgradeable proxy with an initial implementation specified by `implementation`. If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an encoded function call, and allows initializing the storage of the proxy like a Solidity constructor. Requirements: - If `data` is empty, `msg.value` must be zero.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":\"ERC1967Proxy\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa3066ff86b94128a9d3956a63a0511fa1aae41bd455772ab587b32ff322acb2e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf7b192fd82acf6187970c80548f624b1b9c80425b62fa49e7fdb538a52de049\",\"dweb:/ipfs/QmWXG1YCde1tqDYTbNwjkZDWVgPEjzaQGSDqWkyKLzaNua\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0x80935e4fae2c414f4e7789e13a820d06901182a5733ab006f8d68b5b09db993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://752d991d6ca1087587b48103bc623f74888054f58581ff29166d90889c4765c5\",\"dweb:/ipfs/QmRBsa6K2ChKxVWYY54YiyYhDBPbmY5HyKCtij5LoWh56o\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol":{"ERC1967Utils":{"abi":[{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"ERC1967InvalidAdmin","type":"error"},{"inputs":[{"internalType":"address","name":"beacon","type":"address"}],"name":"ERC1967InvalidBeacon","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220099b886f4a3f10aa1f29dbd42fb99a9fa5e789379cddc4e070792f24212ad86164736f6c634300081e0033","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 MULMOD SWAP12 DUP9 PUSH16 0x4A3F10AA1F29DBD42FB99A9FA5E78937 SWAP13 0xDD 0xC4 RJUMP 0x7079 0x2F 0x24 0x21 0x2A 0xD8 PUSH2 0x6473 PUSH16 0x6C634300081E00330000000000000000 ","sourceMap":"496:5741:72:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;496:5741:72;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220099b886f4a3f10aa1f29dbd42fb99a9fa5e789379cddc4e070792f24212ad86164736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MULMOD SWAP12 DUP9 PUSH16 0x4A3F10AA1F29DBD42FB99A9FA5E78937 SWAP13 0xDD 0xC4 RJUMP 0x7079 0x2F 0x24 0x21 0x2A 0xD8 PUSH2 0x6473 PUSH16 0x6C634300081E00330000000000000000 ","sourceMap":"496:5741:72:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"admin\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidAdmin\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidBeacon\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"This library provides getters and event emitting update functions for https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.\",\"errors\":{\"ERC1967InvalidAdmin(address)\":[{\"details\":\"The `admin` of the proxy is invalid.\"}],\"ERC1967InvalidBeacon(address)\":[{\"details\":\"The `beacon` of the proxy is invalid.\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}]},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"ADMIN_SLOT\":{\"details\":\"Storage slot with the admin of the contract. This is the keccak-256 hash of \\\"eip1967.proxy.admin\\\" subtracted by 1.\"},\"BEACON_SLOT\":{\"details\":\"The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. This is the keccak-256 hash of \\\"eip1967.proxy.beacon\\\" subtracted by 1.\"},\"IMPLEMENTATION_SLOT\":{\"details\":\"Storage slot with the address of the current implementation. This is the keccak-256 hash of \\\"eip1967.proxy.implementation\\\" subtracted by 1.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":\"ERC1967Utils\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/proxy/Proxy.sol":{"Proxy":{"abi":[{"stateMutability":"payable","type":"fallback"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"stateMutability\":\"payable\",\"type\":\"fallback\"}],\"devdoc\":{\"details\":\"This abstract contract provides a fallback function that delegates all calls to another contract using the EVM instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to be specified by overriding the virtual {_implementation} function. Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a different contract through the {_delegate} function. The success and return data of the delegated call will be returned back to the caller of the proxy.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/Proxy.sol\":\"Proxy\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0x80935e4fae2c414f4e7789e13a820d06901182a5733ab006f8d68b5b09db993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://752d991d6ca1087587b48103bc623f74888054f58581ff29166d90889c4765c5\",\"dweb:/ipfs/QmRBsa6K2ChKxVWYY54YiyYhDBPbmY5HyKCtij5LoWh56o\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/proxy/beacon/IBeacon.sol":{"IBeacon":{"abi":[{"inputs":[],"name":"implementation","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":{"implementation()":"5c60da1b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"implementation\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"This is the interface that {BeaconProxy} expects of its beacon.\",\"kind\":\"dev\",\"methods\":{\"implementation()\":{\"details\":\"Must return an address that can be used as a delegate call target. {UpgradeableBeacon} will check that this address is a contract.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":\"IBeacon\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/proxy/utils/Initializable.sol":{"Initializable":{"abi":[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"devdoc\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor constructor() {     _disableInitializers(); } ``` ====\",\"details\":\"This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. The initialization functions use a version number. Once a version number is used, it is consumed and cannot be reused. This mechanism prevents re-execution of each \\\"step\\\" but allows the creation of new initialization steps in case an upgrade adds a module that needs to be initialized. For example: [.hljs-theme-light.nopadding] ```solidity contract MyToken is ERC20Upgradeable {     function initialize() initializer public {         __ERC20_init(\\\"MyToken\\\", \\\"MTK\\\");     } } contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {     function initializeV2() reinitializer(2) public {         __ERC20Permit_init(\\\"MyToken\\\");     } } ``` TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. [CAUTION] ==== Avoid leaving a contract uninitialized. An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: [.hljs-theme-light.nopadding] ```\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":\"Initializable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol":{"UUPSUpgradeable":{"abi":[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","proxiableUUID()":"52d1902d","upgradeToAndCall(address,bytes)":"4f1ef286"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"custom:stateless\":\"\",\"details\":\"An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy. A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing `UUPSUpgradeable` with a custom implementation of upgrades. The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"events\":{\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"}},\"stateVariables\":{\"UPGRADE_INTERFACE_VERSION\":{\"details\":\"The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)` and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called, while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string. If the getter returns `\\\"5.0.0\\\"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must be the empty byte string if no function should be called, making it impossible to invoke the `receive` function during an upgrade.\"},\"__self\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":\"UUPSUpgradeable\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"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.30+commit.73712a01\"},\"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\":\"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\":\"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\":\"Returns the value of tokens owned by `account`.\"},\"constructor\":{\"details\":\"Sets the values for {name} and {symbol}. Both 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\":\"Returns the value of tokens in existence.\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x669464167428061ee0f8618b73b3ee90aff8405683e7ddde8cd77dadaa1afe29\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0dda78587a7358b4fdf6b9fca0fde5a5e34930f36d5268a16028627fc0170195\",\"dweb:/ipfs/QmQ1b6cCceDRWNxti9HifsTCzmVP25Haxs1bWugm52vTqH\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":23623,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":23629,"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":23631,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":23633,"contract":"@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":23635,"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.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol":{"ERC4626":{"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"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxMint","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxRedeem","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxWithdraw","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","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":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","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":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","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"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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","asset()":"38d52e0f","balanceOf(address)":"70a08231","convertToAssets(uint256)":"07a2d13a","convertToShares(uint256)":"c6e6f592","decimals()":"313ce567","deposit(uint256,address)":"6e553f65","maxDeposit(address)":"402d267d","maxMint(address)":"c63d75b6","maxRedeem(address)":"d905777e","maxWithdraw(address)":"ce96cb77","mint(uint256,address)":"94bf804d","name()":"06fdde03","previewDeposit(uint256)":"ef8b30f7","previewMint(uint256)":"b3d7f6b9","previewRedeem(uint256)":"4cdad506","previewWithdraw(uint256)":"0a28a477","redeem(uint256,address,address)":"ba087652","symbol()":"95d89b41","totalAssets()":"01e1d114","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","withdraw(uint256,address,address)":"b460af94"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxMint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxRedeem\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxWithdraw\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"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\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"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\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"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\":[],\"name\":\"asset\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"convertToShares\",\"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\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"redeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalAssets\",\"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\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the ERC-4626 \\\"Tokenized Vault Standard\\\" as defined in https://eips.ethereum.org/EIPS/eip-4626[ERC-4626]. This extension allows the minting and burning of \\\"shares\\\" (represented using the ERC-20 inheritance) in exchange for underlying \\\"assets\\\" through standardized {deposit}, {mint}, {redeem} and {burn} workflows. This contract extends the ERC-20 standard. Any additional extensions included along it would affect the \\\"shares\\\" token represented by this contract and not the \\\"assets\\\" token which is an independent contract. [CAUTION] ==== In empty (or nearly empty) ERC-4626 vaults, deposits are at high risk of being stolen through frontrunning with a \\\"donation\\\" to the vault that inflates the price of a share. This is variously known as a donation or inflation attack and is essentially a problem of slippage. Vault deployers can protect against this attack by making an initial deposit of a non-trivial amount of the asset, such that price manipulation becomes infeasible. Withdrawals may similarly be affected by slippage. Users can protect against this attack as well as unexpected slippage in general by verifying the amount received is as expected, using a wrapper that performs these checks such as https://github.com/fei-protocol/ERC4626#erc4626router-and-base[ERC4626Router]. Since v4.9, this implementation introduces configurable virtual assets and shares to help developers mitigate that risk. The `_decimalsOffset()` corresponds to an offset in the decimal representation between the underlying asset's decimals and the vault decimals. This offset also determines the rate of virtual shares to virtual assets in the vault, which itself determines the initial exchange rate. While not fully preventing the attack, analysis shows that the default offset (0) makes it non-profitable even if an attacker is able to capture value from multiple user deposits, as a result of the value being captured by the virtual shares (out of the attacker's donation) matching the attacker's expected gains. With a larger offset, the attack becomes orders of magnitude more expensive than it is profitable. More details about the underlying math can be found xref:ROOT:erc4626.adoc#inflation-attack[here]. The drawback of this approach is that the virtual shares do capture (a very small) part of the value being accrued to the vault. Also, if the vault experiences losses, the users try to exit the vault, the virtual shares and assets will cause the first user to exit to experience reduced losses in detriment to the last users that will experience bigger losses. Developers willing to revert back to the pre-v4.9 behavior just need to override the `_convertToShares` and `_convertToAssets` functions. To learn more, check out our xref:ROOT:erc4626.adoc[ERC-4626 guide]. ==== [NOTE] ==== When overriding this contract, some elements must be considered: * When overriding the behavior of the deposit or withdraw mechanisms, it is recommended to override the internal functions. Overriding {_deposit} automatically affects both {deposit} and {mint}. Similarly, overriding {_withdraw} automatically affects both {withdraw} and {redeem}. Overall it is not recommended to override the public facing functions since that could lead to inconsistent behaviors between the {deposit} and {mint} or between {withdraw} and {redeem}, which is documented to have lead to loss of funds. * Overrides to the deposit or withdraw mechanism must be reflected in the preview functions as well. * {maxWithdraw} depends on {maxRedeem}. Therefore, overriding {maxRedeem} only is enough. On the other hand, overriding {maxWithdraw} only would have no effect on {maxRedeem}, and could create an inconsistency between the two functions. * If {previewRedeem} is overridden to revert, {maxWithdraw} must be overridden as necessary to ensure it always return successfully. ====\",\"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.\"}}],\"ERC4626ExceededMaxDeposit(address,uint256,uint256)\":[{\"details\":\"Attempted to deposit more assets than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxMint(address,uint256,uint256)\":[{\"details\":\"Attempted to mint more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxRedeem(address,uint256,uint256)\":[{\"details\":\"Attempted to redeem more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxWithdraw(address,uint256,uint256)\":[{\"details\":\"Attempted to withdraw more assets than the max amount for `receiver`.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}]},\"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\":\"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.\"},\"asset()\":{\"details\":\"Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing. - MUST be an ERC-20 token contract. - MUST NOT revert.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"constructor\":{\"details\":\"Set the underlying asset contract. This must be an ERC20-compatible contract (ERC-20 or ERC-777).\"},\"convertToAssets(uint256)\":{\"details\":\"Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"convertToShares(uint256)\":{\"details\":\"Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"decimals()\":{\"details\":\"Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This \\\"original\\\" value is cached during construction of the vault contract. If this read operation fails (e.g., the asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals. See {IERC20Metadata-decimals}.\"},\"deposit(uint256,address)\":{\"details\":\"Deposit `assets` underlying tokens and send the corresponding number of vault shares (`shares`) to `receiver`. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   deposit execution, and are accounted for during deposit. - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"maxDeposit(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver, through a deposit call. - MUST return a limited value if receiver is subject to some deposit limit. - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited. - MUST NOT revert.\"},\"maxMint(address)\":{\"details\":\"Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call. - MUST return a limited value if receiver is subject to some mint limit. - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted. - MUST NOT revert.\"},\"maxRedeem(address)\":{\"details\":\"Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault, through a redeem call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock. - MUST NOT revert.\"},\"maxWithdraw(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the Vault, through a withdraw call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST NOT revert.\"},\"mint(uint256,address)\":{\"details\":\"Mints exactly `shares` vault shares to `receiver` in exchange for `assets` underlying tokens. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint   execution, and are accounted for during mint. - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"previewDeposit(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called   in the same transaction. - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the   deposit would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"previewMint(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the   same transaction. - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint   would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by minting.\"},\"previewRedeem(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the   same transaction. - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the   redemption would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by redeeming.\"},\"previewWithdraw(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if   called   in the same transaction. - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though   the withdrawal would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"redeem(uint256,address,address)\":{\"details\":\"Burns exactly shares from owner and sends assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   redeem execution, and are accounted for during redeem. - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalAssets()\":{\"details\":\"Returns the total amount of the underlying asset that is \\u201cmanaged\\u201d by Vault. - SHOULD include any compounding that occurs from yield. - MUST be inclusive of any fees that are charged against assets in the Vault. - MUST NOT revert.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"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`.\"},\"withdraw(uint256,address,address)\":{\"details\":\"Burns shares from owner and sends exactly assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   withdraw execution, and are accounted for during withdraw. - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol\":\"ERC4626\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x669464167428061ee0f8618b73b3ee90aff8405683e7ddde8cd77dadaa1afe29\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0dda78587a7358b4fdf6b9fca0fde5a5e34930f36d5268a16028627fc0170195\",\"dweb:/ipfs/QmQ1b6cCceDRWNxti9HifsTCzmVP25Haxs1bWugm52vTqH\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol\":{\"keccak256\":\"0x8a6a0045f0bb52251a9a5d8bb5f4156f4eb3ba8521b1fca6a304befaab3e7d23\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ebd5125436dbb18ba3646cbdb4a8385a9e2bf28abc9d8178a9e7f31cca65f8b8\",\"dweb:/ipfs/QmPioMpycRKdAetJNYYfWCw36rQuyxNqhgHDFGRVLaPKnT\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Memory.sol\":{\"keccak256\":\"0x35feec480590c0ed9c1623df077ba9af406ad57cd9d149ff278c7316d6fe8fe0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://839967d079db4cd624c3f735a6e911953c0e2347418c016f6a0cc18ed1aa9603\",\"dweb:/ipfs/QmaWxNL8Ymkwerfvq1LNzpbq2PMzTGsnXzqsYExNyvKWka\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":23623,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol:ERC4626","label":"_balances","offset":0,"slot":"0","type":"t_mapping(t_address,t_uint256)"},{"astId":23629,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol:ERC4626","label":"_allowances","offset":0,"slot":"1","type":"t_mapping(t_address,t_mapping(t_address,t_uint256))"},{"astId":23631,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol:ERC4626","label":"_totalSupply","offset":0,"slot":"2","type":"t_uint256"},{"astId":23633,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol:ERC4626","label":"_name","offset":0,"slot":"3","type":"t_string_storage"},{"astId":23635,"contract":"@openzeppelin/contracts/token/ERC20/extensions/ERC4626.sol:ERC4626","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/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.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol":{"IERC20Permit":{"abi":[{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"DOMAIN_SEPARATOR()":"3644e515","nonces(address)":"7ecebe00","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[ERC-2612]. Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't need to send a transaction, and thus is not required to hold Ether at all. ==== Security Considerations There are two important considerations concerning the use of `permit`. The first is that a valid permit signature expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be considered as an intention to spend the allowance in any specific way. The second is that because permits have built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be generally recommended is: ```solidity function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}     doThing(..., value); } function doThing(..., uint256 value) public {     token.safeTransferFrom(msg.sender, address(this), value);     ... } ``` Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also {SafeERC20-safeTransferFrom}). Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so contracts should have entry points that don't rely on permit.\",\"kind\":\"dev\",\"methods\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"nonces(address)\":{\"details\":\"Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also applies here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]. CAUTION: See Security Considerations above.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":\"IERC20Permit\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x53befc41288eaa87edcd3a7be7e8475a32e44c6a29f9bf52fae789781301d9ff\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a1d7fab53c4ceaf42391b83d9b36d7e9cc524a8da125cffdcd32c56560f9d1c9\",\"dweb:/ipfs/QmaRZdVhQdqNXofeimibkBG65q9GVcXVZEGpycwwX3znC6\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol":{"SafeERC20":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"SafeERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e99680b39fae04dde6f92a5e69ffb12d93cbdb1c92a80af8b102e502387f140364736f6c634300081e0033","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 0xE9 SWAP7 DUP1 0xB3 SWAP16 0xAE DIV 0xDD DUPN 0xF9 0x2A MCOPY PUSH10 0xFFB12D93CBDB1C92A80A EXTCALL 0xB1 MUL JUMPF 0x238 PUSH32 0x140364736F6C634300081E003300000000000000000000000000000000000000 ","sourceMap":"698:12615:82:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;698:12615:82;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e99680b39fae04dde6f92a5e69ffb12d93cbdb1c92a80af8b102e502387f140364736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE9 SWAP7 DUP1 0xB3 SWAP16 0xAE DIV 0xDD DUPN 0xF9 0x2A MCOPY PUSH10 0xFFB12D93CBDB1C92A80A EXTCALL 0xB1 MUL JUMPF 0x238 PUSH32 0x140364736F6C634300081E003300000000000000000000000000000000000000 ","sourceMap":"698:12615:82:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentAllowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"requestedDecrease\",\"type\":\"uint256\"}],\"name\":\"SafeERC20FailedDecreaseAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Wrappers around ERC-20 operations that throw on failure (when the token contract returns false). Tokens that return no value (and instead revert or throw on failure) are also supported, non-reverting calls are assumed to be successful. To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\",\"errors\":{\"SafeERC20FailedDecreaseAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failed `decreaseAllowance` request.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}]},\"kind\":\"dev\",\"methods\":{},\"title\":\"SafeERC20\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":\"SafeERC20\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC721/IERC721.sol":{"IERC721":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"operator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","getApproved(uint256)":"081812fc","isApprovedForAll(address,address)":"e985e9c5","ownerOf(uint256)":"6352211e","safeTransferFrom(address,address,uint256)":"42842e0e","safeTransferFrom(address,address,uint256,bytes)":"b88d4fde","setApprovalForAll(address,bool)":"a22cb465","supportsInterface(bytes4)":"01ffc9a7","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Required interface of an ERC-721 compliant contract.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when `owner` enables `approved` to manage the `tokenId` token.\"},\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"}},\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC-721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or   {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the address zero. Emits an {ApprovalForAll} event.\"},\"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.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must understand this adds an external call which potentially creates a reentrancy vulnerability. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":\"IERC721\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xf78f05f3b8c9f75570e85300d7b4600d7f6f6a198449273f31d44c1641adb46f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e28b872613b45e0e801d4995aa4380be2531147bfe2d85c1d6275f1de514fba3\",\"dweb:/ipfs/QmeeFcfShHYaS3BdgVj78nxR28ZaVUwbvr66ud8bT6kzw9\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol":{"IERC721Receiver":{"abi":[{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"onERC721Received(address,address,uint256,bytes)":"150b7a02"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for any contract that wants to support safeTransfers from ERC-721 asset contracts.\",\"kind\":\"dev\",\"methods\":{\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\"}},\"title\":\"ERC-721 token receiver interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":\"IERC721Receiver\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol":{"IERC721Metadata":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"operator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","getApproved(uint256)":"081812fc","isApprovedForAll(address,address)":"e985e9c5","name()":"06fdde03","ownerOf(uint256)":"6352211e","safeTransferFrom(address,address,uint256)":"42842e0e","safeTransferFrom(address,address,uint256,bytes)":"b88d4fde","setApprovalForAll(address,bool)":"a22cb465","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","tokenURI(uint256)":"c87b56dd","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"See https://eips.ethereum.org/EIPS/eip-721\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when `owner` enables `approved` to manage the `tokenId` token.\"},\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"}},\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"name()\":{\"details\":\"Returns the token collection name.\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC-721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must have been allowed to move this token by either {approve} or   {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon   a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the address zero. Emits an {ApprovalForAll} event.\"},\"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.\"},\"symbol()\":{\"details\":\"Returns the token collection symbol.\"},\"tokenURI(uint256)\":{\"details\":\"Returns the Uniform Resource Identifier (URI) for `tokenId` token.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must understand this adds an external call which potentially creates a reentrancy vulnerability. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"title\":\"ERC-721 Non-Fungible Token Standard, optional metadata extension\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":\"IERC721Metadata\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xf78f05f3b8c9f75570e85300d7b4600d7f6f6a198449273f31d44c1641adb46f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e28b872613b45e0e801d4995aa4380be2531147bfe2d85c1d6275f1de514fba3\",\"dweb:/ipfs/QmeeFcfShHYaS3BdgVj78nxR28ZaVUwbvr66ud8bT6kzw9\"]},\"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol\":{\"keccak256\":\"0xf46268c37522320bb2119a5a394bc5c739a95c0c574c8d08e8c643f4d06e5c76\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://517e4b295f35b9947c72ad7379a6089439ece7bb6f4a2ea0a159da13046c039e\",\"dweb:/ipfs/QmZXzkSfLUbvujig3zVbpDHykpHhqLpvQtdiN3B5j4TA3u\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol":{"ERC721Utils":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220538e2fa0a615d30251d081871d0f2a1e2f7b01daa47b1a2fd42078eb861feb4f64736f6c634300081e0033","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 MSTORE8 DUP15 0x2F LOG0 0xA6 ISZERO 0xD3 MUL MLOAD 0xD0 DUP2 DUP8 SAR 0xF 0x2A 0x1E 0x2F PUSH28 0x1DAA47B1A2FD42078EB861FEB4F64736F6C634300081E0033000000 ","sourceMap":"432:1490:86:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;432:1490:86;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220538e2fa0a615d30251d081871d0f2a1e2f7b01daa47b1a2fd42078eb861feb4f64736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSTORE8 DUP15 0x2F LOG0 0xA6 ISZERO 0xD3 MUL MLOAD 0xD0 DUP2 DUP8 SAR 0xF 0x2A 0x1E 0x2F PUSH28 0x1DAA47B1A2FD42078EB861FEB4F64736F6C634300081E0033000000 ","sourceMap":"432:1490:86:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Library that provides common ERC-721 utility functions. See https://eips.ethereum.org/EIPS/eip-721[ERC-721]. _Available since v5.1._\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol\":\"ERC721Utils\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]},\"@openzeppelin/contracts/token/ERC721/utils/ERC721Utils.sol\":{\"keccak256\":\"0xc7efbc23214ad7dced8bf2249460f4bda114d57f6a0079f84040654280f455bd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1f5bd44efca8c8c0d74439e7b808d1f9c4af1df78f91fef8e8bbca8104645435\",\"dweb:/ipfs/Qmb42XSd8MKsEitp42sZkSFGqDRigk6QgGXtiJyJqUZJJ6\"]}},\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e655924432b9f921c67aeb5e2b82e42dfea967d21b6cb314bbeb99c9b7b8c9c364736f6c634300081e0033","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 DUPN 0x55 SWAP3 PREVRANDAO ORIGIN 0xB9 EXTDELEGATECALL 0x21 0xC6 PUSH27 0xEB5E2B82E42DFEA967D21B6CB314BBEB99C9B7B8C9C364736F6C63 NUMBER STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"282:6520:87:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;282:6520:87;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e655924432b9f921c67aeb5e2b82e42dfea967d21b6cb314bbeb99c9b7b8c9c364736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUPN 0x55 SWAP3 PREVRANDAO ORIGIN 0xB9 EXTDELEGATECALL 0x21 0xC6 PUSH27 0xEB5E2B82E42DFEA967D21B6CB314BBEB99C9B7B8C9C364736F6C63 NUMBER STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"282:6520:87:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Bytes.sol":{"Bytes":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e01aaf043d4a64b0cd5e7fb3d679755fbf037c2aaaf4a7ef69986c1f3aa2095364736f6c634300081e0033","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 RJUMP 0x1AAF DIV RETURNDATASIZE BLOBBASEFEE PUSH5 0xB0CD5E7FB3 0xD6 PUSH26 0x755FBF037C2AAAF4A7EF69986C1F3AA2095364736F6C63430008 0x1E STOP CALLER ","sourceMap":"198:11145:88:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;198:11145:88;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e01aaf043d4a64b0cd5e7fb3d679755fbf037c2aaaf4a7ef69986c1f3aa2095364736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 RJUMP 0x1AAF DIV RETURNDATASIZE BLOBBASEFEE PUSH5 0xB0CD5E7FB3 0xD6 PUSH26 0x755FBF037C2AAAF4A7EF69986C1F3AA2095364736F6C63430008 0x1E STOP CALLER ","sourceMap":"198:11145:88:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Bytes operations.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Bytes.sol\":\"Bytes\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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/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.30+commit.73712a01\"},\"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\":\"prague\",\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212201e832bc7389b9b61623663bf55ec6dfd56cbf5e8534cdc6bec8916c83a4e082d64736f6c634300081e0033","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 0x1E DUP4 0x2B 0xC7 CODESIZE SWAP12 SWAP12 PUSH2 0x6236 PUSH4 0xBF55EC6D REVERT JUMP 0xCB CREATE2 0xE8 MSTORE8 0x4C 0xDC PUSH12 0xEC8916C83A4E082D64736F6C PUSH4 0x4300081E STOP CALLER ","sourceMap":"411:484:90:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;411:484:90;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212201e832bc7389b9b61623663bf55ec6dfd56cbf5e8534cdc6bec8916c83a4e082d64736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x1E DUP4 0x2B 0xC7 CODESIZE SWAP12 SWAP12 PUSH2 0x6236 PUSH4 0xBF55EC6D REVERT JUMP 0xCB CREATE2 0xE8 MSTORE8 0x4C 0xDC PUSH12 0xEC8916C83A4E082D64736F6C PUSH4 0x4300081E STOP CALLER ","sourceMap":"411:484:90:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"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/LowLevelCall.sol":{"LowLevelCall":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212208ed074db20ff99bdc7bf3b87f9f0e089be8ae4f28acd31da148f2e1d8c090d0f64736f6c634300081e0033","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 DUP15 0xD0 PUSH21 0xDB20FF99BDC7BF3B87F9F0E089BE8AE4F28ACD31DA EQ DUP16 0x2E SAR DUP13 MULMOD 0xD 0xF PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"421:5083:91:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;421:5083:91;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212208ed074db20ff99bdc7bf3b87f9f0e089be8ae4f28acd31da148f2e1d8c090d0f64736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP15 0xD0 PUSH21 0xDB20FF99BDC7BF3B87F9F0E089BE8AE4F28ACD31DA EQ DUP16 0x2E SAR DUP13 MULMOD 0xD 0xF PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"421:5083:91:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Library of low level call functions that implement different calling strategies to deal with the return data. WARNING: Using this library requires an advanced understanding of Solidity and how the EVM works. It is recommended to use the {Address} library instead.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/LowLevelCall.sol\":\"LowLevelCall\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Memory.sol":{"Memory":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212206cc09b2f6dca6b44547511bc21f983d38eb6384904d58edb0222bb14f9fd14e564736f6c634300081e0033","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 PUSH13 0xC09B2F6DCA6B44547511BC21F9 DUP4 0xD3 DUP15 0xB6 CODESIZE BLOBHASH DIV 0xD5 DUP15 0xDB MUL 0x22 0xBB EQ EXTDELEGATECALL REVERT EQ JUMPF 0x6473 PUSH16 0x6C634300081E00330000000000000000 ","sourceMap":"780:4634:92:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;780:4634:92;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212206cc09b2f6dca6b44547511bc21f983d38eb6384904d58edb0222bb14f9fd14e564736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH13 0xC09B2F6DCA6B44547511BC21F9 DUP4 0xD3 DUP15 0xB6 CODESIZE BLOBHASH DIV 0xD5 DUP15 0xDB MUL 0x22 0xBB EQ EXTDELEGATECALL REVERT EQ JUMPF 0x6473 PUSH16 0x6C634300081E00330000000000000000 ","sourceMap":"780:4634:92:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Utilities to manipulate memory. Memory is a contiguous and dynamic byte array in which Solidity stores non-primitive types. This library provides functions to manipulate pointers to this dynamic array and work with slices of it. Slices provide a view into a portion of memory without copying data, enabling efficient substring operations. WARNING: When manipulating memory pointers or slices, make sure to follow the Solidity documentation guidelines for https://docs.soliditylang.org/en/v0.8.20/assembly.html#memory-safety[Memory Safety].\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Memory.sol\":\"Memory\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Memory.sol\":{\"keccak256\":\"0x35feec480590c0ed9c1623df077ba9af406ad57cd9d149ff278c7316d6fe8fe0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://839967d079db4cd624c3f735a6e911953c0e2347418c016f6a0cc18ed1aa9603\",\"dweb:/ipfs/QmaWxNL8Ymkwerfvq1LNzpbq2PMzTGsnXzqsYExNyvKWka\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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/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.30+commit.73712a01\"},\"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 {Context-_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 {Context-_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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@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/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Multicall.sol\":{\"keccak256\":\"0x72a5499dfae7676e4298a7299bccd3b27438ba1a4c72df5cd69c1c343c7ea20d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://de0fb51ccae3a0ff377ed185d187440fc612a71bf8e42fdb0e032ce747fa3eef\",\"dweb:/ipfs/QmPNBaiVsAiUhz8qfXcSy27S7CqBbtSd8rPqmaykKBhw7Q\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Packing.sol":{"Packing":{"abi":[{"inputs":[],"name":"OutOfRangeAccess","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220daa69169ca5a50e241cfe16e0f88c125602529b83b6cd3ba84380e69cae7152564736f6c634300081e0033","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 0xDA 0xA6 SWAP2 PUSH10 0xCA5A50E241CFE16E0F88 0xC1 0x25 PUSH1 0x25 0x29 0xB8 EXTCODESIZE PUSH13 0xD3BA84380E69CAE7152564736F PUSH13 0x634300081E0033000000000000 ","sourceMap":"1103:63768:94:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;1103:63768:94;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220daa69169ca5a50e241cfe16e0f88c125602529b83b6cd3ba84380e69cae7152564736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDA 0xA6 SWAP2 PUSH10 0xCA5A50E241CFE16E0F88 0xC1 0x25 PUSH1 0x25 0x29 0xB8 EXTCODESIZE PUSH13 0xD3BA84380E69CAE7152564736F PUSH13 0x634300081E0033000000000000 ","sourceMap":"1103:63768:94:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"OutOfRangeAccess\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Helper library packing and unpacking multiple values into bytesXX. Example usage: ```solidity library MyPacker {     type MyType is bytes32;     function _pack(address account, bytes4 selector, uint64 period) external pure returns (MyType) {         bytes12 subpack = Packing.pack_4_8(selector, bytes8(period));         bytes32 pack = Packing.pack_20_12(bytes20(account), subpack);         return MyType.wrap(pack);     }     function _unpack(MyType self) external pure returns (address, bytes4, uint64) {         bytes32 pack = MyType.unwrap(self);         return (             address(Packing.extract_32_20(pack, 0)),             Packing.extract_32_4(pack, 20),             uint64(Packing.extract_32_8(pack, 24))         );     } } ``` _Available since v5.1._\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Packing.sol\":\"Packing\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Packing.sol\":{\"keccak256\":\"0xea9f5d3cdd11b7af7d8662a5c0e952f3666145cb4c9fe1452bd15c30abc462dd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8fcae95be7077d103530c4e6a5f1248aa64102dad62d642e2530316ab002e02c\",\"dweb:/ipfs/QmWCr2qicfaqsTbpgq7CJhedUHcPQv34k8HNs4f5kGjVnw\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/Panic.sol":{"Panic":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122061b36661da90b87345825985ba821999b58f7def490800742b0e993e53299a3064736f6c634300081e0033","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 PUSH2 0xB366 PUSH2 0xDA90 0xB8 PUSH20 0x45825985BA821999B58F7DEF490800742B0E993E MSTORE8 0x29 SWAP11 ADDRESS PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"657:1315:95:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;657:1315:95;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122061b36661da90b87345825985ba821999b58f7def490800742b0e993e53299a3064736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH2 0xB366 PUSH2 0xDA90 0xB8 PUSH20 0x45825985BA821999B58F7DEF490800742B0E993E MSTORE8 0x29 SWAP11 ADDRESS PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"657:1315:95:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"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/ReentrancyGuard.sol":{"ReentrancyGuard":{"abi":[{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"ReentrancyGuardReentrantCall\",\"type\":\"error\"}],\"devdoc\":{\"custom:stateless\":\"\",\"details\":\"Contract module that helps prevent reentrant calls to a function. Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them. Note that because there is a single `nonReentrant` guard, functions marked as `nonReentrant` may not call one another. This can be worked around by making those functions `private`, and then adding `external` `nonReentrant` entry points to them. TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at, consider using {ReentrancyGuardTransient} instead. TIP: If you would like to learn more about reentrancy and alternative ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. IMPORTANT: Deprecated. This storage-based reentrancy guard will be removed and replaced by the {ReentrancyGuardTransient} variant in v6.0.\",\"errors\":{\"ReentrancyGuardReentrantCall()\":[{\"details\":\"Unauthorized reentrant call.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":\"ReentrancyGuard\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/ReentrancyGuard.sol\":{\"keccak256\":\"0xa516cbf1c7d15d3517c2d668601ce016c54395bf5171918a14e2686977465f53\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1e1d079e8edfb58efd23a311e315a4807b01b5d1cf153f8fa2d0608b9dec3e99\",\"dweb:/ipfs/QmTBExeX2SDTkn5xbk5ssbYSx7VqRp9H4Ux1CY4uQM4b9N\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/StorageSlot.sol":{"StorageSlot":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220c5b25bc7e25b3a72f2d49562c0f1867acb24cd8f54fcb3e7733989e54e66433764736f6c634300081e0033","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 0xC5 0xB2 JUMPDEST 0xC7 0xE2 JUMPDEST GASPRICE PUSH19 0xF2D49562C0F1867ACB24CD8F54FCB3E7733989 JUMPF 0x4E66 NUMBER CALLDATACOPY PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"1407:2774:97:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;1407:2774:97;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220c5b25bc7e25b3a72f2d49562c0f1867acb24cd8f54fcb3e7733989e54e66433764736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC5 0xB2 JUMPDEST 0xC7 0xE2 JUMPDEST GASPRICE PUSH19 0xF2D49562C0F1867ACB24CD8F54FCB3E7733989 JUMPF 0x4E66 NUMBER CALLDATACOPY PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"1407:2774:97:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Library for reading and writing primitive types to specific storage slots. Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. This library helps with reading and writing to such slots without the need for inline assembly. The functions in this library return Slot structs that contain a `value` member that can be used to read or write. Example usage to set ERC-1967 implementation slot: ```solidity contract ERC1967 {     // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;     function _getImplementation() internal view returns (address) {         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;     }     function _setImplementation(address newImplementation) internal {         require(newImplementation.code.length > 0);         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;     } } ``` TIP: Consider using this library along with {SlotDerivation}.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/StorageSlot.sol\":\"StorageSlot\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122061fb076a48f7992d713c92d2a1ced0d01eb2457df4f58ea23a910bdd396cf72964736f6c634300081e0033","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 PUSH2 0xFB07 PUSH11 0x48F7992D713C92D2A1CED0 0xD0 0x1E 0xB2 GASLIMIT PUSH30 0xF4F58EA23A910BDD396CF72964736F6C634300081E003300000000000000 ","sourceMap":"332:19550:98:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;332:19550:98;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122061fb076a48f7992d713c92d2a1ced0d01eb2457df4f58ea23a910bdd396cf72964736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH2 0xFB07 PUSH11 0x48F7992D713C92D2A1CED0 0xD0 0x1E 0xB2 GASLIMIT PUSH30 0xF4F58EA23A910BDD396CF72964736F6C634300081E003300000000000000 ","sourceMap":"332:19550:98:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212202397628b3650b08ace0abb3ddab2b2fc3f82594b7e30809f076df9d8f2de3fc764736f6c634300081e0033","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 0x23 SWAP8 PUSH3 0x8B3650 0xB0 DUP11 0xCE EXP 0xBB RETURNDATASIZE 0xDA 0xB2 0xB2 0xFC EXTCODEHASH DUP3 MSIZE 0x4B PUSH31 0x30809F076DF9D8F2DE3FC764736F6C634300081E0033000000000000000000 ","sourceMap":"344:11820:99:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;344:11820:99;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212202397628b3650b08ace0abb3ddab2b2fc3f82594b7e30809f076df9d8f2de3fc764736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x23 SWAP8 PUSH3 0x8B3650 0xB0 DUP11 0xCE EXP 0xBB RETURNDATASIZE 0xDA 0xB2 0xB2 0xFC EXTCODEHASH DUP3 MSIZE 0x4B PUSH31 0x30809F076DF9D8F2DE3FC764736F6C634300081E0033000000000000000000 ","sourceMap":"344:11820:99:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x360cf86214a764694dae1522a38200b1737fe90e46dcf56a0f89de143071cc20\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e393290a46ca6d1fa1addb40709d26e1d250638ab6acdd103b5af21768ebc7b\",\"dweb:/ipfs/QmPwT3tXwQ9NbGtZ99XRq7sr8LCQP8XaCrzw49JdXGn7us\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/cryptography/Hashes.sol":{"Hashes":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122017ca67139330a008d50bd086b01f0cac66bacbb843fc40b6072091ab3efa731a64736f6c634300081e0033","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 OR 0xCA PUSH8 0x139330A008D50BD0 DUP7 0xB0 0x1F 0xC 0xAC PUSH7 0xBACBB843FC40B6 SMOD KECCAK256 SWAP2 0xAB RETURNDATACOPY STATICCALL PUSH20 0x1A64736F6C634300081E00330000000000000000 ","sourceMap":"221:811:100:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;221:811:100;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122017ca67139330a008d50bd086b01f0cac66bacbb843fc40b6072091ab3efa731a64736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 OR 0xCA PUSH8 0x139330A008D50BD0 DUP7 0xB0 0x1F 0xC 0xAC PUSH7 0xBACBB843FC40B6 SMOD KECCAK256 SWAP2 0xAB RETURNDATACOPY STATICCALL PUSH20 0x1A64736F6C634300081E00330000000000000000 ","sourceMap":"221:811:100:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Library of standard hash functions. _Available since v5.1._\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/Hashes.sol\":\"Hashes\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/cryptography/Hashes.sol\":{\"keccak256\":\"0x8cbd338f083224b4b6f0ff42cbda641a0a6c31ffcdca197452b97fe4d0918269\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f517dec5ba0c6491395acbf7f1d621f4e89e8f218bf5303c867b1c5ad70c6b11\",\"dweb:/ipfs/QmWmXHRLEw8W6ckth7NyYTU88YfvuS7xSsfae5ksL8qNUe\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"MessageHashUtils":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122009de9782d8e895448d9ad785a6925f586f148ef0bc468d01d9b41cd2a92a4b0664736f6c634300081e0033","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 MULMOD 0xDE SWAP8 DUP3 0xD8 0xE8 SWAP6 PREVRANDAO DUP14 SWAP11 0xD7 DUP6 0xA6 SWAP3 PUSH0 PC PUSH16 0x148EF0BC468D01D9B41CD2A92A4B0664 PUSH20 0x6F6C634300081E00330000000000000000000000 ","sourceMap":"521:3729:101:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;521:3729:101;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122009de9782d8e895448d9ad785a6925f586f148ef0bc468d01d9b41cd2a92a4b0664736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MULMOD 0xDE SWAP8 DUP3 0xD8 0xE8 SWAP6 PREVRANDAO DUP14 SWAP11 0xD7 DUP6 0xA6 SWAP3 PUSH0 PC PUSH16 0x148EF0BC468D01D9B41CD2A92A4B0664 PUSH20 0x6F6C634300081E00330000000000000000000000 ","sourceMap":"521:3729:101:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Bytes.sol\":{\"keccak256\":\"0x8140d608316521b1fd71167c3b708ebb8659da070723fc8807609553b296ee33\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7bf7db66869ba1e945a0390b85da2f6afc7e42a4735ca918d0d56ac90c50147\",\"dweb:/ipfs/QmRmNyhpBpgzSdQqLtrQCYE7H7eLnVVxh2Yy4YMrySR8AR\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0x36d1750bf1aa5fee9c52adb2f7857ab652daca722fc05dff533b364f67a1139a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2e5e7052539b7849d02f3ce25acc1dce29373c11cfae9f0bc918c54b780c549a\",\"dweb:/ipfs/QmRGE32xNkMTo6i4pHHMxjpiu77yPwnTA25SFngw2NXJys\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x6abeed5940e1da7bb329e458db9a1c5c4ea6f86d651b952af99c6bddcd6bbb94\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5fe75e9a6b759c5d7fd82fb59bd4f58c672b36f0a69b84f4789b7c7895d3e61c\",\"dweb:/ipfs/QmX28wsir8w5sS3acfJMNHcBwoPsDpqCu7WDkPnUWLMNiZ\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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.30+commit.73712a01\"},\"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\":\"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/ERC165.sol\":\"ERC165\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0x2d9dc2fe26180f74c11c13663647d38e259e45f95eb88f57b61d2160b0109d3e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81233d1f98060113d9922180bb0f14f8335856fe9f339134b09335e9f678c377\",\"dweb:/ipfs/QmWh6R35SarhAn4z2wH8SU456jJSYL2FgucfTFgbHJJN4E\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol":{"ERC165Checker":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122068ecd846015d25e5770bb9a9568023d9e959939671a760d503b569d816a217ed64736f6c634300081e0033","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 PUSH9 0xECD846015D25E5770B 0xB9 0xA9 JUMP DUP1 0x23 0xD9 0xE9 MSIZE SWAP4 SWAP7 PUSH18 0xA760D503B569D816A217ED64736F6C634300 ADDMOD 0x1E STOP CALLER ","sourceMap":"465:5382:103:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;465:5382:103;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122068ecd846015d25e5770bb9a9568023d9e959939671a760d503b569d816a217ed64736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH9 0xECD846015D25E5770B 0xB9 0xA9 JUMP DUP1 0x23 0xD9 0xE9 MSIZE SWAP4 SWAP7 PUSH18 0xA760D503B569D816A217ED64736F6C634300 ADDMOD 0x1E STOP CALLER ","sourceMap":"465:5382:103:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Library used to query support of an interface declared via {IERC165}. Note that these functions return the actual result of the query: they do not `revert` if an interface is not supported. It is up to the caller to decide what to do in these cases.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":\"ERC165Checker\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/ERC165Checker.sol\":{\"keccak256\":\"0xc4c674aab142650b93c3fdf27452a07c0284aed63a86b54b4c4792e8f0f333fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://47778fa8fbb0bd759b5859b65193de857778c6112af8d5421acb11e68ed04d62\",\"dweb:/ipfs/QmakrnC3iS3t4UeRReEvWfhxgB3sAyPoz6LSkdK63UxiYb\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"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.30+commit.73712a01\"},\"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\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"@openzeppelin/contracts/utils/math/Math.sol":{"Math":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220d603671a8850d836e0100ea6939de2b91d82a3097ea692a1d2348f2ba075be3864736f6c634300081e0033","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 0xD6 SUB PUSH8 0x1A8850D836E0100E 0xA6 SWAP4 SWAP14 0xE2 0xB9 SAR DUP3 LOG3 MULMOD PUSH31 0xA692A1D2348F2BA075BE3864736F6C634300081E0033000000000000000000 ","sourceMap":"281:32081:105:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;281:32081:105;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220d603671a8850d836e0100ea6939de2b91d82a3097ea692a1d2348f2ba075be3864736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD6 SUB PUSH8 0x1A8850D836E0100E 0xA6 SWAP4 SWAP14 0xE2 0xB9 SAR DUP3 LOG3 MULMOD PUSH31 0xA692A1D2348F2BA075BE3864736F6C634300081E0033000000000000000000 ","sourceMap":"281:32081:105:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"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\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220fa9d6728c7f1dba733ed459f5d1d52f48b15c4d0bc788df1878a8baa4b26db1a64736f6c634300081e0033","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 STATICCALL SWAP14 PUSH8 0x28C7F1DBA733ED45 SWAP16 TSTORE SAR MSTORE DELEGATECALL DUP12 ISZERO 0xC4 0xD0 0xBC PUSH25 0x8DF1878A8BAA4B26DB1A64736F6C634300081E003300000000 ","sourceMap":"769:34173:106:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;769:34173:106;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220fa9d6728c7f1dba733ed459f5d1d52f48b15c4d0bc788df1878a8baa4b26db1a64736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 STATICCALL SWAP14 PUSH8 0x28C7F1DBA733ED45 SWAP16 TSTORE SAR MSTORE DELEGATECALL DUP12 ISZERO 0xC4 0xD0 0xBC PUSH25 0x8DF1878A8BAA4B26DB1A64736F6C634300081E003300000000 ","sourceMap":"769:34173:106:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122026876793ecd5879ccd95025ff26cce65580ce3c58eb4b35b8945e902635830d364736f6c634300081e0033","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 0x26 DUP8 PUSH8 0x93ECD5879CCD9502 PUSH0 CALLCODE PUSH13 0xCE65580CE3C58EB4B35B8945E9 MUL PUSH4 0x5830D364 PUSH20 0x6F6C634300081E00330000000000000000000000 ","sourceMap":"258:2354:107:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;258:2354:107;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122026876793ecd5879ccd95025ff26cce65580ce3c58eb4b35b8945e902635830d364736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x26 DUP8 PUSH8 0x93ECD5879CCD9502 PUSH0 CALLCODE PUSH13 0xCE65580CE3C58EB4B35B8945E9 MUL PUSH4 0x5830D364 PUSH20 0x6F6C634300081E00330000000000000000000000 ","sourceMap":"258:2354:107:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212204b9b3776ade6d5f34ab3b2c043b7a8c5acf4f4d42551803eec69aa9248daef1364736f6c634300081e0033","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 0x4B SWAP12 CALLDATACOPY PUSH23 0xADE6D5F34AB3B2C043B7A8C5ACF4F4D42551803EEC69AA SWAP3 BASEFEE 0xDA 0xEF SGT PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"640:4514:108:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;640:4514:108;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212204b9b3776ade6d5f34ab3b2c043b7a8c5acf4f4d42551803eec69aa9248daef1364736f6c634300081e0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4B SWAP12 CALLDATACOPY PUSH23 0xADE6D5F34AB3B2C043B7A8C5ACF4F4D42551803EEC69AA SWAP3 BASEFEE 0xDA 0xEF SGT PUSH5 0x736F6C6343 STOP ADDMOD 0x1E STOP CALLER ","sourceMap":"640:4514:108:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"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\":\"prague\",\"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\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/types/Time.sol\":{\"keccak256\":\"0x3765cc1833212456000f02d5de0478c2055b5f318e27032537c6d47c91e68b05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3e77d9fd11b604fb3820ba6794f1e2516deb1093dada1c7225da6c46def95256\",\"dweb:/ipfs/QmcqQo9mmD5kekxFtJcvZTyCPaEgxQsSVfp7wLiE91fdAc\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts-exposed/CashFlowLender.sol":{"$CashFlowLender":{"abi":[{"inputs":[{"internalType":"address","name":"trustedForwarder_","type":"address"},{"internalType":"contract IPolicyPool","name":"policyPool_","type":"address"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"uint256","name":"balanceReduction","type":"uint256"}],"name":"BalanceDecreasedOnResolve","type":"error"},{"inputs":[],"name":"CannotDeactivateTarget","type":"error"},{"inputs":[],"name":"CannotDeinvestYieldVault","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"int256","name":"debtAfter","type":"int256"}],"name":"CashOutExceedsLimit","type":"error"},{"inputs":[{"internalType":"int256","name":"currentDebt","type":"int256"},{"internalType":"uint96","name":"debtLimit","type":"uint96"}],"name":"DebtLimitExceeded","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"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"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxMint","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxRedeem","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxWithdraw","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":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"InvalidPolicyPool","type":"error"},{"inputs":[],"name":"InvalidSlotSize","type":"error"},{"inputs":[],"name":"NotEnoughCash","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"OnlyPolicyPool","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"int256","name":"debtAfter","type":"int256"}],"name":"RepaymentExceedsLimit","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"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"TargetAlreadyExists","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"enum CashFlowLender.TargetStatus","name":"status","type":"uint8"}],"name":"TargetNotActive","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"TargetNotFound","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"requiredSelector","type":"bytes4"}],"name":"UnauthorizedForward","type":"error"},{"inputs":[],"name":"YieldVaultIsRequired","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":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"slotSize","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"slotIndex","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"int256","name":"debtAfterChange","type":"int256"},{"indexed":false,"internalType":"address","name":"destination","type":"address"}],"name":"CashOutPayout","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"slotSize","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"slotIndex","type":"uint32"},{"indexed":false,"internalType":"int256","name":"value","type":"int256"},{"indexed":false,"internalType":"int256","name":"debtAfterChange","type":"int256"},{"indexed":false,"internalType":"int256","name":"totalDebtAfterChange","type":"int256"}],"name":"DebtChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"slotSize","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"slotIndex","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"int256","name":"debtAfterChange","type":"int256"},{"indexed":false,"internalType":"address","name":"payer","type":"address"}],"name":"RepayDebt","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"components":[{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"enum CashFlowLender.TargetStatus","name":"status","type":"uint8"},{"internalType":"uint96","name":"debtLimit","type":"uint96"},{"internalType":"uint96","name":"minLiquidity","type":"uint96"}],"indexed":false,"internalType":"struct CashFlowLender.TargetConfig","name":"config","type":"tuple"}],"name":"TargetAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldDebtLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newDebtLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldMinLiquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMinLiquidity","type":"uint256"}],"name":"TargetLimitsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"oldSlotSize","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"newSlotSize","type":"uint32"}],"name":"TargetSlotSizeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"enum CashFlowLender.TargetStatus","name":"oldStatus","type":"uint8"},{"indexed":false,"internalType":"enum CashFlowLender.TargetStatus","name":"newStatus","type":"uint8"}],"name":"TargetStatusChanged","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":false,"internalType":"contract IERC4626","name":"newVault","type":"address"}],"name":"YieldVaultChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"int256","name":"currentDebt_","type":"int256"}],"name":"return$_changeDebt","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"deinvested","type":"uint256"}],"name":"return$_deinvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"balanceBefore","type":"uint256"}],"name":"return$_ensureLiquidBalance","type":"event"},{"inputs":[],"name":"$CashFlowLenderStorageLocation","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"$JAN_1ST_2025","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"$SECONDS_PER_DAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"contract IERC4626","name":"yieldVault_","type":"address"}],"name":"$__CashFlowLender_init","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IERC4626","name":"yieldVault_","type":"address"}],"name":"$__CashFlowLender_init_unchained","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$__Context_init","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$__Context_init_unchained","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"$__ERC20_init","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"$__ERC20_init_unchained","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"asset_","type":"address"}],"name":"$__ERC4626_init","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"asset_","type":"address"}],"name":"$__ERC4626_init_unchained","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bool","name":"emitEvent","type":"bool"}],"name":"$_approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"$_approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newImpl","type":"address"}],"name":"$_authorizeUpgrade","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"$_balance","outputs":[{"internalType":"uint256","name":"ret0","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"$_burn","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint32","name":"slotIndex","type":"uint32"},{"internalType":"int256","name":"amount","type":"int256"}],"name":"$_changeDebt","outputs":[{"internalType":"int256","name":"currentDebt_","type":"int256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"$_checkCanForward","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"$_checkInitializing","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"$_checkNotDelegated","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"$_checkProxy","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"$_computeCalendarMonth","outputs":[{"internalType":"uint32","name":"slotIndex","type":"uint32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"$_contextSuffixLength","outputs":[{"internalType":"uint256","name":"ret0","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"enum Math.Rounding","name":"rounding","type":"uint8"}],"name":"$_convertToAssets","outputs":[{"internalType":"uint256","name":"ret0","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"enum Math.Rounding","name":"rounding","type":"uint8"}],"name":"$_convertToShares","outputs":[{"internalType":"uint256","name":"ret0","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"$_decimalsOffset","outputs":[{"internalType":"uint8","name":"ret0","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"$_deinvest","outputs":[{"internalType":"uint256","name":"deinvested","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"$_deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$_disableInitializers","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"targetConfig","type":"uint256"}],"name":"$_ensureLiquidBalance","outputs":[{"internalType":"uint256","name":"balanceBefore","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$_getInitializedVersion","outputs":[{"internalType":"uint64","name":"ret0","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dayInYear","type":"uint256"},{"internalType":"bool","name":"isLeap","type":"bool"}],"name":"$_getMonth","outputs":[{"internalType":"uint256","name":"ret0","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"$_getTargetConfig","outputs":[{"components":[{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"enum CashFlowLender.TargetStatus","name":"status","type":"uint8"},{"internalType":"uint96","name":"debtLimit","type":"uint96"},{"internalType":"uint96","name":"minLiquidity","type":"uint96"}],"internalType":"struct CashFlowLender.TargetConfig","name":"targetConfig","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"targetConfig","type":"uint256"},{"internalType":"uint256","name":"balanceBefore","type":"uint256"}],"name":"$_increaseDebtAfterNewPolicy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$_initializableStorageSlot","outputs":[{"internalType":"bytes32","name":"ret0","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"$_isInitializing","outputs":[{"internalType":"bool","name":"ret0","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"$_makeSlotIndex","outputs":[{"internalType":"uint32","name":"slotIndex","type":"uint32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint32","name":"slotIndex","type":"uint32"}],"name":"$_makeTargetSlot","outputs":[{"internalType":"CashFlowLender.TargetSlot","name":"slot","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"$_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$_msgData","outputs":[{"internalType":"bytes","name":"ret0","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"$_msgSender","outputs":[{"internalType":"address","name":"ret0","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"$_policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC4626","name":"yieldVault_","type":"address"}],"name":"$_setYieldVault","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"$_spendAllowance","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"$_transfer","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"$_update","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"$_withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"$forwardNewPolicyWrapper","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"$forwardResolvePolicyWrapper","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$initializer","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$notDelegated","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$onlyInitializing","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$onlyPolicyPool","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"$onlyProxy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint64","name":"version","type":"uint64"}],"name":"$reinitializer","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"OWN_POLICY_SELECTOR","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SLOTSIZE_CALENDAR_MONTH","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__hh_exposed_bytecode_marker","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint256","name":"debtLimit","type":"uint256"},{"internalType":"uint256","name":"minLiquidity","type":"uint256"}],"name":"addTarget","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint32","name":"slotIndex","type":"uint32"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"cashOutPayouts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cashWithdrawable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentDebt","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositIntoYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes[]","name":"inputData","type":"bytes[]"},{"internalType":"address","name":"onBehalfOf","type":"address"}],"name":"forwardNewPoliciesV3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"forwardNewPolicy","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"forwardNewPolicyBatch","outputs":[{"internalType":"bytes[]","name":"result","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"},{"internalType":"address","name":"onBehalfOf","type":"address"}],"name":"forwardNewPolicyV3","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"forwardResolvePolicy","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"forwardResolvePolicyBatch","outputs":[{"internalType":"bytes[]","name":"result","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint32","name":"slotIndex","type":"uint32"}],"name":"getDebtForPeriod","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"getTargetStatus","outputs":[{"internalType":"enum CashFlowLender.TargetStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"contract IERC4626","name":"yieldVault_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"makeFakeSelector","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"onPayoutReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"name":"onPolicyCancelled","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"onPolicyExpired","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"onPolicyReplaced","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint32","name":"slotIndex","type":"uint32"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"repayDebt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"debtLimit","type":"uint256"},{"internalType":"uint256","name":"minLiquidity","type":"uint256"}],"name":"setTargetLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"newSlotSize","type":"uint32"}],"name":"setTargetSlotSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"enum CashFlowLender.TargetStatus","name":"newStatus","type":"uint8"}],"name":"setTargetStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC4626","name":"yieldVault_","type":"address"},{"internalType":"bool","name":"force","type":"bool"}],"name":"setYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"assets","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"},{"inputs":[],"name":"trustedForwarder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFromYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yieldVault","outputs":[{"internalType":"contract IERC4626","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}],"evm":{"bytecode":{"functionDebugData":{"@_15868":{"entryPoint":null,"id":15868,"parameterSlots":1,"returnSlots":0},"@_37454":{"entryPoint":null,"id":37454,"parameterSlots":2,"returnSlots":0},"@_38643":{"entryPoint":null,"id":38643,"parameterSlots":2,"returnSlots":0},"@_disableInitializers_23388":{"entryPoint":76,"id":23388,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_23433":{"entryPoint":null,"id":23433,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_23419":{"entryPoint":null,"id":23419,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_addresst_contract$_IPolicyPool_$40853_fromMemory":{"entryPoint":274,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"validator_revert_address":{"entryPoint":254,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:763:125","nodeType":"YulBlock","src":"0:763:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"59:86:125","nodeType":"YulBlock","src":"59:86:125","statements":[{"body":{"nativeSrc":"123:16:125","nodeType":"YulBlock","src":"123:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:125","nodeType":"YulLiteral","src":"132:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:125","nodeType":"YulLiteral","src":"135:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:125","nodeType":"YulIdentifier","src":"125:6:125"},"nativeSrc":"125:12:125","nodeType":"YulFunctionCall","src":"125:12:125"},"nativeSrc":"125:12:125","nodeType":"YulExpressionStatement","src":"125:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:125","nodeType":"YulIdentifier","src":"82:5:125"},{"arguments":[{"name":"value","nativeSrc":"93:5:125","nodeType":"YulIdentifier","src":"93:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:125","nodeType":"YulLiteral","src":"108:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:125","nodeType":"YulLiteral","src":"113:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:125","nodeType":"YulIdentifier","src":"104:3:125"},"nativeSrc":"104:11:125","nodeType":"YulFunctionCall","src":"104:11:125"},{"kind":"number","nativeSrc":"117:1:125","nodeType":"YulLiteral","src":"117:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:125","nodeType":"YulIdentifier","src":"100:3:125"},"nativeSrc":"100:19:125","nodeType":"YulFunctionCall","src":"100:19:125"}],"functionName":{"name":"and","nativeSrc":"89:3:125","nodeType":"YulIdentifier","src":"89:3:125"},"nativeSrc":"89:31:125","nodeType":"YulFunctionCall","src":"89:31:125"}],"functionName":{"name":"eq","nativeSrc":"79:2:125","nodeType":"YulIdentifier","src":"79:2:125"},"nativeSrc":"79:42:125","nodeType":"YulFunctionCall","src":"79:42:125"}],"functionName":{"name":"iszero","nativeSrc":"72:6:125","nodeType":"YulIdentifier","src":"72:6:125"},"nativeSrc":"72:50:125","nodeType":"YulFunctionCall","src":"72:50:125"},"nativeSrc":"69:70:125","nodeType":"YulIf","src":"69:70:125"}]},"name":"validator_revert_address","nativeSrc":"14:131:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:125","nodeType":"YulTypedName","src":"48:5:125","type":""}],"src":"14:131:125"},{"body":{"nativeSrc":"269:287:125","nodeType":"YulBlock","src":"269:287:125","statements":[{"body":{"nativeSrc":"315:16:125","nodeType":"YulBlock","src":"315:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"324:1:125","nodeType":"YulLiteral","src":"324:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"327:1:125","nodeType":"YulLiteral","src":"327:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"317:6:125","nodeType":"YulIdentifier","src":"317:6:125"},"nativeSrc":"317:12:125","nodeType":"YulFunctionCall","src":"317:12:125"},"nativeSrc":"317:12:125","nodeType":"YulExpressionStatement","src":"317:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"290:7:125","nodeType":"YulIdentifier","src":"290:7:125"},{"name":"headStart","nativeSrc":"299:9:125","nodeType":"YulIdentifier","src":"299:9:125"}],"functionName":{"name":"sub","nativeSrc":"286:3:125","nodeType":"YulIdentifier","src":"286:3:125"},"nativeSrc":"286:23:125","nodeType":"YulFunctionCall","src":"286:23:125"},{"kind":"number","nativeSrc":"311:2:125","nodeType":"YulLiteral","src":"311:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"282:3:125","nodeType":"YulIdentifier","src":"282:3:125"},"nativeSrc":"282:32:125","nodeType":"YulFunctionCall","src":"282:32:125"},"nativeSrc":"279:52:125","nodeType":"YulIf","src":"279:52:125"},{"nativeSrc":"340:29:125","nodeType":"YulVariableDeclaration","src":"340:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"359:9:125","nodeType":"YulIdentifier","src":"359:9:125"}],"functionName":{"name":"mload","nativeSrc":"353:5:125","nodeType":"YulIdentifier","src":"353:5:125"},"nativeSrc":"353:16:125","nodeType":"YulFunctionCall","src":"353:16:125"},"variables":[{"name":"value","nativeSrc":"344:5:125","nodeType":"YulTypedName","src":"344:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"403:5:125","nodeType":"YulIdentifier","src":"403:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"378:24:125","nodeType":"YulIdentifier","src":"378:24:125"},"nativeSrc":"378:31:125","nodeType":"YulFunctionCall","src":"378:31:125"},"nativeSrc":"378:31:125","nodeType":"YulExpressionStatement","src":"378:31:125"},{"nativeSrc":"418:15:125","nodeType":"YulAssignment","src":"418:15:125","value":{"name":"value","nativeSrc":"428:5:125","nodeType":"YulIdentifier","src":"428:5:125"},"variableNames":[{"name":"value0","nativeSrc":"418:6:125","nodeType":"YulIdentifier","src":"418:6:125"}]},{"nativeSrc":"442:40:125","nodeType":"YulVariableDeclaration","src":"442:40:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"467:9:125","nodeType":"YulIdentifier","src":"467:9:125"},{"kind":"number","nativeSrc":"478:2:125","nodeType":"YulLiteral","src":"478:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"463:3:125","nodeType":"YulIdentifier","src":"463:3:125"},"nativeSrc":"463:18:125","nodeType":"YulFunctionCall","src":"463:18:125"}],"functionName":{"name":"mload","nativeSrc":"457:5:125","nodeType":"YulIdentifier","src":"457:5:125"},"nativeSrc":"457:25:125","nodeType":"YulFunctionCall","src":"457:25:125"},"variables":[{"name":"value_1","nativeSrc":"446:7:125","nodeType":"YulTypedName","src":"446:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"516:7:125","nodeType":"YulIdentifier","src":"516:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"491:24:125","nodeType":"YulIdentifier","src":"491:24:125"},"nativeSrc":"491:33:125","nodeType":"YulFunctionCall","src":"491:33:125"},"nativeSrc":"491:33:125","nodeType":"YulExpressionStatement","src":"491:33:125"},{"nativeSrc":"533:17:125","nodeType":"YulAssignment","src":"533:17:125","value":{"name":"value_1","nativeSrc":"543:7:125","nodeType":"YulIdentifier","src":"543:7:125"},"variableNames":[{"name":"value1","nativeSrc":"533:6:125","nodeType":"YulIdentifier","src":"533:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_contract$_IPolicyPool_$40853_fromMemory","nativeSrc":"150:406:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"227:9:125","nodeType":"YulTypedName","src":"227:9:125","type":""},{"name":"dataEnd","nativeSrc":"238:7:125","nodeType":"YulTypedName","src":"238:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"250:6:125","nodeType":"YulTypedName","src":"250:6:125","type":""},{"name":"value1","nativeSrc":"258:6:125","nodeType":"YulTypedName","src":"258:6:125","type":""}],"src":"150:406:125"},{"body":{"nativeSrc":"660:101:125","nodeType":"YulBlock","src":"660:101:125","statements":[{"nativeSrc":"670:26:125","nodeType":"YulAssignment","src":"670:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"682:9:125","nodeType":"YulIdentifier","src":"682:9:125"},{"kind":"number","nativeSrc":"693:2:125","nodeType":"YulLiteral","src":"693:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"678:3:125","nodeType":"YulIdentifier","src":"678:3:125"},"nativeSrc":"678:18:125","nodeType":"YulFunctionCall","src":"678:18:125"},"variableNames":[{"name":"tail","nativeSrc":"670:4:125","nodeType":"YulIdentifier","src":"670:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"712:9:125","nodeType":"YulIdentifier","src":"712:9:125"},{"arguments":[{"name":"value0","nativeSrc":"727:6:125","nodeType":"YulIdentifier","src":"727:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"743:2:125","nodeType":"YulLiteral","src":"743:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"747:1:125","nodeType":"YulLiteral","src":"747:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"739:3:125","nodeType":"YulIdentifier","src":"739:3:125"},"nativeSrc":"739:10:125","nodeType":"YulFunctionCall","src":"739:10:125"},{"kind":"number","nativeSrc":"751:1:125","nodeType":"YulLiteral","src":"751:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"735:3:125","nodeType":"YulIdentifier","src":"735:3:125"},"nativeSrc":"735:18:125","nodeType":"YulFunctionCall","src":"735:18:125"}],"functionName":{"name":"and","nativeSrc":"723:3:125","nodeType":"YulIdentifier","src":"723:3:125"},"nativeSrc":"723:31:125","nodeType":"YulFunctionCall","src":"723:31:125"}],"functionName":{"name":"mstore","nativeSrc":"705:6:125","nodeType":"YulIdentifier","src":"705:6:125"},"nativeSrc":"705:50:125","nodeType":"YulFunctionCall","src":"705:50:125"},"nativeSrc":"705:50:125","nodeType":"YulExpressionStatement","src":"705:50:125"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"561:200:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"629:9:125","nodeType":"YulTypedName","src":"629:9:125","type":""},{"name":"value0","nativeSrc":"640:6:125","nodeType":"YulTypedName","src":"640:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"651:4:125","nodeType":"YulTypedName","src":"651:4:125","type":""}],"src":"561:200:125"}]},"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_tuple_t_addresst_contract$_IPolicyPool_$40853_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_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}","id":125,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60e060408190523060a052616ad53881900390819083398101604081905261002691610112565b6001600160a01b03808316608052811660c052818161004361004c565b5050505061014a565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161561009c5760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146100fb5780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6001600160a01b03811681146100fb575f5ffd5b5f5f60408385031215610123575f5ffd5b825161012e816100fe565b602084015190925061013f816100fe565b809150509250929050565b60805160a05160c0516168ff6101d65f395f8181610ad9015281816118fe01528181611e69015281816120b60152818161211f01528181613149015281816134da015281816135950152818161380101528181613a28015281816148a1015261493601525f8181613e01015281816140d001526140f901525f8181610d42015261207a01526168ff5ff3fe6080604052600436106106ed575f3560e01c806383b955791161038a578063c0c51217116101de578063e047838d11610108578063efb43b07116100a8578063f7a3933311610078578063f7a39333146112fe578063fa171c921461131d578063fa3045d014611331578063fbf9c9ce14611344575f5ffd5b8063efb43b07146112db578063f14b624b146112ee578063f15476a214610fac578063f5f1bec0146112f6575f5ffd5b8063e8e617b7116100e3578063e8e617b71461128b578063ee07abbb146112aa578063ef4f78d1146112c9578063ef8b30f7146110da575f5ffd5b8063e047838d1461122d578063e483b6e114611240578063e77659fd1461125f575f5ffd5b8063cc671a181161017e578063d52f99ce1161014e578063d52f99ce146111a4578063d6281d3e146111d0578063d905777e146111ef578063dd62ed3e1461120e575f5ffd5b8063cc671a181461113f578063ce96cb7714611153578063d2e26fe414611172578063d336078c14611185575f5ffd5b8063c6e6f592116101b9578063c6e6f592146110da578063c9eb0571146110f9578063ca10eca01461110d578063cc461d621461112c575f5ffd5b8063c0c512171461109c578063c3ba11f5146110bb578063c63d75b614610b74575f5ffd5b8063a7f8a5e2116102bf578063aeabd3291161025f578063b7e44f4e1161022f578063b7e44f4e1461102c578063ba0876521461103f578063bdb5371d1461105e578063bfdb20da1461107d575f5ffd5b8063aeabd32914610fc7578063b2331d7d14610fdb578063b3d7f6b914610fee578063b460af941461100d575f5ffd5b8063ac860f741161029a578063ac860f7414610f5d578063ad3cb1cc14610f7c578063adfdfe2e14610fac578063ae6aaa6214610fb4575f5ffd5b8063a7f8a5e214610f0f578063a9059cbb14610f23578063a9ed148714610f42575f5ffd5b806394bf804d1161032a5780639c0b90c7116103055780639c0b90c714610eb75780639c5baeaa14610eca5780639db0391f14610edd578063a3ac939014610ef0575f5ffd5b806394bf804d14610e7157806395d89b4114610e9057806397f8423e14610ea4575f5ffd5b80638963227f116103655780638963227f14610e0b5780638b4e914a14610e135780638d94d57514610e325780638f79246514610e45575f5ffd5b806383b9557914610dc6578063861e3d3d14610dd957806386b4408314610dec575f5ffd5b806338d52e0f116105415780635ee0c7dd11610476578063759076e511610416578063811eecf5116103e6578063811eecf514610d79578063818f567314610d8c57806382dbbd7114610d94578063833d816d14610db3575f5ffd5b8063759076e514610cf757806375b58c9514610d215780637da0a87714610d3457806380da0a1c14610d66575f5ffd5b806367354a841161045157806367354a8414610c935780636855a17814610ca65780636e553f6514610cb957806370a0823114610cd8575f5ffd5b80635ee0c7dd14610c4d57806362eb345e14610c6c578063657ab2b314610c8b575f5ffd5b80634cdad506116104e15780634fd5303d116104bc5780634fd5303d14610bd957806352d1902d14610c0557806353c42f8814610c19578063572b6c0514610c2e575f5ffd5b80634cdad506146107a65780634d15eb0314610acb5780634f1ef28614610bc6575f5ffd5b8063401022ef1161051c578063401022ef14610b6c578063402d267d14610b745780634092b0c114610b945780634879872014610bb3575f5ffd5b806338d52e0f14610b225780633e15a35714610b365780633edeb25714610b55575f5ffd5b806318160ddd116106225780632904df29116105c257806332cadf3c1161059257806332cadf3c14610a9857806333bded3c14610aac57806333f965ce14610acb578063342db73914610afd575f5ffd5b80632904df2914610a205780632f9cf0aa14610a4c578063313ce56714610a5f57806332bc74aa14610a85575f5ffd5b80631a7e8014116105fd5780631a7e80141461099a5780631c93944f146109ae578063225c531e146109e257806323b872dd14610a01575f5ffd5b806318160ddd14610916578063194448e5146109495780631a034afb14610968575f5ffd5b806308742d901161068d5780630a28a477116106685780630a28a4771461088c5780630aecc093146108ab5780630cabf231146108bf578063150b7a02146108de575f5ffd5b806308742d90146107e4578063091ea8a614610803578063095ea7b31461086d575f5ffd5b806306fdde03116106c857806306fdde0314610764578063077f224a1461078557806307a2d13a146107a657806307c2e878146107c5575f5ffd5b806301e1d114146106f857806301ffc9a71461071f578063025ca58e1461074e575f5ffd5b366106f457005b5f5ffd5b348015610703575f5ffd5b5061070c611361565b6040519081526020015b60405180910390f35b34801561072a575f5ffd5b5061073e610739366004615499565b6114a3565b6040519015158152602001610716565b348015610759575f5ffd5b50636774858061070c565b34801561076f575f5ffd5b50610778611545565b60405161071691906154e0565b348015610790575f5ffd5b506107a461079f3660046155d6565b611605565b005b3480156107b1575f5ffd5b5061070c6107c036600461564c565b6116ed565b3480156107d0575f5ffd5b506107a46107df3660046156aa565b6116f8565b3480156107ef575f5ffd5b506107a46107fe36600461571e565b61181f565b34801561080e575f5ffd5b5061086061081d366004615755565b6001600160a01b03165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af016020526040902054600160201b900460ff1690565b60405161071691906157a4565b348015610878575f5ffd5b5061073e6108873660046157b2565b6118bb565b348015610897575f5ffd5b5061070c6108a636600461564c565b6118dc565b3480156108b6575f5ffd5b506107a46118e8565b3480156108ca575f5ffd5b505f5160206168aa5f395f51905f5261070c565b3480156108e9575f5ffd5b506108fd6108f8366004615819565b6118f2565b6040516001600160e01b03199091168152602001610716565b348015610921575f5ffd5b507f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace025461070c565b348015610954575f5ffd5b506107a4610963366004615893565b61195c565b348015610973575f5ffd5b507ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0061070c565b3480156109a5575f5ffd5b506107a4611a84565b3480156109b9575f5ffd5b506109cd6109c83660046158bf565b611a8c565b60405163ffffffff9091168152602001610716565b3480156109ed575f5ffd5b506107a46109fc3660046158db565b611a9e565b348015610a0c575f5ffd5b5061073e610a1b36600461593f565b611bc2565b348015610a2b575f5ffd5b50610a34611bef565b6040516001600160a01b039091168152602001610716565b6107a4610a5a366004615755565b611bf8565b348015610a6a575f5ffd5b50610a73611cc8565b60405160ff9091168152602001610716565b6107a4610a9336600461597d565b611d04565b348015610aa3575f5ffd5b50610778611d10565b348015610ab7575f5ffd5b50610778610ac63660046159c2565b611d53565b348015610ad6575f5ffd5b507f0000000000000000000000000000000000000000000000000000000000000000610a34565b348015610b08575f5ffd5b5061070c6e1a185c991a185d0b595e1c1bdcd959608a1b81565b348015610b2d575f5ffd5b50610a34611f10565b348015610b41575f5ffd5b5061070c610b50366004615a12565b611f3e565b348015610b60575f5ffd5b506109cd63ffffffff81565b6107a4611f52565b348015610b7f575f5ffd5b5061070c610b8e366004615755565b505f1990565b348015610b9f575f5ffd5b506109cd610bae36600461564c565b61202b565b6107a4610bc1366004615755565b612035565b6107a4610bd4366004615a4f565b61203e565b348015610be4575f5ffd5b50610bed612054565b6040516001600160401b039091168152602001610716565b348015610c10575f5ffd5b5061070c61205d565b348015610c24575f5ffd5b506201518061070c565b348015610c39575f5ffd5b5061073e610c48366004615755565b612078565b348015610c58575f5ffd5b506108fd610c67366004615aae565b6120aa565b348015610c77575f5ffd5b506108fd610c86366004615af1565b612113565b6107a4611a84565b348015610c9e575f5ffd5b50601461070c565b6107a4610cb436600461593f565b612249565b348015610cc4575f5ffd5b5061070c610cd3366004615b46565b612259565b348015610ce3575f5ffd5b5061070c610cf2366004615755565b61227b565b348015610d02575f5ffd5b505f5160206168aa5f395f51905f5254600160a01b9004600b0b61070c565b6107a4610d2f366004615755565b6122a1565b348015610d3f575f5ffd5b507f0000000000000000000000000000000000000000000000000000000000000000610a34565b6107a4610d74366004615755565b6122aa565b61070c610d8736600461564c565b6122b3565b6107a46118e8565b348015610d9f575f5ffd5b506107a4610dae366004615b69565b6122fd565b6107a4610dc1366004615bb7565b6123e7565b6107a4610dd4366004615bdd565b612486565b6107a4610de736600461593f565b612493565b348015610df7575f5ffd5b50610778610e063660046159c2565b61249e565b6107a46125ae565b348015610e1e575f5ffd5b5061070c610e2d366004615c40565b6125b6565b6107a4610e40366004615755565b6125c1565b348015610e50575f5ffd5b50610e64610e5f366004615755565b6125ca565b6040516107169190615c63565b348015610e7c575f5ffd5b5061070c610e8b366004615b46565b61266f565b348015610e9b575f5ffd5b50610778612691565b6107a4610eb2366004615cb1565b6126cf565b6107a4610ec5366004615aae565b612742565b6107a4610ed8366004615d24565b61274e565b6107a4610eeb366004615755565b612767565b348015610efb575f5ffd5b5061070c610f0a366004615a12565b6127dc565b348015610f1a575f5ffd5b50610a34612830565b348015610f2e575f5ffd5b5061073e610f3d3660046157b2565b61284f565b348015610f4d575f5ffd5b506108fd6001600160e01b031981565b348015610f68575f5ffd5b506107a4610f7736600461564c565b612866565b348015610f87575f5ffd5b50610778604051806040016040528060058152602001640352e302e360dc1b81525081565b6107a4612926565b61070c610fc236600461564c565b61292e565b348015610fd2575f5ffd5b5061070c612977565b6107a4610fe936600461593f565b612980565b348015610ff9575f5ffd5b5061070c61100836600461564c565b61298b565b348015611018575f5ffd5b5061070c611027366004615d56565b612997565b6107a461103a366004615d8a565b6129f4565b34801561104a575f5ffd5b5061070c611059366004615d56565b612a65565b348015611069575f5ffd5b506107a4611078366004615d24565b612ab9565b348015611088575f5ffd5b506107a4611097366004615df4565b612ba3565b3480156110a7575f5ffd5b506108fd6110b6366004615e22565b612d8f565b3480156110c6575f5ffd5b5061070c6110d5366004615e55565b612dd9565b3480156110e5575f5ffd5b5061070c6110f436600461564c565b612de4565b348015611104575f5ffd5b5061073e612def565b348015611118575f5ffd5b5061070c611127366004615c40565b612df8565b6107a461113a3660046157b2565b612e03565b34801561114a575f5ffd5b5061070c612e0d565b34801561115e575f5ffd5b5061070c61116d366004615755565b612e99565b61070c611180366004615b69565b612eb3565b348015611190575f5ffd5b506107a461119f36600461564c565b612f03565b3480156111af575f5ffd5b506111c36111be366004615e78565b612fb0565b6040516107169190615ebc565b3480156111db575f5ffd5b506108fd6111ea366004615aae565b61313d565b3480156111fa575f5ffd5b5061070c611209366004615755565b61324d565b348015611219575f5ffd5b5061070c611228366004615f5b565b613265565b6107a461123b3660046157b2565b6132ae565b34801561124b575f5ffd5b506107a461125a366004615f87565b6132b8565b34801561126a575f5ffd5b5061127e611279366004615fcb565b6132c3565b604051610716919061600e565b348015611296575f5ffd5b506108fd6112a536600461593f565b613589565b3480156112b5575f5ffd5b5061127e6112c4366004615fcb565b6135f1565b3480156112d4575f5ffd5b505f610a73565b6107a46112e936600461593f565b6137eb565b6107a46137f6565b6107a461384c565b348015611309575f5ffd5b506107a4611318366004616071565b613854565b348015611328575f5ffd5b506107a46125ae565b6107a461133f366004615d8a565b613913565b34801561134f575f5ffd5b506107a461135e366004615755565b50565b5f5f5160206168aa5f395f51905f52611378613984565b81546040516370a0823160e01b81523060048201529193506001600160a01b0316906307a2d13a9082906370a0823190602401602060405180830381865afa1580156113c6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ea919061609d565b6040518263ffffffff1660e01b815260040161140891815260200190565b602060405180830381865afa158015611423573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611447919061609d565b61145190836160c8565b81549092505f600160a01b909104600b0b121561148d57805461147d90600160a01b9004600b0b6160db565b61148790836160f5565b91505090565b805461148790600160a01b9004600b0b836160c8565b5f6001600160e01b03198216630a85bd0160e11b14806114d357506001600160e01b03198216630162fc8560e11b145b806114ee57506001600160e01b031982166336372b0760e01b145b8061150957506001600160e01b0319821663a219a02560e01b145b8061152457506001600160e01b0319821663043eff2d60e51b145b8061153f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0380546060915f51602061684a5f395f51905f529161158390616108565b80601f01602080910402602001604051908101604052809291908181526020018280546115af90616108565b80156115fa5780601f106115d1576101008083540402835291602001916115fa565b820191905f5260205f20905b8154815290600101906020018083116115dd57829003601f168201915b505050505091505090565b5f61160e6139f5565b805490915060ff600160401b82041615906001600160401b03165f811580156116345750825b90505f826001600160401b0316600114801561164f5750303b155b90508115801561165d575080155b1561167b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156116a557845460ff60401b1916600160401b1785555b6116b0888888613a1d565b83156116e357845460ff60401b19168555604051600181525f51602061686a5f395f51905f529060200160405180910390a15b5050505050505050565b5f61153f825f613ac4565b835f61170382613b1b565b905060018154600160201b900460ff16600381111561172457611724615770565b82548492600160201b90910460ff16911461175d57604051630e851c7960e31b8152600401611754929190616140565b60405180910390fd5b50505f61176982613bb3565b9050611784611776613c07565b886346d58ca960e11b613c10565b6001600160a01b03841630146117ae576117ae61179f613c07565b886001600160e01b0319613c10565b6040516303e1e7c360e31b81526001600160a01b03881690631f0f3e18906117de90899089908990600401616185565b5f604051808303815f87803b1580156117f5575f5ffd5b505af1158015611807573d5f5f3e3d5ffd5b50505050611816838383613d12565b50505050505050565b8063ffffffff165f036118455760405163294da6c760e21b815260040160405180910390fd5b5f61184f83613b1b565b80546040805163ffffffff928316815291851660208301529192506001600160a01b038516917f4345ec61f717774fdb684b701c34934889550330da2b93f2c3a33379db77f817910160405180910390a2805463ffffffff191663ffffffff9290921691909117905550565b5f5f6118c5613c07565b90506118d2818585613d9b565b5060019392505050565b5f61153f826001613da8565b6118f0613df6565b565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146119495760405163950d88bf60e01b81526001600160a01b039091166004820152602401611754565b50630a85bd0160e11b9695505050505050565b5f5f5160206168aa5f395f51905f5280546040516370a0823160e01b81523060048201529192505f916001600160a01b03909116906307a2d13a9082906370a0823190602401602060405180830381865afa1580156119bd573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119e1919061609d565b6040518263ffffffff1660e01b81526004016119ff91815260200190565b602060405180830381865afa158015611a1a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a3e919061609d565b905080611a4a82613e3f565b1480611a535750825b611a705760405163292d4c4b60e11b815260040160405180910390fd5b611a7984613f38565b50505050565b905090565b6118f06140c5565b5f611a978383614153565b9392505050565b611aa785613b1b565b505f611abd868686611ab88761417f565b6141af565b905082815f811315611aeb57604051630c97a6bf60e41b815260048101929092526024820152604401611754565b50505f611af6613984565b905083811015611b3a57611b0a81856160f5565b611b1c611b1783876160f5565b613e3f565b14611b3a5760405163af8075e960e01b815260040160405180910390fd5b611b578385611b47611f10565b6001600160a01b031691906142ae565b6040805163ffffffff808916825287166020820152908101859052606081018390526001600160a01b0384811660808301528816907fcc010dd322eb2bc19138cf20160ad5643925810f442fc6c5d48b9b4c59b34efe9060a00160405180910390a250505050505050565b5f5f611bcc613c07565b9050611bd98582856142e3565b611be485858561432e565b506001949350505050565b5f611a7f613c07565b805f611c0382613b1b565b905060018154600160201b900460ff166003811115611c2457611c24615770565b1480611c4c575060028154600160201b900460ff166003811115611c4a57611c4a615770565b145b81548391600160201b90910460ff1690611c7b57604051630e851c7960e31b8152600401611754929190616140565b50505f611c86613984565b90505f611c91613984565b905081811015611cc157611ca581836160f5565b6040516351f5977560e11b815260040161175491815260200190565b5050505050565b5f807f0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e0090505f81546114879190600160a01b900460ff16616230565b611a7984848484614380565b6060611d1a614463565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525092949350505050565b6060835f611d6082613b1b565b905060018154600160201b900460ff166003811115611d8157611d81615770565b82548492600160201b90910460ff169114611db157604051630e851c7960e31b8152600401611754929190616140565b50505f611dbd82613bb3565b9050611de6611dca613c07565b88611dd860045f8a8c616249565b611de191616270565b613c10565b611e2f86868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038b1692915050614475565b93505f84806020019051810190611e46919061609d565b6040516331a9108f60e11b81526004810182905290915030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa158015611eae573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ed291906162a6565b6001600160a01b031614611efa57611efa611eeb613c07565b896001600160e01b0319613c10565b50611f06838383613d12565b5050509392505050565b7f0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e00546001600160a01b031690565b5f611f4a848484614482565b949350505050565b5f611f5b6139f5565b805490915060ff600160401b82041615906001600160401b03165f81158015611f815750825b90505f826001600160401b03166001148015611f9c5750303b155b905081158015611faa575080155b15611fc85760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611ff257845460ff60401b1916600160401b1785555b8315611cc157845460ff60401b19168555604051600181525f51602061686a5f395f51905f529060200160405180910390a15050505050565b5f61153f826144ca565b61135e816145a7565b6120466140c5565b612050828261462a565b5050565b5f611a7f6146e6565b5f612066613df6565b505f51602061688a5f395f51905f5290565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146121015760405163950d88bf60e01b81526001600160a01b039091166004820152602401611754565b50635ee0c7dd60e01b95945050505050565b5f336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016811461216a5760405163950d88bf60e01b81526001600160a01b039091166004820152602401611754565b505f61217588613b1b565b905060018154600160201b900460ff16600381111561219657612196615770565b14806121be575060028154600160201b900460ff1660038111156121bc576121bc615770565b145b81548991600160201b90910460ff16906121ed57604051630e851c7960e31b8152600401611754929190616140565b505f9050836121fc86886160c8565b61220691906160c8565b8254909150612233908a9063ffffffff166122218142614153565b61222a8561417f565b611ab8906160db565b506331759a2f60e11b9998505050505050505050565b6122548383836146fe565b505050565b5f5f195f61226685612de4565b9050611f4a612273613c07565b858784614824565b6001600160a01b03165f9081525f51602061684a5f395f51905f52602052604090205490565b61135e8161488f565b61135e81614897565b5f6122bd82613e3f565b90507f3a221b9176b65b4a4850e63cd182357e93d2ad08e8951daa0904244dc82df460816040516122f091815260200190565b60405180910390a1919050565b61230684613b1b565b505f61231785858561222a8661417f565b905081815f8112156123455760405163239de57160e11b815260048101929092526024820152604401611754565b505061236d612352613c07565b308461235c611f10565b6001600160a01b03169291906149bb565b846001600160a01b03167ffe14813540c7709c2d7e702f39b104eeed265dd484f899e9f2f89c801aa6395c858585856123a4613c07565b6040805163ffffffff96871681529590941660208601529284019190915260608301526001600160a01b0316608082015260a00160405180910390a25050505050565b805f6123f16139f5565b8054909150600160401b900460ff1680612418575080546001600160401b03808416911610155b156124365760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b038316908117600160401b1760ff60401b191682556040519081525f51602061686a5f395f51905f52906020015b60405180910390a1505050565b611cc185858585856149f1565b612254838383613d9b565b6060835f6124ab82613b1b565b905060018154600160201b900460ff1660038111156124cc576124cc615770565b14806124f4575060028154600160201b900460ff1660038111156124f2576124f2615770565b145b81548391600160201b90910460ff169061252357604051630e851c7960e31b8152600401611754929190616140565b50505f61252e613984565b905061253b611dca613c07565b61258486868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038b1692915050614475565b93505f61258f613984565b9050818110156125a357611ca581836160f5565b505050509392505050565b6118f0614b44565b5f611a978383613da8565b61135e81613f38565b604080516080810182525f8082526020820181905291810182905260608101919091526125f682613b1b565b6040805160808101909152815463ffffffff811682529091906020830190600160201b900460ff16600381111561262f5761262f615770565b600381111561264057612640615770565b815290546001600160601b03600160281b820481166020840152600160881b9091041660409091015292915050565b5f5f195f61267c8561298b565b9050611f4a612689613c07565b858388614824565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060915f51602061684a5f395f51905f529161158390616108565b611cc185858080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f890181900481028201810190925287815292508791508690819084018382808284375f92019190915250869250613a1d915050565b611a7984848484614824565b5f82815260208190526040902061225490849083613d12565b805f61277282613b1b565b905060018154600160201b900460ff16600381111561279357612793615770565b82548492600160201b90910460ff1691146127c357604051630e851c7960e31b8152600401611754929190616140565b50505f6127cf82613bb3565b9050611a79838383613d12565b5f5f5160206168aa5f395f51905f527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af0282612818878787614482565b81526020019081526020015f20549150509392505050565b5f5f5160206168aa5f395f51905f525b546001600160a01b0316919050565b5f5f612859613c07565b90506118d281858561432e565b5f19810361287d57612876613984565b90506128a5565b612885613984565b8111156128a55760405163af8075e960e01b815260040160405180910390fd5b5f5f5160206168aa5f395f51905f528054604051636e553f6560e01b8152600481018590523060248201529192506001600160a01b031690636e553f65906044016020604051808303815f875af1158015612902573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612254919061609d565b6118f06125ae565b5f81815260208190526040812061294490613bb3565b90507fdc71a294d999569df48c717917073844771891d2646489d0133f026c945d0481816040516122f091815260200190565b5f611a7f613984565b6122548383836142e3565b5f61153f826001613ac4565b5f5f6129a283612e99565b9050808511156129cb57828582604051633fa733bb60e21b8152600401611754939291906162c1565b5f6129d5866118dc565b90506129eb6129e2613c07565b868689856149f1565b95945050505050565b611a7984848080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f880181900481028201810190925286815292508691508590819084018382808284375f92019190915250614b6992505050565b5f5f612a708361324d565b905080851115612a9957828582604051632e52afbb60e21b8152600401611754939291906162c1565b5f612aa3866116ed565b90506129eb612ab0613c07565b8686848a6149f1565b5f612ac384613b1b565b8054604080516001600160601b03600160281b84048116825260208201889052600160881b90930490921690820152606081018490529091506001600160a01b038516907f7e293d291e9dd159f2fbde9523c4191674384553a72c0833ba9cf7dcb5381fb79060800160405180910390a2612b3d83614b7b565b81546001600160601b0391909116600160281b0270ffffffffffffffffffffffff000000000019909116178155612b7382614b7b565b81546001600160601b0391909116600160881b026bffffffffffffffffffffffff60881b19909116179055505050565b6001600160a01b0384165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af016020526040812080545f5160206168aa5f395f51905f529290600160201b900460ff166003811115612c0657612c06615770565b14612c245760405163cd43efa160e01b815260040160405180910390fd5b8463ffffffff165f03612c4a5760405163294da6c760e21b815260040160405180910390fd5b6040805160808101825263ffffffff8716815260016020820152908101612c7086614b7b565b6001600160601b03168152602001612c8785614b7b565b6001600160601b031690526001600160a01b0387165f90815260018401602090815260409091208251815463ffffffff90911663ffffffff19821681178355928401519192839164ffffffffff191617600160201b836003811115612cee57612cee615770565b0217905550604082810151825460609094015165010000000000600160e81b0319909416600160281b6001600160601b03928316026bffffffffffffffffffffffff60881b191617600160881b9190941602929092179055516001600160a01b038716907f422c963a67d52178b43a807b8c9df3a99468f416b736f9f040b6392cf790752e90612d7f9084906162e2565b60405180910390a2505050505050565b6040516001600160601b0319606084901b1660208201526001600160e01b0319821660348201525f90611a9790603801604051602081830303815290604052805160209091012090565b5f611a978383614bae565b5f61153f825f613da8565b5f611a7f614c91565b5f611a978383613ac4565b6120508282614caa565b5f805f5160206168aa5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa158015612e63573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e87919061609d565b612e8f613984565b61148791906160c8565b5f61153f612ea683614cde565b612eae612e0d565b614ceb565b5f612ec0858585856141af565b90507f7281c4a6d49c3bb62269fed398306788c6b3b4fce8789168aa0ab94ec0dd9ec981604051612ef391815260200190565b60405180910390a1949350505050565b5f198103612f88575f5f5160206168aa5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa158015612f60573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f84919061609d565b9150505b80612f9282613e3f565b1461135e5760405163af8075e960e01b815260040160405180910390fd5b6130166040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b845f61302182613b1b565b905060018154600160201b900460ff16600381111561304257613042615770565b82548492600160201b90910460ff16911461307257604051630e851c7960e31b8152600401611754929190616140565b50505f61307e82613bb3565b905061309961308b613c07565b896346d58ca960e11b613c10565b6001600160a01b03851630146130b4576130b4611eeb613c07565b6040516346d58ca960e11b81526001600160a01b03891690638dab1952906130e4908a908a908a90600401616332565b610180604051808303815f875af1158015613101573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131259190616371565b9350613132838383613d12565b505050949350505050565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146131945760405163950d88bf60e01b81526001600160a01b039091166004820152602401611754565b505f61319f86613b1b565b905060018154600160201b900460ff1660038111156131c0576131c0615770565b14806131e8575060028154600160201b900460ff1660038111156131e6576131e6615770565b145b81548791600160201b90910460ff169061321757604051630e851c7960e31b8152600401611754929190616140565b5050805461323a90879063ffffffff166132318142614153565b61222a8761417f565b50636b140e9f60e11b9695505050505050565b5f61153f61325a83614cfa565b612eae6110f4612e0d565b6001600160a01b039182165f9081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b6120508282614d04565b612254838383613c10565b6060835f6132d082613b1b565b905060018154600160201b900460ff1660038111156132f1576132f1615770565b82548492600160201b90910460ff16911461332157604051630e851c7960e31b8152600401611754929190616140565b50505f61332d82613bb3565b90505f80866001600160401b03811115613349576133496154f2565b60405190808252806020026020018201604052801561337c57816020015b60608152602001906001900390816133675790505b5095505f5b8781101561357b575f89898381811061339c5761339c616419565b90506020028101906133ae919061642d565b6133bc916004915f91616249565b6133c591616270565b90508115806133e157506001600160e01b031981811690851614155b156133fc576133f86133f1613c07565b8c83613c10565b8093505b6134678a8a8481811061341157613411616419565b9050602002810190613423919061642d565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038f1692915050614475565b88838151811061347957613479616419565b602002602001018190525082613572575f88838151811061349c5761349c616419565b60200260200101518060200190518101906134b7919061609d565b6040516331a9108f60e11b81526004810182905290915030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa15801561351f573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061354391906162a6565b6001600160a01b0316146135705761356b61355c613c07565b8d6001600160e01b0319613c10565b600193505b505b50600101613381565b505050611f06838383613d12565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146135e05760405163950d88bf60e01b81526001600160a01b039091166004820152602401611754565b5063e8e617b760e01b949350505050565b6060835f6135fe82613b1b565b905060018154600160201b900460ff16600381111561361f5761361f615770565b1480613647575060028154600160201b900460ff16600381111561364557613645615770565b145b81548391600160201b90910460ff169061367657604051630e851c7960e31b8152600401611754929190616140565b50505f613681613984565b90505f856001600160401b0381111561369c5761369c6154f2565b6040519080825280602002602001820160405280156136cf57816020015b60608152602001906001900390816136ba5790505b5094505f5b868110156137e0575f8888838181106136ef576136ef616419565b9050602002810190613701919061642d565b61370f916004915f91616249565b61371891616270565b905081158061373457506001600160e01b031981811690841614155b1561374f5761374b613744613c07565b8b83613c10565b8092505b6137ba89898481811061376457613764616419565b9050602002810190613776919061642d565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038e1692915050614475565b8783815181106137cc576137cc616419565b6020908102919091010152506001016136d4565b50505f61258f613984565b61225483838361432e565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016811461135e5760405163950d88bf60e01b81526001600160a01b039091166004820152602401611754565b6118f0614d38565b5f81600381111561386757613867615770565b0361388557604051635e64536560e11b815260040160405180910390fd5b5f61388f83613b1b565b9050826001600160a01b03167f0638a5c17c348b99c05e7985ee5ee8bc0c41bc7a12265aec4a488d62350c1d24825f0160049054906101000a900460ff16846040516138dc92919061646f565b60405180910390a280548290829064ff000000001916600160201b83600381111561390957613909615770565b0217905550505050565b611a7984848080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f880181900481028201810190925286815292508691508590819084018382808284375f92019190915250614dbd92505050565b5f61398d611f10565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa1580156139d1573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a7f919061609d565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0061153f565b613a25614b44565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a82573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613aa691906162a6565b9050613ab18161488f565b613abb8484614b69565b611a7982614897565b5f611a97613ad0611361565b613adb9060016160c8565b613ae65f600a61656d565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254613b1291906160c8565b85919085614e0d565b6001600160a01b0381165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af0160205260408120805490915f5160206168aa5f395f51905f5291600160201b900460ff166003811115613b7f57613b7f615770565b14158390613bac57604051632dad902160e01b81526001600160a01b039091166004820152602401611754565b5050919050565b5f613bbc613984565b8254909150600160881b90046001600160601b0316811015613c02578154613bf990611b17908390600160881b90046001600160601b03166160f5565b5061153f613984565b919050565b5f611a7f614e4f565b5f613c1b8383612d8f565b90505f306001600160a01b0316633a7b7a396040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c5a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c7e91906162a6565b6001600160a01b031663b70096138630856040518463ffffffff1660e01b8152600401613cad9392919061657b565b6040805180830381865afa158015613cc7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ceb91906165a8565b509050848483836116e35760405163c294136d60e01b81526004016117549392919061657b565b5f613d1b613984565b905081811015611a795782545f90613d5190869063ffffffff16613d3f8142614153565b611ab8613d4c87896160f5565b61417f565b84549091508190600160281b90046001600160601b0316808213156118165760405163395192c560e21b815260048101929092526001600160601b03166024820152604401611754565b6122548383836001614380565b5f611a97613db782600a61656d565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254613de391906160c8565b613deb611361565b613b129060016160c8565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146118f05760405163703e46dd60e11b815260040160405180910390fd5b5f805f5160206168aa5f395f51905f52805460405163ce96cb7760e01b8152306004820152919250613ebf9185916001600160a01b03169063ce96cb7790602401602060405180830381865afa158015613e9b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612eae919061609d565b8154604051632d182be560e21b815260048101839052306024820181905260448201529193506001600160a01b03169063b460af94906064016020604051808303815f875af1158015613f14573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bac919061609d565b6001600160a01b038116613f5f576040516347ddf9c760e01b815260040160405180910390fd5b5f5160206168aa5f395f51905f5280546001600160a01b038381166001600160a01b0319831617835516801561400a57613f97611f10565b60405163095ea7b360e01b81526001600160a01b0383811660048301525f6024830152919091169063095ea7b3906044016020604051808303815f875af1158015613fe4573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061400891906165d5565b505b614012611f10565b60405163095ea7b360e01b81526001600160a01b0385811660048301525f196024830152919091169063095ea7b3906044016020604051808303815f875af1158015614060573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061408491906165d5565b50604080516001600160a01b038084168252851660208201527f9baaddad37a65ca0df0360563fca87a13c1ce354be76d7ec35eac48bd766332a9101612479565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061413557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316614129614e95565b6001600160a01b031614155b156118f05760405163703e46dd60e11b815260040160405180910390fd5b5f63ffffffff838116146141765761417163ffffffff841683616604565b611a97565b611a97826144ca565b5f6001600160ff1b038211156141ab5760405163123baf0360e11b815260048101839052602401611754565b5090565b5f5f5160206168aa5f395f51905f52816141ca878787614482565b905083826002015f8381526020019081526020015f205f8282546141ee9190616617565b918290555083549094508591508390601490614215908490600160a01b9004600b0b61663e565b82546001600160601b039182166101009390930a92830291909202199091161790555081546040805163ffffffff808a1682528816602082015290810186905260608101859052600160a01b909104600b0b60808201526001600160a01b038816907fbc0ff1d27e119160a9a107d0725b9ed31b90773cf47e89332a35a8c1a319eaee9060a00160405180910390a25050949350505050565b6142bb8383836001614ea9565b61225457604051635274afe760e01b81526001600160a01b0384166004820152602401611754565b5f6142ee8484613265565b90505f19811015611a79578181101561432057828183604051637dc7a0d960e11b8152600401611754939291906162c1565b611a7984848484035f614380565b6001600160a01b03831661435757604051634b637e8f60e11b81525f6004820152602401611754565b6001600160a01b0382166122495760405163ec442f0560e01b81525f6004820152602401611754565b5f51602061684a5f395f51905f526001600160a01b0385166143b75760405163e602df0560e01b81525f6004820152602401611754565b6001600160a01b0384166143e057604051634a1406b160e11b81525f6004820152602401611754565b6001600160a01b038086165f90815260018301602090815260408083209388168352929052208390558115611cc157836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258560405161445491815260200190565b60405180910390a35050505050565b365f61446d614f0b565b915091509091565b6060611a9783835f614f48565b6bffffffffffffffff000000006001600160e01b031960e09390931b9290921660c09190911b63ffffffff60c01b161760a01c1660609190911b6001600160601b0319161790565b6107e95f80620151806144e16367748580866160f5565b6144eb9190616604565b90505b816144fb5761016d6144ff565b61016e5b61ffff16811061458257816145165761016d61451a565b61016e5b6145289061ffff16826160f5565b905061453383616675565b9250614540600484616699565b63ffffffff1615801561457b5750614559606484616699565b63ffffffff1615158061457b575061457361019084616699565b63ffffffff16155b91506144ee565b61458c8183614bae565b6145978460646166c0565b63ffffffff16611f4a91906160c8565b6145af614b44565b7f0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e005f806145db84615014565b91509150816145eb5760126145ed565b805b83546001600160a81b031916600160a01b60ff92909216919091026001600160a01b031916176001600160a01b0394909416939093179091555050565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015614684575060408051601f3d908101601f191682019092526146819181019061609d565b60015b6146ac57604051634c9c8ce360e01b81526001600160a01b0383166004820152602401611754565b5f51602061688a5f395f51905f5281146146dc57604051632a87526960e21b815260048101829052602401611754565b612254838361509f565b5f6146ef6139f5565b546001600160401b0316919050565b5f51602061684a5f395f51905f526001600160a01b0384166147385781816002015f82825461472d91906160c8565b909155506147959050565b6001600160a01b0384165f90815260208290526040902054828110156147775784818460405163391434e360e21b8152600401611754939291906162c1565b6001600160a01b0385165f9081526020839052604090209083900390555b6001600160a01b0383166147b35760028101805483900390556147d1565b6001600160a01b0383165f9081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161481691815260200190565b60405180910390a350505050565b61483761482f611f10565b8530856149bb565b6148418382614caa565b826001600160a01b0316846001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d78484604051614816929190918252602082015260400190565b612035614b44565b61489f614b44565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156148fb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061491f91906162a6565b60405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f196024830152919091169063095ea7b3906044016020604051808303815f875af115801561498d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906149b191906165d5565b5061135e81613f38565b6149c98484848460016150f4565b611a7957604051635274afe760e01b81526001600160a01b0385166004820152602401611754565b5f6149fa613984565b905082811015614b2f575f5f5160206168aa5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa158015614a59573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614a7d919061609d565b614a8783866160f5565b1115614aa65760405163af8075e960e01b815260040160405180910390fd5b80546001600160a01b031663b460af94614ac084876160f5565b6040516001600160e01b031960e084901b1681526004810191909152306024820181905260448201526064016020604051808303815f875af1158015614b08573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614b2c919061609d565b50505b614b3c8686868686615161565b505050505050565b614b4c614c91565b6118f057604051631afcd79f60e31b815260040160405180910390fd5b614b71614b44565b6120508282614dbd565b5f6001600160601b038211156141ab576040516306dfcc6560e41b81526060600482015260248101839052604401611754565b5f601f831015614bc05750600161153f565b8115614be957603c831015614bd75750600261153f565b82614be1816166df565b935050614bfa565b603b831015614bfa5750600261153f565b605a8310614c845760788310614c7d5760978310614c765760b58310614c6f5760d48310614c685760f38310614c61576101118310614c5a576101308310614c535761014e8310614c4c57600c614c87565b600b614c87565b600a614c87565b6009614c87565b6008614c87565b6007614c87565b6006614c87565b6005614c87565b6004614c87565b60035b60ff169392505050565b5f614c9a6139f5565b54600160401b900460ff16919050565b6001600160a01b038216614cd35760405163ec442f0560e01b81525f6004820152602401611754565b6120505f83836146fe565b5f61153f6107c08361324d565b5f828218828410028218611a97565b5f61153f8261227b565b6001600160a01b038216614d2d57604051634b637e8f60e11b81525f6004820152602401611754565b612050825f836146fe565b5f614d416139f5565b8054909150600160401b900460ff1615614d6e5760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161461135e57805467ffffffffffffffff19166001600160401b0390811782556040519081525f51602061686a5f395f51905f529060200160405180910390a150565b614dc5614b44565b5f51602061684a5f395f51905f527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace03614dfe8482616738565b5060048101611a798382616738565b5f614e3a614e1a83615208565b8015614e3557505f8480614e3057614e306165f0565b868809115b151590565b614e45868686615234565b6129eb91906160c8565b5f366014808210801590614e675750614e6733612078565b15614e8d57614e7a36828403815f616249565b614e83916167f2565b60601c9250505090565b339250505090565b5f5f51602061688a5f395f51905f52612840565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f51148316614eff578383151615614ef3573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b365f816014808210801590614f245750614f2433612078565b15614f4157614f378183035f3681616249565b9350935050509091565b5f36614f37565b606081471015614f745760405163cf47918160e01b815247600482015260248101839052604401611754565b5f614f808584866152e4565b9050808015614fa157505f3d1180614fa157505f856001600160a01b03163b115b15614fb657614fae6152f9565b915050611a97565b8015614fe057604051639996b31560e01b81526001600160a01b0386166004820152602401611754565b3d15614ff357614fee615312565b61500c565b60405163d6bda27560e01b815260040160405180910390fd5b509392505050565b5f5f5f61502060405190565b6040805160048152602481019091526020810180516001600160e01b031663313ce56760e01b1790529091505f90819061505b90879061531d565b509150915061506983604052565b818015615077575060203d10155b8015615084575060ff8111155b61508f575f5f615093565b6001815b94509450505050915091565b6150a88261533e565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156150ec5761225482826153a1565b612050615423565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f51148316615150578383151615615144573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b826001600160a01b0316856001600160a01b031614615185576151858386836142e3565b61518f8382614d04565b6151a161519a611f10565b85846142ae565b826001600160a01b0316846001600160a01b0316866001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db85856040516151f9929190918252602082015260400190565b60405180910390a45050505050565b5f600282600381111561521d5761521d615770565b6152279190616828565b60ff166001149050919050565b5f5f5f6152418686615442565b91509150815f036152655783818161525b5761525b6165f0565b0492505050611a97565b81841161527c5761527c600385150260111861545e565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b5f5f5f83516020850186885af1949350505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f5f5f60405f855160208701885afa92505f51915060205190509250925092565b806001600160a01b03163b5f0361537357604051634c9c8ce360e01b81526001600160a01b0382166004820152602401611754565b5f51602061688a5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f6153ae848461546f565b90508080156153cf57505f3d11806153cf57505f846001600160a01b03163b115b156153e4576153dc6152f9565b91505061153f565b801561540e57604051639996b31560e01b81526001600160a01b0385166004820152602401611754565b3d15614ff35761541c615312565b5092915050565b34156118f05760405163b398979f60e01b815260040160405180910390fd5b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f5f5f835160208501865af49392505050565b80356001600160e01b031981168114613c02575f5ffd5b5f602082840312156154a9575f5ffd5b611a9782615482565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f611a9760208301846154b2565b634e487b7160e01b5f52604160045260245ffd5b60405161018081016001600160401b0381118282101715615529576155296154f2565b60405290565b5f5f6001600160401b03841115615548576155486154f2565b50604051601f19601f85018116603f011681018181106001600160401b0382111715615576576155766154f2565b60405283815290508082840185101561558d575f5ffd5b838360208301375f60208583010152509392505050565b5f82601f8301126155b3575f5ffd5b611a978383356020850161552f565b6001600160a01b038116811461135e575f5ffd5b5f5f5f606084860312156155e8575f5ffd5b83356001600160401b038111156155fd575f5ffd5b615609868287016155a4565b93505060208401356001600160401b03811115615624575f5ffd5b615630868287016155a4565b9250506040840135615641816155c2565b809150509250925092565b5f6020828403121561565c575f5ffd5b5035919050565b5f5f83601f840112615673575f5ffd5b5081356001600160401b03811115615689575f5ffd5b6020830191508360208260051b85010111156156a3575f5ffd5b9250929050565b5f5f5f5f606085870312156156bd575f5ffd5b84356156c8816155c2565b935060208501356001600160401b038111156156e2575f5ffd5b6156ee87828801615663565b9094509250506040850135615702816155c2565b939692955090935050565b63ffffffff8116811461135e575f5ffd5b5f5f6040838503121561572f575f5ffd5b823561573a816155c2565b9150602083013561574a8161570d565b809150509250929050565b5f60208284031215615765575f5ffd5b8135611a97816155c2565b634e487b7160e01b5f52602160045260245ffd5b600481106157a057634e487b7160e01b5f52602160045260245ffd5b9052565b6020810161153f8284615784565b5f5f604083850312156157c3575f5ffd5b82356157ce816155c2565b946020939093013593505050565b5f5f83601f8401126157ec575f5ffd5b5081356001600160401b03811115615802575f5ffd5b6020830191508360208285010111156156a3575f5ffd5b5f5f5f5f5f6080868803121561582d575f5ffd5b8535615838816155c2565b94506020860135615848816155c2565b93506040860135925060608601356001600160401b03811115615869575f5ffd5b615875888289016157dc565b969995985093965092949392505050565b801515811461135e575f5ffd5b5f5f604083850312156158a4575f5ffd5b82356158af816155c2565b9150602083013561574a81615886565b5f5f604083850312156158d0575f5ffd5b82356157ce8161570d565b5f5f5f5f5f60a086880312156158ef575f5ffd5b85356158fa816155c2565b9450602086013561590a8161570d565b9350604086013561591a8161570d565b9250606086013591506080860135615931816155c2565b809150509295509295909350565b5f5f5f60608486031215615951575f5ffd5b833561595c816155c2565b9250602084013561596c816155c2565b929592945050506040919091013590565b5f5f5f5f60808587031215615990575f5ffd5b843561599b816155c2565b935060208501356159ab816155c2565b925060408501359150606085013561570281615886565b5f5f5f604084860312156159d4575f5ffd5b83356159df816155c2565b925060208401356001600160401b038111156159f9575f5ffd5b615a05868287016157dc565b9497909650939450505050565b5f5f5f60608486031215615a24575f5ffd5b8335615a2f816155c2565b92506020840135615a3f8161570d565b915060408401356156418161570d565b5f5f60408385031215615a60575f5ffd5b8235615a6b816155c2565b915060208301356001600160401b03811115615a85575f5ffd5b8301601f81018513615a95575f5ffd5b615aa48582356020840161552f565b9150509250929050565b5f5f5f5f60808587031215615ac1575f5ffd5b8435615acc816155c2565b93506020850135615adc816155c2565b93969395505050506040820135916060013590565b5f5f5f5f5f5f60c08789031215615b06575f5ffd5b8635615b11816155c2565b95506020870135615b21816155c2565b95989597505050506040840135936060810135936080820135935060a0909101359150565b5f5f60408385031215615b57575f5ffd5b82359150602083013561574a816155c2565b5f5f5f5f60808587031215615b7c575f5ffd5b8435615b87816155c2565b93506020850135615b978161570d565b92506040850135615ba78161570d565b9396929550929360600135925050565b5f60208284031215615bc7575f5ffd5b81356001600160401b0381168114611a97575f5ffd5b5f5f5f5f5f60a08688031215615bf1575f5ffd5b8535615bfc816155c2565b94506020860135615c0c816155c2565b93506040860135615c1c816155c2565b94979396509394606081013594506080013592915050565b6004811061135e575f5ffd5b5f5f60408385031215615c51575f5ffd5b82359150602083013561574a81615c34565b815163ffffffff1681526020808301516080830191615c8490840182615784565b506001600160601b0360408401511660408301526001600160601b03606084015116606083015292915050565b5f5f5f5f5f60608688031215615cc5575f5ffd5b85356001600160401b03811115615cda575f5ffd5b615ce6888289016157dc565b90965094505060208601356001600160401b03811115615d04575f5ffd5b615d10888289016157dc565b9094509250506040860135615931816155c2565b5f5f5f60608486031215615d36575f5ffd5b8335615d41816155c2565b95602085013595506040909401359392505050565b5f5f5f60608486031215615d68575f5ffd5b833592506020840135615d7a816155c2565b91506040840135615641816155c2565b5f5f5f5f60408587031215615d9d575f5ffd5b84356001600160401b03811115615db2575f5ffd5b615dbe878288016157dc565b90955093505060208501356001600160401b03811115615ddc575f5ffd5b615de8878288016157dc565b95989497509550505050565b5f5f5f5f60808587031215615e07575f5ffd5b8435615e12816155c2565b93506020850135615adc8161570d565b5f5f60408385031215615e33575f5ffd5b8235615e3e816155c2565b9150615e4c60208401615482565b90509250929050565b5f5f60408385031215615e66575f5ffd5b82359150602083013561574a81615886565b5f5f5f5f60608587031215615e8b575f5ffd5b8435615e96816155c2565b935060208501356001600160401b03811115615eb0575f5ffd5b6156ee878288016157dc565b5f61018082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e083015160e0830152610100830151610100830152610120830151610120830152610140830151615f4061014084018264ffffffffff169052565b5061016083015161541c61016084018264ffffffffff169052565b5f5f60408385031215615f6c575f5ffd5b8235615f77816155c2565b9150602083013561574a816155c2565b5f5f5f60608486031215615f99575f5ffd5b8335615fa4816155c2565b92506020840135615fb4816155c2565b9150615fc260408501615482565b90509250925092565b5f5f5f60408486031215615fdd575f5ffd5b8335615fe8816155c2565b925060208401356001600160401b03811115616002575f5ffd5b615a0586828701615663565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b8281101561606557603f198786030184526160508583516154b2565b94506020938401939190910190600101616034565b50929695505050505050565b5f5f60408385031215616082575f5ffd5b823561608d816155c2565b9150602083013561574a81615c34565b5f602082840312156160ad575f5ffd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561153f5761153f6160b4565b5f600160ff1b82016160ef576160ef6160b4565b505f0390565b8181038181111561153f5761153f6160b4565b600181811c9082168061611c57607f821691505b60208210810361613a57634e487b7160e01b5f52602260045260245ffd5b50919050565b6001600160a01b038316815260408101611a976020830184615784565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b604080825281018390525f6060600585901b830181019083018683601e1936839003015b8882101561621657868503605f1901845282358181126161c7575f5ffd5b8a016020810190356001600160401b038111156161e2575f5ffd5b8036038213156161f0575f5ffd5b6161fb87828461615d565b965050506020830192506020840193506001820191506161a9565b5050506001600160a01b0385166020850152509050611f4a565b60ff818116838216019081111561153f5761153f6160b4565b5f5f85851115616257575f5ffd5b83861115616263575f5ffd5b5050820193919092039150565b80356001600160e01b0319811690600484101561541c576001600160e01b031960049490940360031b84901b1690921692915050565b5f602082840312156162b6575f5ffd5b8151611a97816155c2565b6001600160a01b039390931683526020830191909152604082015260600190565b5f608082019050825463ffffffff811683526163076020840160ff8360201c16615784565b6001600160601b038160281c1660408401526001600160601b038160881c1660608401525092915050565b604081525f61634560408301858761615d565b905060018060a01b0383166020830152949350505050565b805164ffffffffff81168114613c02575f5ffd5b5f610180828403128015616383575f5ffd5b5061638c615506565b825181526020808401519082015260408084015190820152606080840151908201526080808401519082015260a0808401519082015260c0808401519082015260e08084015190820152610100808401519082015261012080840151908201526163f9610140840161635d565b61014082015261640c610160840161635d565b6101608201529392505050565b634e487b7160e01b5f52603260045260245ffd5b5f5f8335601e19843603018112616442575f5ffd5b8301803591506001600160401b0382111561645b575f5ffd5b6020019150368190038213156156a3575f5ffd5b6040810161647d8285615784565b611a976020830184615784565b6001815b60018411156164c5578085048111156164a9576164a96160b4565b60018416156164b757908102905b60019390931c92800261648e565b935093915050565b5f826164db5750600161153f565b816164e757505f61153f565b81600181146164fd576002811461650757616523565b600191505061153f565b60ff841115616518576165186160b4565b50506001821b61153f565b5060208310610133831016604e8410600b8410161715616546575081810a61153f565b6165525f19848461648a565b805f1904821115616565576165656160b4565b029392505050565b5f611a9760ff8416836164cd565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b5f5f604083850312156165b9575f5ffd5b82516165c481615886565b602084015190925061574a8161570d565b5f602082840312156165e5575f5ffd5b8151611a9781615886565b634e487b7160e01b5f52601260045260245ffd5b5f82616612576166126165f0565b500490565b8082018281125f831280158216821582161715616636576166366160b4565b505092915050565b600b81810b9083900b016b7fffffffffffffffffffffff81136b7fffffffffffffffffffffff198212171561153f5761153f6160b4565b5f63ffffffff821663ffffffff8103616690576166906160b4565b60010192915050565b5f63ffffffff8316806166ae576166ae6165f0565b8063ffffffff84160691505092915050565b63ffffffff818116838216029081169081811461541c5761541c6160b4565b5f816166ed576166ed6160b4565b505f190190565b601f82111561225457805f5260205f20601f840160051c810160208510156167195750805b601f840160051c820191505b81811015611cc1575f8155600101616725565b81516001600160401b03811115616751576167516154f2565b6167658161675f8454616108565b846166f4565b6020601f821160018114616797575f83156167805750848201515b5f19600385901b1c1916600184901b178455611cc1565b5f84815260208120601f198516915b828110156167c657878501518255602094850194600190920191016167a6565b50848210156167e357868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b80356001600160601b0319811690601484101561541c576001600160601b031960149490940360031b84901b1690921692915050565b5f60ff83168061683a5761683a6165f0565b8060ff8416069150509291505056fe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00c7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af00a2646970667358221220ae96fbaf08e4d5195a49478115cf45a9c62556279615ad89ce34b73c64389bc364736f6c634300081e0033","opcodes":"PUSH1 0xE0 PUSH1 0x40 DUP2 SWAP1 MSTORE ADDRESS PUSH1 0xA0 MSTORE PUSH2 0x6AD5 CODESIZE DUP2 SWAP1 SUB SWAP1 DUP2 SWAP1 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x26 SWAP2 PUSH2 0x112 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x80 MSTORE DUP2 AND PUSH1 0xC0 MSTORE DUP2 DUP2 PUSH2 0x43 PUSH2 0x4C JUMP JUMPDEST POP POP POP POP PUSH2 0x14A JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x9C JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0xFB JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xFB JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x123 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x12E DUP2 PUSH2 0xFE JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x13F DUP2 PUSH2 0xFE JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH2 0x68FF PUSH2 0x1D6 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0xAD9 ADD MSTORE DUP2 DUP2 PUSH2 0x18FE ADD MSTORE DUP2 DUP2 PUSH2 0x1E69 ADD MSTORE DUP2 DUP2 PUSH2 0x20B6 ADD MSTORE DUP2 DUP2 PUSH2 0x211F ADD MSTORE DUP2 DUP2 PUSH2 0x3149 ADD MSTORE DUP2 DUP2 PUSH2 0x34DA ADD MSTORE DUP2 DUP2 PUSH2 0x3595 ADD MSTORE DUP2 DUP2 PUSH2 0x3801 ADD MSTORE DUP2 DUP2 PUSH2 0x3A28 ADD MSTORE DUP2 DUP2 PUSH2 0x48A1 ADD MSTORE PUSH2 0x4936 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x3E01 ADD MSTORE DUP2 DUP2 PUSH2 0x40D0 ADD MSTORE PUSH2 0x40F9 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0xD42 ADD MSTORE PUSH2 0x207A ADD MSTORE PUSH2 0x68FF PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x6ED JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x83B95579 GT PUSH2 0x38A JUMPI DUP1 PUSH4 0xC0C51217 GT PUSH2 0x1DE JUMPI DUP1 PUSH4 0xE047838D GT PUSH2 0x108 JUMPI DUP1 PUSH4 0xEFB43B07 GT PUSH2 0xA8 JUMPI DUP1 PUSH4 0xF7A39333 GT PUSH2 0x78 JUMPI DUP1 PUSH4 0xF7A39333 EQ PUSH2 0x12FE JUMPI DUP1 PUSH4 0xFA171C92 EQ PUSH2 0x131D JUMPI DUP1 PUSH4 0xFA3045D0 EQ PUSH2 0x1331 JUMPI DUP1 PUSH4 0xFBF9C9CE EQ PUSH2 0x1344 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xEFB43B07 EQ PUSH2 0x12DB JUMPI DUP1 PUSH4 0xF14B624B EQ PUSH2 0x12EE JUMPI DUP1 PUSH4 0xF15476A2 EQ PUSH2 0xFAC JUMPI DUP1 PUSH4 0xF5F1BEC0 EQ PUSH2 0x12F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xE8E617B7 GT PUSH2 0xE3 JUMPI DUP1 PUSH4 0xE8E617B7 EQ PUSH2 0x128B JUMPI DUP1 PUSH4 0xEE07ABBB EQ PUSH2 0x12AA JUMPI DUP1 PUSH4 0xEF4F78D1 EQ PUSH2 0x12C9 JUMPI DUP1 PUSH4 0xEF8B30F7 EQ PUSH2 0x10DA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xE047838D EQ PUSH2 0x122D JUMPI DUP1 PUSH4 0xE483B6E1 EQ PUSH2 0x1240 JUMPI DUP1 PUSH4 0xE77659FD EQ PUSH2 0x125F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xCC671A18 GT PUSH2 0x17E JUMPI DUP1 PUSH4 0xD52F99CE GT PUSH2 0x14E JUMPI DUP1 PUSH4 0xD52F99CE EQ PUSH2 0x11A4 JUMPI DUP1 PUSH4 0xD6281D3E EQ PUSH2 0x11D0 JUMPI DUP1 PUSH4 0xD905777E EQ PUSH2 0x11EF JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x120E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xCC671A18 EQ PUSH2 0x113F JUMPI DUP1 PUSH4 0xCE96CB77 EQ PUSH2 0x1153 JUMPI DUP1 PUSH4 0xD2E26FE4 EQ PUSH2 0x1172 JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0x1185 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC6E6F592 GT PUSH2 0x1B9 JUMPI DUP1 PUSH4 0xC6E6F592 EQ PUSH2 0x10DA JUMPI DUP1 PUSH4 0xC9EB0571 EQ PUSH2 0x10F9 JUMPI DUP1 PUSH4 0xCA10ECA0 EQ PUSH2 0x110D JUMPI DUP1 PUSH4 0xCC461D62 EQ PUSH2 0x112C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC0C51217 EQ PUSH2 0x109C JUMPI DUP1 PUSH4 0xC3BA11F5 EQ PUSH2 0x10BB JUMPI DUP1 PUSH4 0xC63D75B6 EQ PUSH2 0xB74 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA7F8A5E2 GT PUSH2 0x2BF JUMPI DUP1 PUSH4 0xAEABD329 GT PUSH2 0x25F JUMPI DUP1 PUSH4 0xB7E44F4E GT PUSH2 0x22F JUMPI DUP1 PUSH4 0xB7E44F4E EQ PUSH2 0x102C JUMPI DUP1 PUSH4 0xBA087652 EQ PUSH2 0x103F JUMPI DUP1 PUSH4 0xBDB5371D EQ PUSH2 0x105E JUMPI DUP1 PUSH4 0xBFDB20DA EQ PUSH2 0x107D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAEABD329 EQ PUSH2 0xFC7 JUMPI DUP1 PUSH4 0xB2331D7D EQ PUSH2 0xFDB JUMPI DUP1 PUSH4 0xB3D7F6B9 EQ PUSH2 0xFEE JUMPI DUP1 PUSH4 0xB460AF94 EQ PUSH2 0x100D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAC860F74 GT PUSH2 0x29A JUMPI DUP1 PUSH4 0xAC860F74 EQ PUSH2 0xF5D JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0xF7C JUMPI DUP1 PUSH4 0xADFDFE2E EQ PUSH2 0xFAC JUMPI DUP1 PUSH4 0xAE6AAA62 EQ PUSH2 0xFB4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0xF0F JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0xF23 JUMPI DUP1 PUSH4 0xA9ED1487 EQ PUSH2 0xF42 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x94BF804D GT PUSH2 0x32A JUMPI DUP1 PUSH4 0x9C0B90C7 GT PUSH2 0x305 JUMPI DUP1 PUSH4 0x9C0B90C7 EQ PUSH2 0xEB7 JUMPI DUP1 PUSH4 0x9C5BAEAA EQ PUSH2 0xECA JUMPI DUP1 PUSH4 0x9DB0391F EQ PUSH2 0xEDD JUMPI DUP1 PUSH4 0xA3AC9390 EQ PUSH2 0xEF0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x94BF804D EQ PUSH2 0xE71 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0xE90 JUMPI DUP1 PUSH4 0x97F8423E EQ PUSH2 0xEA4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8963227F GT PUSH2 0x365 JUMPI DUP1 PUSH4 0x8963227F EQ PUSH2 0xE0B JUMPI DUP1 PUSH4 0x8B4E914A EQ PUSH2 0xE13 JUMPI DUP1 PUSH4 0x8D94D575 EQ PUSH2 0xE32 JUMPI DUP1 PUSH4 0x8F792465 EQ PUSH2 0xE45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x83B95579 EQ PUSH2 0xDC6 JUMPI DUP1 PUSH4 0x861E3D3D EQ PUSH2 0xDD9 JUMPI DUP1 PUSH4 0x86B44083 EQ PUSH2 0xDEC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x38D52E0F GT PUSH2 0x541 JUMPI DUP1 PUSH4 0x5EE0C7DD GT PUSH2 0x476 JUMPI DUP1 PUSH4 0x759076E5 GT PUSH2 0x416 JUMPI DUP1 PUSH4 0x811EECF5 GT PUSH2 0x3E6 JUMPI DUP1 PUSH4 0x811EECF5 EQ PUSH2 0xD79 JUMPI DUP1 PUSH4 0x818F5673 EQ PUSH2 0xD8C JUMPI DUP1 PUSH4 0x82DBBD71 EQ PUSH2 0xD94 JUMPI DUP1 PUSH4 0x833D816D EQ PUSH2 0xDB3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x759076E5 EQ PUSH2 0xCF7 JUMPI DUP1 PUSH4 0x75B58C95 EQ PUSH2 0xD21 JUMPI DUP1 PUSH4 0x7DA0A877 EQ PUSH2 0xD34 JUMPI DUP1 PUSH4 0x80DA0A1C EQ PUSH2 0xD66 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x67354A84 GT PUSH2 0x451 JUMPI DUP1 PUSH4 0x67354A84 EQ PUSH2 0xC93 JUMPI DUP1 PUSH4 0x6855A178 EQ PUSH2 0xCA6 JUMPI DUP1 PUSH4 0x6E553F65 EQ PUSH2 0xCB9 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0xCD8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x5EE0C7DD EQ PUSH2 0xC4D JUMPI DUP1 PUSH4 0x62EB345E EQ PUSH2 0xC6C JUMPI DUP1 PUSH4 0x657AB2B3 EQ PUSH2 0xC8B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4CDAD506 GT PUSH2 0x4E1 JUMPI DUP1 PUSH4 0x4FD5303D GT PUSH2 0x4BC JUMPI DUP1 PUSH4 0x4FD5303D EQ PUSH2 0xBD9 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0xC05 JUMPI DUP1 PUSH4 0x53C42F88 EQ PUSH2 0xC19 JUMPI DUP1 PUSH4 0x572B6C05 EQ PUSH2 0xC2E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x7A6 JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0xACB JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0xBC6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x401022EF GT PUSH2 0x51C JUMPI DUP1 PUSH4 0x401022EF EQ PUSH2 0xB6C JUMPI DUP1 PUSH4 0x402D267D EQ PUSH2 0xB74 JUMPI DUP1 PUSH4 0x4092B0C1 EQ PUSH2 0xB94 JUMPI DUP1 PUSH4 0x48798720 EQ PUSH2 0xBB3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x38D52E0F EQ PUSH2 0xB22 JUMPI DUP1 PUSH4 0x3E15A357 EQ PUSH2 0xB36 JUMPI DUP1 PUSH4 0x3EDEB257 EQ PUSH2 0xB55 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0x622 JUMPI DUP1 PUSH4 0x2904DF29 GT PUSH2 0x5C2 JUMPI DUP1 PUSH4 0x32CADF3C GT PUSH2 0x592 JUMPI DUP1 PUSH4 0x32CADF3C EQ PUSH2 0xA98 JUMPI DUP1 PUSH4 0x33BDED3C EQ PUSH2 0xAAC JUMPI DUP1 PUSH4 0x33F965CE EQ PUSH2 0xACB JUMPI DUP1 PUSH4 0x342DB739 EQ PUSH2 0xAFD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x2904DF29 EQ PUSH2 0xA20 JUMPI DUP1 PUSH4 0x2F9CF0AA EQ PUSH2 0xA4C JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0xA5F JUMPI DUP1 PUSH4 0x32BC74AA EQ PUSH2 0xA85 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1A7E8014 GT PUSH2 0x5FD JUMPI DUP1 PUSH4 0x1A7E8014 EQ PUSH2 0x99A JUMPI DUP1 PUSH4 0x1C93944F EQ PUSH2 0x9AE JUMPI DUP1 PUSH4 0x225C531E EQ PUSH2 0x9E2 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0xA01 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD EQ PUSH2 0x916 JUMPI DUP1 PUSH4 0x194448E5 EQ PUSH2 0x949 JUMPI DUP1 PUSH4 0x1A034AFB EQ PUSH2 0x968 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8742D90 GT PUSH2 0x68D JUMPI DUP1 PUSH4 0xA28A477 GT PUSH2 0x668 JUMPI DUP1 PUSH4 0xA28A477 EQ PUSH2 0x88C JUMPI DUP1 PUSH4 0xAECC093 EQ PUSH2 0x8AB JUMPI DUP1 PUSH4 0xCABF231 EQ PUSH2 0x8BF JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x8DE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8742D90 EQ PUSH2 0x7E4 JUMPI DUP1 PUSH4 0x91EA8A6 EQ PUSH2 0x803 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x86D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 GT PUSH2 0x6C8 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x764 JUMPI DUP1 PUSH4 0x77F224A EQ PUSH2 0x785 JUMPI DUP1 PUSH4 0x7A2D13A EQ PUSH2 0x7A6 JUMPI DUP1 PUSH4 0x7C2E878 EQ PUSH2 0x7C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1E1D114 EQ PUSH2 0x6F8 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x71F JUMPI DUP1 PUSH4 0x25CA58E EQ PUSH2 0x74E JUMPI PUSH0 PUSH0 REVERT JUMPDEST CALLDATASIZE PUSH2 0x6F4 JUMPI STOP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x703 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x1361 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x72A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x73E PUSH2 0x739 CALLDATASIZE PUSH1 0x4 PUSH2 0x5499 JUMP JUMPDEST PUSH2 0x14A3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x716 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x759 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH4 0x67748580 PUSH2 0x70C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x76F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x778 PUSH2 0x1545 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x716 SWAP2 SWAP1 PUSH2 0x54E0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x790 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x79F CALLDATASIZE PUSH1 0x4 PUSH2 0x55D6 JUMP JUMPDEST PUSH2 0x1605 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x7C0 CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x16ED JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x7DF CALLDATASIZE PUSH1 0x4 PUSH2 0x56AA JUMP JUMPDEST PUSH2 0x16F8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x7FE CALLDATASIZE PUSH1 0x4 PUSH2 0x571E JUMP JUMPDEST PUSH2 0x181F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x80E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x860 PUSH2 0x81D CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x716 SWAP2 SWAP1 PUSH2 0x57A4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x878 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x73E PUSH2 0x887 CALLDATASIZE PUSH1 0x4 PUSH2 0x57B2 JUMP JUMPDEST PUSH2 0x18BB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x897 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x8A6 CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x18DC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x18E8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8CA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x70C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8FD PUSH2 0x8F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x5819 JUMP JUMPDEST PUSH2 0x18F2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x716 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x921 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x70C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x954 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x963 CALLDATASIZE PUSH1 0x4 PUSH2 0x5893 JUMP JUMPDEST PUSH2 0x195C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x973 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x70C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9A5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x1A84 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x9CD PUSH2 0x9C8 CALLDATASIZE PUSH1 0x4 PUSH2 0x58BF JUMP JUMPDEST PUSH2 0x1A8C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x716 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x9FC CALLDATASIZE PUSH1 0x4 PUSH2 0x58DB JUMP JUMPDEST PUSH2 0x1A9E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA0C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x73E PUSH2 0xA1B CALLDATASIZE PUSH1 0x4 PUSH2 0x593F JUMP JUMPDEST PUSH2 0x1BC2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA2B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xA34 PUSH2 0x1BEF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x716 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xA5A CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x1BF8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA6A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xA73 PUSH2 0x1CC8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x716 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xA93 CALLDATASIZE PUSH1 0x4 PUSH2 0x597D JUMP JUMPDEST PUSH2 0x1D04 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAA3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x778 PUSH2 0x1D10 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAB7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x778 PUSH2 0xAC6 CALLDATASIZE PUSH1 0x4 PUSH2 0x59C2 JUMP JUMPDEST PUSH2 0x1D53 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAD6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0xA34 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB08 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH15 0x1A185C991A185D0B595E1C1BDCD959 PUSH1 0x8A SHL DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB2D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xA34 PUSH2 0x1F10 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB41 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0xB50 CALLDATASIZE PUSH1 0x4 PUSH2 0x5A12 JUMP JUMPDEST PUSH2 0x1F3E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB60 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x9CD PUSH4 0xFFFFFFFF DUP2 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x1F52 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB7F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0xB8E CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST POP PUSH0 NOT SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB9F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x9CD PUSH2 0xBAE CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x202B JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xBC1 CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x2035 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xBD4 CALLDATASIZE PUSH1 0x4 PUSH2 0x5A4F JUMP JUMPDEST PUSH2 0x203E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xBE4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xBED PUSH2 0x2054 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x716 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC10 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x205D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC24 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x15180 PUSH2 0x70C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC39 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x73E PUSH2 0xC48 CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x2078 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC58 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8FD PUSH2 0xC67 CALLDATASIZE PUSH1 0x4 PUSH2 0x5AAE JUMP JUMPDEST PUSH2 0x20AA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC77 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8FD PUSH2 0xC86 CALLDATASIZE PUSH1 0x4 PUSH2 0x5AF1 JUMP JUMPDEST PUSH2 0x2113 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x1A84 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC9E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x14 PUSH2 0x70C JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xCB4 CALLDATASIZE PUSH1 0x4 PUSH2 0x593F JUMP JUMPDEST PUSH2 0x2249 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xCC4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0xCD3 CALLDATASIZE PUSH1 0x4 PUSH2 0x5B46 JUMP JUMPDEST PUSH2 0x2259 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xCE3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0xCF2 CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x227B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD02 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x70C JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xD2F CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x22A1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD3F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0xA34 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xD74 CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x22AA JUMP JUMPDEST PUSH2 0x70C PUSH2 0xD87 CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x22B3 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x18E8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD9F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0xDAE CALLDATASIZE PUSH1 0x4 PUSH2 0x5B69 JUMP JUMPDEST PUSH2 0x22FD JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xDC1 CALLDATASIZE PUSH1 0x4 PUSH2 0x5BB7 JUMP JUMPDEST PUSH2 0x23E7 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xDD4 CALLDATASIZE PUSH1 0x4 PUSH2 0x5BDD JUMP JUMPDEST PUSH2 0x2486 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xDE7 CALLDATASIZE PUSH1 0x4 PUSH2 0x593F JUMP JUMPDEST PUSH2 0x2493 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xDF7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x778 PUSH2 0xE06 CALLDATASIZE PUSH1 0x4 PUSH2 0x59C2 JUMP JUMPDEST PUSH2 0x249E JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x25AE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE1E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0xE2D CALLDATASIZE PUSH1 0x4 PUSH2 0x5C40 JUMP JUMPDEST PUSH2 0x25B6 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xE40 CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x25C1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE50 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xE64 PUSH2 0xE5F CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x25CA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x716 SWAP2 SWAP1 PUSH2 0x5C63 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE7C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0xE8B CALLDATASIZE PUSH1 0x4 PUSH2 0x5B46 JUMP JUMPDEST PUSH2 0x266F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE9B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x778 PUSH2 0x2691 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xEB2 CALLDATASIZE PUSH1 0x4 PUSH2 0x5CB1 JUMP JUMPDEST PUSH2 0x26CF JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xEC5 CALLDATASIZE PUSH1 0x4 PUSH2 0x5AAE JUMP JUMPDEST PUSH2 0x2742 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xED8 CALLDATASIZE PUSH1 0x4 PUSH2 0x5D24 JUMP JUMPDEST PUSH2 0x274E JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xEEB CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x2767 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xEFB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0xF0A CALLDATASIZE PUSH1 0x4 PUSH2 0x5A12 JUMP JUMPDEST PUSH2 0x27DC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF1A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xA34 PUSH2 0x2830 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF2E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x73E PUSH2 0xF3D CALLDATASIZE PUSH1 0x4 PUSH2 0x57B2 JUMP JUMPDEST PUSH2 0x284F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF4D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8FD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF68 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0xF77 CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x2866 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF87 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x778 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x2926 JUMP JUMPDEST PUSH2 0x70C PUSH2 0xFC2 CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x292E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xFD2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x2977 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xFE9 CALLDATASIZE PUSH1 0x4 PUSH2 0x593F JUMP JUMPDEST PUSH2 0x2980 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xFF9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x1008 CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x298B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1018 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x1027 CALLDATASIZE PUSH1 0x4 PUSH2 0x5D56 JUMP JUMPDEST PUSH2 0x2997 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x103A CALLDATASIZE PUSH1 0x4 PUSH2 0x5D8A JUMP JUMPDEST PUSH2 0x29F4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x104A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x1059 CALLDATASIZE PUSH1 0x4 PUSH2 0x5D56 JUMP JUMPDEST PUSH2 0x2A65 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1069 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x1078 CALLDATASIZE PUSH1 0x4 PUSH2 0x5D24 JUMP JUMPDEST PUSH2 0x2AB9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1088 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x1097 CALLDATASIZE PUSH1 0x4 PUSH2 0x5DF4 JUMP JUMPDEST PUSH2 0x2BA3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8FD PUSH2 0x10B6 CALLDATASIZE PUSH1 0x4 PUSH2 0x5E22 JUMP JUMPDEST PUSH2 0x2D8F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10C6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x10D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x5E55 JUMP JUMPDEST PUSH2 0x2DD9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10E5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x10F4 CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x2DE4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1104 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x73E PUSH2 0x2DEF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1118 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x1127 CALLDATASIZE PUSH1 0x4 PUSH2 0x5C40 JUMP JUMPDEST PUSH2 0x2DF8 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x113A CALLDATASIZE PUSH1 0x4 PUSH2 0x57B2 JUMP JUMPDEST PUSH2 0x2E03 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x114A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x2E0D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x115E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x116D CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x2E99 JUMP JUMPDEST PUSH2 0x70C PUSH2 0x1180 CALLDATASIZE PUSH1 0x4 PUSH2 0x5B69 JUMP JUMPDEST PUSH2 0x2EB3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1190 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x119F CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x2F03 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x11C3 PUSH2 0x11BE CALLDATASIZE PUSH1 0x4 PUSH2 0x5E78 JUMP JUMPDEST PUSH2 0x2FB0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x716 SWAP2 SWAP1 PUSH2 0x5EBC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11DB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8FD PUSH2 0x11EA CALLDATASIZE PUSH1 0x4 PUSH2 0x5AAE JUMP JUMPDEST PUSH2 0x313D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x1209 CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x324D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1219 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x1228 CALLDATASIZE PUSH1 0x4 PUSH2 0x5F5B JUMP JUMPDEST PUSH2 0x3265 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x123B CALLDATASIZE PUSH1 0x4 PUSH2 0x57B2 JUMP JUMPDEST PUSH2 0x32AE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x124B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x125A CALLDATASIZE PUSH1 0x4 PUSH2 0x5F87 JUMP JUMPDEST PUSH2 0x32B8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x126A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x127E PUSH2 0x1279 CALLDATASIZE PUSH1 0x4 PUSH2 0x5FCB JUMP JUMPDEST PUSH2 0x32C3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x716 SWAP2 SWAP1 PUSH2 0x600E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1296 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8FD PUSH2 0x12A5 CALLDATASIZE PUSH1 0x4 PUSH2 0x593F JUMP JUMPDEST PUSH2 0x3589 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x12B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x127E PUSH2 0x12C4 CALLDATASIZE PUSH1 0x4 PUSH2 0x5FCB JUMP JUMPDEST PUSH2 0x35F1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x12D4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 PUSH2 0xA73 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x12E9 CALLDATASIZE PUSH1 0x4 PUSH2 0x593F JUMP JUMPDEST PUSH2 0x37EB JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x37F6 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x384C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1309 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x1318 CALLDATASIZE PUSH1 0x4 PUSH2 0x6071 JUMP JUMPDEST PUSH2 0x3854 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1328 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x25AE JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x133F CALLDATASIZE PUSH1 0x4 PUSH2 0x5D8A JUMP JUMPDEST PUSH2 0x3913 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x134F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x135E CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x1378 PUSH2 0x3984 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13C6 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 0x13EA SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1408 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1423 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 0x1447 SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH2 0x1451 SWAP1 DUP4 PUSH2 0x60C8 JUMP JUMPDEST DUP2 SLOAD SWAP1 SWAP3 POP PUSH0 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xB SIGNEXTEND SLT ISZERO PUSH2 0x148D JUMPI DUP1 SLOAD PUSH2 0x147D SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x60DB JUMP JUMPDEST PUSH2 0x1487 SWAP1 DUP4 PUSH2 0x60F5 JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH2 0x1487 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND DUP4 PUSH2 0x60C8 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x14D3 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x162FC85 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x14EE JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x36372B07 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1509 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA219A025 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1524 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x43EFF2D PUSH1 0xE5 SHL EQ JUMPDEST DUP1 PUSH2 0x153F 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 PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x684A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x1583 SWAP1 PUSH2 0x6108 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 0x15AF SWAP1 PUSH2 0x6108 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x15FA JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x15D1 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x15FA 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 0x15DD JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x160E PUSH2 0x39F5 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x1634 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x164F JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x165D JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x167B JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x16A5 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x16B0 DUP9 DUP9 DUP9 PUSH2 0x3A1D JUMP JUMPDEST DUP4 ISZERO PUSH2 0x16E3 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x686A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH0 PUSH2 0x3AC4 JUMP JUMPDEST DUP4 PUSH0 PUSH2 0x1703 DUP3 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1724 JUMPI PUSH2 0x1724 PUSH2 0x5770 JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x175D JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP PUSH0 PUSH2 0x1769 DUP3 PUSH2 0x3BB3 JUMP JUMPDEST SWAP1 POP PUSH2 0x1784 PUSH2 0x1776 PUSH2 0x3C07 JUMP JUMPDEST DUP9 PUSH4 0x46D58CA9 PUSH1 0xE1 SHL PUSH2 0x3C10 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ADDRESS EQ PUSH2 0x17AE JUMPI PUSH2 0x17AE PUSH2 0x179F PUSH2 0x3C07 JUMP JUMPDEST DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x3C10 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3E1E7C3 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 PUSH4 0x1F0F3E18 SWAP1 PUSH2 0x17DE SWAP1 DUP10 SWAP1 DUP10 SWAP1 DUP10 SWAP1 PUSH1 0x4 ADD PUSH2 0x6185 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x17F5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1807 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH2 0x1816 DUP4 DUP4 DUP4 PUSH2 0x3D12 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x1845 JUMPI PUSH1 0x40 MLOAD PUSH4 0x294DA6C7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x184F DUP4 PUSH2 0x3B1B JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP6 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP2 PUSH32 0x4345EC61F717774FDB684B701C34934889550330DA2B93F2C3A33379DB77F817 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 SLOAD PUSH4 0xFFFFFFFF NOT AND PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x18C5 PUSH2 0x3C07 JUMP JUMPDEST SWAP1 POP PUSH2 0x18D2 DUP2 DUP6 DUP6 PUSH2 0x3D9B JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH1 0x1 PUSH2 0x3DA8 JUMP JUMPDEST PUSH2 0x18F0 PUSH2 0x3DF6 JUMP JUMPDEST JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x1949 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0x1754 JUMP JUMPDEST POP PUSH4 0xA85BD01 PUSH1 0xE1 SHL SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x19BD 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 0x19E1 SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19FF SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1A1A 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 0x1A3E SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x1A4A DUP3 PUSH2 0x3E3F JUMP JUMPDEST EQ DUP1 PUSH2 0x1A53 JUMPI POP DUP3 JUMPDEST PUSH2 0x1A70 JUMPI PUSH1 0x40 MLOAD PUSH4 0x292D4C4B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1A79 DUP5 PUSH2 0x3F38 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x18F0 PUSH2 0x40C5 JUMP JUMPDEST PUSH0 PUSH2 0x1A97 DUP4 DUP4 PUSH2 0x4153 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1AA7 DUP6 PUSH2 0x3B1B JUMP JUMPDEST POP PUSH0 PUSH2 0x1ABD DUP7 DUP7 DUP7 PUSH2 0x1AB8 DUP8 PUSH2 0x417F JUMP JUMPDEST PUSH2 0x41AF JUMP JUMPDEST SWAP1 POP DUP3 DUP2 PUSH0 DUP2 SGT ISZERO PUSH2 0x1AEB JUMPI PUSH1 0x40 MLOAD PUSH4 0xC97A6BF PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1754 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x1AF6 PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x1B3A JUMPI PUSH2 0x1B0A DUP2 DUP6 PUSH2 0x60F5 JUMP JUMPDEST PUSH2 0x1B1C PUSH2 0x1B17 DUP4 DUP8 PUSH2 0x60F5 JUMP JUMPDEST PUSH2 0x3E3F JUMP JUMPDEST EQ PUSH2 0x1B3A JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1B57 DUP4 DUP6 PUSH2 0x1B47 PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x42AE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP1 DUP10 AND DUP3 MSTORE DUP8 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x80 DUP4 ADD MSTORE DUP9 AND SWAP1 PUSH32 0xCC010DD322EB2BC19138CF20160AD5643925810F442FC6C5D48B9B4C59B34EFE SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1BCC PUSH2 0x3C07 JUMP JUMPDEST SWAP1 POP PUSH2 0x1BD9 DUP6 DUP3 DUP6 PUSH2 0x42E3 JUMP JUMPDEST PUSH2 0x1BE4 DUP6 DUP6 DUP6 PUSH2 0x432E JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A7F PUSH2 0x3C07 JUMP JUMPDEST DUP1 PUSH0 PUSH2 0x1C03 DUP3 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1C24 JUMPI PUSH2 0x1C24 PUSH2 0x5770 JUMP JUMPDEST EQ DUP1 PUSH2 0x1C4C JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1C4A JUMPI PUSH2 0x1C4A PUSH2 0x5770 JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x1C7B JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x1C86 PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1C91 PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1CC1 JUMPI PUSH2 0x1CA5 DUP2 DUP4 PUSH2 0x60F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x51F59775 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH32 0x773E532DFEDE91F04B12A73D3D2ACD361424F41F76B4FB79F090161E36B4E00 SWAP1 POP PUSH0 DUP2 SLOAD PUSH2 0x1487 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x6230 JUMP JUMPDEST PUSH2 0x1A79 DUP5 DUP5 DUP5 DUP5 PUSH2 0x4380 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1D1A PUSH2 0x4463 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 SWAP3 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x1D60 DUP3 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1D81 JUMPI PUSH2 0x1D81 PUSH2 0x5770 JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x1DB1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x1DBD DUP3 PUSH2 0x3BB3 JUMP JUMPDEST SWAP1 POP PUSH2 0x1DE6 PUSH2 0x1DCA PUSH2 0x3C07 JUMP JUMPDEST DUP9 PUSH2 0x1DD8 PUSH1 0x4 PUSH0 DUP11 DUP13 PUSH2 0x6249 JUMP JUMPDEST PUSH2 0x1DE1 SWAP2 PUSH2 0x6270 JUMP JUMPDEST PUSH2 0x3C10 JUMP JUMPDEST PUSH2 0x1E2F DUP7 DUP7 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 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP3 SWAP2 POP POP PUSH2 0x4475 JUMP JUMPDEST SWAP4 POP PUSH0 DUP5 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1E46 SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1EAE 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 0x1ED2 SWAP2 SWAP1 PUSH2 0x62A6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1EFA JUMPI PUSH2 0x1EFA PUSH2 0x1EEB PUSH2 0x3C07 JUMP JUMPDEST DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x3C10 JUMP JUMPDEST POP PUSH2 0x1F06 DUP4 DUP4 DUP4 PUSH2 0x3D12 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x773E532DFEDE91F04B12A73D3D2ACD361424F41F76B4FB79F090161E36B4E00 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x1F4A DUP5 DUP5 DUP5 PUSH2 0x4482 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1F5B PUSH2 0x39F5 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x1F81 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x1F9C JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x1FAA JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x1FC8 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x1FF2 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST DUP4 ISZERO PUSH2 0x1CC1 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x686A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH2 0x44CA JUMP JUMPDEST PUSH2 0x135E DUP2 PUSH2 0x45A7 JUMP JUMPDEST PUSH2 0x2046 PUSH2 0x40C5 JUMP JUMPDEST PUSH2 0x2050 DUP3 DUP3 PUSH2 0x462A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A7F PUSH2 0x46E6 JUMP JUMPDEST PUSH0 PUSH2 0x2066 PUSH2 0x3DF6 JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x688A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 AND EQ SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x2101 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0x1754 JUMP JUMPDEST POP PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x216A JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0x1754 JUMP JUMPDEST POP PUSH0 PUSH2 0x2175 DUP9 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2196 JUMPI PUSH2 0x2196 PUSH2 0x5770 JUMP JUMPDEST EQ DUP1 PUSH2 0x21BE JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x21BC JUMPI PUSH2 0x21BC PUSH2 0x5770 JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP10 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x21ED JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP PUSH0 SWAP1 POP DUP4 PUSH2 0x21FC DUP7 DUP9 PUSH2 0x60C8 JUMP JUMPDEST PUSH2 0x2206 SWAP2 SWAP1 PUSH2 0x60C8 JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH2 0x2233 SWAP1 DUP11 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x2221 DUP2 TIMESTAMP PUSH2 0x4153 JUMP JUMPDEST PUSH2 0x222A DUP6 PUSH2 0x417F JUMP JUMPDEST PUSH2 0x1AB8 SWAP1 PUSH2 0x60DB JUMP JUMPDEST POP PUSH4 0x31759A2F PUSH1 0xE1 SHL SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2254 DUP4 DUP4 DUP4 PUSH2 0x46FE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH0 NOT PUSH0 PUSH2 0x2266 DUP6 PUSH2 0x2DE4 JUMP JUMPDEST SWAP1 POP PUSH2 0x1F4A PUSH2 0x2273 PUSH2 0x3C07 JUMP JUMPDEST DUP6 DUP8 DUP5 PUSH2 0x4824 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x684A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x135E DUP2 PUSH2 0x488F JUMP JUMPDEST PUSH2 0x135E DUP2 PUSH2 0x4897 JUMP JUMPDEST PUSH0 PUSH2 0x22BD DUP3 PUSH2 0x3E3F JUMP JUMPDEST SWAP1 POP PUSH32 0x3A221B9176B65B4A4850E63CD182357E93D2AD08E8951DAA0904244DC82DF460 DUP2 PUSH1 0x40 MLOAD PUSH2 0x22F0 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2306 DUP5 PUSH2 0x3B1B JUMP JUMPDEST POP PUSH0 PUSH2 0x2317 DUP6 DUP6 DUP6 PUSH2 0x222A DUP7 PUSH2 0x417F JUMP JUMPDEST SWAP1 POP DUP2 DUP2 PUSH0 DUP2 SLT ISZERO PUSH2 0x2345 JUMPI PUSH1 0x40 MLOAD PUSH4 0x239DE571 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1754 JUMP JUMPDEST POP POP PUSH2 0x236D PUSH2 0x2352 PUSH2 0x3C07 JUMP JUMPDEST ADDRESS DUP5 PUSH2 0x235C PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x49BB JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFE14813540C7709C2D7E702F39B104EEED265DD484F899E9F2F89C801AA6395C DUP6 DUP6 DUP6 DUP6 PUSH2 0x23A4 PUSH2 0x3C07 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP7 DUP8 AND DUP2 MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x20 DUP7 ADD MSTORE SWAP3 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH0 PUSH2 0x23F1 PUSH2 0x39F5 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND DUP1 PUSH2 0x2418 JUMPI POP DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP5 AND SWAP2 AND LT ISZERO JUMPDEST ISZERO PUSH2 0x2436 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH9 0xFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND SWAP1 DUP2 OR PUSH1 0x1 PUSH1 0x40 SHL OR PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x686A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH2 0x1CC1 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0x49F1 JUMP JUMPDEST PUSH2 0x2254 DUP4 DUP4 DUP4 PUSH2 0x3D9B JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x24AB DUP3 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x24CC JUMPI PUSH2 0x24CC PUSH2 0x5770 JUMP JUMPDEST EQ DUP1 PUSH2 0x24F4 JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x24F2 JUMPI PUSH2 0x24F2 PUSH2 0x5770 JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x2523 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x252E PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP PUSH2 0x253B PUSH2 0x1DCA PUSH2 0x3C07 JUMP JUMPDEST PUSH2 0x2584 DUP7 DUP7 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 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP3 SWAP2 POP POP PUSH2 0x4475 JUMP JUMPDEST SWAP4 POP PUSH0 PUSH2 0x258F PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x25A3 JUMPI PUSH2 0x1CA5 DUP2 DUP4 PUSH2 0x60F5 JUMP JUMPDEST POP POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x18F0 PUSH2 0x4B44 JUMP JUMPDEST PUSH0 PUSH2 0x1A97 DUP4 DUP4 PUSH2 0x3DA8 JUMP JUMPDEST PUSH2 0x135E DUP2 PUSH2 0x3F38 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x25F6 DUP3 PUSH2 0x3B1B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD SWAP1 SWAP2 MSTORE DUP2 SLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP3 MSTORE SWAP1 SWAP2 SWAP1 PUSH1 0x20 DUP4 ADD SWAP1 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x262F JUMPI PUSH2 0x262F PUSH2 0x5770 JUMP JUMPDEST PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2640 JUMPI PUSH2 0x2640 PUSH2 0x5770 JUMP JUMPDEST DUP2 MSTORE SWAP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x1 PUSH1 0x28 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x88 SHL SWAP1 SWAP2 DIV AND PUSH1 0x40 SWAP1 SWAP2 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 NOT PUSH0 PUSH2 0x267C DUP6 PUSH2 0x298B JUMP JUMPDEST SWAP1 POP PUSH2 0x1F4A PUSH2 0x2689 PUSH2 0x3C07 JUMP JUMPDEST DUP6 DUP4 DUP9 PUSH2 0x4824 JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE04 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x684A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x1583 SWAP1 PUSH2 0x6108 JUMP JUMPDEST PUSH2 0x1CC1 DUP6 DUP6 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 POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 PUSH1 0x1F DUP10 ADD DUP2 SWAP1 DIV DUP2 MUL DUP3 ADD DUP2 ADD SWAP1 SWAP3 MSTORE DUP8 DUP2 MSTORE SWAP3 POP DUP8 SWAP2 POP DUP7 SWAP1 DUP2 SWAP1 DUP5 ADD DUP4 DUP3 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP DUP7 SWAP3 POP PUSH2 0x3A1D SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1A79 DUP5 DUP5 DUP5 DUP5 PUSH2 0x4824 JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x2254 SWAP1 DUP5 SWAP1 DUP4 PUSH2 0x3D12 JUMP JUMPDEST DUP1 PUSH0 PUSH2 0x2772 DUP3 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2793 JUMPI PUSH2 0x2793 PUSH2 0x5770 JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x27C3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x27CF DUP3 PUSH2 0x3BB3 JUMP JUMPDEST SWAP1 POP PUSH2 0x1A79 DUP4 DUP4 DUP4 PUSH2 0x3D12 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF02 DUP3 PUSH2 0x2818 DUP8 DUP8 DUP8 PUSH2 0x4482 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2859 PUSH2 0x3C07 JUMP JUMPDEST SWAP1 POP PUSH2 0x18D2 DUP2 DUP6 DUP6 PUSH2 0x432E JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x287D JUMPI PUSH2 0x2876 PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP PUSH2 0x28A5 JUMP JUMPDEST PUSH2 0x2885 PUSH2 0x3984 JUMP JUMPDEST DUP2 GT ISZERO PUSH2 0x28A5 JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2902 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 0x2254 SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH2 0x18F0 PUSH2 0x25AE JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH2 0x2944 SWAP1 PUSH2 0x3BB3 JUMP JUMPDEST SWAP1 POP PUSH32 0xDC71A294D999569DF48C717917073844771891D2646489D0133F026C945D0481 DUP2 PUSH1 0x40 MLOAD PUSH2 0x22F0 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x1A7F PUSH2 0x3984 JUMP JUMPDEST PUSH2 0x2254 DUP4 DUP4 DUP4 PUSH2 0x42E3 JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH1 0x1 PUSH2 0x3AC4 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x29A2 DUP4 PUSH2 0x2E99 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x29CB JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3FA733BB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x62C1 JUMP JUMPDEST PUSH0 PUSH2 0x29D5 DUP7 PUSH2 0x18DC JUMP JUMPDEST SWAP1 POP PUSH2 0x29EB PUSH2 0x29E2 PUSH2 0x3C07 JUMP JUMPDEST DUP7 DUP7 DUP10 DUP6 PUSH2 0x49F1 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1A79 DUP5 DUP5 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 POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 PUSH1 0x1F DUP9 ADD DUP2 SWAP1 DIV DUP2 MUL DUP3 ADD DUP2 ADD SWAP1 SWAP3 MSTORE DUP7 DUP2 MSTORE SWAP3 POP DUP7 SWAP2 POP DUP6 SWAP1 DUP2 SWAP1 DUP5 ADD DUP4 DUP3 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x4B69 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2A70 DUP4 PUSH2 0x324D JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x2A99 JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x2E52AFBB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x62C1 JUMP JUMPDEST PUSH0 PUSH2 0x2AA3 DUP7 PUSH2 0x16ED JUMP JUMPDEST SWAP1 POP PUSH2 0x29EB PUSH2 0x2AB0 PUSH2 0x3C07 JUMP JUMPDEST DUP7 DUP7 DUP5 DUP11 PUSH2 0x49F1 JUMP JUMPDEST PUSH0 PUSH2 0x2AC3 DUP5 PUSH2 0x3B1B JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x1 PUSH1 0x28 SHL DUP5 DIV DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x88 SHL SWAP1 SWAP4 DIV SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP2 ADD DUP5 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0x7E293D291E9DD159F2FBDE9523C4191674384553A72C0833BA9CF7DCB5381FB7 SWAP1 PUSH1 0x80 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x2B3D DUP4 PUSH2 0x4B7B JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH17 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000 NOT SWAP1 SWAP2 AND OR DUP2 SSTORE PUSH2 0x2B73 DUP3 PUSH2 0x4B7B JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x88 SHL MUL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x88 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP3 SWAP1 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2C06 JUMPI PUSH2 0x2C06 PUSH2 0x5770 JUMP JUMPDEST EQ PUSH2 0x2C24 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCD43EFA1 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x2C4A JUMPI PUSH1 0x40 MLOAD PUSH4 0x294DA6C7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH4 0xFFFFFFFF DUP8 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD PUSH2 0x2C70 DUP7 PUSH2 0x4B7B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2C87 DUP6 PUSH2 0x4B7B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP5 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 DUP3 MLOAD DUP2 SLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH4 0xFFFFFFFF NOT DUP3 AND DUP2 OR DUP4 SSTORE SWAP3 DUP5 ADD MLOAD SWAP2 SWAP3 DUP4 SWAP2 PUSH5 0xFFFFFFFFFF NOT AND OR PUSH1 0x1 PUSH1 0x20 SHL DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2CEE JUMPI PUSH2 0x2CEE PUSH2 0x5770 JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 DUP2 ADD MLOAD DUP3 SLOAD PUSH1 0x60 SWAP1 SWAP5 ADD MLOAD PUSH6 0x10000000000 PUSH1 0x1 PUSH1 0xE8 SHL SUB NOT SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x28 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP3 DUP4 AND MUL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x88 SHL NOT AND OR PUSH1 0x1 PUSH1 0x88 SHL SWAP2 SWAP1 SWAP5 AND MUL SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP1 PUSH32 0x422C963A67D52178B43A807B8C9DF3A99468F416B736F9F040B6392CF790752E SWAP1 PUSH2 0x2D7F SWAP1 DUP5 SWAP1 PUSH2 0x62E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP5 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH1 0x34 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH2 0x1A97 SWAP1 PUSH1 0x38 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x1A97 DUP4 DUP4 PUSH2 0x4BAE JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH0 PUSH2 0x3DA8 JUMP JUMPDEST PUSH0 PUSH2 0x1A7F PUSH2 0x4C91 JUMP JUMPDEST PUSH0 PUSH2 0x1A97 DUP4 DUP4 PUSH2 0x3AC4 JUMP JUMPDEST PUSH2 0x2050 DUP3 DUP3 PUSH2 0x4CAA JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2E63 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 0x2E87 SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH2 0x2E8F PUSH2 0x3984 JUMP JUMPDEST PUSH2 0x1487 SWAP2 SWAP1 PUSH2 0x60C8 JUMP JUMPDEST PUSH0 PUSH2 0x153F PUSH2 0x2EA6 DUP4 PUSH2 0x4CDE JUMP JUMPDEST PUSH2 0x2EAE PUSH2 0x2E0D JUMP JUMPDEST PUSH2 0x4CEB JUMP JUMPDEST PUSH0 PUSH2 0x2EC0 DUP6 DUP6 DUP6 DUP6 PUSH2 0x41AF JUMP JUMPDEST SWAP1 POP PUSH32 0x7281C4A6D49C3BB62269FED398306788C6B3B4FCE8789168AA0AB94EC0DD9EC9 DUP2 PUSH1 0x40 MLOAD PUSH2 0x2EF3 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x2F88 JUMPI PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2F60 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 0x2F84 SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST SWAP2 POP POP JUMPDEST DUP1 PUSH2 0x2F92 DUP3 PUSH2 0x3E3F JUMP JUMPDEST EQ PUSH2 0x135E JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3016 PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP5 PUSH0 PUSH2 0x3021 DUP3 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3042 JUMPI PUSH2 0x3042 PUSH2 0x5770 JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x3072 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x307E DUP3 PUSH2 0x3BB3 JUMP JUMPDEST SWAP1 POP PUSH2 0x3099 PUSH2 0x308B PUSH2 0x3C07 JUMP JUMPDEST DUP10 PUSH4 0x46D58CA9 PUSH1 0xE1 SHL PUSH2 0x3C10 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND ADDRESS EQ PUSH2 0x30B4 JUMPI PUSH2 0x30B4 PUSH2 0x1EEB PUSH2 0x3C07 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x46D58CA9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND SWAP1 PUSH4 0x8DAB1952 SWAP1 PUSH2 0x30E4 SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP11 SWAP1 PUSH1 0x4 ADD PUSH2 0x6332 JUMP JUMPDEST PUSH2 0x180 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3101 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 0x3125 SWAP2 SWAP1 PUSH2 0x6371 JUMP JUMPDEST SWAP4 POP PUSH2 0x3132 DUP4 DUP4 DUP4 PUSH2 0x3D12 JUMP JUMPDEST POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x3194 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0x1754 JUMP JUMPDEST POP PUSH0 PUSH2 0x319F DUP7 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x31C0 JUMPI PUSH2 0x31C0 PUSH2 0x5770 JUMP JUMPDEST EQ DUP1 PUSH2 0x31E8 JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x31E6 JUMPI PUSH2 0x31E6 PUSH2 0x5770 JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP8 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x3217 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP POP DUP1 SLOAD PUSH2 0x323A SWAP1 DUP8 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x3231 DUP2 TIMESTAMP PUSH2 0x4153 JUMP JUMPDEST PUSH2 0x222A DUP8 PUSH2 0x417F JUMP JUMPDEST POP PUSH4 0x6B140E9F PUSH1 0xE1 SHL SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x153F PUSH2 0x325A DUP4 PUSH2 0x4CFA JUMP JUMPDEST PUSH2 0x2EAE PUSH2 0x10F4 PUSH2 0x2E0D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE01 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 PUSH2 0x2050 DUP3 DUP3 PUSH2 0x4D04 JUMP JUMPDEST PUSH2 0x2254 DUP4 DUP4 DUP4 PUSH2 0x3C10 JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x32D0 DUP3 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x32F1 JUMPI PUSH2 0x32F1 PUSH2 0x5770 JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x3321 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x332D DUP3 PUSH2 0x3BB3 JUMP JUMPDEST SWAP1 POP PUSH0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3349 JUMPI PUSH2 0x3349 PUSH2 0x54F2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x337C JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x3367 JUMPI SWAP1 POP JUMPDEST POP SWAP6 POP PUSH0 JUMPDEST DUP8 DUP2 LT ISZERO PUSH2 0x357B JUMPI PUSH0 DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x339C JUMPI PUSH2 0x339C PUSH2 0x6419 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x33AE SWAP2 SWAP1 PUSH2 0x642D JUMP JUMPDEST PUSH2 0x33BC SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x6249 JUMP JUMPDEST PUSH2 0x33C5 SWAP2 PUSH2 0x6270 JUMP JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 PUSH2 0x33E1 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 DUP2 AND SWAP1 DUP6 AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x33FC JUMPI PUSH2 0x33F8 PUSH2 0x33F1 PUSH2 0x3C07 JUMP JUMPDEST DUP13 DUP4 PUSH2 0x3C10 JUMP JUMPDEST DUP1 SWAP4 POP JUMPDEST PUSH2 0x3467 DUP11 DUP11 DUP5 DUP2 DUP2 LT PUSH2 0x3411 JUMPI PUSH2 0x3411 PUSH2 0x6419 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x3423 SWAP2 SWAP1 PUSH2 0x642D 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 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP16 AND SWAP3 SWAP2 POP POP PUSH2 0x4475 JUMP JUMPDEST DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x3479 JUMPI PUSH2 0x3479 PUSH2 0x6419 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP3 PUSH2 0x3572 JUMPI PUSH0 DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x349C JUMPI PUSH2 0x349C PUSH2 0x6419 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x34B7 SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x351F 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 0x3543 SWAP2 SWAP1 PUSH2 0x62A6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x3570 JUMPI PUSH2 0x356B PUSH2 0x355C PUSH2 0x3C07 JUMP JUMPDEST DUP14 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x3C10 JUMP JUMPDEST PUSH1 0x1 SWAP4 POP JUMPDEST POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x3381 JUMP JUMPDEST POP POP POP PUSH2 0x1F06 DUP4 DUP4 DUP4 PUSH2 0x3D12 JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x35E0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0x1754 JUMP JUMPDEST POP PUSH4 0xE8E617B7 PUSH1 0xE0 SHL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x35FE DUP3 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x361F JUMPI PUSH2 0x361F PUSH2 0x5770 JUMP JUMPDEST EQ DUP1 PUSH2 0x3647 JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3645 JUMPI PUSH2 0x3645 PUSH2 0x5770 JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x3676 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x3681 PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x369C JUMPI PUSH2 0x369C PUSH2 0x54F2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x36CF JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x36BA JUMPI SWAP1 POP JUMPDEST POP SWAP5 POP PUSH0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x37E0 JUMPI PUSH0 DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x36EF JUMPI PUSH2 0x36EF PUSH2 0x6419 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x3701 SWAP2 SWAP1 PUSH2 0x642D JUMP JUMPDEST PUSH2 0x370F SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x6249 JUMP JUMPDEST PUSH2 0x3718 SWAP2 PUSH2 0x6270 JUMP JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 PUSH2 0x3734 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 DUP2 AND SWAP1 DUP5 AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x374F JUMPI PUSH2 0x374B PUSH2 0x3744 PUSH2 0x3C07 JUMP JUMPDEST DUP12 DUP4 PUSH2 0x3C10 JUMP JUMPDEST DUP1 SWAP3 POP JUMPDEST PUSH2 0x37BA DUP10 DUP10 DUP5 DUP2 DUP2 LT PUSH2 0x3764 JUMPI PUSH2 0x3764 PUSH2 0x6419 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x3776 SWAP2 SWAP1 PUSH2 0x642D 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 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 AND SWAP3 SWAP2 POP POP PUSH2 0x4475 JUMP JUMPDEST DUP8 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x37CC JUMPI PUSH2 0x37CC PUSH2 0x6419 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE POP PUSH1 0x1 ADD PUSH2 0x36D4 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x258F PUSH2 0x3984 JUMP JUMPDEST PUSH2 0x2254 DUP4 DUP4 DUP4 PUSH2 0x432E JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x135E JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0x1754 JUMP JUMPDEST PUSH2 0x18F0 PUSH2 0x4D38 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3867 JUMPI PUSH2 0x3867 PUSH2 0x5770 JUMP JUMPDEST SUB PUSH2 0x3885 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5E645365 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x388F DUP4 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x638A5C17C348B99C05E7985EE5EE8BC0C41BC7A12265AEC4A488D62350C1D24 DUP3 PUSH0 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x38DC SWAP3 SWAP2 SWAP1 PUSH2 0x646F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 SLOAD DUP3 SWAP1 DUP3 SWAP1 PUSH5 0xFF00000000 NOT AND PUSH1 0x1 PUSH1 0x20 SHL DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3909 JUMPI PUSH2 0x3909 PUSH2 0x5770 JUMP JUMPDEST MUL OR SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH2 0x1A79 DUP5 DUP5 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 POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 PUSH1 0x1F DUP9 ADD DUP2 SWAP1 DIV DUP2 MUL DUP3 ADD DUP2 ADD SWAP1 SWAP3 MSTORE DUP7 DUP2 MSTORE SWAP3 POP DUP7 SWAP2 POP DUP6 SWAP1 DUP2 SWAP1 DUP5 ADD DUP4 DUP3 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x4DBD SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x398D PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 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 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x39D1 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 0x1A7F SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x153F JUMP JUMPDEST PUSH2 0x3A25 PUSH2 0x4B44 JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3A82 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 0x3AA6 SWAP2 SWAP1 PUSH2 0x62A6 JUMP JUMPDEST SWAP1 POP PUSH2 0x3AB1 DUP2 PUSH2 0x488F JUMP JUMPDEST PUSH2 0x3ABB DUP5 DUP5 PUSH2 0x4B69 JUMP JUMPDEST PUSH2 0x1A79 DUP3 PUSH2 0x4897 JUMP JUMPDEST PUSH0 PUSH2 0x1A97 PUSH2 0x3AD0 PUSH2 0x1361 JUMP JUMPDEST PUSH2 0x3ADB SWAP1 PUSH1 0x1 PUSH2 0x60C8 JUMP JUMPDEST PUSH2 0x3AE6 PUSH0 PUSH1 0xA PUSH2 0x656D JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x3B12 SWAP2 SWAP1 PUSH2 0x60C8 JUMP JUMPDEST DUP6 SWAP2 SWAP1 DUP6 PUSH2 0x4E0D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3B7F JUMPI PUSH2 0x3B7F PUSH2 0x5770 JUMP JUMPDEST EQ ISZERO DUP4 SWAP1 PUSH2 0x3BAC JUMPI PUSH1 0x40 MLOAD PUSH4 0x2DAD9021 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 0x1754 JUMP JUMPDEST POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x3BBC PUSH2 0x3984 JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 LT ISZERO PUSH2 0x3C02 JUMPI DUP2 SLOAD PUSH2 0x3BF9 SWAP1 PUSH2 0x1B17 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x60F5 JUMP JUMPDEST POP PUSH2 0x153F PUSH2 0x3984 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x1A7F PUSH2 0x4E4F JUMP JUMPDEST PUSH0 PUSH2 0x3C1B DUP4 DUP4 PUSH2 0x2D8F JUMP JUMPDEST SWAP1 POP PUSH0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3A7B7A39 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3C5A 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 0x3C7E SWAP2 SWAP1 PUSH2 0x62A6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xB7009613 DUP7 ADDRESS DUP6 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3CAD SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x657B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3CC7 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 0x3CEB SWAP2 SWAP1 PUSH2 0x65A8 JUMP JUMPDEST POP SWAP1 POP DUP5 DUP5 DUP4 DUP4 PUSH2 0x16E3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC294136D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x657B JUMP JUMPDEST PUSH0 PUSH2 0x3D1B PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1A79 JUMPI DUP3 SLOAD PUSH0 SWAP1 PUSH2 0x3D51 SWAP1 DUP7 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x3D3F DUP2 TIMESTAMP PUSH2 0x4153 JUMP JUMPDEST PUSH2 0x1AB8 PUSH2 0x3D4C DUP8 DUP10 PUSH2 0x60F5 JUMP JUMPDEST PUSH2 0x417F JUMP JUMPDEST DUP5 SLOAD SWAP1 SWAP2 POP DUP2 SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP1 DUP3 SGT ISZERO PUSH2 0x1816 JUMPI PUSH1 0x40 MLOAD PUSH4 0x395192C5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH2 0x2254 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x4380 JUMP JUMPDEST PUSH0 PUSH2 0x1A97 PUSH2 0x3DB7 DUP3 PUSH1 0xA PUSH2 0x656D JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x3DE3 SWAP2 SWAP1 PUSH2 0x60C8 JUMP JUMPDEST PUSH2 0x3DEB PUSH2 0x1361 JUMP JUMPDEST PUSH2 0x3B12 SWAP1 PUSH1 0x1 PUSH2 0x60C8 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x18F0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH2 0x3EBF SWAP2 DUP6 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3E9B 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 0x2EAE SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE SWAP2 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3F14 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 0x3BAC SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x3F5F JUMPI PUSH1 0x40 MLOAD PUSH4 0x47DDF9C7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND OR DUP4 SSTORE AND DUP1 ISZERO PUSH2 0x400A JUMPI PUSH2 0x3F97 PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3FE4 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 0x4008 SWAP2 SWAP1 PUSH2 0x65D5 JUMP JUMPDEST POP JUMPDEST PUSH2 0x4012 PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4060 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 0x4084 SWAP2 SWAP1 PUSH2 0x65D5 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x9BAADDAD37A65CA0DF0360563FCA87A13C1CE354BE76D7EC35EAC48BD766332A SWAP2 ADD PUSH2 0x2479 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x4135 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x4129 PUSH2 0x4E95 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x18F0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND EQ PUSH2 0x4176 JUMPI PUSH2 0x4171 PUSH4 0xFFFFFFFF DUP5 AND DUP4 PUSH2 0x6604 JUMP JUMPDEST PUSH2 0x1A97 JUMP JUMPDEST PUSH2 0x1A97 DUP3 PUSH2 0x44CA JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFF SHL SUB DUP3 GT ISZERO PUSH2 0x41AB JUMPI PUSH1 0x40 MLOAD PUSH4 0x123BAF03 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x41CA DUP8 DUP8 DUP8 PUSH2 0x4482 JUMP JUMPDEST SWAP1 POP DUP4 DUP3 PUSH1 0x2 ADD PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x41EE SWAP2 SWAP1 PUSH2 0x6617 JUMP JUMPDEST SWAP2 DUP3 SWAP1 SSTORE POP DUP4 SLOAD SWAP1 SWAP5 POP DUP6 SWAP2 POP DUP4 SWAP1 PUSH1 0x14 SWAP1 PUSH2 0x4215 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x663E JUMP JUMPDEST DUP3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 DUP3 AND PUSH2 0x100 SWAP4 SWAP1 SWAP4 EXP SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP3 MUL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE POP DUP2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP1 DUP11 AND DUP3 MSTORE DUP9 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xB SIGNEXTEND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 PUSH32 0xBC0FF1D27E119160A9A107D0725B9ED31B90773CF47E89332A35A8C1A319EAEE SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x42BB DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x4EA9 JUMP JUMPDEST PUSH2 0x2254 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH0 PUSH2 0x42EE DUP5 DUP5 PUSH2 0x3265 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 LT ISZERO PUSH2 0x1A79 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x4320 JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x62C1 JUMP JUMPDEST PUSH2 0x1A79 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x4380 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x4357 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2249 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x684A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH2 0x43B7 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x43E0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP4 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP4 SWAP1 SSTORE DUP2 ISZERO PUSH2 0x1CC1 JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP6 PUSH1 0x40 MLOAD PUSH2 0x4454 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH2 0x446D PUSH2 0x4F0B JUMP JUMPDEST SWAP2 POP SWAP2 POP SWAP1 SWAP2 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1A97 DUP4 DUP4 PUSH0 PUSH2 0x4F48 JUMP JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFF00000000 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 SWAP4 SWAP1 SWAP4 SHL SWAP3 SWAP1 SWAP3 AND PUSH1 0xC0 SWAP2 SWAP1 SWAP2 SHL PUSH4 0xFFFFFFFF PUSH1 0xC0 SHL AND OR PUSH1 0xA0 SHR AND PUSH1 0x60 SWAP2 SWAP1 SWAP2 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND OR SWAP1 JUMP JUMPDEST PUSH2 0x7E9 PUSH0 DUP1 PUSH3 0x15180 PUSH2 0x44E1 PUSH4 0x67748580 DUP7 PUSH2 0x60F5 JUMP JUMPDEST PUSH2 0x44EB SWAP2 SWAP1 PUSH2 0x6604 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP2 PUSH2 0x44FB JUMPI PUSH2 0x16D PUSH2 0x44FF JUMP JUMPDEST PUSH2 0x16E JUMPDEST PUSH2 0xFFFF AND DUP2 LT PUSH2 0x4582 JUMPI DUP2 PUSH2 0x4516 JUMPI PUSH2 0x16D PUSH2 0x451A JUMP JUMPDEST PUSH2 0x16E JUMPDEST PUSH2 0x4528 SWAP1 PUSH2 0xFFFF AND DUP3 PUSH2 0x60F5 JUMP JUMPDEST SWAP1 POP PUSH2 0x4533 DUP4 PUSH2 0x6675 JUMP JUMPDEST SWAP3 POP PUSH2 0x4540 PUSH1 0x4 DUP5 PUSH2 0x6699 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO DUP1 ISZERO PUSH2 0x457B JUMPI POP PUSH2 0x4559 PUSH1 0x64 DUP5 PUSH2 0x6699 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO ISZERO DUP1 PUSH2 0x457B JUMPI POP PUSH2 0x4573 PUSH2 0x190 DUP5 PUSH2 0x6699 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST SWAP2 POP PUSH2 0x44EE JUMP JUMPDEST PUSH2 0x458C DUP2 DUP4 PUSH2 0x4BAE JUMP JUMPDEST PUSH2 0x4597 DUP5 PUSH1 0x64 PUSH2 0x66C0 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x1F4A SWAP2 SWAP1 PUSH2 0x60C8 JUMP JUMPDEST PUSH2 0x45AF PUSH2 0x4B44 JUMP JUMPDEST PUSH32 0x773E532DFEDE91F04B12A73D3D2ACD361424F41F76B4FB79F090161E36B4E00 PUSH0 DUP1 PUSH2 0x45DB DUP5 PUSH2 0x5014 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x45EB JUMPI PUSH1 0x12 PUSH2 0x45ED JUMP JUMPDEST DUP1 JUMPDEST DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT AND PUSH1 0x1 PUSH1 0xA0 SHL PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND OR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP2 SSTORE POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x4684 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x4681 SWAP2 DUP2 ADD SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x46AC JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x688A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x46DC JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH2 0x2254 DUP4 DUP4 PUSH2 0x509F JUMP JUMPDEST PUSH0 PUSH2 0x46EF PUSH2 0x39F5 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x684A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x4738 JUMPI DUP2 DUP2 PUSH1 0x2 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x472D SWAP2 SWAP1 PUSH2 0x60C8 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x4795 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x4777 JUMPI DUP5 DUP2 DUP5 PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x62C1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP4 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP4 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x47B3 JUMPI PUSH1 0x2 DUP2 ADD DUP1 SLOAD DUP4 SWAP1 SUB SWAP1 SSTORE PUSH2 0x47D1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP4 ADD SWAP1 SSTORE JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x4816 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH2 0x4837 PUSH2 0x482F PUSH2 0x1F10 JUMP JUMPDEST DUP6 ADDRESS DUP6 PUSH2 0x49BB JUMP JUMPDEST PUSH2 0x4841 DUP4 DUP3 PUSH2 0x4CAA JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDCBC1C05240F31FF3AD067EF1EE35CE4997762752E3A095284754544F4C709D7 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0x4816 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH2 0x2035 PUSH2 0x4B44 JUMP JUMPDEST PUSH2 0x489F PUSH2 0x4B44 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x48FB 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 0x491F SWAP2 SWAP1 PUSH2 0x62A6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x498D 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 0x49B1 SWAP2 SWAP1 PUSH2 0x65D5 JUMP JUMPDEST POP PUSH2 0x135E DUP2 PUSH2 0x3F38 JUMP JUMPDEST PUSH2 0x49C9 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x50F4 JUMP JUMPDEST PUSH2 0x1A79 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH0 PUSH2 0x49FA PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x4B2F JUMPI PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x4A59 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 0x4A7D SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH2 0x4A87 DUP4 DUP7 PUSH2 0x60F5 JUMP JUMPDEST GT ISZERO PUSH2 0x4AA6 JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xB460AF94 PUSH2 0x4AC0 DUP5 DUP8 PUSH2 0x60F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4B08 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 0x4B2C SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST POP POP JUMPDEST PUSH2 0x4B3C DUP7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x5161 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x4B4C PUSH2 0x4C91 JUMP JUMPDEST PUSH2 0x18F0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4B71 PUSH2 0x4B44 JUMP JUMPDEST PUSH2 0x2050 DUP3 DUP3 PUSH2 0x4DBD JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP3 GT ISZERO PUSH2 0x41AB JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x60 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH0 PUSH1 0x1F DUP4 LT ISZERO PUSH2 0x4BC0 JUMPI POP PUSH1 0x1 PUSH2 0x153F JUMP JUMPDEST DUP2 ISZERO PUSH2 0x4BE9 JUMPI PUSH1 0x3C DUP4 LT ISZERO PUSH2 0x4BD7 JUMPI POP PUSH1 0x2 PUSH2 0x153F JUMP JUMPDEST DUP3 PUSH2 0x4BE1 DUP2 PUSH2 0x66DF JUMP JUMPDEST SWAP4 POP POP PUSH2 0x4BFA JUMP JUMPDEST PUSH1 0x3B DUP4 LT ISZERO PUSH2 0x4BFA JUMPI POP PUSH1 0x2 PUSH2 0x153F JUMP JUMPDEST PUSH1 0x5A DUP4 LT PUSH2 0x4C84 JUMPI PUSH1 0x78 DUP4 LT PUSH2 0x4C7D JUMPI PUSH1 0x97 DUP4 LT PUSH2 0x4C76 JUMPI PUSH1 0xB5 DUP4 LT PUSH2 0x4C6F JUMPI PUSH1 0xD4 DUP4 LT PUSH2 0x4C68 JUMPI PUSH1 0xF3 DUP4 LT PUSH2 0x4C61 JUMPI PUSH2 0x111 DUP4 LT PUSH2 0x4C5A JUMPI PUSH2 0x130 DUP4 LT PUSH2 0x4C53 JUMPI PUSH2 0x14E DUP4 LT PUSH2 0x4C4C JUMPI PUSH1 0xC PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0xB PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0xA PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0x9 PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0x8 PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0x7 PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0x6 PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0x5 PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0x4 PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0x3 JUMPDEST PUSH1 0xFF AND SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x4C9A PUSH2 0x39F5 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4CD3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH2 0x2050 PUSH0 DUP4 DUP4 PUSH2 0x46FE JUMP JUMPDEST PUSH0 PUSH2 0x153F PUSH2 0x7C0 DUP4 PUSH2 0x324D JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0x1A97 JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH2 0x227B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4D2D JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH2 0x2050 DUP3 PUSH0 DUP4 PUSH2 0x46FE JUMP JUMPDEST PUSH0 PUSH2 0x4D41 PUSH2 0x39F5 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x4D6E JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x135E JUMPI DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x686A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH2 0x4DC5 PUSH2 0x4B44 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x684A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 PUSH2 0x4DFE DUP5 DUP3 PUSH2 0x6738 JUMP JUMPDEST POP PUSH1 0x4 DUP2 ADD PUSH2 0x1A79 DUP4 DUP3 PUSH2 0x6738 JUMP JUMPDEST PUSH0 PUSH2 0x4E3A PUSH2 0x4E1A DUP4 PUSH2 0x5208 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4E35 JUMPI POP PUSH0 DUP5 DUP1 PUSH2 0x4E30 JUMPI PUSH2 0x4E30 PUSH2 0x65F0 JUMP JUMPDEST DUP7 DUP9 MULMOD GT JUMPDEST ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH2 0x4E45 DUP7 DUP7 DUP7 PUSH2 0x5234 JUMP JUMPDEST PUSH2 0x29EB SWAP2 SWAP1 PUSH2 0x60C8 JUMP JUMPDEST PUSH0 CALLDATASIZE PUSH1 0x14 DUP1 DUP3 LT DUP1 ISZERO SWAP1 PUSH2 0x4E67 JUMPI POP PUSH2 0x4E67 CALLER PUSH2 0x2078 JUMP JUMPDEST ISZERO PUSH2 0x4E8D JUMPI PUSH2 0x4E7A CALLDATASIZE DUP3 DUP5 SUB DUP2 PUSH0 PUSH2 0x6249 JUMP JUMPDEST PUSH2 0x4E83 SWAP2 PUSH2 0x67F2 JUMP JUMPDEST PUSH1 0x60 SHR SWAP3 POP POP POP SWAP1 JUMP JUMPDEST CALLER SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x688A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x2840 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x4EFF JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x4EF3 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLDATASIZE PUSH0 DUP2 PUSH1 0x14 DUP1 DUP3 LT DUP1 ISZERO SWAP1 PUSH2 0x4F24 JUMPI POP PUSH2 0x4F24 CALLER PUSH2 0x2078 JUMP JUMPDEST ISZERO PUSH2 0x4F41 JUMPI PUSH2 0x4F37 DUP2 DUP4 SUB PUSH0 CALLDATASIZE DUP2 PUSH2 0x6249 JUMP JUMPDEST SWAP4 POP SWAP4 POP POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH0 CALLDATASIZE PUSH2 0x4F37 JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x4F74 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 0x1754 JUMP JUMPDEST PUSH0 PUSH2 0x4F80 DUP6 DUP5 DUP7 PUSH2 0x52E4 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x4FA1 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x4FA1 JUMPI POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x4FB6 JUMPI PUSH2 0x4FAE PUSH2 0x52F9 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1A97 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4FE0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x4FF3 JUMPI PUSH2 0x4FEE PUSH2 0x5312 JUMP JUMPDEST PUSH2 0x500C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x5020 PUSH1 0x40 MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x4 DUP2 MSTORE PUSH1 0x24 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0xE0 SHL OR SWAP1 MSTORE SWAP1 SWAP2 POP PUSH0 SWAP1 DUP2 SWAP1 PUSH2 0x505B SWAP1 DUP8 SWAP1 PUSH2 0x531D JUMP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x5069 DUP4 PUSH1 0x40 MSTORE JUMP JUMPDEST DUP2 DUP1 ISZERO PUSH2 0x5077 JUMPI POP PUSH1 0x20 RETURNDATASIZE LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x5084 JUMPI POP PUSH1 0xFF DUP2 GT ISZERO JUMPDEST PUSH2 0x508F JUMPI PUSH0 PUSH0 PUSH2 0x5093 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST SWAP5 POP SWAP5 POP POP POP POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH2 0x50A8 DUP3 PUSH2 0x533E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x50EC JUMPI PUSH2 0x2254 DUP3 DUP3 PUSH2 0x53A1 JUMP JUMPDEST PUSH2 0x2050 PUSH2 0x5423 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x5150 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x5144 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5185 JUMPI PUSH2 0x5185 DUP4 DUP7 DUP4 PUSH2 0x42E3 JUMP JUMPDEST PUSH2 0x518F DUP4 DUP3 PUSH2 0x4D04 JUMP JUMPDEST PUSH2 0x51A1 PUSH2 0x519A PUSH2 0x1F10 JUMP JUMPDEST DUP6 DUP5 PUSH2 0x42AE JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFBDE797D201C681B91056529119E0B02407C7BB96A4A2C75C01FC9667232C8DB DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x51F9 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x521D JUMPI PUSH2 0x521D PUSH2 0x5770 JUMP JUMPDEST PUSH2 0x5227 SWAP2 SWAP1 PUSH2 0x6828 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x1 EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x5241 DUP7 DUP7 PUSH2 0x5442 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x5265 JUMPI DUP4 DUP2 DUP2 PUSH2 0x525B JUMPI PUSH2 0x525B PUSH2 0x65F0 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x1A97 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x527C JUMPI PUSH2 0x527C PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x545E JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 DUP9 GAS CALL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 PUSH0 DUP6 MLOAD PUSH1 0x20 DUP8 ADD DUP9 GAS STATICCALL SWAP3 POP PUSH0 MLOAD SWAP2 POP PUSH1 0x20 MLOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x5373 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x688A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x53AE DUP5 DUP5 PUSH2 0x546F JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x53CF JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x53CF JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x53E4 JUMPI PUSH2 0x53DC PUSH2 0x52F9 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x153F JUMP JUMPDEST DUP1 ISZERO PUSH2 0x540E 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 0x1754 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x4FF3 JUMPI PUSH2 0x541C PUSH2 0x5312 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x18F0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x3C02 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x54A9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1A97 DUP3 PUSH2 0x5482 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 PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x1A97 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x54B2 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x5529 JUMPI PUSH2 0x5529 PUSH2 0x54F2 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 GT ISZERO PUSH2 0x5548 JUMPI PUSH2 0x5548 PUSH2 0x54F2 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x5576 JUMPI PUSH2 0x5576 PUSH2 0x54F2 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP6 LT ISZERO PUSH2 0x558D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x55B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1A97 DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x552F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x135E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x55E8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x55FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5609 DUP7 DUP3 DUP8 ADD PUSH2 0x55A4 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5624 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5630 DUP7 DUP3 DUP8 ADD PUSH2 0x55A4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x5641 DUP2 PUSH2 0x55C2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x565C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x5673 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5689 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x56A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x56BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x56C8 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x56E2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x56EE DUP8 DUP3 DUP9 ADD PUSH2 0x5663 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x5702 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x135E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x572F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x573A DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x574A DUP2 PUSH2 0x570D JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5765 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1A97 DUP2 PUSH2 0x55C2 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x57A0 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0x153F DUP3 DUP5 PUSH2 0x5784 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x57C3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x57CE DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x57EC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5802 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x56A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x582D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x5838 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x5848 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5869 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5875 DUP9 DUP3 DUP10 ADD PUSH2 0x57DC JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x135E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x58A4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x58AF DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x574A DUP2 PUSH2 0x5886 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x58D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x57CE DUP2 PUSH2 0x570D JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x58EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x58FA DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x590A DUP2 PUSH2 0x570D JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x591A DUP2 PUSH2 0x570D JUMP JUMPDEST SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH2 0x5931 DUP2 PUSH2 0x55C2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5951 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x595C DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x596C DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5990 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x599B DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x59AB DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x5702 DUP2 PUSH2 0x5886 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x59D4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x59DF DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x59F9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5A05 DUP7 DUP3 DUP8 ADD PUSH2 0x57DC JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5A24 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x5A2F DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x5A3F DUP2 PUSH2 0x570D JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x5641 DUP2 PUSH2 0x570D JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5A60 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5A6B DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5A85 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x5A95 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5AA4 DUP6 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x552F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5AC1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x5ACC DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x5ADC DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 SWAP7 SWAP4 SWAP6 POP POP POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD SWAP2 PUSH1 0x60 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x5B06 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH2 0x5B11 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD PUSH2 0x5B21 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP6 SWAP9 SWAP6 SWAP8 POP POP POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP4 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP4 PUSH1 0x80 DUP3 ADD CALLDATALOAD SWAP4 POP PUSH1 0xA0 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5B57 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x574A DUP2 PUSH2 0x55C2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5B7C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x5B87 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x5B97 DUP2 PUSH2 0x570D JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x5BA7 DUP2 PUSH2 0x570D JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP3 SWAP4 PUSH1 0x60 ADD CALLDATALOAD SWAP3 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5BC7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1A97 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x5BF1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x5BFC DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x5C0C DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x5C1C DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP5 SWAP8 SWAP4 SWAP7 POP SWAP4 SWAP5 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP5 POP PUSH1 0x80 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x135E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5C51 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x574A DUP2 PUSH2 0x5C34 JUMP JUMPDEST DUP2 MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x80 DUP4 ADD SWAP2 PUSH2 0x5C84 SWAP1 DUP5 ADD DUP3 PUSH2 0x5784 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x40 DUP5 ADD MLOAD AND PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x60 DUP5 ADD MLOAD AND PUSH1 0x60 DUP4 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x5CC5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5CDA JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5CE6 DUP9 DUP3 DUP10 ADD PUSH2 0x57DC JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5D04 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5D10 DUP9 DUP3 DUP10 ADD PUSH2 0x57DC JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x5931 DUP2 PUSH2 0x55C2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5D36 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x5D41 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5D68 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x5D7A DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x5641 DUP2 PUSH2 0x55C2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5D9D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5DB2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5DBE DUP8 DUP3 DUP9 ADD PUSH2 0x57DC JUMP JUMPDEST SWAP1 SWAP6 POP SWAP4 POP POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5DDC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5DE8 DUP8 DUP3 DUP9 ADD PUSH2 0x57DC JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5E07 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x5E12 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x5ADC DUP2 PUSH2 0x570D JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5E33 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5E3E DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP2 POP PUSH2 0x5E4C PUSH1 0x20 DUP5 ADD PUSH2 0x5482 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5E66 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x574A DUP2 PUSH2 0x5886 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5E8B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x5E96 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5EB0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x56EE DUP8 DUP3 DUP9 ADD PUSH2 0x57DC JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 ADD SWAP1 POP DUP3 MLOAD DUP3 MSTORE PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP4 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP4 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP4 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP4 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP4 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP4 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP4 ADD MLOAD PUSH2 0x5F40 PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP4 ADD MLOAD PUSH2 0x541C PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5F6C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5F77 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x574A DUP2 PUSH2 0x55C2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5F99 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x5FA4 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x5FB4 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP2 POP PUSH2 0x5FC2 PUSH1 0x40 DUP6 ADD PUSH2 0x5482 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5FDD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x5FE8 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x6002 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5A05 DUP7 DUP3 DUP8 ADD PUSH2 0x5663 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 0x6065 JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x6050 DUP6 DUP4 MLOAD PUSH2 0x54B2 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x6034 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6082 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x608D DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x574A DUP2 PUSH2 0x5C34 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x60AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x153F JUMPI PUSH2 0x153F PUSH2 0x60B4 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x60EF JUMPI PUSH2 0x60EF PUSH2 0x60B4 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x153F JUMPI PUSH2 0x153F PUSH2 0x60B4 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x611C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x613A 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 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0x40 DUP2 ADD PUSH2 0x1A97 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x5784 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 0x40 DUP1 DUP3 MSTORE DUP2 ADD DUP4 SWAP1 MSTORE PUSH0 PUSH1 0x60 PUSH1 0x5 DUP6 SWAP1 SHL DUP4 ADD DUP2 ADD SWAP1 DUP4 ADD DUP7 DUP4 PUSH1 0x1E NOT CALLDATASIZE DUP4 SWAP1 SUB ADD JUMPDEST DUP9 DUP3 LT ISZERO PUSH2 0x6216 JUMPI DUP7 DUP6 SUB PUSH1 0x5F NOT ADD DUP5 MSTORE DUP3 CALLDATALOAD DUP2 DUP2 SLT PUSH2 0x61C7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP11 ADD PUSH1 0x20 DUP2 ADD SWAP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x61E2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATASIZE SUB DUP3 SGT ISZERO PUSH2 0x61F0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x61FB DUP8 DUP3 DUP5 PUSH2 0x615D JUMP JUMPDEST SWAP7 POP POP POP PUSH1 0x20 DUP4 ADD SWAP3 POP PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH2 0x61A9 JUMP JUMPDEST POP POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x20 DUP6 ADD MSTORE POP SWAP1 POP PUSH2 0x1F4A JUMP JUMPDEST PUSH1 0xFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x153F JUMPI PUSH2 0x153F PUSH2 0x60B4 JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x6257 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x6263 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x541C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x62B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1A97 DUP2 PUSH2 0x55C2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP DUP3 SLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP4 MSTORE PUSH2 0x6307 PUSH1 0x20 DUP5 ADD PUSH1 0xFF DUP4 PUSH1 0x20 SHR AND PUSH2 0x5784 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 PUSH1 0x28 SHR AND PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 PUSH1 0x88 SHR AND PUSH1 0x60 DUP5 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH0 PUSH2 0x6345 PUSH1 0x40 DUP4 ADD DUP6 DUP8 PUSH2 0x615D JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x3C02 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT DUP1 ISZERO PUSH2 0x6383 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x638C PUSH2 0x5506 JUMP JUMPDEST DUP3 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x63F9 PUSH2 0x140 DUP5 ADD PUSH2 0x635D JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x640C PUSH2 0x160 DUP5 ADD PUSH2 0x635D JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x6442 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x645B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x56A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x647D DUP3 DUP6 PUSH2 0x5784 JUMP JUMPDEST PUSH2 0x1A97 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x5784 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x64C5 JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x64A9 JUMPI PUSH2 0x64A9 PUSH2 0x60B4 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x64B7 JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x648E JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x64DB JUMPI POP PUSH1 0x1 PUSH2 0x153F JUMP JUMPDEST DUP2 PUSH2 0x64E7 JUMPI POP PUSH0 PUSH2 0x153F JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x64FD JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x6507 JUMPI PUSH2 0x6523 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x153F JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x6518 JUMPI PUSH2 0x6518 PUSH2 0x60B4 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x153F JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x6546 JUMPI POP DUP2 DUP2 EXP PUSH2 0x153F JUMP JUMPDEST PUSH2 0x6552 PUSH0 NOT DUP5 DUP5 PUSH2 0x648A JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x6565 JUMPI PUSH2 0x6565 PUSH2 0x60B4 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A97 PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x64CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x65B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x65C4 DUP2 PUSH2 0x5886 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x574A DUP2 PUSH2 0x570D JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x65E5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1A97 DUP2 PUSH2 0x5886 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH2 0x6612 JUMPI PUSH2 0x6612 PUSH2 0x65F0 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x6636 JUMPI PUSH2 0x6636 PUSH2 0x60B4 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xB DUP2 DUP2 SIGNEXTEND SWAP1 DUP4 SWAP1 SIGNEXTEND ADD PUSH12 0x7FFFFFFFFFFFFFFFFFFFFFFF DUP2 SGT PUSH12 0x7FFFFFFFFFFFFFFFFFFFFFFF NOT DUP3 SLT OR ISZERO PUSH2 0x153F JUMPI PUSH2 0x153F PUSH2 0x60B4 JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP3 AND PUSH4 0xFFFFFFFF DUP2 SUB PUSH2 0x6690 JUMPI PUSH2 0x6690 PUSH2 0x60B4 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP4 AND DUP1 PUSH2 0x66AE JUMPI PUSH2 0x66AE PUSH2 0x65F0 JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND MUL SWAP1 DUP2 AND SWAP1 DUP2 DUP2 EQ PUSH2 0x541C JUMPI PUSH2 0x541C PUSH2 0x60B4 JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x66ED JUMPI PUSH2 0x66ED PUSH2 0x60B4 JUMP JUMPDEST POP PUSH0 NOT ADD SWAP1 JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x2254 JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x6719 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1CC1 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x6725 JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x6751 JUMPI PUSH2 0x6751 PUSH2 0x54F2 JUMP JUMPDEST PUSH2 0x6765 DUP2 PUSH2 0x675F DUP5 SLOAD PUSH2 0x6108 JUMP JUMPDEST DUP5 PUSH2 0x66F4 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x6797 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x6780 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 0x1CC1 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x67C6 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x67A6 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x67E3 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 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x14 DUP5 LT ISZERO PUSH2 0x541C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x14 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x683A JUMPI PUSH2 0x683A PUSH2 0x65F0 JUMP JUMPDEST DUP1 PUSH1 0xFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID MSTORE 0xC6 ORIGIN SELFBALANCE RJUMPI 0xF47D 0xB1 SWAP14 TLOAD RJUMP 0x4600 ADDRESS 0xC4 SWAP8 CREATE PUSH8 0xCA4CEBF71BA98EEA 0xDA 0xBE KECCAK256 0xBA 0xCE STOP 0xC7 CREATE2 SDIV 0xB2 RETURN PUSH18 0xAE2175EE4913F4499E1F2633A7B5936321EE DATALOADN 0xCDAE 0xB6 GT MLOAD DUP2 0xD2 CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBC0DFF660C705EC490383FFA 0xFC SWAP15 DUP15 GASPRICE 0xB4 PUSH18 0x4559F9EC8567C5380D4AD2DFF5AF00A26469 PUSH17 0x667358221220AE96FBAF08E4D5195A4947 DUP2 ISZERO 0xCF GASLIMIT 0xA9 0xC6 0x25 JUMP 0x27 SWAP7 ISZERO 0xAD DUP10 0xCE CALLVALUE 0xB7 EXTCODECOPY PUSH5 0x389BC36473 PUSH16 0x6C634300081E00330000000000000000 ","sourceMap":"2995:7847:109:-:0;;;;;1084:4:76;1041:48;;3351:126:109;;;;;;;;2995:7847;3351:126;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1644:37:42;;;;;8892:25:110;::::1;;::::0;3430:17:109;3449:11;8923:22:110::1;:20;:22::i;:::-;8777:173:::0;;3351:126:109;;2995:7847;;7709:422:75;3147:66;7898:15;;;;;;;7894:76;;;7936:23;;-1:-1:-1;;;7936:23:75;;;;;;;;;;;7894:76;7983:14;;-1:-1:-1;;;;;7983:14:75;;;:34;7979:146;;8033:33;;-1:-1:-1;;;;;;8033:33:75;-1:-1:-1;;;;;8033:33:75;;;;;8085:29;;705:50:125;;;8085:29:75;;693:2:125;678:18;8085:29:75;;;;;;;7979:146;7758:373;7709:422::o;14:131:125:-;-1:-1:-1;;;;;89:31:125;;79:42;;69:70;;135:1;132;125:12;150:406;250:6;258;311:2;299:9;290:7;286:23;282:32;279:52;;;327:1;324;317:12;279:52;359:9;353:16;378:31;403:5;378:31;:::i;:::-;478:2;463:18;;457:25;428:5;;-1:-1:-1;491:33:125;457:25;491:33;:::i;:::-;543:7;533:17;;;150:406;;;;;:::o;561:200::-;2995:7847:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@$CashFlowLenderStorageLocation_37487":{"entryPoint":null,"id":37487,"parameterSlots":0,"returnSlots":1},"@$JAN_1ST_2025_37462":{"entryPoint":null,"id":37462,"parameterSlots":0,"returnSlots":1},"@$SECONDS_PER_DAY_37470":{"entryPoint":null,"id":37470,"parameterSlots":0,"returnSlots":1},"@$__CashFlowLender_init_37563":{"entryPoint":9935,"id":37563,"parameterSlots":5,"returnSlots":0},"@$__CashFlowLender_init_unchained_37576":{"entryPoint":8874,"id":37576,"parameterSlots":1,"returnSlots":0},"@$__Context_init_38160":{"entryPoint":10534,"id":38160,"parameterSlots":0,"returnSlots":0},"@$__Context_init_unchained_38169":{"entryPoint":null,"id":38169,"parameterSlots":0,"returnSlots":0},"@$__ERC20_init_37995":{"entryPoint":10740,"id":37995,"parameterSlots":4,"returnSlots":0},"@$__ERC20_init_unchained_38010":{"entryPoint":14611,"id":38010,"parameterSlots":4,"returnSlots":0},"@$__ERC4626_init_37893":{"entryPoint":8865,"id":37893,"parameterSlots":1,"returnSlots":0},"@$__ERC4626_init_unchained_37906":{"entryPoint":8245,"id":37906,"parameterSlots":1,"returnSlots":0},"@$_approve_38094":{"entryPoint":9363,"id":38094,"parameterSlots":3,"returnSlots":0},"@$_approve_38115":{"entryPoint":7428,"id":38115,"parameterSlots":4,"returnSlots":0},"@$_authorizeUpgrade_37618":{"entryPoint":null,"id":37618,"parameterSlots":1,"returnSlots":0},"@$_balance_37670":{"entryPoint":10615,"id":37670,"parameterSlots":0,"returnSlots":1},"@$_burn_38076":{"entryPoint":12974,"id":38076,"parameterSlots":2,"returnSlots":0},"@$_changeDebt_37796":{"entryPoint":11955,"id":37796,"parameterSlots":4,"returnSlots":1},"@$_checkCanForward_37856":{"entryPoint":12984,"id":37856,"parameterSlots":3,"returnSlots":0},"@$_checkInitializing_38178":{"entryPoint":null,"id":38178,"parameterSlots":0,"returnSlots":0},"@$_checkNotDelegated_38151":{"entryPoint":6376,"id":38151,"parameterSlots":0,"returnSlots":0},"@$_checkProxy_38142":{"entryPoint":6788,"id":38142,"parameterSlots":0,"returnSlots":0},"@$_computeCalendarMonth_37705":{"entryPoint":8235,"id":37705,"parameterSlots":1,"returnSlots":1},"@$_contextSuffixLength_37631":{"entryPoint":null,"id":37631,"parameterSlots":0,"returnSlots":1},"@$_convertToAssets_37946":{"entryPoint":11768,"id":37946,"parameterSlots":2,"returnSlots":1},"@$_convertToShares_37926":{"entryPoint":9654,"id":37926,"parameterSlots":2,"returnSlots":1},"@$_decimalsOffset_37980":{"entryPoint":null,"id":37980,"parameterSlots":0,"returnSlots":1},"@$_deinvest_37767":{"entryPoint":8883,"id":37767,"parameterSlots":1,"returnSlots":1},"@$_deposit_37967":{"entryPoint":10050,"id":37967,"parameterSlots":4,"returnSlots":0},"@$_disableInitializers_38187":{"entryPoint":14412,"id":38187,"parameterSlots":0,"returnSlots":0},"@$_ensureLiquidBalance_37818":{"entryPoint":10542,"id":37818,"parameterSlots":1,"returnSlots":1},"@$_getInitializedVersion_38200":{"entryPoint":8276,"id":38200,"parameterSlots":0,"returnSlots":1},"@$_getMonth_37689":{"entryPoint":11737,"id":37689,"parameterSlots":2,"returnSlots":1},"@$_getTargetConfig_37606":{"entryPoint":9674,"id":37606,"parameterSlots":1,"returnSlots":1},"@$_increaseDebtAfterNewPolicy_37838":{"entryPoint":10062,"id":37838,"parameterSlots":3,"returnSlots":0},"@$_initializableStorageSlot_38226":{"entryPoint":null,"id":38226,"parameterSlots":0,"returnSlots":1},"@$_isInitializing_38213":{"entryPoint":11759,"id":38213,"parameterSlots":0,"returnSlots":1},"@$_makeSlotIndex_37724":{"entryPoint":6796,"id":37724,"parameterSlots":2,"returnSlots":1},"@$_makeTargetSlot_37747":{"entryPoint":7998,"id":37747,"parameterSlots":3,"returnSlots":1},"@$_mint_38061":{"entryPoint":11779,"id":38061,"parameterSlots":2,"returnSlots":0},"@$_msgData_37657":{"entryPoint":7440,"id":37657,"parameterSlots":0,"returnSlots":1},"@$_msgSender_37644":{"entryPoint":7151,"id":37644,"parameterSlots":0,"returnSlots":1},"@$_policyPool_37479":{"entryPoint":null,"id":37479,"parameterSlots":0,"returnSlots":1},"@$_setYieldVault_37589":{"entryPoint":9665,"id":37589,"parameterSlots":1,"returnSlots":0},"@$_spendAllowance_38133":{"entryPoint":10624,"id":38133,"parameterSlots":3,"returnSlots":0},"@$_transfer_38028":{"entryPoint":14315,"id":38028,"parameterSlots":3,"returnSlots":0},"@$_update_38046":{"entryPoint":8777,"id":38046,"parameterSlots":3,"returnSlots":0},"@$_withdraw_37880":{"entryPoint":9350,"id":37880,"parameterSlots":5,"returnSlots":0},"@$forwardNewPolicyWrapper_37502":{"entryPoint":10087,"id":37502,"parameterSlots":1,"returnSlots":0},"@$forwardResolvePolicyWrapper_37511":{"entryPoint":7160,"id":37511,"parameterSlots":1,"returnSlots":0},"@$initializer_37529":{"entryPoint":8018,"id":37529,"parameterSlots":0,"returnSlots":0},"@$notDelegated_37523":{"entryPoint":null,"id":37523,"parameterSlots":0,"returnSlots":0},"@$onlyInitializing_37544":{"entryPoint":9646,"id":37544,"parameterSlots":0,"returnSlots":0},"@$onlyPolicyPool_37493":{"entryPoint":14326,"id":37493,"parameterSlots":0,"returnSlots":0},"@$onlyProxy_37517":{"entryPoint":null,"id":37517,"parameterSlots":0,"returnSlots":0},"@$reinitializer_37538":{"entryPoint":9191,"id":37538,"parameterSlots":1,"returnSlots":0},"@OWN_POLICY_SELECTOR_38304":{"entryPoint":null,"id":38304,"parameterSlots":0,"returnSlots":0},"@SLOTSIZE_CALENDAR_MONTH_38312":{"entryPoint":null,"id":38312,"parameterSlots":0,"returnSlots":0},"@UPGRADE_INTERFACE_VERSION_23454":{"entryPoint":null,"id":23454,"parameterSlots":0,"returnSlots":0},"@_38230":{"entryPoint":null,"id":38230,"parameterSlots":0,"returnSlots":0},"@__CashFlowLender_init_38700":{"entryPoint":14877,"id":38700,"parameterSlots":3,"returnSlots":0},"@__CashFlowLender_init_unchained_38729":{"entryPoint":18583,"id":38729,"parameterSlots":1,"returnSlots":0},"@__Context_init_18639":{"entryPoint":null,"id":18639,"parameterSlots":0,"returnSlots":0},"@__Context_init_unchained_18645":{"entryPoint":null,"id":18645,"parameterSlots":0,"returnSlots":0},"@__ERC20_init_16064":{"entryPoint":19305,"id":16064,"parameterSlots":2,"returnSlots":0},"@__ERC20_init_unchained_16092":{"entryPoint":19901,"id":16092,"parameterSlots":2,"returnSlots":0},"@__ERC4626_init_16880":{"entryPoint":18575,"id":16880,"parameterSlots":1,"returnSlots":0},"@__ERC4626_init_unchained_16918":{"entryPoint":17831,"id":16918,"parameterSlots":1,"returnSlots":0},"@__hh_exposed_bytecode_marker_37424":{"entryPoint":null,"id":37424,"parameterSlots":0,"returnSlots":0},"@_approve_16496":{"entryPoint":15771,"id":16496,"parameterSlots":3,"returnSlots":0},"@_approve_16564":{"entryPoint":17280,"id":16564,"parameterSlots":4,"returnSlots":0},"@_authorizeUpgrade_39177":{"entryPoint":null,"id":39177,"parameterSlots":1,"returnSlots":0},"@_balance_39440":{"entryPoint":14724,"id":39440,"parameterSlots":0,"returnSlots":1},"@_burn_16478":{"entryPoint":19716,"id":16478,"parameterSlots":2,"returnSlots":0},"@_changeDebt_39772":{"entryPoint":16815,"id":39772,"parameterSlots":4,"returnSlots":1},"@_checkCanForward_39937":{"entryPoint":15376,"id":39937,"parameterSlots":3,"returnSlots":0},"@_checkInitializing_23342":{"entryPoint":19268,"id":23342,"parameterSlots":0,"returnSlots":0},"@_checkNonPayable_23119":{"entryPoint":21539,"id":23119,"parameterSlots":0,"returnSlots":0},"@_checkNotDelegated_23548":{"entryPoint":15862,"id":23548,"parameterSlots":0,"returnSlots":0},"@_checkProxy_23532":{"entryPoint":16581,"id":23532,"parameterSlots":0,"returnSlots":0},"@_computeCalendarMonth_39607":{"entryPoint":17610,"id":39607,"parameterSlots":1,"returnSlots":1},"@_contextSuffixLength_15991":{"entryPoint":null,"id":15991,"parameterSlots":0,"returnSlots":1},"@_contextSuffixLength_39395":{"entryPoint":null,"id":39395,"parameterSlots":0,"returnSlots":1},"@_convertToAssets_17447":{"entryPoint":15044,"id":17447,"parameterSlots":2,"returnSlots":1},"@_convertToShares_17419":{"entryPoint":15784,"id":17419,"parameterSlots":2,"returnSlots":1},"@_decimalsOffset_17545":{"entryPoint":null,"id":17545,"parameterSlots":0,"returnSlots":1},"@_deinvest_39712":{"entryPoint":15935,"id":39712,"parameterSlots":1,"returnSlots":1},"@_deposit_17487":{"entryPoint":18468,"id":17487,"parameterSlots":4,"returnSlots":0},"@_disableInitializers_23388":{"entryPoint":19768,"id":23388,"parameterSlots":0,"returnSlots":0},"@_ensureLiquidBalance_39830":{"entryPoint":15283,"id":39830,"parameterSlots":1,"returnSlots":1},"@_getCashFlowLenderStorage_38368":{"entryPoint":null,"id":38368,"parameterSlots":0,"returnSlots":1},"@_getERC20Storage_16048":{"entryPoint":null,"id":16048,"parameterSlots":0,"returnSlots":1},"@_getERC4626Storage_16830":{"entryPoint":null,"id":16830,"parameterSlots":0,"returnSlots":1},"@_getInitializableStorage_23433":{"entryPoint":14837,"id":23433,"parameterSlots":0,"returnSlots":1},"@_getInitializedVersion_23399":{"entryPoint":18150,"id":23399,"parameterSlots":0,"returnSlots":1},"@_getMonth_39531":{"entryPoint":19374,"id":39531,"parameterSlots":2,"returnSlots":1},"@_getTargetConfig_38911":{"entryPoint":15131,"id":38911,"parameterSlots":1,"returnSlots":1},"@_increaseDebtAfterNewPolicy_39889":{"entryPoint":15634,"id":39889,"parameterSlots":3,"returnSlots":0},"@_initializableStorageSlot_23419":{"entryPoint":null,"id":23419,"parameterSlots":0,"returnSlots":1},"@_isInitializing_23410":{"entryPoint":19601,"id":23410,"parameterSlots":0,"returnSlots":1},"@_makeSlotIndex_39632":{"entryPoint":16723,"id":39632,"parameterSlots":2,"returnSlots":1},"@_makeTargetSlot_39667":{"entryPoint":17538,"id":39667,"parameterSlots":3,"returnSlots":1},"@_mint_16445":{"entryPoint":19626,"id":16445,"parameterSlots":2,"returnSlots":0},"@_msgData_15981":{"entryPoint":20235,"id":15981,"parameterSlots":0,"returnSlots":2},"@_msgData_18663":{"entryPoint":null,"id":18663,"parameterSlots":0,"returnSlots":2},"@_msgData_39423":{"entryPoint":17507,"id":39423,"parameterSlots":0,"returnSlots":2},"@_msgSender_15939":{"entryPoint":20047,"id":15939,"parameterSlots":0,"returnSlots":1},"@_msgSender_18654":{"entryPoint":null,"id":18654,"parameterSlots":0,"returnSlots":1},"@_msgSender_39409":{"entryPoint":15367,"id":39409,"parameterSlots":0,"returnSlots":1},"@_safeTransferFrom_25392":{"entryPoint":20724,"id":25392,"parameterSlots":5,"returnSlots":1},"@_safeTransfer_25367":{"entryPoint":20137,"id":25367,"parameterSlots":4,"returnSlots":1},"@_setImplementation_22899":{"entryPoint":21310,"id":22899,"parameterSlots":1,"returnSlots":0},"@_setYieldVault_38811":{"entryPoint":16184,"id":38811,"parameterSlots":1,"returnSlots":0},"@_spendAllowance_16612":{"entryPoint":17123,"id":16612,"parameterSlots":3,"returnSlots":0},"@_transfer_16320":{"entryPoint":17198,"id":16320,"parameterSlots":3,"returnSlots":0},"@_tryGetAssetDecimals_16996":{"entryPoint":20500,"id":16996,"parameterSlots":1,"returnSlots":2},"@_update_16412":{"entryPoint":18174,"id":16412,"parameterSlots":3,"returnSlots":0},"@_upgradeToAndCallUUPS_23599":{"entryPoint":17962,"id":23599,"parameterSlots":2,"returnSlots":0},"@_withdraw_17537":{"entryPoint":20833,"id":17537,"parameterSlots":5,"returnSlots":0},"@_withdraw_40601":{"entryPoint":18929,"id":40601,"parameterSlots":5,"returnSlots":0},"@addTarget_38979":{"entryPoint":11171,"id":38979,"parameterSlots":4,"returnSlots":0},"@allowance_16217":{"entryPoint":12901,"id":16217,"parameterSlots":2,"returnSlots":1},"@approve_16241":{"entryPoint":6331,"id":16241,"parameterSlots":2,"returnSlots":1},"@asset_17037":{"entryPoint":7952,"id":17037,"parameterSlots":0,"returnSlots":1},"@balanceOf_16169":{"entryPoint":8827,"id":16169,"parameterSlots":1,"returnSlots":1},"@bubbleRevert_26962":{"entryPoint":21266,"id":26962,"parameterSlots":0,"returnSlots":0},"@callNoReturn_26845":{"entryPoint":21220,"id":26845,"parameterSlots":3,"returnSlots":1},"@cashOutPayouts_40776":{"entryPoint":6814,"id":40776,"parameterSlots":5,"returnSlots":0},"@cashWithdrawable_40482":{"entryPoint":11789,"id":40482,"parameterSlots":0,"returnSlots":1},"@convertToAssets_17087":{"entryPoint":5869,"id":17087,"parameterSlots":1,"returnSlots":1},"@convertToShares_17071":{"entryPoint":11748,"id":17071,"parameterSlots":1,"returnSlots":1},"@currentDebt_40367":{"entryPoint":null,"id":40367,"parameterSlots":0,"returnSlots":1},"@decimals_17018":{"entryPoint":7368,"id":17018,"parameterSlots":0,"returnSlots":1},"@delegatecallNoReturn_26924":{"entryPoint":21615,"id":26924,"parameterSlots":2,"returnSlots":1},"@depositIntoYieldVault_40693":{"entryPoint":10342,"id":40693,"parameterSlots":1,"returnSlots":0},"@deposit_17253":{"entryPoint":8793,"id":17253,"parameterSlots":2,"returnSlots":1},"@forwardNewPoliciesV3_40035":{"entryPoint":5880,"id":40035,"parameterSlots":4,"returnSlots":0},"@forwardNewPolicyBatch_40232":{"entryPoint":12995,"id":40232,"parameterSlots":3,"returnSlots":1},"@forwardNewPolicyV3_39987":{"entryPoint":12208,"id":39987,"parameterSlots":4,"returnSlots":1},"@forwardNewPolicy_40102":{"entryPoint":7507,"id":40102,"parameterSlots":3,"returnSlots":1},"@forwardResolvePolicyBatch_40349":{"entryPoint":13809,"id":40349,"parameterSlots":3,"returnSlots":1},"@forwardResolvePolicy_40266":{"entryPoint":9374,"id":40266,"parameterSlots":3,"returnSlots":1},"@functionCallWithValue_25828":{"entryPoint":20296,"id":25828,"parameterSlots":3,"returnSlots":1},"@functionCall_25741":{"entryPoint":17525,"id":25741,"parameterSlots":2,"returnSlots":1},"@functionDelegateCall_25956":{"entryPoint":21409,"id":25956,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_31145":{"entryPoint":null,"id":31145,"parameterSlots":1,"returnSlots":1},"@getDebtForPeriod_40394":{"entryPoint":10204,"id":40394,"parameterSlots":3,"returnSlots":1},"@getFreeMemoryPointer_26988":{"entryPoint":null,"id":26988,"parameterSlots":0,"returnSlots":1},"@getImplementation_22872":{"entryPoint":20117,"id":22872,"parameterSlots":0,"returnSlots":1},"@getTargetStatus_39083":{"entryPoint":null,"id":39083,"parameterSlots":1,"returnSlots":1},"@initialize_38663":{"entryPoint":5637,"id":38663,"parameterSlots":3,"returnSlots":0},"@isTrustedForwarder_15891":{"entryPoint":8312,"id":15891,"parameterSlots":1,"returnSlots":1},"@makeFakeSelector_39792":{"entryPoint":11663,"id":39792,"parameterSlots":2,"returnSlots":1},"@makeSelector_4079":{"entryPoint":null,"id":4079,"parameterSlots":1,"returnSlots":1},"@maxDeposit_17102":{"entryPoint":null,"id":17102,"parameterSlots":1,"returnSlots":1},"@maxMint_17117":{"entryPoint":null,"id":17117,"parameterSlots":1,"returnSlots":1},"@maxRedeem_17145":{"entryPoint":19706,"id":17145,"parameterSlots":1,"returnSlots":1},"@maxRedeem_40504":{"entryPoint":12877,"id":40504,"parameterSlots":1,"returnSlots":1},"@maxWithdraw_17132":{"entryPoint":19678,"id":17132,"parameterSlots":1,"returnSlots":1},"@maxWithdraw_40524":{"entryPoint":11929,"id":40524,"parameterSlots":1,"returnSlots":1},"@min_33872":{"entryPoint":19691,"id":33872,"parameterSlots":2,"returnSlots":1},"@mint_17297":{"entryPoint":9839,"id":17297,"parameterSlots":2,"returnSlots":1},"@mul512_33585":{"entryPoint":21570,"id":33585,"parameterSlots":2,"returnSlots":2},"@mulDiv_34072":{"entryPoint":21044,"id":34072,"parameterSlots":3,"returnSlots":1},"@mulDiv_34109":{"entryPoint":19981,"id":34109,"parameterSlots":4,"returnSlots":1},"@name_16108":{"entryPoint":5445,"id":16108,"parameterSlots":0,"returnSlots":1},"@onERC721Received_39199":{"entryPoint":6386,"id":39199,"parameterSlots":5,"returnSlots":1},"@onPayoutReceived_39283":{"entryPoint":12605,"id":39283,"parameterSlots":4,"returnSlots":1},"@onPolicyCancelled_39381":{"entryPoint":8467,"id":39381,"parameterSlots":6,"returnSlots":1},"@onPolicyExpired_39219":{"entryPoint":13705,"id":39219,"parameterSlots":3,"returnSlots":1},"@onPolicyReplaced_39305":{"entryPoint":8362,"id":39305,"parameterSlots":4,"returnSlots":1},"@pack_20_8_27903":{"entryPoint":null,"id":27903,"parameterSlots":2,"returnSlots":1},"@pack_4_4_27474":{"entryPoint":null,"id":27474,"parameterSlots":2,"returnSlots":1},"@panic_30996":{"entryPoint":21598,"id":30996,"parameterSlots":1,"returnSlots":0},"@policyPool_38878":{"entryPoint":null,"id":38878,"parameterSlots":0,"returnSlots":1},"@previewDeposit_17161":{"entryPoint":null,"id":17161,"parameterSlots":1,"returnSlots":1},"@previewMint_17177":{"entryPoint":10635,"id":17177,"parameterSlots":1,"returnSlots":1},"@previewRedeem_17209":{"entryPoint":null,"id":17209,"parameterSlots":1,"returnSlots":1},"@previewWithdraw_17193":{"entryPoint":6364,"id":17193,"parameterSlots":1,"returnSlots":1},"@proxiableUUID_23490":{"entryPoint":8285,"id":23490,"parameterSlots":0,"returnSlots":1},"@redeem_17391":{"entryPoint":10853,"id":17391,"parameterSlots":3,"returnSlots":1},"@repayDebt_40839":{"entryPoint":8957,"id":40839,"parameterSlots":4,"returnSlots":0},"@returnDataSize_26948":{"entryPoint":null,"id":26948,"parameterSlots":0,"returnSlots":1},"@returnData_26956":{"entryPoint":21241,"id":26956,"parameterSlots":0,"returnSlots":1},"@safeTransferFrom_25041":{"entryPoint":18875,"id":25041,"parameterSlots":4,"returnSlots":0},"@safeTransfer_25010":{"entryPoint":17070,"id":25010,"parameterSlots":3,"returnSlots":0},"@setFreeMemoryPointer_26997":{"entryPoint":null,"id":26997,"parameterSlots":1,"returnSlots":0},"@setTargetLimits_39023":{"entryPoint":10937,"id":39023,"parameterSlots":3,"returnSlots":0},"@setTargetSlotSize_39120":{"entryPoint":6175,"id":39120,"parameterSlots":2,"returnSlots":0},"@setTargetStatus_39062":{"entryPoint":14420,"id":39062,"parameterSlots":2,"returnSlots":0},"@setYieldVault_38858":{"entryPoint":6492,"id":38858,"parameterSlots":2,"returnSlots":0},"@staticcallReturn64Bytes_26912":{"entryPoint":21277,"id":26912,"parameterSlots":2,"returnSlots":3},"@supportsInterface_33322":{"entryPoint":null,"id":33322,"parameterSlots":1,"returnSlots":1},"@supportsInterface_39170":{"entryPoint":5283,"id":39170,"parameterSlots":1,"returnSlots":1},"@symbol_16124":{"entryPoint":9873,"id":16124,"parameterSlots":0,"returnSlots":1},"@ternary_33834":{"entryPoint":null,"id":33834,"parameterSlots":3,"returnSlots":1},"@toInt256_36941":{"entryPoint":16767,"id":36941,"parameterSlots":1,"returnSlots":1},"@toUint96_35774":{"entryPoint":19323,"id":35774,"parameterSlots":1,"returnSlots":1},"@toUint_36951":{"entryPoint":null,"id":36951,"parameterSlots":1,"returnSlots":1},"@totalAssets_40458":{"entryPoint":4961,"id":40458,"parameterSlots":0,"returnSlots":1},"@totalSupply_16149":{"entryPoint":null,"id":16149,"parameterSlots":0,"returnSlots":1},"@transferFrom_16273":{"entryPoint":7106,"id":16273,"parameterSlots":3,"returnSlots":1},"@transfer_16193":{"entryPoint":10319,"id":16193,"parameterSlots":2,"returnSlots":1},"@trustedForwarder_15877":{"entryPoint":null,"id":15877,"parameterSlots":0,"returnSlots":1},"@unsignedRoundsUp_35165":{"entryPoint":21000,"id":35165,"parameterSlots":1,"returnSlots":1},"@upgradeToAndCall_22935":{"entryPoint":20639,"id":22935,"parameterSlots":2,"returnSlots":0},"@upgradeToAndCall_23510":{"entryPoint":8254,"id":23510,"parameterSlots":2,"returnSlots":0},"@withdrawFromYieldVault_40644":{"entryPoint":12035,"id":40644,"parameterSlots":1,"returnSlots":0},"@withdraw_17344":{"entryPoint":10647,"id":17344,"parameterSlots":3,"returnSlots":1},"@yieldVault_38869":{"entryPoint":10288,"id":38869,"parameterSlots":0,"returnSlots":1},"abi_decode_array_bytes_calldata_dyn_calldata":{"entryPoint":22115,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_available_length_string":{"entryPoint":21807,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_bytes4":{"entryPoint":21634,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_bytes_calldata":{"entryPoint":22492,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_string":{"entryPoint":21924,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":22357,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":25254,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":24411,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_addresst_uint256t_uint256":{"entryPoint":23517,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_addresst_bytes4":{"entryPoint":24455,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":22847,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_bool":{"entryPoint":22909,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr":{"entryPoint":22553,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256":{"entryPoint":23214,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256t_uint256":{"entryPoint":23281,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_addresst_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":24523,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_array$_t_bytes_calldata_ptr_$dyn_calldata_ptrt_address":{"entryPoint":22186,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_bytes4":{"entryPoint":24098,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes_calldata_ptr":{"entryPoint":22978,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_bytes_calldata_ptrt_address":{"entryPoint":24184,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_bytes_memory_ptr":{"entryPoint":23119,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_enum$_TargetStatus_$38330":{"entryPoint":24689,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":22450,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256t_uint256":{"entryPoint":23844,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint32":{"entryPoint":22302,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint32t_uint256t_uint256":{"entryPoint":24052,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_uint32t_uint32":{"entryPoint":23058,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint32t_uint32t_int256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_uint32t_uint32t_uint256":{"entryPoint":23401,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_uint32t_uint32t_uint256t_address":{"entryPoint":22747,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":26069,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_boolt_uint32_fromMemory":{"entryPoint":26024,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":21657,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IAccessManager_$22178_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20_$24193":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC4626_$22463":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC4626_$22463t_bool":{"entryPoint":22675,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_string_calldata_ptrt_string_calldata_ptr":{"entryPoint":23946,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_string_calldata_ptrt_string_calldata_ptrt_contract$_IERC4626_$22463":{"entryPoint":23729,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC4626_$22463":{"entryPoint":21974,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptr_fromMemory":{"entryPoint":25457,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":22092,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":24733,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_address":{"entryPoint":23366,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_addresst_address":{"entryPoint":23894,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint256t_bool":{"entryPoint":24149,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_enum$_Rounding_$33557":{"entryPoint":23616,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint32t_uint256":{"entryPoint":22719,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint64":{"entryPoint":23479,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint40_fromMemory":{"entryPoint":25437,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_bytes_calldata":{"entryPoint":24925,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_enum_TargetStatus":{"entryPoint":22404,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_string":{"entryPoint":21682,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_address_t_bytes4__to_t_address_t_bytes4__nonPadded_inplace_fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"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_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":25979,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_enum$_TargetStatus_$38330__to_t_address_t_uint8__fromStack_reversed":{"entryPoint":24896,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":25281,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr_t_address__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_t_address__fromStack_reversed":{"entryPoint":24965,"id":null,"parameterSlots":4,"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":24590,"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_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes_calldata_ptr_t_address__to_t_bytes_memory_ptr_t_address__fromStack_reversed":{"entryPoint":25394,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC4626_$22463__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC4626_$22463_t_contract$_IERC4626_$22463__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPool_$40853__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_enum$_TargetStatus_$38330__to_t_uint8__fromStack_reversed":{"entryPoint":22436,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_enum$_TargetStatus_$38330_t_enum$_TargetStatus_$38330__to_t_uint8_t_uint8__fromStack_reversed":{"entryPoint":25711,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_int256_t_uint96__to_t_int256_t_uint96__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_96_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":21728,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr__fromStack_reversed":{"entryPoint":24252,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_TargetConfig_$38340_memory_ptr__to_t_struct$_TargetConfig_$38340_memory_ptr__fromStack_reversed":{"entryPoint":23651,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_TargetConfig_$38340_storage_ptr__to_t_struct$_TargetConfig_$38340_memory_ptr__fromStack_reversed":{"entryPoint":25314,"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_uint256_t_address__to_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__fromStack_reversed":{"entryPoint":null,"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_uint32__to_t_uint32_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint32_t_int256_t_int256_t_int96__to_t_uint32_t_uint32_t_int256_t_int256_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint32_t_uint256_t_int256_t_address__to_t_uint32_t_uint32_t_uint256_t_int256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__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},"abi_encode_tuple_t_uint96_t_uint256_t_uint96_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_userDefinedValueType$_TargetSlot_$38324__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_uint40":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":25645,"id":null,"parameterSlots":2,"returnSlots":2},"allocate_memory":{"entryPoint":21766,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":25161,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_int256":{"entryPoint":26135,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_int96":{"entryPoint":26174,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":24776,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint8":{"entryPoint":25136,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":26116,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_helper":{"entryPoint":25738,"id":null,"parameterSlots":3,"returnSlots":2},"checked_exp_t_uint256_t_uint8":{"entryPoint":25965,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_unsigned":{"entryPoint":25805,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint32":{"entryPoint":26304,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":24821,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":26356,"id":null,"parameterSlots":3,"returnSlots":0},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20":{"entryPoint":26610,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4":{"entryPoint":25200,"id":null,"parameterSlots":2,"returnSlots":1},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":26424,"id":null,"parameterSlots":2,"returnSlots":0},"decrement_t_uint256":{"entryPoint":26335,"id":null,"parameterSlots":1,"returnSlots":1},"extract_byte_array_length":{"entryPoint":24840,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"increment_t_uint32":{"entryPoint":26229,"id":null,"parameterSlots":1,"returnSlots":1},"mod_t_uint32":{"entryPoint":26265,"id":null,"parameterSlots":2,"returnSlots":1},"mod_t_uint8":{"entryPoint":26664,"id":null,"parameterSlots":2,"returnSlots":1},"negate_t_int256":{"entryPoint":24795,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":24756,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":26096,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":22384,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":25625,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":21746,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_bool":{"entryPoint":22662,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_contract_IERC4626":{"entryPoint":21954,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_enum_Rounding":{"entryPoint":23604,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_uint32":{"entryPoint":22285,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:49713:125","nodeType":"YulBlock","src":"0:49713:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"115:76:125","nodeType":"YulBlock","src":"115:76:125","statements":[{"nativeSrc":"125:26:125","nodeType":"YulAssignment","src":"125:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"137:9:125","nodeType":"YulIdentifier","src":"137:9:125"},{"kind":"number","nativeSrc":"148:2:125","nodeType":"YulLiteral","src":"148:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"133:3:125","nodeType":"YulIdentifier","src":"133:3:125"},"nativeSrc":"133:18:125","nodeType":"YulFunctionCall","src":"133:18:125"},"variableNames":[{"name":"tail","nativeSrc":"125:4:125","nodeType":"YulIdentifier","src":"125:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"167:9:125","nodeType":"YulIdentifier","src":"167:9:125"},{"name":"value0","nativeSrc":"178:6:125","nodeType":"YulIdentifier","src":"178:6:125"}],"functionName":{"name":"mstore","nativeSrc":"160:6:125","nodeType":"YulIdentifier","src":"160:6:125"},"nativeSrc":"160:25:125","nodeType":"YulFunctionCall","src":"160:25:125"},"nativeSrc":"160:25:125","nodeType":"YulExpressionStatement","src":"160:25:125"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"14:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"84:9:125","nodeType":"YulTypedName","src":"84:9:125","type":""},{"name":"value0","nativeSrc":"95:6:125","nodeType":"YulTypedName","src":"95:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"106:4:125","nodeType":"YulTypedName","src":"106:4:125","type":""}],"src":"14:177:125"},{"body":{"nativeSrc":"244:125:125","nodeType":"YulBlock","src":"244:125:125","statements":[{"nativeSrc":"254:29:125","nodeType":"YulAssignment","src":"254:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"276:6:125","nodeType":"YulIdentifier","src":"276:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"263:12:125","nodeType":"YulIdentifier","src":"263:12:125"},"nativeSrc":"263:20:125","nodeType":"YulFunctionCall","src":"263:20:125"},"variableNames":[{"name":"value","nativeSrc":"254:5:125","nodeType":"YulIdentifier","src":"254:5:125"}]},{"body":{"nativeSrc":"347:16:125","nodeType":"YulBlock","src":"347:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"356:1:125","nodeType":"YulLiteral","src":"356:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"359:1:125","nodeType":"YulLiteral","src":"359:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"349:6:125","nodeType":"YulIdentifier","src":"349:6:125"},"nativeSrc":"349:12:125","nodeType":"YulFunctionCall","src":"349:12:125"},"nativeSrc":"349:12:125","nodeType":"YulExpressionStatement","src":"349:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"305:5:125","nodeType":"YulIdentifier","src":"305:5:125"},{"arguments":[{"name":"value","nativeSrc":"316:5:125","nodeType":"YulIdentifier","src":"316:5:125"},{"arguments":[{"kind":"number","nativeSrc":"327:3:125","nodeType":"YulLiteral","src":"327:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"332:10:125","nodeType":"YulLiteral","src":"332:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"323:3:125","nodeType":"YulIdentifier","src":"323:3:125"},"nativeSrc":"323:20:125","nodeType":"YulFunctionCall","src":"323:20:125"}],"functionName":{"name":"and","nativeSrc":"312:3:125","nodeType":"YulIdentifier","src":"312:3:125"},"nativeSrc":"312:32:125","nodeType":"YulFunctionCall","src":"312:32:125"}],"functionName":{"name":"eq","nativeSrc":"302:2:125","nodeType":"YulIdentifier","src":"302:2:125"},"nativeSrc":"302:43:125","nodeType":"YulFunctionCall","src":"302:43:125"}],"functionName":{"name":"iszero","nativeSrc":"295:6:125","nodeType":"YulIdentifier","src":"295:6:125"},"nativeSrc":"295:51:125","nodeType":"YulFunctionCall","src":"295:51:125"},"nativeSrc":"292:71:125","nodeType":"YulIf","src":"292:71:125"}]},"name":"abi_decode_bytes4","nativeSrc":"196:173:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"223:6:125","nodeType":"YulTypedName","src":"223:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"234:5:125","nodeType":"YulTypedName","src":"234:5:125","type":""}],"src":"196:173:125"},{"body":{"nativeSrc":"443:115:125","nodeType":"YulBlock","src":"443:115:125","statements":[{"body":{"nativeSrc":"489:16:125","nodeType":"YulBlock","src":"489:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"498:1:125","nodeType":"YulLiteral","src":"498:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"501:1:125","nodeType":"YulLiteral","src":"501:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"491:6:125","nodeType":"YulIdentifier","src":"491:6:125"},"nativeSrc":"491:12:125","nodeType":"YulFunctionCall","src":"491:12:125"},"nativeSrc":"491:12:125","nodeType":"YulExpressionStatement","src":"491:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"464:7:125","nodeType":"YulIdentifier","src":"464:7:125"},{"name":"headStart","nativeSrc":"473:9:125","nodeType":"YulIdentifier","src":"473:9:125"}],"functionName":{"name":"sub","nativeSrc":"460:3:125","nodeType":"YulIdentifier","src":"460:3:125"},"nativeSrc":"460:23:125","nodeType":"YulFunctionCall","src":"460:23:125"},{"kind":"number","nativeSrc":"485:2:125","nodeType":"YulLiteral","src":"485:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"456:3:125","nodeType":"YulIdentifier","src":"456:3:125"},"nativeSrc":"456:32:125","nodeType":"YulFunctionCall","src":"456:32:125"},"nativeSrc":"453:52:125","nodeType":"YulIf","src":"453:52:125"},{"nativeSrc":"514:38:125","nodeType":"YulAssignment","src":"514:38:125","value":{"arguments":[{"name":"headStart","nativeSrc":"542:9:125","nodeType":"YulIdentifier","src":"542:9:125"}],"functionName":{"name":"abi_decode_bytes4","nativeSrc":"524:17:125","nodeType":"YulIdentifier","src":"524:17:125"},"nativeSrc":"524:28:125","nodeType":"YulFunctionCall","src":"524:28:125"},"variableNames":[{"name":"value0","nativeSrc":"514:6:125","nodeType":"YulIdentifier","src":"514:6:125"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"374:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"409:9:125","nodeType":"YulTypedName","src":"409:9:125","type":""},{"name":"dataEnd","nativeSrc":"420:7:125","nodeType":"YulTypedName","src":"420:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"432:6:125","nodeType":"YulTypedName","src":"432:6:125","type":""}],"src":"374:184:125"},{"body":{"nativeSrc":"658:92:125","nodeType":"YulBlock","src":"658:92:125","statements":[{"nativeSrc":"668:26:125","nodeType":"YulAssignment","src":"668:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"680:9:125","nodeType":"YulIdentifier","src":"680:9:125"},{"kind":"number","nativeSrc":"691:2:125","nodeType":"YulLiteral","src":"691:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"676:3:125","nodeType":"YulIdentifier","src":"676:3:125"},"nativeSrc":"676:18:125","nodeType":"YulFunctionCall","src":"676:18:125"},"variableNames":[{"name":"tail","nativeSrc":"668:4:125","nodeType":"YulIdentifier","src":"668:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"710:9:125","nodeType":"YulIdentifier","src":"710:9:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"735:6:125","nodeType":"YulIdentifier","src":"735:6:125"}],"functionName":{"name":"iszero","nativeSrc":"728:6:125","nodeType":"YulIdentifier","src":"728:6:125"},"nativeSrc":"728:14:125","nodeType":"YulFunctionCall","src":"728:14:125"}],"functionName":{"name":"iszero","nativeSrc":"721:6:125","nodeType":"YulIdentifier","src":"721:6:125"},"nativeSrc":"721:22:125","nodeType":"YulFunctionCall","src":"721:22:125"}],"functionName":{"name":"mstore","nativeSrc":"703:6:125","nodeType":"YulIdentifier","src":"703:6:125"},"nativeSrc":"703:41:125","nodeType":"YulFunctionCall","src":"703:41:125"},"nativeSrc":"703:41:125","nodeType":"YulExpressionStatement","src":"703:41:125"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"563:187:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"627:9:125","nodeType":"YulTypedName","src":"627:9:125","type":""},{"name":"value0","nativeSrc":"638:6:125","nodeType":"YulTypedName","src":"638:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"649:4:125","nodeType":"YulTypedName","src":"649:4:125","type":""}],"src":"563:187:125"},{"body":{"nativeSrc":"805:239:125","nodeType":"YulBlock","src":"805:239:125","statements":[{"nativeSrc":"815:26:125","nodeType":"YulVariableDeclaration","src":"815:26:125","value":{"arguments":[{"name":"value","nativeSrc":"835:5:125","nodeType":"YulIdentifier","src":"835:5:125"}],"functionName":{"name":"mload","nativeSrc":"829:5:125","nodeType":"YulIdentifier","src":"829:5:125"},"nativeSrc":"829:12:125","nodeType":"YulFunctionCall","src":"829:12:125"},"variables":[{"name":"length","nativeSrc":"819:6:125","nodeType":"YulTypedName","src":"819:6:125","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"857:3:125","nodeType":"YulIdentifier","src":"857:3:125"},{"name":"length","nativeSrc":"862:6:125","nodeType":"YulIdentifier","src":"862:6:125"}],"functionName":{"name":"mstore","nativeSrc":"850:6:125","nodeType":"YulIdentifier","src":"850:6:125"},"nativeSrc":"850:19:125","nodeType":"YulFunctionCall","src":"850:19:125"},"nativeSrc":"850:19:125","nodeType":"YulExpressionStatement","src":"850:19:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"888:3:125","nodeType":"YulIdentifier","src":"888:3:125"},{"kind":"number","nativeSrc":"893:4:125","nodeType":"YulLiteral","src":"893:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"884:3:125","nodeType":"YulIdentifier","src":"884:3:125"},"nativeSrc":"884:14:125","nodeType":"YulFunctionCall","src":"884:14:125"},{"arguments":[{"name":"value","nativeSrc":"904:5:125","nodeType":"YulIdentifier","src":"904:5:125"},{"kind":"number","nativeSrc":"911:4:125","nodeType":"YulLiteral","src":"911:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"900:3:125","nodeType":"YulIdentifier","src":"900:3:125"},"nativeSrc":"900:16:125","nodeType":"YulFunctionCall","src":"900:16:125"},{"name":"length","nativeSrc":"918:6:125","nodeType":"YulIdentifier","src":"918:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"878:5:125","nodeType":"YulIdentifier","src":"878:5:125"},"nativeSrc":"878:47:125","nodeType":"YulFunctionCall","src":"878:47:125"},"nativeSrc":"878:47:125","nodeType":"YulExpressionStatement","src":"878:47:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"949:3:125","nodeType":"YulIdentifier","src":"949:3:125"},{"name":"length","nativeSrc":"954:6:125","nodeType":"YulIdentifier","src":"954:6:125"}],"functionName":{"name":"add","nativeSrc":"945:3:125","nodeType":"YulIdentifier","src":"945:3:125"},"nativeSrc":"945:16:125","nodeType":"YulFunctionCall","src":"945:16:125"},{"kind":"number","nativeSrc":"963:4:125","nodeType":"YulLiteral","src":"963:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"941:3:125","nodeType":"YulIdentifier","src":"941:3:125"},"nativeSrc":"941:27:125","nodeType":"YulFunctionCall","src":"941:27:125"},{"kind":"number","nativeSrc":"970:1:125","nodeType":"YulLiteral","src":"970:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"934:6:125","nodeType":"YulIdentifier","src":"934:6:125"},"nativeSrc":"934:38:125","nodeType":"YulFunctionCall","src":"934:38:125"},"nativeSrc":"934:38:125","nodeType":"YulExpressionStatement","src":"934:38:125"},{"nativeSrc":"981:57:125","nodeType":"YulAssignment","src":"981:57:125","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"996:3:125","nodeType":"YulIdentifier","src":"996:3:125"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1009:6:125","nodeType":"YulIdentifier","src":"1009:6:125"},{"kind":"number","nativeSrc":"1017:2:125","nodeType":"YulLiteral","src":"1017:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1005:3:125","nodeType":"YulIdentifier","src":"1005:3:125"},"nativeSrc":"1005:15:125","nodeType":"YulFunctionCall","src":"1005:15:125"},{"arguments":[{"kind":"number","nativeSrc":"1026:2:125","nodeType":"YulLiteral","src":"1026:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1022:3:125","nodeType":"YulIdentifier","src":"1022:3:125"},"nativeSrc":"1022:7:125","nodeType":"YulFunctionCall","src":"1022:7:125"}],"functionName":{"name":"and","nativeSrc":"1001:3:125","nodeType":"YulIdentifier","src":"1001:3:125"},"nativeSrc":"1001:29:125","nodeType":"YulFunctionCall","src":"1001:29:125"}],"functionName":{"name":"add","nativeSrc":"992:3:125","nodeType":"YulIdentifier","src":"992:3:125"},"nativeSrc":"992:39:125","nodeType":"YulFunctionCall","src":"992:39:125"},{"kind":"number","nativeSrc":"1033:4:125","nodeType":"YulLiteral","src":"1033:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"988:3:125","nodeType":"YulIdentifier","src":"988:3:125"},"nativeSrc":"988:50:125","nodeType":"YulFunctionCall","src":"988:50:125"},"variableNames":[{"name":"end","nativeSrc":"981:3:125","nodeType":"YulIdentifier","src":"981:3:125"}]}]},"name":"abi_encode_string","nativeSrc":"755:289:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"782:5:125","nodeType":"YulTypedName","src":"782:5:125","type":""},{"name":"pos","nativeSrc":"789:3:125","nodeType":"YulTypedName","src":"789:3:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"797:3:125","nodeType":"YulTypedName","src":"797:3:125","type":""}],"src":"755:289:125"},{"body":{"nativeSrc":"1170:99:125","nodeType":"YulBlock","src":"1170:99:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1187:9:125","nodeType":"YulIdentifier","src":"1187:9:125"},{"kind":"number","nativeSrc":"1198:2:125","nodeType":"YulLiteral","src":"1198:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"1180:6:125","nodeType":"YulIdentifier","src":"1180:6:125"},"nativeSrc":"1180:21:125","nodeType":"YulFunctionCall","src":"1180:21:125"},"nativeSrc":"1180:21:125","nodeType":"YulExpressionStatement","src":"1180:21:125"},{"nativeSrc":"1210:53:125","nodeType":"YulAssignment","src":"1210:53:125","value":{"arguments":[{"name":"value0","nativeSrc":"1236:6:125","nodeType":"YulIdentifier","src":"1236:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"1248:9:125","nodeType":"YulIdentifier","src":"1248:9:125"},{"kind":"number","nativeSrc":"1259:2:125","nodeType":"YulLiteral","src":"1259:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1244:3:125","nodeType":"YulIdentifier","src":"1244:3:125"},"nativeSrc":"1244:18:125","nodeType":"YulFunctionCall","src":"1244:18:125"}],"functionName":{"name":"abi_encode_string","nativeSrc":"1218:17:125","nodeType":"YulIdentifier","src":"1218:17:125"},"nativeSrc":"1218:45:125","nodeType":"YulFunctionCall","src":"1218:45:125"},"variableNames":[{"name":"tail","nativeSrc":"1210:4:125","nodeType":"YulIdentifier","src":"1210:4:125"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"1049:220:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1139:9:125","nodeType":"YulTypedName","src":"1139:9:125","type":""},{"name":"value0","nativeSrc":"1150:6:125","nodeType":"YulTypedName","src":"1150:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1161:4:125","nodeType":"YulTypedName","src":"1161:4:125","type":""}],"src":"1049:220:125"},{"body":{"nativeSrc":"1306:95:125","nodeType":"YulBlock","src":"1306:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1323:1:125","nodeType":"YulLiteral","src":"1323:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1330:3:125","nodeType":"YulLiteral","src":"1330:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"1335:10:125","nodeType":"YulLiteral","src":"1335:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1326:3:125","nodeType":"YulIdentifier","src":"1326:3:125"},"nativeSrc":"1326:20:125","nodeType":"YulFunctionCall","src":"1326:20:125"}],"functionName":{"name":"mstore","nativeSrc":"1316:6:125","nodeType":"YulIdentifier","src":"1316:6:125"},"nativeSrc":"1316:31:125","nodeType":"YulFunctionCall","src":"1316:31:125"},"nativeSrc":"1316:31:125","nodeType":"YulExpressionStatement","src":"1316:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1363:1:125","nodeType":"YulLiteral","src":"1363:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"1366:4:125","nodeType":"YulLiteral","src":"1366:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"1356:6:125","nodeType":"YulIdentifier","src":"1356:6:125"},"nativeSrc":"1356:15:125","nodeType":"YulFunctionCall","src":"1356:15:125"},"nativeSrc":"1356:15:125","nodeType":"YulExpressionStatement","src":"1356:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1387:1:125","nodeType":"YulLiteral","src":"1387:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1390:4:125","nodeType":"YulLiteral","src":"1390:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1380:6:125","nodeType":"YulIdentifier","src":"1380:6:125"},"nativeSrc":"1380:15:125","nodeType":"YulFunctionCall","src":"1380:15:125"},"nativeSrc":"1380:15:125","nodeType":"YulExpressionStatement","src":"1380:15:125"}]},"name":"panic_error_0x41","nativeSrc":"1274:127:125","nodeType":"YulFunctionDefinition","src":"1274:127:125"},{"body":{"nativeSrc":"1447:206:125","nodeType":"YulBlock","src":"1447:206:125","statements":[{"nativeSrc":"1457:19:125","nodeType":"YulAssignment","src":"1457:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"1473:2:125","nodeType":"YulLiteral","src":"1473:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1467:5:125","nodeType":"YulIdentifier","src":"1467:5:125"},"nativeSrc":"1467:9:125","nodeType":"YulFunctionCall","src":"1467:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"1457:6:125","nodeType":"YulIdentifier","src":"1457:6:125"}]},{"nativeSrc":"1485:34:125","nodeType":"YulVariableDeclaration","src":"1485:34:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"1507:6:125","nodeType":"YulIdentifier","src":"1507:6:125"},{"kind":"number","nativeSrc":"1515:3:125","nodeType":"YulLiteral","src":"1515:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"1503:3:125","nodeType":"YulIdentifier","src":"1503:3:125"},"nativeSrc":"1503:16:125","nodeType":"YulFunctionCall","src":"1503:16:125"},"variables":[{"name":"newFreePtr","nativeSrc":"1489:10:125","nodeType":"YulTypedName","src":"1489:10:125","type":""}]},{"body":{"nativeSrc":"1594:22:125","nodeType":"YulBlock","src":"1594:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1596:16:125","nodeType":"YulIdentifier","src":"1596:16:125"},"nativeSrc":"1596:18:125","nodeType":"YulFunctionCall","src":"1596:18:125"},"nativeSrc":"1596:18:125","nodeType":"YulExpressionStatement","src":"1596:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"1537:10:125","nodeType":"YulIdentifier","src":"1537:10:125"},{"kind":"number","nativeSrc":"1549:18:125","nodeType":"YulLiteral","src":"1549:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1534:2:125","nodeType":"YulIdentifier","src":"1534:2:125"},"nativeSrc":"1534:34:125","nodeType":"YulFunctionCall","src":"1534:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"1573:10:125","nodeType":"YulIdentifier","src":"1573:10:125"},{"name":"memPtr","nativeSrc":"1585:6:125","nodeType":"YulIdentifier","src":"1585:6:125"}],"functionName":{"name":"lt","nativeSrc":"1570:2:125","nodeType":"YulIdentifier","src":"1570:2:125"},"nativeSrc":"1570:22:125","nodeType":"YulFunctionCall","src":"1570:22:125"}],"functionName":{"name":"or","nativeSrc":"1531:2:125","nodeType":"YulIdentifier","src":"1531:2:125"},"nativeSrc":"1531:62:125","nodeType":"YulFunctionCall","src":"1531:62:125"},"nativeSrc":"1528:88:125","nodeType":"YulIf","src":"1528:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1632:2:125","nodeType":"YulLiteral","src":"1632:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1636:10:125","nodeType":"YulIdentifier","src":"1636:10:125"}],"functionName":{"name":"mstore","nativeSrc":"1625:6:125","nodeType":"YulIdentifier","src":"1625:6:125"},"nativeSrc":"1625:22:125","nodeType":"YulFunctionCall","src":"1625:22:125"},"nativeSrc":"1625:22:125","nodeType":"YulExpressionStatement","src":"1625:22:125"}]},"name":"allocate_memory","nativeSrc":"1406:247:125","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"1436:6:125","nodeType":"YulTypedName","src":"1436:6:125","type":""}],"src":"1406:247:125"},{"body":{"nativeSrc":"1733:641:125","nodeType":"YulBlock","src":"1733:641:125","statements":[{"nativeSrc":"1743:13:125","nodeType":"YulVariableDeclaration","src":"1743:13:125","value":{"kind":"number","nativeSrc":"1755:1:125","nodeType":"YulLiteral","src":"1755:1:125","type":"","value":"0"},"variables":[{"name":"size","nativeSrc":"1747:4:125","nodeType":"YulTypedName","src":"1747:4:125","type":""}]},{"body":{"nativeSrc":"1799:22:125","nodeType":"YulBlock","src":"1799:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1801:16:125","nodeType":"YulIdentifier","src":"1801:16:125"},"nativeSrc":"1801:18:125","nodeType":"YulFunctionCall","src":"1801:18:125"},"nativeSrc":"1801:18:125","nodeType":"YulExpressionStatement","src":"1801:18:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1771:6:125","nodeType":"YulIdentifier","src":"1771:6:125"},{"kind":"number","nativeSrc":"1779:18:125","nodeType":"YulLiteral","src":"1779:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1768:2:125","nodeType":"YulIdentifier","src":"1768:2:125"},"nativeSrc":"1768:30:125","nodeType":"YulFunctionCall","src":"1768:30:125"},"nativeSrc":"1765:56:125","nodeType":"YulIf","src":"1765:56:125"},{"nativeSrc":"1830:43:125","nodeType":"YulVariableDeclaration","src":"1830:43:125","value":{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1852:6:125","nodeType":"YulIdentifier","src":"1852:6:125"},{"kind":"number","nativeSrc":"1860:2:125","nodeType":"YulLiteral","src":"1860:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1848:3:125","nodeType":"YulIdentifier","src":"1848:3:125"},"nativeSrc":"1848:15:125","nodeType":"YulFunctionCall","src":"1848:15:125"},{"arguments":[{"kind":"number","nativeSrc":"1869:2:125","nodeType":"YulLiteral","src":"1869:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1865:3:125","nodeType":"YulIdentifier","src":"1865:3:125"},"nativeSrc":"1865:7:125","nodeType":"YulFunctionCall","src":"1865:7:125"}],"functionName":{"name":"and","nativeSrc":"1844:3:125","nodeType":"YulIdentifier","src":"1844:3:125"},"nativeSrc":"1844:29:125","nodeType":"YulFunctionCall","src":"1844:29:125"},"variables":[{"name":"result","nativeSrc":"1834:6:125","nodeType":"YulTypedName","src":"1834:6:125","type":""}]},{"nativeSrc":"1882:25:125","nodeType":"YulAssignment","src":"1882:25:125","value":{"arguments":[{"name":"result","nativeSrc":"1894:6:125","nodeType":"YulIdentifier","src":"1894:6:125"},{"kind":"number","nativeSrc":"1902:4:125","nodeType":"YulLiteral","src":"1902:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1890:3:125","nodeType":"YulIdentifier","src":"1890:3:125"},"nativeSrc":"1890:17:125","nodeType":"YulFunctionCall","src":"1890:17:125"},"variableNames":[{"name":"size","nativeSrc":"1882:4:125","nodeType":"YulIdentifier","src":"1882:4:125"}]},{"nativeSrc":"1916:15:125","nodeType":"YulVariableDeclaration","src":"1916:15:125","value":{"kind":"number","nativeSrc":"1930:1:125","nodeType":"YulLiteral","src":"1930:1:125","type":"","value":"0"},"variables":[{"name":"memPtr","nativeSrc":"1920:6:125","nodeType":"YulTypedName","src":"1920:6:125","type":""}]},{"nativeSrc":"1940:19:125","nodeType":"YulAssignment","src":"1940:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"1956:2:125","nodeType":"YulLiteral","src":"1956:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1950:5:125","nodeType":"YulIdentifier","src":"1950:5:125"},"nativeSrc":"1950:9:125","nodeType":"YulFunctionCall","src":"1950:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"1940:6:125","nodeType":"YulIdentifier","src":"1940:6:125"}]},{"nativeSrc":"1968:60:125","nodeType":"YulVariableDeclaration","src":"1968:60:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"1990:6:125","nodeType":"YulIdentifier","src":"1990:6:125"},{"arguments":[{"arguments":[{"name":"result","nativeSrc":"2006:6:125","nodeType":"YulIdentifier","src":"2006:6:125"},{"kind":"number","nativeSrc":"2014:2:125","nodeType":"YulLiteral","src":"2014:2:125","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"2002:3:125","nodeType":"YulIdentifier","src":"2002:3:125"},"nativeSrc":"2002:15:125","nodeType":"YulFunctionCall","src":"2002:15:125"},{"arguments":[{"kind":"number","nativeSrc":"2023:2:125","nodeType":"YulLiteral","src":"2023:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"2019:3:125","nodeType":"YulIdentifier","src":"2019:3:125"},"nativeSrc":"2019:7:125","nodeType":"YulFunctionCall","src":"2019:7:125"}],"functionName":{"name":"and","nativeSrc":"1998:3:125","nodeType":"YulIdentifier","src":"1998:3:125"},"nativeSrc":"1998:29:125","nodeType":"YulFunctionCall","src":"1998:29:125"}],"functionName":{"name":"add","nativeSrc":"1986:3:125","nodeType":"YulIdentifier","src":"1986:3:125"},"nativeSrc":"1986:42:125","nodeType":"YulFunctionCall","src":"1986:42:125"},"variables":[{"name":"newFreePtr","nativeSrc":"1972:10:125","nodeType":"YulTypedName","src":"1972:10:125","type":""}]},{"body":{"nativeSrc":"2103:22:125","nodeType":"YulBlock","src":"2103:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2105:16:125","nodeType":"YulIdentifier","src":"2105:16:125"},"nativeSrc":"2105:18:125","nodeType":"YulFunctionCall","src":"2105:18:125"},"nativeSrc":"2105:18:125","nodeType":"YulExpressionStatement","src":"2105:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"2046:10:125","nodeType":"YulIdentifier","src":"2046:10:125"},{"kind":"number","nativeSrc":"2058:18:125","nodeType":"YulLiteral","src":"2058:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2043:2:125","nodeType":"YulIdentifier","src":"2043:2:125"},"nativeSrc":"2043:34:125","nodeType":"YulFunctionCall","src":"2043:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"2082:10:125","nodeType":"YulIdentifier","src":"2082:10:125"},{"name":"memPtr","nativeSrc":"2094:6:125","nodeType":"YulIdentifier","src":"2094:6:125"}],"functionName":{"name":"lt","nativeSrc":"2079:2:125","nodeType":"YulIdentifier","src":"2079:2:125"},"nativeSrc":"2079:22:125","nodeType":"YulFunctionCall","src":"2079:22:125"}],"functionName":{"name":"or","nativeSrc":"2040:2:125","nodeType":"YulIdentifier","src":"2040:2:125"},"nativeSrc":"2040:62:125","nodeType":"YulFunctionCall","src":"2040:62:125"},"nativeSrc":"2037:88:125","nodeType":"YulIf","src":"2037:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2141:2:125","nodeType":"YulLiteral","src":"2141:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"2145:10:125","nodeType":"YulIdentifier","src":"2145:10:125"}],"functionName":{"name":"mstore","nativeSrc":"2134:6:125","nodeType":"YulIdentifier","src":"2134:6:125"},"nativeSrc":"2134:22:125","nodeType":"YulFunctionCall","src":"2134:22:125"},"nativeSrc":"2134:22:125","nodeType":"YulExpressionStatement","src":"2134:22:125"},{"nativeSrc":"2165:15:125","nodeType":"YulAssignment","src":"2165:15:125","value":{"name":"memPtr","nativeSrc":"2174:6:125","nodeType":"YulIdentifier","src":"2174:6:125"},"variableNames":[{"name":"array","nativeSrc":"2165:5:125","nodeType":"YulIdentifier","src":"2165:5:125"}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"2196:6:125","nodeType":"YulIdentifier","src":"2196:6:125"},{"name":"length","nativeSrc":"2204:6:125","nodeType":"YulIdentifier","src":"2204:6:125"}],"functionName":{"name":"mstore","nativeSrc":"2189:6:125","nodeType":"YulIdentifier","src":"2189:6:125"},"nativeSrc":"2189:22:125","nodeType":"YulFunctionCall","src":"2189:22:125"},"nativeSrc":"2189:22:125","nodeType":"YulExpressionStatement","src":"2189:22:125"},{"body":{"nativeSrc":"2249:16:125","nodeType":"YulBlock","src":"2249:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2258:1:125","nodeType":"YulLiteral","src":"2258:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2261:1:125","nodeType":"YulLiteral","src":"2261:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2251:6:125","nodeType":"YulIdentifier","src":"2251:6:125"},"nativeSrc":"2251:12:125","nodeType":"YulFunctionCall","src":"2251:12:125"},"nativeSrc":"2251:12:125","nodeType":"YulExpressionStatement","src":"2251:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"2230:3:125","nodeType":"YulIdentifier","src":"2230:3:125"},{"name":"length","nativeSrc":"2235:6:125","nodeType":"YulIdentifier","src":"2235:6:125"}],"functionName":{"name":"add","nativeSrc":"2226:3:125","nodeType":"YulIdentifier","src":"2226:3:125"},"nativeSrc":"2226:16:125","nodeType":"YulFunctionCall","src":"2226:16:125"},{"name":"end","nativeSrc":"2244:3:125","nodeType":"YulIdentifier","src":"2244:3:125"}],"functionName":{"name":"gt","nativeSrc":"2223:2:125","nodeType":"YulIdentifier","src":"2223:2:125"},"nativeSrc":"2223:25:125","nodeType":"YulFunctionCall","src":"2223:25:125"},"nativeSrc":"2220:45:125","nodeType":"YulIf","src":"2220:45:125"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"2291:6:125","nodeType":"YulIdentifier","src":"2291:6:125"},{"kind":"number","nativeSrc":"2299:4:125","nodeType":"YulLiteral","src":"2299:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2287:3:125","nodeType":"YulIdentifier","src":"2287:3:125"},"nativeSrc":"2287:17:125","nodeType":"YulFunctionCall","src":"2287:17:125"},{"name":"src","nativeSrc":"2306:3:125","nodeType":"YulIdentifier","src":"2306:3:125"},{"name":"length","nativeSrc":"2311:6:125","nodeType":"YulIdentifier","src":"2311:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"2274:12:125","nodeType":"YulIdentifier","src":"2274:12:125"},"nativeSrc":"2274:44:125","nodeType":"YulFunctionCall","src":"2274:44:125"},"nativeSrc":"2274:44:125","nodeType":"YulExpressionStatement","src":"2274:44:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"2342:6:125","nodeType":"YulIdentifier","src":"2342:6:125"},{"name":"length","nativeSrc":"2350:6:125","nodeType":"YulIdentifier","src":"2350:6:125"}],"functionName":{"name":"add","nativeSrc":"2338:3:125","nodeType":"YulIdentifier","src":"2338:3:125"},"nativeSrc":"2338:19:125","nodeType":"YulFunctionCall","src":"2338:19:125"},{"kind":"number","nativeSrc":"2359:4:125","nodeType":"YulLiteral","src":"2359:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2334:3:125","nodeType":"YulIdentifier","src":"2334:3:125"},"nativeSrc":"2334:30:125","nodeType":"YulFunctionCall","src":"2334:30:125"},{"kind":"number","nativeSrc":"2366:1:125","nodeType":"YulLiteral","src":"2366:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"2327:6:125","nodeType":"YulIdentifier","src":"2327:6:125"},"nativeSrc":"2327:41:125","nodeType":"YulFunctionCall","src":"2327:41:125"},"nativeSrc":"2327:41:125","nodeType":"YulExpressionStatement","src":"2327:41:125"}]},"name":"abi_decode_available_length_string","nativeSrc":"1658:716:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nativeSrc":"1702:3:125","nodeType":"YulTypedName","src":"1702:3:125","type":""},{"name":"length","nativeSrc":"1707:6:125","nodeType":"YulTypedName","src":"1707:6:125","type":""},{"name":"end","nativeSrc":"1715:3:125","nodeType":"YulTypedName","src":"1715:3:125","type":""}],"returnVariables":[{"name":"array","nativeSrc":"1723:5:125","nodeType":"YulTypedName","src":"1723:5:125","type":""}],"src":"1658:716:125"},{"body":{"nativeSrc":"2432:169:125","nodeType":"YulBlock","src":"2432:169:125","statements":[{"body":{"nativeSrc":"2481:16:125","nodeType":"YulBlock","src":"2481:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2490:1:125","nodeType":"YulLiteral","src":"2490:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2493:1:125","nodeType":"YulLiteral","src":"2493:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2483:6:125","nodeType":"YulIdentifier","src":"2483:6:125"},"nativeSrc":"2483:12:125","nodeType":"YulFunctionCall","src":"2483:12:125"},"nativeSrc":"2483:12:125","nodeType":"YulExpressionStatement","src":"2483:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2460:6:125","nodeType":"YulIdentifier","src":"2460:6:125"},{"kind":"number","nativeSrc":"2468:4:125","nodeType":"YulLiteral","src":"2468:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2456:3:125","nodeType":"YulIdentifier","src":"2456:3:125"},"nativeSrc":"2456:17:125","nodeType":"YulFunctionCall","src":"2456:17:125"},{"name":"end","nativeSrc":"2475:3:125","nodeType":"YulIdentifier","src":"2475:3:125"}],"functionName":{"name":"slt","nativeSrc":"2452:3:125","nodeType":"YulIdentifier","src":"2452:3:125"},"nativeSrc":"2452:27:125","nodeType":"YulFunctionCall","src":"2452:27:125"}],"functionName":{"name":"iszero","nativeSrc":"2445:6:125","nodeType":"YulIdentifier","src":"2445:6:125"},"nativeSrc":"2445:35:125","nodeType":"YulFunctionCall","src":"2445:35:125"},"nativeSrc":"2442:55:125","nodeType":"YulIf","src":"2442:55:125"},{"nativeSrc":"2506:89:125","nodeType":"YulAssignment","src":"2506:89:125","value":{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2554:6:125","nodeType":"YulIdentifier","src":"2554:6:125"},{"kind":"number","nativeSrc":"2562:4:125","nodeType":"YulLiteral","src":"2562:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2550:3:125","nodeType":"YulIdentifier","src":"2550:3:125"},"nativeSrc":"2550:17:125","nodeType":"YulFunctionCall","src":"2550:17:125"},{"arguments":[{"name":"offset","nativeSrc":"2582:6:125","nodeType":"YulIdentifier","src":"2582:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"2569:12:125","nodeType":"YulIdentifier","src":"2569:12:125"},"nativeSrc":"2569:20:125","nodeType":"YulFunctionCall","src":"2569:20:125"},{"name":"end","nativeSrc":"2591:3:125","nodeType":"YulIdentifier","src":"2591:3:125"}],"functionName":{"name":"abi_decode_available_length_string","nativeSrc":"2515:34:125","nodeType":"YulIdentifier","src":"2515:34:125"},"nativeSrc":"2515:80:125","nodeType":"YulFunctionCall","src":"2515:80:125"},"variableNames":[{"name":"array","nativeSrc":"2506:5:125","nodeType":"YulIdentifier","src":"2506:5:125"}]}]},"name":"abi_decode_string","nativeSrc":"2379:222:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"2406:6:125","nodeType":"YulTypedName","src":"2406:6:125","type":""},{"name":"end","nativeSrc":"2414:3:125","nodeType":"YulTypedName","src":"2414:3:125","type":""}],"returnVariables":[{"name":"array","nativeSrc":"2422:5:125","nodeType":"YulTypedName","src":"2422:5:125","type":""}],"src":"2379:222:125"},{"body":{"nativeSrc":"2661:86:125","nodeType":"YulBlock","src":"2661:86:125","statements":[{"body":{"nativeSrc":"2725:16:125","nodeType":"YulBlock","src":"2725:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2734:1:125","nodeType":"YulLiteral","src":"2734:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2737:1:125","nodeType":"YulLiteral","src":"2737:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2727:6:125","nodeType":"YulIdentifier","src":"2727:6:125"},"nativeSrc":"2727:12:125","nodeType":"YulFunctionCall","src":"2727:12:125"},"nativeSrc":"2727:12:125","nodeType":"YulExpressionStatement","src":"2727:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2684:5:125","nodeType":"YulIdentifier","src":"2684:5:125"},{"arguments":[{"name":"value","nativeSrc":"2695:5:125","nodeType":"YulIdentifier","src":"2695:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2710:3:125","nodeType":"YulLiteral","src":"2710:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"2715:1:125","nodeType":"YulLiteral","src":"2715:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2706:3:125","nodeType":"YulIdentifier","src":"2706:3:125"},"nativeSrc":"2706:11:125","nodeType":"YulFunctionCall","src":"2706:11:125"},{"kind":"number","nativeSrc":"2719:1:125","nodeType":"YulLiteral","src":"2719:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2702:3:125","nodeType":"YulIdentifier","src":"2702:3:125"},"nativeSrc":"2702:19:125","nodeType":"YulFunctionCall","src":"2702:19:125"}],"functionName":{"name":"and","nativeSrc":"2691:3:125","nodeType":"YulIdentifier","src":"2691:3:125"},"nativeSrc":"2691:31:125","nodeType":"YulFunctionCall","src":"2691:31:125"}],"functionName":{"name":"eq","nativeSrc":"2681:2:125","nodeType":"YulIdentifier","src":"2681:2:125"},"nativeSrc":"2681:42:125","nodeType":"YulFunctionCall","src":"2681:42:125"}],"functionName":{"name":"iszero","nativeSrc":"2674:6:125","nodeType":"YulIdentifier","src":"2674:6:125"},"nativeSrc":"2674:50:125","nodeType":"YulFunctionCall","src":"2674:50:125"},"nativeSrc":"2671:70:125","nodeType":"YulIf","src":"2671:70:125"}]},"name":"validator_revert_contract_IERC4626","nativeSrc":"2606:141:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"2650:5:125","nodeType":"YulTypedName","src":"2650:5:125","type":""}],"src":"2606:141:125"},{"body":{"nativeSrc":"2894:559:125","nodeType":"YulBlock","src":"2894:559:125","statements":[{"body":{"nativeSrc":"2940:16:125","nodeType":"YulBlock","src":"2940:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2949:1:125","nodeType":"YulLiteral","src":"2949:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2952:1:125","nodeType":"YulLiteral","src":"2952:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2942:6:125","nodeType":"YulIdentifier","src":"2942:6:125"},"nativeSrc":"2942:12:125","nodeType":"YulFunctionCall","src":"2942:12:125"},"nativeSrc":"2942:12:125","nodeType":"YulExpressionStatement","src":"2942:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2915:7:125","nodeType":"YulIdentifier","src":"2915:7:125"},{"name":"headStart","nativeSrc":"2924:9:125","nodeType":"YulIdentifier","src":"2924:9:125"}],"functionName":{"name":"sub","nativeSrc":"2911:3:125","nodeType":"YulIdentifier","src":"2911:3:125"},"nativeSrc":"2911:23:125","nodeType":"YulFunctionCall","src":"2911:23:125"},{"kind":"number","nativeSrc":"2936:2:125","nodeType":"YulLiteral","src":"2936:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2907:3:125","nodeType":"YulIdentifier","src":"2907:3:125"},"nativeSrc":"2907:32:125","nodeType":"YulFunctionCall","src":"2907:32:125"},"nativeSrc":"2904:52:125","nodeType":"YulIf","src":"2904:52:125"},{"nativeSrc":"2965:37:125","nodeType":"YulVariableDeclaration","src":"2965:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2992:9:125","nodeType":"YulIdentifier","src":"2992:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"2979:12:125","nodeType":"YulIdentifier","src":"2979:12:125"},"nativeSrc":"2979:23:125","nodeType":"YulFunctionCall","src":"2979:23:125"},"variables":[{"name":"offset","nativeSrc":"2969:6:125","nodeType":"YulTypedName","src":"2969:6:125","type":""}]},{"body":{"nativeSrc":"3045:16:125","nodeType":"YulBlock","src":"3045:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3054:1:125","nodeType":"YulLiteral","src":"3054:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3057:1:125","nodeType":"YulLiteral","src":"3057:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3047:6:125","nodeType":"YulIdentifier","src":"3047:6:125"},"nativeSrc":"3047:12:125","nodeType":"YulFunctionCall","src":"3047:12:125"},"nativeSrc":"3047:12:125","nodeType":"YulExpressionStatement","src":"3047:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"3017:6:125","nodeType":"YulIdentifier","src":"3017:6:125"},{"kind":"number","nativeSrc":"3025:18:125","nodeType":"YulLiteral","src":"3025:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3014:2:125","nodeType":"YulIdentifier","src":"3014:2:125"},"nativeSrc":"3014:30:125","nodeType":"YulFunctionCall","src":"3014:30:125"},"nativeSrc":"3011:50:125","nodeType":"YulIf","src":"3011:50:125"},{"nativeSrc":"3070:60:125","nodeType":"YulAssignment","src":"3070:60:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3102:9:125","nodeType":"YulIdentifier","src":"3102:9:125"},{"name":"offset","nativeSrc":"3113:6:125","nodeType":"YulIdentifier","src":"3113:6:125"}],"functionName":{"name":"add","nativeSrc":"3098:3:125","nodeType":"YulIdentifier","src":"3098:3:125"},"nativeSrc":"3098:22:125","nodeType":"YulFunctionCall","src":"3098:22:125"},{"name":"dataEnd","nativeSrc":"3122:7:125","nodeType":"YulIdentifier","src":"3122:7:125"}],"functionName":{"name":"abi_decode_string","nativeSrc":"3080:17:125","nodeType":"YulIdentifier","src":"3080:17:125"},"nativeSrc":"3080:50:125","nodeType":"YulFunctionCall","src":"3080:50:125"},"variableNames":[{"name":"value0","nativeSrc":"3070:6:125","nodeType":"YulIdentifier","src":"3070:6:125"}]},{"nativeSrc":"3139:48:125","nodeType":"YulVariableDeclaration","src":"3139:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3172:9:125","nodeType":"YulIdentifier","src":"3172:9:125"},{"kind":"number","nativeSrc":"3183:2:125","nodeType":"YulLiteral","src":"3183:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3168:3:125","nodeType":"YulIdentifier","src":"3168:3:125"},"nativeSrc":"3168:18:125","nodeType":"YulFunctionCall","src":"3168:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3155:12:125","nodeType":"YulIdentifier","src":"3155:12:125"},"nativeSrc":"3155:32:125","nodeType":"YulFunctionCall","src":"3155:32:125"},"variables":[{"name":"offset_1","nativeSrc":"3143:8:125","nodeType":"YulTypedName","src":"3143:8:125","type":""}]},{"body":{"nativeSrc":"3232:16:125","nodeType":"YulBlock","src":"3232:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3241:1:125","nodeType":"YulLiteral","src":"3241:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3244:1:125","nodeType":"YulLiteral","src":"3244:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3234:6:125","nodeType":"YulIdentifier","src":"3234:6:125"},"nativeSrc":"3234:12:125","nodeType":"YulFunctionCall","src":"3234:12:125"},"nativeSrc":"3234:12:125","nodeType":"YulExpressionStatement","src":"3234:12:125"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"3202:8:125","nodeType":"YulIdentifier","src":"3202:8:125"},{"kind":"number","nativeSrc":"3212:18:125","nodeType":"YulLiteral","src":"3212:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3199:2:125","nodeType":"YulIdentifier","src":"3199:2:125"},"nativeSrc":"3199:32:125","nodeType":"YulFunctionCall","src":"3199:32:125"},"nativeSrc":"3196:52:125","nodeType":"YulIf","src":"3196:52:125"},{"nativeSrc":"3257:62:125","nodeType":"YulAssignment","src":"3257:62:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3289:9:125","nodeType":"YulIdentifier","src":"3289:9:125"},{"name":"offset_1","nativeSrc":"3300:8:125","nodeType":"YulIdentifier","src":"3300:8:125"}],"functionName":{"name":"add","nativeSrc":"3285:3:125","nodeType":"YulIdentifier","src":"3285:3:125"},"nativeSrc":"3285:24:125","nodeType":"YulFunctionCall","src":"3285:24:125"},{"name":"dataEnd","nativeSrc":"3311:7:125","nodeType":"YulIdentifier","src":"3311:7:125"}],"functionName":{"name":"abi_decode_string","nativeSrc":"3267:17:125","nodeType":"YulIdentifier","src":"3267:17:125"},"nativeSrc":"3267:52:125","nodeType":"YulFunctionCall","src":"3267:52:125"},"variableNames":[{"name":"value1","nativeSrc":"3257:6:125","nodeType":"YulIdentifier","src":"3257:6:125"}]},{"nativeSrc":"3328:45:125","nodeType":"YulVariableDeclaration","src":"3328:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3358:9:125","nodeType":"YulIdentifier","src":"3358:9:125"},{"kind":"number","nativeSrc":"3369:2:125","nodeType":"YulLiteral","src":"3369:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3354:3:125","nodeType":"YulIdentifier","src":"3354:3:125"},"nativeSrc":"3354:18:125","nodeType":"YulFunctionCall","src":"3354:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3341:12:125","nodeType":"YulIdentifier","src":"3341:12:125"},"nativeSrc":"3341:32:125","nodeType":"YulFunctionCall","src":"3341:32:125"},"variables":[{"name":"value","nativeSrc":"3332:5:125","nodeType":"YulTypedName","src":"3332:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3417:5:125","nodeType":"YulIdentifier","src":"3417:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"3382:34:125","nodeType":"YulIdentifier","src":"3382:34:125"},"nativeSrc":"3382:41:125","nodeType":"YulFunctionCall","src":"3382:41:125"},"nativeSrc":"3382:41:125","nodeType":"YulExpressionStatement","src":"3382:41:125"},{"nativeSrc":"3432:15:125","nodeType":"YulAssignment","src":"3432:15:125","value":{"name":"value","nativeSrc":"3442:5:125","nodeType":"YulIdentifier","src":"3442:5:125"},"variableNames":[{"name":"value2","nativeSrc":"3432:6:125","nodeType":"YulIdentifier","src":"3432:6:125"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC4626_$22463","nativeSrc":"2752:701:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2844:9:125","nodeType":"YulTypedName","src":"2844:9:125","type":""},{"name":"dataEnd","nativeSrc":"2855:7:125","nodeType":"YulTypedName","src":"2855:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2867:6:125","nodeType":"YulTypedName","src":"2867:6:125","type":""},{"name":"value1","nativeSrc":"2875:6:125","nodeType":"YulTypedName","src":"2875:6:125","type":""},{"name":"value2","nativeSrc":"2883:6:125","nodeType":"YulTypedName","src":"2883:6:125","type":""}],"src":"2752:701:125"},{"body":{"nativeSrc":"3528:156:125","nodeType":"YulBlock","src":"3528:156:125","statements":[{"body":{"nativeSrc":"3574:16:125","nodeType":"YulBlock","src":"3574:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3583:1:125","nodeType":"YulLiteral","src":"3583:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3586:1:125","nodeType":"YulLiteral","src":"3586:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3576:6:125","nodeType":"YulIdentifier","src":"3576:6:125"},"nativeSrc":"3576:12:125","nodeType":"YulFunctionCall","src":"3576:12:125"},"nativeSrc":"3576:12:125","nodeType":"YulExpressionStatement","src":"3576:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3549:7:125","nodeType":"YulIdentifier","src":"3549:7:125"},{"name":"headStart","nativeSrc":"3558:9:125","nodeType":"YulIdentifier","src":"3558:9:125"}],"functionName":{"name":"sub","nativeSrc":"3545:3:125","nodeType":"YulIdentifier","src":"3545:3:125"},"nativeSrc":"3545:23:125","nodeType":"YulFunctionCall","src":"3545:23:125"},{"kind":"number","nativeSrc":"3570:2:125","nodeType":"YulLiteral","src":"3570:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"3541:3:125","nodeType":"YulIdentifier","src":"3541:3:125"},"nativeSrc":"3541:32:125","nodeType":"YulFunctionCall","src":"3541:32:125"},"nativeSrc":"3538:52:125","nodeType":"YulIf","src":"3538:52:125"},{"nativeSrc":"3599:14:125","nodeType":"YulVariableDeclaration","src":"3599:14:125","value":{"kind":"number","nativeSrc":"3612:1:125","nodeType":"YulLiteral","src":"3612:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3603:5:125","nodeType":"YulTypedName","src":"3603:5:125","type":""}]},{"nativeSrc":"3622:32:125","nodeType":"YulAssignment","src":"3622:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3644:9:125","nodeType":"YulIdentifier","src":"3644:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"3631:12:125","nodeType":"YulIdentifier","src":"3631:12:125"},"nativeSrc":"3631:23:125","nodeType":"YulFunctionCall","src":"3631:23:125"},"variableNames":[{"name":"value","nativeSrc":"3622:5:125","nodeType":"YulIdentifier","src":"3622:5:125"}]},{"nativeSrc":"3663:15:125","nodeType":"YulAssignment","src":"3663:15:125","value":{"name":"value","nativeSrc":"3673:5:125","nodeType":"YulIdentifier","src":"3673:5:125"},"variableNames":[{"name":"value0","nativeSrc":"3663:6:125","nodeType":"YulIdentifier","src":"3663:6:125"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"3458:226:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3494:9:125","nodeType":"YulTypedName","src":"3494:9:125","type":""},{"name":"dataEnd","nativeSrc":"3505:7:125","nodeType":"YulTypedName","src":"3505:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3517:6:125","nodeType":"YulTypedName","src":"3517:6:125","type":""}],"src":"3458:226:125"},{"body":{"nativeSrc":"3780:283:125","nodeType":"YulBlock","src":"3780:283:125","statements":[{"body":{"nativeSrc":"3829:16:125","nodeType":"YulBlock","src":"3829:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3838:1:125","nodeType":"YulLiteral","src":"3838:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3841:1:125","nodeType":"YulLiteral","src":"3841:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3831:6:125","nodeType":"YulIdentifier","src":"3831:6:125"},"nativeSrc":"3831:12:125","nodeType":"YulFunctionCall","src":"3831:12:125"},"nativeSrc":"3831:12:125","nodeType":"YulExpressionStatement","src":"3831:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"3808:6:125","nodeType":"YulIdentifier","src":"3808:6:125"},{"kind":"number","nativeSrc":"3816:4:125","nodeType":"YulLiteral","src":"3816:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"3804:3:125","nodeType":"YulIdentifier","src":"3804:3:125"},"nativeSrc":"3804:17:125","nodeType":"YulFunctionCall","src":"3804:17:125"},{"name":"end","nativeSrc":"3823:3:125","nodeType":"YulIdentifier","src":"3823:3:125"}],"functionName":{"name":"slt","nativeSrc":"3800:3:125","nodeType":"YulIdentifier","src":"3800:3:125"},"nativeSrc":"3800:27:125","nodeType":"YulFunctionCall","src":"3800:27:125"}],"functionName":{"name":"iszero","nativeSrc":"3793:6:125","nodeType":"YulIdentifier","src":"3793:6:125"},"nativeSrc":"3793:35:125","nodeType":"YulFunctionCall","src":"3793:35:125"},"nativeSrc":"3790:55:125","nodeType":"YulIf","src":"3790:55:125"},{"nativeSrc":"3854:30:125","nodeType":"YulAssignment","src":"3854:30:125","value":{"arguments":[{"name":"offset","nativeSrc":"3877:6:125","nodeType":"YulIdentifier","src":"3877:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"3864:12:125","nodeType":"YulIdentifier","src":"3864:12:125"},"nativeSrc":"3864:20:125","nodeType":"YulFunctionCall","src":"3864:20:125"},"variableNames":[{"name":"length","nativeSrc":"3854:6:125","nodeType":"YulIdentifier","src":"3854:6:125"}]},{"body":{"nativeSrc":"3927:16:125","nodeType":"YulBlock","src":"3927:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3936:1:125","nodeType":"YulLiteral","src":"3936:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3939:1:125","nodeType":"YulLiteral","src":"3939:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3929:6:125","nodeType":"YulIdentifier","src":"3929:6:125"},"nativeSrc":"3929:12:125","nodeType":"YulFunctionCall","src":"3929:12:125"},"nativeSrc":"3929:12:125","nodeType":"YulExpressionStatement","src":"3929:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"3899:6:125","nodeType":"YulIdentifier","src":"3899:6:125"},{"kind":"number","nativeSrc":"3907:18:125","nodeType":"YulLiteral","src":"3907:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3896:2:125","nodeType":"YulIdentifier","src":"3896:2:125"},"nativeSrc":"3896:30:125","nodeType":"YulFunctionCall","src":"3896:30:125"},"nativeSrc":"3893:50:125","nodeType":"YulIf","src":"3893:50:125"},{"nativeSrc":"3952:29:125","nodeType":"YulAssignment","src":"3952:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"3968:6:125","nodeType":"YulIdentifier","src":"3968:6:125"},{"kind":"number","nativeSrc":"3976:4:125","nodeType":"YulLiteral","src":"3976:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3964:3:125","nodeType":"YulIdentifier","src":"3964:3:125"},"nativeSrc":"3964:17:125","nodeType":"YulFunctionCall","src":"3964:17:125"},"variableNames":[{"name":"arrayPos","nativeSrc":"3952:8:125","nodeType":"YulIdentifier","src":"3952:8:125"}]},{"body":{"nativeSrc":"4041:16:125","nodeType":"YulBlock","src":"4041:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4050:1:125","nodeType":"YulLiteral","src":"4050:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4053:1:125","nodeType":"YulLiteral","src":"4053:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4043:6:125","nodeType":"YulIdentifier","src":"4043:6:125"},"nativeSrc":"4043:12:125","nodeType":"YulFunctionCall","src":"4043:12:125"},"nativeSrc":"4043:12:125","nodeType":"YulExpressionStatement","src":"4043:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"4004:6:125","nodeType":"YulIdentifier","src":"4004:6:125"},{"arguments":[{"kind":"number","nativeSrc":"4016:1:125","nodeType":"YulLiteral","src":"4016:1:125","type":"","value":"5"},{"name":"length","nativeSrc":"4019:6:125","nodeType":"YulIdentifier","src":"4019:6:125"}],"functionName":{"name":"shl","nativeSrc":"4012:3:125","nodeType":"YulIdentifier","src":"4012:3:125"},"nativeSrc":"4012:14:125","nodeType":"YulFunctionCall","src":"4012:14:125"}],"functionName":{"name":"add","nativeSrc":"4000:3:125","nodeType":"YulIdentifier","src":"4000:3:125"},"nativeSrc":"4000:27:125","nodeType":"YulFunctionCall","src":"4000:27:125"},{"kind":"number","nativeSrc":"4029:4:125","nodeType":"YulLiteral","src":"4029:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3996:3:125","nodeType":"YulIdentifier","src":"3996:3:125"},"nativeSrc":"3996:38:125","nodeType":"YulFunctionCall","src":"3996:38:125"},{"name":"end","nativeSrc":"4036:3:125","nodeType":"YulIdentifier","src":"4036:3:125"}],"functionName":{"name":"gt","nativeSrc":"3993:2:125","nodeType":"YulIdentifier","src":"3993:2:125"},"nativeSrc":"3993:47:125","nodeType":"YulFunctionCall","src":"3993:47:125"},"nativeSrc":"3990:67:125","nodeType":"YulIf","src":"3990:67:125"}]},"name":"abi_decode_array_bytes_calldata_dyn_calldata","nativeSrc":"3689:374:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"3743:6:125","nodeType":"YulTypedName","src":"3743:6:125","type":""},{"name":"end","nativeSrc":"3751:3:125","nodeType":"YulTypedName","src":"3751:3:125","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"3759:8:125","nodeType":"YulTypedName","src":"3759:8:125","type":""},{"name":"length","nativeSrc":"3769:6:125","nodeType":"YulTypedName","src":"3769:6:125","type":""}],"src":"3689:374:125"},{"body":{"nativeSrc":"4218:601:125","nodeType":"YulBlock","src":"4218:601:125","statements":[{"body":{"nativeSrc":"4264:16:125","nodeType":"YulBlock","src":"4264:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4273:1:125","nodeType":"YulLiteral","src":"4273:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4276:1:125","nodeType":"YulLiteral","src":"4276:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4266:6:125","nodeType":"YulIdentifier","src":"4266:6:125"},"nativeSrc":"4266:12:125","nodeType":"YulFunctionCall","src":"4266:12:125"},"nativeSrc":"4266:12:125","nodeType":"YulExpressionStatement","src":"4266:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4239:7:125","nodeType":"YulIdentifier","src":"4239:7:125"},{"name":"headStart","nativeSrc":"4248:9:125","nodeType":"YulIdentifier","src":"4248:9:125"}],"functionName":{"name":"sub","nativeSrc":"4235:3:125","nodeType":"YulIdentifier","src":"4235:3:125"},"nativeSrc":"4235:23:125","nodeType":"YulFunctionCall","src":"4235:23:125"},{"kind":"number","nativeSrc":"4260:2:125","nodeType":"YulLiteral","src":"4260:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"4231:3:125","nodeType":"YulIdentifier","src":"4231:3:125"},"nativeSrc":"4231:32:125","nodeType":"YulFunctionCall","src":"4231:32:125"},"nativeSrc":"4228:52:125","nodeType":"YulIf","src":"4228:52:125"},{"nativeSrc":"4289:36:125","nodeType":"YulVariableDeclaration","src":"4289:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4315:9:125","nodeType":"YulIdentifier","src":"4315:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"4302:12:125","nodeType":"YulIdentifier","src":"4302:12:125"},"nativeSrc":"4302:23:125","nodeType":"YulFunctionCall","src":"4302:23:125"},"variables":[{"name":"value","nativeSrc":"4293:5:125","nodeType":"YulTypedName","src":"4293:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4369:5:125","nodeType":"YulIdentifier","src":"4369:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"4334:34:125","nodeType":"YulIdentifier","src":"4334:34:125"},"nativeSrc":"4334:41:125","nodeType":"YulFunctionCall","src":"4334:41:125"},"nativeSrc":"4334:41:125","nodeType":"YulExpressionStatement","src":"4334:41:125"},{"nativeSrc":"4384:15:125","nodeType":"YulAssignment","src":"4384:15:125","value":{"name":"value","nativeSrc":"4394:5:125","nodeType":"YulIdentifier","src":"4394:5:125"},"variableNames":[{"name":"value0","nativeSrc":"4384:6:125","nodeType":"YulIdentifier","src":"4384:6:125"}]},{"nativeSrc":"4408:46:125","nodeType":"YulVariableDeclaration","src":"4408:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4439:9:125","nodeType":"YulIdentifier","src":"4439:9:125"},{"kind":"number","nativeSrc":"4450:2:125","nodeType":"YulLiteral","src":"4450:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4435:3:125","nodeType":"YulIdentifier","src":"4435:3:125"},"nativeSrc":"4435:18:125","nodeType":"YulFunctionCall","src":"4435:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"4422:12:125","nodeType":"YulIdentifier","src":"4422:12:125"},"nativeSrc":"4422:32:125","nodeType":"YulFunctionCall","src":"4422:32:125"},"variables":[{"name":"offset","nativeSrc":"4412:6:125","nodeType":"YulTypedName","src":"4412:6:125","type":""}]},{"body":{"nativeSrc":"4497:16:125","nodeType":"YulBlock","src":"4497:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4506:1:125","nodeType":"YulLiteral","src":"4506:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4509:1:125","nodeType":"YulLiteral","src":"4509:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4499:6:125","nodeType":"YulIdentifier","src":"4499:6:125"},"nativeSrc":"4499:12:125","nodeType":"YulFunctionCall","src":"4499:12:125"},"nativeSrc":"4499:12:125","nodeType":"YulExpressionStatement","src":"4499:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"4469:6:125","nodeType":"YulIdentifier","src":"4469:6:125"},{"kind":"number","nativeSrc":"4477:18:125","nodeType":"YulLiteral","src":"4477:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4466:2:125","nodeType":"YulIdentifier","src":"4466:2:125"},"nativeSrc":"4466:30:125","nodeType":"YulFunctionCall","src":"4466:30:125"},"nativeSrc":"4463:50:125","nodeType":"YulIf","src":"4463:50:125"},{"nativeSrc":"4522:103:125","nodeType":"YulVariableDeclaration","src":"4522:103:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4597:9:125","nodeType":"YulIdentifier","src":"4597:9:125"},{"name":"offset","nativeSrc":"4608:6:125","nodeType":"YulIdentifier","src":"4608:6:125"}],"functionName":{"name":"add","nativeSrc":"4593:3:125","nodeType":"YulIdentifier","src":"4593:3:125"},"nativeSrc":"4593:22:125","nodeType":"YulFunctionCall","src":"4593:22:125"},{"name":"dataEnd","nativeSrc":"4617:7:125","nodeType":"YulIdentifier","src":"4617:7:125"}],"functionName":{"name":"abi_decode_array_bytes_calldata_dyn_calldata","nativeSrc":"4548:44:125","nodeType":"YulIdentifier","src":"4548:44:125"},"nativeSrc":"4548:77:125","nodeType":"YulFunctionCall","src":"4548:77:125"},"variables":[{"name":"value1_1","nativeSrc":"4526:8:125","nodeType":"YulTypedName","src":"4526:8:125","type":""},{"name":"value2_1","nativeSrc":"4536:8:125","nodeType":"YulTypedName","src":"4536:8:125","type":""}]},{"nativeSrc":"4634:18:125","nodeType":"YulAssignment","src":"4634:18:125","value":{"name":"value1_1","nativeSrc":"4644:8:125","nodeType":"YulIdentifier","src":"4644:8:125"},"variableNames":[{"name":"value1","nativeSrc":"4634:6:125","nodeType":"YulIdentifier","src":"4634:6:125"}]},{"nativeSrc":"4661:18:125","nodeType":"YulAssignment","src":"4661:18:125","value":{"name":"value2_1","nativeSrc":"4671:8:125","nodeType":"YulIdentifier","src":"4671:8:125"},"variableNames":[{"name":"value2","nativeSrc":"4661:6:125","nodeType":"YulIdentifier","src":"4661:6:125"}]},{"nativeSrc":"4688:47:125","nodeType":"YulVariableDeclaration","src":"4688:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4720:9:125","nodeType":"YulIdentifier","src":"4720:9:125"},{"kind":"number","nativeSrc":"4731:2:125","nodeType":"YulLiteral","src":"4731:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4716:3:125","nodeType":"YulIdentifier","src":"4716:3:125"},"nativeSrc":"4716:18:125","nodeType":"YulFunctionCall","src":"4716:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"4703:12:125","nodeType":"YulIdentifier","src":"4703:12:125"},"nativeSrc":"4703:32:125","nodeType":"YulFunctionCall","src":"4703:32:125"},"variables":[{"name":"value_1","nativeSrc":"4692:7:125","nodeType":"YulTypedName","src":"4692:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"4779:7:125","nodeType":"YulIdentifier","src":"4779:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"4744:34:125","nodeType":"YulIdentifier","src":"4744:34:125"},"nativeSrc":"4744:43:125","nodeType":"YulFunctionCall","src":"4744:43:125"},"nativeSrc":"4744:43:125","nodeType":"YulExpressionStatement","src":"4744:43:125"},{"nativeSrc":"4796:17:125","nodeType":"YulAssignment","src":"4796:17:125","value":{"name":"value_1","nativeSrc":"4806:7:125","nodeType":"YulIdentifier","src":"4806:7:125"},"variableNames":[{"name":"value3","nativeSrc":"4796:6:125","nodeType":"YulIdentifier","src":"4796:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_array$_t_bytes_calldata_ptr_$dyn_calldata_ptrt_address","nativeSrc":"4068:751:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4160:9:125","nodeType":"YulTypedName","src":"4160:9:125","type":""},{"name":"dataEnd","nativeSrc":"4171:7:125","nodeType":"YulTypedName","src":"4171:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4183:6:125","nodeType":"YulTypedName","src":"4183:6:125","type":""},{"name":"value1","nativeSrc":"4191:6:125","nodeType":"YulTypedName","src":"4191:6:125","type":""},{"name":"value2","nativeSrc":"4199:6:125","nodeType":"YulTypedName","src":"4199:6:125","type":""},{"name":"value3","nativeSrc":"4207:6:125","nodeType":"YulTypedName","src":"4207:6:125","type":""}],"src":"4068:751:125"},{"body":{"nativeSrc":"4868:77:125","nodeType":"YulBlock","src":"4868:77:125","statements":[{"body":{"nativeSrc":"4923:16:125","nodeType":"YulBlock","src":"4923:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4932:1:125","nodeType":"YulLiteral","src":"4932:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4935:1:125","nodeType":"YulLiteral","src":"4935:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4925:6:125","nodeType":"YulIdentifier","src":"4925:6:125"},"nativeSrc":"4925:12:125","nodeType":"YulFunctionCall","src":"4925:12:125"},"nativeSrc":"4925:12:125","nodeType":"YulExpressionStatement","src":"4925:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4891:5:125","nodeType":"YulIdentifier","src":"4891:5:125"},{"arguments":[{"name":"value","nativeSrc":"4902:5:125","nodeType":"YulIdentifier","src":"4902:5:125"},{"kind":"number","nativeSrc":"4909:10:125","nodeType":"YulLiteral","src":"4909:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"4898:3:125","nodeType":"YulIdentifier","src":"4898:3:125"},"nativeSrc":"4898:22:125","nodeType":"YulFunctionCall","src":"4898:22:125"}],"functionName":{"name":"eq","nativeSrc":"4888:2:125","nodeType":"YulIdentifier","src":"4888:2:125"},"nativeSrc":"4888:33:125","nodeType":"YulFunctionCall","src":"4888:33:125"}],"functionName":{"name":"iszero","nativeSrc":"4881:6:125","nodeType":"YulIdentifier","src":"4881:6:125"},"nativeSrc":"4881:41:125","nodeType":"YulFunctionCall","src":"4881:41:125"},"nativeSrc":"4878:61:125","nodeType":"YulIf","src":"4878:61:125"}]},"name":"validator_revert_uint32","nativeSrc":"4824:121:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"4857:5:125","nodeType":"YulTypedName","src":"4857:5:125","type":""}],"src":"4824:121:125"},{"body":{"nativeSrc":"5036:310:125","nodeType":"YulBlock","src":"5036:310:125","statements":[{"body":{"nativeSrc":"5082:16:125","nodeType":"YulBlock","src":"5082:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5091:1:125","nodeType":"YulLiteral","src":"5091:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5094:1:125","nodeType":"YulLiteral","src":"5094:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5084:6:125","nodeType":"YulIdentifier","src":"5084:6:125"},"nativeSrc":"5084:12:125","nodeType":"YulFunctionCall","src":"5084:12:125"},"nativeSrc":"5084:12:125","nodeType":"YulExpressionStatement","src":"5084:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5057:7:125","nodeType":"YulIdentifier","src":"5057:7:125"},{"name":"headStart","nativeSrc":"5066:9:125","nodeType":"YulIdentifier","src":"5066:9:125"}],"functionName":{"name":"sub","nativeSrc":"5053:3:125","nodeType":"YulIdentifier","src":"5053:3:125"},"nativeSrc":"5053:23:125","nodeType":"YulFunctionCall","src":"5053:23:125"},{"kind":"number","nativeSrc":"5078:2:125","nodeType":"YulLiteral","src":"5078:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"5049:3:125","nodeType":"YulIdentifier","src":"5049:3:125"},"nativeSrc":"5049:32:125","nodeType":"YulFunctionCall","src":"5049:32:125"},"nativeSrc":"5046:52:125","nodeType":"YulIf","src":"5046:52:125"},{"nativeSrc":"5107:36:125","nodeType":"YulVariableDeclaration","src":"5107:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5133:9:125","nodeType":"YulIdentifier","src":"5133:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"5120:12:125","nodeType":"YulIdentifier","src":"5120:12:125"},"nativeSrc":"5120:23:125","nodeType":"YulFunctionCall","src":"5120:23:125"},"variables":[{"name":"value","nativeSrc":"5111:5:125","nodeType":"YulTypedName","src":"5111:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5187:5:125","nodeType":"YulIdentifier","src":"5187:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"5152:34:125","nodeType":"YulIdentifier","src":"5152:34:125"},"nativeSrc":"5152:41:125","nodeType":"YulFunctionCall","src":"5152:41:125"},"nativeSrc":"5152:41:125","nodeType":"YulExpressionStatement","src":"5152:41:125"},{"nativeSrc":"5202:15:125","nodeType":"YulAssignment","src":"5202:15:125","value":{"name":"value","nativeSrc":"5212:5:125","nodeType":"YulIdentifier","src":"5212:5:125"},"variableNames":[{"name":"value0","nativeSrc":"5202:6:125","nodeType":"YulIdentifier","src":"5202:6:125"}]},{"nativeSrc":"5226:47:125","nodeType":"YulVariableDeclaration","src":"5226:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5258:9:125","nodeType":"YulIdentifier","src":"5258:9:125"},{"kind":"number","nativeSrc":"5269:2:125","nodeType":"YulLiteral","src":"5269:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5254:3:125","nodeType":"YulIdentifier","src":"5254:3:125"},"nativeSrc":"5254:18:125","nodeType":"YulFunctionCall","src":"5254:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"5241:12:125","nodeType":"YulIdentifier","src":"5241:12:125"},"nativeSrc":"5241:32:125","nodeType":"YulFunctionCall","src":"5241:32:125"},"variables":[{"name":"value_1","nativeSrc":"5230:7:125","nodeType":"YulTypedName","src":"5230:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"5306:7:125","nodeType":"YulIdentifier","src":"5306:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"5282:23:125","nodeType":"YulIdentifier","src":"5282:23:125"},"nativeSrc":"5282:32:125","nodeType":"YulFunctionCall","src":"5282:32:125"},"nativeSrc":"5282:32:125","nodeType":"YulExpressionStatement","src":"5282:32:125"},{"nativeSrc":"5323:17:125","nodeType":"YulAssignment","src":"5323:17:125","value":{"name":"value_1","nativeSrc":"5333:7:125","nodeType":"YulIdentifier","src":"5333:7:125"},"variableNames":[{"name":"value1","nativeSrc":"5323:6:125","nodeType":"YulIdentifier","src":"5323:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint32","nativeSrc":"4950:396:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4994:9:125","nodeType":"YulTypedName","src":"4994:9:125","type":""},{"name":"dataEnd","nativeSrc":"5005:7:125","nodeType":"YulTypedName","src":"5005:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5017:6:125","nodeType":"YulTypedName","src":"5017:6:125","type":""},{"name":"value1","nativeSrc":"5025:6:125","nodeType":"YulTypedName","src":"5025:6:125","type":""}],"src":"4950:396:125"},{"body":{"nativeSrc":"5421:187:125","nodeType":"YulBlock","src":"5421:187:125","statements":[{"body":{"nativeSrc":"5467:16:125","nodeType":"YulBlock","src":"5467:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5476:1:125","nodeType":"YulLiteral","src":"5476:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5479:1:125","nodeType":"YulLiteral","src":"5479:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5469:6:125","nodeType":"YulIdentifier","src":"5469:6:125"},"nativeSrc":"5469:12:125","nodeType":"YulFunctionCall","src":"5469:12:125"},"nativeSrc":"5469:12:125","nodeType":"YulExpressionStatement","src":"5469:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5442:7:125","nodeType":"YulIdentifier","src":"5442:7:125"},{"name":"headStart","nativeSrc":"5451:9:125","nodeType":"YulIdentifier","src":"5451:9:125"}],"functionName":{"name":"sub","nativeSrc":"5438:3:125","nodeType":"YulIdentifier","src":"5438:3:125"},"nativeSrc":"5438:23:125","nodeType":"YulFunctionCall","src":"5438:23:125"},{"kind":"number","nativeSrc":"5463:2:125","nodeType":"YulLiteral","src":"5463:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5434:3:125","nodeType":"YulIdentifier","src":"5434:3:125"},"nativeSrc":"5434:32:125","nodeType":"YulFunctionCall","src":"5434:32:125"},"nativeSrc":"5431:52:125","nodeType":"YulIf","src":"5431:52:125"},{"nativeSrc":"5492:36:125","nodeType":"YulVariableDeclaration","src":"5492:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5518:9:125","nodeType":"YulIdentifier","src":"5518:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"5505:12:125","nodeType":"YulIdentifier","src":"5505:12:125"},"nativeSrc":"5505:23:125","nodeType":"YulFunctionCall","src":"5505:23:125"},"variables":[{"name":"value","nativeSrc":"5496:5:125","nodeType":"YulTypedName","src":"5496:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5572:5:125","nodeType":"YulIdentifier","src":"5572:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"5537:34:125","nodeType":"YulIdentifier","src":"5537:34:125"},"nativeSrc":"5537:41:125","nodeType":"YulFunctionCall","src":"5537:41:125"},"nativeSrc":"5537:41:125","nodeType":"YulExpressionStatement","src":"5537:41:125"},{"nativeSrc":"5587:15:125","nodeType":"YulAssignment","src":"5587:15:125","value":{"name":"value","nativeSrc":"5597:5:125","nodeType":"YulIdentifier","src":"5597:5:125"},"variableNames":[{"name":"value0","nativeSrc":"5587:6:125","nodeType":"YulIdentifier","src":"5587:6:125"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"5351:257:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5387:9:125","nodeType":"YulTypedName","src":"5387:9:125","type":""},{"name":"dataEnd","nativeSrc":"5398:7:125","nodeType":"YulTypedName","src":"5398:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5410:6:125","nodeType":"YulTypedName","src":"5410:6:125","type":""}],"src":"5351:257:125"},{"body":{"nativeSrc":"5645:95:125","nodeType":"YulBlock","src":"5645:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5662:1:125","nodeType":"YulLiteral","src":"5662:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5669:3:125","nodeType":"YulLiteral","src":"5669:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"5674:10:125","nodeType":"YulLiteral","src":"5674:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5665:3:125","nodeType":"YulIdentifier","src":"5665:3:125"},"nativeSrc":"5665:20:125","nodeType":"YulFunctionCall","src":"5665:20:125"}],"functionName":{"name":"mstore","nativeSrc":"5655:6:125","nodeType":"YulIdentifier","src":"5655:6:125"},"nativeSrc":"5655:31:125","nodeType":"YulFunctionCall","src":"5655:31:125"},"nativeSrc":"5655:31:125","nodeType":"YulExpressionStatement","src":"5655:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5702:1:125","nodeType":"YulLiteral","src":"5702:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"5705:4:125","nodeType":"YulLiteral","src":"5705:4:125","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"5695:6:125","nodeType":"YulIdentifier","src":"5695:6:125"},"nativeSrc":"5695:15:125","nodeType":"YulFunctionCall","src":"5695:15:125"},"nativeSrc":"5695:15:125","nodeType":"YulExpressionStatement","src":"5695:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5726:1:125","nodeType":"YulLiteral","src":"5726:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5729:4:125","nodeType":"YulLiteral","src":"5729:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5719:6:125","nodeType":"YulIdentifier","src":"5719:6:125"},"nativeSrc":"5719:15:125","nodeType":"YulFunctionCall","src":"5719:15:125"},"nativeSrc":"5719:15:125","nodeType":"YulExpressionStatement","src":"5719:15:125"}]},"name":"panic_error_0x21","nativeSrc":"5613:127:125","nodeType":"YulFunctionDefinition","src":"5613:127:125"},{"body":{"nativeSrc":"5799:186:125","nodeType":"YulBlock","src":"5799:186:125","statements":[{"body":{"nativeSrc":"5841:111:125","nodeType":"YulBlock","src":"5841:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5862:1:125","nodeType":"YulLiteral","src":"5862:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5869:3:125","nodeType":"YulLiteral","src":"5869:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"5874:10:125","nodeType":"YulLiteral","src":"5874:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5865:3:125","nodeType":"YulIdentifier","src":"5865:3:125"},"nativeSrc":"5865:20:125","nodeType":"YulFunctionCall","src":"5865:20:125"}],"functionName":{"name":"mstore","nativeSrc":"5855:6:125","nodeType":"YulIdentifier","src":"5855:6:125"},"nativeSrc":"5855:31:125","nodeType":"YulFunctionCall","src":"5855:31:125"},"nativeSrc":"5855:31:125","nodeType":"YulExpressionStatement","src":"5855:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5906:1:125","nodeType":"YulLiteral","src":"5906:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"5909:4:125","nodeType":"YulLiteral","src":"5909:4:125","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"5899:6:125","nodeType":"YulIdentifier","src":"5899:6:125"},"nativeSrc":"5899:15:125","nodeType":"YulFunctionCall","src":"5899:15:125"},"nativeSrc":"5899:15:125","nodeType":"YulExpressionStatement","src":"5899:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5934:1:125","nodeType":"YulLiteral","src":"5934:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5937:4:125","nodeType":"YulLiteral","src":"5937:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5927:6:125","nodeType":"YulIdentifier","src":"5927:6:125"},"nativeSrc":"5927:15:125","nodeType":"YulFunctionCall","src":"5927:15:125"},"nativeSrc":"5927:15:125","nodeType":"YulExpressionStatement","src":"5927:15:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5822:5:125","nodeType":"YulIdentifier","src":"5822:5:125"},{"kind":"number","nativeSrc":"5829:1:125","nodeType":"YulLiteral","src":"5829:1:125","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"5819:2:125","nodeType":"YulIdentifier","src":"5819:2:125"},"nativeSrc":"5819:12:125","nodeType":"YulFunctionCall","src":"5819:12:125"}],"functionName":{"name":"iszero","nativeSrc":"5812:6:125","nodeType":"YulIdentifier","src":"5812:6:125"},"nativeSrc":"5812:20:125","nodeType":"YulFunctionCall","src":"5812:20:125"},"nativeSrc":"5809:143:125","nodeType":"YulIf","src":"5809:143:125"},{"expression":{"arguments":[{"name":"pos","nativeSrc":"5968:3:125","nodeType":"YulIdentifier","src":"5968:3:125"},{"name":"value","nativeSrc":"5973:5:125","nodeType":"YulIdentifier","src":"5973:5:125"}],"functionName":{"name":"mstore","nativeSrc":"5961:6:125","nodeType":"YulIdentifier","src":"5961:6:125"},"nativeSrc":"5961:18:125","nodeType":"YulFunctionCall","src":"5961:18:125"},"nativeSrc":"5961:18:125","nodeType":"YulExpressionStatement","src":"5961:18:125"}]},"name":"abi_encode_enum_TargetStatus","nativeSrc":"5745:240:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"5783:5:125","nodeType":"YulTypedName","src":"5783:5:125","type":""},{"name":"pos","nativeSrc":"5790:3:125","nodeType":"YulTypedName","src":"5790:3:125","type":""}],"src":"5745:240:125"},{"body":{"nativeSrc":"6107:98:125","nodeType":"YulBlock","src":"6107:98:125","statements":[{"nativeSrc":"6117:26:125","nodeType":"YulAssignment","src":"6117:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6129:9:125","nodeType":"YulIdentifier","src":"6129:9:125"},{"kind":"number","nativeSrc":"6140:2:125","nodeType":"YulLiteral","src":"6140:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6125:3:125","nodeType":"YulIdentifier","src":"6125:3:125"},"nativeSrc":"6125:18:125","nodeType":"YulFunctionCall","src":"6125:18:125"},"variableNames":[{"name":"tail","nativeSrc":"6117:4:125","nodeType":"YulIdentifier","src":"6117:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"6181:6:125","nodeType":"YulIdentifier","src":"6181:6:125"},{"name":"headStart","nativeSrc":"6189:9:125","nodeType":"YulIdentifier","src":"6189:9:125"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"6152:28:125","nodeType":"YulIdentifier","src":"6152:28:125"},"nativeSrc":"6152:47:125","nodeType":"YulFunctionCall","src":"6152:47:125"},"nativeSrc":"6152:47:125","nodeType":"YulExpressionStatement","src":"6152:47:125"}]},"name":"abi_encode_tuple_t_enum$_TargetStatus_$38330__to_t_uint8__fromStack_reversed","nativeSrc":"5990:215:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6076:9:125","nodeType":"YulTypedName","src":"6076:9:125","type":""},{"name":"value0","nativeSrc":"6087:6:125","nodeType":"YulTypedName","src":"6087:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6098:4:125","nodeType":"YulTypedName","src":"6098:4:125","type":""}],"src":"5990:215:125"},{"body":{"nativeSrc":"6297:290:125","nodeType":"YulBlock","src":"6297:290:125","statements":[{"body":{"nativeSrc":"6343:16:125","nodeType":"YulBlock","src":"6343:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6352:1:125","nodeType":"YulLiteral","src":"6352:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6355:1:125","nodeType":"YulLiteral","src":"6355:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6345:6:125","nodeType":"YulIdentifier","src":"6345:6:125"},"nativeSrc":"6345:12:125","nodeType":"YulFunctionCall","src":"6345:12:125"},"nativeSrc":"6345:12:125","nodeType":"YulExpressionStatement","src":"6345:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6318:7:125","nodeType":"YulIdentifier","src":"6318:7:125"},{"name":"headStart","nativeSrc":"6327:9:125","nodeType":"YulIdentifier","src":"6327:9:125"}],"functionName":{"name":"sub","nativeSrc":"6314:3:125","nodeType":"YulIdentifier","src":"6314:3:125"},"nativeSrc":"6314:23:125","nodeType":"YulFunctionCall","src":"6314:23:125"},{"kind":"number","nativeSrc":"6339:2:125","nodeType":"YulLiteral","src":"6339:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6310:3:125","nodeType":"YulIdentifier","src":"6310:3:125"},"nativeSrc":"6310:32:125","nodeType":"YulFunctionCall","src":"6310:32:125"},"nativeSrc":"6307:52:125","nodeType":"YulIf","src":"6307:52:125"},{"nativeSrc":"6368:36:125","nodeType":"YulVariableDeclaration","src":"6368:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6394:9:125","nodeType":"YulIdentifier","src":"6394:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"6381:12:125","nodeType":"YulIdentifier","src":"6381:12:125"},"nativeSrc":"6381:23:125","nodeType":"YulFunctionCall","src":"6381:23:125"},"variables":[{"name":"value","nativeSrc":"6372:5:125","nodeType":"YulTypedName","src":"6372:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6448:5:125","nodeType":"YulIdentifier","src":"6448:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"6413:34:125","nodeType":"YulIdentifier","src":"6413:34:125"},"nativeSrc":"6413:41:125","nodeType":"YulFunctionCall","src":"6413:41:125"},"nativeSrc":"6413:41:125","nodeType":"YulExpressionStatement","src":"6413:41:125"},{"nativeSrc":"6463:15:125","nodeType":"YulAssignment","src":"6463:15:125","value":{"name":"value","nativeSrc":"6473:5:125","nodeType":"YulIdentifier","src":"6473:5:125"},"variableNames":[{"name":"value0","nativeSrc":"6463:6:125","nodeType":"YulIdentifier","src":"6463:6:125"}]},{"nativeSrc":"6487:16:125","nodeType":"YulVariableDeclaration","src":"6487:16:125","value":{"kind":"number","nativeSrc":"6502:1:125","nodeType":"YulLiteral","src":"6502:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"6491:7:125","nodeType":"YulTypedName","src":"6491:7:125","type":""}]},{"nativeSrc":"6512:43:125","nodeType":"YulAssignment","src":"6512:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6540:9:125","nodeType":"YulIdentifier","src":"6540:9:125"},{"kind":"number","nativeSrc":"6551:2:125","nodeType":"YulLiteral","src":"6551:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6536:3:125","nodeType":"YulIdentifier","src":"6536:3:125"},"nativeSrc":"6536:18:125","nodeType":"YulFunctionCall","src":"6536:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"6523:12:125","nodeType":"YulIdentifier","src":"6523:12:125"},"nativeSrc":"6523:32:125","nodeType":"YulFunctionCall","src":"6523:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"6512:7:125","nodeType":"YulIdentifier","src":"6512:7:125"}]},{"nativeSrc":"6564:17:125","nodeType":"YulAssignment","src":"6564:17:125","value":{"name":"value_1","nativeSrc":"6574:7:125","nodeType":"YulIdentifier","src":"6574:7:125"},"variableNames":[{"name":"value1","nativeSrc":"6564:6:125","nodeType":"YulIdentifier","src":"6564:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"6210:377:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6255:9:125","nodeType":"YulTypedName","src":"6255:9:125","type":""},{"name":"dataEnd","nativeSrc":"6266:7:125","nodeType":"YulTypedName","src":"6266:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6278:6:125","nodeType":"YulTypedName","src":"6278:6:125","type":""},{"name":"value1","nativeSrc":"6286:6:125","nodeType":"YulTypedName","src":"6286:6:125","type":""}],"src":"6210:377:125"},{"body":{"nativeSrc":"6693:76:125","nodeType":"YulBlock","src":"6693:76:125","statements":[{"nativeSrc":"6703:26:125","nodeType":"YulAssignment","src":"6703:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6715:9:125","nodeType":"YulIdentifier","src":"6715:9:125"},{"kind":"number","nativeSrc":"6726:2:125","nodeType":"YulLiteral","src":"6726:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6711:3:125","nodeType":"YulIdentifier","src":"6711:3:125"},"nativeSrc":"6711:18:125","nodeType":"YulFunctionCall","src":"6711:18:125"},"variableNames":[{"name":"tail","nativeSrc":"6703:4:125","nodeType":"YulIdentifier","src":"6703:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6745:9:125","nodeType":"YulIdentifier","src":"6745:9:125"},{"name":"value0","nativeSrc":"6756:6:125","nodeType":"YulIdentifier","src":"6756:6:125"}],"functionName":{"name":"mstore","nativeSrc":"6738:6:125","nodeType":"YulIdentifier","src":"6738:6:125"},"nativeSrc":"6738:25:125","nodeType":"YulFunctionCall","src":"6738:25:125"},"nativeSrc":"6738:25:125","nodeType":"YulExpressionStatement","src":"6738:25:125"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"6592:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6662:9:125","nodeType":"YulTypedName","src":"6662:9:125","type":""},{"name":"value0","nativeSrc":"6673:6:125","nodeType":"YulTypedName","src":"6673:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6684:4:125","nodeType":"YulTypedName","src":"6684:4:125","type":""}],"src":"6592:177:125"},{"body":{"nativeSrc":"6846:275:125","nodeType":"YulBlock","src":"6846:275:125","statements":[{"body":{"nativeSrc":"6895:16:125","nodeType":"YulBlock","src":"6895:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6904:1:125","nodeType":"YulLiteral","src":"6904:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6907:1:125","nodeType":"YulLiteral","src":"6907:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6897:6:125","nodeType":"YulIdentifier","src":"6897:6:125"},"nativeSrc":"6897:12:125","nodeType":"YulFunctionCall","src":"6897:12:125"},"nativeSrc":"6897:12:125","nodeType":"YulExpressionStatement","src":"6897:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"6874:6:125","nodeType":"YulIdentifier","src":"6874:6:125"},{"kind":"number","nativeSrc":"6882:4:125","nodeType":"YulLiteral","src":"6882:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"6870:3:125","nodeType":"YulIdentifier","src":"6870:3:125"},"nativeSrc":"6870:17:125","nodeType":"YulFunctionCall","src":"6870:17:125"},{"name":"end","nativeSrc":"6889:3:125","nodeType":"YulIdentifier","src":"6889:3:125"}],"functionName":{"name":"slt","nativeSrc":"6866:3:125","nodeType":"YulIdentifier","src":"6866:3:125"},"nativeSrc":"6866:27:125","nodeType":"YulFunctionCall","src":"6866:27:125"}],"functionName":{"name":"iszero","nativeSrc":"6859:6:125","nodeType":"YulIdentifier","src":"6859:6:125"},"nativeSrc":"6859:35:125","nodeType":"YulFunctionCall","src":"6859:35:125"},"nativeSrc":"6856:55:125","nodeType":"YulIf","src":"6856:55:125"},{"nativeSrc":"6920:30:125","nodeType":"YulAssignment","src":"6920:30:125","value":{"arguments":[{"name":"offset","nativeSrc":"6943:6:125","nodeType":"YulIdentifier","src":"6943:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"6930:12:125","nodeType":"YulIdentifier","src":"6930:12:125"},"nativeSrc":"6930:20:125","nodeType":"YulFunctionCall","src":"6930:20:125"},"variableNames":[{"name":"length","nativeSrc":"6920:6:125","nodeType":"YulIdentifier","src":"6920:6:125"}]},{"body":{"nativeSrc":"6993:16:125","nodeType":"YulBlock","src":"6993:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7002:1:125","nodeType":"YulLiteral","src":"7002:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7005:1:125","nodeType":"YulLiteral","src":"7005:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6995:6:125","nodeType":"YulIdentifier","src":"6995:6:125"},"nativeSrc":"6995:12:125","nodeType":"YulFunctionCall","src":"6995:12:125"},"nativeSrc":"6995:12:125","nodeType":"YulExpressionStatement","src":"6995:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"6965:6:125","nodeType":"YulIdentifier","src":"6965:6:125"},{"kind":"number","nativeSrc":"6973:18:125","nodeType":"YulLiteral","src":"6973:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6962:2:125","nodeType":"YulIdentifier","src":"6962:2:125"},"nativeSrc":"6962:30:125","nodeType":"YulFunctionCall","src":"6962:30:125"},"nativeSrc":"6959:50:125","nodeType":"YulIf","src":"6959:50:125"},{"nativeSrc":"7018:29:125","nodeType":"YulAssignment","src":"7018:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"7034:6:125","nodeType":"YulIdentifier","src":"7034:6:125"},{"kind":"number","nativeSrc":"7042:4:125","nodeType":"YulLiteral","src":"7042:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7030:3:125","nodeType":"YulIdentifier","src":"7030:3:125"},"nativeSrc":"7030:17:125","nodeType":"YulFunctionCall","src":"7030:17:125"},"variableNames":[{"name":"arrayPos","nativeSrc":"7018:8:125","nodeType":"YulIdentifier","src":"7018:8:125"}]},{"body":{"nativeSrc":"7099:16:125","nodeType":"YulBlock","src":"7099:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7108:1:125","nodeType":"YulLiteral","src":"7108:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7111:1:125","nodeType":"YulLiteral","src":"7111:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7101:6:125","nodeType":"YulIdentifier","src":"7101:6:125"},"nativeSrc":"7101:12:125","nodeType":"YulFunctionCall","src":"7101:12:125"},"nativeSrc":"7101:12:125","nodeType":"YulExpressionStatement","src":"7101:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"7070:6:125","nodeType":"YulIdentifier","src":"7070:6:125"},{"name":"length","nativeSrc":"7078:6:125","nodeType":"YulIdentifier","src":"7078:6:125"}],"functionName":{"name":"add","nativeSrc":"7066:3:125","nodeType":"YulIdentifier","src":"7066:3:125"},"nativeSrc":"7066:19:125","nodeType":"YulFunctionCall","src":"7066:19:125"},{"kind":"number","nativeSrc":"7087:4:125","nodeType":"YulLiteral","src":"7087:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7062:3:125","nodeType":"YulIdentifier","src":"7062:3:125"},"nativeSrc":"7062:30:125","nodeType":"YulFunctionCall","src":"7062:30:125"},{"name":"end","nativeSrc":"7094:3:125","nodeType":"YulIdentifier","src":"7094:3:125"}],"functionName":{"name":"gt","nativeSrc":"7059:2:125","nodeType":"YulIdentifier","src":"7059:2:125"},"nativeSrc":"7059:39:125","nodeType":"YulFunctionCall","src":"7059:39:125"},"nativeSrc":"7056:59:125","nodeType":"YulIf","src":"7056:59:125"}]},"name":"abi_decode_bytes_calldata","nativeSrc":"6774:347:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"6809:6:125","nodeType":"YulTypedName","src":"6809:6:125","type":""},{"name":"end","nativeSrc":"6817:3:125","nodeType":"YulTypedName","src":"6817:3:125","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"6825:8:125","nodeType":"YulTypedName","src":"6825:8:125","type":""},{"name":"length","nativeSrc":"6835:6:125","nodeType":"YulTypedName","src":"6835:6:125","type":""}],"src":"6774:347:125"},{"body":{"nativeSrc":"7266:686:125","nodeType":"YulBlock","src":"7266:686:125","statements":[{"body":{"nativeSrc":"7313:16:125","nodeType":"YulBlock","src":"7313:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7322:1:125","nodeType":"YulLiteral","src":"7322:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7325:1:125","nodeType":"YulLiteral","src":"7325:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7315:6:125","nodeType":"YulIdentifier","src":"7315:6:125"},"nativeSrc":"7315:12:125","nodeType":"YulFunctionCall","src":"7315:12:125"},"nativeSrc":"7315:12:125","nodeType":"YulExpressionStatement","src":"7315:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7287:7:125","nodeType":"YulIdentifier","src":"7287:7:125"},{"name":"headStart","nativeSrc":"7296:9:125","nodeType":"YulIdentifier","src":"7296:9:125"}],"functionName":{"name":"sub","nativeSrc":"7283:3:125","nodeType":"YulIdentifier","src":"7283:3:125"},"nativeSrc":"7283:23:125","nodeType":"YulFunctionCall","src":"7283:23:125"},{"kind":"number","nativeSrc":"7308:3:125","nodeType":"YulLiteral","src":"7308:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"7279:3:125","nodeType":"YulIdentifier","src":"7279:3:125"},"nativeSrc":"7279:33:125","nodeType":"YulFunctionCall","src":"7279:33:125"},"nativeSrc":"7276:53:125","nodeType":"YulIf","src":"7276:53:125"},{"nativeSrc":"7338:36:125","nodeType":"YulVariableDeclaration","src":"7338:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7364:9:125","nodeType":"YulIdentifier","src":"7364:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"7351:12:125","nodeType":"YulIdentifier","src":"7351:12:125"},"nativeSrc":"7351:23:125","nodeType":"YulFunctionCall","src":"7351:23:125"},"variables":[{"name":"value","nativeSrc":"7342:5:125","nodeType":"YulTypedName","src":"7342:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7418:5:125","nodeType":"YulIdentifier","src":"7418:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"7383:34:125","nodeType":"YulIdentifier","src":"7383:34:125"},"nativeSrc":"7383:41:125","nodeType":"YulFunctionCall","src":"7383:41:125"},"nativeSrc":"7383:41:125","nodeType":"YulExpressionStatement","src":"7383:41:125"},{"nativeSrc":"7433:15:125","nodeType":"YulAssignment","src":"7433:15:125","value":{"name":"value","nativeSrc":"7443:5:125","nodeType":"YulIdentifier","src":"7443:5:125"},"variableNames":[{"name":"value0","nativeSrc":"7433:6:125","nodeType":"YulIdentifier","src":"7433:6:125"}]},{"nativeSrc":"7457:47:125","nodeType":"YulVariableDeclaration","src":"7457:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7489:9:125","nodeType":"YulIdentifier","src":"7489:9:125"},{"kind":"number","nativeSrc":"7500:2:125","nodeType":"YulLiteral","src":"7500:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7485:3:125","nodeType":"YulIdentifier","src":"7485:3:125"},"nativeSrc":"7485:18:125","nodeType":"YulFunctionCall","src":"7485:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"7472:12:125","nodeType":"YulIdentifier","src":"7472:12:125"},"nativeSrc":"7472:32:125","nodeType":"YulFunctionCall","src":"7472:32:125"},"variables":[{"name":"value_1","nativeSrc":"7461:7:125","nodeType":"YulTypedName","src":"7461:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"7548:7:125","nodeType":"YulIdentifier","src":"7548:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"7513:34:125","nodeType":"YulIdentifier","src":"7513:34:125"},"nativeSrc":"7513:43:125","nodeType":"YulFunctionCall","src":"7513:43:125"},"nativeSrc":"7513:43:125","nodeType":"YulExpressionStatement","src":"7513:43:125"},{"nativeSrc":"7565:17:125","nodeType":"YulAssignment","src":"7565:17:125","value":{"name":"value_1","nativeSrc":"7575:7:125","nodeType":"YulIdentifier","src":"7575:7:125"},"variableNames":[{"name":"value1","nativeSrc":"7565:6:125","nodeType":"YulIdentifier","src":"7565:6:125"}]},{"nativeSrc":"7591:16:125","nodeType":"YulVariableDeclaration","src":"7591:16:125","value":{"kind":"number","nativeSrc":"7606:1:125","nodeType":"YulLiteral","src":"7606:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"7595:7:125","nodeType":"YulTypedName","src":"7595:7:125","type":""}]},{"nativeSrc":"7616:43:125","nodeType":"YulAssignment","src":"7616:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7644:9:125","nodeType":"YulIdentifier","src":"7644:9:125"},{"kind":"number","nativeSrc":"7655:2:125","nodeType":"YulLiteral","src":"7655:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7640:3:125","nodeType":"YulIdentifier","src":"7640:3:125"},"nativeSrc":"7640:18:125","nodeType":"YulFunctionCall","src":"7640:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"7627:12:125","nodeType":"YulIdentifier","src":"7627:12:125"},"nativeSrc":"7627:32:125","nodeType":"YulFunctionCall","src":"7627:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"7616:7:125","nodeType":"YulIdentifier","src":"7616:7:125"}]},{"nativeSrc":"7668:17:125","nodeType":"YulAssignment","src":"7668:17:125","value":{"name":"value_2","nativeSrc":"7678:7:125","nodeType":"YulIdentifier","src":"7678:7:125"},"variableNames":[{"name":"value2","nativeSrc":"7668:6:125","nodeType":"YulIdentifier","src":"7668:6:125"}]},{"nativeSrc":"7694:46:125","nodeType":"YulVariableDeclaration","src":"7694:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7725:9:125","nodeType":"YulIdentifier","src":"7725:9:125"},{"kind":"number","nativeSrc":"7736:2:125","nodeType":"YulLiteral","src":"7736:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"7721:3:125","nodeType":"YulIdentifier","src":"7721:3:125"},"nativeSrc":"7721:18:125","nodeType":"YulFunctionCall","src":"7721:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"7708:12:125","nodeType":"YulIdentifier","src":"7708:12:125"},"nativeSrc":"7708:32:125","nodeType":"YulFunctionCall","src":"7708:32:125"},"variables":[{"name":"offset","nativeSrc":"7698:6:125","nodeType":"YulTypedName","src":"7698:6:125","type":""}]},{"body":{"nativeSrc":"7783:16:125","nodeType":"YulBlock","src":"7783:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7792:1:125","nodeType":"YulLiteral","src":"7792:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7795:1:125","nodeType":"YulLiteral","src":"7795:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7785:6:125","nodeType":"YulIdentifier","src":"7785:6:125"},"nativeSrc":"7785:12:125","nodeType":"YulFunctionCall","src":"7785:12:125"},"nativeSrc":"7785:12:125","nodeType":"YulExpressionStatement","src":"7785:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"7755:6:125","nodeType":"YulIdentifier","src":"7755:6:125"},{"kind":"number","nativeSrc":"7763:18:125","nodeType":"YulLiteral","src":"7763:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7752:2:125","nodeType":"YulIdentifier","src":"7752:2:125"},"nativeSrc":"7752:30:125","nodeType":"YulFunctionCall","src":"7752:30:125"},"nativeSrc":"7749:50:125","nodeType":"YulIf","src":"7749:50:125"},{"nativeSrc":"7808:84:125","nodeType":"YulVariableDeclaration","src":"7808:84:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7864:9:125","nodeType":"YulIdentifier","src":"7864:9:125"},{"name":"offset","nativeSrc":"7875:6:125","nodeType":"YulIdentifier","src":"7875:6:125"}],"functionName":{"name":"add","nativeSrc":"7860:3:125","nodeType":"YulIdentifier","src":"7860:3:125"},"nativeSrc":"7860:22:125","nodeType":"YulFunctionCall","src":"7860:22:125"},{"name":"dataEnd","nativeSrc":"7884:7:125","nodeType":"YulIdentifier","src":"7884:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"7834:25:125","nodeType":"YulIdentifier","src":"7834:25:125"},"nativeSrc":"7834:58:125","nodeType":"YulFunctionCall","src":"7834:58:125"},"variables":[{"name":"value3_1","nativeSrc":"7812:8:125","nodeType":"YulTypedName","src":"7812:8:125","type":""},{"name":"value4_1","nativeSrc":"7822:8:125","nodeType":"YulTypedName","src":"7822:8:125","type":""}]},{"nativeSrc":"7901:18:125","nodeType":"YulAssignment","src":"7901:18:125","value":{"name":"value3_1","nativeSrc":"7911:8:125","nodeType":"YulIdentifier","src":"7911:8:125"},"variableNames":[{"name":"value3","nativeSrc":"7901:6:125","nodeType":"YulIdentifier","src":"7901:6:125"}]},{"nativeSrc":"7928:18:125","nodeType":"YulAssignment","src":"7928:18:125","value":{"name":"value4_1","nativeSrc":"7938:8:125","nodeType":"YulIdentifier","src":"7938:8:125"},"variableNames":[{"name":"value4","nativeSrc":"7928:6:125","nodeType":"YulIdentifier","src":"7928:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr","nativeSrc":"7126:826:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7200:9:125","nodeType":"YulTypedName","src":"7200:9:125","type":""},{"name":"dataEnd","nativeSrc":"7211:7:125","nodeType":"YulTypedName","src":"7211:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7223:6:125","nodeType":"YulTypedName","src":"7223:6:125","type":""},{"name":"value1","nativeSrc":"7231:6:125","nodeType":"YulTypedName","src":"7231:6:125","type":""},{"name":"value2","nativeSrc":"7239:6:125","nodeType":"YulTypedName","src":"7239:6:125","type":""},{"name":"value3","nativeSrc":"7247:6:125","nodeType":"YulTypedName","src":"7247:6:125","type":""},{"name":"value4","nativeSrc":"7255:6:125","nodeType":"YulTypedName","src":"7255:6:125","type":""}],"src":"7126:826:125"},{"body":{"nativeSrc":"8056:103:125","nodeType":"YulBlock","src":"8056:103:125","statements":[{"nativeSrc":"8066:26:125","nodeType":"YulAssignment","src":"8066:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8078:9:125","nodeType":"YulIdentifier","src":"8078:9:125"},{"kind":"number","nativeSrc":"8089:2:125","nodeType":"YulLiteral","src":"8089:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8074:3:125","nodeType":"YulIdentifier","src":"8074:3:125"},"nativeSrc":"8074:18:125","nodeType":"YulFunctionCall","src":"8074:18:125"},"variableNames":[{"name":"tail","nativeSrc":"8066:4:125","nodeType":"YulIdentifier","src":"8066:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8108:9:125","nodeType":"YulIdentifier","src":"8108:9:125"},{"arguments":[{"name":"value0","nativeSrc":"8123:6:125","nodeType":"YulIdentifier","src":"8123:6:125"},{"arguments":[{"kind":"number","nativeSrc":"8135:3:125","nodeType":"YulLiteral","src":"8135:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"8140:10:125","nodeType":"YulLiteral","src":"8140:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"8131:3:125","nodeType":"YulIdentifier","src":"8131:3:125"},"nativeSrc":"8131:20:125","nodeType":"YulFunctionCall","src":"8131:20:125"}],"functionName":{"name":"and","nativeSrc":"8119:3:125","nodeType":"YulIdentifier","src":"8119:3:125"},"nativeSrc":"8119:33:125","nodeType":"YulFunctionCall","src":"8119:33:125"}],"functionName":{"name":"mstore","nativeSrc":"8101:6:125","nodeType":"YulIdentifier","src":"8101:6:125"},"nativeSrc":"8101:52:125","nodeType":"YulFunctionCall","src":"8101:52:125"},"nativeSrc":"8101:52:125","nodeType":"YulExpressionStatement","src":"8101:52:125"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nativeSrc":"7957:202:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8025:9:125","nodeType":"YulTypedName","src":"8025:9:125","type":""},{"name":"value0","nativeSrc":"8036:6:125","nodeType":"YulTypedName","src":"8036:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8047:4:125","nodeType":"YulTypedName","src":"8047:4:125","type":""}],"src":"7957:202:125"},{"body":{"nativeSrc":"8206:76:125","nodeType":"YulBlock","src":"8206:76:125","statements":[{"body":{"nativeSrc":"8260:16:125","nodeType":"YulBlock","src":"8260:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8269:1:125","nodeType":"YulLiteral","src":"8269:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8272:1:125","nodeType":"YulLiteral","src":"8272:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8262:6:125","nodeType":"YulIdentifier","src":"8262:6:125"},"nativeSrc":"8262:12:125","nodeType":"YulFunctionCall","src":"8262:12:125"},"nativeSrc":"8262:12:125","nodeType":"YulExpressionStatement","src":"8262:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8229:5:125","nodeType":"YulIdentifier","src":"8229:5:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8250:5:125","nodeType":"YulIdentifier","src":"8250:5:125"}],"functionName":{"name":"iszero","nativeSrc":"8243:6:125","nodeType":"YulIdentifier","src":"8243:6:125"},"nativeSrc":"8243:13:125","nodeType":"YulFunctionCall","src":"8243:13:125"}],"functionName":{"name":"iszero","nativeSrc":"8236:6:125","nodeType":"YulIdentifier","src":"8236:6:125"},"nativeSrc":"8236:21:125","nodeType":"YulFunctionCall","src":"8236:21:125"}],"functionName":{"name":"eq","nativeSrc":"8226:2:125","nodeType":"YulIdentifier","src":"8226:2:125"},"nativeSrc":"8226:32:125","nodeType":"YulFunctionCall","src":"8226:32:125"}],"functionName":{"name":"iszero","nativeSrc":"8219:6:125","nodeType":"YulIdentifier","src":"8219:6:125"},"nativeSrc":"8219:40:125","nodeType":"YulFunctionCall","src":"8219:40:125"},"nativeSrc":"8216:60:125","nodeType":"YulIf","src":"8216:60:125"}]},"name":"validator_revert_bool","nativeSrc":"8164:118:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"8195:5:125","nodeType":"YulTypedName","src":"8195:5:125","type":""}],"src":"8164:118:125"},{"body":{"nativeSrc":"8389:308:125","nodeType":"YulBlock","src":"8389:308:125","statements":[{"body":{"nativeSrc":"8435:16:125","nodeType":"YulBlock","src":"8435:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8444:1:125","nodeType":"YulLiteral","src":"8444:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8447:1:125","nodeType":"YulLiteral","src":"8447:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8437:6:125","nodeType":"YulIdentifier","src":"8437:6:125"},"nativeSrc":"8437:12:125","nodeType":"YulFunctionCall","src":"8437:12:125"},"nativeSrc":"8437:12:125","nodeType":"YulExpressionStatement","src":"8437:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8410:7:125","nodeType":"YulIdentifier","src":"8410:7:125"},{"name":"headStart","nativeSrc":"8419:9:125","nodeType":"YulIdentifier","src":"8419:9:125"}],"functionName":{"name":"sub","nativeSrc":"8406:3:125","nodeType":"YulIdentifier","src":"8406:3:125"},"nativeSrc":"8406:23:125","nodeType":"YulFunctionCall","src":"8406:23:125"},{"kind":"number","nativeSrc":"8431:2:125","nodeType":"YulLiteral","src":"8431:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"8402:3:125","nodeType":"YulIdentifier","src":"8402:3:125"},"nativeSrc":"8402:32:125","nodeType":"YulFunctionCall","src":"8402:32:125"},"nativeSrc":"8399:52:125","nodeType":"YulIf","src":"8399:52:125"},{"nativeSrc":"8460:36:125","nodeType":"YulVariableDeclaration","src":"8460:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8486:9:125","nodeType":"YulIdentifier","src":"8486:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"8473:12:125","nodeType":"YulIdentifier","src":"8473:12:125"},"nativeSrc":"8473:23:125","nodeType":"YulFunctionCall","src":"8473:23:125"},"variables":[{"name":"value","nativeSrc":"8464:5:125","nodeType":"YulTypedName","src":"8464:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8540:5:125","nodeType":"YulIdentifier","src":"8540:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"8505:34:125","nodeType":"YulIdentifier","src":"8505:34:125"},"nativeSrc":"8505:41:125","nodeType":"YulFunctionCall","src":"8505:41:125"},"nativeSrc":"8505:41:125","nodeType":"YulExpressionStatement","src":"8505:41:125"},{"nativeSrc":"8555:15:125","nodeType":"YulAssignment","src":"8555:15:125","value":{"name":"value","nativeSrc":"8565:5:125","nodeType":"YulIdentifier","src":"8565:5:125"},"variableNames":[{"name":"value0","nativeSrc":"8555:6:125","nodeType":"YulIdentifier","src":"8555:6:125"}]},{"nativeSrc":"8579:47:125","nodeType":"YulVariableDeclaration","src":"8579:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8611:9:125","nodeType":"YulIdentifier","src":"8611:9:125"},{"kind":"number","nativeSrc":"8622:2:125","nodeType":"YulLiteral","src":"8622:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8607:3:125","nodeType":"YulIdentifier","src":"8607:3:125"},"nativeSrc":"8607:18:125","nodeType":"YulFunctionCall","src":"8607:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"8594:12:125","nodeType":"YulIdentifier","src":"8594:12:125"},"nativeSrc":"8594:32:125","nodeType":"YulFunctionCall","src":"8594:32:125"},"variables":[{"name":"value_1","nativeSrc":"8583:7:125","nodeType":"YulTypedName","src":"8583:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"8657:7:125","nodeType":"YulIdentifier","src":"8657:7:125"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"8635:21:125","nodeType":"YulIdentifier","src":"8635:21:125"},"nativeSrc":"8635:30:125","nodeType":"YulFunctionCall","src":"8635:30:125"},"nativeSrc":"8635:30:125","nodeType":"YulExpressionStatement","src":"8635:30:125"},{"nativeSrc":"8674:17:125","nodeType":"YulAssignment","src":"8674:17:125","value":{"name":"value_1","nativeSrc":"8684:7:125","nodeType":"YulIdentifier","src":"8684:7:125"},"variableNames":[{"name":"value1","nativeSrc":"8674:6:125","nodeType":"YulIdentifier","src":"8674:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IERC4626_$22463t_bool","nativeSrc":"8287:410:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8347:9:125","nodeType":"YulTypedName","src":"8347:9:125","type":""},{"name":"dataEnd","nativeSrc":"8358:7:125","nodeType":"YulTypedName","src":"8358:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8370:6:125","nodeType":"YulTypedName","src":"8370:6:125","type":""},{"name":"value1","nativeSrc":"8378:6:125","nodeType":"YulTypedName","src":"8378:6:125","type":""}],"src":"8287:410:125"},{"body":{"nativeSrc":"8788:279:125","nodeType":"YulBlock","src":"8788:279:125","statements":[{"body":{"nativeSrc":"8834:16:125","nodeType":"YulBlock","src":"8834:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8843:1:125","nodeType":"YulLiteral","src":"8843:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8846:1:125","nodeType":"YulLiteral","src":"8846:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8836:6:125","nodeType":"YulIdentifier","src":"8836:6:125"},"nativeSrc":"8836:12:125","nodeType":"YulFunctionCall","src":"8836:12:125"},"nativeSrc":"8836:12:125","nodeType":"YulExpressionStatement","src":"8836:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8809:7:125","nodeType":"YulIdentifier","src":"8809:7:125"},{"name":"headStart","nativeSrc":"8818:9:125","nodeType":"YulIdentifier","src":"8818:9:125"}],"functionName":{"name":"sub","nativeSrc":"8805:3:125","nodeType":"YulIdentifier","src":"8805:3:125"},"nativeSrc":"8805:23:125","nodeType":"YulFunctionCall","src":"8805:23:125"},{"kind":"number","nativeSrc":"8830:2:125","nodeType":"YulLiteral","src":"8830:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"8801:3:125","nodeType":"YulIdentifier","src":"8801:3:125"},"nativeSrc":"8801:32:125","nodeType":"YulFunctionCall","src":"8801:32:125"},"nativeSrc":"8798:52:125","nodeType":"YulIf","src":"8798:52:125"},{"nativeSrc":"8859:36:125","nodeType":"YulVariableDeclaration","src":"8859:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8885:9:125","nodeType":"YulIdentifier","src":"8885:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"8872:12:125","nodeType":"YulIdentifier","src":"8872:12:125"},"nativeSrc":"8872:23:125","nodeType":"YulFunctionCall","src":"8872:23:125"},"variables":[{"name":"value","nativeSrc":"8863:5:125","nodeType":"YulTypedName","src":"8863:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8928:5:125","nodeType":"YulIdentifier","src":"8928:5:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"8904:23:125","nodeType":"YulIdentifier","src":"8904:23:125"},"nativeSrc":"8904:30:125","nodeType":"YulFunctionCall","src":"8904:30:125"},"nativeSrc":"8904:30:125","nodeType":"YulExpressionStatement","src":"8904:30:125"},{"nativeSrc":"8943:15:125","nodeType":"YulAssignment","src":"8943:15:125","value":{"name":"value","nativeSrc":"8953:5:125","nodeType":"YulIdentifier","src":"8953:5:125"},"variableNames":[{"name":"value0","nativeSrc":"8943:6:125","nodeType":"YulIdentifier","src":"8943:6:125"}]},{"nativeSrc":"8967:16:125","nodeType":"YulVariableDeclaration","src":"8967:16:125","value":{"kind":"number","nativeSrc":"8982:1:125","nodeType":"YulLiteral","src":"8982:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"8971:7:125","nodeType":"YulTypedName","src":"8971:7:125","type":""}]},{"nativeSrc":"8992:43:125","nodeType":"YulAssignment","src":"8992:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9020:9:125","nodeType":"YulIdentifier","src":"9020:9:125"},{"kind":"number","nativeSrc":"9031:2:125","nodeType":"YulLiteral","src":"9031:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9016:3:125","nodeType":"YulIdentifier","src":"9016:3:125"},"nativeSrc":"9016:18:125","nodeType":"YulFunctionCall","src":"9016:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"9003:12:125","nodeType":"YulIdentifier","src":"9003:12:125"},"nativeSrc":"9003:32:125","nodeType":"YulFunctionCall","src":"9003:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"8992:7:125","nodeType":"YulIdentifier","src":"8992:7:125"}]},{"nativeSrc":"9044:17:125","nodeType":"YulAssignment","src":"9044:17:125","value":{"name":"value_1","nativeSrc":"9054:7:125","nodeType":"YulIdentifier","src":"9054:7:125"},"variableNames":[{"name":"value1","nativeSrc":"9044:6:125","nodeType":"YulIdentifier","src":"9044:6:125"}]}]},"name":"abi_decode_tuple_t_uint32t_uint256","nativeSrc":"8702:365:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8746:9:125","nodeType":"YulTypedName","src":"8746:9:125","type":""},{"name":"dataEnd","nativeSrc":"8757:7:125","nodeType":"YulTypedName","src":"8757:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8769:6:125","nodeType":"YulTypedName","src":"8769:6:125","type":""},{"name":"value1","nativeSrc":"8777:6:125","nodeType":"YulTypedName","src":"8777:6:125","type":""}],"src":"8702:365:125"},{"body":{"nativeSrc":"9171:93:125","nodeType":"YulBlock","src":"9171:93:125","statements":[{"nativeSrc":"9181:26:125","nodeType":"YulAssignment","src":"9181:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"9193:9:125","nodeType":"YulIdentifier","src":"9193:9:125"},{"kind":"number","nativeSrc":"9204:2:125","nodeType":"YulLiteral","src":"9204:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9189:3:125","nodeType":"YulIdentifier","src":"9189:3:125"},"nativeSrc":"9189:18:125","nodeType":"YulFunctionCall","src":"9189:18:125"},"variableNames":[{"name":"tail","nativeSrc":"9181:4:125","nodeType":"YulIdentifier","src":"9181:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9223:9:125","nodeType":"YulIdentifier","src":"9223:9:125"},{"arguments":[{"name":"value0","nativeSrc":"9238:6:125","nodeType":"YulIdentifier","src":"9238:6:125"},{"kind":"number","nativeSrc":"9246:10:125","nodeType":"YulLiteral","src":"9246:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"9234:3:125","nodeType":"YulIdentifier","src":"9234:3:125"},"nativeSrc":"9234:23:125","nodeType":"YulFunctionCall","src":"9234:23:125"}],"functionName":{"name":"mstore","nativeSrc":"9216:6:125","nodeType":"YulIdentifier","src":"9216:6:125"},"nativeSrc":"9216:42:125","nodeType":"YulFunctionCall","src":"9216:42:125"},"nativeSrc":"9216:42:125","nodeType":"YulExpressionStatement","src":"9216:42:125"}]},"name":"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed","nativeSrc":"9072:192:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9140:9:125","nodeType":"YulTypedName","src":"9140:9:125","type":""},{"name":"value0","nativeSrc":"9151:6:125","nodeType":"YulTypedName","src":"9151:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9162:4:125","nodeType":"YulTypedName","src":"9162:4:125","type":""}],"src":"9072:192:125"},{"body":{"nativeSrc":"9405:672:125","nodeType":"YulBlock","src":"9405:672:125","statements":[{"body":{"nativeSrc":"9452:16:125","nodeType":"YulBlock","src":"9452:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9461:1:125","nodeType":"YulLiteral","src":"9461:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9464:1:125","nodeType":"YulLiteral","src":"9464:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9454:6:125","nodeType":"YulIdentifier","src":"9454:6:125"},"nativeSrc":"9454:12:125","nodeType":"YulFunctionCall","src":"9454:12:125"},"nativeSrc":"9454:12:125","nodeType":"YulExpressionStatement","src":"9454:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9426:7:125","nodeType":"YulIdentifier","src":"9426:7:125"},{"name":"headStart","nativeSrc":"9435:9:125","nodeType":"YulIdentifier","src":"9435:9:125"}],"functionName":{"name":"sub","nativeSrc":"9422:3:125","nodeType":"YulIdentifier","src":"9422:3:125"},"nativeSrc":"9422:23:125","nodeType":"YulFunctionCall","src":"9422:23:125"},{"kind":"number","nativeSrc":"9447:3:125","nodeType":"YulLiteral","src":"9447:3:125","type":"","value":"160"}],"functionName":{"name":"slt","nativeSrc":"9418:3:125","nodeType":"YulIdentifier","src":"9418:3:125"},"nativeSrc":"9418:33:125","nodeType":"YulFunctionCall","src":"9418:33:125"},"nativeSrc":"9415:53:125","nodeType":"YulIf","src":"9415:53:125"},{"nativeSrc":"9477:36:125","nodeType":"YulVariableDeclaration","src":"9477:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"9503:9:125","nodeType":"YulIdentifier","src":"9503:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"9490:12:125","nodeType":"YulIdentifier","src":"9490:12:125"},"nativeSrc":"9490:23:125","nodeType":"YulFunctionCall","src":"9490:23:125"},"variables":[{"name":"value","nativeSrc":"9481:5:125","nodeType":"YulTypedName","src":"9481:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"9557:5:125","nodeType":"YulIdentifier","src":"9557:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"9522:34:125","nodeType":"YulIdentifier","src":"9522:34:125"},"nativeSrc":"9522:41:125","nodeType":"YulFunctionCall","src":"9522:41:125"},"nativeSrc":"9522:41:125","nodeType":"YulExpressionStatement","src":"9522:41:125"},{"nativeSrc":"9572:15:125","nodeType":"YulAssignment","src":"9572:15:125","value":{"name":"value","nativeSrc":"9582:5:125","nodeType":"YulIdentifier","src":"9582:5:125"},"variableNames":[{"name":"value0","nativeSrc":"9572:6:125","nodeType":"YulIdentifier","src":"9572:6:125"}]},{"nativeSrc":"9596:47:125","nodeType":"YulVariableDeclaration","src":"9596:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9628:9:125","nodeType":"YulIdentifier","src":"9628:9:125"},{"kind":"number","nativeSrc":"9639:2:125","nodeType":"YulLiteral","src":"9639:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9624:3:125","nodeType":"YulIdentifier","src":"9624:3:125"},"nativeSrc":"9624:18:125","nodeType":"YulFunctionCall","src":"9624:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"9611:12:125","nodeType":"YulIdentifier","src":"9611:12:125"},"nativeSrc":"9611:32:125","nodeType":"YulFunctionCall","src":"9611:32:125"},"variables":[{"name":"value_1","nativeSrc":"9600:7:125","nodeType":"YulTypedName","src":"9600:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"9676:7:125","nodeType":"YulIdentifier","src":"9676:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"9652:23:125","nodeType":"YulIdentifier","src":"9652:23:125"},"nativeSrc":"9652:32:125","nodeType":"YulFunctionCall","src":"9652:32:125"},"nativeSrc":"9652:32:125","nodeType":"YulExpressionStatement","src":"9652:32:125"},{"nativeSrc":"9693:17:125","nodeType":"YulAssignment","src":"9693:17:125","value":{"name":"value_1","nativeSrc":"9703:7:125","nodeType":"YulIdentifier","src":"9703:7:125"},"variableNames":[{"name":"value1","nativeSrc":"9693:6:125","nodeType":"YulIdentifier","src":"9693:6:125"}]},{"nativeSrc":"9719:47:125","nodeType":"YulVariableDeclaration","src":"9719:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9751:9:125","nodeType":"YulIdentifier","src":"9751:9:125"},{"kind":"number","nativeSrc":"9762:2:125","nodeType":"YulLiteral","src":"9762:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9747:3:125","nodeType":"YulIdentifier","src":"9747:3:125"},"nativeSrc":"9747:18:125","nodeType":"YulFunctionCall","src":"9747:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"9734:12:125","nodeType":"YulIdentifier","src":"9734:12:125"},"nativeSrc":"9734:32:125","nodeType":"YulFunctionCall","src":"9734:32:125"},"variables":[{"name":"value_2","nativeSrc":"9723:7:125","nodeType":"YulTypedName","src":"9723:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"9799:7:125","nodeType":"YulIdentifier","src":"9799:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"9775:23:125","nodeType":"YulIdentifier","src":"9775:23:125"},"nativeSrc":"9775:32:125","nodeType":"YulFunctionCall","src":"9775:32:125"},"nativeSrc":"9775:32:125","nodeType":"YulExpressionStatement","src":"9775:32:125"},{"nativeSrc":"9816:17:125","nodeType":"YulAssignment","src":"9816:17:125","value":{"name":"value_2","nativeSrc":"9826:7:125","nodeType":"YulIdentifier","src":"9826:7:125"},"variableNames":[{"name":"value2","nativeSrc":"9816:6:125","nodeType":"YulIdentifier","src":"9816:6:125"}]},{"nativeSrc":"9842:16:125","nodeType":"YulVariableDeclaration","src":"9842:16:125","value":{"kind":"number","nativeSrc":"9857:1:125","nodeType":"YulLiteral","src":"9857:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"9846:7:125","nodeType":"YulTypedName","src":"9846:7:125","type":""}]},{"nativeSrc":"9867:43:125","nodeType":"YulAssignment","src":"9867:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9895:9:125","nodeType":"YulIdentifier","src":"9895:9:125"},{"kind":"number","nativeSrc":"9906:2:125","nodeType":"YulLiteral","src":"9906:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9891:3:125","nodeType":"YulIdentifier","src":"9891:3:125"},"nativeSrc":"9891:18:125","nodeType":"YulFunctionCall","src":"9891:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"9878:12:125","nodeType":"YulIdentifier","src":"9878:12:125"},"nativeSrc":"9878:32:125","nodeType":"YulFunctionCall","src":"9878:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"9867:7:125","nodeType":"YulIdentifier","src":"9867:7:125"}]},{"nativeSrc":"9919:17:125","nodeType":"YulAssignment","src":"9919:17:125","value":{"name":"value_3","nativeSrc":"9929:7:125","nodeType":"YulIdentifier","src":"9929:7:125"},"variableNames":[{"name":"value3","nativeSrc":"9919:6:125","nodeType":"YulIdentifier","src":"9919:6:125"}]},{"nativeSrc":"9945:48:125","nodeType":"YulVariableDeclaration","src":"9945:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9977:9:125","nodeType":"YulIdentifier","src":"9977:9:125"},{"kind":"number","nativeSrc":"9988:3:125","nodeType":"YulLiteral","src":"9988:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"9973:3:125","nodeType":"YulIdentifier","src":"9973:3:125"},"nativeSrc":"9973:19:125","nodeType":"YulFunctionCall","src":"9973:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"9960:12:125","nodeType":"YulIdentifier","src":"9960:12:125"},"nativeSrc":"9960:33:125","nodeType":"YulFunctionCall","src":"9960:33:125"},"variables":[{"name":"value_4","nativeSrc":"9949:7:125","nodeType":"YulTypedName","src":"9949:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"10037:7:125","nodeType":"YulIdentifier","src":"10037:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"10002:34:125","nodeType":"YulIdentifier","src":"10002:34:125"},"nativeSrc":"10002:43:125","nodeType":"YulFunctionCall","src":"10002:43:125"},"nativeSrc":"10002:43:125","nodeType":"YulExpressionStatement","src":"10002:43:125"},{"nativeSrc":"10054:17:125","nodeType":"YulAssignment","src":"10054:17:125","value":{"name":"value_4","nativeSrc":"10064:7:125","nodeType":"YulIdentifier","src":"10064:7:125"},"variableNames":[{"name":"value4","nativeSrc":"10054:6:125","nodeType":"YulIdentifier","src":"10054:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint32t_uint256t_address","nativeSrc":"9269:808:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9339:9:125","nodeType":"YulTypedName","src":"9339:9:125","type":""},{"name":"dataEnd","nativeSrc":"9350:7:125","nodeType":"YulTypedName","src":"9350:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9362:6:125","nodeType":"YulTypedName","src":"9362:6:125","type":""},{"name":"value1","nativeSrc":"9370:6:125","nodeType":"YulTypedName","src":"9370:6:125","type":""},{"name":"value2","nativeSrc":"9378:6:125","nodeType":"YulTypedName","src":"9378:6:125","type":""},{"name":"value3","nativeSrc":"9386:6:125","nodeType":"YulTypedName","src":"9386:6:125","type":""},{"name":"value4","nativeSrc":"9394:6:125","nodeType":"YulTypedName","src":"9394:6:125","type":""}],"src":"9269:808:125"},{"body":{"nativeSrc":"10186:424:125","nodeType":"YulBlock","src":"10186:424:125","statements":[{"body":{"nativeSrc":"10232:16:125","nodeType":"YulBlock","src":"10232:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10241:1:125","nodeType":"YulLiteral","src":"10241:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10244:1:125","nodeType":"YulLiteral","src":"10244:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10234:6:125","nodeType":"YulIdentifier","src":"10234:6:125"},"nativeSrc":"10234:12:125","nodeType":"YulFunctionCall","src":"10234:12:125"},"nativeSrc":"10234:12:125","nodeType":"YulExpressionStatement","src":"10234:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10207:7:125","nodeType":"YulIdentifier","src":"10207:7:125"},{"name":"headStart","nativeSrc":"10216:9:125","nodeType":"YulIdentifier","src":"10216:9:125"}],"functionName":{"name":"sub","nativeSrc":"10203:3:125","nodeType":"YulIdentifier","src":"10203:3:125"},"nativeSrc":"10203:23:125","nodeType":"YulFunctionCall","src":"10203:23:125"},{"kind":"number","nativeSrc":"10228:2:125","nodeType":"YulLiteral","src":"10228:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"10199:3:125","nodeType":"YulIdentifier","src":"10199:3:125"},"nativeSrc":"10199:32:125","nodeType":"YulFunctionCall","src":"10199:32:125"},"nativeSrc":"10196:52:125","nodeType":"YulIf","src":"10196:52:125"},{"nativeSrc":"10257:36:125","nodeType":"YulVariableDeclaration","src":"10257:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10283:9:125","nodeType":"YulIdentifier","src":"10283:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"10270:12:125","nodeType":"YulIdentifier","src":"10270:12:125"},"nativeSrc":"10270:23:125","nodeType":"YulFunctionCall","src":"10270:23:125"},"variables":[{"name":"value","nativeSrc":"10261:5:125","nodeType":"YulTypedName","src":"10261:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10337:5:125","nodeType":"YulIdentifier","src":"10337:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"10302:34:125","nodeType":"YulIdentifier","src":"10302:34:125"},"nativeSrc":"10302:41:125","nodeType":"YulFunctionCall","src":"10302:41:125"},"nativeSrc":"10302:41:125","nodeType":"YulExpressionStatement","src":"10302:41:125"},{"nativeSrc":"10352:15:125","nodeType":"YulAssignment","src":"10352:15:125","value":{"name":"value","nativeSrc":"10362:5:125","nodeType":"YulIdentifier","src":"10362:5:125"},"variableNames":[{"name":"value0","nativeSrc":"10352:6:125","nodeType":"YulIdentifier","src":"10352:6:125"}]},{"nativeSrc":"10376:47:125","nodeType":"YulVariableDeclaration","src":"10376:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10408:9:125","nodeType":"YulIdentifier","src":"10408:9:125"},{"kind":"number","nativeSrc":"10419:2:125","nodeType":"YulLiteral","src":"10419:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10404:3:125","nodeType":"YulIdentifier","src":"10404:3:125"},"nativeSrc":"10404:18:125","nodeType":"YulFunctionCall","src":"10404:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"10391:12:125","nodeType":"YulIdentifier","src":"10391:12:125"},"nativeSrc":"10391:32:125","nodeType":"YulFunctionCall","src":"10391:32:125"},"variables":[{"name":"value_1","nativeSrc":"10380:7:125","nodeType":"YulTypedName","src":"10380:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"10467:7:125","nodeType":"YulIdentifier","src":"10467:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"10432:34:125","nodeType":"YulIdentifier","src":"10432:34:125"},"nativeSrc":"10432:43:125","nodeType":"YulFunctionCall","src":"10432:43:125"},"nativeSrc":"10432:43:125","nodeType":"YulExpressionStatement","src":"10432:43:125"},{"nativeSrc":"10484:17:125","nodeType":"YulAssignment","src":"10484:17:125","value":{"name":"value_1","nativeSrc":"10494:7:125","nodeType":"YulIdentifier","src":"10494:7:125"},"variableNames":[{"name":"value1","nativeSrc":"10484:6:125","nodeType":"YulIdentifier","src":"10484:6:125"}]},{"nativeSrc":"10510:16:125","nodeType":"YulVariableDeclaration","src":"10510:16:125","value":{"kind":"number","nativeSrc":"10525:1:125","nodeType":"YulLiteral","src":"10525:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"10514:7:125","nodeType":"YulTypedName","src":"10514:7:125","type":""}]},{"nativeSrc":"10535:43:125","nodeType":"YulAssignment","src":"10535:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10563:9:125","nodeType":"YulIdentifier","src":"10563:9:125"},{"kind":"number","nativeSrc":"10574:2:125","nodeType":"YulLiteral","src":"10574:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10559:3:125","nodeType":"YulIdentifier","src":"10559:3:125"},"nativeSrc":"10559:18:125","nodeType":"YulFunctionCall","src":"10559:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"10546:12:125","nodeType":"YulIdentifier","src":"10546:12:125"},"nativeSrc":"10546:32:125","nodeType":"YulFunctionCall","src":"10546:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"10535:7:125","nodeType":"YulIdentifier","src":"10535:7:125"}]},{"nativeSrc":"10587:17:125","nodeType":"YulAssignment","src":"10587:17:125","value":{"name":"value_2","nativeSrc":"10597:7:125","nodeType":"YulIdentifier","src":"10597:7:125"},"variableNames":[{"name":"value2","nativeSrc":"10587:6:125","nodeType":"YulIdentifier","src":"10587:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"10082:528:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10136:9:125","nodeType":"YulTypedName","src":"10136:9:125","type":""},{"name":"dataEnd","nativeSrc":"10147:7:125","nodeType":"YulTypedName","src":"10147:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10159:6:125","nodeType":"YulTypedName","src":"10159:6:125","type":""},{"name":"value1","nativeSrc":"10167:6:125","nodeType":"YulTypedName","src":"10167:6:125","type":""},{"name":"value2","nativeSrc":"10175:6:125","nodeType":"YulTypedName","src":"10175:6:125","type":""}],"src":"10082:528:125"},{"body":{"nativeSrc":"10659:60:125","nodeType":"YulBlock","src":"10659:60:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"10676:3:125","nodeType":"YulIdentifier","src":"10676:3:125"},{"arguments":[{"name":"value","nativeSrc":"10685:5:125","nodeType":"YulIdentifier","src":"10685:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"10700:3:125","nodeType":"YulLiteral","src":"10700:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"10705:1:125","nodeType":"YulLiteral","src":"10705:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"10696:3:125","nodeType":"YulIdentifier","src":"10696:3:125"},"nativeSrc":"10696:11:125","nodeType":"YulFunctionCall","src":"10696:11:125"},{"kind":"number","nativeSrc":"10709:1:125","nodeType":"YulLiteral","src":"10709:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"10692:3:125","nodeType":"YulIdentifier","src":"10692:3:125"},"nativeSrc":"10692:19:125","nodeType":"YulFunctionCall","src":"10692:19:125"}],"functionName":{"name":"and","nativeSrc":"10681:3:125","nodeType":"YulIdentifier","src":"10681:3:125"},"nativeSrc":"10681:31:125","nodeType":"YulFunctionCall","src":"10681:31:125"}],"functionName":{"name":"mstore","nativeSrc":"10669:6:125","nodeType":"YulIdentifier","src":"10669:6:125"},"nativeSrc":"10669:44:125","nodeType":"YulFunctionCall","src":"10669:44:125"},"nativeSrc":"10669:44:125","nodeType":"YulExpressionStatement","src":"10669:44:125"}]},"name":"abi_encode_address","nativeSrc":"10615:104:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"10643:5:125","nodeType":"YulTypedName","src":"10643:5:125","type":""},{"name":"pos","nativeSrc":"10650:3:125","nodeType":"YulTypedName","src":"10650:3:125","type":""}],"src":"10615:104:125"},{"body":{"nativeSrc":"10825:102:125","nodeType":"YulBlock","src":"10825:102:125","statements":[{"nativeSrc":"10835:26:125","nodeType":"YulAssignment","src":"10835:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10847:9:125","nodeType":"YulIdentifier","src":"10847:9:125"},{"kind":"number","nativeSrc":"10858:2:125","nodeType":"YulLiteral","src":"10858:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10843:3:125","nodeType":"YulIdentifier","src":"10843:3:125"},"nativeSrc":"10843:18:125","nodeType":"YulFunctionCall","src":"10843:18:125"},"variableNames":[{"name":"tail","nativeSrc":"10835:4:125","nodeType":"YulIdentifier","src":"10835:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10877:9:125","nodeType":"YulIdentifier","src":"10877:9:125"},{"arguments":[{"name":"value0","nativeSrc":"10892:6:125","nodeType":"YulIdentifier","src":"10892:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"10908:3:125","nodeType":"YulLiteral","src":"10908:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"10913:1:125","nodeType":"YulLiteral","src":"10913:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"10904:3:125","nodeType":"YulIdentifier","src":"10904:3:125"},"nativeSrc":"10904:11:125","nodeType":"YulFunctionCall","src":"10904:11:125"},{"kind":"number","nativeSrc":"10917:1:125","nodeType":"YulLiteral","src":"10917:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"10900:3:125","nodeType":"YulIdentifier","src":"10900:3:125"},"nativeSrc":"10900:19:125","nodeType":"YulFunctionCall","src":"10900:19:125"}],"functionName":{"name":"and","nativeSrc":"10888:3:125","nodeType":"YulIdentifier","src":"10888:3:125"},"nativeSrc":"10888:32:125","nodeType":"YulFunctionCall","src":"10888:32:125"}],"functionName":{"name":"mstore","nativeSrc":"10870:6:125","nodeType":"YulIdentifier","src":"10870:6:125"},"nativeSrc":"10870:51:125","nodeType":"YulFunctionCall","src":"10870:51:125"},"nativeSrc":"10870:51:125","nodeType":"YulExpressionStatement","src":"10870:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"10724:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10794:9:125","nodeType":"YulTypedName","src":"10794:9:125","type":""},{"name":"value0","nativeSrc":"10805:6:125","nodeType":"YulTypedName","src":"10805:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10816:4:125","nodeType":"YulTypedName","src":"10816:4:125","type":""}],"src":"10724:203:125"},{"body":{"nativeSrc":"11029:87:125","nodeType":"YulBlock","src":"11029:87:125","statements":[{"nativeSrc":"11039:26:125","nodeType":"YulAssignment","src":"11039:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11051:9:125","nodeType":"YulIdentifier","src":"11051:9:125"},{"kind":"number","nativeSrc":"11062:2:125","nodeType":"YulLiteral","src":"11062:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11047:3:125","nodeType":"YulIdentifier","src":"11047:3:125"},"nativeSrc":"11047:18:125","nodeType":"YulFunctionCall","src":"11047:18:125"},"variableNames":[{"name":"tail","nativeSrc":"11039:4:125","nodeType":"YulIdentifier","src":"11039:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11081:9:125","nodeType":"YulIdentifier","src":"11081:9:125"},{"arguments":[{"name":"value0","nativeSrc":"11096:6:125","nodeType":"YulIdentifier","src":"11096:6:125"},{"kind":"number","nativeSrc":"11104:4:125","nodeType":"YulLiteral","src":"11104:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"11092:3:125","nodeType":"YulIdentifier","src":"11092:3:125"},"nativeSrc":"11092:17:125","nodeType":"YulFunctionCall","src":"11092:17:125"}],"functionName":{"name":"mstore","nativeSrc":"11074:6:125","nodeType":"YulIdentifier","src":"11074:6:125"},"nativeSrc":"11074:36:125","nodeType":"YulFunctionCall","src":"11074:36:125"},"nativeSrc":"11074:36:125","nodeType":"YulExpressionStatement","src":"11074:36:125"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"10932:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10998:9:125","nodeType":"YulTypedName","src":"10998:9:125","type":""},{"name":"value0","nativeSrc":"11009:6:125","nodeType":"YulTypedName","src":"11009:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11020:4:125","nodeType":"YulTypedName","src":"11020:4:125","type":""}],"src":"10932:184:125"},{"body":{"nativeSrc":"11239:546:125","nodeType":"YulBlock","src":"11239:546:125","statements":[{"body":{"nativeSrc":"11286:16:125","nodeType":"YulBlock","src":"11286:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11295:1:125","nodeType":"YulLiteral","src":"11295:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11298:1:125","nodeType":"YulLiteral","src":"11298:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11288:6:125","nodeType":"YulIdentifier","src":"11288:6:125"},"nativeSrc":"11288:12:125","nodeType":"YulFunctionCall","src":"11288:12:125"},"nativeSrc":"11288:12:125","nodeType":"YulExpressionStatement","src":"11288:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11260:7:125","nodeType":"YulIdentifier","src":"11260:7:125"},{"name":"headStart","nativeSrc":"11269:9:125","nodeType":"YulIdentifier","src":"11269:9:125"}],"functionName":{"name":"sub","nativeSrc":"11256:3:125","nodeType":"YulIdentifier","src":"11256:3:125"},"nativeSrc":"11256:23:125","nodeType":"YulFunctionCall","src":"11256:23:125"},{"kind":"number","nativeSrc":"11281:3:125","nodeType":"YulLiteral","src":"11281:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"11252:3:125","nodeType":"YulIdentifier","src":"11252:3:125"},"nativeSrc":"11252:33:125","nodeType":"YulFunctionCall","src":"11252:33:125"},"nativeSrc":"11249:53:125","nodeType":"YulIf","src":"11249:53:125"},{"nativeSrc":"11311:36:125","nodeType":"YulVariableDeclaration","src":"11311:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11337:9:125","nodeType":"YulIdentifier","src":"11337:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"11324:12:125","nodeType":"YulIdentifier","src":"11324:12:125"},"nativeSrc":"11324:23:125","nodeType":"YulFunctionCall","src":"11324:23:125"},"variables":[{"name":"value","nativeSrc":"11315:5:125","nodeType":"YulTypedName","src":"11315:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11391:5:125","nodeType":"YulIdentifier","src":"11391:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"11356:34:125","nodeType":"YulIdentifier","src":"11356:34:125"},"nativeSrc":"11356:41:125","nodeType":"YulFunctionCall","src":"11356:41:125"},"nativeSrc":"11356:41:125","nodeType":"YulExpressionStatement","src":"11356:41:125"},{"nativeSrc":"11406:15:125","nodeType":"YulAssignment","src":"11406:15:125","value":{"name":"value","nativeSrc":"11416:5:125","nodeType":"YulIdentifier","src":"11416:5:125"},"variableNames":[{"name":"value0","nativeSrc":"11406:6:125","nodeType":"YulIdentifier","src":"11406:6:125"}]},{"nativeSrc":"11430:47:125","nodeType":"YulVariableDeclaration","src":"11430:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11462:9:125","nodeType":"YulIdentifier","src":"11462:9:125"},{"kind":"number","nativeSrc":"11473:2:125","nodeType":"YulLiteral","src":"11473:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11458:3:125","nodeType":"YulIdentifier","src":"11458:3:125"},"nativeSrc":"11458:18:125","nodeType":"YulFunctionCall","src":"11458:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"11445:12:125","nodeType":"YulIdentifier","src":"11445:12:125"},"nativeSrc":"11445:32:125","nodeType":"YulFunctionCall","src":"11445:32:125"},"variables":[{"name":"value_1","nativeSrc":"11434:7:125","nodeType":"YulTypedName","src":"11434:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"11521:7:125","nodeType":"YulIdentifier","src":"11521:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"11486:34:125","nodeType":"YulIdentifier","src":"11486:34:125"},"nativeSrc":"11486:43:125","nodeType":"YulFunctionCall","src":"11486:43:125"},"nativeSrc":"11486:43:125","nodeType":"YulExpressionStatement","src":"11486:43:125"},{"nativeSrc":"11538:17:125","nodeType":"YulAssignment","src":"11538:17:125","value":{"name":"value_1","nativeSrc":"11548:7:125","nodeType":"YulIdentifier","src":"11548:7:125"},"variableNames":[{"name":"value1","nativeSrc":"11538:6:125","nodeType":"YulIdentifier","src":"11538:6:125"}]},{"nativeSrc":"11564:16:125","nodeType":"YulVariableDeclaration","src":"11564:16:125","value":{"kind":"number","nativeSrc":"11579:1:125","nodeType":"YulLiteral","src":"11579:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"11568:7:125","nodeType":"YulTypedName","src":"11568:7:125","type":""}]},{"nativeSrc":"11589:43:125","nodeType":"YulAssignment","src":"11589:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11617:9:125","nodeType":"YulIdentifier","src":"11617:9:125"},{"kind":"number","nativeSrc":"11628:2:125","nodeType":"YulLiteral","src":"11628:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11613:3:125","nodeType":"YulIdentifier","src":"11613:3:125"},"nativeSrc":"11613:18:125","nodeType":"YulFunctionCall","src":"11613:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"11600:12:125","nodeType":"YulIdentifier","src":"11600:12:125"},"nativeSrc":"11600:32:125","nodeType":"YulFunctionCall","src":"11600:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"11589:7:125","nodeType":"YulIdentifier","src":"11589:7:125"}]},{"nativeSrc":"11641:17:125","nodeType":"YulAssignment","src":"11641:17:125","value":{"name":"value_2","nativeSrc":"11651:7:125","nodeType":"YulIdentifier","src":"11651:7:125"},"variableNames":[{"name":"value2","nativeSrc":"11641:6:125","nodeType":"YulIdentifier","src":"11641:6:125"}]},{"nativeSrc":"11667:47:125","nodeType":"YulVariableDeclaration","src":"11667:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11699:9:125","nodeType":"YulIdentifier","src":"11699:9:125"},{"kind":"number","nativeSrc":"11710:2:125","nodeType":"YulLiteral","src":"11710:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11695:3:125","nodeType":"YulIdentifier","src":"11695:3:125"},"nativeSrc":"11695:18:125","nodeType":"YulFunctionCall","src":"11695:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"11682:12:125","nodeType":"YulIdentifier","src":"11682:12:125"},"nativeSrc":"11682:32:125","nodeType":"YulFunctionCall","src":"11682:32:125"},"variables":[{"name":"value_3","nativeSrc":"11671:7:125","nodeType":"YulTypedName","src":"11671:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"11745:7:125","nodeType":"YulIdentifier","src":"11745:7:125"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"11723:21:125","nodeType":"YulIdentifier","src":"11723:21:125"},"nativeSrc":"11723:30:125","nodeType":"YulFunctionCall","src":"11723:30:125"},"nativeSrc":"11723:30:125","nodeType":"YulExpressionStatement","src":"11723:30:125"},{"nativeSrc":"11762:17:125","nodeType":"YulAssignment","src":"11762:17:125","value":{"name":"value_3","nativeSrc":"11772:7:125","nodeType":"YulIdentifier","src":"11772:7:125"},"variableNames":[{"name":"value3","nativeSrc":"11762:6:125","nodeType":"YulIdentifier","src":"11762:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_bool","nativeSrc":"11121:664:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11181:9:125","nodeType":"YulTypedName","src":"11181:9:125","type":""},{"name":"dataEnd","nativeSrc":"11192:7:125","nodeType":"YulTypedName","src":"11192:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11204:6:125","nodeType":"YulTypedName","src":"11204:6:125","type":""},{"name":"value1","nativeSrc":"11212:6:125","nodeType":"YulTypedName","src":"11212:6:125","type":""},{"name":"value2","nativeSrc":"11220:6:125","nodeType":"YulTypedName","src":"11220:6:125","type":""},{"name":"value3","nativeSrc":"11228:6:125","nodeType":"YulTypedName","src":"11228:6:125","type":""}],"src":"11121:664:125"},{"body":{"nativeSrc":"11909:99:125","nodeType":"YulBlock","src":"11909:99:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11926:9:125","nodeType":"YulIdentifier","src":"11926:9:125"},{"kind":"number","nativeSrc":"11937:2:125","nodeType":"YulLiteral","src":"11937:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"11919:6:125","nodeType":"YulIdentifier","src":"11919:6:125"},"nativeSrc":"11919:21:125","nodeType":"YulFunctionCall","src":"11919:21:125"},"nativeSrc":"11919:21:125","nodeType":"YulExpressionStatement","src":"11919:21:125"},{"nativeSrc":"11949:53:125","nodeType":"YulAssignment","src":"11949:53:125","value":{"arguments":[{"name":"value0","nativeSrc":"11975:6:125","nodeType":"YulIdentifier","src":"11975:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"11987:9:125","nodeType":"YulIdentifier","src":"11987:9:125"},{"kind":"number","nativeSrc":"11998:2:125","nodeType":"YulLiteral","src":"11998:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11983:3:125","nodeType":"YulIdentifier","src":"11983:3:125"},"nativeSrc":"11983:18:125","nodeType":"YulFunctionCall","src":"11983:18:125"}],"functionName":{"name":"abi_encode_string","nativeSrc":"11957:17:125","nodeType":"YulIdentifier","src":"11957:17:125"},"nativeSrc":"11957:45:125","nodeType":"YulFunctionCall","src":"11957:45:125"},"variableNames":[{"name":"tail","nativeSrc":"11949:4:125","nodeType":"YulIdentifier","src":"11949:4:125"}]}]},"name":"abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"11790:218:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11878:9:125","nodeType":"YulTypedName","src":"11878:9:125","type":""},{"name":"value0","nativeSrc":"11889:6:125","nodeType":"YulTypedName","src":"11889:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11900:4:125","nodeType":"YulTypedName","src":"11900:4:125","type":""}],"src":"11790:218:125"},{"body":{"nativeSrc":"12119:448:125","nodeType":"YulBlock","src":"12119:448:125","statements":[{"body":{"nativeSrc":"12165:16:125","nodeType":"YulBlock","src":"12165:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12174:1:125","nodeType":"YulLiteral","src":"12174:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12177:1:125","nodeType":"YulLiteral","src":"12177:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12167:6:125","nodeType":"YulIdentifier","src":"12167:6:125"},"nativeSrc":"12167:12:125","nodeType":"YulFunctionCall","src":"12167:12:125"},"nativeSrc":"12167:12:125","nodeType":"YulExpressionStatement","src":"12167:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12140:7:125","nodeType":"YulIdentifier","src":"12140:7:125"},{"name":"headStart","nativeSrc":"12149:9:125","nodeType":"YulIdentifier","src":"12149:9:125"}],"functionName":{"name":"sub","nativeSrc":"12136:3:125","nodeType":"YulIdentifier","src":"12136:3:125"},"nativeSrc":"12136:23:125","nodeType":"YulFunctionCall","src":"12136:23:125"},{"kind":"number","nativeSrc":"12161:2:125","nodeType":"YulLiteral","src":"12161:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"12132:3:125","nodeType":"YulIdentifier","src":"12132:3:125"},"nativeSrc":"12132:32:125","nodeType":"YulFunctionCall","src":"12132:32:125"},"nativeSrc":"12129:52:125","nodeType":"YulIf","src":"12129:52:125"},{"nativeSrc":"12190:36:125","nodeType":"YulVariableDeclaration","src":"12190:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12216:9:125","nodeType":"YulIdentifier","src":"12216:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"12203:12:125","nodeType":"YulIdentifier","src":"12203:12:125"},"nativeSrc":"12203:23:125","nodeType":"YulFunctionCall","src":"12203:23:125"},"variables":[{"name":"value","nativeSrc":"12194:5:125","nodeType":"YulTypedName","src":"12194:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12270:5:125","nodeType":"YulIdentifier","src":"12270:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"12235:34:125","nodeType":"YulIdentifier","src":"12235:34:125"},"nativeSrc":"12235:41:125","nodeType":"YulFunctionCall","src":"12235:41:125"},"nativeSrc":"12235:41:125","nodeType":"YulExpressionStatement","src":"12235:41:125"},{"nativeSrc":"12285:15:125","nodeType":"YulAssignment","src":"12285:15:125","value":{"name":"value","nativeSrc":"12295:5:125","nodeType":"YulIdentifier","src":"12295:5:125"},"variableNames":[{"name":"value0","nativeSrc":"12285:6:125","nodeType":"YulIdentifier","src":"12285:6:125"}]},{"nativeSrc":"12309:46:125","nodeType":"YulVariableDeclaration","src":"12309:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12340:9:125","nodeType":"YulIdentifier","src":"12340:9:125"},{"kind":"number","nativeSrc":"12351:2:125","nodeType":"YulLiteral","src":"12351:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12336:3:125","nodeType":"YulIdentifier","src":"12336:3:125"},"nativeSrc":"12336:18:125","nodeType":"YulFunctionCall","src":"12336:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"12323:12:125","nodeType":"YulIdentifier","src":"12323:12:125"},"nativeSrc":"12323:32:125","nodeType":"YulFunctionCall","src":"12323:32:125"},"variables":[{"name":"offset","nativeSrc":"12313:6:125","nodeType":"YulTypedName","src":"12313:6:125","type":""}]},{"body":{"nativeSrc":"12398:16:125","nodeType":"YulBlock","src":"12398:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12407:1:125","nodeType":"YulLiteral","src":"12407:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12410:1:125","nodeType":"YulLiteral","src":"12410:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12400:6:125","nodeType":"YulIdentifier","src":"12400:6:125"},"nativeSrc":"12400:12:125","nodeType":"YulFunctionCall","src":"12400:12:125"},"nativeSrc":"12400:12:125","nodeType":"YulExpressionStatement","src":"12400:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"12370:6:125","nodeType":"YulIdentifier","src":"12370:6:125"},{"kind":"number","nativeSrc":"12378:18:125","nodeType":"YulLiteral","src":"12378:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"12367:2:125","nodeType":"YulIdentifier","src":"12367:2:125"},"nativeSrc":"12367:30:125","nodeType":"YulFunctionCall","src":"12367:30:125"},"nativeSrc":"12364:50:125","nodeType":"YulIf","src":"12364:50:125"},{"nativeSrc":"12423:84:125","nodeType":"YulVariableDeclaration","src":"12423:84:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12479:9:125","nodeType":"YulIdentifier","src":"12479:9:125"},{"name":"offset","nativeSrc":"12490:6:125","nodeType":"YulIdentifier","src":"12490:6:125"}],"functionName":{"name":"add","nativeSrc":"12475:3:125","nodeType":"YulIdentifier","src":"12475:3:125"},"nativeSrc":"12475:22:125","nodeType":"YulFunctionCall","src":"12475:22:125"},{"name":"dataEnd","nativeSrc":"12499:7:125","nodeType":"YulIdentifier","src":"12499:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"12449:25:125","nodeType":"YulIdentifier","src":"12449:25:125"},"nativeSrc":"12449:58:125","nodeType":"YulFunctionCall","src":"12449:58:125"},"variables":[{"name":"value1_1","nativeSrc":"12427:8:125","nodeType":"YulTypedName","src":"12427:8:125","type":""},{"name":"value2_1","nativeSrc":"12437:8:125","nodeType":"YulTypedName","src":"12437:8:125","type":""}]},{"nativeSrc":"12516:18:125","nodeType":"YulAssignment","src":"12516:18:125","value":{"name":"value1_1","nativeSrc":"12526:8:125","nodeType":"YulIdentifier","src":"12526:8:125"},"variableNames":[{"name":"value1","nativeSrc":"12516:6:125","nodeType":"YulIdentifier","src":"12516:6:125"}]},{"nativeSrc":"12543:18:125","nodeType":"YulAssignment","src":"12543:18:125","value":{"name":"value2_1","nativeSrc":"12553:8:125","nodeType":"YulIdentifier","src":"12553:8:125"},"variableNames":[{"name":"value2","nativeSrc":"12543:6:125","nodeType":"YulIdentifier","src":"12543:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptr","nativeSrc":"12013:554:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12069:9:125","nodeType":"YulTypedName","src":"12069:9:125","type":""},{"name":"dataEnd","nativeSrc":"12080:7:125","nodeType":"YulTypedName","src":"12080:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12092:6:125","nodeType":"YulTypedName","src":"12092:6:125","type":""},{"name":"value1","nativeSrc":"12100:6:125","nodeType":"YulTypedName","src":"12100:6:125","type":""},{"name":"value2","nativeSrc":"12108:6:125","nodeType":"YulTypedName","src":"12108:6:125","type":""}],"src":"12013:554:125"},{"body":{"nativeSrc":"12694:102:125","nodeType":"YulBlock","src":"12694:102:125","statements":[{"nativeSrc":"12704:26:125","nodeType":"YulAssignment","src":"12704:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12716:9:125","nodeType":"YulIdentifier","src":"12716:9:125"},{"kind":"number","nativeSrc":"12727:2:125","nodeType":"YulLiteral","src":"12727:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12712:3:125","nodeType":"YulIdentifier","src":"12712:3:125"},"nativeSrc":"12712:18:125","nodeType":"YulFunctionCall","src":"12712:18:125"},"variableNames":[{"name":"tail","nativeSrc":"12704:4:125","nodeType":"YulIdentifier","src":"12704:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12746:9:125","nodeType":"YulIdentifier","src":"12746:9:125"},{"arguments":[{"name":"value0","nativeSrc":"12761:6:125","nodeType":"YulIdentifier","src":"12761:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12777:3:125","nodeType":"YulLiteral","src":"12777:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"12782:1:125","nodeType":"YulLiteral","src":"12782:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12773:3:125","nodeType":"YulIdentifier","src":"12773:3:125"},"nativeSrc":"12773:11:125","nodeType":"YulFunctionCall","src":"12773:11:125"},{"kind":"number","nativeSrc":"12786:1:125","nodeType":"YulLiteral","src":"12786:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12769:3:125","nodeType":"YulIdentifier","src":"12769:3:125"},"nativeSrc":"12769:19:125","nodeType":"YulFunctionCall","src":"12769:19:125"}],"functionName":{"name":"and","nativeSrc":"12757:3:125","nodeType":"YulIdentifier","src":"12757:3:125"},"nativeSrc":"12757:32:125","nodeType":"YulFunctionCall","src":"12757:32:125"}],"functionName":{"name":"mstore","nativeSrc":"12739:6:125","nodeType":"YulIdentifier","src":"12739:6:125"},"nativeSrc":"12739:51:125","nodeType":"YulFunctionCall","src":"12739:51:125"},"nativeSrc":"12739:51:125","nodeType":"YulExpressionStatement","src":"12739:51:125"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPool_$40853__to_t_address__fromStack_reversed","nativeSrc":"12572:224:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12663:9:125","nodeType":"YulTypedName","src":"12663:9:125","type":""},{"name":"value0","nativeSrc":"12674:6:125","nodeType":"YulTypedName","src":"12674:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12685:4:125","nodeType":"YulTypedName","src":"12685:4:125","type":""}],"src":"12572:224:125"},{"body":{"nativeSrc":"12903:433:125","nodeType":"YulBlock","src":"12903:433:125","statements":[{"body":{"nativeSrc":"12949:16:125","nodeType":"YulBlock","src":"12949:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12958:1:125","nodeType":"YulLiteral","src":"12958:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12961:1:125","nodeType":"YulLiteral","src":"12961:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12951:6:125","nodeType":"YulIdentifier","src":"12951:6:125"},"nativeSrc":"12951:12:125","nodeType":"YulFunctionCall","src":"12951:12:125"},"nativeSrc":"12951:12:125","nodeType":"YulExpressionStatement","src":"12951:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12924:7:125","nodeType":"YulIdentifier","src":"12924:7:125"},{"name":"headStart","nativeSrc":"12933:9:125","nodeType":"YulIdentifier","src":"12933:9:125"}],"functionName":{"name":"sub","nativeSrc":"12920:3:125","nodeType":"YulIdentifier","src":"12920:3:125"},"nativeSrc":"12920:23:125","nodeType":"YulFunctionCall","src":"12920:23:125"},{"kind":"number","nativeSrc":"12945:2:125","nodeType":"YulLiteral","src":"12945:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"12916:3:125","nodeType":"YulIdentifier","src":"12916:3:125"},"nativeSrc":"12916:32:125","nodeType":"YulFunctionCall","src":"12916:32:125"},"nativeSrc":"12913:52:125","nodeType":"YulIf","src":"12913:52:125"},{"nativeSrc":"12974:36:125","nodeType":"YulVariableDeclaration","src":"12974:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"13000:9:125","nodeType":"YulIdentifier","src":"13000:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"12987:12:125","nodeType":"YulIdentifier","src":"12987:12:125"},"nativeSrc":"12987:23:125","nodeType":"YulFunctionCall","src":"12987:23:125"},"variables":[{"name":"value","nativeSrc":"12978:5:125","nodeType":"YulTypedName","src":"12978:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13054:5:125","nodeType":"YulIdentifier","src":"13054:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"13019:34:125","nodeType":"YulIdentifier","src":"13019:34:125"},"nativeSrc":"13019:41:125","nodeType":"YulFunctionCall","src":"13019:41:125"},"nativeSrc":"13019:41:125","nodeType":"YulExpressionStatement","src":"13019:41:125"},{"nativeSrc":"13069:15:125","nodeType":"YulAssignment","src":"13069:15:125","value":{"name":"value","nativeSrc":"13079:5:125","nodeType":"YulIdentifier","src":"13079:5:125"},"variableNames":[{"name":"value0","nativeSrc":"13069:6:125","nodeType":"YulIdentifier","src":"13069:6:125"}]},{"nativeSrc":"13093:47:125","nodeType":"YulVariableDeclaration","src":"13093:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13125:9:125","nodeType":"YulIdentifier","src":"13125:9:125"},{"kind":"number","nativeSrc":"13136:2:125","nodeType":"YulLiteral","src":"13136:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13121:3:125","nodeType":"YulIdentifier","src":"13121:3:125"},"nativeSrc":"13121:18:125","nodeType":"YulFunctionCall","src":"13121:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"13108:12:125","nodeType":"YulIdentifier","src":"13108:12:125"},"nativeSrc":"13108:32:125","nodeType":"YulFunctionCall","src":"13108:32:125"},"variables":[{"name":"value_1","nativeSrc":"13097:7:125","nodeType":"YulTypedName","src":"13097:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"13173:7:125","nodeType":"YulIdentifier","src":"13173:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"13149:23:125","nodeType":"YulIdentifier","src":"13149:23:125"},"nativeSrc":"13149:32:125","nodeType":"YulFunctionCall","src":"13149:32:125"},"nativeSrc":"13149:32:125","nodeType":"YulExpressionStatement","src":"13149:32:125"},{"nativeSrc":"13190:17:125","nodeType":"YulAssignment","src":"13190:17:125","value":{"name":"value_1","nativeSrc":"13200:7:125","nodeType":"YulIdentifier","src":"13200:7:125"},"variableNames":[{"name":"value1","nativeSrc":"13190:6:125","nodeType":"YulIdentifier","src":"13190:6:125"}]},{"nativeSrc":"13216:47:125","nodeType":"YulVariableDeclaration","src":"13216:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13248:9:125","nodeType":"YulIdentifier","src":"13248:9:125"},{"kind":"number","nativeSrc":"13259:2:125","nodeType":"YulLiteral","src":"13259:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13244:3:125","nodeType":"YulIdentifier","src":"13244:3:125"},"nativeSrc":"13244:18:125","nodeType":"YulFunctionCall","src":"13244:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"13231:12:125","nodeType":"YulIdentifier","src":"13231:12:125"},"nativeSrc":"13231:32:125","nodeType":"YulFunctionCall","src":"13231:32:125"},"variables":[{"name":"value_2","nativeSrc":"13220:7:125","nodeType":"YulTypedName","src":"13220:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"13296:7:125","nodeType":"YulIdentifier","src":"13296:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"13272:23:125","nodeType":"YulIdentifier","src":"13272:23:125"},"nativeSrc":"13272:32:125","nodeType":"YulFunctionCall","src":"13272:32:125"},"nativeSrc":"13272:32:125","nodeType":"YulExpressionStatement","src":"13272:32:125"},{"nativeSrc":"13313:17:125","nodeType":"YulAssignment","src":"13313:17:125","value":{"name":"value_2","nativeSrc":"13323:7:125","nodeType":"YulIdentifier","src":"13323:7:125"},"variableNames":[{"name":"value2","nativeSrc":"13313:6:125","nodeType":"YulIdentifier","src":"13313:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint32","nativeSrc":"12801:535:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12853:9:125","nodeType":"YulTypedName","src":"12853:9:125","type":""},{"name":"dataEnd","nativeSrc":"12864:7:125","nodeType":"YulTypedName","src":"12864:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12876:6:125","nodeType":"YulTypedName","src":"12876:6:125","type":""},{"name":"value1","nativeSrc":"12884:6:125","nodeType":"YulTypedName","src":"12884:6:125","type":""},{"name":"value2","nativeSrc":"12892:6:125","nodeType":"YulTypedName","src":"12892:6:125","type":""}],"src":"12801:535:125"},{"body":{"nativeSrc":"13474:76:125","nodeType":"YulBlock","src":"13474:76:125","statements":[{"nativeSrc":"13484:26:125","nodeType":"YulAssignment","src":"13484:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"13496:9:125","nodeType":"YulIdentifier","src":"13496:9:125"},{"kind":"number","nativeSrc":"13507:2:125","nodeType":"YulLiteral","src":"13507:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13492:3:125","nodeType":"YulIdentifier","src":"13492:3:125"},"nativeSrc":"13492:18:125","nodeType":"YulFunctionCall","src":"13492:18:125"},"variableNames":[{"name":"tail","nativeSrc":"13484:4:125","nodeType":"YulIdentifier","src":"13484:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13526:9:125","nodeType":"YulIdentifier","src":"13526:9:125"},{"name":"value0","nativeSrc":"13537:6:125","nodeType":"YulIdentifier","src":"13537:6:125"}],"functionName":{"name":"mstore","nativeSrc":"13519:6:125","nodeType":"YulIdentifier","src":"13519:6:125"},"nativeSrc":"13519:25:125","nodeType":"YulFunctionCall","src":"13519:25:125"},"nativeSrc":"13519:25:125","nodeType":"YulExpressionStatement","src":"13519:25:125"}]},"name":"abi_encode_tuple_t_userDefinedValueType$_TargetSlot_$38324__to_t_bytes32__fromStack_reversed","nativeSrc":"13341:209:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13443:9:125","nodeType":"YulTypedName","src":"13443:9:125","type":""},{"name":"value0","nativeSrc":"13454:6:125","nodeType":"YulTypedName","src":"13454:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13465:4:125","nodeType":"YulTypedName","src":"13465:4:125","type":""}],"src":"13341:209:125"},{"body":{"nativeSrc":"13641:187:125","nodeType":"YulBlock","src":"13641:187:125","statements":[{"body":{"nativeSrc":"13687:16:125","nodeType":"YulBlock","src":"13687:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13696:1:125","nodeType":"YulLiteral","src":"13696:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"13699:1:125","nodeType":"YulLiteral","src":"13699:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13689:6:125","nodeType":"YulIdentifier","src":"13689:6:125"},"nativeSrc":"13689:12:125","nodeType":"YulFunctionCall","src":"13689:12:125"},"nativeSrc":"13689:12:125","nodeType":"YulExpressionStatement","src":"13689:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13662:7:125","nodeType":"YulIdentifier","src":"13662:7:125"},{"name":"headStart","nativeSrc":"13671:9:125","nodeType":"YulIdentifier","src":"13671:9:125"}],"functionName":{"name":"sub","nativeSrc":"13658:3:125","nodeType":"YulIdentifier","src":"13658:3:125"},"nativeSrc":"13658:23:125","nodeType":"YulFunctionCall","src":"13658:23:125"},{"kind":"number","nativeSrc":"13683:2:125","nodeType":"YulLiteral","src":"13683:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"13654:3:125","nodeType":"YulIdentifier","src":"13654:3:125"},"nativeSrc":"13654:32:125","nodeType":"YulFunctionCall","src":"13654:32:125"},"nativeSrc":"13651:52:125","nodeType":"YulIf","src":"13651:52:125"},{"nativeSrc":"13712:36:125","nodeType":"YulVariableDeclaration","src":"13712:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"13738:9:125","nodeType":"YulIdentifier","src":"13738:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"13725:12:125","nodeType":"YulIdentifier","src":"13725:12:125"},"nativeSrc":"13725:23:125","nodeType":"YulFunctionCall","src":"13725:23:125"},"variables":[{"name":"value","nativeSrc":"13716:5:125","nodeType":"YulTypedName","src":"13716:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13792:5:125","nodeType":"YulIdentifier","src":"13792:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"13757:34:125","nodeType":"YulIdentifier","src":"13757:34:125"},"nativeSrc":"13757:41:125","nodeType":"YulFunctionCall","src":"13757:41:125"},"nativeSrc":"13757:41:125","nodeType":"YulExpressionStatement","src":"13757:41:125"},{"nativeSrc":"13807:15:125","nodeType":"YulAssignment","src":"13807:15:125","value":{"name":"value","nativeSrc":"13817:5:125","nodeType":"YulIdentifier","src":"13817:5:125"},"variableNames":[{"name":"value0","nativeSrc":"13807:6:125","nodeType":"YulIdentifier","src":"13807:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20_$24193","nativeSrc":"13555:273:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13607:9:125","nodeType":"YulTypedName","src":"13607:9:125","type":""},{"name":"dataEnd","nativeSrc":"13618:7:125","nodeType":"YulTypedName","src":"13618:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13630:6:125","nodeType":"YulTypedName","src":"13630:6:125","type":""}],"src":"13555:273:125"},{"body":{"nativeSrc":"13929:499:125","nodeType":"YulBlock","src":"13929:499:125","statements":[{"body":{"nativeSrc":"13975:16:125","nodeType":"YulBlock","src":"13975:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13984:1:125","nodeType":"YulLiteral","src":"13984:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"13987:1:125","nodeType":"YulLiteral","src":"13987:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13977:6:125","nodeType":"YulIdentifier","src":"13977:6:125"},"nativeSrc":"13977:12:125","nodeType":"YulFunctionCall","src":"13977:12:125"},"nativeSrc":"13977:12:125","nodeType":"YulExpressionStatement","src":"13977:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13950:7:125","nodeType":"YulIdentifier","src":"13950:7:125"},{"name":"headStart","nativeSrc":"13959:9:125","nodeType":"YulIdentifier","src":"13959:9:125"}],"functionName":{"name":"sub","nativeSrc":"13946:3:125","nodeType":"YulIdentifier","src":"13946:3:125"},"nativeSrc":"13946:23:125","nodeType":"YulFunctionCall","src":"13946:23:125"},{"kind":"number","nativeSrc":"13971:2:125","nodeType":"YulLiteral","src":"13971:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"13942:3:125","nodeType":"YulIdentifier","src":"13942:3:125"},"nativeSrc":"13942:32:125","nodeType":"YulFunctionCall","src":"13942:32:125"},"nativeSrc":"13939:52:125","nodeType":"YulIf","src":"13939:52:125"},{"nativeSrc":"14000:36:125","nodeType":"YulVariableDeclaration","src":"14000:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14026:9:125","nodeType":"YulIdentifier","src":"14026:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"14013:12:125","nodeType":"YulIdentifier","src":"14013:12:125"},"nativeSrc":"14013:23:125","nodeType":"YulFunctionCall","src":"14013:23:125"},"variables":[{"name":"value","nativeSrc":"14004:5:125","nodeType":"YulTypedName","src":"14004:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"14080:5:125","nodeType":"YulIdentifier","src":"14080:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"14045:34:125","nodeType":"YulIdentifier","src":"14045:34:125"},"nativeSrc":"14045:41:125","nodeType":"YulFunctionCall","src":"14045:41:125"},"nativeSrc":"14045:41:125","nodeType":"YulExpressionStatement","src":"14045:41:125"},{"nativeSrc":"14095:15:125","nodeType":"YulAssignment","src":"14095:15:125","value":{"name":"value","nativeSrc":"14105:5:125","nodeType":"YulIdentifier","src":"14105:5:125"},"variableNames":[{"name":"value0","nativeSrc":"14095:6:125","nodeType":"YulIdentifier","src":"14095:6:125"}]},{"nativeSrc":"14119:46:125","nodeType":"YulVariableDeclaration","src":"14119:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14150:9:125","nodeType":"YulIdentifier","src":"14150:9:125"},{"kind":"number","nativeSrc":"14161:2:125","nodeType":"YulLiteral","src":"14161:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14146:3:125","nodeType":"YulIdentifier","src":"14146:3:125"},"nativeSrc":"14146:18:125","nodeType":"YulFunctionCall","src":"14146:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"14133:12:125","nodeType":"YulIdentifier","src":"14133:12:125"},"nativeSrc":"14133:32:125","nodeType":"YulFunctionCall","src":"14133:32:125"},"variables":[{"name":"offset","nativeSrc":"14123:6:125","nodeType":"YulTypedName","src":"14123:6:125","type":""}]},{"body":{"nativeSrc":"14208:16:125","nodeType":"YulBlock","src":"14208:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14217:1:125","nodeType":"YulLiteral","src":"14217:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"14220:1:125","nodeType":"YulLiteral","src":"14220:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14210:6:125","nodeType":"YulIdentifier","src":"14210:6:125"},"nativeSrc":"14210:12:125","nodeType":"YulFunctionCall","src":"14210:12:125"},"nativeSrc":"14210:12:125","nodeType":"YulExpressionStatement","src":"14210:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"14180:6:125","nodeType":"YulIdentifier","src":"14180:6:125"},{"kind":"number","nativeSrc":"14188:18:125","nodeType":"YulLiteral","src":"14188:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"14177:2:125","nodeType":"YulIdentifier","src":"14177:2:125"},"nativeSrc":"14177:30:125","nodeType":"YulFunctionCall","src":"14177:30:125"},"nativeSrc":"14174:50:125","nodeType":"YulIf","src":"14174:50:125"},{"nativeSrc":"14233:32:125","nodeType":"YulVariableDeclaration","src":"14233:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14247:9:125","nodeType":"YulIdentifier","src":"14247:9:125"},{"name":"offset","nativeSrc":"14258:6:125","nodeType":"YulIdentifier","src":"14258:6:125"}],"functionName":{"name":"add","nativeSrc":"14243:3:125","nodeType":"YulIdentifier","src":"14243:3:125"},"nativeSrc":"14243:22:125","nodeType":"YulFunctionCall","src":"14243:22:125"},"variables":[{"name":"_1","nativeSrc":"14237:2:125","nodeType":"YulTypedName","src":"14237:2:125","type":""}]},{"body":{"nativeSrc":"14313:16:125","nodeType":"YulBlock","src":"14313:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14322:1:125","nodeType":"YulLiteral","src":"14322:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"14325:1:125","nodeType":"YulLiteral","src":"14325:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14315:6:125","nodeType":"YulIdentifier","src":"14315:6:125"},"nativeSrc":"14315:12:125","nodeType":"YulFunctionCall","src":"14315:12:125"},"nativeSrc":"14315:12:125","nodeType":"YulExpressionStatement","src":"14315:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"14292:2:125","nodeType":"YulIdentifier","src":"14292:2:125"},{"kind":"number","nativeSrc":"14296:4:125","nodeType":"YulLiteral","src":"14296:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"14288:3:125","nodeType":"YulIdentifier","src":"14288:3:125"},"nativeSrc":"14288:13:125","nodeType":"YulFunctionCall","src":"14288:13:125"},{"name":"dataEnd","nativeSrc":"14303:7:125","nodeType":"YulIdentifier","src":"14303:7:125"}],"functionName":{"name":"slt","nativeSrc":"14284:3:125","nodeType":"YulIdentifier","src":"14284:3:125"},"nativeSrc":"14284:27:125","nodeType":"YulFunctionCall","src":"14284:27:125"}],"functionName":{"name":"iszero","nativeSrc":"14277:6:125","nodeType":"YulIdentifier","src":"14277:6:125"},"nativeSrc":"14277:35:125","nodeType":"YulFunctionCall","src":"14277:35:125"},"nativeSrc":"14274:55:125","nodeType":"YulIf","src":"14274:55:125"},{"nativeSrc":"14338:84:125","nodeType":"YulAssignment","src":"14338:84:125","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"14387:2:125","nodeType":"YulIdentifier","src":"14387:2:125"},{"kind":"number","nativeSrc":"14391:2:125","nodeType":"YulLiteral","src":"14391:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14383:3:125","nodeType":"YulIdentifier","src":"14383:3:125"},"nativeSrc":"14383:11:125","nodeType":"YulFunctionCall","src":"14383:11:125"},{"arguments":[{"name":"_1","nativeSrc":"14409:2:125","nodeType":"YulIdentifier","src":"14409:2:125"}],"functionName":{"name":"calldataload","nativeSrc":"14396:12:125","nodeType":"YulIdentifier","src":"14396:12:125"},"nativeSrc":"14396:16:125","nodeType":"YulFunctionCall","src":"14396:16:125"},{"name":"dataEnd","nativeSrc":"14414:7:125","nodeType":"YulIdentifier","src":"14414:7:125"}],"functionName":{"name":"abi_decode_available_length_string","nativeSrc":"14348:34:125","nodeType":"YulIdentifier","src":"14348:34:125"},"nativeSrc":"14348:74:125","nodeType":"YulFunctionCall","src":"14348:74:125"},"variableNames":[{"name":"value1","nativeSrc":"14338:6:125","nodeType":"YulIdentifier","src":"14338:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr","nativeSrc":"13833:595:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13887:9:125","nodeType":"YulTypedName","src":"13887:9:125","type":""},{"name":"dataEnd","nativeSrc":"13898:7:125","nodeType":"YulTypedName","src":"13898:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13910:6:125","nodeType":"YulTypedName","src":"13910:6:125","type":""},{"name":"value1","nativeSrc":"13918:6:125","nodeType":"YulTypedName","src":"13918:6:125","type":""}],"src":"13833:595:125"},{"body":{"nativeSrc":"14532:101:125","nodeType":"YulBlock","src":"14532:101:125","statements":[{"nativeSrc":"14542:26:125","nodeType":"YulAssignment","src":"14542:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14554:9:125","nodeType":"YulIdentifier","src":"14554:9:125"},{"kind":"number","nativeSrc":"14565:2:125","nodeType":"YulLiteral","src":"14565:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14550:3:125","nodeType":"YulIdentifier","src":"14550:3:125"},"nativeSrc":"14550:18:125","nodeType":"YulFunctionCall","src":"14550:18:125"},"variableNames":[{"name":"tail","nativeSrc":"14542:4:125","nodeType":"YulIdentifier","src":"14542:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14584:9:125","nodeType":"YulIdentifier","src":"14584:9:125"},{"arguments":[{"name":"value0","nativeSrc":"14599:6:125","nodeType":"YulIdentifier","src":"14599:6:125"},{"kind":"number","nativeSrc":"14607:18:125","nodeType":"YulLiteral","src":"14607:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"14595:3:125","nodeType":"YulIdentifier","src":"14595:3:125"},"nativeSrc":"14595:31:125","nodeType":"YulFunctionCall","src":"14595:31:125"}],"functionName":{"name":"mstore","nativeSrc":"14577:6:125","nodeType":"YulIdentifier","src":"14577:6:125"},"nativeSrc":"14577:50:125","nodeType":"YulFunctionCall","src":"14577:50:125"},"nativeSrc":"14577:50:125","nodeType":"YulExpressionStatement","src":"14577:50:125"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"14433:200:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14501:9:125","nodeType":"YulTypedName","src":"14501:9:125","type":""},{"name":"value0","nativeSrc":"14512:6:125","nodeType":"YulTypedName","src":"14512:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14523:4:125","nodeType":"YulTypedName","src":"14523:4:125","type":""}],"src":"14433:200:125"},{"body":{"nativeSrc":"14759:528:125","nodeType":"YulBlock","src":"14759:528:125","statements":[{"body":{"nativeSrc":"14806:16:125","nodeType":"YulBlock","src":"14806:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14815:1:125","nodeType":"YulLiteral","src":"14815:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"14818:1:125","nodeType":"YulLiteral","src":"14818:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14808:6:125","nodeType":"YulIdentifier","src":"14808:6:125"},"nativeSrc":"14808:12:125","nodeType":"YulFunctionCall","src":"14808:12:125"},"nativeSrc":"14808:12:125","nodeType":"YulExpressionStatement","src":"14808:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14780:7:125","nodeType":"YulIdentifier","src":"14780:7:125"},{"name":"headStart","nativeSrc":"14789:9:125","nodeType":"YulIdentifier","src":"14789:9:125"}],"functionName":{"name":"sub","nativeSrc":"14776:3:125","nodeType":"YulIdentifier","src":"14776:3:125"},"nativeSrc":"14776:23:125","nodeType":"YulFunctionCall","src":"14776:23:125"},{"kind":"number","nativeSrc":"14801:3:125","nodeType":"YulLiteral","src":"14801:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"14772:3:125","nodeType":"YulIdentifier","src":"14772:3:125"},"nativeSrc":"14772:33:125","nodeType":"YulFunctionCall","src":"14772:33:125"},"nativeSrc":"14769:53:125","nodeType":"YulIf","src":"14769:53:125"},{"nativeSrc":"14831:36:125","nodeType":"YulVariableDeclaration","src":"14831:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14857:9:125","nodeType":"YulIdentifier","src":"14857:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"14844:12:125","nodeType":"YulIdentifier","src":"14844:12:125"},"nativeSrc":"14844:23:125","nodeType":"YulFunctionCall","src":"14844:23:125"},"variables":[{"name":"value","nativeSrc":"14835:5:125","nodeType":"YulTypedName","src":"14835:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"14911:5:125","nodeType":"YulIdentifier","src":"14911:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"14876:34:125","nodeType":"YulIdentifier","src":"14876:34:125"},"nativeSrc":"14876:41:125","nodeType":"YulFunctionCall","src":"14876:41:125"},"nativeSrc":"14876:41:125","nodeType":"YulExpressionStatement","src":"14876:41:125"},{"nativeSrc":"14926:15:125","nodeType":"YulAssignment","src":"14926:15:125","value":{"name":"value","nativeSrc":"14936:5:125","nodeType":"YulIdentifier","src":"14936:5:125"},"variableNames":[{"name":"value0","nativeSrc":"14926:6:125","nodeType":"YulIdentifier","src":"14926:6:125"}]},{"nativeSrc":"14950:47:125","nodeType":"YulVariableDeclaration","src":"14950:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14982:9:125","nodeType":"YulIdentifier","src":"14982:9:125"},{"kind":"number","nativeSrc":"14993:2:125","nodeType":"YulLiteral","src":"14993:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14978:3:125","nodeType":"YulIdentifier","src":"14978:3:125"},"nativeSrc":"14978:18:125","nodeType":"YulFunctionCall","src":"14978:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"14965:12:125","nodeType":"YulIdentifier","src":"14965:12:125"},"nativeSrc":"14965:32:125","nodeType":"YulFunctionCall","src":"14965:32:125"},"variables":[{"name":"value_1","nativeSrc":"14954:7:125","nodeType":"YulTypedName","src":"14954:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"15041:7:125","nodeType":"YulIdentifier","src":"15041:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"15006:34:125","nodeType":"YulIdentifier","src":"15006:34:125"},"nativeSrc":"15006:43:125","nodeType":"YulFunctionCall","src":"15006:43:125"},"nativeSrc":"15006:43:125","nodeType":"YulExpressionStatement","src":"15006:43:125"},{"nativeSrc":"15058:17:125","nodeType":"YulAssignment","src":"15058:17:125","value":{"name":"value_1","nativeSrc":"15068:7:125","nodeType":"YulIdentifier","src":"15068:7:125"},"variableNames":[{"name":"value1","nativeSrc":"15058:6:125","nodeType":"YulIdentifier","src":"15058:6:125"}]},{"nativeSrc":"15084:16:125","nodeType":"YulVariableDeclaration","src":"15084:16:125","value":{"kind":"number","nativeSrc":"15099:1:125","nodeType":"YulLiteral","src":"15099:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"15088:7:125","nodeType":"YulTypedName","src":"15088:7:125","type":""}]},{"nativeSrc":"15109:43:125","nodeType":"YulAssignment","src":"15109:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15137:9:125","nodeType":"YulIdentifier","src":"15137:9:125"},{"kind":"number","nativeSrc":"15148:2:125","nodeType":"YulLiteral","src":"15148:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15133:3:125","nodeType":"YulIdentifier","src":"15133:3:125"},"nativeSrc":"15133:18:125","nodeType":"YulFunctionCall","src":"15133:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"15120:12:125","nodeType":"YulIdentifier","src":"15120:12:125"},"nativeSrc":"15120:32:125","nodeType":"YulFunctionCall","src":"15120:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"15109:7:125","nodeType":"YulIdentifier","src":"15109:7:125"}]},{"nativeSrc":"15161:17:125","nodeType":"YulAssignment","src":"15161:17:125","value":{"name":"value_2","nativeSrc":"15171:7:125","nodeType":"YulIdentifier","src":"15171:7:125"},"variableNames":[{"name":"value2","nativeSrc":"15161:6:125","nodeType":"YulIdentifier","src":"15161:6:125"}]},{"nativeSrc":"15187:16:125","nodeType":"YulVariableDeclaration","src":"15187:16:125","value":{"kind":"number","nativeSrc":"15202:1:125","nodeType":"YulLiteral","src":"15202:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"15191:7:125","nodeType":"YulTypedName","src":"15191:7:125","type":""}]},{"nativeSrc":"15212:43:125","nodeType":"YulAssignment","src":"15212:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15240:9:125","nodeType":"YulIdentifier","src":"15240:9:125"},{"kind":"number","nativeSrc":"15251:2:125","nodeType":"YulLiteral","src":"15251:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15236:3:125","nodeType":"YulIdentifier","src":"15236:3:125"},"nativeSrc":"15236:18:125","nodeType":"YulFunctionCall","src":"15236:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"15223:12:125","nodeType":"YulIdentifier","src":"15223:12:125"},"nativeSrc":"15223:32:125","nodeType":"YulFunctionCall","src":"15223:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"15212:7:125","nodeType":"YulIdentifier","src":"15212:7:125"}]},{"nativeSrc":"15264:17:125","nodeType":"YulAssignment","src":"15264:17:125","value":{"name":"value_3","nativeSrc":"15274:7:125","nodeType":"YulIdentifier","src":"15274:7:125"},"variableNames":[{"name":"value3","nativeSrc":"15264:6:125","nodeType":"YulIdentifier","src":"15264:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256","nativeSrc":"14638:649:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14701:9:125","nodeType":"YulTypedName","src":"14701:9:125","type":""},{"name":"dataEnd","nativeSrc":"14712:7:125","nodeType":"YulTypedName","src":"14712:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"14724:6:125","nodeType":"YulTypedName","src":"14724:6:125","type":""},{"name":"value1","nativeSrc":"14732:6:125","nodeType":"YulTypedName","src":"14732:6:125","type":""},{"name":"value2","nativeSrc":"14740:6:125","nodeType":"YulTypedName","src":"14740:6:125","type":""},{"name":"value3","nativeSrc":"14748:6:125","nodeType":"YulTypedName","src":"14748:6:125","type":""}],"src":"14638:649:125"},{"body":{"nativeSrc":"15447:736:125","nodeType":"YulBlock","src":"15447:736:125","statements":[{"body":{"nativeSrc":"15494:16:125","nodeType":"YulBlock","src":"15494:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15503:1:125","nodeType":"YulLiteral","src":"15503:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"15506:1:125","nodeType":"YulLiteral","src":"15506:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15496:6:125","nodeType":"YulIdentifier","src":"15496:6:125"},"nativeSrc":"15496:12:125","nodeType":"YulFunctionCall","src":"15496:12:125"},"nativeSrc":"15496:12:125","nodeType":"YulExpressionStatement","src":"15496:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15468:7:125","nodeType":"YulIdentifier","src":"15468:7:125"},{"name":"headStart","nativeSrc":"15477:9:125","nodeType":"YulIdentifier","src":"15477:9:125"}],"functionName":{"name":"sub","nativeSrc":"15464:3:125","nodeType":"YulIdentifier","src":"15464:3:125"},"nativeSrc":"15464:23:125","nodeType":"YulFunctionCall","src":"15464:23:125"},{"kind":"number","nativeSrc":"15489:3:125","nodeType":"YulLiteral","src":"15489:3:125","type":"","value":"192"}],"functionName":{"name":"slt","nativeSrc":"15460:3:125","nodeType":"YulIdentifier","src":"15460:3:125"},"nativeSrc":"15460:33:125","nodeType":"YulFunctionCall","src":"15460:33:125"},"nativeSrc":"15457:53:125","nodeType":"YulIf","src":"15457:53:125"},{"nativeSrc":"15519:36:125","nodeType":"YulVariableDeclaration","src":"15519:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"15545:9:125","nodeType":"YulIdentifier","src":"15545:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"15532:12:125","nodeType":"YulIdentifier","src":"15532:12:125"},"nativeSrc":"15532:23:125","nodeType":"YulFunctionCall","src":"15532:23:125"},"variables":[{"name":"value","nativeSrc":"15523:5:125","nodeType":"YulTypedName","src":"15523:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"15599:5:125","nodeType":"YulIdentifier","src":"15599:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"15564:34:125","nodeType":"YulIdentifier","src":"15564:34:125"},"nativeSrc":"15564:41:125","nodeType":"YulFunctionCall","src":"15564:41:125"},"nativeSrc":"15564:41:125","nodeType":"YulExpressionStatement","src":"15564:41:125"},{"nativeSrc":"15614:15:125","nodeType":"YulAssignment","src":"15614:15:125","value":{"name":"value","nativeSrc":"15624:5:125","nodeType":"YulIdentifier","src":"15624:5:125"},"variableNames":[{"name":"value0","nativeSrc":"15614:6:125","nodeType":"YulIdentifier","src":"15614:6:125"}]},{"nativeSrc":"15638:47:125","nodeType":"YulVariableDeclaration","src":"15638:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15670:9:125","nodeType":"YulIdentifier","src":"15670:9:125"},{"kind":"number","nativeSrc":"15681:2:125","nodeType":"YulLiteral","src":"15681:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15666:3:125","nodeType":"YulIdentifier","src":"15666:3:125"},"nativeSrc":"15666:18:125","nodeType":"YulFunctionCall","src":"15666:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"15653:12:125","nodeType":"YulIdentifier","src":"15653:12:125"},"nativeSrc":"15653:32:125","nodeType":"YulFunctionCall","src":"15653:32:125"},"variables":[{"name":"value_1","nativeSrc":"15642:7:125","nodeType":"YulTypedName","src":"15642:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"15729:7:125","nodeType":"YulIdentifier","src":"15729:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"15694:34:125","nodeType":"YulIdentifier","src":"15694:34:125"},"nativeSrc":"15694:43:125","nodeType":"YulFunctionCall","src":"15694:43:125"},"nativeSrc":"15694:43:125","nodeType":"YulExpressionStatement","src":"15694:43:125"},{"nativeSrc":"15746:17:125","nodeType":"YulAssignment","src":"15746:17:125","value":{"name":"value_1","nativeSrc":"15756:7:125","nodeType":"YulIdentifier","src":"15756:7:125"},"variableNames":[{"name":"value1","nativeSrc":"15746:6:125","nodeType":"YulIdentifier","src":"15746:6:125"}]},{"nativeSrc":"15772:16:125","nodeType":"YulVariableDeclaration","src":"15772:16:125","value":{"kind":"number","nativeSrc":"15787:1:125","nodeType":"YulLiteral","src":"15787:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"15776:7:125","nodeType":"YulTypedName","src":"15776:7:125","type":""}]},{"nativeSrc":"15797:43:125","nodeType":"YulAssignment","src":"15797:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15825:9:125","nodeType":"YulIdentifier","src":"15825:9:125"},{"kind":"number","nativeSrc":"15836:2:125","nodeType":"YulLiteral","src":"15836:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15821:3:125","nodeType":"YulIdentifier","src":"15821:3:125"},"nativeSrc":"15821:18:125","nodeType":"YulFunctionCall","src":"15821:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"15808:12:125","nodeType":"YulIdentifier","src":"15808:12:125"},"nativeSrc":"15808:32:125","nodeType":"YulFunctionCall","src":"15808:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"15797:7:125","nodeType":"YulIdentifier","src":"15797:7:125"}]},{"nativeSrc":"15849:17:125","nodeType":"YulAssignment","src":"15849:17:125","value":{"name":"value_2","nativeSrc":"15859:7:125","nodeType":"YulIdentifier","src":"15859:7:125"},"variableNames":[{"name":"value2","nativeSrc":"15849:6:125","nodeType":"YulIdentifier","src":"15849:6:125"}]},{"nativeSrc":"15875:16:125","nodeType":"YulVariableDeclaration","src":"15875:16:125","value":{"kind":"number","nativeSrc":"15890:1:125","nodeType":"YulLiteral","src":"15890:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"15879:7:125","nodeType":"YulTypedName","src":"15879:7:125","type":""}]},{"nativeSrc":"15900:43:125","nodeType":"YulAssignment","src":"15900:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15928:9:125","nodeType":"YulIdentifier","src":"15928:9:125"},{"kind":"number","nativeSrc":"15939:2:125","nodeType":"YulLiteral","src":"15939:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15924:3:125","nodeType":"YulIdentifier","src":"15924:3:125"},"nativeSrc":"15924:18:125","nodeType":"YulFunctionCall","src":"15924:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"15911:12:125","nodeType":"YulIdentifier","src":"15911:12:125"},"nativeSrc":"15911:32:125","nodeType":"YulFunctionCall","src":"15911:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"15900:7:125","nodeType":"YulIdentifier","src":"15900:7:125"}]},{"nativeSrc":"15952:17:125","nodeType":"YulAssignment","src":"15952:17:125","value":{"name":"value_3","nativeSrc":"15962:7:125","nodeType":"YulIdentifier","src":"15962:7:125"},"variableNames":[{"name":"value3","nativeSrc":"15952:6:125","nodeType":"YulIdentifier","src":"15952:6:125"}]},{"nativeSrc":"15978:16:125","nodeType":"YulVariableDeclaration","src":"15978:16:125","value":{"kind":"number","nativeSrc":"15993:1:125","nodeType":"YulLiteral","src":"15993:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"15982:7:125","nodeType":"YulTypedName","src":"15982:7:125","type":""}]},{"nativeSrc":"16003:44:125","nodeType":"YulAssignment","src":"16003:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16031:9:125","nodeType":"YulIdentifier","src":"16031:9:125"},{"kind":"number","nativeSrc":"16042:3:125","nodeType":"YulLiteral","src":"16042:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"16027:3:125","nodeType":"YulIdentifier","src":"16027:3:125"},"nativeSrc":"16027:19:125","nodeType":"YulFunctionCall","src":"16027:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"16014:12:125","nodeType":"YulIdentifier","src":"16014:12:125"},"nativeSrc":"16014:33:125","nodeType":"YulFunctionCall","src":"16014:33:125"},"variableNames":[{"name":"value_4","nativeSrc":"16003:7:125","nodeType":"YulIdentifier","src":"16003:7:125"}]},{"nativeSrc":"16056:17:125","nodeType":"YulAssignment","src":"16056:17:125","value":{"name":"value_4","nativeSrc":"16066:7:125","nodeType":"YulIdentifier","src":"16066:7:125"},"variableNames":[{"name":"value4","nativeSrc":"16056:6:125","nodeType":"YulIdentifier","src":"16056:6:125"}]},{"nativeSrc":"16082:16:125","nodeType":"YulVariableDeclaration","src":"16082:16:125","value":{"kind":"number","nativeSrc":"16097:1:125","nodeType":"YulLiteral","src":"16097:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"16086:7:125","nodeType":"YulTypedName","src":"16086:7:125","type":""}]},{"nativeSrc":"16107:44:125","nodeType":"YulAssignment","src":"16107:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16135:9:125","nodeType":"YulIdentifier","src":"16135:9:125"},{"kind":"number","nativeSrc":"16146:3:125","nodeType":"YulLiteral","src":"16146:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"16131:3:125","nodeType":"YulIdentifier","src":"16131:3:125"},"nativeSrc":"16131:19:125","nodeType":"YulFunctionCall","src":"16131:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"16118:12:125","nodeType":"YulIdentifier","src":"16118:12:125"},"nativeSrc":"16118:33:125","nodeType":"YulFunctionCall","src":"16118:33:125"},"variableNames":[{"name":"value_5","nativeSrc":"16107:7:125","nodeType":"YulIdentifier","src":"16107:7:125"}]},{"nativeSrc":"16160:17:125","nodeType":"YulAssignment","src":"16160:17:125","value":{"name":"value_5","nativeSrc":"16170:7:125","nodeType":"YulIdentifier","src":"16170:7:125"},"variableNames":[{"name":"value5","nativeSrc":"16160:6:125","nodeType":"YulIdentifier","src":"16160:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256t_uint256","nativeSrc":"15292:891:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15373:9:125","nodeType":"YulTypedName","src":"15373:9:125","type":""},{"name":"dataEnd","nativeSrc":"15384:7:125","nodeType":"YulTypedName","src":"15384:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15396:6:125","nodeType":"YulTypedName","src":"15396:6:125","type":""},{"name":"value1","nativeSrc":"15404:6:125","nodeType":"YulTypedName","src":"15404:6:125","type":""},{"name":"value2","nativeSrc":"15412:6:125","nodeType":"YulTypedName","src":"15412:6:125","type":""},{"name":"value3","nativeSrc":"15420:6:125","nodeType":"YulTypedName","src":"15420:6:125","type":""},{"name":"value4","nativeSrc":"15428:6:125","nodeType":"YulTypedName","src":"15428:6:125","type":""},{"name":"value5","nativeSrc":"15436:6:125","nodeType":"YulTypedName","src":"15436:6:125","type":""}],"src":"15292:891:125"},{"body":{"nativeSrc":"16275:290:125","nodeType":"YulBlock","src":"16275:290:125","statements":[{"body":{"nativeSrc":"16321:16:125","nodeType":"YulBlock","src":"16321:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16330:1:125","nodeType":"YulLiteral","src":"16330:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"16333:1:125","nodeType":"YulLiteral","src":"16333:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16323:6:125","nodeType":"YulIdentifier","src":"16323:6:125"},"nativeSrc":"16323:12:125","nodeType":"YulFunctionCall","src":"16323:12:125"},"nativeSrc":"16323:12:125","nodeType":"YulExpressionStatement","src":"16323:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"16296:7:125","nodeType":"YulIdentifier","src":"16296:7:125"},{"name":"headStart","nativeSrc":"16305:9:125","nodeType":"YulIdentifier","src":"16305:9:125"}],"functionName":{"name":"sub","nativeSrc":"16292:3:125","nodeType":"YulIdentifier","src":"16292:3:125"},"nativeSrc":"16292:23:125","nodeType":"YulFunctionCall","src":"16292:23:125"},{"kind":"number","nativeSrc":"16317:2:125","nodeType":"YulLiteral","src":"16317:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"16288:3:125","nodeType":"YulIdentifier","src":"16288:3:125"},"nativeSrc":"16288:32:125","nodeType":"YulFunctionCall","src":"16288:32:125"},"nativeSrc":"16285:52:125","nodeType":"YulIf","src":"16285:52:125"},{"nativeSrc":"16346:14:125","nodeType":"YulVariableDeclaration","src":"16346:14:125","value":{"kind":"number","nativeSrc":"16359:1:125","nodeType":"YulLiteral","src":"16359:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"16350:5:125","nodeType":"YulTypedName","src":"16350:5:125","type":""}]},{"nativeSrc":"16369:32:125","nodeType":"YulAssignment","src":"16369:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"16391:9:125","nodeType":"YulIdentifier","src":"16391:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"16378:12:125","nodeType":"YulIdentifier","src":"16378:12:125"},"nativeSrc":"16378:23:125","nodeType":"YulFunctionCall","src":"16378:23:125"},"variableNames":[{"name":"value","nativeSrc":"16369:5:125","nodeType":"YulIdentifier","src":"16369:5:125"}]},{"nativeSrc":"16410:15:125","nodeType":"YulAssignment","src":"16410:15:125","value":{"name":"value","nativeSrc":"16420:5:125","nodeType":"YulIdentifier","src":"16420:5:125"},"variableNames":[{"name":"value0","nativeSrc":"16410:6:125","nodeType":"YulIdentifier","src":"16410:6:125"}]},{"nativeSrc":"16434:47:125","nodeType":"YulVariableDeclaration","src":"16434:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16466:9:125","nodeType":"YulIdentifier","src":"16466:9:125"},{"kind":"number","nativeSrc":"16477:2:125","nodeType":"YulLiteral","src":"16477:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16462:3:125","nodeType":"YulIdentifier","src":"16462:3:125"},"nativeSrc":"16462:18:125","nodeType":"YulFunctionCall","src":"16462:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"16449:12:125","nodeType":"YulIdentifier","src":"16449:12:125"},"nativeSrc":"16449:32:125","nodeType":"YulFunctionCall","src":"16449:32:125"},"variables":[{"name":"value_1","nativeSrc":"16438:7:125","nodeType":"YulTypedName","src":"16438:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"16525:7:125","nodeType":"YulIdentifier","src":"16525:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"16490:34:125","nodeType":"YulIdentifier","src":"16490:34:125"},"nativeSrc":"16490:43:125","nodeType":"YulFunctionCall","src":"16490:43:125"},"nativeSrc":"16490:43:125","nodeType":"YulExpressionStatement","src":"16490:43:125"},{"nativeSrc":"16542:17:125","nodeType":"YulAssignment","src":"16542:17:125","value":{"name":"value_1","nativeSrc":"16552:7:125","nodeType":"YulIdentifier","src":"16552:7:125"},"variableNames":[{"name":"value1","nativeSrc":"16542:6:125","nodeType":"YulIdentifier","src":"16542:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_address","nativeSrc":"16188:377:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16233:9:125","nodeType":"YulTypedName","src":"16233:9:125","type":""},{"name":"dataEnd","nativeSrc":"16244:7:125","nodeType":"YulTypedName","src":"16244:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"16256:6:125","nodeType":"YulTypedName","src":"16256:6:125","type":""},{"name":"value1","nativeSrc":"16264:6:125","nodeType":"YulTypedName","src":"16264:6:125","type":""}],"src":"16188:377:125"},{"body":{"nativeSrc":"16669:76:125","nodeType":"YulBlock","src":"16669:76:125","statements":[{"nativeSrc":"16679:26:125","nodeType":"YulAssignment","src":"16679:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"16691:9:125","nodeType":"YulIdentifier","src":"16691:9:125"},{"kind":"number","nativeSrc":"16702:2:125","nodeType":"YulLiteral","src":"16702:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16687:3:125","nodeType":"YulIdentifier","src":"16687:3:125"},"nativeSrc":"16687:18:125","nodeType":"YulFunctionCall","src":"16687:18:125"},"variableNames":[{"name":"tail","nativeSrc":"16679:4:125","nodeType":"YulIdentifier","src":"16679:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16721:9:125","nodeType":"YulIdentifier","src":"16721:9:125"},{"name":"value0","nativeSrc":"16732:6:125","nodeType":"YulIdentifier","src":"16732:6:125"}],"functionName":{"name":"mstore","nativeSrc":"16714:6:125","nodeType":"YulIdentifier","src":"16714:6:125"},"nativeSrc":"16714:25:125","nodeType":"YulFunctionCall","src":"16714:25:125"},"nativeSrc":"16714:25:125","nodeType":"YulExpressionStatement","src":"16714:25:125"}]},"name":"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed","nativeSrc":"16570:175:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16638:9:125","nodeType":"YulTypedName","src":"16638:9:125","type":""},{"name":"value0","nativeSrc":"16649:6:125","nodeType":"YulTypedName","src":"16649:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16660:4:125","nodeType":"YulTypedName","src":"16660:4:125","type":""}],"src":"16570:175:125"},{"body":{"nativeSrc":"16838:187:125","nodeType":"YulBlock","src":"16838:187:125","statements":[{"body":{"nativeSrc":"16884:16:125","nodeType":"YulBlock","src":"16884:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16893:1:125","nodeType":"YulLiteral","src":"16893:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"16896:1:125","nodeType":"YulLiteral","src":"16896:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16886:6:125","nodeType":"YulIdentifier","src":"16886:6:125"},"nativeSrc":"16886:12:125","nodeType":"YulFunctionCall","src":"16886:12:125"},"nativeSrc":"16886:12:125","nodeType":"YulExpressionStatement","src":"16886:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"16859:7:125","nodeType":"YulIdentifier","src":"16859:7:125"},{"name":"headStart","nativeSrc":"16868:9:125","nodeType":"YulIdentifier","src":"16868:9:125"}],"functionName":{"name":"sub","nativeSrc":"16855:3:125","nodeType":"YulIdentifier","src":"16855:3:125"},"nativeSrc":"16855:23:125","nodeType":"YulFunctionCall","src":"16855:23:125"},{"kind":"number","nativeSrc":"16880:2:125","nodeType":"YulLiteral","src":"16880:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"16851:3:125","nodeType":"YulIdentifier","src":"16851:3:125"},"nativeSrc":"16851:32:125","nodeType":"YulFunctionCall","src":"16851:32:125"},"nativeSrc":"16848:52:125","nodeType":"YulIf","src":"16848:52:125"},{"nativeSrc":"16909:36:125","nodeType":"YulVariableDeclaration","src":"16909:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"16935:9:125","nodeType":"YulIdentifier","src":"16935:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"16922:12:125","nodeType":"YulIdentifier","src":"16922:12:125"},"nativeSrc":"16922:23:125","nodeType":"YulFunctionCall","src":"16922:23:125"},"variables":[{"name":"value","nativeSrc":"16913:5:125","nodeType":"YulTypedName","src":"16913:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"16989:5:125","nodeType":"YulIdentifier","src":"16989:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"16954:34:125","nodeType":"YulIdentifier","src":"16954:34:125"},"nativeSrc":"16954:41:125","nodeType":"YulFunctionCall","src":"16954:41:125"},"nativeSrc":"16954:41:125","nodeType":"YulExpressionStatement","src":"16954:41:125"},{"nativeSrc":"17004:15:125","nodeType":"YulAssignment","src":"17004:15:125","value":{"name":"value","nativeSrc":"17014:5:125","nodeType":"YulIdentifier","src":"17014:5:125"},"variableNames":[{"name":"value0","nativeSrc":"17004:6:125","nodeType":"YulIdentifier","src":"17004:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IERC4626_$22463","nativeSrc":"16750:275:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16804:9:125","nodeType":"YulTypedName","src":"16804:9:125","type":""},{"name":"dataEnd","nativeSrc":"16815:7:125","nodeType":"YulTypedName","src":"16815:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"16827:6:125","nodeType":"YulTypedName","src":"16827:6:125","type":""}],"src":"16750:275:125"},{"body":{"nativeSrc":"17149:537:125","nodeType":"YulBlock","src":"17149:537:125","statements":[{"body":{"nativeSrc":"17196:16:125","nodeType":"YulBlock","src":"17196:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17205:1:125","nodeType":"YulLiteral","src":"17205:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"17208:1:125","nodeType":"YulLiteral","src":"17208:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17198:6:125","nodeType":"YulIdentifier","src":"17198:6:125"},"nativeSrc":"17198:12:125","nodeType":"YulFunctionCall","src":"17198:12:125"},"nativeSrc":"17198:12:125","nodeType":"YulExpressionStatement","src":"17198:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17170:7:125","nodeType":"YulIdentifier","src":"17170:7:125"},{"name":"headStart","nativeSrc":"17179:9:125","nodeType":"YulIdentifier","src":"17179:9:125"}],"functionName":{"name":"sub","nativeSrc":"17166:3:125","nodeType":"YulIdentifier","src":"17166:3:125"},"nativeSrc":"17166:23:125","nodeType":"YulFunctionCall","src":"17166:23:125"},{"kind":"number","nativeSrc":"17191:3:125","nodeType":"YulLiteral","src":"17191:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"17162:3:125","nodeType":"YulIdentifier","src":"17162:3:125"},"nativeSrc":"17162:33:125","nodeType":"YulFunctionCall","src":"17162:33:125"},"nativeSrc":"17159:53:125","nodeType":"YulIf","src":"17159:53:125"},{"nativeSrc":"17221:36:125","nodeType":"YulVariableDeclaration","src":"17221:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17247:9:125","nodeType":"YulIdentifier","src":"17247:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"17234:12:125","nodeType":"YulIdentifier","src":"17234:12:125"},"nativeSrc":"17234:23:125","nodeType":"YulFunctionCall","src":"17234:23:125"},"variables":[{"name":"value","nativeSrc":"17225:5:125","nodeType":"YulTypedName","src":"17225:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"17301:5:125","nodeType":"YulIdentifier","src":"17301:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"17266:34:125","nodeType":"YulIdentifier","src":"17266:34:125"},"nativeSrc":"17266:41:125","nodeType":"YulFunctionCall","src":"17266:41:125"},"nativeSrc":"17266:41:125","nodeType":"YulExpressionStatement","src":"17266:41:125"},{"nativeSrc":"17316:15:125","nodeType":"YulAssignment","src":"17316:15:125","value":{"name":"value","nativeSrc":"17326:5:125","nodeType":"YulIdentifier","src":"17326:5:125"},"variableNames":[{"name":"value0","nativeSrc":"17316:6:125","nodeType":"YulIdentifier","src":"17316:6:125"}]},{"nativeSrc":"17340:47:125","nodeType":"YulVariableDeclaration","src":"17340:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17372:9:125","nodeType":"YulIdentifier","src":"17372:9:125"},{"kind":"number","nativeSrc":"17383:2:125","nodeType":"YulLiteral","src":"17383:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17368:3:125","nodeType":"YulIdentifier","src":"17368:3:125"},"nativeSrc":"17368:18:125","nodeType":"YulFunctionCall","src":"17368:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"17355:12:125","nodeType":"YulIdentifier","src":"17355:12:125"},"nativeSrc":"17355:32:125","nodeType":"YulFunctionCall","src":"17355:32:125"},"variables":[{"name":"value_1","nativeSrc":"17344:7:125","nodeType":"YulTypedName","src":"17344:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"17420:7:125","nodeType":"YulIdentifier","src":"17420:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"17396:23:125","nodeType":"YulIdentifier","src":"17396:23:125"},"nativeSrc":"17396:32:125","nodeType":"YulFunctionCall","src":"17396:32:125"},"nativeSrc":"17396:32:125","nodeType":"YulExpressionStatement","src":"17396:32:125"},{"nativeSrc":"17437:17:125","nodeType":"YulAssignment","src":"17437:17:125","value":{"name":"value_1","nativeSrc":"17447:7:125","nodeType":"YulIdentifier","src":"17447:7:125"},"variableNames":[{"name":"value1","nativeSrc":"17437:6:125","nodeType":"YulIdentifier","src":"17437:6:125"}]},{"nativeSrc":"17463:47:125","nodeType":"YulVariableDeclaration","src":"17463:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17495:9:125","nodeType":"YulIdentifier","src":"17495:9:125"},{"kind":"number","nativeSrc":"17506:2:125","nodeType":"YulLiteral","src":"17506:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17491:3:125","nodeType":"YulIdentifier","src":"17491:3:125"},"nativeSrc":"17491:18:125","nodeType":"YulFunctionCall","src":"17491:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"17478:12:125","nodeType":"YulIdentifier","src":"17478:12:125"},"nativeSrc":"17478:32:125","nodeType":"YulFunctionCall","src":"17478:32:125"},"variables":[{"name":"value_2","nativeSrc":"17467:7:125","nodeType":"YulTypedName","src":"17467:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"17543:7:125","nodeType":"YulIdentifier","src":"17543:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"17519:23:125","nodeType":"YulIdentifier","src":"17519:23:125"},"nativeSrc":"17519:32:125","nodeType":"YulFunctionCall","src":"17519:32:125"},"nativeSrc":"17519:32:125","nodeType":"YulExpressionStatement","src":"17519:32:125"},{"nativeSrc":"17560:17:125","nodeType":"YulAssignment","src":"17560:17:125","value":{"name":"value_2","nativeSrc":"17570:7:125","nodeType":"YulIdentifier","src":"17570:7:125"},"variableNames":[{"name":"value2","nativeSrc":"17560:6:125","nodeType":"YulIdentifier","src":"17560:6:125"}]},{"nativeSrc":"17586:16:125","nodeType":"YulVariableDeclaration","src":"17586:16:125","value":{"kind":"number","nativeSrc":"17601:1:125","nodeType":"YulLiteral","src":"17601:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"17590:7:125","nodeType":"YulTypedName","src":"17590:7:125","type":""}]},{"nativeSrc":"17611:43:125","nodeType":"YulAssignment","src":"17611:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17639:9:125","nodeType":"YulIdentifier","src":"17639:9:125"},{"kind":"number","nativeSrc":"17650:2:125","nodeType":"YulLiteral","src":"17650:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"17635:3:125","nodeType":"YulIdentifier","src":"17635:3:125"},"nativeSrc":"17635:18:125","nodeType":"YulFunctionCall","src":"17635:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"17622:12:125","nodeType":"YulIdentifier","src":"17622:12:125"},"nativeSrc":"17622:32:125","nodeType":"YulFunctionCall","src":"17622:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"17611:7:125","nodeType":"YulIdentifier","src":"17611:7:125"}]},{"nativeSrc":"17663:17:125","nodeType":"YulAssignment","src":"17663:17:125","value":{"name":"value_3","nativeSrc":"17673:7:125","nodeType":"YulIdentifier","src":"17673:7:125"},"variableNames":[{"name":"value3","nativeSrc":"17663:6:125","nodeType":"YulIdentifier","src":"17663:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint32t_uint256","nativeSrc":"17030:656:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17091:9:125","nodeType":"YulTypedName","src":"17091:9:125","type":""},{"name":"dataEnd","nativeSrc":"17102:7:125","nodeType":"YulTypedName","src":"17102:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17114:6:125","nodeType":"YulTypedName","src":"17114:6:125","type":""},{"name":"value1","nativeSrc":"17122:6:125","nodeType":"YulTypedName","src":"17122:6:125","type":""},{"name":"value2","nativeSrc":"17130:6:125","nodeType":"YulTypedName","src":"17130:6:125","type":""},{"name":"value3","nativeSrc":"17138:6:125","nodeType":"YulTypedName","src":"17138:6:125","type":""}],"src":"17030:656:125"},{"body":{"nativeSrc":"17760:215:125","nodeType":"YulBlock","src":"17760:215:125","statements":[{"body":{"nativeSrc":"17806:16:125","nodeType":"YulBlock","src":"17806:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17815:1:125","nodeType":"YulLiteral","src":"17815:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"17818:1:125","nodeType":"YulLiteral","src":"17818:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17808:6:125","nodeType":"YulIdentifier","src":"17808:6:125"},"nativeSrc":"17808:12:125","nodeType":"YulFunctionCall","src":"17808:12:125"},"nativeSrc":"17808:12:125","nodeType":"YulExpressionStatement","src":"17808:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17781:7:125","nodeType":"YulIdentifier","src":"17781:7:125"},{"name":"headStart","nativeSrc":"17790:9:125","nodeType":"YulIdentifier","src":"17790:9:125"}],"functionName":{"name":"sub","nativeSrc":"17777:3:125","nodeType":"YulIdentifier","src":"17777:3:125"},"nativeSrc":"17777:23:125","nodeType":"YulFunctionCall","src":"17777:23:125"},{"kind":"number","nativeSrc":"17802:2:125","nodeType":"YulLiteral","src":"17802:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"17773:3:125","nodeType":"YulIdentifier","src":"17773:3:125"},"nativeSrc":"17773:32:125","nodeType":"YulFunctionCall","src":"17773:32:125"},"nativeSrc":"17770:52:125","nodeType":"YulIf","src":"17770:52:125"},{"nativeSrc":"17831:36:125","nodeType":"YulVariableDeclaration","src":"17831:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17857:9:125","nodeType":"YulIdentifier","src":"17857:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"17844:12:125","nodeType":"YulIdentifier","src":"17844:12:125"},"nativeSrc":"17844:23:125","nodeType":"YulFunctionCall","src":"17844:23:125"},"variables":[{"name":"value","nativeSrc":"17835:5:125","nodeType":"YulTypedName","src":"17835:5:125","type":""}]},{"body":{"nativeSrc":"17929:16:125","nodeType":"YulBlock","src":"17929:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17938:1:125","nodeType":"YulLiteral","src":"17938:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"17941:1:125","nodeType":"YulLiteral","src":"17941:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17931:6:125","nodeType":"YulIdentifier","src":"17931:6:125"},"nativeSrc":"17931:12:125","nodeType":"YulFunctionCall","src":"17931:12:125"},"nativeSrc":"17931:12:125","nodeType":"YulExpressionStatement","src":"17931:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"17889:5:125","nodeType":"YulIdentifier","src":"17889:5:125"},{"arguments":[{"name":"value","nativeSrc":"17900:5:125","nodeType":"YulIdentifier","src":"17900:5:125"},{"kind":"number","nativeSrc":"17907:18:125","nodeType":"YulLiteral","src":"17907:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"17896:3:125","nodeType":"YulIdentifier","src":"17896:3:125"},"nativeSrc":"17896:30:125","nodeType":"YulFunctionCall","src":"17896:30:125"}],"functionName":{"name":"eq","nativeSrc":"17886:2:125","nodeType":"YulIdentifier","src":"17886:2:125"},"nativeSrc":"17886:41:125","nodeType":"YulFunctionCall","src":"17886:41:125"}],"functionName":{"name":"iszero","nativeSrc":"17879:6:125","nodeType":"YulIdentifier","src":"17879:6:125"},"nativeSrc":"17879:49:125","nodeType":"YulFunctionCall","src":"17879:49:125"},"nativeSrc":"17876:69:125","nodeType":"YulIf","src":"17876:69:125"},{"nativeSrc":"17954:15:125","nodeType":"YulAssignment","src":"17954:15:125","value":{"name":"value","nativeSrc":"17964:5:125","nodeType":"YulIdentifier","src":"17964:5:125"},"variableNames":[{"name":"value0","nativeSrc":"17954:6:125","nodeType":"YulIdentifier","src":"17954:6:125"}]}]},"name":"abi_decode_tuple_t_uint64","nativeSrc":"17691:284:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17726:9:125","nodeType":"YulTypedName","src":"17726:9:125","type":""},{"name":"dataEnd","nativeSrc":"17737:7:125","nodeType":"YulTypedName","src":"17737:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17749:6:125","nodeType":"YulTypedName","src":"17749:6:125","type":""}],"src":"17691:284:125"},{"body":{"nativeSrc":"18118:663:125","nodeType":"YulBlock","src":"18118:663:125","statements":[{"body":{"nativeSrc":"18165:16:125","nodeType":"YulBlock","src":"18165:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18174:1:125","nodeType":"YulLiteral","src":"18174:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"18177:1:125","nodeType":"YulLiteral","src":"18177:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18167:6:125","nodeType":"YulIdentifier","src":"18167:6:125"},"nativeSrc":"18167:12:125","nodeType":"YulFunctionCall","src":"18167:12:125"},"nativeSrc":"18167:12:125","nodeType":"YulExpressionStatement","src":"18167:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18139:7:125","nodeType":"YulIdentifier","src":"18139:7:125"},{"name":"headStart","nativeSrc":"18148:9:125","nodeType":"YulIdentifier","src":"18148:9:125"}],"functionName":{"name":"sub","nativeSrc":"18135:3:125","nodeType":"YulIdentifier","src":"18135:3:125"},"nativeSrc":"18135:23:125","nodeType":"YulFunctionCall","src":"18135:23:125"},{"kind":"number","nativeSrc":"18160:3:125","nodeType":"YulLiteral","src":"18160:3:125","type":"","value":"160"}],"functionName":{"name":"slt","nativeSrc":"18131:3:125","nodeType":"YulIdentifier","src":"18131:3:125"},"nativeSrc":"18131:33:125","nodeType":"YulFunctionCall","src":"18131:33:125"},"nativeSrc":"18128:53:125","nodeType":"YulIf","src":"18128:53:125"},{"nativeSrc":"18190:36:125","nodeType":"YulVariableDeclaration","src":"18190:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18216:9:125","nodeType":"YulIdentifier","src":"18216:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"18203:12:125","nodeType":"YulIdentifier","src":"18203:12:125"},"nativeSrc":"18203:23:125","nodeType":"YulFunctionCall","src":"18203:23:125"},"variables":[{"name":"value","nativeSrc":"18194:5:125","nodeType":"YulTypedName","src":"18194:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"18270:5:125","nodeType":"YulIdentifier","src":"18270:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"18235:34:125","nodeType":"YulIdentifier","src":"18235:34:125"},"nativeSrc":"18235:41:125","nodeType":"YulFunctionCall","src":"18235:41:125"},"nativeSrc":"18235:41:125","nodeType":"YulExpressionStatement","src":"18235:41:125"},{"nativeSrc":"18285:15:125","nodeType":"YulAssignment","src":"18285:15:125","value":{"name":"value","nativeSrc":"18295:5:125","nodeType":"YulIdentifier","src":"18295:5:125"},"variableNames":[{"name":"value0","nativeSrc":"18285:6:125","nodeType":"YulIdentifier","src":"18285:6:125"}]},{"nativeSrc":"18309:47:125","nodeType":"YulVariableDeclaration","src":"18309:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18341:9:125","nodeType":"YulIdentifier","src":"18341:9:125"},{"kind":"number","nativeSrc":"18352:2:125","nodeType":"YulLiteral","src":"18352:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18337:3:125","nodeType":"YulIdentifier","src":"18337:3:125"},"nativeSrc":"18337:18:125","nodeType":"YulFunctionCall","src":"18337:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"18324:12:125","nodeType":"YulIdentifier","src":"18324:12:125"},"nativeSrc":"18324:32:125","nodeType":"YulFunctionCall","src":"18324:32:125"},"variables":[{"name":"value_1","nativeSrc":"18313:7:125","nodeType":"YulTypedName","src":"18313:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"18400:7:125","nodeType":"YulIdentifier","src":"18400:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"18365:34:125","nodeType":"YulIdentifier","src":"18365:34:125"},"nativeSrc":"18365:43:125","nodeType":"YulFunctionCall","src":"18365:43:125"},"nativeSrc":"18365:43:125","nodeType":"YulExpressionStatement","src":"18365:43:125"},{"nativeSrc":"18417:17:125","nodeType":"YulAssignment","src":"18417:17:125","value":{"name":"value_1","nativeSrc":"18427:7:125","nodeType":"YulIdentifier","src":"18427:7:125"},"variableNames":[{"name":"value1","nativeSrc":"18417:6:125","nodeType":"YulIdentifier","src":"18417:6:125"}]},{"nativeSrc":"18443:47:125","nodeType":"YulVariableDeclaration","src":"18443:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18475:9:125","nodeType":"YulIdentifier","src":"18475:9:125"},{"kind":"number","nativeSrc":"18486:2:125","nodeType":"YulLiteral","src":"18486:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18471:3:125","nodeType":"YulIdentifier","src":"18471:3:125"},"nativeSrc":"18471:18:125","nodeType":"YulFunctionCall","src":"18471:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"18458:12:125","nodeType":"YulIdentifier","src":"18458:12:125"},"nativeSrc":"18458:32:125","nodeType":"YulFunctionCall","src":"18458:32:125"},"variables":[{"name":"value_2","nativeSrc":"18447:7:125","nodeType":"YulTypedName","src":"18447:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"18534:7:125","nodeType":"YulIdentifier","src":"18534:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"18499:34:125","nodeType":"YulIdentifier","src":"18499:34:125"},"nativeSrc":"18499:43:125","nodeType":"YulFunctionCall","src":"18499:43:125"},"nativeSrc":"18499:43:125","nodeType":"YulExpressionStatement","src":"18499:43:125"},{"nativeSrc":"18551:17:125","nodeType":"YulAssignment","src":"18551:17:125","value":{"name":"value_2","nativeSrc":"18561:7:125","nodeType":"YulIdentifier","src":"18561:7:125"},"variableNames":[{"name":"value2","nativeSrc":"18551:6:125","nodeType":"YulIdentifier","src":"18551:6:125"}]},{"nativeSrc":"18577:16:125","nodeType":"YulVariableDeclaration","src":"18577:16:125","value":{"kind":"number","nativeSrc":"18592:1:125","nodeType":"YulLiteral","src":"18592:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"18581:7:125","nodeType":"YulTypedName","src":"18581:7:125","type":""}]},{"nativeSrc":"18602:43:125","nodeType":"YulAssignment","src":"18602:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18630:9:125","nodeType":"YulIdentifier","src":"18630:9:125"},{"kind":"number","nativeSrc":"18641:2:125","nodeType":"YulLiteral","src":"18641:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18626:3:125","nodeType":"YulIdentifier","src":"18626:3:125"},"nativeSrc":"18626:18:125","nodeType":"YulFunctionCall","src":"18626:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"18613:12:125","nodeType":"YulIdentifier","src":"18613:12:125"},"nativeSrc":"18613:32:125","nodeType":"YulFunctionCall","src":"18613:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"18602:7:125","nodeType":"YulIdentifier","src":"18602:7:125"}]},{"nativeSrc":"18654:17:125","nodeType":"YulAssignment","src":"18654:17:125","value":{"name":"value_3","nativeSrc":"18664:7:125","nodeType":"YulIdentifier","src":"18664:7:125"},"variableNames":[{"name":"value3","nativeSrc":"18654:6:125","nodeType":"YulIdentifier","src":"18654:6:125"}]},{"nativeSrc":"18680:16:125","nodeType":"YulVariableDeclaration","src":"18680:16:125","value":{"kind":"number","nativeSrc":"18695:1:125","nodeType":"YulLiteral","src":"18695:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"18684:7:125","nodeType":"YulTypedName","src":"18684:7:125","type":""}]},{"nativeSrc":"18705:44:125","nodeType":"YulAssignment","src":"18705:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18733:9:125","nodeType":"YulIdentifier","src":"18733:9:125"},{"kind":"number","nativeSrc":"18744:3:125","nodeType":"YulLiteral","src":"18744:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"18729:3:125","nodeType":"YulIdentifier","src":"18729:3:125"},"nativeSrc":"18729:19:125","nodeType":"YulFunctionCall","src":"18729:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"18716:12:125","nodeType":"YulIdentifier","src":"18716:12:125"},"nativeSrc":"18716:33:125","nodeType":"YulFunctionCall","src":"18716:33:125"},"variableNames":[{"name":"value_4","nativeSrc":"18705:7:125","nodeType":"YulIdentifier","src":"18705:7:125"}]},{"nativeSrc":"18758:17:125","nodeType":"YulAssignment","src":"18758:17:125","value":{"name":"value_4","nativeSrc":"18768:7:125","nodeType":"YulIdentifier","src":"18768:7:125"},"variableNames":[{"name":"value4","nativeSrc":"18758:6:125","nodeType":"YulIdentifier","src":"18758:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_addresst_uint256t_uint256","nativeSrc":"17980:801:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18052:9:125","nodeType":"YulTypedName","src":"18052:9:125","type":""},{"name":"dataEnd","nativeSrc":"18063:7:125","nodeType":"YulTypedName","src":"18063:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18075:6:125","nodeType":"YulTypedName","src":"18075:6:125","type":""},{"name":"value1","nativeSrc":"18083:6:125","nodeType":"YulTypedName","src":"18083:6:125","type":""},{"name":"value2","nativeSrc":"18091:6:125","nodeType":"YulTypedName","src":"18091:6:125","type":""},{"name":"value3","nativeSrc":"18099:6:125","nodeType":"YulTypedName","src":"18099:6:125","type":""},{"name":"value4","nativeSrc":"18107:6:125","nodeType":"YulTypedName","src":"18107:6:125","type":""}],"src":"17980:801:125"},{"body":{"nativeSrc":"18837:56:125","nodeType":"YulBlock","src":"18837:56:125","statements":[{"body":{"nativeSrc":"18871:16:125","nodeType":"YulBlock","src":"18871:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18880:1:125","nodeType":"YulLiteral","src":"18880:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"18883:1:125","nodeType":"YulLiteral","src":"18883:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18873:6:125","nodeType":"YulIdentifier","src":"18873:6:125"},"nativeSrc":"18873:12:125","nodeType":"YulFunctionCall","src":"18873:12:125"},"nativeSrc":"18873:12:125","nodeType":"YulExpressionStatement","src":"18873:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"18860:5:125","nodeType":"YulIdentifier","src":"18860:5:125"},{"kind":"number","nativeSrc":"18867:1:125","nodeType":"YulLiteral","src":"18867:1:125","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"18857:2:125","nodeType":"YulIdentifier","src":"18857:2:125"},"nativeSrc":"18857:12:125","nodeType":"YulFunctionCall","src":"18857:12:125"}],"functionName":{"name":"iszero","nativeSrc":"18850:6:125","nodeType":"YulIdentifier","src":"18850:6:125"},"nativeSrc":"18850:20:125","nodeType":"YulFunctionCall","src":"18850:20:125"},"nativeSrc":"18847:40:125","nodeType":"YulIf","src":"18847:40:125"}]},"name":"validator_revert_enum_Rounding","nativeSrc":"18786:107:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"18826:5:125","nodeType":"YulTypedName","src":"18826:5:125","type":""}],"src":"18786:107:125"},{"body":{"nativeSrc":"18999:286:125","nodeType":"YulBlock","src":"18999:286:125","statements":[{"body":{"nativeSrc":"19045:16:125","nodeType":"YulBlock","src":"19045:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19054:1:125","nodeType":"YulLiteral","src":"19054:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"19057:1:125","nodeType":"YulLiteral","src":"19057:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19047:6:125","nodeType":"YulIdentifier","src":"19047:6:125"},"nativeSrc":"19047:12:125","nodeType":"YulFunctionCall","src":"19047:12:125"},"nativeSrc":"19047:12:125","nodeType":"YulExpressionStatement","src":"19047:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"19020:7:125","nodeType":"YulIdentifier","src":"19020:7:125"},{"name":"headStart","nativeSrc":"19029:9:125","nodeType":"YulIdentifier","src":"19029:9:125"}],"functionName":{"name":"sub","nativeSrc":"19016:3:125","nodeType":"YulIdentifier","src":"19016:3:125"},"nativeSrc":"19016:23:125","nodeType":"YulFunctionCall","src":"19016:23:125"},{"kind":"number","nativeSrc":"19041:2:125","nodeType":"YulLiteral","src":"19041:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"19012:3:125","nodeType":"YulIdentifier","src":"19012:3:125"},"nativeSrc":"19012:32:125","nodeType":"YulFunctionCall","src":"19012:32:125"},"nativeSrc":"19009:52:125","nodeType":"YulIf","src":"19009:52:125"},{"nativeSrc":"19070:14:125","nodeType":"YulVariableDeclaration","src":"19070:14:125","value":{"kind":"number","nativeSrc":"19083:1:125","nodeType":"YulLiteral","src":"19083:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"19074:5:125","nodeType":"YulTypedName","src":"19074:5:125","type":""}]},{"nativeSrc":"19093:32:125","nodeType":"YulAssignment","src":"19093:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"19115:9:125","nodeType":"YulIdentifier","src":"19115:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"19102:12:125","nodeType":"YulIdentifier","src":"19102:12:125"},"nativeSrc":"19102:23:125","nodeType":"YulFunctionCall","src":"19102:23:125"},"variableNames":[{"name":"value","nativeSrc":"19093:5:125","nodeType":"YulIdentifier","src":"19093:5:125"}]},{"nativeSrc":"19134:15:125","nodeType":"YulAssignment","src":"19134:15:125","value":{"name":"value","nativeSrc":"19144:5:125","nodeType":"YulIdentifier","src":"19144:5:125"},"variableNames":[{"name":"value0","nativeSrc":"19134:6:125","nodeType":"YulIdentifier","src":"19134:6:125"}]},{"nativeSrc":"19158:47:125","nodeType":"YulVariableDeclaration","src":"19158:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19190:9:125","nodeType":"YulIdentifier","src":"19190:9:125"},{"kind":"number","nativeSrc":"19201:2:125","nodeType":"YulLiteral","src":"19201:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19186:3:125","nodeType":"YulIdentifier","src":"19186:3:125"},"nativeSrc":"19186:18:125","nodeType":"YulFunctionCall","src":"19186:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"19173:12:125","nodeType":"YulIdentifier","src":"19173:12:125"},"nativeSrc":"19173:32:125","nodeType":"YulFunctionCall","src":"19173:32:125"},"variables":[{"name":"value_1","nativeSrc":"19162:7:125","nodeType":"YulTypedName","src":"19162:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"19245:7:125","nodeType":"YulIdentifier","src":"19245:7:125"}],"functionName":{"name":"validator_revert_enum_Rounding","nativeSrc":"19214:30:125","nodeType":"YulIdentifier","src":"19214:30:125"},"nativeSrc":"19214:39:125","nodeType":"YulFunctionCall","src":"19214:39:125"},"nativeSrc":"19214:39:125","nodeType":"YulExpressionStatement","src":"19214:39:125"},{"nativeSrc":"19262:17:125","nodeType":"YulAssignment","src":"19262:17:125","value":{"name":"value_1","nativeSrc":"19272:7:125","nodeType":"YulIdentifier","src":"19272:7:125"},"variableNames":[{"name":"value1","nativeSrc":"19262:6:125","nodeType":"YulIdentifier","src":"19262:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_enum$_Rounding_$33557","nativeSrc":"18898:387:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18957:9:125","nodeType":"YulTypedName","src":"18957:9:125","type":""},{"name":"dataEnd","nativeSrc":"18968:7:125","nodeType":"YulTypedName","src":"18968:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18980:6:125","nodeType":"YulTypedName","src":"18980:6:125","type":""},{"name":"value1","nativeSrc":"18988:6:125","nodeType":"YulTypedName","src":"18988:6:125","type":""}],"src":"18898:387:125"},{"body":{"nativeSrc":"19453:419:125","nodeType":"YulBlock","src":"19453:419:125","statements":[{"nativeSrc":"19463:27:125","nodeType":"YulAssignment","src":"19463:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"19475:9:125","nodeType":"YulIdentifier","src":"19475:9:125"},{"kind":"number","nativeSrc":"19486:3:125","nodeType":"YulLiteral","src":"19486:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"19471:3:125","nodeType":"YulIdentifier","src":"19471:3:125"},"nativeSrc":"19471:19:125","nodeType":"YulFunctionCall","src":"19471:19:125"},"variableNames":[{"name":"tail","nativeSrc":"19463:4:125","nodeType":"YulIdentifier","src":"19463:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19506:9:125","nodeType":"YulIdentifier","src":"19506:9:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"19527:6:125","nodeType":"YulIdentifier","src":"19527:6:125"}],"functionName":{"name":"mload","nativeSrc":"19521:5:125","nodeType":"YulIdentifier","src":"19521:5:125"},"nativeSrc":"19521:13:125","nodeType":"YulFunctionCall","src":"19521:13:125"},{"kind":"number","nativeSrc":"19536:10:125","nodeType":"YulLiteral","src":"19536:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"19517:3:125","nodeType":"YulIdentifier","src":"19517:3:125"},"nativeSrc":"19517:30:125","nodeType":"YulFunctionCall","src":"19517:30:125"}],"functionName":{"name":"mstore","nativeSrc":"19499:6:125","nodeType":"YulIdentifier","src":"19499:6:125"},"nativeSrc":"19499:49:125","nodeType":"YulFunctionCall","src":"19499:49:125"},"nativeSrc":"19499:49:125","nodeType":"YulExpressionStatement","src":"19499:49:125"},{"nativeSrc":"19557:44:125","nodeType":"YulVariableDeclaration","src":"19557:44:125","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"19587:6:125","nodeType":"YulIdentifier","src":"19587:6:125"},{"kind":"number","nativeSrc":"19595:4:125","nodeType":"YulLiteral","src":"19595:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"19583:3:125","nodeType":"YulIdentifier","src":"19583:3:125"},"nativeSrc":"19583:17:125","nodeType":"YulFunctionCall","src":"19583:17:125"}],"functionName":{"name":"mload","nativeSrc":"19577:5:125","nodeType":"YulIdentifier","src":"19577:5:125"},"nativeSrc":"19577:24:125","nodeType":"YulFunctionCall","src":"19577:24:125"},"variables":[{"name":"memberValue0","nativeSrc":"19561:12:125","nodeType":"YulTypedName","src":"19561:12:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"19639:12:125","nodeType":"YulIdentifier","src":"19639:12:125"},{"arguments":[{"name":"headStart","nativeSrc":"19657:9:125","nodeType":"YulIdentifier","src":"19657:9:125"},{"kind":"number","nativeSrc":"19668:4:125","nodeType":"YulLiteral","src":"19668:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"19653:3:125","nodeType":"YulIdentifier","src":"19653:3:125"},"nativeSrc":"19653:20:125","nodeType":"YulFunctionCall","src":"19653:20:125"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"19610:28:125","nodeType":"YulIdentifier","src":"19610:28:125"},"nativeSrc":"19610:64:125","nodeType":"YulFunctionCall","src":"19610:64:125"},"nativeSrc":"19610:64:125","nodeType":"YulExpressionStatement","src":"19610:64:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19694:9:125","nodeType":"YulIdentifier","src":"19694:9:125"},{"kind":"number","nativeSrc":"19705:4:125","nodeType":"YulLiteral","src":"19705:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"19690:3:125","nodeType":"YulIdentifier","src":"19690:3:125"},"nativeSrc":"19690:20:125","nodeType":"YulFunctionCall","src":"19690:20:125"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"19726:6:125","nodeType":"YulIdentifier","src":"19726:6:125"},{"kind":"number","nativeSrc":"19734:4:125","nodeType":"YulLiteral","src":"19734:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"19722:3:125","nodeType":"YulIdentifier","src":"19722:3:125"},"nativeSrc":"19722:17:125","nodeType":"YulFunctionCall","src":"19722:17:125"}],"functionName":{"name":"mload","nativeSrc":"19716:5:125","nodeType":"YulIdentifier","src":"19716:5:125"},"nativeSrc":"19716:24:125","nodeType":"YulFunctionCall","src":"19716:24:125"},{"kind":"number","nativeSrc":"19742:26:125","nodeType":"YulLiteral","src":"19742:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19712:3:125","nodeType":"YulIdentifier","src":"19712:3:125"},"nativeSrc":"19712:57:125","nodeType":"YulFunctionCall","src":"19712:57:125"}],"functionName":{"name":"mstore","nativeSrc":"19683:6:125","nodeType":"YulIdentifier","src":"19683:6:125"},"nativeSrc":"19683:87:125","nodeType":"YulFunctionCall","src":"19683:87:125"},"nativeSrc":"19683:87:125","nodeType":"YulExpressionStatement","src":"19683:87:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19790:9:125","nodeType":"YulIdentifier","src":"19790:9:125"},{"kind":"number","nativeSrc":"19801:4:125","nodeType":"YulLiteral","src":"19801:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"19786:3:125","nodeType":"YulIdentifier","src":"19786:3:125"},"nativeSrc":"19786:20:125","nodeType":"YulFunctionCall","src":"19786:20:125"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"19822:6:125","nodeType":"YulIdentifier","src":"19822:6:125"},{"kind":"number","nativeSrc":"19830:4:125","nodeType":"YulLiteral","src":"19830:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"19818:3:125","nodeType":"YulIdentifier","src":"19818:3:125"},"nativeSrc":"19818:17:125","nodeType":"YulFunctionCall","src":"19818:17:125"}],"functionName":{"name":"mload","nativeSrc":"19812:5:125","nodeType":"YulIdentifier","src":"19812:5:125"},"nativeSrc":"19812:24:125","nodeType":"YulFunctionCall","src":"19812:24:125"},{"kind":"number","nativeSrc":"19838:26:125","nodeType":"YulLiteral","src":"19838:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"19808:3:125","nodeType":"YulIdentifier","src":"19808:3:125"},"nativeSrc":"19808:57:125","nodeType":"YulFunctionCall","src":"19808:57:125"}],"functionName":{"name":"mstore","nativeSrc":"19779:6:125","nodeType":"YulIdentifier","src":"19779:6:125"},"nativeSrc":"19779:87:125","nodeType":"YulFunctionCall","src":"19779:87:125"},"nativeSrc":"19779:87:125","nodeType":"YulExpressionStatement","src":"19779:87:125"}]},"name":"abi_encode_tuple_t_struct$_TargetConfig_$38340_memory_ptr__to_t_struct$_TargetConfig_$38340_memory_ptr__fromStack_reversed","nativeSrc":"19290:582:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19422:9:125","nodeType":"YulTypedName","src":"19422:9:125","type":""},{"name":"value0","nativeSrc":"19433:6:125","nodeType":"YulTypedName","src":"19433:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19444:4:125","nodeType":"YulTypedName","src":"19444:4:125","type":""}],"src":"19290:582:125"},{"body":{"nativeSrc":"20039:715:125","nodeType":"YulBlock","src":"20039:715:125","statements":[{"body":{"nativeSrc":"20085:16:125","nodeType":"YulBlock","src":"20085:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20094:1:125","nodeType":"YulLiteral","src":"20094:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"20097:1:125","nodeType":"YulLiteral","src":"20097:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"20087:6:125","nodeType":"YulIdentifier","src":"20087:6:125"},"nativeSrc":"20087:12:125","nodeType":"YulFunctionCall","src":"20087:12:125"},"nativeSrc":"20087:12:125","nodeType":"YulExpressionStatement","src":"20087:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"20060:7:125","nodeType":"YulIdentifier","src":"20060:7:125"},{"name":"headStart","nativeSrc":"20069:9:125","nodeType":"YulIdentifier","src":"20069:9:125"}],"functionName":{"name":"sub","nativeSrc":"20056:3:125","nodeType":"YulIdentifier","src":"20056:3:125"},"nativeSrc":"20056:23:125","nodeType":"YulFunctionCall","src":"20056:23:125"},{"kind":"number","nativeSrc":"20081:2:125","nodeType":"YulLiteral","src":"20081:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"20052:3:125","nodeType":"YulIdentifier","src":"20052:3:125"},"nativeSrc":"20052:32:125","nodeType":"YulFunctionCall","src":"20052:32:125"},"nativeSrc":"20049:52:125","nodeType":"YulIf","src":"20049:52:125"},{"nativeSrc":"20110:37:125","nodeType":"YulVariableDeclaration","src":"20110:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"20137:9:125","nodeType":"YulIdentifier","src":"20137:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"20124:12:125","nodeType":"YulIdentifier","src":"20124:12:125"},"nativeSrc":"20124:23:125","nodeType":"YulFunctionCall","src":"20124:23:125"},"variables":[{"name":"offset","nativeSrc":"20114:6:125","nodeType":"YulTypedName","src":"20114:6:125","type":""}]},{"body":{"nativeSrc":"20190:16:125","nodeType":"YulBlock","src":"20190:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20199:1:125","nodeType":"YulLiteral","src":"20199:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"20202:1:125","nodeType":"YulLiteral","src":"20202:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"20192:6:125","nodeType":"YulIdentifier","src":"20192:6:125"},"nativeSrc":"20192:12:125","nodeType":"YulFunctionCall","src":"20192:12:125"},"nativeSrc":"20192:12:125","nodeType":"YulExpressionStatement","src":"20192:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"20162:6:125","nodeType":"YulIdentifier","src":"20162:6:125"},{"kind":"number","nativeSrc":"20170:18:125","nodeType":"YulLiteral","src":"20170:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"20159:2:125","nodeType":"YulIdentifier","src":"20159:2:125"},"nativeSrc":"20159:30:125","nodeType":"YulFunctionCall","src":"20159:30:125"},"nativeSrc":"20156:50:125","nodeType":"YulIf","src":"20156:50:125"},{"nativeSrc":"20215:84:125","nodeType":"YulVariableDeclaration","src":"20215:84:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20271:9:125","nodeType":"YulIdentifier","src":"20271:9:125"},{"name":"offset","nativeSrc":"20282:6:125","nodeType":"YulIdentifier","src":"20282:6:125"}],"functionName":{"name":"add","nativeSrc":"20267:3:125","nodeType":"YulIdentifier","src":"20267:3:125"},"nativeSrc":"20267:22:125","nodeType":"YulFunctionCall","src":"20267:22:125"},{"name":"dataEnd","nativeSrc":"20291:7:125","nodeType":"YulIdentifier","src":"20291:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"20241:25:125","nodeType":"YulIdentifier","src":"20241:25:125"},"nativeSrc":"20241:58:125","nodeType":"YulFunctionCall","src":"20241:58:125"},"variables":[{"name":"value0_1","nativeSrc":"20219:8:125","nodeType":"YulTypedName","src":"20219:8:125","type":""},{"name":"value1_1","nativeSrc":"20229:8:125","nodeType":"YulTypedName","src":"20229:8:125","type":""}]},{"nativeSrc":"20308:18:125","nodeType":"YulAssignment","src":"20308:18:125","value":{"name":"value0_1","nativeSrc":"20318:8:125","nodeType":"YulIdentifier","src":"20318:8:125"},"variableNames":[{"name":"value0","nativeSrc":"20308:6:125","nodeType":"YulIdentifier","src":"20308:6:125"}]},{"nativeSrc":"20335:18:125","nodeType":"YulAssignment","src":"20335:18:125","value":{"name":"value1_1","nativeSrc":"20345:8:125","nodeType":"YulIdentifier","src":"20345:8:125"},"variableNames":[{"name":"value1","nativeSrc":"20335:6:125","nodeType":"YulIdentifier","src":"20335:6:125"}]},{"nativeSrc":"20362:48:125","nodeType":"YulVariableDeclaration","src":"20362:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20395:9:125","nodeType":"YulIdentifier","src":"20395:9:125"},{"kind":"number","nativeSrc":"20406:2:125","nodeType":"YulLiteral","src":"20406:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20391:3:125","nodeType":"YulIdentifier","src":"20391:3:125"},"nativeSrc":"20391:18:125","nodeType":"YulFunctionCall","src":"20391:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"20378:12:125","nodeType":"YulIdentifier","src":"20378:12:125"},"nativeSrc":"20378:32:125","nodeType":"YulFunctionCall","src":"20378:32:125"},"variables":[{"name":"offset_1","nativeSrc":"20366:8:125","nodeType":"YulTypedName","src":"20366:8:125","type":""}]},{"body":{"nativeSrc":"20455:16:125","nodeType":"YulBlock","src":"20455:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20464:1:125","nodeType":"YulLiteral","src":"20464:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"20467:1:125","nodeType":"YulLiteral","src":"20467:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"20457:6:125","nodeType":"YulIdentifier","src":"20457:6:125"},"nativeSrc":"20457:12:125","nodeType":"YulFunctionCall","src":"20457:12:125"},"nativeSrc":"20457:12:125","nodeType":"YulExpressionStatement","src":"20457:12:125"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"20425:8:125","nodeType":"YulIdentifier","src":"20425:8:125"},{"kind":"number","nativeSrc":"20435:18:125","nodeType":"YulLiteral","src":"20435:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"20422:2:125","nodeType":"YulIdentifier","src":"20422:2:125"},"nativeSrc":"20422:32:125","nodeType":"YulFunctionCall","src":"20422:32:125"},"nativeSrc":"20419:52:125","nodeType":"YulIf","src":"20419:52:125"},{"nativeSrc":"20480:86:125","nodeType":"YulVariableDeclaration","src":"20480:86:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20536:9:125","nodeType":"YulIdentifier","src":"20536:9:125"},{"name":"offset_1","nativeSrc":"20547:8:125","nodeType":"YulIdentifier","src":"20547:8:125"}],"functionName":{"name":"add","nativeSrc":"20532:3:125","nodeType":"YulIdentifier","src":"20532:3:125"},"nativeSrc":"20532:24:125","nodeType":"YulFunctionCall","src":"20532:24:125"},{"name":"dataEnd","nativeSrc":"20558:7:125","nodeType":"YulIdentifier","src":"20558:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"20506:25:125","nodeType":"YulIdentifier","src":"20506:25:125"},"nativeSrc":"20506:60:125","nodeType":"YulFunctionCall","src":"20506:60:125"},"variables":[{"name":"value2_1","nativeSrc":"20484:8:125","nodeType":"YulTypedName","src":"20484:8:125","type":""},{"name":"value3_1","nativeSrc":"20494:8:125","nodeType":"YulTypedName","src":"20494:8:125","type":""}]},{"nativeSrc":"20575:18:125","nodeType":"YulAssignment","src":"20575:18:125","value":{"name":"value2_1","nativeSrc":"20585:8:125","nodeType":"YulIdentifier","src":"20585:8:125"},"variableNames":[{"name":"value2","nativeSrc":"20575:6:125","nodeType":"YulIdentifier","src":"20575:6:125"}]},{"nativeSrc":"20602:18:125","nodeType":"YulAssignment","src":"20602:18:125","value":{"name":"value3_1","nativeSrc":"20612:8:125","nodeType":"YulIdentifier","src":"20612:8:125"},"variableNames":[{"name":"value3","nativeSrc":"20602:6:125","nodeType":"YulIdentifier","src":"20602:6:125"}]},{"nativeSrc":"20629:45:125","nodeType":"YulVariableDeclaration","src":"20629:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20659:9:125","nodeType":"YulIdentifier","src":"20659:9:125"},{"kind":"number","nativeSrc":"20670:2:125","nodeType":"YulLiteral","src":"20670:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20655:3:125","nodeType":"YulIdentifier","src":"20655:3:125"},"nativeSrc":"20655:18:125","nodeType":"YulFunctionCall","src":"20655:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"20642:12:125","nodeType":"YulIdentifier","src":"20642:12:125"},"nativeSrc":"20642:32:125","nodeType":"YulFunctionCall","src":"20642:32:125"},"variables":[{"name":"value","nativeSrc":"20633:5:125","nodeType":"YulTypedName","src":"20633:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"20718:5:125","nodeType":"YulIdentifier","src":"20718:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"20683:34:125","nodeType":"YulIdentifier","src":"20683:34:125"},"nativeSrc":"20683:41:125","nodeType":"YulFunctionCall","src":"20683:41:125"},"nativeSrc":"20683:41:125","nodeType":"YulExpressionStatement","src":"20683:41:125"},{"nativeSrc":"20733:15:125","nodeType":"YulAssignment","src":"20733:15:125","value":{"name":"value","nativeSrc":"20743:5:125","nodeType":"YulIdentifier","src":"20743:5:125"},"variableNames":[{"name":"value4","nativeSrc":"20733:6:125","nodeType":"YulIdentifier","src":"20733:6:125"}]}]},"name":"abi_decode_tuple_t_string_calldata_ptrt_string_calldata_ptrt_contract$_IERC4626_$22463","nativeSrc":"19877:877:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19973:9:125","nodeType":"YulTypedName","src":"19973:9:125","type":""},{"name":"dataEnd","nativeSrc":"19984:7:125","nodeType":"YulTypedName","src":"19984:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"19996:6:125","nodeType":"YulTypedName","src":"19996:6:125","type":""},{"name":"value1","nativeSrc":"20004:6:125","nodeType":"YulTypedName","src":"20004:6:125","type":""},{"name":"value2","nativeSrc":"20012:6:125","nodeType":"YulTypedName","src":"20012:6:125","type":""},{"name":"value3","nativeSrc":"20020:6:125","nodeType":"YulTypedName","src":"20020:6:125","type":""},{"name":"value4","nativeSrc":"20028:6:125","nodeType":"YulTypedName","src":"20028:6:125","type":""}],"src":"19877:877:125"},{"body":{"nativeSrc":"20863:393:125","nodeType":"YulBlock","src":"20863:393:125","statements":[{"body":{"nativeSrc":"20909:16:125","nodeType":"YulBlock","src":"20909:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20918:1:125","nodeType":"YulLiteral","src":"20918:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"20921:1:125","nodeType":"YulLiteral","src":"20921:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"20911:6:125","nodeType":"YulIdentifier","src":"20911:6:125"},"nativeSrc":"20911:12:125","nodeType":"YulFunctionCall","src":"20911:12:125"},"nativeSrc":"20911:12:125","nodeType":"YulExpressionStatement","src":"20911:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"20884:7:125","nodeType":"YulIdentifier","src":"20884:7:125"},{"name":"headStart","nativeSrc":"20893:9:125","nodeType":"YulIdentifier","src":"20893:9:125"}],"functionName":{"name":"sub","nativeSrc":"20880:3:125","nodeType":"YulIdentifier","src":"20880:3:125"},"nativeSrc":"20880:23:125","nodeType":"YulFunctionCall","src":"20880:23:125"},{"kind":"number","nativeSrc":"20905:2:125","nodeType":"YulLiteral","src":"20905:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"20876:3:125","nodeType":"YulIdentifier","src":"20876:3:125"},"nativeSrc":"20876:32:125","nodeType":"YulFunctionCall","src":"20876:32:125"},"nativeSrc":"20873:52:125","nodeType":"YulIf","src":"20873:52:125"},{"nativeSrc":"20934:36:125","nodeType":"YulVariableDeclaration","src":"20934:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"20960:9:125","nodeType":"YulIdentifier","src":"20960:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"20947:12:125","nodeType":"YulIdentifier","src":"20947:12:125"},"nativeSrc":"20947:23:125","nodeType":"YulFunctionCall","src":"20947:23:125"},"variables":[{"name":"value","nativeSrc":"20938:5:125","nodeType":"YulTypedName","src":"20938:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"21014:5:125","nodeType":"YulIdentifier","src":"21014:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"20979:34:125","nodeType":"YulIdentifier","src":"20979:34:125"},"nativeSrc":"20979:41:125","nodeType":"YulFunctionCall","src":"20979:41:125"},"nativeSrc":"20979:41:125","nodeType":"YulExpressionStatement","src":"20979:41:125"},{"nativeSrc":"21029:15:125","nodeType":"YulAssignment","src":"21029:15:125","value":{"name":"value","nativeSrc":"21039:5:125","nodeType":"YulIdentifier","src":"21039:5:125"},"variableNames":[{"name":"value0","nativeSrc":"21029:6:125","nodeType":"YulIdentifier","src":"21029:6:125"}]},{"nativeSrc":"21053:16:125","nodeType":"YulVariableDeclaration","src":"21053:16:125","value":{"kind":"number","nativeSrc":"21068:1:125","nodeType":"YulLiteral","src":"21068:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"21057:7:125","nodeType":"YulTypedName","src":"21057:7:125","type":""}]},{"nativeSrc":"21078:43:125","nodeType":"YulAssignment","src":"21078:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21106:9:125","nodeType":"YulIdentifier","src":"21106:9:125"},{"kind":"number","nativeSrc":"21117:2:125","nodeType":"YulLiteral","src":"21117:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21102:3:125","nodeType":"YulIdentifier","src":"21102:3:125"},"nativeSrc":"21102:18:125","nodeType":"YulFunctionCall","src":"21102:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"21089:12:125","nodeType":"YulIdentifier","src":"21089:12:125"},"nativeSrc":"21089:32:125","nodeType":"YulFunctionCall","src":"21089:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"21078:7:125","nodeType":"YulIdentifier","src":"21078:7:125"}]},{"nativeSrc":"21130:17:125","nodeType":"YulAssignment","src":"21130:17:125","value":{"name":"value_1","nativeSrc":"21140:7:125","nodeType":"YulIdentifier","src":"21140:7:125"},"variableNames":[{"name":"value1","nativeSrc":"21130:6:125","nodeType":"YulIdentifier","src":"21130:6:125"}]},{"nativeSrc":"21156:16:125","nodeType":"YulVariableDeclaration","src":"21156:16:125","value":{"kind":"number","nativeSrc":"21171:1:125","nodeType":"YulLiteral","src":"21171:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"21160:7:125","nodeType":"YulTypedName","src":"21160:7:125","type":""}]},{"nativeSrc":"21181:43:125","nodeType":"YulAssignment","src":"21181:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21209:9:125","nodeType":"YulIdentifier","src":"21209:9:125"},{"kind":"number","nativeSrc":"21220:2:125","nodeType":"YulLiteral","src":"21220:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21205:3:125","nodeType":"YulIdentifier","src":"21205:3:125"},"nativeSrc":"21205:18:125","nodeType":"YulFunctionCall","src":"21205:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"21192:12:125","nodeType":"YulIdentifier","src":"21192:12:125"},"nativeSrc":"21192:32:125","nodeType":"YulFunctionCall","src":"21192:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"21181:7:125","nodeType":"YulIdentifier","src":"21181:7:125"}]},{"nativeSrc":"21233:17:125","nodeType":"YulAssignment","src":"21233:17:125","value":{"name":"value_2","nativeSrc":"21243:7:125","nodeType":"YulIdentifier","src":"21243:7:125"},"variableNames":[{"name":"value2","nativeSrc":"21233:6:125","nodeType":"YulIdentifier","src":"21233:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256","nativeSrc":"20759:497:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20813:9:125","nodeType":"YulTypedName","src":"20813:9:125","type":""},{"name":"dataEnd","nativeSrc":"20824:7:125","nodeType":"YulTypedName","src":"20824:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"20836:6:125","nodeType":"YulTypedName","src":"20836:6:125","type":""},{"name":"value1","nativeSrc":"20844:6:125","nodeType":"YulTypedName","src":"20844:6:125","type":""},{"name":"value2","nativeSrc":"20852:6:125","nodeType":"YulTypedName","src":"20852:6:125","type":""}],"src":"20759:497:125"},{"body":{"nativeSrc":"21380:102:125","nodeType":"YulBlock","src":"21380:102:125","statements":[{"nativeSrc":"21390:26:125","nodeType":"YulAssignment","src":"21390:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"21402:9:125","nodeType":"YulIdentifier","src":"21402:9:125"},{"kind":"number","nativeSrc":"21413:2:125","nodeType":"YulLiteral","src":"21413:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21398:3:125","nodeType":"YulIdentifier","src":"21398:3:125"},"nativeSrc":"21398:18:125","nodeType":"YulFunctionCall","src":"21398:18:125"},"variableNames":[{"name":"tail","nativeSrc":"21390:4:125","nodeType":"YulIdentifier","src":"21390:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"21432:9:125","nodeType":"YulIdentifier","src":"21432:9:125"},{"arguments":[{"name":"value0","nativeSrc":"21447:6:125","nodeType":"YulIdentifier","src":"21447:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21463:3:125","nodeType":"YulLiteral","src":"21463:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"21468:1:125","nodeType":"YulLiteral","src":"21468:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"21459:3:125","nodeType":"YulIdentifier","src":"21459:3:125"},"nativeSrc":"21459:11:125","nodeType":"YulFunctionCall","src":"21459:11:125"},{"kind":"number","nativeSrc":"21472:1:125","nodeType":"YulLiteral","src":"21472:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"21455:3:125","nodeType":"YulIdentifier","src":"21455:3:125"},"nativeSrc":"21455:19:125","nodeType":"YulFunctionCall","src":"21455:19:125"}],"functionName":{"name":"and","nativeSrc":"21443:3:125","nodeType":"YulIdentifier","src":"21443:3:125"},"nativeSrc":"21443:32:125","nodeType":"YulFunctionCall","src":"21443:32:125"}],"functionName":{"name":"mstore","nativeSrc":"21425:6:125","nodeType":"YulIdentifier","src":"21425:6:125"},"nativeSrc":"21425:51:125","nodeType":"YulFunctionCall","src":"21425:51:125"},"nativeSrc":"21425:51:125","nodeType":"YulExpressionStatement","src":"21425:51:125"}]},"name":"abi_encode_tuple_t_contract$_IERC4626_$22463__to_t_address__fromStack_reversed","nativeSrc":"21261:221:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21349:9:125","nodeType":"YulTypedName","src":"21349:9:125","type":""},{"name":"value0","nativeSrc":"21360:6:125","nodeType":"YulTypedName","src":"21360:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21371:4:125","nodeType":"YulTypedName","src":"21371:4:125","type":""}],"src":"21261:221:125"},{"body":{"nativeSrc":"21591:424:125","nodeType":"YulBlock","src":"21591:424:125","statements":[{"body":{"nativeSrc":"21637:16:125","nodeType":"YulBlock","src":"21637:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21646:1:125","nodeType":"YulLiteral","src":"21646:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"21649:1:125","nodeType":"YulLiteral","src":"21649:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21639:6:125","nodeType":"YulIdentifier","src":"21639:6:125"},"nativeSrc":"21639:12:125","nodeType":"YulFunctionCall","src":"21639:12:125"},"nativeSrc":"21639:12:125","nodeType":"YulExpressionStatement","src":"21639:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"21612:7:125","nodeType":"YulIdentifier","src":"21612:7:125"},{"name":"headStart","nativeSrc":"21621:9:125","nodeType":"YulIdentifier","src":"21621:9:125"}],"functionName":{"name":"sub","nativeSrc":"21608:3:125","nodeType":"YulIdentifier","src":"21608:3:125"},"nativeSrc":"21608:23:125","nodeType":"YulFunctionCall","src":"21608:23:125"},{"kind":"number","nativeSrc":"21633:2:125","nodeType":"YulLiteral","src":"21633:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"21604:3:125","nodeType":"YulIdentifier","src":"21604:3:125"},"nativeSrc":"21604:32:125","nodeType":"YulFunctionCall","src":"21604:32:125"},"nativeSrc":"21601:52:125","nodeType":"YulIf","src":"21601:52:125"},{"nativeSrc":"21662:14:125","nodeType":"YulVariableDeclaration","src":"21662:14:125","value":{"kind":"number","nativeSrc":"21675:1:125","nodeType":"YulLiteral","src":"21675:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"21666:5:125","nodeType":"YulTypedName","src":"21666:5:125","type":""}]},{"nativeSrc":"21685:32:125","nodeType":"YulAssignment","src":"21685:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"21707:9:125","nodeType":"YulIdentifier","src":"21707:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"21694:12:125","nodeType":"YulIdentifier","src":"21694:12:125"},"nativeSrc":"21694:23:125","nodeType":"YulFunctionCall","src":"21694:23:125"},"variableNames":[{"name":"value","nativeSrc":"21685:5:125","nodeType":"YulIdentifier","src":"21685:5:125"}]},{"nativeSrc":"21726:15:125","nodeType":"YulAssignment","src":"21726:15:125","value":{"name":"value","nativeSrc":"21736:5:125","nodeType":"YulIdentifier","src":"21736:5:125"},"variableNames":[{"name":"value0","nativeSrc":"21726:6:125","nodeType":"YulIdentifier","src":"21726:6:125"}]},{"nativeSrc":"21750:47:125","nodeType":"YulVariableDeclaration","src":"21750:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21782:9:125","nodeType":"YulIdentifier","src":"21782:9:125"},{"kind":"number","nativeSrc":"21793:2:125","nodeType":"YulLiteral","src":"21793:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21778:3:125","nodeType":"YulIdentifier","src":"21778:3:125"},"nativeSrc":"21778:18:125","nodeType":"YulFunctionCall","src":"21778:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"21765:12:125","nodeType":"YulIdentifier","src":"21765:12:125"},"nativeSrc":"21765:32:125","nodeType":"YulFunctionCall","src":"21765:32:125"},"variables":[{"name":"value_1","nativeSrc":"21754:7:125","nodeType":"YulTypedName","src":"21754:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"21841:7:125","nodeType":"YulIdentifier","src":"21841:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"21806:34:125","nodeType":"YulIdentifier","src":"21806:34:125"},"nativeSrc":"21806:43:125","nodeType":"YulFunctionCall","src":"21806:43:125"},"nativeSrc":"21806:43:125","nodeType":"YulExpressionStatement","src":"21806:43:125"},{"nativeSrc":"21858:17:125","nodeType":"YulAssignment","src":"21858:17:125","value":{"name":"value_1","nativeSrc":"21868:7:125","nodeType":"YulIdentifier","src":"21868:7:125"},"variableNames":[{"name":"value1","nativeSrc":"21858:6:125","nodeType":"YulIdentifier","src":"21858:6:125"}]},{"nativeSrc":"21884:47:125","nodeType":"YulVariableDeclaration","src":"21884:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21916:9:125","nodeType":"YulIdentifier","src":"21916:9:125"},{"kind":"number","nativeSrc":"21927:2:125","nodeType":"YulLiteral","src":"21927:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21912:3:125","nodeType":"YulIdentifier","src":"21912:3:125"},"nativeSrc":"21912:18:125","nodeType":"YulFunctionCall","src":"21912:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"21899:12:125","nodeType":"YulIdentifier","src":"21899:12:125"},"nativeSrc":"21899:32:125","nodeType":"YulFunctionCall","src":"21899:32:125"},"variables":[{"name":"value_2","nativeSrc":"21888:7:125","nodeType":"YulTypedName","src":"21888:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"21975:7:125","nodeType":"YulIdentifier","src":"21975:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"21940:34:125","nodeType":"YulIdentifier","src":"21940:34:125"},"nativeSrc":"21940:43:125","nodeType":"YulFunctionCall","src":"21940:43:125"},"nativeSrc":"21940:43:125","nodeType":"YulExpressionStatement","src":"21940:43:125"},{"nativeSrc":"21992:17:125","nodeType":"YulAssignment","src":"21992:17:125","value":{"name":"value_2","nativeSrc":"22002:7:125","nodeType":"YulIdentifier","src":"22002:7:125"},"variableNames":[{"name":"value2","nativeSrc":"21992:6:125","nodeType":"YulIdentifier","src":"21992:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_addresst_address","nativeSrc":"21487:528:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21541:9:125","nodeType":"YulTypedName","src":"21541:9:125","type":""},{"name":"dataEnd","nativeSrc":"21552:7:125","nodeType":"YulTypedName","src":"21552:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"21564:6:125","nodeType":"YulTypedName","src":"21564:6:125","type":""},{"name":"value1","nativeSrc":"21572:6:125","nodeType":"YulTypedName","src":"21572:6:125","type":""},{"name":"value2","nativeSrc":"21580:6:125","nodeType":"YulTypedName","src":"21580:6:125","type":""}],"src":"21487:528:125"},{"body":{"nativeSrc":"22147:587:125","nodeType":"YulBlock","src":"22147:587:125","statements":[{"body":{"nativeSrc":"22193:16:125","nodeType":"YulBlock","src":"22193:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22202:1:125","nodeType":"YulLiteral","src":"22202:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"22205:1:125","nodeType":"YulLiteral","src":"22205:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22195:6:125","nodeType":"YulIdentifier","src":"22195:6:125"},"nativeSrc":"22195:12:125","nodeType":"YulFunctionCall","src":"22195:12:125"},"nativeSrc":"22195:12:125","nodeType":"YulExpressionStatement","src":"22195:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"22168:7:125","nodeType":"YulIdentifier","src":"22168:7:125"},{"name":"headStart","nativeSrc":"22177:9:125","nodeType":"YulIdentifier","src":"22177:9:125"}],"functionName":{"name":"sub","nativeSrc":"22164:3:125","nodeType":"YulIdentifier","src":"22164:3:125"},"nativeSrc":"22164:23:125","nodeType":"YulFunctionCall","src":"22164:23:125"},{"kind":"number","nativeSrc":"22189:2:125","nodeType":"YulLiteral","src":"22189:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"22160:3:125","nodeType":"YulIdentifier","src":"22160:3:125"},"nativeSrc":"22160:32:125","nodeType":"YulFunctionCall","src":"22160:32:125"},"nativeSrc":"22157:52:125","nodeType":"YulIf","src":"22157:52:125"},{"nativeSrc":"22218:37:125","nodeType":"YulVariableDeclaration","src":"22218:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"22245:9:125","nodeType":"YulIdentifier","src":"22245:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"22232:12:125","nodeType":"YulIdentifier","src":"22232:12:125"},"nativeSrc":"22232:23:125","nodeType":"YulFunctionCall","src":"22232:23:125"},"variables":[{"name":"offset","nativeSrc":"22222:6:125","nodeType":"YulTypedName","src":"22222:6:125","type":""}]},{"body":{"nativeSrc":"22298:16:125","nodeType":"YulBlock","src":"22298:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22307:1:125","nodeType":"YulLiteral","src":"22307:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"22310:1:125","nodeType":"YulLiteral","src":"22310:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22300:6:125","nodeType":"YulIdentifier","src":"22300:6:125"},"nativeSrc":"22300:12:125","nodeType":"YulFunctionCall","src":"22300:12:125"},"nativeSrc":"22300:12:125","nodeType":"YulExpressionStatement","src":"22300:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"22270:6:125","nodeType":"YulIdentifier","src":"22270:6:125"},{"kind":"number","nativeSrc":"22278:18:125","nodeType":"YulLiteral","src":"22278:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"22267:2:125","nodeType":"YulIdentifier","src":"22267:2:125"},"nativeSrc":"22267:30:125","nodeType":"YulFunctionCall","src":"22267:30:125"},"nativeSrc":"22264:50:125","nodeType":"YulIf","src":"22264:50:125"},{"nativeSrc":"22323:84:125","nodeType":"YulVariableDeclaration","src":"22323:84:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22379:9:125","nodeType":"YulIdentifier","src":"22379:9:125"},{"name":"offset","nativeSrc":"22390:6:125","nodeType":"YulIdentifier","src":"22390:6:125"}],"functionName":{"name":"add","nativeSrc":"22375:3:125","nodeType":"YulIdentifier","src":"22375:3:125"},"nativeSrc":"22375:22:125","nodeType":"YulFunctionCall","src":"22375:22:125"},{"name":"dataEnd","nativeSrc":"22399:7:125","nodeType":"YulIdentifier","src":"22399:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"22349:25:125","nodeType":"YulIdentifier","src":"22349:25:125"},"nativeSrc":"22349:58:125","nodeType":"YulFunctionCall","src":"22349:58:125"},"variables":[{"name":"value0_1","nativeSrc":"22327:8:125","nodeType":"YulTypedName","src":"22327:8:125","type":""},{"name":"value1_1","nativeSrc":"22337:8:125","nodeType":"YulTypedName","src":"22337:8:125","type":""}]},{"nativeSrc":"22416:18:125","nodeType":"YulAssignment","src":"22416:18:125","value":{"name":"value0_1","nativeSrc":"22426:8:125","nodeType":"YulIdentifier","src":"22426:8:125"},"variableNames":[{"name":"value0","nativeSrc":"22416:6:125","nodeType":"YulIdentifier","src":"22416:6:125"}]},{"nativeSrc":"22443:18:125","nodeType":"YulAssignment","src":"22443:18:125","value":{"name":"value1_1","nativeSrc":"22453:8:125","nodeType":"YulIdentifier","src":"22453:8:125"},"variableNames":[{"name":"value1","nativeSrc":"22443:6:125","nodeType":"YulIdentifier","src":"22443:6:125"}]},{"nativeSrc":"22470:48:125","nodeType":"YulVariableDeclaration","src":"22470:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22503:9:125","nodeType":"YulIdentifier","src":"22503:9:125"},{"kind":"number","nativeSrc":"22514:2:125","nodeType":"YulLiteral","src":"22514:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22499:3:125","nodeType":"YulIdentifier","src":"22499:3:125"},"nativeSrc":"22499:18:125","nodeType":"YulFunctionCall","src":"22499:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"22486:12:125","nodeType":"YulIdentifier","src":"22486:12:125"},"nativeSrc":"22486:32:125","nodeType":"YulFunctionCall","src":"22486:32:125"},"variables":[{"name":"offset_1","nativeSrc":"22474:8:125","nodeType":"YulTypedName","src":"22474:8:125","type":""}]},{"body":{"nativeSrc":"22563:16:125","nodeType":"YulBlock","src":"22563:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22572:1:125","nodeType":"YulLiteral","src":"22572:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"22575:1:125","nodeType":"YulLiteral","src":"22575:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22565:6:125","nodeType":"YulIdentifier","src":"22565:6:125"},"nativeSrc":"22565:12:125","nodeType":"YulFunctionCall","src":"22565:12:125"},"nativeSrc":"22565:12:125","nodeType":"YulExpressionStatement","src":"22565:12:125"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"22533:8:125","nodeType":"YulIdentifier","src":"22533:8:125"},{"kind":"number","nativeSrc":"22543:18:125","nodeType":"YulLiteral","src":"22543:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"22530:2:125","nodeType":"YulIdentifier","src":"22530:2:125"},"nativeSrc":"22530:32:125","nodeType":"YulFunctionCall","src":"22530:32:125"},"nativeSrc":"22527:52:125","nodeType":"YulIf","src":"22527:52:125"},{"nativeSrc":"22588:86:125","nodeType":"YulVariableDeclaration","src":"22588:86:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22644:9:125","nodeType":"YulIdentifier","src":"22644:9:125"},{"name":"offset_1","nativeSrc":"22655:8:125","nodeType":"YulIdentifier","src":"22655:8:125"}],"functionName":{"name":"add","nativeSrc":"22640:3:125","nodeType":"YulIdentifier","src":"22640:3:125"},"nativeSrc":"22640:24:125","nodeType":"YulFunctionCall","src":"22640:24:125"},{"name":"dataEnd","nativeSrc":"22666:7:125","nodeType":"YulIdentifier","src":"22666:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"22614:25:125","nodeType":"YulIdentifier","src":"22614:25:125"},"nativeSrc":"22614:60:125","nodeType":"YulFunctionCall","src":"22614:60:125"},"variables":[{"name":"value2_1","nativeSrc":"22592:8:125","nodeType":"YulTypedName","src":"22592:8:125","type":""},{"name":"value3_1","nativeSrc":"22602:8:125","nodeType":"YulTypedName","src":"22602:8:125","type":""}]},{"nativeSrc":"22683:18:125","nodeType":"YulAssignment","src":"22683:18:125","value":{"name":"value2_1","nativeSrc":"22693:8:125","nodeType":"YulIdentifier","src":"22693:8:125"},"variableNames":[{"name":"value2","nativeSrc":"22683:6:125","nodeType":"YulIdentifier","src":"22683:6:125"}]},{"nativeSrc":"22710:18:125","nodeType":"YulAssignment","src":"22710:18:125","value":{"name":"value3_1","nativeSrc":"22720:8:125","nodeType":"YulIdentifier","src":"22720:8:125"},"variableNames":[{"name":"value3","nativeSrc":"22710:6:125","nodeType":"YulIdentifier","src":"22710:6:125"}]}]},"name":"abi_decode_tuple_t_string_calldata_ptrt_string_calldata_ptr","nativeSrc":"22020:714:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22089:9:125","nodeType":"YulTypedName","src":"22089:9:125","type":""},{"name":"dataEnd","nativeSrc":"22100:7:125","nodeType":"YulTypedName","src":"22100:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"22112:6:125","nodeType":"YulTypedName","src":"22112:6:125","type":""},{"name":"value1","nativeSrc":"22120:6:125","nodeType":"YulTypedName","src":"22120:6:125","type":""},{"name":"value2","nativeSrc":"22128:6:125","nodeType":"YulTypedName","src":"22128:6:125","type":""},{"name":"value3","nativeSrc":"22136:6:125","nodeType":"YulTypedName","src":"22136:6:125","type":""}],"src":"22020:714:125"},{"body":{"nativeSrc":"22859:517:125","nodeType":"YulBlock","src":"22859:517:125","statements":[{"body":{"nativeSrc":"22906:16:125","nodeType":"YulBlock","src":"22906:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22915:1:125","nodeType":"YulLiteral","src":"22915:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"22918:1:125","nodeType":"YulLiteral","src":"22918:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22908:6:125","nodeType":"YulIdentifier","src":"22908:6:125"},"nativeSrc":"22908:12:125","nodeType":"YulFunctionCall","src":"22908:12:125"},"nativeSrc":"22908:12:125","nodeType":"YulExpressionStatement","src":"22908:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"22880:7:125","nodeType":"YulIdentifier","src":"22880:7:125"},{"name":"headStart","nativeSrc":"22889:9:125","nodeType":"YulIdentifier","src":"22889:9:125"}],"functionName":{"name":"sub","nativeSrc":"22876:3:125","nodeType":"YulIdentifier","src":"22876:3:125"},"nativeSrc":"22876:23:125","nodeType":"YulFunctionCall","src":"22876:23:125"},{"kind":"number","nativeSrc":"22901:3:125","nodeType":"YulLiteral","src":"22901:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"22872:3:125","nodeType":"YulIdentifier","src":"22872:3:125"},"nativeSrc":"22872:33:125","nodeType":"YulFunctionCall","src":"22872:33:125"},"nativeSrc":"22869:53:125","nodeType":"YulIf","src":"22869:53:125"},{"nativeSrc":"22931:36:125","nodeType":"YulVariableDeclaration","src":"22931:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"22957:9:125","nodeType":"YulIdentifier","src":"22957:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"22944:12:125","nodeType":"YulIdentifier","src":"22944:12:125"},"nativeSrc":"22944:23:125","nodeType":"YulFunctionCall","src":"22944:23:125"},"variables":[{"name":"value","nativeSrc":"22935:5:125","nodeType":"YulTypedName","src":"22935:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"23011:5:125","nodeType":"YulIdentifier","src":"23011:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"22976:34:125","nodeType":"YulIdentifier","src":"22976:34:125"},"nativeSrc":"22976:41:125","nodeType":"YulFunctionCall","src":"22976:41:125"},"nativeSrc":"22976:41:125","nodeType":"YulExpressionStatement","src":"22976:41:125"},{"nativeSrc":"23026:15:125","nodeType":"YulAssignment","src":"23026:15:125","value":{"name":"value","nativeSrc":"23036:5:125","nodeType":"YulIdentifier","src":"23036:5:125"},"variableNames":[{"name":"value0","nativeSrc":"23026:6:125","nodeType":"YulIdentifier","src":"23026:6:125"}]},{"nativeSrc":"23050:47:125","nodeType":"YulVariableDeclaration","src":"23050:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23082:9:125","nodeType":"YulIdentifier","src":"23082:9:125"},{"kind":"number","nativeSrc":"23093:2:125","nodeType":"YulLiteral","src":"23093:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23078:3:125","nodeType":"YulIdentifier","src":"23078:3:125"},"nativeSrc":"23078:18:125","nodeType":"YulFunctionCall","src":"23078:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"23065:12:125","nodeType":"YulIdentifier","src":"23065:12:125"},"nativeSrc":"23065:32:125","nodeType":"YulFunctionCall","src":"23065:32:125"},"variables":[{"name":"value_1","nativeSrc":"23054:7:125","nodeType":"YulTypedName","src":"23054:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"23130:7:125","nodeType":"YulIdentifier","src":"23130:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"23106:23:125","nodeType":"YulIdentifier","src":"23106:23:125"},"nativeSrc":"23106:32:125","nodeType":"YulFunctionCall","src":"23106:32:125"},"nativeSrc":"23106:32:125","nodeType":"YulExpressionStatement","src":"23106:32:125"},{"nativeSrc":"23147:17:125","nodeType":"YulAssignment","src":"23147:17:125","value":{"name":"value_1","nativeSrc":"23157:7:125","nodeType":"YulIdentifier","src":"23157:7:125"},"variableNames":[{"name":"value1","nativeSrc":"23147:6:125","nodeType":"YulIdentifier","src":"23147:6:125"}]},{"nativeSrc":"23173:16:125","nodeType":"YulVariableDeclaration","src":"23173:16:125","value":{"kind":"number","nativeSrc":"23188:1:125","nodeType":"YulLiteral","src":"23188:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"23177:7:125","nodeType":"YulTypedName","src":"23177:7:125","type":""}]},{"nativeSrc":"23198:43:125","nodeType":"YulAssignment","src":"23198:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23226:9:125","nodeType":"YulIdentifier","src":"23226:9:125"},{"kind":"number","nativeSrc":"23237:2:125","nodeType":"YulLiteral","src":"23237:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23222:3:125","nodeType":"YulIdentifier","src":"23222:3:125"},"nativeSrc":"23222:18:125","nodeType":"YulFunctionCall","src":"23222:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"23209:12:125","nodeType":"YulIdentifier","src":"23209:12:125"},"nativeSrc":"23209:32:125","nodeType":"YulFunctionCall","src":"23209:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"23198:7:125","nodeType":"YulIdentifier","src":"23198:7:125"}]},{"nativeSrc":"23250:17:125","nodeType":"YulAssignment","src":"23250:17:125","value":{"name":"value_2","nativeSrc":"23260:7:125","nodeType":"YulIdentifier","src":"23260:7:125"},"variableNames":[{"name":"value2","nativeSrc":"23250:6:125","nodeType":"YulIdentifier","src":"23250:6:125"}]},{"nativeSrc":"23276:16:125","nodeType":"YulVariableDeclaration","src":"23276:16:125","value":{"kind":"number","nativeSrc":"23291:1:125","nodeType":"YulLiteral","src":"23291:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"23280:7:125","nodeType":"YulTypedName","src":"23280:7:125","type":""}]},{"nativeSrc":"23301:43:125","nodeType":"YulAssignment","src":"23301:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23329:9:125","nodeType":"YulIdentifier","src":"23329:9:125"},{"kind":"number","nativeSrc":"23340:2:125","nodeType":"YulLiteral","src":"23340:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23325:3:125","nodeType":"YulIdentifier","src":"23325:3:125"},"nativeSrc":"23325:18:125","nodeType":"YulFunctionCall","src":"23325:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"23312:12:125","nodeType":"YulIdentifier","src":"23312:12:125"},"nativeSrc":"23312:32:125","nodeType":"YulFunctionCall","src":"23312:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"23301:7:125","nodeType":"YulIdentifier","src":"23301:7:125"}]},{"nativeSrc":"23353:17:125","nodeType":"YulAssignment","src":"23353:17:125","value":{"name":"value_3","nativeSrc":"23363:7:125","nodeType":"YulIdentifier","src":"23363:7:125"},"variableNames":[{"name":"value3","nativeSrc":"23353:6:125","nodeType":"YulIdentifier","src":"23353:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint256t_uint256","nativeSrc":"22739:637:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22801:9:125","nodeType":"YulTypedName","src":"22801:9:125","type":""},{"name":"dataEnd","nativeSrc":"22812:7:125","nodeType":"YulTypedName","src":"22812:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"22824:6:125","nodeType":"YulTypedName","src":"22824:6:125","type":""},{"name":"value1","nativeSrc":"22832:6:125","nodeType":"YulTypedName","src":"22832:6:125","type":""},{"name":"value2","nativeSrc":"22840:6:125","nodeType":"YulTypedName","src":"22840:6:125","type":""},{"name":"value3","nativeSrc":"22848:6:125","nodeType":"YulTypedName","src":"22848:6:125","type":""}],"src":"22739:637:125"},{"body":{"nativeSrc":"23467:243:125","nodeType":"YulBlock","src":"23467:243:125","statements":[{"body":{"nativeSrc":"23513:16:125","nodeType":"YulBlock","src":"23513:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23522:1:125","nodeType":"YulLiteral","src":"23522:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"23525:1:125","nodeType":"YulLiteral","src":"23525:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23515:6:125","nodeType":"YulIdentifier","src":"23515:6:125"},"nativeSrc":"23515:12:125","nodeType":"YulFunctionCall","src":"23515:12:125"},"nativeSrc":"23515:12:125","nodeType":"YulExpressionStatement","src":"23515:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"23488:7:125","nodeType":"YulIdentifier","src":"23488:7:125"},{"name":"headStart","nativeSrc":"23497:9:125","nodeType":"YulIdentifier","src":"23497:9:125"}],"functionName":{"name":"sub","nativeSrc":"23484:3:125","nodeType":"YulIdentifier","src":"23484:3:125"},"nativeSrc":"23484:23:125","nodeType":"YulFunctionCall","src":"23484:23:125"},{"kind":"number","nativeSrc":"23509:2:125","nodeType":"YulLiteral","src":"23509:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"23480:3:125","nodeType":"YulIdentifier","src":"23480:3:125"},"nativeSrc":"23480:32:125","nodeType":"YulFunctionCall","src":"23480:32:125"},"nativeSrc":"23477:52:125","nodeType":"YulIf","src":"23477:52:125"},{"nativeSrc":"23538:36:125","nodeType":"YulVariableDeclaration","src":"23538:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"23564:9:125","nodeType":"YulIdentifier","src":"23564:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"23551:12:125","nodeType":"YulIdentifier","src":"23551:12:125"},"nativeSrc":"23551:23:125","nodeType":"YulFunctionCall","src":"23551:23:125"},"variables":[{"name":"value","nativeSrc":"23542:5:125","nodeType":"YulTypedName","src":"23542:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"23618:5:125","nodeType":"YulIdentifier","src":"23618:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"23583:34:125","nodeType":"YulIdentifier","src":"23583:34:125"},"nativeSrc":"23583:41:125","nodeType":"YulFunctionCall","src":"23583:41:125"},"nativeSrc":"23583:41:125","nodeType":"YulExpressionStatement","src":"23583:41:125"},{"nativeSrc":"23633:15:125","nodeType":"YulAssignment","src":"23633:15:125","value":{"name":"value","nativeSrc":"23643:5:125","nodeType":"YulIdentifier","src":"23643:5:125"},"variableNames":[{"name":"value0","nativeSrc":"23633:6:125","nodeType":"YulIdentifier","src":"23633:6:125"}]},{"nativeSrc":"23657:47:125","nodeType":"YulAssignment","src":"23657:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23689:9:125","nodeType":"YulIdentifier","src":"23689:9:125"},{"kind":"number","nativeSrc":"23700:2:125","nodeType":"YulLiteral","src":"23700:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23685:3:125","nodeType":"YulIdentifier","src":"23685:3:125"},"nativeSrc":"23685:18:125","nodeType":"YulFunctionCall","src":"23685:18:125"}],"functionName":{"name":"abi_decode_bytes4","nativeSrc":"23667:17:125","nodeType":"YulIdentifier","src":"23667:17:125"},"nativeSrc":"23667:37:125","nodeType":"YulFunctionCall","src":"23667:37:125"},"variableNames":[{"name":"value1","nativeSrc":"23657:6:125","nodeType":"YulIdentifier","src":"23657:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes4","nativeSrc":"23381:329:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23425:9:125","nodeType":"YulTypedName","src":"23425:9:125","type":""},{"name":"dataEnd","nativeSrc":"23436:7:125","nodeType":"YulTypedName","src":"23436:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"23448:6:125","nodeType":"YulTypedName","src":"23448:6:125","type":""},{"name":"value1","nativeSrc":"23456:6:125","nodeType":"YulTypedName","src":"23456:6:125","type":""}],"src":"23381:329:125"},{"body":{"nativeSrc":"23799:277:125","nodeType":"YulBlock","src":"23799:277:125","statements":[{"body":{"nativeSrc":"23845:16:125","nodeType":"YulBlock","src":"23845:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23854:1:125","nodeType":"YulLiteral","src":"23854:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"23857:1:125","nodeType":"YulLiteral","src":"23857:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23847:6:125","nodeType":"YulIdentifier","src":"23847:6:125"},"nativeSrc":"23847:12:125","nodeType":"YulFunctionCall","src":"23847:12:125"},"nativeSrc":"23847:12:125","nodeType":"YulExpressionStatement","src":"23847:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"23820:7:125","nodeType":"YulIdentifier","src":"23820:7:125"},{"name":"headStart","nativeSrc":"23829:9:125","nodeType":"YulIdentifier","src":"23829:9:125"}],"functionName":{"name":"sub","nativeSrc":"23816:3:125","nodeType":"YulIdentifier","src":"23816:3:125"},"nativeSrc":"23816:23:125","nodeType":"YulFunctionCall","src":"23816:23:125"},{"kind":"number","nativeSrc":"23841:2:125","nodeType":"YulLiteral","src":"23841:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"23812:3:125","nodeType":"YulIdentifier","src":"23812:3:125"},"nativeSrc":"23812:32:125","nodeType":"YulFunctionCall","src":"23812:32:125"},"nativeSrc":"23809:52:125","nodeType":"YulIf","src":"23809:52:125"},{"nativeSrc":"23870:14:125","nodeType":"YulVariableDeclaration","src":"23870:14:125","value":{"kind":"number","nativeSrc":"23883:1:125","nodeType":"YulLiteral","src":"23883:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"23874:5:125","nodeType":"YulTypedName","src":"23874:5:125","type":""}]},{"nativeSrc":"23893:32:125","nodeType":"YulAssignment","src":"23893:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"23915:9:125","nodeType":"YulIdentifier","src":"23915:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"23902:12:125","nodeType":"YulIdentifier","src":"23902:12:125"},"nativeSrc":"23902:23:125","nodeType":"YulFunctionCall","src":"23902:23:125"},"variableNames":[{"name":"value","nativeSrc":"23893:5:125","nodeType":"YulIdentifier","src":"23893:5:125"}]},{"nativeSrc":"23934:15:125","nodeType":"YulAssignment","src":"23934:15:125","value":{"name":"value","nativeSrc":"23944:5:125","nodeType":"YulIdentifier","src":"23944:5:125"},"variableNames":[{"name":"value0","nativeSrc":"23934:6:125","nodeType":"YulIdentifier","src":"23934:6:125"}]},{"nativeSrc":"23958:47:125","nodeType":"YulVariableDeclaration","src":"23958:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23990:9:125","nodeType":"YulIdentifier","src":"23990:9:125"},{"kind":"number","nativeSrc":"24001:2:125","nodeType":"YulLiteral","src":"24001:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23986:3:125","nodeType":"YulIdentifier","src":"23986:3:125"},"nativeSrc":"23986:18:125","nodeType":"YulFunctionCall","src":"23986:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"23973:12:125","nodeType":"YulIdentifier","src":"23973:12:125"},"nativeSrc":"23973:32:125","nodeType":"YulFunctionCall","src":"23973:32:125"},"variables":[{"name":"value_1","nativeSrc":"23962:7:125","nodeType":"YulTypedName","src":"23962:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"24036:7:125","nodeType":"YulIdentifier","src":"24036:7:125"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"24014:21:125","nodeType":"YulIdentifier","src":"24014:21:125"},"nativeSrc":"24014:30:125","nodeType":"YulFunctionCall","src":"24014:30:125"},"nativeSrc":"24014:30:125","nodeType":"YulExpressionStatement","src":"24014:30:125"},{"nativeSrc":"24053:17:125","nodeType":"YulAssignment","src":"24053:17:125","value":{"name":"value_1","nativeSrc":"24063:7:125","nodeType":"YulIdentifier","src":"24063:7:125"},"variableNames":[{"name":"value1","nativeSrc":"24053:6:125","nodeType":"YulIdentifier","src":"24053:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_bool","nativeSrc":"23715:361:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23757:9:125","nodeType":"YulTypedName","src":"23757:9:125","type":""},{"name":"dataEnd","nativeSrc":"23768:7:125","nodeType":"YulTypedName","src":"23768:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"23780:6:125","nodeType":"YulTypedName","src":"23780:6:125","type":""},{"name":"value1","nativeSrc":"23788:6:125","nodeType":"YulTypedName","src":"23788:6:125","type":""}],"src":"23715:361:125"},{"body":{"nativeSrc":"24199:485:125","nodeType":"YulBlock","src":"24199:485:125","statements":[{"body":{"nativeSrc":"24246:16:125","nodeType":"YulBlock","src":"24246:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24255:1:125","nodeType":"YulLiteral","src":"24255:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"24258:1:125","nodeType":"YulLiteral","src":"24258:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24248:6:125","nodeType":"YulIdentifier","src":"24248:6:125"},"nativeSrc":"24248:12:125","nodeType":"YulFunctionCall","src":"24248:12:125"},"nativeSrc":"24248:12:125","nodeType":"YulExpressionStatement","src":"24248:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"24220:7:125","nodeType":"YulIdentifier","src":"24220:7:125"},{"name":"headStart","nativeSrc":"24229:9:125","nodeType":"YulIdentifier","src":"24229:9:125"}],"functionName":{"name":"sub","nativeSrc":"24216:3:125","nodeType":"YulIdentifier","src":"24216:3:125"},"nativeSrc":"24216:23:125","nodeType":"YulFunctionCall","src":"24216:23:125"},{"kind":"number","nativeSrc":"24241:3:125","nodeType":"YulLiteral","src":"24241:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"24212:3:125","nodeType":"YulIdentifier","src":"24212:3:125"},"nativeSrc":"24212:33:125","nodeType":"YulFunctionCall","src":"24212:33:125"},"nativeSrc":"24209:53:125","nodeType":"YulIf","src":"24209:53:125"},{"nativeSrc":"24271:36:125","nodeType":"YulVariableDeclaration","src":"24271:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"24297:9:125","nodeType":"YulIdentifier","src":"24297:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"24284:12:125","nodeType":"YulIdentifier","src":"24284:12:125"},"nativeSrc":"24284:23:125","nodeType":"YulFunctionCall","src":"24284:23:125"},"variables":[{"name":"value","nativeSrc":"24275:5:125","nodeType":"YulTypedName","src":"24275:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"24351:5:125","nodeType":"YulIdentifier","src":"24351:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"24316:34:125","nodeType":"YulIdentifier","src":"24316:34:125"},"nativeSrc":"24316:41:125","nodeType":"YulFunctionCall","src":"24316:41:125"},"nativeSrc":"24316:41:125","nodeType":"YulExpressionStatement","src":"24316:41:125"},{"nativeSrc":"24366:15:125","nodeType":"YulAssignment","src":"24366:15:125","value":{"name":"value","nativeSrc":"24376:5:125","nodeType":"YulIdentifier","src":"24376:5:125"},"variableNames":[{"name":"value0","nativeSrc":"24366:6:125","nodeType":"YulIdentifier","src":"24366:6:125"}]},{"nativeSrc":"24390:47:125","nodeType":"YulVariableDeclaration","src":"24390:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24422:9:125","nodeType":"YulIdentifier","src":"24422:9:125"},{"kind":"number","nativeSrc":"24433:2:125","nodeType":"YulLiteral","src":"24433:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24418:3:125","nodeType":"YulIdentifier","src":"24418:3:125"},"nativeSrc":"24418:18:125","nodeType":"YulFunctionCall","src":"24418:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"24405:12:125","nodeType":"YulIdentifier","src":"24405:12:125"},"nativeSrc":"24405:32:125","nodeType":"YulFunctionCall","src":"24405:32:125"},"variables":[{"name":"value_1","nativeSrc":"24394:7:125","nodeType":"YulTypedName","src":"24394:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"24470:7:125","nodeType":"YulIdentifier","src":"24470:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"24446:23:125","nodeType":"YulIdentifier","src":"24446:23:125"},"nativeSrc":"24446:32:125","nodeType":"YulFunctionCall","src":"24446:32:125"},"nativeSrc":"24446:32:125","nodeType":"YulExpressionStatement","src":"24446:32:125"},{"nativeSrc":"24487:17:125","nodeType":"YulAssignment","src":"24487:17:125","value":{"name":"value_1","nativeSrc":"24497:7:125","nodeType":"YulIdentifier","src":"24497:7:125"},"variableNames":[{"name":"value1","nativeSrc":"24487:6:125","nodeType":"YulIdentifier","src":"24487:6:125"}]},{"nativeSrc":"24513:47:125","nodeType":"YulVariableDeclaration","src":"24513:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24545:9:125","nodeType":"YulIdentifier","src":"24545:9:125"},{"kind":"number","nativeSrc":"24556:2:125","nodeType":"YulLiteral","src":"24556:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"24541:3:125","nodeType":"YulIdentifier","src":"24541:3:125"},"nativeSrc":"24541:18:125","nodeType":"YulFunctionCall","src":"24541:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"24528:12:125","nodeType":"YulIdentifier","src":"24528:12:125"},"nativeSrc":"24528:32:125","nodeType":"YulFunctionCall","src":"24528:32:125"},"variables":[{"name":"value_2","nativeSrc":"24517:7:125","nodeType":"YulTypedName","src":"24517:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"24593:7:125","nodeType":"YulIdentifier","src":"24593:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"24569:23:125","nodeType":"YulIdentifier","src":"24569:23:125"},"nativeSrc":"24569:32:125","nodeType":"YulFunctionCall","src":"24569:32:125"},"nativeSrc":"24569:32:125","nodeType":"YulExpressionStatement","src":"24569:32:125"},{"nativeSrc":"24610:17:125","nodeType":"YulAssignment","src":"24610:17:125","value":{"name":"value_2","nativeSrc":"24620:7:125","nodeType":"YulIdentifier","src":"24620:7:125"},"variableNames":[{"name":"value2","nativeSrc":"24610:6:125","nodeType":"YulIdentifier","src":"24610:6:125"}]},{"nativeSrc":"24636:42:125","nodeType":"YulAssignment","src":"24636:42:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24663:9:125","nodeType":"YulIdentifier","src":"24663:9:125"},{"kind":"number","nativeSrc":"24674:2:125","nodeType":"YulLiteral","src":"24674:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"24659:3:125","nodeType":"YulIdentifier","src":"24659:3:125"},"nativeSrc":"24659:18:125","nodeType":"YulFunctionCall","src":"24659:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"24646:12:125","nodeType":"YulIdentifier","src":"24646:12:125"},"nativeSrc":"24646:32:125","nodeType":"YulFunctionCall","src":"24646:32:125"},"variableNames":[{"name":"value3","nativeSrc":"24636:6:125","nodeType":"YulIdentifier","src":"24636:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint32t_int256","nativeSrc":"24081:603:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24141:9:125","nodeType":"YulTypedName","src":"24141:9:125","type":""},{"name":"dataEnd","nativeSrc":"24152:7:125","nodeType":"YulTypedName","src":"24152:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"24164:6:125","nodeType":"YulTypedName","src":"24164:6:125","type":""},{"name":"value1","nativeSrc":"24172:6:125","nodeType":"YulTypedName","src":"24172:6:125","type":""},{"name":"value2","nativeSrc":"24180:6:125","nodeType":"YulTypedName","src":"24180:6:125","type":""},{"name":"value3","nativeSrc":"24188:6:125","nodeType":"YulTypedName","src":"24188:6:125","type":""}],"src":"24081:603:125"},{"body":{"nativeSrc":"24812:582:125","nodeType":"YulBlock","src":"24812:582:125","statements":[{"body":{"nativeSrc":"24858:16:125","nodeType":"YulBlock","src":"24858:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24867:1:125","nodeType":"YulLiteral","src":"24867:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"24870:1:125","nodeType":"YulLiteral","src":"24870:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24860:6:125","nodeType":"YulIdentifier","src":"24860:6:125"},"nativeSrc":"24860:12:125","nodeType":"YulFunctionCall","src":"24860:12:125"},"nativeSrc":"24860:12:125","nodeType":"YulExpressionStatement","src":"24860:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"24833:7:125","nodeType":"YulIdentifier","src":"24833:7:125"},{"name":"headStart","nativeSrc":"24842:9:125","nodeType":"YulIdentifier","src":"24842:9:125"}],"functionName":{"name":"sub","nativeSrc":"24829:3:125","nodeType":"YulIdentifier","src":"24829:3:125"},"nativeSrc":"24829:23:125","nodeType":"YulFunctionCall","src":"24829:23:125"},{"kind":"number","nativeSrc":"24854:2:125","nodeType":"YulLiteral","src":"24854:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"24825:3:125","nodeType":"YulIdentifier","src":"24825:3:125"},"nativeSrc":"24825:32:125","nodeType":"YulFunctionCall","src":"24825:32:125"},"nativeSrc":"24822:52:125","nodeType":"YulIf","src":"24822:52:125"},{"nativeSrc":"24883:36:125","nodeType":"YulVariableDeclaration","src":"24883:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"24909:9:125","nodeType":"YulIdentifier","src":"24909:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"24896:12:125","nodeType":"YulIdentifier","src":"24896:12:125"},"nativeSrc":"24896:23:125","nodeType":"YulFunctionCall","src":"24896:23:125"},"variables":[{"name":"value","nativeSrc":"24887:5:125","nodeType":"YulTypedName","src":"24887:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"24963:5:125","nodeType":"YulIdentifier","src":"24963:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"24928:34:125","nodeType":"YulIdentifier","src":"24928:34:125"},"nativeSrc":"24928:41:125","nodeType":"YulFunctionCall","src":"24928:41:125"},"nativeSrc":"24928:41:125","nodeType":"YulExpressionStatement","src":"24928:41:125"},{"nativeSrc":"24978:15:125","nodeType":"YulAssignment","src":"24978:15:125","value":{"name":"value","nativeSrc":"24988:5:125","nodeType":"YulIdentifier","src":"24988:5:125"},"variableNames":[{"name":"value0","nativeSrc":"24978:6:125","nodeType":"YulIdentifier","src":"24978:6:125"}]},{"nativeSrc":"25002:46:125","nodeType":"YulVariableDeclaration","src":"25002:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25033:9:125","nodeType":"YulIdentifier","src":"25033:9:125"},{"kind":"number","nativeSrc":"25044:2:125","nodeType":"YulLiteral","src":"25044:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25029:3:125","nodeType":"YulIdentifier","src":"25029:3:125"},"nativeSrc":"25029:18:125","nodeType":"YulFunctionCall","src":"25029:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"25016:12:125","nodeType":"YulIdentifier","src":"25016:12:125"},"nativeSrc":"25016:32:125","nodeType":"YulFunctionCall","src":"25016:32:125"},"variables":[{"name":"offset","nativeSrc":"25006:6:125","nodeType":"YulTypedName","src":"25006:6:125","type":""}]},{"body":{"nativeSrc":"25091:16:125","nodeType":"YulBlock","src":"25091:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"25100:1:125","nodeType":"YulLiteral","src":"25100:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"25103:1:125","nodeType":"YulLiteral","src":"25103:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"25093:6:125","nodeType":"YulIdentifier","src":"25093:6:125"},"nativeSrc":"25093:12:125","nodeType":"YulFunctionCall","src":"25093:12:125"},"nativeSrc":"25093:12:125","nodeType":"YulExpressionStatement","src":"25093:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"25063:6:125","nodeType":"YulIdentifier","src":"25063:6:125"},{"kind":"number","nativeSrc":"25071:18:125","nodeType":"YulLiteral","src":"25071:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"25060:2:125","nodeType":"YulIdentifier","src":"25060:2:125"},"nativeSrc":"25060:30:125","nodeType":"YulFunctionCall","src":"25060:30:125"},"nativeSrc":"25057:50:125","nodeType":"YulIf","src":"25057:50:125"},{"nativeSrc":"25116:84:125","nodeType":"YulVariableDeclaration","src":"25116:84:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25172:9:125","nodeType":"YulIdentifier","src":"25172:9:125"},{"name":"offset","nativeSrc":"25183:6:125","nodeType":"YulIdentifier","src":"25183:6:125"}],"functionName":{"name":"add","nativeSrc":"25168:3:125","nodeType":"YulIdentifier","src":"25168:3:125"},"nativeSrc":"25168:22:125","nodeType":"YulFunctionCall","src":"25168:22:125"},{"name":"dataEnd","nativeSrc":"25192:7:125","nodeType":"YulIdentifier","src":"25192:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"25142:25:125","nodeType":"YulIdentifier","src":"25142:25:125"},"nativeSrc":"25142:58:125","nodeType":"YulFunctionCall","src":"25142:58:125"},"variables":[{"name":"value1_1","nativeSrc":"25120:8:125","nodeType":"YulTypedName","src":"25120:8:125","type":""},{"name":"value2_1","nativeSrc":"25130:8:125","nodeType":"YulTypedName","src":"25130:8:125","type":""}]},{"nativeSrc":"25209:18:125","nodeType":"YulAssignment","src":"25209:18:125","value":{"name":"value1_1","nativeSrc":"25219:8:125","nodeType":"YulIdentifier","src":"25219:8:125"},"variableNames":[{"name":"value1","nativeSrc":"25209:6:125","nodeType":"YulIdentifier","src":"25209:6:125"}]},{"nativeSrc":"25236:18:125","nodeType":"YulAssignment","src":"25236:18:125","value":{"name":"value2_1","nativeSrc":"25246:8:125","nodeType":"YulIdentifier","src":"25246:8:125"},"variableNames":[{"name":"value2","nativeSrc":"25236:6:125","nodeType":"YulIdentifier","src":"25236:6:125"}]},{"nativeSrc":"25263:47:125","nodeType":"YulVariableDeclaration","src":"25263:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25295:9:125","nodeType":"YulIdentifier","src":"25295:9:125"},{"kind":"number","nativeSrc":"25306:2:125","nodeType":"YulLiteral","src":"25306:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25291:3:125","nodeType":"YulIdentifier","src":"25291:3:125"},"nativeSrc":"25291:18:125","nodeType":"YulFunctionCall","src":"25291:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"25278:12:125","nodeType":"YulIdentifier","src":"25278:12:125"},"nativeSrc":"25278:32:125","nodeType":"YulFunctionCall","src":"25278:32:125"},"variables":[{"name":"value_1","nativeSrc":"25267:7:125","nodeType":"YulTypedName","src":"25267:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"25354:7:125","nodeType":"YulIdentifier","src":"25354:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"25319:34:125","nodeType":"YulIdentifier","src":"25319:34:125"},"nativeSrc":"25319:43:125","nodeType":"YulFunctionCall","src":"25319:43:125"},"nativeSrc":"25319:43:125","nodeType":"YulExpressionStatement","src":"25319:43:125"},{"nativeSrc":"25371:17:125","nodeType":"YulAssignment","src":"25371:17:125","value":{"name":"value_1","nativeSrc":"25381:7:125","nodeType":"YulIdentifier","src":"25381:7:125"},"variableNames":[{"name":"value3","nativeSrc":"25371:6:125","nodeType":"YulIdentifier","src":"25371:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptrt_address","nativeSrc":"24689:705:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24754:9:125","nodeType":"YulTypedName","src":"24754:9:125","type":""},{"name":"dataEnd","nativeSrc":"24765:7:125","nodeType":"YulTypedName","src":"24765:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"24777:6:125","nodeType":"YulTypedName","src":"24777:6:125","type":""},{"name":"value1","nativeSrc":"24785:6:125","nodeType":"YulTypedName","src":"24785:6:125","type":""},{"name":"value2","nativeSrc":"24793:6:125","nodeType":"YulTypedName","src":"24793:6:125","type":""},{"name":"value3","nativeSrc":"24801:6:125","nodeType":"YulTypedName","src":"24801:6:125","type":""}],"src":"24689:705:125"},{"body":{"nativeSrc":"25442:53:125","nodeType":"YulBlock","src":"25442:53:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"25459:3:125","nodeType":"YulIdentifier","src":"25459:3:125"},{"arguments":[{"name":"value","nativeSrc":"25468:5:125","nodeType":"YulIdentifier","src":"25468:5:125"},{"kind":"number","nativeSrc":"25475:12:125","nodeType":"YulLiteral","src":"25475:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"25464:3:125","nodeType":"YulIdentifier","src":"25464:3:125"},"nativeSrc":"25464:24:125","nodeType":"YulFunctionCall","src":"25464:24:125"}],"functionName":{"name":"mstore","nativeSrc":"25452:6:125","nodeType":"YulIdentifier","src":"25452:6:125"},"nativeSrc":"25452:37:125","nodeType":"YulFunctionCall","src":"25452:37:125"},"nativeSrc":"25452:37:125","nodeType":"YulExpressionStatement","src":"25452:37:125"}]},"name":"abi_encode_uint40","nativeSrc":"25399:96:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"25426:5:125","nodeType":"YulTypedName","src":"25426:5:125","type":""},{"name":"pos","nativeSrc":"25433:3:125","nodeType":"YulTypedName","src":"25433:3:125","type":""}],"src":"25399:96:125"},{"body":{"nativeSrc":"25657:901:125","nodeType":"YulBlock","src":"25657:901:125","statements":[{"nativeSrc":"25667:27:125","nodeType":"YulAssignment","src":"25667:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"25679:9:125","nodeType":"YulIdentifier","src":"25679:9:125"},{"kind":"number","nativeSrc":"25690:3:125","nodeType":"YulLiteral","src":"25690:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"25675:3:125","nodeType":"YulIdentifier","src":"25675:3:125"},"nativeSrc":"25675:19:125","nodeType":"YulFunctionCall","src":"25675:19:125"},"variableNames":[{"name":"tail","nativeSrc":"25667:4:125","nodeType":"YulIdentifier","src":"25667:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25710:9:125","nodeType":"YulIdentifier","src":"25710:9:125"},{"arguments":[{"name":"value0","nativeSrc":"25727:6:125","nodeType":"YulIdentifier","src":"25727:6:125"}],"functionName":{"name":"mload","nativeSrc":"25721:5:125","nodeType":"YulIdentifier","src":"25721:5:125"},"nativeSrc":"25721:13:125","nodeType":"YulFunctionCall","src":"25721:13:125"}],"functionName":{"name":"mstore","nativeSrc":"25703:6:125","nodeType":"YulIdentifier","src":"25703:6:125"},"nativeSrc":"25703:32:125","nodeType":"YulFunctionCall","src":"25703:32:125"},"nativeSrc":"25703:32:125","nodeType":"YulExpressionStatement","src":"25703:32:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25755:9:125","nodeType":"YulIdentifier","src":"25755:9:125"},{"kind":"number","nativeSrc":"25766:4:125","nodeType":"YulLiteral","src":"25766:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"25751:3:125","nodeType":"YulIdentifier","src":"25751:3:125"},"nativeSrc":"25751:20:125","nodeType":"YulFunctionCall","src":"25751:20:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"25783:6:125","nodeType":"YulIdentifier","src":"25783:6:125"},{"kind":"number","nativeSrc":"25791:4:125","nodeType":"YulLiteral","src":"25791:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"25779:3:125","nodeType":"YulIdentifier","src":"25779:3:125"},"nativeSrc":"25779:17:125","nodeType":"YulFunctionCall","src":"25779:17:125"}],"functionName":{"name":"mload","nativeSrc":"25773:5:125","nodeType":"YulIdentifier","src":"25773:5:125"},"nativeSrc":"25773:24:125","nodeType":"YulFunctionCall","src":"25773:24:125"}],"functionName":{"name":"mstore","nativeSrc":"25744:6:125","nodeType":"YulIdentifier","src":"25744:6:125"},"nativeSrc":"25744:54:125","nodeType":"YulFunctionCall","src":"25744:54:125"},"nativeSrc":"25744:54:125","nodeType":"YulExpressionStatement","src":"25744:54:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25818:9:125","nodeType":"YulIdentifier","src":"25818:9:125"},{"kind":"number","nativeSrc":"25829:4:125","nodeType":"YulLiteral","src":"25829:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"25814:3:125","nodeType":"YulIdentifier","src":"25814:3:125"},"nativeSrc":"25814:20:125","nodeType":"YulFunctionCall","src":"25814:20:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"25846:6:125","nodeType":"YulIdentifier","src":"25846:6:125"},{"kind":"number","nativeSrc":"25854:4:125","nodeType":"YulLiteral","src":"25854:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"25842:3:125","nodeType":"YulIdentifier","src":"25842:3:125"},"nativeSrc":"25842:17:125","nodeType":"YulFunctionCall","src":"25842:17:125"}],"functionName":{"name":"mload","nativeSrc":"25836:5:125","nodeType":"YulIdentifier","src":"25836:5:125"},"nativeSrc":"25836:24:125","nodeType":"YulFunctionCall","src":"25836:24:125"}],"functionName":{"name":"mstore","nativeSrc":"25807:6:125","nodeType":"YulIdentifier","src":"25807:6:125"},"nativeSrc":"25807:54:125","nodeType":"YulFunctionCall","src":"25807:54:125"},"nativeSrc":"25807:54:125","nodeType":"YulExpressionStatement","src":"25807:54:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25881:9:125","nodeType":"YulIdentifier","src":"25881:9:125"},{"kind":"number","nativeSrc":"25892:4:125","nodeType":"YulLiteral","src":"25892:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"25877:3:125","nodeType":"YulIdentifier","src":"25877:3:125"},"nativeSrc":"25877:20:125","nodeType":"YulFunctionCall","src":"25877:20:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"25909:6:125","nodeType":"YulIdentifier","src":"25909:6:125"},{"kind":"number","nativeSrc":"25917:4:125","nodeType":"YulLiteral","src":"25917:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"25905:3:125","nodeType":"YulIdentifier","src":"25905:3:125"},"nativeSrc":"25905:17:125","nodeType":"YulFunctionCall","src":"25905:17:125"}],"functionName":{"name":"mload","nativeSrc":"25899:5:125","nodeType":"YulIdentifier","src":"25899:5:125"},"nativeSrc":"25899:24:125","nodeType":"YulFunctionCall","src":"25899:24:125"}],"functionName":{"name":"mstore","nativeSrc":"25870:6:125","nodeType":"YulIdentifier","src":"25870:6:125"},"nativeSrc":"25870:54:125","nodeType":"YulFunctionCall","src":"25870:54:125"},"nativeSrc":"25870:54:125","nodeType":"YulExpressionStatement","src":"25870:54:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25944:9:125","nodeType":"YulIdentifier","src":"25944:9:125"},{"kind":"number","nativeSrc":"25955:4:125","nodeType":"YulLiteral","src":"25955:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"25940:3:125","nodeType":"YulIdentifier","src":"25940:3:125"},"nativeSrc":"25940:20:125","nodeType":"YulFunctionCall","src":"25940:20:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"25972:6:125","nodeType":"YulIdentifier","src":"25972:6:125"},{"kind":"number","nativeSrc":"25980:4:125","nodeType":"YulLiteral","src":"25980:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"25968:3:125","nodeType":"YulIdentifier","src":"25968:3:125"},"nativeSrc":"25968:17:125","nodeType":"YulFunctionCall","src":"25968:17:125"}],"functionName":{"name":"mload","nativeSrc":"25962:5:125","nodeType":"YulIdentifier","src":"25962:5:125"},"nativeSrc":"25962:24:125","nodeType":"YulFunctionCall","src":"25962:24:125"}],"functionName":{"name":"mstore","nativeSrc":"25933:6:125","nodeType":"YulIdentifier","src":"25933:6:125"},"nativeSrc":"25933:54:125","nodeType":"YulFunctionCall","src":"25933:54:125"},"nativeSrc":"25933:54:125","nodeType":"YulExpressionStatement","src":"25933:54:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26007:9:125","nodeType":"YulIdentifier","src":"26007:9:125"},{"kind":"number","nativeSrc":"26018:4:125","nodeType":"YulLiteral","src":"26018:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"26003:3:125","nodeType":"YulIdentifier","src":"26003:3:125"},"nativeSrc":"26003:20:125","nodeType":"YulFunctionCall","src":"26003:20:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"26035:6:125","nodeType":"YulIdentifier","src":"26035:6:125"},{"kind":"number","nativeSrc":"26043:4:125","nodeType":"YulLiteral","src":"26043:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"26031:3:125","nodeType":"YulIdentifier","src":"26031:3:125"},"nativeSrc":"26031:17:125","nodeType":"YulFunctionCall","src":"26031:17:125"}],"functionName":{"name":"mload","nativeSrc":"26025:5:125","nodeType":"YulIdentifier","src":"26025:5:125"},"nativeSrc":"26025:24:125","nodeType":"YulFunctionCall","src":"26025:24:125"}],"functionName":{"name":"mstore","nativeSrc":"25996:6:125","nodeType":"YulIdentifier","src":"25996:6:125"},"nativeSrc":"25996:54:125","nodeType":"YulFunctionCall","src":"25996:54:125"},"nativeSrc":"25996:54:125","nodeType":"YulExpressionStatement","src":"25996:54:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26070:9:125","nodeType":"YulIdentifier","src":"26070:9:125"},{"kind":"number","nativeSrc":"26081:4:125","nodeType":"YulLiteral","src":"26081:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"26066:3:125","nodeType":"YulIdentifier","src":"26066:3:125"},"nativeSrc":"26066:20:125","nodeType":"YulFunctionCall","src":"26066:20:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"26098:6:125","nodeType":"YulIdentifier","src":"26098:6:125"},{"kind":"number","nativeSrc":"26106:4:125","nodeType":"YulLiteral","src":"26106:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"26094:3:125","nodeType":"YulIdentifier","src":"26094:3:125"},"nativeSrc":"26094:17:125","nodeType":"YulFunctionCall","src":"26094:17:125"}],"functionName":{"name":"mload","nativeSrc":"26088:5:125","nodeType":"YulIdentifier","src":"26088:5:125"},"nativeSrc":"26088:24:125","nodeType":"YulFunctionCall","src":"26088:24:125"}],"functionName":{"name":"mstore","nativeSrc":"26059:6:125","nodeType":"YulIdentifier","src":"26059:6:125"},"nativeSrc":"26059:54:125","nodeType":"YulFunctionCall","src":"26059:54:125"},"nativeSrc":"26059:54:125","nodeType":"YulExpressionStatement","src":"26059:54:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26133:9:125","nodeType":"YulIdentifier","src":"26133:9:125"},{"kind":"number","nativeSrc":"26144:4:125","nodeType":"YulLiteral","src":"26144:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"26129:3:125","nodeType":"YulIdentifier","src":"26129:3:125"},"nativeSrc":"26129:20:125","nodeType":"YulFunctionCall","src":"26129:20:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"26161:6:125","nodeType":"YulIdentifier","src":"26161:6:125"},{"kind":"number","nativeSrc":"26169:4:125","nodeType":"YulLiteral","src":"26169:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"26157:3:125","nodeType":"YulIdentifier","src":"26157:3:125"},"nativeSrc":"26157:17:125","nodeType":"YulFunctionCall","src":"26157:17:125"}],"functionName":{"name":"mload","nativeSrc":"26151:5:125","nodeType":"YulIdentifier","src":"26151:5:125"},"nativeSrc":"26151:24:125","nodeType":"YulFunctionCall","src":"26151:24:125"}],"functionName":{"name":"mstore","nativeSrc":"26122:6:125","nodeType":"YulIdentifier","src":"26122:6:125"},"nativeSrc":"26122:54:125","nodeType":"YulFunctionCall","src":"26122:54:125"},"nativeSrc":"26122:54:125","nodeType":"YulExpressionStatement","src":"26122:54:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26196:9:125","nodeType":"YulIdentifier","src":"26196:9:125"},{"kind":"number","nativeSrc":"26207:6:125","nodeType":"YulLiteral","src":"26207:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"26192:3:125","nodeType":"YulIdentifier","src":"26192:3:125"},"nativeSrc":"26192:22:125","nodeType":"YulFunctionCall","src":"26192:22:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"26226:6:125","nodeType":"YulIdentifier","src":"26226:6:125"},{"kind":"number","nativeSrc":"26234:6:125","nodeType":"YulLiteral","src":"26234:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"26222:3:125","nodeType":"YulIdentifier","src":"26222:3:125"},"nativeSrc":"26222:19:125","nodeType":"YulFunctionCall","src":"26222:19:125"}],"functionName":{"name":"mload","nativeSrc":"26216:5:125","nodeType":"YulIdentifier","src":"26216:5:125"},"nativeSrc":"26216:26:125","nodeType":"YulFunctionCall","src":"26216:26:125"}],"functionName":{"name":"mstore","nativeSrc":"26185:6:125","nodeType":"YulIdentifier","src":"26185:6:125"},"nativeSrc":"26185:58:125","nodeType":"YulFunctionCall","src":"26185:58:125"},"nativeSrc":"26185:58:125","nodeType":"YulExpressionStatement","src":"26185:58:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26263:9:125","nodeType":"YulIdentifier","src":"26263:9:125"},{"kind":"number","nativeSrc":"26274:6:125","nodeType":"YulLiteral","src":"26274:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"26259:3:125","nodeType":"YulIdentifier","src":"26259:3:125"},"nativeSrc":"26259:22:125","nodeType":"YulFunctionCall","src":"26259:22:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"26293:6:125","nodeType":"YulIdentifier","src":"26293:6:125"},{"kind":"number","nativeSrc":"26301:6:125","nodeType":"YulLiteral","src":"26301:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"26289:3:125","nodeType":"YulIdentifier","src":"26289:3:125"},"nativeSrc":"26289:19:125","nodeType":"YulFunctionCall","src":"26289:19:125"}],"functionName":{"name":"mload","nativeSrc":"26283:5:125","nodeType":"YulIdentifier","src":"26283:5:125"},"nativeSrc":"26283:26:125","nodeType":"YulFunctionCall","src":"26283:26:125"}],"functionName":{"name":"mstore","nativeSrc":"26252:6:125","nodeType":"YulIdentifier","src":"26252:6:125"},"nativeSrc":"26252:58:125","nodeType":"YulFunctionCall","src":"26252:58:125"},"nativeSrc":"26252:58:125","nodeType":"YulExpressionStatement","src":"26252:58:125"},{"nativeSrc":"26319:46:125","nodeType":"YulVariableDeclaration","src":"26319:46:125","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"26349:6:125","nodeType":"YulIdentifier","src":"26349:6:125"},{"kind":"number","nativeSrc":"26357:6:125","nodeType":"YulLiteral","src":"26357:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"26345:3:125","nodeType":"YulIdentifier","src":"26345:3:125"},"nativeSrc":"26345:19:125","nodeType":"YulFunctionCall","src":"26345:19:125"}],"functionName":{"name":"mload","nativeSrc":"26339:5:125","nodeType":"YulIdentifier","src":"26339:5:125"},"nativeSrc":"26339:26:125","nodeType":"YulFunctionCall","src":"26339:26:125"},"variables":[{"name":"memberValue0","nativeSrc":"26323:12:125","nodeType":"YulTypedName","src":"26323:12:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"26392:12:125","nodeType":"YulIdentifier","src":"26392:12:125"},{"arguments":[{"name":"headStart","nativeSrc":"26410:9:125","nodeType":"YulIdentifier","src":"26410:9:125"},{"kind":"number","nativeSrc":"26421:6:125","nodeType":"YulLiteral","src":"26421:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"26406:3:125","nodeType":"YulIdentifier","src":"26406:3:125"},"nativeSrc":"26406:22:125","nodeType":"YulFunctionCall","src":"26406:22:125"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"26374:17:125","nodeType":"YulIdentifier","src":"26374:17:125"},"nativeSrc":"26374:55:125","nodeType":"YulFunctionCall","src":"26374:55:125"},"nativeSrc":"26374:55:125","nodeType":"YulExpressionStatement","src":"26374:55:125"},{"nativeSrc":"26438:48:125","nodeType":"YulVariableDeclaration","src":"26438:48:125","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"26470:6:125","nodeType":"YulIdentifier","src":"26470:6:125"},{"kind":"number","nativeSrc":"26478:6:125","nodeType":"YulLiteral","src":"26478:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"26466:3:125","nodeType":"YulIdentifier","src":"26466:3:125"},"nativeSrc":"26466:19:125","nodeType":"YulFunctionCall","src":"26466:19:125"}],"functionName":{"name":"mload","nativeSrc":"26460:5:125","nodeType":"YulIdentifier","src":"26460:5:125"},"nativeSrc":"26460:26:125","nodeType":"YulFunctionCall","src":"26460:26:125"},"variables":[{"name":"memberValue0_1","nativeSrc":"26442:14:125","nodeType":"YulTypedName","src":"26442:14:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nativeSrc":"26513:14:125","nodeType":"YulIdentifier","src":"26513:14:125"},{"arguments":[{"name":"headStart","nativeSrc":"26533:9:125","nodeType":"YulIdentifier","src":"26533:9:125"},{"kind":"number","nativeSrc":"26544:6:125","nodeType":"YulLiteral","src":"26544:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"26529:3:125","nodeType":"YulIdentifier","src":"26529:3:125"},"nativeSrc":"26529:22:125","nodeType":"YulFunctionCall","src":"26529:22:125"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"26495:17:125","nodeType":"YulIdentifier","src":"26495:17:125"},"nativeSrc":"26495:57:125","nodeType":"YulFunctionCall","src":"26495:57:125"},"nativeSrc":"26495:57:125","nodeType":"YulExpressionStatement","src":"26495:57:125"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr__fromStack_reversed","nativeSrc":"25500:1058:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25626:9:125","nodeType":"YulTypedName","src":"25626:9:125","type":""},{"name":"value0","nativeSrc":"25637:6:125","nodeType":"YulTypedName","src":"25637:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25648:4:125","nodeType":"YulTypedName","src":"25648:4:125","type":""}],"src":"25500:1058:125"},{"body":{"nativeSrc":"26650:321:125","nodeType":"YulBlock","src":"26650:321:125","statements":[{"body":{"nativeSrc":"26696:16:125","nodeType":"YulBlock","src":"26696:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26705:1:125","nodeType":"YulLiteral","src":"26705:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"26708:1:125","nodeType":"YulLiteral","src":"26708:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"26698:6:125","nodeType":"YulIdentifier","src":"26698:6:125"},"nativeSrc":"26698:12:125","nodeType":"YulFunctionCall","src":"26698:12:125"},"nativeSrc":"26698:12:125","nodeType":"YulExpressionStatement","src":"26698:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"26671:7:125","nodeType":"YulIdentifier","src":"26671:7:125"},{"name":"headStart","nativeSrc":"26680:9:125","nodeType":"YulIdentifier","src":"26680:9:125"}],"functionName":{"name":"sub","nativeSrc":"26667:3:125","nodeType":"YulIdentifier","src":"26667:3:125"},"nativeSrc":"26667:23:125","nodeType":"YulFunctionCall","src":"26667:23:125"},{"kind":"number","nativeSrc":"26692:2:125","nodeType":"YulLiteral","src":"26692:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"26663:3:125","nodeType":"YulIdentifier","src":"26663:3:125"},"nativeSrc":"26663:32:125","nodeType":"YulFunctionCall","src":"26663:32:125"},"nativeSrc":"26660:52:125","nodeType":"YulIf","src":"26660:52:125"},{"nativeSrc":"26721:36:125","nodeType":"YulVariableDeclaration","src":"26721:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"26747:9:125","nodeType":"YulIdentifier","src":"26747:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"26734:12:125","nodeType":"YulIdentifier","src":"26734:12:125"},"nativeSrc":"26734:23:125","nodeType":"YulFunctionCall","src":"26734:23:125"},"variables":[{"name":"value","nativeSrc":"26725:5:125","nodeType":"YulTypedName","src":"26725:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"26801:5:125","nodeType":"YulIdentifier","src":"26801:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"26766:34:125","nodeType":"YulIdentifier","src":"26766:34:125"},"nativeSrc":"26766:41:125","nodeType":"YulFunctionCall","src":"26766:41:125"},"nativeSrc":"26766:41:125","nodeType":"YulExpressionStatement","src":"26766:41:125"},{"nativeSrc":"26816:15:125","nodeType":"YulAssignment","src":"26816:15:125","value":{"name":"value","nativeSrc":"26826:5:125","nodeType":"YulIdentifier","src":"26826:5:125"},"variableNames":[{"name":"value0","nativeSrc":"26816:6:125","nodeType":"YulIdentifier","src":"26816:6:125"}]},{"nativeSrc":"26840:47:125","nodeType":"YulVariableDeclaration","src":"26840:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26872:9:125","nodeType":"YulIdentifier","src":"26872:9:125"},{"kind":"number","nativeSrc":"26883:2:125","nodeType":"YulLiteral","src":"26883:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"26868:3:125","nodeType":"YulIdentifier","src":"26868:3:125"},"nativeSrc":"26868:18:125","nodeType":"YulFunctionCall","src":"26868:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"26855:12:125","nodeType":"YulIdentifier","src":"26855:12:125"},"nativeSrc":"26855:32:125","nodeType":"YulFunctionCall","src":"26855:32:125"},"variables":[{"name":"value_1","nativeSrc":"26844:7:125","nodeType":"YulTypedName","src":"26844:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"26931:7:125","nodeType":"YulIdentifier","src":"26931:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"26896:34:125","nodeType":"YulIdentifier","src":"26896:34:125"},"nativeSrc":"26896:43:125","nodeType":"YulFunctionCall","src":"26896:43:125"},"nativeSrc":"26896:43:125","nodeType":"YulExpressionStatement","src":"26896:43:125"},{"nativeSrc":"26948:17:125","nodeType":"YulAssignment","src":"26948:17:125","value":{"name":"value_1","nativeSrc":"26958:7:125","nodeType":"YulIdentifier","src":"26958:7:125"},"variableNames":[{"name":"value1","nativeSrc":"26948:6:125","nodeType":"YulIdentifier","src":"26948:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"26563:408:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26608:9:125","nodeType":"YulTypedName","src":"26608:9:125","type":""},{"name":"dataEnd","nativeSrc":"26619:7:125","nodeType":"YulTypedName","src":"26619:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"26631:6:125","nodeType":"YulTypedName","src":"26631:6:125","type":""},{"name":"value1","nativeSrc":"26639:6:125","nodeType":"YulTypedName","src":"26639:6:125","type":""}],"src":"26563:408:125"},{"body":{"nativeSrc":"27079:377:125","nodeType":"YulBlock","src":"27079:377:125","statements":[{"body":{"nativeSrc":"27125:16:125","nodeType":"YulBlock","src":"27125:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"27134:1:125","nodeType":"YulLiteral","src":"27134:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"27137:1:125","nodeType":"YulLiteral","src":"27137:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"27127:6:125","nodeType":"YulIdentifier","src":"27127:6:125"},"nativeSrc":"27127:12:125","nodeType":"YulFunctionCall","src":"27127:12:125"},"nativeSrc":"27127:12:125","nodeType":"YulExpressionStatement","src":"27127:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"27100:7:125","nodeType":"YulIdentifier","src":"27100:7:125"},{"name":"headStart","nativeSrc":"27109:9:125","nodeType":"YulIdentifier","src":"27109:9:125"}],"functionName":{"name":"sub","nativeSrc":"27096:3:125","nodeType":"YulIdentifier","src":"27096:3:125"},"nativeSrc":"27096:23:125","nodeType":"YulFunctionCall","src":"27096:23:125"},{"kind":"number","nativeSrc":"27121:2:125","nodeType":"YulLiteral","src":"27121:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"27092:3:125","nodeType":"YulIdentifier","src":"27092:3:125"},"nativeSrc":"27092:32:125","nodeType":"YulFunctionCall","src":"27092:32:125"},"nativeSrc":"27089:52:125","nodeType":"YulIf","src":"27089:52:125"},{"nativeSrc":"27150:36:125","nodeType":"YulVariableDeclaration","src":"27150:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"27176:9:125","nodeType":"YulIdentifier","src":"27176:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"27163:12:125","nodeType":"YulIdentifier","src":"27163:12:125"},"nativeSrc":"27163:23:125","nodeType":"YulFunctionCall","src":"27163:23:125"},"variables":[{"name":"value","nativeSrc":"27154:5:125","nodeType":"YulTypedName","src":"27154:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"27230:5:125","nodeType":"YulIdentifier","src":"27230:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"27195:34:125","nodeType":"YulIdentifier","src":"27195:34:125"},"nativeSrc":"27195:41:125","nodeType":"YulFunctionCall","src":"27195:41:125"},"nativeSrc":"27195:41:125","nodeType":"YulExpressionStatement","src":"27195:41:125"},{"nativeSrc":"27245:15:125","nodeType":"YulAssignment","src":"27245:15:125","value":{"name":"value","nativeSrc":"27255:5:125","nodeType":"YulIdentifier","src":"27255:5:125"},"variableNames":[{"name":"value0","nativeSrc":"27245:6:125","nodeType":"YulIdentifier","src":"27245:6:125"}]},{"nativeSrc":"27269:47:125","nodeType":"YulVariableDeclaration","src":"27269:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27301:9:125","nodeType":"YulIdentifier","src":"27301:9:125"},{"kind":"number","nativeSrc":"27312:2:125","nodeType":"YulLiteral","src":"27312:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27297:3:125","nodeType":"YulIdentifier","src":"27297:3:125"},"nativeSrc":"27297:18:125","nodeType":"YulFunctionCall","src":"27297:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"27284:12:125","nodeType":"YulIdentifier","src":"27284:12:125"},"nativeSrc":"27284:32:125","nodeType":"YulFunctionCall","src":"27284:32:125"},"variables":[{"name":"value_1","nativeSrc":"27273:7:125","nodeType":"YulTypedName","src":"27273:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"27360:7:125","nodeType":"YulIdentifier","src":"27360:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"27325:34:125","nodeType":"YulIdentifier","src":"27325:34:125"},"nativeSrc":"27325:43:125","nodeType":"YulFunctionCall","src":"27325:43:125"},"nativeSrc":"27325:43:125","nodeType":"YulExpressionStatement","src":"27325:43:125"},{"nativeSrc":"27377:17:125","nodeType":"YulAssignment","src":"27377:17:125","value":{"name":"value_1","nativeSrc":"27387:7:125","nodeType":"YulIdentifier","src":"27387:7:125"},"variableNames":[{"name":"value1","nativeSrc":"27377:6:125","nodeType":"YulIdentifier","src":"27377:6:125"}]},{"nativeSrc":"27403:47:125","nodeType":"YulAssignment","src":"27403:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27435:9:125","nodeType":"YulIdentifier","src":"27435:9:125"},{"kind":"number","nativeSrc":"27446:2:125","nodeType":"YulLiteral","src":"27446:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"27431:3:125","nodeType":"YulIdentifier","src":"27431:3:125"},"nativeSrc":"27431:18:125","nodeType":"YulFunctionCall","src":"27431:18:125"}],"functionName":{"name":"abi_decode_bytes4","nativeSrc":"27413:17:125","nodeType":"YulIdentifier","src":"27413:17:125"},"nativeSrc":"27413:37:125","nodeType":"YulFunctionCall","src":"27413:37:125"},"variableNames":[{"name":"value2","nativeSrc":"27403:6:125","nodeType":"YulIdentifier","src":"27403:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_bytes4","nativeSrc":"26976:480:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27029:9:125","nodeType":"YulTypedName","src":"27029:9:125","type":""},{"name":"dataEnd","nativeSrc":"27040:7:125","nodeType":"YulTypedName","src":"27040:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"27052:6:125","nodeType":"YulTypedName","src":"27052:6:125","type":""},{"name":"value1","nativeSrc":"27060:6:125","nodeType":"YulTypedName","src":"27060:6:125","type":""},{"name":"value2","nativeSrc":"27068:6:125","nodeType":"YulTypedName","src":"27068:6:125","type":""}],"src":"26976:480:125"},{"body":{"nativeSrc":"27594:467:125","nodeType":"YulBlock","src":"27594:467:125","statements":[{"body":{"nativeSrc":"27640:16:125","nodeType":"YulBlock","src":"27640:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"27649:1:125","nodeType":"YulLiteral","src":"27649:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"27652:1:125","nodeType":"YulLiteral","src":"27652:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"27642:6:125","nodeType":"YulIdentifier","src":"27642:6:125"},"nativeSrc":"27642:12:125","nodeType":"YulFunctionCall","src":"27642:12:125"},"nativeSrc":"27642:12:125","nodeType":"YulExpressionStatement","src":"27642:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"27615:7:125","nodeType":"YulIdentifier","src":"27615:7:125"},{"name":"headStart","nativeSrc":"27624:9:125","nodeType":"YulIdentifier","src":"27624:9:125"}],"functionName":{"name":"sub","nativeSrc":"27611:3:125","nodeType":"YulIdentifier","src":"27611:3:125"},"nativeSrc":"27611:23:125","nodeType":"YulFunctionCall","src":"27611:23:125"},{"kind":"number","nativeSrc":"27636:2:125","nodeType":"YulLiteral","src":"27636:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"27607:3:125","nodeType":"YulIdentifier","src":"27607:3:125"},"nativeSrc":"27607:32:125","nodeType":"YulFunctionCall","src":"27607:32:125"},"nativeSrc":"27604:52:125","nodeType":"YulIf","src":"27604:52:125"},{"nativeSrc":"27665:36:125","nodeType":"YulVariableDeclaration","src":"27665:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"27691:9:125","nodeType":"YulIdentifier","src":"27691:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"27678:12:125","nodeType":"YulIdentifier","src":"27678:12:125"},"nativeSrc":"27678:23:125","nodeType":"YulFunctionCall","src":"27678:23:125"},"variables":[{"name":"value","nativeSrc":"27669:5:125","nodeType":"YulTypedName","src":"27669:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"27745:5:125","nodeType":"YulIdentifier","src":"27745:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"27710:34:125","nodeType":"YulIdentifier","src":"27710:34:125"},"nativeSrc":"27710:41:125","nodeType":"YulFunctionCall","src":"27710:41:125"},"nativeSrc":"27710:41:125","nodeType":"YulExpressionStatement","src":"27710:41:125"},{"nativeSrc":"27760:15:125","nodeType":"YulAssignment","src":"27760:15:125","value":{"name":"value","nativeSrc":"27770:5:125","nodeType":"YulIdentifier","src":"27770:5:125"},"variableNames":[{"name":"value0","nativeSrc":"27760:6:125","nodeType":"YulIdentifier","src":"27760:6:125"}]},{"nativeSrc":"27784:46:125","nodeType":"YulVariableDeclaration","src":"27784:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27815:9:125","nodeType":"YulIdentifier","src":"27815:9:125"},{"kind":"number","nativeSrc":"27826:2:125","nodeType":"YulLiteral","src":"27826:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27811:3:125","nodeType":"YulIdentifier","src":"27811:3:125"},"nativeSrc":"27811:18:125","nodeType":"YulFunctionCall","src":"27811:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"27798:12:125","nodeType":"YulIdentifier","src":"27798:12:125"},"nativeSrc":"27798:32:125","nodeType":"YulFunctionCall","src":"27798:32:125"},"variables":[{"name":"offset","nativeSrc":"27788:6:125","nodeType":"YulTypedName","src":"27788:6:125","type":""}]},{"body":{"nativeSrc":"27873:16:125","nodeType":"YulBlock","src":"27873:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"27882:1:125","nodeType":"YulLiteral","src":"27882:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"27885:1:125","nodeType":"YulLiteral","src":"27885:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"27875:6:125","nodeType":"YulIdentifier","src":"27875:6:125"},"nativeSrc":"27875:12:125","nodeType":"YulFunctionCall","src":"27875:12:125"},"nativeSrc":"27875:12:125","nodeType":"YulExpressionStatement","src":"27875:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"27845:6:125","nodeType":"YulIdentifier","src":"27845:6:125"},{"kind":"number","nativeSrc":"27853:18:125","nodeType":"YulLiteral","src":"27853:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"27842:2:125","nodeType":"YulIdentifier","src":"27842:2:125"},"nativeSrc":"27842:30:125","nodeType":"YulFunctionCall","src":"27842:30:125"},"nativeSrc":"27839:50:125","nodeType":"YulIf","src":"27839:50:125"},{"nativeSrc":"27898:103:125","nodeType":"YulVariableDeclaration","src":"27898:103:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27973:9:125","nodeType":"YulIdentifier","src":"27973:9:125"},{"name":"offset","nativeSrc":"27984:6:125","nodeType":"YulIdentifier","src":"27984:6:125"}],"functionName":{"name":"add","nativeSrc":"27969:3:125","nodeType":"YulIdentifier","src":"27969:3:125"},"nativeSrc":"27969:22:125","nodeType":"YulFunctionCall","src":"27969:22:125"},{"name":"dataEnd","nativeSrc":"27993:7:125","nodeType":"YulIdentifier","src":"27993:7:125"}],"functionName":{"name":"abi_decode_array_bytes_calldata_dyn_calldata","nativeSrc":"27924:44:125","nodeType":"YulIdentifier","src":"27924:44:125"},"nativeSrc":"27924:77:125","nodeType":"YulFunctionCall","src":"27924:77:125"},"variables":[{"name":"value1_1","nativeSrc":"27902:8:125","nodeType":"YulTypedName","src":"27902:8:125","type":""},{"name":"value2_1","nativeSrc":"27912:8:125","nodeType":"YulTypedName","src":"27912:8:125","type":""}]},{"nativeSrc":"28010:18:125","nodeType":"YulAssignment","src":"28010:18:125","value":{"name":"value1_1","nativeSrc":"28020:8:125","nodeType":"YulIdentifier","src":"28020:8:125"},"variableNames":[{"name":"value1","nativeSrc":"28010:6:125","nodeType":"YulIdentifier","src":"28010:6:125"}]},{"nativeSrc":"28037:18:125","nodeType":"YulAssignment","src":"28037:18:125","value":{"name":"value2_1","nativeSrc":"28047:8:125","nodeType":"YulIdentifier","src":"28047:8:125"},"variableNames":[{"name":"value2","nativeSrc":"28037:6:125","nodeType":"YulIdentifier","src":"28037:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","nativeSrc":"27461:600:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27544:9:125","nodeType":"YulTypedName","src":"27544:9:125","type":""},{"name":"dataEnd","nativeSrc":"27555:7:125","nodeType":"YulTypedName","src":"27555:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"27567:6:125","nodeType":"YulTypedName","src":"27567:6:125","type":""},{"name":"value1","nativeSrc":"27575:6:125","nodeType":"YulTypedName","src":"27575:6:125","type":""},{"name":"value2","nativeSrc":"27583:6:125","nodeType":"YulTypedName","src":"27583:6:125","type":""}],"src":"27461:600:125"},{"body":{"nativeSrc":"28235:611:125","nodeType":"YulBlock","src":"28235:611:125","statements":[{"nativeSrc":"28245:32:125","nodeType":"YulVariableDeclaration","src":"28245:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"28263:9:125","nodeType":"YulIdentifier","src":"28263:9:125"},{"kind":"number","nativeSrc":"28274:2:125","nodeType":"YulLiteral","src":"28274:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28259:3:125","nodeType":"YulIdentifier","src":"28259:3:125"},"nativeSrc":"28259:18:125","nodeType":"YulFunctionCall","src":"28259:18:125"},"variables":[{"name":"tail_1","nativeSrc":"28249:6:125","nodeType":"YulTypedName","src":"28249:6:125","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28293:9:125","nodeType":"YulIdentifier","src":"28293:9:125"},{"kind":"number","nativeSrc":"28304:2:125","nodeType":"YulLiteral","src":"28304:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"28286:6:125","nodeType":"YulIdentifier","src":"28286:6:125"},"nativeSrc":"28286:21:125","nodeType":"YulFunctionCall","src":"28286:21:125"},"nativeSrc":"28286:21:125","nodeType":"YulExpressionStatement","src":"28286:21:125"},{"nativeSrc":"28316:17:125","nodeType":"YulVariableDeclaration","src":"28316:17:125","value":{"name":"tail_1","nativeSrc":"28327:6:125","nodeType":"YulIdentifier","src":"28327:6:125"},"variables":[{"name":"pos","nativeSrc":"28320:3:125","nodeType":"YulTypedName","src":"28320:3:125","type":""}]},{"nativeSrc":"28342:27:125","nodeType":"YulVariableDeclaration","src":"28342:27:125","value":{"arguments":[{"name":"value0","nativeSrc":"28362:6:125","nodeType":"YulIdentifier","src":"28362:6:125"}],"functionName":{"name":"mload","nativeSrc":"28356:5:125","nodeType":"YulIdentifier","src":"28356:5:125"},"nativeSrc":"28356:13:125","nodeType":"YulFunctionCall","src":"28356:13:125"},"variables":[{"name":"length","nativeSrc":"28346:6:125","nodeType":"YulTypedName","src":"28346:6:125","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"28385:6:125","nodeType":"YulIdentifier","src":"28385:6:125"},{"name":"length","nativeSrc":"28393:6:125","nodeType":"YulIdentifier","src":"28393:6:125"}],"functionName":{"name":"mstore","nativeSrc":"28378:6:125","nodeType":"YulIdentifier","src":"28378:6:125"},"nativeSrc":"28378:22:125","nodeType":"YulFunctionCall","src":"28378:22:125"},"nativeSrc":"28378:22:125","nodeType":"YulExpressionStatement","src":"28378:22:125"},{"nativeSrc":"28409:25:125","nodeType":"YulAssignment","src":"28409:25:125","value":{"arguments":[{"name":"headStart","nativeSrc":"28420:9:125","nodeType":"YulIdentifier","src":"28420:9:125"},{"kind":"number","nativeSrc":"28431:2:125","nodeType":"YulLiteral","src":"28431:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28416:3:125","nodeType":"YulIdentifier","src":"28416:3:125"},"nativeSrc":"28416:18:125","nodeType":"YulFunctionCall","src":"28416:18:125"},"variableNames":[{"name":"pos","nativeSrc":"28409:3:125","nodeType":"YulIdentifier","src":"28409:3:125"}]},{"nativeSrc":"28443:53:125","nodeType":"YulVariableDeclaration","src":"28443:53:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28465:9:125","nodeType":"YulIdentifier","src":"28465:9:125"},{"arguments":[{"kind":"number","nativeSrc":"28480:1:125","nodeType":"YulLiteral","src":"28480:1:125","type":"","value":"5"},{"name":"length","nativeSrc":"28483:6:125","nodeType":"YulIdentifier","src":"28483:6:125"}],"functionName":{"name":"shl","nativeSrc":"28476:3:125","nodeType":"YulIdentifier","src":"28476:3:125"},"nativeSrc":"28476:14:125","nodeType":"YulFunctionCall","src":"28476:14:125"}],"functionName":{"name":"add","nativeSrc":"28461:3:125","nodeType":"YulIdentifier","src":"28461:3:125"},"nativeSrc":"28461:30:125","nodeType":"YulFunctionCall","src":"28461:30:125"},{"kind":"number","nativeSrc":"28493:2:125","nodeType":"YulLiteral","src":"28493:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28457:3:125","nodeType":"YulIdentifier","src":"28457:3:125"},"nativeSrc":"28457:39:125","nodeType":"YulFunctionCall","src":"28457:39:125"},"variables":[{"name":"tail_2","nativeSrc":"28447:6:125","nodeType":"YulTypedName","src":"28447:6:125","type":""}]},{"nativeSrc":"28505:29:125","nodeType":"YulVariableDeclaration","src":"28505:29:125","value":{"arguments":[{"name":"value0","nativeSrc":"28523:6:125","nodeType":"YulIdentifier","src":"28523:6:125"},{"kind":"number","nativeSrc":"28531:2:125","nodeType":"YulLiteral","src":"28531:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28519:3:125","nodeType":"YulIdentifier","src":"28519:3:125"},"nativeSrc":"28519:15:125","nodeType":"YulFunctionCall","src":"28519:15:125"},"variables":[{"name":"srcPtr","nativeSrc":"28509:6:125","nodeType":"YulTypedName","src":"28509:6:125","type":""}]},{"nativeSrc":"28543:10:125","nodeType":"YulVariableDeclaration","src":"28543:10:125","value":{"kind":"number","nativeSrc":"28552:1:125","nodeType":"YulLiteral","src":"28552:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"28547:1:125","nodeType":"YulTypedName","src":"28547:1:125","type":""}]},{"body":{"nativeSrc":"28611:206:125","nodeType":"YulBlock","src":"28611:206:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"28632:3:125","nodeType":"YulIdentifier","src":"28632:3:125"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"28645:6:125","nodeType":"YulIdentifier","src":"28645:6:125"},{"name":"headStart","nativeSrc":"28653:9:125","nodeType":"YulIdentifier","src":"28653:9:125"}],"functionName":{"name":"sub","nativeSrc":"28641:3:125","nodeType":"YulIdentifier","src":"28641:3:125"},"nativeSrc":"28641:22:125","nodeType":"YulFunctionCall","src":"28641:22:125"},{"arguments":[{"kind":"number","nativeSrc":"28669:2:125","nodeType":"YulLiteral","src":"28669:2:125","type":"","value":"63"}],"functionName":{"name":"not","nativeSrc":"28665:3:125","nodeType":"YulIdentifier","src":"28665:3:125"},"nativeSrc":"28665:7:125","nodeType":"YulFunctionCall","src":"28665:7:125"}],"functionName":{"name":"add","nativeSrc":"28637:3:125","nodeType":"YulIdentifier","src":"28637:3:125"},"nativeSrc":"28637:36:125","nodeType":"YulFunctionCall","src":"28637:36:125"}],"functionName":{"name":"mstore","nativeSrc":"28625:6:125","nodeType":"YulIdentifier","src":"28625:6:125"},"nativeSrc":"28625:49:125","nodeType":"YulFunctionCall","src":"28625:49:125"},"nativeSrc":"28625:49:125","nodeType":"YulExpressionStatement","src":"28625:49:125"},{"nativeSrc":"28687:50:125","nodeType":"YulAssignment","src":"28687:50:125","value":{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"28721:6:125","nodeType":"YulIdentifier","src":"28721:6:125"}],"functionName":{"name":"mload","nativeSrc":"28715:5:125","nodeType":"YulIdentifier","src":"28715:5:125"},"nativeSrc":"28715:13:125","nodeType":"YulFunctionCall","src":"28715:13:125"},{"name":"tail_2","nativeSrc":"28730:6:125","nodeType":"YulIdentifier","src":"28730:6:125"}],"functionName":{"name":"abi_encode_string","nativeSrc":"28697:17:125","nodeType":"YulIdentifier","src":"28697:17:125"},"nativeSrc":"28697:40:125","nodeType":"YulFunctionCall","src":"28697:40:125"},"variableNames":[{"name":"tail_2","nativeSrc":"28687:6:125","nodeType":"YulIdentifier","src":"28687:6:125"}]},{"nativeSrc":"28750:25:125","nodeType":"YulAssignment","src":"28750:25:125","value":{"arguments":[{"name":"srcPtr","nativeSrc":"28764:6:125","nodeType":"YulIdentifier","src":"28764:6:125"},{"kind":"number","nativeSrc":"28772:2:125","nodeType":"YulLiteral","src":"28772:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28760:3:125","nodeType":"YulIdentifier","src":"28760:3:125"},"nativeSrc":"28760:15:125","nodeType":"YulFunctionCall","src":"28760:15:125"},"variableNames":[{"name":"srcPtr","nativeSrc":"28750:6:125","nodeType":"YulIdentifier","src":"28750:6:125"}]},{"nativeSrc":"28788:19:125","nodeType":"YulAssignment","src":"28788:19:125","value":{"arguments":[{"name":"pos","nativeSrc":"28799:3:125","nodeType":"YulIdentifier","src":"28799:3:125"},{"kind":"number","nativeSrc":"28804:2:125","nodeType":"YulLiteral","src":"28804:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28795:3:125","nodeType":"YulIdentifier","src":"28795:3:125"},"nativeSrc":"28795:12:125","nodeType":"YulFunctionCall","src":"28795:12:125"},"variableNames":[{"name":"pos","nativeSrc":"28788:3:125","nodeType":"YulIdentifier","src":"28788:3:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"28573:1:125","nodeType":"YulIdentifier","src":"28573:1:125"},{"name":"length","nativeSrc":"28576:6:125","nodeType":"YulIdentifier","src":"28576:6:125"}],"functionName":{"name":"lt","nativeSrc":"28570:2:125","nodeType":"YulIdentifier","src":"28570:2:125"},"nativeSrc":"28570:13:125","nodeType":"YulFunctionCall","src":"28570:13:125"},"nativeSrc":"28562:255:125","nodeType":"YulForLoop","post":{"nativeSrc":"28584:18:125","nodeType":"YulBlock","src":"28584:18:125","statements":[{"nativeSrc":"28586:14:125","nodeType":"YulAssignment","src":"28586:14:125","value":{"arguments":[{"name":"i","nativeSrc":"28595:1:125","nodeType":"YulIdentifier","src":"28595:1:125"},{"kind":"number","nativeSrc":"28598:1:125","nodeType":"YulLiteral","src":"28598:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"28591:3:125","nodeType":"YulIdentifier","src":"28591:3:125"},"nativeSrc":"28591:9:125","nodeType":"YulFunctionCall","src":"28591:9:125"},"variableNames":[{"name":"i","nativeSrc":"28586:1:125","nodeType":"YulIdentifier","src":"28586:1:125"}]}]},"pre":{"nativeSrc":"28566:3:125","nodeType":"YulBlock","src":"28566:3:125","statements":[]},"src":"28562:255:125"},{"nativeSrc":"28826:14:125","nodeType":"YulAssignment","src":"28826:14:125","value":{"name":"tail_2","nativeSrc":"28834:6:125","nodeType":"YulIdentifier","src":"28834:6:125"},"variableNames":[{"name":"tail","nativeSrc":"28826:4:125","nodeType":"YulIdentifier","src":"28826:4:125"}]}]},"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":"28066:780:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28204:9:125","nodeType":"YulTypedName","src":"28204:9:125","type":""},{"name":"value0","nativeSrc":"28215:6:125","nodeType":"YulTypedName","src":"28215:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28226:4:125","nodeType":"YulTypedName","src":"28226:4:125","type":""}],"src":"28066:780:125"},{"body":{"nativeSrc":"28956:317:125","nodeType":"YulBlock","src":"28956:317:125","statements":[{"body":{"nativeSrc":"29002:16:125","nodeType":"YulBlock","src":"29002:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"29011:1:125","nodeType":"YulLiteral","src":"29011:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"29014:1:125","nodeType":"YulLiteral","src":"29014:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"29004:6:125","nodeType":"YulIdentifier","src":"29004:6:125"},"nativeSrc":"29004:12:125","nodeType":"YulFunctionCall","src":"29004:12:125"},"nativeSrc":"29004:12:125","nodeType":"YulExpressionStatement","src":"29004:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"28977:7:125","nodeType":"YulIdentifier","src":"28977:7:125"},{"name":"headStart","nativeSrc":"28986:9:125","nodeType":"YulIdentifier","src":"28986:9:125"}],"functionName":{"name":"sub","nativeSrc":"28973:3:125","nodeType":"YulIdentifier","src":"28973:3:125"},"nativeSrc":"28973:23:125","nodeType":"YulFunctionCall","src":"28973:23:125"},{"kind":"number","nativeSrc":"28998:2:125","nodeType":"YulLiteral","src":"28998:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"28969:3:125","nodeType":"YulIdentifier","src":"28969:3:125"},"nativeSrc":"28969:32:125","nodeType":"YulFunctionCall","src":"28969:32:125"},"nativeSrc":"28966:52:125","nodeType":"YulIf","src":"28966:52:125"},{"nativeSrc":"29027:36:125","nodeType":"YulVariableDeclaration","src":"29027:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"29053:9:125","nodeType":"YulIdentifier","src":"29053:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"29040:12:125","nodeType":"YulIdentifier","src":"29040:12:125"},"nativeSrc":"29040:23:125","nodeType":"YulFunctionCall","src":"29040:23:125"},"variables":[{"name":"value","nativeSrc":"29031:5:125","nodeType":"YulTypedName","src":"29031:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"29107:5:125","nodeType":"YulIdentifier","src":"29107:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"29072:34:125","nodeType":"YulIdentifier","src":"29072:34:125"},"nativeSrc":"29072:41:125","nodeType":"YulFunctionCall","src":"29072:41:125"},"nativeSrc":"29072:41:125","nodeType":"YulExpressionStatement","src":"29072:41:125"},{"nativeSrc":"29122:15:125","nodeType":"YulAssignment","src":"29122:15:125","value":{"name":"value","nativeSrc":"29132:5:125","nodeType":"YulIdentifier","src":"29132:5:125"},"variableNames":[{"name":"value0","nativeSrc":"29122:6:125","nodeType":"YulIdentifier","src":"29122:6:125"}]},{"nativeSrc":"29146:47:125","nodeType":"YulVariableDeclaration","src":"29146:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29178:9:125","nodeType":"YulIdentifier","src":"29178:9:125"},{"kind":"number","nativeSrc":"29189:2:125","nodeType":"YulLiteral","src":"29189:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29174:3:125","nodeType":"YulIdentifier","src":"29174:3:125"},"nativeSrc":"29174:18:125","nodeType":"YulFunctionCall","src":"29174:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"29161:12:125","nodeType":"YulIdentifier","src":"29161:12:125"},"nativeSrc":"29161:32:125","nodeType":"YulFunctionCall","src":"29161:32:125"},"variables":[{"name":"value_1","nativeSrc":"29150:7:125","nodeType":"YulTypedName","src":"29150:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"29233:7:125","nodeType":"YulIdentifier","src":"29233:7:125"}],"functionName":{"name":"validator_revert_enum_Rounding","nativeSrc":"29202:30:125","nodeType":"YulIdentifier","src":"29202:30:125"},"nativeSrc":"29202:39:125","nodeType":"YulFunctionCall","src":"29202:39:125"},"nativeSrc":"29202:39:125","nodeType":"YulExpressionStatement","src":"29202:39:125"},{"nativeSrc":"29250:17:125","nodeType":"YulAssignment","src":"29250:17:125","value":{"name":"value_1","nativeSrc":"29260:7:125","nodeType":"YulIdentifier","src":"29260:7:125"},"variableNames":[{"name":"value1","nativeSrc":"29250:6:125","nodeType":"YulIdentifier","src":"29250:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_enum$_TargetStatus_$38330","nativeSrc":"28851:422:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28914:9:125","nodeType":"YulTypedName","src":"28914:9:125","type":""},{"name":"dataEnd","nativeSrc":"28925:7:125","nodeType":"YulTypedName","src":"28925:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"28937:6:125","nodeType":"YulTypedName","src":"28937:6:125","type":""},{"name":"value1","nativeSrc":"28945:6:125","nodeType":"YulTypedName","src":"28945:6:125","type":""}],"src":"28851:422:125"},{"body":{"nativeSrc":"29359:149:125","nodeType":"YulBlock","src":"29359:149:125","statements":[{"body":{"nativeSrc":"29405:16:125","nodeType":"YulBlock","src":"29405:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"29414:1:125","nodeType":"YulLiteral","src":"29414:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"29417:1:125","nodeType":"YulLiteral","src":"29417:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"29407:6:125","nodeType":"YulIdentifier","src":"29407:6:125"},"nativeSrc":"29407:12:125","nodeType":"YulFunctionCall","src":"29407:12:125"},"nativeSrc":"29407:12:125","nodeType":"YulExpressionStatement","src":"29407:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"29380:7:125","nodeType":"YulIdentifier","src":"29380:7:125"},{"name":"headStart","nativeSrc":"29389:9:125","nodeType":"YulIdentifier","src":"29389:9:125"}],"functionName":{"name":"sub","nativeSrc":"29376:3:125","nodeType":"YulIdentifier","src":"29376:3:125"},"nativeSrc":"29376:23:125","nodeType":"YulFunctionCall","src":"29376:23:125"},{"kind":"number","nativeSrc":"29401:2:125","nodeType":"YulLiteral","src":"29401:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"29372:3:125","nodeType":"YulIdentifier","src":"29372:3:125"},"nativeSrc":"29372:32:125","nodeType":"YulFunctionCall","src":"29372:32:125"},"nativeSrc":"29369:52:125","nodeType":"YulIf","src":"29369:52:125"},{"nativeSrc":"29430:14:125","nodeType":"YulVariableDeclaration","src":"29430:14:125","value":{"kind":"number","nativeSrc":"29443:1:125","nodeType":"YulLiteral","src":"29443:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"29434:5:125","nodeType":"YulTypedName","src":"29434:5:125","type":""}]},{"nativeSrc":"29453:25:125","nodeType":"YulAssignment","src":"29453:25:125","value":{"arguments":[{"name":"headStart","nativeSrc":"29468:9:125","nodeType":"YulIdentifier","src":"29468:9:125"}],"functionName":{"name":"mload","nativeSrc":"29462:5:125","nodeType":"YulIdentifier","src":"29462:5:125"},"nativeSrc":"29462:16:125","nodeType":"YulFunctionCall","src":"29462:16:125"},"variableNames":[{"name":"value","nativeSrc":"29453:5:125","nodeType":"YulIdentifier","src":"29453:5:125"}]},{"nativeSrc":"29487:15:125","nodeType":"YulAssignment","src":"29487:15:125","value":{"name":"value","nativeSrc":"29497:5:125","nodeType":"YulIdentifier","src":"29497:5:125"},"variableNames":[{"name":"value0","nativeSrc":"29487:6:125","nodeType":"YulIdentifier","src":"29487:6:125"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"29278:230:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29325:9:125","nodeType":"YulTypedName","src":"29325:9:125","type":""},{"name":"dataEnd","nativeSrc":"29336:7:125","nodeType":"YulTypedName","src":"29336:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"29348:6:125","nodeType":"YulTypedName","src":"29348:6:125","type":""}],"src":"29278:230:125"},{"body":{"nativeSrc":"29545:95:125","nodeType":"YulBlock","src":"29545:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"29562:1:125","nodeType":"YulLiteral","src":"29562:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"29569:3:125","nodeType":"YulLiteral","src":"29569:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"29574:10:125","nodeType":"YulLiteral","src":"29574:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"29565:3:125","nodeType":"YulIdentifier","src":"29565:3:125"},"nativeSrc":"29565:20:125","nodeType":"YulFunctionCall","src":"29565:20:125"}],"functionName":{"name":"mstore","nativeSrc":"29555:6:125","nodeType":"YulIdentifier","src":"29555:6:125"},"nativeSrc":"29555:31:125","nodeType":"YulFunctionCall","src":"29555:31:125"},"nativeSrc":"29555:31:125","nodeType":"YulExpressionStatement","src":"29555:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"29602:1:125","nodeType":"YulLiteral","src":"29602:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"29605:4:125","nodeType":"YulLiteral","src":"29605:4:125","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"29595:6:125","nodeType":"YulIdentifier","src":"29595:6:125"},"nativeSrc":"29595:15:125","nodeType":"YulFunctionCall","src":"29595:15:125"},"nativeSrc":"29595:15:125","nodeType":"YulExpressionStatement","src":"29595:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"29626:1:125","nodeType":"YulLiteral","src":"29626:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"29629:4:125","nodeType":"YulLiteral","src":"29629:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"29619:6:125","nodeType":"YulIdentifier","src":"29619:6:125"},"nativeSrc":"29619:15:125","nodeType":"YulFunctionCall","src":"29619:15:125"},"nativeSrc":"29619:15:125","nodeType":"YulExpressionStatement","src":"29619:15:125"}]},"name":"panic_error_0x11","nativeSrc":"29513:127:125","nodeType":"YulFunctionDefinition","src":"29513:127:125"},{"body":{"nativeSrc":"29693:77:125","nodeType":"YulBlock","src":"29693:77:125","statements":[{"nativeSrc":"29703:16:125","nodeType":"YulAssignment","src":"29703:16:125","value":{"arguments":[{"name":"x","nativeSrc":"29714:1:125","nodeType":"YulIdentifier","src":"29714:1:125"},{"name":"y","nativeSrc":"29717:1:125","nodeType":"YulIdentifier","src":"29717:1:125"}],"functionName":{"name":"add","nativeSrc":"29710:3:125","nodeType":"YulIdentifier","src":"29710:3:125"},"nativeSrc":"29710:9:125","nodeType":"YulFunctionCall","src":"29710:9:125"},"variableNames":[{"name":"sum","nativeSrc":"29703:3:125","nodeType":"YulIdentifier","src":"29703:3:125"}]},{"body":{"nativeSrc":"29742:22:125","nodeType":"YulBlock","src":"29742:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"29744:16:125","nodeType":"YulIdentifier","src":"29744:16:125"},"nativeSrc":"29744:18:125","nodeType":"YulFunctionCall","src":"29744:18:125"},"nativeSrc":"29744:18:125","nodeType":"YulExpressionStatement","src":"29744:18:125"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"29734:1:125","nodeType":"YulIdentifier","src":"29734:1:125"},{"name":"sum","nativeSrc":"29737:3:125","nodeType":"YulIdentifier","src":"29737:3:125"}],"functionName":{"name":"gt","nativeSrc":"29731:2:125","nodeType":"YulIdentifier","src":"29731:2:125"},"nativeSrc":"29731:10:125","nodeType":"YulFunctionCall","src":"29731:10:125"},"nativeSrc":"29728:36:125","nodeType":"YulIf","src":"29728:36:125"}]},"name":"checked_add_t_uint256","nativeSrc":"29645:125:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"29676:1:125","nodeType":"YulTypedName","src":"29676:1:125","type":""},{"name":"y","nativeSrc":"29679:1:125","nodeType":"YulTypedName","src":"29679:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"29685:3:125","nodeType":"YulTypedName","src":"29685:3:125","type":""}],"src":"29645:125:125"},{"body":{"nativeSrc":"29818:93:125","nodeType":"YulBlock","src":"29818:93:125","statements":[{"body":{"nativeSrc":"29854:22:125","nodeType":"YulBlock","src":"29854:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"29856:16:125","nodeType":"YulIdentifier","src":"29856:16:125"},"nativeSrc":"29856:18:125","nodeType":"YulFunctionCall","src":"29856:18:125"},"nativeSrc":"29856:18:125","nodeType":"YulExpressionStatement","src":"29856:18:125"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"29834:5:125","nodeType":"YulIdentifier","src":"29834:5:125"},{"arguments":[{"kind":"number","nativeSrc":"29845:3:125","nodeType":"YulLiteral","src":"29845:3:125","type":"","value":"255"},{"kind":"number","nativeSrc":"29850:1:125","nodeType":"YulLiteral","src":"29850:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"29841:3:125","nodeType":"YulIdentifier","src":"29841:3:125"},"nativeSrc":"29841:11:125","nodeType":"YulFunctionCall","src":"29841:11:125"}],"functionName":{"name":"eq","nativeSrc":"29831:2:125","nodeType":"YulIdentifier","src":"29831:2:125"},"nativeSrc":"29831:22:125","nodeType":"YulFunctionCall","src":"29831:22:125"},"nativeSrc":"29828:48:125","nodeType":"YulIf","src":"29828:48:125"},{"nativeSrc":"29885:20:125","nodeType":"YulAssignment","src":"29885:20:125","value":{"arguments":[{"kind":"number","nativeSrc":"29896:1:125","nodeType":"YulLiteral","src":"29896:1:125","type":"","value":"0"},{"name":"value","nativeSrc":"29899:5:125","nodeType":"YulIdentifier","src":"29899:5:125"}],"functionName":{"name":"sub","nativeSrc":"29892:3:125","nodeType":"YulIdentifier","src":"29892:3:125"},"nativeSrc":"29892:13:125","nodeType":"YulFunctionCall","src":"29892:13:125"},"variableNames":[{"name":"ret","nativeSrc":"29885:3:125","nodeType":"YulIdentifier","src":"29885:3:125"}]}]},"name":"negate_t_int256","nativeSrc":"29775:136:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"29800:5:125","nodeType":"YulTypedName","src":"29800:5:125","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"29810:3:125","nodeType":"YulTypedName","src":"29810:3:125","type":""}],"src":"29775:136:125"},{"body":{"nativeSrc":"29965:79:125","nodeType":"YulBlock","src":"29965:79:125","statements":[{"nativeSrc":"29975:17:125","nodeType":"YulAssignment","src":"29975:17:125","value":{"arguments":[{"name":"x","nativeSrc":"29987:1:125","nodeType":"YulIdentifier","src":"29987:1:125"},{"name":"y","nativeSrc":"29990:1:125","nodeType":"YulIdentifier","src":"29990:1:125"}],"functionName":{"name":"sub","nativeSrc":"29983:3:125","nodeType":"YulIdentifier","src":"29983:3:125"},"nativeSrc":"29983:9:125","nodeType":"YulFunctionCall","src":"29983:9:125"},"variableNames":[{"name":"diff","nativeSrc":"29975:4:125","nodeType":"YulIdentifier","src":"29975:4:125"}]},{"body":{"nativeSrc":"30016:22:125","nodeType":"YulBlock","src":"30016:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"30018:16:125","nodeType":"YulIdentifier","src":"30018:16:125"},"nativeSrc":"30018:18:125","nodeType":"YulFunctionCall","src":"30018:18:125"},"nativeSrc":"30018:18:125","nodeType":"YulExpressionStatement","src":"30018:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"30007:4:125","nodeType":"YulIdentifier","src":"30007:4:125"},{"name":"x","nativeSrc":"30013:1:125","nodeType":"YulIdentifier","src":"30013:1:125"}],"functionName":{"name":"gt","nativeSrc":"30004:2:125","nodeType":"YulIdentifier","src":"30004:2:125"},"nativeSrc":"30004:11:125","nodeType":"YulFunctionCall","src":"30004:11:125"},"nativeSrc":"30001:37:125","nodeType":"YulIf","src":"30001:37:125"}]},"name":"checked_sub_t_uint256","nativeSrc":"29916:128:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"29947:1:125","nodeType":"YulTypedName","src":"29947:1:125","type":""},{"name":"y","nativeSrc":"29950:1:125","nodeType":"YulTypedName","src":"29950:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"29956:4:125","nodeType":"YulTypedName","src":"29956:4:125","type":""}],"src":"29916:128:125"},{"body":{"nativeSrc":"30104:325:125","nodeType":"YulBlock","src":"30104:325:125","statements":[{"nativeSrc":"30114:22:125","nodeType":"YulAssignment","src":"30114:22:125","value":{"arguments":[{"kind":"number","nativeSrc":"30128:1:125","nodeType":"YulLiteral","src":"30128:1:125","type":"","value":"1"},{"name":"data","nativeSrc":"30131:4:125","nodeType":"YulIdentifier","src":"30131:4:125"}],"functionName":{"name":"shr","nativeSrc":"30124:3:125","nodeType":"YulIdentifier","src":"30124:3:125"},"nativeSrc":"30124:12:125","nodeType":"YulFunctionCall","src":"30124:12:125"},"variableNames":[{"name":"length","nativeSrc":"30114:6:125","nodeType":"YulIdentifier","src":"30114:6:125"}]},{"nativeSrc":"30145:38:125","nodeType":"YulVariableDeclaration","src":"30145:38:125","value":{"arguments":[{"name":"data","nativeSrc":"30175:4:125","nodeType":"YulIdentifier","src":"30175:4:125"},{"kind":"number","nativeSrc":"30181:1:125","nodeType":"YulLiteral","src":"30181:1:125","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"30171:3:125","nodeType":"YulIdentifier","src":"30171:3:125"},"nativeSrc":"30171:12:125","nodeType":"YulFunctionCall","src":"30171:12:125"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"30149:18:125","nodeType":"YulTypedName","src":"30149:18:125","type":""}]},{"body":{"nativeSrc":"30222:31:125","nodeType":"YulBlock","src":"30222:31:125","statements":[{"nativeSrc":"30224:27:125","nodeType":"YulAssignment","src":"30224:27:125","value":{"arguments":[{"name":"length","nativeSrc":"30238:6:125","nodeType":"YulIdentifier","src":"30238:6:125"},{"kind":"number","nativeSrc":"30246:4:125","nodeType":"YulLiteral","src":"30246:4:125","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"30234:3:125","nodeType":"YulIdentifier","src":"30234:3:125"},"nativeSrc":"30234:17:125","nodeType":"YulFunctionCall","src":"30234:17:125"},"variableNames":[{"name":"length","nativeSrc":"30224:6:125","nodeType":"YulIdentifier","src":"30224:6:125"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"30202:18:125","nodeType":"YulIdentifier","src":"30202:18:125"}],"functionName":{"name":"iszero","nativeSrc":"30195:6:125","nodeType":"YulIdentifier","src":"30195:6:125"},"nativeSrc":"30195:26:125","nodeType":"YulFunctionCall","src":"30195:26:125"},"nativeSrc":"30192:61:125","nodeType":"YulIf","src":"30192:61:125"},{"body":{"nativeSrc":"30312:111:125","nodeType":"YulBlock","src":"30312:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"30333:1:125","nodeType":"YulLiteral","src":"30333:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"30340:3:125","nodeType":"YulLiteral","src":"30340:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"30345:10:125","nodeType":"YulLiteral","src":"30345:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"30336:3:125","nodeType":"YulIdentifier","src":"30336:3:125"},"nativeSrc":"30336:20:125","nodeType":"YulFunctionCall","src":"30336:20:125"}],"functionName":{"name":"mstore","nativeSrc":"30326:6:125","nodeType":"YulIdentifier","src":"30326:6:125"},"nativeSrc":"30326:31:125","nodeType":"YulFunctionCall","src":"30326:31:125"},"nativeSrc":"30326:31:125","nodeType":"YulExpressionStatement","src":"30326:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"30377:1:125","nodeType":"YulLiteral","src":"30377:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"30380:4:125","nodeType":"YulLiteral","src":"30380:4:125","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"30370:6:125","nodeType":"YulIdentifier","src":"30370:6:125"},"nativeSrc":"30370:15:125","nodeType":"YulFunctionCall","src":"30370:15:125"},"nativeSrc":"30370:15:125","nodeType":"YulExpressionStatement","src":"30370:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"30405:1:125","nodeType":"YulLiteral","src":"30405:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"30408:4:125","nodeType":"YulLiteral","src":"30408:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"30398:6:125","nodeType":"YulIdentifier","src":"30398:6:125"},"nativeSrc":"30398:15:125","nodeType":"YulFunctionCall","src":"30398:15:125"},"nativeSrc":"30398:15:125","nodeType":"YulExpressionStatement","src":"30398:15:125"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"30268:18:125","nodeType":"YulIdentifier","src":"30268:18:125"},{"arguments":[{"name":"length","nativeSrc":"30291:6:125","nodeType":"YulIdentifier","src":"30291:6:125"},{"kind":"number","nativeSrc":"30299:2:125","nodeType":"YulLiteral","src":"30299:2:125","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"30288:2:125","nodeType":"YulIdentifier","src":"30288:2:125"},"nativeSrc":"30288:14:125","nodeType":"YulFunctionCall","src":"30288:14:125"}],"functionName":{"name":"eq","nativeSrc":"30265:2:125","nodeType":"YulIdentifier","src":"30265:2:125"},"nativeSrc":"30265:38:125","nodeType":"YulFunctionCall","src":"30265:38:125"},"nativeSrc":"30262:161:125","nodeType":"YulIf","src":"30262:161:125"}]},"name":"extract_byte_array_length","nativeSrc":"30049:380:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"30084:4:125","nodeType":"YulTypedName","src":"30084:4:125","type":""}],"returnVariables":[{"name":"length","nativeSrc":"30093:6:125","nodeType":"YulTypedName","src":"30093:6:125","type":""}],"src":"30049:380:125"},{"body":{"nativeSrc":"30542:101:125","nodeType":"YulBlock","src":"30542:101:125","statements":[{"nativeSrc":"30552:26:125","nodeType":"YulAssignment","src":"30552:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"30564:9:125","nodeType":"YulIdentifier","src":"30564:9:125"},{"kind":"number","nativeSrc":"30575:2:125","nodeType":"YulLiteral","src":"30575:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30560:3:125","nodeType":"YulIdentifier","src":"30560:3:125"},"nativeSrc":"30560:18:125","nodeType":"YulFunctionCall","src":"30560:18:125"},"variableNames":[{"name":"tail","nativeSrc":"30552:4:125","nodeType":"YulIdentifier","src":"30552:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30594:9:125","nodeType":"YulIdentifier","src":"30594:9:125"},{"arguments":[{"name":"value0","nativeSrc":"30609:6:125","nodeType":"YulIdentifier","src":"30609:6:125"},{"kind":"number","nativeSrc":"30617:18:125","nodeType":"YulLiteral","src":"30617:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"30605:3:125","nodeType":"YulIdentifier","src":"30605:3:125"},"nativeSrc":"30605:31:125","nodeType":"YulFunctionCall","src":"30605:31:125"}],"functionName":{"name":"mstore","nativeSrc":"30587:6:125","nodeType":"YulIdentifier","src":"30587:6:125"},"nativeSrc":"30587:50:125","nodeType":"YulFunctionCall","src":"30587:50:125"},"nativeSrc":"30587:50:125","nodeType":"YulExpressionStatement","src":"30587:50:125"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"30434:209:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30511:9:125","nodeType":"YulTypedName","src":"30511:9:125","type":""},{"name":"value0","nativeSrc":"30522:6:125","nodeType":"YulTypedName","src":"30522:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30533:4:125","nodeType":"YulTypedName","src":"30533:4:125","type":""}],"src":"30434:209:125"},{"body":{"nativeSrc":"30793:167:125","nodeType":"YulBlock","src":"30793:167:125","statements":[{"nativeSrc":"30803:26:125","nodeType":"YulAssignment","src":"30803:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"30815:9:125","nodeType":"YulIdentifier","src":"30815:9:125"},{"kind":"number","nativeSrc":"30826:2:125","nodeType":"YulLiteral","src":"30826:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30811:3:125","nodeType":"YulIdentifier","src":"30811:3:125"},"nativeSrc":"30811:18:125","nodeType":"YulFunctionCall","src":"30811:18:125"},"variableNames":[{"name":"tail","nativeSrc":"30803:4:125","nodeType":"YulIdentifier","src":"30803:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30845:9:125","nodeType":"YulIdentifier","src":"30845:9:125"},{"arguments":[{"name":"value0","nativeSrc":"30860:6:125","nodeType":"YulIdentifier","src":"30860:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30876:3:125","nodeType":"YulLiteral","src":"30876:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"30881:1:125","nodeType":"YulLiteral","src":"30881:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"30872:3:125","nodeType":"YulIdentifier","src":"30872:3:125"},"nativeSrc":"30872:11:125","nodeType":"YulFunctionCall","src":"30872:11:125"},{"kind":"number","nativeSrc":"30885:1:125","nodeType":"YulLiteral","src":"30885:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"30868:3:125","nodeType":"YulIdentifier","src":"30868:3:125"},"nativeSrc":"30868:19:125","nodeType":"YulFunctionCall","src":"30868:19:125"}],"functionName":{"name":"and","nativeSrc":"30856:3:125","nodeType":"YulIdentifier","src":"30856:3:125"},"nativeSrc":"30856:32:125","nodeType":"YulFunctionCall","src":"30856:32:125"}],"functionName":{"name":"mstore","nativeSrc":"30838:6:125","nodeType":"YulIdentifier","src":"30838:6:125"},"nativeSrc":"30838:51:125","nodeType":"YulFunctionCall","src":"30838:51:125"},"nativeSrc":"30838:51:125","nodeType":"YulExpressionStatement","src":"30838:51:125"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"30927:6:125","nodeType":"YulIdentifier","src":"30927:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"30939:9:125","nodeType":"YulIdentifier","src":"30939:9:125"},{"kind":"number","nativeSrc":"30950:2:125","nodeType":"YulLiteral","src":"30950:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30935:3:125","nodeType":"YulIdentifier","src":"30935:3:125"},"nativeSrc":"30935:18:125","nodeType":"YulFunctionCall","src":"30935:18:125"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"30898:28:125","nodeType":"YulIdentifier","src":"30898:28:125"},"nativeSrc":"30898:56:125","nodeType":"YulFunctionCall","src":"30898:56:125"},"nativeSrc":"30898:56:125","nodeType":"YulExpressionStatement","src":"30898:56:125"}]},"name":"abi_encode_tuple_t_address_t_enum$_TargetStatus_$38330__to_t_address_t_uint8__fromStack_reversed","nativeSrc":"30648:312:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30754:9:125","nodeType":"YulTypedName","src":"30754:9:125","type":""},{"name":"value1","nativeSrc":"30765:6:125","nodeType":"YulTypedName","src":"30765:6:125","type":""},{"name":"value0","nativeSrc":"30773:6:125","nodeType":"YulTypedName","src":"30773:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30784:4:125","nodeType":"YulTypedName","src":"30784:4:125","type":""}],"src":"30648:312:125"},{"body":{"nativeSrc":"31031:200:125","nodeType":"YulBlock","src":"31031:200:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"31048:3:125","nodeType":"YulIdentifier","src":"31048:3:125"},{"name":"length","nativeSrc":"31053:6:125","nodeType":"YulIdentifier","src":"31053:6:125"}],"functionName":{"name":"mstore","nativeSrc":"31041:6:125","nodeType":"YulIdentifier","src":"31041:6:125"},"nativeSrc":"31041:19:125","nodeType":"YulFunctionCall","src":"31041:19:125"},"nativeSrc":"31041:19:125","nodeType":"YulExpressionStatement","src":"31041:19:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31086:3:125","nodeType":"YulIdentifier","src":"31086:3:125"},{"kind":"number","nativeSrc":"31091:4:125","nodeType":"YulLiteral","src":"31091:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"31082:3:125","nodeType":"YulIdentifier","src":"31082:3:125"},"nativeSrc":"31082:14:125","nodeType":"YulFunctionCall","src":"31082:14:125"},{"name":"start","nativeSrc":"31098:5:125","nodeType":"YulIdentifier","src":"31098:5:125"},{"name":"length","nativeSrc":"31105:6:125","nodeType":"YulIdentifier","src":"31105:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"31069:12:125","nodeType":"YulIdentifier","src":"31069:12:125"},"nativeSrc":"31069:43:125","nodeType":"YulFunctionCall","src":"31069:43:125"},"nativeSrc":"31069:43:125","nodeType":"YulExpressionStatement","src":"31069:43:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31136:3:125","nodeType":"YulIdentifier","src":"31136:3:125"},{"name":"length","nativeSrc":"31141:6:125","nodeType":"YulIdentifier","src":"31141:6:125"}],"functionName":{"name":"add","nativeSrc":"31132:3:125","nodeType":"YulIdentifier","src":"31132:3:125"},"nativeSrc":"31132:16:125","nodeType":"YulFunctionCall","src":"31132:16:125"},{"kind":"number","nativeSrc":"31150:4:125","nodeType":"YulLiteral","src":"31150:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"31128:3:125","nodeType":"YulIdentifier","src":"31128:3:125"},"nativeSrc":"31128:27:125","nodeType":"YulFunctionCall","src":"31128:27:125"},{"kind":"number","nativeSrc":"31157:1:125","nodeType":"YulLiteral","src":"31157:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"31121:6:125","nodeType":"YulIdentifier","src":"31121:6:125"},"nativeSrc":"31121:38:125","nodeType":"YulFunctionCall","src":"31121:38:125"},"nativeSrc":"31121:38:125","nodeType":"YulExpressionStatement","src":"31121:38:125"},{"nativeSrc":"31168:57:125","nodeType":"YulAssignment","src":"31168:57:125","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"31183:3:125","nodeType":"YulIdentifier","src":"31183:3:125"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"31196:6:125","nodeType":"YulIdentifier","src":"31196:6:125"},{"kind":"number","nativeSrc":"31204:2:125","nodeType":"YulLiteral","src":"31204:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"31192:3:125","nodeType":"YulIdentifier","src":"31192:3:125"},"nativeSrc":"31192:15:125","nodeType":"YulFunctionCall","src":"31192:15:125"},{"arguments":[{"kind":"number","nativeSrc":"31213:2:125","nodeType":"YulLiteral","src":"31213:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"31209:3:125","nodeType":"YulIdentifier","src":"31209:3:125"},"nativeSrc":"31209:7:125","nodeType":"YulFunctionCall","src":"31209:7:125"}],"functionName":{"name":"and","nativeSrc":"31188:3:125","nodeType":"YulIdentifier","src":"31188:3:125"},"nativeSrc":"31188:29:125","nodeType":"YulFunctionCall","src":"31188:29:125"}],"functionName":{"name":"add","nativeSrc":"31179:3:125","nodeType":"YulIdentifier","src":"31179:3:125"},"nativeSrc":"31179:39:125","nodeType":"YulFunctionCall","src":"31179:39:125"},{"kind":"number","nativeSrc":"31220:4:125","nodeType":"YulLiteral","src":"31220:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"31175:3:125","nodeType":"YulIdentifier","src":"31175:3:125"},"nativeSrc":"31175:50:125","nodeType":"YulFunctionCall","src":"31175:50:125"},"variableNames":[{"name":"end","nativeSrc":"31168:3:125","nodeType":"YulIdentifier","src":"31168:3:125"}]}]},"name":"abi_encode_bytes_calldata","nativeSrc":"30965:266:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nativeSrc":"31000:5:125","nodeType":"YulTypedName","src":"31000:5:125","type":""},{"name":"length","nativeSrc":"31007:6:125","nodeType":"YulTypedName","src":"31007:6:125","type":""},{"name":"pos","nativeSrc":"31015:3:125","nodeType":"YulTypedName","src":"31015:3:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"31023:3:125","nodeType":"YulTypedName","src":"31023:3:125","type":""}],"src":"30965:266:125"},{"body":{"nativeSrc":"31445:1108:125","nodeType":"YulBlock","src":"31445:1108:125","statements":[{"nativeSrc":"31455:32:125","nodeType":"YulVariableDeclaration","src":"31455:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"31473:9:125","nodeType":"YulIdentifier","src":"31473:9:125"},{"kind":"number","nativeSrc":"31484:2:125","nodeType":"YulLiteral","src":"31484:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31469:3:125","nodeType":"YulIdentifier","src":"31469:3:125"},"nativeSrc":"31469:18:125","nodeType":"YulFunctionCall","src":"31469:18:125"},"variables":[{"name":"tail_1","nativeSrc":"31459:6:125","nodeType":"YulTypedName","src":"31459:6:125","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31503:9:125","nodeType":"YulIdentifier","src":"31503:9:125"},{"kind":"number","nativeSrc":"31514:2:125","nodeType":"YulLiteral","src":"31514:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"31496:6:125","nodeType":"YulIdentifier","src":"31496:6:125"},"nativeSrc":"31496:21:125","nodeType":"YulFunctionCall","src":"31496:21:125"},"nativeSrc":"31496:21:125","nodeType":"YulExpressionStatement","src":"31496:21:125"},{"nativeSrc":"31526:17:125","nodeType":"YulVariableDeclaration","src":"31526:17:125","value":{"name":"tail_1","nativeSrc":"31537:6:125","nodeType":"YulIdentifier","src":"31537:6:125"},"variables":[{"name":"pos","nativeSrc":"31530:3:125","nodeType":"YulTypedName","src":"31530:3:125","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"31559:6:125","nodeType":"YulIdentifier","src":"31559:6:125"},{"name":"value1","nativeSrc":"31567:6:125","nodeType":"YulIdentifier","src":"31567:6:125"}],"functionName":{"name":"mstore","nativeSrc":"31552:6:125","nodeType":"YulIdentifier","src":"31552:6:125"},"nativeSrc":"31552:22:125","nodeType":"YulFunctionCall","src":"31552:22:125"},"nativeSrc":"31552:22:125","nodeType":"YulExpressionStatement","src":"31552:22:125"},{"nativeSrc":"31583:25:125","nodeType":"YulAssignment","src":"31583:25:125","value":{"arguments":[{"name":"headStart","nativeSrc":"31594:9:125","nodeType":"YulIdentifier","src":"31594:9:125"},{"kind":"number","nativeSrc":"31605:2:125","nodeType":"YulLiteral","src":"31605:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"31590:3:125","nodeType":"YulIdentifier","src":"31590:3:125"},"nativeSrc":"31590:18:125","nodeType":"YulFunctionCall","src":"31590:18:125"},"variableNames":[{"name":"pos","nativeSrc":"31583:3:125","nodeType":"YulIdentifier","src":"31583:3:125"}]},{"nativeSrc":"31617:53:125","nodeType":"YulVariableDeclaration","src":"31617:53:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31639:9:125","nodeType":"YulIdentifier","src":"31639:9:125"},{"arguments":[{"kind":"number","nativeSrc":"31654:1:125","nodeType":"YulLiteral","src":"31654:1:125","type":"","value":"5"},{"name":"value1","nativeSrc":"31657:6:125","nodeType":"YulIdentifier","src":"31657:6:125"}],"functionName":{"name":"shl","nativeSrc":"31650:3:125","nodeType":"YulIdentifier","src":"31650:3:125"},"nativeSrc":"31650:14:125","nodeType":"YulFunctionCall","src":"31650:14:125"}],"functionName":{"name":"add","nativeSrc":"31635:3:125","nodeType":"YulIdentifier","src":"31635:3:125"},"nativeSrc":"31635:30:125","nodeType":"YulFunctionCall","src":"31635:30:125"},{"kind":"number","nativeSrc":"31667:2:125","nodeType":"YulLiteral","src":"31667:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"31631:3:125","nodeType":"YulIdentifier","src":"31631:3:125"},"nativeSrc":"31631:39:125","nodeType":"YulFunctionCall","src":"31631:39:125"},"variables":[{"name":"tail_2","nativeSrc":"31621:6:125","nodeType":"YulTypedName","src":"31621:6:125","type":""}]},{"nativeSrc":"31679:20:125","nodeType":"YulVariableDeclaration","src":"31679:20:125","value":{"name":"value0","nativeSrc":"31693:6:125","nodeType":"YulIdentifier","src":"31693:6:125"},"variables":[{"name":"srcPtr","nativeSrc":"31683:6:125","nodeType":"YulTypedName","src":"31683:6:125","type":""}]},{"nativeSrc":"31708:10:125","nodeType":"YulVariableDeclaration","src":"31708:10:125","value":{"kind":"number","nativeSrc":"31717:1:125","nodeType":"YulLiteral","src":"31717:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"31712:1:125","nodeType":"YulTypedName","src":"31712:1:125","type":""}]},{"nativeSrc":"31727:51:125","nodeType":"YulVariableDeclaration","src":"31727:51:125","value":{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"31745:12:125","nodeType":"YulIdentifier","src":"31745:12:125"},"nativeSrc":"31745:14:125","nodeType":"YulFunctionCall","src":"31745:14:125"},{"name":"value0","nativeSrc":"31761:6:125","nodeType":"YulIdentifier","src":"31761:6:125"}],"functionName":{"name":"sub","nativeSrc":"31741:3:125","nodeType":"YulIdentifier","src":"31741:3:125"},"nativeSrc":"31741:27:125","nodeType":"YulFunctionCall","src":"31741:27:125"},{"arguments":[{"kind":"number","nativeSrc":"31774:2:125","nodeType":"YulLiteral","src":"31774:2:125","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"31770:3:125","nodeType":"YulIdentifier","src":"31770:3:125"},"nativeSrc":"31770:7:125","nodeType":"YulFunctionCall","src":"31770:7:125"}],"functionName":{"name":"add","nativeSrc":"31737:3:125","nodeType":"YulIdentifier","src":"31737:3:125"},"nativeSrc":"31737:41:125","nodeType":"YulFunctionCall","src":"31737:41:125"},"variables":[{"name":"_1","nativeSrc":"31731:2:125","nodeType":"YulTypedName","src":"31731:2:125","type":""}]},{"body":{"nativeSrc":"31836:631:125","nodeType":"YulBlock","src":"31836:631:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"31857:3:125","nodeType":"YulIdentifier","src":"31857:3:125"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"31870:6:125","nodeType":"YulIdentifier","src":"31870:6:125"},{"name":"headStart","nativeSrc":"31878:9:125","nodeType":"YulIdentifier","src":"31878:9:125"}],"functionName":{"name":"sub","nativeSrc":"31866:3:125","nodeType":"YulIdentifier","src":"31866:3:125"},"nativeSrc":"31866:22:125","nodeType":"YulFunctionCall","src":"31866:22:125"},{"arguments":[{"kind":"number","nativeSrc":"31894:2:125","nodeType":"YulLiteral","src":"31894:2:125","type":"","value":"95"}],"functionName":{"name":"not","nativeSrc":"31890:3:125","nodeType":"YulIdentifier","src":"31890:3:125"},"nativeSrc":"31890:7:125","nodeType":"YulFunctionCall","src":"31890:7:125"}],"functionName":{"name":"add","nativeSrc":"31862:3:125","nodeType":"YulIdentifier","src":"31862:3:125"},"nativeSrc":"31862:36:125","nodeType":"YulFunctionCall","src":"31862:36:125"}],"functionName":{"name":"mstore","nativeSrc":"31850:6:125","nodeType":"YulIdentifier","src":"31850:6:125"},"nativeSrc":"31850:49:125","nodeType":"YulFunctionCall","src":"31850:49:125"},"nativeSrc":"31850:49:125","nodeType":"YulExpressionStatement","src":"31850:49:125"},{"nativeSrc":"31912:46:125","nodeType":"YulVariableDeclaration","src":"31912:46:125","value":{"arguments":[{"name":"srcPtr","nativeSrc":"31951:6:125","nodeType":"YulIdentifier","src":"31951:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"31938:12:125","nodeType":"YulIdentifier","src":"31938:12:125"},"nativeSrc":"31938:20:125","nodeType":"YulFunctionCall","src":"31938:20:125"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"31916:18:125","nodeType":"YulTypedName","src":"31916:18:125","type":""}]},{"body":{"nativeSrc":"32010:16:125","nodeType":"YulBlock","src":"32010:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32019:1:125","nodeType":"YulLiteral","src":"32019:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"32022:1:125","nodeType":"YulLiteral","src":"32022:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"32012:6:125","nodeType":"YulIdentifier","src":"32012:6:125"},"nativeSrc":"32012:12:125","nodeType":"YulFunctionCall","src":"32012:12:125"},"nativeSrc":"32012:12:125","nodeType":"YulExpressionStatement","src":"32012:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"31985:18:125","nodeType":"YulIdentifier","src":"31985:18:125"},{"name":"_1","nativeSrc":"32005:2:125","nodeType":"YulIdentifier","src":"32005:2:125"}],"functionName":{"name":"slt","nativeSrc":"31981:3:125","nodeType":"YulIdentifier","src":"31981:3:125"},"nativeSrc":"31981:27:125","nodeType":"YulFunctionCall","src":"31981:27:125"}],"functionName":{"name":"iszero","nativeSrc":"31974:6:125","nodeType":"YulIdentifier","src":"31974:6:125"},"nativeSrc":"31974:35:125","nodeType":"YulFunctionCall","src":"31974:35:125"},"nativeSrc":"31971:55:125","nodeType":"YulIf","src":"31971:55:125"},{"nativeSrc":"32039:44:125","nodeType":"YulVariableDeclaration","src":"32039:44:125","value":{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"32056:18:125","nodeType":"YulIdentifier","src":"32056:18:125"},{"name":"value0","nativeSrc":"32076:6:125","nodeType":"YulIdentifier","src":"32076:6:125"}],"functionName":{"name":"add","nativeSrc":"32052:3:125","nodeType":"YulIdentifier","src":"32052:3:125"},"nativeSrc":"32052:31:125","nodeType":"YulFunctionCall","src":"32052:31:125"},"variables":[{"name":"value","nativeSrc":"32043:5:125","nodeType":"YulTypedName","src":"32043:5:125","type":""}]},{"nativeSrc":"32096:33:125","nodeType":"YulVariableDeclaration","src":"32096:33:125","value":{"arguments":[{"name":"value","nativeSrc":"32123:5:125","nodeType":"YulIdentifier","src":"32123:5:125"}],"functionName":{"name":"calldataload","nativeSrc":"32110:12:125","nodeType":"YulIdentifier","src":"32110:12:125"},"nativeSrc":"32110:19:125","nodeType":"YulFunctionCall","src":"32110:19:125"},"variables":[{"name":"length","nativeSrc":"32100:6:125","nodeType":"YulTypedName","src":"32100:6:125","type":""}]},{"nativeSrc":"32142:31:125","nodeType":"YulVariableDeclaration","src":"32142:31:125","value":{"arguments":[{"name":"value","nativeSrc":"32161:5:125","nodeType":"YulIdentifier","src":"32161:5:125"},{"kind":"number","nativeSrc":"32168:4:125","nodeType":"YulLiteral","src":"32168:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"32157:3:125","nodeType":"YulIdentifier","src":"32157:3:125"},"nativeSrc":"32157:16:125","nodeType":"YulFunctionCall","src":"32157:16:125"},"variables":[{"name":"value_1","nativeSrc":"32146:7:125","nodeType":"YulTypedName","src":"32146:7:125","type":""}]},{"body":{"nativeSrc":"32220:16:125","nodeType":"YulBlock","src":"32220:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32229:1:125","nodeType":"YulLiteral","src":"32229:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"32232:1:125","nodeType":"YulLiteral","src":"32232:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"32222:6:125","nodeType":"YulIdentifier","src":"32222:6:125"},"nativeSrc":"32222:12:125","nodeType":"YulFunctionCall","src":"32222:12:125"},"nativeSrc":"32222:12:125","nodeType":"YulExpressionStatement","src":"32222:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"32192:6:125","nodeType":"YulIdentifier","src":"32192:6:125"},{"kind":"number","nativeSrc":"32200:18:125","nodeType":"YulLiteral","src":"32200:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"32189:2:125","nodeType":"YulIdentifier","src":"32189:2:125"},"nativeSrc":"32189:30:125","nodeType":"YulFunctionCall","src":"32189:30:125"},"nativeSrc":"32186:50:125","nodeType":"YulIf","src":"32186:50:125"},{"body":{"nativeSrc":"32294:16:125","nodeType":"YulBlock","src":"32294:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32303:1:125","nodeType":"YulLiteral","src":"32303:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"32306:1:125","nodeType":"YulLiteral","src":"32306:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"32296:6:125","nodeType":"YulIdentifier","src":"32296:6:125"},"nativeSrc":"32296:12:125","nodeType":"YulFunctionCall","src":"32296:12:125"},"nativeSrc":"32296:12:125","nodeType":"YulExpressionStatement","src":"32296:12:125"}]},"condition":{"arguments":[{"name":"value_1","nativeSrc":"32256:7:125","nodeType":"YulIdentifier","src":"32256:7:125"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"32269:12:125","nodeType":"YulIdentifier","src":"32269:12:125"},"nativeSrc":"32269:14:125","nodeType":"YulFunctionCall","src":"32269:14:125"},{"name":"length","nativeSrc":"32285:6:125","nodeType":"YulIdentifier","src":"32285:6:125"}],"functionName":{"name":"sub","nativeSrc":"32265:3:125","nodeType":"YulIdentifier","src":"32265:3:125"},"nativeSrc":"32265:27:125","nodeType":"YulFunctionCall","src":"32265:27:125"}],"functionName":{"name":"sgt","nativeSrc":"32252:3:125","nodeType":"YulIdentifier","src":"32252:3:125"},"nativeSrc":"32252:41:125","nodeType":"YulFunctionCall","src":"32252:41:125"},"nativeSrc":"32249:61:125","nodeType":"YulIf","src":"32249:61:125"},{"nativeSrc":"32323:60:125","nodeType":"YulAssignment","src":"32323:60:125","value":{"arguments":[{"name":"value_1","nativeSrc":"32359:7:125","nodeType":"YulIdentifier","src":"32359:7:125"},{"name":"length","nativeSrc":"32368:6:125","nodeType":"YulIdentifier","src":"32368:6:125"},{"name":"tail_2","nativeSrc":"32376:6:125","nodeType":"YulIdentifier","src":"32376:6:125"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"32333:25:125","nodeType":"YulIdentifier","src":"32333:25:125"},"nativeSrc":"32333:50:125","nodeType":"YulFunctionCall","src":"32333:50:125"},"variableNames":[{"name":"tail_2","nativeSrc":"32323:6:125","nodeType":"YulIdentifier","src":"32323:6:125"}]},{"nativeSrc":"32396:27:125","nodeType":"YulAssignment","src":"32396:27:125","value":{"arguments":[{"name":"srcPtr","nativeSrc":"32410:6:125","nodeType":"YulIdentifier","src":"32410:6:125"},{"kind":"number","nativeSrc":"32418:4:125","nodeType":"YulLiteral","src":"32418:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"32406:3:125","nodeType":"YulIdentifier","src":"32406:3:125"},"nativeSrc":"32406:17:125","nodeType":"YulFunctionCall","src":"32406:17:125"},"variableNames":[{"name":"srcPtr","nativeSrc":"32396:6:125","nodeType":"YulIdentifier","src":"32396:6:125"}]},{"nativeSrc":"32436:21:125","nodeType":"YulAssignment","src":"32436:21:125","value":{"arguments":[{"name":"pos","nativeSrc":"32447:3:125","nodeType":"YulIdentifier","src":"32447:3:125"},{"kind":"number","nativeSrc":"32452:4:125","nodeType":"YulLiteral","src":"32452:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"32443:3:125","nodeType":"YulIdentifier","src":"32443:3:125"},"nativeSrc":"32443:14:125","nodeType":"YulFunctionCall","src":"32443:14:125"},"variableNames":[{"name":"pos","nativeSrc":"32436:3:125","nodeType":"YulIdentifier","src":"32436:3:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"31798:1:125","nodeType":"YulIdentifier","src":"31798:1:125"},{"name":"value1","nativeSrc":"31801:6:125","nodeType":"YulIdentifier","src":"31801:6:125"}],"functionName":{"name":"lt","nativeSrc":"31795:2:125","nodeType":"YulIdentifier","src":"31795:2:125"},"nativeSrc":"31795:13:125","nodeType":"YulFunctionCall","src":"31795:13:125"},"nativeSrc":"31787:680:125","nodeType":"YulForLoop","post":{"nativeSrc":"31809:18:125","nodeType":"YulBlock","src":"31809:18:125","statements":[{"nativeSrc":"31811:14:125","nodeType":"YulAssignment","src":"31811:14:125","value":{"arguments":[{"name":"i","nativeSrc":"31820:1:125","nodeType":"YulIdentifier","src":"31820:1:125"},{"kind":"number","nativeSrc":"31823:1:125","nodeType":"YulLiteral","src":"31823:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"31816:3:125","nodeType":"YulIdentifier","src":"31816:3:125"},"nativeSrc":"31816:9:125","nodeType":"YulFunctionCall","src":"31816:9:125"},"variableNames":[{"name":"i","nativeSrc":"31811:1:125","nodeType":"YulIdentifier","src":"31811:1:125"}]}]},"pre":{"nativeSrc":"31791:3:125","nodeType":"YulBlock","src":"31791:3:125","statements":[]},"src":"31787:680:125"},{"nativeSrc":"32476:14:125","nodeType":"YulAssignment","src":"32476:14:125","value":{"name":"tail_2","nativeSrc":"32484:6:125","nodeType":"YulIdentifier","src":"32484:6:125"},"variableNames":[{"name":"tail","nativeSrc":"32476:4:125","nodeType":"YulIdentifier","src":"32476:4:125"}]},{"expression":{"arguments":[{"name":"value2","nativeSrc":"32518:6:125","nodeType":"YulIdentifier","src":"32518:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"32530:9:125","nodeType":"YulIdentifier","src":"32530:9:125"},{"kind":"number","nativeSrc":"32541:4:125","nodeType":"YulLiteral","src":"32541:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"32526:3:125","nodeType":"YulIdentifier","src":"32526:3:125"},"nativeSrc":"32526:20:125","nodeType":"YulFunctionCall","src":"32526:20:125"}],"functionName":{"name":"abi_encode_address","nativeSrc":"32499:18:125","nodeType":"YulIdentifier","src":"32499:18:125"},"nativeSrc":"32499:48:125","nodeType":"YulFunctionCall","src":"32499:48:125"},"nativeSrc":"32499:48:125","nodeType":"YulExpressionStatement","src":"32499:48:125"}]},"name":"abi_encode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr_t_address__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_t_address__fromStack_reversed","nativeSrc":"31236:1317:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31398:9:125","nodeType":"YulTypedName","src":"31398:9:125","type":""},{"name":"value2","nativeSrc":"31409:6:125","nodeType":"YulTypedName","src":"31409:6:125","type":""},{"name":"value1","nativeSrc":"31417:6:125","nodeType":"YulTypedName","src":"31417:6:125","type":""},{"name":"value0","nativeSrc":"31425:6:125","nodeType":"YulTypedName","src":"31425:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31436:4:125","nodeType":"YulTypedName","src":"31436:4:125","type":""}],"src":"31236:1317:125"},{"body":{"nativeSrc":"32683:153:125","nodeType":"YulBlock","src":"32683:153:125","statements":[{"nativeSrc":"32693:26:125","nodeType":"YulAssignment","src":"32693:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"32705:9:125","nodeType":"YulIdentifier","src":"32705:9:125"},{"kind":"number","nativeSrc":"32716:2:125","nodeType":"YulLiteral","src":"32716:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"32701:3:125","nodeType":"YulIdentifier","src":"32701:3:125"},"nativeSrc":"32701:18:125","nodeType":"YulFunctionCall","src":"32701:18:125"},"variableNames":[{"name":"tail","nativeSrc":"32693:4:125","nodeType":"YulIdentifier","src":"32693:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"32735:9:125","nodeType":"YulIdentifier","src":"32735:9:125"},{"arguments":[{"name":"value0","nativeSrc":"32750:6:125","nodeType":"YulIdentifier","src":"32750:6:125"},{"kind":"number","nativeSrc":"32758:10:125","nodeType":"YulLiteral","src":"32758:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"32746:3:125","nodeType":"YulIdentifier","src":"32746:3:125"},"nativeSrc":"32746:23:125","nodeType":"YulFunctionCall","src":"32746:23:125"}],"functionName":{"name":"mstore","nativeSrc":"32728:6:125","nodeType":"YulIdentifier","src":"32728:6:125"},"nativeSrc":"32728:42:125","nodeType":"YulFunctionCall","src":"32728:42:125"},"nativeSrc":"32728:42:125","nodeType":"YulExpressionStatement","src":"32728:42:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32790:9:125","nodeType":"YulIdentifier","src":"32790:9:125"},{"kind":"number","nativeSrc":"32801:2:125","nodeType":"YulLiteral","src":"32801:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32786:3:125","nodeType":"YulIdentifier","src":"32786:3:125"},"nativeSrc":"32786:18:125","nodeType":"YulFunctionCall","src":"32786:18:125"},{"arguments":[{"name":"value1","nativeSrc":"32810:6:125","nodeType":"YulIdentifier","src":"32810:6:125"},{"kind":"number","nativeSrc":"32818:10:125","nodeType":"YulLiteral","src":"32818:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"32806:3:125","nodeType":"YulIdentifier","src":"32806:3:125"},"nativeSrc":"32806:23:125","nodeType":"YulFunctionCall","src":"32806:23:125"}],"functionName":{"name":"mstore","nativeSrc":"32779:6:125","nodeType":"YulIdentifier","src":"32779:6:125"},"nativeSrc":"32779:51:125","nodeType":"YulFunctionCall","src":"32779:51:125"},"nativeSrc":"32779:51:125","nodeType":"YulExpressionStatement","src":"32779:51:125"}]},"name":"abi_encode_tuple_t_uint32_t_uint32__to_t_uint32_t_uint32__fromStack_reversed","nativeSrc":"32558:278:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32644:9:125","nodeType":"YulTypedName","src":"32644:9:125","type":""},{"name":"value1","nativeSrc":"32655:6:125","nodeType":"YulTypedName","src":"32655:6:125","type":""},{"name":"value0","nativeSrc":"32663:6:125","nodeType":"YulTypedName","src":"32663:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"32674:4:125","nodeType":"YulTypedName","src":"32674:4:125","type":""}],"src":"32558:278:125"},{"body":{"nativeSrc":"32968:119:125","nodeType":"YulBlock","src":"32968:119:125","statements":[{"nativeSrc":"32978:26:125","nodeType":"YulAssignment","src":"32978:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"32990:9:125","nodeType":"YulIdentifier","src":"32990:9:125"},{"kind":"number","nativeSrc":"33001:2:125","nodeType":"YulLiteral","src":"33001:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"32986:3:125","nodeType":"YulIdentifier","src":"32986:3:125"},"nativeSrc":"32986:18:125","nodeType":"YulFunctionCall","src":"32986:18:125"},"variableNames":[{"name":"tail","nativeSrc":"32978:4:125","nodeType":"YulIdentifier","src":"32978:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"33020:9:125","nodeType":"YulIdentifier","src":"33020:9:125"},{"name":"value0","nativeSrc":"33031:6:125","nodeType":"YulIdentifier","src":"33031:6:125"}],"functionName":{"name":"mstore","nativeSrc":"33013:6:125","nodeType":"YulIdentifier","src":"33013:6:125"},"nativeSrc":"33013:25:125","nodeType":"YulFunctionCall","src":"33013:25:125"},"nativeSrc":"33013:25:125","nodeType":"YulExpressionStatement","src":"33013:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33058:9:125","nodeType":"YulIdentifier","src":"33058:9:125"},{"kind":"number","nativeSrc":"33069:2:125","nodeType":"YulLiteral","src":"33069:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"33054:3:125","nodeType":"YulIdentifier","src":"33054:3:125"},"nativeSrc":"33054:18:125","nodeType":"YulFunctionCall","src":"33054:18:125"},{"name":"value1","nativeSrc":"33074:6:125","nodeType":"YulIdentifier","src":"33074:6:125"}],"functionName":{"name":"mstore","nativeSrc":"33047:6:125","nodeType":"YulIdentifier","src":"33047:6:125"},"nativeSrc":"33047:34:125","nodeType":"YulFunctionCall","src":"33047:34:125"},"nativeSrc":"33047:34:125","nodeType":"YulExpressionStatement","src":"33047:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__fromStack_reversed","nativeSrc":"32841:246:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32929:9:125","nodeType":"YulTypedName","src":"32929:9:125","type":""},{"name":"value1","nativeSrc":"32940:6:125","nodeType":"YulTypedName","src":"32940:6:125","type":""},{"name":"value0","nativeSrc":"32948:6:125","nodeType":"YulTypedName","src":"32948:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"32959:4:125","nodeType":"YulTypedName","src":"32959:4:125","type":""}],"src":"32841:246:125"},{"body":{"nativeSrc":"33299:310:125","nodeType":"YulBlock","src":"33299:310:125","statements":[{"nativeSrc":"33309:27:125","nodeType":"YulAssignment","src":"33309:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"33321:9:125","nodeType":"YulIdentifier","src":"33321:9:125"},{"kind":"number","nativeSrc":"33332:3:125","nodeType":"YulLiteral","src":"33332:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"33317:3:125","nodeType":"YulIdentifier","src":"33317:3:125"},"nativeSrc":"33317:19:125","nodeType":"YulFunctionCall","src":"33317:19:125"},"variableNames":[{"name":"tail","nativeSrc":"33309:4:125","nodeType":"YulIdentifier","src":"33309:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"33352:9:125","nodeType":"YulIdentifier","src":"33352:9:125"},{"arguments":[{"name":"value0","nativeSrc":"33367:6:125","nodeType":"YulIdentifier","src":"33367:6:125"},{"kind":"number","nativeSrc":"33375:10:125","nodeType":"YulLiteral","src":"33375:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"33363:3:125","nodeType":"YulIdentifier","src":"33363:3:125"},"nativeSrc":"33363:23:125","nodeType":"YulFunctionCall","src":"33363:23:125"}],"functionName":{"name":"mstore","nativeSrc":"33345:6:125","nodeType":"YulIdentifier","src":"33345:6:125"},"nativeSrc":"33345:42:125","nodeType":"YulFunctionCall","src":"33345:42:125"},"nativeSrc":"33345:42:125","nodeType":"YulExpressionStatement","src":"33345:42:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33407:9:125","nodeType":"YulIdentifier","src":"33407:9:125"},{"kind":"number","nativeSrc":"33418:2:125","nodeType":"YulLiteral","src":"33418:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"33403:3:125","nodeType":"YulIdentifier","src":"33403:3:125"},"nativeSrc":"33403:18:125","nodeType":"YulFunctionCall","src":"33403:18:125"},{"arguments":[{"name":"value1","nativeSrc":"33427:6:125","nodeType":"YulIdentifier","src":"33427:6:125"},{"kind":"number","nativeSrc":"33435:10:125","nodeType":"YulLiteral","src":"33435:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"33423:3:125","nodeType":"YulIdentifier","src":"33423:3:125"},"nativeSrc":"33423:23:125","nodeType":"YulFunctionCall","src":"33423:23:125"}],"functionName":{"name":"mstore","nativeSrc":"33396:6:125","nodeType":"YulIdentifier","src":"33396:6:125"},"nativeSrc":"33396:51:125","nodeType":"YulFunctionCall","src":"33396:51:125"},"nativeSrc":"33396:51:125","nodeType":"YulExpressionStatement","src":"33396:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33467:9:125","nodeType":"YulIdentifier","src":"33467:9:125"},{"kind":"number","nativeSrc":"33478:2:125","nodeType":"YulLiteral","src":"33478:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"33463:3:125","nodeType":"YulIdentifier","src":"33463:3:125"},"nativeSrc":"33463:18:125","nodeType":"YulFunctionCall","src":"33463:18:125"},{"name":"value2","nativeSrc":"33483:6:125","nodeType":"YulIdentifier","src":"33483:6:125"}],"functionName":{"name":"mstore","nativeSrc":"33456:6:125","nodeType":"YulIdentifier","src":"33456:6:125"},"nativeSrc":"33456:34:125","nodeType":"YulFunctionCall","src":"33456:34:125"},"nativeSrc":"33456:34:125","nodeType":"YulExpressionStatement","src":"33456:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33510:9:125","nodeType":"YulIdentifier","src":"33510:9:125"},{"kind":"number","nativeSrc":"33521:2:125","nodeType":"YulLiteral","src":"33521:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"33506:3:125","nodeType":"YulIdentifier","src":"33506:3:125"},"nativeSrc":"33506:18:125","nodeType":"YulFunctionCall","src":"33506:18:125"},{"name":"value3","nativeSrc":"33526:6:125","nodeType":"YulIdentifier","src":"33526:6:125"}],"functionName":{"name":"mstore","nativeSrc":"33499:6:125","nodeType":"YulIdentifier","src":"33499:6:125"},"nativeSrc":"33499:34:125","nodeType":"YulFunctionCall","src":"33499:34:125"},"nativeSrc":"33499:34:125","nodeType":"YulExpressionStatement","src":"33499:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33553:9:125","nodeType":"YulIdentifier","src":"33553:9:125"},{"kind":"number","nativeSrc":"33564:3:125","nodeType":"YulLiteral","src":"33564:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"33549:3:125","nodeType":"YulIdentifier","src":"33549:3:125"},"nativeSrc":"33549:19:125","nodeType":"YulFunctionCall","src":"33549:19:125"},{"arguments":[{"name":"value4","nativeSrc":"33574:6:125","nodeType":"YulIdentifier","src":"33574:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"33590:3:125","nodeType":"YulLiteral","src":"33590:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"33595:1:125","nodeType":"YulLiteral","src":"33595:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"33586:3:125","nodeType":"YulIdentifier","src":"33586:3:125"},"nativeSrc":"33586:11:125","nodeType":"YulFunctionCall","src":"33586:11:125"},{"kind":"number","nativeSrc":"33599:1:125","nodeType":"YulLiteral","src":"33599:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"33582:3:125","nodeType":"YulIdentifier","src":"33582:3:125"},"nativeSrc":"33582:19:125","nodeType":"YulFunctionCall","src":"33582:19:125"}],"functionName":{"name":"and","nativeSrc":"33570:3:125","nodeType":"YulIdentifier","src":"33570:3:125"},"nativeSrc":"33570:32:125","nodeType":"YulFunctionCall","src":"33570:32:125"}],"functionName":{"name":"mstore","nativeSrc":"33542:6:125","nodeType":"YulIdentifier","src":"33542:6:125"},"nativeSrc":"33542:61:125","nodeType":"YulFunctionCall","src":"33542:61:125"},"nativeSrc":"33542:61:125","nodeType":"YulExpressionStatement","src":"33542:61:125"}]},"name":"abi_encode_tuple_t_uint32_t_uint32_t_uint256_t_int256_t_address__to_t_uint32_t_uint32_t_uint256_t_int256_t_address__fromStack_reversed","nativeSrc":"33092:517:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"33236:9:125","nodeType":"YulTypedName","src":"33236:9:125","type":""},{"name":"value4","nativeSrc":"33247:6:125","nodeType":"YulTypedName","src":"33247:6:125","type":""},{"name":"value3","nativeSrc":"33255:6:125","nodeType":"YulTypedName","src":"33255:6:125","type":""},{"name":"value2","nativeSrc":"33263:6:125","nodeType":"YulTypedName","src":"33263:6:125","type":""},{"name":"value1","nativeSrc":"33271:6:125","nodeType":"YulTypedName","src":"33271:6:125","type":""},{"name":"value0","nativeSrc":"33279:6:125","nodeType":"YulTypedName","src":"33279:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"33290:4:125","nodeType":"YulTypedName","src":"33290:4:125","type":""}],"src":"33092:517:125"},{"body":{"nativeSrc":"33660:102:125","nodeType":"YulBlock","src":"33660:102:125","statements":[{"nativeSrc":"33670:38:125","nodeType":"YulAssignment","src":"33670:38:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"33685:1:125","nodeType":"YulIdentifier","src":"33685:1:125"},{"kind":"number","nativeSrc":"33688:4:125","nodeType":"YulLiteral","src":"33688:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"33681:3:125","nodeType":"YulIdentifier","src":"33681:3:125"},"nativeSrc":"33681:12:125","nodeType":"YulFunctionCall","src":"33681:12:125"},{"arguments":[{"name":"y","nativeSrc":"33699:1:125","nodeType":"YulIdentifier","src":"33699:1:125"},{"kind":"number","nativeSrc":"33702:4:125","nodeType":"YulLiteral","src":"33702:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"33695:3:125","nodeType":"YulIdentifier","src":"33695:3:125"},"nativeSrc":"33695:12:125","nodeType":"YulFunctionCall","src":"33695:12:125"}],"functionName":{"name":"add","nativeSrc":"33677:3:125","nodeType":"YulIdentifier","src":"33677:3:125"},"nativeSrc":"33677:31:125","nodeType":"YulFunctionCall","src":"33677:31:125"},"variableNames":[{"name":"sum","nativeSrc":"33670:3:125","nodeType":"YulIdentifier","src":"33670:3:125"}]},{"body":{"nativeSrc":"33734:22:125","nodeType":"YulBlock","src":"33734:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"33736:16:125","nodeType":"YulIdentifier","src":"33736:16:125"},"nativeSrc":"33736:18:125","nodeType":"YulFunctionCall","src":"33736:18:125"},"nativeSrc":"33736:18:125","nodeType":"YulExpressionStatement","src":"33736:18:125"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"33723:3:125","nodeType":"YulIdentifier","src":"33723:3:125"},{"kind":"number","nativeSrc":"33728:4:125","nodeType":"YulLiteral","src":"33728:4:125","type":"","value":"0xff"}],"functionName":{"name":"gt","nativeSrc":"33720:2:125","nodeType":"YulIdentifier","src":"33720:2:125"},"nativeSrc":"33720:13:125","nodeType":"YulFunctionCall","src":"33720:13:125"},"nativeSrc":"33717:39:125","nodeType":"YulIf","src":"33717:39:125"}]},"name":"checked_add_t_uint8","nativeSrc":"33614:148:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"33643:1:125","nodeType":"YulTypedName","src":"33643:1:125","type":""},{"name":"y","nativeSrc":"33646:1:125","nodeType":"YulTypedName","src":"33646:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"33652:3:125","nodeType":"YulTypedName","src":"33652:3:125","type":""}],"src":"33614:148:125"},{"body":{"nativeSrc":"33897:201:125","nodeType":"YulBlock","src":"33897:201:125","statements":[{"body":{"nativeSrc":"33935:16:125","nodeType":"YulBlock","src":"33935:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"33944:1:125","nodeType":"YulLiteral","src":"33944:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"33947:1:125","nodeType":"YulLiteral","src":"33947:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"33937:6:125","nodeType":"YulIdentifier","src":"33937:6:125"},"nativeSrc":"33937:12:125","nodeType":"YulFunctionCall","src":"33937:12:125"},"nativeSrc":"33937:12:125","nodeType":"YulExpressionStatement","src":"33937:12:125"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"33913:10:125","nodeType":"YulIdentifier","src":"33913:10:125"},{"name":"endIndex","nativeSrc":"33925:8:125","nodeType":"YulIdentifier","src":"33925:8:125"}],"functionName":{"name":"gt","nativeSrc":"33910:2:125","nodeType":"YulIdentifier","src":"33910:2:125"},"nativeSrc":"33910:24:125","nodeType":"YulFunctionCall","src":"33910:24:125"},"nativeSrc":"33907:44:125","nodeType":"YulIf","src":"33907:44:125"},{"body":{"nativeSrc":"33984:16:125","nodeType":"YulBlock","src":"33984:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"33993:1:125","nodeType":"YulLiteral","src":"33993:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"33996:1:125","nodeType":"YulLiteral","src":"33996:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"33986:6:125","nodeType":"YulIdentifier","src":"33986:6:125"},"nativeSrc":"33986:12:125","nodeType":"YulFunctionCall","src":"33986:12:125"},"nativeSrc":"33986:12:125","nodeType":"YulExpressionStatement","src":"33986:12:125"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"33966:8:125","nodeType":"YulIdentifier","src":"33966:8:125"},{"name":"length","nativeSrc":"33976:6:125","nodeType":"YulIdentifier","src":"33976:6:125"}],"functionName":{"name":"gt","nativeSrc":"33963:2:125","nodeType":"YulIdentifier","src":"33963:2:125"},"nativeSrc":"33963:20:125","nodeType":"YulFunctionCall","src":"33963:20:125"},"nativeSrc":"33960:40:125","nodeType":"YulIf","src":"33960:40:125"},{"nativeSrc":"34009:36:125","nodeType":"YulAssignment","src":"34009:36:125","value":{"arguments":[{"name":"offset","nativeSrc":"34026:6:125","nodeType":"YulIdentifier","src":"34026:6:125"},{"name":"startIndex","nativeSrc":"34034:10:125","nodeType":"YulIdentifier","src":"34034:10:125"}],"functionName":{"name":"add","nativeSrc":"34022:3:125","nodeType":"YulIdentifier","src":"34022:3:125"},"nativeSrc":"34022:23:125","nodeType":"YulFunctionCall","src":"34022:23:125"},"variableNames":[{"name":"offsetOut","nativeSrc":"34009:9:125","nodeType":"YulIdentifier","src":"34009:9:125"}]},{"nativeSrc":"34054:38:125","nodeType":"YulAssignment","src":"34054:38:125","value":{"arguments":[{"name":"endIndex","nativeSrc":"34071:8:125","nodeType":"YulIdentifier","src":"34071:8:125"},{"name":"startIndex","nativeSrc":"34081:10:125","nodeType":"YulIdentifier","src":"34081:10:125"}],"functionName":{"name":"sub","nativeSrc":"34067:3:125","nodeType":"YulIdentifier","src":"34067:3:125"},"nativeSrc":"34067:25:125","nodeType":"YulFunctionCall","src":"34067:25:125"},"variableNames":[{"name":"lengthOut","nativeSrc":"34054:9:125","nodeType":"YulIdentifier","src":"34054:9:125"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"33767:331:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"33831:6:125","nodeType":"YulTypedName","src":"33831:6:125","type":""},{"name":"length","nativeSrc":"33839:6:125","nodeType":"YulTypedName","src":"33839:6:125","type":""},{"name":"startIndex","nativeSrc":"33847:10:125","nodeType":"YulTypedName","src":"33847:10:125","type":""},{"name":"endIndex","nativeSrc":"33859:8:125","nodeType":"YulTypedName","src":"33859:8:125","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"33872:9:125","nodeType":"YulTypedName","src":"33872:9:125","type":""},{"name":"lengthOut","nativeSrc":"33883:9:125","nodeType":"YulTypedName","src":"33883:9:125","type":""}],"src":"33767:331:125"},{"body":{"nativeSrc":"34203:238:125","nodeType":"YulBlock","src":"34203:238:125","statements":[{"nativeSrc":"34213:29:125","nodeType":"YulVariableDeclaration","src":"34213:29:125","value":{"arguments":[{"name":"array","nativeSrc":"34236:5:125","nodeType":"YulIdentifier","src":"34236:5:125"}],"functionName":{"name":"calldataload","nativeSrc":"34223:12:125","nodeType":"YulIdentifier","src":"34223:12:125"},"nativeSrc":"34223:19:125","nodeType":"YulFunctionCall","src":"34223:19:125"},"variables":[{"name":"_1","nativeSrc":"34217:2:125","nodeType":"YulTypedName","src":"34217:2:125","type":""}]},{"nativeSrc":"34251:38:125","nodeType":"YulAssignment","src":"34251:38:125","value":{"arguments":[{"name":"_1","nativeSrc":"34264:2:125","nodeType":"YulIdentifier","src":"34264:2:125"},{"arguments":[{"kind":"number","nativeSrc":"34272:3:125","nodeType":"YulLiteral","src":"34272:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"34277:10:125","nodeType":"YulLiteral","src":"34277:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"34268:3:125","nodeType":"YulIdentifier","src":"34268:3:125"},"nativeSrc":"34268:20:125","nodeType":"YulFunctionCall","src":"34268:20:125"}],"functionName":{"name":"and","nativeSrc":"34260:3:125","nodeType":"YulIdentifier","src":"34260:3:125"},"nativeSrc":"34260:29:125","nodeType":"YulFunctionCall","src":"34260:29:125"},"variableNames":[{"name":"value","nativeSrc":"34251:5:125","nodeType":"YulIdentifier","src":"34251:5:125"}]},{"body":{"nativeSrc":"34320:115:125","nodeType":"YulBlock","src":"34320:115:125","statements":[{"nativeSrc":"34334:91:125","nodeType":"YulAssignment","src":"34334:91:125","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"34351:2:125","nodeType":"YulIdentifier","src":"34351:2:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34363:1:125","nodeType":"YulLiteral","src":"34363:1:125","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"34370:1:125","nodeType":"YulLiteral","src":"34370:1:125","type":"","value":"4"},{"name":"len","nativeSrc":"34373:3:125","nodeType":"YulIdentifier","src":"34373:3:125"}],"functionName":{"name":"sub","nativeSrc":"34366:3:125","nodeType":"YulIdentifier","src":"34366:3:125"},"nativeSrc":"34366:11:125","nodeType":"YulFunctionCall","src":"34366:11:125"}],"functionName":{"name":"shl","nativeSrc":"34359:3:125","nodeType":"YulIdentifier","src":"34359:3:125"},"nativeSrc":"34359:19:125","nodeType":"YulFunctionCall","src":"34359:19:125"},{"arguments":[{"kind":"number","nativeSrc":"34384:3:125","nodeType":"YulLiteral","src":"34384:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"34389:10:125","nodeType":"YulLiteral","src":"34389:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"34380:3:125","nodeType":"YulIdentifier","src":"34380:3:125"},"nativeSrc":"34380:20:125","nodeType":"YulFunctionCall","src":"34380:20:125"}],"functionName":{"name":"shl","nativeSrc":"34355:3:125","nodeType":"YulIdentifier","src":"34355:3:125"},"nativeSrc":"34355:46:125","nodeType":"YulFunctionCall","src":"34355:46:125"}],"functionName":{"name":"and","nativeSrc":"34347:3:125","nodeType":"YulIdentifier","src":"34347:3:125"},"nativeSrc":"34347:55:125","nodeType":"YulFunctionCall","src":"34347:55:125"},{"arguments":[{"kind":"number","nativeSrc":"34408:3:125","nodeType":"YulLiteral","src":"34408:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"34413:10:125","nodeType":"YulLiteral","src":"34413:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"34404:3:125","nodeType":"YulIdentifier","src":"34404:3:125"},"nativeSrc":"34404:20:125","nodeType":"YulFunctionCall","src":"34404:20:125"}],"functionName":{"name":"and","nativeSrc":"34343:3:125","nodeType":"YulIdentifier","src":"34343:3:125"},"nativeSrc":"34343:82:125","nodeType":"YulFunctionCall","src":"34343:82:125"},"variableNames":[{"name":"value","nativeSrc":"34334:5:125","nodeType":"YulIdentifier","src":"34334:5:125"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"34304:3:125","nodeType":"YulIdentifier","src":"34304:3:125"},{"kind":"number","nativeSrc":"34309:1:125","nodeType":"YulLiteral","src":"34309:1:125","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"34301:2:125","nodeType":"YulIdentifier","src":"34301:2:125"},"nativeSrc":"34301:10:125","nodeType":"YulFunctionCall","src":"34301:10:125"},"nativeSrc":"34298:137:125","nodeType":"YulIf","src":"34298:137:125"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4","nativeSrc":"34103:338:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"34178:5:125","nodeType":"YulTypedName","src":"34178:5:125","type":""},{"name":"len","nativeSrc":"34185:3:125","nodeType":"YulTypedName","src":"34185:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"34193:5:125","nodeType":"YulTypedName","src":"34193:5:125","type":""}],"src":"34103:338:125"},{"body":{"nativeSrc":"34527:180:125","nodeType":"YulBlock","src":"34527:180:125","statements":[{"body":{"nativeSrc":"34573:16:125","nodeType":"YulBlock","src":"34573:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"34582:1:125","nodeType":"YulLiteral","src":"34582:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"34585:1:125","nodeType":"YulLiteral","src":"34585:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"34575:6:125","nodeType":"YulIdentifier","src":"34575:6:125"},"nativeSrc":"34575:12:125","nodeType":"YulFunctionCall","src":"34575:12:125"},"nativeSrc":"34575:12:125","nodeType":"YulExpressionStatement","src":"34575:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"34548:7:125","nodeType":"YulIdentifier","src":"34548:7:125"},{"name":"headStart","nativeSrc":"34557:9:125","nodeType":"YulIdentifier","src":"34557:9:125"}],"functionName":{"name":"sub","nativeSrc":"34544:3:125","nodeType":"YulIdentifier","src":"34544:3:125"},"nativeSrc":"34544:23:125","nodeType":"YulFunctionCall","src":"34544:23:125"},{"kind":"number","nativeSrc":"34569:2:125","nodeType":"YulLiteral","src":"34569:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"34540:3:125","nodeType":"YulIdentifier","src":"34540:3:125"},"nativeSrc":"34540:32:125","nodeType":"YulFunctionCall","src":"34540:32:125"},"nativeSrc":"34537:52:125","nodeType":"YulIf","src":"34537:52:125"},{"nativeSrc":"34598:29:125","nodeType":"YulVariableDeclaration","src":"34598:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"34617:9:125","nodeType":"YulIdentifier","src":"34617:9:125"}],"functionName":{"name":"mload","nativeSrc":"34611:5:125","nodeType":"YulIdentifier","src":"34611:5:125"},"nativeSrc":"34611:16:125","nodeType":"YulFunctionCall","src":"34611:16:125"},"variables":[{"name":"value","nativeSrc":"34602:5:125","nodeType":"YulTypedName","src":"34602:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"34671:5:125","nodeType":"YulIdentifier","src":"34671:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"34636:34:125","nodeType":"YulIdentifier","src":"34636:34:125"},"nativeSrc":"34636:41:125","nodeType":"YulFunctionCall","src":"34636:41:125"},"nativeSrc":"34636:41:125","nodeType":"YulExpressionStatement","src":"34636:41:125"},{"nativeSrc":"34686:15:125","nodeType":"YulAssignment","src":"34686:15:125","value":{"name":"value","nativeSrc":"34696:5:125","nodeType":"YulIdentifier","src":"34696:5:125"},"variableNames":[{"name":"value0","nativeSrc":"34686:6:125","nodeType":"YulIdentifier","src":"34686:6:125"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"34446:261:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34493:9:125","nodeType":"YulTypedName","src":"34493:9:125","type":""},{"name":"dataEnd","nativeSrc":"34504:7:125","nodeType":"YulTypedName","src":"34504:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"34516:6:125","nodeType":"YulTypedName","src":"34516:6:125","type":""}],"src":"34446:261:125"},{"body":{"nativeSrc":"34869:188:125","nodeType":"YulBlock","src":"34869:188:125","statements":[{"nativeSrc":"34879:26:125","nodeType":"YulAssignment","src":"34879:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"34891:9:125","nodeType":"YulIdentifier","src":"34891:9:125"},{"kind":"number","nativeSrc":"34902:2:125","nodeType":"YulLiteral","src":"34902:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"34887:3:125","nodeType":"YulIdentifier","src":"34887:3:125"},"nativeSrc":"34887:18:125","nodeType":"YulFunctionCall","src":"34887:18:125"},"variableNames":[{"name":"tail","nativeSrc":"34879:4:125","nodeType":"YulIdentifier","src":"34879:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"34921:9:125","nodeType":"YulIdentifier","src":"34921:9:125"},{"arguments":[{"name":"value0","nativeSrc":"34936:6:125","nodeType":"YulIdentifier","src":"34936:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34952:3:125","nodeType":"YulLiteral","src":"34952:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"34957:1:125","nodeType":"YulLiteral","src":"34957:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"34948:3:125","nodeType":"YulIdentifier","src":"34948:3:125"},"nativeSrc":"34948:11:125","nodeType":"YulFunctionCall","src":"34948:11:125"},{"kind":"number","nativeSrc":"34961:1:125","nodeType":"YulLiteral","src":"34961:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"34944:3:125","nodeType":"YulIdentifier","src":"34944:3:125"},"nativeSrc":"34944:19:125","nodeType":"YulFunctionCall","src":"34944:19:125"}],"functionName":{"name":"and","nativeSrc":"34932:3:125","nodeType":"YulIdentifier","src":"34932:3:125"},"nativeSrc":"34932:32:125","nodeType":"YulFunctionCall","src":"34932:32:125"}],"functionName":{"name":"mstore","nativeSrc":"34914:6:125","nodeType":"YulIdentifier","src":"34914:6:125"},"nativeSrc":"34914:51:125","nodeType":"YulFunctionCall","src":"34914:51:125"},"nativeSrc":"34914:51:125","nodeType":"YulExpressionStatement","src":"34914:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34985:9:125","nodeType":"YulIdentifier","src":"34985:9:125"},{"kind":"number","nativeSrc":"34996:2:125","nodeType":"YulLiteral","src":"34996:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"34981:3:125","nodeType":"YulIdentifier","src":"34981:3:125"},"nativeSrc":"34981:18:125","nodeType":"YulFunctionCall","src":"34981:18:125"},{"name":"value1","nativeSrc":"35001:6:125","nodeType":"YulIdentifier","src":"35001:6:125"}],"functionName":{"name":"mstore","nativeSrc":"34974:6:125","nodeType":"YulIdentifier","src":"34974:6:125"},"nativeSrc":"34974:34:125","nodeType":"YulFunctionCall","src":"34974:34:125"},"nativeSrc":"34974:34:125","nodeType":"YulExpressionStatement","src":"34974:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35028:9:125","nodeType":"YulIdentifier","src":"35028:9:125"},{"kind":"number","nativeSrc":"35039:2:125","nodeType":"YulLiteral","src":"35039:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35024:3:125","nodeType":"YulIdentifier","src":"35024:3:125"},"nativeSrc":"35024:18:125","nodeType":"YulFunctionCall","src":"35024:18:125"},{"name":"value2","nativeSrc":"35044:6:125","nodeType":"YulIdentifier","src":"35044:6:125"}],"functionName":{"name":"mstore","nativeSrc":"35017:6:125","nodeType":"YulIdentifier","src":"35017:6:125"},"nativeSrc":"35017:34:125","nodeType":"YulFunctionCall","src":"35017:34:125"},"nativeSrc":"35017:34:125","nodeType":"YulExpressionStatement","src":"35017:34:125"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"34712:345:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34822:9:125","nodeType":"YulTypedName","src":"34822:9:125","type":""},{"name":"value2","nativeSrc":"34833:6:125","nodeType":"YulTypedName","src":"34833:6:125","type":""},{"name":"value1","nativeSrc":"34841:6:125","nodeType":"YulTypedName","src":"34841:6:125","type":""},{"name":"value0","nativeSrc":"34849:6:125","nodeType":"YulTypedName","src":"34849:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"34860:4:125","nodeType":"YulTypedName","src":"34860:4:125","type":""}],"src":"34712:345:125"},{"body":{"nativeSrc":"35191:145:125","nodeType":"YulBlock","src":"35191:145:125","statements":[{"nativeSrc":"35201:26:125","nodeType":"YulAssignment","src":"35201:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"35213:9:125","nodeType":"YulIdentifier","src":"35213:9:125"},{"kind":"number","nativeSrc":"35224:2:125","nodeType":"YulLiteral","src":"35224:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35209:3:125","nodeType":"YulIdentifier","src":"35209:3:125"},"nativeSrc":"35209:18:125","nodeType":"YulFunctionCall","src":"35209:18:125"},"variableNames":[{"name":"tail","nativeSrc":"35201:4:125","nodeType":"YulIdentifier","src":"35201:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35243:9:125","nodeType":"YulIdentifier","src":"35243:9:125"},{"name":"value0","nativeSrc":"35254:6:125","nodeType":"YulIdentifier","src":"35254:6:125"}],"functionName":{"name":"mstore","nativeSrc":"35236:6:125","nodeType":"YulIdentifier","src":"35236:6:125"},"nativeSrc":"35236:25:125","nodeType":"YulFunctionCall","src":"35236:25:125"},"nativeSrc":"35236:25:125","nodeType":"YulExpressionStatement","src":"35236:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35281:9:125","nodeType":"YulIdentifier","src":"35281:9:125"},{"kind":"number","nativeSrc":"35292:2:125","nodeType":"YulLiteral","src":"35292:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35277:3:125","nodeType":"YulIdentifier","src":"35277:3:125"},"nativeSrc":"35277:18:125","nodeType":"YulFunctionCall","src":"35277:18:125"},{"arguments":[{"name":"value1","nativeSrc":"35301:6:125","nodeType":"YulIdentifier","src":"35301:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35317:3:125","nodeType":"YulLiteral","src":"35317:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"35322:1:125","nodeType":"YulLiteral","src":"35322:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"35313:3:125","nodeType":"YulIdentifier","src":"35313:3:125"},"nativeSrc":"35313:11:125","nodeType":"YulFunctionCall","src":"35313:11:125"},{"kind":"number","nativeSrc":"35326:1:125","nodeType":"YulLiteral","src":"35326:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"35309:3:125","nodeType":"YulIdentifier","src":"35309:3:125"},"nativeSrc":"35309:19:125","nodeType":"YulFunctionCall","src":"35309:19:125"}],"functionName":{"name":"and","nativeSrc":"35297:3:125","nodeType":"YulIdentifier","src":"35297:3:125"},"nativeSrc":"35297:32:125","nodeType":"YulFunctionCall","src":"35297:32:125"}],"functionName":{"name":"mstore","nativeSrc":"35270:6:125","nodeType":"YulIdentifier","src":"35270:6:125"},"nativeSrc":"35270:60:125","nodeType":"YulFunctionCall","src":"35270:60:125"},"nativeSrc":"35270:60:125","nodeType":"YulExpressionStatement","src":"35270:60:125"}]},"name":"abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed","nativeSrc":"35062:274:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35152:9:125","nodeType":"YulTypedName","src":"35152:9:125","type":""},{"name":"value1","nativeSrc":"35163:6:125","nodeType":"YulTypedName","src":"35163:6:125","type":""},{"name":"value0","nativeSrc":"35171:6:125","nodeType":"YulTypedName","src":"35171:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35182:4:125","nodeType":"YulTypedName","src":"35182:4:125","type":""}],"src":"35062:274:125"},{"body":{"nativeSrc":"35524:272:125","nodeType":"YulBlock","src":"35524:272:125","statements":[{"nativeSrc":"35534:27:125","nodeType":"YulAssignment","src":"35534:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"35546:9:125","nodeType":"YulIdentifier","src":"35546:9:125"},{"kind":"number","nativeSrc":"35557:3:125","nodeType":"YulLiteral","src":"35557:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"35542:3:125","nodeType":"YulIdentifier","src":"35542:3:125"},"nativeSrc":"35542:19:125","nodeType":"YulFunctionCall","src":"35542:19:125"},"variableNames":[{"name":"tail","nativeSrc":"35534:4:125","nodeType":"YulIdentifier","src":"35534:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35577:9:125","nodeType":"YulIdentifier","src":"35577:9:125"},{"arguments":[{"name":"value0","nativeSrc":"35592:6:125","nodeType":"YulIdentifier","src":"35592:6:125"},{"kind":"number","nativeSrc":"35600:26:125","nodeType":"YulLiteral","src":"35600:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"35588:3:125","nodeType":"YulIdentifier","src":"35588:3:125"},"nativeSrc":"35588:39:125","nodeType":"YulFunctionCall","src":"35588:39:125"}],"functionName":{"name":"mstore","nativeSrc":"35570:6:125","nodeType":"YulIdentifier","src":"35570:6:125"},"nativeSrc":"35570:58:125","nodeType":"YulFunctionCall","src":"35570:58:125"},"nativeSrc":"35570:58:125","nodeType":"YulExpressionStatement","src":"35570:58:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35648:9:125","nodeType":"YulIdentifier","src":"35648:9:125"},{"kind":"number","nativeSrc":"35659:2:125","nodeType":"YulLiteral","src":"35659:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35644:3:125","nodeType":"YulIdentifier","src":"35644:3:125"},"nativeSrc":"35644:18:125","nodeType":"YulFunctionCall","src":"35644:18:125"},{"name":"value1","nativeSrc":"35664:6:125","nodeType":"YulIdentifier","src":"35664:6:125"}],"functionName":{"name":"mstore","nativeSrc":"35637:6:125","nodeType":"YulIdentifier","src":"35637:6:125"},"nativeSrc":"35637:34:125","nodeType":"YulFunctionCall","src":"35637:34:125"},"nativeSrc":"35637:34:125","nodeType":"YulExpressionStatement","src":"35637:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35691:9:125","nodeType":"YulIdentifier","src":"35691:9:125"},{"kind":"number","nativeSrc":"35702:2:125","nodeType":"YulLiteral","src":"35702:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35687:3:125","nodeType":"YulIdentifier","src":"35687:3:125"},"nativeSrc":"35687:18:125","nodeType":"YulFunctionCall","src":"35687:18:125"},{"arguments":[{"name":"value2","nativeSrc":"35711:6:125","nodeType":"YulIdentifier","src":"35711:6:125"},{"kind":"number","nativeSrc":"35719:26:125","nodeType":"YulLiteral","src":"35719:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"35707:3:125","nodeType":"YulIdentifier","src":"35707:3:125"},"nativeSrc":"35707:39:125","nodeType":"YulFunctionCall","src":"35707:39:125"}],"functionName":{"name":"mstore","nativeSrc":"35680:6:125","nodeType":"YulIdentifier","src":"35680:6:125"},"nativeSrc":"35680:67:125","nodeType":"YulFunctionCall","src":"35680:67:125"},"nativeSrc":"35680:67:125","nodeType":"YulExpressionStatement","src":"35680:67:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35767:9:125","nodeType":"YulIdentifier","src":"35767:9:125"},{"kind":"number","nativeSrc":"35778:2:125","nodeType":"YulLiteral","src":"35778:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35763:3:125","nodeType":"YulIdentifier","src":"35763:3:125"},"nativeSrc":"35763:18:125","nodeType":"YulFunctionCall","src":"35763:18:125"},{"name":"value3","nativeSrc":"35783:6:125","nodeType":"YulIdentifier","src":"35783:6:125"}],"functionName":{"name":"mstore","nativeSrc":"35756:6:125","nodeType":"YulIdentifier","src":"35756:6:125"},"nativeSrc":"35756:34:125","nodeType":"YulFunctionCall","src":"35756:34:125"},"nativeSrc":"35756:34:125","nodeType":"YulExpressionStatement","src":"35756:34:125"}]},"name":"abi_encode_tuple_t_uint96_t_uint256_t_uint96_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"35341:455:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35469:9:125","nodeType":"YulTypedName","src":"35469:9:125","type":""},{"name":"value3","nativeSrc":"35480:6:125","nodeType":"YulTypedName","src":"35480:6:125","type":""},{"name":"value2","nativeSrc":"35488:6:125","nodeType":"YulTypedName","src":"35488:6:125","type":""},{"name":"value1","nativeSrc":"35496:6:125","nodeType":"YulTypedName","src":"35496:6:125","type":""},{"name":"value0","nativeSrc":"35504:6:125","nodeType":"YulTypedName","src":"35504:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35515:4:125","nodeType":"YulTypedName","src":"35515:4:125","type":""}],"src":"35341:455:125"},{"body":{"nativeSrc":"35965:405:125","nodeType":"YulBlock","src":"35965:405:125","statements":[{"nativeSrc":"35975:27:125","nodeType":"YulAssignment","src":"35975:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"35987:9:125","nodeType":"YulIdentifier","src":"35987:9:125"},{"kind":"number","nativeSrc":"35998:3:125","nodeType":"YulLiteral","src":"35998:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"35983:3:125","nodeType":"YulIdentifier","src":"35983:3:125"},"nativeSrc":"35983:19:125","nodeType":"YulFunctionCall","src":"35983:19:125"},"variableNames":[{"name":"tail","nativeSrc":"35975:4:125","nodeType":"YulIdentifier","src":"35975:4:125"}]},{"nativeSrc":"36011:30:125","nodeType":"YulVariableDeclaration","src":"36011:30:125","value":{"arguments":[{"name":"value0","nativeSrc":"36034:6:125","nodeType":"YulIdentifier","src":"36034:6:125"}],"functionName":{"name":"sload","nativeSrc":"36028:5:125","nodeType":"YulIdentifier","src":"36028:5:125"},"nativeSrc":"36028:13:125","nodeType":"YulFunctionCall","src":"36028:13:125"},"variables":[{"name":"slotValue","nativeSrc":"36015:9:125","nodeType":"YulTypedName","src":"36015:9:125","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"36057:9:125","nodeType":"YulIdentifier","src":"36057:9:125"},{"arguments":[{"name":"slotValue","nativeSrc":"36072:9:125","nodeType":"YulIdentifier","src":"36072:9:125"},{"kind":"number","nativeSrc":"36083:10:125","nodeType":"YulLiteral","src":"36083:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"36068:3:125","nodeType":"YulIdentifier","src":"36068:3:125"},"nativeSrc":"36068:26:125","nodeType":"YulFunctionCall","src":"36068:26:125"}],"functionName":{"name":"mstore","nativeSrc":"36050:6:125","nodeType":"YulIdentifier","src":"36050:6:125"},"nativeSrc":"36050:45:125","nodeType":"YulFunctionCall","src":"36050:45:125"},"nativeSrc":"36050:45:125","nodeType":"YulExpressionStatement","src":"36050:45:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36141:2:125","nodeType":"YulLiteral","src":"36141:2:125","type":"","value":"32"},{"name":"slotValue","nativeSrc":"36145:9:125","nodeType":"YulIdentifier","src":"36145:9:125"}],"functionName":{"name":"shr","nativeSrc":"36137:3:125","nodeType":"YulIdentifier","src":"36137:3:125"},"nativeSrc":"36137:18:125","nodeType":"YulFunctionCall","src":"36137:18:125"},{"kind":"number","nativeSrc":"36157:4:125","nodeType":"YulLiteral","src":"36157:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"36133:3:125","nodeType":"YulIdentifier","src":"36133:3:125"},"nativeSrc":"36133:29:125","nodeType":"YulFunctionCall","src":"36133:29:125"},{"arguments":[{"name":"headStart","nativeSrc":"36168:9:125","nodeType":"YulIdentifier","src":"36168:9:125"},{"kind":"number","nativeSrc":"36179:2:125","nodeType":"YulLiteral","src":"36179:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"36164:3:125","nodeType":"YulIdentifier","src":"36164:3:125"},"nativeSrc":"36164:18:125","nodeType":"YulFunctionCall","src":"36164:18:125"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"36104:28:125","nodeType":"YulIdentifier","src":"36104:28:125"},"nativeSrc":"36104:79:125","nodeType":"YulFunctionCall","src":"36104:79:125"},"nativeSrc":"36104:79:125","nodeType":"YulExpressionStatement","src":"36104:79:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36203:9:125","nodeType":"YulIdentifier","src":"36203:9:125"},{"kind":"number","nativeSrc":"36214:4:125","nodeType":"YulLiteral","src":"36214:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"36199:3:125","nodeType":"YulIdentifier","src":"36199:3:125"},"nativeSrc":"36199:20:125","nodeType":"YulFunctionCall","src":"36199:20:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36229:2:125","nodeType":"YulLiteral","src":"36229:2:125","type":"","value":"40"},{"name":"slotValue","nativeSrc":"36233:9:125","nodeType":"YulIdentifier","src":"36233:9:125"}],"functionName":{"name":"shr","nativeSrc":"36225:3:125","nodeType":"YulIdentifier","src":"36225:3:125"},"nativeSrc":"36225:18:125","nodeType":"YulFunctionCall","src":"36225:18:125"},{"kind":"number","nativeSrc":"36245:26:125","nodeType":"YulLiteral","src":"36245:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"36221:3:125","nodeType":"YulIdentifier","src":"36221:3:125"},"nativeSrc":"36221:51:125","nodeType":"YulFunctionCall","src":"36221:51:125"}],"functionName":{"name":"mstore","nativeSrc":"36192:6:125","nodeType":"YulIdentifier","src":"36192:6:125"},"nativeSrc":"36192:81:125","nodeType":"YulFunctionCall","src":"36192:81:125"},"nativeSrc":"36192:81:125","nodeType":"YulExpressionStatement","src":"36192:81:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36293:9:125","nodeType":"YulIdentifier","src":"36293:9:125"},{"kind":"number","nativeSrc":"36304:4:125","nodeType":"YulLiteral","src":"36304:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"36289:3:125","nodeType":"YulIdentifier","src":"36289:3:125"},"nativeSrc":"36289:20:125","nodeType":"YulFunctionCall","src":"36289:20:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36319:3:125","nodeType":"YulLiteral","src":"36319:3:125","type":"","value":"136"},{"name":"slotValue","nativeSrc":"36324:9:125","nodeType":"YulIdentifier","src":"36324:9:125"}],"functionName":{"name":"shr","nativeSrc":"36315:3:125","nodeType":"YulIdentifier","src":"36315:3:125"},"nativeSrc":"36315:19:125","nodeType":"YulFunctionCall","src":"36315:19:125"},{"kind":"number","nativeSrc":"36336:26:125","nodeType":"YulLiteral","src":"36336:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"36311:3:125","nodeType":"YulIdentifier","src":"36311:3:125"},"nativeSrc":"36311:52:125","nodeType":"YulFunctionCall","src":"36311:52:125"}],"functionName":{"name":"mstore","nativeSrc":"36282:6:125","nodeType":"YulIdentifier","src":"36282:6:125"},"nativeSrc":"36282:82:125","nodeType":"YulFunctionCall","src":"36282:82:125"},"nativeSrc":"36282:82:125","nodeType":"YulExpressionStatement","src":"36282:82:125"}]},"name":"abi_encode_tuple_t_struct$_TargetConfig_$38340_storage_ptr__to_t_struct$_TargetConfig_$38340_memory_ptr__fromStack_reversed","nativeSrc":"35801:569:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35934:9:125","nodeType":"YulTypedName","src":"35934:9:125","type":""},{"name":"value0","nativeSrc":"35945:6:125","nodeType":"YulTypedName","src":"35945:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35956:4:125","nodeType":"YulTypedName","src":"35956:4:125","type":""}],"src":"35801:569:125"},{"body":{"nativeSrc":"36520:174:125","nodeType":"YulBlock","src":"36520:174:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"36537:3:125","nodeType":"YulIdentifier","src":"36537:3:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36550:2:125","nodeType":"YulLiteral","src":"36550:2:125","type":"","value":"96"},{"name":"value0","nativeSrc":"36554:6:125","nodeType":"YulIdentifier","src":"36554:6:125"}],"functionName":{"name":"shl","nativeSrc":"36546:3:125","nodeType":"YulIdentifier","src":"36546:3:125"},"nativeSrc":"36546:15:125","nodeType":"YulFunctionCall","src":"36546:15:125"},{"arguments":[{"kind":"number","nativeSrc":"36567:26:125","nodeType":"YulLiteral","src":"36567:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"36563:3:125","nodeType":"YulIdentifier","src":"36563:3:125"},"nativeSrc":"36563:31:125","nodeType":"YulFunctionCall","src":"36563:31:125"}],"functionName":{"name":"and","nativeSrc":"36542:3:125","nodeType":"YulIdentifier","src":"36542:3:125"},"nativeSrc":"36542:53:125","nodeType":"YulFunctionCall","src":"36542:53:125"}],"functionName":{"name":"mstore","nativeSrc":"36530:6:125","nodeType":"YulIdentifier","src":"36530:6:125"},"nativeSrc":"36530:66:125","nodeType":"YulFunctionCall","src":"36530:66:125"},"nativeSrc":"36530:66:125","nodeType":"YulExpressionStatement","src":"36530:66:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"36616:3:125","nodeType":"YulIdentifier","src":"36616:3:125"},{"kind":"number","nativeSrc":"36621:2:125","nodeType":"YulLiteral","src":"36621:2:125","type":"","value":"20"}],"functionName":{"name":"add","nativeSrc":"36612:3:125","nodeType":"YulIdentifier","src":"36612:3:125"},"nativeSrc":"36612:12:125","nodeType":"YulFunctionCall","src":"36612:12:125"},{"arguments":[{"name":"value1","nativeSrc":"36630:6:125","nodeType":"YulIdentifier","src":"36630:6:125"},{"arguments":[{"kind":"number","nativeSrc":"36642:3:125","nodeType":"YulLiteral","src":"36642:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"36647:10:125","nodeType":"YulLiteral","src":"36647:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"36638:3:125","nodeType":"YulIdentifier","src":"36638:3:125"},"nativeSrc":"36638:20:125","nodeType":"YulFunctionCall","src":"36638:20:125"}],"functionName":{"name":"and","nativeSrc":"36626:3:125","nodeType":"YulIdentifier","src":"36626:3:125"},"nativeSrc":"36626:33:125","nodeType":"YulFunctionCall","src":"36626:33:125"}],"functionName":{"name":"mstore","nativeSrc":"36605:6:125","nodeType":"YulIdentifier","src":"36605:6:125"},"nativeSrc":"36605:55:125","nodeType":"YulFunctionCall","src":"36605:55:125"},"nativeSrc":"36605:55:125","nodeType":"YulExpressionStatement","src":"36605:55:125"},{"nativeSrc":"36669:19:125","nodeType":"YulAssignment","src":"36669:19:125","value":{"arguments":[{"name":"pos","nativeSrc":"36680:3:125","nodeType":"YulIdentifier","src":"36680:3:125"},{"kind":"number","nativeSrc":"36685:2:125","nodeType":"YulLiteral","src":"36685:2:125","type":"","value":"24"}],"functionName":{"name":"add","nativeSrc":"36676:3:125","nodeType":"YulIdentifier","src":"36676:3:125"},"nativeSrc":"36676:12:125","nodeType":"YulFunctionCall","src":"36676:12:125"},"variableNames":[{"name":"end","nativeSrc":"36669:3:125","nodeType":"YulIdentifier","src":"36669:3:125"}]}]},"name":"abi_encode_tuple_packed_t_address_t_bytes4__to_t_address_t_bytes4__nonPadded_inplace_fromStack_reversed","nativeSrc":"36375:319:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"36488:3:125","nodeType":"YulTypedName","src":"36488:3:125","type":""},{"name":"value1","nativeSrc":"36493:6:125","nodeType":"YulTypedName","src":"36493:6:125","type":""},{"name":"value0","nativeSrc":"36501:6:125","nodeType":"YulTypedName","src":"36501:6:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"36512:3:125","nodeType":"YulTypedName","src":"36512:3:125","type":""}],"src":"36375:319:125"},{"body":{"nativeSrc":"36856:184:125","nodeType":"YulBlock","src":"36856:184:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"36873:9:125","nodeType":"YulIdentifier","src":"36873:9:125"},{"kind":"number","nativeSrc":"36884:2:125","nodeType":"YulLiteral","src":"36884:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"36866:6:125","nodeType":"YulIdentifier","src":"36866:6:125"},"nativeSrc":"36866:21:125","nodeType":"YulFunctionCall","src":"36866:21:125"},"nativeSrc":"36866:21:125","nodeType":"YulExpressionStatement","src":"36866:21:125"},{"nativeSrc":"36896:69:125","nodeType":"YulAssignment","src":"36896:69:125","value":{"arguments":[{"name":"value0","nativeSrc":"36930:6:125","nodeType":"YulIdentifier","src":"36930:6:125"},{"name":"value1","nativeSrc":"36938:6:125","nodeType":"YulIdentifier","src":"36938:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"36950:9:125","nodeType":"YulIdentifier","src":"36950:9:125"},{"kind":"number","nativeSrc":"36961:2:125","nodeType":"YulLiteral","src":"36961:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"36946:3:125","nodeType":"YulIdentifier","src":"36946:3:125"},"nativeSrc":"36946:18:125","nodeType":"YulFunctionCall","src":"36946:18:125"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"36904:25:125","nodeType":"YulIdentifier","src":"36904:25:125"},"nativeSrc":"36904:61:125","nodeType":"YulFunctionCall","src":"36904:61:125"},"variableNames":[{"name":"tail","nativeSrc":"36896:4:125","nodeType":"YulIdentifier","src":"36896:4:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36985:9:125","nodeType":"YulIdentifier","src":"36985:9:125"},{"kind":"number","nativeSrc":"36996:2:125","nodeType":"YulLiteral","src":"36996:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"36981:3:125","nodeType":"YulIdentifier","src":"36981:3:125"},"nativeSrc":"36981:18:125","nodeType":"YulFunctionCall","src":"36981:18:125"},{"arguments":[{"name":"value2","nativeSrc":"37005:6:125","nodeType":"YulIdentifier","src":"37005:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37021:3:125","nodeType":"YulLiteral","src":"37021:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"37026:1:125","nodeType":"YulLiteral","src":"37026:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"37017:3:125","nodeType":"YulIdentifier","src":"37017:3:125"},"nativeSrc":"37017:11:125","nodeType":"YulFunctionCall","src":"37017:11:125"},{"kind":"number","nativeSrc":"37030:1:125","nodeType":"YulLiteral","src":"37030:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"37013:3:125","nodeType":"YulIdentifier","src":"37013:3:125"},"nativeSrc":"37013:19:125","nodeType":"YulFunctionCall","src":"37013:19:125"}],"functionName":{"name":"and","nativeSrc":"37001:3:125","nodeType":"YulIdentifier","src":"37001:3:125"},"nativeSrc":"37001:32:125","nodeType":"YulFunctionCall","src":"37001:32:125"}],"functionName":{"name":"mstore","nativeSrc":"36974:6:125","nodeType":"YulIdentifier","src":"36974:6:125"},"nativeSrc":"36974:60:125","nodeType":"YulFunctionCall","src":"36974:60:125"},"nativeSrc":"36974:60:125","nodeType":"YulExpressionStatement","src":"36974:60:125"}]},"name":"abi_encode_tuple_t_bytes_calldata_ptr_t_address__to_t_bytes_memory_ptr_t_address__fromStack_reversed","nativeSrc":"36699:341:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36809:9:125","nodeType":"YulTypedName","src":"36809:9:125","type":""},{"name":"value2","nativeSrc":"36820:6:125","nodeType":"YulTypedName","src":"36820:6:125","type":""},{"name":"value1","nativeSrc":"36828:6:125","nodeType":"YulTypedName","src":"36828:6:125","type":""},{"name":"value0","nativeSrc":"36836:6:125","nodeType":"YulTypedName","src":"36836:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"36847:4:125","nodeType":"YulTypedName","src":"36847:4:125","type":""}],"src":"36699:341:125"},{"body":{"nativeSrc":"37104:110:125","nodeType":"YulBlock","src":"37104:110:125","statements":[{"nativeSrc":"37114:22:125","nodeType":"YulAssignment","src":"37114:22:125","value":{"arguments":[{"name":"offset","nativeSrc":"37129:6:125","nodeType":"YulIdentifier","src":"37129:6:125"}],"functionName":{"name":"mload","nativeSrc":"37123:5:125","nodeType":"YulIdentifier","src":"37123:5:125"},"nativeSrc":"37123:13:125","nodeType":"YulFunctionCall","src":"37123:13:125"},"variableNames":[{"name":"value","nativeSrc":"37114:5:125","nodeType":"YulIdentifier","src":"37114:5:125"}]},{"body":{"nativeSrc":"37192:16:125","nodeType":"YulBlock","src":"37192:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"37201:1:125","nodeType":"YulLiteral","src":"37201:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"37204:1:125","nodeType":"YulLiteral","src":"37204:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"37194:6:125","nodeType":"YulIdentifier","src":"37194:6:125"},"nativeSrc":"37194:12:125","nodeType":"YulFunctionCall","src":"37194:12:125"},"nativeSrc":"37194:12:125","nodeType":"YulExpressionStatement","src":"37194:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"37158:5:125","nodeType":"YulIdentifier","src":"37158:5:125"},{"arguments":[{"name":"value","nativeSrc":"37169:5:125","nodeType":"YulIdentifier","src":"37169:5:125"},{"kind":"number","nativeSrc":"37176:12:125","nodeType":"YulLiteral","src":"37176:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"37165:3:125","nodeType":"YulIdentifier","src":"37165:3:125"},"nativeSrc":"37165:24:125","nodeType":"YulFunctionCall","src":"37165:24:125"}],"functionName":{"name":"eq","nativeSrc":"37155:2:125","nodeType":"YulIdentifier","src":"37155:2:125"},"nativeSrc":"37155:35:125","nodeType":"YulFunctionCall","src":"37155:35:125"}],"functionName":{"name":"iszero","nativeSrc":"37148:6:125","nodeType":"YulIdentifier","src":"37148:6:125"},"nativeSrc":"37148:43:125","nodeType":"YulFunctionCall","src":"37148:43:125"},"nativeSrc":"37145:63:125","nodeType":"YulIf","src":"37145:63:125"}]},"name":"abi_decode_uint40_fromMemory","nativeSrc":"37045:169:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"37083:6:125","nodeType":"YulTypedName","src":"37083:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"37094:5:125","nodeType":"YulTypedName","src":"37094:5:125","type":""}],"src":"37045:169:125"},{"body":{"nativeSrc":"37328:1432:125","nodeType":"YulBlock","src":"37328:1432:125","statements":[{"nativeSrc":"37338:43:125","nodeType":"YulVariableDeclaration","src":"37338:43:125","value":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"37356:7:125","nodeType":"YulIdentifier","src":"37356:7:125"},{"name":"headStart","nativeSrc":"37365:9:125","nodeType":"YulIdentifier","src":"37365:9:125"}],"functionName":{"name":"sub","nativeSrc":"37352:3:125","nodeType":"YulIdentifier","src":"37352:3:125"},"nativeSrc":"37352:23:125","nodeType":"YulFunctionCall","src":"37352:23:125"},{"kind":"number","nativeSrc":"37377:3:125","nodeType":"YulLiteral","src":"37377:3:125","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"37348:3:125","nodeType":"YulIdentifier","src":"37348:3:125"},"nativeSrc":"37348:33:125","nodeType":"YulFunctionCall","src":"37348:33:125"},"variables":[{"name":"_1","nativeSrc":"37342:2:125","nodeType":"YulTypedName","src":"37342:2:125","type":""}]},{"body":{"nativeSrc":"37396:16:125","nodeType":"YulBlock","src":"37396:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"37405:1:125","nodeType":"YulLiteral","src":"37405:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"37408:1:125","nodeType":"YulLiteral","src":"37408:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"37398:6:125","nodeType":"YulIdentifier","src":"37398:6:125"},"nativeSrc":"37398:12:125","nodeType":"YulFunctionCall","src":"37398:12:125"},"nativeSrc":"37398:12:125","nodeType":"YulExpressionStatement","src":"37398:12:125"}]},"condition":{"name":"_1","nativeSrc":"37393:2:125","nodeType":"YulIdentifier","src":"37393:2:125"},"nativeSrc":"37390:22:125","nodeType":"YulIf","src":"37390:22:125"},{"nativeSrc":"37421:7:125","nodeType":"YulAssignment","src":"37421:7:125","value":{"kind":"number","nativeSrc":"37427:1:125","nodeType":"YulLiteral","src":"37427:1:125","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"37421:2:125","nodeType":"YulIdentifier","src":"37421:2:125"}]},{"nativeSrc":"37437:30:125","nodeType":"YulVariableDeclaration","src":"37437:30:125","value":{"arguments":[],"functionName":{"name":"allocate_memory","nativeSrc":"37450:15:125","nodeType":"YulIdentifier","src":"37450:15:125"},"nativeSrc":"37450:17:125","nodeType":"YulFunctionCall","src":"37450:17:125"},"variables":[{"name":"value","nativeSrc":"37441:5:125","nodeType":"YulTypedName","src":"37441:5:125","type":""}]},{"nativeSrc":"37476:16:125","nodeType":"YulVariableDeclaration","src":"37476:16:125","value":{"kind":"number","nativeSrc":"37491:1:125","nodeType":"YulLiteral","src":"37491:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"37480:7:125","nodeType":"YulTypedName","src":"37480:7:125","type":""}]},{"nativeSrc":"37501:27:125","nodeType":"YulAssignment","src":"37501:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"37518:9:125","nodeType":"YulIdentifier","src":"37518:9:125"}],"functionName":{"name":"mload","nativeSrc":"37512:5:125","nodeType":"YulIdentifier","src":"37512:5:125"},"nativeSrc":"37512:16:125","nodeType":"YulFunctionCall","src":"37512:16:125"},"variableNames":[{"name":"value_1","nativeSrc":"37501:7:125","nodeType":"YulIdentifier","src":"37501:7:125"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"37544:5:125","nodeType":"YulIdentifier","src":"37544:5:125"},{"name":"value_1","nativeSrc":"37551:7:125","nodeType":"YulIdentifier","src":"37551:7:125"}],"functionName":{"name":"mstore","nativeSrc":"37537:6:125","nodeType":"YulIdentifier","src":"37537:6:125"},"nativeSrc":"37537:22:125","nodeType":"YulFunctionCall","src":"37537:22:125"},"nativeSrc":"37537:22:125","nodeType":"YulExpressionStatement","src":"37537:22:125"},{"nativeSrc":"37568:16:125","nodeType":"YulVariableDeclaration","src":"37568:16:125","value":{"kind":"number","nativeSrc":"37583:1:125","nodeType":"YulLiteral","src":"37583:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"37572:7:125","nodeType":"YulTypedName","src":"37572:7:125","type":""}]},{"nativeSrc":"37593:36:125","nodeType":"YulAssignment","src":"37593:36:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37614:9:125","nodeType":"YulIdentifier","src":"37614:9:125"},{"kind":"number","nativeSrc":"37625:2:125","nodeType":"YulLiteral","src":"37625:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"37610:3:125","nodeType":"YulIdentifier","src":"37610:3:125"},"nativeSrc":"37610:18:125","nodeType":"YulFunctionCall","src":"37610:18:125"}],"functionName":{"name":"mload","nativeSrc":"37604:5:125","nodeType":"YulIdentifier","src":"37604:5:125"},"nativeSrc":"37604:25:125","nodeType":"YulFunctionCall","src":"37604:25:125"},"variableNames":[{"name":"value_2","nativeSrc":"37593:7:125","nodeType":"YulIdentifier","src":"37593:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"37649:5:125","nodeType":"YulIdentifier","src":"37649:5:125"},{"kind":"number","nativeSrc":"37656:2:125","nodeType":"YulLiteral","src":"37656:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"37645:3:125","nodeType":"YulIdentifier","src":"37645:3:125"},"nativeSrc":"37645:14:125","nodeType":"YulFunctionCall","src":"37645:14:125"},{"name":"value_2","nativeSrc":"37661:7:125","nodeType":"YulIdentifier","src":"37661:7:125"}],"functionName":{"name":"mstore","nativeSrc":"37638:6:125","nodeType":"YulIdentifier","src":"37638:6:125"},"nativeSrc":"37638:31:125","nodeType":"YulFunctionCall","src":"37638:31:125"},"nativeSrc":"37638:31:125","nodeType":"YulExpressionStatement","src":"37638:31:125"},{"nativeSrc":"37678:16:125","nodeType":"YulVariableDeclaration","src":"37678:16:125","value":{"kind":"number","nativeSrc":"37693:1:125","nodeType":"YulLiteral","src":"37693:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"37682:7:125","nodeType":"YulTypedName","src":"37682:7:125","type":""}]},{"nativeSrc":"37703:36:125","nodeType":"YulAssignment","src":"37703:36:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37724:9:125","nodeType":"YulIdentifier","src":"37724:9:125"},{"kind":"number","nativeSrc":"37735:2:125","nodeType":"YulLiteral","src":"37735:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"37720:3:125","nodeType":"YulIdentifier","src":"37720:3:125"},"nativeSrc":"37720:18:125","nodeType":"YulFunctionCall","src":"37720:18:125"}],"functionName":{"name":"mload","nativeSrc":"37714:5:125","nodeType":"YulIdentifier","src":"37714:5:125"},"nativeSrc":"37714:25:125","nodeType":"YulFunctionCall","src":"37714:25:125"},"variableNames":[{"name":"value_3","nativeSrc":"37703:7:125","nodeType":"YulIdentifier","src":"37703:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"37759:5:125","nodeType":"YulIdentifier","src":"37759:5:125"},{"kind":"number","nativeSrc":"37766:2:125","nodeType":"YulLiteral","src":"37766:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"37755:3:125","nodeType":"YulIdentifier","src":"37755:3:125"},"nativeSrc":"37755:14:125","nodeType":"YulFunctionCall","src":"37755:14:125"},{"name":"value_3","nativeSrc":"37771:7:125","nodeType":"YulIdentifier","src":"37771:7:125"}],"functionName":{"name":"mstore","nativeSrc":"37748:6:125","nodeType":"YulIdentifier","src":"37748:6:125"},"nativeSrc":"37748:31:125","nodeType":"YulFunctionCall","src":"37748:31:125"},"nativeSrc":"37748:31:125","nodeType":"YulExpressionStatement","src":"37748:31:125"},{"nativeSrc":"37788:16:125","nodeType":"YulVariableDeclaration","src":"37788:16:125","value":{"kind":"number","nativeSrc":"37803:1:125","nodeType":"YulLiteral","src":"37803:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"37792:7:125","nodeType":"YulTypedName","src":"37792:7:125","type":""}]},{"nativeSrc":"37813:36:125","nodeType":"YulAssignment","src":"37813:36:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37834:9:125","nodeType":"YulIdentifier","src":"37834:9:125"},{"kind":"number","nativeSrc":"37845:2:125","nodeType":"YulLiteral","src":"37845:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"37830:3:125","nodeType":"YulIdentifier","src":"37830:3:125"},"nativeSrc":"37830:18:125","nodeType":"YulFunctionCall","src":"37830:18:125"}],"functionName":{"name":"mload","nativeSrc":"37824:5:125","nodeType":"YulIdentifier","src":"37824:5:125"},"nativeSrc":"37824:25:125","nodeType":"YulFunctionCall","src":"37824:25:125"},"variableNames":[{"name":"value_4","nativeSrc":"37813:7:125","nodeType":"YulIdentifier","src":"37813:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"37869:5:125","nodeType":"YulIdentifier","src":"37869:5:125"},{"kind":"number","nativeSrc":"37876:2:125","nodeType":"YulLiteral","src":"37876:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"37865:3:125","nodeType":"YulIdentifier","src":"37865:3:125"},"nativeSrc":"37865:14:125","nodeType":"YulFunctionCall","src":"37865:14:125"},{"name":"value_4","nativeSrc":"37881:7:125","nodeType":"YulIdentifier","src":"37881:7:125"}],"functionName":{"name":"mstore","nativeSrc":"37858:6:125","nodeType":"YulIdentifier","src":"37858:6:125"},"nativeSrc":"37858:31:125","nodeType":"YulFunctionCall","src":"37858:31:125"},"nativeSrc":"37858:31:125","nodeType":"YulExpressionStatement","src":"37858:31:125"},{"nativeSrc":"37898:16:125","nodeType":"YulVariableDeclaration","src":"37898:16:125","value":{"kind":"number","nativeSrc":"37913:1:125","nodeType":"YulLiteral","src":"37913:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"37902:7:125","nodeType":"YulTypedName","src":"37902:7:125","type":""}]},{"nativeSrc":"37923:37:125","nodeType":"YulAssignment","src":"37923:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37944:9:125","nodeType":"YulIdentifier","src":"37944:9:125"},{"kind":"number","nativeSrc":"37955:3:125","nodeType":"YulLiteral","src":"37955:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"37940:3:125","nodeType":"YulIdentifier","src":"37940:3:125"},"nativeSrc":"37940:19:125","nodeType":"YulFunctionCall","src":"37940:19:125"}],"functionName":{"name":"mload","nativeSrc":"37934:5:125","nodeType":"YulIdentifier","src":"37934:5:125"},"nativeSrc":"37934:26:125","nodeType":"YulFunctionCall","src":"37934:26:125"},"variableNames":[{"name":"value_5","nativeSrc":"37923:7:125","nodeType":"YulIdentifier","src":"37923:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"37980:5:125","nodeType":"YulIdentifier","src":"37980:5:125"},{"kind":"number","nativeSrc":"37987:3:125","nodeType":"YulLiteral","src":"37987:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"37976:3:125","nodeType":"YulIdentifier","src":"37976:3:125"},"nativeSrc":"37976:15:125","nodeType":"YulFunctionCall","src":"37976:15:125"},{"name":"value_5","nativeSrc":"37993:7:125","nodeType":"YulIdentifier","src":"37993:7:125"}],"functionName":{"name":"mstore","nativeSrc":"37969:6:125","nodeType":"YulIdentifier","src":"37969:6:125"},"nativeSrc":"37969:32:125","nodeType":"YulFunctionCall","src":"37969:32:125"},"nativeSrc":"37969:32:125","nodeType":"YulExpressionStatement","src":"37969:32:125"},{"nativeSrc":"38010:16:125","nodeType":"YulVariableDeclaration","src":"38010:16:125","value":{"kind":"number","nativeSrc":"38025:1:125","nodeType":"YulLiteral","src":"38025:1:125","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"38014:7:125","nodeType":"YulTypedName","src":"38014:7:125","type":""}]},{"nativeSrc":"38035:37:125","nodeType":"YulAssignment","src":"38035:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38056:9:125","nodeType":"YulIdentifier","src":"38056:9:125"},{"kind":"number","nativeSrc":"38067:3:125","nodeType":"YulLiteral","src":"38067:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"38052:3:125","nodeType":"YulIdentifier","src":"38052:3:125"},"nativeSrc":"38052:19:125","nodeType":"YulFunctionCall","src":"38052:19:125"}],"functionName":{"name":"mload","nativeSrc":"38046:5:125","nodeType":"YulIdentifier","src":"38046:5:125"},"nativeSrc":"38046:26:125","nodeType":"YulFunctionCall","src":"38046:26:125"},"variableNames":[{"name":"value_6","nativeSrc":"38035:7:125","nodeType":"YulIdentifier","src":"38035:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"38092:5:125","nodeType":"YulIdentifier","src":"38092:5:125"},{"kind":"number","nativeSrc":"38099:3:125","nodeType":"YulLiteral","src":"38099:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"38088:3:125","nodeType":"YulIdentifier","src":"38088:3:125"},"nativeSrc":"38088:15:125","nodeType":"YulFunctionCall","src":"38088:15:125"},{"name":"value_6","nativeSrc":"38105:7:125","nodeType":"YulIdentifier","src":"38105:7:125"}],"functionName":{"name":"mstore","nativeSrc":"38081:6:125","nodeType":"YulIdentifier","src":"38081:6:125"},"nativeSrc":"38081:32:125","nodeType":"YulFunctionCall","src":"38081:32:125"},"nativeSrc":"38081:32:125","nodeType":"YulExpressionStatement","src":"38081:32:125"},{"nativeSrc":"38122:16:125","nodeType":"YulVariableDeclaration","src":"38122:16:125","value":{"kind":"number","nativeSrc":"38137:1:125","nodeType":"YulLiteral","src":"38137:1:125","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"38126:7:125","nodeType":"YulTypedName","src":"38126:7:125","type":""}]},{"nativeSrc":"38147:37:125","nodeType":"YulAssignment","src":"38147:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38168:9:125","nodeType":"YulIdentifier","src":"38168:9:125"},{"kind":"number","nativeSrc":"38179:3:125","nodeType":"YulLiteral","src":"38179:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"38164:3:125","nodeType":"YulIdentifier","src":"38164:3:125"},"nativeSrc":"38164:19:125","nodeType":"YulFunctionCall","src":"38164:19:125"}],"functionName":{"name":"mload","nativeSrc":"38158:5:125","nodeType":"YulIdentifier","src":"38158:5:125"},"nativeSrc":"38158:26:125","nodeType":"YulFunctionCall","src":"38158:26:125"},"variableNames":[{"name":"value_7","nativeSrc":"38147:7:125","nodeType":"YulIdentifier","src":"38147:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"38204:5:125","nodeType":"YulIdentifier","src":"38204:5:125"},{"kind":"number","nativeSrc":"38211:3:125","nodeType":"YulLiteral","src":"38211:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"38200:3:125","nodeType":"YulIdentifier","src":"38200:3:125"},"nativeSrc":"38200:15:125","nodeType":"YulFunctionCall","src":"38200:15:125"},{"name":"value_7","nativeSrc":"38217:7:125","nodeType":"YulIdentifier","src":"38217:7:125"}],"functionName":{"name":"mstore","nativeSrc":"38193:6:125","nodeType":"YulIdentifier","src":"38193:6:125"},"nativeSrc":"38193:32:125","nodeType":"YulFunctionCall","src":"38193:32:125"},"nativeSrc":"38193:32:125","nodeType":"YulExpressionStatement","src":"38193:32:125"},{"nativeSrc":"38234:16:125","nodeType":"YulVariableDeclaration","src":"38234:16:125","value":{"kind":"number","nativeSrc":"38249:1:125","nodeType":"YulLiteral","src":"38249:1:125","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"38238:7:125","nodeType":"YulTypedName","src":"38238:7:125","type":""}]},{"nativeSrc":"38259:37:125","nodeType":"YulAssignment","src":"38259:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38280:9:125","nodeType":"YulIdentifier","src":"38280:9:125"},{"kind":"number","nativeSrc":"38291:3:125","nodeType":"YulLiteral","src":"38291:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"38276:3:125","nodeType":"YulIdentifier","src":"38276:3:125"},"nativeSrc":"38276:19:125","nodeType":"YulFunctionCall","src":"38276:19:125"}],"functionName":{"name":"mload","nativeSrc":"38270:5:125","nodeType":"YulIdentifier","src":"38270:5:125"},"nativeSrc":"38270:26:125","nodeType":"YulFunctionCall","src":"38270:26:125"},"variableNames":[{"name":"value_8","nativeSrc":"38259:7:125","nodeType":"YulIdentifier","src":"38259:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"38316:5:125","nodeType":"YulIdentifier","src":"38316:5:125"},{"kind":"number","nativeSrc":"38323:3:125","nodeType":"YulLiteral","src":"38323:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"38312:3:125","nodeType":"YulIdentifier","src":"38312:3:125"},"nativeSrc":"38312:15:125","nodeType":"YulFunctionCall","src":"38312:15:125"},{"name":"value_8","nativeSrc":"38329:7:125","nodeType":"YulIdentifier","src":"38329:7:125"}],"functionName":{"name":"mstore","nativeSrc":"38305:6:125","nodeType":"YulIdentifier","src":"38305:6:125"},"nativeSrc":"38305:32:125","nodeType":"YulFunctionCall","src":"38305:32:125"},"nativeSrc":"38305:32:125","nodeType":"YulExpressionStatement","src":"38305:32:125"},{"nativeSrc":"38346:16:125","nodeType":"YulVariableDeclaration","src":"38346:16:125","value":{"kind":"number","nativeSrc":"38361:1:125","nodeType":"YulLiteral","src":"38361:1:125","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"38350:7:125","nodeType":"YulTypedName","src":"38350:7:125","type":""}]},{"nativeSrc":"38371:37:125","nodeType":"YulAssignment","src":"38371:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38392:9:125","nodeType":"YulIdentifier","src":"38392:9:125"},{"kind":"number","nativeSrc":"38403:3:125","nodeType":"YulLiteral","src":"38403:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"38388:3:125","nodeType":"YulIdentifier","src":"38388:3:125"},"nativeSrc":"38388:19:125","nodeType":"YulFunctionCall","src":"38388:19:125"}],"functionName":{"name":"mload","nativeSrc":"38382:5:125","nodeType":"YulIdentifier","src":"38382:5:125"},"nativeSrc":"38382:26:125","nodeType":"YulFunctionCall","src":"38382:26:125"},"variableNames":[{"name":"value_9","nativeSrc":"38371:7:125","nodeType":"YulIdentifier","src":"38371:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"38428:5:125","nodeType":"YulIdentifier","src":"38428:5:125"},{"kind":"number","nativeSrc":"38435:3:125","nodeType":"YulLiteral","src":"38435:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"38424:3:125","nodeType":"YulIdentifier","src":"38424:3:125"},"nativeSrc":"38424:15:125","nodeType":"YulFunctionCall","src":"38424:15:125"},{"name":"value_9","nativeSrc":"38441:7:125","nodeType":"YulIdentifier","src":"38441:7:125"}],"functionName":{"name":"mstore","nativeSrc":"38417:6:125","nodeType":"YulIdentifier","src":"38417:6:125"},"nativeSrc":"38417:32:125","nodeType":"YulFunctionCall","src":"38417:32:125"},"nativeSrc":"38417:32:125","nodeType":"YulExpressionStatement","src":"38417:32:125"},{"nativeSrc":"38458:17:125","nodeType":"YulVariableDeclaration","src":"38458:17:125","value":{"kind":"number","nativeSrc":"38474:1:125","nodeType":"YulLiteral","src":"38474:1:125","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"38462:8:125","nodeType":"YulTypedName","src":"38462:8:125","type":""}]},{"nativeSrc":"38484:38:125","nodeType":"YulAssignment","src":"38484:38:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38506:9:125","nodeType":"YulIdentifier","src":"38506:9:125"},{"kind":"number","nativeSrc":"38517:3:125","nodeType":"YulLiteral","src":"38517:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"38502:3:125","nodeType":"YulIdentifier","src":"38502:3:125"},"nativeSrc":"38502:19:125","nodeType":"YulFunctionCall","src":"38502:19:125"}],"functionName":{"name":"mload","nativeSrc":"38496:5:125","nodeType":"YulIdentifier","src":"38496:5:125"},"nativeSrc":"38496:26:125","nodeType":"YulFunctionCall","src":"38496:26:125"},"variableNames":[{"name":"value_10","nativeSrc":"38484:8:125","nodeType":"YulIdentifier","src":"38484:8:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"38542:5:125","nodeType":"YulIdentifier","src":"38542:5:125"},{"kind":"number","nativeSrc":"38549:3:125","nodeType":"YulLiteral","src":"38549:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"38538:3:125","nodeType":"YulIdentifier","src":"38538:3:125"},"nativeSrc":"38538:15:125","nodeType":"YulFunctionCall","src":"38538:15:125"},{"name":"value_10","nativeSrc":"38555:8:125","nodeType":"YulIdentifier","src":"38555:8:125"}],"functionName":{"name":"mstore","nativeSrc":"38531:6:125","nodeType":"YulIdentifier","src":"38531:6:125"},"nativeSrc":"38531:33:125","nodeType":"YulFunctionCall","src":"38531:33:125"},"nativeSrc":"38531:33:125","nodeType":"YulExpressionStatement","src":"38531:33:125"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"38584:5:125","nodeType":"YulIdentifier","src":"38584:5:125"},{"kind":"number","nativeSrc":"38591:3:125","nodeType":"YulLiteral","src":"38591:3:125","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"38580:3:125","nodeType":"YulIdentifier","src":"38580:3:125"},"nativeSrc":"38580:15:125","nodeType":"YulFunctionCall","src":"38580:15:125"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38630:9:125","nodeType":"YulIdentifier","src":"38630:9:125"},{"kind":"number","nativeSrc":"38641:3:125","nodeType":"YulLiteral","src":"38641:3:125","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"38626:3:125","nodeType":"YulIdentifier","src":"38626:3:125"},"nativeSrc":"38626:19:125","nodeType":"YulFunctionCall","src":"38626:19:125"}],"functionName":{"name":"abi_decode_uint40_fromMemory","nativeSrc":"38597:28:125","nodeType":"YulIdentifier","src":"38597:28:125"},"nativeSrc":"38597:49:125","nodeType":"YulFunctionCall","src":"38597:49:125"}],"functionName":{"name":"mstore","nativeSrc":"38573:6:125","nodeType":"YulIdentifier","src":"38573:6:125"},"nativeSrc":"38573:74:125","nodeType":"YulFunctionCall","src":"38573:74:125"},"nativeSrc":"38573:74:125","nodeType":"YulExpressionStatement","src":"38573:74:125"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"38667:5:125","nodeType":"YulIdentifier","src":"38667:5:125"},{"kind":"number","nativeSrc":"38674:3:125","nodeType":"YulLiteral","src":"38674:3:125","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"38663:3:125","nodeType":"YulIdentifier","src":"38663:3:125"},"nativeSrc":"38663:15:125","nodeType":"YulFunctionCall","src":"38663:15:125"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38713:9:125","nodeType":"YulIdentifier","src":"38713:9:125"},{"kind":"number","nativeSrc":"38724:3:125","nodeType":"YulLiteral","src":"38724:3:125","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"38709:3:125","nodeType":"YulIdentifier","src":"38709:3:125"},"nativeSrc":"38709:19:125","nodeType":"YulFunctionCall","src":"38709:19:125"}],"functionName":{"name":"abi_decode_uint40_fromMemory","nativeSrc":"38680:28:125","nodeType":"YulIdentifier","src":"38680:28:125"},"nativeSrc":"38680:49:125","nodeType":"YulFunctionCall","src":"38680:49:125"}],"functionName":{"name":"mstore","nativeSrc":"38656:6:125","nodeType":"YulIdentifier","src":"38656:6:125"},"nativeSrc":"38656:74:125","nodeType":"YulFunctionCall","src":"38656:74:125"},"nativeSrc":"38656:74:125","nodeType":"YulExpressionStatement","src":"38656:74:125"},{"nativeSrc":"38739:15:125","nodeType":"YulAssignment","src":"38739:15:125","value":{"name":"value","nativeSrc":"38749:5:125","nodeType":"YulIdentifier","src":"38749:5:125"},"variableNames":[{"name":"value0","nativeSrc":"38739:6:125","nodeType":"YulIdentifier","src":"38739:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptr_fromMemory","nativeSrc":"37219:1541:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37294:9:125","nodeType":"YulTypedName","src":"37294:9:125","type":""},{"name":"dataEnd","nativeSrc":"37305:7:125","nodeType":"YulTypedName","src":"37305:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"37317:6:125","nodeType":"YulTypedName","src":"37317:6:125","type":""}],"src":"37219:1541:125"},{"body":{"nativeSrc":"38797:95:125","nodeType":"YulBlock","src":"38797:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"38814:1:125","nodeType":"YulLiteral","src":"38814:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"38821:3:125","nodeType":"YulLiteral","src":"38821:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"38826:10:125","nodeType":"YulLiteral","src":"38826:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"38817:3:125","nodeType":"YulIdentifier","src":"38817:3:125"},"nativeSrc":"38817:20:125","nodeType":"YulFunctionCall","src":"38817:20:125"}],"functionName":{"name":"mstore","nativeSrc":"38807:6:125","nodeType":"YulIdentifier","src":"38807:6:125"},"nativeSrc":"38807:31:125","nodeType":"YulFunctionCall","src":"38807:31:125"},"nativeSrc":"38807:31:125","nodeType":"YulExpressionStatement","src":"38807:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"38854:1:125","nodeType":"YulLiteral","src":"38854:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"38857:4:125","nodeType":"YulLiteral","src":"38857:4:125","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"38847:6:125","nodeType":"YulIdentifier","src":"38847:6:125"},"nativeSrc":"38847:15:125","nodeType":"YulFunctionCall","src":"38847:15:125"},"nativeSrc":"38847:15:125","nodeType":"YulExpressionStatement","src":"38847:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"38878:1:125","nodeType":"YulLiteral","src":"38878:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"38881:4:125","nodeType":"YulLiteral","src":"38881:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"38871:6:125","nodeType":"YulIdentifier","src":"38871:6:125"},"nativeSrc":"38871:15:125","nodeType":"YulFunctionCall","src":"38871:15:125"},"nativeSrc":"38871:15:125","nodeType":"YulExpressionStatement","src":"38871:15:125"}]},"name":"panic_error_0x32","nativeSrc":"38765:127:125","nodeType":"YulFunctionDefinition","src":"38765:127:125"},{"body":{"nativeSrc":"38991:427:125","nodeType":"YulBlock","src":"38991:427:125","statements":[{"nativeSrc":"39001:51:125","nodeType":"YulVariableDeclaration","src":"39001:51:125","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"39040:11:125","nodeType":"YulIdentifier","src":"39040:11:125"}],"functionName":{"name":"calldataload","nativeSrc":"39027:12:125","nodeType":"YulIdentifier","src":"39027:12:125"},"nativeSrc":"39027:25:125","nodeType":"YulFunctionCall","src":"39027:25:125"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"39005:18:125","nodeType":"YulTypedName","src":"39005:18:125","type":""}]},{"body":{"nativeSrc":"39141:16:125","nodeType":"YulBlock","src":"39141:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"39150:1:125","nodeType":"YulLiteral","src":"39150:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"39153:1:125","nodeType":"YulLiteral","src":"39153:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"39143:6:125","nodeType":"YulIdentifier","src":"39143:6:125"},"nativeSrc":"39143:12:125","nodeType":"YulFunctionCall","src":"39143:12:125"},"nativeSrc":"39143:12:125","nodeType":"YulExpressionStatement","src":"39143:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"39075:18:125","nodeType":"YulIdentifier","src":"39075:18:125"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"39103:12:125","nodeType":"YulIdentifier","src":"39103:12:125"},"nativeSrc":"39103:14:125","nodeType":"YulFunctionCall","src":"39103:14:125"},{"name":"base_ref","nativeSrc":"39119:8:125","nodeType":"YulIdentifier","src":"39119:8:125"}],"functionName":{"name":"sub","nativeSrc":"39099:3:125","nodeType":"YulIdentifier","src":"39099:3:125"},"nativeSrc":"39099:29:125","nodeType":"YulFunctionCall","src":"39099:29:125"},{"arguments":[{"kind":"number","nativeSrc":"39134:2:125","nodeType":"YulLiteral","src":"39134:2:125","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"39130:3:125","nodeType":"YulIdentifier","src":"39130:3:125"},"nativeSrc":"39130:7:125","nodeType":"YulFunctionCall","src":"39130:7:125"}],"functionName":{"name":"add","nativeSrc":"39095:3:125","nodeType":"YulIdentifier","src":"39095:3:125"},"nativeSrc":"39095:43:125","nodeType":"YulFunctionCall","src":"39095:43:125"}],"functionName":{"name":"slt","nativeSrc":"39071:3:125","nodeType":"YulIdentifier","src":"39071:3:125"},"nativeSrc":"39071:68:125","nodeType":"YulFunctionCall","src":"39071:68:125"}],"functionName":{"name":"iszero","nativeSrc":"39064:6:125","nodeType":"YulIdentifier","src":"39064:6:125"},"nativeSrc":"39064:76:125","nodeType":"YulFunctionCall","src":"39064:76:125"},"nativeSrc":"39061:96:125","nodeType":"YulIf","src":"39061:96:125"},{"nativeSrc":"39166:47:125","nodeType":"YulVariableDeclaration","src":"39166:47:125","value":{"arguments":[{"name":"base_ref","nativeSrc":"39184:8:125","nodeType":"YulIdentifier","src":"39184:8:125"},{"name":"rel_offset_of_tail","nativeSrc":"39194:18:125","nodeType":"YulIdentifier","src":"39194:18:125"}],"functionName":{"name":"add","nativeSrc":"39180:3:125","nodeType":"YulIdentifier","src":"39180:3:125"},"nativeSrc":"39180:33:125","nodeType":"YulFunctionCall","src":"39180:33:125"},"variables":[{"name":"addr_1","nativeSrc":"39170:6:125","nodeType":"YulTypedName","src":"39170:6:125","type":""}]},{"nativeSrc":"39222:30:125","nodeType":"YulAssignment","src":"39222:30:125","value":{"arguments":[{"name":"addr_1","nativeSrc":"39245:6:125","nodeType":"YulIdentifier","src":"39245:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"39232:12:125","nodeType":"YulIdentifier","src":"39232:12:125"},"nativeSrc":"39232:20:125","nodeType":"YulFunctionCall","src":"39232:20:125"},"variableNames":[{"name":"length","nativeSrc":"39222:6:125","nodeType":"YulIdentifier","src":"39222:6:125"}]},{"body":{"nativeSrc":"39295:16:125","nodeType":"YulBlock","src":"39295:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"39304:1:125","nodeType":"YulLiteral","src":"39304:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"39307:1:125","nodeType":"YulLiteral","src":"39307:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"39297:6:125","nodeType":"YulIdentifier","src":"39297:6:125"},"nativeSrc":"39297:12:125","nodeType":"YulFunctionCall","src":"39297:12:125"},"nativeSrc":"39297:12:125","nodeType":"YulExpressionStatement","src":"39297:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"39267:6:125","nodeType":"YulIdentifier","src":"39267:6:125"},{"kind":"number","nativeSrc":"39275:18:125","nodeType":"YulLiteral","src":"39275:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"39264:2:125","nodeType":"YulIdentifier","src":"39264:2:125"},"nativeSrc":"39264:30:125","nodeType":"YulFunctionCall","src":"39264:30:125"},"nativeSrc":"39261:50:125","nodeType":"YulIf","src":"39261:50:125"},{"nativeSrc":"39320:25:125","nodeType":"YulAssignment","src":"39320:25:125","value":{"arguments":[{"name":"addr_1","nativeSrc":"39332:6:125","nodeType":"YulIdentifier","src":"39332:6:125"},{"kind":"number","nativeSrc":"39340:4:125","nodeType":"YulLiteral","src":"39340:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"39328:3:125","nodeType":"YulIdentifier","src":"39328:3:125"},"nativeSrc":"39328:17:125","nodeType":"YulFunctionCall","src":"39328:17:125"},"variableNames":[{"name":"addr","nativeSrc":"39320:4:125","nodeType":"YulIdentifier","src":"39320:4:125"}]},{"body":{"nativeSrc":"39396:16:125","nodeType":"YulBlock","src":"39396:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"39405:1:125","nodeType":"YulLiteral","src":"39405:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"39408:1:125","nodeType":"YulLiteral","src":"39408:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"39398:6:125","nodeType":"YulIdentifier","src":"39398:6:125"},"nativeSrc":"39398:12:125","nodeType":"YulFunctionCall","src":"39398:12:125"},"nativeSrc":"39398:12:125","nodeType":"YulExpressionStatement","src":"39398:12:125"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"39361:4:125","nodeType":"YulIdentifier","src":"39361:4:125"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"39371:12:125","nodeType":"YulIdentifier","src":"39371:12:125"},"nativeSrc":"39371:14:125","nodeType":"YulFunctionCall","src":"39371:14:125"},{"name":"length","nativeSrc":"39387:6:125","nodeType":"YulIdentifier","src":"39387:6:125"}],"functionName":{"name":"sub","nativeSrc":"39367:3:125","nodeType":"YulIdentifier","src":"39367:3:125"},"nativeSrc":"39367:27:125","nodeType":"YulFunctionCall","src":"39367:27:125"}],"functionName":{"name":"sgt","nativeSrc":"39357:3:125","nodeType":"YulIdentifier","src":"39357:3:125"},"nativeSrc":"39357:38:125","nodeType":"YulFunctionCall","src":"39357:38:125"},"nativeSrc":"39354:58:125","nodeType":"YulIf","src":"39354:58:125"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"38897:521:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"38948:8:125","nodeType":"YulTypedName","src":"38948:8:125","type":""},{"name":"ptr_to_tail","nativeSrc":"38958:11:125","nodeType":"YulTypedName","src":"38958:11:125","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"38974:4:125","nodeType":"YulTypedName","src":"38974:4:125","type":""},{"name":"length","nativeSrc":"38980:6:125","nodeType":"YulTypedName","src":"38980:6:125","type":""}],"src":"38897:521:125"},{"body":{"nativeSrc":"39584:163:125","nodeType":"YulBlock","src":"39584:163:125","statements":[{"nativeSrc":"39594:26:125","nodeType":"YulAssignment","src":"39594:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"39606:9:125","nodeType":"YulIdentifier","src":"39606:9:125"},{"kind":"number","nativeSrc":"39617:2:125","nodeType":"YulLiteral","src":"39617:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"39602:3:125","nodeType":"YulIdentifier","src":"39602:3:125"},"nativeSrc":"39602:18:125","nodeType":"YulFunctionCall","src":"39602:18:125"},"variableNames":[{"name":"tail","nativeSrc":"39594:4:125","nodeType":"YulIdentifier","src":"39594:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"39658:6:125","nodeType":"YulIdentifier","src":"39658:6:125"},{"name":"headStart","nativeSrc":"39666:9:125","nodeType":"YulIdentifier","src":"39666:9:125"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"39629:28:125","nodeType":"YulIdentifier","src":"39629:28:125"},"nativeSrc":"39629:47:125","nodeType":"YulFunctionCall","src":"39629:47:125"},"nativeSrc":"39629:47:125","nodeType":"YulExpressionStatement","src":"39629:47:125"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"39714:6:125","nodeType":"YulIdentifier","src":"39714:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"39726:9:125","nodeType":"YulIdentifier","src":"39726:9:125"},{"kind":"number","nativeSrc":"39737:2:125","nodeType":"YulLiteral","src":"39737:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"39722:3:125","nodeType":"YulIdentifier","src":"39722:3:125"},"nativeSrc":"39722:18:125","nodeType":"YulFunctionCall","src":"39722:18:125"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"39685:28:125","nodeType":"YulIdentifier","src":"39685:28:125"},"nativeSrc":"39685:56:125","nodeType":"YulFunctionCall","src":"39685:56:125"},"nativeSrc":"39685:56:125","nodeType":"YulExpressionStatement","src":"39685:56:125"}]},"name":"abi_encode_tuple_t_enum$_TargetStatus_$38330_t_enum$_TargetStatus_$38330__to_t_uint8_t_uint8__fromStack_reversed","nativeSrc":"39423:324:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39545:9:125","nodeType":"YulTypedName","src":"39545:9:125","type":""},{"name":"value1","nativeSrc":"39556:6:125","nodeType":"YulTypedName","src":"39556:6:125","type":""},{"name":"value0","nativeSrc":"39564:6:125","nodeType":"YulTypedName","src":"39564:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39575:4:125","nodeType":"YulTypedName","src":"39575:4:125","type":""}],"src":"39423:324:125"},{"body":{"nativeSrc":"39857:180:125","nodeType":"YulBlock","src":"39857:180:125","statements":[{"body":{"nativeSrc":"39903:16:125","nodeType":"YulBlock","src":"39903:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"39912:1:125","nodeType":"YulLiteral","src":"39912:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"39915:1:125","nodeType":"YulLiteral","src":"39915:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"39905:6:125","nodeType":"YulIdentifier","src":"39905:6:125"},"nativeSrc":"39905:12:125","nodeType":"YulFunctionCall","src":"39905:12:125"},"nativeSrc":"39905:12:125","nodeType":"YulExpressionStatement","src":"39905:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"39878:7:125","nodeType":"YulIdentifier","src":"39878:7:125"},{"name":"headStart","nativeSrc":"39887:9:125","nodeType":"YulIdentifier","src":"39887:9:125"}],"functionName":{"name":"sub","nativeSrc":"39874:3:125","nodeType":"YulIdentifier","src":"39874:3:125"},"nativeSrc":"39874:23:125","nodeType":"YulFunctionCall","src":"39874:23:125"},{"kind":"number","nativeSrc":"39899:2:125","nodeType":"YulLiteral","src":"39899:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"39870:3:125","nodeType":"YulIdentifier","src":"39870:3:125"},"nativeSrc":"39870:32:125","nodeType":"YulFunctionCall","src":"39870:32:125"},"nativeSrc":"39867:52:125","nodeType":"YulIf","src":"39867:52:125"},{"nativeSrc":"39928:29:125","nodeType":"YulVariableDeclaration","src":"39928:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"39947:9:125","nodeType":"YulIdentifier","src":"39947:9:125"}],"functionName":{"name":"mload","nativeSrc":"39941:5:125","nodeType":"YulIdentifier","src":"39941:5:125"},"nativeSrc":"39941:16:125","nodeType":"YulFunctionCall","src":"39941:16:125"},"variables":[{"name":"value","nativeSrc":"39932:5:125","nodeType":"YulTypedName","src":"39932:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"40001:5:125","nodeType":"YulIdentifier","src":"40001:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"39966:34:125","nodeType":"YulIdentifier","src":"39966:34:125"},"nativeSrc":"39966:41:125","nodeType":"YulFunctionCall","src":"39966:41:125"},"nativeSrc":"39966:41:125","nodeType":"YulExpressionStatement","src":"39966:41:125"},{"nativeSrc":"40016:15:125","nodeType":"YulAssignment","src":"40016:15:125","value":{"name":"value","nativeSrc":"40026:5:125","nodeType":"YulIdentifier","src":"40026:5:125"},"variableNames":[{"name":"value0","nativeSrc":"40016:6:125","nodeType":"YulIdentifier","src":"40016:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory","nativeSrc":"39752:285:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39823:9:125","nodeType":"YulTypedName","src":"39823:9:125","type":""},{"name":"dataEnd","nativeSrc":"39834:7:125","nodeType":"YulTypedName","src":"39834:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"39846:6:125","nodeType":"YulTypedName","src":"39846:6:125","type":""}],"src":"39752:285:125"},{"body":{"nativeSrc":"40111:306:125","nodeType":"YulBlock","src":"40111:306:125","statements":[{"nativeSrc":"40121:10:125","nodeType":"YulAssignment","src":"40121:10:125","value":{"kind":"number","nativeSrc":"40130:1:125","nodeType":"YulLiteral","src":"40130:1:125","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"40121:5:125","nodeType":"YulIdentifier","src":"40121:5:125"}]},{"nativeSrc":"40140:13:125","nodeType":"YulAssignment","src":"40140:13:125","value":{"name":"_base","nativeSrc":"40148:5:125","nodeType":"YulIdentifier","src":"40148:5:125"},"variableNames":[{"name":"base","nativeSrc":"40140:4:125","nodeType":"YulIdentifier","src":"40140:4:125"}]},{"body":{"nativeSrc":"40198:213:125","nodeType":"YulBlock","src":"40198:213:125","statements":[{"body":{"nativeSrc":"40240:22:125","nodeType":"YulBlock","src":"40240:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"40242:16:125","nodeType":"YulIdentifier","src":"40242:16:125"},"nativeSrc":"40242:18:125","nodeType":"YulFunctionCall","src":"40242:18:125"},"nativeSrc":"40242:18:125","nodeType":"YulExpressionStatement","src":"40242:18:125"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"40218:4:125","nodeType":"YulIdentifier","src":"40218:4:125"},{"arguments":[{"name":"max","nativeSrc":"40228:3:125","nodeType":"YulIdentifier","src":"40228:3:125"},{"name":"base","nativeSrc":"40233:4:125","nodeType":"YulIdentifier","src":"40233:4:125"}],"functionName":{"name":"div","nativeSrc":"40224:3:125","nodeType":"YulIdentifier","src":"40224:3:125"},"nativeSrc":"40224:14:125","nodeType":"YulFunctionCall","src":"40224:14:125"}],"functionName":{"name":"gt","nativeSrc":"40215:2:125","nodeType":"YulIdentifier","src":"40215:2:125"},"nativeSrc":"40215:24:125","nodeType":"YulFunctionCall","src":"40215:24:125"},"nativeSrc":"40212:50:125","nodeType":"YulIf","src":"40212:50:125"},{"body":{"nativeSrc":"40295:29:125","nodeType":"YulBlock","src":"40295:29:125","statements":[{"nativeSrc":"40297:25:125","nodeType":"YulAssignment","src":"40297:25:125","value":{"arguments":[{"name":"power","nativeSrc":"40310:5:125","nodeType":"YulIdentifier","src":"40310:5:125"},{"name":"base","nativeSrc":"40317:4:125","nodeType":"YulIdentifier","src":"40317:4:125"}],"functionName":{"name":"mul","nativeSrc":"40306:3:125","nodeType":"YulIdentifier","src":"40306:3:125"},"nativeSrc":"40306:16:125","nodeType":"YulFunctionCall","src":"40306:16:125"},"variableNames":[{"name":"power","nativeSrc":"40297:5:125","nodeType":"YulIdentifier","src":"40297:5:125"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"40282:8:125","nodeType":"YulIdentifier","src":"40282:8:125"},{"kind":"number","nativeSrc":"40292:1:125","nodeType":"YulLiteral","src":"40292:1:125","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"40278:3:125","nodeType":"YulIdentifier","src":"40278:3:125"},"nativeSrc":"40278:16:125","nodeType":"YulFunctionCall","src":"40278:16:125"},"nativeSrc":"40275:49:125","nodeType":"YulIf","src":"40275:49:125"},{"nativeSrc":"40337:23:125","nodeType":"YulAssignment","src":"40337:23:125","value":{"arguments":[{"name":"base","nativeSrc":"40349:4:125","nodeType":"YulIdentifier","src":"40349:4:125"},{"name":"base","nativeSrc":"40355:4:125","nodeType":"YulIdentifier","src":"40355:4:125"}],"functionName":{"name":"mul","nativeSrc":"40345:3:125","nodeType":"YulIdentifier","src":"40345:3:125"},"nativeSrc":"40345:15:125","nodeType":"YulFunctionCall","src":"40345:15:125"},"variableNames":[{"name":"base","nativeSrc":"40337:4:125","nodeType":"YulIdentifier","src":"40337:4:125"}]},{"nativeSrc":"40373:28:125","nodeType":"YulAssignment","src":"40373:28:125","value":{"arguments":[{"kind":"number","nativeSrc":"40389:1:125","nodeType":"YulLiteral","src":"40389:1:125","type":"","value":"1"},{"name":"exponent","nativeSrc":"40392:8:125","nodeType":"YulIdentifier","src":"40392:8:125"}],"functionName":{"name":"shr","nativeSrc":"40385:3:125","nodeType":"YulIdentifier","src":"40385:3:125"},"nativeSrc":"40385:16:125","nodeType":"YulFunctionCall","src":"40385:16:125"},"variableNames":[{"name":"exponent","nativeSrc":"40373:8:125","nodeType":"YulIdentifier","src":"40373:8:125"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"40173:8:125","nodeType":"YulIdentifier","src":"40173:8:125"},{"kind":"number","nativeSrc":"40183:1:125","nodeType":"YulLiteral","src":"40183:1:125","type":"","value":"1"}],"functionName":{"name":"gt","nativeSrc":"40170:2:125","nodeType":"YulIdentifier","src":"40170:2:125"},"nativeSrc":"40170:15:125","nodeType":"YulFunctionCall","src":"40170:15:125"},"nativeSrc":"40162:249:125","nodeType":"YulForLoop","post":{"nativeSrc":"40186:3:125","nodeType":"YulBlock","src":"40186:3:125","statements":[]},"pre":{"nativeSrc":"40166:3:125","nodeType":"YulBlock","src":"40166:3:125","statements":[]},"src":"40162:249:125"}]},"name":"checked_exp_helper","nativeSrc":"40042:375:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"_base","nativeSrc":"40070:5:125","nodeType":"YulTypedName","src":"40070:5:125","type":""},{"name":"exponent","nativeSrc":"40077:8:125","nodeType":"YulTypedName","src":"40077:8:125","type":""},{"name":"max","nativeSrc":"40087:3:125","nodeType":"YulTypedName","src":"40087:3:125","type":""}],"returnVariables":[{"name":"power","nativeSrc":"40095:5:125","nodeType":"YulTypedName","src":"40095:5:125","type":""},{"name":"base","nativeSrc":"40102:4:125","nodeType":"YulTypedName","src":"40102:4:125","type":""}],"src":"40042:375:125"},{"body":{"nativeSrc":"40481:843:125","nodeType":"YulBlock","src":"40481:843:125","statements":[{"body":{"nativeSrc":"40519:52:125","nodeType":"YulBlock","src":"40519:52:125","statements":[{"nativeSrc":"40533:10:125","nodeType":"YulAssignment","src":"40533:10:125","value":{"kind":"number","nativeSrc":"40542:1:125","nodeType":"YulLiteral","src":"40542:1:125","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"40533:5:125","nodeType":"YulIdentifier","src":"40533:5:125"}]},{"nativeSrc":"40556:5:125","nodeType":"YulLeave","src":"40556:5:125"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"40501:8:125","nodeType":"YulIdentifier","src":"40501:8:125"}],"functionName":{"name":"iszero","nativeSrc":"40494:6:125","nodeType":"YulIdentifier","src":"40494:6:125"},"nativeSrc":"40494:16:125","nodeType":"YulFunctionCall","src":"40494:16:125"},"nativeSrc":"40491:80:125","nodeType":"YulIf","src":"40491:80:125"},{"body":{"nativeSrc":"40604:52:125","nodeType":"YulBlock","src":"40604:52:125","statements":[{"nativeSrc":"40618:10:125","nodeType":"YulAssignment","src":"40618:10:125","value":{"kind":"number","nativeSrc":"40627:1:125","nodeType":"YulLiteral","src":"40627:1:125","type":"","value":"0"},"variableNames":[{"name":"power","nativeSrc":"40618:5:125","nodeType":"YulIdentifier","src":"40618:5:125"}]},{"nativeSrc":"40641:5:125","nodeType":"YulLeave","src":"40641:5:125"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"40590:4:125","nodeType":"YulIdentifier","src":"40590:4:125"}],"functionName":{"name":"iszero","nativeSrc":"40583:6:125","nodeType":"YulIdentifier","src":"40583:6:125"},"nativeSrc":"40583:12:125","nodeType":"YulFunctionCall","src":"40583:12:125"},"nativeSrc":"40580:76:125","nodeType":"YulIf","src":"40580:76:125"},{"cases":[{"body":{"nativeSrc":"40692:52:125","nodeType":"YulBlock","src":"40692:52:125","statements":[{"nativeSrc":"40706:10:125","nodeType":"YulAssignment","src":"40706:10:125","value":{"kind":"number","nativeSrc":"40715:1:125","nodeType":"YulLiteral","src":"40715:1:125","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"40706:5:125","nodeType":"YulIdentifier","src":"40706:5:125"}]},{"nativeSrc":"40729:5:125","nodeType":"YulLeave","src":"40729:5:125"}]},"nativeSrc":"40685:59:125","nodeType":"YulCase","src":"40685:59:125","value":{"kind":"number","nativeSrc":"40690:1:125","nodeType":"YulLiteral","src":"40690:1:125","type":"","value":"1"}},{"body":{"nativeSrc":"40760:167:125","nodeType":"YulBlock","src":"40760:167:125","statements":[{"body":{"nativeSrc":"40795:22:125","nodeType":"YulBlock","src":"40795:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"40797:16:125","nodeType":"YulIdentifier","src":"40797:16:125"},"nativeSrc":"40797:18:125","nodeType":"YulFunctionCall","src":"40797:18:125"},"nativeSrc":"40797:18:125","nodeType":"YulExpressionStatement","src":"40797:18:125"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"40780:8:125","nodeType":"YulIdentifier","src":"40780:8:125"},{"kind":"number","nativeSrc":"40790:3:125","nodeType":"YulLiteral","src":"40790:3:125","type":"","value":"255"}],"functionName":{"name":"gt","nativeSrc":"40777:2:125","nodeType":"YulIdentifier","src":"40777:2:125"},"nativeSrc":"40777:17:125","nodeType":"YulFunctionCall","src":"40777:17:125"},"nativeSrc":"40774:43:125","nodeType":"YulIf","src":"40774:43:125"},{"nativeSrc":"40830:25:125","nodeType":"YulAssignment","src":"40830:25:125","value":{"arguments":[{"name":"exponent","nativeSrc":"40843:8:125","nodeType":"YulIdentifier","src":"40843:8:125"},{"kind":"number","nativeSrc":"40853:1:125","nodeType":"YulLiteral","src":"40853:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"40839:3:125","nodeType":"YulIdentifier","src":"40839:3:125"},"nativeSrc":"40839:16:125","nodeType":"YulFunctionCall","src":"40839:16:125"},"variableNames":[{"name":"power","nativeSrc":"40830:5:125","nodeType":"YulIdentifier","src":"40830:5:125"}]},{"nativeSrc":"40868:11:125","nodeType":"YulVariableDeclaration","src":"40868:11:125","value":{"kind":"number","nativeSrc":"40878:1:125","nodeType":"YulLiteral","src":"40878:1:125","type":"","value":"0"},"variables":[{"name":"_1","nativeSrc":"40872:2:125","nodeType":"YulTypedName","src":"40872:2:125","type":""}]},{"nativeSrc":"40892:7:125","nodeType":"YulAssignment","src":"40892:7:125","value":{"kind":"number","nativeSrc":"40898:1:125","nodeType":"YulLiteral","src":"40898:1:125","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"40892:2:125","nodeType":"YulIdentifier","src":"40892:2:125"}]},{"nativeSrc":"40912:5:125","nodeType":"YulLeave","src":"40912:5:125"}]},"nativeSrc":"40753:174:125","nodeType":"YulCase","src":"40753:174:125","value":{"kind":"number","nativeSrc":"40758:1:125","nodeType":"YulLiteral","src":"40758:1:125","type":"","value":"2"}}],"expression":{"name":"base","nativeSrc":"40672:4:125","nodeType":"YulIdentifier","src":"40672:4:125"},"nativeSrc":"40665:262:125","nodeType":"YulSwitch","src":"40665:262:125"},{"body":{"nativeSrc":"41025:114:125","nodeType":"YulBlock","src":"41025:114:125","statements":[{"nativeSrc":"41039:28:125","nodeType":"YulAssignment","src":"41039:28:125","value":{"arguments":[{"name":"base","nativeSrc":"41052:4:125","nodeType":"YulIdentifier","src":"41052:4:125"},{"name":"exponent","nativeSrc":"41058:8:125","nodeType":"YulIdentifier","src":"41058:8:125"}],"functionName":{"name":"exp","nativeSrc":"41048:3:125","nodeType":"YulIdentifier","src":"41048:3:125"},"nativeSrc":"41048:19:125","nodeType":"YulFunctionCall","src":"41048:19:125"},"variableNames":[{"name":"power","nativeSrc":"41039:5:125","nodeType":"YulIdentifier","src":"41039:5:125"}]},{"nativeSrc":"41080:11:125","nodeType":"YulVariableDeclaration","src":"41080:11:125","value":{"kind":"number","nativeSrc":"41090:1:125","nodeType":"YulLiteral","src":"41090:1:125","type":"","value":"0"},"variables":[{"name":"_2","nativeSrc":"41084:2:125","nodeType":"YulTypedName","src":"41084:2:125","type":""}]},{"nativeSrc":"41104:7:125","nodeType":"YulAssignment","src":"41104:7:125","value":{"kind":"number","nativeSrc":"41110:1:125","nodeType":"YulLiteral","src":"41110:1:125","type":"","value":"0"},"variableNames":[{"name":"_2","nativeSrc":"41104:2:125","nodeType":"YulIdentifier","src":"41104:2:125"}]},{"nativeSrc":"41124:5:125","nodeType":"YulLeave","src":"41124:5:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"base","nativeSrc":"40949:4:125","nodeType":"YulIdentifier","src":"40949:4:125"},{"kind":"number","nativeSrc":"40955:2:125","nodeType":"YulLiteral","src":"40955:2:125","type":"","value":"11"}],"functionName":{"name":"lt","nativeSrc":"40946:2:125","nodeType":"YulIdentifier","src":"40946:2:125"},"nativeSrc":"40946:12:125","nodeType":"YulFunctionCall","src":"40946:12:125"},{"arguments":[{"name":"exponent","nativeSrc":"40963:8:125","nodeType":"YulIdentifier","src":"40963:8:125"},{"kind":"number","nativeSrc":"40973:2:125","nodeType":"YulLiteral","src":"40973:2:125","type":"","value":"78"}],"functionName":{"name":"lt","nativeSrc":"40960:2:125","nodeType":"YulIdentifier","src":"40960:2:125"},"nativeSrc":"40960:16:125","nodeType":"YulFunctionCall","src":"40960:16:125"}],"functionName":{"name":"and","nativeSrc":"40942:3:125","nodeType":"YulIdentifier","src":"40942:3:125"},"nativeSrc":"40942:35:125","nodeType":"YulFunctionCall","src":"40942:35:125"},{"arguments":[{"arguments":[{"name":"base","nativeSrc":"40986:4:125","nodeType":"YulIdentifier","src":"40986:4:125"},{"kind":"number","nativeSrc":"40992:3:125","nodeType":"YulLiteral","src":"40992:3:125","type":"","value":"307"}],"functionName":{"name":"lt","nativeSrc":"40983:2:125","nodeType":"YulIdentifier","src":"40983:2:125"},"nativeSrc":"40983:13:125","nodeType":"YulFunctionCall","src":"40983:13:125"},{"arguments":[{"name":"exponent","nativeSrc":"41001:8:125","nodeType":"YulIdentifier","src":"41001:8:125"},{"kind":"number","nativeSrc":"41011:2:125","nodeType":"YulLiteral","src":"41011:2:125","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"40998:2:125","nodeType":"YulIdentifier","src":"40998:2:125"},"nativeSrc":"40998:16:125","nodeType":"YulFunctionCall","src":"40998:16:125"}],"functionName":{"name":"and","nativeSrc":"40979:3:125","nodeType":"YulIdentifier","src":"40979:3:125"},"nativeSrc":"40979:36:125","nodeType":"YulFunctionCall","src":"40979:36:125"}],"functionName":{"name":"or","nativeSrc":"40939:2:125","nodeType":"YulIdentifier","src":"40939:2:125"},"nativeSrc":"40939:77:125","nodeType":"YulFunctionCall","src":"40939:77:125"},"nativeSrc":"40936:203:125","nodeType":"YulIf","src":"40936:203:125"},{"nativeSrc":"41148:65:125","nodeType":"YulVariableDeclaration","src":"41148:65:125","value":{"arguments":[{"name":"base","nativeSrc":"41190:4:125","nodeType":"YulIdentifier","src":"41190:4:125"},{"name":"exponent","nativeSrc":"41196:8:125","nodeType":"YulIdentifier","src":"41196:8:125"},{"arguments":[{"kind":"number","nativeSrc":"41210:1:125","nodeType":"YulLiteral","src":"41210:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"41206:3:125","nodeType":"YulIdentifier","src":"41206:3:125"},"nativeSrc":"41206:6:125","nodeType":"YulFunctionCall","src":"41206:6:125"}],"functionName":{"name":"checked_exp_helper","nativeSrc":"41171:18:125","nodeType":"YulIdentifier","src":"41171:18:125"},"nativeSrc":"41171:42:125","nodeType":"YulFunctionCall","src":"41171:42:125"},"variables":[{"name":"power_1","nativeSrc":"41152:7:125","nodeType":"YulTypedName","src":"41152:7:125","type":""},{"name":"base_1","nativeSrc":"41161:6:125","nodeType":"YulTypedName","src":"41161:6:125","type":""}]},{"body":{"nativeSrc":"41258:22:125","nodeType":"YulBlock","src":"41258:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"41260:16:125","nodeType":"YulIdentifier","src":"41260:16:125"},"nativeSrc":"41260:18:125","nodeType":"YulFunctionCall","src":"41260:18:125"},"nativeSrc":"41260:18:125","nodeType":"YulExpressionStatement","src":"41260:18:125"}]},"condition":{"arguments":[{"name":"power_1","nativeSrc":"41228:7:125","nodeType":"YulIdentifier","src":"41228:7:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"41245:1:125","nodeType":"YulLiteral","src":"41245:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"41241:3:125","nodeType":"YulIdentifier","src":"41241:3:125"},"nativeSrc":"41241:6:125","nodeType":"YulFunctionCall","src":"41241:6:125"},{"name":"base_1","nativeSrc":"41249:6:125","nodeType":"YulIdentifier","src":"41249:6:125"}],"functionName":{"name":"div","nativeSrc":"41237:3:125","nodeType":"YulIdentifier","src":"41237:3:125"},"nativeSrc":"41237:19:125","nodeType":"YulFunctionCall","src":"41237:19:125"}],"functionName":{"name":"gt","nativeSrc":"41225:2:125","nodeType":"YulIdentifier","src":"41225:2:125"},"nativeSrc":"41225:32:125","nodeType":"YulFunctionCall","src":"41225:32:125"},"nativeSrc":"41222:58:125","nodeType":"YulIf","src":"41222:58:125"},{"nativeSrc":"41289:29:125","nodeType":"YulAssignment","src":"41289:29:125","value":{"arguments":[{"name":"power_1","nativeSrc":"41302:7:125","nodeType":"YulIdentifier","src":"41302:7:125"},{"name":"base_1","nativeSrc":"41311:6:125","nodeType":"YulIdentifier","src":"41311:6:125"}],"functionName":{"name":"mul","nativeSrc":"41298:3:125","nodeType":"YulIdentifier","src":"41298:3:125"},"nativeSrc":"41298:20:125","nodeType":"YulFunctionCall","src":"41298:20:125"},"variableNames":[{"name":"power","nativeSrc":"41289:5:125","nodeType":"YulIdentifier","src":"41289:5:125"}]}]},"name":"checked_exp_unsigned","nativeSrc":"40422:902:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"40452:4:125","nodeType":"YulTypedName","src":"40452:4:125","type":""},{"name":"exponent","nativeSrc":"40458:8:125","nodeType":"YulTypedName","src":"40458:8:125","type":""}],"returnVariables":[{"name":"power","nativeSrc":"40471:5:125","nodeType":"YulTypedName","src":"40471:5:125","type":""}],"src":"40422:902:125"},{"body":{"nativeSrc":"41397:72:125","nodeType":"YulBlock","src":"41397:72:125","statements":[{"nativeSrc":"41407:56:125","nodeType":"YulAssignment","src":"41407:56:125","value":{"arguments":[{"name":"base","nativeSrc":"41437:4:125","nodeType":"YulIdentifier","src":"41437:4:125"},{"arguments":[{"name":"exponent","nativeSrc":"41447:8:125","nodeType":"YulIdentifier","src":"41447:8:125"},{"kind":"number","nativeSrc":"41457:4:125","nodeType":"YulLiteral","src":"41457:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"41443:3:125","nodeType":"YulIdentifier","src":"41443:3:125"},"nativeSrc":"41443:19:125","nodeType":"YulFunctionCall","src":"41443:19:125"}],"functionName":{"name":"checked_exp_unsigned","nativeSrc":"41416:20:125","nodeType":"YulIdentifier","src":"41416:20:125"},"nativeSrc":"41416:47:125","nodeType":"YulFunctionCall","src":"41416:47:125"},"variableNames":[{"name":"power","nativeSrc":"41407:5:125","nodeType":"YulIdentifier","src":"41407:5:125"}]}]},"name":"checked_exp_t_uint256_t_uint8","nativeSrc":"41329:140:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"41368:4:125","nodeType":"YulTypedName","src":"41368:4:125","type":""},{"name":"exponent","nativeSrc":"41374:8:125","nodeType":"YulTypedName","src":"41374:8:125","type":""}],"returnVariables":[{"name":"power","nativeSrc":"41387:5:125","nodeType":"YulTypedName","src":"41387:5:125","type":""}],"src":"41329:140:125"},{"body":{"nativeSrc":"41579:180:125","nodeType":"YulBlock","src":"41579:180:125","statements":[{"body":{"nativeSrc":"41625:16:125","nodeType":"YulBlock","src":"41625:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"41634:1:125","nodeType":"YulLiteral","src":"41634:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"41637:1:125","nodeType":"YulLiteral","src":"41637:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"41627:6:125","nodeType":"YulIdentifier","src":"41627:6:125"},"nativeSrc":"41627:12:125","nodeType":"YulFunctionCall","src":"41627:12:125"},"nativeSrc":"41627:12:125","nodeType":"YulExpressionStatement","src":"41627:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"41600:7:125","nodeType":"YulIdentifier","src":"41600:7:125"},{"name":"headStart","nativeSrc":"41609:9:125","nodeType":"YulIdentifier","src":"41609:9:125"}],"functionName":{"name":"sub","nativeSrc":"41596:3:125","nodeType":"YulIdentifier","src":"41596:3:125"},"nativeSrc":"41596:23:125","nodeType":"YulFunctionCall","src":"41596:23:125"},{"kind":"number","nativeSrc":"41621:2:125","nodeType":"YulLiteral","src":"41621:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"41592:3:125","nodeType":"YulIdentifier","src":"41592:3:125"},"nativeSrc":"41592:32:125","nodeType":"YulFunctionCall","src":"41592:32:125"},"nativeSrc":"41589:52:125","nodeType":"YulIf","src":"41589:52:125"},{"nativeSrc":"41650:29:125","nodeType":"YulVariableDeclaration","src":"41650:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"41669:9:125","nodeType":"YulIdentifier","src":"41669:9:125"}],"functionName":{"name":"mload","nativeSrc":"41663:5:125","nodeType":"YulIdentifier","src":"41663:5:125"},"nativeSrc":"41663:16:125","nodeType":"YulFunctionCall","src":"41663:16:125"},"variables":[{"name":"value","nativeSrc":"41654:5:125","nodeType":"YulTypedName","src":"41654:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"41723:5:125","nodeType":"YulIdentifier","src":"41723:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"41688:34:125","nodeType":"YulIdentifier","src":"41688:34:125"},"nativeSrc":"41688:41:125","nodeType":"YulFunctionCall","src":"41688:41:125"},"nativeSrc":"41688:41:125","nodeType":"YulExpressionStatement","src":"41688:41:125"},{"nativeSrc":"41738:15:125","nodeType":"YulAssignment","src":"41738:15:125","value":{"name":"value","nativeSrc":"41748:5:125","nodeType":"YulIdentifier","src":"41748:5:125"},"variableNames":[{"name":"value0","nativeSrc":"41738:6:125","nodeType":"YulIdentifier","src":"41738:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IAccessManager_$22178_fromMemory","nativeSrc":"41474:285:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"41545:9:125","nodeType":"YulTypedName","src":"41545:9:125","type":""},{"name":"dataEnd","nativeSrc":"41556:7:125","nodeType":"YulTypedName","src":"41556:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"41568:6:125","nodeType":"YulTypedName","src":"41568:6:125","type":""}],"src":"41474:285:125"},{"body":{"nativeSrc":"41919:241:125","nodeType":"YulBlock","src":"41919:241:125","statements":[{"nativeSrc":"41929:26:125","nodeType":"YulAssignment","src":"41929:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"41941:9:125","nodeType":"YulIdentifier","src":"41941:9:125"},{"kind":"number","nativeSrc":"41952:2:125","nodeType":"YulLiteral","src":"41952:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"41937:3:125","nodeType":"YulIdentifier","src":"41937:3:125"},"nativeSrc":"41937:18:125","nodeType":"YulFunctionCall","src":"41937:18:125"},"variableNames":[{"name":"tail","nativeSrc":"41929:4:125","nodeType":"YulIdentifier","src":"41929:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"41971:9:125","nodeType":"YulIdentifier","src":"41971:9:125"},{"arguments":[{"name":"value0","nativeSrc":"41986:6:125","nodeType":"YulIdentifier","src":"41986:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42002:3:125","nodeType":"YulLiteral","src":"42002:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"42007:1:125","nodeType":"YulLiteral","src":"42007:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"41998:3:125","nodeType":"YulIdentifier","src":"41998:3:125"},"nativeSrc":"41998:11:125","nodeType":"YulFunctionCall","src":"41998:11:125"},{"kind":"number","nativeSrc":"42011:1:125","nodeType":"YulLiteral","src":"42011:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"41994:3:125","nodeType":"YulIdentifier","src":"41994:3:125"},"nativeSrc":"41994:19:125","nodeType":"YulFunctionCall","src":"41994:19:125"}],"functionName":{"name":"and","nativeSrc":"41982:3:125","nodeType":"YulIdentifier","src":"41982:3:125"},"nativeSrc":"41982:32:125","nodeType":"YulFunctionCall","src":"41982:32:125"}],"functionName":{"name":"mstore","nativeSrc":"41964:6:125","nodeType":"YulIdentifier","src":"41964:6:125"},"nativeSrc":"41964:51:125","nodeType":"YulFunctionCall","src":"41964:51:125"},"nativeSrc":"41964:51:125","nodeType":"YulExpressionStatement","src":"41964:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42035:9:125","nodeType":"YulIdentifier","src":"42035:9:125"},{"kind":"number","nativeSrc":"42046:2:125","nodeType":"YulLiteral","src":"42046:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"42031:3:125","nodeType":"YulIdentifier","src":"42031:3:125"},"nativeSrc":"42031:18:125","nodeType":"YulFunctionCall","src":"42031:18:125"},{"arguments":[{"name":"value1","nativeSrc":"42055:6:125","nodeType":"YulIdentifier","src":"42055:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42071:3:125","nodeType":"YulLiteral","src":"42071:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"42076:1:125","nodeType":"YulLiteral","src":"42076:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"42067:3:125","nodeType":"YulIdentifier","src":"42067:3:125"},"nativeSrc":"42067:11:125","nodeType":"YulFunctionCall","src":"42067:11:125"},{"kind":"number","nativeSrc":"42080:1:125","nodeType":"YulLiteral","src":"42080:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"42063:3:125","nodeType":"YulIdentifier","src":"42063:3:125"},"nativeSrc":"42063:19:125","nodeType":"YulFunctionCall","src":"42063:19:125"}],"functionName":{"name":"and","nativeSrc":"42051:3:125","nodeType":"YulIdentifier","src":"42051:3:125"},"nativeSrc":"42051:32:125","nodeType":"YulFunctionCall","src":"42051:32:125"}],"functionName":{"name":"mstore","nativeSrc":"42024:6:125","nodeType":"YulIdentifier","src":"42024:6:125"},"nativeSrc":"42024:60:125","nodeType":"YulFunctionCall","src":"42024:60:125"},"nativeSrc":"42024:60:125","nodeType":"YulExpressionStatement","src":"42024:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42104:9:125","nodeType":"YulIdentifier","src":"42104:9:125"},{"kind":"number","nativeSrc":"42115:2:125","nodeType":"YulLiteral","src":"42115:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"42100:3:125","nodeType":"YulIdentifier","src":"42100:3:125"},"nativeSrc":"42100:18:125","nodeType":"YulFunctionCall","src":"42100:18:125"},{"arguments":[{"name":"value2","nativeSrc":"42124:6:125","nodeType":"YulIdentifier","src":"42124:6:125"},{"arguments":[{"kind":"number","nativeSrc":"42136:3:125","nodeType":"YulLiteral","src":"42136:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"42141:10:125","nodeType":"YulLiteral","src":"42141:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"42132:3:125","nodeType":"YulIdentifier","src":"42132:3:125"},"nativeSrc":"42132:20:125","nodeType":"YulFunctionCall","src":"42132:20:125"}],"functionName":{"name":"and","nativeSrc":"42120:3:125","nodeType":"YulIdentifier","src":"42120:3:125"},"nativeSrc":"42120:33:125","nodeType":"YulFunctionCall","src":"42120:33:125"}],"functionName":{"name":"mstore","nativeSrc":"42093:6:125","nodeType":"YulIdentifier","src":"42093:6:125"},"nativeSrc":"42093:61:125","nodeType":"YulFunctionCall","src":"42093:61:125"},"nativeSrc":"42093:61:125","nodeType":"YulExpressionStatement","src":"42093:61:125"}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"41764:396:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"41872:9:125","nodeType":"YulTypedName","src":"41872:9:125","type":""},{"name":"value2","nativeSrc":"41883:6:125","nodeType":"YulTypedName","src":"41883:6:125","type":""},{"name":"value1","nativeSrc":"41891:6:125","nodeType":"YulTypedName","src":"41891:6:125","type":""},{"name":"value0","nativeSrc":"41899:6:125","nodeType":"YulTypedName","src":"41899:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"41910:4:125","nodeType":"YulTypedName","src":"41910:4:125","type":""}],"src":"41764:396:125"},{"body":{"nativeSrc":"42259:283:125","nodeType":"YulBlock","src":"42259:283:125","statements":[{"body":{"nativeSrc":"42305:16:125","nodeType":"YulBlock","src":"42305:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"42314:1:125","nodeType":"YulLiteral","src":"42314:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"42317:1:125","nodeType":"YulLiteral","src":"42317:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"42307:6:125","nodeType":"YulIdentifier","src":"42307:6:125"},"nativeSrc":"42307:12:125","nodeType":"YulFunctionCall","src":"42307:12:125"},"nativeSrc":"42307:12:125","nodeType":"YulExpressionStatement","src":"42307:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"42280:7:125","nodeType":"YulIdentifier","src":"42280:7:125"},{"name":"headStart","nativeSrc":"42289:9:125","nodeType":"YulIdentifier","src":"42289:9:125"}],"functionName":{"name":"sub","nativeSrc":"42276:3:125","nodeType":"YulIdentifier","src":"42276:3:125"},"nativeSrc":"42276:23:125","nodeType":"YulFunctionCall","src":"42276:23:125"},{"kind":"number","nativeSrc":"42301:2:125","nodeType":"YulLiteral","src":"42301:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"42272:3:125","nodeType":"YulIdentifier","src":"42272:3:125"},"nativeSrc":"42272:32:125","nodeType":"YulFunctionCall","src":"42272:32:125"},"nativeSrc":"42269:52:125","nodeType":"YulIf","src":"42269:52:125"},{"nativeSrc":"42330:29:125","nodeType":"YulVariableDeclaration","src":"42330:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"42349:9:125","nodeType":"YulIdentifier","src":"42349:9:125"}],"functionName":{"name":"mload","nativeSrc":"42343:5:125","nodeType":"YulIdentifier","src":"42343:5:125"},"nativeSrc":"42343:16:125","nodeType":"YulFunctionCall","src":"42343:16:125"},"variables":[{"name":"value","nativeSrc":"42334:5:125","nodeType":"YulTypedName","src":"42334:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"42390:5:125","nodeType":"YulIdentifier","src":"42390:5:125"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"42368:21:125","nodeType":"YulIdentifier","src":"42368:21:125"},"nativeSrc":"42368:28:125","nodeType":"YulFunctionCall","src":"42368:28:125"},"nativeSrc":"42368:28:125","nodeType":"YulExpressionStatement","src":"42368:28:125"},{"nativeSrc":"42405:15:125","nodeType":"YulAssignment","src":"42405:15:125","value":{"name":"value","nativeSrc":"42415:5:125","nodeType":"YulIdentifier","src":"42415:5:125"},"variableNames":[{"name":"value0","nativeSrc":"42405:6:125","nodeType":"YulIdentifier","src":"42405:6:125"}]},{"nativeSrc":"42429:40:125","nodeType":"YulVariableDeclaration","src":"42429:40:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42454:9:125","nodeType":"YulIdentifier","src":"42454:9:125"},{"kind":"number","nativeSrc":"42465:2:125","nodeType":"YulLiteral","src":"42465:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"42450:3:125","nodeType":"YulIdentifier","src":"42450:3:125"},"nativeSrc":"42450:18:125","nodeType":"YulFunctionCall","src":"42450:18:125"}],"functionName":{"name":"mload","nativeSrc":"42444:5:125","nodeType":"YulIdentifier","src":"42444:5:125"},"nativeSrc":"42444:25:125","nodeType":"YulFunctionCall","src":"42444:25:125"},"variables":[{"name":"value_1","nativeSrc":"42433:7:125","nodeType":"YulTypedName","src":"42433:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"42502:7:125","nodeType":"YulIdentifier","src":"42502:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"42478:23:125","nodeType":"YulIdentifier","src":"42478:23:125"},"nativeSrc":"42478:32:125","nodeType":"YulFunctionCall","src":"42478:32:125"},"nativeSrc":"42478:32:125","nodeType":"YulExpressionStatement","src":"42478:32:125"},{"nativeSrc":"42519:17:125","nodeType":"YulAssignment","src":"42519:17:125","value":{"name":"value_1","nativeSrc":"42529:7:125","nodeType":"YulIdentifier","src":"42529:7:125"},"variableNames":[{"name":"value1","nativeSrc":"42519:6:125","nodeType":"YulIdentifier","src":"42519:6:125"}]}]},"name":"abi_decode_tuple_t_boolt_uint32_fromMemory","nativeSrc":"42165:377:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"42217:9:125","nodeType":"YulTypedName","src":"42217:9:125","type":""},{"name":"dataEnd","nativeSrc":"42228:7:125","nodeType":"YulTypedName","src":"42228:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"42240:6:125","nodeType":"YulTypedName","src":"42240:6:125","type":""},{"name":"value1","nativeSrc":"42248:6:125","nodeType":"YulTypedName","src":"42248:6:125","type":""}],"src":"42165:377:125"},{"body":{"nativeSrc":"42672:152:125","nodeType":"YulBlock","src":"42672:152:125","statements":[{"nativeSrc":"42682:26:125","nodeType":"YulAssignment","src":"42682:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"42694:9:125","nodeType":"YulIdentifier","src":"42694:9:125"},{"kind":"number","nativeSrc":"42705:2:125","nodeType":"YulLiteral","src":"42705:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"42690:3:125","nodeType":"YulIdentifier","src":"42690:3:125"},"nativeSrc":"42690:18:125","nodeType":"YulFunctionCall","src":"42690:18:125"},"variableNames":[{"name":"tail","nativeSrc":"42682:4:125","nodeType":"YulIdentifier","src":"42682:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"42724:9:125","nodeType":"YulIdentifier","src":"42724:9:125"},{"name":"value0","nativeSrc":"42735:6:125","nodeType":"YulIdentifier","src":"42735:6:125"}],"functionName":{"name":"mstore","nativeSrc":"42717:6:125","nodeType":"YulIdentifier","src":"42717:6:125"},"nativeSrc":"42717:25:125","nodeType":"YulFunctionCall","src":"42717:25:125"},"nativeSrc":"42717:25:125","nodeType":"YulExpressionStatement","src":"42717:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42762:9:125","nodeType":"YulIdentifier","src":"42762:9:125"},{"kind":"number","nativeSrc":"42773:2:125","nodeType":"YulLiteral","src":"42773:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"42758:3:125","nodeType":"YulIdentifier","src":"42758:3:125"},"nativeSrc":"42758:18:125","nodeType":"YulFunctionCall","src":"42758:18:125"},{"arguments":[{"name":"value1","nativeSrc":"42782:6:125","nodeType":"YulIdentifier","src":"42782:6:125"},{"kind":"number","nativeSrc":"42790:26:125","nodeType":"YulLiteral","src":"42790:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"42778:3:125","nodeType":"YulIdentifier","src":"42778:3:125"},"nativeSrc":"42778:39:125","nodeType":"YulFunctionCall","src":"42778:39:125"}],"functionName":{"name":"mstore","nativeSrc":"42751:6:125","nodeType":"YulIdentifier","src":"42751:6:125"},"nativeSrc":"42751:67:125","nodeType":"YulFunctionCall","src":"42751:67:125"},"nativeSrc":"42751:67:125","nodeType":"YulExpressionStatement","src":"42751:67:125"}]},"name":"abi_encode_tuple_t_int256_t_uint96__to_t_int256_t_uint96__fromStack_reversed","nativeSrc":"42547:277:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"42633:9:125","nodeType":"YulTypedName","src":"42633:9:125","type":""},{"name":"value1","nativeSrc":"42644:6:125","nodeType":"YulTypedName","src":"42644:6:125","type":""},{"name":"value0","nativeSrc":"42652:6:125","nodeType":"YulTypedName","src":"42652:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"42663:4:125","nodeType":"YulTypedName","src":"42663:4:125","type":""}],"src":"42547:277:125"},{"body":{"nativeSrc":"42986:214:125","nodeType":"YulBlock","src":"42986:214:125","statements":[{"nativeSrc":"42996:26:125","nodeType":"YulAssignment","src":"42996:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"43008:9:125","nodeType":"YulIdentifier","src":"43008:9:125"},{"kind":"number","nativeSrc":"43019:2:125","nodeType":"YulLiteral","src":"43019:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"43004:3:125","nodeType":"YulIdentifier","src":"43004:3:125"},"nativeSrc":"43004:18:125","nodeType":"YulFunctionCall","src":"43004:18:125"},"variableNames":[{"name":"tail","nativeSrc":"42996:4:125","nodeType":"YulIdentifier","src":"42996:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"43038:9:125","nodeType":"YulIdentifier","src":"43038:9:125"},{"name":"value0","nativeSrc":"43049:6:125","nodeType":"YulIdentifier","src":"43049:6:125"}],"functionName":{"name":"mstore","nativeSrc":"43031:6:125","nodeType":"YulIdentifier","src":"43031:6:125"},"nativeSrc":"43031:25:125","nodeType":"YulFunctionCall","src":"43031:25:125"},"nativeSrc":"43031:25:125","nodeType":"YulExpressionStatement","src":"43031:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"43076:9:125","nodeType":"YulIdentifier","src":"43076:9:125"},{"kind":"number","nativeSrc":"43087:2:125","nodeType":"YulLiteral","src":"43087:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"43072:3:125","nodeType":"YulIdentifier","src":"43072:3:125"},"nativeSrc":"43072:18:125","nodeType":"YulFunctionCall","src":"43072:18:125"},{"arguments":[{"name":"value1","nativeSrc":"43096:6:125","nodeType":"YulIdentifier","src":"43096:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"43112:3:125","nodeType":"YulLiteral","src":"43112:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"43117:1:125","nodeType":"YulLiteral","src":"43117:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"43108:3:125","nodeType":"YulIdentifier","src":"43108:3:125"},"nativeSrc":"43108:11:125","nodeType":"YulFunctionCall","src":"43108:11:125"},{"kind":"number","nativeSrc":"43121:1:125","nodeType":"YulLiteral","src":"43121:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"43104:3:125","nodeType":"YulIdentifier","src":"43104:3:125"},"nativeSrc":"43104:19:125","nodeType":"YulFunctionCall","src":"43104:19:125"}],"functionName":{"name":"and","nativeSrc":"43092:3:125","nodeType":"YulIdentifier","src":"43092:3:125"},"nativeSrc":"43092:32:125","nodeType":"YulFunctionCall","src":"43092:32:125"}],"functionName":{"name":"mstore","nativeSrc":"43065:6:125","nodeType":"YulIdentifier","src":"43065:6:125"},"nativeSrc":"43065:60:125","nodeType":"YulFunctionCall","src":"43065:60:125"},"nativeSrc":"43065:60:125","nodeType":"YulExpressionStatement","src":"43065:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"43145:9:125","nodeType":"YulIdentifier","src":"43145:9:125"},{"kind":"number","nativeSrc":"43156:2:125","nodeType":"YulLiteral","src":"43156:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"43141:3:125","nodeType":"YulIdentifier","src":"43141:3:125"},"nativeSrc":"43141:18:125","nodeType":"YulFunctionCall","src":"43141:18:125"},{"arguments":[{"name":"value2","nativeSrc":"43165:6:125","nodeType":"YulIdentifier","src":"43165:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"43181:3:125","nodeType":"YulLiteral","src":"43181:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"43186:1:125","nodeType":"YulLiteral","src":"43186:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"43177:3:125","nodeType":"YulIdentifier","src":"43177:3:125"},"nativeSrc":"43177:11:125","nodeType":"YulFunctionCall","src":"43177:11:125"},{"kind":"number","nativeSrc":"43190:1:125","nodeType":"YulLiteral","src":"43190:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"43173:3:125","nodeType":"YulIdentifier","src":"43173:3:125"},"nativeSrc":"43173:19:125","nodeType":"YulFunctionCall","src":"43173:19:125"}],"functionName":{"name":"and","nativeSrc":"43161:3:125","nodeType":"YulIdentifier","src":"43161:3:125"},"nativeSrc":"43161:32:125","nodeType":"YulFunctionCall","src":"43161:32:125"}],"functionName":{"name":"mstore","nativeSrc":"43134:6:125","nodeType":"YulIdentifier","src":"43134:6:125"},"nativeSrc":"43134:60:125","nodeType":"YulFunctionCall","src":"43134:60:125"},"nativeSrc":"43134:60:125","nodeType":"YulExpressionStatement","src":"43134:60:125"}]},"name":"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed","nativeSrc":"42829:371:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"42939:9:125","nodeType":"YulTypedName","src":"42939:9:125","type":""},{"name":"value2","nativeSrc":"42950:6:125","nodeType":"YulTypedName","src":"42950:6:125","type":""},{"name":"value1","nativeSrc":"42958:6:125","nodeType":"YulTypedName","src":"42958:6:125","type":""},{"name":"value0","nativeSrc":"42966:6:125","nodeType":"YulTypedName","src":"42966:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"42977:4:125","nodeType":"YulTypedName","src":"42977:4:125","type":""}],"src":"42829:371:125"},{"body":{"nativeSrc":"43342:145:125","nodeType":"YulBlock","src":"43342:145:125","statements":[{"nativeSrc":"43352:26:125","nodeType":"YulAssignment","src":"43352:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"43364:9:125","nodeType":"YulIdentifier","src":"43364:9:125"},{"kind":"number","nativeSrc":"43375:2:125","nodeType":"YulLiteral","src":"43375:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"43360:3:125","nodeType":"YulIdentifier","src":"43360:3:125"},"nativeSrc":"43360:18:125","nodeType":"YulFunctionCall","src":"43360:18:125"},"variableNames":[{"name":"tail","nativeSrc":"43352:4:125","nodeType":"YulIdentifier","src":"43352:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"43394:9:125","nodeType":"YulIdentifier","src":"43394:9:125"},{"arguments":[{"name":"value0","nativeSrc":"43409:6:125","nodeType":"YulIdentifier","src":"43409:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"43425:3:125","nodeType":"YulLiteral","src":"43425:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"43430:1:125","nodeType":"YulLiteral","src":"43430:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"43421:3:125","nodeType":"YulIdentifier","src":"43421:3:125"},"nativeSrc":"43421:11:125","nodeType":"YulFunctionCall","src":"43421:11:125"},{"kind":"number","nativeSrc":"43434:1:125","nodeType":"YulLiteral","src":"43434:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"43417:3:125","nodeType":"YulIdentifier","src":"43417:3:125"},"nativeSrc":"43417:19:125","nodeType":"YulFunctionCall","src":"43417:19:125"}],"functionName":{"name":"and","nativeSrc":"43405:3:125","nodeType":"YulIdentifier","src":"43405:3:125"},"nativeSrc":"43405:32:125","nodeType":"YulFunctionCall","src":"43405:32:125"}],"functionName":{"name":"mstore","nativeSrc":"43387:6:125","nodeType":"YulIdentifier","src":"43387:6:125"},"nativeSrc":"43387:51:125","nodeType":"YulFunctionCall","src":"43387:51:125"},"nativeSrc":"43387:51:125","nodeType":"YulExpressionStatement","src":"43387:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"43458:9:125","nodeType":"YulIdentifier","src":"43458:9:125"},{"kind":"number","nativeSrc":"43469:2:125","nodeType":"YulLiteral","src":"43469:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"43454:3:125","nodeType":"YulIdentifier","src":"43454:3:125"},"nativeSrc":"43454:18:125","nodeType":"YulFunctionCall","src":"43454:18:125"},{"name":"value1","nativeSrc":"43474:6:125","nodeType":"YulIdentifier","src":"43474:6:125"}],"functionName":{"name":"mstore","nativeSrc":"43447:6:125","nodeType":"YulIdentifier","src":"43447:6:125"},"nativeSrc":"43447:34:125","nodeType":"YulFunctionCall","src":"43447:34:125"},"nativeSrc":"43447:34:125","nodeType":"YulExpressionStatement","src":"43447:34:125"}]},"name":"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"43205:282:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"43303:9:125","nodeType":"YulTypedName","src":"43303:9:125","type":""},{"name":"value1","nativeSrc":"43314:6:125","nodeType":"YulTypedName","src":"43314:6:125","type":""},{"name":"value0","nativeSrc":"43322:6:125","nodeType":"YulTypedName","src":"43322:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"43333:4:125","nodeType":"YulTypedName","src":"43333:4:125","type":""}],"src":"43205:282:125"},{"body":{"nativeSrc":"43570:167:125","nodeType":"YulBlock","src":"43570:167:125","statements":[{"body":{"nativeSrc":"43616:16:125","nodeType":"YulBlock","src":"43616:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"43625:1:125","nodeType":"YulLiteral","src":"43625:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"43628:1:125","nodeType":"YulLiteral","src":"43628:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"43618:6:125","nodeType":"YulIdentifier","src":"43618:6:125"},"nativeSrc":"43618:12:125","nodeType":"YulFunctionCall","src":"43618:12:125"},"nativeSrc":"43618:12:125","nodeType":"YulExpressionStatement","src":"43618:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"43591:7:125","nodeType":"YulIdentifier","src":"43591:7:125"},{"name":"headStart","nativeSrc":"43600:9:125","nodeType":"YulIdentifier","src":"43600:9:125"}],"functionName":{"name":"sub","nativeSrc":"43587:3:125","nodeType":"YulIdentifier","src":"43587:3:125"},"nativeSrc":"43587:23:125","nodeType":"YulFunctionCall","src":"43587:23:125"},{"kind":"number","nativeSrc":"43612:2:125","nodeType":"YulLiteral","src":"43612:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"43583:3:125","nodeType":"YulIdentifier","src":"43583:3:125"},"nativeSrc":"43583:32:125","nodeType":"YulFunctionCall","src":"43583:32:125"},"nativeSrc":"43580:52:125","nodeType":"YulIf","src":"43580:52:125"},{"nativeSrc":"43641:29:125","nodeType":"YulVariableDeclaration","src":"43641:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"43660:9:125","nodeType":"YulIdentifier","src":"43660:9:125"}],"functionName":{"name":"mload","nativeSrc":"43654:5:125","nodeType":"YulIdentifier","src":"43654:5:125"},"nativeSrc":"43654:16:125","nodeType":"YulFunctionCall","src":"43654:16:125"},"variables":[{"name":"value","nativeSrc":"43645:5:125","nodeType":"YulTypedName","src":"43645:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"43701:5:125","nodeType":"YulIdentifier","src":"43701:5:125"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"43679:21:125","nodeType":"YulIdentifier","src":"43679:21:125"},"nativeSrc":"43679:28:125","nodeType":"YulFunctionCall","src":"43679:28:125"},"nativeSrc":"43679:28:125","nodeType":"YulExpressionStatement","src":"43679:28:125"},{"nativeSrc":"43716:15:125","nodeType":"YulAssignment","src":"43716:15:125","value":{"name":"value","nativeSrc":"43726:5:125","nodeType":"YulIdentifier","src":"43726:5:125"},"variableNames":[{"name":"value0","nativeSrc":"43716:6:125","nodeType":"YulIdentifier","src":"43716:6:125"}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nativeSrc":"43492:245:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"43536:9:125","nodeType":"YulTypedName","src":"43536:9:125","type":""},{"name":"dataEnd","nativeSrc":"43547:7:125","nodeType":"YulTypedName","src":"43547:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"43559:6:125","nodeType":"YulTypedName","src":"43559:6:125","type":""}],"src":"43492:245:125"},{"body":{"nativeSrc":"43871:145:125","nodeType":"YulBlock","src":"43871:145:125","statements":[{"nativeSrc":"43881:26:125","nodeType":"YulAssignment","src":"43881:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"43893:9:125","nodeType":"YulIdentifier","src":"43893:9:125"},{"kind":"number","nativeSrc":"43904:2:125","nodeType":"YulLiteral","src":"43904:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"43889:3:125","nodeType":"YulIdentifier","src":"43889:3:125"},"nativeSrc":"43889:18:125","nodeType":"YulFunctionCall","src":"43889:18:125"},"variableNames":[{"name":"tail","nativeSrc":"43881:4:125","nodeType":"YulIdentifier","src":"43881:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"43923:9:125","nodeType":"YulIdentifier","src":"43923:9:125"},{"arguments":[{"name":"value0","nativeSrc":"43938:6:125","nodeType":"YulIdentifier","src":"43938:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"43954:3:125","nodeType":"YulLiteral","src":"43954:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"43959:1:125","nodeType":"YulLiteral","src":"43959:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"43950:3:125","nodeType":"YulIdentifier","src":"43950:3:125"},"nativeSrc":"43950:11:125","nodeType":"YulFunctionCall","src":"43950:11:125"},{"kind":"number","nativeSrc":"43963:1:125","nodeType":"YulLiteral","src":"43963:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"43946:3:125","nodeType":"YulIdentifier","src":"43946:3:125"},"nativeSrc":"43946:19:125","nodeType":"YulFunctionCall","src":"43946:19:125"}],"functionName":{"name":"and","nativeSrc":"43934:3:125","nodeType":"YulIdentifier","src":"43934:3:125"},"nativeSrc":"43934:32:125","nodeType":"YulFunctionCall","src":"43934:32:125"}],"functionName":{"name":"mstore","nativeSrc":"43916:6:125","nodeType":"YulIdentifier","src":"43916:6:125"},"nativeSrc":"43916:51:125","nodeType":"YulFunctionCall","src":"43916:51:125"},"nativeSrc":"43916:51:125","nodeType":"YulExpressionStatement","src":"43916:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"43987:9:125","nodeType":"YulIdentifier","src":"43987:9:125"},{"kind":"number","nativeSrc":"43998:2:125","nodeType":"YulLiteral","src":"43998:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"43983:3:125","nodeType":"YulIdentifier","src":"43983:3:125"},"nativeSrc":"43983:18:125","nodeType":"YulFunctionCall","src":"43983:18:125"},{"name":"value1","nativeSrc":"44003:6:125","nodeType":"YulIdentifier","src":"44003:6:125"}],"functionName":{"name":"mstore","nativeSrc":"43976:6:125","nodeType":"YulIdentifier","src":"43976:6:125"},"nativeSrc":"43976:34:125","nodeType":"YulFunctionCall","src":"43976:34:125"},"nativeSrc":"43976:34:125","nodeType":"YulExpressionStatement","src":"43976:34:125"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"43742:274:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"43832:9:125","nodeType":"YulTypedName","src":"43832:9:125","type":""},{"name":"value1","nativeSrc":"43843:6:125","nodeType":"YulTypedName","src":"43843:6:125","type":""},{"name":"value0","nativeSrc":"43851:6:125","nodeType":"YulTypedName","src":"43851:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"43862:4:125","nodeType":"YulTypedName","src":"43862:4:125","type":""}],"src":"43742:274:125"},{"body":{"nativeSrc":"44186:171:125","nodeType":"YulBlock","src":"44186:171:125","statements":[{"nativeSrc":"44196:26:125","nodeType":"YulAssignment","src":"44196:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"44208:9:125","nodeType":"YulIdentifier","src":"44208:9:125"},{"kind":"number","nativeSrc":"44219:2:125","nodeType":"YulLiteral","src":"44219:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"44204:3:125","nodeType":"YulIdentifier","src":"44204:3:125"},"nativeSrc":"44204:18:125","nodeType":"YulFunctionCall","src":"44204:18:125"},"variableNames":[{"name":"tail","nativeSrc":"44196:4:125","nodeType":"YulIdentifier","src":"44196:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"44238:9:125","nodeType":"YulIdentifier","src":"44238:9:125"},{"arguments":[{"name":"value0","nativeSrc":"44253:6:125","nodeType":"YulIdentifier","src":"44253:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"44269:3:125","nodeType":"YulLiteral","src":"44269:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"44274:1:125","nodeType":"YulLiteral","src":"44274:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"44265:3:125","nodeType":"YulIdentifier","src":"44265:3:125"},"nativeSrc":"44265:11:125","nodeType":"YulFunctionCall","src":"44265:11:125"},{"kind":"number","nativeSrc":"44278:1:125","nodeType":"YulLiteral","src":"44278:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"44261:3:125","nodeType":"YulIdentifier","src":"44261:3:125"},"nativeSrc":"44261:19:125","nodeType":"YulFunctionCall","src":"44261:19:125"}],"functionName":{"name":"and","nativeSrc":"44249:3:125","nodeType":"YulIdentifier","src":"44249:3:125"},"nativeSrc":"44249:32:125","nodeType":"YulFunctionCall","src":"44249:32:125"}],"functionName":{"name":"mstore","nativeSrc":"44231:6:125","nodeType":"YulIdentifier","src":"44231:6:125"},"nativeSrc":"44231:51:125","nodeType":"YulFunctionCall","src":"44231:51:125"},"nativeSrc":"44231:51:125","nodeType":"YulExpressionStatement","src":"44231:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"44302:9:125","nodeType":"YulIdentifier","src":"44302:9:125"},{"kind":"number","nativeSrc":"44313:2:125","nodeType":"YulLiteral","src":"44313:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"44298:3:125","nodeType":"YulIdentifier","src":"44298:3:125"},"nativeSrc":"44298:18:125","nodeType":"YulFunctionCall","src":"44298:18:125"},{"arguments":[{"name":"value1","nativeSrc":"44322:6:125","nodeType":"YulIdentifier","src":"44322:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"44338:3:125","nodeType":"YulLiteral","src":"44338:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"44343:1:125","nodeType":"YulLiteral","src":"44343:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"44334:3:125","nodeType":"YulIdentifier","src":"44334:3:125"},"nativeSrc":"44334:11:125","nodeType":"YulFunctionCall","src":"44334:11:125"},{"kind":"number","nativeSrc":"44347:1:125","nodeType":"YulLiteral","src":"44347:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"44330:3:125","nodeType":"YulIdentifier","src":"44330:3:125"},"nativeSrc":"44330:19:125","nodeType":"YulFunctionCall","src":"44330:19:125"}],"functionName":{"name":"and","nativeSrc":"44318:3:125","nodeType":"YulIdentifier","src":"44318:3:125"},"nativeSrc":"44318:32:125","nodeType":"YulFunctionCall","src":"44318:32:125"}],"functionName":{"name":"mstore","nativeSrc":"44291:6:125","nodeType":"YulIdentifier","src":"44291:6:125"},"nativeSrc":"44291:60:125","nodeType":"YulFunctionCall","src":"44291:60:125"},"nativeSrc":"44291:60:125","nodeType":"YulExpressionStatement","src":"44291:60:125"}]},"name":"abi_encode_tuple_t_contract$_IERC4626_$22463_t_contract$_IERC4626_$22463__to_t_address_t_address__fromStack_reversed","nativeSrc":"44021:336:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"44147:9:125","nodeType":"YulTypedName","src":"44147:9:125","type":""},{"name":"value1","nativeSrc":"44158:6:125","nodeType":"YulTypedName","src":"44158:6:125","type":""},{"name":"value0","nativeSrc":"44166:6:125","nodeType":"YulTypedName","src":"44166:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"44177:4:125","nodeType":"YulTypedName","src":"44177:4:125","type":""}],"src":"44021:336:125"},{"body":{"nativeSrc":"44394:95:125","nodeType":"YulBlock","src":"44394:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"44411:1:125","nodeType":"YulLiteral","src":"44411:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"44418:3:125","nodeType":"YulLiteral","src":"44418:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"44423:10:125","nodeType":"YulLiteral","src":"44423:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"44414:3:125","nodeType":"YulIdentifier","src":"44414:3:125"},"nativeSrc":"44414:20:125","nodeType":"YulFunctionCall","src":"44414:20:125"}],"functionName":{"name":"mstore","nativeSrc":"44404:6:125","nodeType":"YulIdentifier","src":"44404:6:125"},"nativeSrc":"44404:31:125","nodeType":"YulFunctionCall","src":"44404:31:125"},"nativeSrc":"44404:31:125","nodeType":"YulExpressionStatement","src":"44404:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"44451:1:125","nodeType":"YulLiteral","src":"44451:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"44454:4:125","nodeType":"YulLiteral","src":"44454:4:125","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"44444:6:125","nodeType":"YulIdentifier","src":"44444:6:125"},"nativeSrc":"44444:15:125","nodeType":"YulFunctionCall","src":"44444:15:125"},"nativeSrc":"44444:15:125","nodeType":"YulExpressionStatement","src":"44444:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"44475:1:125","nodeType":"YulLiteral","src":"44475:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"44478:4:125","nodeType":"YulLiteral","src":"44478:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"44468:6:125","nodeType":"YulIdentifier","src":"44468:6:125"},"nativeSrc":"44468:15:125","nodeType":"YulFunctionCall","src":"44468:15:125"},"nativeSrc":"44468:15:125","nodeType":"YulExpressionStatement","src":"44468:15:125"}]},"name":"panic_error_0x12","nativeSrc":"44362:127:125","nodeType":"YulFunctionDefinition","src":"44362:127:125"},{"body":{"nativeSrc":"44540:74:125","nodeType":"YulBlock","src":"44540:74:125","statements":[{"body":{"nativeSrc":"44563:22:125","nodeType":"YulBlock","src":"44563:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"44565:16:125","nodeType":"YulIdentifier","src":"44565:16:125"},"nativeSrc":"44565:18:125","nodeType":"YulFunctionCall","src":"44565:18:125"},"nativeSrc":"44565:18:125","nodeType":"YulExpressionStatement","src":"44565:18:125"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"44560:1:125","nodeType":"YulIdentifier","src":"44560:1:125"}],"functionName":{"name":"iszero","nativeSrc":"44553:6:125","nodeType":"YulIdentifier","src":"44553:6:125"},"nativeSrc":"44553:9:125","nodeType":"YulFunctionCall","src":"44553:9:125"},"nativeSrc":"44550:35:125","nodeType":"YulIf","src":"44550:35:125"},{"nativeSrc":"44594:14:125","nodeType":"YulAssignment","src":"44594:14:125","value":{"arguments":[{"name":"x","nativeSrc":"44603:1:125","nodeType":"YulIdentifier","src":"44603:1:125"},{"name":"y","nativeSrc":"44606:1:125","nodeType":"YulIdentifier","src":"44606:1:125"}],"functionName":{"name":"div","nativeSrc":"44599:3:125","nodeType":"YulIdentifier","src":"44599:3:125"},"nativeSrc":"44599:9:125","nodeType":"YulFunctionCall","src":"44599:9:125"},"variableNames":[{"name":"r","nativeSrc":"44594:1:125","nodeType":"YulIdentifier","src":"44594:1:125"}]}]},"name":"checked_div_t_uint256","nativeSrc":"44494:120:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"44525:1:125","nodeType":"YulTypedName","src":"44525:1:125","type":""},{"name":"y","nativeSrc":"44528:1:125","nodeType":"YulTypedName","src":"44528:1:125","type":""}],"returnVariables":[{"name":"r","nativeSrc":"44534:1:125","nodeType":"YulTypedName","src":"44534:1:125","type":""}],"src":"44494:120:125"},{"body":{"nativeSrc":"44666:169:125","nodeType":"YulBlock","src":"44666:169:125","statements":[{"nativeSrc":"44676:16:125","nodeType":"YulAssignment","src":"44676:16:125","value":{"arguments":[{"name":"x","nativeSrc":"44687:1:125","nodeType":"YulIdentifier","src":"44687:1:125"},{"name":"y","nativeSrc":"44690:1:125","nodeType":"YulIdentifier","src":"44690:1:125"}],"functionName":{"name":"add","nativeSrc":"44683:3:125","nodeType":"YulIdentifier","src":"44683:3:125"},"nativeSrc":"44683:9:125","nodeType":"YulFunctionCall","src":"44683:9:125"},"variableNames":[{"name":"sum","nativeSrc":"44676:3:125","nodeType":"YulIdentifier","src":"44676:3:125"}]},{"nativeSrc":"44701:21:125","nodeType":"YulVariableDeclaration","src":"44701:21:125","value":{"arguments":[{"name":"sum","nativeSrc":"44715:3:125","nodeType":"YulIdentifier","src":"44715:3:125"},{"name":"y","nativeSrc":"44720:1:125","nodeType":"YulIdentifier","src":"44720:1:125"}],"functionName":{"name":"slt","nativeSrc":"44711:3:125","nodeType":"YulIdentifier","src":"44711:3:125"},"nativeSrc":"44711:11:125","nodeType":"YulFunctionCall","src":"44711:11:125"},"variables":[{"name":"_1","nativeSrc":"44705:2:125","nodeType":"YulTypedName","src":"44705:2:125","type":""}]},{"nativeSrc":"44731:19:125","nodeType":"YulVariableDeclaration","src":"44731:19:125","value":{"arguments":[{"name":"x","nativeSrc":"44745:1:125","nodeType":"YulIdentifier","src":"44745:1:125"},{"kind":"number","nativeSrc":"44748:1:125","nodeType":"YulLiteral","src":"44748:1:125","type":"","value":"0"}],"functionName":{"name":"slt","nativeSrc":"44741:3:125","nodeType":"YulIdentifier","src":"44741:3:125"},"nativeSrc":"44741:9:125","nodeType":"YulFunctionCall","src":"44741:9:125"},"variables":[{"name":"_2","nativeSrc":"44735:2:125","nodeType":"YulTypedName","src":"44735:2:125","type":""}]},{"body":{"nativeSrc":"44807:22:125","nodeType":"YulBlock","src":"44807:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"44809:16:125","nodeType":"YulIdentifier","src":"44809:16:125"},"nativeSrc":"44809:18:125","nodeType":"YulFunctionCall","src":"44809:18:125"},"nativeSrc":"44809:18:125","nodeType":"YulExpressionStatement","src":"44809:18:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"44776:2:125","nodeType":"YulIdentifier","src":"44776:2:125"}],"functionName":{"name":"iszero","nativeSrc":"44769:6:125","nodeType":"YulIdentifier","src":"44769:6:125"},"nativeSrc":"44769:10:125","nodeType":"YulFunctionCall","src":"44769:10:125"},{"name":"_1","nativeSrc":"44781:2:125","nodeType":"YulIdentifier","src":"44781:2:125"}],"functionName":{"name":"and","nativeSrc":"44765:3:125","nodeType":"YulIdentifier","src":"44765:3:125"},"nativeSrc":"44765:19:125","nodeType":"YulFunctionCall","src":"44765:19:125"},{"arguments":[{"name":"_2","nativeSrc":"44790:2:125","nodeType":"YulIdentifier","src":"44790:2:125"},{"arguments":[{"name":"_1","nativeSrc":"44801:2:125","nodeType":"YulIdentifier","src":"44801:2:125"}],"functionName":{"name":"iszero","nativeSrc":"44794:6:125","nodeType":"YulIdentifier","src":"44794:6:125"},"nativeSrc":"44794:10:125","nodeType":"YulFunctionCall","src":"44794:10:125"}],"functionName":{"name":"and","nativeSrc":"44786:3:125","nodeType":"YulIdentifier","src":"44786:3:125"},"nativeSrc":"44786:19:125","nodeType":"YulFunctionCall","src":"44786:19:125"}],"functionName":{"name":"or","nativeSrc":"44762:2:125","nodeType":"YulIdentifier","src":"44762:2:125"},"nativeSrc":"44762:44:125","nodeType":"YulFunctionCall","src":"44762:44:125"},"nativeSrc":"44759:70:125","nodeType":"YulIf","src":"44759:70:125"}]},"name":"checked_add_t_int256","nativeSrc":"44619:216:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"44649:1:125","nodeType":"YulTypedName","src":"44649:1:125","type":""},{"name":"y","nativeSrc":"44652:1:125","nodeType":"YulTypedName","src":"44652:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"44658:3:125","nodeType":"YulTypedName","src":"44658:3:125","type":""}],"src":"44619:216:125"},{"body":{"nativeSrc":"44886:182:125","nodeType":"YulBlock","src":"44886:182:125","statements":[{"nativeSrc":"44896:48:125","nodeType":"YulAssignment","src":"44896:48:125","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"44918:2:125","nodeType":"YulLiteral","src":"44918:2:125","type":"","value":"11"},{"name":"x","nativeSrc":"44922:1:125","nodeType":"YulIdentifier","src":"44922:1:125"}],"functionName":{"name":"signextend","nativeSrc":"44907:10:125","nodeType":"YulIdentifier","src":"44907:10:125"},"nativeSrc":"44907:17:125","nodeType":"YulFunctionCall","src":"44907:17:125"},{"arguments":[{"kind":"number","nativeSrc":"44937:2:125","nodeType":"YulLiteral","src":"44937:2:125","type":"","value":"11"},{"name":"y","nativeSrc":"44941:1:125","nodeType":"YulIdentifier","src":"44941:1:125"}],"functionName":{"name":"signextend","nativeSrc":"44926:10:125","nodeType":"YulIdentifier","src":"44926:10:125"},"nativeSrc":"44926:17:125","nodeType":"YulFunctionCall","src":"44926:17:125"}],"functionName":{"name":"add","nativeSrc":"44903:3:125","nodeType":"YulIdentifier","src":"44903:3:125"},"nativeSrc":"44903:41:125","nodeType":"YulFunctionCall","src":"44903:41:125"},"variableNames":[{"name":"sum","nativeSrc":"44896:3:125","nodeType":"YulIdentifier","src":"44896:3:125"}]},{"body":{"nativeSrc":"45040:22:125","nodeType":"YulBlock","src":"45040:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"45042:16:125","nodeType":"YulIdentifier","src":"45042:16:125"},"nativeSrc":"45042:18:125","nodeType":"YulFunctionCall","src":"45042:18:125"},"nativeSrc":"45042:18:125","nodeType":"YulExpressionStatement","src":"45042:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"sum","nativeSrc":"44963:3:125","nodeType":"YulIdentifier","src":"44963:3:125"},{"kind":"number","nativeSrc":"44968:26:125","nodeType":"YulLiteral","src":"44968:26:125","type":"","value":"0x7fffffffffffffffffffffff"}],"functionName":{"name":"sgt","nativeSrc":"44959:3:125","nodeType":"YulIdentifier","src":"44959:3:125"},"nativeSrc":"44959:36:125","nodeType":"YulFunctionCall","src":"44959:36:125"},{"arguments":[{"name":"sum","nativeSrc":"45001:3:125","nodeType":"YulIdentifier","src":"45001:3:125"},{"arguments":[{"kind":"number","nativeSrc":"45010:26:125","nodeType":"YulLiteral","src":"45010:26:125","type":"","value":"0x7fffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"45006:3:125","nodeType":"YulIdentifier","src":"45006:3:125"},"nativeSrc":"45006:31:125","nodeType":"YulFunctionCall","src":"45006:31:125"}],"functionName":{"name":"slt","nativeSrc":"44997:3:125","nodeType":"YulIdentifier","src":"44997:3:125"},"nativeSrc":"44997:41:125","nodeType":"YulFunctionCall","src":"44997:41:125"}],"functionName":{"name":"or","nativeSrc":"44956:2:125","nodeType":"YulIdentifier","src":"44956:2:125"},"nativeSrc":"44956:83:125","nodeType":"YulFunctionCall","src":"44956:83:125"},"nativeSrc":"44953:109:125","nodeType":"YulIf","src":"44953:109:125"}]},"name":"checked_add_t_int96","nativeSrc":"44840:228:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"44869:1:125","nodeType":"YulTypedName","src":"44869:1:125","type":""},{"name":"y","nativeSrc":"44872:1:125","nodeType":"YulTypedName","src":"44872:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"44878:3:125","nodeType":"YulTypedName","src":"44878:3:125","type":""}],"src":"44840:228:125"},{"body":{"nativeSrc":"45275:300:125","nodeType":"YulBlock","src":"45275:300:125","statements":[{"nativeSrc":"45285:27:125","nodeType":"YulAssignment","src":"45285:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"45297:9:125","nodeType":"YulIdentifier","src":"45297:9:125"},{"kind":"number","nativeSrc":"45308:3:125","nodeType":"YulLiteral","src":"45308:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"45293:3:125","nodeType":"YulIdentifier","src":"45293:3:125"},"nativeSrc":"45293:19:125","nodeType":"YulFunctionCall","src":"45293:19:125"},"variableNames":[{"name":"tail","nativeSrc":"45285:4:125","nodeType":"YulIdentifier","src":"45285:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"45328:9:125","nodeType":"YulIdentifier","src":"45328:9:125"},{"arguments":[{"name":"value0","nativeSrc":"45343:6:125","nodeType":"YulIdentifier","src":"45343:6:125"},{"kind":"number","nativeSrc":"45351:10:125","nodeType":"YulLiteral","src":"45351:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"45339:3:125","nodeType":"YulIdentifier","src":"45339:3:125"},"nativeSrc":"45339:23:125","nodeType":"YulFunctionCall","src":"45339:23:125"}],"functionName":{"name":"mstore","nativeSrc":"45321:6:125","nodeType":"YulIdentifier","src":"45321:6:125"},"nativeSrc":"45321:42:125","nodeType":"YulFunctionCall","src":"45321:42:125"},"nativeSrc":"45321:42:125","nodeType":"YulExpressionStatement","src":"45321:42:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"45383:9:125","nodeType":"YulIdentifier","src":"45383:9:125"},{"kind":"number","nativeSrc":"45394:2:125","nodeType":"YulLiteral","src":"45394:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"45379:3:125","nodeType":"YulIdentifier","src":"45379:3:125"},"nativeSrc":"45379:18:125","nodeType":"YulFunctionCall","src":"45379:18:125"},{"arguments":[{"name":"value1","nativeSrc":"45403:6:125","nodeType":"YulIdentifier","src":"45403:6:125"},{"kind":"number","nativeSrc":"45411:10:125","nodeType":"YulLiteral","src":"45411:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"45399:3:125","nodeType":"YulIdentifier","src":"45399:3:125"},"nativeSrc":"45399:23:125","nodeType":"YulFunctionCall","src":"45399:23:125"}],"functionName":{"name":"mstore","nativeSrc":"45372:6:125","nodeType":"YulIdentifier","src":"45372:6:125"},"nativeSrc":"45372:51:125","nodeType":"YulFunctionCall","src":"45372:51:125"},"nativeSrc":"45372:51:125","nodeType":"YulExpressionStatement","src":"45372:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"45443:9:125","nodeType":"YulIdentifier","src":"45443:9:125"},{"kind":"number","nativeSrc":"45454:2:125","nodeType":"YulLiteral","src":"45454:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"45439:3:125","nodeType":"YulIdentifier","src":"45439:3:125"},"nativeSrc":"45439:18:125","nodeType":"YulFunctionCall","src":"45439:18:125"},{"name":"value2","nativeSrc":"45459:6:125","nodeType":"YulIdentifier","src":"45459:6:125"}],"functionName":{"name":"mstore","nativeSrc":"45432:6:125","nodeType":"YulIdentifier","src":"45432:6:125"},"nativeSrc":"45432:34:125","nodeType":"YulFunctionCall","src":"45432:34:125"},"nativeSrc":"45432:34:125","nodeType":"YulExpressionStatement","src":"45432:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"45486:9:125","nodeType":"YulIdentifier","src":"45486:9:125"},{"kind":"number","nativeSrc":"45497:2:125","nodeType":"YulLiteral","src":"45497:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"45482:3:125","nodeType":"YulIdentifier","src":"45482:3:125"},"nativeSrc":"45482:18:125","nodeType":"YulFunctionCall","src":"45482:18:125"},{"name":"value3","nativeSrc":"45502:6:125","nodeType":"YulIdentifier","src":"45502:6:125"}],"functionName":{"name":"mstore","nativeSrc":"45475:6:125","nodeType":"YulIdentifier","src":"45475:6:125"},"nativeSrc":"45475:34:125","nodeType":"YulFunctionCall","src":"45475:34:125"},"nativeSrc":"45475:34:125","nodeType":"YulExpressionStatement","src":"45475:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"45529:9:125","nodeType":"YulIdentifier","src":"45529:9:125"},{"kind":"number","nativeSrc":"45540:3:125","nodeType":"YulLiteral","src":"45540:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"45525:3:125","nodeType":"YulIdentifier","src":"45525:3:125"},"nativeSrc":"45525:19:125","nodeType":"YulFunctionCall","src":"45525:19:125"},{"arguments":[{"kind":"number","nativeSrc":"45557:2:125","nodeType":"YulLiteral","src":"45557:2:125","type":"","value":"11"},{"name":"value4","nativeSrc":"45561:6:125","nodeType":"YulIdentifier","src":"45561:6:125"}],"functionName":{"name":"signextend","nativeSrc":"45546:10:125","nodeType":"YulIdentifier","src":"45546:10:125"},"nativeSrc":"45546:22:125","nodeType":"YulFunctionCall","src":"45546:22:125"}],"functionName":{"name":"mstore","nativeSrc":"45518:6:125","nodeType":"YulIdentifier","src":"45518:6:125"},"nativeSrc":"45518:51:125","nodeType":"YulFunctionCall","src":"45518:51:125"},"nativeSrc":"45518:51:125","nodeType":"YulExpressionStatement","src":"45518:51:125"}]},"name":"abi_encode_tuple_t_uint32_t_uint32_t_int256_t_int256_t_int96__to_t_uint32_t_uint32_t_int256_t_int256_t_int256__fromStack_reversed","nativeSrc":"45073:502:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"45212:9:125","nodeType":"YulTypedName","src":"45212:9:125","type":""},{"name":"value4","nativeSrc":"45223:6:125","nodeType":"YulTypedName","src":"45223:6:125","type":""},{"name":"value3","nativeSrc":"45231:6:125","nodeType":"YulTypedName","src":"45231:6:125","type":""},{"name":"value2","nativeSrc":"45239:6:125","nodeType":"YulTypedName","src":"45239:6:125","type":""},{"name":"value1","nativeSrc":"45247:6:125","nodeType":"YulTypedName","src":"45247:6:125","type":""},{"name":"value0","nativeSrc":"45255:6:125","nodeType":"YulTypedName","src":"45255:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"45266:4:125","nodeType":"YulTypedName","src":"45266:4:125","type":""}],"src":"45073:502:125"},{"body":{"nativeSrc":"45626:142:125","nodeType":"YulBlock","src":"45626:142:125","statements":[{"nativeSrc":"45636:37:125","nodeType":"YulVariableDeclaration","src":"45636:37:125","value":{"arguments":[{"name":"value","nativeSrc":"45655:5:125","nodeType":"YulIdentifier","src":"45655:5:125"},{"kind":"number","nativeSrc":"45662:10:125","nodeType":"YulLiteral","src":"45662:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"45651:3:125","nodeType":"YulIdentifier","src":"45651:3:125"},"nativeSrc":"45651:22:125","nodeType":"YulFunctionCall","src":"45651:22:125"},"variables":[{"name":"value_1","nativeSrc":"45640:7:125","nodeType":"YulTypedName","src":"45640:7:125","type":""}]},{"body":{"nativeSrc":"45709:22:125","nodeType":"YulBlock","src":"45709:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"45711:16:125","nodeType":"YulIdentifier","src":"45711:16:125"},"nativeSrc":"45711:18:125","nodeType":"YulFunctionCall","src":"45711:18:125"},"nativeSrc":"45711:18:125","nodeType":"YulExpressionStatement","src":"45711:18:125"}]},"condition":{"arguments":[{"name":"value_1","nativeSrc":"45688:7:125","nodeType":"YulIdentifier","src":"45688:7:125"},{"kind":"number","nativeSrc":"45697:10:125","nodeType":"YulLiteral","src":"45697:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"eq","nativeSrc":"45685:2:125","nodeType":"YulIdentifier","src":"45685:2:125"},"nativeSrc":"45685:23:125","nodeType":"YulFunctionCall","src":"45685:23:125"},"nativeSrc":"45682:49:125","nodeType":"YulIf","src":"45682:49:125"},{"nativeSrc":"45740:22:125","nodeType":"YulAssignment","src":"45740:22:125","value":{"arguments":[{"name":"value_1","nativeSrc":"45751:7:125","nodeType":"YulIdentifier","src":"45751:7:125"},{"kind":"number","nativeSrc":"45760:1:125","nodeType":"YulLiteral","src":"45760:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"45747:3:125","nodeType":"YulIdentifier","src":"45747:3:125"},"nativeSrc":"45747:15:125","nodeType":"YulFunctionCall","src":"45747:15:125"},"variableNames":[{"name":"ret","nativeSrc":"45740:3:125","nodeType":"YulIdentifier","src":"45740:3:125"}]}]},"name":"increment_t_uint32","nativeSrc":"45580:188:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"45608:5:125","nodeType":"YulTypedName","src":"45608:5:125","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"45618:3:125","nodeType":"YulTypedName","src":"45618:3:125","type":""}],"src":"45580:188:125"},{"body":{"nativeSrc":"45810:133:125","nodeType":"YulBlock","src":"45810:133:125","statements":[{"nativeSrc":"45820:29:125","nodeType":"YulVariableDeclaration","src":"45820:29:125","value":{"arguments":[{"name":"y","nativeSrc":"45835:1:125","nodeType":"YulIdentifier","src":"45835:1:125"},{"kind":"number","nativeSrc":"45838:10:125","nodeType":"YulLiteral","src":"45838:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"45831:3:125","nodeType":"YulIdentifier","src":"45831:3:125"},"nativeSrc":"45831:18:125","nodeType":"YulFunctionCall","src":"45831:18:125"},"variables":[{"name":"y_1","nativeSrc":"45824:3:125","nodeType":"YulTypedName","src":"45824:3:125","type":""}]},{"body":{"nativeSrc":"45873:22:125","nodeType":"YulBlock","src":"45873:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"45875:16:125","nodeType":"YulIdentifier","src":"45875:16:125"},"nativeSrc":"45875:18:125","nodeType":"YulFunctionCall","src":"45875:18:125"},"nativeSrc":"45875:18:125","nodeType":"YulExpressionStatement","src":"45875:18:125"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"45868:3:125","nodeType":"YulIdentifier","src":"45868:3:125"}],"functionName":{"name":"iszero","nativeSrc":"45861:6:125","nodeType":"YulIdentifier","src":"45861:6:125"},"nativeSrc":"45861:11:125","nodeType":"YulFunctionCall","src":"45861:11:125"},"nativeSrc":"45858:37:125","nodeType":"YulIf","src":"45858:37:125"},{"nativeSrc":"45904:33:125","nodeType":"YulAssignment","src":"45904:33:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"45917:1:125","nodeType":"YulIdentifier","src":"45917:1:125"},{"kind":"number","nativeSrc":"45920:10:125","nodeType":"YulLiteral","src":"45920:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"45913:3:125","nodeType":"YulIdentifier","src":"45913:3:125"},"nativeSrc":"45913:18:125","nodeType":"YulFunctionCall","src":"45913:18:125"},{"name":"y_1","nativeSrc":"45933:3:125","nodeType":"YulIdentifier","src":"45933:3:125"}],"functionName":{"name":"mod","nativeSrc":"45909:3:125","nodeType":"YulIdentifier","src":"45909:3:125"},"nativeSrc":"45909:28:125","nodeType":"YulFunctionCall","src":"45909:28:125"},"variableNames":[{"name":"r","nativeSrc":"45904:1:125","nodeType":"YulIdentifier","src":"45904:1:125"}]}]},"name":"mod_t_uint32","nativeSrc":"45773:170:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"45795:1:125","nodeType":"YulTypedName","src":"45795:1:125","type":""},{"name":"y","nativeSrc":"45798:1:125","nodeType":"YulTypedName","src":"45798:1:125","type":""}],"returnVariables":[{"name":"r","nativeSrc":"45804:1:125","nodeType":"YulTypedName","src":"45804:1:125","type":""}],"src":"45773:170:125"},{"body":{"nativeSrc":"45999:193:125","nodeType":"YulBlock","src":"45999:193:125","statements":[{"nativeSrc":"46009:62:125","nodeType":"YulVariableDeclaration","src":"46009:62:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"46036:1:125","nodeType":"YulIdentifier","src":"46036:1:125"},{"kind":"number","nativeSrc":"46039:10:125","nodeType":"YulLiteral","src":"46039:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"46032:3:125","nodeType":"YulIdentifier","src":"46032:3:125"},"nativeSrc":"46032:18:125","nodeType":"YulFunctionCall","src":"46032:18:125"},{"arguments":[{"name":"y","nativeSrc":"46056:1:125","nodeType":"YulIdentifier","src":"46056:1:125"},{"kind":"number","nativeSrc":"46059:10:125","nodeType":"YulLiteral","src":"46059:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"46052:3:125","nodeType":"YulIdentifier","src":"46052:3:125"},"nativeSrc":"46052:18:125","nodeType":"YulFunctionCall","src":"46052:18:125"}],"functionName":{"name":"mul","nativeSrc":"46028:3:125","nodeType":"YulIdentifier","src":"46028:3:125"},"nativeSrc":"46028:43:125","nodeType":"YulFunctionCall","src":"46028:43:125"},"variables":[{"name":"product_raw","nativeSrc":"46013:11:125","nodeType":"YulTypedName","src":"46013:11:125","type":""}]},{"nativeSrc":"46080:39:125","nodeType":"YulAssignment","src":"46080:39:125","value":{"arguments":[{"name":"product_raw","nativeSrc":"46095:11:125","nodeType":"YulIdentifier","src":"46095:11:125"},{"kind":"number","nativeSrc":"46108:10:125","nodeType":"YulLiteral","src":"46108:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"46091:3:125","nodeType":"YulIdentifier","src":"46091:3:125"},"nativeSrc":"46091:28:125","nodeType":"YulFunctionCall","src":"46091:28:125"},"variableNames":[{"name":"product","nativeSrc":"46080:7:125","nodeType":"YulIdentifier","src":"46080:7:125"}]},{"body":{"nativeSrc":"46164:22:125","nodeType":"YulBlock","src":"46164:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"46166:16:125","nodeType":"YulIdentifier","src":"46166:16:125"},"nativeSrc":"46166:18:125","nodeType":"YulFunctionCall","src":"46166:18:125"},"nativeSrc":"46166:18:125","nodeType":"YulExpressionStatement","src":"46166:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"product","nativeSrc":"46141:7:125","nodeType":"YulIdentifier","src":"46141:7:125"},{"name":"product_raw","nativeSrc":"46150:11:125","nodeType":"YulIdentifier","src":"46150:11:125"}],"functionName":{"name":"eq","nativeSrc":"46138:2:125","nodeType":"YulIdentifier","src":"46138:2:125"},"nativeSrc":"46138:24:125","nodeType":"YulFunctionCall","src":"46138:24:125"}],"functionName":{"name":"iszero","nativeSrc":"46131:6:125","nodeType":"YulIdentifier","src":"46131:6:125"},"nativeSrc":"46131:32:125","nodeType":"YulFunctionCall","src":"46131:32:125"},"nativeSrc":"46128:58:125","nodeType":"YulIf","src":"46128:58:125"}]},"name":"checked_mul_t_uint32","nativeSrc":"45948:244:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"45978:1:125","nodeType":"YulTypedName","src":"45978:1:125","type":""},{"name":"y","nativeSrc":"45981:1:125","nodeType":"YulTypedName","src":"45981:1:125","type":""}],"returnVariables":[{"name":"product","nativeSrc":"45987:7:125","nodeType":"YulTypedName","src":"45987:7:125","type":""}],"src":"45948:244:125"},{"body":{"nativeSrc":"46278:103:125","nodeType":"YulBlock","src":"46278:103:125","statements":[{"body":{"nativeSrc":"46324:16:125","nodeType":"YulBlock","src":"46324:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"46333:1:125","nodeType":"YulLiteral","src":"46333:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"46336:1:125","nodeType":"YulLiteral","src":"46336:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"46326:6:125","nodeType":"YulIdentifier","src":"46326:6:125"},"nativeSrc":"46326:12:125","nodeType":"YulFunctionCall","src":"46326:12:125"},"nativeSrc":"46326:12:125","nodeType":"YulExpressionStatement","src":"46326:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"46299:7:125","nodeType":"YulIdentifier","src":"46299:7:125"},{"name":"headStart","nativeSrc":"46308:9:125","nodeType":"YulIdentifier","src":"46308:9:125"}],"functionName":{"name":"sub","nativeSrc":"46295:3:125","nodeType":"YulIdentifier","src":"46295:3:125"},"nativeSrc":"46295:23:125","nodeType":"YulFunctionCall","src":"46295:23:125"},{"kind":"number","nativeSrc":"46320:2:125","nodeType":"YulLiteral","src":"46320:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"46291:3:125","nodeType":"YulIdentifier","src":"46291:3:125"},"nativeSrc":"46291:32:125","nodeType":"YulFunctionCall","src":"46291:32:125"},"nativeSrc":"46288:52:125","nodeType":"YulIf","src":"46288:52:125"},{"nativeSrc":"46349:26:125","nodeType":"YulAssignment","src":"46349:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"46365:9:125","nodeType":"YulIdentifier","src":"46365:9:125"}],"functionName":{"name":"mload","nativeSrc":"46359:5:125","nodeType":"YulIdentifier","src":"46359:5:125"},"nativeSrc":"46359:16:125","nodeType":"YulFunctionCall","src":"46359:16:125"},"variableNames":[{"name":"value0","nativeSrc":"46349:6:125","nodeType":"YulIdentifier","src":"46349:6:125"}]}]},"name":"abi_decode_tuple_t_bytes32_fromMemory","nativeSrc":"46197:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"46244:9:125","nodeType":"YulTypedName","src":"46244:9:125","type":""},{"name":"dataEnd","nativeSrc":"46255:7:125","nodeType":"YulTypedName","src":"46255:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"46267:6:125","nodeType":"YulTypedName","src":"46267:6:125","type":""}],"src":"46197:184:125"},{"body":{"nativeSrc":"46515:119:125","nodeType":"YulBlock","src":"46515:119:125","statements":[{"nativeSrc":"46525:26:125","nodeType":"YulAssignment","src":"46525:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"46537:9:125","nodeType":"YulIdentifier","src":"46537:9:125"},{"kind":"number","nativeSrc":"46548:2:125","nodeType":"YulLiteral","src":"46548:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"46533:3:125","nodeType":"YulIdentifier","src":"46533:3:125"},"nativeSrc":"46533:18:125","nodeType":"YulFunctionCall","src":"46533:18:125"},"variableNames":[{"name":"tail","nativeSrc":"46525:4:125","nodeType":"YulIdentifier","src":"46525:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"46567:9:125","nodeType":"YulIdentifier","src":"46567:9:125"},{"name":"value0","nativeSrc":"46578:6:125","nodeType":"YulIdentifier","src":"46578:6:125"}],"functionName":{"name":"mstore","nativeSrc":"46560:6:125","nodeType":"YulIdentifier","src":"46560:6:125"},"nativeSrc":"46560:25:125","nodeType":"YulFunctionCall","src":"46560:25:125"},"nativeSrc":"46560:25:125","nodeType":"YulExpressionStatement","src":"46560:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"46605:9:125","nodeType":"YulIdentifier","src":"46605:9:125"},{"kind":"number","nativeSrc":"46616:2:125","nodeType":"YulLiteral","src":"46616:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"46601:3:125","nodeType":"YulIdentifier","src":"46601:3:125"},"nativeSrc":"46601:18:125","nodeType":"YulFunctionCall","src":"46601:18:125"},{"name":"value1","nativeSrc":"46621:6:125","nodeType":"YulIdentifier","src":"46621:6:125"}],"functionName":{"name":"mstore","nativeSrc":"46594:6:125","nodeType":"YulIdentifier","src":"46594:6:125"},"nativeSrc":"46594:34:125","nodeType":"YulFunctionCall","src":"46594:34:125"},"nativeSrc":"46594:34:125","nodeType":"YulExpressionStatement","src":"46594:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"46386:248:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"46476:9:125","nodeType":"YulTypedName","src":"46476:9:125","type":""},{"name":"value1","nativeSrc":"46487:6:125","nodeType":"YulTypedName","src":"46487:6:125","type":""},{"name":"value0","nativeSrc":"46495:6:125","nodeType":"YulTypedName","src":"46495:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"46506:4:125","nodeType":"YulTypedName","src":"46506:4:125","type":""}],"src":"46386:248:125"},{"body":{"nativeSrc":"46775:130:125","nodeType":"YulBlock","src":"46775:130:125","statements":[{"nativeSrc":"46785:26:125","nodeType":"YulAssignment","src":"46785:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"46797:9:125","nodeType":"YulIdentifier","src":"46797:9:125"},{"kind":"number","nativeSrc":"46808:2:125","nodeType":"YulLiteral","src":"46808:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"46793:3:125","nodeType":"YulIdentifier","src":"46793:3:125"},"nativeSrc":"46793:18:125","nodeType":"YulFunctionCall","src":"46793:18:125"},"variableNames":[{"name":"tail","nativeSrc":"46785:4:125","nodeType":"YulIdentifier","src":"46785:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"46827:9:125","nodeType":"YulIdentifier","src":"46827:9:125"},{"arguments":[{"name":"value0","nativeSrc":"46842:6:125","nodeType":"YulIdentifier","src":"46842:6:125"},{"kind":"number","nativeSrc":"46850:4:125","nodeType":"YulLiteral","src":"46850:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"46838:3:125","nodeType":"YulIdentifier","src":"46838:3:125"},"nativeSrc":"46838:17:125","nodeType":"YulFunctionCall","src":"46838:17:125"}],"functionName":{"name":"mstore","nativeSrc":"46820:6:125","nodeType":"YulIdentifier","src":"46820:6:125"},"nativeSrc":"46820:36:125","nodeType":"YulFunctionCall","src":"46820:36:125"},"nativeSrc":"46820:36:125","nodeType":"YulExpressionStatement","src":"46820:36:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"46876:9:125","nodeType":"YulIdentifier","src":"46876:9:125"},{"kind":"number","nativeSrc":"46887:2:125","nodeType":"YulLiteral","src":"46887:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"46872:3:125","nodeType":"YulIdentifier","src":"46872:3:125"},"nativeSrc":"46872:18:125","nodeType":"YulFunctionCall","src":"46872:18:125"},{"name":"value1","nativeSrc":"46892:6:125","nodeType":"YulIdentifier","src":"46892:6:125"}],"functionName":{"name":"mstore","nativeSrc":"46865:6:125","nodeType":"YulIdentifier","src":"46865:6:125"},"nativeSrc":"46865:34:125","nodeType":"YulFunctionCall","src":"46865:34:125"},"nativeSrc":"46865:34:125","nodeType":"YulExpressionStatement","src":"46865:34:125"}]},"name":"abi_encode_tuple_t_rational_96_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"46639:266:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"46736:9:125","nodeType":"YulTypedName","src":"46736:9:125","type":""},{"name":"value1","nativeSrc":"46747:6:125","nodeType":"YulTypedName","src":"46747:6:125","type":""},{"name":"value0","nativeSrc":"46755:6:125","nodeType":"YulTypedName","src":"46755:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"46766:4:125","nodeType":"YulTypedName","src":"46766:4:125","type":""}],"src":"46639:266:125"},{"body":{"nativeSrc":"46957:89:125","nodeType":"YulBlock","src":"46957:89:125","statements":[{"body":{"nativeSrc":"46984:22:125","nodeType":"YulBlock","src":"46984:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"46986:16:125","nodeType":"YulIdentifier","src":"46986:16:125"},"nativeSrc":"46986:18:125","nodeType":"YulFunctionCall","src":"46986:18:125"},"nativeSrc":"46986:18:125","nodeType":"YulExpressionStatement","src":"46986:18:125"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"46977:5:125","nodeType":"YulIdentifier","src":"46977:5:125"}],"functionName":{"name":"iszero","nativeSrc":"46970:6:125","nodeType":"YulIdentifier","src":"46970:6:125"},"nativeSrc":"46970:13:125","nodeType":"YulFunctionCall","src":"46970:13:125"},"nativeSrc":"46967:39:125","nodeType":"YulIf","src":"46967:39:125"},{"nativeSrc":"47015:25:125","nodeType":"YulAssignment","src":"47015:25:125","value":{"arguments":[{"name":"value","nativeSrc":"47026:5:125","nodeType":"YulIdentifier","src":"47026:5:125"},{"arguments":[{"kind":"number","nativeSrc":"47037:1:125","nodeType":"YulLiteral","src":"47037:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"47033:3:125","nodeType":"YulIdentifier","src":"47033:3:125"},"nativeSrc":"47033:6:125","nodeType":"YulFunctionCall","src":"47033:6:125"}],"functionName":{"name":"add","nativeSrc":"47022:3:125","nodeType":"YulIdentifier","src":"47022:3:125"},"nativeSrc":"47022:18:125","nodeType":"YulFunctionCall","src":"47022:18:125"},"variableNames":[{"name":"ret","nativeSrc":"47015:3:125","nodeType":"YulIdentifier","src":"47015:3:125"}]}]},"name":"decrement_t_uint256","nativeSrc":"46910:136:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"46939:5:125","nodeType":"YulTypedName","src":"46939:5:125","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"46949:3:125","nodeType":"YulTypedName","src":"46949:3:125","type":""}],"src":"46910:136:125"},{"body":{"nativeSrc":"47107:65:125","nodeType":"YulBlock","src":"47107:65:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"47124:1:125","nodeType":"YulLiteral","src":"47124:1:125","type":"","value":"0"},{"name":"ptr","nativeSrc":"47127:3:125","nodeType":"YulIdentifier","src":"47127:3:125"}],"functionName":{"name":"mstore","nativeSrc":"47117:6:125","nodeType":"YulIdentifier","src":"47117:6:125"},"nativeSrc":"47117:14:125","nodeType":"YulFunctionCall","src":"47117:14:125"},"nativeSrc":"47117:14:125","nodeType":"YulExpressionStatement","src":"47117:14:125"},{"nativeSrc":"47140:26:125","nodeType":"YulAssignment","src":"47140:26:125","value":{"arguments":[{"kind":"number","nativeSrc":"47158:1:125","nodeType":"YulLiteral","src":"47158:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"47161:4:125","nodeType":"YulLiteral","src":"47161:4:125","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"47148:9:125","nodeType":"YulIdentifier","src":"47148:9:125"},"nativeSrc":"47148:18:125","nodeType":"YulFunctionCall","src":"47148:18:125"},"variableNames":[{"name":"data","nativeSrc":"47140:4:125","nodeType":"YulIdentifier","src":"47140:4:125"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"47051:121:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"47090:3:125","nodeType":"YulTypedName","src":"47090:3:125","type":""}],"returnVariables":[{"name":"data","nativeSrc":"47098:4:125","nodeType":"YulTypedName","src":"47098:4:125","type":""}],"src":"47051:121:125"},{"body":{"nativeSrc":"47258:437:125","nodeType":"YulBlock","src":"47258:437:125","statements":[{"body":{"nativeSrc":"47291:398:125","nodeType":"YulBlock","src":"47291:398:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"47312:1:125","nodeType":"YulLiteral","src":"47312:1:125","type":"","value":"0"},{"name":"array","nativeSrc":"47315:5:125","nodeType":"YulIdentifier","src":"47315:5:125"}],"functionName":{"name":"mstore","nativeSrc":"47305:6:125","nodeType":"YulIdentifier","src":"47305:6:125"},"nativeSrc":"47305:16:125","nodeType":"YulFunctionCall","src":"47305:16:125"},"nativeSrc":"47305:16:125","nodeType":"YulExpressionStatement","src":"47305:16:125"},{"nativeSrc":"47334:30:125","nodeType":"YulVariableDeclaration","src":"47334:30:125","value":{"arguments":[{"kind":"number","nativeSrc":"47356:1:125","nodeType":"YulLiteral","src":"47356:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"47359:4:125","nodeType":"YulLiteral","src":"47359:4:125","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"47346:9:125","nodeType":"YulIdentifier","src":"47346:9:125"},"nativeSrc":"47346:18:125","nodeType":"YulFunctionCall","src":"47346:18:125"},"variables":[{"name":"data","nativeSrc":"47338:4:125","nodeType":"YulTypedName","src":"47338:4:125","type":""}]},{"nativeSrc":"47377:57:125","nodeType":"YulVariableDeclaration","src":"47377:57:125","value":{"arguments":[{"name":"data","nativeSrc":"47400:4:125","nodeType":"YulIdentifier","src":"47400:4:125"},{"arguments":[{"kind":"number","nativeSrc":"47410:1:125","nodeType":"YulLiteral","src":"47410:1:125","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"47417:10:125","nodeType":"YulIdentifier","src":"47417:10:125"},{"kind":"number","nativeSrc":"47429:2:125","nodeType":"YulLiteral","src":"47429:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"47413:3:125","nodeType":"YulIdentifier","src":"47413:3:125"},"nativeSrc":"47413:19:125","nodeType":"YulFunctionCall","src":"47413:19:125"}],"functionName":{"name":"shr","nativeSrc":"47406:3:125","nodeType":"YulIdentifier","src":"47406:3:125"},"nativeSrc":"47406:27:125","nodeType":"YulFunctionCall","src":"47406:27:125"}],"functionName":{"name":"add","nativeSrc":"47396:3:125","nodeType":"YulIdentifier","src":"47396:3:125"},"nativeSrc":"47396:38:125","nodeType":"YulFunctionCall","src":"47396:38:125"},"variables":[{"name":"deleteStart","nativeSrc":"47381:11:125","nodeType":"YulTypedName","src":"47381:11:125","type":""}]},{"body":{"nativeSrc":"47471:23:125","nodeType":"YulBlock","src":"47471:23:125","statements":[{"nativeSrc":"47473:19:125","nodeType":"YulAssignment","src":"47473:19:125","value":{"name":"data","nativeSrc":"47488:4:125","nodeType":"YulIdentifier","src":"47488:4:125"},"variableNames":[{"name":"deleteStart","nativeSrc":"47473:11:125","nodeType":"YulIdentifier","src":"47473:11:125"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"47453:10:125","nodeType":"YulIdentifier","src":"47453:10:125"},{"kind":"number","nativeSrc":"47465:4:125","nodeType":"YulLiteral","src":"47465:4:125","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"47450:2:125","nodeType":"YulIdentifier","src":"47450:2:125"},"nativeSrc":"47450:20:125","nodeType":"YulFunctionCall","src":"47450:20:125"},"nativeSrc":"47447:47:125","nodeType":"YulIf","src":"47447:47:125"},{"nativeSrc":"47507:41:125","nodeType":"YulVariableDeclaration","src":"47507:41:125","value":{"arguments":[{"name":"data","nativeSrc":"47521:4:125","nodeType":"YulIdentifier","src":"47521:4:125"},{"arguments":[{"kind":"number","nativeSrc":"47531:1:125","nodeType":"YulLiteral","src":"47531:1:125","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"47538:3:125","nodeType":"YulIdentifier","src":"47538:3:125"},{"kind":"number","nativeSrc":"47543:2:125","nodeType":"YulLiteral","src":"47543:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"47534:3:125","nodeType":"YulIdentifier","src":"47534:3:125"},"nativeSrc":"47534:12:125","nodeType":"YulFunctionCall","src":"47534:12:125"}],"functionName":{"name":"shr","nativeSrc":"47527:3:125","nodeType":"YulIdentifier","src":"47527:3:125"},"nativeSrc":"47527:20:125","nodeType":"YulFunctionCall","src":"47527:20:125"}],"functionName":{"name":"add","nativeSrc":"47517:3:125","nodeType":"YulIdentifier","src":"47517:3:125"},"nativeSrc":"47517:31:125","nodeType":"YulFunctionCall","src":"47517:31:125"},"variables":[{"name":"_1","nativeSrc":"47511:2:125","nodeType":"YulTypedName","src":"47511:2:125","type":""}]},{"nativeSrc":"47561:24:125","nodeType":"YulVariableDeclaration","src":"47561:24:125","value":{"name":"deleteStart","nativeSrc":"47574:11:125","nodeType":"YulIdentifier","src":"47574:11:125"},"variables":[{"name":"start","nativeSrc":"47565:5:125","nodeType":"YulTypedName","src":"47565:5:125","type":""}]},{"body":{"nativeSrc":"47659:20:125","nodeType":"YulBlock","src":"47659:20:125","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"47668:5:125","nodeType":"YulIdentifier","src":"47668:5:125"},{"kind":"number","nativeSrc":"47675:1:125","nodeType":"YulLiteral","src":"47675:1:125","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"47661:6:125","nodeType":"YulIdentifier","src":"47661:6:125"},"nativeSrc":"47661:16:125","nodeType":"YulFunctionCall","src":"47661:16:125"},"nativeSrc":"47661:16:125","nodeType":"YulExpressionStatement","src":"47661:16:125"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"47609:5:125","nodeType":"YulIdentifier","src":"47609:5:125"},{"name":"_1","nativeSrc":"47616:2:125","nodeType":"YulIdentifier","src":"47616:2:125"}],"functionName":{"name":"lt","nativeSrc":"47606:2:125","nodeType":"YulIdentifier","src":"47606:2:125"},"nativeSrc":"47606:13:125","nodeType":"YulFunctionCall","src":"47606:13:125"},"nativeSrc":"47598:81:125","nodeType":"YulForLoop","post":{"nativeSrc":"47620:26:125","nodeType":"YulBlock","src":"47620:26:125","statements":[{"nativeSrc":"47622:22:125","nodeType":"YulAssignment","src":"47622:22:125","value":{"arguments":[{"name":"start","nativeSrc":"47635:5:125","nodeType":"YulIdentifier","src":"47635:5:125"},{"kind":"number","nativeSrc":"47642:1:125","nodeType":"YulLiteral","src":"47642:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"47631:3:125","nodeType":"YulIdentifier","src":"47631:3:125"},"nativeSrc":"47631:13:125","nodeType":"YulFunctionCall","src":"47631:13:125"},"variableNames":[{"name":"start","nativeSrc":"47622:5:125","nodeType":"YulIdentifier","src":"47622:5:125"}]}]},"pre":{"nativeSrc":"47602:3:125","nodeType":"YulBlock","src":"47602:3:125","statements":[]},"src":"47598:81:125"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"47274:3:125","nodeType":"YulIdentifier","src":"47274:3:125"},{"kind":"number","nativeSrc":"47279:2:125","nodeType":"YulLiteral","src":"47279:2:125","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"47271:2:125","nodeType":"YulIdentifier","src":"47271:2:125"},"nativeSrc":"47271:11:125","nodeType":"YulFunctionCall","src":"47271:11:125"},"nativeSrc":"47268:421:125","nodeType":"YulIf","src":"47268:421:125"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"47177:518:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"47230:5:125","nodeType":"YulTypedName","src":"47230:5:125","type":""},{"name":"len","nativeSrc":"47237:3:125","nodeType":"YulTypedName","src":"47237:3:125","type":""},{"name":"startIndex","nativeSrc":"47242:10:125","nodeType":"YulTypedName","src":"47242:10:125","type":""}],"src":"47177:518:125"},{"body":{"nativeSrc":"47785:81:125","nodeType":"YulBlock","src":"47785:81:125","statements":[{"nativeSrc":"47795:65:125","nodeType":"YulAssignment","src":"47795:65:125","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"47810:4:125","nodeType":"YulIdentifier","src":"47810:4:125"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"47828:1:125","nodeType":"YulLiteral","src":"47828:1:125","type":"","value":"3"},{"name":"len","nativeSrc":"47831:3:125","nodeType":"YulIdentifier","src":"47831:3:125"}],"functionName":{"name":"shl","nativeSrc":"47824:3:125","nodeType":"YulIdentifier","src":"47824:3:125"},"nativeSrc":"47824:11:125","nodeType":"YulFunctionCall","src":"47824:11:125"},{"arguments":[{"kind":"number","nativeSrc":"47841:1:125","nodeType":"YulLiteral","src":"47841:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"47837:3:125","nodeType":"YulIdentifier","src":"47837:3:125"},"nativeSrc":"47837:6:125","nodeType":"YulFunctionCall","src":"47837:6:125"}],"functionName":{"name":"shr","nativeSrc":"47820:3:125","nodeType":"YulIdentifier","src":"47820:3:125"},"nativeSrc":"47820:24:125","nodeType":"YulFunctionCall","src":"47820:24:125"}],"functionName":{"name":"not","nativeSrc":"47816:3:125","nodeType":"YulIdentifier","src":"47816:3:125"},"nativeSrc":"47816:29:125","nodeType":"YulFunctionCall","src":"47816:29:125"}],"functionName":{"name":"and","nativeSrc":"47806:3:125","nodeType":"YulIdentifier","src":"47806:3:125"},"nativeSrc":"47806:40:125","nodeType":"YulFunctionCall","src":"47806:40:125"},{"arguments":[{"kind":"number","nativeSrc":"47852:1:125","nodeType":"YulLiteral","src":"47852:1:125","type":"","value":"1"},{"name":"len","nativeSrc":"47855:3:125","nodeType":"YulIdentifier","src":"47855:3:125"}],"functionName":{"name":"shl","nativeSrc":"47848:3:125","nodeType":"YulIdentifier","src":"47848:3:125"},"nativeSrc":"47848:11:125","nodeType":"YulFunctionCall","src":"47848:11:125"}],"functionName":{"name":"or","nativeSrc":"47803:2:125","nodeType":"YulIdentifier","src":"47803:2:125"},"nativeSrc":"47803:57:125","nodeType":"YulFunctionCall","src":"47803:57:125"},"variableNames":[{"name":"used","nativeSrc":"47795:4:125","nodeType":"YulIdentifier","src":"47795:4:125"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"47700:166:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"47762:4:125","nodeType":"YulTypedName","src":"47762:4:125","type":""},{"name":"len","nativeSrc":"47768:3:125","nodeType":"YulTypedName","src":"47768:3:125","type":""}],"returnVariables":[{"name":"used","nativeSrc":"47776:4:125","nodeType":"YulTypedName","src":"47776:4:125","type":""}],"src":"47700:166:125"},{"body":{"nativeSrc":"47967:1203:125","nodeType":"YulBlock","src":"47967:1203:125","statements":[{"nativeSrc":"47977:24:125","nodeType":"YulVariableDeclaration","src":"47977:24:125","value":{"arguments":[{"name":"src","nativeSrc":"47997:3:125","nodeType":"YulIdentifier","src":"47997:3:125"}],"functionName":{"name":"mload","nativeSrc":"47991:5:125","nodeType":"YulIdentifier","src":"47991:5:125"},"nativeSrc":"47991:10:125","nodeType":"YulFunctionCall","src":"47991:10:125"},"variables":[{"name":"newLen","nativeSrc":"47981:6:125","nodeType":"YulTypedName","src":"47981:6:125","type":""}]},{"body":{"nativeSrc":"48044:22:125","nodeType":"YulBlock","src":"48044:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"48046:16:125","nodeType":"YulIdentifier","src":"48046:16:125"},"nativeSrc":"48046:18:125","nodeType":"YulFunctionCall","src":"48046:18:125"},"nativeSrc":"48046:18:125","nodeType":"YulExpressionStatement","src":"48046:18:125"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"48016:6:125","nodeType":"YulIdentifier","src":"48016:6:125"},{"kind":"number","nativeSrc":"48024:18:125","nodeType":"YulLiteral","src":"48024:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"48013:2:125","nodeType":"YulIdentifier","src":"48013:2:125"},"nativeSrc":"48013:30:125","nodeType":"YulFunctionCall","src":"48013:30:125"},"nativeSrc":"48010:56:125","nodeType":"YulIf","src":"48010:56:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"48119:4:125","nodeType":"YulIdentifier","src":"48119:4:125"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"48157:4:125","nodeType":"YulIdentifier","src":"48157:4:125"}],"functionName":{"name":"sload","nativeSrc":"48151:5:125","nodeType":"YulIdentifier","src":"48151:5:125"},"nativeSrc":"48151:11:125","nodeType":"YulFunctionCall","src":"48151:11:125"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"48125:25:125","nodeType":"YulIdentifier","src":"48125:25:125"},"nativeSrc":"48125:38:125","nodeType":"YulFunctionCall","src":"48125:38:125"},{"name":"newLen","nativeSrc":"48165:6:125","nodeType":"YulIdentifier","src":"48165:6:125"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"48075:43:125","nodeType":"YulIdentifier","src":"48075:43:125"},"nativeSrc":"48075:97:125","nodeType":"YulFunctionCall","src":"48075:97:125"},"nativeSrc":"48075:97:125","nodeType":"YulExpressionStatement","src":"48075:97:125"},{"nativeSrc":"48181:18:125","nodeType":"YulVariableDeclaration","src":"48181:18:125","value":{"kind":"number","nativeSrc":"48198:1:125","nodeType":"YulLiteral","src":"48198:1:125","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"48185:9:125","nodeType":"YulTypedName","src":"48185:9:125","type":""}]},{"nativeSrc":"48208:17:125","nodeType":"YulAssignment","src":"48208:17:125","value":{"kind":"number","nativeSrc":"48221:4:125","nodeType":"YulLiteral","src":"48221:4:125","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"48208:9:125","nodeType":"YulIdentifier","src":"48208:9:125"}]},{"cases":[{"body":{"nativeSrc":"48271:642:125","nodeType":"YulBlock","src":"48271:642:125","statements":[{"nativeSrc":"48285:35:125","nodeType":"YulVariableDeclaration","src":"48285:35:125","value":{"arguments":[{"name":"newLen","nativeSrc":"48304:6:125","nodeType":"YulIdentifier","src":"48304:6:125"},{"arguments":[{"kind":"number","nativeSrc":"48316:2:125","nodeType":"YulLiteral","src":"48316:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"48312:3:125","nodeType":"YulIdentifier","src":"48312:3:125"},"nativeSrc":"48312:7:125","nodeType":"YulFunctionCall","src":"48312:7:125"}],"functionName":{"name":"and","nativeSrc":"48300:3:125","nodeType":"YulIdentifier","src":"48300:3:125"},"nativeSrc":"48300:20:125","nodeType":"YulFunctionCall","src":"48300:20:125"},"variables":[{"name":"loopEnd","nativeSrc":"48289:7:125","nodeType":"YulTypedName","src":"48289:7:125","type":""}]},{"nativeSrc":"48333:49:125","nodeType":"YulVariableDeclaration","src":"48333:49:125","value":{"arguments":[{"name":"slot","nativeSrc":"48377:4:125","nodeType":"YulIdentifier","src":"48377:4:125"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"48347:29:125","nodeType":"YulIdentifier","src":"48347:29:125"},"nativeSrc":"48347:35:125","nodeType":"YulFunctionCall","src":"48347:35:125"},"variables":[{"name":"dstPtr","nativeSrc":"48337:6:125","nodeType":"YulTypedName","src":"48337:6:125","type":""}]},{"nativeSrc":"48395:10:125","nodeType":"YulVariableDeclaration","src":"48395:10:125","value":{"kind":"number","nativeSrc":"48404:1:125","nodeType":"YulLiteral","src":"48404:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"48399:1:125","nodeType":"YulTypedName","src":"48399:1:125","type":""}]},{"body":{"nativeSrc":"48475:165:125","nodeType":"YulBlock","src":"48475:165:125","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"48500:6:125","nodeType":"YulIdentifier","src":"48500:6:125"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"48518:3:125","nodeType":"YulIdentifier","src":"48518:3:125"},{"name":"srcOffset","nativeSrc":"48523:9:125","nodeType":"YulIdentifier","src":"48523:9:125"}],"functionName":{"name":"add","nativeSrc":"48514:3:125","nodeType":"YulIdentifier","src":"48514:3:125"},"nativeSrc":"48514:19:125","nodeType":"YulFunctionCall","src":"48514:19:125"}],"functionName":{"name":"mload","nativeSrc":"48508:5:125","nodeType":"YulIdentifier","src":"48508:5:125"},"nativeSrc":"48508:26:125","nodeType":"YulFunctionCall","src":"48508:26:125"}],"functionName":{"name":"sstore","nativeSrc":"48493:6:125","nodeType":"YulIdentifier","src":"48493:6:125"},"nativeSrc":"48493:42:125","nodeType":"YulFunctionCall","src":"48493:42:125"},"nativeSrc":"48493:42:125","nodeType":"YulExpressionStatement","src":"48493:42:125"},{"nativeSrc":"48552:24:125","nodeType":"YulAssignment","src":"48552:24:125","value":{"arguments":[{"name":"dstPtr","nativeSrc":"48566:6:125","nodeType":"YulIdentifier","src":"48566:6:125"},{"kind":"number","nativeSrc":"48574:1:125","nodeType":"YulLiteral","src":"48574:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"48562:3:125","nodeType":"YulIdentifier","src":"48562:3:125"},"nativeSrc":"48562:14:125","nodeType":"YulFunctionCall","src":"48562:14:125"},"variableNames":[{"name":"dstPtr","nativeSrc":"48552:6:125","nodeType":"YulIdentifier","src":"48552:6:125"}]},{"nativeSrc":"48593:33:125","nodeType":"YulAssignment","src":"48593:33:125","value":{"arguments":[{"name":"srcOffset","nativeSrc":"48610:9:125","nodeType":"YulIdentifier","src":"48610:9:125"},{"kind":"number","nativeSrc":"48621:4:125","nodeType":"YulLiteral","src":"48621:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"48606:3:125","nodeType":"YulIdentifier","src":"48606:3:125"},"nativeSrc":"48606:20:125","nodeType":"YulFunctionCall","src":"48606:20:125"},"variableNames":[{"name":"srcOffset","nativeSrc":"48593:9:125","nodeType":"YulIdentifier","src":"48593:9:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"48429:1:125","nodeType":"YulIdentifier","src":"48429:1:125"},{"name":"loopEnd","nativeSrc":"48432:7:125","nodeType":"YulIdentifier","src":"48432:7:125"}],"functionName":{"name":"lt","nativeSrc":"48426:2:125","nodeType":"YulIdentifier","src":"48426:2:125"},"nativeSrc":"48426:14:125","nodeType":"YulFunctionCall","src":"48426:14:125"},"nativeSrc":"48418:222:125","nodeType":"YulForLoop","post":{"nativeSrc":"48441:21:125","nodeType":"YulBlock","src":"48441:21:125","statements":[{"nativeSrc":"48443:17:125","nodeType":"YulAssignment","src":"48443:17:125","value":{"arguments":[{"name":"i","nativeSrc":"48452:1:125","nodeType":"YulIdentifier","src":"48452:1:125"},{"kind":"number","nativeSrc":"48455:4:125","nodeType":"YulLiteral","src":"48455:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"48448:3:125","nodeType":"YulIdentifier","src":"48448:3:125"},"nativeSrc":"48448:12:125","nodeType":"YulFunctionCall","src":"48448:12:125"},"variableNames":[{"name":"i","nativeSrc":"48443:1:125","nodeType":"YulIdentifier","src":"48443:1:125"}]}]},"pre":{"nativeSrc":"48422:3:125","nodeType":"YulBlock","src":"48422:3:125","statements":[]},"src":"48418:222:125"},{"body":{"nativeSrc":"48688:166:125","nodeType":"YulBlock","src":"48688:166:125","statements":[{"nativeSrc":"48706:43:125","nodeType":"YulVariableDeclaration","src":"48706:43:125","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"48733:3:125","nodeType":"YulIdentifier","src":"48733:3:125"},{"name":"srcOffset","nativeSrc":"48738:9:125","nodeType":"YulIdentifier","src":"48738:9:125"}],"functionName":{"name":"add","nativeSrc":"48729:3:125","nodeType":"YulIdentifier","src":"48729:3:125"},"nativeSrc":"48729:19:125","nodeType":"YulFunctionCall","src":"48729:19:125"}],"functionName":{"name":"mload","nativeSrc":"48723:5:125","nodeType":"YulIdentifier","src":"48723:5:125"},"nativeSrc":"48723:26:125","nodeType":"YulFunctionCall","src":"48723:26:125"},"variables":[{"name":"lastValue","nativeSrc":"48710:9:125","nodeType":"YulTypedName","src":"48710:9:125","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"48773:6:125","nodeType":"YulIdentifier","src":"48773:6:125"},{"arguments":[{"name":"lastValue","nativeSrc":"48785:9:125","nodeType":"YulIdentifier","src":"48785:9:125"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"48812:1:125","nodeType":"YulLiteral","src":"48812:1:125","type":"","value":"3"},{"name":"newLen","nativeSrc":"48815:6:125","nodeType":"YulIdentifier","src":"48815:6:125"}],"functionName":{"name":"shl","nativeSrc":"48808:3:125","nodeType":"YulIdentifier","src":"48808:3:125"},"nativeSrc":"48808:14:125","nodeType":"YulFunctionCall","src":"48808:14:125"},{"kind":"number","nativeSrc":"48824:3:125","nodeType":"YulLiteral","src":"48824:3:125","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"48804:3:125","nodeType":"YulIdentifier","src":"48804:3:125"},"nativeSrc":"48804:24:125","nodeType":"YulFunctionCall","src":"48804:24:125"},{"arguments":[{"kind":"number","nativeSrc":"48834:1:125","nodeType":"YulLiteral","src":"48834:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"48830:3:125","nodeType":"YulIdentifier","src":"48830:3:125"},"nativeSrc":"48830:6:125","nodeType":"YulFunctionCall","src":"48830:6:125"}],"functionName":{"name":"shr","nativeSrc":"48800:3:125","nodeType":"YulIdentifier","src":"48800:3:125"},"nativeSrc":"48800:37:125","nodeType":"YulFunctionCall","src":"48800:37:125"}],"functionName":{"name":"not","nativeSrc":"48796:3:125","nodeType":"YulIdentifier","src":"48796:3:125"},"nativeSrc":"48796:42:125","nodeType":"YulFunctionCall","src":"48796:42:125"}],"functionName":{"name":"and","nativeSrc":"48781:3:125","nodeType":"YulIdentifier","src":"48781:3:125"},"nativeSrc":"48781:58:125","nodeType":"YulFunctionCall","src":"48781:58:125"}],"functionName":{"name":"sstore","nativeSrc":"48766:6:125","nodeType":"YulIdentifier","src":"48766:6:125"},"nativeSrc":"48766:74:125","nodeType":"YulFunctionCall","src":"48766:74:125"},"nativeSrc":"48766:74:125","nodeType":"YulExpressionStatement","src":"48766:74:125"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"48659:7:125","nodeType":"YulIdentifier","src":"48659:7:125"},{"name":"newLen","nativeSrc":"48668:6:125","nodeType":"YulIdentifier","src":"48668:6:125"}],"functionName":{"name":"lt","nativeSrc":"48656:2:125","nodeType":"YulIdentifier","src":"48656:2:125"},"nativeSrc":"48656:19:125","nodeType":"YulFunctionCall","src":"48656:19:125"},"nativeSrc":"48653:201:125","nodeType":"YulIf","src":"48653:201:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"48874:4:125","nodeType":"YulIdentifier","src":"48874:4:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"48888:1:125","nodeType":"YulLiteral","src":"48888:1:125","type":"","value":"1"},{"name":"newLen","nativeSrc":"48891:6:125","nodeType":"YulIdentifier","src":"48891:6:125"}],"functionName":{"name":"shl","nativeSrc":"48884:3:125","nodeType":"YulIdentifier","src":"48884:3:125"},"nativeSrc":"48884:14:125","nodeType":"YulFunctionCall","src":"48884:14:125"},{"kind":"number","nativeSrc":"48900:1:125","nodeType":"YulLiteral","src":"48900:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"48880:3:125","nodeType":"YulIdentifier","src":"48880:3:125"},"nativeSrc":"48880:22:125","nodeType":"YulFunctionCall","src":"48880:22:125"}],"functionName":{"name":"sstore","nativeSrc":"48867:6:125","nodeType":"YulIdentifier","src":"48867:6:125"},"nativeSrc":"48867:36:125","nodeType":"YulFunctionCall","src":"48867:36:125"},"nativeSrc":"48867:36:125","nodeType":"YulExpressionStatement","src":"48867:36:125"}]},"nativeSrc":"48264:649:125","nodeType":"YulCase","src":"48264:649:125","value":{"kind":"number","nativeSrc":"48269:1:125","nodeType":"YulLiteral","src":"48269:1:125","type":"","value":"1"}},{"body":{"nativeSrc":"48930:234:125","nodeType":"YulBlock","src":"48930:234:125","statements":[{"nativeSrc":"48944:14:125","nodeType":"YulVariableDeclaration","src":"48944:14:125","value":{"kind":"number","nativeSrc":"48957:1:125","nodeType":"YulLiteral","src":"48957:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"48948:5:125","nodeType":"YulTypedName","src":"48948:5:125","type":""}]},{"body":{"nativeSrc":"48993:67:125","nodeType":"YulBlock","src":"48993:67:125","statements":[{"nativeSrc":"49011:35:125","nodeType":"YulAssignment","src":"49011:35:125","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"49030:3:125","nodeType":"YulIdentifier","src":"49030:3:125"},{"name":"srcOffset","nativeSrc":"49035:9:125","nodeType":"YulIdentifier","src":"49035:9:125"}],"functionName":{"name":"add","nativeSrc":"49026:3:125","nodeType":"YulIdentifier","src":"49026:3:125"},"nativeSrc":"49026:19:125","nodeType":"YulFunctionCall","src":"49026:19:125"}],"functionName":{"name":"mload","nativeSrc":"49020:5:125","nodeType":"YulIdentifier","src":"49020:5:125"},"nativeSrc":"49020:26:125","nodeType":"YulFunctionCall","src":"49020:26:125"},"variableNames":[{"name":"value","nativeSrc":"49011:5:125","nodeType":"YulIdentifier","src":"49011:5:125"}]}]},"condition":{"name":"newLen","nativeSrc":"48974:6:125","nodeType":"YulIdentifier","src":"48974:6:125"},"nativeSrc":"48971:89:125","nodeType":"YulIf","src":"48971:89:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"49080:4:125","nodeType":"YulIdentifier","src":"49080:4:125"},{"arguments":[{"name":"value","nativeSrc":"49139:5:125","nodeType":"YulIdentifier","src":"49139:5:125"},{"name":"newLen","nativeSrc":"49146:6:125","nodeType":"YulIdentifier","src":"49146:6:125"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"49086:52:125","nodeType":"YulIdentifier","src":"49086:52:125"},"nativeSrc":"49086:67:125","nodeType":"YulFunctionCall","src":"49086:67:125"}],"functionName":{"name":"sstore","nativeSrc":"49073:6:125","nodeType":"YulIdentifier","src":"49073:6:125"},"nativeSrc":"49073:81:125","nodeType":"YulFunctionCall","src":"49073:81:125"},"nativeSrc":"49073:81:125","nodeType":"YulExpressionStatement","src":"49073:81:125"}]},"nativeSrc":"48922:242:125","nodeType":"YulCase","src":"48922:242:125","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"48244:6:125","nodeType":"YulIdentifier","src":"48244:6:125"},{"kind":"number","nativeSrc":"48252:2:125","nodeType":"YulLiteral","src":"48252:2:125","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"48241:2:125","nodeType":"YulIdentifier","src":"48241:2:125"},"nativeSrc":"48241:14:125","nodeType":"YulFunctionCall","src":"48241:14:125"},"nativeSrc":"48234:930:125","nodeType":"YulSwitch","src":"48234:930:125"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"47871:1299:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"47952:4:125","nodeType":"YulTypedName","src":"47952:4:125","type":""},{"name":"src","nativeSrc":"47958:3:125","nodeType":"YulTypedName","src":"47958:3:125","type":""}],"src":"47871:1299:125"},{"body":{"nativeSrc":"49276:273:125","nodeType":"YulBlock","src":"49276:273:125","statements":[{"nativeSrc":"49286:29:125","nodeType":"YulVariableDeclaration","src":"49286:29:125","value":{"arguments":[{"name":"array","nativeSrc":"49309:5:125","nodeType":"YulIdentifier","src":"49309:5:125"}],"functionName":{"name":"calldataload","nativeSrc":"49296:12:125","nodeType":"YulIdentifier","src":"49296:12:125"},"nativeSrc":"49296:19:125","nodeType":"YulFunctionCall","src":"49296:19:125"},"variables":[{"name":"_1","nativeSrc":"49290:2:125","nodeType":"YulTypedName","src":"49290:2:125","type":""}]},{"nativeSrc":"49324:49:125","nodeType":"YulAssignment","src":"49324:49:125","value":{"arguments":[{"name":"_1","nativeSrc":"49337:2:125","nodeType":"YulIdentifier","src":"49337:2:125"},{"arguments":[{"kind":"number","nativeSrc":"49345:26:125","nodeType":"YulLiteral","src":"49345:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"49341:3:125","nodeType":"YulIdentifier","src":"49341:3:125"},"nativeSrc":"49341:31:125","nodeType":"YulFunctionCall","src":"49341:31:125"}],"functionName":{"name":"and","nativeSrc":"49333:3:125","nodeType":"YulIdentifier","src":"49333:3:125"},"nativeSrc":"49333:40:125","nodeType":"YulFunctionCall","src":"49333:40:125"},"variableNames":[{"name":"value","nativeSrc":"49324:5:125","nodeType":"YulIdentifier","src":"49324:5:125"}]},{"body":{"nativeSrc":"49405:138:125","nodeType":"YulBlock","src":"49405:138:125","statements":[{"nativeSrc":"49419:114:125","nodeType":"YulAssignment","src":"49419:114:125","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"49436:2:125","nodeType":"YulIdentifier","src":"49436:2:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"49448:1:125","nodeType":"YulLiteral","src":"49448:1:125","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"49455:2:125","nodeType":"YulLiteral","src":"49455:2:125","type":"","value":"20"},{"name":"len","nativeSrc":"49459:3:125","nodeType":"YulIdentifier","src":"49459:3:125"}],"functionName":{"name":"sub","nativeSrc":"49451:3:125","nodeType":"YulIdentifier","src":"49451:3:125"},"nativeSrc":"49451:12:125","nodeType":"YulFunctionCall","src":"49451:12:125"}],"functionName":{"name":"shl","nativeSrc":"49444:3:125","nodeType":"YulIdentifier","src":"49444:3:125"},"nativeSrc":"49444:20:125","nodeType":"YulFunctionCall","src":"49444:20:125"},{"arguments":[{"kind":"number","nativeSrc":"49470:26:125","nodeType":"YulLiteral","src":"49470:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"49466:3:125","nodeType":"YulIdentifier","src":"49466:3:125"},"nativeSrc":"49466:31:125","nodeType":"YulFunctionCall","src":"49466:31:125"}],"functionName":{"name":"shl","nativeSrc":"49440:3:125","nodeType":"YulIdentifier","src":"49440:3:125"},"nativeSrc":"49440:58:125","nodeType":"YulFunctionCall","src":"49440:58:125"}],"functionName":{"name":"and","nativeSrc":"49432:3:125","nodeType":"YulIdentifier","src":"49432:3:125"},"nativeSrc":"49432:67:125","nodeType":"YulFunctionCall","src":"49432:67:125"},{"arguments":[{"kind":"number","nativeSrc":"49505:26:125","nodeType":"YulLiteral","src":"49505:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"49501:3:125","nodeType":"YulIdentifier","src":"49501:3:125"},"nativeSrc":"49501:31:125","nodeType":"YulFunctionCall","src":"49501:31:125"}],"functionName":{"name":"and","nativeSrc":"49428:3:125","nodeType":"YulIdentifier","src":"49428:3:125"},"nativeSrc":"49428:105:125","nodeType":"YulFunctionCall","src":"49428:105:125"},"variableNames":[{"name":"value","nativeSrc":"49419:5:125","nodeType":"YulIdentifier","src":"49419:5:125"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"49388:3:125","nodeType":"YulIdentifier","src":"49388:3:125"},{"kind":"number","nativeSrc":"49393:2:125","nodeType":"YulLiteral","src":"49393:2:125","type":"","value":"20"}],"functionName":{"name":"lt","nativeSrc":"49385:2:125","nodeType":"YulIdentifier","src":"49385:2:125"},"nativeSrc":"49385:11:125","nodeType":"YulFunctionCall","src":"49385:11:125"},"nativeSrc":"49382:161:125","nodeType":"YulIf","src":"49382:161:125"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20","nativeSrc":"49175:374:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"49251:5:125","nodeType":"YulTypedName","src":"49251:5:125","type":""},{"name":"len","nativeSrc":"49258:3:125","nodeType":"YulTypedName","src":"49258:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"49266:5:125","nodeType":"YulTypedName","src":"49266:5:125","type":""}],"src":"49175:374:125"},{"body":{"nativeSrc":"49590:121:125","nodeType":"YulBlock","src":"49590:121:125","statements":[{"nativeSrc":"49600:23:125","nodeType":"YulVariableDeclaration","src":"49600:23:125","value":{"arguments":[{"name":"y","nativeSrc":"49615:1:125","nodeType":"YulIdentifier","src":"49615:1:125"},{"kind":"number","nativeSrc":"49618:4:125","nodeType":"YulLiteral","src":"49618:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"49611:3:125","nodeType":"YulIdentifier","src":"49611:3:125"},"nativeSrc":"49611:12:125","nodeType":"YulFunctionCall","src":"49611:12:125"},"variables":[{"name":"y_1","nativeSrc":"49604:3:125","nodeType":"YulTypedName","src":"49604:3:125","type":""}]},{"body":{"nativeSrc":"49647:22:125","nodeType":"YulBlock","src":"49647:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"49649:16:125","nodeType":"YulIdentifier","src":"49649:16:125"},"nativeSrc":"49649:18:125","nodeType":"YulFunctionCall","src":"49649:18:125"},"nativeSrc":"49649:18:125","nodeType":"YulExpressionStatement","src":"49649:18:125"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"49642:3:125","nodeType":"YulIdentifier","src":"49642:3:125"}],"functionName":{"name":"iszero","nativeSrc":"49635:6:125","nodeType":"YulIdentifier","src":"49635:6:125"},"nativeSrc":"49635:11:125","nodeType":"YulFunctionCall","src":"49635:11:125"},"nativeSrc":"49632:37:125","nodeType":"YulIf","src":"49632:37:125"},{"nativeSrc":"49678:27:125","nodeType":"YulAssignment","src":"49678:27:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"49691:1:125","nodeType":"YulIdentifier","src":"49691:1:125"},{"kind":"number","nativeSrc":"49694:4:125","nodeType":"YulLiteral","src":"49694:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"49687:3:125","nodeType":"YulIdentifier","src":"49687:3:125"},"nativeSrc":"49687:12:125","nodeType":"YulFunctionCall","src":"49687:12:125"},{"name":"y_1","nativeSrc":"49701:3:125","nodeType":"YulIdentifier","src":"49701:3:125"}],"functionName":{"name":"mod","nativeSrc":"49683:3:125","nodeType":"YulIdentifier","src":"49683:3:125"},"nativeSrc":"49683:22:125","nodeType":"YulFunctionCall","src":"49683:22:125"},"variableNames":[{"name":"r","nativeSrc":"49678:1:125","nodeType":"YulIdentifier","src":"49678:1:125"}]}]},"name":"mod_t_uint8","nativeSrc":"49554:157:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"49575:1:125","nodeType":"YulTypedName","src":"49575:1:125","type":""},{"name":"y","nativeSrc":"49578:1:125","nodeType":"YulTypedName","src":"49578:1:125","type":""}],"returnVariables":[{"name":"r","nativeSrc":"49584:1:125","nodeType":"YulTypedName","src":"49584:1:125","type":""}],"src":"49554:157:125"}]},"contents":"{\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_bytes4(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_bytes4(headStart)\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_string(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_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string(value0, add(headStart, 32))\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function allocate_memory() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 384)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_available_length_string(src, length, end) -> array\n    {\n        let size := 0\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let result := and(add(length, 31), not(31))\n        size := add(result, 0x20)\n        let memPtr := 0\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(result, 63), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        array := memPtr\n        mstore(memPtr, length)\n        if gt(add(src, length), end) { revert(0, 0) }\n        calldatacopy(add(memPtr, 0x20), src, length)\n        mstore(add(add(memPtr, length), 0x20), 0)\n    }\n    function abi_decode_string(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        array := abi_decode_available_length_string(add(offset, 0x20), calldataload(offset), end)\n    }\n    function validator_revert_contract_IERC4626(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC4626_$22463(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        value0 := abi_decode_string(add(headStart, offset), dataEnd)\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        value1 := abi_decode_string(add(headStart, offset_1), dataEnd)\n        let value := calldataload(add(headStart, 64))\n        validator_revert_contract_IERC4626(value)\n        value2 := value\n    }\n    function abi_decode_tuple_t_uint256(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_decode_array_bytes_calldata_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_addresst_array$_t_bytes_calldata_ptr_$dyn_calldata_ptrt_address(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_contract_IERC4626(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_bytes_calldata_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        let value_1 := calldataload(add(headStart, 64))\n        validator_revert_contract_IERC4626(value_1)\n        value3 := value_1\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\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_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\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_contract_IERC4626(value)\n        value0 := value\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_enum_TargetStatus(value, pos)\n    {\n        if iszero(lt(value, 4))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n        mstore(pos, value)\n    }\n    function abi_encode_tuple_t_enum$_TargetStatus_$38330__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        abi_encode_enum_TargetStatus(value0, headStart)\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        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(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_bytes32__to_t_bytes32__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_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let offset := calldataload(add(headStart, 96))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value3_1, value4_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value3 := value3_1\n        value4 := value4_1\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 validator_revert_bool(value)\n    {\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IERC4626_$22463t_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_bool(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_uint32t_uint256(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint32(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_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_uint32t_uint32t_uint256t_address(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_uint32(value_2)\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := calldataload(add(headStart, 128))\n        validator_revert_contract_IERC4626(value_4)\n        value4 := value_4\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        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_encode_address(value, pos)\n    {\n        mstore(pos, and(value, sub(shl(160, 1), 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_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_addresst_addresst_uint256t_bool(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := calldataload(add(headStart, 96))\n        validator_revert_bool(value_3)\n        value3 := value_3\n    }\n    function abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string(value0, add(headStart, 32))\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_contract_IERC4626(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_encode_tuple_t_contract$_IPolicyPool_$40853__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_uint32t_uint32(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_uint32(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_userDefinedValueType$_TargetSlot_$38324__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_contract$_IERC20_$24193(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_bytes_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\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        value1 := abi_decode_available_length_string(add(_1, 32), calldataload(_1), dataEnd)\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_decode_tuple_t_addresst_addresst_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 192) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 128))\n        value4 := value_4\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 160))\n        value5 := value_5\n    }\n    function abi_decode_tuple_t_uint256t_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_contract_IERC4626(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_contract$_IERC4626_$22463(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_uint32t_uint32t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_uint32(value_2)\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n    }\n    function abi_decode_tuple_t_uint64(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, 0xffffffffffffffff))) { revert(0, 0) }\n        value0 := value\n    }\n    function abi_decode_tuple_t_addresst_addresst_addresst_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_contract_IERC4626(value_2)\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 128))\n        value4 := value_4\n    }\n    function validator_revert_enum_Rounding(value)\n    {\n        if iszero(lt(value, 4)) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_uint256t_enum$_Rounding_$33557(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_enum_Rounding(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_struct$_TargetConfig_$38340_memory_ptr__to_t_struct$_TargetConfig_$38340_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(mload(value0), 0xffffffff))\n        let memberValue0 := mload(add(value0, 0x20))\n        abi_encode_enum_TargetStatus(memberValue0, add(headStart, 0x20))\n        mstore(add(headStart, 0x40), and(mload(add(value0, 0x40)), 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 0x60), and(mload(add(value0, 0x60)), 0xffffffffffffffffffffffff))\n    }\n    function abi_decode_tuple_t_string_calldata_ptrt_string_calldata_ptrt_contract$_IERC4626_$22463(headStart, dataEnd) -> value0, value1, value2, value3, value4\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_bytes_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_bytes_calldata(add(headStart, offset_1), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n        let value := calldataload(add(headStart, 64))\n        validator_revert_contract_IERC4626(value)\n        value4 := value\n    }\n    function abi_decode_tuple_t_addresst_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_contract$_IERC4626_$22463__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_uint256t_addresst_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { 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_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_contract_IERC4626(value_2)\n        value2 := value_2\n    }\n    function abi_decode_tuple_t_string_calldata_ptrt_string_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_bytes_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_bytes_calldata(add(headStart, offset_1), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n    }\n    function abi_decode_tuple_t_addresst_uint32t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\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_contract_IERC4626(value)\n        value0 := value\n        value1 := abi_decode_bytes4(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_uint256t_bool(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_bool(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_addresst_uint32t_uint32t_int256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_uint32(value_2)\n        value2 := value_2\n        value3 := calldataload(add(headStart, 96))\n    }\n    function abi_decode_tuple_t_addresst_bytes_calldata_ptrt_address(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_contract_IERC4626(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        validator_revert_contract_IERC4626(value_1)\n        value3 := value_1\n    }\n    function abi_encode_uint40(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffff))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 384)\n        mstore(headStart, mload(value0))\n        mstore(add(headStart, 0x20), mload(add(value0, 0x20)))\n        mstore(add(headStart, 0x40), mload(add(value0, 0x40)))\n        mstore(add(headStart, 0x60), mload(add(value0, 0x60)))\n        mstore(add(headStart, 0x80), mload(add(value0, 0x80)))\n        mstore(add(headStart, 0xa0), mload(add(value0, 0xa0)))\n        mstore(add(headStart, 0xc0), mload(add(value0, 0xc0)))\n        mstore(add(headStart, 0xe0), mload(add(value0, 0xe0)))\n        mstore(add(headStart, 0x0100), mload(add(value0, 0x0100)))\n        mstore(add(headStart, 0x0120), mload(add(value0, 0x0120)))\n        let memberValue0 := mload(add(value0, 0x0140))\n        abi_encode_uint40(memberValue0, add(headStart, 0x0140))\n        let memberValue0_1 := mload(add(value0, 0x0160))\n        abi_encode_uint40(memberValue0_1, add(headStart, 0x0160))\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_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_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_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        value2 := abi_decode_bytes4(add(headStart, 64))\n    }\n    function abi_decode_tuple_t_addresst_array$_t_bytes_calldata_ptr_$dyn_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_contract_IERC4626(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_bytes_calldata_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_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            tail_2 := abi_encode_string(mload(srcPtr), tail_2)\n            srcPtr := add(srcPtr, 32)\n            pos := add(pos, 32)\n        }\n        tail := tail_2\n    }\n    function abi_decode_tuple_t_addresst_enum$_TargetStatus_$38330(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_enum_Rounding(value_1)\n        value1 := value_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        let value := 0\n        value := mload(headStart)\n        value0 := value\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_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function negate_t_int256(value) -> ret\n    {\n        if eq(value, shl(255, 1)) { panic_error_0x11() }\n        ret := sub(0, value)\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 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_rational_1_by_1__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_address_t_enum$_TargetStatus_$38330__to_t_address_t_uint8__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        abi_encode_enum_TargetStatus(value1, add(headStart, 32))\n    }\n    function abi_encode_bytes_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_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr_t_address__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        let tail_1 := add(headStart, 64)\n        mstore(headStart, 64)\n        let pos := tail_1\n        mstore(tail_1, value1)\n        pos := add(headStart, 96)\n        let tail_2 := add(add(headStart, shl(5, value1)), 96)\n        let srcPtr := value0\n        let i := 0\n        let _1 := add(sub(calldatasize(), value0), not(30))\n        for { } lt(i, value1) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), not(95)))\n            let rel_offset_of_tail := calldataload(srcPtr)\n            if iszero(slt(rel_offset_of_tail, _1)) { revert(0, 0) }\n            let value := add(rel_offset_of_tail, value0)\n            let length := calldataload(value)\n            let value_1 := add(value, 0x20)\n            if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n            if sgt(value_1, sub(calldatasize(), length)) { revert(0, 0) }\n            tail_2 := abi_encode_bytes_calldata(value_1, length, tail_2)\n            srcPtr := add(srcPtr, 0x20)\n            pos := add(pos, 0x20)\n        }\n        tail := tail_2\n        abi_encode_address(value2, add(headStart, 0x20))\n    }\n    function abi_encode_tuple_t_uint32_t_uint32__to_t_uint32_t_uint32__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, 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__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_t_uint32_t_uint32_t_uint256_t_int256_t_address__to_t_uint32_t_uint32_t_uint256_t_int256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n    }\n    function checked_add_t_uint8(x, y) -> sum\n    {\n        sum := add(and(x, 0xff), and(y, 0xff))\n        if gt(sum, 0xff) { 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_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_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\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_t_address__to_t_uint256_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_uint96_t_uint256_t_uint96_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), and(value2, 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_encode_tuple_t_struct$_TargetConfig_$38340_storage_ptr__to_t_struct$_TargetConfig_$38340_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        let slotValue := sload(value0)\n        mstore(headStart, and(slotValue, 0xffffffff))\n        abi_encode_enum_TargetStatus(and(shr(32, slotValue), 0xff), add(headStart, 32))\n        mstore(add(headStart, 0x40), and(shr(40, slotValue), 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 0x60), and(shr(136, slotValue), 0xffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_packed_t_address_t_bytes4__to_t_address_t_bytes4__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        mstore(pos, and(shl(96, value0), not(0xffffffffffffffffffffffff)))\n        mstore(add(pos, 20), and(value1, shl(224, 0xffffffff)))\n        end := add(pos, 24)\n    }\n    function abi_encode_tuple_t_bytes_calldata_ptr_t_address__to_t_bytes_memory_ptr_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        tail := abi_encode_bytes_calldata(value0, value1, add(headStart, 64))\n        mstore(add(headStart, 32), and(value2, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_uint40_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, 0xffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := slt(sub(dataEnd, headStart), 384)\n        if _1 { revert(0, 0) }\n        _1 := 0\n        let value := allocate_memory()\n        let value_1 := 0\n        value_1 := mload(headStart)\n        mstore(value, value_1)\n        let value_2 := 0\n        value_2 := mload(add(headStart, 32))\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := mload(add(headStart, 64))\n        mstore(add(value, 64), value_3)\n        let value_4 := 0\n        value_4 := mload(add(headStart, 96))\n        mstore(add(value, 96), value_4)\n        let value_5 := 0\n        value_5 := mload(add(headStart, 128))\n        mstore(add(value, 128), value_5)\n        let value_6 := 0\n        value_6 := mload(add(headStart, 160))\n        mstore(add(value, 160), value_6)\n        let value_7 := 0\n        value_7 := mload(add(headStart, 192))\n        mstore(add(value, 192), value_7)\n        let value_8 := 0\n        value_8 := mload(add(headStart, 224))\n        mstore(add(value, 224), value_8)\n        let value_9 := 0\n        value_9 := mload(add(headStart, 256))\n        mstore(add(value, 256), value_9)\n        let value_10 := 0\n        value_10 := mload(add(headStart, 288))\n        mstore(add(value, 288), value_10)\n        mstore(add(value, 320), abi_decode_uint40_fromMemory(add(headStart, 320)))\n        mstore(add(value, 352), abi_decode_uint40_fromMemory(add(headStart, 352)))\n        value0 := value\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\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_tuple_t_enum$_TargetStatus_$38330_t_enum$_TargetStatus_$38330__to_t_uint8_t_uint8__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        abi_encode_enum_TargetStatus(value0, headStart)\n        abi_encode_enum_TargetStatus(value1, add(headStart, 32))\n    }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n    function checked_exp_helper(_base, exponent, max) -> power, base\n    {\n        power := 1\n        base := _base\n        for { } gt(exponent, 1) { }\n        {\n            if gt(base, div(max, base)) { panic_error_0x11() }\n            if and(exponent, 1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(1, exponent)\n        }\n    }\n    function checked_exp_unsigned(base, exponent) -> power\n    {\n        if iszero(exponent)\n        {\n            power := 1\n            leave\n        }\n        if iszero(base)\n        {\n            power := 0\n            leave\n        }\n        switch base\n        case 1 {\n            power := 1\n            leave\n        }\n        case 2 {\n            if gt(exponent, 255) { panic_error_0x11() }\n            power := shl(exponent, 1)\n            let _1 := 0\n            _1 := 0\n            leave\n        }\n        if or(and(lt(base, 11), lt(exponent, 78)), and(lt(base, 307), lt(exponent, 32)))\n        {\n            power := exp(base, exponent)\n            let _2 := 0\n            _2 := 0\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent, not(0))\n        if gt(power_1, div(not(0), base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_exp_t_uint256_t_uint8(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, and(exponent, 0xff))\n    }\n    function abi_decode_tuple_t_contract$_IAccessManager_$22178_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\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_decode_tuple_t_boolt_uint32_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_int256_t_uint96__to_t_int256_t_uint96__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\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    }\n    function abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_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_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_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_tuple_t_contract$_IERC4626_$22463_t_contract$_IERC4626_$22463__to_t_address_t_address__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(160, 1), 1)))\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\n    }\n    function checked_add_t_int256(x, y) -> sum\n    {\n        sum := add(x, y)\n        let _1 := slt(sum, y)\n        let _2 := slt(x, 0)\n        if or(and(iszero(_2), _1), and(_2, iszero(_1))) { panic_error_0x11() }\n    }\n    function checked_add_t_int96(x, y) -> sum\n    {\n        sum := add(signextend(11, x), signextend(11, y))\n        if or(sgt(sum, 0x7fffffffffffffffffffffff), slt(sum, not(0x7fffffffffffffffffffffff))) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint32_t_uint32_t_int256_t_int256_t_int96__to_t_uint32_t_uint32_t_int256_t_int256_t_int256__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), signextend(11, value4))\n    }\n    function increment_t_uint32(value) -> ret\n    {\n        let value_1 := and(value, 0xffffffff)\n        if eq(value_1, 0xffffffff) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function mod_t_uint32(x, y) -> r\n    {\n        let y_1 := and(y, 0xffffffff)\n        if iszero(y_1) { panic_error_0x12() }\n        r := mod(and(x, 0xffffffff), y_1)\n    }\n    function checked_mul_t_uint32(x, y) -> product\n    {\n        let product_raw := mul(and(x, 0xffffffff), and(y, 0xffffffff))\n        product := and(product_raw, 0xffffffff)\n        if iszero(eq(product, product_raw)) { panic_error_0x11() }\n    }\n    function abi_decode_tuple_t_bytes32_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_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_t_rational_96_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 decrement_t_uint256(value) -> ret\n    {\n        if iszero(value) { panic_error_0x11() }\n        ret := add(value, not(0))\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, 0xffffffffffffffff) { 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 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 mod_t_uint8(x, y) -> r\n    {\n        let y_1 := and(y, 0xff)\n        if iszero(y_1) { panic_error_0x12() }\n        r := mod(and(x, 0xff), y_1)\n    }\n}","id":125,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"15857":[{"length":32,"start":3394},{"length":32,"start":8314}],"23450":[{"length":32,"start":15873},{"length":32,"start":16592},{"length":32,"start":16633}],"38322":[{"length":32,"start":2777},{"length":32,"start":6398},{"length":32,"start":7785},{"length":32,"start":8374},{"length":32,"start":8479},{"length":32,"start":12617},{"length":32,"start":13530},{"length":32,"start":13717},{"length":32,"start":14337},{"length":32,"start":14888},{"length":32,"start":18593},{"length":32,"start":18742}]},"linkReferences":{},"object":"6080604052600436106106ed575f3560e01c806383b955791161038a578063c0c51217116101de578063e047838d11610108578063efb43b07116100a8578063f7a3933311610078578063f7a39333146112fe578063fa171c921461131d578063fa3045d014611331578063fbf9c9ce14611344575f5ffd5b8063efb43b07146112db578063f14b624b146112ee578063f15476a214610fac578063f5f1bec0146112f6575f5ffd5b8063e8e617b7116100e3578063e8e617b71461128b578063ee07abbb146112aa578063ef4f78d1146112c9578063ef8b30f7146110da575f5ffd5b8063e047838d1461122d578063e483b6e114611240578063e77659fd1461125f575f5ffd5b8063cc671a181161017e578063d52f99ce1161014e578063d52f99ce146111a4578063d6281d3e146111d0578063d905777e146111ef578063dd62ed3e1461120e575f5ffd5b8063cc671a181461113f578063ce96cb7714611153578063d2e26fe414611172578063d336078c14611185575f5ffd5b8063c6e6f592116101b9578063c6e6f592146110da578063c9eb0571146110f9578063ca10eca01461110d578063cc461d621461112c575f5ffd5b8063c0c512171461109c578063c3ba11f5146110bb578063c63d75b614610b74575f5ffd5b8063a7f8a5e2116102bf578063aeabd3291161025f578063b7e44f4e1161022f578063b7e44f4e1461102c578063ba0876521461103f578063bdb5371d1461105e578063bfdb20da1461107d575f5ffd5b8063aeabd32914610fc7578063b2331d7d14610fdb578063b3d7f6b914610fee578063b460af941461100d575f5ffd5b8063ac860f741161029a578063ac860f7414610f5d578063ad3cb1cc14610f7c578063adfdfe2e14610fac578063ae6aaa6214610fb4575f5ffd5b8063a7f8a5e214610f0f578063a9059cbb14610f23578063a9ed148714610f42575f5ffd5b806394bf804d1161032a5780639c0b90c7116103055780639c0b90c714610eb75780639c5baeaa14610eca5780639db0391f14610edd578063a3ac939014610ef0575f5ffd5b806394bf804d14610e7157806395d89b4114610e9057806397f8423e14610ea4575f5ffd5b80638963227f116103655780638963227f14610e0b5780638b4e914a14610e135780638d94d57514610e325780638f79246514610e45575f5ffd5b806383b9557914610dc6578063861e3d3d14610dd957806386b4408314610dec575f5ffd5b806338d52e0f116105415780635ee0c7dd11610476578063759076e511610416578063811eecf5116103e6578063811eecf514610d79578063818f567314610d8c57806382dbbd7114610d94578063833d816d14610db3575f5ffd5b8063759076e514610cf757806375b58c9514610d215780637da0a87714610d3457806380da0a1c14610d66575f5ffd5b806367354a841161045157806367354a8414610c935780636855a17814610ca65780636e553f6514610cb957806370a0823114610cd8575f5ffd5b80635ee0c7dd14610c4d57806362eb345e14610c6c578063657ab2b314610c8b575f5ffd5b80634cdad506116104e15780634fd5303d116104bc5780634fd5303d14610bd957806352d1902d14610c0557806353c42f8814610c19578063572b6c0514610c2e575f5ffd5b80634cdad506146107a65780634d15eb0314610acb5780634f1ef28614610bc6575f5ffd5b8063401022ef1161051c578063401022ef14610b6c578063402d267d14610b745780634092b0c114610b945780634879872014610bb3575f5ffd5b806338d52e0f14610b225780633e15a35714610b365780633edeb25714610b55575f5ffd5b806318160ddd116106225780632904df29116105c257806332cadf3c1161059257806332cadf3c14610a9857806333bded3c14610aac57806333f965ce14610acb578063342db73914610afd575f5ffd5b80632904df2914610a205780632f9cf0aa14610a4c578063313ce56714610a5f57806332bc74aa14610a85575f5ffd5b80631a7e8014116105fd5780631a7e80141461099a5780631c93944f146109ae578063225c531e146109e257806323b872dd14610a01575f5ffd5b806318160ddd14610916578063194448e5146109495780631a034afb14610968575f5ffd5b806308742d901161068d5780630a28a477116106685780630a28a4771461088c5780630aecc093146108ab5780630cabf231146108bf578063150b7a02146108de575f5ffd5b806308742d90146107e4578063091ea8a614610803578063095ea7b31461086d575f5ffd5b806306fdde03116106c857806306fdde0314610764578063077f224a1461078557806307a2d13a146107a657806307c2e878146107c5575f5ffd5b806301e1d114146106f857806301ffc9a71461071f578063025ca58e1461074e575f5ffd5b366106f457005b5f5ffd5b348015610703575f5ffd5b5061070c611361565b6040519081526020015b60405180910390f35b34801561072a575f5ffd5b5061073e610739366004615499565b6114a3565b6040519015158152602001610716565b348015610759575f5ffd5b50636774858061070c565b34801561076f575f5ffd5b50610778611545565b60405161071691906154e0565b348015610790575f5ffd5b506107a461079f3660046155d6565b611605565b005b3480156107b1575f5ffd5b5061070c6107c036600461564c565b6116ed565b3480156107d0575f5ffd5b506107a46107df3660046156aa565b6116f8565b3480156107ef575f5ffd5b506107a46107fe36600461571e565b61181f565b34801561080e575f5ffd5b5061086061081d366004615755565b6001600160a01b03165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af016020526040902054600160201b900460ff1690565b60405161071691906157a4565b348015610878575f5ffd5b5061073e6108873660046157b2565b6118bb565b348015610897575f5ffd5b5061070c6108a636600461564c565b6118dc565b3480156108b6575f5ffd5b506107a46118e8565b3480156108ca575f5ffd5b505f5160206168aa5f395f51905f5261070c565b3480156108e9575f5ffd5b506108fd6108f8366004615819565b6118f2565b6040516001600160e01b03199091168152602001610716565b348015610921575f5ffd5b507f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace025461070c565b348015610954575f5ffd5b506107a4610963366004615893565b61195c565b348015610973575f5ffd5b507ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0061070c565b3480156109a5575f5ffd5b506107a4611a84565b3480156109b9575f5ffd5b506109cd6109c83660046158bf565b611a8c565b60405163ffffffff9091168152602001610716565b3480156109ed575f5ffd5b506107a46109fc3660046158db565b611a9e565b348015610a0c575f5ffd5b5061073e610a1b36600461593f565b611bc2565b348015610a2b575f5ffd5b50610a34611bef565b6040516001600160a01b039091168152602001610716565b6107a4610a5a366004615755565b611bf8565b348015610a6a575f5ffd5b50610a73611cc8565b60405160ff9091168152602001610716565b6107a4610a9336600461597d565b611d04565b348015610aa3575f5ffd5b50610778611d10565b348015610ab7575f5ffd5b50610778610ac63660046159c2565b611d53565b348015610ad6575f5ffd5b507f0000000000000000000000000000000000000000000000000000000000000000610a34565b348015610b08575f5ffd5b5061070c6e1a185c991a185d0b595e1c1bdcd959608a1b81565b348015610b2d575f5ffd5b50610a34611f10565b348015610b41575f5ffd5b5061070c610b50366004615a12565b611f3e565b348015610b60575f5ffd5b506109cd63ffffffff81565b6107a4611f52565b348015610b7f575f5ffd5b5061070c610b8e366004615755565b505f1990565b348015610b9f575f5ffd5b506109cd610bae36600461564c565b61202b565b6107a4610bc1366004615755565b612035565b6107a4610bd4366004615a4f565b61203e565b348015610be4575f5ffd5b50610bed612054565b6040516001600160401b039091168152602001610716565b348015610c10575f5ffd5b5061070c61205d565b348015610c24575f5ffd5b506201518061070c565b348015610c39575f5ffd5b5061073e610c48366004615755565b612078565b348015610c58575f5ffd5b506108fd610c67366004615aae565b6120aa565b348015610c77575f5ffd5b506108fd610c86366004615af1565b612113565b6107a4611a84565b348015610c9e575f5ffd5b50601461070c565b6107a4610cb436600461593f565b612249565b348015610cc4575f5ffd5b5061070c610cd3366004615b46565b612259565b348015610ce3575f5ffd5b5061070c610cf2366004615755565b61227b565b348015610d02575f5ffd5b505f5160206168aa5f395f51905f5254600160a01b9004600b0b61070c565b6107a4610d2f366004615755565b6122a1565b348015610d3f575f5ffd5b507f0000000000000000000000000000000000000000000000000000000000000000610a34565b6107a4610d74366004615755565b6122aa565b61070c610d8736600461564c565b6122b3565b6107a46118e8565b348015610d9f575f5ffd5b506107a4610dae366004615b69565b6122fd565b6107a4610dc1366004615bb7565b6123e7565b6107a4610dd4366004615bdd565b612486565b6107a4610de736600461593f565b612493565b348015610df7575f5ffd5b50610778610e063660046159c2565b61249e565b6107a46125ae565b348015610e1e575f5ffd5b5061070c610e2d366004615c40565b6125b6565b6107a4610e40366004615755565b6125c1565b348015610e50575f5ffd5b50610e64610e5f366004615755565b6125ca565b6040516107169190615c63565b348015610e7c575f5ffd5b5061070c610e8b366004615b46565b61266f565b348015610e9b575f5ffd5b50610778612691565b6107a4610eb2366004615cb1565b6126cf565b6107a4610ec5366004615aae565b612742565b6107a4610ed8366004615d24565b61274e565b6107a4610eeb366004615755565b612767565b348015610efb575f5ffd5b5061070c610f0a366004615a12565b6127dc565b348015610f1a575f5ffd5b50610a34612830565b348015610f2e575f5ffd5b5061073e610f3d3660046157b2565b61284f565b348015610f4d575f5ffd5b506108fd6001600160e01b031981565b348015610f68575f5ffd5b506107a4610f7736600461564c565b612866565b348015610f87575f5ffd5b50610778604051806040016040528060058152602001640352e302e360dc1b81525081565b6107a4612926565b61070c610fc236600461564c565b61292e565b348015610fd2575f5ffd5b5061070c612977565b6107a4610fe936600461593f565b612980565b348015610ff9575f5ffd5b5061070c61100836600461564c565b61298b565b348015611018575f5ffd5b5061070c611027366004615d56565b612997565b6107a461103a366004615d8a565b6129f4565b34801561104a575f5ffd5b5061070c611059366004615d56565b612a65565b348015611069575f5ffd5b506107a4611078366004615d24565b612ab9565b348015611088575f5ffd5b506107a4611097366004615df4565b612ba3565b3480156110a7575f5ffd5b506108fd6110b6366004615e22565b612d8f565b3480156110c6575f5ffd5b5061070c6110d5366004615e55565b612dd9565b3480156110e5575f5ffd5b5061070c6110f436600461564c565b612de4565b348015611104575f5ffd5b5061073e612def565b348015611118575f5ffd5b5061070c611127366004615c40565b612df8565b6107a461113a3660046157b2565b612e03565b34801561114a575f5ffd5b5061070c612e0d565b34801561115e575f5ffd5b5061070c61116d366004615755565b612e99565b61070c611180366004615b69565b612eb3565b348015611190575f5ffd5b506107a461119f36600461564c565b612f03565b3480156111af575f5ffd5b506111c36111be366004615e78565b612fb0565b6040516107169190615ebc565b3480156111db575f5ffd5b506108fd6111ea366004615aae565b61313d565b3480156111fa575f5ffd5b5061070c611209366004615755565b61324d565b348015611219575f5ffd5b5061070c611228366004615f5b565b613265565b6107a461123b3660046157b2565b6132ae565b34801561124b575f5ffd5b506107a461125a366004615f87565b6132b8565b34801561126a575f5ffd5b5061127e611279366004615fcb565b6132c3565b604051610716919061600e565b348015611296575f5ffd5b506108fd6112a536600461593f565b613589565b3480156112b5575f5ffd5b5061127e6112c4366004615fcb565b6135f1565b3480156112d4575f5ffd5b505f610a73565b6107a46112e936600461593f565b6137eb565b6107a46137f6565b6107a461384c565b348015611309575f5ffd5b506107a4611318366004616071565b613854565b348015611328575f5ffd5b506107a46125ae565b6107a461133f366004615d8a565b613913565b34801561134f575f5ffd5b506107a461135e366004615755565b50565b5f5f5160206168aa5f395f51905f52611378613984565b81546040516370a0823160e01b81523060048201529193506001600160a01b0316906307a2d13a9082906370a0823190602401602060405180830381865afa1580156113c6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ea919061609d565b6040518263ffffffff1660e01b815260040161140891815260200190565b602060405180830381865afa158015611423573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611447919061609d565b61145190836160c8565b81549092505f600160a01b909104600b0b121561148d57805461147d90600160a01b9004600b0b6160db565b61148790836160f5565b91505090565b805461148790600160a01b9004600b0b836160c8565b5f6001600160e01b03198216630a85bd0160e11b14806114d357506001600160e01b03198216630162fc8560e11b145b806114ee57506001600160e01b031982166336372b0760e01b145b8061150957506001600160e01b0319821663a219a02560e01b145b8061152457506001600160e01b0319821663043eff2d60e51b145b8061153f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0380546060915f51602061684a5f395f51905f529161158390616108565b80601f01602080910402602001604051908101604052809291908181526020018280546115af90616108565b80156115fa5780601f106115d1576101008083540402835291602001916115fa565b820191905f5260205f20905b8154815290600101906020018083116115dd57829003601f168201915b505050505091505090565b5f61160e6139f5565b805490915060ff600160401b82041615906001600160401b03165f811580156116345750825b90505f826001600160401b0316600114801561164f5750303b155b90508115801561165d575080155b1561167b5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156116a557845460ff60401b1916600160401b1785555b6116b0888888613a1d565b83156116e357845460ff60401b19168555604051600181525f51602061686a5f395f51905f529060200160405180910390a15b5050505050505050565b5f61153f825f613ac4565b835f61170382613b1b565b905060018154600160201b900460ff16600381111561172457611724615770565b82548492600160201b90910460ff16911461175d57604051630e851c7960e31b8152600401611754929190616140565b60405180910390fd5b50505f61176982613bb3565b9050611784611776613c07565b886346d58ca960e11b613c10565b6001600160a01b03841630146117ae576117ae61179f613c07565b886001600160e01b0319613c10565b6040516303e1e7c360e31b81526001600160a01b03881690631f0f3e18906117de90899089908990600401616185565b5f604051808303815f87803b1580156117f5575f5ffd5b505af1158015611807573d5f5f3e3d5ffd5b50505050611816838383613d12565b50505050505050565b8063ffffffff165f036118455760405163294da6c760e21b815260040160405180910390fd5b5f61184f83613b1b565b80546040805163ffffffff928316815291851660208301529192506001600160a01b038516917f4345ec61f717774fdb684b701c34934889550330da2b93f2c3a33379db77f817910160405180910390a2805463ffffffff191663ffffffff9290921691909117905550565b5f5f6118c5613c07565b90506118d2818585613d9b565b5060019392505050565b5f61153f826001613da8565b6118f0613df6565b565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146119495760405163950d88bf60e01b81526001600160a01b039091166004820152602401611754565b50630a85bd0160e11b9695505050505050565b5f5f5160206168aa5f395f51905f5280546040516370a0823160e01b81523060048201529192505f916001600160a01b03909116906307a2d13a9082906370a0823190602401602060405180830381865afa1580156119bd573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119e1919061609d565b6040518263ffffffff1660e01b81526004016119ff91815260200190565b602060405180830381865afa158015611a1a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a3e919061609d565b905080611a4a82613e3f565b1480611a535750825b611a705760405163292d4c4b60e11b815260040160405180910390fd5b611a7984613f38565b50505050565b905090565b6118f06140c5565b5f611a978383614153565b9392505050565b611aa785613b1b565b505f611abd868686611ab88761417f565b6141af565b905082815f811315611aeb57604051630c97a6bf60e41b815260048101929092526024820152604401611754565b50505f611af6613984565b905083811015611b3a57611b0a81856160f5565b611b1c611b1783876160f5565b613e3f565b14611b3a5760405163af8075e960e01b815260040160405180910390fd5b611b578385611b47611f10565b6001600160a01b031691906142ae565b6040805163ffffffff808916825287166020820152908101859052606081018390526001600160a01b0384811660808301528816907fcc010dd322eb2bc19138cf20160ad5643925810f442fc6c5d48b9b4c59b34efe9060a00160405180910390a250505050505050565b5f5f611bcc613c07565b9050611bd98582856142e3565b611be485858561432e565b506001949350505050565b5f611a7f613c07565b805f611c0382613b1b565b905060018154600160201b900460ff166003811115611c2457611c24615770565b1480611c4c575060028154600160201b900460ff166003811115611c4a57611c4a615770565b145b81548391600160201b90910460ff1690611c7b57604051630e851c7960e31b8152600401611754929190616140565b50505f611c86613984565b90505f611c91613984565b905081811015611cc157611ca581836160f5565b6040516351f5977560e11b815260040161175491815260200190565b5050505050565b5f807f0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e0090505f81546114879190600160a01b900460ff16616230565b611a7984848484614380565b6060611d1a614463565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525092949350505050565b6060835f611d6082613b1b565b905060018154600160201b900460ff166003811115611d8157611d81615770565b82548492600160201b90910460ff169114611db157604051630e851c7960e31b8152600401611754929190616140565b50505f611dbd82613bb3565b9050611de6611dca613c07565b88611dd860045f8a8c616249565b611de191616270565b613c10565b611e2f86868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038b1692915050614475565b93505f84806020019051810190611e46919061609d565b6040516331a9108f60e11b81526004810182905290915030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa158015611eae573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ed291906162a6565b6001600160a01b031614611efa57611efa611eeb613c07565b896001600160e01b0319613c10565b50611f06838383613d12565b5050509392505050565b7f0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e00546001600160a01b031690565b5f611f4a848484614482565b949350505050565b5f611f5b6139f5565b805490915060ff600160401b82041615906001600160401b03165f81158015611f815750825b90505f826001600160401b03166001148015611f9c5750303b155b905081158015611faa575080155b15611fc85760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611ff257845460ff60401b1916600160401b1785555b8315611cc157845460ff60401b19168555604051600181525f51602061686a5f395f51905f529060200160405180910390a15050505050565b5f61153f826144ca565b61135e816145a7565b6120466140c5565b612050828261462a565b5050565b5f611a7f6146e6565b5f612066613df6565b505f51602061688a5f395f51905f5290565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146121015760405163950d88bf60e01b81526001600160a01b039091166004820152602401611754565b50635ee0c7dd60e01b95945050505050565b5f336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016811461216a5760405163950d88bf60e01b81526001600160a01b039091166004820152602401611754565b505f61217588613b1b565b905060018154600160201b900460ff16600381111561219657612196615770565b14806121be575060028154600160201b900460ff1660038111156121bc576121bc615770565b145b81548991600160201b90910460ff16906121ed57604051630e851c7960e31b8152600401611754929190616140565b505f9050836121fc86886160c8565b61220691906160c8565b8254909150612233908a9063ffffffff166122218142614153565b61222a8561417f565b611ab8906160db565b506331759a2f60e11b9998505050505050505050565b6122548383836146fe565b505050565b5f5f195f61226685612de4565b9050611f4a612273613c07565b858784614824565b6001600160a01b03165f9081525f51602061684a5f395f51905f52602052604090205490565b61135e8161488f565b61135e81614897565b5f6122bd82613e3f565b90507f3a221b9176b65b4a4850e63cd182357e93d2ad08e8951daa0904244dc82df460816040516122f091815260200190565b60405180910390a1919050565b61230684613b1b565b505f61231785858561222a8661417f565b905081815f8112156123455760405163239de57160e11b815260048101929092526024820152604401611754565b505061236d612352613c07565b308461235c611f10565b6001600160a01b03169291906149bb565b846001600160a01b03167ffe14813540c7709c2d7e702f39b104eeed265dd484f899e9f2f89c801aa6395c858585856123a4613c07565b6040805163ffffffff96871681529590941660208601529284019190915260608301526001600160a01b0316608082015260a00160405180910390a25050505050565b805f6123f16139f5565b8054909150600160401b900460ff1680612418575080546001600160401b03808416911610155b156124365760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b038316908117600160401b1760ff60401b191682556040519081525f51602061686a5f395f51905f52906020015b60405180910390a1505050565b611cc185858585856149f1565b612254838383613d9b565b6060835f6124ab82613b1b565b905060018154600160201b900460ff1660038111156124cc576124cc615770565b14806124f4575060028154600160201b900460ff1660038111156124f2576124f2615770565b145b81548391600160201b90910460ff169061252357604051630e851c7960e31b8152600401611754929190616140565b50505f61252e613984565b905061253b611dca613c07565b61258486868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038b1692915050614475565b93505f61258f613984565b9050818110156125a357611ca581836160f5565b505050509392505050565b6118f0614b44565b5f611a978383613da8565b61135e81613f38565b604080516080810182525f8082526020820181905291810182905260608101919091526125f682613b1b565b6040805160808101909152815463ffffffff811682529091906020830190600160201b900460ff16600381111561262f5761262f615770565b600381111561264057612640615770565b815290546001600160601b03600160281b820481166020840152600160881b9091041660409091015292915050565b5f5f195f61267c8561298b565b9050611f4a612689613c07565b858388614824565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060915f51602061684a5f395f51905f529161158390616108565b611cc185858080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f890181900481028201810190925287815292508791508690819084018382808284375f92019190915250869250613a1d915050565b611a7984848484614824565b5f82815260208190526040902061225490849083613d12565b805f61277282613b1b565b905060018154600160201b900460ff16600381111561279357612793615770565b82548492600160201b90910460ff1691146127c357604051630e851c7960e31b8152600401611754929190616140565b50505f6127cf82613bb3565b9050611a79838383613d12565b5f5f5160206168aa5f395f51905f527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af0282612818878787614482565b81526020019081526020015f20549150509392505050565b5f5f5160206168aa5f395f51905f525b546001600160a01b0316919050565b5f5f612859613c07565b90506118d281858561432e565b5f19810361287d57612876613984565b90506128a5565b612885613984565b8111156128a55760405163af8075e960e01b815260040160405180910390fd5b5f5f5160206168aa5f395f51905f528054604051636e553f6560e01b8152600481018590523060248201529192506001600160a01b031690636e553f65906044016020604051808303815f875af1158015612902573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612254919061609d565b6118f06125ae565b5f81815260208190526040812061294490613bb3565b90507fdc71a294d999569df48c717917073844771891d2646489d0133f026c945d0481816040516122f091815260200190565b5f611a7f613984565b6122548383836142e3565b5f61153f826001613ac4565b5f5f6129a283612e99565b9050808511156129cb57828582604051633fa733bb60e21b8152600401611754939291906162c1565b5f6129d5866118dc565b90506129eb6129e2613c07565b868689856149f1565b95945050505050565b611a7984848080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f880181900481028201810190925286815292508691508590819084018382808284375f92019190915250614b6992505050565b5f5f612a708361324d565b905080851115612a9957828582604051632e52afbb60e21b8152600401611754939291906162c1565b5f612aa3866116ed565b90506129eb612ab0613c07565b8686848a6149f1565b5f612ac384613b1b565b8054604080516001600160601b03600160281b84048116825260208201889052600160881b90930490921690820152606081018490529091506001600160a01b038516907f7e293d291e9dd159f2fbde9523c4191674384553a72c0833ba9cf7dcb5381fb79060800160405180910390a2612b3d83614b7b565b81546001600160601b0391909116600160281b0270ffffffffffffffffffffffff000000000019909116178155612b7382614b7b565b81546001600160601b0391909116600160881b026bffffffffffffffffffffffff60881b19909116179055505050565b6001600160a01b0384165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af016020526040812080545f5160206168aa5f395f51905f529290600160201b900460ff166003811115612c0657612c06615770565b14612c245760405163cd43efa160e01b815260040160405180910390fd5b8463ffffffff165f03612c4a5760405163294da6c760e21b815260040160405180910390fd5b6040805160808101825263ffffffff8716815260016020820152908101612c7086614b7b565b6001600160601b03168152602001612c8785614b7b565b6001600160601b031690526001600160a01b0387165f90815260018401602090815260409091208251815463ffffffff90911663ffffffff19821681178355928401519192839164ffffffffff191617600160201b836003811115612cee57612cee615770565b0217905550604082810151825460609094015165010000000000600160e81b0319909416600160281b6001600160601b03928316026bffffffffffffffffffffffff60881b191617600160881b9190941602929092179055516001600160a01b038716907f422c963a67d52178b43a807b8c9df3a99468f416b736f9f040b6392cf790752e90612d7f9084906162e2565b60405180910390a2505050505050565b6040516001600160601b0319606084901b1660208201526001600160e01b0319821660348201525f90611a9790603801604051602081830303815290604052805160209091012090565b5f611a978383614bae565b5f61153f825f613da8565b5f611a7f614c91565b5f611a978383613ac4565b6120508282614caa565b5f805f5160206168aa5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa158015612e63573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e87919061609d565b612e8f613984565b61148791906160c8565b5f61153f612ea683614cde565b612eae612e0d565b614ceb565b5f612ec0858585856141af565b90507f7281c4a6d49c3bb62269fed398306788c6b3b4fce8789168aa0ab94ec0dd9ec981604051612ef391815260200190565b60405180910390a1949350505050565b5f198103612f88575f5f5160206168aa5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa158015612f60573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f84919061609d565b9150505b80612f9282613e3f565b1461135e5760405163af8075e960e01b815260040160405180910390fd5b6130166040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b845f61302182613b1b565b905060018154600160201b900460ff16600381111561304257613042615770565b82548492600160201b90910460ff16911461307257604051630e851c7960e31b8152600401611754929190616140565b50505f61307e82613bb3565b905061309961308b613c07565b896346d58ca960e11b613c10565b6001600160a01b03851630146130b4576130b4611eeb613c07565b6040516346d58ca960e11b81526001600160a01b03891690638dab1952906130e4908a908a908a90600401616332565b610180604051808303815f875af1158015613101573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131259190616371565b9350613132838383613d12565b505050949350505050565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146131945760405163950d88bf60e01b81526001600160a01b039091166004820152602401611754565b505f61319f86613b1b565b905060018154600160201b900460ff1660038111156131c0576131c0615770565b14806131e8575060028154600160201b900460ff1660038111156131e6576131e6615770565b145b81548791600160201b90910460ff169061321757604051630e851c7960e31b8152600401611754929190616140565b5050805461323a90879063ffffffff166132318142614153565b61222a8761417f565b50636b140e9f60e11b9695505050505050565b5f61153f61325a83614cfa565b612eae6110f4612e0d565b6001600160a01b039182165f9081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b6120508282614d04565b612254838383613c10565b6060835f6132d082613b1b565b905060018154600160201b900460ff1660038111156132f1576132f1615770565b82548492600160201b90910460ff16911461332157604051630e851c7960e31b8152600401611754929190616140565b50505f61332d82613bb3565b90505f80866001600160401b03811115613349576133496154f2565b60405190808252806020026020018201604052801561337c57816020015b60608152602001906001900390816133675790505b5095505f5b8781101561357b575f89898381811061339c5761339c616419565b90506020028101906133ae919061642d565b6133bc916004915f91616249565b6133c591616270565b90508115806133e157506001600160e01b031981811690851614155b156133fc576133f86133f1613c07565b8c83613c10565b8093505b6134678a8a8481811061341157613411616419565b9050602002810190613423919061642d565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038f1692915050614475565b88838151811061347957613479616419565b602002602001018190525082613572575f88838151811061349c5761349c616419565b60200260200101518060200190518101906134b7919061609d565b6040516331a9108f60e11b81526004810182905290915030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa15801561351f573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061354391906162a6565b6001600160a01b0316146135705761356b61355c613c07565b8d6001600160e01b0319613c10565b600193505b505b50600101613381565b505050611f06838383613d12565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146135e05760405163950d88bf60e01b81526001600160a01b039091166004820152602401611754565b5063e8e617b760e01b949350505050565b6060835f6135fe82613b1b565b905060018154600160201b900460ff16600381111561361f5761361f615770565b1480613647575060028154600160201b900460ff16600381111561364557613645615770565b145b81548391600160201b90910460ff169061367657604051630e851c7960e31b8152600401611754929190616140565b50505f613681613984565b90505f856001600160401b0381111561369c5761369c6154f2565b6040519080825280602002602001820160405280156136cf57816020015b60608152602001906001900390816136ba5790505b5094505f5b868110156137e0575f8888838181106136ef576136ef616419565b9050602002810190613701919061642d565b61370f916004915f91616249565b61371891616270565b905081158061373457506001600160e01b031981811690841614155b1561374f5761374b613744613c07565b8b83613c10565b8092505b6137ba89898481811061376457613764616419565b9050602002810190613776919061642d565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038e1692915050614475565b8783815181106137cc576137cc616419565b6020908102919091010152506001016136d4565b50505f61258f613984565b61225483838361432e565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016811461135e5760405163950d88bf60e01b81526001600160a01b039091166004820152602401611754565b6118f0614d38565b5f81600381111561386757613867615770565b0361388557604051635e64536560e11b815260040160405180910390fd5b5f61388f83613b1b565b9050826001600160a01b03167f0638a5c17c348b99c05e7985ee5ee8bc0c41bc7a12265aec4a488d62350c1d24825f0160049054906101000a900460ff16846040516138dc92919061646f565b60405180910390a280548290829064ff000000001916600160201b83600381111561390957613909615770565b0217905550505050565b611a7984848080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f880181900481028201810190925286815292508691508590819084018382808284375f92019190915250614dbd92505050565b5f61398d611f10565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa1580156139d1573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a7f919061609d565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0061153f565b613a25614b44565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a82573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613aa691906162a6565b9050613ab18161488f565b613abb8484614b69565b611a7982614897565b5f611a97613ad0611361565b613adb9060016160c8565b613ae65f600a61656d565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254613b1291906160c8565b85919085614e0d565b6001600160a01b0381165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af0160205260408120805490915f5160206168aa5f395f51905f5291600160201b900460ff166003811115613b7f57613b7f615770565b14158390613bac57604051632dad902160e01b81526001600160a01b039091166004820152602401611754565b5050919050565b5f613bbc613984565b8254909150600160881b90046001600160601b0316811015613c02578154613bf990611b17908390600160881b90046001600160601b03166160f5565b5061153f613984565b919050565b5f611a7f614e4f565b5f613c1b8383612d8f565b90505f306001600160a01b0316633a7b7a396040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c5a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c7e91906162a6565b6001600160a01b031663b70096138630856040518463ffffffff1660e01b8152600401613cad9392919061657b565b6040805180830381865afa158015613cc7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ceb91906165a8565b509050848483836116e35760405163c294136d60e01b81526004016117549392919061657b565b5f613d1b613984565b905081811015611a795782545f90613d5190869063ffffffff16613d3f8142614153565b611ab8613d4c87896160f5565b61417f565b84549091508190600160281b90046001600160601b0316808213156118165760405163395192c560e21b815260048101929092526001600160601b03166024820152604401611754565b6122548383836001614380565b5f611a97613db782600a61656d565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254613de391906160c8565b613deb611361565b613b129060016160c8565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146118f05760405163703e46dd60e11b815260040160405180910390fd5b5f805f5160206168aa5f395f51905f52805460405163ce96cb7760e01b8152306004820152919250613ebf9185916001600160a01b03169063ce96cb7790602401602060405180830381865afa158015613e9b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612eae919061609d565b8154604051632d182be560e21b815260048101839052306024820181905260448201529193506001600160a01b03169063b460af94906064016020604051808303815f875af1158015613f14573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bac919061609d565b6001600160a01b038116613f5f576040516347ddf9c760e01b815260040160405180910390fd5b5f5160206168aa5f395f51905f5280546001600160a01b038381166001600160a01b0319831617835516801561400a57613f97611f10565b60405163095ea7b360e01b81526001600160a01b0383811660048301525f6024830152919091169063095ea7b3906044016020604051808303815f875af1158015613fe4573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061400891906165d5565b505b614012611f10565b60405163095ea7b360e01b81526001600160a01b0385811660048301525f196024830152919091169063095ea7b3906044016020604051808303815f875af1158015614060573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061408491906165d5565b50604080516001600160a01b038084168252851660208201527f9baaddad37a65ca0df0360563fca87a13c1ce354be76d7ec35eac48bd766332a9101612479565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061413557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316614129614e95565b6001600160a01b031614155b156118f05760405163703e46dd60e11b815260040160405180910390fd5b5f63ffffffff838116146141765761417163ffffffff841683616604565b611a97565b611a97826144ca565b5f6001600160ff1b038211156141ab5760405163123baf0360e11b815260048101839052602401611754565b5090565b5f5f5160206168aa5f395f51905f52816141ca878787614482565b905083826002015f8381526020019081526020015f205f8282546141ee9190616617565b918290555083549094508591508390601490614215908490600160a01b9004600b0b61663e565b82546001600160601b039182166101009390930a92830291909202199091161790555081546040805163ffffffff808a1682528816602082015290810186905260608101859052600160a01b909104600b0b60808201526001600160a01b038816907fbc0ff1d27e119160a9a107d0725b9ed31b90773cf47e89332a35a8c1a319eaee9060a00160405180910390a25050949350505050565b6142bb8383836001614ea9565b61225457604051635274afe760e01b81526001600160a01b0384166004820152602401611754565b5f6142ee8484613265565b90505f19811015611a79578181101561432057828183604051637dc7a0d960e11b8152600401611754939291906162c1565b611a7984848484035f614380565b6001600160a01b03831661435757604051634b637e8f60e11b81525f6004820152602401611754565b6001600160a01b0382166122495760405163ec442f0560e01b81525f6004820152602401611754565b5f51602061684a5f395f51905f526001600160a01b0385166143b75760405163e602df0560e01b81525f6004820152602401611754565b6001600160a01b0384166143e057604051634a1406b160e11b81525f6004820152602401611754565b6001600160a01b038086165f90815260018301602090815260408083209388168352929052208390558115611cc157836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258560405161445491815260200190565b60405180910390a35050505050565b365f61446d614f0b565b915091509091565b6060611a9783835f614f48565b6bffffffffffffffff000000006001600160e01b031960e09390931b9290921660c09190911b63ffffffff60c01b161760a01c1660609190911b6001600160601b0319161790565b6107e95f80620151806144e16367748580866160f5565b6144eb9190616604565b90505b816144fb5761016d6144ff565b61016e5b61ffff16811061458257816145165761016d61451a565b61016e5b6145289061ffff16826160f5565b905061453383616675565b9250614540600484616699565b63ffffffff1615801561457b5750614559606484616699565b63ffffffff1615158061457b575061457361019084616699565b63ffffffff16155b91506144ee565b61458c8183614bae565b6145978460646166c0565b63ffffffff16611f4a91906160c8565b6145af614b44565b7f0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e005f806145db84615014565b91509150816145eb5760126145ed565b805b83546001600160a81b031916600160a01b60ff92909216919091026001600160a01b031916176001600160a01b0394909416939093179091555050565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015614684575060408051601f3d908101601f191682019092526146819181019061609d565b60015b6146ac57604051634c9c8ce360e01b81526001600160a01b0383166004820152602401611754565b5f51602061688a5f395f51905f5281146146dc57604051632a87526960e21b815260048101829052602401611754565b612254838361509f565b5f6146ef6139f5565b546001600160401b0316919050565b5f51602061684a5f395f51905f526001600160a01b0384166147385781816002015f82825461472d91906160c8565b909155506147959050565b6001600160a01b0384165f90815260208290526040902054828110156147775784818460405163391434e360e21b8152600401611754939291906162c1565b6001600160a01b0385165f9081526020839052604090209083900390555b6001600160a01b0383166147b35760028101805483900390556147d1565b6001600160a01b0383165f9081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161481691815260200190565b60405180910390a350505050565b61483761482f611f10565b8530856149bb565b6148418382614caa565b826001600160a01b0316846001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d78484604051614816929190918252602082015260400190565b612035614b44565b61489f614b44565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156148fb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061491f91906162a6565b60405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f196024830152919091169063095ea7b3906044016020604051808303815f875af115801561498d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906149b191906165d5565b5061135e81613f38565b6149c98484848460016150f4565b611a7957604051635274afe760e01b81526001600160a01b0385166004820152602401611754565b5f6149fa613984565b905082811015614b2f575f5f5160206168aa5f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa158015614a59573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614a7d919061609d565b614a8783866160f5565b1115614aa65760405163af8075e960e01b815260040160405180910390fd5b80546001600160a01b031663b460af94614ac084876160f5565b6040516001600160e01b031960e084901b1681526004810191909152306024820181905260448201526064016020604051808303815f875af1158015614b08573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614b2c919061609d565b50505b614b3c8686868686615161565b505050505050565b614b4c614c91565b6118f057604051631afcd79f60e31b815260040160405180910390fd5b614b71614b44565b6120508282614dbd565b5f6001600160601b038211156141ab576040516306dfcc6560e41b81526060600482015260248101839052604401611754565b5f601f831015614bc05750600161153f565b8115614be957603c831015614bd75750600261153f565b82614be1816166df565b935050614bfa565b603b831015614bfa5750600261153f565b605a8310614c845760788310614c7d5760978310614c765760b58310614c6f5760d48310614c685760f38310614c61576101118310614c5a576101308310614c535761014e8310614c4c57600c614c87565b600b614c87565b600a614c87565b6009614c87565b6008614c87565b6007614c87565b6006614c87565b6005614c87565b6004614c87565b60035b60ff169392505050565b5f614c9a6139f5565b54600160401b900460ff16919050565b6001600160a01b038216614cd35760405163ec442f0560e01b81525f6004820152602401611754565b6120505f83836146fe565b5f61153f6107c08361324d565b5f828218828410028218611a97565b5f61153f8261227b565b6001600160a01b038216614d2d57604051634b637e8f60e11b81525f6004820152602401611754565b612050825f836146fe565b5f614d416139f5565b8054909150600160401b900460ff1615614d6e5760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161461135e57805467ffffffffffffffff19166001600160401b0390811782556040519081525f51602061686a5f395f51905f529060200160405180910390a150565b614dc5614b44565b5f51602061684a5f395f51905f527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace03614dfe8482616738565b5060048101611a798382616738565b5f614e3a614e1a83615208565b8015614e3557505f8480614e3057614e306165f0565b868809115b151590565b614e45868686615234565b6129eb91906160c8565b5f366014808210801590614e675750614e6733612078565b15614e8d57614e7a36828403815f616249565b614e83916167f2565b60601c9250505090565b339250505090565b5f5f51602061688a5f395f51905f52612840565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f51148316614eff578383151615614ef3573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b365f816014808210801590614f245750614f2433612078565b15614f4157614f378183035f3681616249565b9350935050509091565b5f36614f37565b606081471015614f745760405163cf47918160e01b815247600482015260248101839052604401611754565b5f614f808584866152e4565b9050808015614fa157505f3d1180614fa157505f856001600160a01b03163b115b15614fb657614fae6152f9565b915050611a97565b8015614fe057604051639996b31560e01b81526001600160a01b0386166004820152602401611754565b3d15614ff357614fee615312565b61500c565b60405163d6bda27560e01b815260040160405180910390fd5b509392505050565b5f5f5f61502060405190565b6040805160048152602481019091526020810180516001600160e01b031663313ce56760e01b1790529091505f90819061505b90879061531d565b509150915061506983604052565b818015615077575060203d10155b8015615084575060ff8111155b61508f575f5f615093565b6001815b94509450505050915091565b6150a88261533e565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156150ec5761225482826153a1565b612050615423565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f51148316615150578383151615615144573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b826001600160a01b0316856001600160a01b031614615185576151858386836142e3565b61518f8382614d04565b6151a161519a611f10565b85846142ae565b826001600160a01b0316846001600160a01b0316866001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db85856040516151f9929190918252602082015260400190565b60405180910390a45050505050565b5f600282600381111561521d5761521d615770565b6152279190616828565b60ff166001149050919050565b5f5f5f6152418686615442565b91509150815f036152655783818161525b5761525b6165f0565b0492505050611a97565b81841161527c5761527c600385150260111861545e565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b5f5f5f83516020850186885af1949350505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b5f5f5f60405f855160208701885afa92505f51915060205190509250925092565b806001600160a01b03163b5f0361537357604051634c9c8ce360e01b81526001600160a01b0382166004820152602401611754565b5f51602061688a5f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f6153ae848461546f565b90508080156153cf57505f3d11806153cf57505f846001600160a01b03163b115b156153e4576153dc6152f9565b91505061153f565b801561540e57604051639996b31560e01b81526001600160a01b0385166004820152602401611754565b3d15614ff35761541c615312565b5092915050565b34156118f05760405163b398979f60e01b815260040160405180910390fd5b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f5f5f835160208501865af49392505050565b80356001600160e01b031981168114613c02575f5ffd5b5f602082840312156154a9575f5ffd5b611a9782615482565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f611a9760208301846154b2565b634e487b7160e01b5f52604160045260245ffd5b60405161018081016001600160401b0381118282101715615529576155296154f2565b60405290565b5f5f6001600160401b03841115615548576155486154f2565b50604051601f19601f85018116603f011681018181106001600160401b0382111715615576576155766154f2565b60405283815290508082840185101561558d575f5ffd5b838360208301375f60208583010152509392505050565b5f82601f8301126155b3575f5ffd5b611a978383356020850161552f565b6001600160a01b038116811461135e575f5ffd5b5f5f5f606084860312156155e8575f5ffd5b83356001600160401b038111156155fd575f5ffd5b615609868287016155a4565b93505060208401356001600160401b03811115615624575f5ffd5b615630868287016155a4565b9250506040840135615641816155c2565b809150509250925092565b5f6020828403121561565c575f5ffd5b5035919050565b5f5f83601f840112615673575f5ffd5b5081356001600160401b03811115615689575f5ffd5b6020830191508360208260051b85010111156156a3575f5ffd5b9250929050565b5f5f5f5f606085870312156156bd575f5ffd5b84356156c8816155c2565b935060208501356001600160401b038111156156e2575f5ffd5b6156ee87828801615663565b9094509250506040850135615702816155c2565b939692955090935050565b63ffffffff8116811461135e575f5ffd5b5f5f6040838503121561572f575f5ffd5b823561573a816155c2565b9150602083013561574a8161570d565b809150509250929050565b5f60208284031215615765575f5ffd5b8135611a97816155c2565b634e487b7160e01b5f52602160045260245ffd5b600481106157a057634e487b7160e01b5f52602160045260245ffd5b9052565b6020810161153f8284615784565b5f5f604083850312156157c3575f5ffd5b82356157ce816155c2565b946020939093013593505050565b5f5f83601f8401126157ec575f5ffd5b5081356001600160401b03811115615802575f5ffd5b6020830191508360208285010111156156a3575f5ffd5b5f5f5f5f5f6080868803121561582d575f5ffd5b8535615838816155c2565b94506020860135615848816155c2565b93506040860135925060608601356001600160401b03811115615869575f5ffd5b615875888289016157dc565b969995985093965092949392505050565b801515811461135e575f5ffd5b5f5f604083850312156158a4575f5ffd5b82356158af816155c2565b9150602083013561574a81615886565b5f5f604083850312156158d0575f5ffd5b82356157ce8161570d565b5f5f5f5f5f60a086880312156158ef575f5ffd5b85356158fa816155c2565b9450602086013561590a8161570d565b9350604086013561591a8161570d565b9250606086013591506080860135615931816155c2565b809150509295509295909350565b5f5f5f60608486031215615951575f5ffd5b833561595c816155c2565b9250602084013561596c816155c2565b929592945050506040919091013590565b5f5f5f5f60808587031215615990575f5ffd5b843561599b816155c2565b935060208501356159ab816155c2565b925060408501359150606085013561570281615886565b5f5f5f604084860312156159d4575f5ffd5b83356159df816155c2565b925060208401356001600160401b038111156159f9575f5ffd5b615a05868287016157dc565b9497909650939450505050565b5f5f5f60608486031215615a24575f5ffd5b8335615a2f816155c2565b92506020840135615a3f8161570d565b915060408401356156418161570d565b5f5f60408385031215615a60575f5ffd5b8235615a6b816155c2565b915060208301356001600160401b03811115615a85575f5ffd5b8301601f81018513615a95575f5ffd5b615aa48582356020840161552f565b9150509250929050565b5f5f5f5f60808587031215615ac1575f5ffd5b8435615acc816155c2565b93506020850135615adc816155c2565b93969395505050506040820135916060013590565b5f5f5f5f5f5f60c08789031215615b06575f5ffd5b8635615b11816155c2565b95506020870135615b21816155c2565b95989597505050506040840135936060810135936080820135935060a0909101359150565b5f5f60408385031215615b57575f5ffd5b82359150602083013561574a816155c2565b5f5f5f5f60808587031215615b7c575f5ffd5b8435615b87816155c2565b93506020850135615b978161570d565b92506040850135615ba78161570d565b9396929550929360600135925050565b5f60208284031215615bc7575f5ffd5b81356001600160401b0381168114611a97575f5ffd5b5f5f5f5f5f60a08688031215615bf1575f5ffd5b8535615bfc816155c2565b94506020860135615c0c816155c2565b93506040860135615c1c816155c2565b94979396509394606081013594506080013592915050565b6004811061135e575f5ffd5b5f5f60408385031215615c51575f5ffd5b82359150602083013561574a81615c34565b815163ffffffff1681526020808301516080830191615c8490840182615784565b506001600160601b0360408401511660408301526001600160601b03606084015116606083015292915050565b5f5f5f5f5f60608688031215615cc5575f5ffd5b85356001600160401b03811115615cda575f5ffd5b615ce6888289016157dc565b90965094505060208601356001600160401b03811115615d04575f5ffd5b615d10888289016157dc565b9094509250506040860135615931816155c2565b5f5f5f60608486031215615d36575f5ffd5b8335615d41816155c2565b95602085013595506040909401359392505050565b5f5f5f60608486031215615d68575f5ffd5b833592506020840135615d7a816155c2565b91506040840135615641816155c2565b5f5f5f5f60408587031215615d9d575f5ffd5b84356001600160401b03811115615db2575f5ffd5b615dbe878288016157dc565b90955093505060208501356001600160401b03811115615ddc575f5ffd5b615de8878288016157dc565b95989497509550505050565b5f5f5f5f60808587031215615e07575f5ffd5b8435615e12816155c2565b93506020850135615adc8161570d565b5f5f60408385031215615e33575f5ffd5b8235615e3e816155c2565b9150615e4c60208401615482565b90509250929050565b5f5f60408385031215615e66575f5ffd5b82359150602083013561574a81615886565b5f5f5f5f60608587031215615e8b575f5ffd5b8435615e96816155c2565b935060208501356001600160401b03811115615eb0575f5ffd5b6156ee878288016157dc565b5f61018082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e083015160e0830152610100830151610100830152610120830151610120830152610140830151615f4061014084018264ffffffffff169052565b5061016083015161541c61016084018264ffffffffff169052565b5f5f60408385031215615f6c575f5ffd5b8235615f77816155c2565b9150602083013561574a816155c2565b5f5f5f60608486031215615f99575f5ffd5b8335615fa4816155c2565b92506020840135615fb4816155c2565b9150615fc260408501615482565b90509250925092565b5f5f5f60408486031215615fdd575f5ffd5b8335615fe8816155c2565b925060208401356001600160401b03811115616002575f5ffd5b615a0586828701615663565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b8281101561606557603f198786030184526160508583516154b2565b94506020938401939190910190600101616034565b50929695505050505050565b5f5f60408385031215616082575f5ffd5b823561608d816155c2565b9150602083013561574a81615c34565b5f602082840312156160ad575f5ffd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561153f5761153f6160b4565b5f600160ff1b82016160ef576160ef6160b4565b505f0390565b8181038181111561153f5761153f6160b4565b600181811c9082168061611c57607f821691505b60208210810361613a57634e487b7160e01b5f52602260045260245ffd5b50919050565b6001600160a01b038316815260408101611a976020830184615784565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b604080825281018390525f6060600585901b830181019083018683601e1936839003015b8882101561621657868503605f1901845282358181126161c7575f5ffd5b8a016020810190356001600160401b038111156161e2575f5ffd5b8036038213156161f0575f5ffd5b6161fb87828461615d565b965050506020830192506020840193506001820191506161a9565b5050506001600160a01b0385166020850152509050611f4a565b60ff818116838216019081111561153f5761153f6160b4565b5f5f85851115616257575f5ffd5b83861115616263575f5ffd5b5050820193919092039150565b80356001600160e01b0319811690600484101561541c576001600160e01b031960049490940360031b84901b1690921692915050565b5f602082840312156162b6575f5ffd5b8151611a97816155c2565b6001600160a01b039390931683526020830191909152604082015260600190565b5f608082019050825463ffffffff811683526163076020840160ff8360201c16615784565b6001600160601b038160281c1660408401526001600160601b038160881c1660608401525092915050565b604081525f61634560408301858761615d565b905060018060a01b0383166020830152949350505050565b805164ffffffffff81168114613c02575f5ffd5b5f610180828403128015616383575f5ffd5b5061638c615506565b825181526020808401519082015260408084015190820152606080840151908201526080808401519082015260a0808401519082015260c0808401519082015260e08084015190820152610100808401519082015261012080840151908201526163f9610140840161635d565b61014082015261640c610160840161635d565b6101608201529392505050565b634e487b7160e01b5f52603260045260245ffd5b5f5f8335601e19843603018112616442575f5ffd5b8301803591506001600160401b0382111561645b575f5ffd5b6020019150368190038213156156a3575f5ffd5b6040810161647d8285615784565b611a976020830184615784565b6001815b60018411156164c5578085048111156164a9576164a96160b4565b60018416156164b757908102905b60019390931c92800261648e565b935093915050565b5f826164db5750600161153f565b816164e757505f61153f565b81600181146164fd576002811461650757616523565b600191505061153f565b60ff841115616518576165186160b4565b50506001821b61153f565b5060208310610133831016604e8410600b8410161715616546575081810a61153f565b6165525f19848461648a565b805f1904821115616565576165656160b4565b029392505050565b5f611a9760ff8416836164cd565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b5f5f604083850312156165b9575f5ffd5b82516165c481615886565b602084015190925061574a8161570d565b5f602082840312156165e5575f5ffd5b8151611a9781615886565b634e487b7160e01b5f52601260045260245ffd5b5f82616612576166126165f0565b500490565b8082018281125f831280158216821582161715616636576166366160b4565b505092915050565b600b81810b9083900b016b7fffffffffffffffffffffff81136b7fffffffffffffffffffffff198212171561153f5761153f6160b4565b5f63ffffffff821663ffffffff8103616690576166906160b4565b60010192915050565b5f63ffffffff8316806166ae576166ae6165f0565b8063ffffffff84160691505092915050565b63ffffffff818116838216029081169081811461541c5761541c6160b4565b5f816166ed576166ed6160b4565b505f190190565b601f82111561225457805f5260205f20601f840160051c810160208510156167195750805b601f840160051c820191505b81811015611cc1575f8155600101616725565b81516001600160401b03811115616751576167516154f2565b6167658161675f8454616108565b846166f4565b6020601f821160018114616797575f83156167805750848201515b5f19600385901b1c1916600184901b178455611cc1565b5f84815260208120601f198516915b828110156167c657878501518255602094850194600190920191016167a6565b50848210156167e357868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b80356001600160601b0319811690601484101561541c576001600160601b031960149490940360031b84901b1690921692915050565b5f60ff83168061683a5761683a6165f0565b8060ff8416069150509291505056fe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00c7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af00a2646970667358221220ae96fbaf08e4d5195a49478115cf45a9c62556279615ad89ce34b73c64389bc364736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x6ED JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x83B95579 GT PUSH2 0x38A JUMPI DUP1 PUSH4 0xC0C51217 GT PUSH2 0x1DE JUMPI DUP1 PUSH4 0xE047838D GT PUSH2 0x108 JUMPI DUP1 PUSH4 0xEFB43B07 GT PUSH2 0xA8 JUMPI DUP1 PUSH4 0xF7A39333 GT PUSH2 0x78 JUMPI DUP1 PUSH4 0xF7A39333 EQ PUSH2 0x12FE JUMPI DUP1 PUSH4 0xFA171C92 EQ PUSH2 0x131D JUMPI DUP1 PUSH4 0xFA3045D0 EQ PUSH2 0x1331 JUMPI DUP1 PUSH4 0xFBF9C9CE EQ PUSH2 0x1344 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xEFB43B07 EQ PUSH2 0x12DB JUMPI DUP1 PUSH4 0xF14B624B EQ PUSH2 0x12EE JUMPI DUP1 PUSH4 0xF15476A2 EQ PUSH2 0xFAC JUMPI DUP1 PUSH4 0xF5F1BEC0 EQ PUSH2 0x12F6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xE8E617B7 GT PUSH2 0xE3 JUMPI DUP1 PUSH4 0xE8E617B7 EQ PUSH2 0x128B JUMPI DUP1 PUSH4 0xEE07ABBB EQ PUSH2 0x12AA JUMPI DUP1 PUSH4 0xEF4F78D1 EQ PUSH2 0x12C9 JUMPI DUP1 PUSH4 0xEF8B30F7 EQ PUSH2 0x10DA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xE047838D EQ PUSH2 0x122D JUMPI DUP1 PUSH4 0xE483B6E1 EQ PUSH2 0x1240 JUMPI DUP1 PUSH4 0xE77659FD EQ PUSH2 0x125F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xCC671A18 GT PUSH2 0x17E JUMPI DUP1 PUSH4 0xD52F99CE GT PUSH2 0x14E JUMPI DUP1 PUSH4 0xD52F99CE EQ PUSH2 0x11A4 JUMPI DUP1 PUSH4 0xD6281D3E EQ PUSH2 0x11D0 JUMPI DUP1 PUSH4 0xD905777E EQ PUSH2 0x11EF JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x120E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xCC671A18 EQ PUSH2 0x113F JUMPI DUP1 PUSH4 0xCE96CB77 EQ PUSH2 0x1153 JUMPI DUP1 PUSH4 0xD2E26FE4 EQ PUSH2 0x1172 JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0x1185 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC6E6F592 GT PUSH2 0x1B9 JUMPI DUP1 PUSH4 0xC6E6F592 EQ PUSH2 0x10DA JUMPI DUP1 PUSH4 0xC9EB0571 EQ PUSH2 0x10F9 JUMPI DUP1 PUSH4 0xCA10ECA0 EQ PUSH2 0x110D JUMPI DUP1 PUSH4 0xCC461D62 EQ PUSH2 0x112C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xC0C51217 EQ PUSH2 0x109C JUMPI DUP1 PUSH4 0xC3BA11F5 EQ PUSH2 0x10BB JUMPI DUP1 PUSH4 0xC63D75B6 EQ PUSH2 0xB74 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA7F8A5E2 GT PUSH2 0x2BF JUMPI DUP1 PUSH4 0xAEABD329 GT PUSH2 0x25F JUMPI DUP1 PUSH4 0xB7E44F4E GT PUSH2 0x22F JUMPI DUP1 PUSH4 0xB7E44F4E EQ PUSH2 0x102C JUMPI DUP1 PUSH4 0xBA087652 EQ PUSH2 0x103F JUMPI DUP1 PUSH4 0xBDB5371D EQ PUSH2 0x105E JUMPI DUP1 PUSH4 0xBFDB20DA EQ PUSH2 0x107D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAEABD329 EQ PUSH2 0xFC7 JUMPI DUP1 PUSH4 0xB2331D7D EQ PUSH2 0xFDB JUMPI DUP1 PUSH4 0xB3D7F6B9 EQ PUSH2 0xFEE JUMPI DUP1 PUSH4 0xB460AF94 EQ PUSH2 0x100D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xAC860F74 GT PUSH2 0x29A JUMPI DUP1 PUSH4 0xAC860F74 EQ PUSH2 0xF5D JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0xF7C JUMPI DUP1 PUSH4 0xADFDFE2E EQ PUSH2 0xFAC JUMPI DUP1 PUSH4 0xAE6AAA62 EQ PUSH2 0xFB4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0xF0F JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0xF23 JUMPI DUP1 PUSH4 0xA9ED1487 EQ PUSH2 0xF42 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x94BF804D GT PUSH2 0x32A JUMPI DUP1 PUSH4 0x9C0B90C7 GT PUSH2 0x305 JUMPI DUP1 PUSH4 0x9C0B90C7 EQ PUSH2 0xEB7 JUMPI DUP1 PUSH4 0x9C5BAEAA EQ PUSH2 0xECA JUMPI DUP1 PUSH4 0x9DB0391F EQ PUSH2 0xEDD JUMPI DUP1 PUSH4 0xA3AC9390 EQ PUSH2 0xEF0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x94BF804D EQ PUSH2 0xE71 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0xE90 JUMPI DUP1 PUSH4 0x97F8423E EQ PUSH2 0xEA4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8963227F GT PUSH2 0x365 JUMPI DUP1 PUSH4 0x8963227F EQ PUSH2 0xE0B JUMPI DUP1 PUSH4 0x8B4E914A EQ PUSH2 0xE13 JUMPI DUP1 PUSH4 0x8D94D575 EQ PUSH2 0xE32 JUMPI DUP1 PUSH4 0x8F792465 EQ PUSH2 0xE45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x83B95579 EQ PUSH2 0xDC6 JUMPI DUP1 PUSH4 0x861E3D3D EQ PUSH2 0xDD9 JUMPI DUP1 PUSH4 0x86B44083 EQ PUSH2 0xDEC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x38D52E0F GT PUSH2 0x541 JUMPI DUP1 PUSH4 0x5EE0C7DD GT PUSH2 0x476 JUMPI DUP1 PUSH4 0x759076E5 GT PUSH2 0x416 JUMPI DUP1 PUSH4 0x811EECF5 GT PUSH2 0x3E6 JUMPI DUP1 PUSH4 0x811EECF5 EQ PUSH2 0xD79 JUMPI DUP1 PUSH4 0x818F5673 EQ PUSH2 0xD8C JUMPI DUP1 PUSH4 0x82DBBD71 EQ PUSH2 0xD94 JUMPI DUP1 PUSH4 0x833D816D EQ PUSH2 0xDB3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x759076E5 EQ PUSH2 0xCF7 JUMPI DUP1 PUSH4 0x75B58C95 EQ PUSH2 0xD21 JUMPI DUP1 PUSH4 0x7DA0A877 EQ PUSH2 0xD34 JUMPI DUP1 PUSH4 0x80DA0A1C EQ PUSH2 0xD66 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x67354A84 GT PUSH2 0x451 JUMPI DUP1 PUSH4 0x67354A84 EQ PUSH2 0xC93 JUMPI DUP1 PUSH4 0x6855A178 EQ PUSH2 0xCA6 JUMPI DUP1 PUSH4 0x6E553F65 EQ PUSH2 0xCB9 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0xCD8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x5EE0C7DD EQ PUSH2 0xC4D JUMPI DUP1 PUSH4 0x62EB345E EQ PUSH2 0xC6C JUMPI DUP1 PUSH4 0x657AB2B3 EQ PUSH2 0xC8B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4CDAD506 GT PUSH2 0x4E1 JUMPI DUP1 PUSH4 0x4FD5303D GT PUSH2 0x4BC JUMPI DUP1 PUSH4 0x4FD5303D EQ PUSH2 0xBD9 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0xC05 JUMPI DUP1 PUSH4 0x53C42F88 EQ PUSH2 0xC19 JUMPI DUP1 PUSH4 0x572B6C05 EQ PUSH2 0xC2E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x7A6 JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0xACB JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0xBC6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x401022EF GT PUSH2 0x51C JUMPI DUP1 PUSH4 0x401022EF EQ PUSH2 0xB6C JUMPI DUP1 PUSH4 0x402D267D EQ PUSH2 0xB74 JUMPI DUP1 PUSH4 0x4092B0C1 EQ PUSH2 0xB94 JUMPI DUP1 PUSH4 0x48798720 EQ PUSH2 0xBB3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x38D52E0F EQ PUSH2 0xB22 JUMPI DUP1 PUSH4 0x3E15A357 EQ PUSH2 0xB36 JUMPI DUP1 PUSH4 0x3EDEB257 EQ PUSH2 0xB55 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0x622 JUMPI DUP1 PUSH4 0x2904DF29 GT PUSH2 0x5C2 JUMPI DUP1 PUSH4 0x32CADF3C GT PUSH2 0x592 JUMPI DUP1 PUSH4 0x32CADF3C EQ PUSH2 0xA98 JUMPI DUP1 PUSH4 0x33BDED3C EQ PUSH2 0xAAC JUMPI DUP1 PUSH4 0x33F965CE EQ PUSH2 0xACB JUMPI DUP1 PUSH4 0x342DB739 EQ PUSH2 0xAFD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x2904DF29 EQ PUSH2 0xA20 JUMPI DUP1 PUSH4 0x2F9CF0AA EQ PUSH2 0xA4C JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0xA5F JUMPI DUP1 PUSH4 0x32BC74AA EQ PUSH2 0xA85 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1A7E8014 GT PUSH2 0x5FD JUMPI DUP1 PUSH4 0x1A7E8014 EQ PUSH2 0x99A JUMPI DUP1 PUSH4 0x1C93944F EQ PUSH2 0x9AE JUMPI DUP1 PUSH4 0x225C531E EQ PUSH2 0x9E2 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0xA01 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18160DDD EQ PUSH2 0x916 JUMPI DUP1 PUSH4 0x194448E5 EQ PUSH2 0x949 JUMPI DUP1 PUSH4 0x1A034AFB EQ PUSH2 0x968 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8742D90 GT PUSH2 0x68D JUMPI DUP1 PUSH4 0xA28A477 GT PUSH2 0x668 JUMPI DUP1 PUSH4 0xA28A477 EQ PUSH2 0x88C JUMPI DUP1 PUSH4 0xAECC093 EQ PUSH2 0x8AB JUMPI DUP1 PUSH4 0xCABF231 EQ PUSH2 0x8BF JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x8DE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8742D90 EQ PUSH2 0x7E4 JUMPI DUP1 PUSH4 0x91EA8A6 EQ PUSH2 0x803 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x86D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 GT PUSH2 0x6C8 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x764 JUMPI DUP1 PUSH4 0x77F224A EQ PUSH2 0x785 JUMPI DUP1 PUSH4 0x7A2D13A EQ PUSH2 0x7A6 JUMPI DUP1 PUSH4 0x7C2E878 EQ PUSH2 0x7C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1E1D114 EQ PUSH2 0x6F8 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x71F JUMPI DUP1 PUSH4 0x25CA58E EQ PUSH2 0x74E JUMPI PUSH0 PUSH0 REVERT JUMPDEST CALLDATASIZE PUSH2 0x6F4 JUMPI STOP JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x703 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x1361 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x72A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x73E PUSH2 0x739 CALLDATASIZE PUSH1 0x4 PUSH2 0x5499 JUMP JUMPDEST PUSH2 0x14A3 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x716 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x759 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH4 0x67748580 PUSH2 0x70C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x76F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x778 PUSH2 0x1545 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x716 SWAP2 SWAP1 PUSH2 0x54E0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x790 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x79F CALLDATASIZE PUSH1 0x4 PUSH2 0x55D6 JUMP JUMPDEST PUSH2 0x1605 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x7C0 CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x16ED JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x7DF CALLDATASIZE PUSH1 0x4 PUSH2 0x56AA JUMP JUMPDEST PUSH2 0x16F8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x7FE CALLDATASIZE PUSH1 0x4 PUSH2 0x571E JUMP JUMPDEST PUSH2 0x181F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x80E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x860 PUSH2 0x81D CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x716 SWAP2 SWAP1 PUSH2 0x57A4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x878 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x73E PUSH2 0x887 CALLDATASIZE PUSH1 0x4 PUSH2 0x57B2 JUMP JUMPDEST PUSH2 0x18BB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x897 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x8A6 CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x18DC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x18E8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8CA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x70C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8FD PUSH2 0x8F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x5819 JUMP JUMPDEST PUSH2 0x18F2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x716 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x921 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x70C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x954 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x963 CALLDATASIZE PUSH1 0x4 PUSH2 0x5893 JUMP JUMPDEST PUSH2 0x195C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x973 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x70C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9A5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x1A84 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x9CD PUSH2 0x9C8 CALLDATASIZE PUSH1 0x4 PUSH2 0x58BF JUMP JUMPDEST PUSH2 0x1A8C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x716 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x9FC CALLDATASIZE PUSH1 0x4 PUSH2 0x58DB JUMP JUMPDEST PUSH2 0x1A9E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA0C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x73E PUSH2 0xA1B CALLDATASIZE PUSH1 0x4 PUSH2 0x593F JUMP JUMPDEST PUSH2 0x1BC2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA2B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xA34 PUSH2 0x1BEF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x716 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xA5A CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x1BF8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA6A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xA73 PUSH2 0x1CC8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x716 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xA93 CALLDATASIZE PUSH1 0x4 PUSH2 0x597D JUMP JUMPDEST PUSH2 0x1D04 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAA3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x778 PUSH2 0x1D10 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAB7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x778 PUSH2 0xAC6 CALLDATASIZE PUSH1 0x4 PUSH2 0x59C2 JUMP JUMPDEST PUSH2 0x1D53 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAD6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0xA34 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB08 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH15 0x1A185C991A185D0B595E1C1BDCD959 PUSH1 0x8A SHL DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB2D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xA34 PUSH2 0x1F10 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB41 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0xB50 CALLDATASIZE PUSH1 0x4 PUSH2 0x5A12 JUMP JUMPDEST PUSH2 0x1F3E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB60 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x9CD PUSH4 0xFFFFFFFF DUP2 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x1F52 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB7F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0xB8E CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST POP PUSH0 NOT SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB9F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x9CD PUSH2 0xBAE CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x202B JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xBC1 CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x2035 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xBD4 CALLDATASIZE PUSH1 0x4 PUSH2 0x5A4F JUMP JUMPDEST PUSH2 0x203E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xBE4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xBED PUSH2 0x2054 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x716 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC10 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x205D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC24 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH3 0x15180 PUSH2 0x70C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC39 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x73E PUSH2 0xC48 CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x2078 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC58 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8FD PUSH2 0xC67 CALLDATASIZE PUSH1 0x4 PUSH2 0x5AAE JUMP JUMPDEST PUSH2 0x20AA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC77 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8FD PUSH2 0xC86 CALLDATASIZE PUSH1 0x4 PUSH2 0x5AF1 JUMP JUMPDEST PUSH2 0x2113 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x1A84 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC9E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x14 PUSH2 0x70C JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xCB4 CALLDATASIZE PUSH1 0x4 PUSH2 0x593F JUMP JUMPDEST PUSH2 0x2249 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xCC4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0xCD3 CALLDATASIZE PUSH1 0x4 PUSH2 0x5B46 JUMP JUMPDEST PUSH2 0x2259 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xCE3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0xCF2 CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x227B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD02 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x70C JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xD2F CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x22A1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD3F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0xA34 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xD74 CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x22AA JUMP JUMPDEST PUSH2 0x70C PUSH2 0xD87 CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x22B3 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x18E8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD9F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0xDAE CALLDATASIZE PUSH1 0x4 PUSH2 0x5B69 JUMP JUMPDEST PUSH2 0x22FD JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xDC1 CALLDATASIZE PUSH1 0x4 PUSH2 0x5BB7 JUMP JUMPDEST PUSH2 0x23E7 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xDD4 CALLDATASIZE PUSH1 0x4 PUSH2 0x5BDD JUMP JUMPDEST PUSH2 0x2486 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xDE7 CALLDATASIZE PUSH1 0x4 PUSH2 0x593F JUMP JUMPDEST PUSH2 0x2493 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xDF7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x778 PUSH2 0xE06 CALLDATASIZE PUSH1 0x4 PUSH2 0x59C2 JUMP JUMPDEST PUSH2 0x249E JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x25AE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE1E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0xE2D CALLDATASIZE PUSH1 0x4 PUSH2 0x5C40 JUMP JUMPDEST PUSH2 0x25B6 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xE40 CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x25C1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE50 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xE64 PUSH2 0xE5F CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x25CA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x716 SWAP2 SWAP1 PUSH2 0x5C63 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE7C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0xE8B CALLDATASIZE PUSH1 0x4 PUSH2 0x5B46 JUMP JUMPDEST PUSH2 0x266F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE9B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x778 PUSH2 0x2691 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xEB2 CALLDATASIZE PUSH1 0x4 PUSH2 0x5CB1 JUMP JUMPDEST PUSH2 0x26CF JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xEC5 CALLDATASIZE PUSH1 0x4 PUSH2 0x5AAE JUMP JUMPDEST PUSH2 0x2742 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xED8 CALLDATASIZE PUSH1 0x4 PUSH2 0x5D24 JUMP JUMPDEST PUSH2 0x274E JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xEEB CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x2767 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xEFB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0xF0A CALLDATASIZE PUSH1 0x4 PUSH2 0x5A12 JUMP JUMPDEST PUSH2 0x27DC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF1A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xA34 PUSH2 0x2830 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF2E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x73E PUSH2 0xF3D CALLDATASIZE PUSH1 0x4 PUSH2 0x57B2 JUMP JUMPDEST PUSH2 0x284F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF4D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8FD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF68 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0xF77 CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x2866 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF87 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x778 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x2926 JUMP JUMPDEST PUSH2 0x70C PUSH2 0xFC2 CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x292E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xFD2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x2977 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0xFE9 CALLDATASIZE PUSH1 0x4 PUSH2 0x593F JUMP JUMPDEST PUSH2 0x2980 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xFF9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x1008 CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x298B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1018 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x1027 CALLDATASIZE PUSH1 0x4 PUSH2 0x5D56 JUMP JUMPDEST PUSH2 0x2997 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x103A CALLDATASIZE PUSH1 0x4 PUSH2 0x5D8A JUMP JUMPDEST PUSH2 0x29F4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x104A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x1059 CALLDATASIZE PUSH1 0x4 PUSH2 0x5D56 JUMP JUMPDEST PUSH2 0x2A65 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1069 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x1078 CALLDATASIZE PUSH1 0x4 PUSH2 0x5D24 JUMP JUMPDEST PUSH2 0x2AB9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1088 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x1097 CALLDATASIZE PUSH1 0x4 PUSH2 0x5DF4 JUMP JUMPDEST PUSH2 0x2BA3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8FD PUSH2 0x10B6 CALLDATASIZE PUSH1 0x4 PUSH2 0x5E22 JUMP JUMPDEST PUSH2 0x2D8F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10C6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x10D5 CALLDATASIZE PUSH1 0x4 PUSH2 0x5E55 JUMP JUMPDEST PUSH2 0x2DD9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10E5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x10F4 CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x2DE4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1104 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x73E PUSH2 0x2DEF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1118 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x1127 CALLDATASIZE PUSH1 0x4 PUSH2 0x5C40 JUMP JUMPDEST PUSH2 0x2DF8 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x113A CALLDATASIZE PUSH1 0x4 PUSH2 0x57B2 JUMP JUMPDEST PUSH2 0x2E03 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x114A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x2E0D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x115E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x116D CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x2E99 JUMP JUMPDEST PUSH2 0x70C PUSH2 0x1180 CALLDATASIZE PUSH1 0x4 PUSH2 0x5B69 JUMP JUMPDEST PUSH2 0x2EB3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1190 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x119F CALLDATASIZE PUSH1 0x4 PUSH2 0x564C JUMP JUMPDEST PUSH2 0x2F03 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11AF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x11C3 PUSH2 0x11BE CALLDATASIZE PUSH1 0x4 PUSH2 0x5E78 JUMP JUMPDEST PUSH2 0x2FB0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x716 SWAP2 SWAP1 PUSH2 0x5EBC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11DB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8FD PUSH2 0x11EA CALLDATASIZE PUSH1 0x4 PUSH2 0x5AAE JUMP JUMPDEST PUSH2 0x313D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x11FA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x1209 CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST PUSH2 0x324D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1219 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x70C PUSH2 0x1228 CALLDATASIZE PUSH1 0x4 PUSH2 0x5F5B JUMP JUMPDEST PUSH2 0x3265 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x123B CALLDATASIZE PUSH1 0x4 PUSH2 0x57B2 JUMP JUMPDEST PUSH2 0x32AE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x124B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x125A CALLDATASIZE PUSH1 0x4 PUSH2 0x5F87 JUMP JUMPDEST PUSH2 0x32B8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x126A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x127E PUSH2 0x1279 CALLDATASIZE PUSH1 0x4 PUSH2 0x5FCB JUMP JUMPDEST PUSH2 0x32C3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x716 SWAP2 SWAP1 PUSH2 0x600E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1296 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x8FD PUSH2 0x12A5 CALLDATASIZE PUSH1 0x4 PUSH2 0x593F JUMP JUMPDEST PUSH2 0x3589 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x12B5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x127E PUSH2 0x12C4 CALLDATASIZE PUSH1 0x4 PUSH2 0x5FCB JUMP JUMPDEST PUSH2 0x35F1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x12D4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 PUSH2 0xA73 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x12E9 CALLDATASIZE PUSH1 0x4 PUSH2 0x593F JUMP JUMPDEST PUSH2 0x37EB JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x37F6 JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x384C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1309 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x1318 CALLDATASIZE PUSH1 0x4 PUSH2 0x6071 JUMP JUMPDEST PUSH2 0x3854 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1328 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x25AE JUMP JUMPDEST PUSH2 0x7A4 PUSH2 0x133F CALLDATASIZE PUSH1 0x4 PUSH2 0x5D8A JUMP JUMPDEST PUSH2 0x3913 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x134F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x7A4 PUSH2 0x135E CALLDATASIZE PUSH1 0x4 PUSH2 0x5755 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x1378 PUSH2 0x3984 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13C6 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 0x13EA SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1408 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1423 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 0x1447 SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH2 0x1451 SWAP1 DUP4 PUSH2 0x60C8 JUMP JUMPDEST DUP2 SLOAD SWAP1 SWAP3 POP PUSH0 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xB SIGNEXTEND SLT ISZERO PUSH2 0x148D JUMPI DUP1 SLOAD PUSH2 0x147D SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x60DB JUMP JUMPDEST PUSH2 0x1487 SWAP1 DUP4 PUSH2 0x60F5 JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH2 0x1487 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND DUP4 PUSH2 0x60C8 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0x14D3 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x162FC85 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0x14EE JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x36372B07 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1509 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA219A025 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x1524 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x43EFF2D PUSH1 0xE5 SHL EQ JUMPDEST DUP1 PUSH2 0x153F 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 PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x684A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x1583 SWAP1 PUSH2 0x6108 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 0x15AF SWAP1 PUSH2 0x6108 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x15FA JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x15D1 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x15FA 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 0x15DD JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x160E PUSH2 0x39F5 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x1634 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x164F JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x165D JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x167B JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x16A5 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0x16B0 DUP9 DUP9 DUP9 PUSH2 0x3A1D JUMP JUMPDEST DUP4 ISZERO PUSH2 0x16E3 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x686A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH0 PUSH2 0x3AC4 JUMP JUMPDEST DUP4 PUSH0 PUSH2 0x1703 DUP3 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1724 JUMPI PUSH2 0x1724 PUSH2 0x5770 JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x175D JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP PUSH0 PUSH2 0x1769 DUP3 PUSH2 0x3BB3 JUMP JUMPDEST SWAP1 POP PUSH2 0x1784 PUSH2 0x1776 PUSH2 0x3C07 JUMP JUMPDEST DUP9 PUSH4 0x46D58CA9 PUSH1 0xE1 SHL PUSH2 0x3C10 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ADDRESS EQ PUSH2 0x17AE JUMPI PUSH2 0x17AE PUSH2 0x179F PUSH2 0x3C07 JUMP JUMPDEST DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x3C10 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3E1E7C3 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 PUSH4 0x1F0F3E18 SWAP1 PUSH2 0x17DE SWAP1 DUP10 SWAP1 DUP10 SWAP1 DUP10 SWAP1 PUSH1 0x4 ADD PUSH2 0x6185 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x17F5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1807 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH2 0x1816 DUP4 DUP4 DUP4 PUSH2 0x3D12 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x1845 JUMPI PUSH1 0x40 MLOAD PUSH4 0x294DA6C7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x184F DUP4 PUSH2 0x3B1B JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP6 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP2 PUSH32 0x4345EC61F717774FDB684B701C34934889550330DA2B93F2C3A33379DB77F817 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 SLOAD PUSH4 0xFFFFFFFF NOT AND PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x18C5 PUSH2 0x3C07 JUMP JUMPDEST SWAP1 POP PUSH2 0x18D2 DUP2 DUP6 DUP6 PUSH2 0x3D9B JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH1 0x1 PUSH2 0x3DA8 JUMP JUMPDEST PUSH2 0x18F0 PUSH2 0x3DF6 JUMP JUMPDEST JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x1949 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0x1754 JUMP JUMPDEST POP PUSH4 0xA85BD01 PUSH1 0xE1 SHL SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x19BD 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 0x19E1 SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19FF SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1A1A 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 0x1A3E SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x1A4A DUP3 PUSH2 0x3E3F JUMP JUMPDEST EQ DUP1 PUSH2 0x1A53 JUMPI POP DUP3 JUMPDEST PUSH2 0x1A70 JUMPI PUSH1 0x40 MLOAD PUSH4 0x292D4C4B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1A79 DUP5 PUSH2 0x3F38 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x18F0 PUSH2 0x40C5 JUMP JUMPDEST PUSH0 PUSH2 0x1A97 DUP4 DUP4 PUSH2 0x4153 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x1AA7 DUP6 PUSH2 0x3B1B JUMP JUMPDEST POP PUSH0 PUSH2 0x1ABD DUP7 DUP7 DUP7 PUSH2 0x1AB8 DUP8 PUSH2 0x417F JUMP JUMPDEST PUSH2 0x41AF JUMP JUMPDEST SWAP1 POP DUP3 DUP2 PUSH0 DUP2 SGT ISZERO PUSH2 0x1AEB JUMPI PUSH1 0x40 MLOAD PUSH4 0xC97A6BF PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1754 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x1AF6 PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x1B3A JUMPI PUSH2 0x1B0A DUP2 DUP6 PUSH2 0x60F5 JUMP JUMPDEST PUSH2 0x1B1C PUSH2 0x1B17 DUP4 DUP8 PUSH2 0x60F5 JUMP JUMPDEST PUSH2 0x3E3F JUMP JUMPDEST EQ PUSH2 0x1B3A JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1B57 DUP4 DUP6 PUSH2 0x1B47 PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x42AE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP1 DUP10 AND DUP3 MSTORE DUP8 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x80 DUP4 ADD MSTORE DUP9 AND SWAP1 PUSH32 0xCC010DD322EB2BC19138CF20160AD5643925810F442FC6C5D48B9B4C59B34EFE SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1BCC PUSH2 0x3C07 JUMP JUMPDEST SWAP1 POP PUSH2 0x1BD9 DUP6 DUP3 DUP6 PUSH2 0x42E3 JUMP JUMPDEST PUSH2 0x1BE4 DUP6 DUP6 DUP6 PUSH2 0x432E JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A7F PUSH2 0x3C07 JUMP JUMPDEST DUP1 PUSH0 PUSH2 0x1C03 DUP3 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1C24 JUMPI PUSH2 0x1C24 PUSH2 0x5770 JUMP JUMPDEST EQ DUP1 PUSH2 0x1C4C JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1C4A JUMPI PUSH2 0x1C4A PUSH2 0x5770 JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x1C7B JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x1C86 PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1C91 PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1CC1 JUMPI PUSH2 0x1CA5 DUP2 DUP4 PUSH2 0x60F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x51F59775 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH32 0x773E532DFEDE91F04B12A73D3D2ACD361424F41F76B4FB79F090161E36B4E00 SWAP1 POP PUSH0 DUP2 SLOAD PUSH2 0x1487 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x6230 JUMP JUMPDEST PUSH2 0x1A79 DUP5 DUP5 DUP5 DUP5 PUSH2 0x4380 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1D1A PUSH2 0x4463 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 SWAP3 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x1D60 DUP3 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1D81 JUMPI PUSH2 0x1D81 PUSH2 0x5770 JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x1DB1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x1DBD DUP3 PUSH2 0x3BB3 JUMP JUMPDEST SWAP1 POP PUSH2 0x1DE6 PUSH2 0x1DCA PUSH2 0x3C07 JUMP JUMPDEST DUP9 PUSH2 0x1DD8 PUSH1 0x4 PUSH0 DUP11 DUP13 PUSH2 0x6249 JUMP JUMPDEST PUSH2 0x1DE1 SWAP2 PUSH2 0x6270 JUMP JUMPDEST PUSH2 0x3C10 JUMP JUMPDEST PUSH2 0x1E2F DUP7 DUP7 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 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP3 SWAP2 POP POP PUSH2 0x4475 JUMP JUMPDEST SWAP4 POP PUSH0 DUP5 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1E46 SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1EAE 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 0x1ED2 SWAP2 SWAP1 PUSH2 0x62A6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1EFA JUMPI PUSH2 0x1EFA PUSH2 0x1EEB PUSH2 0x3C07 JUMP JUMPDEST DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x3C10 JUMP JUMPDEST POP PUSH2 0x1F06 DUP4 DUP4 DUP4 PUSH2 0x3D12 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x773E532DFEDE91F04B12A73D3D2ACD361424F41F76B4FB79F090161E36B4E00 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x1F4A DUP5 DUP5 DUP5 PUSH2 0x4482 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1F5B PUSH2 0x39F5 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x1F81 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x1F9C JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x1FAA JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x1FC8 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x1FF2 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST DUP4 ISZERO PUSH2 0x1CC1 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x686A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH2 0x44CA JUMP JUMPDEST PUSH2 0x135E DUP2 PUSH2 0x45A7 JUMP JUMPDEST PUSH2 0x2046 PUSH2 0x40C5 JUMP JUMPDEST PUSH2 0x2050 DUP3 DUP3 PUSH2 0x462A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A7F PUSH2 0x46E6 JUMP JUMPDEST PUSH0 PUSH2 0x2066 PUSH2 0x3DF6 JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x688A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 AND EQ SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x2101 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0x1754 JUMP JUMPDEST POP PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x216A JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0x1754 JUMP JUMPDEST POP PUSH0 PUSH2 0x2175 DUP9 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2196 JUMPI PUSH2 0x2196 PUSH2 0x5770 JUMP JUMPDEST EQ DUP1 PUSH2 0x21BE JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x21BC JUMPI PUSH2 0x21BC PUSH2 0x5770 JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP10 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x21ED JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP PUSH0 SWAP1 POP DUP4 PUSH2 0x21FC DUP7 DUP9 PUSH2 0x60C8 JUMP JUMPDEST PUSH2 0x2206 SWAP2 SWAP1 PUSH2 0x60C8 JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH2 0x2233 SWAP1 DUP11 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x2221 DUP2 TIMESTAMP PUSH2 0x4153 JUMP JUMPDEST PUSH2 0x222A DUP6 PUSH2 0x417F JUMP JUMPDEST PUSH2 0x1AB8 SWAP1 PUSH2 0x60DB JUMP JUMPDEST POP PUSH4 0x31759A2F PUSH1 0xE1 SHL SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2254 DUP4 DUP4 DUP4 PUSH2 0x46FE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH0 NOT PUSH0 PUSH2 0x2266 DUP6 PUSH2 0x2DE4 JUMP JUMPDEST SWAP1 POP PUSH2 0x1F4A PUSH2 0x2273 PUSH2 0x3C07 JUMP JUMPDEST DUP6 DUP8 DUP5 PUSH2 0x4824 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x684A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x135E DUP2 PUSH2 0x488F JUMP JUMPDEST PUSH2 0x135E DUP2 PUSH2 0x4897 JUMP JUMPDEST PUSH0 PUSH2 0x22BD DUP3 PUSH2 0x3E3F JUMP JUMPDEST SWAP1 POP PUSH32 0x3A221B9176B65B4A4850E63CD182357E93D2AD08E8951DAA0904244DC82DF460 DUP2 PUSH1 0x40 MLOAD PUSH2 0x22F0 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2306 DUP5 PUSH2 0x3B1B JUMP JUMPDEST POP PUSH0 PUSH2 0x2317 DUP6 DUP6 DUP6 PUSH2 0x222A DUP7 PUSH2 0x417F JUMP JUMPDEST SWAP1 POP DUP2 DUP2 PUSH0 DUP2 SLT ISZERO PUSH2 0x2345 JUMPI PUSH1 0x40 MLOAD PUSH4 0x239DE571 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1754 JUMP JUMPDEST POP POP PUSH2 0x236D PUSH2 0x2352 PUSH2 0x3C07 JUMP JUMPDEST ADDRESS DUP5 PUSH2 0x235C PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x49BB JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFE14813540C7709C2D7E702F39B104EEED265DD484F899E9F2F89C801AA6395C DUP6 DUP6 DUP6 DUP6 PUSH2 0x23A4 PUSH2 0x3C07 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP7 DUP8 AND DUP2 MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x20 DUP7 ADD MSTORE SWAP3 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH0 PUSH2 0x23F1 PUSH2 0x39F5 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND DUP1 PUSH2 0x2418 JUMPI POP DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP5 AND SWAP2 AND LT ISZERO JUMPDEST ISZERO PUSH2 0x2436 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH9 0xFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND SWAP1 DUP2 OR PUSH1 0x1 PUSH1 0x40 SHL OR PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x686A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH2 0x1CC1 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH2 0x49F1 JUMP JUMPDEST PUSH2 0x2254 DUP4 DUP4 DUP4 PUSH2 0x3D9B JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x24AB DUP3 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x24CC JUMPI PUSH2 0x24CC PUSH2 0x5770 JUMP JUMPDEST EQ DUP1 PUSH2 0x24F4 JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x24F2 JUMPI PUSH2 0x24F2 PUSH2 0x5770 JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x2523 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x252E PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP PUSH2 0x253B PUSH2 0x1DCA PUSH2 0x3C07 JUMP JUMPDEST PUSH2 0x2584 DUP7 DUP7 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 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP3 SWAP2 POP POP PUSH2 0x4475 JUMP JUMPDEST SWAP4 POP PUSH0 PUSH2 0x258F PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x25A3 JUMPI PUSH2 0x1CA5 DUP2 DUP4 PUSH2 0x60F5 JUMP JUMPDEST POP POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x18F0 PUSH2 0x4B44 JUMP JUMPDEST PUSH0 PUSH2 0x1A97 DUP4 DUP4 PUSH2 0x3DA8 JUMP JUMPDEST PUSH2 0x135E DUP2 PUSH2 0x3F38 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x25F6 DUP3 PUSH2 0x3B1B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD SWAP1 SWAP2 MSTORE DUP2 SLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP3 MSTORE SWAP1 SWAP2 SWAP1 PUSH1 0x20 DUP4 ADD SWAP1 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x262F JUMPI PUSH2 0x262F PUSH2 0x5770 JUMP JUMPDEST PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2640 JUMPI PUSH2 0x2640 PUSH2 0x5770 JUMP JUMPDEST DUP2 MSTORE SWAP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x1 PUSH1 0x28 SHL DUP3 DIV DUP2 AND PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x88 SHL SWAP1 SWAP2 DIV AND PUSH1 0x40 SWAP1 SWAP2 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 NOT PUSH0 PUSH2 0x267C DUP6 PUSH2 0x298B JUMP JUMPDEST SWAP1 POP PUSH2 0x1F4A PUSH2 0x2689 PUSH2 0x3C07 JUMP JUMPDEST DUP6 DUP4 DUP9 PUSH2 0x4824 JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE04 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x684A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0x1583 SWAP1 PUSH2 0x6108 JUMP JUMPDEST PUSH2 0x1CC1 DUP6 DUP6 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 POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 PUSH1 0x1F DUP10 ADD DUP2 SWAP1 DIV DUP2 MUL DUP3 ADD DUP2 ADD SWAP1 SWAP3 MSTORE DUP8 DUP2 MSTORE SWAP3 POP DUP8 SWAP2 POP DUP7 SWAP1 DUP2 SWAP1 DUP5 ADD DUP4 DUP3 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP DUP7 SWAP3 POP PUSH2 0x3A1D SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1A79 DUP5 DUP5 DUP5 DUP5 PUSH2 0x4824 JUMP JUMPDEST PUSH0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x2254 SWAP1 DUP5 SWAP1 DUP4 PUSH2 0x3D12 JUMP JUMPDEST DUP1 PUSH0 PUSH2 0x2772 DUP3 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2793 JUMPI PUSH2 0x2793 PUSH2 0x5770 JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x27C3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x27CF DUP3 PUSH2 0x3BB3 JUMP JUMPDEST SWAP1 POP PUSH2 0x1A79 DUP4 DUP4 DUP4 PUSH2 0x3D12 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF02 DUP3 PUSH2 0x2818 DUP8 DUP8 DUP8 PUSH2 0x4482 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2859 PUSH2 0x3C07 JUMP JUMPDEST SWAP1 POP PUSH2 0x18D2 DUP2 DUP6 DUP6 PUSH2 0x432E JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x287D JUMPI PUSH2 0x2876 PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP PUSH2 0x28A5 JUMP JUMPDEST PUSH2 0x2885 PUSH2 0x3984 JUMP JUMPDEST DUP2 GT ISZERO PUSH2 0x28A5 JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2902 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 0x2254 SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH2 0x18F0 PUSH2 0x25AE JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH2 0x2944 SWAP1 PUSH2 0x3BB3 JUMP JUMPDEST SWAP1 POP PUSH32 0xDC71A294D999569DF48C717917073844771891D2646489D0133F026C945D0481 DUP2 PUSH1 0x40 MLOAD PUSH2 0x22F0 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x1A7F PUSH2 0x3984 JUMP JUMPDEST PUSH2 0x2254 DUP4 DUP4 DUP4 PUSH2 0x42E3 JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH1 0x1 PUSH2 0x3AC4 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x29A2 DUP4 PUSH2 0x2E99 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x29CB JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3FA733BB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x62C1 JUMP JUMPDEST PUSH0 PUSH2 0x29D5 DUP7 PUSH2 0x18DC JUMP JUMPDEST SWAP1 POP PUSH2 0x29EB PUSH2 0x29E2 PUSH2 0x3C07 JUMP JUMPDEST DUP7 DUP7 DUP10 DUP6 PUSH2 0x49F1 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1A79 DUP5 DUP5 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 POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 PUSH1 0x1F DUP9 ADD DUP2 SWAP1 DIV DUP2 MUL DUP3 ADD DUP2 ADD SWAP1 SWAP3 MSTORE DUP7 DUP2 MSTORE SWAP3 POP DUP7 SWAP2 POP DUP6 SWAP1 DUP2 SWAP1 DUP5 ADD DUP4 DUP3 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x4B69 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x2A70 DUP4 PUSH2 0x324D JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x2A99 JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x2E52AFBB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x62C1 JUMP JUMPDEST PUSH0 PUSH2 0x2AA3 DUP7 PUSH2 0x16ED JUMP JUMPDEST SWAP1 POP PUSH2 0x29EB PUSH2 0x2AB0 PUSH2 0x3C07 JUMP JUMPDEST DUP7 DUP7 DUP5 DUP11 PUSH2 0x49F1 JUMP JUMPDEST PUSH0 PUSH2 0x2AC3 DUP5 PUSH2 0x3B1B JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x1 PUSH1 0x28 SHL DUP5 DIV DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x88 SHL SWAP1 SWAP4 DIV SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP2 ADD DUP5 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0x7E293D291E9DD159F2FBDE9523C4191674384553A72C0833BA9CF7DCB5381FB7 SWAP1 PUSH1 0x80 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x2B3D DUP4 PUSH2 0x4B7B JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH17 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000 NOT SWAP1 SWAP2 AND OR DUP2 SSTORE PUSH2 0x2B73 DUP3 PUSH2 0x4B7B JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x88 SHL MUL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x88 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP3 SWAP1 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2C06 JUMPI PUSH2 0x2C06 PUSH2 0x5770 JUMP JUMPDEST EQ PUSH2 0x2C24 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCD43EFA1 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x2C4A JUMPI PUSH1 0x40 MLOAD PUSH4 0x294DA6C7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH4 0xFFFFFFFF DUP8 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD PUSH2 0x2C70 DUP7 PUSH2 0x4B7B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2C87 DUP6 PUSH2 0x4B7B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP5 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 DUP3 MLOAD DUP2 SLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH4 0xFFFFFFFF NOT DUP3 AND DUP2 OR DUP4 SSTORE SWAP3 DUP5 ADD MLOAD SWAP2 SWAP3 DUP4 SWAP2 PUSH5 0xFFFFFFFFFF NOT AND OR PUSH1 0x1 PUSH1 0x20 SHL DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2CEE JUMPI PUSH2 0x2CEE PUSH2 0x5770 JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 DUP2 ADD MLOAD DUP3 SLOAD PUSH1 0x60 SWAP1 SWAP5 ADD MLOAD PUSH6 0x10000000000 PUSH1 0x1 PUSH1 0xE8 SHL SUB NOT SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x28 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP3 DUP4 AND MUL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x88 SHL NOT AND OR PUSH1 0x1 PUSH1 0x88 SHL SWAP2 SWAP1 SWAP5 AND MUL SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP1 PUSH32 0x422C963A67D52178B43A807B8C9DF3A99468F416B736F9F040B6392CF790752E SWAP1 PUSH2 0x2D7F SWAP1 DUP5 SWAP1 PUSH2 0x62E2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP5 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH1 0x34 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH2 0x1A97 SWAP1 PUSH1 0x38 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x1A97 DUP4 DUP4 PUSH2 0x4BAE JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH0 PUSH2 0x3DA8 JUMP JUMPDEST PUSH0 PUSH2 0x1A7F PUSH2 0x4C91 JUMP JUMPDEST PUSH0 PUSH2 0x1A97 DUP4 DUP4 PUSH2 0x3AC4 JUMP JUMPDEST PUSH2 0x2050 DUP3 DUP3 PUSH2 0x4CAA JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2E63 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 0x2E87 SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH2 0x2E8F PUSH2 0x3984 JUMP JUMPDEST PUSH2 0x1487 SWAP2 SWAP1 PUSH2 0x60C8 JUMP JUMPDEST PUSH0 PUSH2 0x153F PUSH2 0x2EA6 DUP4 PUSH2 0x4CDE JUMP JUMPDEST PUSH2 0x2EAE PUSH2 0x2E0D JUMP JUMPDEST PUSH2 0x4CEB JUMP JUMPDEST PUSH0 PUSH2 0x2EC0 DUP6 DUP6 DUP6 DUP6 PUSH2 0x41AF JUMP JUMPDEST SWAP1 POP PUSH32 0x7281C4A6D49C3BB62269FED398306788C6B3B4FCE8789168AA0AB94EC0DD9EC9 DUP2 PUSH1 0x40 MLOAD PUSH2 0x2EF3 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x2F88 JUMPI PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2F60 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 0x2F84 SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST SWAP2 POP POP JUMPDEST DUP1 PUSH2 0x2F92 DUP3 PUSH2 0x3E3F JUMP JUMPDEST EQ PUSH2 0x135E JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3016 PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP5 PUSH0 PUSH2 0x3021 DUP3 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3042 JUMPI PUSH2 0x3042 PUSH2 0x5770 JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x3072 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x307E DUP3 PUSH2 0x3BB3 JUMP JUMPDEST SWAP1 POP PUSH2 0x3099 PUSH2 0x308B PUSH2 0x3C07 JUMP JUMPDEST DUP10 PUSH4 0x46D58CA9 PUSH1 0xE1 SHL PUSH2 0x3C10 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND ADDRESS EQ PUSH2 0x30B4 JUMPI PUSH2 0x30B4 PUSH2 0x1EEB PUSH2 0x3C07 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x46D58CA9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND SWAP1 PUSH4 0x8DAB1952 SWAP1 PUSH2 0x30E4 SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP11 SWAP1 PUSH1 0x4 ADD PUSH2 0x6332 JUMP JUMPDEST PUSH2 0x180 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3101 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 0x3125 SWAP2 SWAP1 PUSH2 0x6371 JUMP JUMPDEST SWAP4 POP PUSH2 0x3132 DUP4 DUP4 DUP4 PUSH2 0x3D12 JUMP JUMPDEST POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x3194 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0x1754 JUMP JUMPDEST POP PUSH0 PUSH2 0x319F DUP7 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x31C0 JUMPI PUSH2 0x31C0 PUSH2 0x5770 JUMP JUMPDEST EQ DUP1 PUSH2 0x31E8 JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x31E6 JUMPI PUSH2 0x31E6 PUSH2 0x5770 JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP8 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x3217 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP POP DUP1 SLOAD PUSH2 0x323A SWAP1 DUP8 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x3231 DUP2 TIMESTAMP PUSH2 0x4153 JUMP JUMPDEST PUSH2 0x222A DUP8 PUSH2 0x417F JUMP JUMPDEST POP PUSH4 0x6B140E9F PUSH1 0xE1 SHL SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x153F PUSH2 0x325A DUP4 PUSH2 0x4CFA JUMP JUMPDEST PUSH2 0x2EAE PUSH2 0x10F4 PUSH2 0x2E0D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE01 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 PUSH2 0x2050 DUP3 DUP3 PUSH2 0x4D04 JUMP JUMPDEST PUSH2 0x2254 DUP4 DUP4 DUP4 PUSH2 0x3C10 JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x32D0 DUP3 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x32F1 JUMPI PUSH2 0x32F1 PUSH2 0x5770 JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x3321 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x332D DUP3 PUSH2 0x3BB3 JUMP JUMPDEST SWAP1 POP PUSH0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3349 JUMPI PUSH2 0x3349 PUSH2 0x54F2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x337C JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x3367 JUMPI SWAP1 POP JUMPDEST POP SWAP6 POP PUSH0 JUMPDEST DUP8 DUP2 LT ISZERO PUSH2 0x357B JUMPI PUSH0 DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x339C JUMPI PUSH2 0x339C PUSH2 0x6419 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x33AE SWAP2 SWAP1 PUSH2 0x642D JUMP JUMPDEST PUSH2 0x33BC SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x6249 JUMP JUMPDEST PUSH2 0x33C5 SWAP2 PUSH2 0x6270 JUMP JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 PUSH2 0x33E1 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 DUP2 AND SWAP1 DUP6 AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x33FC JUMPI PUSH2 0x33F8 PUSH2 0x33F1 PUSH2 0x3C07 JUMP JUMPDEST DUP13 DUP4 PUSH2 0x3C10 JUMP JUMPDEST DUP1 SWAP4 POP JUMPDEST PUSH2 0x3467 DUP11 DUP11 DUP5 DUP2 DUP2 LT PUSH2 0x3411 JUMPI PUSH2 0x3411 PUSH2 0x6419 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x3423 SWAP2 SWAP1 PUSH2 0x642D 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 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP16 AND SWAP3 SWAP2 POP POP PUSH2 0x4475 JUMP JUMPDEST DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x3479 JUMPI PUSH2 0x3479 PUSH2 0x6419 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP3 PUSH2 0x3572 JUMPI PUSH0 DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x349C JUMPI PUSH2 0x349C PUSH2 0x6419 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x34B7 SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x351F 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 0x3543 SWAP2 SWAP1 PUSH2 0x62A6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x3570 JUMPI PUSH2 0x356B PUSH2 0x355C PUSH2 0x3C07 JUMP JUMPDEST DUP14 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x3C10 JUMP JUMPDEST PUSH1 0x1 SWAP4 POP JUMPDEST POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x3381 JUMP JUMPDEST POP POP POP PUSH2 0x1F06 DUP4 DUP4 DUP4 PUSH2 0x3D12 JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x35E0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0x1754 JUMP JUMPDEST POP PUSH4 0xE8E617B7 PUSH1 0xE0 SHL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x35FE DUP3 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x361F JUMPI PUSH2 0x361F PUSH2 0x5770 JUMP JUMPDEST EQ DUP1 PUSH2 0x3647 JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3645 JUMPI PUSH2 0x3645 PUSH2 0x5770 JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x3676 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP3 SWAP2 SWAP1 PUSH2 0x6140 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x3681 PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x369C JUMPI PUSH2 0x369C PUSH2 0x54F2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x36CF JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x36BA JUMPI SWAP1 POP JUMPDEST POP SWAP5 POP PUSH0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x37E0 JUMPI PUSH0 DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x36EF JUMPI PUSH2 0x36EF PUSH2 0x6419 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x3701 SWAP2 SWAP1 PUSH2 0x642D JUMP JUMPDEST PUSH2 0x370F SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x6249 JUMP JUMPDEST PUSH2 0x3718 SWAP2 PUSH2 0x6270 JUMP JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 PUSH2 0x3734 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 DUP2 AND SWAP1 DUP5 AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x374F JUMPI PUSH2 0x374B PUSH2 0x3744 PUSH2 0x3C07 JUMP JUMPDEST DUP12 DUP4 PUSH2 0x3C10 JUMP JUMPDEST DUP1 SWAP3 POP JUMPDEST PUSH2 0x37BA DUP10 DUP10 DUP5 DUP2 DUP2 LT PUSH2 0x3764 JUMPI PUSH2 0x3764 PUSH2 0x6419 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x3776 SWAP2 SWAP1 PUSH2 0x642D 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 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 AND SWAP3 SWAP2 POP POP PUSH2 0x4475 JUMP JUMPDEST DUP8 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x37CC JUMPI PUSH2 0x37CC PUSH2 0x6419 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE POP PUSH1 0x1 ADD PUSH2 0x36D4 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x258F PUSH2 0x3984 JUMP JUMPDEST PUSH2 0x2254 DUP4 DUP4 DUP4 PUSH2 0x432E JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x135E JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0x1754 JUMP JUMPDEST PUSH2 0x18F0 PUSH2 0x4D38 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3867 JUMPI PUSH2 0x3867 PUSH2 0x5770 JUMP JUMPDEST SUB PUSH2 0x3885 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5E645365 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x388F DUP4 PUSH2 0x3B1B JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x638A5C17C348B99C05E7985EE5EE8BC0C41BC7A12265AEC4A488D62350C1D24 DUP3 PUSH0 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x38DC SWAP3 SWAP2 SWAP1 PUSH2 0x646F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 SLOAD DUP3 SWAP1 DUP3 SWAP1 PUSH5 0xFF00000000 NOT AND PUSH1 0x1 PUSH1 0x20 SHL DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3909 JUMPI PUSH2 0x3909 PUSH2 0x5770 JUMP JUMPDEST MUL OR SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH2 0x1A79 DUP5 DUP5 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 POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 PUSH1 0x1F DUP9 ADD DUP2 SWAP1 DIV DUP2 MUL DUP3 ADD DUP2 ADD SWAP1 SWAP3 MSTORE DUP7 DUP2 MSTORE SWAP3 POP DUP7 SWAP2 POP DUP6 SWAP1 DUP2 SWAP1 DUP5 ADD DUP4 DUP3 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x4DBD SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x398D PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 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 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x39D1 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 0x1A7F SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x153F JUMP JUMPDEST PUSH2 0x3A25 PUSH2 0x4B44 JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3A82 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 0x3AA6 SWAP2 SWAP1 PUSH2 0x62A6 JUMP JUMPDEST SWAP1 POP PUSH2 0x3AB1 DUP2 PUSH2 0x488F JUMP JUMPDEST PUSH2 0x3ABB DUP5 DUP5 PUSH2 0x4B69 JUMP JUMPDEST PUSH2 0x1A79 DUP3 PUSH2 0x4897 JUMP JUMPDEST PUSH0 PUSH2 0x1A97 PUSH2 0x3AD0 PUSH2 0x1361 JUMP JUMPDEST PUSH2 0x3ADB SWAP1 PUSH1 0x1 PUSH2 0x60C8 JUMP JUMPDEST PUSH2 0x3AE6 PUSH0 PUSH1 0xA PUSH2 0x656D JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x3B12 SWAP2 SWAP1 PUSH2 0x60C8 JUMP JUMPDEST DUP6 SWAP2 SWAP1 DUP6 PUSH2 0x4E0D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x3B7F JUMPI PUSH2 0x3B7F PUSH2 0x5770 JUMP JUMPDEST EQ ISZERO DUP4 SWAP1 PUSH2 0x3BAC JUMPI PUSH1 0x40 MLOAD PUSH4 0x2DAD9021 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 0x1754 JUMP JUMPDEST POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x3BBC PUSH2 0x3984 JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 LT ISZERO PUSH2 0x3C02 JUMPI DUP2 SLOAD PUSH2 0x3BF9 SWAP1 PUSH2 0x1B17 SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x60F5 JUMP JUMPDEST POP PUSH2 0x153F PUSH2 0x3984 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x1A7F PUSH2 0x4E4F JUMP JUMPDEST PUSH0 PUSH2 0x3C1B DUP4 DUP4 PUSH2 0x2D8F JUMP JUMPDEST SWAP1 POP PUSH0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3A7B7A39 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3C5A 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 0x3C7E SWAP2 SWAP1 PUSH2 0x62A6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xB7009613 DUP7 ADDRESS DUP6 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3CAD SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x657B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3CC7 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 0x3CEB SWAP2 SWAP1 PUSH2 0x65A8 JUMP JUMPDEST POP SWAP1 POP DUP5 DUP5 DUP4 DUP4 PUSH2 0x16E3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC294136D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x657B JUMP JUMPDEST PUSH0 PUSH2 0x3D1B PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1A79 JUMPI DUP3 SLOAD PUSH0 SWAP1 PUSH2 0x3D51 SWAP1 DUP7 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x3D3F DUP2 TIMESTAMP PUSH2 0x4153 JUMP JUMPDEST PUSH2 0x1AB8 PUSH2 0x3D4C DUP8 DUP10 PUSH2 0x60F5 JUMP JUMPDEST PUSH2 0x417F JUMP JUMPDEST DUP5 SLOAD SWAP1 SWAP2 POP DUP2 SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP1 DUP3 SGT ISZERO PUSH2 0x1816 JUMPI PUSH1 0x40 MLOAD PUSH4 0x395192C5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH2 0x2254 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x4380 JUMP JUMPDEST PUSH0 PUSH2 0x1A97 PUSH2 0x3DB7 DUP3 PUSH1 0xA PUSH2 0x656D JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x3DE3 SWAP2 SWAP1 PUSH2 0x60C8 JUMP JUMPDEST PUSH2 0x3DEB PUSH2 0x1361 JUMP JUMPDEST PUSH2 0x3B12 SWAP1 PUSH1 0x1 PUSH2 0x60C8 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x18F0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH2 0x3EBF SWAP2 DUP6 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3E9B 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 0x2EAE SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE SWAP2 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3F14 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 0x3BAC SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x3F5F JUMPI PUSH1 0x40 MLOAD PUSH4 0x47DDF9C7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND OR DUP4 SSTORE AND DUP1 ISZERO PUSH2 0x400A JUMPI PUSH2 0x3F97 PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3FE4 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 0x4008 SWAP2 SWAP1 PUSH2 0x65D5 JUMP JUMPDEST POP JUMPDEST PUSH2 0x4012 PUSH2 0x1F10 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4060 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 0x4084 SWAP2 SWAP1 PUSH2 0x65D5 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x9BAADDAD37A65CA0DF0360563FCA87A13C1CE354BE76D7EC35EAC48BD766332A SWAP2 ADD PUSH2 0x2479 JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x4135 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x4129 PUSH2 0x4E95 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x18F0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND EQ PUSH2 0x4176 JUMPI PUSH2 0x4171 PUSH4 0xFFFFFFFF DUP5 AND DUP4 PUSH2 0x6604 JUMP JUMPDEST PUSH2 0x1A97 JUMP JUMPDEST PUSH2 0x1A97 DUP3 PUSH2 0x44CA JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFF SHL SUB DUP3 GT ISZERO PUSH2 0x41AB JUMPI PUSH1 0x40 MLOAD PUSH4 0x123BAF03 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x41CA DUP8 DUP8 DUP8 PUSH2 0x4482 JUMP JUMPDEST SWAP1 POP DUP4 DUP3 PUSH1 0x2 ADD PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x41EE SWAP2 SWAP1 PUSH2 0x6617 JUMP JUMPDEST SWAP2 DUP3 SWAP1 SSTORE POP DUP4 SLOAD SWAP1 SWAP5 POP DUP6 SWAP2 POP DUP4 SWAP1 PUSH1 0x14 SWAP1 PUSH2 0x4215 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x663E JUMP JUMPDEST DUP3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 DUP3 AND PUSH2 0x100 SWAP4 SWAP1 SWAP4 EXP SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP3 MUL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE POP DUP2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP1 DUP11 AND DUP3 MSTORE DUP9 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xB SIGNEXTEND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 PUSH32 0xBC0FF1D27E119160A9A107D0725B9ED31B90773CF47E89332A35A8C1A319EAEE SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x42BB DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x4EA9 JUMP JUMPDEST PUSH2 0x2254 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH0 PUSH2 0x42EE DUP5 DUP5 PUSH2 0x3265 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 LT ISZERO PUSH2 0x1A79 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x4320 JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x62C1 JUMP JUMPDEST PUSH2 0x1A79 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x4380 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x4357 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2249 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x684A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH2 0x43B7 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x43E0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP4 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP4 SWAP1 SSTORE DUP2 ISZERO PUSH2 0x1CC1 JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP6 PUSH1 0x40 MLOAD PUSH2 0x4454 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP JUMP JUMPDEST CALLDATASIZE PUSH0 PUSH2 0x446D PUSH2 0x4F0B JUMP JUMPDEST SWAP2 POP SWAP2 POP SWAP1 SWAP2 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1A97 DUP4 DUP4 PUSH0 PUSH2 0x4F48 JUMP JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFF00000000 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 SWAP4 SWAP1 SWAP4 SHL SWAP3 SWAP1 SWAP3 AND PUSH1 0xC0 SWAP2 SWAP1 SWAP2 SHL PUSH4 0xFFFFFFFF PUSH1 0xC0 SHL AND OR PUSH1 0xA0 SHR AND PUSH1 0x60 SWAP2 SWAP1 SWAP2 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND OR SWAP1 JUMP JUMPDEST PUSH2 0x7E9 PUSH0 DUP1 PUSH3 0x15180 PUSH2 0x44E1 PUSH4 0x67748580 DUP7 PUSH2 0x60F5 JUMP JUMPDEST PUSH2 0x44EB SWAP2 SWAP1 PUSH2 0x6604 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP2 PUSH2 0x44FB JUMPI PUSH2 0x16D PUSH2 0x44FF JUMP JUMPDEST PUSH2 0x16E JUMPDEST PUSH2 0xFFFF AND DUP2 LT PUSH2 0x4582 JUMPI DUP2 PUSH2 0x4516 JUMPI PUSH2 0x16D PUSH2 0x451A JUMP JUMPDEST PUSH2 0x16E JUMPDEST PUSH2 0x4528 SWAP1 PUSH2 0xFFFF AND DUP3 PUSH2 0x60F5 JUMP JUMPDEST SWAP1 POP PUSH2 0x4533 DUP4 PUSH2 0x6675 JUMP JUMPDEST SWAP3 POP PUSH2 0x4540 PUSH1 0x4 DUP5 PUSH2 0x6699 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO DUP1 ISZERO PUSH2 0x457B JUMPI POP PUSH2 0x4559 PUSH1 0x64 DUP5 PUSH2 0x6699 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO ISZERO DUP1 PUSH2 0x457B JUMPI POP PUSH2 0x4573 PUSH2 0x190 DUP5 PUSH2 0x6699 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST SWAP2 POP PUSH2 0x44EE JUMP JUMPDEST PUSH2 0x458C DUP2 DUP4 PUSH2 0x4BAE JUMP JUMPDEST PUSH2 0x4597 DUP5 PUSH1 0x64 PUSH2 0x66C0 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x1F4A SWAP2 SWAP1 PUSH2 0x60C8 JUMP JUMPDEST PUSH2 0x45AF PUSH2 0x4B44 JUMP JUMPDEST PUSH32 0x773E532DFEDE91F04B12A73D3D2ACD361424F41F76B4FB79F090161E36B4E00 PUSH0 DUP1 PUSH2 0x45DB DUP5 PUSH2 0x5014 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x45EB JUMPI PUSH1 0x12 PUSH2 0x45ED JUMP JUMPDEST DUP1 JUMPDEST DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT AND PUSH1 0x1 PUSH1 0xA0 SHL PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND OR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP2 SSTORE POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x4684 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x4681 SWAP2 DUP2 ADD SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x46AC JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x688A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x46DC JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH2 0x2254 DUP4 DUP4 PUSH2 0x509F JUMP JUMPDEST PUSH0 PUSH2 0x46EF PUSH2 0x39F5 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x684A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x4738 JUMPI DUP2 DUP2 PUSH1 0x2 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x472D SWAP2 SWAP1 PUSH2 0x60C8 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x4795 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x4777 JUMPI DUP5 DUP2 DUP5 PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1754 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x62C1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP4 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP4 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x47B3 JUMPI PUSH1 0x2 DUP2 ADD DUP1 SLOAD DUP4 SWAP1 SUB SWAP1 SSTORE PUSH2 0x47D1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP4 ADD SWAP1 SSTORE JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x4816 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH2 0x4837 PUSH2 0x482F PUSH2 0x1F10 JUMP JUMPDEST DUP6 ADDRESS DUP6 PUSH2 0x49BB JUMP JUMPDEST PUSH2 0x4841 DUP4 DUP3 PUSH2 0x4CAA JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDCBC1C05240F31FF3AD067EF1EE35CE4997762752E3A095284754544F4C709D7 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0x4816 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH2 0x2035 PUSH2 0x4B44 JUMP JUMPDEST PUSH2 0x489F PUSH2 0x4B44 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x48FB 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 0x491F SWAP2 SWAP1 PUSH2 0x62A6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x498D 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 0x49B1 SWAP2 SWAP1 PUSH2 0x65D5 JUMP JUMPDEST POP PUSH2 0x135E DUP2 PUSH2 0x3F38 JUMP JUMPDEST PUSH2 0x49C9 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x50F4 JUMP JUMPDEST PUSH2 0x1A79 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH0 PUSH2 0x49FA PUSH2 0x3984 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x4B2F JUMPI PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x68AA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x4A59 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 0x4A7D SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST PUSH2 0x4A87 DUP4 DUP7 PUSH2 0x60F5 JUMP JUMPDEST GT ISZERO PUSH2 0x4AA6 JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xB460AF94 PUSH2 0x4AC0 DUP5 DUP8 PUSH2 0x60F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4B08 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 0x4B2C SWAP2 SWAP1 PUSH2 0x609D JUMP JUMPDEST POP POP JUMPDEST PUSH2 0x4B3C DUP7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x5161 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x4B4C PUSH2 0x4C91 JUMP JUMPDEST PUSH2 0x18F0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4B71 PUSH2 0x4B44 JUMP JUMPDEST PUSH2 0x2050 DUP3 DUP3 PUSH2 0x4DBD JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP3 GT ISZERO PUSH2 0x41AB JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x60 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH0 PUSH1 0x1F DUP4 LT ISZERO PUSH2 0x4BC0 JUMPI POP PUSH1 0x1 PUSH2 0x153F JUMP JUMPDEST DUP2 ISZERO PUSH2 0x4BE9 JUMPI PUSH1 0x3C DUP4 LT ISZERO PUSH2 0x4BD7 JUMPI POP PUSH1 0x2 PUSH2 0x153F JUMP JUMPDEST DUP3 PUSH2 0x4BE1 DUP2 PUSH2 0x66DF JUMP JUMPDEST SWAP4 POP POP PUSH2 0x4BFA JUMP JUMPDEST PUSH1 0x3B DUP4 LT ISZERO PUSH2 0x4BFA JUMPI POP PUSH1 0x2 PUSH2 0x153F JUMP JUMPDEST PUSH1 0x5A DUP4 LT PUSH2 0x4C84 JUMPI PUSH1 0x78 DUP4 LT PUSH2 0x4C7D JUMPI PUSH1 0x97 DUP4 LT PUSH2 0x4C76 JUMPI PUSH1 0xB5 DUP4 LT PUSH2 0x4C6F JUMPI PUSH1 0xD4 DUP4 LT PUSH2 0x4C68 JUMPI PUSH1 0xF3 DUP4 LT PUSH2 0x4C61 JUMPI PUSH2 0x111 DUP4 LT PUSH2 0x4C5A JUMPI PUSH2 0x130 DUP4 LT PUSH2 0x4C53 JUMPI PUSH2 0x14E DUP4 LT PUSH2 0x4C4C JUMPI PUSH1 0xC PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0xB PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0xA PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0x9 PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0x8 PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0x7 PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0x6 PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0x5 PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0x4 PUSH2 0x4C87 JUMP JUMPDEST PUSH1 0x3 JUMPDEST PUSH1 0xFF AND SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x4C9A PUSH2 0x39F5 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4CD3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH2 0x2050 PUSH0 DUP4 DUP4 PUSH2 0x46FE JUMP JUMPDEST PUSH0 PUSH2 0x153F PUSH2 0x7C0 DUP4 PUSH2 0x324D JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0x1A97 JUMP JUMPDEST PUSH0 PUSH2 0x153F DUP3 PUSH2 0x227B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x4D2D JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH2 0x2050 DUP3 PUSH0 DUP4 PUSH2 0x46FE JUMP JUMPDEST PUSH0 PUSH2 0x4D41 PUSH2 0x39F5 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x4D6E JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x135E JUMPI DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x686A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH2 0x4DC5 PUSH2 0x4B44 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x684A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 PUSH2 0x4DFE DUP5 DUP3 PUSH2 0x6738 JUMP JUMPDEST POP PUSH1 0x4 DUP2 ADD PUSH2 0x1A79 DUP4 DUP3 PUSH2 0x6738 JUMP JUMPDEST PUSH0 PUSH2 0x4E3A PUSH2 0x4E1A DUP4 PUSH2 0x5208 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4E35 JUMPI POP PUSH0 DUP5 DUP1 PUSH2 0x4E30 JUMPI PUSH2 0x4E30 PUSH2 0x65F0 JUMP JUMPDEST DUP7 DUP9 MULMOD GT JUMPDEST ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH2 0x4E45 DUP7 DUP7 DUP7 PUSH2 0x5234 JUMP JUMPDEST PUSH2 0x29EB SWAP2 SWAP1 PUSH2 0x60C8 JUMP JUMPDEST PUSH0 CALLDATASIZE PUSH1 0x14 DUP1 DUP3 LT DUP1 ISZERO SWAP1 PUSH2 0x4E67 JUMPI POP PUSH2 0x4E67 CALLER PUSH2 0x2078 JUMP JUMPDEST ISZERO PUSH2 0x4E8D JUMPI PUSH2 0x4E7A CALLDATASIZE DUP3 DUP5 SUB DUP2 PUSH0 PUSH2 0x6249 JUMP JUMPDEST PUSH2 0x4E83 SWAP2 PUSH2 0x67F2 JUMP JUMPDEST PUSH1 0x60 SHR SWAP3 POP POP POP SWAP1 JUMP JUMPDEST CALLER SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x688A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x2840 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x4EFF JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x4EF3 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST CALLDATASIZE PUSH0 DUP2 PUSH1 0x14 DUP1 DUP3 LT DUP1 ISZERO SWAP1 PUSH2 0x4F24 JUMPI POP PUSH2 0x4F24 CALLER PUSH2 0x2078 JUMP JUMPDEST ISZERO PUSH2 0x4F41 JUMPI PUSH2 0x4F37 DUP2 DUP4 SUB PUSH0 CALLDATASIZE DUP2 PUSH2 0x6249 JUMP JUMPDEST SWAP4 POP SWAP4 POP POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH0 CALLDATASIZE PUSH2 0x4F37 JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x4F74 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 0x1754 JUMP JUMPDEST PUSH0 PUSH2 0x4F80 DUP6 DUP5 DUP7 PUSH2 0x52E4 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x4FA1 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x4FA1 JUMPI POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x4FB6 JUMPI PUSH2 0x4FAE PUSH2 0x52F9 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1A97 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4FE0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x4FF3 JUMPI PUSH2 0x4FEE PUSH2 0x5312 JUMP JUMPDEST PUSH2 0x500C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x5020 PUSH1 0x40 MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x4 DUP2 MSTORE PUSH1 0x24 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0xE0 SHL OR SWAP1 MSTORE SWAP1 SWAP2 POP PUSH0 SWAP1 DUP2 SWAP1 PUSH2 0x505B SWAP1 DUP8 SWAP1 PUSH2 0x531D JUMP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x5069 DUP4 PUSH1 0x40 MSTORE JUMP JUMPDEST DUP2 DUP1 ISZERO PUSH2 0x5077 JUMPI POP PUSH1 0x20 RETURNDATASIZE LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x5084 JUMPI POP PUSH1 0xFF DUP2 GT ISZERO JUMPDEST PUSH2 0x508F JUMPI PUSH0 PUSH0 PUSH2 0x5093 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST SWAP5 POP SWAP5 POP POP POP POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH2 0x50A8 DUP3 PUSH2 0x533E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x50EC JUMPI PUSH2 0x2254 DUP3 DUP3 PUSH2 0x53A1 JUMP JUMPDEST PUSH2 0x2050 PUSH2 0x5423 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x5150 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x5144 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x5185 JUMPI PUSH2 0x5185 DUP4 DUP7 DUP4 PUSH2 0x42E3 JUMP JUMPDEST PUSH2 0x518F DUP4 DUP3 PUSH2 0x4D04 JUMP JUMPDEST PUSH2 0x51A1 PUSH2 0x519A PUSH2 0x1F10 JUMP JUMPDEST DUP6 DUP5 PUSH2 0x42AE JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFBDE797D201C681B91056529119E0B02407C7BB96A4A2C75C01FC9667232C8DB DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x51F9 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x521D JUMPI PUSH2 0x521D PUSH2 0x5770 JUMP JUMPDEST PUSH2 0x5227 SWAP2 SWAP1 PUSH2 0x6828 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x1 EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x5241 DUP7 DUP7 PUSH2 0x5442 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x5265 JUMPI DUP4 DUP2 DUP2 PUSH2 0x525B JUMPI PUSH2 0x525B PUSH2 0x65F0 JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x1A97 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x527C JUMPI PUSH2 0x527C PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x545E JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 DUP9 GAS CALL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 PUSH0 DUP6 MLOAD PUSH1 0x20 DUP8 ADD DUP9 GAS STATICCALL SWAP3 POP PUSH0 MLOAD SWAP2 POP PUSH1 0x20 MLOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x5373 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x1754 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x688A PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x53AE DUP5 DUP5 PUSH2 0x546F JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x53CF JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x53CF JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x53E4 JUMPI PUSH2 0x53DC PUSH2 0x52F9 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x153F JUMP JUMPDEST DUP1 ISZERO PUSH2 0x540E 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 0x1754 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x4FF3 JUMPI PUSH2 0x541C PUSH2 0x5312 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x18F0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x3C02 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x54A9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1A97 DUP3 PUSH2 0x5482 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 PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x1A97 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x54B2 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x5529 JUMPI PUSH2 0x5529 PUSH2 0x54F2 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 GT ISZERO PUSH2 0x5548 JUMPI PUSH2 0x5548 PUSH2 0x54F2 JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x5576 JUMPI PUSH2 0x5576 PUSH2 0x54F2 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP6 LT ISZERO PUSH2 0x558D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x55B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1A97 DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x552F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x135E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x55E8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x55FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5609 DUP7 DUP3 DUP8 ADD PUSH2 0x55A4 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5624 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5630 DUP7 DUP3 DUP8 ADD PUSH2 0x55A4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x5641 DUP2 PUSH2 0x55C2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x565C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x5673 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5689 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x56A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x56BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x56C8 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x56E2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x56EE DUP8 DUP3 DUP9 ADD PUSH2 0x5663 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x5702 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x135E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x572F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x573A DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x574A DUP2 PUSH2 0x570D JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5765 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1A97 DUP2 PUSH2 0x55C2 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x57A0 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0x153F DUP3 DUP5 PUSH2 0x5784 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x57C3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x57CE DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x57EC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5802 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x56A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x582D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x5838 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x5848 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5869 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5875 DUP9 DUP3 DUP10 ADD PUSH2 0x57DC JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x135E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x58A4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x58AF DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x574A DUP2 PUSH2 0x5886 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x58D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x57CE DUP2 PUSH2 0x570D JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x58EF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x58FA DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x590A DUP2 PUSH2 0x570D JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x591A DUP2 PUSH2 0x570D JUMP JUMPDEST SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH2 0x5931 DUP2 PUSH2 0x55C2 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5951 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x595C DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x596C DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5990 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x599B DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x59AB DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x5702 DUP2 PUSH2 0x5886 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x59D4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x59DF DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x59F9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5A05 DUP7 DUP3 DUP8 ADD PUSH2 0x57DC JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5A24 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x5A2F DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x5A3F DUP2 PUSH2 0x570D JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x5641 DUP2 PUSH2 0x570D JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5A60 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5A6B DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5A85 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x5A95 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5AA4 DUP6 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x552F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5AC1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x5ACC DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x5ADC DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 SWAP7 SWAP4 SWAP6 POP POP POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD SWAP2 PUSH1 0x60 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x5B06 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH2 0x5B11 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD PUSH2 0x5B21 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP6 SWAP9 SWAP6 SWAP8 POP POP POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP4 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP4 PUSH1 0x80 DUP3 ADD CALLDATALOAD SWAP4 POP PUSH1 0xA0 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5B57 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x574A DUP2 PUSH2 0x55C2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5B7C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x5B87 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x5B97 DUP2 PUSH2 0x570D JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x5BA7 DUP2 PUSH2 0x570D JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP3 SWAP4 PUSH1 0x60 ADD CALLDATALOAD SWAP3 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5BC7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1A97 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x5BF1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x5BFC DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x5C0C DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x5C1C DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP5 SWAP8 SWAP4 SWAP7 POP SWAP4 SWAP5 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP5 POP PUSH1 0x80 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x135E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5C51 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x574A DUP2 PUSH2 0x5C34 JUMP JUMPDEST DUP2 MLOAD PUSH4 0xFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 DUP1 DUP4 ADD MLOAD PUSH1 0x80 DUP4 ADD SWAP2 PUSH2 0x5C84 SWAP1 DUP5 ADD DUP3 PUSH2 0x5784 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x40 DUP5 ADD MLOAD AND PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x60 DUP5 ADD MLOAD AND PUSH1 0x60 DUP4 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x5CC5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5CDA JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5CE6 DUP9 DUP3 DUP10 ADD PUSH2 0x57DC JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5D04 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5D10 DUP9 DUP3 DUP10 ADD PUSH2 0x57DC JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x5931 DUP2 PUSH2 0x55C2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5D36 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x5D41 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5D68 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x5D7A DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x5641 DUP2 PUSH2 0x55C2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5D9D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5DB2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5DBE DUP8 DUP3 DUP9 ADD PUSH2 0x57DC JUMP JUMPDEST SWAP1 SWAP6 POP SWAP4 POP POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5DDC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5DE8 DUP8 DUP3 DUP9 ADD PUSH2 0x57DC JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5E07 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x5E12 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x5ADC DUP2 PUSH2 0x570D JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5E33 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5E3E DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP2 POP PUSH2 0x5E4C PUSH1 0x20 DUP5 ADD PUSH2 0x5482 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5E66 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x574A DUP2 PUSH2 0x5886 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x5E8B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x5E96 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x5EB0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x56EE DUP8 DUP3 DUP9 ADD PUSH2 0x57DC JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 ADD SWAP1 POP DUP3 MLOAD DUP3 MSTORE PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP4 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP4 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP4 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP4 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP4 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP4 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP4 ADD MLOAD PUSH2 0x5F40 PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP4 ADD MLOAD PUSH2 0x541C PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5F6C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x5F77 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x574A DUP2 PUSH2 0x55C2 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5F99 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x5FA4 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x5FB4 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP2 POP PUSH2 0x5FC2 PUSH1 0x40 DUP6 ADD PUSH2 0x5482 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x5FDD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x5FE8 DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x6002 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x5A05 DUP7 DUP3 DUP8 ADD PUSH2 0x5663 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 0x6065 JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x6050 DUP6 DUP4 MLOAD PUSH2 0x54B2 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x6034 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6082 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x608D DUP2 PUSH2 0x55C2 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x574A DUP2 PUSH2 0x5C34 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x60AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x153F JUMPI PUSH2 0x153F PUSH2 0x60B4 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x60EF JUMPI PUSH2 0x60EF PUSH2 0x60B4 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x153F JUMPI PUSH2 0x153F PUSH2 0x60B4 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x611C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x613A 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 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0x40 DUP2 ADD PUSH2 0x1A97 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x5784 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 0x40 DUP1 DUP3 MSTORE DUP2 ADD DUP4 SWAP1 MSTORE PUSH0 PUSH1 0x60 PUSH1 0x5 DUP6 SWAP1 SHL DUP4 ADD DUP2 ADD SWAP1 DUP4 ADD DUP7 DUP4 PUSH1 0x1E NOT CALLDATASIZE DUP4 SWAP1 SUB ADD JUMPDEST DUP9 DUP3 LT ISZERO PUSH2 0x6216 JUMPI DUP7 DUP6 SUB PUSH1 0x5F NOT ADD DUP5 MSTORE DUP3 CALLDATALOAD DUP2 DUP2 SLT PUSH2 0x61C7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP11 ADD PUSH1 0x20 DUP2 ADD SWAP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x61E2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATASIZE SUB DUP3 SGT ISZERO PUSH2 0x61F0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x61FB DUP8 DUP3 DUP5 PUSH2 0x615D JUMP JUMPDEST SWAP7 POP POP POP PUSH1 0x20 DUP4 ADD SWAP3 POP PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH2 0x61A9 JUMP JUMPDEST POP POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x20 DUP6 ADD MSTORE POP SWAP1 POP PUSH2 0x1F4A JUMP JUMPDEST PUSH1 0xFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0x153F JUMPI PUSH2 0x153F PUSH2 0x60B4 JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x6257 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x6263 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x541C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x62B6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1A97 DUP2 PUSH2 0x55C2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP DUP3 SLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP4 MSTORE PUSH2 0x6307 PUSH1 0x20 DUP5 ADD PUSH1 0xFF DUP4 PUSH1 0x20 SHR AND PUSH2 0x5784 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 PUSH1 0x28 SHR AND PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 PUSH1 0x88 SHR AND PUSH1 0x60 DUP5 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH0 PUSH2 0x6345 PUSH1 0x40 DUP4 ADD DUP6 DUP8 PUSH2 0x615D JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x3C02 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT DUP1 ISZERO PUSH2 0x6383 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x638C PUSH2 0x5506 JUMP JUMPDEST DUP3 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x63F9 PUSH2 0x140 DUP5 ADD PUSH2 0x635D JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x640C PUSH2 0x160 DUP5 ADD PUSH2 0x635D JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x6442 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x645B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x56A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x647D DUP3 DUP6 PUSH2 0x5784 JUMP JUMPDEST PUSH2 0x1A97 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x5784 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x64C5 JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x64A9 JUMPI PUSH2 0x64A9 PUSH2 0x60B4 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x64B7 JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x648E JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x64DB JUMPI POP PUSH1 0x1 PUSH2 0x153F JUMP JUMPDEST DUP2 PUSH2 0x64E7 JUMPI POP PUSH0 PUSH2 0x153F JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x64FD JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x6507 JUMPI PUSH2 0x6523 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x153F JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x6518 JUMPI PUSH2 0x6518 PUSH2 0x60B4 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x153F JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x6546 JUMPI POP DUP2 DUP2 EXP PUSH2 0x153F JUMP JUMPDEST PUSH2 0x6552 PUSH0 NOT DUP5 DUP5 PUSH2 0x648A JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x6565 JUMPI PUSH2 0x6565 PUSH2 0x60B4 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1A97 PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x64CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x65B9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x65C4 DUP2 PUSH2 0x5886 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x574A DUP2 PUSH2 0x570D JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x65E5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1A97 DUP2 PUSH2 0x5886 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH2 0x6612 JUMPI PUSH2 0x6612 PUSH2 0x65F0 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x6636 JUMPI PUSH2 0x6636 PUSH2 0x60B4 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xB DUP2 DUP2 SIGNEXTEND SWAP1 DUP4 SWAP1 SIGNEXTEND ADD PUSH12 0x7FFFFFFFFFFFFFFFFFFFFFFF DUP2 SGT PUSH12 0x7FFFFFFFFFFFFFFFFFFFFFFF NOT DUP3 SLT OR ISZERO PUSH2 0x153F JUMPI PUSH2 0x153F PUSH2 0x60B4 JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP3 AND PUSH4 0xFFFFFFFF DUP2 SUB PUSH2 0x6690 JUMPI PUSH2 0x6690 PUSH2 0x60B4 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP4 AND DUP1 PUSH2 0x66AE JUMPI PUSH2 0x66AE PUSH2 0x65F0 JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND MUL SWAP1 DUP2 AND SWAP1 DUP2 DUP2 EQ PUSH2 0x541C JUMPI PUSH2 0x541C PUSH2 0x60B4 JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x66ED JUMPI PUSH2 0x66ED PUSH2 0x60B4 JUMP JUMPDEST POP PUSH0 NOT ADD SWAP1 JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x2254 JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x6719 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1CC1 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x6725 JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x6751 JUMPI PUSH2 0x6751 PUSH2 0x54F2 JUMP JUMPDEST PUSH2 0x6765 DUP2 PUSH2 0x675F DUP5 SLOAD PUSH2 0x6108 JUMP JUMPDEST DUP5 PUSH2 0x66F4 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x6797 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x6780 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 0x1CC1 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x67C6 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x67A6 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x67E3 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 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x14 DUP5 LT ISZERO PUSH2 0x541C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x14 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x683A JUMPI PUSH2 0x683A PUSH2 0x65F0 JUMP JUMPDEST DUP1 PUSH1 0xFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID MSTORE 0xC6 ORIGIN SELFBALANCE RJUMPI 0xF47D 0xB1 SWAP14 TLOAD RJUMP 0x4600 ADDRESS 0xC4 SWAP8 CREATE PUSH8 0xCA4CEBF71BA98EEA 0xDA 0xBE KECCAK256 0xBA 0xCE STOP 0xC7 CREATE2 SDIV 0xB2 RETURN PUSH18 0xAE2175EE4913F4499E1F2633A7B5936321EE DATALOADN 0xCDAE 0xB6 GT MLOAD DUP2 0xD2 CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBC0DFF660C705EC490383FFA 0xFC SWAP15 DUP15 GASPRICE 0xB4 PUSH18 0x4559F9EC8567C5380D4AD2DFF5AF00A26469 PUSH17 0x667358221220AE96FBAF08E4D5195A4947 DUP2 ISZERO 0xCF GASLIMIT 0xA9 0xC6 0x25 JUMP 0x27 SWAP7 ISZERO 0xAD DUP10 0xCE CALLVALUE 0xB7 EXTCODECOPY PUSH5 0x389BC36473 PUSH16 0x6C634300081E00330000000000000000 ","sourceMap":"2995:7847:109:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31313:393:110;;;;;;;;;;;;;:::i;:::-;;;160:25:125;;;148:2;133:18;31313:393:110;;;;;;;;15853:422;;;;;;;;;;-1:-1:-1;15853:422:110;;;;;:::i;:::-;;:::i;:::-;;;728:14:125;;721:22;703:41;;691:2;676:18;15853:422:110;563:187:125;3483:93:109;;;;;;;;;;-1:-1:-1;3947:10:110;3483:93:109;;2715:144:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9262:174:110:-;;;;;;;;;;-1:-1:-1;9262:174:110;;;;;:::i;:::-;;:::i;:::-;;8750:148:46;;;;;;;;;;-1:-1:-1;8750:148:46;;;;;:::i;:::-;;:::i;24591:398:110:-;;;;;;;;;;-1:-1:-1;24591:398:110;;;;;:::i;:::-;;:::i;15514:310::-;;;;;;;;;;-1:-1:-1;15514:310:110;;;;;:::i;:::-;;:::i;14990:188::-;;;;;;;;;;-1:-1:-1;14990:188:110;;;;;:::i;:::-;-1:-1:-1;;;;;15148:18:110;15054:12;15148:18;;;:10;:18;;;;;:25;-1:-1:-1;;;15148:25:110;;;;;14990:188;;;;;;;;:::i;5132:186:44:-;;;;;;;;;;-1:-1:-1;5132:186:44;;;;;:::i;:::-;;:::i;9887:147:46:-;;;;;;;;;;-1:-1:-1;9887:147:46;;;;;:::i;:::-;;:::i;9934:88:109:-;;;;;;;;;;;;;:::i;3788:127::-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;3788:127:109;;16433:203:110;;;;;;;;;;-1:-1:-1;16433:203:110;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;8119:33:125;;;8101:52;;8089:2;8074:18;16433:203:110;7957:202:125;3868:152:44;;;;;;;;;;-1:-1:-1;3999:14:44;;3868:152;;11236:357:110;;;;;;;;;;-1:-1:-1;11236:357:110;;;;;:::i;:::-;;:::i;10671:134:109:-;;;;;;;;;;-1:-1:-1;3147:66:75;10671:134:109;;9854:74;;;;;;;;;;;;;:::i;6089:172::-;;;;;;;;;;-1:-1:-1;6089:172:109;;;;;:::i;:::-;;:::i;:::-;;;9246:10:125;9234:23;;;9216:42;;9204:2;9189:18;6089:172:109;9072:192:125;34752:703:110;;;;;;;;;;-1:-1:-1;34752:703:110;;;;;:::i;:::-;;:::i;5910:244:44:-;;;;;;;;;;-1:-1:-1;5910:244:44;;;;;:::i;:::-;;:::i;5442:104:109:-;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;10888:32:125;;;10870:51;;10858:2;10843:18;5442:104:109;10724:203:125;4097:109:109;;;;;;:::i;:::-;;:::i;7963:221:46:-;;;;;;;;;;;;;:::i;:::-;;;11104:4:125;11092:17;;;11074:36;;11062:2;11047:18;7963:221:46;10932:184:125;9537:158:109;;;;;;:::i;:::-;;:::i;5552:105::-;;;;;;;;;;;;;:::i;26139:534:110:-;;;;;;;;;;-1:-1:-1;26139:534:110;;;;;:::i;:::-;;:::i;3687:95:109:-;;;;;;;;;;-1:-1:-1;3764:11:109;3687:95;;3044:72;;;;;;;;;;;;-1:-1:-1;;;3044:72:109;;8219:153:46;;;;;;;;;;;;;:::i;6267:189:109:-;;;;;;;;;;-1:-1:-1;6267:189:109;;;;;:::i;:::-;;:::i;3836:65:110:-;;;;;;;;;;;;3885:16;3836:65;;4336:57:109;;;:::i;8933:108:46:-;;;;;;;;;;-1:-1:-1;8933:108:46;;;;;:::i;:::-;-1:-1:-1;;;9017:17:46;8933:108;5922:161:109;;;;;;;;;;-1:-1:-1;5922:161:109;;;;;:::i;:::-;;:::i;7851:122::-;;;;;;:::i;:::-;;:::i;3911:214:76:-;;;;;;:::i;:::-;;:::i;10421:127:109:-;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;14595:31:125;;;14577:50;;14565:2;14550:18;10421:127:109;14433:200:125;3466:126:76;;;;;;;;;;;;;:::i;3582:99:109:-;;;;;;;;;;-1:-1:-1;4005:5:110;3582:99:109;;1976:137:42;;;;;;;;;;-1:-1:-1;1976:137:42;;;;;:::i;:::-;;:::i;17661:174:110:-;;;;;;;;;;-1:-1:-1;17661:174:110;;;;;:::i;:::-;;:::i;17871:895::-;;;;;;;;;;-1:-1:-1;17871:895:110;;;;;:::i;:::-;;:::i;4212:53:109:-;;;:::i;5312:124::-;;;;;;;;;;-1:-1:-1;3711:2:42;5312:124:109;10671:134;9047:119;;;;;;:::i;:::-;;:::i;10250:392:46:-;;;;;;;;;;-1:-1:-1;10250:392:46;;;;;:::i;:::-;;:::i;4053:171:44:-;;;;;;;;;;-1:-1:-1;4053:171:44;;;;;:::i;:::-;;:::i;30855:159:110:-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;30996:12:110;-1:-1:-1;;;30996:12:110;;;;30855:159;;7743:102:109;;;;;;:::i;:::-;;:::i;1768:107:42:-;;;;;;;;;;-1:-1:-1;1851:17:42;1768:107;;4754:148:109;;;;;;:::i;:::-;;:::i;6462:180::-;;;;;;:::i;:::-;;:::i;4271:59::-;;;:::i;35998:476:110:-;;;;;;;;;;-1:-1:-1;35998:476:110;;;;;:::i;:::-;;:::i;4399:82:109:-;;;;;;:::i;:::-;;:::i;7554:183::-;;;;;;:::i;:::-;;:::i;9398:133::-;;;;;;:::i;:::-;;:::i;29392:262:110:-;;;;;;;;;;-1:-1:-1;29392:262:110;;;;;:::i;:::-;;:::i;4487:67:109:-;;;:::i;7979:168::-;;;;;;;;;;-1:-1:-1;7979:168:109;;;;;:::i;:::-;;:::i;4908:114::-;;;;;;:::i;:::-;;:::i;5028:164::-;;;;;;;;;;-1:-1:-1;5028:164:109;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10677:380:46:-;;;;;;;;;;-1:-1:-1;10677:380:46;;;;;:::i;:::-;;:::i;2972:148:44:-;;;;;;;;;;;;;:::i;4560:188:109:-;;;;;;:::i;:::-;;:::i;8327:161::-;;;;;;:::i;:::-;;:::i;7175:216::-;;;;;;:::i;:::-;;:::i;3990:101::-;;;;;;:::i;:::-;;:::i;31018:254:110:-;;;;;;;;;;-1:-1:-1;31018:254:110;;;;;:::i;:::-;;:::i;11597:112::-;;;;;;;;;;;;;:::i;4419:178:44:-;;;;;;;;;;-1:-1:-1;4419:178:44;;;;;:::i;:::-;;:::i;3643:55:110:-;;;;;;;;;;-1:-1:-1;3643:55:110;-1:-1:-1;;;;;;3643:55:110;;33732:317;;;;;;;;;;-1:-1:-1;33732:317:110;;;;;:::i;:::-;;:::i;1732:58:76:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1732:58:76;;;;;10028:83:109;;;:::i;6918:251::-;;;;;;:::i;:::-;;:::i;5663:100::-;;;;;;;;;;;;;:::i;9701:147::-;;;;;;:::i;:::-;;:::i;9709:143:46:-;;;;;;;;;;-1:-1:-1;9709:143:46;;;;;:::i;:::-;;:::i;11092:413::-;;;;;;;;;;-1:-1:-1;11092:413:46;;;;;:::i;:::-;;:::i;8612:137:109:-;;;;;;:::i;:::-;;:::i;11540:405:46:-;;;;;;;;;;-1:-1:-1;11540:405:46;;;;;:::i;:::-;;:::i;13896:384:110:-;;;;;;;;;;-1:-1:-1;13896:384:110;;;;;:::i;:::-;;:::i;12753:599::-;;;;;;;;;;-1:-1:-1;12753:599:110;;;;;:::i;:::-;;:::i;22615:163::-;;;;;;;;;;-1:-1:-1;22615:163:110;;;;;:::i;:::-;;:::i;5769:147:109:-;;;;;;;;;;-1:-1:-1;5769:147:109;;;;;:::i;:::-;;:::i;8567:148:46:-;;;;;;;;;;-1:-1:-1;8567:148:46;;;;;:::i;:::-;;:::i;10554:111:109:-;;;;;;;;;;;;;:::i;8153:168::-;;;;;;;;;;-1:-1:-1;8153:168:109;;;;;:::i;:::-;;:::i;9172:107::-;;;;;;:::i;:::-;;:::i;31710:196:110:-;;;;;;;;;;;;;:::i;32156:155::-;;;;;;;;;;-1:-1:-1;32156:155:110;;;;;:::i;:::-;;:::i;6648:264:109:-;;;;;;:::i;:::-;;:::i;33170:292:110:-;;;;;;;;;;-1:-1:-1;33170:292:110;;;;;:::i;:::-;;:::i;24146:441::-;;;;;;;;;;-1:-1:-1;24146:441:110;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;16871:754::-;;;;;;;;;;-1:-1:-1;16871:754:110;;;;;:::i;:::-;;:::i;31947:168::-;;;;;;;;;;-1:-1:-1;31947:168:110;;;;;:::i;:::-;;:::i;4630:195:44:-;;;;;;;;;;-1:-1:-1;4630:195:44;;;;;:::i;:::-;;:::i;9285:107:109:-;;;;;;:::i;:::-;;:::i;7397:151::-;;;;;;;;;;-1:-1:-1;7397:151:109;;;;;:::i;:::-;;:::i;27866:965:110:-;;;;;;;;;;-1:-1:-1;27866:965:110;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;16672:163::-;;;;;;;;;;-1:-1:-1;16672:163:110;;;;;:::i;:::-;;:::i;30257:594::-;;;;;;;;;;-1:-1:-1;30257:594:110;;;;;:::i;:::-;;:::i;8494:112:109:-;;;;;;;;;;-1:-1:-1;8545:10:109;8494:112;10671:134;8918:123;;;;;;:::i;:::-;;:::i;3921:63::-;;;:::i;10320:95::-;;;:::i;14565:421:110:-;;;;;;;;;;-1:-1:-1;14565:421:110;;;;;:::i;:::-;;:::i;10226:88:109:-;;;;;;;;;;;;;:::i;8755:157::-;;;;;;:::i;:::-;;:::i;5198:108::-;;;;;;;;;;-1:-1:-1;5198:108:109;;;;;:::i;:::-;7851:122;;31313:393:110;31366:14;-1:-1:-1;;;;;;;;;;;31464:10:110;:8;:10::i;:::-;31490:13;;31520:38;;-1:-1:-1;;;31520:38:110;;31552:4;31520:38;;;10870:51:125;31455:19:110;;-1:-1:-1;;;;;;31490:13:110;;:29;;:13;;31520:23;;10843:18:125;;31520:38:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31490:69;;;;;;;;;;;;;160:25:125;;148:2;133:18;;14:177;31490:69:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31480:79;;;;:::i;:::-;31569:12;;31480:79;;-1:-1:-1;31584:1:110;-1:-1:-1;;;31569:12:110;;;;;:16;31565:137;;;31621:12;;31613:21;;-1:-1:-1;;;31621:12:110;;;;31613:21;:::i;:::-;31595:40;;;;:::i;:::-;;;31382:324;31313:393;:::o;31565:137::-;31681:12;;31656:39;;-1:-1:-1;;;31681:12:110;;;;31656:39;;:::i;15853:422::-;15938:4;-1:-1:-1;;;;;;15963:48:110;;-1:-1:-1;;;15963:48:110;;:104;;-1:-1:-1;;;;;;;16021:46:110;;-1:-1:-1;;;16021:46:110;15963:104;:153;;;-1:-1:-1;;;;;;;16077:39:110;;-1:-1:-1;;;16077:39:110;15963:153;:210;;;-1:-1:-1;;;;;;;16126:47:110;;-1:-1:-1;;;16126:47:110;15963:210;:261;;;-1:-1:-1;;;;;;;16183:41:110;;-1:-1:-1;;;16183:41:110;15963:261;:307;;;-1:-1:-1;;;;;;;;;;829:40:102;;;16234:36:110;15950:320;15853:422;-1:-1:-1;;15853:422:110:o;2715:144:44:-;2845:7;2838:14;;2760:13;;-1:-1:-1;;;;;;;;;;;2082:20:44;2838:14;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2715:144;:::o;9262:174:110:-;4158:30:75;4191:26;:24;:26::i;:::-;4302:15;;4158:59;;-1:-1:-1;4302:15:75;-1:-1:-1;;;4302:15:75;;;4301:16;;-1:-1:-1;;;;;4348:14:75;4279:19;4724:16;;:34;;;;;4744:14;4724:34;4704:54;;4768:17;4788:11;-1:-1:-1;;;;;4788:16:75;4803:1;4788:16;:50;;;;-1:-1:-1;4816:4:75;4808:25;:30;4788:50;4768:70;;4854:12;4853:13;:30;;;;;4871:12;4870:13;4853:30;4849:91;;;4906:23;;-1:-1:-1;;;4906:23:75;;;;;;;;;;;4849:91;4949:18;;-1:-1:-1;;4949:18:75;4966:1;4949:18;;;4977:67;;;;5011:22;;-1:-1:-1;;;;5011:22:75;-1:-1:-1;;;5011:22:75;;;4977:67;9381:50:110::1;9403:5;9410:7;9419:11;9381:21;:50::i;:::-;5068:14:75::0;5064:101;;;5098:23;;-1:-1:-1;;;;5098:23:75;;;5140:14;;-1:-1:-1;14577:50:125;;-1:-1:-1;;;;;;;;;;;5140:14:75;14565:2:125;14550:18;5140:14:75;;;;;;;5064:101;4092:1079;;;;;9262:174:110;;;:::o;8750:148:46:-;8820:7;8846:45;8863:6;8871:19;8846:16;:45::i;24591:398:110:-;24734:6;7811:33;7847:24;7864:6;7847:16;:24::i;:::-;7811:60;-1:-1:-1;7908:19:110;7885;;-1:-1:-1;;;7885:19:110;;;;:42;;;;;;;;:::i;:::-;7953:19;;7945:6;;-1:-1:-1;;;7953:19:110;;;;;;7885:42;7877:97;;;;-1:-1:-1;;;7877:97:110;;;;;;;;;:::i;:::-;;;;;;;;;;;8015:21;8039:34;8060:12;8039:20;:34::i;:::-;8015:58;;24748:78:::1;24765:12;:10;:12::i;:::-;24779:6:::0;-1:-1:-1;;;24748:16:110::1;:78::i;:::-;-1:-1:-1::0;;;;;24836:27:110;::::1;24858:4;24836:27;24832:92;;24865:59;24882:12;:10;:12::i;:::-;24896:6:::0;-1:-1:-1;;;;;;24865:16:110::1;:59::i;:::-;24930:54;::::0;-1:-1:-1;;;24930:54:110;;-1:-1:-1;;;;;24930:31:110;::::1;::::0;::::1;::::0;:54:::1;::::0;24962:9;;;;24973:10;;24930:54:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8086:64:::0;8114:6;8122:12;8136:13;8086:27;:64::i;:::-;7805:350;;24591:398;;;;;:::o;15514:310::-;15600:11;:16;;15615:1;15600:16;15592:44;;;;-1:-1:-1;;;15592:44:110;;;;;;;;;;;;15642:33;15678:24;15695:6;15678:16;:24::i;:::-;15743:21;;15713:65;;;15743:21;;;;32728:42:125;;32806:23;;;32801:2;32786:18;;32779:51;15743:21:110;;-1:-1:-1;;;;;;15713:65:110;;;;;32701:18:125;15713:65:110;;;;;;;15784:35;;-1:-1:-1;;15784:35:110;;;;;;;;;;;;-1:-1:-1;15514:310:110:o;5132:186:44:-;5205:4;5221:13;5237:12;:10;:12::i;:::-;5221:28;;5259:31;5268:5;5275:7;5284:5;5259:8;:31::i;:::-;-1:-1:-1;5307:4:44;;5132:186;-1:-1:-1;;;5132:186:44:o;9887:147:46:-;9957:7;9983:44;10000:6;10008:18;9983:16;:44::i;9934:88:109:-;9989:26;:24;:26::i;:::-;9934:88::o;16433:203:110:-;16569:6;7677:10;-1:-1:-1;;;;;7699:11:110;7677:34;;;7669:71;;;;-1:-1:-1;;;7669:71:110;;-1:-1:-1;;;;;10888:32:125;;;7669:71:110;;;10870:51:125;10843:18;;7669:71:110;10724:203:125;7669:71:110;-1:-1:-1;;;;16590:41:110;16433:203;-1:-1:-1;;;;;;16433:203:110:o;11236:357::-;11308:31;-1:-1:-1;;;;;;;;;;;11397:13:110;;11427:38;;-1:-1:-1;;;11427:38:110;;11459:4;11427:38;;;10870:51:125;11397:13:110;;-1:-1:-1;11375:19:110;;-1:-1:-1;;;;;11397:13:110;;;;:29;;:13;;11427:23;;10843:18:125;;11427:38:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11397:69;;;;;;;;;;;;;160:25:125;;148:2;133:18;;14:177;11397:69:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11375:91;;11506:11;11480:22;11490:11;11480:9;:22::i;:::-;:37;:46;;;;11521:5;11480:46;11472:83;;;;-1:-1:-1;;;11472:83:110;;;;;;;;;;;;11561:27;11576:11;11561:14;:27::i;:::-;11302:291;;11236:357;;:::o;10765:33:109:-;10756:42;;10671:134;:::o;9854:74::-;9902:19;:17;:19::i;6089:172::-;6172:16;6214:40;6235:8;6244:9;6214:20;:40::i;:::-;6200:54;6089:172;-1:-1:-1;;;6089:172:109:o;34752:703:110:-;34903:24;34920:6;34903:16;:24::i;:::-;;34956:16;34975:59;34987:6;34995:8;35005:9;35016:17;:6;:15;:17::i;:::-;34975:11;:59::i;:::-;34956:78;-1:-1:-1;35084:6:110;34956:78;35061:1;35048:14;;;35040:63;;;;-1:-1:-1;;;35040:63:110;;;;;33013:25:125;;;;33054:18;;;33047:34;32986:18;;35040:63:110;32841:246:125;35040:63:110;;;35157:15;35175:10;:8;:10::i;:::-;35157:28;;35205:6;35195:7;:16;35191:112;;;35261:16;35270:7;35261:6;:16;:::i;:::-;35229:27;35239:16;35248:7;35239:6;:16;:::i;:::-;35229:9;:27::i;:::-;:49;35221:75;;;;-1:-1:-1;;;35221:75:110;;;;;;;;;;;;35308:57;35345:11;35358:6;35323:7;:5;:7::i;:::-;-1:-1:-1;;;;;35308:36:110;;:57;:36;:57::i;:::-;35376:74;;;33375:10:125;33363:23;;;33345:42;;33423:23;;33418:2;33403:18;;33396:51;33463:18;;;33456:34;;;33521:2;33506:18;;33499:34;;;-1:-1:-1;;;;;33570:32:125;;;33564:3;33549:19;;33542:61;35376:74:110;;;;;33332:3:125;33317:19;35376:74:110;;;;;;;34897:558;;34752:703;;;;;:::o;5910:244:44:-;5997:4;6013:15;6031:12;:10;:12::i;:::-;6013:30;;6053:37;6069:4;6075:7;6084:5;6053:15;:37::i;:::-;6100:26;6110:4;6116:2;6120:5;6100:9;:26::i;:::-;-1:-1:-1;6143:4:44;;5910:244;-1:-1:-1;;;;5910:244:44:o;5442:104:109:-;5488:12;5521:18;:16;:18::i;4097:109::-;4196:6;8218:33:110;8254:24;8271:6;8254:16;:24::i;:::-;8218:60;-1:-1:-1;8322:19:110;8299;;-1:-1:-1;;;8299:19:110;;;;:42;;;;;;;;:::i;:::-;;:92;;;-1:-1:-1;8368:23:110;8345:19;;-1:-1:-1;;;8345:19:110;;;;:46;;;;;;;;:::i;:::-;;8299:92;8423:19;;8415:6;;-1:-1:-1;;;8423:19:110;;;;;;8284:165;;;;-1:-1:-1;;;8284:165:110;;;;;;;;;:::i;:::-;;;8520:21;8544:10;:8;:10::i;:::-;8520:34;;8567:20;8590:10;:8;:10::i;:::-;8567:33;;8626:13;8611:12;:28;8607:111;;;8682:28;8698:12;8682:13;:28;:::i;:::-;8656:55;;-1:-1:-1;;;8656:55:110;;;;;;160:25:125;;148:2;133:18;;14:177;8607:111:110;8212:510;;;4097:109:109;;:::o;7963:221:46:-;8055:5;;5498:22;8072:47;-1:-1:-1;14580:5:46;8136:21;;:41;;;-1:-1:-1;;;8136:21:46;;;;:41;:::i;9537:158:109:-;9643:45;9658:5;9664:7;9672:5;9678:9;9643:14;:45::i;5552:105::-;5596:17;5634:16;:14;:16::i;:::-;5625:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5625:25:109;;5552:105;-1:-1:-1;;;;5552:105:109:o;26139:534:110:-;26264:19;26247:6;7811:33;7847:24;7864:6;7847:16;:24::i;:::-;7811:60;-1:-1:-1;7908:19:110;7885;;-1:-1:-1;;;7885:19:110;;;;:42;;;;;;;;:::i;:::-;7953:19;;7945:6;;-1:-1:-1;;;7953:19:110;;;;;;7885:42;7877:97;;;;-1:-1:-1;;;7877:97:110;;;;;;;;;:::i;:::-;;;8015:21;8039:34;8060:12;8039:20;:34::i;:::-;8015:58;;26291:57:::1;26308:12;:10;:12::i;:::-;26322:6:::0;26337:9:::1;26344:1;26342;26337:4:::0;;:9:::1;:::i;:::-;26330:17;::::0;::::1;:::i;:::-;26291:16;:57::i;:::-;26363:25;26383:4;;26363:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;26363:19:110;::::1;::::0;:25;-1:-1:-1;;26363:19:110::1;:25::i;:::-;26354:34;;26394:16;26424:6;26413:29;;;;;;;;;;;;:::i;:::-;26452:47;::::0;-1:-1:-1;;;26452:47:110;;::::1;::::0;::::1;160:25:125::0;;;26394:48:110;;-1:-1:-1;26511:4:110::1;::::0;-1:-1:-1;;;;;26468:11:110::1;26452:37;::::0;::::1;::::0;133:18:125;;26452:47:110::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;26452:64:110::1;;26448:221;;26603:59;26620:12;:10;:12::i;:::-;26634:6:::0;-1:-1:-1;;;;;;26603:16:110::1;:59::i;:::-;26285:388;8086:64:::0;8114:6;8122:12;8136:13;8086:27;:64::i;:::-;7805:350;;26139:534;;;;;;:::o;8219:153:46:-;5498:22;8356:8;-1:-1:-1;;;;;8356:8:46;;8219:153::o;6267:189:109:-;6365:15;6401:48;6423:6;6430:8;6439:9;6401:21;:48::i;:::-;6392:57;6267:189;-1:-1:-1;;;;6267:189:109:o;4336:57::-;4158:30:75;4191:26;:24;:26::i;:::-;4302:15;;4158:59;;-1:-1:-1;4302:15:75;-1:-1:-1;;;4302:15:75;;;4301:16;;-1:-1:-1;;;;;4348:14:75;4279:19;4724:16;;:34;;;;;4744:14;4724:34;4704:54;;4768:17;4788:11;-1:-1:-1;;;;;4788:16:75;4803:1;4788:16;:50;;;;-1:-1:-1;4816:4:75;4808:25;:30;4788:50;4768:70;;4854:12;4853:13;:30;;;;;4871:12;4870:13;4853:30;4849:91;;;4906:23;;-1:-1:-1;;;4906:23:75;;;;;;;;;;;4849:91;4949:18;;-1:-1:-1;;4949:18:75;4966:1;4949:18;;;4977:67;;;;5011:22;;-1:-1:-1;;;;5011:22:75;-1:-1:-1;;;5011:22:75;;;4977:67;5068:14;5064:101;;;5098:23;;-1:-1:-1;;;;5098:23:75;;;5140:14;;-1:-1:-1;14577:50:125;;-1:-1:-1;;;;;;;;;;;5140:14:75;14565:2:125;14550:18;5140:14:75;;;;;;;4092:1079;;;;;4336:57:109:o;5922:161::-;5996:16;6038:38;6066:9;6038:27;:38::i;7851:122::-;7928:38;7959:6;7928:30;:38::i;3911:214:76:-;2568:13;:11;:13::i;:::-;4072:46:::1;4094:17;4113:4;4072:21;:46::i;:::-;3911:214:::0;;:::o;10421:127:109:-;10479:11;10511:30;:28;:30::i;3466:126:76:-;3527:7;2839:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;3466:126:76;:::o;1976:137:42:-;1851:17;-1:-1:-1;;;;;2075:31:42;;;;;;;1976:137::o;17661:174:110:-;17770:6;7677:10;-1:-1:-1;;;;;7699:11:110;7677:34;;;7669:71;;;;-1:-1:-1;;;7669:71:110;;-1:-1:-1;;;;;10888:32:125;;;7669:71:110;;;10870:51:125;10843:18;;7669:71:110;10724:203:125;7669:71:110;-1:-1:-1;;;;17791:39:110;17661:174;-1:-1:-1;;;;;17661:174:110:o;17871:895::-;18073:6;7677:10;-1:-1:-1;;;;;7699:11:110;7677:34;;;7669:71;;;;-1:-1:-1;;;7669:71:110;;-1:-1:-1;;;;;10888:32:125;;;7669:71:110;;;10870:51:125;10843:18;;7669:71:110;10724:203:125;7669:71:110;;18239:33:::1;18275:26;18292:8;18275:16;:26::i;:::-;18239:62:::0;-1:-1:-1;18345:19:110::1;18322::::0;;-1:-1:-1;;;18322:19:110;::::1;;;:42;::::0;::::1;;;;;;:::i;:::-;;:92;;;-1:-1:-1::0;18391:23:110::1;18368:19:::0;;-1:-1:-1;;;18368:19:110;::::1;;;:46;::::0;::::1;;;;;;:::i;:::-;;18322:92;18448:19:::0;;18438:8;;-1:-1:-1;;;18448:19:110;;::::1;;;::::0;18307:167:::1;;;;-1:-1:-1::0;;;18307:167:110::1;;;;;;;;;:::i;:::-;-1:-1:-1::0;18480:19:110::1;::::0;-1:-1:-1;18536:11:110;18502:31:::1;18522:11:::0;18502:17;:31:::1;:::i;:::-;:45;;;;:::i;:::-;18588:21:::0;;18480:67;;-1:-1:-1;18553:155:110::1;::::0;18572:8;;18588:21:::1;;18617:54;18588:21:::0;18655:15:::1;18617:14;:54::i;:::-;18680:22;:11;:20;:22::i;:::-;18679:23;;;:::i;18553:155::-;-1:-1:-1::0;;;;18721:40:110;17871:895;-1:-1:-1;;;;;;;;;17871:895:110:o;9047:119:109:-;9131:28;9145:4;9150:2;9153:5;9131:13;:28::i;:::-;9047:119;;;:::o;10250:392:46:-;10325:7;-1:-1:-1;;10514:14:46;10531:22;10546:6;10531:14;:22::i;:::-;10514:39;;10563:48;10572:12;:10;:12::i;:::-;10586:8;10596:6;10604;10563:8;:48::i;4053:171:44:-;-1:-1:-1;;;;;4197:20:44;4118:7;4197:20;;;-1:-1:-1;;;;;;;;;;;4197:20:44;;;;;;;4053:171::o;7743:102:109:-;7810:28;7831:6;7810:20;:28::i;4754:148::-;4845:50;4883:11;4845:37;:50::i;6462:180::-;6524:18;6569:23;6585:6;6569:15;:23::i;:::-;6554:38;;6607:28;6624:10;6607:28;;;;160:25:125;;148:2;133:18;;14:177;6607:28:109;;;;;;;;6462:180;;;:::o;35998:476:110:-;36099:24;36116:6;36099:16;:24::i;:::-;;36153:16;36172:60;36184:6;36192:8;36202:9;36214:17;:6;:15;:17::i;36172:60::-;36153:79;-1:-1:-1;36284:6:110;36153:79;36259:1;36246:14;;;36238:65;;;;-1:-1:-1;;;36238:65:110;;;;;33013:25:125;;;;33054:18;;;33047:34;32986:18;;36238:65:110;32841:246:125;36238:65:110;;;36310:77;36351:12;:10;:12::i;:::-;36373:4;36380:6;36325:7;:5;:7::i;:::-;-1:-1:-1;;;;;36310:40:110;;:77;;:40;:77::i;:::-;36408:6;-1:-1:-1;;;;;36398:71:110;;36416:8;36426:9;36437:6;36445:9;36456:12;:10;:12::i;:::-;36398:71;;;33375:10:125;33363:23;;;33345:42;;33423:23;;;;33418:2;33403:18;;33396:51;33463:18;;;33456:34;;;;33521:2;33506:18;;33499:34;-1:-1:-1;;;;;33570:32:125;33564:3;33549:19;;33542:61;33332:3;33317:19;36398:71:110;;;;;;;36093:381;35998:476;;;;:::o;4399:82:109:-;4470:7;6355:30:75;6388:26;:24;:26::i;:::-;6429:15;;;;-1:-1:-1;;;;6429:15:75;;;;;:44;;-1:-1:-1;6448:14:75;;-1:-1:-1;;;;;6448:25:75;;;:14;;:25;;6429:44;6425:105;;;6496:23;;-1:-1:-1;;;6496:23:75;;;;;;;;;;;6425:105;6539:24;;-1:-1:-1;;6573:22:75;-1:-1:-1;;;;;6539:24:75;;6573:22;;;-1:-1:-1;;;6573:22:75;-1:-1:-1;;;;6616:23:75;;;6654:20;;14577:50:125;;;-1:-1:-1;;;;;;;;;;;6654:20:75;14565:2:125;14550:18;6654:20:75;;;;;;;;6289:392;4399:82:109;;:::o;7554:183::-;7678:52;7694:6;7701:8;7710:5;7716:6;7723;7678:15;:52::i;9398:133::-;9489:35;9504:5;9510:7;9518:5;9489:14;:35::i;29392:262:110:-;29525:19;29508:6;8218:33;8254:24;8271:6;8254:16;:24::i;:::-;8218:60;-1:-1:-1;8322:19:110;8299;;-1:-1:-1;;;8299:19:110;;;;:42;;;;;;;;:::i;:::-;;:92;;;-1:-1:-1;8368:23:110;8345:19;;-1:-1:-1;;;8345:19:110;;;;:46;;;;;;;;:::i;:::-;;8299:92;8423:19;;8415:6;;-1:-1:-1;;;8423:19:110;;;;;;8284:165;;;;-1:-1:-1;;;8284:165:110;;;;;;;;;:::i;:::-;;;8520:21;8544:10;:8;:10::i;:::-;8520:34;;29552:57:::1;29569:12;:10;:12::i;29552:57::-;29624:25;29644:4;;29624:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;29624:19:110;::::1;::::0;:25;-1:-1:-1;;29624:19:110::1;:25::i;:::-;29615:34;;8567:20:::0;8590:10;:8;:10::i;:::-;8567:33;;8626:13;8611:12;:28;8607:111;;;8682:28;8698:12;8682:13;:28;:::i;8607:111::-;8212:510;;;29392:262;;;;;;:::o;4487:67:109:-;6929:20:75;:18;:20::i;7979:168:109:-;8068:12;8101:39;8124:6;8131:8;8101:22;:39::i;4908:114::-;4982:33;5003:11;4982:20;:33::i;5028:164::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5155:30:109;5178:6;5155:22;:30::i;:::-;5138:47;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5138:47:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;;;5138:47:109;;;;;;;;-1:-1:-1;;;5138:47:109;;;;;;;;;;5028:164;-1:-1:-1;;5028:164:109:o;10677:380:46:-;10749:7;-1:-1:-1;;10932:14:46;10949:19;10961:6;10949:11;:19::i;:::-;10932:36;;10978:48;10987:12;:10;:12::i;:::-;11001:8;11011:6;11019;10978:8;:48::i;2972:148:44:-;3104:9;3097:16;;3019:13;;-1:-1:-1;;;;;;;;;;;2082:20:44;3097:16;;;:::i;4560:188:109:-;4687:54;4715:5;;4687:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4687:54:109;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4721:7:109;;-1:-1:-1;4721:7:109;;;;4687:54;;4721:7;;;;4687:54;;;;;;;;;-1:-1:-1;4729:11:109;;-1:-1:-1;4687:27:109;;-1:-1:-1;;4687:54:109:i;8327:161::-;8436:45;8451:6;8458:8;8467:6;8474;8436:14;:45::i;7175:216::-;7340:15;:29;;;;;;;;;;7299:85;;7333:6;;7370:13;7299:33;:85::i;3990:101::-;4081:6;7811:33:110;7847:24;7864:6;7847:16;:24::i;:::-;7811:60;-1:-1:-1;7908:19:110;7885;;-1:-1:-1;;;7885:19:110;;;;:42;;;;;;;;:::i;:::-;7953:19;;7945:6;;-1:-1:-1;;;7953:19:110;;;;;;7885:42;7877:97;;;;-1:-1:-1;;;7877:97:110;;;;;;;;;:::i;:::-;;;8015:21;8039:34;8060:12;8039:20;:34::i;:::-;8015:58;;8086:64;8114:6;8122:12;8136:13;8086:27;:64::i;31018:254::-;31118:6;-1:-1:-1;;;;;;;;;;;31206:15:110;31118:6;31222:44;31238:6;31246:8;31256:9;31222:15;:44::i;:::-;31206:61;;;;;;;;;;;;31199:68;;;31018:254;;;;;:::o;11597:112::-;11642:8;-1:-1:-1;;;;;;;;;;;11665:27:110;:39;-1:-1:-1;;;;;11665:39:110;;11597:112;-1:-1:-1;11597:112:110:o;4419:178:44:-;4488:4;4504:13;4520:12;:10;:12::i;:::-;4504:28;;4542:27;4552:5;4559:2;4563:5;4542:9;:27::i;33732:317:110:-;-1:-1:-1;;33798:6:110;:27;33794:134;;33844:10;:8;:10::i;:::-;33835:19;;33794:134;;;33893:10;:8;:10::i;:::-;33883:6;:20;;33875:46;;;;-1:-1:-1;;;33875:46:110;;;;;;;;;;;;33933:31;-1:-1:-1;;;;;;;;;;;34000:13:110;;:44;;-1:-1:-1;;;34000:44:110;;;;;35236:25:125;;;34038:4:110;35277:18:125;;;35270:60;34000:13:110;;-1:-1:-1;;;;;;34000:13:110;;:21;;35209:18:125;;34000:44:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;10028:83:109:-;10082:22;:20;:22::i;6918:251::-;6997:21;7075:29;;;;;;;;;;7048:57;;:26;:57::i;:::-;7030:75;;7120:42;7148:13;7120:42;;;;160:25:125;;148:2;133:18;;14:177;5663:100:109;5707:12;5740:16;:14;:16::i;9701:147::-;9799:42;9821:5;9827:7;9835:5;9799:21;:42::i;9709:143:46:-;9775:7;9801:44;9818:6;9826:18;9801:16;:44::i;11092:413::-;11183:7;11202:17;11222:18;11234:5;11222:11;:18::i;:::-;11202:38;;11263:9;11254:6;:18;11250:108;;;11322:5;11329:6;11337:9;11295:52;;-1:-1:-1;;;11295:52:46;;;;;;;;;;:::i;11250:108::-;11368:14;11385:23;11401:6;11385:15;:23::i;:::-;11368:40;;11418:56;11428:12;:10;:12::i;:::-;11442:8;11452:5;11459:6;11467;11418:9;:56::i;:::-;11492:6;11092:413;-1:-1:-1;;;;;11092:413:46:o;8612:137:109:-;8709:33;8728:5;;8709:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8709:33:109;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8734:7:109;;-1:-1:-1;8734:7:109;;;;8709:33;;8734:7;;;;8709:33;;;;;;;;;-1:-1:-1;8709:18:109;;-1:-1:-1;;;8709:33:109:i;11540:405:46:-;11629:7;11648:17;11668:16;11678:5;11668:9;:16::i;:::-;11648:36;;11707:9;11698:6;:18;11694:106;;;11764:5;11771:6;11779:9;11739:50;;-1:-1:-1;;;11739:50:46;;;;;;;;;;:::i;11694:106::-;11810:14;11827:21;11841:6;11827:13;:21::i;:::-;11810:38;;11858:56;11868:12;:10;:12::i;:::-;11882:8;11892:5;11899:6;11907;11858:9;:56::i;13896:384:110:-;13993:33;14029:24;14046:6;14029:16;:24::i;:::-;14092:22;;14064:103;;;-1:-1:-1;;;;;;;;14092:22:110;;;;35570:58:125;;35659:2;35644:18;;35637:34;;;-1:-1:-1;;;14127:25:110;;;;;;35687:18:125;;;35680:67;35778:2;35763:18;;35756:34;;;14092:22:110;;-1:-1:-1;;;;;;14064:103:110;;;;;35557:3:125;35542:19;14064:103:110;;;;;;;14198:20;:9;:18;:20::i;:::-;14173:45;;-1:-1:-1;;;;;14173:45:110;;;;-1:-1:-1;;;14173:45:110;-1:-1:-1;;14173:45:110;;;;;;14252:23;:12;:21;:23::i;:::-;14224:51;;-1:-1:-1;;;;;14224:51:110;;;;-1:-1:-1;;;14224:51:110;-1:-1:-1;;;;14224:51:110;;;;;;-1:-1:-1;;;13896:384:110:o;12753:599::-;-1:-1:-1;;;;;12964:18:110;;12861:31;12964:18;;;:10;:18;;;;;12996:19;;-1:-1:-1;;;;;;;;;;;5762:29:110;12861:31;-1:-1:-1;;;12996:19:110;;;;:44;;;;;;;;:::i;:::-;;12988:76;;;;-1:-1:-1;;;12988:76:110;;;;;;;;;;;;13078:8;:13;;13090:1;13078:13;13070:41;;;;-1:-1:-1;;;13070:41:110;;;;;;;;;;;;13138:165;;;;;;;;;;;;;13167:19;13138:165;;;;;;;13231:20;:9;:18;:20::i;:::-;-1:-1:-1;;;;;13138:165:110;;;;;13273:23;:12;:21;:23::i;:::-;-1:-1:-1;;;;;13138:165:110;;;-1:-1:-1;;;;;13117:18:110;;;;;;:10;;;:18;;;;;;;;:186;;;;;;;;-1:-1:-1;;13117:186:110;;;;;;;;;;:18;;;;-1:-1:-1;;13117:186:110;;-1:-1:-1;;;13117:186:110;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;13117:186:110;;;;;;;;;;;;-1:-1:-1;;;;;;13117:186:110;;;-1:-1:-1;;;;;;;;13117:186:110;;;;-1:-1:-1;;;;13117:186:110;;-1:-1:-1;;;13117:186:110;;;;;;;;;;;13314:33;-1:-1:-1;;;;;13314:33:110;;;;;;;13334:12;;13314:33;:::i;:::-;;;;;;;;12855:497;;12753:599;;;;:::o;22615:163::-;22738:34;;-1:-1:-1;;;;;;36550:2:125;36546:15;;;36542:53;22738:34:110;;;36530:66:125;-1:-1:-1;;;;;;36626:33:125;;36612:12;;;36605:55;22695:6:110;;22716:57;;36676:12:125;;22738:34:110;;;;;;;;;;;;3409:20:16;;;;;;;;3312:123;5769:147:109;5843:12;5876:33;5892:9;5902:6;5876:15;:33::i;8567:148:46:-;8637:7;8663:45;8680:6;8688:19;8663:16;:45::i;10554:111:109:-;10605:9;10635:23;:21;:23::i;8153:168::-;8242:12;8275:39;8298:6;8305:8;8275:22;:39::i;9172:107::-;9246:26;9258:7;9266:5;9246:11;:26::i;31710:196:110:-;31759:7;;-1:-1:-1;;;;;;;;;;;31861:13:110;;:40;;-1:-1:-1;;;31861:40:110;;31895:4;31861:40;;;10870:51:125;31861:13:110;;-1:-1:-1;;;;;;31861:13:110;;:25;;10843:18:125;;31861:40:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31848:10;:8;:10::i;:::-;:53;;;;:::i;32156:155::-;32230:7;32252:54;32261:24;32279:5;32261:17;:24::i;:::-;32287:18;:16;:18::i;:::-;32252:8;:54::i;6648:264:109:-;6759:19;6807:51;6825:6;6832:8;6841:9;6851:6;6807:17;:51::i;:::-;6790:68;;6873:32;6892:12;6873:32;;;;160:25:125;;148:2;133:18;;14:177;6873:32:109;;;;;;;;6648:264;;;;;;:::o;33170:292:110:-;-1:-1:-1;;33237:6:110;:27;33233:166;;33274:31;-1:-1:-1;;;;;;;;;;;33352:13:110;;:40;;-1:-1:-1;;;33352:40:110;;33386:4;33352:40;;;10870:51:125;33352:13:110;;-1:-1:-1;;;;;;33352:13:110;;:25;;10843:18:125;;33352:40:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33343:49;;33266:133;33233:166;33433:6;33412:17;33422:6;33412:9;:17::i;:::-;:27;33404:53;;;;-1:-1:-1;;;33404:53:110;;;;;;;;;;;24146:441;24302:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24302:31:110;24285:6;7811:33;7847:24;7864:6;7847:16;:24::i;:::-;7811:60;-1:-1:-1;7908:19:110;7885;;-1:-1:-1;;;7885:19:110;;;;:42;;;;;;;;:::i;:::-;7953:19;;7945:6;;-1:-1:-1;;;7953:19:110;;;;;;7885:42;7877:97;;;;-1:-1:-1;;;7877:97:110;;;;;;;;;:::i;:::-;;;8015:21;8039:34;8060:12;8039:20;:34::i;:::-;8015:58;;24341:78:::1;24358:12;:10;:12::i;:::-;24372:6:::0;-1:-1:-1;;;24341:16:110::1;:78::i;:::-;-1:-1:-1::0;;;;;24429:27:110;::::1;24451:4;24429:27;24425:92;;24458:59;24475:12;:10;:12::i;24458:59::-;24530:52;::::0;-1:-1:-1;;;24530:52:110;;-1:-1:-1;;;;;24530:29:110;::::1;::::0;::::1;::::0;:52:::1;::::0;24560:9;;;;24571:10;;24530:52:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24523:59;;8086:64:::0;8114:6;8122:12;8136:13;8086:27;:64::i;:::-;7805:350;;24146:441;;;;;;;:::o;16871:754::-;17011:6;7677:10;-1:-1:-1;;;;;7699:11:110;7677:34;;;7669:71;;;;-1:-1:-1;;;7669:71:110;;-1:-1:-1;;;;;10888:32:125;;;7669:71:110;;;10870:51:125;10843:18;;7669:71:110;10724:203:125;7669:71:110;;17177:33:::1;17213:26;17230:8;17213:16;:26::i;:::-;17177:62:::0;-1:-1:-1;17283:19:110::1;17260::::0;;-1:-1:-1;;;17260:19:110;::::1;;;:42;::::0;::::1;;;;;;:::i;:::-;;:92;;;-1:-1:-1::0;17329:23:110::1;17306:19:::0;;-1:-1:-1;;;17306:19:110;::::1;;;:46;::::0;::::1;;;;;;:::i;:::-;;17260:92;17386:19:::0;;17376:8;;-1:-1:-1;;;17386:19:110;;::::1;;;::::0;17245:167:::1;;;;-1:-1:-1::0;;;17245:167:110::1;;;;;;;;;:::i;:::-;-1:-1:-1::0;;17453:21:110;;17418:150:::1;::::0;17437:8;;17453:21:::1;;17482:54;17453:21:::0;17520:15:::1;17482:14;:54::i;:::-;17545:17;:6;:15;:17::i;17418:150::-;-1:-1:-1::0;;;;17581:39:110;16871:754;-1:-1:-1;;;;;;16871:754:110:o;31947:168::-;32019:7;32041:69;32050:22;32066:5;32050:15;:22::i;:::-;32074:35;32090:18;:16;:18::i;4630:195:44:-;-1:-1:-1;;;;;4789:20:44;;;4710:7;4789:20;;;:13;:20;;;;;;;;:29;;;;;;;;;;;;;4630:195::o;9285:107:109:-;9359:26;9371:7;9379:5;9359:11;:26::i;7397:151::-;7495:46;7518:6;7525;7532:8;7495:22;:46::i;27866:965:110:-;27998:21;27981:6;7811:33;7847:24;7864:6;7847:16;:24::i;:::-;7811:60;-1:-1:-1;7908:19:110;7885;;-1:-1:-1;;;7885:19:110;;;;:42;;;;;;;;:::i;:::-;7953:19;;7945:6;;-1:-1:-1;;;7953:19:110;;;;;;7885:42;7877:97;;;;-1:-1:-1;;;7877:97:110;;;;;;;;;:::i;:::-;;;8015:21;8039:34;8060:12;8039:20;:34::i;:::-;8015:58;-1:-1:-1;28027:19:110::1;::::0;28097:4;-1:-1:-1;;;;;28085:24:110;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28076:33;;28120:9;28115:712;28131:15:::0;;::::1;28115:712;;;28161:15;28186:4;;28191:1;28186:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:12;::::0;28196:1:::1;::::0;28194::::1;::::0;28186:12:::1;:::i;:::-;28179:20;::::0;::::1;:::i;:::-;28161:38:::0;-1:-1:-1;28211:6:110;;;:34:::1;;-1:-1:-1::0;;;;;;;28221:24:110;;::::1;::::0;;::::1;;;28211:34;28207:211;;;28328:48;28345:12;:10;:12::i;:::-;28359:6;28367:8;28328:16;:48::i;:::-;28401:8;28386:23;;28207:211;28437:28;28457:4;;28462:1;28457:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;28437:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;28437:19:110;::::1;::::0;:28;-1:-1:-1;;28437:19:110::1;:28::i;:::-;28425:6;28432:1;28425:9;;;;;;;;:::i;:::-;;;;;;:40;;;;28478:5;28473:348;;28495:16;28525:6;28532:1;28525:9;;;;;;;;:::i;:::-;;;;;;;28514:32;;;;;;;;;;;;:::i;:::-;28560:47;::::0;-1:-1:-1;;;28560:47:110;;::::1;::::0;::::1;160:25:125::0;;;28495:51:110;;-1:-1:-1;28619:4:110::1;::::0;-1:-1:-1;;;;;28576:11:110::1;28560:37;::::0;::::1;::::0;133:18:125;;28560:47:110::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28560:64:110::1;;28556:257;;28719:59;28736:12;:10;:12::i;:::-;28750:6:::0;-1:-1:-1;;;;;;28719:16:110::1;:59::i;:::-;28798:4;28790:12;;28556:257;28485:336;28473:348;-1:-1:-1::0;28148:3:110::1;;28115:712;;;;28021:810;;8086:64:::0;8114:6;8122:12;8136:13;8086:27;:64::i;16672:163::-;16771:6;7677:10;-1:-1:-1;;;;;7699:11:110;7677:34;;;7669:71;;;;-1:-1:-1;;;7669:71:110;;-1:-1:-1;;;;;10888:32:125;;;7669:71:110;;;10870:51:125;10843:18;;7669:71:110;10724:203:125;7669:71:110;-1:-1:-1;;;;16792:38:110;16672:163;-1:-1:-1;;;;16672:163:110:o;30257:594::-;30397:21;30380:6;8218:33;8254:24;8271:6;8254:16;:24::i;:::-;8218:60;-1:-1:-1;8322:19:110;8299;;-1:-1:-1;;;8299:19:110;;;;:42;;;;;;;;:::i;:::-;;:92;;;-1:-1:-1;8368:23:110;8345:19;;-1:-1:-1;;;8345:19:110;;;;:46;;;;;;;;:::i;:::-;;8299:92;8423:19;;8415:6;;-1:-1:-1;;;8423:19:110;;;;;;8284:165;;;;-1:-1:-1;;;8284:165:110;;;;;;;;;:::i;:::-;;;8520:21;8544:10;:8;:10::i;:::-;8520:34;-1:-1:-1;30426:19:110::1;30472:4:::0;-1:-1:-1;;;;;30460:24:110;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30451:33;;30495:9;30490:357;30506:15:::0;;::::1;30490:357;;;30536:15;30561:4;;30566:1;30561:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:12;::::0;30571:1:::1;::::0;30569::::1;::::0;30561:12:::1;:::i;:::-;30554:20;::::0;::::1;:::i;:::-;30536:38:::0;-1:-1:-1;30586:6:110;;;:34:::1;;-1:-1:-1::0;;;;;;;30596:24:110;;::::1;::::0;;::::1;;;30586:34;30582:211;;;30703:48;30720:12;:10;:12::i;:::-;30734:6;30742:8;30703:16;:48::i;:::-;30776:8;30761:23;;30582:211;30812:28;30832:4;;30837:1;30832:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;30812:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;30812:19:110;::::1;::::0;:28;-1:-1:-1;;30812:19:110::1;:28::i;:::-;30800:6;30807:1;30800:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;:40;-1:-1:-1;30523:3:110::1;;30490:357;;;;30420:431;8567:20:::0;8590:10;:8;:10::i;8918:123:109:-;9004:30;9020:4;9025:2;9028:5;9004:15;:30::i;3921:63::-;7677:10:110;-1:-1:-1;;;;;7699:11:110;7677:34;;;7669:71;;;;-1:-1:-1;;;7669:71:110;;-1:-1:-1;;;;;10888:32:125;;;7669:71:110;;;10870:51:125;10843:18;;7669:71:110;10724:203:125;10320:95:109;10380:28;:26;:28::i;14565:421:110:-;14760:21;14747:9;:34;;;;;;;;:::i;:::-;;14739:69;;;;-1:-1:-1;;;14739:69:110;;;;;;;;;;;;14814:33;14850:24;14867:6;14850:16;:24::i;:::-;14814:60;;14905:6;-1:-1:-1;;;;;14885:59:110;;14913:12;:19;;;;;;;;;;;;14934:9;14885:59;;;;;;;:::i;:::-;;;;;;;;14950:31;;14972:9;;14950:12;;-1:-1:-1;;14950:31:110;-1:-1:-1;;;14972:9:110;14950:31;;;;;;;;:::i;:::-;;;;;;14639:347;14565:421;;:::o;8755:157:109:-;8862:43;8891:5;;8862:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8862:43:109;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8897:7:109;;-1:-1:-1;8897:7:109;;;;8862:43;;8897:7;;;;8862:43;;;;;;;;;-1:-1:-1;8862:28:109;;-1:-1:-1;;;8862:43:109:i;19496:118:110:-;19539:7;19576;:5;:7::i;:::-;19561:48;;-1:-1:-1;;;19561:48:110;;19603:4;19561:48;;;10870:51:125;-1:-1:-1;;;;;19561:33:110;;;;;;;10843:18:125;;19561:48:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;9071:205:75:-;9129:30;;3147:66;9186:27;8819:122;9491:318:110;6929:20:75;:18;:20::i;:::-;9636:14:110::1;9661:11;-1:-1:-1::0;;;;;9661:20:110::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9636:48;;9690:30;9712:6;9690:14;:30::i;:::-;9726:28;9739:5;9746:7;9726:12;:28::i;:::-;9760:44;9792:11;9760:31;:44::i;12406:213:46:-:0;12503:7;12529:83;12543:13;:11;:13::i;:::-;:17;;12559:1;12543:17;:::i;:::-;12578:23;14580:5;12578:2;:23;:::i;:::-;3999:14:44;;12562:39:46;;;;:::i;:::-;12529:6;;:83;12603:8;12529:13;:83::i;11804:294:110:-;-1:-1:-1;;;;;11992:18:110;;11869:33;11992:18;;;:10;:18;;;;;12024:19;;11992:18;;-1:-1:-1;;;;;;;;;;;5762:29:110;-1:-1:-1;;;12024:19:110;;;;:44;;;;;;;;:::i;:::-;;;12085:6;12016:77;;;;;-1:-1:-1;;;12016:77:110;;-1:-1:-1;;;;;10888:32:125;;;12016:77:110;;;10870:51:125;10843:18;;12016:77:110;10724:203:125;12016:77:110;;11904:194;11804:294;;;:::o;22782:349::-;22865:21;22944:10;:8;:10::i;:::-;22989:25;;22928:26;;-1:-1:-1;;;;22989:25:110;;-1:-1:-1;;;;;22989:25:110;22965:50;;22961:166;;;23043:25;;23025:61;;23035:50;;23072:13;;-1:-1:-1;;;23043:25:110;;-1:-1:-1;;;;;23043:25:110;23035:50;:::i;23025:61::-;;23110:10;:8;:10::i;22961:166::-;22782:349;;;:::o;19109:166::-;19210:7;19232:38;:36;:38::i;23756:386::-;23851:19;23873:34;23890:6;23898:8;23873:16;:34::i;:::-;23851:56;;23914:14;23969:4;-1:-1:-1;;;;;23934:57:110;;:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;23934:67:110;;24009:6;24031:4;24044:12;23934:128;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;23913:149:110;-1:-1:-1;24107:6:110;24115;24123:12;23913:149;24068:69;;;;-1:-1:-1;;;24068:69:110;;;;;;;;;;:::i;23135:617::-;23277:20;23300:10;:8;:10::i;:::-;23277:33;;23336:13;23321:12;:28;23317:431;;;23476:21;;23421:15;;23439:181;;23460:6;;23476:21;;23507:54;23476:21;23545:15;23507:14;:54::i;:::-;23571:41;23572:28;23588:12;23572:13;:28;:::i;:::-;23571:39;:41::i;23439:181::-;23663:22;;23421:199;;-1:-1:-1;23421:199:110;;-1:-1:-1;;;23663:22:110;;-1:-1:-1;;;;;23663:22:110;23636:51;;;;23628:113;;;;-1:-1:-1;;;23628:113:110;;;;;42717:25:125;;;;-1:-1:-1;;;;;42778:39:125;42758:18;;;42751:67;42690:18;;23628:113:110;42547:277:125;9923:128:44;10007:37;10016:5;10023:7;10032:5;10039:4;10007:8;:37::i;12069:213:46:-;12166:7;12192:83;12222:23;12166:7;12222:2;:23;:::i;:::-;3999:14:44;;12206:39:46;;;;:::i;:::-;12247:13;:11;:13::i;:::-;:17;;12263:1;12247:17;:::i;4757:213:76:-;4831:4;-1:-1:-1;;;;;4840:6:76;4823:23;;4819:145;;4924:29;;-1:-1:-1;;;4924:29:76;;;;;;;;;;;21522:292:110;21575:18;;-1:-1:-1;;;;;;;;;;;21698:13:110;;:40;;-1:-1:-1;;;21698:40:110;;21732:4;21698:40;;;10870:51:125;21698:13:110;;-1:-1:-1;21681:58:110;;21690:6;;-1:-1:-1;;;;;21698:13:110;;:25;;10843:18:125;;21698:40:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;21681:58::-;21745:13;;:64;;-1:-1:-1;;;21745:64:110;;;;;43031:25:125;;;21788:4:110;43072:18:125;;;43065:60;;;43141:18;;;43134:60;21668:71:110;;-1:-1:-1;;;;;;21745:13:110;;:22;;43004:18:125;;21745:64:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;10135:745::-;-1:-1:-1;;;;;10204:34:110;;10196:67;;;;-1:-1:-1;;;10196:67:110;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10604:13:110;;-1:-1:-1;;;;;10623:27:110;;;-1:-1:-1;;;;;;10623:27:110;;;;;10604:13;10660:31;;10656:90;;10708:7;:5;:7::i;:::-;10693:53;;-1:-1:-1;;;10693:53:110;;-1:-1:-1;;;;;43405:32:125;;;10693:53:110;;;43387:51:125;10744:1:110;43454:18:125;;;43447:34;10693:31:110;;;;;;;43360:18:125;;10693:53:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10656:90;10767:7;:5;:7::i;:::-;10752:72;;-1:-1:-1;;;10752:72:110;;-1:-1:-1;;;;;43405:32:125;;;10752:72:110;;;43387:51:125;-1:-1:-1;;43454:18:125;;;43447:34;10752:31:110;;;;;;;43360:18:125;;10752:72:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;10835:40:110;;;-1:-1:-1;;;;;44249:32:125;;;44231:51;;44318:32;;44313:2;44298:18;;44291:60;10835:40:110;;44204:18:125;10835:40:110;44021:336:125;4328:312:76;4408:4;-1:-1:-1;;;;;4417:6:76;4400:23;;;:120;;;4514:6;-1:-1:-1;;;;;4478:42:76;:32;:30;:32::i;:::-;-1:-1:-1;;;;;4478:42:76;;;4400:120;4383:251;;;4594:29;;-1:-1:-1;;;4594:29:76;;;;;;;;;;;21052:222:110;21135:16;3885;21167:35;;;;21166:103;;21248:20;;;;:9;:20;:::i;:::-;21166:103;;;21206:32;21228:9;21206:21;:32::i;34380:314:106:-;34436:6;-1:-1:-1;;;;;34557:5:106;:33;34553:105;;;34613:34;;-1:-1:-1;;;34613:34:106;;;;;160:25:125;;;133:18;;34613:34:106;14:177:125;34553:105:106;-1:-1:-1;34681:5:106;34380:314::o;21818:468:110:-;21943:19;-1:-1:-1;;;;;;;;;;;21943:19:110;22055:44;22071:6;22079:8;22089:9;22055:15;:44::i;:::-;22037:62;;22145:6;22120:1;:15;;:21;22136:4;22120:21;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;-1:-1:-1;22157:29:110;;22120:31;;-1:-1:-1;22179:6:110;;-1:-1:-1;22157:1:110;;:12;;:29;;22179:6;;-1:-1:-1;;;22157:29:110;;;;;:::i;:::-;;;-1:-1:-1;;;;;22157:29:110;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22268:12:110;;22197:84;;;45351:10:125;45339:23;;;45321:42;;45399:23;;45394:2;45379:18;;45372:51;45439:18;;;45432:34;;;45497:2;45482:18;;45475:34;;;-1:-1:-1;;;22268:12:110;;;22157:29;22268:12;45540:3:125;45525:19;;45518:51;-1:-1:-1;;;;;22197:84:110;;;;;45308:3:125;45293:19;22197:84:110;;;;;;;21964:322;;21818:468;;;;;;:::o;1219:204:82:-;1306:37;1320:5;1327:2;1331:5;1338:4;1306:13;:37::i;:::-;1301:116;;1366:40;;-1:-1:-1;;;1366:40:82;;-1:-1:-1;;;;;10888:32:125;;1366:40:82;;;10870:51:125;10843:18;;1366:40:82;10724:203:125;11669:476:44;11768:24;11795:25;11805:5;11812:7;11795:9;:25::i;:::-;11768:52;;-1:-1:-1;;11834:16:44;:36;11830:309;;;11909:5;11890:16;:24;11886:130;;;11968:7;11977:16;11995:5;11941:60;;-1:-1:-1;;;11941:60:44;;;;;;;;;;:::i;11886:130::-;12057:57;12066:5;12073:7;12101:5;12082:16;:24;12108:5;12057:8;:57::i;6527:300::-;-1:-1:-1;;;;;6610:18:44;;6606:86;;6651:30;;-1:-1:-1;;;6651:30:44;;6678:1;6651:30;;;10870:51:125;10843:18;;6651:30:44;10724:203:125;6606:86:44;-1:-1:-1;;;;;6705:16:44;;6701:86;;6744:32;;-1:-1:-1;;;6744:32:44;;6773:1;6744:32;;;10870:51:125;10843:18;;6744:32:44;10724:203:125;10900:487:44;-1:-1:-1;;;;;;;;;;;;;;;;11065:19:44;;11061:89;;11107:32;;-1:-1:-1;;;11107:32:44;;11136:1;11107:32;;;10870:51:125;10843:18;;11107:32:44;10724:203:125;11061:89:44;-1:-1:-1;;;;;11163:21:44;;11159:90;;11207:31;;-1:-1:-1;;;11207:31:44;;11235:1;11207:31;;;10870:51:125;10843:18;;11207:31:44;10724:203:125;11159:90:44;-1:-1:-1;;;;;11258:20:44;;;;;;;:13;;;:20;;;;;;;;:29;;;;;;;;;:37;;;11305:76;;;;11355:7;-1:-1:-1;;;;;11339:31:44;11348:5;-1:-1:-1;;;;;11339:31:44;;11364:5;11339:31;;;;160:25:125;;148:2;133:18;;14:177;11339:31:44;;;;;;;;10998:389;10900:487;;;;:::o;19323:169:110:-;19422:14;;19451:36;:34;:36::i;:::-;19444:43;;;;19323:169;;:::o;2690:151:87:-;2765:12;2796:38;2818:6;2826:4;2832:1;2796:21;:38::i;21278:240:110:-;15254:15:94;-1:-1:-1;;;;;;21475:16:110;;;;;3877:27:94;;;;3986:14;;;;;-1:-1:-1;;;3986:14:94;3977:24;15258:3;15254:15;;21441::110;;;;;-1:-1:-1;;;;;;15146:26:94;15245:25;;21278:240:110:o;20508:540::-;20634:4;20581:16;;4005:5;20669:24;3947:10;20669:9;:24;:::i;:::-;20668:44;;;;:::i;:::-;20644:68;;20773:200;20798:6;:18;;20813:3;20798:18;;;20807:3;20798:18;20780:37;;:13;:37;20773:200;;20844:6;:18;;20859:3;20844:18;;;20853:3;20844:18;20827:35;;;;;;:::i;:::-;;-1:-1:-1;20870:11:110;;;:::i;:::-;;-1:-1:-1;20898:13:110;20910:1;20870:11;20898:13;:::i;:::-;:18;;;:68;;;;-1:-1:-1;20921:15:110;20933:3;20921:9;:15;:::i;:::-;:20;;;;;:44;;-1:-1:-1;20945:15:110;20957:3;20945:9;:15;:::i;:::-;:20;;;20921:44;20889:77;;20773:200;;;21010:32;21020:13;21035:6;21010:9;:32::i;:::-;20992:15;:9;21004:3;20992:15;:::i;:::-;:50;;;;;;:::i;6504:304:46:-;6929:20:75;:18;:20::i;:::-;5498:22:46;6589:24:::1;::::0;6684:28:::1;6705:6:::0;6684:20:::1;:28::i;:::-;6646:66;;;;6746:7;:28;;6772:2;6746:28;;;6756:13;6746:28;6722:52:::0;;-1:-1:-1;;;;;;6784:17:46;-1:-1:-1;;;6722:52:46::1;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;;;6784:17:46;;-1:-1:-1;;;;;6784:17:46;;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;6504:304:46:o;5782:538:76:-;5899:17;-1:-1:-1;;;;;5881:50:76;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5881:52:76;;;;;;;;-1:-1:-1;;5881:52:76;;;;;;;;;;;;:::i;:::-;;;5877:437;;6243:60;;-1:-1:-1;;;6243:60:76;;-1:-1:-1;;;;;10888:32:125;;6243:60:76;;;10870:51:125;10843:18;;6243:60:76;10724:203:125;5877:437:76;-1:-1:-1;;;;;;;;;;;5975:40:76;;5971:120;;6042:34;;-1:-1:-1;;;6042:34:76;;;;;160:25:125;;;133:18;;6042:34:76;14:177:125;5971:120:76;6104:54;6134:17;6153:4;6104:29;:54::i;8241:128:75:-;8298:6;8323:26;:24;:26::i;:::-;:39;-1:-1:-1;;;;;8323:39:75;;8241:128;-1:-1:-1;8241:128:75:o;7142:1170:44:-;-1:-1:-1;;;;;;;;;;;;;;;;7284:18:44;;7280:546;;7438:5;7420:1;:14;;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;7280:546:44;;-1:-1:-1;7280:546:44;;-1:-1:-1;;;;;7496:17:44;;7474:19;7496:17;;;;;;;;;;;7531:19;;;7527:115;;;7602:4;7608:11;7621:5;7577:50;;-1:-1:-1;;;7577:50:44;;;;;;;;;;:::i;7527:115::-;-1:-1:-1;;;;;7762:17:44;;:11;:17;;;;;;;;;;7782:19;;;;7762:39;;7280:546;-1:-1:-1;;;;;7840:16:44;;7836:429;;8003:14;;;:23;;;;;;;7836:429;;;-1:-1:-1;;;;;8216:15:44;;:11;:15;;;;;;;;;;:24;;;;;;7836:429;8295:2;-1:-1:-1;;;;;8280:25:44;8289:4;-1:-1:-1;;;;;8280:25:44;;8299:5;8280:25;;;;160::125;;148:2;133:18;;14:177;8280:25:44;;;;;;;;7217:1095;7142:1170;;;:::o;12683:841:46:-;13353:74;13387:7;:5;:7::i;:::-;13397:6;13413:4;13420:6;13353:26;:74::i;:::-;13437:23;13443:8;13453:6;13437:5;:23::i;:::-;13492:8;-1:-1:-1;;;;;13476:41:46;13484:6;-1:-1:-1;;;;;13476:41:46;;13502:6;13510;13476:41;;;;;;33013:25:125;;;33069:2;33054:18;;33047:34;33001:2;32986:18;;32841:246;6384:114:46;6929:20:75;:18;:20::i;9864:267:110:-;6929:20:75;:18;:20::i;:::-;10022:11:110::1;-1:-1:-1::0;;;;;10022:20:110::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:71;::::0;-1:-1:-1;;;10022:71:110;;-1:-1:-1;;;;;10061:11:110::1;43405:32:125::0;;10022:71:110::1;::::0;::::1;43387:51:125::0;-1:-1:-1;;43454:18:125;;;43447:34;10022:30:110;;;::::1;::::0;::::1;::::0;43360:18:125;;10022:71:110::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10099:27;10114:11;10099:14;:27::i;1662:232:82:-:0;1767:47;1785:5;1792:4;1798:2;1802:5;1809:4;1767:17;:47::i;:::-;1762:126;;1837:40;;-1:-1:-1;;;1837:40:82;;-1:-1:-1;;;;;10888:32:125;;1837:40:82;;;10870:51:125;10843:18;;1837:40:82;10724:203:125;32315:606:110;32471:15;32489:10;:8;:10::i;:::-;32471:28;;32519:6;32509:7;:16;32505:350;;;32613:31;-1:-1:-1;;;;;;;;;;;32712:13:110;;:40;;-1:-1:-1;;;32712:40:110;;32746:4;32712:40;;;10870:51:125;32712:13:110;;-1:-1:-1;;;;;;32712:13:110;;:25;;10843:18:125;;32712:40:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32691:16;32700:7;32691:6;:16;:::i;:::-;32690:62;;32682:88;;;;-1:-1:-1;;;32682:88:110;;;;;;;;;;;;32778:13;;-1:-1:-1;;;;;32778:13:110;:22;32801:16;32810:7;32801:6;:16;:::i;:::-;32778:70;;-1:-1:-1;;;;;;32778:70:110;;;;;;;;;;43031:25:125;;;;32827:4:110;43072:18:125;;;43065:60;;;43141:18;;;43134:60;43004:18;;32778:70:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32527:328;32505:350;32860:56;32876:6;32884:8;32894:5;32901:6;32909;32860:15;:56::i;:::-;32465:456;32315:606;;;;;:::o;7082:141:75:-;7149:17;:15;:17::i;:::-;7144:73;;7189:17;;-1:-1:-1;;;7189:17:75;;;;;;;;;;;2281:147:44;6929:20:75;:18;:20::i;:::-;2383:38:44::1;2406:5;2413:7;2383:22;:38::i;11296:213:106:-:0;11352:6;-1:-1:-1;;;;;11374:24:106;;11370:103;;;11421:41;;-1:-1:-1;;;11421:41:106;;11452:2;11421:41;;;46820:36:125;46872:18;;;46865:34;;;46793:18;;11421:41:106;46639:266:125;19618:886:110;19692:7;19833:2;19821:9;:14;19817:28;;;-1:-1:-1;19844:1:110;19837:8;;19817:28;19855:6;19851:123;;;19887:2;19875:9;:14;19871:28;;;-1:-1:-1;19898:1:110;19891:8;;19871:28;19907:11;;;;:::i;:::-;;;;19851:123;;;19955:2;19943:9;:14;19939:28;;;-1:-1:-1;19966:1:110;19959:8;;19939:28;20005:2;19993:9;:14;19992:507;;20044:3;20032:9;:15;20031:468;;20088:3;20076:9;:15;20075:424;;20136:3;20124:9;:15;20123:376;;20188:3;20176:9;:15;20175:324;;20244:3;20232:9;:15;20231:268;;20304:3;20292:9;:15;20291:208;;20368:3;20356:9;:15;20355:144;;20437:3;20425:9;:15;20424:75;;20497:2;19992:507;;20424:75;20468:2;19992:507;;20355:144;20397:2;19992:507;;20291:208;20331:1;19992:507;;20231:268;20269:1;19992:507;;20175:324;20211:1;19992:507;;20123:376;20157:1;19992:507;;20075:424;20107:1;19992:507;;20031:468;20061:1;19992:507;;;20019:1;19992:507;19979:520;;;19618:886;-1:-1:-1;;;19618:886:110:o;8485:120:75:-;8535:4;8558:26;:24;:26::i;:::-;:40;-1:-1:-1;;;8558:40:75;;;;;;-1:-1:-1;8485:120:75:o;8655:208:44:-;-1:-1:-1;;;;;8725:21:44;;8721:91;;8769:32;;-1:-1:-1;;;8769:32:44;;8798:1;8769:32;;;10870:51:125;10843:18;;8769:32:44;10724:203:125;8721:91:44;8821:35;8837:1;8841:7;8850:5;8821:7;:35::i;9216:129:46:-;9281:7;9307:31;9321:16;9331:5;9321:9;:16::i;5633:111:105:-;5691:7;5328:5;;;5725;;;5327:36;5322:42;;5717:20;5087:294;9380:112:46;9443:7;9469:16;9479:5;9469:9;:16::i;9181:206:44:-;-1:-1:-1;;;;;9251:21:44;;9247:89;;9295:30;;-1:-1:-1;;;9295:30:44;;9322:1;9295:30;;;10870:51:125;10843:18;;9295:30:44;10724:203:125;9247:89:44;9345:35;9353:7;9370:1;9374:5;9345:7;:35::i;7709:422:75:-;7824:30;7857:26;:24;:26::i;:::-;7898:15;;;;-1:-1:-1;;;;7898:15:75;;;;7894:76;;;7936:23;;-1:-1:-1;;;7936:23:75;;;;;;;;;;;7894:76;7983:14;;-1:-1:-1;;;;;7983:14:75;;;:34;7979:146;;8033:33;;-1:-1:-1;;8033:33:75;-1:-1:-1;;;;;8033:33:75;;;;;8085:29;;14577:50:125;;;-1:-1:-1;;;;;;;;;;;8085:29:75;14565:2:125;14550:18;8085:29:75;;;;;;;7758:373;7709:422::o;2434:216:44:-;6929:20:75;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;2599:7:44;:15:::1;2609:5:::0;2599:7;:15:::1;:::i;:::-;-1:-1:-1::0;2624:9:44::1;::::0;::::1;:19;2636:7:::0;2624:9;:19:::1;:::i;11070:238:105:-:0;11171:7;11225:76;11241:26;11258:8;11241:16;:26::i;:::-;:59;;;;;11299:1;11284:11;11271:25;;;;;:::i;:::-;11281:1;11278;11271:25;:29;11241:59;34914:9:106;34907:17;;34795:145;11225:76:105;11197:25;11204:1;11207;11210:11;11197:6;:25::i;:::-;:104;;;;:::i;2350:471:42:-;2412:7;2456:8;3711:2;2547:37;;;;;;:71;;;2588:30;2607:10;2588:18;:30::i;:::-;2543:272;;;2685:47;:8;2694:36;;;2685:8;;:47;:::i;:::-;2677:56;;;:::i;:::-;2669:65;;2662:72;;;;2350:471;:::o;2543:272::-;987:10:48;2779:25:42;;;;2350:471;:::o;1441:138:72:-;1493:7;-1:-1:-1;;;;;;;;;;;1519:47:72;1899:163:97;8373:1244:82;8600:4;8594:11;-1:-1:-1;;;8467:12:82;8618:22;;;-1:-1:-1;;;;;8666:24:82;;8660:4;8653:38;8711:4;8704:19;;;8467:12;8787:4;8467:12;8775:4;8467:12;;8759:5;8752;8747:45;8736:56;;9004:1;8997:4;8991:11;8988:18;8979:7;8975:32;8965:606;;9136:6;9126:7;9119:15;9115:28;9112:165;;;9192:16;9186:4;9181:3;9166:43;9242:16;9237:3;9230:29;9112:165;9553:1;9545:5;9533:18;9530:25;9511:16;9504:24;9500:56;9491:7;9487:70;9476:81;;8965:606;9591:4;9584:17;-1:-1:-1;8373:1244:82;;-1:-1:-1;;;;8373:1244:82:o;3054:456:42:-;3114:14;;;3711:2;3256:37;;;;;;:71;;;3297:30;3316:10;3297:18;:30::i;:::-;3252:252;;;3378:47;3388:36;;;3378:8;;;:47;:::i;:::-;3371:54;;;;;;3054:456;;:::o;3252:252::-;1061:14:48;;3477:16:42;1010:99:48;3165:696:87;3264:12;3316:5;3292:21;:29;3288:123;;;3344:56;;-1:-1:-1;;;3344:56:87;;3371:21;3344:56;;;33013:25:125;33054:18;;;33047:34;;;32986:18;;3344:56:87;32841:246:125;3288:123:87;3420:12;3435:46;3461:6;3469:5;3476:4;3435:25;:46::i;:::-;3420:61;;3495:7;:72;;;;-1:-1:-1;3539:1:87;4583:16:91;3507:33:87;:59;;;;3565:1;3544:6;-1:-1:-1;;;;;3544:18:87;;:22;3507:59;3491:364;;;3590:25;:23;:25::i;:::-;3583:32;;;;;3491:364;3636:7;3632:223;;;3666:24;;-1:-1:-1;;;3666:24:87;;-1:-1:-1;;;;;10888:32:125;;3666:24:87;;;10870:51:125;10843:18;;3666:24:87;10724:203:125;3632:223:87;4583:16:91;3711:33:87;3707:148;;3760:27;:25;:27::i;:::-;3707:148;;;3825:19;;-1:-1:-1;;;3825:19:87;;;;;;;;;;;3707:148;3278:583;3165:696;;;;;:::o;6951:607:46:-;7018:7;7027:19;7058:18;7079:29;1025:4:92;1019:11;;895:151;7079:29:46;7242:43;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7242:43:46;-1:-1:-1;;;7242:43:46;;;7058:50;;-1:-1:-1;7119:12:46;;;;7163:132;;7221:6;;7163:36;:132::i;:::-;7118:177;;;;;7305:32;7333:3;1311:4:92;1304:17;1198:139;7305:32:46;7368:7;:46;;;;-1:-1:-1;7412:2:46;4583:16:91;7379:35:46;;7368:46;:94;;;;-1:-1:-1;7447:15:46;7418:44;;;7368:94;7367:184;;7542:5;7549:1;7367:184;;;7483:4;7503:16;7367:184;7348:203;;;;;;;6951:607;;;:::o;2264:344:72:-;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:72;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;2454:148::-;2573:18;:16;:18::i;10165:1393:82:-;10460:4;10454:11;-1:-1:-1;;;10323:12:82;10478:22;;;-1:-1:-1;;;;;10526:26:82;;;10520:4;10513:40;10579:24;;10573:4;10566:38;10624:4;10617:19;;;10323:12;10700:4;10323:12;10688:4;10323:12;;10672:5;10665;10660:45;10649:56;;10917:1;10910:4;10904:11;10901:18;10892:7;10888:32;10878:606;;11049:6;11039:7;11032:15;11028:28;11025:165;;;11105:16;11099:4;11094:3;11079:43;11155:16;11150:3;11143:29;11025:165;11466:1;11458:5;11446:18;11443:25;11424:16;11417:24;11413:56;11404:7;11400:70;11389:81;;10878:606;11504:4;11497:17;-1:-1:-1;11540:1:82;11534:4;11527:15;10165:1393;;-1:-1:-1;;;;;10165:1393:82:o;13591:925:46:-;13778:5;-1:-1:-1;;;;;13768:15:46;:6;-1:-1:-1;;;;;13768:15:46;;13764:84;;13799:38;13815:5;13822:6;13830;13799:15;:38::i;:::-;14357:20;14363:5;14370:6;14357:5;:20::i;:::-;14387:57;14417:7;:5;:7::i;:::-;14427:8;14437:6;14387:22;:57::i;:::-;14487:5;-1:-1:-1;;;;;14460:49:46;14477:8;-1:-1:-1;;;;;14460:49:46;14469:6;-1:-1:-1;;;;;14460:49:46;;14494:6;14502;14460:49;;;;;;33013:25:125;;;33069:2;33054:18;;33047:34;33001:2;32986:18;;32841:246;14460:49:46;;;;;;;;13591:925;;;;;:::o;32036:122:105:-;32104:4;32145:1;32133:8;32127:15;;;;;;;;:::i;:::-;:19;;;;:::i;:::-;:24;;32150:1;32127:24;32120:31;;32036:122;;;:::o;7258:3683::-;7340:14;7391:12;7405:11;7420:12;7427:1;7430;7420:6;:12::i;:::-;7390:42;;;;7514:4;7522:1;7514:9;7510:365;;7849:11;7843:3;:17;;;;;:::i;:::-;;7836:24;;;;;;7510:365;8000:4;7985:11;:19;7981:142;;8024:84;5328:5;8044:16;;5327:36;940:4:95;5322:42:105;8024:11;:84::i;:::-;8375:17;8526:11;8523:1;8520;8513:25;8918:12;8948:15;;;8933:31;;9083:22;;;;;9816:1;9797;:15;;9796:21;;10049;;;10045:25;;10034:36;10119:21;;;10115:25;;10104:36;10191:21;;;10187:25;;10176:36;10262:21;;;10258:25;;10247:36;10335:21;;;10331:25;;10320:36;10409:21;;;10405:25;;;10394:36;9325:12;;;;9321:23;;;9346:1;9317:31;8638:18;;;8628:29;;;9432:11;;;;8681:19;;;;9176:14;;;;9425:18;;;;10884:13;;-1:-1:-1;;7258:3683:105;;;;;:::o;791:248:91:-;881:12;1018:4;1012;1005;999:11;992:4;986;982:15;975:5;967:6;960:5;955:68;944:79;791:248;-1:-1:-1;;;;791:248:91:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;2893:374;3006:12;3020:15;3037;3176:4;3170;3163;3157:11;3150:4;3144;3140:15;3132:6;3125:5;3114:67;3103:78;;3211:4;3205:11;3194:22;;3246:4;3240:11;3229:22;;2893:374;;;;;:::o;1671:281:72:-;1748:17;-1:-1:-1;;;;;1748:29:72;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:72;;-1:-1:-1;;;;;10888:32:125;;1805:47:72;;;10870:51:125;10843:18;;1805:47:72;10724:203:125;1744:119:72;-1:-1:-1;;;;;;;;;;;1872:73:72;;-1:-1:-1;;;;;;1872:73:72;-1:-1:-1;;;;;1872:73:72;;;;;;;;;;1671:281::o;4691:549:87:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:87;4583:16:91;4886:33:87;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:87;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:87;;-1:-1:-1;;;;;10888:32:125;;5045:24:87;;;10870:51:125;10843:18;;5045:24:87;10724:203:125;5011:223:87;4583:16:91;5090:33:87;5086:148;;5139:27;:25;:27::i;:::-;4788:452;4691:549;;;;:::o;6113:122:72:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:72;;;;;;;;;;;1027:550:105;1088:12;;-1:-1:-1;;1471:1:105;1468;1461:20;1501:9;;;;1549:11;;;1535:12;;;;1531:30;;;;;1027:550;-1:-1:-1;;1027:550:105:o;1776:194:95:-;1881:10;1875:4;1868:24;1918:4;1912;1905:18;1949:4;1943;1936:18;3383:242:91;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:91:o;196:173:125:-;263:20;;-1:-1:-1;;;;;;312:32:125;;302:43;;292:71;;359:1;356;349:12;374:184;432:6;485:2;473:9;464:7;460:23;456:32;453:52;;;501:1;498;491:12;453:52;524:28;542:9;524:28;:::i;755:289::-;797:3;835:5;829:12;862:6;857:3;850:19;918:6;911:4;904:5;900:16;893:4;888:3;884:14;878:47;970:1;963:4;954:6;949:3;945:16;941:27;934:38;1033:4;1026:2;1022:7;1017:2;1009:6;1005:15;1001:29;996:3;992:39;988:50;981:57;;;755:289;;;;:::o;1049:220::-;1198:2;1187:9;1180:21;1161:4;1218:45;1259:2;1248:9;1244:18;1236:6;1218:45;:::i;1274:127::-;1335:10;1330:3;1326:20;1323:1;1316:31;1366:4;1363:1;1356:15;1390:4;1387:1;1380:15;1406:247;1473:2;1467:9;1515:3;1503:16;;-1:-1:-1;;;;;1534:34:125;;1570:22;;;1531:62;1528:88;;;1596:18;;:::i;:::-;1632:2;1625:22;1406:247;:::o;1658:716::-;1723:5;1755:1;-1:-1:-1;;;;;1771:6:125;1768:30;1765:56;;;1801:18;;:::i;:::-;-1:-1:-1;1956:2:125;1950:9;-1:-1:-1;;1869:2:125;1848:15;;1844:29;;2014:2;2002:15;1998:29;1986:42;;2079:22;;;-1:-1:-1;;;;;2043:34:125;;2040:62;2037:88;;;2105:18;;:::i;:::-;2141:2;2134:22;2189;;;2174:6;-1:-1:-1;2174:6:125;2226:16;;;2223:25;-1:-1:-1;2220:45:125;;;2261:1;2258;2251:12;2220:45;2311:6;2306:3;2299:4;2291:6;2287:17;2274:44;2366:1;2359:4;2350:6;2342;2338:19;2334:30;2327:41;;1658:716;;;;;:::o;2379:222::-;2422:5;2475:3;2468:4;2460:6;2456:17;2452:27;2442:55;;2493:1;2490;2483:12;2442:55;2515:80;2591:3;2582:6;2569:20;2562:4;2554:6;2550:17;2515:80;:::i;2606:141::-;-1:-1:-1;;;;;2691:31:125;;2681:42;;2671:70;;2737:1;2734;2727:12;2752:701;2867:6;2875;2883;2936:2;2924:9;2915:7;2911:23;2907:32;2904:52;;;2952:1;2949;2942:12;2904:52;2992:9;2979:23;-1:-1:-1;;;;;3017:6:125;3014:30;3011:50;;;3057:1;3054;3047:12;3011:50;3080;3122:7;3113:6;3102:9;3098:22;3080:50;:::i;:::-;3070:60;;;3183:2;3172:9;3168:18;3155:32;-1:-1:-1;;;;;3202:8:125;3199:32;3196:52;;;3244:1;3241;3234:12;3196:52;3267;3311:7;3300:8;3289:9;3285:24;3267:52;:::i;:::-;3257:62;;;3369:2;3358:9;3354:18;3341:32;3382:41;3417:5;3382:41;:::i;:::-;3442:5;3432:15;;;2752:701;;;;;:::o;3458:226::-;3517:6;3570:2;3558:9;3549:7;3545:23;3541:32;3538:52;;;3586:1;3583;3576:12;3538:52;-1:-1:-1;3631:23:125;;3458:226;-1:-1:-1;3458:226:125:o;3689:374::-;3759:8;3769:6;3823:3;3816:4;3808:6;3804:17;3800:27;3790:55;;3841:1;3838;3831:12;3790:55;-1:-1:-1;3864:20:125;;-1:-1:-1;;;;;3896:30:125;;3893:50;;;3939:1;3936;3929:12;3893:50;3976:4;3968:6;3964:17;3952:29;;4036:3;4029:4;4019:6;4016:1;4012:14;4004:6;4000:27;3996:38;3993:47;3990:67;;;4053:1;4050;4043:12;3990:67;3689:374;;;;;:::o;4068:751::-;4183:6;4191;4199;4207;4260:2;4248:9;4239:7;4235:23;4231:32;4228:52;;;4276:1;4273;4266:12;4228:52;4315:9;4302:23;4334:41;4369:5;4334:41;:::i;:::-;4394:5;-1:-1:-1;4450:2:125;4435:18;;4422:32;-1:-1:-1;;;;;4466:30:125;;4463:50;;;4509:1;4506;4499:12;4463:50;4548:77;4617:7;4608:6;4597:9;4593:22;4548:77;:::i;:::-;4644:8;;-1:-1:-1;4522:103:125;-1:-1:-1;;4731:2:125;4716:18;;4703:32;4744:43;4703:32;4744:43;:::i;:::-;4068:751;;;;-1:-1:-1;4068:751:125;;-1:-1:-1;;4068:751:125:o;4824:121::-;4909:10;4902:5;4898:22;4891:5;4888:33;4878:61;;4935:1;4932;4925:12;4950:396;5017:6;5025;5078:2;5066:9;5057:7;5053:23;5049:32;5046:52;;;5094:1;5091;5084:12;5046:52;5133:9;5120:23;5152:41;5187:5;5152:41;:::i;:::-;5212:5;-1:-1:-1;5269:2:125;5254:18;;5241:32;5282;5241;5282;:::i;:::-;5333:7;5323:17;;;4950:396;;;;;:::o;5351:257::-;5410:6;5463:2;5451:9;5442:7;5438:23;5434:32;5431:52;;;5479:1;5476;5469:12;5431:52;5518:9;5505:23;5537:41;5572:5;5537:41;:::i;5613:127::-;5674:10;5669:3;5665:20;5662:1;5655:31;5705:4;5702:1;5695:15;5729:4;5726:1;5719:15;5745:240;5829:1;5822:5;5819:12;5809:143;;5874:10;5869:3;5865:20;5862:1;5855:31;5909:4;5906:1;5899:15;5937:4;5934:1;5927:15;5809:143;5961:18;;5745:240::o;5990:215::-;6140:2;6125:18;;6152:47;6129:9;6181:6;6152:47;:::i;6210:377::-;6278:6;6286;6339:2;6327:9;6318:7;6314:23;6310:32;6307:52;;;6355:1;6352;6345:12;6307:52;6394:9;6381:23;6413:41;6448:5;6413:41;:::i;:::-;6473:5;6551:2;6536:18;;;;6523:32;;-1:-1:-1;;;6210:377:125:o;6774:347::-;6825:8;6835:6;6889:3;6882:4;6874:6;6870:17;6866:27;6856:55;;6907:1;6904;6897:12;6856:55;-1:-1:-1;6930:20:125;;-1:-1:-1;;;;;6962:30:125;;6959:50;;;7005:1;7002;6995:12;6959:50;7042:4;7034:6;7030:17;7018:29;;7094:3;7087:4;7078:6;7070;7066:19;7062:30;7059:39;7056:59;;;7111:1;7108;7101:12;7126:826;7223:6;7231;7239;7247;7255;7308:3;7296:9;7287:7;7283:23;7279:33;7276:53;;;7325:1;7322;7315:12;7276:53;7364:9;7351:23;7383:41;7418:5;7383:41;:::i;:::-;7443:5;-1:-1:-1;7500:2:125;7485:18;;7472:32;7513:43;7472:32;7513:43;:::i;:::-;7575:7;-1:-1:-1;7655:2:125;7640:18;;7627:32;;-1:-1:-1;7736:2:125;7721:18;;7708:32;-1:-1:-1;;;;;7752:30:125;;7749:50;;;7795:1;7792;7785:12;7749:50;7834:58;7884:7;7875:6;7864:9;7860:22;7834:58;:::i;:::-;7126:826;;;;-1:-1:-1;7126:826:125;;-1:-1:-1;7911:8:125;;7808:84;7126:826;-1:-1:-1;;;7126:826:125:o;8164:118::-;8250:5;8243:13;8236:21;8229:5;8226:32;8216:60;;8272:1;8269;8262:12;8287:410;8370:6;8378;8431:2;8419:9;8410:7;8406:23;8402:32;8399:52;;;8447:1;8444;8437:12;8399:52;8486:9;8473:23;8505:41;8540:5;8505:41;:::i;:::-;8565:5;-1:-1:-1;8622:2:125;8607:18;;8594:32;8635:30;8594:32;8635:30;:::i;8702:365::-;8769:6;8777;8830:2;8818:9;8809:7;8805:23;8801:32;8798:52;;;8846:1;8843;8836:12;8798:52;8885:9;8872:23;8904:30;8928:5;8904:30;:::i;9269:808::-;9362:6;9370;9378;9386;9394;9447:3;9435:9;9426:7;9422:23;9418:33;9415:53;;;9464:1;9461;9454:12;9415:53;9503:9;9490:23;9522:41;9557:5;9522:41;:::i;:::-;9582:5;-1:-1:-1;9639:2:125;9624:18;;9611:32;9652;9611;9652;:::i;:::-;9703:7;-1:-1:-1;9762:2:125;9747:18;;9734:32;9775;9734;9775;:::i;:::-;9826:7;-1:-1:-1;9906:2:125;9891:18;;9878:32;;-1:-1:-1;9988:3:125;9973:19;;9960:33;10002:43;9960:33;10002:43;:::i;:::-;10064:7;10054:17;;;9269:808;;;;;;;;:::o;10082:528::-;10159:6;10167;10175;10228:2;10216:9;10207:7;10203:23;10199:32;10196:52;;;10244:1;10241;10234:12;10196:52;10283:9;10270:23;10302:41;10337:5;10302:41;:::i;:::-;10362:5;-1:-1:-1;10419:2:125;10404:18;;10391:32;10432:43;10391:32;10432:43;:::i;:::-;10082:528;;10494:7;;-1:-1:-1;;;10574:2:125;10559:18;;;;10546:32;;10082:528::o;11121:664::-;11204:6;11212;11220;11228;11281:3;11269:9;11260:7;11256:23;11252:33;11249:53;;;11298:1;11295;11288:12;11249:53;11337:9;11324:23;11356:41;11391:5;11356:41;:::i;:::-;11416:5;-1:-1:-1;11473:2:125;11458:18;;11445:32;11486:43;11445:32;11486:43;:::i;:::-;11548:7;-1:-1:-1;11628:2:125;11613:18;;11600:32;;-1:-1:-1;11710:2:125;11695:18;;11682:32;11723:30;11682:32;11723:30;:::i;12013:554::-;12092:6;12100;12108;12161:2;12149:9;12140:7;12136:23;12132:32;12129:52;;;12177:1;12174;12167:12;12129:52;12216:9;12203:23;12235:41;12270:5;12235:41;:::i;:::-;12295:5;-1:-1:-1;12351:2:125;12336:18;;12323:32;-1:-1:-1;;;;;12367:30:125;;12364:50;;;12410:1;12407;12400:12;12364:50;12449:58;12499:7;12490:6;12479:9;12475:22;12449:58;:::i;:::-;12013:554;;12526:8;;-1:-1:-1;12423:84:125;;-1:-1:-1;;;;12013:554:125:o;12801:535::-;12876:6;12884;12892;12945:2;12933:9;12924:7;12920:23;12916:32;12913:52;;;12961:1;12958;12951:12;12913:52;13000:9;12987:23;13019:41;13054:5;13019:41;:::i;:::-;13079:5;-1:-1:-1;13136:2:125;13121:18;;13108:32;13149;13108;13149;:::i;:::-;13200:7;-1:-1:-1;13259:2:125;13244:18;;13231:32;13272;13231;13272;:::i;13833:595::-;13910:6;13918;13971:2;13959:9;13950:7;13946:23;13942:32;13939:52;;;13987:1;13984;13977:12;13939:52;14026:9;14013:23;14045:41;14080:5;14045:41;:::i;:::-;14105:5;-1:-1:-1;14161:2:125;14146:18;;14133:32;-1:-1:-1;;;;;14177:30:125;;14174:50;;;14220:1;14217;14210:12;14174:50;14243:22;;14296:4;14288:13;;14284:27;-1:-1:-1;14274:55:125;;14325:1;14322;14315:12;14274:55;14348:74;14414:7;14409:2;14396:16;14391:2;14387;14383:11;14348:74;:::i;:::-;14338:84;;;13833:595;;;;;:::o;14638:649::-;14724:6;14732;14740;14748;14801:3;14789:9;14780:7;14776:23;14772:33;14769:53;;;14818:1;14815;14808:12;14769:53;14857:9;14844:23;14876:41;14911:5;14876:41;:::i;:::-;14936:5;-1:-1:-1;14993:2:125;14978:18;;14965:32;15006:43;14965:32;15006:43;:::i;:::-;14638:649;;15068:7;;-1:-1:-1;;;;15148:2:125;15133:18;;15120:32;;15251:2;15236:18;15223:32;;14638:649::o;15292:891::-;15396:6;15404;15412;15420;15428;15436;15489:3;15477:9;15468:7;15464:23;15460:33;15457:53;;;15506:1;15503;15496:12;15457:53;15545:9;15532:23;15564:41;15599:5;15564:41;:::i;:::-;15624:5;-1:-1:-1;15681:2:125;15666:18;;15653:32;15694:43;15653:32;15694:43;:::i;:::-;15292:891;;15756:7;;-1:-1:-1;;;;15836:2:125;15821:18;;15808:32;;15939:2;15924:18;;15911:32;;16042:3;16027:19;;16014:33;;-1:-1:-1;16146:3:125;16131:19;;;16118:33;;-1:-1:-1;15292:891:125:o;16188:377::-;16256:6;16264;16317:2;16305:9;16296:7;16292:23;16288:32;16285:52;;;16333:1;16330;16323:12;16285:52;16378:23;;;-1:-1:-1;16477:2:125;16462:18;;16449:32;16490:43;16449:32;16490:43;:::i;17030:656::-;17114:6;17122;17130;17138;17191:3;17179:9;17170:7;17166:23;17162:33;17159:53;;;17208:1;17205;17198:12;17159:53;17247:9;17234:23;17266:41;17301:5;17266:41;:::i;:::-;17326:5;-1:-1:-1;17383:2:125;17368:18;;17355:32;17396;17355;17396;:::i;:::-;17447:7;-1:-1:-1;17506:2:125;17491:18;;17478:32;17519;17478;17519;:::i;:::-;17030:656;;;;-1:-1:-1;17570:7:125;;17650:2;17635:18;17622:32;;-1:-1:-1;;17030:656:125:o;17691:284::-;17749:6;17802:2;17790:9;17781:7;17777:23;17773:32;17770:52;;;17818:1;17815;17808:12;17770:52;17857:9;17844:23;-1:-1:-1;;;;;17900:5:125;17896:30;17889:5;17886:41;17876:69;;17941:1;17938;17931:12;17980:801;18075:6;18083;18091;18099;18107;18160:3;18148:9;18139:7;18135:23;18131:33;18128:53;;;18177:1;18174;18167:12;18128:53;18216:9;18203:23;18235:41;18270:5;18235:41;:::i;:::-;18295:5;-1:-1:-1;18352:2:125;18337:18;;18324:32;18365:43;18324:32;18365:43;:::i;:::-;18427:7;-1:-1:-1;18486:2:125;18471:18;;18458:32;18499:43;18458:32;18499:43;:::i;:::-;17980:801;;;;-1:-1:-1;18561:7:125;;18641:2;18626:18;;18613:32;;-1:-1:-1;18744:3:125;18729:19;18716:33;;17980:801;-1:-1:-1;;17980:801:125:o;18786:107::-;18867:1;18860:5;18857:12;18847:40;;18883:1;18880;18873:12;18898:387;18980:6;18988;19041:2;19029:9;19020:7;19016:23;19012:32;19009:52;;;19057:1;19054;19047:12;19009:52;19102:23;;;-1:-1:-1;19201:2:125;19186:18;;19173:32;19214:39;19173:32;19214:39;:::i;19290:582::-;19521:13;;19536:10;19517:30;19499:49;;19595:4;19583:17;;;19577:24;19486:3;19471:19;;;19610:64;;19653:20;;19577:24;19610:64;:::i;:::-;;-1:-1:-1;;;;;19734:4:125;19726:6;19722:17;19716:24;19712:57;19705:4;19694:9;19690:20;19683:87;-1:-1:-1;;;;;19830:4:125;19822:6;19818:17;19812:24;19808:57;19801:4;19790:9;19786:20;19779:87;19290:582;;;;:::o;19877:877::-;19996:6;20004;20012;20020;20028;20081:2;20069:9;20060:7;20056:23;20052:32;20049:52;;;20097:1;20094;20087:12;20049:52;20137:9;20124:23;-1:-1:-1;;;;;20162:6:125;20159:30;20156:50;;;20202:1;20199;20192:12;20156:50;20241:58;20291:7;20282:6;20271:9;20267:22;20241:58;:::i;:::-;20318:8;;-1:-1:-1;20215:84:125;-1:-1:-1;;20406:2:125;20391:18;;20378:32;-1:-1:-1;;;;;20422:32:125;;20419:52;;;20467:1;20464;20457:12;20419:52;20506:60;20558:7;20547:8;20536:9;20532:24;20506:60;:::i;:::-;20585:8;;-1:-1:-1;20480:86:125;-1:-1:-1;;20670:2:125;20655:18;;20642:32;20683:41;20642:32;20683:41;:::i;20759:497::-;20836:6;20844;20852;20905:2;20893:9;20884:7;20880:23;20876:32;20873:52;;;20921:1;20918;20911:12;20873:52;20960:9;20947:23;20979:41;21014:5;20979:41;:::i;:::-;21039:5;21117:2;21102:18;;21089:32;;-1:-1:-1;21220:2:125;21205:18;;;21192:32;;20759:497;-1:-1:-1;;;20759:497:125:o;21487:528::-;21564:6;21572;21580;21633:2;21621:9;21612:7;21608:23;21604:32;21601:52;;;21649:1;21646;21639:12;21601:52;21694:23;;;-1:-1:-1;21793:2:125;21778:18;;21765:32;21806:43;21765:32;21806:43;:::i;:::-;21868:7;-1:-1:-1;21927:2:125;21912:18;;21899:32;21940:43;21899:32;21940:43;:::i;22020:714::-;22112:6;22120;22128;22136;22189:2;22177:9;22168:7;22164:23;22160:32;22157:52;;;22205:1;22202;22195:12;22157:52;22245:9;22232:23;-1:-1:-1;;;;;22270:6:125;22267:30;22264:50;;;22310:1;22307;22300:12;22264:50;22349:58;22399:7;22390:6;22379:9;22375:22;22349:58;:::i;:::-;22426:8;;-1:-1:-1;22323:84:125;-1:-1:-1;;22514:2:125;22499:18;;22486:32;-1:-1:-1;;;;;22530:32:125;;22527:52;;;22575:1;22572;22565:12;22527:52;22614:60;22666:7;22655:8;22644:9;22640:24;22614:60;:::i;:::-;22020:714;;;;-1:-1:-1;22693:8:125;-1:-1:-1;;;;22020:714:125:o;22739:637::-;22824:6;22832;22840;22848;22901:3;22889:9;22880:7;22876:23;22872:33;22869:53;;;22918:1;22915;22908:12;22869:53;22957:9;22944:23;22976:41;23011:5;22976:41;:::i;:::-;23036:5;-1:-1:-1;23093:2:125;23078:18;;23065:32;23106;23065;23106;:::i;23381:329::-;23448:6;23456;23509:2;23497:9;23488:7;23484:23;23480:32;23477:52;;;23525:1;23522;23515:12;23477:52;23564:9;23551:23;23583:41;23618:5;23583:41;:::i;:::-;23643:5;-1:-1:-1;23667:37:125;23700:2;23685:18;;23667:37;:::i;:::-;23657:47;;23381:329;;;;;:::o;23715:361::-;23780:6;23788;23841:2;23829:9;23820:7;23816:23;23812:32;23809:52;;;23857:1;23854;23847:12;23809:52;23902:23;;;-1:-1:-1;24001:2:125;23986:18;;23973:32;24014:30;23973:32;24014:30;:::i;24689:705::-;24777:6;24785;24793;24801;24854:2;24842:9;24833:7;24829:23;24825:32;24822:52;;;24870:1;24867;24860:12;24822:52;24909:9;24896:23;24928:41;24963:5;24928:41;:::i;:::-;24988:5;-1:-1:-1;25044:2:125;25029:18;;25016:32;-1:-1:-1;;;;;25060:30:125;;25057:50;;;25103:1;25100;25093:12;25057:50;25142:58;25192:7;25183:6;25172:9;25168:22;25142:58;:::i;25500:1058::-;25648:4;25690:3;25679:9;25675:19;25667:27;;25727:6;25721:13;25710:9;25703:32;25791:4;25783:6;25779:17;25773:24;25766:4;25755:9;25751:20;25744:54;25854:4;25846:6;25842:17;25836:24;25829:4;25818:9;25814:20;25807:54;25917:4;25909:6;25905:17;25899:24;25892:4;25881:9;25877:20;25870:54;25980:4;25972:6;25968:17;25962:24;25955:4;25944:9;25940:20;25933:54;26043:4;26035:6;26031:17;26025:24;26018:4;26007:9;26003:20;25996:54;26106:4;26098:6;26094:17;26088:24;26081:4;26070:9;26066:20;26059:54;26169:4;26161:6;26157:17;26151:24;26144:4;26133:9;26129:20;26122:54;26234:6;26226;26222:19;26216:26;26207:6;26196:9;26192:22;26185:58;26301:6;26293;26289:19;26283:26;26274:6;26263:9;26259:22;26252:58;26357:6;26349;26345:19;26339:26;26374:55;26421:6;26410:9;26406:22;26392:12;25475;25464:24;25452:37;;25399:96;26374:55;;26478:6;26470;26466:19;26460:26;26495:57;26544:6;26533:9;26529:22;26513:14;25475:12;25464:24;25452:37;;25399:96;26563:408;26631:6;26639;26692:2;26680:9;26671:7;26667:23;26663:32;26660:52;;;26708:1;26705;26698:12;26660:52;26747:9;26734:23;26766:41;26801:5;26766:41;:::i;:::-;26826:5;-1:-1:-1;26883:2:125;26868:18;;26855:32;26896:43;26855:32;26896:43;:::i;26976:480::-;27052:6;27060;27068;27121:2;27109:9;27100:7;27096:23;27092:32;27089:52;;;27137:1;27134;27127:12;27089:52;27176:9;27163:23;27195:41;27230:5;27195:41;:::i;:::-;27255:5;-1:-1:-1;27312:2:125;27297:18;;27284:32;27325:43;27284:32;27325:43;:::i;:::-;27387:7;-1:-1:-1;27413:37:125;27446:2;27431:18;;27413:37;:::i;:::-;27403:47;;26976:480;;;;;:::o;27461:600::-;27567:6;27575;27583;27636:2;27624:9;27615:7;27611:23;27607:32;27604:52;;;27652:1;27649;27642:12;27604:52;27691:9;27678:23;27710:41;27745:5;27710:41;:::i;:::-;27770:5;-1:-1:-1;27826:2:125;27811:18;;27798:32;-1:-1:-1;;;;;27842:30:125;;27839:50;;;27885:1;27882;27875:12;27839:50;27924:77;27993:7;27984:6;27973:9;27969:22;27924:77;:::i;28066:780::-;28226:4;28274:2;28263:9;28259:18;28304:2;28293:9;28286:21;28327:6;28362;28356:13;28393:6;28385;28378:22;28431:2;28420:9;28416:18;28409:25;;28493:2;28483:6;28480:1;28476:14;28465:9;28461:30;28457:39;28443:53;;28531:2;28523:6;28519:15;28552:1;28562:255;28576:6;28573:1;28570:13;28562:255;;;28669:2;28665:7;28653:9;28645:6;28641:22;28637:36;28632:3;28625:49;28697:40;28730:6;28721;28715:13;28697:40;:::i;:::-;28687:50;-1:-1:-1;28772:2:125;28795:12;;;;28760:15;;;;;28598:1;28591:9;28562:255;;;-1:-1:-1;28834:6:125;;28066:780;-1:-1:-1;;;;;;28066:780:125:o;28851:422::-;28937:6;28945;28998:2;28986:9;28977:7;28973:23;28969:32;28966:52;;;29014:1;29011;29004:12;28966:52;29053:9;29040:23;29072:41;29107:5;29072:41;:::i;:::-;29132:5;-1:-1:-1;29189:2:125;29174:18;;29161:32;29202:39;29161:32;29202:39;:::i;29278:230::-;29348:6;29401:2;29389:9;29380:7;29376:23;29372:32;29369:52;;;29417:1;29414;29407:12;29369:52;-1:-1:-1;29462:16:125;;29278:230;-1:-1:-1;29278:230:125:o;29513:127::-;29574:10;29569:3;29565:20;29562:1;29555:31;29605:4;29602:1;29595:15;29629:4;29626:1;29619:15;29645:125;29710:9;;;29731:10;;;29728:36;;;29744:18;;:::i;29775:136::-;29810:3;-1:-1:-1;;;29831:22:125;;29828:48;;29856:18;;:::i;:::-;-1:-1:-1;29896:1:125;29892:13;;29775:136::o;29916:128::-;29983:9;;;30004:11;;;30001:37;;;30018:18;;:::i;30049:380::-;30128:1;30124:12;;;;30171;;;30192:61;;30246:4;30238:6;30234:17;30224:27;;30192:61;30299:2;30291:6;30288:14;30268:18;30265:38;30262:161;;30345:10;30340:3;30336:20;30333:1;30326:31;30380:4;30377:1;30370:15;30408:4;30405:1;30398:15;30262:161;;30049:380;;;:::o;30648:312::-;-1:-1:-1;;;;;30856:32:125;;30838:51;;30826:2;30811:18;;30898:56;30950:2;30935:18;;30927:6;30898:56;:::i;30965:266::-;31053:6;31048:3;31041:19;31105:6;31098:5;31091:4;31086:3;31082:14;31069:43;-1:-1:-1;31157:1:125;31132:16;;;31150:4;31128:27;;;31121:38;;;;31213:2;31192:15;;;-1:-1:-1;;31188:29:125;31179:39;;;31175:50;;30965:266::o;31236:1317::-;31484:2;31496:21;;;31469:18;;31552:22;;;-1:-1:-1;31605:2:125;31654:1;31650:14;;;31635:30;;31631:39;;;31590:18;;31693:6;-1:-1:-1;;;31745:14:125;31741:27;;;31737:41;31787:680;31801:6;31798:1;31795:13;31787:680;;;31866:22;;;-1:-1:-1;;31862:36:125;31850:49;;31938:20;;31981:27;;;31971:55;;32022:1;32019;32012:12;31971:55;32052:31;;32168:4;32157:16;;;32110:19;-1:-1:-1;;;;;32189:30:125;;32186:50;;;32232:1;32229;32222:12;32186:50;32285:6;32269:14;32265:27;32256:7;32252:41;32249:61;;;32306:1;32303;32296:12;32249:61;32333:50;32376:6;32368;32359:7;32333:50;:::i;:::-;32323:60;;;;32418:4;32410:6;32406:17;32396:27;;32452:4;32447:3;32443:14;32436:21;;31823:1;31820;31816:9;31811:14;;31787:680;;;-1:-1:-1;;;;;;;;10681:31:125;;32541:4;32526:20;;10669:44;-1:-1:-1;32484:6:125;-1:-1:-1;32499:48:125;10615:104;33614:148;33702:4;33681:12;;;33695;;;33677:31;;33720:13;;33717:39;;;33736:18;;:::i;33767:331::-;33872:9;33883;33925:8;33913:10;33910:24;33907:44;;;33947:1;33944;33937:12;33907:44;33976:6;33966:8;33963:20;33960:40;;;33996:1;33993;33986:12;33960:40;-1:-1:-1;;34022:23:125;;;34067:25;;;;;-1:-1:-1;33767:331:125:o;34103:338::-;34223:19;;-1:-1:-1;;;;;;34260:29:125;;;34309:1;34301:10;;34298:137;;;-1:-1:-1;;;;;;34370:1:125;34366:11;;;;34363:1;34359:19;34355:46;;;34347:55;34343:82;;;;34103:338;-1:-1:-1;;34103:338:125:o;34446:261::-;34516:6;34569:2;34557:9;34548:7;34544:23;34540:32;34537:52;;;34585:1;34582;34575:12;34537:52;34617:9;34611:16;34636:41;34671:5;34636:41;:::i;34712:345::-;-1:-1:-1;;;;;34932:32:125;;;;34914:51;;34996:2;34981:18;;34974:34;;;;35039:2;35024:18;;35017:34;34902:2;34887:18;;34712:345::o;35801:569::-;35956:4;35998:3;35987:9;35983:19;35975:27;;36034:6;36028:13;36083:10;36072:9;36068:26;36057:9;36050:45;36104:79;36179:2;36168:9;36164:18;36157:4;36145:9;36141:2;36137:18;36133:29;36104:79;:::i;:::-;-1:-1:-1;;;;;36233:9:125;36229:2;36225:18;36221:51;36214:4;36203:9;36199:20;36192:81;-1:-1:-1;;;;;36324:9:125;36319:3;36315:19;36311:52;36304:4;36293:9;36289:20;36282:82;;35801:569;;;;:::o;36699:341::-;36884:2;36873:9;36866:21;36847:4;36904:61;36961:2;36950:9;36946:18;36938:6;36930;36904:61;:::i;:::-;36896:69;;37030:1;37026;37021:3;37017:11;37013:19;37005:6;37001:32;36996:2;36985:9;36981:18;36974:60;36699:341;;;;;;:::o;37045:169::-;37123:13;;37176:12;37165:24;;37155:35;;37145:63;;37204:1;37201;37194:12;37219:1541;37317:6;37377:3;37365:9;37356:7;37352:23;37348:33;37393:2;37390:22;;;37408:1;37405;37398:12;37390:22;-1:-1:-1;37450:17:125;;:::i;:::-;37512:16;;37537:22;;37625:2;37610:18;;;37604:25;37645:14;;;37638:31;37735:2;37720:18;;;37714:25;37755:14;;;37748:31;37845:2;37830:18;;;37824:25;37865:14;;;37858:31;37955:3;37940:19;;;37934:26;37976:15;;;37969:32;38067:3;38052:19;;;38046:26;38088:15;;;38081:32;38179:3;38164:19;;;38158:26;38200:15;;;38193:32;38291:3;38276:19;;;38270:26;38312:15;;;38305:32;38403:3;38388:19;;;38382:26;38424:15;;;38417:32;38517:3;38502:19;;;38496:26;38538:15;;;38531:33;38597:49;38641:3;38626:19;;38597:49;:::i;:::-;38591:3;38584:5;38580:15;38573:74;38680:49;38724:3;38713:9;38709:19;38680:49;:::i;:::-;38674:3;38663:15;;38656:74;38667:5;37219:1541;-1:-1:-1;;;37219:1541:125:o;38765:127::-;38826:10;38821:3;38817:20;38814:1;38807:31;38857:4;38854:1;38847:15;38881:4;38878:1;38871:15;38897:521;38974:4;38980:6;39040:11;39027:25;39134:2;39130:7;39119:8;39103:14;39099:29;39095:43;39075:18;39071:68;39061:96;;39153:1;39150;39143:12;39061:96;39180:33;;39232:20;;;-1:-1:-1;;;;;;39264:30:125;;39261:50;;;39307:1;39304;39297:12;39261:50;39340:4;39328:17;;-1:-1:-1;39371:14:125;39367:27;;;39357:38;;39354:58;;;39408:1;39405;39398:12;39423:324;39617:2;39602:18;;39629:47;39606:9;39658:6;39629:47;:::i;:::-;39685:56;39737:2;39726:9;39722:18;39714:6;39685:56;:::i;40042:375::-;40130:1;40148:5;40162:249;40183:1;40173:8;40170:15;40162:249;;;40233:4;40228:3;40224:14;40218:4;40215:24;40212:50;;;40242:18;;:::i;:::-;40292:1;40282:8;40278:16;40275:49;;;40306:16;;;;40275:49;40389:1;40385:16;;;;;40345:15;;40162:249;;;40042:375;;;;;;:::o;40422:902::-;40471:5;40501:8;40491:80;;-1:-1:-1;40542:1:125;40556:5;;40491:80;40590:4;40580:76;;-1:-1:-1;40627:1:125;40641:5;;40580:76;40672:4;40690:1;40685:59;;;;40758:1;40753:174;;;;40665:262;;40685:59;40715:1;40706:10;;40729:5;;;40753:174;40790:3;40780:8;40777:17;40774:43;;;40797:18;;:::i;:::-;-1:-1:-1;;40853:1:125;40839:16;;40912:5;;40665:262;;41011:2;41001:8;40998:16;40992:3;40986:4;40983:13;40979:36;40973:2;40963:8;40960:16;40955:2;40949:4;40946:12;40942:35;40939:77;40936:203;;;-1:-1:-1;41048:19:125;;;41124:5;;40936:203;41171:42;-1:-1:-1;;41196:8:125;41190:4;41171:42;:::i;:::-;41249:6;41245:1;41241:6;41237:19;41228:7;41225:32;41222:58;;;41260:18;;:::i;:::-;41298:20;;40422:902;-1:-1:-1;;;40422:902:125:o;41329:140::-;41387:5;41416:47;41457:4;41447:8;41443:19;41437:4;41416:47;:::i;41764:396::-;-1:-1:-1;;;;;41982:32:125;;;41964:51;;42051:32;;;;42046:2;42031:18;;42024:60;-1:-1:-1;;;;;;42120:33:125;;;42115:2;42100:18;;42093:61;41952:2;41937:18;;41764:396::o;42165:377::-;42240:6;42248;42301:2;42289:9;42280:7;42276:23;42272:32;42269:52;;;42317:1;42314;42307:12;42269:52;42349:9;42343:16;42368:28;42390:5;42368:28;:::i;:::-;42465:2;42450:18;;42444:25;42415:5;;-1:-1:-1;42478:32:125;42444:25;42478:32;:::i;43492:245::-;43559:6;43612:2;43600:9;43591:7;43587:23;43583:32;43580:52;;;43628:1;43625;43618:12;43580:52;43660:9;43654:16;43679:28;43701:5;43679:28;:::i;44362:127::-;44423:10;44418:3;44414:20;44411:1;44404:31;44454:4;44451:1;44444:15;44478:4;44475:1;44468:15;44494:120;44534:1;44560;44550:35;;44565:18;;:::i;:::-;-1:-1:-1;44599:9:125;;44494:120::o;44619:216::-;44683:9;;;44711:11;;;44658:3;44741:9;;44769:10;;44765:19;;44794:10;;44786:19;;44762:44;44759:70;;;44809:18;;:::i;:::-;44759:70;;44619:216;;;;:::o;44840:228::-;44937:2;44907:17;;;44926;;;;44903:41;45010:26;44959:36;;-1:-1:-1;;44997:41:125;;44956:83;44953:109;;;45042:18;;:::i;45580:188::-;45618:3;45662:10;45655:5;45651:22;45697:10;45688:7;45685:23;45682:49;;45711:18;;:::i;:::-;45760:1;45747:15;;45580:188;-1:-1:-1;;45580:188:125:o;45773:170::-;45804:1;45838:10;45835:1;45831:18;45868:3;45858:37;;45875:18;;:::i;:::-;45933:3;45920:10;45917:1;45913:18;45909:28;45904:33;;;45773:170;;;;:::o;45948:244::-;46059:10;46032:18;;;46052;;;46028:43;46091:28;;;;46138:24;;;46128:58;;46166:18;;:::i;46910:136::-;46949:3;46977:5;46967:39;;46986:18;;:::i;:::-;-1:-1:-1;;;47022:18:125;;46910:136::o;47177:518::-;47279:2;47274:3;47271:11;47268:421;;;47315:5;47312:1;47305:16;47359:4;47356:1;47346:18;47429:2;47417:10;47413:19;47410:1;47406:27;47400:4;47396:38;47465:4;47453:10;47450:20;47447:47;;;-1:-1:-1;47488:4:125;47447:47;47543:2;47538:3;47534:12;47531:1;47527:20;47521:4;47517:31;47507:41;;47598:81;47616:2;47609:5;47606:13;47598:81;;;47675:1;47661:16;;47642:1;47631:13;47598:81;;47871:1299;47997:3;47991:10;-1:-1:-1;;;;;48016:6:125;48013:30;48010:56;;;48046:18;;:::i;:::-;48075:97;48165:6;48125:38;48157:4;48151:11;48125:38;:::i;:::-;48119:4;48075:97;:::i;:::-;48221:4;48252:2;48241:14;;48269:1;48264:649;;;;48957:1;48974:6;48971:89;;;-1:-1:-1;49026:19:125;;;49020:26;48971:89;-1:-1:-1;;47828:1:125;47824:11;;;47820:24;47816:29;47806:40;47852:1;47848:11;;;47803:57;49073:81;;48234:930;;48264:649;47124:1;47117:14;;;47161:4;47148:18;;-1:-1:-1;;48300:20:125;;;48418:222;48432:7;48429:1;48426:14;48418:222;;;48514:19;;;48508:26;48493:42;;48621:4;48606:20;;;;48574:1;48562:14;;;;48448:12;48418:222;;;48422:3;48668:6;48659:7;48656:19;48653:201;;;48729:19;;;48723:26;-1:-1:-1;;48812:1:125;48808:14;;;48824:3;48804:24;48800:37;48796:42;48781:58;48766:74;;48653:201;-1:-1:-1;;;;48900:1:125;48884:14;;;48880:22;48867:36;;-1:-1:-1;47871:1299:125:o;49175:374::-;49296:19;;-1:-1:-1;;;;;;49333:40:125;;;49393:2;49385:11;;49382:161;;;-1:-1:-1;;;;;;49455:2:125;49451:12;;;;49448:1;49444:20;49440:58;;;49432:67;49428:105;;;;49175:374;-1:-1:-1;;49175:374:125:o;49554:157::-;49584:1;49618:4;49615:1;49611:12;49642:3;49632:37;;49649:18;;:::i;:::-;49701:3;49694:4;49691:1;49687:12;49683:22;49678:27;;;49554:157;;;;:::o"},"methodIdentifiers":{"$CashFlowLenderStorageLocation()":"0cabf231","$JAN_1ST_2025()":"025ca58e","$SECONDS_PER_DAY()":"53c42f88","$__CashFlowLender_init(string,string,address)":"97f8423e","$__CashFlowLender_init_unchained(address)":"80da0a1c","$__Context_init()":"adfdfe2e","$__Context_init_unchained()":"f15476a2","$__ERC20_init(string,string)":"b7e44f4e","$__ERC20_init_unchained(string,string)":"fa3045d0","$__ERC4626_init(address)":"75b58c95","$__ERC4626_init_unchained(address)":"48798720","$_approve(address,address,uint256)":"861e3d3d","$_approve(address,address,uint256,bool)":"32bc74aa","$_authorizeUpgrade(address)":"fbf9c9ce","$_balance()":"aeabd329","$_burn(address,uint256)":"e047838d","$_changeDebt(address,uint32,uint32,int256)":"d2e26fe4","$_checkCanForward(address,address,bytes4)":"e483b6e1","$_checkInitializing()":"fa171c92","$_checkNotDelegated()":"0aecc093","$_checkProxy()":"1a7e8014","$_computeCalendarMonth(uint256)":"4092b0c1","$_contextSuffixLength()":"67354a84","$_convertToAssets(uint256,uint8)":"ca10eca0","$_convertToShares(uint256,uint8)":"8b4e914a","$_decimalsOffset()":"ef4f78d1","$_deinvest(uint256)":"811eecf5","$_deposit(address,address,uint256,uint256)":"9c0b90c7","$_disableInitializers()":"f5f1bec0","$_ensureLiquidBalance(uint256)":"ae6aaa62","$_getInitializedVersion()":"4fd5303d","$_getMonth(uint256,bool)":"c3ba11f5","$_getTargetConfig(address)":"8f792465","$_increaseDebtAfterNewPolicy(address,uint256,uint256)":"9c5baeaa","$_initializableStorageSlot()":"1a034afb","$_isInitializing()":"c9eb0571","$_makeSlotIndex(uint32,uint256)":"1c93944f","$_makeTargetSlot(address,uint32,uint32)":"3e15a357","$_mint(address,uint256)":"cc461d62","$_msgData()":"32cadf3c","$_msgSender()":"2904df29","$_policyPool()":"33f965ce","$_setYieldVault(address)":"8d94d575","$_spendAllowance(address,address,uint256)":"b2331d7d","$_transfer(address,address,uint256)":"efb43b07","$_update(address,address,uint256)":"6855a178","$_withdraw(address,address,address,uint256,uint256)":"83b95579","$forwardNewPolicyWrapper(address)":"9db0391f","$forwardResolvePolicyWrapper(address)":"2f9cf0aa","$initializer()":"401022ef","$notDelegated()":"818f5673","$onlyInitializing()":"8963227f","$onlyPolicyPool()":"f14b624b","$onlyProxy()":"657ab2b3","$reinitializer(uint64)":"833d816d","OWN_POLICY_SELECTOR()":"a9ed1487","SLOTSIZE_CALENDAR_MONTH()":"3edeb257","UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","__hh_exposed_bytecode_marker()":"342db739","addTarget(address,uint32,uint256,uint256)":"bfdb20da","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","asset()":"38d52e0f","balanceOf(address)":"70a08231","cashOutPayouts(address,uint32,uint32,uint256,address)":"225c531e","cashWithdrawable()":"cc671a18","convertToAssets(uint256)":"07a2d13a","convertToShares(uint256)":"c6e6f592","currentDebt()":"759076e5","decimals()":"313ce567","deposit(uint256,address)":"6e553f65","depositIntoYieldVault(uint256)":"ac860f74","forwardNewPoliciesV3(address,bytes[],address)":"07c2e878","forwardNewPolicy(address,bytes)":"33bded3c","forwardNewPolicyBatch(address,bytes[])":"e77659fd","forwardNewPolicyV3(address,bytes,address)":"d52f99ce","forwardResolvePolicy(address,bytes)":"86b44083","forwardResolvePolicyBatch(address,bytes[])":"ee07abbb","getDebtForPeriod(address,uint32,uint32)":"a3ac9390","getTargetStatus(address)":"091ea8a6","initialize(string,string,address)":"077f224a","isTrustedForwarder(address)":"572b6c05","makeFakeSelector(address,bytes4)":"c0c51217","maxDeposit(address)":"402d267d","maxMint(address)":"c63d75b6","maxRedeem(address)":"d905777e","maxWithdraw(address)":"ce96cb77","mint(uint256,address)":"94bf804d","name()":"06fdde03","onERC721Received(address,address,uint256,bytes)":"150b7a02","onPayoutReceived(address,address,uint256,uint256)":"d6281d3e","onPolicyCancelled(address,address,uint256,uint256,uint256,uint256)":"62eb345e","onPolicyExpired(address,address,uint256)":"e8e617b7","onPolicyReplaced(address,address,uint256,uint256)":"5ee0c7dd","policyPool()":"4d15eb03","previewDeposit(uint256)":"ef8b30f7","previewMint(uint256)":"b3d7f6b9","previewRedeem(uint256)":"4cdad506","previewWithdraw(uint256)":"0a28a477","proxiableUUID()":"52d1902d","redeem(uint256,address,address)":"ba087652","repayDebt(address,uint32,uint32,uint256)":"82dbbd71","setTargetLimits(address,uint256,uint256)":"bdb5371d","setTargetSlotSize(address,uint32)":"08742d90","setTargetStatus(address,uint8)":"f7a39333","setYieldVault(address,bool)":"194448e5","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","totalAssets()":"01e1d114","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","trustedForwarder()":"7da0a877","upgradeToAndCall(address,bytes)":"4f1ef286","withdraw(uint256,address,address)":"b460af94","withdrawFromYieldVault(uint256)":"d336078c","yieldVault()":"a7f8a5e2"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"trustedForwarder_\",\"type\":\"address\"},{\"internalType\":\"contract IPolicyPool\",\"name\":\"policyPool_\",\"type\":\"address\"}],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balanceReduction\",\"type\":\"uint256\"}],\"name\":\"BalanceDecreasedOnResolve\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"CannotDeactivateTarget\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"CannotDeinvestYieldVault\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"debtAfter\",\"type\":\"int256\"}],\"name\":\"CashOutExceedsLimit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"int256\",\"name\":\"currentDebt\",\"type\":\"int256\"},{\"internalType\":\"uint96\",\"name\":\"debtLimit\",\"type\":\"uint96\"}],\"name\":\"DebtLimitExceeded\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"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\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxMint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxRedeem\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxWithdraw\",\"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\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidPolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidSlotSize\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotEnoughCash\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"debtAfter\",\"type\":\"int256\"}],\"name\":\"RepaymentExceedsLimit\",\"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\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"TargetAlreadyExists\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"status\",\"type\":\"uint8\"}],\"name\":\"TargetNotActive\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"TargetNotFound\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"requiredSelector\",\"type\":\"bytes4\"}],\"name\":\"UnauthorizedForward\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"YieldVaultIsRequired\",\"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\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"debtAfterChange\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"}],\"name\":\"CashOutPayout\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"value\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"debtAfterChange\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"totalDebtAfterChange\",\"type\":\"int256\"}],\"name\":\"DebtChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"debtAfterChange\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"payer\",\"type\":\"address\"}],\"name\":\"RepayDebt\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"status\",\"type\":\"uint8\"},{\"internalType\":\"uint96\",\"name\":\"debtLimit\",\"type\":\"uint96\"},{\"internalType\":\"uint96\",\"name\":\"minLiquidity\",\"type\":\"uint96\"}],\"indexed\":false,\"internalType\":\"struct CashFlowLender.TargetConfig\",\"name\":\"config\",\"type\":\"tuple\"}],\"name\":\"TargetAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldDebtLimit\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newDebtLimit\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldMinLiquidity\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newMinLiquidity\",\"type\":\"uint256\"}],\"name\":\"TargetLimitsChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"oldSlotSize\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"newSlotSize\",\"type\":\"uint32\"}],\"name\":\"TargetSlotSizeChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"oldStatus\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"newStatus\",\"type\":\"uint8\"}],\"name\":\"TargetStatusChanged\",\"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\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"contract IERC4626\",\"name\":\"newVault\",\"type\":\"address\"}],\"name\":\"YieldVaultChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"currentDebt_\",\"type\":\"int256\"}],\"name\":\"return$_changeDebt\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"deinvested\",\"type\":\"uint256\"}],\"name\":\"return$_deinvest\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"balanceBefore\",\"type\":\"uint256\"}],\"name\":\"return$_ensureLiquidBalance\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"$CashFlowLenderStorageLocation\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$JAN_1ST_2025\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$SECONDS_PER_DAY\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"contract IERC4626\",\"name\":\"yieldVault_\",\"type\":\"address\"}],\"name\":\"$__CashFlowLender_init\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"yieldVault_\",\"type\":\"address\"}],\"name\":\"$__CashFlowLender_init_unchained\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$__Context_init\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$__Context_init_unchained\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"}],\"name\":\"$__ERC20_init\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"}],\"name\":\"$__ERC20_init_unchained\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"asset_\",\"type\":\"address\"}],\"name\":\"$__ERC4626_init\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"asset_\",\"type\":\"address\"}],\"name\":\"$__ERC4626_init_unchained\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"emitEvent\",\"type\":\"bool\"}],\"name\":\"$_approve\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"$_approve\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImpl\",\"type\":\"address\"}],\"name\":\"$_authorizeUpgrade\",\"outputs\":[],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_balance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"ret0\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"$_burn\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"internalType\":\"int256\",\"name\":\"amount\",\"type\":\"int256\"}],\"name\":\"$_changeDebt\",\"outputs\":[{\"internalType\":\"int256\",\"name\":\"currentDebt_\",\"type\":\"int256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"$_checkCanForward\",\"outputs\":[],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_checkInitializing\",\"outputs\":[],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_checkNotDelegated\",\"outputs\":[],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_checkProxy\",\"outputs\":[],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"timestamp\",\"type\":\"uint256\"}],\"name\":\"$_computeCalendarMonth\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_contextSuffixLength\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"ret0\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"enum Math.Rounding\",\"name\":\"rounding\",\"type\":\"uint8\"}],\"name\":\"$_convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"ret0\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"enum Math.Rounding\",\"name\":\"rounding\",\"type\":\"uint8\"}],\"name\":\"$_convertToShares\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"ret0\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_decimalsOffset\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"ret0\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"$_deinvest\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"deinvested\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"$_deposit\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_disableInitializers\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"targetConfig\",\"type\":\"uint256\"}],\"name\":\"$_ensureLiquidBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balanceBefore\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_getInitializedVersion\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"ret0\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"dayInYear\",\"type\":\"uint256\"},{\"internalType\":\"bool\",\"name\":\"isLeap\",\"type\":\"bool\"}],\"name\":\"$_getMonth\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"ret0\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"$_getTargetConfig\",\"outputs\":[{\"components\":[{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"status\",\"type\":\"uint8\"},{\"internalType\":\"uint96\",\"name\":\"debtLimit\",\"type\":\"uint96\"},{\"internalType\":\"uint96\",\"name\":\"minLiquidity\",\"type\":\"uint96\"}],\"internalType\":\"struct CashFlowLender.TargetConfig\",\"name\":\"targetConfig\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"targetConfig\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"balanceBefore\",\"type\":\"uint256\"}],\"name\":\"$_increaseDebtAfterNewPolicy\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_initializableStorageSlot\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"ret0\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_isInitializing\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"ret0\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"timestamp\",\"type\":\"uint256\"}],\"name\":\"$_makeSlotIndex\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"}],\"name\":\"$_makeTargetSlot\",\"outputs\":[{\"internalType\":\"CashFlowLender.TargetSlot\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"$_mint\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_msgData\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"ret0\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_msgSender\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"ret0\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$_policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"yieldVault_\",\"type\":\"address\"}],\"name\":\"$_setYieldVault\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"$_spendAllowance\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"$_transfer\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"$_update\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"$_withdraw\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"$forwardNewPolicyWrapper\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"$forwardResolvePolicyWrapper\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$initializer\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$notDelegated\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$onlyInitializing\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$onlyPolicyPool\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"$onlyProxy\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"$reinitializer\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"OWN_POLICY_SELECTOR\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"SLOTSIZE_CALENDAR_MONTH\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"__hh_exposed_bytecode_marker\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"debtLimit\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minLiquidity\",\"type\":\"uint256\"}],\"name\":\"addTarget\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"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\":[],\"name\":\"asset\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"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\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"}],\"name\":\"cashOutPayouts\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cashWithdrawable\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"convertToShares\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currentDebt\",\"outputs\":[{\"internalType\":\"int256\",\"name\":\"\",\"type\":\"int256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"depositIntoYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes[]\",\"name\":\"inputData\",\"type\":\"bytes[]\"},{\"internalType\":\"address\",\"name\":\"onBehalfOf\",\"type\":\"address\"}],\"name\":\"forwardNewPoliciesV3\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"forwardNewPolicy\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"result\",\"type\":\"bytes\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"forwardNewPolicyBatch\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"result\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"},{\"internalType\":\"address\",\"name\":\"onBehalfOf\",\"type\":\"address\"}],\"name\":\"forwardNewPolicyV3\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"forwardResolvePolicy\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"result\",\"type\":\"bytes\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"forwardResolvePolicyBatch\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"result\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"}],\"name\":\"getDebtForPeriod\",\"outputs\":[{\"internalType\":\"int256\",\"name\":\"\",\"type\":\"int256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"getTargetStatus\",\"outputs\":[{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"contract IERC4626\",\"name\":\"yieldVault_\",\"type\":\"address\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"forwarder\",\"type\":\"address\"}],\"name\":\"isTrustedForwarder\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"makeFakeSelector\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"onPayoutReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"name\":\"onPolicyCancelled\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"onPolicyExpired\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"onPolicyReplaced\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"redeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"repayDebt\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"debtLimit\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minLiquidity\",\"type\":\"uint256\"}],\"name\":\"setTargetLimits\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"newSlotSize\",\"type\":\"uint32\"}],\"name\":\"setTargetSlotSize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"newStatus\",\"type\":\"uint8\"}],\"name\":\"setTargetStatus\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"yieldVault_\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"force\",\"type\":\"bool\"}],\"name\":\"setYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"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\"},{\"inputs\":[],\"name\":\"trustedForwarder\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFromYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"yieldVault\",\"outputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"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.\"}}],\"ERC4626ExceededMaxDeposit(address,uint256,uint256)\":[{\"details\":\"Attempted to deposit more assets than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxMint(address,uint256,uint256)\":[{\"details\":\"Attempted to mint more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxRedeem(address,uint256,uint256)\":[{\"details\":\"Attempted to redeem more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxWithdraw(address,uint256,uint256)\":[{\"details\":\"Attempted to withdraw more assets than the max amount for `receiver`.\"}],\"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.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"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.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"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.\"},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"addTarget(address,uint32,uint256,uint256)\":{\"details\":\"Adds a new target that can be used later to forward policies and track the debt.\",\"params\":{\"debtLimit\":\"Limit of the debt in a given period for the target.\",\"minLiquidity\":\"Minimum liquidity tried to achieve before forwardNewPolicy. If cash (see `_balance()`) is                     lower than this amount, it will try to deinvest the funds to leave _balance() = minLiquidity Emits a {TargetAdded} event\",\"slotSize\":\"Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\",\"target\":\"Address of the target contract. It should be an Ensuro's RiskModule\"}},\"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\":\"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.\"},\"asset()\":{\"details\":\"Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing. - MUST be an ERC-20 token contract. - MUST NOT revert.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"cashOutPayouts(address,uint32,uint32,uint256,address)\":{\"details\":\"Extracts money from the CFL that's owed to the customer, adjusting the debt (from negative to less negative)      in a given slot      Requires the debt of the slot <= -amount      Requires the CFL has enough funds (liquid + invested in the $._yieldVault)      emits {CashOutPayout}\",\"params\":{\"amount\":\"Amount to cash out\",\"destination\":\"Address that will receive the funds\",\"slotIndex\":\"Current slot time selected\",\"slotSize\":\"Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"convertToAssets(uint256)\":{\"details\":\"Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"convertToShares(uint256)\":{\"details\":\"Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"decimals()\":{\"details\":\"Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This \\\"original\\\" value is cached during construction of the vault contract. If this read operation fails (e.g., the asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals. See {IERC20Metadata-decimals}.\"},\"deposit(uint256,address)\":{\"details\":\"Deposit `assets` underlying tokens and send the corresponding number of vault shares (`shares`) to `receiver`. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   deposit execution, and are accounted for during deposit. - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"depositIntoYieldVault(uint256)\":{\"details\":\"Moves money that's liquid in the contract to the yield vault, to generate yields      Requires _balance() >= amount\",\"params\":{\"amount\":\"Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\"}},\"forwardNewPolicy(address,bytes)\":{\"details\":\"Forwards a call to the target contract, previously checking the target is active and tracking the increased      debt (in the current time slot).      When the `_balance()` is lower than `targetConfig.minLiquidity` it deinvests, but it doesn't fail if can't      deinvest all the required funds. If the required premiums are higher than the available balance, then it      will fail anyway.      If after the operation the debt is higher than targetConfig.debtLimit, it reverts.      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})      Requires the return value of the called function returns the policyId and checks if the resulting policy      (a PolicyPool NFT), is owned by the CFL.      If it's not, it requires the _msgSender() has permission to call address(this) on      `makeFakeSelector(target, OWN_POLICY_SELECTOR)`\",\"params\":{\"data\":\"The call to execute on the target contract\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"forwardNewPolicyBatch(address,bytes[])\":{\"details\":\"Forwards a call to the target contract, previously checking the target is active and tracking the increased      debt (in the current time slot). Batch version (multiple calls at once).      When the `_balance()` is lower than `targetConfig.minLiquidity` it deinvests, but it doesn't fail if can't      deinvest all the required funds. If the required premiums are higher than the available balance, then it      will fail anyway.      If after the operation the debt is higher than targetConfig.debtLimit, it reverts.      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})      Requires the return value of the called function returns the policyId and checks if the resulting policy      (a PolicyPool NFT), is owned by the CFL.      If it's not, it requires the _msgSender() has permission to call address(this) on      `makeFakeSelector(target, OWN_POLICY_SELECTOR)`\",\"params\":{\"data\":\"[] The calls to execute on the target contract\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"forwardResolvePolicy(address,bytes)\":{\"details\":\"Forwards a call to the target contract, previously checking the target is active (or deprecated). It doesn't      track the debt change explicitly, but this should change when policies are resolved and onPayoutReceived      is called.      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\",\"params\":{\"data\":\"The calls to execute on the target contract\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"forwardResolvePolicyBatch(address,bytes[])\":{\"details\":\"Forwards a call to the target contract, previously checking the target is active (or deprecated). It doesn't      track the debt change explicitly, but this should change when policies are resolved and onPayoutReceived      is called. Batch version (multiple calls at once).      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\",\"params\":{\"data\":\"[] The calls to execute on the target contract\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"initialize(string,string,address)\":{\"details\":\"Initializes the CashFlowLender\",\"params\":{\"name_\":\"Name of the accounting token (ERC20) for the LPs\",\"symbol_\":\"Symbol of the accounting token (ERC20) for the LPs\",\"yieldVault_\":\"An ERC-4626 vault where funds can be deployed to generate extra yields for the CFL LPs.\"}},\"isTrustedForwarder(address)\":{\"details\":\"Indicates whether any particular address is the trusted forwarder.\"},\"makeFakeSelector(address,bytes4)\":{\"details\":\"Computes a fake selector used to enable or disable in the AccessManager linked to the contract to enable      a given call (selector) to a given target\",\"params\":{\"selector\":\"The 4-bytes method selector of the method to be called in the target\",\"target\":\"Address of the target contract.\"}},\"maxDeposit(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver, through a deposit call. - MUST return a limited value if receiver is subject to some deposit limit. - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited. - MUST NOT revert.\"},\"maxMint(address)\":{\"details\":\"Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call. - MUST return a limited value if receiver is subject to some mint limit. - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted. - MUST NOT revert.\"},\"maxRedeem(address)\":{\"details\":\"Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault, through a redeem call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock. - MUST NOT revert.\"},\"maxWithdraw(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the Vault, through a withdraw call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST NOT revert.\"},\"mint(uint256,address)\":{\"details\":\"Mints exactly `shares` vault shares to `receiver` in exchange for `assets` underlying tokens. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint   execution, and are accounted for during mint. - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\"},\"onPayoutReceived(address,address,uint256,uint256)\":{\"details\":\"Whenever an Policy is resolved with payout > 0, this function is called It must return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the payout will be successful. If any other value is returned or it reverts, the policy resolution / payout will be reverted. The selector can be obtained in Solidity with `IPolicyHolder.onPayoutReceived.selector`.\"},\"onPolicyCancelled(address,address,uint256,uint256,uint256,uint256)\":{\"details\":\"Whenever a policy is cancelled, this function is called It must return its Solidity selector to confirm the operation. If interface is not implemented by the recipient, it will be ignored and the cancellation will be successful. If any other value is returned or it reverts, the policy cancellation will be reverted. The selector can be obtained in Solidity with `IPolicyHolder.onPolicyCancelled.selector`.\"},\"onPolicyExpired(address,address,uint256)\":{\"details\":\"Whenever an Policy is expired or resolved with payout = 0, this function is called It should return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the payout will be successful. No mather what's the return value or even if this function reverts, this function will not revert the policy expiration. The selector can be obtained in Solidity with `IPolicyHolder.onPolicyExpired.selector`.\"},\"onPolicyReplaced(address,address,uint256,uint256)\":{\"details\":\"Whenever a policy is replaced, this function is called It must return its Solidity selector to confirm the operation. If interface is not implemented by the recipient, it will be ignored and the replacement will be successful. If any other value is returned or it reverts, the policy replacement will be reverted. The selector can be obtained in Solidity with `IPolicyHolder.onPolicyReplaced.selector`.\"},\"previewDeposit(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called   in the same transaction. - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the   deposit would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"previewMint(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the   same transaction. - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint   would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by minting.\"},\"previewRedeem(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the   same transaction. - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the   redemption would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by redeeming.\"},\"previewWithdraw(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if   called   in the same transaction. - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though   the withdrawal would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"redeem(uint256,address,address)\":{\"details\":\"Burns exactly shares from owner and sends assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   redeem execution, and are accounted for during redeem. - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"},\"repayDebt(address,uint32,uint32,uint256)\":{\"details\":\"Repays debt to the CFL that's owed by the customer, adjusting the debt (from positive to less positive)      in a given slot      Requires the debt of the slot >= amount      emits {RepayDebt}\",\"params\":{\"amount\":\"Amount to pay\",\"slotIndex\":\"Current slot time selected\",\"slotSize\":\"Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"setTargetLimits(address,uint256,uint256)\":{\"details\":\"Changes debtLimit and minLiquidity for a given target.\",\"params\":{\"debtLimit\":\"New limit of the debt in a given period for the target.\",\"minLiquidity\":\"Minimum liquidity tried to achieve before forwardNewPolicy. If cash (see `_balance()`) is                     lower than this amount, it will try to deinvest the funds to leave _balance() = minLiquidity Emits a {TargetLimitsChanged} event\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"setTargetSlotSize(address,uint32)\":{\"details\":\"Changes the slotSize of a given target.\",\"params\":{\"newSlotSize\":\"New duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots. Emits a {TargetStatusChanged} event\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"setTargetStatus(address,uint8)\":{\"details\":\"Changes status of a given target. See {TargetStatus}.\",\"params\":{\"newStatus\":\"The new status of the contract Emits a {TargetStatusChanged} event\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"setYieldVault(address,bool)\":{\"details\":\"Changes the Yield Vault, deinvesting all the funds before doing it.\",\"params\":{\"force\":\"If true, it continues the operation even if some of the funds aren't withdrawable. Emits a {YieldVaultChanged} event\",\"yieldVault_\":\"An ERC-4626 vault where funds can be deployed to generate extra yields for the CFL LPs.\"}},\"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.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalAssets()\":{\"details\":\"Returns the total amount of the underlying asset that is \\u201cmanaged\\u201d by Vault. - SHOULD include any compounding that occurs from yield. - MUST be inclusive of any fees that are charged against assets in the Vault. - MUST NOT revert.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"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.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"},\"withdraw(uint256,address,address)\":{\"details\":\"Burns shares from owner and sends exactly assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   withdraw execution, and are accounted for during withdraw. - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"},\"withdrawFromYieldVault(uint256)\":{\"details\":\"Deinvest from the vault a given amount.      Requires $._yieldVault.maxWithdraw() <= amount\",\"params\":{\"amount\":\"Amount to withdraw from the `$._yieldVault`. If equal type(uint256).max, deinvests maxWithdraw()\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts-exposed/CashFlowLender.sol\":\"$CashFlowLender\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/access-managed-proxy/contracts/AMPUtils.sol\":{\"keccak256\":\"0x3f25097d759aa89ce9a7a94f98b854a3dc23c51f7f895b95a8d489e74d5f1d98\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://2912cf8c79b973d07fbb741e7d1048026f0a71489df2adf97552b83b23b427d7\",\"dweb:/ipfs/QmRTfFaqy72p4RfY99hKM1K9wH5kxaTnikH5VJjpL7K7sD\"]},\"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol\":{\"keccak256\":\"0x0d3a66feed9000ccbc8a8e6c597b7fe4659f56b5a4dfa2ab1eea314171ae9745\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fa3f292954915546ce72159da1dbcd44b8cdc19ea0b5b3fc6dbb47070451583c\",\"dweb:/ipfs/QmeL7krtsKLpuS9hy5w6eRoRsXU874XtgNWutUavxRKzmA\"]},\"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol\":{\"keccak256\":\"0xe84ff4706a5ae4c03f011343dfb73ce8b731e1eb2287d25018a449b3e802092e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://53202b0391daa08f69fda5c471f957f9811dba1d2033e5e3e3a7a78c1d05eb39\",\"dweb:/ipfs/QmabycaktcAsVJFEdf7F4Lk1WsAz9qesqQARLwjYvM722m\"]},\"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol\":{\"keccak256\":\"0xdd762bad2f6ad362f5a38fb333d2a953f6c9d0beea122dbaef0e333a7b83a054\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://a2bb86de08187cee5956393ca2cf096a09eb6ac694471e436ca12e377d97cb40\",\"dweb:/ipfs/Qmf6cNjug4swjsvTJYjbzhMMfAfSFdUuyJjkEf3b1cu2hn\"]},\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@ensuro/core/contracts/interfaces/IPolicyHolder.sol\":{\"keccak256\":\"0xedfdb90379573eaab3213424a517042dd7f015cdb4ee734859609a019275797e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://321e424f1c9afd92e0cb38e4131ce30aaf7df551388b6d1d1abe60ea9dcd0e8a\",\"dweb:/ipfs/QmfFraGLbyy67ugA373JcZfPf7J34uzMHXbyBjoH9enWsK\"]},\"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol\":{\"keccak256\":\"0x98d2543d4c386c70cd2d6ac763e6425631f76a944113cf594f90c59357b41cb1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4fa767e1bf957ac88a7477b1710e9f788b815d0ad412e89d3e791d8629549edc\",\"dweb:/ipfs/QmdnDDZy64QjzXXLrjC5zjDTMCHrJo3c4RGmnEpZLKWhhw\"]},\"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x4918e374e9ce84e9b196486bafbd46851d5e72ab315e31f0b1d7c443dcfea5bf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2ced247afc54a93a13922ebbd63add61130abe483ab5b5b78e7e991d564d150e\",\"dweb:/ipfs/QmTfxjcTgfekiguegjvYMyfqhyRNffui17f8xi86BCZNVt\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\":{\"keccak256\":\"0xd518def45c722a6e803e1e26e625db25e01497f672ca566cca585d234ec903b0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6e7de3fccd96783244790cde282435ce0fd3a44ab4ccb10f17005c743202882f\",\"dweb:/ipfs/QmYSepstTqs5UPJvjeJXkWU5R659yReqrSgSGGh65hkbdK\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol\":{\"keccak256\":\"0x9a451617fef51e7faef5f46de537f9aaca837d470750cfbd7b8a733341dc3951\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1cdebfebb9bbfe1558d15eab9cf8bd1bd5ad8bb934f6a3d9ea8ef022603c1d59\",\"dweb:/ipfs/QmT83ko5MwSdEJsHz8cQbQGBDyM1q9PvzGm9RFmXfWXMgA\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x71e3e350e83af0018a1683cc2ce4c13893cc01f78e5c9c305f6828608ffcfa18\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a7b521c9999007715c9bdedffaad2ef7d2ccfa07bca2a39ba9e0c2e8a944a63\",\"dweb:/ipfs/QmamPG6Y1p7iZh4cF8Hfp3oufowSRyB3S3DisTKkmVWSai\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/IERC20Metadata.sol\":{\"keccak256\":\"0xd735962e3d6660884153ba8a972b5f100dde4c482f2ff1c525ba7fdefb154cbd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a264d17b093f585844b0d977e9f60555b8c8d6513b304fde863cdf652a0d336\",\"dweb:/ipfs/QmWXfaJisjVnrjTUjZGryZpMob9wKivvtbodLS3PTc1ttq\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/interfaces/IERC721.sol\":{\"keccak256\":\"0xca34c490d41c332106d30b657f00dc028532cb6b9fef2b1729670ce476b36bce\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ef5e7685d50ed8aae2104a7eb2c31ae5a3b508f24fadfa7611f92f819201aee9\",\"dweb:/ipfs/QmYbTD32FPrEfP1hkniQmRxVUWp8GTSqFV1Bhwx1HVirse\"]},\"@openzeppelin/contracts/interfaces/IERC721Receiver.sol\":{\"keccak256\":\"0xfc922a810763205fd582dd5a6548ac5f41f8d0c8e8c1fbf48b01dc08d99f74af\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://03b9b7719252b914d6011d919ddb176e99021cab45bee58f9a175f53bd2e952b\",\"dweb:/ipfs/QmTQLufNv8sFmnjbRqXueCQrLSrwzDvEHNXmwTyu3EVaWS\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa3066ff86b94128a9d3956a63a0511fa1aae41bd455772ab587b32ff322acb2e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf7b192fd82acf6187970c80548f624b1b9c80425b62fa49e7fdb538a52de049\",\"dweb:/ipfs/QmWXG1YCde1tqDYTbNwjkZDWVgPEjzaQGSDqWkyKLzaNua\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0x80935e4fae2c414f4e7789e13a820d06901182a5733ab006f8d68b5b09db993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://752d991d6ca1087587b48103bc623f74888054f58581ff29166d90889c4765c5\",\"dweb:/ipfs/QmRBsa6K2ChKxVWYY54YiyYhDBPbmY5HyKCtij5LoWh56o\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xf78f05f3b8c9f75570e85300d7b4600d7f6f6a198449273f31d44c1641adb46f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e28b872613b45e0e801d4995aa4380be2531147bfe2d85c1d6275f1de514fba3\",\"dweb:/ipfs/QmeeFcfShHYaS3BdgVj78nxR28ZaVUwbvr66ud8bT6kzw9\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Memory.sol\":{\"keccak256\":\"0x35feec480590c0ed9c1623df077ba9af406ad57cd9d149ff278c7316d6fe8fe0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://839967d079db4cd624c3f735a6e911953c0e2347418c016f6a0cc18ed1aa9603\",\"dweb:/ipfs/QmaWxNL8Ymkwerfvq1LNzpbq2PMzTGsnXzqsYExNyvKWka\"]},\"@openzeppelin/contracts/utils/Packing.sol\":{\"keccak256\":\"0xea9f5d3cdd11b7af7d8662a5c0e952f3666145cb4c9fe1452bd15c30abc462dd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8fcae95be7077d103530c4e6a5f1248aa64102dad62d642e2530316ab002e02c\",\"dweb:/ipfs/QmWCr2qicfaqsTbpgq7CJhedUHcPQv34k8HNs4f5kGjVnw\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0x2d9dc2fe26180f74c11c13663647d38e259e45f95eb88f57b61d2160b0109d3e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81233d1f98060113d9922180bb0f14f8335856fe9f339134b09335e9f678c377\",\"dweb:/ipfs/QmWh6R35SarhAn4z2wH8SU456jJSYL2FgucfTFgbHJJN4E\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts-exposed/CashFlowLender.sol\":{\"keccak256\":\"0xafe027182b2c7813d4f044f2b8be6f96e8d5aec1c933b601843b852a7e55339c\",\"license\":\"UNLICENSED\",\"urls\":[\"bzz-raw://7915522b5616d478589dd19e814eb167b1dda912152db728003dd7b0f29c862e\",\"dweb:/ipfs/QmdJTwvfzpehkroubzmJw26kw8hr2XPY6nnXV93CtGmT5X\"]},\"contracts/CashFlowLender.sol\":{\"keccak256\":\"0xa99d192203ec1836e089dbb5ccc8a7771bfa7e1250516c9f7336c5eeb2eb66f7\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://d35bc7b55b5199d159f03738a40e340e72d1f94f614dbb0605d88c0800ec5e40\",\"dweb:/ipfs/QmTPoNwGPAE89PKvju4E3PqUcaow3af16saJ4CWgVNNp8P\"]},\"contracts/dependencies/IPolicyPool.sol\":{\"keccak256\":\"0x2cd6afa72791cac7be2cd930ebadec4e906207076960778e59a1160f66a91a0e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe5b8ee24484498806a9b5034ba0b7c33668bb1f52fbb72fc5831b2e71836a86\",\"dweb:/ipfs/QmUmxGeCGZWp1zWFLYGrjychqxzCrLY18MhRkKvviVa3BE\"]},\"contracts/dependencies/IRiskModule.sol\":{\"keccak256\":\"0xfd842143b254f4d57b27cffb2feac152c6105d8f77e12f3c4fddea9b15f53723\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://2f1791f937baa7591ba32c320db08c285efde638b489f6f8a1f65e06dde6eceb\",\"dweb:/ipfs/QmYfCJ6FXa3bBFxiYmevN1SnBaqbcF8Gnp5wCuVfHRS4vQ\"]}},\"version\":1}","storageLayout":{"storage":[{"astId":37429,"contract":"contracts-exposed/CashFlowLender.sol:$CashFlowLender","label":"$v_TargetConfig","offset":0,"slot":"0","type":"t_mapping(t_uint256,t_struct(TargetConfig)38340_storage)"}],"types":{"t_enum(TargetStatus)38330":{"encoding":"inplace","label":"enum CashFlowLender.TargetStatus","numberOfBytes":"1"},"t_mapping(t_uint256,t_struct(TargetConfig)38340_storage)":{"encoding":"mapping","key":"t_uint256","label":"mapping(uint256 => struct CashFlowLender.TargetConfig)","numberOfBytes":"32","value":"t_struct(TargetConfig)38340_storage"},"t_struct(TargetConfig)38340_storage":{"encoding":"inplace","label":"struct CashFlowLender.TargetConfig","members":[{"astId":38332,"contract":"contracts-exposed/CashFlowLender.sol:$CashFlowLender","label":"slotSize","offset":0,"slot":"0","type":"t_uint32"},{"astId":38335,"contract":"contracts-exposed/CashFlowLender.sol:$CashFlowLender","label":"status","offset":4,"slot":"0","type":"t_enum(TargetStatus)38330"},{"astId":38337,"contract":"contracts-exposed/CashFlowLender.sol:$CashFlowLender","label":"debtLimit","offset":5,"slot":"0","type":"t_uint96"},{"astId":38339,"contract":"contracts-exposed/CashFlowLender.sol:$CashFlowLender","label":"minLiquidity","offset":17,"slot":"0","type":"t_uint96"}],"numberOfBytes":"32"},"t_uint256":{"encoding":"inplace","label":"uint256","numberOfBytes":"32"},"t_uint32":{"encoding":"inplace","label":"uint32","numberOfBytes":"4"},"t_uint96":{"encoding":"inplace","label":"uint96","numberOfBytes":"12"}}}}},"contracts/CashFlowLender.sol":{"CashFlowLender":{"abi":[{"inputs":[{"internalType":"address","name":"trustedForwarder_","type":"address"},{"internalType":"contract IPolicyPool","name":"policyPool_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"uint256","name":"balanceReduction","type":"uint256"}],"name":"BalanceDecreasedOnResolve","type":"error"},{"inputs":[],"name":"CannotDeactivateTarget","type":"error"},{"inputs":[],"name":"CannotDeinvestYieldVault","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"int256","name":"debtAfter","type":"int256"}],"name":"CashOutExceedsLimit","type":"error"},{"inputs":[{"internalType":"int256","name":"currentDebt","type":"int256"},{"internalType":"uint96","name":"debtLimit","type":"uint96"}],"name":"DebtLimitExceeded","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"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"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxDeposit","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxMint","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxRedeem","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ERC4626ExceededMaxWithdraw","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":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"InvalidPolicyPool","type":"error"},{"inputs":[],"name":"InvalidSlotSize","type":"error"},{"inputs":[],"name":"NotEnoughCash","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"OnlyPolicyPool","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"int256","name":"debtAfter","type":"int256"}],"name":"RepaymentExceedsLimit","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"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"TargetAlreadyExists","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"enum CashFlowLender.TargetStatus","name":"status","type":"uint8"}],"name":"TargetNotActive","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"TargetNotFound","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"requiredSelector","type":"bytes4"}],"name":"UnauthorizedForward","type":"error"},{"inputs":[],"name":"YieldVaultIsRequired","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":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"slotSize","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"slotIndex","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"int256","name":"debtAfterChange","type":"int256"},{"indexed":false,"internalType":"address","name":"destination","type":"address"}],"name":"CashOutPayout","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"slotSize","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"slotIndex","type":"uint32"},{"indexed":false,"internalType":"int256","name":"value","type":"int256"},{"indexed":false,"internalType":"int256","name":"debtAfterChange","type":"int256"},{"indexed":false,"internalType":"int256","name":"totalDebtAfterChange","type":"int256"}],"name":"DebtChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"slotSize","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"slotIndex","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"int256","name":"debtAfterChange","type":"int256"},{"indexed":false,"internalType":"address","name":"payer","type":"address"}],"name":"RepayDebt","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"components":[{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"enum CashFlowLender.TargetStatus","name":"status","type":"uint8"},{"internalType":"uint96","name":"debtLimit","type":"uint96"},{"internalType":"uint96","name":"minLiquidity","type":"uint96"}],"indexed":false,"internalType":"struct CashFlowLender.TargetConfig","name":"config","type":"tuple"}],"name":"TargetAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldDebtLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newDebtLimit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldMinLiquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMinLiquidity","type":"uint256"}],"name":"TargetLimitsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint32","name":"oldSlotSize","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"newSlotSize","type":"uint32"}],"name":"TargetSlotSizeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"enum CashFlowLender.TargetStatus","name":"oldStatus","type":"uint8"},{"indexed":false,"internalType":"enum CashFlowLender.TargetStatus","name":"newStatus","type":"uint8"}],"name":"TargetStatusChanged","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract IERC4626","name":"oldVault","type":"address"},{"indexed":false,"internalType":"contract IERC4626","name":"newVault","type":"address"}],"name":"YieldVaultChanged","type":"event"},{"inputs":[],"name":"OWN_POLICY_SELECTOR","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SLOTSIZE_CALENDAR_MONTH","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint256","name":"debtLimit","type":"uint256"},{"internalType":"uint256","name":"minLiquidity","type":"uint256"}],"name":"addTarget","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint32","name":"slotIndex","type":"uint32"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"cashOutPayouts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cashWithdrawable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentDebt","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositIntoYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes[]","name":"inputData","type":"bytes[]"},{"internalType":"address","name":"onBehalfOf","type":"address"}],"name":"forwardNewPoliciesV3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"forwardNewPolicy","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"forwardNewPolicyBatch","outputs":[{"internalType":"bytes[]","name":"result","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"inputData","type":"bytes"},{"internalType":"address","name":"onBehalfOf","type":"address"}],"name":"forwardNewPolicyV3","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"forwardResolvePolicy","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"forwardResolvePolicyBatch","outputs":[{"internalType":"bytes[]","name":"result","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint32","name":"slotIndex","type":"uint32"}],"name":"getDebtForPeriod","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"getTargetStatus","outputs":[{"internalType":"enum CashFlowLender.TargetStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"contract IERC4626","name":"yieldVault_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"selector","type":"bytes4"}],"name":"makeFakeSelector","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"onPayoutReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"purePremiumRefund","type":"uint256"},{"internalType":"uint256","name":"jrCocRefund","type":"uint256"},{"internalType":"uint256","name":"srCocRefund","type":"uint256"}],"name":"onPolicyCancelled","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"onPolicyExpired","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"onPolicyReplaced","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"policyPool","outputs":[{"internalType":"contract IPolicyPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"slotSize","type":"uint32"},{"internalType":"uint32","name":"slotIndex","type":"uint32"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"repayDebt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"debtLimit","type":"uint256"},{"internalType":"uint256","name":"minLiquidity","type":"uint256"}],"name":"setTargetLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint32","name":"newSlotSize","type":"uint32"}],"name":"setTargetSlotSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"enum CashFlowLender.TargetStatus","name":"newStatus","type":"uint8"}],"name":"setTargetStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC4626","name":"yieldVault_","type":"address"},{"internalType":"bool","name":"force","type":"bool"}],"name":"setYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"assets","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"},{"inputs":[],"name":"trustedForwarder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFromYieldVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yieldVault","outputs":[{"internalType":"contract IERC4626","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_15868":{"entryPoint":null,"id":15868,"parameterSlots":1,"returnSlots":0},"@_38643":{"entryPoint":null,"id":38643,"parameterSlots":2,"returnSlots":0},"@_disableInitializers_23388":{"entryPoint":84,"id":23388,"parameterSlots":0,"returnSlots":0},"@_getInitializableStorage_23433":{"entryPoint":null,"id":23433,"parameterSlots":0,"returnSlots":1},"@_initializableStorageSlot_23419":{"entryPoint":null,"id":23419,"parameterSlots":0,"returnSlots":1},"abi_decode_tuple_t_addresst_contract$_IPolicyPool_$40853_fromMemory":{"entryPoint":282,"id":null,"parameterSlots":2,"returnSlots":2},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"validator_revert_address":{"entryPoint":262,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:763:125","nodeType":"YulBlock","src":"0:763:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"59:86:125","nodeType":"YulBlock","src":"59:86:125","statements":[{"body":{"nativeSrc":"123:16:125","nodeType":"YulBlock","src":"123:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:125","nodeType":"YulLiteral","src":"132:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:125","nodeType":"YulLiteral","src":"135:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:125","nodeType":"YulIdentifier","src":"125:6:125"},"nativeSrc":"125:12:125","nodeType":"YulFunctionCall","src":"125:12:125"},"nativeSrc":"125:12:125","nodeType":"YulExpressionStatement","src":"125:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:125","nodeType":"YulIdentifier","src":"82:5:125"},{"arguments":[{"name":"value","nativeSrc":"93:5:125","nodeType":"YulIdentifier","src":"93:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:125","nodeType":"YulLiteral","src":"108:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:125","nodeType":"YulLiteral","src":"113:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:125","nodeType":"YulIdentifier","src":"104:3:125"},"nativeSrc":"104:11:125","nodeType":"YulFunctionCall","src":"104:11:125"},{"kind":"number","nativeSrc":"117:1:125","nodeType":"YulLiteral","src":"117:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:125","nodeType":"YulIdentifier","src":"100:3:125"},"nativeSrc":"100:19:125","nodeType":"YulFunctionCall","src":"100:19:125"}],"functionName":{"name":"and","nativeSrc":"89:3:125","nodeType":"YulIdentifier","src":"89:3:125"},"nativeSrc":"89:31:125","nodeType":"YulFunctionCall","src":"89:31:125"}],"functionName":{"name":"eq","nativeSrc":"79:2:125","nodeType":"YulIdentifier","src":"79:2:125"},"nativeSrc":"79:42:125","nodeType":"YulFunctionCall","src":"79:42:125"}],"functionName":{"name":"iszero","nativeSrc":"72:6:125","nodeType":"YulIdentifier","src":"72:6:125"},"nativeSrc":"72:50:125","nodeType":"YulFunctionCall","src":"72:50:125"},"nativeSrc":"69:70:125","nodeType":"YulIf","src":"69:70:125"}]},"name":"validator_revert_address","nativeSrc":"14:131:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:125","nodeType":"YulTypedName","src":"48:5:125","type":""}],"src":"14:131:125"},{"body":{"nativeSrc":"269:287:125","nodeType":"YulBlock","src":"269:287:125","statements":[{"body":{"nativeSrc":"315:16:125","nodeType":"YulBlock","src":"315:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"324:1:125","nodeType":"YulLiteral","src":"324:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"327:1:125","nodeType":"YulLiteral","src":"327:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"317:6:125","nodeType":"YulIdentifier","src":"317:6:125"},"nativeSrc":"317:12:125","nodeType":"YulFunctionCall","src":"317:12:125"},"nativeSrc":"317:12:125","nodeType":"YulExpressionStatement","src":"317:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"290:7:125","nodeType":"YulIdentifier","src":"290:7:125"},{"name":"headStart","nativeSrc":"299:9:125","nodeType":"YulIdentifier","src":"299:9:125"}],"functionName":{"name":"sub","nativeSrc":"286:3:125","nodeType":"YulIdentifier","src":"286:3:125"},"nativeSrc":"286:23:125","nodeType":"YulFunctionCall","src":"286:23:125"},{"kind":"number","nativeSrc":"311:2:125","nodeType":"YulLiteral","src":"311:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"282:3:125","nodeType":"YulIdentifier","src":"282:3:125"},"nativeSrc":"282:32:125","nodeType":"YulFunctionCall","src":"282:32:125"},"nativeSrc":"279:52:125","nodeType":"YulIf","src":"279:52:125"},{"nativeSrc":"340:29:125","nodeType":"YulVariableDeclaration","src":"340:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"359:9:125","nodeType":"YulIdentifier","src":"359:9:125"}],"functionName":{"name":"mload","nativeSrc":"353:5:125","nodeType":"YulIdentifier","src":"353:5:125"},"nativeSrc":"353:16:125","nodeType":"YulFunctionCall","src":"353:16:125"},"variables":[{"name":"value","nativeSrc":"344:5:125","nodeType":"YulTypedName","src":"344:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"403:5:125","nodeType":"YulIdentifier","src":"403:5:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"378:24:125","nodeType":"YulIdentifier","src":"378:24:125"},"nativeSrc":"378:31:125","nodeType":"YulFunctionCall","src":"378:31:125"},"nativeSrc":"378:31:125","nodeType":"YulExpressionStatement","src":"378:31:125"},{"nativeSrc":"418:15:125","nodeType":"YulAssignment","src":"418:15:125","value":{"name":"value","nativeSrc":"428:5:125","nodeType":"YulIdentifier","src":"428:5:125"},"variableNames":[{"name":"value0","nativeSrc":"418:6:125","nodeType":"YulIdentifier","src":"418:6:125"}]},{"nativeSrc":"442:40:125","nodeType":"YulVariableDeclaration","src":"442:40:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"467:9:125","nodeType":"YulIdentifier","src":"467:9:125"},{"kind":"number","nativeSrc":"478:2:125","nodeType":"YulLiteral","src":"478:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"463:3:125","nodeType":"YulIdentifier","src":"463:3:125"},"nativeSrc":"463:18:125","nodeType":"YulFunctionCall","src":"463:18:125"}],"functionName":{"name":"mload","nativeSrc":"457:5:125","nodeType":"YulIdentifier","src":"457:5:125"},"nativeSrc":"457:25:125","nodeType":"YulFunctionCall","src":"457:25:125"},"variables":[{"name":"value_1","nativeSrc":"446:7:125","nodeType":"YulTypedName","src":"446:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"516:7:125","nodeType":"YulIdentifier","src":"516:7:125"}],"functionName":{"name":"validator_revert_address","nativeSrc":"491:24:125","nodeType":"YulIdentifier","src":"491:24:125"},"nativeSrc":"491:33:125","nodeType":"YulFunctionCall","src":"491:33:125"},"nativeSrc":"491:33:125","nodeType":"YulExpressionStatement","src":"491:33:125"},{"nativeSrc":"533:17:125","nodeType":"YulAssignment","src":"533:17:125","value":{"name":"value_1","nativeSrc":"543:7:125","nodeType":"YulIdentifier","src":"543:7:125"},"variableNames":[{"name":"value1","nativeSrc":"533:6:125","nodeType":"YulIdentifier","src":"533:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_contract$_IPolicyPool_$40853_fromMemory","nativeSrc":"150:406:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"227:9:125","nodeType":"YulTypedName","src":"227:9:125","type":""},{"name":"dataEnd","nativeSrc":"238:7:125","nodeType":"YulTypedName","src":"238:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"250:6:125","nodeType":"YulTypedName","src":"250:6:125","type":""},{"name":"value1","nativeSrc":"258:6:125","nodeType":"YulTypedName","src":"258:6:125","type":""}],"src":"150:406:125"},{"body":{"nativeSrc":"660:101:125","nodeType":"YulBlock","src":"660:101:125","statements":[{"nativeSrc":"670:26:125","nodeType":"YulAssignment","src":"670:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"682:9:125","nodeType":"YulIdentifier","src":"682:9:125"},{"kind":"number","nativeSrc":"693:2:125","nodeType":"YulLiteral","src":"693:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"678:3:125","nodeType":"YulIdentifier","src":"678:3:125"},"nativeSrc":"678:18:125","nodeType":"YulFunctionCall","src":"678:18:125"},"variableNames":[{"name":"tail","nativeSrc":"670:4:125","nodeType":"YulIdentifier","src":"670:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"712:9:125","nodeType":"YulIdentifier","src":"712:9:125"},{"arguments":[{"name":"value0","nativeSrc":"727:6:125","nodeType":"YulIdentifier","src":"727:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"743:2:125","nodeType":"YulLiteral","src":"743:2:125","type":"","value":"64"},{"kind":"number","nativeSrc":"747:1:125","nodeType":"YulLiteral","src":"747:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"739:3:125","nodeType":"YulIdentifier","src":"739:3:125"},"nativeSrc":"739:10:125","nodeType":"YulFunctionCall","src":"739:10:125"},{"kind":"number","nativeSrc":"751:1:125","nodeType":"YulLiteral","src":"751:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"735:3:125","nodeType":"YulIdentifier","src":"735:3:125"},"nativeSrc":"735:18:125","nodeType":"YulFunctionCall","src":"735:18:125"}],"functionName":{"name":"and","nativeSrc":"723:3:125","nodeType":"YulIdentifier","src":"723:3:125"},"nativeSrc":"723:31:125","nodeType":"YulFunctionCall","src":"723:31:125"}],"functionName":{"name":"mstore","nativeSrc":"705:6:125","nodeType":"YulIdentifier","src":"705:6:125"},"nativeSrc":"705:50:125","nodeType":"YulFunctionCall","src":"705:50:125"},"nativeSrc":"705:50:125","nodeType":"YulExpressionStatement","src":"705:50:125"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed","nativeSrc":"561:200:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"629:9:125","nodeType":"YulTypedName","src":"629:9:125","type":""},{"name":"value0","nativeSrc":"640:6:125","nodeType":"YulTypedName","src":"640:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"651:4:125","nodeType":"YulTypedName","src":"651:4:125","type":""}],"src":"561:200:125"}]},"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_tuple_t_addresst_contract$_IPolicyPool_$40853_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_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}","id":125,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60e06040523060a052348015610013575f5ffd5b5060405161583b38038061583b8339810160408190526100329161011a565b6001600160a01b03808316608052811660c05261004d610054565b5050610152565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100a45760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101035780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6001600160a01b0381168114610103575f5ffd5b5f5f6040838503121561012b575f5ffd5b825161013681610106565b602084015190925061014781610106565b809150509250929050565b60805160a05160c05161565d6101de5f395f81816106c6015281816111450152818161156b0152818161167d015281816116e8015281816122f6015281816126720152818161272d01528181612aeb0152818161381601526138ab01525f818161336b0152818161339401526134b701525f818161072d015281816108110152613983015261565d5ff3fe608060405260043610610392575f3560e01c80637da0a877116101de578063bfdb20da11610108578063d6281d3e1161009d578063e8e617b71161006d578063e8e617b714610b42578063ee07abbb14610b61578063ef8b30f714610a1c578063f7a3933314610b80575f5ffd5b8063d6281d3e14610ab9578063d905777e14610ad8578063dd62ed3e14610af7578063e77659fd14610b16575f5ffd5b8063cc671a18116100d8578063cc671a1814610a3b578063ce96cb7714610a4f578063d336078c14610a6e578063d52f99ce14610a8d575f5ffd5b8063bfdb20da146109de578063c0c51217146109fd578063c63d75b614610698578063c6e6f59214610a1c575f5ffd5b8063a9059cbb1161017e578063b3d7f6b91161014e578063b3d7f6b914610962578063b460af9414610981578063ba087652146109a0578063bdb5371d146109bf575f5ffd5b8063a9059cbb146108d9578063a9ed1487146108f8578063ac860f7414610913578063ad3cb1cc14610932575f5ffd5b806394bf804d116101b957806394bf804d1461087357806395d89b4114610892578063a3ac9390146108a6578063a7f8a5e2146108c5575f5ffd5b80637da0a8771461080357806382dbbd711461083557806386b4408314610854575f5ffd5b8063313ce567116102bf5780634f1ef2861161025f57806362eb345e1161022f57806362eb345e1461077c5780636e553f651461079b57806370a08231146107ba578063759076e5146107d9575f5ffd5b80634f1ef286146106ea57806352d1902d146106fd578063572b6c05146107115780635ee0c7dd1461075d575f5ffd5b80633edeb2571161029a5780633edeb2571461066c578063402d267d146106985780634cdad5061461042e5780634d15eb03146106b8575f5ffd5b8063313ce567146105fb57806333bded3c1461062157806338d52e0f14610640575f5ffd5b8063091ea8a61161033557806318160ddd1161030557806318160ddd1461056b578063194448e51461059e578063225c531e146105bd57806323b872dd146105dc575f5ffd5b8063091ea8a61461048b578063095ea7b3146104f55780630a28a47714610514578063150b7a0214610533575f5ffd5b8063077f224a11610370578063077f224a1461040d57806307a2d13a1461042e57806307c2e8781461044d57806308742d901461046c575f5ffd5b806301e1d1141461039657806301ffc9a7146103bd57806306fdde03146103ec575b5f5ffd5b3480156103a1575f5ffd5b506103aa610b9f565b6040519081526020015b60405180910390f35b3480156103c8575f5ffd5b506103dc6103d73660046144b3565b610ce1565b60405190151581526020016103b4565b3480156103f7575f5ffd5b50610400610d83565b6040516103b491906144fa565b348015610418575f5ffd5b5061042c6104273660046145f0565b610e43565b005b348015610439575f5ffd5b506103aa610448366004614666565b610f3e565b348015610458575f5ffd5b5061042c6104673660046146c4565b610f49565b348015610477575f5ffd5b5061042c610486366004614738565b611070565b348015610496575f5ffd5b506104e86104a536600461476f565b6001600160a01b03165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af016020526040902054600160201b900460ff1690565b6040516103b491906147be565b348015610500575f5ffd5b506103dc61050f3660046147cc565b61110c565b34801561051f575f5ffd5b506103aa61052e366004614666565b61112d565b34801561053e575f5ffd5b5061055261054d366004614833565b611139565b6040516001600160e01b031990911681526020016103b4565b348015610576575f5ffd5b507f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace02546103aa565b3480156105a9575f5ffd5b5061042c6105b83660046148ad565b6111a3565b3480156105c8575f5ffd5b5061042c6105d73660046148d9565b6112c6565b3480156105e7575f5ffd5b506103dc6105f636600461493d565b6113ea565b348015610606575f5ffd5b5061060f611419565b60405160ff90911681526020016103b4565b34801561062c575f5ffd5b5061040061063b36600461497b565b611455565b34801561064b575f5ffd5b50610654611612565b6040516001600160a01b0390911681526020016103b4565b348015610677575f5ffd5b5061068363ffffffff81565b60405163ffffffff90911681526020016103b4565b3480156106a3575f5ffd5b506103aa6106b236600461476f565b505f1990565b3480156106c3575f5ffd5b507f0000000000000000000000000000000000000000000000000000000000000000610654565b61042c6106f83660046149cb565b611640565b348015610708575f5ffd5b506103aa611656565b34801561071c575f5ffd5b506103dc61072b36600461476f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b348015610768575f5ffd5b50610552610777366004614a2a565b611671565b348015610787575f5ffd5b50610552610796366004614a6d565b6116dc565b3480156107a6575f5ffd5b506103aa6107b5366004614ac2565b611812565b3480156107c5575f5ffd5b506103aa6107d436600461476f565b611834565b3480156107e4575f5ffd5b505f5160206156085f395f51905f5254600160a01b9004600b0b6103aa565b34801561080e575f5ffd5b507f0000000000000000000000000000000000000000000000000000000000000000610654565b348015610840575f5ffd5b5061042c61084f366004614ae5565b61185a565b34801561085f575f5ffd5b5061040061086e36600461497b565b611944565b34801561087e575f5ffd5b506103aa61088d366004614ac2565b611a70565b34801561089d575f5ffd5b50610400611a92565b3480156108b1575f5ffd5b506103aa6108c0366004614b33565b611ad0565b3480156108d0575f5ffd5b50610654611b24565b3480156108e4575f5ffd5b506103dc6108f33660046147cc565b611b43565b348015610903575f5ffd5b506105526001600160e01b031981565b34801561091e575f5ffd5b5061042c61092d366004614666565b611b5a565b34801561093d575f5ffd5b50610400604051806040016040528060058152602001640352e302e360dc1b81525081565b34801561096d575f5ffd5b506103aa61097c366004614666565b611c1f565b34801561098c575f5ffd5b506103aa61099b366004614b70565b611c2b565b3480156109ab575f5ffd5b506103aa6109ba366004614b70565b611c88565b3480156109ca575f5ffd5b5061042c6109d9366004614ba4565b611cdc565b3480156109e9575f5ffd5b5061042c6109f8366004614bd6565b611dc6565b348015610a08575f5ffd5b50610552610a17366004614c04565b611fb2565b348015610a27575f5ffd5b506103aa610a36366004614666565b611ffc565b348015610a46575f5ffd5b506103aa612007565b348015610a5a575f5ffd5b506103aa610a6936600461476f565b612093565b348015610a79575f5ffd5b5061042c610a88366004614666565b6120ad565b348015610a98575f5ffd5b50610aac610aa7366004614c37565b61215d565b6040516103b49190614c7b565b348015610ac4575f5ffd5b50610552610ad3366004614a2a565b6122ea565b348015610ae3575f5ffd5b506103aa610af236600461476f565b6123fa565b348015610b02575f5ffd5b506103aa610b11366004614d1a565b612412565b348015610b21575f5ffd5b50610b35610b30366004614d46565b61245b565b6040516103b49190614d89565b348015610b4d575f5ffd5b50610552610b5c36600461493d565b612721565b348015610b6c575f5ffd5b50610b35610b7b366004614d46565b612789565b348015610b8b575f5ffd5b5061042c610b9a366004614dec565b612983565b5f5f5160206156085f395f51905f52610bb6612a42565b81546040516370a0823160e01b81523060048201529193506001600160a01b0316906307a2d13a9082906370a0823190602401602060405180830381865afa158015610c04573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c289190614e1b565b6040518263ffffffff1660e01b8152600401610c4691815260200190565b602060405180830381865afa158015610c61573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c859190614e1b565b610c8f9083614e46565b81549092505f600160a01b909104600b0b1215610ccb578054610cbb90600160a01b9004600b0b614e59565b610cc59083614e73565b91505090565b8054610cc590600160a01b9004600b0b83614e46565b5f6001600160e01b03198216630a85bd0160e11b1480610d1157506001600160e01b03198216630162fc8560e11b145b80610d2c57506001600160e01b031982166336372b0760e01b145b80610d4757506001600160e01b0319821663a219a02560e01b145b80610d6257506001600160e01b0319821663043eff2d60e51b145b80610d7d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0380546060915f5160206155c85f395f51905f5291610dc190614e86565b80601f0160208091040260200160405190810160405280929190818152602001828054610ded90614e86565b8015610e385780601f10610e0f57610100808354040283529160200191610e38565b820191905f5260205f20905b815481529060010190602001808311610e1b57829003601f168201915b505050505091505090565b5f610e4c612ab8565b805490915060ff600160401b82041615906001600160401b03165f81158015610e725750825b90505f826001600160401b03166001148015610e8d5750303b155b905081158015610e9b575080155b15610eb95760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ee357845460ff60401b1916600160401b1785555b610eee888888612ae0565b8315610f3457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b5f610d7d825f612b87565b835f610f5482612bde565b905060018154600160201b900460ff166003811115610f7557610f7561478a565b82548492600160201b90910460ff169114610fae57604051630e851c7960e31b8152600401610fa5929190614ebe565b60405180910390fd5b50505f610fba82612c76565b9050610fd5610fc7612cca565b886346d58ca960e11b612cd3565b6001600160a01b0384163014610fff57610fff610ff0612cca565b886001600160e01b0319612cd3565b6040516303e1e7c360e31b81526001600160a01b03881690631f0f3e189061102f90899089908990600401614f03565b5f604051808303815f87803b158015611046575f5ffd5b505af1158015611058573d5f5f3e3d5ffd5b50505050611067838383612dd5565b50505050505050565b8063ffffffff165f036110965760405163294da6c760e21b815260040160405180910390fd5b5f6110a083612bde565b80546040805163ffffffff928316815291851660208301529192506001600160a01b038516917f4345ec61f717774fdb684b701c34934889550330da2b93f2c3a33379db77f817910160405180910390a2805463ffffffff191663ffffffff9290921691909117905550565b5f5f611116612cca565b9050611123818585612e5e565b5060019392505050565b5f610d7d826001612e6b565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146111905760405163950d88bf60e01b81526001600160a01b039091166004820152602401610fa5565b50630a85bd0160e11b9695505050505050565b5f5f5160206156085f395f51905f5280546040516370a0823160e01b81523060048201529192505f916001600160a01b03909116906307a2d13a9082906370a0823190602401602060405180830381865afa158015611204573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112289190614e1b565b6040518263ffffffff1660e01b815260040161124691815260200190565b602060405180830381865afa158015611261573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112859190614e1b565b90508061129182612eb9565b148061129a5750825b6112b75760405163292d4c4b60e11b815260040160405180910390fd5b6112c084612fb2565b50505050565b6112cf85612bde565b505f6112e58686866112e087613147565b613177565b905082815f81131561131357604051630c97a6bf60e41b815260048101929092526024820152604401610fa5565b50505f61131e612a42565b905083811015611362576113328185614e73565b61134461133f8387614e73565b612eb9565b146113625760405163af8075e960e01b815260040160405180910390fd5b61137f838561136f611612565b6001600160a01b03169190613276565b6040805163ffffffff808916825287166020820152908101859052606081018390526001600160a01b0384811660808301528816907fcc010dd322eb2bc19138cf20160ad5643925810f442fc6c5d48b9b4c59b34efe9060a00160405180910390a250505050505050565b5f5f6113f4612cca565b90506114018582856132ab565b61140c8585856132f6565b60019150505b9392505050565b5f807f0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e0090505f8154610cc59190600160a01b900460ff16614fae565b6060835f61146282612bde565b905060018154600160201b900460ff1660038111156114835761148361478a565b82548492600160201b90910460ff1691146114b357604051630e851c7960e31b8152600401610fa5929190614ebe565b50505f6114bf82612c76565b90506114e86114cc612cca565b886114da60045f8a8c614fc7565b6114e391614fee565b612cd3565b61153186868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038b1692915050613353565b93505f848060200190518101906115489190614e1b565b6040516331a9108f60e11b81526004810182905290915030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa1580156115b0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115d49190615024565b6001600160a01b0316146115fc576115fc6115ed612cca565b896001600160e01b0319612cd3565b50611608838383612dd5565b5050509392505050565b7f0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e00546001600160a01b031690565b611648613360565b61165282826133f0565b5050565b5f61165f6134ac565b505f5160206155e85f395f51905f5290565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146116c85760405163950d88bf60e01b81526001600160a01b039091166004820152602401610fa5565b50635ee0c7dd60e01b90505b949350505050565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146117335760405163950d88bf60e01b81526001600160a01b039091166004820152602401610fa5565b505f61173e88612bde565b905060018154600160201b900460ff16600381111561175f5761175f61478a565b1480611787575060028154600160201b900460ff1660038111156117855761178561478a565b145b81548991600160201b90910460ff16906117b657604051630e851c7960e31b8152600401610fa5929190614ebe565b505f9050836117c58688614e46565b6117cf9190614e46565b82549091506117fc908a9063ffffffff166117ea81426134f5565b6117f385613147565b6112e090614e59565b506331759a2f60e11b9998505050505050505050565b5f5f195f61181f85611ffc565b90506116d461182c612cca565b858784613521565b6001600160a01b03165f9081525f5160206155c85f395f51905f52602052604090205490565b61186384612bde565b505f6118748585856117f386613147565b905081815f8112156118a25760405163239de57160e11b815260048101929092526024820152604401610fa5565b50506118ca6118af612cca565b30846118b9611612565b6001600160a01b031692919061359a565b846001600160a01b03167ffe14813540c7709c2d7e702f39b104eeed265dd484f899e9f2f89c801aa6395c85858585611901612cca565b6040805163ffffffff96871681529590941660208601529284019190915260608301526001600160a01b0316608082015260a00160405180910390a25050505050565b6060835f61195182612bde565b905060018154600160201b900460ff1660038111156119725761197261478a565b148061199a575060028154600160201b900460ff1660038111156119985761199861478a565b145b81548391600160201b90910460ff16906119c957604051630e851c7960e31b8152600401610fa5929190614ebe565b50505f6119d4612a42565b90506119e16114cc612cca565b611a2a86868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038b1692915050613353565b93505f611a35612a42565b905081811015611a6557611a498183614e73565b6040516351f5977560e11b8152600401610fa591815260200190565b505050509392505050565b5f5f195f611a7d85611c1f565b90506116d4611a8a612cca565b858388613521565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060915f5160206155c85f395f51905f5291610dc190614e86565b5f5f5160206156085f395f51905f527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af0282611b0c8787876135d0565b81526020019081526020015f20549150509392505050565b5f5f5160206156085f395f51905f525b546001600160a01b0316919050565b5f5f611b4d612cca565b90506111238185856132f6565b5f198103611b7157611b6a612a42565b9050611b99565b611b79612a42565b811115611b995760405163af8075e960e01b815260040160405180910390fd5b5f5f5160206156085f395f51905f528054604051636e553f6560e01b8152600481018590523060248201529192506001600160a01b031690636e553f65906044016020604051808303815f875af1158015611bf6573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c1a9190614e1b565b505050565b5f610d7d826001612b87565b5f5f611c3683612093565b905080851115611c5f57828582604051633fa733bb60e21b8152600401610fa59392919061503f565b5f611c698661112d565b9050611c7f611c76612cca565b86868985613618565b95945050505050565b5f5f611c93836123fa565b905080851115611cbc57828582604051632e52afbb60e21b8152600401610fa59392919061503f565b5f611cc686610f3e565b9050611c7f611cd3612cca565b8686848a613618565b5f611ce684612bde565b8054604080516001600160601b03600160281b84048116825260208201889052600160881b90930490921690820152606081018490529091506001600160a01b038516907f7e293d291e9dd159f2fbde9523c4191674384553a72c0833ba9cf7dcb5381fb79060800160405180910390a2611d608361376b565b81546001600160601b0391909116600160281b0270ffffffffffffffffffffffff000000000019909116178155611d968261376b565b81546001600160601b0391909116600160881b026bffffffffffffffffffffffff60881b19909116179055505050565b6001600160a01b0384165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af016020526040812080545f5160206156085f395f51905f529290600160201b900460ff166003811115611e2957611e2961478a565b14611e475760405163cd43efa160e01b815260040160405180910390fd5b8463ffffffff165f03611e6d5760405163294da6c760e21b815260040160405180910390fd5b6040805160808101825263ffffffff8716815260016020820152908101611e938661376b565b6001600160601b03168152602001611eaa8561376b565b6001600160601b031690526001600160a01b0387165f90815260018401602090815260409091208251815463ffffffff90911663ffffffff19821681178355928401519192839164ffffffffff191617600160201b836003811115611f1157611f1161478a565b0217905550604082810151825460609094015165010000000000600160e81b0319909416600160281b6001600160601b03928316026bffffffffffffffffffffffff60881b191617600160881b9190941602929092179055516001600160a01b038716907f422c963a67d52178b43a807b8c9df3a99468f416b736f9f040b6392cf790752e90611fa2908490615060565b60405180910390a2505050505050565b6040516001600160601b0319606084901b1660208201526001600160e01b0319821660348201525f9061141290603801604051602081830303815290604052805160209091012090565b5f610d7d825f612e6b565b5f805f5160206156085f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa15801561205d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120819190614e1b565b612089612a42565b610cc59190614e46565b5f610d7d6120a08361379e565b6120a8612007565b6137ab565b5f198103612132575f5f5160206156085f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa15801561210a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061212e9190614e1b565b9150505b8061213c82612eb9565b1461215a5760405163af8075e960e01b815260040160405180910390fd5b50565b6121c36040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b845f6121ce82612bde565b905060018154600160201b900460ff1660038111156121ef576121ef61478a565b82548492600160201b90910460ff16911461221f57604051630e851c7960e31b8152600401610fa5929190614ebe565b50505f61222b82612c76565b9050612246612238612cca565b896346d58ca960e11b612cd3565b6001600160a01b0385163014612261576122616115ed612cca565b6040516346d58ca960e11b81526001600160a01b03891690638dab195290612291908a908a908a906004016150b0565b610180604051808303815f875af11580156122ae573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122d291906150ef565b93506122df838383612dd5565b505050949350505050565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146123415760405163950d88bf60e01b81526001600160a01b039091166004820152602401610fa5565b505f61234c86612bde565b905060018154600160201b900460ff16600381111561236d5761236d61478a565b1480612395575060028154600160201b900460ff1660038111156123935761239361478a565b145b81548791600160201b90910460ff16906123c457604051630e851c7960e31b8152600401610fa5929190614ebe565b505080546123e790879063ffffffff166123de81426134f5565b6117f387613147565b50636b140e9f60e11b9695505050505050565b5f610d7d612407836137ba565b6120a8610a36612007565b6001600160a01b039182165f9081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b6060835f61246882612bde565b905060018154600160201b900460ff1660038111156124895761248961478a565b82548492600160201b90910460ff1691146124b957604051630e851c7960e31b8152600401610fa5929190614ebe565b50505f6124c582612c76565b90505f80866001600160401b038111156124e1576124e161450c565b60405190808252806020026020018201604052801561251457816020015b60608152602001906001900390816124ff5790505b5095505f5b87811015612713575f89898381811061253457612534615197565b905060200281019061254691906151ab565b612554916004915f91614fc7565b61255d91614fee565b905081158061257957506001600160e01b031981811690851614155b1561259457612590612589612cca565b8c83612cd3565b8093505b6125ff8a8a848181106125a9576125a9615197565b90506020028101906125bb91906151ab565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038f1692915050613353565b88838151811061261157612611615197565b60200260200101819052508261270a575f88838151811061263457612634615197565b602002602001015180602001905181019061264f9190614e1b565b6040516331a9108f60e11b81526004810182905290915030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa1580156126b7573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126db9190615024565b6001600160a01b031614612708576127036126f4612cca565b8d6001600160e01b0319612cd3565b600193505b505b50600101612519565b505050611608838383612dd5565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146127785760405163950d88bf60e01b81526001600160a01b039091166004820152602401610fa5565b5063e8e617b760e01b949350505050565b6060835f61279682612bde565b905060018154600160201b900460ff1660038111156127b7576127b761478a565b14806127df575060028154600160201b900460ff1660038111156127dd576127dd61478a565b145b81548391600160201b90910460ff169061280e57604051630e851c7960e31b8152600401610fa5929190614ebe565b50505f612819612a42565b90505f856001600160401b038111156128345761283461450c565b60405190808252806020026020018201604052801561286757816020015b60608152602001906001900390816128525790505b5094505f5b86811015612978575f88888381811061288757612887615197565b905060200281019061289991906151ab565b6128a7916004915f91614fc7565b6128b091614fee565b90508115806128cc57506001600160e01b031981811690841614155b156128e7576128e36128dc612cca565b8b83612cd3565b8092505b6129528989848181106128fc576128fc615197565b905060200281019061290e91906151ab565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038e1692915050613353565b87838151811061296457612964615197565b60209081029190910101525060010161286c565b50505f611a35612a42565b5f8160038111156129965761299661478a565b036129b457604051635e64536560e11b815260040160405180910390fd5b5f6129be83612bde565b9050826001600160a01b03167f0638a5c17c348b99c05e7985ee5ee8bc0c41bc7a12265aec4a488d62350c1d24825f0160049054906101000a900460ff1684604051612a0b9291906151ed565b60405180910390a280548290829064ff000000001916600160201b836003811115612a3857612a3861478a565b0217905550505050565b5f612a4b611612565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015612a8f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ab39190614e1b565b905090565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610d7d565b612ae86137c4565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b45573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b699190615024565b9050612b74816137e9565b612b7e84846137fa565b6112c08261380c565b5f611412612b93610b9f565b612b9e906001614e46565b612ba95f600a6152eb565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254612bd59190614e46565b85919085613930565b6001600160a01b0381165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af0160205260408120805490915f5160206156085f395f51905f5291600160201b900460ff166003811115612c4257612c4261478a565b14158390612c6f57604051632dad902160e01b81526001600160a01b039091166004820152602401610fa5565b5050919050565b5f612c7f612a42565b8254909150600160881b90046001600160601b0316811015612cc5578154612cbc9061133f908390600160881b90046001600160601b0316614e73565b50610d7d612a42565b919050565b5f612ab3613972565b5f612cde8383611fb2565b90505f306001600160a01b0316633a7b7a396040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d1d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d419190615024565b6001600160a01b031663b70096138630856040518463ffffffff1660e01b8152600401612d70939291906152f9565b6040805180830381865afa158015612d8a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dae9190615326565b50905084848383610f345760405163c294136d60e01b8152600401610fa5939291906152f9565b5f612dde612a42565b9050818110156112c05782545f90612e1490869063ffffffff16612e0281426134f5565b6112e0612e0f8789614e73565b613147565b84549091508190600160281b90046001600160601b0316808213156110675760405163395192c560e21b815260048101929092526001600160601b03166024820152604401610fa5565b611c1a83838360016139dc565b5f611412612e7a82600a6152eb565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254612ea69190614e46565b612eae610b9f565b612bd5906001614e46565b5f805f5160206156085f395f51905f52805460405163ce96cb7760e01b8152306004820152919250612f399185916001600160a01b03169063ce96cb7790602401602060405180830381865afa158015612f15573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120a89190614e1b565b8154604051632d182be560e21b815260048101839052306024820181905260448201529193506001600160a01b03169063b460af94906064016020604051808303815f875af1158015612f8e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c6f9190614e1b565b6001600160a01b038116612fd9576040516347ddf9c760e01b815260040160405180910390fd5b5f5160206156085f395f51905f5280546001600160a01b038381166001600160a01b0319831617835516801561308457613011611612565b60405163095ea7b360e01b81526001600160a01b0383811660048301525f6024830152919091169063095ea7b3906044016020604051808303815f875af115801561305e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130829190615353565b505b61308c611612565b60405163095ea7b360e01b81526001600160a01b0385811660048301525f196024830152919091169063095ea7b3906044016020604051808303815f875af11580156130da573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130fe9190615353565b50604080516001600160a01b038084168252851660208201527f9baaddad37a65ca0df0360563fca87a13c1ce354be76d7ec35eac48bd766332a910160405180910390a1505050565b5f6001600160ff1b038211156131735760405163123baf0360e11b815260048101839052602401610fa5565b5090565b5f5f5160206156085f395f51905f52816131928787876135d0565b905083826002015f8381526020019081526020015f205f8282546131b6919061536e565b9182905550835490945085915083906014906131dd908490600160a01b9004600b0b615395565b82546001600160601b039182166101009390930a92830291909202199091161790555081546040805163ffffffff808a1682528816602082015290810186905260608101859052600160a01b909104600b0b60808201526001600160a01b038816907fbc0ff1d27e119160a9a107d0725b9ed31b90773cf47e89332a35a8c1a319eaee9060a00160405180910390a25050949350505050565b6132838383836001613ac0565b611c1a57604051635274afe760e01b81526001600160a01b0384166004820152602401610fa5565b5f6132b68484612412565b90505f198110156112c057818110156132e857828183604051637dc7a0d960e11b8152600401610fa59392919061503f565b6112c084848484035f6139dc565b6001600160a01b03831661331f57604051634b637e8f60e11b81525f6004820152602401610fa5565b6001600160a01b0382166133485760405163ec442f0560e01b81525f6004820152602401610fa5565b611c1a838383613b22565b606061141283835f613c3a565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806133d057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166133c4613d06565b6001600160a01b031614155b156133ee5760405163703e46dd60e11b815260040160405180910390fd5b565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561344a575060408051601f3d908101601f1916820190925261344791810190614e1b565b60015b61347257604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610fa5565b5f5160206155e85f395f51905f5281146134a257604051632a87526960e21b815260048101829052602401610fa5565b611c1a8383613d1a565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146133ee5760405163703e46dd60e11b815260040160405180910390fd5b5f63ffffffff838116146135185761351363ffffffff8416836153e0565b611412565b61141282613d6f565b61353461352c611612565b85308561359a565b61353e8382613e4c565b826001600160a01b0316846001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7848460405161358c929190918252602082015260400190565b60405180910390a350505050565b6135a8848484846001613e80565b6112c057604051635274afe760e01b81526001600160a01b0385166004820152602401610fa5565b6bffffffffffffffff000000006001600160e01b031960e09390931b9290921660c09190911b63ffffffff60c01b161760a01c1660609190911b6001600160601b0319161790565b5f613621612a42565b905082811015613756575f5f5160206156085f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa158015613680573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136a49190614e1b565b6136ae8386614e73565b11156136cd5760405163af8075e960e01b815260040160405180910390fd5b80546001600160a01b031663b460af946136e78487614e73565b6040516001600160e01b031960e084901b1681526004810191909152306024820181905260448201526064016020604051808303815f875af115801561372f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137539190614e1b565b50505b6137638686868686613eed565b505050505050565b5f6001600160601b03821115613173576040516306dfcc6560e41b81526060600482015260248101839052604401610fa5565b5f610d7d610448836123fa565b5f828218828410028218611412565b5f610d7d82611834565b6137cc613f94565b6133ee57604051631afcd79f60e31b815260040160405180910390fd5b6137f16137c4565b61215a81613fad565b6138026137c4565b6116528282614030565b6138146137c4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613870573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138949190615024565b60405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f196024830152919091169063095ea7b3906044016020604051808303815f875af1158015613902573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139269190615353565b5061215a81612fb2565b5f61395d61393d83614080565b801561395857505f8480613953576139536153cc565b868809115b151590565b6139688686866140ac565b611c7f9190614e46565b5f3660148082108015906139ae57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633145b156139d4576139c136828403815f614fc7565b6139ca916153f3565b60601c9250505090565b339250505090565b5f5160206155c85f395f51905f526001600160a01b038516613a135760405163e602df0560e01b81525f6004820152602401610fa5565b6001600160a01b038416613a3c57604051634a1406b160e11b81525f6004820152602401610fa5565b6001600160a01b038086165f90815260018301602090815260408083209388168352929052208390558115613ab957836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051613ab091815260200190565b60405180910390a35b5050505050565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f51148316613b16578383151615613b0a573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b5f5160206155c85f395f51905f526001600160a01b038416613b5c5781816002015f828254613b519190614e46565b90915550613bb99050565b6001600160a01b0384165f9081526020829052604090205482811015613b9b5784818460405163391434e360e21b8152600401610fa59392919061503f565b6001600160a01b0385165f9081526020839052604090209083900390555b6001600160a01b038316613bd7576002810180548390039055613bf5565b6001600160a01b0383165f9081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161358c91815260200190565b606081471015613c665760405163cf47918160e01b815247600482015260248101839052604401610fa5565b5f613c7285848661415c565b9050808015613c9357505f3d1180613c9357505f856001600160a01b03163b115b15613ca857613ca0614171565b915050611412565b8015613cd257604051639996b31560e01b81526001600160a01b0386166004820152602401610fa5565b3d15613ce557613ce061418a565b613cfe565b60405163d6bda27560e01b815260040160405180910390fd5b509392505050565b5f5f5160206155e85f395f51905f52611b34565b613d2382614195565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115613d6757611c1a82826141f8565b61165261427a565b6107e95f8062015180613d86636774858086614e73565b613d9091906153e0565b90505b81613da05761016d613da4565b61016e5b61ffff168110613e275781613dbb5761016d613dbf565b61016e5b613dcd9061ffff1682614e73565b9050613dd883615429565b9250613de560048461544d565b63ffffffff16158015613e205750613dfe60648461544d565b63ffffffff16151580613e205750613e186101908461544d565b63ffffffff16155b9150613d93565b613e318183614299565b613e3c846064615474565b63ffffffff166116d49190614e46565b6001600160a01b038216613e755760405163ec442f0560e01b81525f6004820152602401610fa5565b6116525f8383613b22565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f51148316613edc578383151615613ed0573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b826001600160a01b0316856001600160a01b031614613f1157613f118386836132ab565b613f1b838261437c565b613f2d613f26611612565b8584613276565b826001600160a01b0316846001600160a01b0316866001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db8585604051613f85929190918252602082015260400190565b60405180910390a45050505050565b5f613f9d612ab8565b54600160401b900460ff16919050565b613fb56137c4565b7f0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e005f80613fe1846143b0565b9150915081613ff1576012613ff3565b805b83546001600160a81b031916600160a01b60ff92909216919091026001600160a01b031916176001600160a01b0394909416939093179091555050565b6140386137c4565b5f5160206155c85f395f51905f527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0361407184826154d7565b50600481016112c083826154d7565b5f60028260038111156140955761409561478a565b61409f9190615591565b60ff166001149050919050565b5f5f5f6140b9868661443b565b91509150815f036140dd578381816140d3576140d36153cc565b0492505050611412565b8184116140f4576140f46003851502601118614457565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b5f5f5f83516020850186885af1949350505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b806001600160a01b03163b5f036141ca57604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610fa5565b5f5160206155e85f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f6142058484614468565b905080801561422657505f3d118061422657505f846001600160a01b03163b115b1561423b57614233614171565b915050610d7d565b801561426557604051639996b31560e01b81526001600160a01b0385166004820152602401610fa5565b3d15613ce55761427361418a565b5092915050565b34156133ee5760405163b398979f60e01b815260040160405180910390fd5b5f601f8310156142ab57506001610d7d565b81156142d457603c8310156142c257506002610d7d565b826142cc816155b2565b9350506142e5565b603b8310156142e557506002610d7d565b605a831061436f576078831061436857609783106143615760b5831061435a5760d483106143535760f3831061434c57610111831061434557610130831061433e5761014e831061433757600c614372565b600b614372565b600a614372565b6009614372565b6008614372565b6007614372565b6006614372565b6005614372565b6004614372565b60035b60ff169392505050565b6001600160a01b0382166143a557604051634b637e8f60e11b81525f6004820152602401610fa5565b611652825f83613b22565b5f5f5f6143bc60405190565b6040805160048152602481019091526020810180516001600160e01b031663313ce56760e01b1790529091505f9081906143f790879061447b565b509150915061440583604052565b818015614413575060203d10155b8015614420575060ff8111155b61442b575f5f61442f565b6001815b94509450505050915091565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f5f5f835160208501865af49392505050565b5f5f5f60405f855160208701885afa92505f51915060205190509250925092565b80356001600160e01b031981168114612cc5575f5ffd5b5f602082840312156144c3575f5ffd5b6114128261449c565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61141260208301846144cc565b634e487b7160e01b5f52604160045260245ffd5b60405161018081016001600160401b03811182821017156145435761454361450c565b60405290565b5f5f6001600160401b038411156145625761456261450c565b50604051601f19601f85018116603f011681018181106001600160401b03821117156145905761459061450c565b6040528381529050808284018510156145a7575f5ffd5b838360208301375f60208583010152509392505050565b5f82601f8301126145cd575f5ffd5b61141283833560208501614549565b6001600160a01b038116811461215a575f5ffd5b5f5f5f60608486031215614602575f5ffd5b83356001600160401b03811115614617575f5ffd5b614623868287016145be565b93505060208401356001600160401b0381111561463e575f5ffd5b61464a868287016145be565b925050604084013561465b816145dc565b809150509250925092565b5f60208284031215614676575f5ffd5b5035919050565b5f5f83601f84011261468d575f5ffd5b5081356001600160401b038111156146a3575f5ffd5b6020830191508360208260051b85010111156146bd575f5ffd5b9250929050565b5f5f5f5f606085870312156146d7575f5ffd5b84356146e2816145dc565b935060208501356001600160401b038111156146fc575f5ffd5b6147088782880161467d565b909450925050604085013561471c816145dc565b939692955090935050565b63ffffffff8116811461215a575f5ffd5b5f5f60408385031215614749575f5ffd5b8235614754816145dc565b9150602083013561476481614727565b809150509250929050565b5f6020828403121561477f575f5ffd5b8135611412816145dc565b634e487b7160e01b5f52602160045260245ffd5b600481106147ba57634e487b7160e01b5f52602160045260245ffd5b9052565b60208101610d7d828461479e565b5f5f604083850312156147dd575f5ffd5b82356147e8816145dc565b946020939093013593505050565b5f5f83601f840112614806575f5ffd5b5081356001600160401b0381111561481c575f5ffd5b6020830191508360208285010111156146bd575f5ffd5b5f5f5f5f5f60808688031215614847575f5ffd5b8535614852816145dc565b94506020860135614862816145dc565b93506040860135925060608601356001600160401b03811115614883575f5ffd5b61488f888289016147f6565b969995985093965092949392505050565b801515811461215a575f5ffd5b5f5f604083850312156148be575f5ffd5b82356148c9816145dc565b91506020830135614764816148a0565b5f5f5f5f5f60a086880312156148ed575f5ffd5b85356148f8816145dc565b9450602086013561490881614727565b9350604086013561491881614727565b925060608601359150608086013561492f816145dc565b809150509295509295909350565b5f5f5f6060848603121561494f575f5ffd5b833561495a816145dc565b9250602084013561496a816145dc565b929592945050506040919091013590565b5f5f5f6040848603121561498d575f5ffd5b8335614998816145dc565b925060208401356001600160401b038111156149b2575f5ffd5b6149be868287016147f6565b9497909650939450505050565b5f5f604083850312156149dc575f5ffd5b82356149e7816145dc565b915060208301356001600160401b03811115614a01575f5ffd5b8301601f81018513614a11575f5ffd5b614a2085823560208401614549565b9150509250929050565b5f5f5f5f60808587031215614a3d575f5ffd5b8435614a48816145dc565b93506020850135614a58816145dc565b93969395505050506040820135916060013590565b5f5f5f5f5f5f60c08789031215614a82575f5ffd5b8635614a8d816145dc565b95506020870135614a9d816145dc565b95989597505050506040840135936060810135936080820135935060a0909101359150565b5f5f60408385031215614ad3575f5ffd5b823591506020830135614764816145dc565b5f5f5f5f60808587031215614af8575f5ffd5b8435614b03816145dc565b93506020850135614b1381614727565b92506040850135614b2381614727565b9396929550929360600135925050565b5f5f5f60608486031215614b45575f5ffd5b8335614b50816145dc565b92506020840135614b6081614727565b9150604084013561465b81614727565b5f5f5f60608486031215614b82575f5ffd5b833592506020840135614b94816145dc565b9150604084013561465b816145dc565b5f5f5f60608486031215614bb6575f5ffd5b8335614bc1816145dc565b95602085013595506040909401359392505050565b5f5f5f5f60808587031215614be9575f5ffd5b8435614bf4816145dc565b93506020850135614a5881614727565b5f5f60408385031215614c15575f5ffd5b8235614c20816145dc565b9150614c2e6020840161449c565b90509250929050565b5f5f5f5f60608587031215614c4a575f5ffd5b8435614c55816145dc565b935060208501356001600160401b03811115614c6f575f5ffd5b614708878288016147f6565b5f61018082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e083015160e0830152610100830151610100830152610120830151610120830152610140830151614cff61014084018264ffffffffff169052565b5061016083015161427361016084018264ffffffffff169052565b5f5f60408385031215614d2b575f5ffd5b8235614d36816145dc565b91506020830135614764816145dc565b5f5f5f60408486031215614d58575f5ffd5b8335614d63816145dc565b925060208401356001600160401b03811115614d7d575f5ffd5b6149be8682870161467d565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b82811015614de057603f19878603018452614dcb8583516144cc565b94506020938401939190910190600101614daf565b50929695505050505050565b5f5f60408385031215614dfd575f5ffd5b8235614e08816145dc565b9150602083013560048110614764575f5ffd5b5f60208284031215614e2b575f5ffd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610d7d57610d7d614e32565b5f600160ff1b8201614e6d57614e6d614e32565b505f0390565b81810381811115610d7d57610d7d614e32565b600181811c90821680614e9a57607f821691505b602082108103614eb857634e487b7160e01b5f52602260045260245ffd5b50919050565b6001600160a01b038316815260408101611412602083018461479e565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b604080825281018390525f6060600585901b830181019083018683601e1936839003015b88821015614f9457868503605f190184528235818112614f45575f5ffd5b8a016020810190356001600160401b03811115614f60575f5ffd5b803603821315614f6e575f5ffd5b614f79878284614edb565b96505050602083019250602084019350600182019150614f27565b5050506001600160a01b03851660208501525090506116d4565b60ff8181168382160190811115610d7d57610d7d614e32565b5f5f85851115614fd5575f5ffd5b83861115614fe1575f5ffd5b5050820193919092039150565b80356001600160e01b03198116906004841015614273576001600160e01b031960049490940360031b84901b1690921692915050565b5f60208284031215615034575f5ffd5b8151611412816145dc565b6001600160a01b039390931683526020830191909152604082015260600190565b5f608082019050825463ffffffff811683526150856020840160ff8360201c1661479e565b6001600160601b038160281c1660408401526001600160601b038160881c1660608401525092915050565b604081525f6150c3604083018587614edb565b905060018060a01b0383166020830152949350505050565b805164ffffffffff81168114612cc5575f5ffd5b5f610180828403128015615101575f5ffd5b5061510a614520565b825181526020808401519082015260408084015190820152606080840151908201526080808401519082015260a0808401519082015260c0808401519082015260e080840151908201526101008084015190820152610120808401519082015261517761014084016150db565b61014082015261518a61016084016150db565b6101608201529392505050565b634e487b7160e01b5f52603260045260245ffd5b5f5f8335601e198436030181126151c0575f5ffd5b8301803591506001600160401b038211156151d9575f5ffd5b6020019150368190038213156146bd575f5ffd5b604081016151fb828561479e565b611412602083018461479e565b6001815b60018411156152435780850481111561522757615227614e32565b600184161561523557908102905b60019390931c92800261520c565b935093915050565b5f8261525957506001610d7d565b8161526557505f610d7d565b816001811461527b5760028114615285576152a1565b6001915050610d7d565b60ff84111561529657615296614e32565b50506001821b610d7d565b5060208310610133831016604e8410600b84101617156152c4575081810a610d7d565b6152d05f198484615208565b805f19048211156152e3576152e3614e32565b029392505050565b5f61141260ff84168361524b565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b5f5f60408385031215615337575f5ffd5b8251615342816148a0565b602084015190925061476481614727565b5f60208284031215615363575f5ffd5b8151611412816148a0565b8082018281125f83128015821682158216171561538d5761538d614e32565b505092915050565b600b81810b9083900b016b7fffffffffffffffffffffff81136b7fffffffffffffffffffffff1982121715610d7d57610d7d614e32565b634e487b7160e01b5f52601260045260245ffd5b5f826153ee576153ee6153cc565b500490565b80356001600160601b03198116906014841015614273576001600160601b031960149490940360031b84901b1690921692915050565b5f63ffffffff821663ffffffff810361544457615444614e32565b60010192915050565b5f63ffffffff831680615462576154626153cc565b8063ffffffff84160691505092915050565b63ffffffff818116838216029081169081811461427357614273614e32565b601f821115611c1a57805f5260205f20601f840160051c810160208510156154b85750805b601f840160051c820191505b81811015613ab9575f81556001016154c4565b81516001600160401b038111156154f0576154f061450c565b615504816154fe8454614e86565b84615493565b6020601f821160018114615536575f831561551f5750848201515b5f19600385901b1c1916600184901b178455613ab9565b5f84815260208120601f198516915b828110156155655787850151825560209485019460019092019101615545565b508482101561558257868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60ff8316806155a3576155a36153cc565b8060ff84160691505092915050565b5f816155c0576155c0614e32565b505f19019056fe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af00a26469706673582212203faa8777e79c7e94e6f208b881608764231d9f4d05936629119d589c2645769264736f6c634300081e0033","opcodes":"PUSH1 0xE0 PUSH1 0x40 MSTORE ADDRESS PUSH1 0xA0 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x13 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x583B CODESIZE SUB DUP1 PUSH2 0x583B DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x32 SWAP2 PUSH2 0x11A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x80 MSTORE DUP2 AND PUSH1 0xC0 MSTORE PUSH2 0x4D PUSH2 0x54 JUMP JUMPDEST POP POP PUSH2 0x152 JUMP JUMPDEST PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 DUP1 SLOAD PUSH9 0x10000000000000000 SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xA4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND EQ PUSH2 0x103 JUMPI DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 OR DUP3 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x103 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x12B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x136 DUP2 PUSH2 0x106 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x147 DUP2 PUSH2 0x106 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH2 0x565D PUSH2 0x1DE PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x6C6 ADD MSTORE DUP2 DUP2 PUSH2 0x1145 ADD MSTORE DUP2 DUP2 PUSH2 0x156B ADD MSTORE DUP2 DUP2 PUSH2 0x167D ADD MSTORE DUP2 DUP2 PUSH2 0x16E8 ADD MSTORE DUP2 DUP2 PUSH2 0x22F6 ADD MSTORE DUP2 DUP2 PUSH2 0x2672 ADD MSTORE DUP2 DUP2 PUSH2 0x272D ADD MSTORE DUP2 DUP2 PUSH2 0x2AEB ADD MSTORE DUP2 DUP2 PUSH2 0x3816 ADD MSTORE PUSH2 0x38AB ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x336B ADD MSTORE DUP2 DUP2 PUSH2 0x3394 ADD MSTORE PUSH2 0x34B7 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x72D ADD MSTORE DUP2 DUP2 PUSH2 0x811 ADD MSTORE PUSH2 0x3983 ADD MSTORE PUSH2 0x565D PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x392 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7DA0A877 GT PUSH2 0x1DE JUMPI DUP1 PUSH4 0xBFDB20DA GT PUSH2 0x108 JUMPI DUP1 PUSH4 0xD6281D3E GT PUSH2 0x9D JUMPI DUP1 PUSH4 0xE8E617B7 GT PUSH2 0x6D JUMPI DUP1 PUSH4 0xE8E617B7 EQ PUSH2 0xB42 JUMPI DUP1 PUSH4 0xEE07ABBB EQ PUSH2 0xB61 JUMPI DUP1 PUSH4 0xEF8B30F7 EQ PUSH2 0xA1C JUMPI DUP1 PUSH4 0xF7A39333 EQ PUSH2 0xB80 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xD6281D3E EQ PUSH2 0xAB9 JUMPI DUP1 PUSH4 0xD905777E EQ PUSH2 0xAD8 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0xAF7 JUMPI DUP1 PUSH4 0xE77659FD EQ PUSH2 0xB16 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xCC671A18 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0xCC671A18 EQ PUSH2 0xA3B JUMPI DUP1 PUSH4 0xCE96CB77 EQ PUSH2 0xA4F JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0xA6E JUMPI DUP1 PUSH4 0xD52F99CE EQ PUSH2 0xA8D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xBFDB20DA EQ PUSH2 0x9DE JUMPI DUP1 PUSH4 0xC0C51217 EQ PUSH2 0x9FD JUMPI DUP1 PUSH4 0xC63D75B6 EQ PUSH2 0x698 JUMPI DUP1 PUSH4 0xC6E6F592 EQ PUSH2 0xA1C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA9059CBB GT PUSH2 0x17E JUMPI DUP1 PUSH4 0xB3D7F6B9 GT PUSH2 0x14E JUMPI DUP1 PUSH4 0xB3D7F6B9 EQ PUSH2 0x962 JUMPI DUP1 PUSH4 0xB460AF94 EQ PUSH2 0x981 JUMPI DUP1 PUSH4 0xBA087652 EQ PUSH2 0x9A0 JUMPI DUP1 PUSH4 0xBDB5371D EQ PUSH2 0x9BF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x8D9 JUMPI DUP1 PUSH4 0xA9ED1487 EQ PUSH2 0x8F8 JUMPI DUP1 PUSH4 0xAC860F74 EQ PUSH2 0x913 JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x932 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x94BF804D GT PUSH2 0x1B9 JUMPI DUP1 PUSH4 0x94BF804D EQ PUSH2 0x873 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x892 JUMPI DUP1 PUSH4 0xA3AC9390 EQ PUSH2 0x8A6 JUMPI DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0x8C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x7DA0A877 EQ PUSH2 0x803 JUMPI DUP1 PUSH4 0x82DBBD71 EQ PUSH2 0x835 JUMPI DUP1 PUSH4 0x86B44083 EQ PUSH2 0x854 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0x2BF JUMPI DUP1 PUSH4 0x4F1EF286 GT PUSH2 0x25F JUMPI DUP1 PUSH4 0x62EB345E GT PUSH2 0x22F JUMPI DUP1 PUSH4 0x62EB345E EQ PUSH2 0x77C JUMPI DUP1 PUSH4 0x6E553F65 EQ PUSH2 0x79B JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x7BA JUMPI DUP1 PUSH4 0x759076E5 EQ PUSH2 0x7D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x6EA JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x6FD JUMPI DUP1 PUSH4 0x572B6C05 EQ PUSH2 0x711 JUMPI DUP1 PUSH4 0x5EE0C7DD EQ PUSH2 0x75D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x3EDEB257 GT PUSH2 0x29A JUMPI DUP1 PUSH4 0x3EDEB257 EQ PUSH2 0x66C JUMPI DUP1 PUSH4 0x402D267D EQ PUSH2 0x698 JUMPI DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x42E JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x6B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 EQ PUSH2 0x5FB JUMPI DUP1 PUSH4 0x33BDED3C EQ PUSH2 0x621 JUMPI DUP1 PUSH4 0x38D52E0F EQ PUSH2 0x640 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x91EA8A6 GT PUSH2 0x335 JUMPI DUP1 PUSH4 0x18160DDD GT PUSH2 0x305 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x56B JUMPI DUP1 PUSH4 0x194448E5 EQ PUSH2 0x59E JUMPI DUP1 PUSH4 0x225C531E EQ PUSH2 0x5BD JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x5DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x91EA8A6 EQ PUSH2 0x48B JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x4F5 JUMPI DUP1 PUSH4 0xA28A477 EQ PUSH2 0x514 JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x533 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x77F224A GT PUSH2 0x370 JUMPI DUP1 PUSH4 0x77F224A EQ PUSH2 0x40D JUMPI DUP1 PUSH4 0x7A2D13A EQ PUSH2 0x42E JUMPI DUP1 PUSH4 0x7C2E878 EQ PUSH2 0x44D JUMPI DUP1 PUSH4 0x8742D90 EQ PUSH2 0x46C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1E1D114 EQ PUSH2 0x396 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x3BD JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x3EC JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0xB9F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DC PUSH2 0x3D7 CALLDATASIZE PUSH1 0x4 PUSH2 0x44B3 JUMP JUMPDEST PUSH2 0xCE1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3F7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x400 PUSH2 0xD83 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B4 SWAP2 SWAP1 PUSH2 0x44FA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x418 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x427 CALLDATASIZE PUSH1 0x4 PUSH2 0x45F0 JUMP JUMPDEST PUSH2 0xE43 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x439 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x448 CALLDATASIZE PUSH1 0x4 PUSH2 0x4666 JUMP JUMPDEST PUSH2 0xF3E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x458 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x467 CALLDATASIZE PUSH1 0x4 PUSH2 0x46C4 JUMP JUMPDEST PUSH2 0xF49 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x477 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x486 CALLDATASIZE PUSH1 0x4 PUSH2 0x4738 JUMP JUMPDEST PUSH2 0x1070 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x496 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x4E8 PUSH2 0x4A5 CALLDATASIZE PUSH1 0x4 PUSH2 0x476F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B4 SWAP2 SWAP1 PUSH2 0x47BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x500 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DC PUSH2 0x50F CALLDATASIZE PUSH1 0x4 PUSH2 0x47CC JUMP JUMPDEST PUSH2 0x110C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x51F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x52E CALLDATASIZE PUSH1 0x4 PUSH2 0x4666 JUMP JUMPDEST PUSH2 0x112D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x552 PUSH2 0x54D CALLDATASIZE PUSH1 0x4 PUSH2 0x4833 JUMP JUMPDEST PUSH2 0x1139 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x576 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x3AA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5A9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x5B8 CALLDATASIZE PUSH1 0x4 PUSH2 0x48AD JUMP JUMPDEST PUSH2 0x11A3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x5D7 CALLDATASIZE PUSH1 0x4 PUSH2 0x48D9 JUMP JUMPDEST PUSH2 0x12C6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5E7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DC PUSH2 0x5F6 CALLDATASIZE PUSH1 0x4 PUSH2 0x493D JUMP JUMPDEST PUSH2 0x13EA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x606 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x60F PUSH2 0x1419 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x62C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x400 PUSH2 0x63B CALLDATASIZE PUSH1 0x4 PUSH2 0x497B JUMP JUMPDEST PUSH2 0x1455 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x64B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x654 PUSH2 0x1612 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x677 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x683 PUSH4 0xFFFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x6B2 CALLDATASIZE PUSH1 0x4 PUSH2 0x476F JUMP JUMPDEST POP PUSH0 NOT SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6C3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x654 JUMP JUMPDEST PUSH2 0x42C PUSH2 0x6F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x49CB JUMP JUMPDEST PUSH2 0x1640 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x708 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x1656 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x71C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DC PUSH2 0x72B CALLDATASIZE PUSH1 0x4 PUSH2 0x476F JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 AND EQ SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x768 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x552 PUSH2 0x777 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A2A JUMP JUMPDEST PUSH2 0x1671 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x787 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x552 PUSH2 0x796 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A6D JUMP JUMPDEST PUSH2 0x16DC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7A6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x7B5 CALLDATASIZE PUSH1 0x4 PUSH2 0x4AC2 JUMP JUMPDEST PUSH2 0x1812 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x7D4 CALLDATASIZE PUSH1 0x4 PUSH2 0x476F JUMP JUMPDEST PUSH2 0x1834 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x3AA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x80E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x654 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x840 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x84F CALLDATASIZE PUSH1 0x4 PUSH2 0x4AE5 JUMP JUMPDEST PUSH2 0x185A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x85F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x400 PUSH2 0x86E CALLDATASIZE PUSH1 0x4 PUSH2 0x497B JUMP JUMPDEST PUSH2 0x1944 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x87E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x88D CALLDATASIZE PUSH1 0x4 PUSH2 0x4AC2 JUMP JUMPDEST PUSH2 0x1A70 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x89D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x400 PUSH2 0x1A92 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x8C0 CALLDATASIZE PUSH1 0x4 PUSH2 0x4B33 JUMP JUMPDEST PUSH2 0x1AD0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x654 PUSH2 0x1B24 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DC PUSH2 0x8F3 CALLDATASIZE PUSH1 0x4 PUSH2 0x47CC JUMP JUMPDEST PUSH2 0x1B43 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x903 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x552 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x91E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x92D CALLDATASIZE PUSH1 0x4 PUSH2 0x4666 JUMP JUMPDEST PUSH2 0x1B5A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x93D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x400 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x96D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x97C CALLDATASIZE PUSH1 0x4 PUSH2 0x4666 JUMP JUMPDEST PUSH2 0x1C1F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x98C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x99B CALLDATASIZE PUSH1 0x4 PUSH2 0x4B70 JUMP JUMPDEST PUSH2 0x1C2B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9AB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x9BA CALLDATASIZE PUSH1 0x4 PUSH2 0x4B70 JUMP JUMPDEST PUSH2 0x1C88 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9CA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x9D9 CALLDATASIZE PUSH1 0x4 PUSH2 0x4BA4 JUMP JUMPDEST PUSH2 0x1CDC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x9F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x4BD6 JUMP JUMPDEST PUSH2 0x1DC6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA08 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x552 PUSH2 0xA17 CALLDATASIZE PUSH1 0x4 PUSH2 0x4C04 JUMP JUMPDEST PUSH2 0x1FB2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA27 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0xA36 CALLDATASIZE PUSH1 0x4 PUSH2 0x4666 JUMP JUMPDEST PUSH2 0x1FFC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA46 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x2007 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA5A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0xA69 CALLDATASIZE PUSH1 0x4 PUSH2 0x476F JUMP JUMPDEST PUSH2 0x2093 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA79 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0xA88 CALLDATASIZE PUSH1 0x4 PUSH2 0x4666 JUMP JUMPDEST PUSH2 0x20AD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA98 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xAAC PUSH2 0xAA7 CALLDATASIZE PUSH1 0x4 PUSH2 0x4C37 JUMP JUMPDEST PUSH2 0x215D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B4 SWAP2 SWAP1 PUSH2 0x4C7B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAC4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x552 PUSH2 0xAD3 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A2A JUMP JUMPDEST PUSH2 0x22EA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAE3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0xAF2 CALLDATASIZE PUSH1 0x4 PUSH2 0x476F JUMP JUMPDEST PUSH2 0x23FA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB02 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0xB11 CALLDATASIZE PUSH1 0x4 PUSH2 0x4D1A JUMP JUMPDEST PUSH2 0x2412 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB21 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xB35 PUSH2 0xB30 CALLDATASIZE PUSH1 0x4 PUSH2 0x4D46 JUMP JUMPDEST PUSH2 0x245B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B4 SWAP2 SWAP1 PUSH2 0x4D89 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB4D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x552 PUSH2 0xB5C CALLDATASIZE PUSH1 0x4 PUSH2 0x493D JUMP JUMPDEST PUSH2 0x2721 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB6C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xB35 PUSH2 0xB7B CALLDATASIZE PUSH1 0x4 PUSH2 0x4D46 JUMP JUMPDEST PUSH2 0x2789 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB8B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0xB9A CALLDATASIZE PUSH1 0x4 PUSH2 0x4DEC JUMP JUMPDEST PUSH2 0x2983 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0xBB6 PUSH2 0x2A42 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC04 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 0xC28 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC46 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC61 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 0xC85 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH2 0xC8F SWAP1 DUP4 PUSH2 0x4E46 JUMP JUMPDEST DUP2 SLOAD SWAP1 SWAP3 POP PUSH0 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xB SIGNEXTEND SLT ISZERO PUSH2 0xCCB JUMPI DUP1 SLOAD PUSH2 0xCBB SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x4E59 JUMP JUMPDEST PUSH2 0xCC5 SWAP1 DUP4 PUSH2 0x4E73 JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH2 0xCC5 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND DUP4 PUSH2 0x4E46 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0xD11 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x162FC85 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0xD2C JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x36372B07 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xD47 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA219A025 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xD62 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x43EFF2D PUSH1 0xE5 SHL EQ JUMPDEST DUP1 PUSH2 0xD7D 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 PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0xDC1 SWAP1 PUSH2 0x4E86 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 0xDED SWAP1 PUSH2 0x4E86 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xE38 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xE0F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xE38 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 0xE1B JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xE4C PUSH2 0x2AB8 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0xE72 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0xE8D JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xE9B JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xEB9 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0xEE3 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0xEEE DUP9 DUP9 DUP9 PUSH2 0x2AE0 JUMP JUMPDEST DUP4 ISZERO PUSH2 0xF34 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD7D DUP3 PUSH0 PUSH2 0x2B87 JUMP JUMPDEST DUP4 PUSH0 PUSH2 0xF54 DUP3 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xF75 JUMPI PUSH2 0xF75 PUSH2 0x478A JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0xFAE JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP3 SWAP2 SWAP1 PUSH2 0x4EBE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP PUSH0 PUSH2 0xFBA DUP3 PUSH2 0x2C76 JUMP JUMPDEST SWAP1 POP PUSH2 0xFD5 PUSH2 0xFC7 PUSH2 0x2CCA JUMP JUMPDEST DUP9 PUSH4 0x46D58CA9 PUSH1 0xE1 SHL PUSH2 0x2CD3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ADDRESS EQ PUSH2 0xFFF JUMPI PUSH2 0xFFF PUSH2 0xFF0 PUSH2 0x2CCA JUMP JUMPDEST DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x2CD3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3E1E7C3 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 PUSH4 0x1F0F3E18 SWAP1 PUSH2 0x102F SWAP1 DUP10 SWAP1 DUP10 SWAP1 DUP10 SWAP1 PUSH1 0x4 ADD PUSH2 0x4F03 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1046 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1058 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH2 0x1067 DUP4 DUP4 DUP4 PUSH2 0x2DD5 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x1096 JUMPI PUSH1 0x40 MLOAD PUSH4 0x294DA6C7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x10A0 DUP4 PUSH2 0x2BDE JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP6 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP2 PUSH32 0x4345EC61F717774FDB684B701C34934889550330DA2B93F2C3A33379DB77F817 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 SLOAD PUSH4 0xFFFFFFFF NOT AND PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1116 PUSH2 0x2CCA JUMP JUMPDEST SWAP1 POP PUSH2 0x1123 DUP2 DUP6 DUP6 PUSH2 0x2E5E JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD7D DUP3 PUSH1 0x1 PUSH2 0x2E6B JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x1190 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0xFA5 JUMP JUMPDEST POP PUSH4 0xA85BD01 PUSH1 0xE1 SHL SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1204 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 0x1228 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1246 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1261 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 0x1285 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x1291 DUP3 PUSH2 0x2EB9 JUMP JUMPDEST EQ DUP1 PUSH2 0x129A JUMPI POP DUP3 JUMPDEST PUSH2 0x12B7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x292D4C4B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x12C0 DUP5 PUSH2 0x2FB2 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x12CF DUP6 PUSH2 0x2BDE JUMP JUMPDEST POP PUSH0 PUSH2 0x12E5 DUP7 DUP7 DUP7 PUSH2 0x12E0 DUP8 PUSH2 0x3147 JUMP JUMPDEST PUSH2 0x3177 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 PUSH0 DUP2 SGT ISZERO PUSH2 0x1313 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC97A6BF PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xFA5 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x131E PUSH2 0x2A42 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x1362 JUMPI PUSH2 0x1332 DUP2 DUP6 PUSH2 0x4E73 JUMP JUMPDEST PUSH2 0x1344 PUSH2 0x133F DUP4 DUP8 PUSH2 0x4E73 JUMP JUMPDEST PUSH2 0x2EB9 JUMP JUMPDEST EQ PUSH2 0x1362 JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x137F DUP4 DUP6 PUSH2 0x136F PUSH2 0x1612 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x3276 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP1 DUP10 AND DUP3 MSTORE DUP8 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x80 DUP4 ADD MSTORE DUP9 AND SWAP1 PUSH32 0xCC010DD322EB2BC19138CF20160AD5643925810F442FC6C5D48B9B4C59B34EFE SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x13F4 PUSH2 0x2CCA JUMP JUMPDEST SWAP1 POP PUSH2 0x1401 DUP6 DUP3 DUP6 PUSH2 0x32AB JUMP JUMPDEST PUSH2 0x140C DUP6 DUP6 DUP6 PUSH2 0x32F6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH32 0x773E532DFEDE91F04B12A73D3D2ACD361424F41F76B4FB79F090161E36B4E00 SWAP1 POP PUSH0 DUP2 SLOAD PUSH2 0xCC5 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x4FAE JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x1462 DUP3 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1483 JUMPI PUSH2 0x1483 PUSH2 0x478A JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x14B3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP3 SWAP2 SWAP1 PUSH2 0x4EBE JUMP JUMPDEST POP POP PUSH0 PUSH2 0x14BF DUP3 PUSH2 0x2C76 JUMP JUMPDEST SWAP1 POP PUSH2 0x14E8 PUSH2 0x14CC PUSH2 0x2CCA JUMP JUMPDEST DUP9 PUSH2 0x14DA PUSH1 0x4 PUSH0 DUP11 DUP13 PUSH2 0x4FC7 JUMP JUMPDEST PUSH2 0x14E3 SWAP2 PUSH2 0x4FEE JUMP JUMPDEST PUSH2 0x2CD3 JUMP JUMPDEST PUSH2 0x1531 DUP7 DUP7 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 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP3 SWAP2 POP POP PUSH2 0x3353 JUMP JUMPDEST SWAP4 POP PUSH0 DUP5 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1548 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x15B0 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 0x15D4 SWAP2 SWAP1 PUSH2 0x5024 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x15FC JUMPI PUSH2 0x15FC PUSH2 0x15ED PUSH2 0x2CCA JUMP JUMPDEST DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x2CD3 JUMP JUMPDEST POP PUSH2 0x1608 DUP4 DUP4 DUP4 PUSH2 0x2DD5 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x773E532DFEDE91F04B12A73D3D2ACD361424F41F76B4FB79F090161E36B4E00 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x1648 PUSH2 0x3360 JUMP JUMPDEST PUSH2 0x1652 DUP3 DUP3 PUSH2 0x33F0 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x165F PUSH2 0x34AC JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55E8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x16C8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0xFA5 JUMP JUMPDEST POP PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x1733 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0xFA5 JUMP JUMPDEST POP PUSH0 PUSH2 0x173E DUP9 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x175F JUMPI PUSH2 0x175F PUSH2 0x478A JUMP JUMPDEST EQ DUP1 PUSH2 0x1787 JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1785 JUMPI PUSH2 0x1785 PUSH2 0x478A JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP10 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x17B6 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP3 SWAP2 SWAP1 PUSH2 0x4EBE JUMP JUMPDEST POP PUSH0 SWAP1 POP DUP4 PUSH2 0x17C5 DUP7 DUP9 PUSH2 0x4E46 JUMP JUMPDEST PUSH2 0x17CF SWAP2 SWAP1 PUSH2 0x4E46 JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH2 0x17FC SWAP1 DUP11 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x17EA DUP2 TIMESTAMP PUSH2 0x34F5 JUMP JUMPDEST PUSH2 0x17F3 DUP6 PUSH2 0x3147 JUMP JUMPDEST PUSH2 0x12E0 SWAP1 PUSH2 0x4E59 JUMP JUMPDEST POP PUSH4 0x31759A2F PUSH1 0xE1 SHL SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 NOT PUSH0 PUSH2 0x181F DUP6 PUSH2 0x1FFC JUMP JUMPDEST SWAP1 POP PUSH2 0x16D4 PUSH2 0x182C PUSH2 0x2CCA JUMP JUMPDEST DUP6 DUP8 DUP5 PUSH2 0x3521 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x1863 DUP5 PUSH2 0x2BDE JUMP JUMPDEST POP PUSH0 PUSH2 0x1874 DUP6 DUP6 DUP6 PUSH2 0x17F3 DUP7 PUSH2 0x3147 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 PUSH0 DUP2 SLT ISZERO PUSH2 0x18A2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x239DE571 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xFA5 JUMP JUMPDEST POP POP PUSH2 0x18CA PUSH2 0x18AF PUSH2 0x2CCA JUMP JUMPDEST ADDRESS DUP5 PUSH2 0x18B9 PUSH2 0x1612 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x359A JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFE14813540C7709C2D7E702F39B104EEED265DD484F899E9F2F89C801AA6395C DUP6 DUP6 DUP6 DUP6 PUSH2 0x1901 PUSH2 0x2CCA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP7 DUP8 AND DUP2 MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x20 DUP7 ADD MSTORE SWAP3 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x1951 DUP3 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1972 JUMPI PUSH2 0x1972 PUSH2 0x478A JUMP JUMPDEST EQ DUP1 PUSH2 0x199A JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1998 JUMPI PUSH2 0x1998 PUSH2 0x478A JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x19C9 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP3 SWAP2 SWAP1 PUSH2 0x4EBE JUMP JUMPDEST POP POP PUSH0 PUSH2 0x19D4 PUSH2 0x2A42 JUMP JUMPDEST SWAP1 POP PUSH2 0x19E1 PUSH2 0x14CC PUSH2 0x2CCA JUMP JUMPDEST PUSH2 0x1A2A DUP7 DUP7 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 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP3 SWAP2 POP POP PUSH2 0x3353 JUMP JUMPDEST SWAP4 POP PUSH0 PUSH2 0x1A35 PUSH2 0x2A42 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1A65 JUMPI PUSH2 0x1A49 DUP2 DUP4 PUSH2 0x4E73 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x51F59775 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 NOT PUSH0 PUSH2 0x1A7D DUP6 PUSH2 0x1C1F JUMP JUMPDEST SWAP1 POP PUSH2 0x16D4 PUSH2 0x1A8A PUSH2 0x2CCA JUMP JUMPDEST DUP6 DUP4 DUP9 PUSH2 0x3521 JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE04 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0xDC1 SWAP1 PUSH2 0x4E86 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF02 DUP3 PUSH2 0x1B0C DUP8 DUP8 DUP8 PUSH2 0x35D0 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1B4D PUSH2 0x2CCA JUMP JUMPDEST SWAP1 POP PUSH2 0x1123 DUP2 DUP6 DUP6 PUSH2 0x32F6 JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x1B71 JUMPI PUSH2 0x1B6A PUSH2 0x2A42 JUMP JUMPDEST SWAP1 POP PUSH2 0x1B99 JUMP JUMPDEST PUSH2 0x1B79 PUSH2 0x2A42 JUMP JUMPDEST DUP2 GT ISZERO PUSH2 0x1B99 JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1BF6 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 0x1C1A SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD7D DUP3 PUSH1 0x1 PUSH2 0x2B87 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1C36 DUP4 PUSH2 0x2093 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x1C5F JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3FA733BB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x503F JUMP JUMPDEST PUSH0 PUSH2 0x1C69 DUP7 PUSH2 0x112D JUMP JUMPDEST SWAP1 POP PUSH2 0x1C7F PUSH2 0x1C76 PUSH2 0x2CCA JUMP JUMPDEST DUP7 DUP7 DUP10 DUP6 PUSH2 0x3618 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1C93 DUP4 PUSH2 0x23FA JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x1CBC JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x2E52AFBB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x503F JUMP JUMPDEST PUSH0 PUSH2 0x1CC6 DUP7 PUSH2 0xF3E JUMP JUMPDEST SWAP1 POP PUSH2 0x1C7F PUSH2 0x1CD3 PUSH2 0x2CCA JUMP JUMPDEST DUP7 DUP7 DUP5 DUP11 PUSH2 0x3618 JUMP JUMPDEST PUSH0 PUSH2 0x1CE6 DUP5 PUSH2 0x2BDE JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x1 PUSH1 0x28 SHL DUP5 DIV DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x88 SHL SWAP1 SWAP4 DIV SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP2 ADD DUP5 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0x7E293D291E9DD159F2FBDE9523C4191674384553A72C0833BA9CF7DCB5381FB7 SWAP1 PUSH1 0x80 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x1D60 DUP4 PUSH2 0x376B JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH17 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000 NOT SWAP1 SWAP2 AND OR DUP2 SSTORE PUSH2 0x1D96 DUP3 PUSH2 0x376B JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x88 SHL MUL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x88 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP3 SWAP1 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1E29 JUMPI PUSH2 0x1E29 PUSH2 0x478A JUMP JUMPDEST EQ PUSH2 0x1E47 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCD43EFA1 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x1E6D JUMPI PUSH1 0x40 MLOAD PUSH4 0x294DA6C7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH4 0xFFFFFFFF DUP8 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD PUSH2 0x1E93 DUP7 PUSH2 0x376B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1EAA DUP6 PUSH2 0x376B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP5 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 DUP3 MLOAD DUP2 SLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH4 0xFFFFFFFF NOT DUP3 AND DUP2 OR DUP4 SSTORE SWAP3 DUP5 ADD MLOAD SWAP2 SWAP3 DUP4 SWAP2 PUSH5 0xFFFFFFFFFF NOT AND OR PUSH1 0x1 PUSH1 0x20 SHL DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1F11 JUMPI PUSH2 0x1F11 PUSH2 0x478A JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 DUP2 ADD MLOAD DUP3 SLOAD PUSH1 0x60 SWAP1 SWAP5 ADD MLOAD PUSH6 0x10000000000 PUSH1 0x1 PUSH1 0xE8 SHL SUB NOT SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x28 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP3 DUP4 AND MUL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x88 SHL NOT AND OR PUSH1 0x1 PUSH1 0x88 SHL SWAP2 SWAP1 SWAP5 AND MUL SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP1 PUSH32 0x422C963A67D52178B43A807B8C9DF3A99468F416B736F9F040B6392CF790752E SWAP1 PUSH2 0x1FA2 SWAP1 DUP5 SWAP1 PUSH2 0x5060 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP5 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH1 0x34 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH2 0x1412 SWAP1 PUSH1 0x38 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xD7D DUP3 PUSH0 PUSH2 0x2E6B JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x205D 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 0x2081 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH2 0x2089 PUSH2 0x2A42 JUMP JUMPDEST PUSH2 0xCC5 SWAP2 SWAP1 PUSH2 0x4E46 JUMP JUMPDEST PUSH0 PUSH2 0xD7D PUSH2 0x20A0 DUP4 PUSH2 0x379E JUMP JUMPDEST PUSH2 0x20A8 PUSH2 0x2007 JUMP JUMPDEST PUSH2 0x37AB JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x2132 JUMPI PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x210A 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 0x212E SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST SWAP2 POP POP JUMPDEST DUP1 PUSH2 0x213C DUP3 PUSH2 0x2EB9 JUMP JUMPDEST EQ PUSH2 0x215A JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x21C3 PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP5 PUSH0 PUSH2 0x21CE DUP3 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x21EF JUMPI PUSH2 0x21EF PUSH2 0x478A JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x221F JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP3 SWAP2 SWAP1 PUSH2 0x4EBE JUMP JUMPDEST POP POP PUSH0 PUSH2 0x222B DUP3 PUSH2 0x2C76 JUMP JUMPDEST SWAP1 POP PUSH2 0x2246 PUSH2 0x2238 PUSH2 0x2CCA JUMP JUMPDEST DUP10 PUSH4 0x46D58CA9 PUSH1 0xE1 SHL PUSH2 0x2CD3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND ADDRESS EQ PUSH2 0x2261 JUMPI PUSH2 0x2261 PUSH2 0x15ED PUSH2 0x2CCA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x46D58CA9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND SWAP1 PUSH4 0x8DAB1952 SWAP1 PUSH2 0x2291 SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP11 SWAP1 PUSH1 0x4 ADD PUSH2 0x50B0 JUMP JUMPDEST PUSH2 0x180 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x22AE 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 0x22D2 SWAP2 SWAP1 PUSH2 0x50EF JUMP JUMPDEST SWAP4 POP PUSH2 0x22DF DUP4 DUP4 DUP4 PUSH2 0x2DD5 JUMP JUMPDEST POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x2341 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0xFA5 JUMP JUMPDEST POP PUSH0 PUSH2 0x234C DUP7 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x236D JUMPI PUSH2 0x236D PUSH2 0x478A JUMP JUMPDEST EQ DUP1 PUSH2 0x2395 JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2393 JUMPI PUSH2 0x2393 PUSH2 0x478A JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP8 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x23C4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP3 SWAP2 SWAP1 PUSH2 0x4EBE JUMP JUMPDEST POP POP DUP1 SLOAD PUSH2 0x23E7 SWAP1 DUP8 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x23DE DUP2 TIMESTAMP PUSH2 0x34F5 JUMP JUMPDEST PUSH2 0x17F3 DUP8 PUSH2 0x3147 JUMP JUMPDEST POP PUSH4 0x6B140E9F PUSH1 0xE1 SHL SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD7D PUSH2 0x2407 DUP4 PUSH2 0x37BA JUMP JUMPDEST PUSH2 0x20A8 PUSH2 0xA36 PUSH2 0x2007 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE01 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 DUP4 PUSH0 PUSH2 0x2468 DUP3 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2489 JUMPI PUSH2 0x2489 PUSH2 0x478A JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x24B9 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP3 SWAP2 SWAP1 PUSH2 0x4EBE JUMP JUMPDEST POP POP PUSH0 PUSH2 0x24C5 DUP3 PUSH2 0x2C76 JUMP JUMPDEST SWAP1 POP PUSH0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x24E1 JUMPI PUSH2 0x24E1 PUSH2 0x450C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2514 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x24FF JUMPI SWAP1 POP JUMPDEST POP SWAP6 POP PUSH0 JUMPDEST DUP8 DUP2 LT ISZERO PUSH2 0x2713 JUMPI PUSH0 DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x2534 JUMPI PUSH2 0x2534 PUSH2 0x5197 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x2546 SWAP2 SWAP1 PUSH2 0x51AB JUMP JUMPDEST PUSH2 0x2554 SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x4FC7 JUMP JUMPDEST PUSH2 0x255D SWAP2 PUSH2 0x4FEE JUMP JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 PUSH2 0x2579 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 DUP2 AND SWAP1 DUP6 AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x2594 JUMPI PUSH2 0x2590 PUSH2 0x2589 PUSH2 0x2CCA JUMP JUMPDEST DUP13 DUP4 PUSH2 0x2CD3 JUMP JUMPDEST DUP1 SWAP4 POP JUMPDEST PUSH2 0x25FF DUP11 DUP11 DUP5 DUP2 DUP2 LT PUSH2 0x25A9 JUMPI PUSH2 0x25A9 PUSH2 0x5197 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x25BB SWAP2 SWAP1 PUSH2 0x51AB 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 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP16 AND SWAP3 SWAP2 POP POP PUSH2 0x3353 JUMP JUMPDEST DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2611 JUMPI PUSH2 0x2611 PUSH2 0x5197 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP3 PUSH2 0x270A JUMPI PUSH0 DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2634 JUMPI PUSH2 0x2634 PUSH2 0x5197 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x264F SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x26B7 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 0x26DB SWAP2 SWAP1 PUSH2 0x5024 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2708 JUMPI PUSH2 0x2703 PUSH2 0x26F4 PUSH2 0x2CCA JUMP JUMPDEST DUP14 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x2CD3 JUMP JUMPDEST PUSH1 0x1 SWAP4 POP JUMPDEST POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x2519 JUMP JUMPDEST POP POP POP PUSH2 0x1608 DUP4 DUP4 DUP4 PUSH2 0x2DD5 JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x2778 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0xFA5 JUMP JUMPDEST POP PUSH4 0xE8E617B7 PUSH1 0xE0 SHL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x2796 DUP3 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x27B7 JUMPI PUSH2 0x27B7 PUSH2 0x478A JUMP JUMPDEST EQ DUP1 PUSH2 0x27DF JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x27DD JUMPI PUSH2 0x27DD PUSH2 0x478A JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x280E JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP3 SWAP2 SWAP1 PUSH2 0x4EBE JUMP JUMPDEST POP POP PUSH0 PUSH2 0x2819 PUSH2 0x2A42 JUMP JUMPDEST SWAP1 POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2834 JUMPI PUSH2 0x2834 PUSH2 0x450C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2867 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x2852 JUMPI SWAP1 POP JUMPDEST POP SWAP5 POP PUSH0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x2978 JUMPI PUSH0 DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x2887 JUMPI PUSH2 0x2887 PUSH2 0x5197 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x2899 SWAP2 SWAP1 PUSH2 0x51AB JUMP JUMPDEST PUSH2 0x28A7 SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x4FC7 JUMP JUMPDEST PUSH2 0x28B0 SWAP2 PUSH2 0x4FEE JUMP JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 PUSH2 0x28CC JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 DUP2 AND SWAP1 DUP5 AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x28E7 JUMPI PUSH2 0x28E3 PUSH2 0x28DC PUSH2 0x2CCA JUMP JUMPDEST DUP12 DUP4 PUSH2 0x2CD3 JUMP JUMPDEST DUP1 SWAP3 POP JUMPDEST PUSH2 0x2952 DUP10 DUP10 DUP5 DUP2 DUP2 LT PUSH2 0x28FC JUMPI PUSH2 0x28FC PUSH2 0x5197 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x290E SWAP2 SWAP1 PUSH2 0x51AB 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 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 AND SWAP3 SWAP2 POP POP PUSH2 0x3353 JUMP JUMPDEST DUP8 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2964 JUMPI PUSH2 0x2964 PUSH2 0x5197 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE POP PUSH1 0x1 ADD PUSH2 0x286C JUMP JUMPDEST POP POP PUSH0 PUSH2 0x1A35 PUSH2 0x2A42 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2996 JUMPI PUSH2 0x2996 PUSH2 0x478A JUMP JUMPDEST SUB PUSH2 0x29B4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5E645365 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x29BE DUP4 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x638A5C17C348B99C05E7985EE5EE8BC0C41BC7A12265AEC4A488D62350C1D24 DUP3 PUSH0 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x2A0B SWAP3 SWAP2 SWAP1 PUSH2 0x51ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 SLOAD DUP3 SWAP1 DUP3 SWAP1 PUSH5 0xFF00000000 NOT AND PUSH1 0x1 PUSH1 0x20 SHL DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2A38 JUMPI PUSH2 0x2A38 PUSH2 0x478A JUMP JUMPDEST MUL OR SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2A4B PUSH2 0x1612 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 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 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2A8F 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 0x2AB3 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0xD7D JUMP JUMPDEST PUSH2 0x2AE8 PUSH2 0x37C4 JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2B45 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 0x2B69 SWAP2 SWAP1 PUSH2 0x5024 JUMP JUMPDEST SWAP1 POP PUSH2 0x2B74 DUP2 PUSH2 0x37E9 JUMP JUMPDEST PUSH2 0x2B7E DUP5 DUP5 PUSH2 0x37FA JUMP JUMPDEST PUSH2 0x12C0 DUP3 PUSH2 0x380C JUMP JUMPDEST PUSH0 PUSH2 0x1412 PUSH2 0x2B93 PUSH2 0xB9F JUMP JUMPDEST PUSH2 0x2B9E SWAP1 PUSH1 0x1 PUSH2 0x4E46 JUMP JUMPDEST PUSH2 0x2BA9 PUSH0 PUSH1 0xA PUSH2 0x52EB JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x2BD5 SWAP2 SWAP1 PUSH2 0x4E46 JUMP JUMPDEST DUP6 SWAP2 SWAP1 DUP6 PUSH2 0x3930 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2C42 JUMPI PUSH2 0x2C42 PUSH2 0x478A JUMP JUMPDEST EQ ISZERO DUP4 SWAP1 PUSH2 0x2C6F JUMPI PUSH1 0x40 MLOAD PUSH4 0x2DAD9021 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 0xFA5 JUMP JUMPDEST POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2C7F PUSH2 0x2A42 JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 LT ISZERO PUSH2 0x2CC5 JUMPI DUP2 SLOAD PUSH2 0x2CBC SWAP1 PUSH2 0x133F SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x4E73 JUMP JUMPDEST POP PUSH2 0xD7D PUSH2 0x2A42 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2AB3 PUSH2 0x3972 JUMP JUMPDEST PUSH0 PUSH2 0x2CDE DUP4 DUP4 PUSH2 0x1FB2 JUMP JUMPDEST SWAP1 POP PUSH0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3A7B7A39 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2D1D 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 0x2D41 SWAP2 SWAP1 PUSH2 0x5024 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xB7009613 DUP7 ADDRESS DUP6 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2D70 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x52F9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2D8A 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 0x2DAE SWAP2 SWAP1 PUSH2 0x5326 JUMP JUMPDEST POP SWAP1 POP DUP5 DUP5 DUP4 DUP4 PUSH2 0xF34 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC294136D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x52F9 JUMP JUMPDEST PUSH0 PUSH2 0x2DDE PUSH2 0x2A42 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x12C0 JUMPI DUP3 SLOAD PUSH0 SWAP1 PUSH2 0x2E14 SWAP1 DUP7 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x2E02 DUP2 TIMESTAMP PUSH2 0x34F5 JUMP JUMPDEST PUSH2 0x12E0 PUSH2 0x2E0F DUP8 DUP10 PUSH2 0x4E73 JUMP JUMPDEST PUSH2 0x3147 JUMP JUMPDEST DUP5 SLOAD SWAP1 SWAP2 POP DUP2 SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP1 DUP3 SGT ISZERO PUSH2 0x1067 JUMPI PUSH1 0x40 MLOAD PUSH4 0x395192C5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH2 0x1C1A DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x39DC JUMP JUMPDEST PUSH0 PUSH2 0x1412 PUSH2 0x2E7A DUP3 PUSH1 0xA PUSH2 0x52EB JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x2EA6 SWAP2 SWAP1 PUSH2 0x4E46 JUMP JUMPDEST PUSH2 0x2EAE PUSH2 0xB9F JUMP JUMPDEST PUSH2 0x2BD5 SWAP1 PUSH1 0x1 PUSH2 0x4E46 JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH2 0x2F39 SWAP2 DUP6 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2F15 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 0x20A8 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE SWAP2 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2F8E 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 0x2C6F SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x2FD9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x47DDF9C7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND OR DUP4 SSTORE AND DUP1 ISZERO PUSH2 0x3084 JUMPI PUSH2 0x3011 PUSH2 0x1612 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x305E 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 0x3082 SWAP2 SWAP1 PUSH2 0x5353 JUMP JUMPDEST POP JUMPDEST PUSH2 0x308C PUSH2 0x1612 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x30DA 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 0x30FE SWAP2 SWAP1 PUSH2 0x5353 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x9BAADDAD37A65CA0DF0360563FCA87A13C1CE354BE76D7EC35EAC48BD766332A SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFF SHL SUB DUP3 GT ISZERO PUSH2 0x3173 JUMPI PUSH1 0x40 MLOAD PUSH4 0x123BAF03 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x3192 DUP8 DUP8 DUP8 PUSH2 0x35D0 JUMP JUMPDEST SWAP1 POP DUP4 DUP3 PUSH1 0x2 ADD PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x31B6 SWAP2 SWAP1 PUSH2 0x536E JUMP JUMPDEST SWAP2 DUP3 SWAP1 SSTORE POP DUP4 SLOAD SWAP1 SWAP5 POP DUP6 SWAP2 POP DUP4 SWAP1 PUSH1 0x14 SWAP1 PUSH2 0x31DD SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x5395 JUMP JUMPDEST DUP3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 DUP3 AND PUSH2 0x100 SWAP4 SWAP1 SWAP4 EXP SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP3 MUL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE POP DUP2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP1 DUP11 AND DUP3 MSTORE DUP9 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xB SIGNEXTEND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 PUSH32 0xBC0FF1D27E119160A9A107D0725B9ED31B90773CF47E89332A35A8C1A319EAEE SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x3283 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x3AC0 JUMP JUMPDEST PUSH2 0x1C1A JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH0 PUSH2 0x32B6 DUP5 DUP5 PUSH2 0x2412 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 LT ISZERO PUSH2 0x12C0 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x32E8 JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x503F JUMP JUMPDEST PUSH2 0x12C0 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x39DC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x331F JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3348 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH2 0x1C1A DUP4 DUP4 DUP4 PUSH2 0x3B22 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1412 DUP4 DUP4 PUSH0 PUSH2 0x3C3A JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x33D0 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x33C4 PUSH2 0x3D06 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x33EE JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x344A JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x3447 SWAP2 DUP2 ADD SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x3472 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55E8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x34A2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH2 0x1C1A DUP4 DUP4 PUSH2 0x3D1A JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x33EE JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND EQ PUSH2 0x3518 JUMPI PUSH2 0x3513 PUSH4 0xFFFFFFFF DUP5 AND DUP4 PUSH2 0x53E0 JUMP JUMPDEST PUSH2 0x1412 JUMP JUMPDEST PUSH2 0x1412 DUP3 PUSH2 0x3D6F JUMP JUMPDEST PUSH2 0x3534 PUSH2 0x352C PUSH2 0x1612 JUMP JUMPDEST DUP6 ADDRESS DUP6 PUSH2 0x359A JUMP JUMPDEST PUSH2 0x353E DUP4 DUP3 PUSH2 0x3E4C JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDCBC1C05240F31FF3AD067EF1EE35CE4997762752E3A095284754544F4C709D7 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0x358C SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH2 0x35A8 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x3E80 JUMP JUMPDEST PUSH2 0x12C0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFF00000000 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 SWAP4 SWAP1 SWAP4 SHL SWAP3 SWAP1 SWAP3 AND PUSH1 0xC0 SWAP2 SWAP1 SWAP2 SHL PUSH4 0xFFFFFFFF PUSH1 0xC0 SHL AND OR PUSH1 0xA0 SHR AND PUSH1 0x60 SWAP2 SWAP1 SWAP2 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND OR SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x3621 PUSH2 0x2A42 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x3756 JUMPI PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3680 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 0x36A4 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH2 0x36AE DUP4 DUP7 PUSH2 0x4E73 JUMP JUMPDEST GT ISZERO PUSH2 0x36CD JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xB460AF94 PUSH2 0x36E7 DUP5 DUP8 PUSH2 0x4E73 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x372F 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 0x3753 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST POP POP JUMPDEST PUSH2 0x3763 DUP7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x3EED JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP3 GT ISZERO PUSH2 0x3173 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x60 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH0 PUSH2 0xD7D PUSH2 0x448 DUP4 PUSH2 0x23FA JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0x1412 JUMP JUMPDEST PUSH0 PUSH2 0xD7D DUP3 PUSH2 0x1834 JUMP JUMPDEST PUSH2 0x37CC PUSH2 0x3F94 JUMP JUMPDEST PUSH2 0x33EE JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x37F1 PUSH2 0x37C4 JUMP JUMPDEST PUSH2 0x215A DUP2 PUSH2 0x3FAD JUMP JUMPDEST PUSH2 0x3802 PUSH2 0x37C4 JUMP JUMPDEST PUSH2 0x1652 DUP3 DUP3 PUSH2 0x4030 JUMP JUMPDEST PUSH2 0x3814 PUSH2 0x37C4 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3870 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 0x3894 SWAP2 SWAP1 PUSH2 0x5024 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3902 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 0x3926 SWAP2 SWAP1 PUSH2 0x5353 JUMP JUMPDEST POP PUSH2 0x215A DUP2 PUSH2 0x2FB2 JUMP JUMPDEST PUSH0 PUSH2 0x395D PUSH2 0x393D DUP4 PUSH2 0x4080 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3958 JUMPI POP PUSH0 DUP5 DUP1 PUSH2 0x3953 JUMPI PUSH2 0x3953 PUSH2 0x53CC JUMP JUMPDEST DUP7 DUP9 MULMOD GT JUMPDEST ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH2 0x3968 DUP7 DUP7 DUP7 PUSH2 0x40AC JUMP JUMPDEST PUSH2 0x1C7F SWAP2 SWAP1 PUSH2 0x4E46 JUMP JUMPDEST PUSH0 CALLDATASIZE PUSH1 0x14 DUP1 DUP3 LT DUP1 ISZERO SWAP1 PUSH2 0x39AE JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST ISZERO PUSH2 0x39D4 JUMPI PUSH2 0x39C1 CALLDATASIZE DUP3 DUP5 SUB DUP2 PUSH0 PUSH2 0x4FC7 JUMP JUMPDEST PUSH2 0x39CA SWAP2 PUSH2 0x53F3 JUMP JUMPDEST PUSH1 0x60 SHR SWAP3 POP POP POP SWAP1 JUMP JUMPDEST CALLER SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH2 0x3A13 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3A3C JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP4 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP4 SWAP1 SSTORE DUP2 ISZERO PUSH2 0x3AB9 JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3AB0 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x3B16 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x3B0A JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3B5C JUMPI DUP2 DUP2 PUSH1 0x2 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x3B51 SWAP2 SWAP1 PUSH2 0x4E46 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x3BB9 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3B9B JUMPI DUP5 DUP2 DUP5 PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x503F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP4 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP4 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3BD7 JUMPI PUSH1 0x2 DUP2 ADD DUP1 SLOAD DUP4 SWAP1 SUB SWAP1 SSTORE PUSH2 0x3BF5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP4 ADD SWAP1 SSTORE JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x358C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x3C66 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 0xFA5 JUMP JUMPDEST PUSH0 PUSH2 0x3C72 DUP6 DUP5 DUP7 PUSH2 0x415C JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x3C93 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x3C93 JUMPI POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x3CA8 JUMPI PUSH2 0x3CA0 PUSH2 0x4171 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1412 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3CD2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x3CE5 JUMPI PUSH2 0x3CE0 PUSH2 0x418A JUMP JUMPDEST PUSH2 0x3CFE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55E8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x1B34 JUMP JUMPDEST PUSH2 0x3D23 DUP3 PUSH2 0x4195 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x3D67 JUMPI PUSH2 0x1C1A DUP3 DUP3 PUSH2 0x41F8 JUMP JUMPDEST PUSH2 0x1652 PUSH2 0x427A JUMP JUMPDEST PUSH2 0x7E9 PUSH0 DUP1 PUSH3 0x15180 PUSH2 0x3D86 PUSH4 0x67748580 DUP7 PUSH2 0x4E73 JUMP JUMPDEST PUSH2 0x3D90 SWAP2 SWAP1 PUSH2 0x53E0 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP2 PUSH2 0x3DA0 JUMPI PUSH2 0x16D PUSH2 0x3DA4 JUMP JUMPDEST PUSH2 0x16E JUMPDEST PUSH2 0xFFFF AND DUP2 LT PUSH2 0x3E27 JUMPI DUP2 PUSH2 0x3DBB JUMPI PUSH2 0x16D PUSH2 0x3DBF JUMP JUMPDEST PUSH2 0x16E JUMPDEST PUSH2 0x3DCD SWAP1 PUSH2 0xFFFF AND DUP3 PUSH2 0x4E73 JUMP JUMPDEST SWAP1 POP PUSH2 0x3DD8 DUP4 PUSH2 0x5429 JUMP JUMPDEST SWAP3 POP PUSH2 0x3DE5 PUSH1 0x4 DUP5 PUSH2 0x544D JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO DUP1 ISZERO PUSH2 0x3E20 JUMPI POP PUSH2 0x3DFE PUSH1 0x64 DUP5 PUSH2 0x544D JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO ISZERO DUP1 PUSH2 0x3E20 JUMPI POP PUSH2 0x3E18 PUSH2 0x190 DUP5 PUSH2 0x544D JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST SWAP2 POP PUSH2 0x3D93 JUMP JUMPDEST PUSH2 0x3E31 DUP2 DUP4 PUSH2 0x4299 JUMP JUMPDEST PUSH2 0x3E3C DUP5 PUSH1 0x64 PUSH2 0x5474 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x16D4 SWAP2 SWAP1 PUSH2 0x4E46 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3E75 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH2 0x1652 PUSH0 DUP4 DUP4 PUSH2 0x3B22 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x3EDC JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x3ED0 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x3F11 JUMPI PUSH2 0x3F11 DUP4 DUP7 DUP4 PUSH2 0x32AB JUMP JUMPDEST PUSH2 0x3F1B DUP4 DUP3 PUSH2 0x437C JUMP JUMPDEST PUSH2 0x3F2D PUSH2 0x3F26 PUSH2 0x1612 JUMP JUMPDEST DUP6 DUP5 PUSH2 0x3276 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFBDE797D201C681B91056529119E0B02407C7BB96A4A2C75C01FC9667232C8DB DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3F85 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3F9D PUSH2 0x2AB8 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3FB5 PUSH2 0x37C4 JUMP JUMPDEST PUSH32 0x773E532DFEDE91F04B12A73D3D2ACD361424F41F76B4FB79F090161E36B4E00 PUSH0 DUP1 PUSH2 0x3FE1 DUP5 PUSH2 0x43B0 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x3FF1 JUMPI PUSH1 0x12 PUSH2 0x3FF3 JUMP JUMPDEST DUP1 JUMPDEST DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT AND PUSH1 0x1 PUSH1 0xA0 SHL PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND OR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP2 SSTORE POP POP JUMP JUMPDEST PUSH2 0x4038 PUSH2 0x37C4 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 PUSH2 0x4071 DUP5 DUP3 PUSH2 0x54D7 JUMP JUMPDEST POP PUSH1 0x4 DUP2 ADD PUSH2 0x12C0 DUP4 DUP3 PUSH2 0x54D7 JUMP JUMPDEST PUSH0 PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x4095 JUMPI PUSH2 0x4095 PUSH2 0x478A JUMP JUMPDEST PUSH2 0x409F SWAP2 SWAP1 PUSH2 0x5591 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x1 EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x40B9 DUP7 DUP7 PUSH2 0x443B JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x40DD JUMPI DUP4 DUP2 DUP2 PUSH2 0x40D3 JUMPI PUSH2 0x40D3 PUSH2 0x53CC JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x1412 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x40F4 JUMPI PUSH2 0x40F4 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x4457 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 DUP9 GAS CALL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x41CA JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55E8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x4205 DUP5 DUP5 PUSH2 0x4468 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x4226 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x4226 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x423B JUMPI PUSH2 0x4233 PUSH2 0x4171 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xD7D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4265 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 0xFA5 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x3CE5 JUMPI PUSH2 0x4273 PUSH2 0x418A JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x33EE JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F DUP4 LT ISZERO PUSH2 0x42AB JUMPI POP PUSH1 0x1 PUSH2 0xD7D JUMP JUMPDEST DUP2 ISZERO PUSH2 0x42D4 JUMPI PUSH1 0x3C DUP4 LT ISZERO PUSH2 0x42C2 JUMPI POP PUSH1 0x2 PUSH2 0xD7D JUMP JUMPDEST DUP3 PUSH2 0x42CC DUP2 PUSH2 0x55B2 JUMP JUMPDEST SWAP4 POP POP PUSH2 0x42E5 JUMP JUMPDEST PUSH1 0x3B DUP4 LT ISZERO PUSH2 0x42E5 JUMPI POP PUSH1 0x2 PUSH2 0xD7D JUMP JUMPDEST PUSH1 0x5A DUP4 LT PUSH2 0x436F JUMPI PUSH1 0x78 DUP4 LT PUSH2 0x4368 JUMPI PUSH1 0x97 DUP4 LT PUSH2 0x4361 JUMPI PUSH1 0xB5 DUP4 LT PUSH2 0x435A JUMPI PUSH1 0xD4 DUP4 LT PUSH2 0x4353 JUMPI PUSH1 0xF3 DUP4 LT PUSH2 0x434C JUMPI PUSH2 0x111 DUP4 LT PUSH2 0x4345 JUMPI PUSH2 0x130 DUP4 LT PUSH2 0x433E JUMPI PUSH2 0x14E DUP4 LT PUSH2 0x4337 JUMPI PUSH1 0xC PUSH2 0x4372 JUMP JUMPDEST PUSH1 0xB PUSH2 0x4372 JUMP JUMPDEST PUSH1 0xA PUSH2 0x4372 JUMP JUMPDEST PUSH1 0x9 PUSH2 0x4372 JUMP JUMPDEST PUSH1 0x8 PUSH2 0x4372 JUMP JUMPDEST PUSH1 0x7 PUSH2 0x4372 JUMP JUMPDEST PUSH1 0x6 PUSH2 0x4372 JUMP JUMPDEST PUSH1 0x5 PUSH2 0x4372 JUMP JUMPDEST PUSH1 0x4 PUSH2 0x4372 JUMP JUMPDEST PUSH1 0x3 JUMPDEST PUSH1 0xFF AND SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x43A5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH2 0x1652 DUP3 PUSH0 DUP4 PUSH2 0x3B22 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x43BC PUSH1 0x40 MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x4 DUP2 MSTORE PUSH1 0x24 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0xE0 SHL OR SWAP1 MSTORE SWAP1 SWAP2 POP PUSH0 SWAP1 DUP2 SWAP1 PUSH2 0x43F7 SWAP1 DUP8 SWAP1 PUSH2 0x447B JUMP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x4405 DUP4 PUSH1 0x40 MSTORE JUMP JUMPDEST DUP2 DUP1 ISZERO PUSH2 0x4413 JUMPI POP PUSH1 0x20 RETURNDATASIZE LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x4420 JUMPI POP PUSH1 0xFF DUP2 GT ISZERO JUMPDEST PUSH2 0x442B JUMPI PUSH0 PUSH0 PUSH2 0x442F JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST SWAP5 POP SWAP5 POP POP POP POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 PUSH0 DUP6 MLOAD PUSH1 0x20 DUP8 ADD DUP9 GAS STATICCALL SWAP3 POP PUSH0 MLOAD SWAP2 POP PUSH1 0x20 MLOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x2CC5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x44C3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1412 DUP3 PUSH2 0x449C 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 PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x1412 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x44CC JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x4543 JUMPI PUSH2 0x4543 PUSH2 0x450C JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 GT ISZERO PUSH2 0x4562 JUMPI PUSH2 0x4562 PUSH2 0x450C JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x4590 JUMPI PUSH2 0x4590 PUSH2 0x450C JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP6 LT ISZERO PUSH2 0x45A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x45CD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1412 DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x4549 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x215A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4602 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4617 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4623 DUP7 DUP3 DUP8 ADD PUSH2 0x45BE JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x463E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x464A DUP7 DUP3 DUP8 ADD PUSH2 0x45BE JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x465B DUP2 PUSH2 0x45DC JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4676 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x468D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x46A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x46BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x46D7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x46E2 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x46FC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4708 DUP8 DUP3 DUP9 ADD PUSH2 0x467D JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x471C DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x215A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4749 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4754 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4764 DUP2 PUSH2 0x4727 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x477F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1412 DUP2 PUSH2 0x45DC JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x47BA JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0xD7D DUP3 DUP5 PUSH2 0x479E JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x47DD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x47E8 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x4806 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x481C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x46BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x4847 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x4852 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x4862 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4883 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x488F DUP9 DUP3 DUP10 ADD PUSH2 0x47F6 JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x215A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x48BE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x48C9 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4764 DUP2 PUSH2 0x48A0 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x48ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x48F8 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x4908 DUP2 PUSH2 0x4727 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x4918 DUP2 PUSH2 0x4727 JUMP JUMPDEST SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH2 0x492F DUP2 PUSH2 0x45DC JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x494F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x495A DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x496A DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x498D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4998 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x49B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x49BE DUP7 DUP3 DUP8 ADD PUSH2 0x47F6 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x49DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x49E7 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4A01 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x4A11 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4A20 DUP6 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x4549 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4A3D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x4A48 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x4A58 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP4 SWAP7 SWAP4 SWAP6 POP POP POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD SWAP2 PUSH1 0x60 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x4A82 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH2 0x4A8D DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD PUSH2 0x4A9D DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP6 SWAP9 SWAP6 SWAP8 POP POP POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP4 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP4 PUSH1 0x80 DUP3 ADD CALLDATALOAD SWAP4 POP PUSH1 0xA0 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4AD3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4764 DUP2 PUSH2 0x45DC JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4AF8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x4B03 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x4B13 DUP2 PUSH2 0x4727 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x4B23 DUP2 PUSH2 0x4727 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP3 SWAP4 PUSH1 0x60 ADD CALLDATALOAD SWAP3 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4B45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4B50 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x4B60 DUP2 PUSH2 0x4727 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x465B DUP2 PUSH2 0x4727 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4B82 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x4B94 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x465B DUP2 PUSH2 0x45DC JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4BB6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4BC1 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4BE9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x4BF4 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x4A58 DUP2 PUSH2 0x4727 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4C15 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4C20 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP2 POP PUSH2 0x4C2E PUSH1 0x20 DUP5 ADD PUSH2 0x449C JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4C4A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x4C55 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4C6F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4708 DUP8 DUP3 DUP9 ADD PUSH2 0x47F6 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 ADD SWAP1 POP DUP3 MLOAD DUP3 MSTORE PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP4 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP4 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP4 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP4 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP4 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP4 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP4 ADD MLOAD PUSH2 0x4CFF PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP4 ADD MLOAD PUSH2 0x4273 PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4D2B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4D36 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4764 DUP2 PUSH2 0x45DC JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4D58 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4D63 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4D7D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x49BE DUP7 DUP3 DUP8 ADD PUSH2 0x467D 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 0x4DE0 JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x4DCB DUP6 DUP4 MLOAD PUSH2 0x44CC JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x4DAF JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4DFD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4E08 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x4 DUP2 LT PUSH2 0x4764 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4E2B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xD7D JUMPI PUSH2 0xD7D PUSH2 0x4E32 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x4E6D JUMPI PUSH2 0x4E6D PUSH2 0x4E32 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xD7D JUMPI PUSH2 0xD7D PUSH2 0x4E32 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4E9A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x4EB8 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 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0x40 DUP2 ADD PUSH2 0x1412 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x479E 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 0x40 DUP1 DUP3 MSTORE DUP2 ADD DUP4 SWAP1 MSTORE PUSH0 PUSH1 0x60 PUSH1 0x5 DUP6 SWAP1 SHL DUP4 ADD DUP2 ADD SWAP1 DUP4 ADD DUP7 DUP4 PUSH1 0x1E NOT CALLDATASIZE DUP4 SWAP1 SUB ADD JUMPDEST DUP9 DUP3 LT ISZERO PUSH2 0x4F94 JUMPI DUP7 DUP6 SUB PUSH1 0x5F NOT ADD DUP5 MSTORE DUP3 CALLDATALOAD DUP2 DUP2 SLT PUSH2 0x4F45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP11 ADD PUSH1 0x20 DUP2 ADD SWAP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4F60 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATASIZE SUB DUP3 SGT ISZERO PUSH2 0x4F6E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4F79 DUP8 DUP3 DUP5 PUSH2 0x4EDB JUMP JUMPDEST SWAP7 POP POP POP PUSH1 0x20 DUP4 ADD SWAP3 POP PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH2 0x4F27 JUMP JUMPDEST POP POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x20 DUP6 ADD MSTORE POP SWAP1 POP PUSH2 0x16D4 JUMP JUMPDEST PUSH1 0xFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0xD7D JUMPI PUSH2 0xD7D PUSH2 0x4E32 JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x4FD5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x4FE1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x4273 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5034 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1412 DUP2 PUSH2 0x45DC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP DUP3 SLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP4 MSTORE PUSH2 0x5085 PUSH1 0x20 DUP5 ADD PUSH1 0xFF DUP4 PUSH1 0x20 SHR AND PUSH2 0x479E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 PUSH1 0x28 SHR AND PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 PUSH1 0x88 SHR AND PUSH1 0x60 DUP5 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH0 PUSH2 0x50C3 PUSH1 0x40 DUP4 ADD DUP6 DUP8 PUSH2 0x4EDB JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x2CC5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT DUP1 ISZERO PUSH2 0x5101 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x510A PUSH2 0x4520 JUMP JUMPDEST DUP3 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x5177 PUSH2 0x140 DUP5 ADD PUSH2 0x50DB JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x518A PUSH2 0x160 DUP5 ADD PUSH2 0x50DB JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x51C0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x51D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x46BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x51FB DUP3 DUP6 PUSH2 0x479E JUMP JUMPDEST PUSH2 0x1412 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x479E JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x5243 JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x5227 JUMPI PUSH2 0x5227 PUSH2 0x4E32 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x5235 JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x520C JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x5259 JUMPI POP PUSH1 0x1 PUSH2 0xD7D JUMP JUMPDEST DUP2 PUSH2 0x5265 JUMPI POP PUSH0 PUSH2 0xD7D JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x527B JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x5285 JUMPI PUSH2 0x52A1 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0xD7D JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x5296 JUMPI PUSH2 0x5296 PUSH2 0x4E32 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0xD7D JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x52C4 JUMPI POP DUP2 DUP2 EXP PUSH2 0xD7D JUMP JUMPDEST PUSH2 0x52D0 PUSH0 NOT DUP5 DUP5 PUSH2 0x5208 JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x52E3 JUMPI PUSH2 0x52E3 PUSH2 0x4E32 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1412 PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x524B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5337 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x5342 DUP2 PUSH2 0x48A0 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x4764 DUP2 PUSH2 0x4727 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5363 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1412 DUP2 PUSH2 0x48A0 JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x538D JUMPI PUSH2 0x538D PUSH2 0x4E32 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xB DUP2 DUP2 SIGNEXTEND SWAP1 DUP4 SWAP1 SIGNEXTEND ADD PUSH12 0x7FFFFFFFFFFFFFFFFFFFFFFF DUP2 SGT PUSH12 0x7FFFFFFFFFFFFFFFFFFFFFFF NOT DUP3 SLT OR ISZERO PUSH2 0xD7D JUMPI PUSH2 0xD7D PUSH2 0x4E32 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH2 0x53EE JUMPI PUSH2 0x53EE PUSH2 0x53CC JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x14 DUP5 LT ISZERO PUSH2 0x4273 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x14 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP3 AND PUSH4 0xFFFFFFFF DUP2 SUB PUSH2 0x5444 JUMPI PUSH2 0x5444 PUSH2 0x4E32 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP4 AND DUP1 PUSH2 0x5462 JUMPI PUSH2 0x5462 PUSH2 0x53CC JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND MUL SWAP1 DUP2 AND SWAP1 DUP2 DUP2 EQ PUSH2 0x4273 JUMPI PUSH2 0x4273 PUSH2 0x4E32 JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x1C1A JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x54B8 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3AB9 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x54C4 JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x54F0 JUMPI PUSH2 0x54F0 PUSH2 0x450C JUMP JUMPDEST PUSH2 0x5504 DUP2 PUSH2 0x54FE DUP5 SLOAD PUSH2 0x4E86 JUMP JUMPDEST DUP5 PUSH2 0x5493 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x5536 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x551F 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 0x3AB9 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x5565 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x5545 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x5582 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 PUSH0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x55A3 JUMPI PUSH2 0x55A3 PUSH2 0x53CC JUMP JUMPDEST DUP1 PUSH1 0xFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x55C0 JUMPI PUSH2 0x55C0 PUSH2 0x4E32 JUMP JUMPDEST POP PUSH0 NOT ADD SWAP1 JUMP INVALID MSTORE 0xC6 ORIGIN SELFBALANCE RJUMPI 0xF47D 0xB1 SWAP14 TLOAD RJUMP 0x4600 ADDRESS 0xC4 SWAP8 CREATE PUSH8 0xCA4CEBF71BA98EEA 0xDA 0xBE KECCAK256 0xBA 0xCE STOP CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBC0DFF660C705EC490383FFA 0xFC SWAP15 DUP15 GASPRICE 0xB4 PUSH18 0x4559F9EC8567C5380D4AD2DFF5AF00A26469 PUSH17 0x6673582212203FAA8777E79C7E94E6F208 0xB8 DUP2 PUSH1 0x87 PUSH5 0x231D9F4D05 SWAP4 PUSH7 0x29119D589C2645 PUSH23 0x9264736F6C634300081E00330000000000000000000000 ","sourceMap":"3399:33077:110:-:0;;;1084:4:76;1041:48;;8777:173:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1644:37:42;;;;;8892:25:110;::::1;;::::0;8923:22:::1;:20;:22::i;:::-;8777:173:::0;;3399:33077;;7709:422:75;3147:66;7898:15;;;;;;;7894:76;;;7936:23;;-1:-1:-1;;;7936:23:75;;;;;;;;;;;7894:76;7983:14;;-1:-1:-1;;;;;7983:14:75;;;:34;7979:146;;8033:33;;-1:-1:-1;;;;;;8033:33:75;-1:-1:-1;;;;;8033:33:75;;;;;8085:29;;705:50:125;;;8085:29:75;;693:2:125;678:18;8085:29:75;;;;;;;7979:146;7758:373;7709:422::o;14:131:125:-;-1:-1:-1;;;;;89:31:125;;79:42;;69:70;;135:1;132;125:12;150:406;250:6;258;311:2;299:9;290:7;286:23;282:32;279:52;;;327:1;324;317:12;279:52;359:9;353:16;378:31;403:5;378:31;:::i;:::-;478:2;463:18;;457:25;428:5;;-1:-1:-1;491:33:125;457:25;491:33;:::i;:::-;543:7;533:17;;;150:406;;;;;:::o;561:200::-;3399:33077:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@OWN_POLICY_SELECTOR_38304":{"entryPoint":null,"id":38304,"parameterSlots":0,"returnSlots":0},"@SLOTSIZE_CALENDAR_MONTH_38312":{"entryPoint":null,"id":38312,"parameterSlots":0,"returnSlots":0},"@UPGRADE_INTERFACE_VERSION_23454":{"entryPoint":null,"id":23454,"parameterSlots":0,"returnSlots":0},"@__CashFlowLender_init_38700":{"entryPoint":10976,"id":38700,"parameterSlots":3,"returnSlots":0},"@__CashFlowLender_init_unchained_38729":{"entryPoint":14348,"id":38729,"parameterSlots":1,"returnSlots":0},"@__ERC20_init_16064":{"entryPoint":14330,"id":16064,"parameterSlots":2,"returnSlots":0},"@__ERC20_init_unchained_16092":{"entryPoint":16432,"id":16092,"parameterSlots":2,"returnSlots":0},"@__ERC4626_init_16880":{"entryPoint":14313,"id":16880,"parameterSlots":1,"returnSlots":0},"@__ERC4626_init_unchained_16918":{"entryPoint":16301,"id":16918,"parameterSlots":1,"returnSlots":0},"@_approve_16496":{"entryPoint":11870,"id":16496,"parameterSlots":3,"returnSlots":0},"@_approve_16564":{"entryPoint":14812,"id":16564,"parameterSlots":4,"returnSlots":0},"@_authorizeUpgrade_39177":{"entryPoint":null,"id":39177,"parameterSlots":1,"returnSlots":0},"@_balance_39440":{"entryPoint":10818,"id":39440,"parameterSlots":0,"returnSlots":1},"@_burn_16478":{"entryPoint":17276,"id":16478,"parameterSlots":2,"returnSlots":0},"@_changeDebt_39772":{"entryPoint":12663,"id":39772,"parameterSlots":4,"returnSlots":1},"@_checkCanForward_39937":{"entryPoint":11475,"id":39937,"parameterSlots":3,"returnSlots":0},"@_checkInitializing_23342":{"entryPoint":14276,"id":23342,"parameterSlots":0,"returnSlots":0},"@_checkNonPayable_23119":{"entryPoint":17018,"id":23119,"parameterSlots":0,"returnSlots":0},"@_checkNotDelegated_23548":{"entryPoint":13484,"id":23548,"parameterSlots":0,"returnSlots":0},"@_checkProxy_23532":{"entryPoint":13152,"id":23532,"parameterSlots":0,"returnSlots":0},"@_computeCalendarMonth_39607":{"entryPoint":15727,"id":39607,"parameterSlots":1,"returnSlots":1},"@_contextSuffixLength_15991":{"entryPoint":null,"id":15991,"parameterSlots":0,"returnSlots":1},"@_contextSuffixLength_39395":{"entryPoint":null,"id":39395,"parameterSlots":0,"returnSlots":1},"@_convertToAssets_17447":{"entryPoint":11143,"id":17447,"parameterSlots":2,"returnSlots":1},"@_convertToShares_17419":{"entryPoint":11883,"id":17419,"parameterSlots":2,"returnSlots":1},"@_decimalsOffset_17545":{"entryPoint":null,"id":17545,"parameterSlots":0,"returnSlots":1},"@_deinvest_39712":{"entryPoint":11961,"id":39712,"parameterSlots":1,"returnSlots":1},"@_deposit_17487":{"entryPoint":13601,"id":17487,"parameterSlots":4,"returnSlots":0},"@_ensureLiquidBalance_39830":{"entryPoint":11382,"id":39830,"parameterSlots":1,"returnSlots":1},"@_getCashFlowLenderStorage_38368":{"entryPoint":null,"id":38368,"parameterSlots":0,"returnSlots":1},"@_getERC20Storage_16048":{"entryPoint":null,"id":16048,"parameterSlots":0,"returnSlots":1},"@_getERC4626Storage_16830":{"entryPoint":null,"id":16830,"parameterSlots":0,"returnSlots":1},"@_getInitializableStorage_23433":{"entryPoint":10936,"id":23433,"parameterSlots":0,"returnSlots":1},"@_getMonth_39531":{"entryPoint":17049,"id":39531,"parameterSlots":2,"returnSlots":1},"@_getTargetConfig_38911":{"entryPoint":11230,"id":38911,"parameterSlots":1,"returnSlots":1},"@_increaseDebtAfterNewPolicy_39889":{"entryPoint":11733,"id":39889,"parameterSlots":3,"returnSlots":0},"@_initializableStorageSlot_23419":{"entryPoint":null,"id":23419,"parameterSlots":0,"returnSlots":1},"@_isInitializing_23410":{"entryPoint":16276,"id":23410,"parameterSlots":0,"returnSlots":1},"@_makeSlotIndex_39632":{"entryPoint":13557,"id":39632,"parameterSlots":2,"returnSlots":1},"@_makeTargetSlot_39667":{"entryPoint":13776,"id":39667,"parameterSlots":3,"returnSlots":1},"@_mint_16445":{"entryPoint":15948,"id":16445,"parameterSlots":2,"returnSlots":0},"@_msgSender_15939":{"entryPoint":14706,"id":15939,"parameterSlots":0,"returnSlots":1},"@_msgSender_18654":{"entryPoint":null,"id":18654,"parameterSlots":0,"returnSlots":1},"@_msgSender_39409":{"entryPoint":11466,"id":39409,"parameterSlots":0,"returnSlots":1},"@_safeTransferFrom_25392":{"entryPoint":16000,"id":25392,"parameterSlots":5,"returnSlots":1},"@_safeTransfer_25367":{"entryPoint":15040,"id":25367,"parameterSlots":4,"returnSlots":1},"@_setImplementation_22899":{"entryPoint":16789,"id":22899,"parameterSlots":1,"returnSlots":0},"@_setYieldVault_38811":{"entryPoint":12210,"id":38811,"parameterSlots":1,"returnSlots":0},"@_spendAllowance_16612":{"entryPoint":12971,"id":16612,"parameterSlots":3,"returnSlots":0},"@_transfer_16320":{"entryPoint":13046,"id":16320,"parameterSlots":3,"returnSlots":0},"@_tryGetAssetDecimals_16996":{"entryPoint":17328,"id":16996,"parameterSlots":1,"returnSlots":2},"@_update_16412":{"entryPoint":15138,"id":16412,"parameterSlots":3,"returnSlots":0},"@_upgradeToAndCallUUPS_23599":{"entryPoint":13296,"id":23599,"parameterSlots":2,"returnSlots":0},"@_withdraw_17537":{"entryPoint":16109,"id":17537,"parameterSlots":5,"returnSlots":0},"@_withdraw_40601":{"entryPoint":13848,"id":40601,"parameterSlots":5,"returnSlots":0},"@addTarget_38979":{"entryPoint":7622,"id":38979,"parameterSlots":4,"returnSlots":0},"@allowance_16217":{"entryPoint":9234,"id":16217,"parameterSlots":2,"returnSlots":1},"@approve_16241":{"entryPoint":4364,"id":16241,"parameterSlots":2,"returnSlots":1},"@asset_17037":{"entryPoint":5650,"id":17037,"parameterSlots":0,"returnSlots":1},"@balanceOf_16169":{"entryPoint":6196,"id":16169,"parameterSlots":1,"returnSlots":1},"@bubbleRevert_26962":{"entryPoint":16778,"id":26962,"parameterSlots":0,"returnSlots":0},"@callNoReturn_26845":{"entryPoint":16732,"id":26845,"parameterSlots":3,"returnSlots":1},"@cashOutPayouts_40776":{"entryPoint":4806,"id":40776,"parameterSlots":5,"returnSlots":0},"@cashWithdrawable_40482":{"entryPoint":8199,"id":40482,"parameterSlots":0,"returnSlots":1},"@convertToAssets_17087":{"entryPoint":3902,"id":17087,"parameterSlots":1,"returnSlots":1},"@convertToShares_17071":{"entryPoint":8188,"id":17071,"parameterSlots":1,"returnSlots":1},"@currentDebt_40367":{"entryPoint":null,"id":40367,"parameterSlots":0,"returnSlots":1},"@decimals_17018":{"entryPoint":5145,"id":17018,"parameterSlots":0,"returnSlots":1},"@delegatecallNoReturn_26924":{"entryPoint":17512,"id":26924,"parameterSlots":2,"returnSlots":1},"@depositIntoYieldVault_40693":{"entryPoint":7002,"id":40693,"parameterSlots":1,"returnSlots":0},"@deposit_17253":{"entryPoint":6162,"id":17253,"parameterSlots":2,"returnSlots":1},"@forwardNewPoliciesV3_40035":{"entryPoint":3913,"id":40035,"parameterSlots":4,"returnSlots":0},"@forwardNewPolicyBatch_40232":{"entryPoint":9307,"id":40232,"parameterSlots":3,"returnSlots":1},"@forwardNewPolicyV3_39987":{"entryPoint":8541,"id":39987,"parameterSlots":4,"returnSlots":1},"@forwardNewPolicy_40102":{"entryPoint":5205,"id":40102,"parameterSlots":3,"returnSlots":1},"@forwardResolvePolicyBatch_40349":{"entryPoint":10121,"id":40349,"parameterSlots":3,"returnSlots":1},"@forwardResolvePolicy_40266":{"entryPoint":6468,"id":40266,"parameterSlots":3,"returnSlots":1},"@functionCallWithValue_25828":{"entryPoint":15418,"id":25828,"parameterSlots":3,"returnSlots":1},"@functionCall_25741":{"entryPoint":13139,"id":25741,"parameterSlots":2,"returnSlots":1},"@functionDelegateCall_25956":{"entryPoint":16888,"id":25956,"parameterSlots":2,"returnSlots":1},"@getAddressSlot_31145":{"entryPoint":null,"id":31145,"parameterSlots":1,"returnSlots":1},"@getDebtForPeriod_40394":{"entryPoint":6864,"id":40394,"parameterSlots":3,"returnSlots":1},"@getFreeMemoryPointer_26988":{"entryPoint":null,"id":26988,"parameterSlots":0,"returnSlots":1},"@getImplementation_22872":{"entryPoint":15622,"id":22872,"parameterSlots":0,"returnSlots":1},"@getTargetStatus_39083":{"entryPoint":null,"id":39083,"parameterSlots":1,"returnSlots":1},"@initialize_38663":{"entryPoint":3651,"id":38663,"parameterSlots":3,"returnSlots":0},"@isTrustedForwarder_15891":{"entryPoint":null,"id":15891,"parameterSlots":1,"returnSlots":1},"@makeFakeSelector_39792":{"entryPoint":8114,"id":39792,"parameterSlots":2,"returnSlots":1},"@makeSelector_4079":{"entryPoint":null,"id":4079,"parameterSlots":1,"returnSlots":1},"@maxDeposit_17102":{"entryPoint":null,"id":17102,"parameterSlots":1,"returnSlots":1},"@maxMint_17117":{"entryPoint":null,"id":17117,"parameterSlots":1,"returnSlots":1},"@maxRedeem_17145":{"entryPoint":14266,"id":17145,"parameterSlots":1,"returnSlots":1},"@maxRedeem_40504":{"entryPoint":9210,"id":40504,"parameterSlots":1,"returnSlots":1},"@maxWithdraw_17132":{"entryPoint":14238,"id":17132,"parameterSlots":1,"returnSlots":1},"@maxWithdraw_40524":{"entryPoint":8339,"id":40524,"parameterSlots":1,"returnSlots":1},"@min_33872":{"entryPoint":14251,"id":33872,"parameterSlots":2,"returnSlots":1},"@mint_17297":{"entryPoint":6768,"id":17297,"parameterSlots":2,"returnSlots":1},"@mul512_33585":{"entryPoint":17467,"id":33585,"parameterSlots":2,"returnSlots":2},"@mulDiv_34072":{"entryPoint":16556,"id":34072,"parameterSlots":3,"returnSlots":1},"@mulDiv_34109":{"entryPoint":14640,"id":34109,"parameterSlots":4,"returnSlots":1},"@name_16108":{"entryPoint":3459,"id":16108,"parameterSlots":0,"returnSlots":1},"@onERC721Received_39199":{"entryPoint":4409,"id":39199,"parameterSlots":5,"returnSlots":1},"@onPayoutReceived_39283":{"entryPoint":8938,"id":39283,"parameterSlots":4,"returnSlots":1},"@onPolicyCancelled_39381":{"entryPoint":5852,"id":39381,"parameterSlots":6,"returnSlots":1},"@onPolicyExpired_39219":{"entryPoint":10017,"id":39219,"parameterSlots":3,"returnSlots":1},"@onPolicyReplaced_39305":{"entryPoint":5745,"id":39305,"parameterSlots":4,"returnSlots":1},"@pack_20_8_27903":{"entryPoint":null,"id":27903,"parameterSlots":2,"returnSlots":1},"@pack_4_4_27474":{"entryPoint":null,"id":27474,"parameterSlots":2,"returnSlots":1},"@panic_30996":{"entryPoint":17495,"id":30996,"parameterSlots":1,"returnSlots":0},"@policyPool_38878":{"entryPoint":null,"id":38878,"parameterSlots":0,"returnSlots":1},"@previewDeposit_17161":{"entryPoint":null,"id":17161,"parameterSlots":1,"returnSlots":1},"@previewMint_17177":{"entryPoint":7199,"id":17177,"parameterSlots":1,"returnSlots":1},"@previewRedeem_17209":{"entryPoint":null,"id":17209,"parameterSlots":1,"returnSlots":1},"@previewWithdraw_17193":{"entryPoint":4397,"id":17193,"parameterSlots":1,"returnSlots":1},"@proxiableUUID_23490":{"entryPoint":5718,"id":23490,"parameterSlots":0,"returnSlots":1},"@redeem_17391":{"entryPoint":7304,"id":17391,"parameterSlots":3,"returnSlots":1},"@repayDebt_40839":{"entryPoint":6234,"id":40839,"parameterSlots":4,"returnSlots":0},"@returnDataSize_26948":{"entryPoint":null,"id":26948,"parameterSlots":0,"returnSlots":1},"@returnData_26956":{"entryPoint":16753,"id":26956,"parameterSlots":0,"returnSlots":1},"@safeTransferFrom_25041":{"entryPoint":13722,"id":25041,"parameterSlots":4,"returnSlots":0},"@safeTransfer_25010":{"entryPoint":12918,"id":25010,"parameterSlots":3,"returnSlots":0},"@setFreeMemoryPointer_26997":{"entryPoint":null,"id":26997,"parameterSlots":1,"returnSlots":0},"@setTargetLimits_39023":{"entryPoint":7388,"id":39023,"parameterSlots":3,"returnSlots":0},"@setTargetSlotSize_39120":{"entryPoint":4208,"id":39120,"parameterSlots":2,"returnSlots":0},"@setTargetStatus_39062":{"entryPoint":10627,"id":39062,"parameterSlots":2,"returnSlots":0},"@setYieldVault_38858":{"entryPoint":4515,"id":38858,"parameterSlots":2,"returnSlots":0},"@staticcallReturn64Bytes_26912":{"entryPoint":17531,"id":26912,"parameterSlots":2,"returnSlots":3},"@supportsInterface_33322":{"entryPoint":null,"id":33322,"parameterSlots":1,"returnSlots":1},"@supportsInterface_39170":{"entryPoint":3297,"id":39170,"parameterSlots":1,"returnSlots":1},"@symbol_16124":{"entryPoint":6802,"id":16124,"parameterSlots":0,"returnSlots":1},"@ternary_33834":{"entryPoint":null,"id":33834,"parameterSlots":3,"returnSlots":1},"@toInt256_36941":{"entryPoint":12615,"id":36941,"parameterSlots":1,"returnSlots":1},"@toUint96_35774":{"entryPoint":14187,"id":35774,"parameterSlots":1,"returnSlots":1},"@toUint_36951":{"entryPoint":null,"id":36951,"parameterSlots":1,"returnSlots":1},"@totalAssets_40458":{"entryPoint":2975,"id":40458,"parameterSlots":0,"returnSlots":1},"@totalSupply_16149":{"entryPoint":null,"id":16149,"parameterSlots":0,"returnSlots":1},"@transferFrom_16273":{"entryPoint":5098,"id":16273,"parameterSlots":3,"returnSlots":1},"@transfer_16193":{"entryPoint":6979,"id":16193,"parameterSlots":2,"returnSlots":1},"@trustedForwarder_15877":{"entryPoint":null,"id":15877,"parameterSlots":0,"returnSlots":1},"@unsignedRoundsUp_35165":{"entryPoint":16512,"id":35165,"parameterSlots":1,"returnSlots":1},"@upgradeToAndCall_22935":{"entryPoint":15642,"id":22935,"parameterSlots":2,"returnSlots":0},"@upgradeToAndCall_23510":{"entryPoint":5696,"id":23510,"parameterSlots":2,"returnSlots":0},"@withdrawFromYieldVault_40644":{"entryPoint":8365,"id":40644,"parameterSlots":1,"returnSlots":0},"@withdraw_17344":{"entryPoint":7211,"id":17344,"parameterSlots":3,"returnSlots":1},"@yieldVault_38869":{"entryPoint":6948,"id":38869,"parameterSlots":0,"returnSlots":1},"abi_decode_array_bytes_calldata_dyn_calldata":{"entryPoint":18045,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_available_length_string":{"entryPoint":17737,"id":null,"parameterSlots":3,"returnSlots":1},"abi_decode_bytes4":{"entryPoint":17564,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_bytes_calldata":{"entryPoint":18422,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_string":{"entryPoint":17854,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":18287,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":20516,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":19738,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":18749,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr":{"entryPoint":18483,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256":{"entryPoint":18986,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256t_uint256":{"entryPoint":19053,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_addresst_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr":{"entryPoint":19782,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_array$_t_bytes_calldata_ptr_$dyn_calldata_ptrt_address":{"entryPoint":18116,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_bytes4":{"entryPoint":19460,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_bytes_calldata_ptr":{"entryPoint":18811,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_bytes_calldata_ptrt_address":{"entryPoint":19511,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_bytes_memory_ptr":{"entryPoint":18891,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_enum$_TargetStatus_$38330":{"entryPoint":19948,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":18380,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256t_uint256":{"entryPoint":19364,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint32":{"entryPoint":18232,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint32t_uint256t_uint256":{"entryPoint":19414,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_uint32t_uint32":{"entryPoint":19251,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint32t_uint32t_uint256":{"entryPoint":19173,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_uint32t_uint32t_uint256t_address":{"entryPoint":18649,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":21331,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_boolt_uint32_fromMemory":{"entryPoint":21286,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes32_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":17587,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IAccessManager_$22178_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IERC4626_$22463t_bool":{"entryPoint":18605,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC4626_$22463":{"entryPoint":17904,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptr_fromMemory":{"entryPoint":20719,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":18022,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":19995,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_address":{"entryPoint":19138,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint256t_addresst_address":{"entryPoint":19312,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_uint40_fromMemory":{"entryPoint":20699,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_address":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_bytes_calldata":{"entryPoint":20187,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_enum_TargetStatus":{"entryPoint":18334,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_string":{"entryPoint":17612,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_address_t_bytes4__to_t_address_t_bytes4__nonPadded_inplace_fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"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_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed":{"entryPoint":21241,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_address_t_enum$_TargetStatus_$38330__to_t_address_t_uint8__fromStack_reversed":{"entryPoint":20158,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":20543,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr_t_address__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_t_address__fromStack_reversed":{"entryPoint":20227,"id":null,"parameterSlots":4,"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":19849,"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_bytes32__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_bytes_calldata_ptr_t_address__to_t_bytes_memory_ptr_t_address__fromStack_reversed":{"entryPoint":20656,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC4626_$22463__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC4626_$22463_t_contract$_IERC4626_$22463__to_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_contract$_IPolicyPool_$40853__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_enum$_TargetStatus_$38330__to_t_uint8__fromStack_reversed":{"entryPoint":18366,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_enum$_TargetStatus_$38330_t_enum$_TargetStatus_$38330__to_t_uint8_t_uint8__fromStack_reversed":{"entryPoint":20973,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_int256_t_uint96__to_t_int256_t_uint96__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_96_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17658,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr__fromStack_reversed":{"entryPoint":19579,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_TargetConfig_$38340_storage_ptr__to_t_struct$_TargetConfig_$38340_memory_ptr__fromStack_reversed":{"entryPoint":20576,"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_uint256_t_address__to_t_uint256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__fromStack_reversed":{"entryPoint":null,"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_uint32__to_t_uint32_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint32_t_int256_t_int256_t_int96__to_t_uint32_t_uint32_t_int256_t_int256_t_int256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint32_t_uint32_t_uint256_t_int256_t_address__to_t_uint32_t_uint32_t_uint256_t_int256_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint96_t_uint256_t_uint96_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_uint40":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"access_calldata_tail_t_bytes_calldata_ptr":{"entryPoint":20907,"id":null,"parameterSlots":2,"returnSlots":2},"allocate_memory":{"entryPoint":17696,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"calldata_array_index_range_access_t_bytes_calldata_ptr":{"entryPoint":20423,"id":null,"parameterSlots":4,"returnSlots":2},"checked_add_t_int256":{"entryPoint":21358,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_int96":{"entryPoint":21397,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":20038,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint8":{"entryPoint":20398,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":21472,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_helper":{"entryPoint":21000,"id":null,"parameterSlots":3,"returnSlots":2},"checked_exp_t_uint256_t_uint8":{"entryPoint":21227,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_unsigned":{"entryPoint":21067,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint32":{"entryPoint":21620,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":20083,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":21651,"id":null,"parameterSlots":3,"returnSlots":0},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20":{"entryPoint":21491,"id":null,"parameterSlots":2,"returnSlots":1},"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4":{"entryPoint":20462,"id":null,"parameterSlots":2,"returnSlots":1},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":21719,"id":null,"parameterSlots":2,"returnSlots":0},"decrement_t_uint256":{"entryPoint":21938,"id":null,"parameterSlots":1,"returnSlots":1},"extract_byte_array_length":{"entryPoint":20102,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"increment_t_uint32":{"entryPoint":21545,"id":null,"parameterSlots":1,"returnSlots":1},"mod_t_uint32":{"entryPoint":21581,"id":null,"parameterSlots":2,"returnSlots":1},"mod_t_uint8":{"entryPoint":21905,"id":null,"parameterSlots":2,"returnSlots":1},"negate_t_int256":{"entryPoint":20057,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":20018,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":21452,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":18314,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":20887,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":17676,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_bool":{"entryPoint":18592,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_contract_IERC4626":{"entryPoint":17884,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_uint32":{"entryPoint":18215,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:42454:125","nodeType":"YulBlock","src":"0:42454:125","statements":[{"nativeSrc":"6:3:125","nodeType":"YulBlock","src":"6:3:125","statements":[]},{"body":{"nativeSrc":"115:76:125","nodeType":"YulBlock","src":"115:76:125","statements":[{"nativeSrc":"125:26:125","nodeType":"YulAssignment","src":"125:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"137:9:125","nodeType":"YulIdentifier","src":"137:9:125"},{"kind":"number","nativeSrc":"148:2:125","nodeType":"YulLiteral","src":"148:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"133:3:125","nodeType":"YulIdentifier","src":"133:3:125"},"nativeSrc":"133:18:125","nodeType":"YulFunctionCall","src":"133:18:125"},"variableNames":[{"name":"tail","nativeSrc":"125:4:125","nodeType":"YulIdentifier","src":"125:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"167:9:125","nodeType":"YulIdentifier","src":"167:9:125"},{"name":"value0","nativeSrc":"178:6:125","nodeType":"YulIdentifier","src":"178:6:125"}],"functionName":{"name":"mstore","nativeSrc":"160:6:125","nodeType":"YulIdentifier","src":"160:6:125"},"nativeSrc":"160:25:125","nodeType":"YulFunctionCall","src":"160:25:125"},"nativeSrc":"160:25:125","nodeType":"YulExpressionStatement","src":"160:25:125"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"14:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"84:9:125","nodeType":"YulTypedName","src":"84:9:125","type":""},{"name":"value0","nativeSrc":"95:6:125","nodeType":"YulTypedName","src":"95:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"106:4:125","nodeType":"YulTypedName","src":"106:4:125","type":""}],"src":"14:177:125"},{"body":{"nativeSrc":"244:125:125","nodeType":"YulBlock","src":"244:125:125","statements":[{"nativeSrc":"254:29:125","nodeType":"YulAssignment","src":"254:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"276:6:125","nodeType":"YulIdentifier","src":"276:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"263:12:125","nodeType":"YulIdentifier","src":"263:12:125"},"nativeSrc":"263:20:125","nodeType":"YulFunctionCall","src":"263:20:125"},"variableNames":[{"name":"value","nativeSrc":"254:5:125","nodeType":"YulIdentifier","src":"254:5:125"}]},{"body":{"nativeSrc":"347:16:125","nodeType":"YulBlock","src":"347:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"356:1:125","nodeType":"YulLiteral","src":"356:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"359:1:125","nodeType":"YulLiteral","src":"359:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"349:6:125","nodeType":"YulIdentifier","src":"349:6:125"},"nativeSrc":"349:12:125","nodeType":"YulFunctionCall","src":"349:12:125"},"nativeSrc":"349:12:125","nodeType":"YulExpressionStatement","src":"349:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"305:5:125","nodeType":"YulIdentifier","src":"305:5:125"},{"arguments":[{"name":"value","nativeSrc":"316:5:125","nodeType":"YulIdentifier","src":"316:5:125"},{"arguments":[{"kind":"number","nativeSrc":"327:3:125","nodeType":"YulLiteral","src":"327:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"332:10:125","nodeType":"YulLiteral","src":"332:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"323:3:125","nodeType":"YulIdentifier","src":"323:3:125"},"nativeSrc":"323:20:125","nodeType":"YulFunctionCall","src":"323:20:125"}],"functionName":{"name":"and","nativeSrc":"312:3:125","nodeType":"YulIdentifier","src":"312:3:125"},"nativeSrc":"312:32:125","nodeType":"YulFunctionCall","src":"312:32:125"}],"functionName":{"name":"eq","nativeSrc":"302:2:125","nodeType":"YulIdentifier","src":"302:2:125"},"nativeSrc":"302:43:125","nodeType":"YulFunctionCall","src":"302:43:125"}],"functionName":{"name":"iszero","nativeSrc":"295:6:125","nodeType":"YulIdentifier","src":"295:6:125"},"nativeSrc":"295:51:125","nodeType":"YulFunctionCall","src":"295:51:125"},"nativeSrc":"292:71:125","nodeType":"YulIf","src":"292:71:125"}]},"name":"abi_decode_bytes4","nativeSrc":"196:173:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"223:6:125","nodeType":"YulTypedName","src":"223:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"234:5:125","nodeType":"YulTypedName","src":"234:5:125","type":""}],"src":"196:173:125"},{"body":{"nativeSrc":"443:115:125","nodeType":"YulBlock","src":"443:115:125","statements":[{"body":{"nativeSrc":"489:16:125","nodeType":"YulBlock","src":"489:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"498:1:125","nodeType":"YulLiteral","src":"498:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"501:1:125","nodeType":"YulLiteral","src":"501:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"491:6:125","nodeType":"YulIdentifier","src":"491:6:125"},"nativeSrc":"491:12:125","nodeType":"YulFunctionCall","src":"491:12:125"},"nativeSrc":"491:12:125","nodeType":"YulExpressionStatement","src":"491:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"464:7:125","nodeType":"YulIdentifier","src":"464:7:125"},{"name":"headStart","nativeSrc":"473:9:125","nodeType":"YulIdentifier","src":"473:9:125"}],"functionName":{"name":"sub","nativeSrc":"460:3:125","nodeType":"YulIdentifier","src":"460:3:125"},"nativeSrc":"460:23:125","nodeType":"YulFunctionCall","src":"460:23:125"},{"kind":"number","nativeSrc":"485:2:125","nodeType":"YulLiteral","src":"485:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"456:3:125","nodeType":"YulIdentifier","src":"456:3:125"},"nativeSrc":"456:32:125","nodeType":"YulFunctionCall","src":"456:32:125"},"nativeSrc":"453:52:125","nodeType":"YulIf","src":"453:52:125"},{"nativeSrc":"514:38:125","nodeType":"YulAssignment","src":"514:38:125","value":{"arguments":[{"name":"headStart","nativeSrc":"542:9:125","nodeType":"YulIdentifier","src":"542:9:125"}],"functionName":{"name":"abi_decode_bytes4","nativeSrc":"524:17:125","nodeType":"YulIdentifier","src":"524:17:125"},"nativeSrc":"524:28:125","nodeType":"YulFunctionCall","src":"524:28:125"},"variableNames":[{"name":"value0","nativeSrc":"514:6:125","nodeType":"YulIdentifier","src":"514:6:125"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"374:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"409:9:125","nodeType":"YulTypedName","src":"409:9:125","type":""},{"name":"dataEnd","nativeSrc":"420:7:125","nodeType":"YulTypedName","src":"420:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"432:6:125","nodeType":"YulTypedName","src":"432:6:125","type":""}],"src":"374:184:125"},{"body":{"nativeSrc":"658:92:125","nodeType":"YulBlock","src":"658:92:125","statements":[{"nativeSrc":"668:26:125","nodeType":"YulAssignment","src":"668:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"680:9:125","nodeType":"YulIdentifier","src":"680:9:125"},{"kind":"number","nativeSrc":"691:2:125","nodeType":"YulLiteral","src":"691:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"676:3:125","nodeType":"YulIdentifier","src":"676:3:125"},"nativeSrc":"676:18:125","nodeType":"YulFunctionCall","src":"676:18:125"},"variableNames":[{"name":"tail","nativeSrc":"668:4:125","nodeType":"YulIdentifier","src":"668:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"710:9:125","nodeType":"YulIdentifier","src":"710:9:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"735:6:125","nodeType":"YulIdentifier","src":"735:6:125"}],"functionName":{"name":"iszero","nativeSrc":"728:6:125","nodeType":"YulIdentifier","src":"728:6:125"},"nativeSrc":"728:14:125","nodeType":"YulFunctionCall","src":"728:14:125"}],"functionName":{"name":"iszero","nativeSrc":"721:6:125","nodeType":"YulIdentifier","src":"721:6:125"},"nativeSrc":"721:22:125","nodeType":"YulFunctionCall","src":"721:22:125"}],"functionName":{"name":"mstore","nativeSrc":"703:6:125","nodeType":"YulIdentifier","src":"703:6:125"},"nativeSrc":"703:41:125","nodeType":"YulFunctionCall","src":"703:41:125"},"nativeSrc":"703:41:125","nodeType":"YulExpressionStatement","src":"703:41:125"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"563:187:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"627:9:125","nodeType":"YulTypedName","src":"627:9:125","type":""},{"name":"value0","nativeSrc":"638:6:125","nodeType":"YulTypedName","src":"638:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"649:4:125","nodeType":"YulTypedName","src":"649:4:125","type":""}],"src":"563:187:125"},{"body":{"nativeSrc":"805:239:125","nodeType":"YulBlock","src":"805:239:125","statements":[{"nativeSrc":"815:26:125","nodeType":"YulVariableDeclaration","src":"815:26:125","value":{"arguments":[{"name":"value","nativeSrc":"835:5:125","nodeType":"YulIdentifier","src":"835:5:125"}],"functionName":{"name":"mload","nativeSrc":"829:5:125","nodeType":"YulIdentifier","src":"829:5:125"},"nativeSrc":"829:12:125","nodeType":"YulFunctionCall","src":"829:12:125"},"variables":[{"name":"length","nativeSrc":"819:6:125","nodeType":"YulTypedName","src":"819:6:125","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"857:3:125","nodeType":"YulIdentifier","src":"857:3:125"},{"name":"length","nativeSrc":"862:6:125","nodeType":"YulIdentifier","src":"862:6:125"}],"functionName":{"name":"mstore","nativeSrc":"850:6:125","nodeType":"YulIdentifier","src":"850:6:125"},"nativeSrc":"850:19:125","nodeType":"YulFunctionCall","src":"850:19:125"},"nativeSrc":"850:19:125","nodeType":"YulExpressionStatement","src":"850:19:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"888:3:125","nodeType":"YulIdentifier","src":"888:3:125"},{"kind":"number","nativeSrc":"893:4:125","nodeType":"YulLiteral","src":"893:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"884:3:125","nodeType":"YulIdentifier","src":"884:3:125"},"nativeSrc":"884:14:125","nodeType":"YulFunctionCall","src":"884:14:125"},{"arguments":[{"name":"value","nativeSrc":"904:5:125","nodeType":"YulIdentifier","src":"904:5:125"},{"kind":"number","nativeSrc":"911:4:125","nodeType":"YulLiteral","src":"911:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"900:3:125","nodeType":"YulIdentifier","src":"900:3:125"},"nativeSrc":"900:16:125","nodeType":"YulFunctionCall","src":"900:16:125"},{"name":"length","nativeSrc":"918:6:125","nodeType":"YulIdentifier","src":"918:6:125"}],"functionName":{"name":"mcopy","nativeSrc":"878:5:125","nodeType":"YulIdentifier","src":"878:5:125"},"nativeSrc":"878:47:125","nodeType":"YulFunctionCall","src":"878:47:125"},"nativeSrc":"878:47:125","nodeType":"YulExpressionStatement","src":"878:47:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"949:3:125","nodeType":"YulIdentifier","src":"949:3:125"},{"name":"length","nativeSrc":"954:6:125","nodeType":"YulIdentifier","src":"954:6:125"}],"functionName":{"name":"add","nativeSrc":"945:3:125","nodeType":"YulIdentifier","src":"945:3:125"},"nativeSrc":"945:16:125","nodeType":"YulFunctionCall","src":"945:16:125"},{"kind":"number","nativeSrc":"963:4:125","nodeType":"YulLiteral","src":"963:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"941:3:125","nodeType":"YulIdentifier","src":"941:3:125"},"nativeSrc":"941:27:125","nodeType":"YulFunctionCall","src":"941:27:125"},{"kind":"number","nativeSrc":"970:1:125","nodeType":"YulLiteral","src":"970:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"934:6:125","nodeType":"YulIdentifier","src":"934:6:125"},"nativeSrc":"934:38:125","nodeType":"YulFunctionCall","src":"934:38:125"},"nativeSrc":"934:38:125","nodeType":"YulExpressionStatement","src":"934:38:125"},{"nativeSrc":"981:57:125","nodeType":"YulAssignment","src":"981:57:125","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"996:3:125","nodeType":"YulIdentifier","src":"996:3:125"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1009:6:125","nodeType":"YulIdentifier","src":"1009:6:125"},{"kind":"number","nativeSrc":"1017:2:125","nodeType":"YulLiteral","src":"1017:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1005:3:125","nodeType":"YulIdentifier","src":"1005:3:125"},"nativeSrc":"1005:15:125","nodeType":"YulFunctionCall","src":"1005:15:125"},{"arguments":[{"kind":"number","nativeSrc":"1026:2:125","nodeType":"YulLiteral","src":"1026:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1022:3:125","nodeType":"YulIdentifier","src":"1022:3:125"},"nativeSrc":"1022:7:125","nodeType":"YulFunctionCall","src":"1022:7:125"}],"functionName":{"name":"and","nativeSrc":"1001:3:125","nodeType":"YulIdentifier","src":"1001:3:125"},"nativeSrc":"1001:29:125","nodeType":"YulFunctionCall","src":"1001:29:125"}],"functionName":{"name":"add","nativeSrc":"992:3:125","nodeType":"YulIdentifier","src":"992:3:125"},"nativeSrc":"992:39:125","nodeType":"YulFunctionCall","src":"992:39:125"},{"kind":"number","nativeSrc":"1033:4:125","nodeType":"YulLiteral","src":"1033:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"988:3:125","nodeType":"YulIdentifier","src":"988:3:125"},"nativeSrc":"988:50:125","nodeType":"YulFunctionCall","src":"988:50:125"},"variableNames":[{"name":"end","nativeSrc":"981:3:125","nodeType":"YulIdentifier","src":"981:3:125"}]}]},"name":"abi_encode_string","nativeSrc":"755:289:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"782:5:125","nodeType":"YulTypedName","src":"782:5:125","type":""},{"name":"pos","nativeSrc":"789:3:125","nodeType":"YulTypedName","src":"789:3:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"797:3:125","nodeType":"YulTypedName","src":"797:3:125","type":""}],"src":"755:289:125"},{"body":{"nativeSrc":"1170:99:125","nodeType":"YulBlock","src":"1170:99:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1187:9:125","nodeType":"YulIdentifier","src":"1187:9:125"},{"kind":"number","nativeSrc":"1198:2:125","nodeType":"YulLiteral","src":"1198:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"1180:6:125","nodeType":"YulIdentifier","src":"1180:6:125"},"nativeSrc":"1180:21:125","nodeType":"YulFunctionCall","src":"1180:21:125"},"nativeSrc":"1180:21:125","nodeType":"YulExpressionStatement","src":"1180:21:125"},{"nativeSrc":"1210:53:125","nodeType":"YulAssignment","src":"1210:53:125","value":{"arguments":[{"name":"value0","nativeSrc":"1236:6:125","nodeType":"YulIdentifier","src":"1236:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"1248:9:125","nodeType":"YulIdentifier","src":"1248:9:125"},{"kind":"number","nativeSrc":"1259:2:125","nodeType":"YulLiteral","src":"1259:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1244:3:125","nodeType":"YulIdentifier","src":"1244:3:125"},"nativeSrc":"1244:18:125","nodeType":"YulFunctionCall","src":"1244:18:125"}],"functionName":{"name":"abi_encode_string","nativeSrc":"1218:17:125","nodeType":"YulIdentifier","src":"1218:17:125"},"nativeSrc":"1218:45:125","nodeType":"YulFunctionCall","src":"1218:45:125"},"variableNames":[{"name":"tail","nativeSrc":"1210:4:125","nodeType":"YulIdentifier","src":"1210:4:125"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"1049:220:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1139:9:125","nodeType":"YulTypedName","src":"1139:9:125","type":""},{"name":"value0","nativeSrc":"1150:6:125","nodeType":"YulTypedName","src":"1150:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1161:4:125","nodeType":"YulTypedName","src":"1161:4:125","type":""}],"src":"1049:220:125"},{"body":{"nativeSrc":"1306:95:125","nodeType":"YulBlock","src":"1306:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1323:1:125","nodeType":"YulLiteral","src":"1323:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1330:3:125","nodeType":"YulLiteral","src":"1330:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"1335:10:125","nodeType":"YulLiteral","src":"1335:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1326:3:125","nodeType":"YulIdentifier","src":"1326:3:125"},"nativeSrc":"1326:20:125","nodeType":"YulFunctionCall","src":"1326:20:125"}],"functionName":{"name":"mstore","nativeSrc":"1316:6:125","nodeType":"YulIdentifier","src":"1316:6:125"},"nativeSrc":"1316:31:125","nodeType":"YulFunctionCall","src":"1316:31:125"},"nativeSrc":"1316:31:125","nodeType":"YulExpressionStatement","src":"1316:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1363:1:125","nodeType":"YulLiteral","src":"1363:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"1366:4:125","nodeType":"YulLiteral","src":"1366:4:125","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"1356:6:125","nodeType":"YulIdentifier","src":"1356:6:125"},"nativeSrc":"1356:15:125","nodeType":"YulFunctionCall","src":"1356:15:125"},"nativeSrc":"1356:15:125","nodeType":"YulExpressionStatement","src":"1356:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1387:1:125","nodeType":"YulLiteral","src":"1387:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"1390:4:125","nodeType":"YulLiteral","src":"1390:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1380:6:125","nodeType":"YulIdentifier","src":"1380:6:125"},"nativeSrc":"1380:15:125","nodeType":"YulFunctionCall","src":"1380:15:125"},"nativeSrc":"1380:15:125","nodeType":"YulExpressionStatement","src":"1380:15:125"}]},"name":"panic_error_0x41","nativeSrc":"1274:127:125","nodeType":"YulFunctionDefinition","src":"1274:127:125"},{"body":{"nativeSrc":"1447:206:125","nodeType":"YulBlock","src":"1447:206:125","statements":[{"nativeSrc":"1457:19:125","nodeType":"YulAssignment","src":"1457:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"1473:2:125","nodeType":"YulLiteral","src":"1473:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1467:5:125","nodeType":"YulIdentifier","src":"1467:5:125"},"nativeSrc":"1467:9:125","nodeType":"YulFunctionCall","src":"1467:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"1457:6:125","nodeType":"YulIdentifier","src":"1457:6:125"}]},{"nativeSrc":"1485:34:125","nodeType":"YulVariableDeclaration","src":"1485:34:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"1507:6:125","nodeType":"YulIdentifier","src":"1507:6:125"},{"kind":"number","nativeSrc":"1515:3:125","nodeType":"YulLiteral","src":"1515:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"1503:3:125","nodeType":"YulIdentifier","src":"1503:3:125"},"nativeSrc":"1503:16:125","nodeType":"YulFunctionCall","src":"1503:16:125"},"variables":[{"name":"newFreePtr","nativeSrc":"1489:10:125","nodeType":"YulTypedName","src":"1489:10:125","type":""}]},{"body":{"nativeSrc":"1594:22:125","nodeType":"YulBlock","src":"1594:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1596:16:125","nodeType":"YulIdentifier","src":"1596:16:125"},"nativeSrc":"1596:18:125","nodeType":"YulFunctionCall","src":"1596:18:125"},"nativeSrc":"1596:18:125","nodeType":"YulExpressionStatement","src":"1596:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"1537:10:125","nodeType":"YulIdentifier","src":"1537:10:125"},{"kind":"number","nativeSrc":"1549:18:125","nodeType":"YulLiteral","src":"1549:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1534:2:125","nodeType":"YulIdentifier","src":"1534:2:125"},"nativeSrc":"1534:34:125","nodeType":"YulFunctionCall","src":"1534:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"1573:10:125","nodeType":"YulIdentifier","src":"1573:10:125"},{"name":"memPtr","nativeSrc":"1585:6:125","nodeType":"YulIdentifier","src":"1585:6:125"}],"functionName":{"name":"lt","nativeSrc":"1570:2:125","nodeType":"YulIdentifier","src":"1570:2:125"},"nativeSrc":"1570:22:125","nodeType":"YulFunctionCall","src":"1570:22:125"}],"functionName":{"name":"or","nativeSrc":"1531:2:125","nodeType":"YulIdentifier","src":"1531:2:125"},"nativeSrc":"1531:62:125","nodeType":"YulFunctionCall","src":"1531:62:125"},"nativeSrc":"1528:88:125","nodeType":"YulIf","src":"1528:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1632:2:125","nodeType":"YulLiteral","src":"1632:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1636:10:125","nodeType":"YulIdentifier","src":"1636:10:125"}],"functionName":{"name":"mstore","nativeSrc":"1625:6:125","nodeType":"YulIdentifier","src":"1625:6:125"},"nativeSrc":"1625:22:125","nodeType":"YulFunctionCall","src":"1625:22:125"},"nativeSrc":"1625:22:125","nodeType":"YulExpressionStatement","src":"1625:22:125"}]},"name":"allocate_memory","nativeSrc":"1406:247:125","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"1436:6:125","nodeType":"YulTypedName","src":"1436:6:125","type":""}],"src":"1406:247:125"},{"body":{"nativeSrc":"1733:641:125","nodeType":"YulBlock","src":"1733:641:125","statements":[{"nativeSrc":"1743:13:125","nodeType":"YulVariableDeclaration","src":"1743:13:125","value":{"kind":"number","nativeSrc":"1755:1:125","nodeType":"YulLiteral","src":"1755:1:125","type":"","value":"0"},"variables":[{"name":"size","nativeSrc":"1747:4:125","nodeType":"YulTypedName","src":"1747:4:125","type":""}]},{"body":{"nativeSrc":"1799:22:125","nodeType":"YulBlock","src":"1799:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1801:16:125","nodeType":"YulIdentifier","src":"1801:16:125"},"nativeSrc":"1801:18:125","nodeType":"YulFunctionCall","src":"1801:18:125"},"nativeSrc":"1801:18:125","nodeType":"YulExpressionStatement","src":"1801:18:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1771:6:125","nodeType":"YulIdentifier","src":"1771:6:125"},{"kind":"number","nativeSrc":"1779:18:125","nodeType":"YulLiteral","src":"1779:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1768:2:125","nodeType":"YulIdentifier","src":"1768:2:125"},"nativeSrc":"1768:30:125","nodeType":"YulFunctionCall","src":"1768:30:125"},"nativeSrc":"1765:56:125","nodeType":"YulIf","src":"1765:56:125"},{"nativeSrc":"1830:43:125","nodeType":"YulVariableDeclaration","src":"1830:43:125","value":{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1852:6:125","nodeType":"YulIdentifier","src":"1852:6:125"},{"kind":"number","nativeSrc":"1860:2:125","nodeType":"YulLiteral","src":"1860:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1848:3:125","nodeType":"YulIdentifier","src":"1848:3:125"},"nativeSrc":"1848:15:125","nodeType":"YulFunctionCall","src":"1848:15:125"},{"arguments":[{"kind":"number","nativeSrc":"1869:2:125","nodeType":"YulLiteral","src":"1869:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1865:3:125","nodeType":"YulIdentifier","src":"1865:3:125"},"nativeSrc":"1865:7:125","nodeType":"YulFunctionCall","src":"1865:7:125"}],"functionName":{"name":"and","nativeSrc":"1844:3:125","nodeType":"YulIdentifier","src":"1844:3:125"},"nativeSrc":"1844:29:125","nodeType":"YulFunctionCall","src":"1844:29:125"},"variables":[{"name":"result","nativeSrc":"1834:6:125","nodeType":"YulTypedName","src":"1834:6:125","type":""}]},{"nativeSrc":"1882:25:125","nodeType":"YulAssignment","src":"1882:25:125","value":{"arguments":[{"name":"result","nativeSrc":"1894:6:125","nodeType":"YulIdentifier","src":"1894:6:125"},{"kind":"number","nativeSrc":"1902:4:125","nodeType":"YulLiteral","src":"1902:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1890:3:125","nodeType":"YulIdentifier","src":"1890:3:125"},"nativeSrc":"1890:17:125","nodeType":"YulFunctionCall","src":"1890:17:125"},"variableNames":[{"name":"size","nativeSrc":"1882:4:125","nodeType":"YulIdentifier","src":"1882:4:125"}]},{"nativeSrc":"1916:15:125","nodeType":"YulVariableDeclaration","src":"1916:15:125","value":{"kind":"number","nativeSrc":"1930:1:125","nodeType":"YulLiteral","src":"1930:1:125","type":"","value":"0"},"variables":[{"name":"memPtr","nativeSrc":"1920:6:125","nodeType":"YulTypedName","src":"1920:6:125","type":""}]},{"nativeSrc":"1940:19:125","nodeType":"YulAssignment","src":"1940:19:125","value":{"arguments":[{"kind":"number","nativeSrc":"1956:2:125","nodeType":"YulLiteral","src":"1956:2:125","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1950:5:125","nodeType":"YulIdentifier","src":"1950:5:125"},"nativeSrc":"1950:9:125","nodeType":"YulFunctionCall","src":"1950:9:125"},"variableNames":[{"name":"memPtr","nativeSrc":"1940:6:125","nodeType":"YulIdentifier","src":"1940:6:125"}]},{"nativeSrc":"1968:60:125","nodeType":"YulVariableDeclaration","src":"1968:60:125","value":{"arguments":[{"name":"memPtr","nativeSrc":"1990:6:125","nodeType":"YulIdentifier","src":"1990:6:125"},{"arguments":[{"arguments":[{"name":"result","nativeSrc":"2006:6:125","nodeType":"YulIdentifier","src":"2006:6:125"},{"kind":"number","nativeSrc":"2014:2:125","nodeType":"YulLiteral","src":"2014:2:125","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"2002:3:125","nodeType":"YulIdentifier","src":"2002:3:125"},"nativeSrc":"2002:15:125","nodeType":"YulFunctionCall","src":"2002:15:125"},{"arguments":[{"kind":"number","nativeSrc":"2023:2:125","nodeType":"YulLiteral","src":"2023:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"2019:3:125","nodeType":"YulIdentifier","src":"2019:3:125"},"nativeSrc":"2019:7:125","nodeType":"YulFunctionCall","src":"2019:7:125"}],"functionName":{"name":"and","nativeSrc":"1998:3:125","nodeType":"YulIdentifier","src":"1998:3:125"},"nativeSrc":"1998:29:125","nodeType":"YulFunctionCall","src":"1998:29:125"}],"functionName":{"name":"add","nativeSrc":"1986:3:125","nodeType":"YulIdentifier","src":"1986:3:125"},"nativeSrc":"1986:42:125","nodeType":"YulFunctionCall","src":"1986:42:125"},"variables":[{"name":"newFreePtr","nativeSrc":"1972:10:125","nodeType":"YulTypedName","src":"1972:10:125","type":""}]},{"body":{"nativeSrc":"2103:22:125","nodeType":"YulBlock","src":"2103:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2105:16:125","nodeType":"YulIdentifier","src":"2105:16:125"},"nativeSrc":"2105:18:125","nodeType":"YulFunctionCall","src":"2105:18:125"},"nativeSrc":"2105:18:125","nodeType":"YulExpressionStatement","src":"2105:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"2046:10:125","nodeType":"YulIdentifier","src":"2046:10:125"},{"kind":"number","nativeSrc":"2058:18:125","nodeType":"YulLiteral","src":"2058:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2043:2:125","nodeType":"YulIdentifier","src":"2043:2:125"},"nativeSrc":"2043:34:125","nodeType":"YulFunctionCall","src":"2043:34:125"},{"arguments":[{"name":"newFreePtr","nativeSrc":"2082:10:125","nodeType":"YulIdentifier","src":"2082:10:125"},{"name":"memPtr","nativeSrc":"2094:6:125","nodeType":"YulIdentifier","src":"2094:6:125"}],"functionName":{"name":"lt","nativeSrc":"2079:2:125","nodeType":"YulIdentifier","src":"2079:2:125"},"nativeSrc":"2079:22:125","nodeType":"YulFunctionCall","src":"2079:22:125"}],"functionName":{"name":"or","nativeSrc":"2040:2:125","nodeType":"YulIdentifier","src":"2040:2:125"},"nativeSrc":"2040:62:125","nodeType":"YulFunctionCall","src":"2040:62:125"},"nativeSrc":"2037:88:125","nodeType":"YulIf","src":"2037:88:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2141:2:125","nodeType":"YulLiteral","src":"2141:2:125","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"2145:10:125","nodeType":"YulIdentifier","src":"2145:10:125"}],"functionName":{"name":"mstore","nativeSrc":"2134:6:125","nodeType":"YulIdentifier","src":"2134:6:125"},"nativeSrc":"2134:22:125","nodeType":"YulFunctionCall","src":"2134:22:125"},"nativeSrc":"2134:22:125","nodeType":"YulExpressionStatement","src":"2134:22:125"},{"nativeSrc":"2165:15:125","nodeType":"YulAssignment","src":"2165:15:125","value":{"name":"memPtr","nativeSrc":"2174:6:125","nodeType":"YulIdentifier","src":"2174:6:125"},"variableNames":[{"name":"array","nativeSrc":"2165:5:125","nodeType":"YulIdentifier","src":"2165:5:125"}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"2196:6:125","nodeType":"YulIdentifier","src":"2196:6:125"},{"name":"length","nativeSrc":"2204:6:125","nodeType":"YulIdentifier","src":"2204:6:125"}],"functionName":{"name":"mstore","nativeSrc":"2189:6:125","nodeType":"YulIdentifier","src":"2189:6:125"},"nativeSrc":"2189:22:125","nodeType":"YulFunctionCall","src":"2189:22:125"},"nativeSrc":"2189:22:125","nodeType":"YulExpressionStatement","src":"2189:22:125"},{"body":{"nativeSrc":"2249:16:125","nodeType":"YulBlock","src":"2249:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2258:1:125","nodeType":"YulLiteral","src":"2258:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2261:1:125","nodeType":"YulLiteral","src":"2261:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2251:6:125","nodeType":"YulIdentifier","src":"2251:6:125"},"nativeSrc":"2251:12:125","nodeType":"YulFunctionCall","src":"2251:12:125"},"nativeSrc":"2251:12:125","nodeType":"YulExpressionStatement","src":"2251:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"2230:3:125","nodeType":"YulIdentifier","src":"2230:3:125"},{"name":"length","nativeSrc":"2235:6:125","nodeType":"YulIdentifier","src":"2235:6:125"}],"functionName":{"name":"add","nativeSrc":"2226:3:125","nodeType":"YulIdentifier","src":"2226:3:125"},"nativeSrc":"2226:16:125","nodeType":"YulFunctionCall","src":"2226:16:125"},{"name":"end","nativeSrc":"2244:3:125","nodeType":"YulIdentifier","src":"2244:3:125"}],"functionName":{"name":"gt","nativeSrc":"2223:2:125","nodeType":"YulIdentifier","src":"2223:2:125"},"nativeSrc":"2223:25:125","nodeType":"YulFunctionCall","src":"2223:25:125"},"nativeSrc":"2220:45:125","nodeType":"YulIf","src":"2220:45:125"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"2291:6:125","nodeType":"YulIdentifier","src":"2291:6:125"},{"kind":"number","nativeSrc":"2299:4:125","nodeType":"YulLiteral","src":"2299:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2287:3:125","nodeType":"YulIdentifier","src":"2287:3:125"},"nativeSrc":"2287:17:125","nodeType":"YulFunctionCall","src":"2287:17:125"},{"name":"src","nativeSrc":"2306:3:125","nodeType":"YulIdentifier","src":"2306:3:125"},{"name":"length","nativeSrc":"2311:6:125","nodeType":"YulIdentifier","src":"2311:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"2274:12:125","nodeType":"YulIdentifier","src":"2274:12:125"},"nativeSrc":"2274:44:125","nodeType":"YulFunctionCall","src":"2274:44:125"},"nativeSrc":"2274:44:125","nodeType":"YulExpressionStatement","src":"2274:44:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"2342:6:125","nodeType":"YulIdentifier","src":"2342:6:125"},{"name":"length","nativeSrc":"2350:6:125","nodeType":"YulIdentifier","src":"2350:6:125"}],"functionName":{"name":"add","nativeSrc":"2338:3:125","nodeType":"YulIdentifier","src":"2338:3:125"},"nativeSrc":"2338:19:125","nodeType":"YulFunctionCall","src":"2338:19:125"},{"kind":"number","nativeSrc":"2359:4:125","nodeType":"YulLiteral","src":"2359:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2334:3:125","nodeType":"YulIdentifier","src":"2334:3:125"},"nativeSrc":"2334:30:125","nodeType":"YulFunctionCall","src":"2334:30:125"},{"kind":"number","nativeSrc":"2366:1:125","nodeType":"YulLiteral","src":"2366:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"2327:6:125","nodeType":"YulIdentifier","src":"2327:6:125"},"nativeSrc":"2327:41:125","nodeType":"YulFunctionCall","src":"2327:41:125"},"nativeSrc":"2327:41:125","nodeType":"YulExpressionStatement","src":"2327:41:125"}]},"name":"abi_decode_available_length_string","nativeSrc":"1658:716:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nativeSrc":"1702:3:125","nodeType":"YulTypedName","src":"1702:3:125","type":""},{"name":"length","nativeSrc":"1707:6:125","nodeType":"YulTypedName","src":"1707:6:125","type":""},{"name":"end","nativeSrc":"1715:3:125","nodeType":"YulTypedName","src":"1715:3:125","type":""}],"returnVariables":[{"name":"array","nativeSrc":"1723:5:125","nodeType":"YulTypedName","src":"1723:5:125","type":""}],"src":"1658:716:125"},{"body":{"nativeSrc":"2432:169:125","nodeType":"YulBlock","src":"2432:169:125","statements":[{"body":{"nativeSrc":"2481:16:125","nodeType":"YulBlock","src":"2481:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2490:1:125","nodeType":"YulLiteral","src":"2490:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2493:1:125","nodeType":"YulLiteral","src":"2493:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2483:6:125","nodeType":"YulIdentifier","src":"2483:6:125"},"nativeSrc":"2483:12:125","nodeType":"YulFunctionCall","src":"2483:12:125"},"nativeSrc":"2483:12:125","nodeType":"YulExpressionStatement","src":"2483:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2460:6:125","nodeType":"YulIdentifier","src":"2460:6:125"},{"kind":"number","nativeSrc":"2468:4:125","nodeType":"YulLiteral","src":"2468:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"2456:3:125","nodeType":"YulIdentifier","src":"2456:3:125"},"nativeSrc":"2456:17:125","nodeType":"YulFunctionCall","src":"2456:17:125"},{"name":"end","nativeSrc":"2475:3:125","nodeType":"YulIdentifier","src":"2475:3:125"}],"functionName":{"name":"slt","nativeSrc":"2452:3:125","nodeType":"YulIdentifier","src":"2452:3:125"},"nativeSrc":"2452:27:125","nodeType":"YulFunctionCall","src":"2452:27:125"}],"functionName":{"name":"iszero","nativeSrc":"2445:6:125","nodeType":"YulIdentifier","src":"2445:6:125"},"nativeSrc":"2445:35:125","nodeType":"YulFunctionCall","src":"2445:35:125"},"nativeSrc":"2442:55:125","nodeType":"YulIf","src":"2442:55:125"},{"nativeSrc":"2506:89:125","nodeType":"YulAssignment","src":"2506:89:125","value":{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2554:6:125","nodeType":"YulIdentifier","src":"2554:6:125"},{"kind":"number","nativeSrc":"2562:4:125","nodeType":"YulLiteral","src":"2562:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2550:3:125","nodeType":"YulIdentifier","src":"2550:3:125"},"nativeSrc":"2550:17:125","nodeType":"YulFunctionCall","src":"2550:17:125"},{"arguments":[{"name":"offset","nativeSrc":"2582:6:125","nodeType":"YulIdentifier","src":"2582:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"2569:12:125","nodeType":"YulIdentifier","src":"2569:12:125"},"nativeSrc":"2569:20:125","nodeType":"YulFunctionCall","src":"2569:20:125"},{"name":"end","nativeSrc":"2591:3:125","nodeType":"YulIdentifier","src":"2591:3:125"}],"functionName":{"name":"abi_decode_available_length_string","nativeSrc":"2515:34:125","nodeType":"YulIdentifier","src":"2515:34:125"},"nativeSrc":"2515:80:125","nodeType":"YulFunctionCall","src":"2515:80:125"},"variableNames":[{"name":"array","nativeSrc":"2506:5:125","nodeType":"YulIdentifier","src":"2506:5:125"}]}]},"name":"abi_decode_string","nativeSrc":"2379:222:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"2406:6:125","nodeType":"YulTypedName","src":"2406:6:125","type":""},{"name":"end","nativeSrc":"2414:3:125","nodeType":"YulTypedName","src":"2414:3:125","type":""}],"returnVariables":[{"name":"array","nativeSrc":"2422:5:125","nodeType":"YulTypedName","src":"2422:5:125","type":""}],"src":"2379:222:125"},{"body":{"nativeSrc":"2661:86:125","nodeType":"YulBlock","src":"2661:86:125","statements":[{"body":{"nativeSrc":"2725:16:125","nodeType":"YulBlock","src":"2725:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2734:1:125","nodeType":"YulLiteral","src":"2734:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2737:1:125","nodeType":"YulLiteral","src":"2737:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2727:6:125","nodeType":"YulIdentifier","src":"2727:6:125"},"nativeSrc":"2727:12:125","nodeType":"YulFunctionCall","src":"2727:12:125"},"nativeSrc":"2727:12:125","nodeType":"YulExpressionStatement","src":"2727:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2684:5:125","nodeType":"YulIdentifier","src":"2684:5:125"},{"arguments":[{"name":"value","nativeSrc":"2695:5:125","nodeType":"YulIdentifier","src":"2695:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2710:3:125","nodeType":"YulLiteral","src":"2710:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"2715:1:125","nodeType":"YulLiteral","src":"2715:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2706:3:125","nodeType":"YulIdentifier","src":"2706:3:125"},"nativeSrc":"2706:11:125","nodeType":"YulFunctionCall","src":"2706:11:125"},{"kind":"number","nativeSrc":"2719:1:125","nodeType":"YulLiteral","src":"2719:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2702:3:125","nodeType":"YulIdentifier","src":"2702:3:125"},"nativeSrc":"2702:19:125","nodeType":"YulFunctionCall","src":"2702:19:125"}],"functionName":{"name":"and","nativeSrc":"2691:3:125","nodeType":"YulIdentifier","src":"2691:3:125"},"nativeSrc":"2691:31:125","nodeType":"YulFunctionCall","src":"2691:31:125"}],"functionName":{"name":"eq","nativeSrc":"2681:2:125","nodeType":"YulIdentifier","src":"2681:2:125"},"nativeSrc":"2681:42:125","nodeType":"YulFunctionCall","src":"2681:42:125"}],"functionName":{"name":"iszero","nativeSrc":"2674:6:125","nodeType":"YulIdentifier","src":"2674:6:125"},"nativeSrc":"2674:50:125","nodeType":"YulFunctionCall","src":"2674:50:125"},"nativeSrc":"2671:70:125","nodeType":"YulIf","src":"2671:70:125"}]},"name":"validator_revert_contract_IERC4626","nativeSrc":"2606:141:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"2650:5:125","nodeType":"YulTypedName","src":"2650:5:125","type":""}],"src":"2606:141:125"},{"body":{"nativeSrc":"2894:559:125","nodeType":"YulBlock","src":"2894:559:125","statements":[{"body":{"nativeSrc":"2940:16:125","nodeType":"YulBlock","src":"2940:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2949:1:125","nodeType":"YulLiteral","src":"2949:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"2952:1:125","nodeType":"YulLiteral","src":"2952:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2942:6:125","nodeType":"YulIdentifier","src":"2942:6:125"},"nativeSrc":"2942:12:125","nodeType":"YulFunctionCall","src":"2942:12:125"},"nativeSrc":"2942:12:125","nodeType":"YulExpressionStatement","src":"2942:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2915:7:125","nodeType":"YulIdentifier","src":"2915:7:125"},{"name":"headStart","nativeSrc":"2924:9:125","nodeType":"YulIdentifier","src":"2924:9:125"}],"functionName":{"name":"sub","nativeSrc":"2911:3:125","nodeType":"YulIdentifier","src":"2911:3:125"},"nativeSrc":"2911:23:125","nodeType":"YulFunctionCall","src":"2911:23:125"},{"kind":"number","nativeSrc":"2936:2:125","nodeType":"YulLiteral","src":"2936:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2907:3:125","nodeType":"YulIdentifier","src":"2907:3:125"},"nativeSrc":"2907:32:125","nodeType":"YulFunctionCall","src":"2907:32:125"},"nativeSrc":"2904:52:125","nodeType":"YulIf","src":"2904:52:125"},{"nativeSrc":"2965:37:125","nodeType":"YulVariableDeclaration","src":"2965:37:125","value":{"arguments":[{"name":"headStart","nativeSrc":"2992:9:125","nodeType":"YulIdentifier","src":"2992:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"2979:12:125","nodeType":"YulIdentifier","src":"2979:12:125"},"nativeSrc":"2979:23:125","nodeType":"YulFunctionCall","src":"2979:23:125"},"variables":[{"name":"offset","nativeSrc":"2969:6:125","nodeType":"YulTypedName","src":"2969:6:125","type":""}]},{"body":{"nativeSrc":"3045:16:125","nodeType":"YulBlock","src":"3045:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3054:1:125","nodeType":"YulLiteral","src":"3054:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3057:1:125","nodeType":"YulLiteral","src":"3057:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3047:6:125","nodeType":"YulIdentifier","src":"3047:6:125"},"nativeSrc":"3047:12:125","nodeType":"YulFunctionCall","src":"3047:12:125"},"nativeSrc":"3047:12:125","nodeType":"YulExpressionStatement","src":"3047:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"3017:6:125","nodeType":"YulIdentifier","src":"3017:6:125"},{"kind":"number","nativeSrc":"3025:18:125","nodeType":"YulLiteral","src":"3025:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3014:2:125","nodeType":"YulIdentifier","src":"3014:2:125"},"nativeSrc":"3014:30:125","nodeType":"YulFunctionCall","src":"3014:30:125"},"nativeSrc":"3011:50:125","nodeType":"YulIf","src":"3011:50:125"},{"nativeSrc":"3070:60:125","nodeType":"YulAssignment","src":"3070:60:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3102:9:125","nodeType":"YulIdentifier","src":"3102:9:125"},{"name":"offset","nativeSrc":"3113:6:125","nodeType":"YulIdentifier","src":"3113:6:125"}],"functionName":{"name":"add","nativeSrc":"3098:3:125","nodeType":"YulIdentifier","src":"3098:3:125"},"nativeSrc":"3098:22:125","nodeType":"YulFunctionCall","src":"3098:22:125"},{"name":"dataEnd","nativeSrc":"3122:7:125","nodeType":"YulIdentifier","src":"3122:7:125"}],"functionName":{"name":"abi_decode_string","nativeSrc":"3080:17:125","nodeType":"YulIdentifier","src":"3080:17:125"},"nativeSrc":"3080:50:125","nodeType":"YulFunctionCall","src":"3080:50:125"},"variableNames":[{"name":"value0","nativeSrc":"3070:6:125","nodeType":"YulIdentifier","src":"3070:6:125"}]},{"nativeSrc":"3139:48:125","nodeType":"YulVariableDeclaration","src":"3139:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3172:9:125","nodeType":"YulIdentifier","src":"3172:9:125"},{"kind":"number","nativeSrc":"3183:2:125","nodeType":"YulLiteral","src":"3183:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3168:3:125","nodeType":"YulIdentifier","src":"3168:3:125"},"nativeSrc":"3168:18:125","nodeType":"YulFunctionCall","src":"3168:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3155:12:125","nodeType":"YulIdentifier","src":"3155:12:125"},"nativeSrc":"3155:32:125","nodeType":"YulFunctionCall","src":"3155:32:125"},"variables":[{"name":"offset_1","nativeSrc":"3143:8:125","nodeType":"YulTypedName","src":"3143:8:125","type":""}]},{"body":{"nativeSrc":"3232:16:125","nodeType":"YulBlock","src":"3232:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3241:1:125","nodeType":"YulLiteral","src":"3241:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3244:1:125","nodeType":"YulLiteral","src":"3244:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3234:6:125","nodeType":"YulIdentifier","src":"3234:6:125"},"nativeSrc":"3234:12:125","nodeType":"YulFunctionCall","src":"3234:12:125"},"nativeSrc":"3234:12:125","nodeType":"YulExpressionStatement","src":"3234:12:125"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"3202:8:125","nodeType":"YulIdentifier","src":"3202:8:125"},{"kind":"number","nativeSrc":"3212:18:125","nodeType":"YulLiteral","src":"3212:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3199:2:125","nodeType":"YulIdentifier","src":"3199:2:125"},"nativeSrc":"3199:32:125","nodeType":"YulFunctionCall","src":"3199:32:125"},"nativeSrc":"3196:52:125","nodeType":"YulIf","src":"3196:52:125"},{"nativeSrc":"3257:62:125","nodeType":"YulAssignment","src":"3257:62:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3289:9:125","nodeType":"YulIdentifier","src":"3289:9:125"},{"name":"offset_1","nativeSrc":"3300:8:125","nodeType":"YulIdentifier","src":"3300:8:125"}],"functionName":{"name":"add","nativeSrc":"3285:3:125","nodeType":"YulIdentifier","src":"3285:3:125"},"nativeSrc":"3285:24:125","nodeType":"YulFunctionCall","src":"3285:24:125"},{"name":"dataEnd","nativeSrc":"3311:7:125","nodeType":"YulIdentifier","src":"3311:7:125"}],"functionName":{"name":"abi_decode_string","nativeSrc":"3267:17:125","nodeType":"YulIdentifier","src":"3267:17:125"},"nativeSrc":"3267:52:125","nodeType":"YulFunctionCall","src":"3267:52:125"},"variableNames":[{"name":"value1","nativeSrc":"3257:6:125","nodeType":"YulIdentifier","src":"3257:6:125"}]},{"nativeSrc":"3328:45:125","nodeType":"YulVariableDeclaration","src":"3328:45:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3358:9:125","nodeType":"YulIdentifier","src":"3358:9:125"},{"kind":"number","nativeSrc":"3369:2:125","nodeType":"YulLiteral","src":"3369:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3354:3:125","nodeType":"YulIdentifier","src":"3354:3:125"},"nativeSrc":"3354:18:125","nodeType":"YulFunctionCall","src":"3354:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"3341:12:125","nodeType":"YulIdentifier","src":"3341:12:125"},"nativeSrc":"3341:32:125","nodeType":"YulFunctionCall","src":"3341:32:125"},"variables":[{"name":"value","nativeSrc":"3332:5:125","nodeType":"YulTypedName","src":"3332:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3417:5:125","nodeType":"YulIdentifier","src":"3417:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"3382:34:125","nodeType":"YulIdentifier","src":"3382:34:125"},"nativeSrc":"3382:41:125","nodeType":"YulFunctionCall","src":"3382:41:125"},"nativeSrc":"3382:41:125","nodeType":"YulExpressionStatement","src":"3382:41:125"},{"nativeSrc":"3432:15:125","nodeType":"YulAssignment","src":"3432:15:125","value":{"name":"value","nativeSrc":"3442:5:125","nodeType":"YulIdentifier","src":"3442:5:125"},"variableNames":[{"name":"value2","nativeSrc":"3432:6:125","nodeType":"YulIdentifier","src":"3432:6:125"}]}]},"name":"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC4626_$22463","nativeSrc":"2752:701:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2844:9:125","nodeType":"YulTypedName","src":"2844:9:125","type":""},{"name":"dataEnd","nativeSrc":"2855:7:125","nodeType":"YulTypedName","src":"2855:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2867:6:125","nodeType":"YulTypedName","src":"2867:6:125","type":""},{"name":"value1","nativeSrc":"2875:6:125","nodeType":"YulTypedName","src":"2875:6:125","type":""},{"name":"value2","nativeSrc":"2883:6:125","nodeType":"YulTypedName","src":"2883:6:125","type":""}],"src":"2752:701:125"},{"body":{"nativeSrc":"3528:156:125","nodeType":"YulBlock","src":"3528:156:125","statements":[{"body":{"nativeSrc":"3574:16:125","nodeType":"YulBlock","src":"3574:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3583:1:125","nodeType":"YulLiteral","src":"3583:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3586:1:125","nodeType":"YulLiteral","src":"3586:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3576:6:125","nodeType":"YulIdentifier","src":"3576:6:125"},"nativeSrc":"3576:12:125","nodeType":"YulFunctionCall","src":"3576:12:125"},"nativeSrc":"3576:12:125","nodeType":"YulExpressionStatement","src":"3576:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3549:7:125","nodeType":"YulIdentifier","src":"3549:7:125"},{"name":"headStart","nativeSrc":"3558:9:125","nodeType":"YulIdentifier","src":"3558:9:125"}],"functionName":{"name":"sub","nativeSrc":"3545:3:125","nodeType":"YulIdentifier","src":"3545:3:125"},"nativeSrc":"3545:23:125","nodeType":"YulFunctionCall","src":"3545:23:125"},{"kind":"number","nativeSrc":"3570:2:125","nodeType":"YulLiteral","src":"3570:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"3541:3:125","nodeType":"YulIdentifier","src":"3541:3:125"},"nativeSrc":"3541:32:125","nodeType":"YulFunctionCall","src":"3541:32:125"},"nativeSrc":"3538:52:125","nodeType":"YulIf","src":"3538:52:125"},{"nativeSrc":"3599:14:125","nodeType":"YulVariableDeclaration","src":"3599:14:125","value":{"kind":"number","nativeSrc":"3612:1:125","nodeType":"YulLiteral","src":"3612:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3603:5:125","nodeType":"YulTypedName","src":"3603:5:125","type":""}]},{"nativeSrc":"3622:32:125","nodeType":"YulAssignment","src":"3622:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"3644:9:125","nodeType":"YulIdentifier","src":"3644:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"3631:12:125","nodeType":"YulIdentifier","src":"3631:12:125"},"nativeSrc":"3631:23:125","nodeType":"YulFunctionCall","src":"3631:23:125"},"variableNames":[{"name":"value","nativeSrc":"3622:5:125","nodeType":"YulIdentifier","src":"3622:5:125"}]},{"nativeSrc":"3663:15:125","nodeType":"YulAssignment","src":"3663:15:125","value":{"name":"value","nativeSrc":"3673:5:125","nodeType":"YulIdentifier","src":"3673:5:125"},"variableNames":[{"name":"value0","nativeSrc":"3663:6:125","nodeType":"YulIdentifier","src":"3663:6:125"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"3458:226:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3494:9:125","nodeType":"YulTypedName","src":"3494:9:125","type":""},{"name":"dataEnd","nativeSrc":"3505:7:125","nodeType":"YulTypedName","src":"3505:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3517:6:125","nodeType":"YulTypedName","src":"3517:6:125","type":""}],"src":"3458:226:125"},{"body":{"nativeSrc":"3780:283:125","nodeType":"YulBlock","src":"3780:283:125","statements":[{"body":{"nativeSrc":"3829:16:125","nodeType":"YulBlock","src":"3829:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3838:1:125","nodeType":"YulLiteral","src":"3838:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3841:1:125","nodeType":"YulLiteral","src":"3841:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3831:6:125","nodeType":"YulIdentifier","src":"3831:6:125"},"nativeSrc":"3831:12:125","nodeType":"YulFunctionCall","src":"3831:12:125"},"nativeSrc":"3831:12:125","nodeType":"YulExpressionStatement","src":"3831:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"3808:6:125","nodeType":"YulIdentifier","src":"3808:6:125"},{"kind":"number","nativeSrc":"3816:4:125","nodeType":"YulLiteral","src":"3816:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"3804:3:125","nodeType":"YulIdentifier","src":"3804:3:125"},"nativeSrc":"3804:17:125","nodeType":"YulFunctionCall","src":"3804:17:125"},{"name":"end","nativeSrc":"3823:3:125","nodeType":"YulIdentifier","src":"3823:3:125"}],"functionName":{"name":"slt","nativeSrc":"3800:3:125","nodeType":"YulIdentifier","src":"3800:3:125"},"nativeSrc":"3800:27:125","nodeType":"YulFunctionCall","src":"3800:27:125"}],"functionName":{"name":"iszero","nativeSrc":"3793:6:125","nodeType":"YulIdentifier","src":"3793:6:125"},"nativeSrc":"3793:35:125","nodeType":"YulFunctionCall","src":"3793:35:125"},"nativeSrc":"3790:55:125","nodeType":"YulIf","src":"3790:55:125"},{"nativeSrc":"3854:30:125","nodeType":"YulAssignment","src":"3854:30:125","value":{"arguments":[{"name":"offset","nativeSrc":"3877:6:125","nodeType":"YulIdentifier","src":"3877:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"3864:12:125","nodeType":"YulIdentifier","src":"3864:12:125"},"nativeSrc":"3864:20:125","nodeType":"YulFunctionCall","src":"3864:20:125"},"variableNames":[{"name":"length","nativeSrc":"3854:6:125","nodeType":"YulIdentifier","src":"3854:6:125"}]},{"body":{"nativeSrc":"3927:16:125","nodeType":"YulBlock","src":"3927:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3936:1:125","nodeType":"YulLiteral","src":"3936:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"3939:1:125","nodeType":"YulLiteral","src":"3939:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3929:6:125","nodeType":"YulIdentifier","src":"3929:6:125"},"nativeSrc":"3929:12:125","nodeType":"YulFunctionCall","src":"3929:12:125"},"nativeSrc":"3929:12:125","nodeType":"YulExpressionStatement","src":"3929:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"3899:6:125","nodeType":"YulIdentifier","src":"3899:6:125"},{"kind":"number","nativeSrc":"3907:18:125","nodeType":"YulLiteral","src":"3907:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3896:2:125","nodeType":"YulIdentifier","src":"3896:2:125"},"nativeSrc":"3896:30:125","nodeType":"YulFunctionCall","src":"3896:30:125"},"nativeSrc":"3893:50:125","nodeType":"YulIf","src":"3893:50:125"},{"nativeSrc":"3952:29:125","nodeType":"YulAssignment","src":"3952:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"3968:6:125","nodeType":"YulIdentifier","src":"3968:6:125"},{"kind":"number","nativeSrc":"3976:4:125","nodeType":"YulLiteral","src":"3976:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3964:3:125","nodeType":"YulIdentifier","src":"3964:3:125"},"nativeSrc":"3964:17:125","nodeType":"YulFunctionCall","src":"3964:17:125"},"variableNames":[{"name":"arrayPos","nativeSrc":"3952:8:125","nodeType":"YulIdentifier","src":"3952:8:125"}]},{"body":{"nativeSrc":"4041:16:125","nodeType":"YulBlock","src":"4041:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4050:1:125","nodeType":"YulLiteral","src":"4050:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4053:1:125","nodeType":"YulLiteral","src":"4053:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4043:6:125","nodeType":"YulIdentifier","src":"4043:6:125"},"nativeSrc":"4043:12:125","nodeType":"YulFunctionCall","src":"4043:12:125"},"nativeSrc":"4043:12:125","nodeType":"YulExpressionStatement","src":"4043:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"4004:6:125","nodeType":"YulIdentifier","src":"4004:6:125"},{"arguments":[{"kind":"number","nativeSrc":"4016:1:125","nodeType":"YulLiteral","src":"4016:1:125","type":"","value":"5"},{"name":"length","nativeSrc":"4019:6:125","nodeType":"YulIdentifier","src":"4019:6:125"}],"functionName":{"name":"shl","nativeSrc":"4012:3:125","nodeType":"YulIdentifier","src":"4012:3:125"},"nativeSrc":"4012:14:125","nodeType":"YulFunctionCall","src":"4012:14:125"}],"functionName":{"name":"add","nativeSrc":"4000:3:125","nodeType":"YulIdentifier","src":"4000:3:125"},"nativeSrc":"4000:27:125","nodeType":"YulFunctionCall","src":"4000:27:125"},{"kind":"number","nativeSrc":"4029:4:125","nodeType":"YulLiteral","src":"4029:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3996:3:125","nodeType":"YulIdentifier","src":"3996:3:125"},"nativeSrc":"3996:38:125","nodeType":"YulFunctionCall","src":"3996:38:125"},{"name":"end","nativeSrc":"4036:3:125","nodeType":"YulIdentifier","src":"4036:3:125"}],"functionName":{"name":"gt","nativeSrc":"3993:2:125","nodeType":"YulIdentifier","src":"3993:2:125"},"nativeSrc":"3993:47:125","nodeType":"YulFunctionCall","src":"3993:47:125"},"nativeSrc":"3990:67:125","nodeType":"YulIf","src":"3990:67:125"}]},"name":"abi_decode_array_bytes_calldata_dyn_calldata","nativeSrc":"3689:374:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"3743:6:125","nodeType":"YulTypedName","src":"3743:6:125","type":""},{"name":"end","nativeSrc":"3751:3:125","nodeType":"YulTypedName","src":"3751:3:125","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"3759:8:125","nodeType":"YulTypedName","src":"3759:8:125","type":""},{"name":"length","nativeSrc":"3769:6:125","nodeType":"YulTypedName","src":"3769:6:125","type":""}],"src":"3689:374:125"},{"body":{"nativeSrc":"4218:601:125","nodeType":"YulBlock","src":"4218:601:125","statements":[{"body":{"nativeSrc":"4264:16:125","nodeType":"YulBlock","src":"4264:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4273:1:125","nodeType":"YulLiteral","src":"4273:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4276:1:125","nodeType":"YulLiteral","src":"4276:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4266:6:125","nodeType":"YulIdentifier","src":"4266:6:125"},"nativeSrc":"4266:12:125","nodeType":"YulFunctionCall","src":"4266:12:125"},"nativeSrc":"4266:12:125","nodeType":"YulExpressionStatement","src":"4266:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4239:7:125","nodeType":"YulIdentifier","src":"4239:7:125"},{"name":"headStart","nativeSrc":"4248:9:125","nodeType":"YulIdentifier","src":"4248:9:125"}],"functionName":{"name":"sub","nativeSrc":"4235:3:125","nodeType":"YulIdentifier","src":"4235:3:125"},"nativeSrc":"4235:23:125","nodeType":"YulFunctionCall","src":"4235:23:125"},{"kind":"number","nativeSrc":"4260:2:125","nodeType":"YulLiteral","src":"4260:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"4231:3:125","nodeType":"YulIdentifier","src":"4231:3:125"},"nativeSrc":"4231:32:125","nodeType":"YulFunctionCall","src":"4231:32:125"},"nativeSrc":"4228:52:125","nodeType":"YulIf","src":"4228:52:125"},{"nativeSrc":"4289:36:125","nodeType":"YulVariableDeclaration","src":"4289:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"4315:9:125","nodeType":"YulIdentifier","src":"4315:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"4302:12:125","nodeType":"YulIdentifier","src":"4302:12:125"},"nativeSrc":"4302:23:125","nodeType":"YulFunctionCall","src":"4302:23:125"},"variables":[{"name":"value","nativeSrc":"4293:5:125","nodeType":"YulTypedName","src":"4293:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4369:5:125","nodeType":"YulIdentifier","src":"4369:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"4334:34:125","nodeType":"YulIdentifier","src":"4334:34:125"},"nativeSrc":"4334:41:125","nodeType":"YulFunctionCall","src":"4334:41:125"},"nativeSrc":"4334:41:125","nodeType":"YulExpressionStatement","src":"4334:41:125"},{"nativeSrc":"4384:15:125","nodeType":"YulAssignment","src":"4384:15:125","value":{"name":"value","nativeSrc":"4394:5:125","nodeType":"YulIdentifier","src":"4394:5:125"},"variableNames":[{"name":"value0","nativeSrc":"4384:6:125","nodeType":"YulIdentifier","src":"4384:6:125"}]},{"nativeSrc":"4408:46:125","nodeType":"YulVariableDeclaration","src":"4408:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4439:9:125","nodeType":"YulIdentifier","src":"4439:9:125"},{"kind":"number","nativeSrc":"4450:2:125","nodeType":"YulLiteral","src":"4450:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4435:3:125","nodeType":"YulIdentifier","src":"4435:3:125"},"nativeSrc":"4435:18:125","nodeType":"YulFunctionCall","src":"4435:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"4422:12:125","nodeType":"YulIdentifier","src":"4422:12:125"},"nativeSrc":"4422:32:125","nodeType":"YulFunctionCall","src":"4422:32:125"},"variables":[{"name":"offset","nativeSrc":"4412:6:125","nodeType":"YulTypedName","src":"4412:6:125","type":""}]},{"body":{"nativeSrc":"4497:16:125","nodeType":"YulBlock","src":"4497:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4506:1:125","nodeType":"YulLiteral","src":"4506:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4509:1:125","nodeType":"YulLiteral","src":"4509:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4499:6:125","nodeType":"YulIdentifier","src":"4499:6:125"},"nativeSrc":"4499:12:125","nodeType":"YulFunctionCall","src":"4499:12:125"},"nativeSrc":"4499:12:125","nodeType":"YulExpressionStatement","src":"4499:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"4469:6:125","nodeType":"YulIdentifier","src":"4469:6:125"},{"kind":"number","nativeSrc":"4477:18:125","nodeType":"YulLiteral","src":"4477:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4466:2:125","nodeType":"YulIdentifier","src":"4466:2:125"},"nativeSrc":"4466:30:125","nodeType":"YulFunctionCall","src":"4466:30:125"},"nativeSrc":"4463:50:125","nodeType":"YulIf","src":"4463:50:125"},{"nativeSrc":"4522:103:125","nodeType":"YulVariableDeclaration","src":"4522:103:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4597:9:125","nodeType":"YulIdentifier","src":"4597:9:125"},{"name":"offset","nativeSrc":"4608:6:125","nodeType":"YulIdentifier","src":"4608:6:125"}],"functionName":{"name":"add","nativeSrc":"4593:3:125","nodeType":"YulIdentifier","src":"4593:3:125"},"nativeSrc":"4593:22:125","nodeType":"YulFunctionCall","src":"4593:22:125"},{"name":"dataEnd","nativeSrc":"4617:7:125","nodeType":"YulIdentifier","src":"4617:7:125"}],"functionName":{"name":"abi_decode_array_bytes_calldata_dyn_calldata","nativeSrc":"4548:44:125","nodeType":"YulIdentifier","src":"4548:44:125"},"nativeSrc":"4548:77:125","nodeType":"YulFunctionCall","src":"4548:77:125"},"variables":[{"name":"value1_1","nativeSrc":"4526:8:125","nodeType":"YulTypedName","src":"4526:8:125","type":""},{"name":"value2_1","nativeSrc":"4536:8:125","nodeType":"YulTypedName","src":"4536:8:125","type":""}]},{"nativeSrc":"4634:18:125","nodeType":"YulAssignment","src":"4634:18:125","value":{"name":"value1_1","nativeSrc":"4644:8:125","nodeType":"YulIdentifier","src":"4644:8:125"},"variableNames":[{"name":"value1","nativeSrc":"4634:6:125","nodeType":"YulIdentifier","src":"4634:6:125"}]},{"nativeSrc":"4661:18:125","nodeType":"YulAssignment","src":"4661:18:125","value":{"name":"value2_1","nativeSrc":"4671:8:125","nodeType":"YulIdentifier","src":"4671:8:125"},"variableNames":[{"name":"value2","nativeSrc":"4661:6:125","nodeType":"YulIdentifier","src":"4661:6:125"}]},{"nativeSrc":"4688:47:125","nodeType":"YulVariableDeclaration","src":"4688:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4720:9:125","nodeType":"YulIdentifier","src":"4720:9:125"},{"kind":"number","nativeSrc":"4731:2:125","nodeType":"YulLiteral","src":"4731:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4716:3:125","nodeType":"YulIdentifier","src":"4716:3:125"},"nativeSrc":"4716:18:125","nodeType":"YulFunctionCall","src":"4716:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"4703:12:125","nodeType":"YulIdentifier","src":"4703:12:125"},"nativeSrc":"4703:32:125","nodeType":"YulFunctionCall","src":"4703:32:125"},"variables":[{"name":"value_1","nativeSrc":"4692:7:125","nodeType":"YulTypedName","src":"4692:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"4779:7:125","nodeType":"YulIdentifier","src":"4779:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"4744:34:125","nodeType":"YulIdentifier","src":"4744:34:125"},"nativeSrc":"4744:43:125","nodeType":"YulFunctionCall","src":"4744:43:125"},"nativeSrc":"4744:43:125","nodeType":"YulExpressionStatement","src":"4744:43:125"},{"nativeSrc":"4796:17:125","nodeType":"YulAssignment","src":"4796:17:125","value":{"name":"value_1","nativeSrc":"4806:7:125","nodeType":"YulIdentifier","src":"4806:7:125"},"variableNames":[{"name":"value3","nativeSrc":"4796:6:125","nodeType":"YulIdentifier","src":"4796:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_array$_t_bytes_calldata_ptr_$dyn_calldata_ptrt_address","nativeSrc":"4068:751:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4160:9:125","nodeType":"YulTypedName","src":"4160:9:125","type":""},{"name":"dataEnd","nativeSrc":"4171:7:125","nodeType":"YulTypedName","src":"4171:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4183:6:125","nodeType":"YulTypedName","src":"4183:6:125","type":""},{"name":"value1","nativeSrc":"4191:6:125","nodeType":"YulTypedName","src":"4191:6:125","type":""},{"name":"value2","nativeSrc":"4199:6:125","nodeType":"YulTypedName","src":"4199:6:125","type":""},{"name":"value3","nativeSrc":"4207:6:125","nodeType":"YulTypedName","src":"4207:6:125","type":""}],"src":"4068:751:125"},{"body":{"nativeSrc":"4868:77:125","nodeType":"YulBlock","src":"4868:77:125","statements":[{"body":{"nativeSrc":"4923:16:125","nodeType":"YulBlock","src":"4923:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4932:1:125","nodeType":"YulLiteral","src":"4932:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"4935:1:125","nodeType":"YulLiteral","src":"4935:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4925:6:125","nodeType":"YulIdentifier","src":"4925:6:125"},"nativeSrc":"4925:12:125","nodeType":"YulFunctionCall","src":"4925:12:125"},"nativeSrc":"4925:12:125","nodeType":"YulExpressionStatement","src":"4925:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4891:5:125","nodeType":"YulIdentifier","src":"4891:5:125"},{"arguments":[{"name":"value","nativeSrc":"4902:5:125","nodeType":"YulIdentifier","src":"4902:5:125"},{"kind":"number","nativeSrc":"4909:10:125","nodeType":"YulLiteral","src":"4909:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"4898:3:125","nodeType":"YulIdentifier","src":"4898:3:125"},"nativeSrc":"4898:22:125","nodeType":"YulFunctionCall","src":"4898:22:125"}],"functionName":{"name":"eq","nativeSrc":"4888:2:125","nodeType":"YulIdentifier","src":"4888:2:125"},"nativeSrc":"4888:33:125","nodeType":"YulFunctionCall","src":"4888:33:125"}],"functionName":{"name":"iszero","nativeSrc":"4881:6:125","nodeType":"YulIdentifier","src":"4881:6:125"},"nativeSrc":"4881:41:125","nodeType":"YulFunctionCall","src":"4881:41:125"},"nativeSrc":"4878:61:125","nodeType":"YulIf","src":"4878:61:125"}]},"name":"validator_revert_uint32","nativeSrc":"4824:121:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"4857:5:125","nodeType":"YulTypedName","src":"4857:5:125","type":""}],"src":"4824:121:125"},{"body":{"nativeSrc":"5036:310:125","nodeType":"YulBlock","src":"5036:310:125","statements":[{"body":{"nativeSrc":"5082:16:125","nodeType":"YulBlock","src":"5082:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5091:1:125","nodeType":"YulLiteral","src":"5091:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5094:1:125","nodeType":"YulLiteral","src":"5094:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5084:6:125","nodeType":"YulIdentifier","src":"5084:6:125"},"nativeSrc":"5084:12:125","nodeType":"YulFunctionCall","src":"5084:12:125"},"nativeSrc":"5084:12:125","nodeType":"YulExpressionStatement","src":"5084:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5057:7:125","nodeType":"YulIdentifier","src":"5057:7:125"},{"name":"headStart","nativeSrc":"5066:9:125","nodeType":"YulIdentifier","src":"5066:9:125"}],"functionName":{"name":"sub","nativeSrc":"5053:3:125","nodeType":"YulIdentifier","src":"5053:3:125"},"nativeSrc":"5053:23:125","nodeType":"YulFunctionCall","src":"5053:23:125"},{"kind":"number","nativeSrc":"5078:2:125","nodeType":"YulLiteral","src":"5078:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"5049:3:125","nodeType":"YulIdentifier","src":"5049:3:125"},"nativeSrc":"5049:32:125","nodeType":"YulFunctionCall","src":"5049:32:125"},"nativeSrc":"5046:52:125","nodeType":"YulIf","src":"5046:52:125"},{"nativeSrc":"5107:36:125","nodeType":"YulVariableDeclaration","src":"5107:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5133:9:125","nodeType":"YulIdentifier","src":"5133:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"5120:12:125","nodeType":"YulIdentifier","src":"5120:12:125"},"nativeSrc":"5120:23:125","nodeType":"YulFunctionCall","src":"5120:23:125"},"variables":[{"name":"value","nativeSrc":"5111:5:125","nodeType":"YulTypedName","src":"5111:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5187:5:125","nodeType":"YulIdentifier","src":"5187:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"5152:34:125","nodeType":"YulIdentifier","src":"5152:34:125"},"nativeSrc":"5152:41:125","nodeType":"YulFunctionCall","src":"5152:41:125"},"nativeSrc":"5152:41:125","nodeType":"YulExpressionStatement","src":"5152:41:125"},{"nativeSrc":"5202:15:125","nodeType":"YulAssignment","src":"5202:15:125","value":{"name":"value","nativeSrc":"5212:5:125","nodeType":"YulIdentifier","src":"5212:5:125"},"variableNames":[{"name":"value0","nativeSrc":"5202:6:125","nodeType":"YulIdentifier","src":"5202:6:125"}]},{"nativeSrc":"5226:47:125","nodeType":"YulVariableDeclaration","src":"5226:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5258:9:125","nodeType":"YulIdentifier","src":"5258:9:125"},{"kind":"number","nativeSrc":"5269:2:125","nodeType":"YulLiteral","src":"5269:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5254:3:125","nodeType":"YulIdentifier","src":"5254:3:125"},"nativeSrc":"5254:18:125","nodeType":"YulFunctionCall","src":"5254:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"5241:12:125","nodeType":"YulIdentifier","src":"5241:12:125"},"nativeSrc":"5241:32:125","nodeType":"YulFunctionCall","src":"5241:32:125"},"variables":[{"name":"value_1","nativeSrc":"5230:7:125","nodeType":"YulTypedName","src":"5230:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"5306:7:125","nodeType":"YulIdentifier","src":"5306:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"5282:23:125","nodeType":"YulIdentifier","src":"5282:23:125"},"nativeSrc":"5282:32:125","nodeType":"YulFunctionCall","src":"5282:32:125"},"nativeSrc":"5282:32:125","nodeType":"YulExpressionStatement","src":"5282:32:125"},{"nativeSrc":"5323:17:125","nodeType":"YulAssignment","src":"5323:17:125","value":{"name":"value_1","nativeSrc":"5333:7:125","nodeType":"YulIdentifier","src":"5333:7:125"},"variableNames":[{"name":"value1","nativeSrc":"5323:6:125","nodeType":"YulIdentifier","src":"5323:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint32","nativeSrc":"4950:396:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4994:9:125","nodeType":"YulTypedName","src":"4994:9:125","type":""},{"name":"dataEnd","nativeSrc":"5005:7:125","nodeType":"YulTypedName","src":"5005:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5017:6:125","nodeType":"YulTypedName","src":"5017:6:125","type":""},{"name":"value1","nativeSrc":"5025:6:125","nodeType":"YulTypedName","src":"5025:6:125","type":""}],"src":"4950:396:125"},{"body":{"nativeSrc":"5421:187:125","nodeType":"YulBlock","src":"5421:187:125","statements":[{"body":{"nativeSrc":"5467:16:125","nodeType":"YulBlock","src":"5467:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5476:1:125","nodeType":"YulLiteral","src":"5476:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5479:1:125","nodeType":"YulLiteral","src":"5479:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5469:6:125","nodeType":"YulIdentifier","src":"5469:6:125"},"nativeSrc":"5469:12:125","nodeType":"YulFunctionCall","src":"5469:12:125"},"nativeSrc":"5469:12:125","nodeType":"YulExpressionStatement","src":"5469:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5442:7:125","nodeType":"YulIdentifier","src":"5442:7:125"},{"name":"headStart","nativeSrc":"5451:9:125","nodeType":"YulIdentifier","src":"5451:9:125"}],"functionName":{"name":"sub","nativeSrc":"5438:3:125","nodeType":"YulIdentifier","src":"5438:3:125"},"nativeSrc":"5438:23:125","nodeType":"YulFunctionCall","src":"5438:23:125"},{"kind":"number","nativeSrc":"5463:2:125","nodeType":"YulLiteral","src":"5463:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5434:3:125","nodeType":"YulIdentifier","src":"5434:3:125"},"nativeSrc":"5434:32:125","nodeType":"YulFunctionCall","src":"5434:32:125"},"nativeSrc":"5431:52:125","nodeType":"YulIf","src":"5431:52:125"},{"nativeSrc":"5492:36:125","nodeType":"YulVariableDeclaration","src":"5492:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"5518:9:125","nodeType":"YulIdentifier","src":"5518:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"5505:12:125","nodeType":"YulIdentifier","src":"5505:12:125"},"nativeSrc":"5505:23:125","nodeType":"YulFunctionCall","src":"5505:23:125"},"variables":[{"name":"value","nativeSrc":"5496:5:125","nodeType":"YulTypedName","src":"5496:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5572:5:125","nodeType":"YulIdentifier","src":"5572:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"5537:34:125","nodeType":"YulIdentifier","src":"5537:34:125"},"nativeSrc":"5537:41:125","nodeType":"YulFunctionCall","src":"5537:41:125"},"nativeSrc":"5537:41:125","nodeType":"YulExpressionStatement","src":"5537:41:125"},{"nativeSrc":"5587:15:125","nodeType":"YulAssignment","src":"5587:15:125","value":{"name":"value","nativeSrc":"5597:5:125","nodeType":"YulIdentifier","src":"5597:5:125"},"variableNames":[{"name":"value0","nativeSrc":"5587:6:125","nodeType":"YulIdentifier","src":"5587:6:125"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"5351:257:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5387:9:125","nodeType":"YulTypedName","src":"5387:9:125","type":""},{"name":"dataEnd","nativeSrc":"5398:7:125","nodeType":"YulTypedName","src":"5398:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5410:6:125","nodeType":"YulTypedName","src":"5410:6:125","type":""}],"src":"5351:257:125"},{"body":{"nativeSrc":"5645:95:125","nodeType":"YulBlock","src":"5645:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5662:1:125","nodeType":"YulLiteral","src":"5662:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5669:3:125","nodeType":"YulLiteral","src":"5669:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"5674:10:125","nodeType":"YulLiteral","src":"5674:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5665:3:125","nodeType":"YulIdentifier","src":"5665:3:125"},"nativeSrc":"5665:20:125","nodeType":"YulFunctionCall","src":"5665:20:125"}],"functionName":{"name":"mstore","nativeSrc":"5655:6:125","nodeType":"YulIdentifier","src":"5655:6:125"},"nativeSrc":"5655:31:125","nodeType":"YulFunctionCall","src":"5655:31:125"},"nativeSrc":"5655:31:125","nodeType":"YulExpressionStatement","src":"5655:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5702:1:125","nodeType":"YulLiteral","src":"5702:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"5705:4:125","nodeType":"YulLiteral","src":"5705:4:125","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"5695:6:125","nodeType":"YulIdentifier","src":"5695:6:125"},"nativeSrc":"5695:15:125","nodeType":"YulFunctionCall","src":"5695:15:125"},"nativeSrc":"5695:15:125","nodeType":"YulExpressionStatement","src":"5695:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5726:1:125","nodeType":"YulLiteral","src":"5726:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5729:4:125","nodeType":"YulLiteral","src":"5729:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5719:6:125","nodeType":"YulIdentifier","src":"5719:6:125"},"nativeSrc":"5719:15:125","nodeType":"YulFunctionCall","src":"5719:15:125"},"nativeSrc":"5719:15:125","nodeType":"YulExpressionStatement","src":"5719:15:125"}]},"name":"panic_error_0x21","nativeSrc":"5613:127:125","nodeType":"YulFunctionDefinition","src":"5613:127:125"},{"body":{"nativeSrc":"5799:186:125","nodeType":"YulBlock","src":"5799:186:125","statements":[{"body":{"nativeSrc":"5841:111:125","nodeType":"YulBlock","src":"5841:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5862:1:125","nodeType":"YulLiteral","src":"5862:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5869:3:125","nodeType":"YulLiteral","src":"5869:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"5874:10:125","nodeType":"YulLiteral","src":"5874:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5865:3:125","nodeType":"YulIdentifier","src":"5865:3:125"},"nativeSrc":"5865:20:125","nodeType":"YulFunctionCall","src":"5865:20:125"}],"functionName":{"name":"mstore","nativeSrc":"5855:6:125","nodeType":"YulIdentifier","src":"5855:6:125"},"nativeSrc":"5855:31:125","nodeType":"YulFunctionCall","src":"5855:31:125"},"nativeSrc":"5855:31:125","nodeType":"YulExpressionStatement","src":"5855:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5906:1:125","nodeType":"YulLiteral","src":"5906:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"5909:4:125","nodeType":"YulLiteral","src":"5909:4:125","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"5899:6:125","nodeType":"YulIdentifier","src":"5899:6:125"},"nativeSrc":"5899:15:125","nodeType":"YulFunctionCall","src":"5899:15:125"},"nativeSrc":"5899:15:125","nodeType":"YulExpressionStatement","src":"5899:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5934:1:125","nodeType":"YulLiteral","src":"5934:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"5937:4:125","nodeType":"YulLiteral","src":"5937:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5927:6:125","nodeType":"YulIdentifier","src":"5927:6:125"},"nativeSrc":"5927:15:125","nodeType":"YulFunctionCall","src":"5927:15:125"},"nativeSrc":"5927:15:125","nodeType":"YulExpressionStatement","src":"5927:15:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5822:5:125","nodeType":"YulIdentifier","src":"5822:5:125"},{"kind":"number","nativeSrc":"5829:1:125","nodeType":"YulLiteral","src":"5829:1:125","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"5819:2:125","nodeType":"YulIdentifier","src":"5819:2:125"},"nativeSrc":"5819:12:125","nodeType":"YulFunctionCall","src":"5819:12:125"}],"functionName":{"name":"iszero","nativeSrc":"5812:6:125","nodeType":"YulIdentifier","src":"5812:6:125"},"nativeSrc":"5812:20:125","nodeType":"YulFunctionCall","src":"5812:20:125"},"nativeSrc":"5809:143:125","nodeType":"YulIf","src":"5809:143:125"},{"expression":{"arguments":[{"name":"pos","nativeSrc":"5968:3:125","nodeType":"YulIdentifier","src":"5968:3:125"},{"name":"value","nativeSrc":"5973:5:125","nodeType":"YulIdentifier","src":"5973:5:125"}],"functionName":{"name":"mstore","nativeSrc":"5961:6:125","nodeType":"YulIdentifier","src":"5961:6:125"},"nativeSrc":"5961:18:125","nodeType":"YulFunctionCall","src":"5961:18:125"},"nativeSrc":"5961:18:125","nodeType":"YulExpressionStatement","src":"5961:18:125"}]},"name":"abi_encode_enum_TargetStatus","nativeSrc":"5745:240:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"5783:5:125","nodeType":"YulTypedName","src":"5783:5:125","type":""},{"name":"pos","nativeSrc":"5790:3:125","nodeType":"YulTypedName","src":"5790:3:125","type":""}],"src":"5745:240:125"},{"body":{"nativeSrc":"6107:98:125","nodeType":"YulBlock","src":"6107:98:125","statements":[{"nativeSrc":"6117:26:125","nodeType":"YulAssignment","src":"6117:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6129:9:125","nodeType":"YulIdentifier","src":"6129:9:125"},{"kind":"number","nativeSrc":"6140:2:125","nodeType":"YulLiteral","src":"6140:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6125:3:125","nodeType":"YulIdentifier","src":"6125:3:125"},"nativeSrc":"6125:18:125","nodeType":"YulFunctionCall","src":"6125:18:125"},"variableNames":[{"name":"tail","nativeSrc":"6117:4:125","nodeType":"YulIdentifier","src":"6117:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"6181:6:125","nodeType":"YulIdentifier","src":"6181:6:125"},{"name":"headStart","nativeSrc":"6189:9:125","nodeType":"YulIdentifier","src":"6189:9:125"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"6152:28:125","nodeType":"YulIdentifier","src":"6152:28:125"},"nativeSrc":"6152:47:125","nodeType":"YulFunctionCall","src":"6152:47:125"},"nativeSrc":"6152:47:125","nodeType":"YulExpressionStatement","src":"6152:47:125"}]},"name":"abi_encode_tuple_t_enum$_TargetStatus_$38330__to_t_uint8__fromStack_reversed","nativeSrc":"5990:215:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6076:9:125","nodeType":"YulTypedName","src":"6076:9:125","type":""},{"name":"value0","nativeSrc":"6087:6:125","nodeType":"YulTypedName","src":"6087:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6098:4:125","nodeType":"YulTypedName","src":"6098:4:125","type":""}],"src":"5990:215:125"},{"body":{"nativeSrc":"6297:290:125","nodeType":"YulBlock","src":"6297:290:125","statements":[{"body":{"nativeSrc":"6343:16:125","nodeType":"YulBlock","src":"6343:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6352:1:125","nodeType":"YulLiteral","src":"6352:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6355:1:125","nodeType":"YulLiteral","src":"6355:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6345:6:125","nodeType":"YulIdentifier","src":"6345:6:125"},"nativeSrc":"6345:12:125","nodeType":"YulFunctionCall","src":"6345:12:125"},"nativeSrc":"6345:12:125","nodeType":"YulExpressionStatement","src":"6345:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6318:7:125","nodeType":"YulIdentifier","src":"6318:7:125"},{"name":"headStart","nativeSrc":"6327:9:125","nodeType":"YulIdentifier","src":"6327:9:125"}],"functionName":{"name":"sub","nativeSrc":"6314:3:125","nodeType":"YulIdentifier","src":"6314:3:125"},"nativeSrc":"6314:23:125","nodeType":"YulFunctionCall","src":"6314:23:125"},{"kind":"number","nativeSrc":"6339:2:125","nodeType":"YulLiteral","src":"6339:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6310:3:125","nodeType":"YulIdentifier","src":"6310:3:125"},"nativeSrc":"6310:32:125","nodeType":"YulFunctionCall","src":"6310:32:125"},"nativeSrc":"6307:52:125","nodeType":"YulIf","src":"6307:52:125"},{"nativeSrc":"6368:36:125","nodeType":"YulVariableDeclaration","src":"6368:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"6394:9:125","nodeType":"YulIdentifier","src":"6394:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"6381:12:125","nodeType":"YulIdentifier","src":"6381:12:125"},"nativeSrc":"6381:23:125","nodeType":"YulFunctionCall","src":"6381:23:125"},"variables":[{"name":"value","nativeSrc":"6372:5:125","nodeType":"YulTypedName","src":"6372:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6448:5:125","nodeType":"YulIdentifier","src":"6448:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"6413:34:125","nodeType":"YulIdentifier","src":"6413:34:125"},"nativeSrc":"6413:41:125","nodeType":"YulFunctionCall","src":"6413:41:125"},"nativeSrc":"6413:41:125","nodeType":"YulExpressionStatement","src":"6413:41:125"},{"nativeSrc":"6463:15:125","nodeType":"YulAssignment","src":"6463:15:125","value":{"name":"value","nativeSrc":"6473:5:125","nodeType":"YulIdentifier","src":"6473:5:125"},"variableNames":[{"name":"value0","nativeSrc":"6463:6:125","nodeType":"YulIdentifier","src":"6463:6:125"}]},{"nativeSrc":"6487:16:125","nodeType":"YulVariableDeclaration","src":"6487:16:125","value":{"kind":"number","nativeSrc":"6502:1:125","nodeType":"YulLiteral","src":"6502:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"6491:7:125","nodeType":"YulTypedName","src":"6491:7:125","type":""}]},{"nativeSrc":"6512:43:125","nodeType":"YulAssignment","src":"6512:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6540:9:125","nodeType":"YulIdentifier","src":"6540:9:125"},{"kind":"number","nativeSrc":"6551:2:125","nodeType":"YulLiteral","src":"6551:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6536:3:125","nodeType":"YulIdentifier","src":"6536:3:125"},"nativeSrc":"6536:18:125","nodeType":"YulFunctionCall","src":"6536:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"6523:12:125","nodeType":"YulIdentifier","src":"6523:12:125"},"nativeSrc":"6523:32:125","nodeType":"YulFunctionCall","src":"6523:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"6512:7:125","nodeType":"YulIdentifier","src":"6512:7:125"}]},{"nativeSrc":"6564:17:125","nodeType":"YulAssignment","src":"6564:17:125","value":{"name":"value_1","nativeSrc":"6574:7:125","nodeType":"YulIdentifier","src":"6574:7:125"},"variableNames":[{"name":"value1","nativeSrc":"6564:6:125","nodeType":"YulIdentifier","src":"6564:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"6210:377:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6255:9:125","nodeType":"YulTypedName","src":"6255:9:125","type":""},{"name":"dataEnd","nativeSrc":"6266:7:125","nodeType":"YulTypedName","src":"6266:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6278:6:125","nodeType":"YulTypedName","src":"6278:6:125","type":""},{"name":"value1","nativeSrc":"6286:6:125","nodeType":"YulTypedName","src":"6286:6:125","type":""}],"src":"6210:377:125"},{"body":{"nativeSrc":"6664:275:125","nodeType":"YulBlock","src":"6664:275:125","statements":[{"body":{"nativeSrc":"6713:16:125","nodeType":"YulBlock","src":"6713:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6722:1:125","nodeType":"YulLiteral","src":"6722:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6725:1:125","nodeType":"YulLiteral","src":"6725:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6715:6:125","nodeType":"YulIdentifier","src":"6715:6:125"},"nativeSrc":"6715:12:125","nodeType":"YulFunctionCall","src":"6715:12:125"},"nativeSrc":"6715:12:125","nodeType":"YulExpressionStatement","src":"6715:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"6692:6:125","nodeType":"YulIdentifier","src":"6692:6:125"},{"kind":"number","nativeSrc":"6700:4:125","nodeType":"YulLiteral","src":"6700:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"6688:3:125","nodeType":"YulIdentifier","src":"6688:3:125"},"nativeSrc":"6688:17:125","nodeType":"YulFunctionCall","src":"6688:17:125"},{"name":"end","nativeSrc":"6707:3:125","nodeType":"YulIdentifier","src":"6707:3:125"}],"functionName":{"name":"slt","nativeSrc":"6684:3:125","nodeType":"YulIdentifier","src":"6684:3:125"},"nativeSrc":"6684:27:125","nodeType":"YulFunctionCall","src":"6684:27:125"}],"functionName":{"name":"iszero","nativeSrc":"6677:6:125","nodeType":"YulIdentifier","src":"6677:6:125"},"nativeSrc":"6677:35:125","nodeType":"YulFunctionCall","src":"6677:35:125"},"nativeSrc":"6674:55:125","nodeType":"YulIf","src":"6674:55:125"},{"nativeSrc":"6738:30:125","nodeType":"YulAssignment","src":"6738:30:125","value":{"arguments":[{"name":"offset","nativeSrc":"6761:6:125","nodeType":"YulIdentifier","src":"6761:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"6748:12:125","nodeType":"YulIdentifier","src":"6748:12:125"},"nativeSrc":"6748:20:125","nodeType":"YulFunctionCall","src":"6748:20:125"},"variableNames":[{"name":"length","nativeSrc":"6738:6:125","nodeType":"YulIdentifier","src":"6738:6:125"}]},{"body":{"nativeSrc":"6811:16:125","nodeType":"YulBlock","src":"6811:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6820:1:125","nodeType":"YulLiteral","src":"6820:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6823:1:125","nodeType":"YulLiteral","src":"6823:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6813:6:125","nodeType":"YulIdentifier","src":"6813:6:125"},"nativeSrc":"6813:12:125","nodeType":"YulFunctionCall","src":"6813:12:125"},"nativeSrc":"6813:12:125","nodeType":"YulExpressionStatement","src":"6813:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"6783:6:125","nodeType":"YulIdentifier","src":"6783:6:125"},{"kind":"number","nativeSrc":"6791:18:125","nodeType":"YulLiteral","src":"6791:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6780:2:125","nodeType":"YulIdentifier","src":"6780:2:125"},"nativeSrc":"6780:30:125","nodeType":"YulFunctionCall","src":"6780:30:125"},"nativeSrc":"6777:50:125","nodeType":"YulIf","src":"6777:50:125"},{"nativeSrc":"6836:29:125","nodeType":"YulAssignment","src":"6836:29:125","value":{"arguments":[{"name":"offset","nativeSrc":"6852:6:125","nodeType":"YulIdentifier","src":"6852:6:125"},{"kind":"number","nativeSrc":"6860:4:125","nodeType":"YulLiteral","src":"6860:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6848:3:125","nodeType":"YulIdentifier","src":"6848:3:125"},"nativeSrc":"6848:17:125","nodeType":"YulFunctionCall","src":"6848:17:125"},"variableNames":[{"name":"arrayPos","nativeSrc":"6836:8:125","nodeType":"YulIdentifier","src":"6836:8:125"}]},{"body":{"nativeSrc":"6917:16:125","nodeType":"YulBlock","src":"6917:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6926:1:125","nodeType":"YulLiteral","src":"6926:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"6929:1:125","nodeType":"YulLiteral","src":"6929:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6919:6:125","nodeType":"YulIdentifier","src":"6919:6:125"},"nativeSrc":"6919:12:125","nodeType":"YulFunctionCall","src":"6919:12:125"},"nativeSrc":"6919:12:125","nodeType":"YulExpressionStatement","src":"6919:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"6888:6:125","nodeType":"YulIdentifier","src":"6888:6:125"},{"name":"length","nativeSrc":"6896:6:125","nodeType":"YulIdentifier","src":"6896:6:125"}],"functionName":{"name":"add","nativeSrc":"6884:3:125","nodeType":"YulIdentifier","src":"6884:3:125"},"nativeSrc":"6884:19:125","nodeType":"YulFunctionCall","src":"6884:19:125"},{"kind":"number","nativeSrc":"6905:4:125","nodeType":"YulLiteral","src":"6905:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6880:3:125","nodeType":"YulIdentifier","src":"6880:3:125"},"nativeSrc":"6880:30:125","nodeType":"YulFunctionCall","src":"6880:30:125"},{"name":"end","nativeSrc":"6912:3:125","nodeType":"YulIdentifier","src":"6912:3:125"}],"functionName":{"name":"gt","nativeSrc":"6877:2:125","nodeType":"YulIdentifier","src":"6877:2:125"},"nativeSrc":"6877:39:125","nodeType":"YulFunctionCall","src":"6877:39:125"},"nativeSrc":"6874:59:125","nodeType":"YulIf","src":"6874:59:125"}]},"name":"abi_decode_bytes_calldata","nativeSrc":"6592:347:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"6627:6:125","nodeType":"YulTypedName","src":"6627:6:125","type":""},{"name":"end","nativeSrc":"6635:3:125","nodeType":"YulTypedName","src":"6635:3:125","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"6643:8:125","nodeType":"YulTypedName","src":"6643:8:125","type":""},{"name":"length","nativeSrc":"6653:6:125","nodeType":"YulTypedName","src":"6653:6:125","type":""}],"src":"6592:347:125"},{"body":{"nativeSrc":"7084:686:125","nodeType":"YulBlock","src":"7084:686:125","statements":[{"body":{"nativeSrc":"7131:16:125","nodeType":"YulBlock","src":"7131:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7140:1:125","nodeType":"YulLiteral","src":"7140:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7143:1:125","nodeType":"YulLiteral","src":"7143:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7133:6:125","nodeType":"YulIdentifier","src":"7133:6:125"},"nativeSrc":"7133:12:125","nodeType":"YulFunctionCall","src":"7133:12:125"},"nativeSrc":"7133:12:125","nodeType":"YulExpressionStatement","src":"7133:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7105:7:125","nodeType":"YulIdentifier","src":"7105:7:125"},{"name":"headStart","nativeSrc":"7114:9:125","nodeType":"YulIdentifier","src":"7114:9:125"}],"functionName":{"name":"sub","nativeSrc":"7101:3:125","nodeType":"YulIdentifier","src":"7101:3:125"},"nativeSrc":"7101:23:125","nodeType":"YulFunctionCall","src":"7101:23:125"},{"kind":"number","nativeSrc":"7126:3:125","nodeType":"YulLiteral","src":"7126:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"7097:3:125","nodeType":"YulIdentifier","src":"7097:3:125"},"nativeSrc":"7097:33:125","nodeType":"YulFunctionCall","src":"7097:33:125"},"nativeSrc":"7094:53:125","nodeType":"YulIf","src":"7094:53:125"},{"nativeSrc":"7156:36:125","nodeType":"YulVariableDeclaration","src":"7156:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7182:9:125","nodeType":"YulIdentifier","src":"7182:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"7169:12:125","nodeType":"YulIdentifier","src":"7169:12:125"},"nativeSrc":"7169:23:125","nodeType":"YulFunctionCall","src":"7169:23:125"},"variables":[{"name":"value","nativeSrc":"7160:5:125","nodeType":"YulTypedName","src":"7160:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7236:5:125","nodeType":"YulIdentifier","src":"7236:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"7201:34:125","nodeType":"YulIdentifier","src":"7201:34:125"},"nativeSrc":"7201:41:125","nodeType":"YulFunctionCall","src":"7201:41:125"},"nativeSrc":"7201:41:125","nodeType":"YulExpressionStatement","src":"7201:41:125"},{"nativeSrc":"7251:15:125","nodeType":"YulAssignment","src":"7251:15:125","value":{"name":"value","nativeSrc":"7261:5:125","nodeType":"YulIdentifier","src":"7261:5:125"},"variableNames":[{"name":"value0","nativeSrc":"7251:6:125","nodeType":"YulIdentifier","src":"7251:6:125"}]},{"nativeSrc":"7275:47:125","nodeType":"YulVariableDeclaration","src":"7275:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7307:9:125","nodeType":"YulIdentifier","src":"7307:9:125"},{"kind":"number","nativeSrc":"7318:2:125","nodeType":"YulLiteral","src":"7318:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7303:3:125","nodeType":"YulIdentifier","src":"7303:3:125"},"nativeSrc":"7303:18:125","nodeType":"YulFunctionCall","src":"7303:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"7290:12:125","nodeType":"YulIdentifier","src":"7290:12:125"},"nativeSrc":"7290:32:125","nodeType":"YulFunctionCall","src":"7290:32:125"},"variables":[{"name":"value_1","nativeSrc":"7279:7:125","nodeType":"YulTypedName","src":"7279:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"7366:7:125","nodeType":"YulIdentifier","src":"7366:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"7331:34:125","nodeType":"YulIdentifier","src":"7331:34:125"},"nativeSrc":"7331:43:125","nodeType":"YulFunctionCall","src":"7331:43:125"},"nativeSrc":"7331:43:125","nodeType":"YulExpressionStatement","src":"7331:43:125"},{"nativeSrc":"7383:17:125","nodeType":"YulAssignment","src":"7383:17:125","value":{"name":"value_1","nativeSrc":"7393:7:125","nodeType":"YulIdentifier","src":"7393:7:125"},"variableNames":[{"name":"value1","nativeSrc":"7383:6:125","nodeType":"YulIdentifier","src":"7383:6:125"}]},{"nativeSrc":"7409:16:125","nodeType":"YulVariableDeclaration","src":"7409:16:125","value":{"kind":"number","nativeSrc":"7424:1:125","nodeType":"YulLiteral","src":"7424:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"7413:7:125","nodeType":"YulTypedName","src":"7413:7:125","type":""}]},{"nativeSrc":"7434:43:125","nodeType":"YulAssignment","src":"7434:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7462:9:125","nodeType":"YulIdentifier","src":"7462:9:125"},{"kind":"number","nativeSrc":"7473:2:125","nodeType":"YulLiteral","src":"7473:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7458:3:125","nodeType":"YulIdentifier","src":"7458:3:125"},"nativeSrc":"7458:18:125","nodeType":"YulFunctionCall","src":"7458:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"7445:12:125","nodeType":"YulIdentifier","src":"7445:12:125"},"nativeSrc":"7445:32:125","nodeType":"YulFunctionCall","src":"7445:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"7434:7:125","nodeType":"YulIdentifier","src":"7434:7:125"}]},{"nativeSrc":"7486:17:125","nodeType":"YulAssignment","src":"7486:17:125","value":{"name":"value_2","nativeSrc":"7496:7:125","nodeType":"YulIdentifier","src":"7496:7:125"},"variableNames":[{"name":"value2","nativeSrc":"7486:6:125","nodeType":"YulIdentifier","src":"7486:6:125"}]},{"nativeSrc":"7512:46:125","nodeType":"YulVariableDeclaration","src":"7512:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7543:9:125","nodeType":"YulIdentifier","src":"7543:9:125"},{"kind":"number","nativeSrc":"7554:2:125","nodeType":"YulLiteral","src":"7554:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"7539:3:125","nodeType":"YulIdentifier","src":"7539:3:125"},"nativeSrc":"7539:18:125","nodeType":"YulFunctionCall","src":"7539:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"7526:12:125","nodeType":"YulIdentifier","src":"7526:12:125"},"nativeSrc":"7526:32:125","nodeType":"YulFunctionCall","src":"7526:32:125"},"variables":[{"name":"offset","nativeSrc":"7516:6:125","nodeType":"YulTypedName","src":"7516:6:125","type":""}]},{"body":{"nativeSrc":"7601:16:125","nodeType":"YulBlock","src":"7601:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7610:1:125","nodeType":"YulLiteral","src":"7610:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"7613:1:125","nodeType":"YulLiteral","src":"7613:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7603:6:125","nodeType":"YulIdentifier","src":"7603:6:125"},"nativeSrc":"7603:12:125","nodeType":"YulFunctionCall","src":"7603:12:125"},"nativeSrc":"7603:12:125","nodeType":"YulExpressionStatement","src":"7603:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"7573:6:125","nodeType":"YulIdentifier","src":"7573:6:125"},{"kind":"number","nativeSrc":"7581:18:125","nodeType":"YulLiteral","src":"7581:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7570:2:125","nodeType":"YulIdentifier","src":"7570:2:125"},"nativeSrc":"7570:30:125","nodeType":"YulFunctionCall","src":"7570:30:125"},"nativeSrc":"7567:50:125","nodeType":"YulIf","src":"7567:50:125"},{"nativeSrc":"7626:84:125","nodeType":"YulVariableDeclaration","src":"7626:84:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7682:9:125","nodeType":"YulIdentifier","src":"7682:9:125"},{"name":"offset","nativeSrc":"7693:6:125","nodeType":"YulIdentifier","src":"7693:6:125"}],"functionName":{"name":"add","nativeSrc":"7678:3:125","nodeType":"YulIdentifier","src":"7678:3:125"},"nativeSrc":"7678:22:125","nodeType":"YulFunctionCall","src":"7678:22:125"},{"name":"dataEnd","nativeSrc":"7702:7:125","nodeType":"YulIdentifier","src":"7702:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"7652:25:125","nodeType":"YulIdentifier","src":"7652:25:125"},"nativeSrc":"7652:58:125","nodeType":"YulFunctionCall","src":"7652:58:125"},"variables":[{"name":"value3_1","nativeSrc":"7630:8:125","nodeType":"YulTypedName","src":"7630:8:125","type":""},{"name":"value4_1","nativeSrc":"7640:8:125","nodeType":"YulTypedName","src":"7640:8:125","type":""}]},{"nativeSrc":"7719:18:125","nodeType":"YulAssignment","src":"7719:18:125","value":{"name":"value3_1","nativeSrc":"7729:8:125","nodeType":"YulIdentifier","src":"7729:8:125"},"variableNames":[{"name":"value3","nativeSrc":"7719:6:125","nodeType":"YulIdentifier","src":"7719:6:125"}]},{"nativeSrc":"7746:18:125","nodeType":"YulAssignment","src":"7746:18:125","value":{"name":"value4_1","nativeSrc":"7756:8:125","nodeType":"YulIdentifier","src":"7756:8:125"},"variableNames":[{"name":"value4","nativeSrc":"7746:6:125","nodeType":"YulIdentifier","src":"7746:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_calldata_ptr","nativeSrc":"6944:826:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7018:9:125","nodeType":"YulTypedName","src":"7018:9:125","type":""},{"name":"dataEnd","nativeSrc":"7029:7:125","nodeType":"YulTypedName","src":"7029:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7041:6:125","nodeType":"YulTypedName","src":"7041:6:125","type":""},{"name":"value1","nativeSrc":"7049:6:125","nodeType":"YulTypedName","src":"7049:6:125","type":""},{"name":"value2","nativeSrc":"7057:6:125","nodeType":"YulTypedName","src":"7057:6:125","type":""},{"name":"value3","nativeSrc":"7065:6:125","nodeType":"YulTypedName","src":"7065:6:125","type":""},{"name":"value4","nativeSrc":"7073:6:125","nodeType":"YulTypedName","src":"7073:6:125","type":""}],"src":"6944:826:125"},{"body":{"nativeSrc":"7874:103:125","nodeType":"YulBlock","src":"7874:103:125","statements":[{"nativeSrc":"7884:26:125","nodeType":"YulAssignment","src":"7884:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"7896:9:125","nodeType":"YulIdentifier","src":"7896:9:125"},{"kind":"number","nativeSrc":"7907:2:125","nodeType":"YulLiteral","src":"7907:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7892:3:125","nodeType":"YulIdentifier","src":"7892:3:125"},"nativeSrc":"7892:18:125","nodeType":"YulFunctionCall","src":"7892:18:125"},"variableNames":[{"name":"tail","nativeSrc":"7884:4:125","nodeType":"YulIdentifier","src":"7884:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7926:9:125","nodeType":"YulIdentifier","src":"7926:9:125"},{"arguments":[{"name":"value0","nativeSrc":"7941:6:125","nodeType":"YulIdentifier","src":"7941:6:125"},{"arguments":[{"kind":"number","nativeSrc":"7953:3:125","nodeType":"YulLiteral","src":"7953:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"7958:10:125","nodeType":"YulLiteral","src":"7958:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"7949:3:125","nodeType":"YulIdentifier","src":"7949:3:125"},"nativeSrc":"7949:20:125","nodeType":"YulFunctionCall","src":"7949:20:125"}],"functionName":{"name":"and","nativeSrc":"7937:3:125","nodeType":"YulIdentifier","src":"7937:3:125"},"nativeSrc":"7937:33:125","nodeType":"YulFunctionCall","src":"7937:33:125"}],"functionName":{"name":"mstore","nativeSrc":"7919:6:125","nodeType":"YulIdentifier","src":"7919:6:125"},"nativeSrc":"7919:52:125","nodeType":"YulFunctionCall","src":"7919:52:125"},"nativeSrc":"7919:52:125","nodeType":"YulExpressionStatement","src":"7919:52:125"}]},"name":"abi_encode_tuple_t_bytes4__to_t_bytes4__fromStack_reversed","nativeSrc":"7775:202:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7843:9:125","nodeType":"YulTypedName","src":"7843:9:125","type":""},{"name":"value0","nativeSrc":"7854:6:125","nodeType":"YulTypedName","src":"7854:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7865:4:125","nodeType":"YulTypedName","src":"7865:4:125","type":""}],"src":"7775:202:125"},{"body":{"nativeSrc":"8024:76:125","nodeType":"YulBlock","src":"8024:76:125","statements":[{"body":{"nativeSrc":"8078:16:125","nodeType":"YulBlock","src":"8078:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8087:1:125","nodeType":"YulLiteral","src":"8087:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8090:1:125","nodeType":"YulLiteral","src":"8090:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8080:6:125","nodeType":"YulIdentifier","src":"8080:6:125"},"nativeSrc":"8080:12:125","nodeType":"YulFunctionCall","src":"8080:12:125"},"nativeSrc":"8080:12:125","nodeType":"YulExpressionStatement","src":"8080:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8047:5:125","nodeType":"YulIdentifier","src":"8047:5:125"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8068:5:125","nodeType":"YulIdentifier","src":"8068:5:125"}],"functionName":{"name":"iszero","nativeSrc":"8061:6:125","nodeType":"YulIdentifier","src":"8061:6:125"},"nativeSrc":"8061:13:125","nodeType":"YulFunctionCall","src":"8061:13:125"}],"functionName":{"name":"iszero","nativeSrc":"8054:6:125","nodeType":"YulIdentifier","src":"8054:6:125"},"nativeSrc":"8054:21:125","nodeType":"YulFunctionCall","src":"8054:21:125"}],"functionName":{"name":"eq","nativeSrc":"8044:2:125","nodeType":"YulIdentifier","src":"8044:2:125"},"nativeSrc":"8044:32:125","nodeType":"YulFunctionCall","src":"8044:32:125"}],"functionName":{"name":"iszero","nativeSrc":"8037:6:125","nodeType":"YulIdentifier","src":"8037:6:125"},"nativeSrc":"8037:40:125","nodeType":"YulFunctionCall","src":"8037:40:125"},"nativeSrc":"8034:60:125","nodeType":"YulIf","src":"8034:60:125"}]},"name":"validator_revert_bool","nativeSrc":"7982:118:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"8013:5:125","nodeType":"YulTypedName","src":"8013:5:125","type":""}],"src":"7982:118:125"},{"body":{"nativeSrc":"8207:308:125","nodeType":"YulBlock","src":"8207:308:125","statements":[{"body":{"nativeSrc":"8253:16:125","nodeType":"YulBlock","src":"8253:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8262:1:125","nodeType":"YulLiteral","src":"8262:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8265:1:125","nodeType":"YulLiteral","src":"8265:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8255:6:125","nodeType":"YulIdentifier","src":"8255:6:125"},"nativeSrc":"8255:12:125","nodeType":"YulFunctionCall","src":"8255:12:125"},"nativeSrc":"8255:12:125","nodeType":"YulExpressionStatement","src":"8255:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8228:7:125","nodeType":"YulIdentifier","src":"8228:7:125"},{"name":"headStart","nativeSrc":"8237:9:125","nodeType":"YulIdentifier","src":"8237:9:125"}],"functionName":{"name":"sub","nativeSrc":"8224:3:125","nodeType":"YulIdentifier","src":"8224:3:125"},"nativeSrc":"8224:23:125","nodeType":"YulFunctionCall","src":"8224:23:125"},{"kind":"number","nativeSrc":"8249:2:125","nodeType":"YulLiteral","src":"8249:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"8220:3:125","nodeType":"YulIdentifier","src":"8220:3:125"},"nativeSrc":"8220:32:125","nodeType":"YulFunctionCall","src":"8220:32:125"},"nativeSrc":"8217:52:125","nodeType":"YulIf","src":"8217:52:125"},{"nativeSrc":"8278:36:125","nodeType":"YulVariableDeclaration","src":"8278:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8304:9:125","nodeType":"YulIdentifier","src":"8304:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"8291:12:125","nodeType":"YulIdentifier","src":"8291:12:125"},"nativeSrc":"8291:23:125","nodeType":"YulFunctionCall","src":"8291:23:125"},"variables":[{"name":"value","nativeSrc":"8282:5:125","nodeType":"YulTypedName","src":"8282:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8358:5:125","nodeType":"YulIdentifier","src":"8358:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"8323:34:125","nodeType":"YulIdentifier","src":"8323:34:125"},"nativeSrc":"8323:41:125","nodeType":"YulFunctionCall","src":"8323:41:125"},"nativeSrc":"8323:41:125","nodeType":"YulExpressionStatement","src":"8323:41:125"},{"nativeSrc":"8373:15:125","nodeType":"YulAssignment","src":"8373:15:125","value":{"name":"value","nativeSrc":"8383:5:125","nodeType":"YulIdentifier","src":"8383:5:125"},"variableNames":[{"name":"value0","nativeSrc":"8373:6:125","nodeType":"YulIdentifier","src":"8373:6:125"}]},{"nativeSrc":"8397:47:125","nodeType":"YulVariableDeclaration","src":"8397:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8429:9:125","nodeType":"YulIdentifier","src":"8429:9:125"},{"kind":"number","nativeSrc":"8440:2:125","nodeType":"YulLiteral","src":"8440:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8425:3:125","nodeType":"YulIdentifier","src":"8425:3:125"},"nativeSrc":"8425:18:125","nodeType":"YulFunctionCall","src":"8425:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"8412:12:125","nodeType":"YulIdentifier","src":"8412:12:125"},"nativeSrc":"8412:32:125","nodeType":"YulFunctionCall","src":"8412:32:125"},"variables":[{"name":"value_1","nativeSrc":"8401:7:125","nodeType":"YulTypedName","src":"8401:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"8475:7:125","nodeType":"YulIdentifier","src":"8475:7:125"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"8453:21:125","nodeType":"YulIdentifier","src":"8453:21:125"},"nativeSrc":"8453:30:125","nodeType":"YulFunctionCall","src":"8453:30:125"},"nativeSrc":"8453:30:125","nodeType":"YulExpressionStatement","src":"8453:30:125"},{"nativeSrc":"8492:17:125","nodeType":"YulAssignment","src":"8492:17:125","value":{"name":"value_1","nativeSrc":"8502:7:125","nodeType":"YulIdentifier","src":"8502:7:125"},"variableNames":[{"name":"value1","nativeSrc":"8492:6:125","nodeType":"YulIdentifier","src":"8492:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IERC4626_$22463t_bool","nativeSrc":"8105:410:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8165:9:125","nodeType":"YulTypedName","src":"8165:9:125","type":""},{"name":"dataEnd","nativeSrc":"8176:7:125","nodeType":"YulTypedName","src":"8176:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8188:6:125","nodeType":"YulTypedName","src":"8188:6:125","type":""},{"name":"value1","nativeSrc":"8196:6:125","nodeType":"YulTypedName","src":"8196:6:125","type":""}],"src":"8105:410:125"},{"body":{"nativeSrc":"8656:672:125","nodeType":"YulBlock","src":"8656:672:125","statements":[{"body":{"nativeSrc":"8703:16:125","nodeType":"YulBlock","src":"8703:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8712:1:125","nodeType":"YulLiteral","src":"8712:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"8715:1:125","nodeType":"YulLiteral","src":"8715:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8705:6:125","nodeType":"YulIdentifier","src":"8705:6:125"},"nativeSrc":"8705:12:125","nodeType":"YulFunctionCall","src":"8705:12:125"},"nativeSrc":"8705:12:125","nodeType":"YulExpressionStatement","src":"8705:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8677:7:125","nodeType":"YulIdentifier","src":"8677:7:125"},{"name":"headStart","nativeSrc":"8686:9:125","nodeType":"YulIdentifier","src":"8686:9:125"}],"functionName":{"name":"sub","nativeSrc":"8673:3:125","nodeType":"YulIdentifier","src":"8673:3:125"},"nativeSrc":"8673:23:125","nodeType":"YulFunctionCall","src":"8673:23:125"},{"kind":"number","nativeSrc":"8698:3:125","nodeType":"YulLiteral","src":"8698:3:125","type":"","value":"160"}],"functionName":{"name":"slt","nativeSrc":"8669:3:125","nodeType":"YulIdentifier","src":"8669:3:125"},"nativeSrc":"8669:33:125","nodeType":"YulFunctionCall","src":"8669:33:125"},"nativeSrc":"8666:53:125","nodeType":"YulIf","src":"8666:53:125"},{"nativeSrc":"8728:36:125","nodeType":"YulVariableDeclaration","src":"8728:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"8754:9:125","nodeType":"YulIdentifier","src":"8754:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"8741:12:125","nodeType":"YulIdentifier","src":"8741:12:125"},"nativeSrc":"8741:23:125","nodeType":"YulFunctionCall","src":"8741:23:125"},"variables":[{"name":"value","nativeSrc":"8732:5:125","nodeType":"YulTypedName","src":"8732:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8808:5:125","nodeType":"YulIdentifier","src":"8808:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"8773:34:125","nodeType":"YulIdentifier","src":"8773:34:125"},"nativeSrc":"8773:41:125","nodeType":"YulFunctionCall","src":"8773:41:125"},"nativeSrc":"8773:41:125","nodeType":"YulExpressionStatement","src":"8773:41:125"},{"nativeSrc":"8823:15:125","nodeType":"YulAssignment","src":"8823:15:125","value":{"name":"value","nativeSrc":"8833:5:125","nodeType":"YulIdentifier","src":"8833:5:125"},"variableNames":[{"name":"value0","nativeSrc":"8823:6:125","nodeType":"YulIdentifier","src":"8823:6:125"}]},{"nativeSrc":"8847:47:125","nodeType":"YulVariableDeclaration","src":"8847:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8879:9:125","nodeType":"YulIdentifier","src":"8879:9:125"},{"kind":"number","nativeSrc":"8890:2:125","nodeType":"YulLiteral","src":"8890:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8875:3:125","nodeType":"YulIdentifier","src":"8875:3:125"},"nativeSrc":"8875:18:125","nodeType":"YulFunctionCall","src":"8875:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"8862:12:125","nodeType":"YulIdentifier","src":"8862:12:125"},"nativeSrc":"8862:32:125","nodeType":"YulFunctionCall","src":"8862:32:125"},"variables":[{"name":"value_1","nativeSrc":"8851:7:125","nodeType":"YulTypedName","src":"8851:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"8927:7:125","nodeType":"YulIdentifier","src":"8927:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"8903:23:125","nodeType":"YulIdentifier","src":"8903:23:125"},"nativeSrc":"8903:32:125","nodeType":"YulFunctionCall","src":"8903:32:125"},"nativeSrc":"8903:32:125","nodeType":"YulExpressionStatement","src":"8903:32:125"},{"nativeSrc":"8944:17:125","nodeType":"YulAssignment","src":"8944:17:125","value":{"name":"value_1","nativeSrc":"8954:7:125","nodeType":"YulIdentifier","src":"8954:7:125"},"variableNames":[{"name":"value1","nativeSrc":"8944:6:125","nodeType":"YulIdentifier","src":"8944:6:125"}]},{"nativeSrc":"8970:47:125","nodeType":"YulVariableDeclaration","src":"8970:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9002:9:125","nodeType":"YulIdentifier","src":"9002:9:125"},{"kind":"number","nativeSrc":"9013:2:125","nodeType":"YulLiteral","src":"9013:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8998:3:125","nodeType":"YulIdentifier","src":"8998:3:125"},"nativeSrc":"8998:18:125","nodeType":"YulFunctionCall","src":"8998:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"8985:12:125","nodeType":"YulIdentifier","src":"8985:12:125"},"nativeSrc":"8985:32:125","nodeType":"YulFunctionCall","src":"8985:32:125"},"variables":[{"name":"value_2","nativeSrc":"8974:7:125","nodeType":"YulTypedName","src":"8974:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"9050:7:125","nodeType":"YulIdentifier","src":"9050:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"9026:23:125","nodeType":"YulIdentifier","src":"9026:23:125"},"nativeSrc":"9026:32:125","nodeType":"YulFunctionCall","src":"9026:32:125"},"nativeSrc":"9026:32:125","nodeType":"YulExpressionStatement","src":"9026:32:125"},{"nativeSrc":"9067:17:125","nodeType":"YulAssignment","src":"9067:17:125","value":{"name":"value_2","nativeSrc":"9077:7:125","nodeType":"YulIdentifier","src":"9077:7:125"},"variableNames":[{"name":"value2","nativeSrc":"9067:6:125","nodeType":"YulIdentifier","src":"9067:6:125"}]},{"nativeSrc":"9093:16:125","nodeType":"YulVariableDeclaration","src":"9093:16:125","value":{"kind":"number","nativeSrc":"9108:1:125","nodeType":"YulLiteral","src":"9108:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"9097:7:125","nodeType":"YulTypedName","src":"9097:7:125","type":""}]},{"nativeSrc":"9118:43:125","nodeType":"YulAssignment","src":"9118:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9146:9:125","nodeType":"YulIdentifier","src":"9146:9:125"},{"kind":"number","nativeSrc":"9157:2:125","nodeType":"YulLiteral","src":"9157:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9142:3:125","nodeType":"YulIdentifier","src":"9142:3:125"},"nativeSrc":"9142:18:125","nodeType":"YulFunctionCall","src":"9142:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"9129:12:125","nodeType":"YulIdentifier","src":"9129:12:125"},"nativeSrc":"9129:32:125","nodeType":"YulFunctionCall","src":"9129:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"9118:7:125","nodeType":"YulIdentifier","src":"9118:7:125"}]},{"nativeSrc":"9170:17:125","nodeType":"YulAssignment","src":"9170:17:125","value":{"name":"value_3","nativeSrc":"9180:7:125","nodeType":"YulIdentifier","src":"9180:7:125"},"variableNames":[{"name":"value3","nativeSrc":"9170:6:125","nodeType":"YulIdentifier","src":"9170:6:125"}]},{"nativeSrc":"9196:48:125","nodeType":"YulVariableDeclaration","src":"9196:48:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9228:9:125","nodeType":"YulIdentifier","src":"9228:9:125"},{"kind":"number","nativeSrc":"9239:3:125","nodeType":"YulLiteral","src":"9239:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"9224:3:125","nodeType":"YulIdentifier","src":"9224:3:125"},"nativeSrc":"9224:19:125","nodeType":"YulFunctionCall","src":"9224:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"9211:12:125","nodeType":"YulIdentifier","src":"9211:12:125"},"nativeSrc":"9211:33:125","nodeType":"YulFunctionCall","src":"9211:33:125"},"variables":[{"name":"value_4","nativeSrc":"9200:7:125","nodeType":"YulTypedName","src":"9200:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"9288:7:125","nodeType":"YulIdentifier","src":"9288:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"9253:34:125","nodeType":"YulIdentifier","src":"9253:34:125"},"nativeSrc":"9253:43:125","nodeType":"YulFunctionCall","src":"9253:43:125"},"nativeSrc":"9253:43:125","nodeType":"YulExpressionStatement","src":"9253:43:125"},{"nativeSrc":"9305:17:125","nodeType":"YulAssignment","src":"9305:17:125","value":{"name":"value_4","nativeSrc":"9315:7:125","nodeType":"YulIdentifier","src":"9315:7:125"},"variableNames":[{"name":"value4","nativeSrc":"9305:6:125","nodeType":"YulIdentifier","src":"9305:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint32t_uint256t_address","nativeSrc":"8520:808:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8590:9:125","nodeType":"YulTypedName","src":"8590:9:125","type":""},{"name":"dataEnd","nativeSrc":"8601:7:125","nodeType":"YulTypedName","src":"8601:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8613:6:125","nodeType":"YulTypedName","src":"8613:6:125","type":""},{"name":"value1","nativeSrc":"8621:6:125","nodeType":"YulTypedName","src":"8621:6:125","type":""},{"name":"value2","nativeSrc":"8629:6:125","nodeType":"YulTypedName","src":"8629:6:125","type":""},{"name":"value3","nativeSrc":"8637:6:125","nodeType":"YulTypedName","src":"8637:6:125","type":""},{"name":"value4","nativeSrc":"8645:6:125","nodeType":"YulTypedName","src":"8645:6:125","type":""}],"src":"8520:808:125"},{"body":{"nativeSrc":"9437:424:125","nodeType":"YulBlock","src":"9437:424:125","statements":[{"body":{"nativeSrc":"9483:16:125","nodeType":"YulBlock","src":"9483:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9492:1:125","nodeType":"YulLiteral","src":"9492:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"9495:1:125","nodeType":"YulLiteral","src":"9495:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9485:6:125","nodeType":"YulIdentifier","src":"9485:6:125"},"nativeSrc":"9485:12:125","nodeType":"YulFunctionCall","src":"9485:12:125"},"nativeSrc":"9485:12:125","nodeType":"YulExpressionStatement","src":"9485:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9458:7:125","nodeType":"YulIdentifier","src":"9458:7:125"},{"name":"headStart","nativeSrc":"9467:9:125","nodeType":"YulIdentifier","src":"9467:9:125"}],"functionName":{"name":"sub","nativeSrc":"9454:3:125","nodeType":"YulIdentifier","src":"9454:3:125"},"nativeSrc":"9454:23:125","nodeType":"YulFunctionCall","src":"9454:23:125"},{"kind":"number","nativeSrc":"9479:2:125","nodeType":"YulLiteral","src":"9479:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"9450:3:125","nodeType":"YulIdentifier","src":"9450:3:125"},"nativeSrc":"9450:32:125","nodeType":"YulFunctionCall","src":"9450:32:125"},"nativeSrc":"9447:52:125","nodeType":"YulIf","src":"9447:52:125"},{"nativeSrc":"9508:36:125","nodeType":"YulVariableDeclaration","src":"9508:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"9534:9:125","nodeType":"YulIdentifier","src":"9534:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"9521:12:125","nodeType":"YulIdentifier","src":"9521:12:125"},"nativeSrc":"9521:23:125","nodeType":"YulFunctionCall","src":"9521:23:125"},"variables":[{"name":"value","nativeSrc":"9512:5:125","nodeType":"YulTypedName","src":"9512:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"9588:5:125","nodeType":"YulIdentifier","src":"9588:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"9553:34:125","nodeType":"YulIdentifier","src":"9553:34:125"},"nativeSrc":"9553:41:125","nodeType":"YulFunctionCall","src":"9553:41:125"},"nativeSrc":"9553:41:125","nodeType":"YulExpressionStatement","src":"9553:41:125"},{"nativeSrc":"9603:15:125","nodeType":"YulAssignment","src":"9603:15:125","value":{"name":"value","nativeSrc":"9613:5:125","nodeType":"YulIdentifier","src":"9613:5:125"},"variableNames":[{"name":"value0","nativeSrc":"9603:6:125","nodeType":"YulIdentifier","src":"9603:6:125"}]},{"nativeSrc":"9627:47:125","nodeType":"YulVariableDeclaration","src":"9627:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9659:9:125","nodeType":"YulIdentifier","src":"9659:9:125"},{"kind":"number","nativeSrc":"9670:2:125","nodeType":"YulLiteral","src":"9670:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9655:3:125","nodeType":"YulIdentifier","src":"9655:3:125"},"nativeSrc":"9655:18:125","nodeType":"YulFunctionCall","src":"9655:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"9642:12:125","nodeType":"YulIdentifier","src":"9642:12:125"},"nativeSrc":"9642:32:125","nodeType":"YulFunctionCall","src":"9642:32:125"},"variables":[{"name":"value_1","nativeSrc":"9631:7:125","nodeType":"YulTypedName","src":"9631:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"9718:7:125","nodeType":"YulIdentifier","src":"9718:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"9683:34:125","nodeType":"YulIdentifier","src":"9683:34:125"},"nativeSrc":"9683:43:125","nodeType":"YulFunctionCall","src":"9683:43:125"},"nativeSrc":"9683:43:125","nodeType":"YulExpressionStatement","src":"9683:43:125"},{"nativeSrc":"9735:17:125","nodeType":"YulAssignment","src":"9735:17:125","value":{"name":"value_1","nativeSrc":"9745:7:125","nodeType":"YulIdentifier","src":"9745:7:125"},"variableNames":[{"name":"value1","nativeSrc":"9735:6:125","nodeType":"YulIdentifier","src":"9735:6:125"}]},{"nativeSrc":"9761:16:125","nodeType":"YulVariableDeclaration","src":"9761:16:125","value":{"kind":"number","nativeSrc":"9776:1:125","nodeType":"YulLiteral","src":"9776:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"9765:7:125","nodeType":"YulTypedName","src":"9765:7:125","type":""}]},{"nativeSrc":"9786:43:125","nodeType":"YulAssignment","src":"9786:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9814:9:125","nodeType":"YulIdentifier","src":"9814:9:125"},{"kind":"number","nativeSrc":"9825:2:125","nodeType":"YulLiteral","src":"9825:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9810:3:125","nodeType":"YulIdentifier","src":"9810:3:125"},"nativeSrc":"9810:18:125","nodeType":"YulFunctionCall","src":"9810:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"9797:12:125","nodeType":"YulIdentifier","src":"9797:12:125"},"nativeSrc":"9797:32:125","nodeType":"YulFunctionCall","src":"9797:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"9786:7:125","nodeType":"YulIdentifier","src":"9786:7:125"}]},{"nativeSrc":"9838:17:125","nodeType":"YulAssignment","src":"9838:17:125","value":{"name":"value_2","nativeSrc":"9848:7:125","nodeType":"YulIdentifier","src":"9848:7:125"},"variableNames":[{"name":"value2","nativeSrc":"9838:6:125","nodeType":"YulIdentifier","src":"9838:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"9333:528:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9387:9:125","nodeType":"YulTypedName","src":"9387:9:125","type":""},{"name":"dataEnd","nativeSrc":"9398:7:125","nodeType":"YulTypedName","src":"9398:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9410:6:125","nodeType":"YulTypedName","src":"9410:6:125","type":""},{"name":"value1","nativeSrc":"9418:6:125","nodeType":"YulTypedName","src":"9418:6:125","type":""},{"name":"value2","nativeSrc":"9426:6:125","nodeType":"YulTypedName","src":"9426:6:125","type":""}],"src":"9333:528:125"},{"body":{"nativeSrc":"9963:87:125","nodeType":"YulBlock","src":"9963:87:125","statements":[{"nativeSrc":"9973:26:125","nodeType":"YulAssignment","src":"9973:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"9985:9:125","nodeType":"YulIdentifier","src":"9985:9:125"},{"kind":"number","nativeSrc":"9996:2:125","nodeType":"YulLiteral","src":"9996:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9981:3:125","nodeType":"YulIdentifier","src":"9981:3:125"},"nativeSrc":"9981:18:125","nodeType":"YulFunctionCall","src":"9981:18:125"},"variableNames":[{"name":"tail","nativeSrc":"9973:4:125","nodeType":"YulIdentifier","src":"9973:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10015:9:125","nodeType":"YulIdentifier","src":"10015:9:125"},{"arguments":[{"name":"value0","nativeSrc":"10030:6:125","nodeType":"YulIdentifier","src":"10030:6:125"},{"kind":"number","nativeSrc":"10038:4:125","nodeType":"YulLiteral","src":"10038:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"10026:3:125","nodeType":"YulIdentifier","src":"10026:3:125"},"nativeSrc":"10026:17:125","nodeType":"YulFunctionCall","src":"10026:17:125"}],"functionName":{"name":"mstore","nativeSrc":"10008:6:125","nodeType":"YulIdentifier","src":"10008:6:125"},"nativeSrc":"10008:36:125","nodeType":"YulFunctionCall","src":"10008:36:125"},"nativeSrc":"10008:36:125","nodeType":"YulExpressionStatement","src":"10008:36:125"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"9866:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9932:9:125","nodeType":"YulTypedName","src":"9932:9:125","type":""},{"name":"value0","nativeSrc":"9943:6:125","nodeType":"YulTypedName","src":"9943:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9954:4:125","nodeType":"YulTypedName","src":"9954:4:125","type":""}],"src":"9866:184:125"},{"body":{"nativeSrc":"10161:448:125","nodeType":"YulBlock","src":"10161:448:125","statements":[{"body":{"nativeSrc":"10207:16:125","nodeType":"YulBlock","src":"10207:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10216:1:125","nodeType":"YulLiteral","src":"10216:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10219:1:125","nodeType":"YulLiteral","src":"10219:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10209:6:125","nodeType":"YulIdentifier","src":"10209:6:125"},"nativeSrc":"10209:12:125","nodeType":"YulFunctionCall","src":"10209:12:125"},"nativeSrc":"10209:12:125","nodeType":"YulExpressionStatement","src":"10209:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10182:7:125","nodeType":"YulIdentifier","src":"10182:7:125"},{"name":"headStart","nativeSrc":"10191:9:125","nodeType":"YulIdentifier","src":"10191:9:125"}],"functionName":{"name":"sub","nativeSrc":"10178:3:125","nodeType":"YulIdentifier","src":"10178:3:125"},"nativeSrc":"10178:23:125","nodeType":"YulFunctionCall","src":"10178:23:125"},{"kind":"number","nativeSrc":"10203:2:125","nodeType":"YulLiteral","src":"10203:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"10174:3:125","nodeType":"YulIdentifier","src":"10174:3:125"},"nativeSrc":"10174:32:125","nodeType":"YulFunctionCall","src":"10174:32:125"},"nativeSrc":"10171:52:125","nodeType":"YulIf","src":"10171:52:125"},{"nativeSrc":"10232:36:125","nodeType":"YulVariableDeclaration","src":"10232:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"10258:9:125","nodeType":"YulIdentifier","src":"10258:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"10245:12:125","nodeType":"YulIdentifier","src":"10245:12:125"},"nativeSrc":"10245:23:125","nodeType":"YulFunctionCall","src":"10245:23:125"},"variables":[{"name":"value","nativeSrc":"10236:5:125","nodeType":"YulTypedName","src":"10236:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"10312:5:125","nodeType":"YulIdentifier","src":"10312:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"10277:34:125","nodeType":"YulIdentifier","src":"10277:34:125"},"nativeSrc":"10277:41:125","nodeType":"YulFunctionCall","src":"10277:41:125"},"nativeSrc":"10277:41:125","nodeType":"YulExpressionStatement","src":"10277:41:125"},{"nativeSrc":"10327:15:125","nodeType":"YulAssignment","src":"10327:15:125","value":{"name":"value","nativeSrc":"10337:5:125","nodeType":"YulIdentifier","src":"10337:5:125"},"variableNames":[{"name":"value0","nativeSrc":"10327:6:125","nodeType":"YulIdentifier","src":"10327:6:125"}]},{"nativeSrc":"10351:46:125","nodeType":"YulVariableDeclaration","src":"10351:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10382:9:125","nodeType":"YulIdentifier","src":"10382:9:125"},{"kind":"number","nativeSrc":"10393:2:125","nodeType":"YulLiteral","src":"10393:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10378:3:125","nodeType":"YulIdentifier","src":"10378:3:125"},"nativeSrc":"10378:18:125","nodeType":"YulFunctionCall","src":"10378:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"10365:12:125","nodeType":"YulIdentifier","src":"10365:12:125"},"nativeSrc":"10365:32:125","nodeType":"YulFunctionCall","src":"10365:32:125"},"variables":[{"name":"offset","nativeSrc":"10355:6:125","nodeType":"YulTypedName","src":"10355:6:125","type":""}]},{"body":{"nativeSrc":"10440:16:125","nodeType":"YulBlock","src":"10440:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10449:1:125","nodeType":"YulLiteral","src":"10449:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"10452:1:125","nodeType":"YulLiteral","src":"10452:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10442:6:125","nodeType":"YulIdentifier","src":"10442:6:125"},"nativeSrc":"10442:12:125","nodeType":"YulFunctionCall","src":"10442:12:125"},"nativeSrc":"10442:12:125","nodeType":"YulExpressionStatement","src":"10442:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"10412:6:125","nodeType":"YulIdentifier","src":"10412:6:125"},{"kind":"number","nativeSrc":"10420:18:125","nodeType":"YulLiteral","src":"10420:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"10409:2:125","nodeType":"YulIdentifier","src":"10409:2:125"},"nativeSrc":"10409:30:125","nodeType":"YulFunctionCall","src":"10409:30:125"},"nativeSrc":"10406:50:125","nodeType":"YulIf","src":"10406:50:125"},{"nativeSrc":"10465:84:125","nodeType":"YulVariableDeclaration","src":"10465:84:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10521:9:125","nodeType":"YulIdentifier","src":"10521:9:125"},{"name":"offset","nativeSrc":"10532:6:125","nodeType":"YulIdentifier","src":"10532:6:125"}],"functionName":{"name":"add","nativeSrc":"10517:3:125","nodeType":"YulIdentifier","src":"10517:3:125"},"nativeSrc":"10517:22:125","nodeType":"YulFunctionCall","src":"10517:22:125"},{"name":"dataEnd","nativeSrc":"10541:7:125","nodeType":"YulIdentifier","src":"10541:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"10491:25:125","nodeType":"YulIdentifier","src":"10491:25:125"},"nativeSrc":"10491:58:125","nodeType":"YulFunctionCall","src":"10491:58:125"},"variables":[{"name":"value1_1","nativeSrc":"10469:8:125","nodeType":"YulTypedName","src":"10469:8:125","type":""},{"name":"value2_1","nativeSrc":"10479:8:125","nodeType":"YulTypedName","src":"10479:8:125","type":""}]},{"nativeSrc":"10558:18:125","nodeType":"YulAssignment","src":"10558:18:125","value":{"name":"value1_1","nativeSrc":"10568:8:125","nodeType":"YulIdentifier","src":"10568:8:125"},"variableNames":[{"name":"value1","nativeSrc":"10558:6:125","nodeType":"YulIdentifier","src":"10558:6:125"}]},{"nativeSrc":"10585:18:125","nodeType":"YulAssignment","src":"10585:18:125","value":{"name":"value2_1","nativeSrc":"10595:8:125","nodeType":"YulIdentifier","src":"10595:8:125"},"variableNames":[{"name":"value2","nativeSrc":"10585:6:125","nodeType":"YulIdentifier","src":"10585:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptr","nativeSrc":"10055:554:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10111:9:125","nodeType":"YulTypedName","src":"10111:9:125","type":""},{"name":"dataEnd","nativeSrc":"10122:7:125","nodeType":"YulTypedName","src":"10122:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10134:6:125","nodeType":"YulTypedName","src":"10134:6:125","type":""},{"name":"value1","nativeSrc":"10142:6:125","nodeType":"YulTypedName","src":"10142:6:125","type":""},{"name":"value2","nativeSrc":"10150:6:125","nodeType":"YulTypedName","src":"10150:6:125","type":""}],"src":"10055:554:125"},{"body":{"nativeSrc":"10733:99:125","nodeType":"YulBlock","src":"10733:99:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10750:9:125","nodeType":"YulIdentifier","src":"10750:9:125"},{"kind":"number","nativeSrc":"10761:2:125","nodeType":"YulLiteral","src":"10761:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"10743:6:125","nodeType":"YulIdentifier","src":"10743:6:125"},"nativeSrc":"10743:21:125","nodeType":"YulFunctionCall","src":"10743:21:125"},"nativeSrc":"10743:21:125","nodeType":"YulExpressionStatement","src":"10743:21:125"},{"nativeSrc":"10773:53:125","nodeType":"YulAssignment","src":"10773:53:125","value":{"arguments":[{"name":"value0","nativeSrc":"10799:6:125","nodeType":"YulIdentifier","src":"10799:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"10811:9:125","nodeType":"YulIdentifier","src":"10811:9:125"},{"kind":"number","nativeSrc":"10822:2:125","nodeType":"YulLiteral","src":"10822:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10807:3:125","nodeType":"YulIdentifier","src":"10807:3:125"},"nativeSrc":"10807:18:125","nodeType":"YulFunctionCall","src":"10807:18:125"}],"functionName":{"name":"abi_encode_string","nativeSrc":"10781:17:125","nodeType":"YulIdentifier","src":"10781:17:125"},"nativeSrc":"10781:45:125","nodeType":"YulFunctionCall","src":"10781:45:125"},"variableNames":[{"name":"tail","nativeSrc":"10773:4:125","nodeType":"YulIdentifier","src":"10773:4:125"}]}]},"name":"abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"10614:218:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10702:9:125","nodeType":"YulTypedName","src":"10702:9:125","type":""},{"name":"value0","nativeSrc":"10713:6:125","nodeType":"YulTypedName","src":"10713:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10724:4:125","nodeType":"YulTypedName","src":"10724:4:125","type":""}],"src":"10614:218:125"},{"body":{"nativeSrc":"10881:60:125","nodeType":"YulBlock","src":"10881:60:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"10898:3:125","nodeType":"YulIdentifier","src":"10898:3:125"},{"arguments":[{"name":"value","nativeSrc":"10907:5:125","nodeType":"YulIdentifier","src":"10907:5:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"10922:3:125","nodeType":"YulLiteral","src":"10922:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"10927:1:125","nodeType":"YulLiteral","src":"10927:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"10918:3:125","nodeType":"YulIdentifier","src":"10918:3:125"},"nativeSrc":"10918:11:125","nodeType":"YulFunctionCall","src":"10918:11:125"},{"kind":"number","nativeSrc":"10931:1:125","nodeType":"YulLiteral","src":"10931:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"10914:3:125","nodeType":"YulIdentifier","src":"10914:3:125"},"nativeSrc":"10914:19:125","nodeType":"YulFunctionCall","src":"10914:19:125"}],"functionName":{"name":"and","nativeSrc":"10903:3:125","nodeType":"YulIdentifier","src":"10903:3:125"},"nativeSrc":"10903:31:125","nodeType":"YulFunctionCall","src":"10903:31:125"}],"functionName":{"name":"mstore","nativeSrc":"10891:6:125","nodeType":"YulIdentifier","src":"10891:6:125"},"nativeSrc":"10891:44:125","nodeType":"YulFunctionCall","src":"10891:44:125"},"nativeSrc":"10891:44:125","nodeType":"YulExpressionStatement","src":"10891:44:125"}]},"name":"abi_encode_address","nativeSrc":"10837:104:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"10865:5:125","nodeType":"YulTypedName","src":"10865:5:125","type":""},{"name":"pos","nativeSrc":"10872:3:125","nodeType":"YulTypedName","src":"10872:3:125","type":""}],"src":"10837:104:125"},{"body":{"nativeSrc":"11047:102:125","nodeType":"YulBlock","src":"11047:102:125","statements":[{"nativeSrc":"11057:26:125","nodeType":"YulAssignment","src":"11057:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11069:9:125","nodeType":"YulIdentifier","src":"11069:9:125"},{"kind":"number","nativeSrc":"11080:2:125","nodeType":"YulLiteral","src":"11080:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11065:3:125","nodeType":"YulIdentifier","src":"11065:3:125"},"nativeSrc":"11065:18:125","nodeType":"YulFunctionCall","src":"11065:18:125"},"variableNames":[{"name":"tail","nativeSrc":"11057:4:125","nodeType":"YulIdentifier","src":"11057:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11099:9:125","nodeType":"YulIdentifier","src":"11099:9:125"},{"arguments":[{"name":"value0","nativeSrc":"11114:6:125","nodeType":"YulIdentifier","src":"11114:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11130:3:125","nodeType":"YulLiteral","src":"11130:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"11135:1:125","nodeType":"YulLiteral","src":"11135:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11126:3:125","nodeType":"YulIdentifier","src":"11126:3:125"},"nativeSrc":"11126:11:125","nodeType":"YulFunctionCall","src":"11126:11:125"},{"kind":"number","nativeSrc":"11139:1:125","nodeType":"YulLiteral","src":"11139:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11122:3:125","nodeType":"YulIdentifier","src":"11122:3:125"},"nativeSrc":"11122:19:125","nodeType":"YulFunctionCall","src":"11122:19:125"}],"functionName":{"name":"and","nativeSrc":"11110:3:125","nodeType":"YulIdentifier","src":"11110:3:125"},"nativeSrc":"11110:32:125","nodeType":"YulFunctionCall","src":"11110:32:125"}],"functionName":{"name":"mstore","nativeSrc":"11092:6:125","nodeType":"YulIdentifier","src":"11092:6:125"},"nativeSrc":"11092:51:125","nodeType":"YulFunctionCall","src":"11092:51:125"},"nativeSrc":"11092:51:125","nodeType":"YulExpressionStatement","src":"11092:51:125"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"10946:203:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11016:9:125","nodeType":"YulTypedName","src":"11016:9:125","type":""},{"name":"value0","nativeSrc":"11027:6:125","nodeType":"YulTypedName","src":"11027:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11038:4:125","nodeType":"YulTypedName","src":"11038:4:125","type":""}],"src":"10946:203:125"},{"body":{"nativeSrc":"11253:93:125","nodeType":"YulBlock","src":"11253:93:125","statements":[{"nativeSrc":"11263:26:125","nodeType":"YulAssignment","src":"11263:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11275:9:125","nodeType":"YulIdentifier","src":"11275:9:125"},{"kind":"number","nativeSrc":"11286:2:125","nodeType":"YulLiteral","src":"11286:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11271:3:125","nodeType":"YulIdentifier","src":"11271:3:125"},"nativeSrc":"11271:18:125","nodeType":"YulFunctionCall","src":"11271:18:125"},"variableNames":[{"name":"tail","nativeSrc":"11263:4:125","nodeType":"YulIdentifier","src":"11263:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11305:9:125","nodeType":"YulIdentifier","src":"11305:9:125"},{"arguments":[{"name":"value0","nativeSrc":"11320:6:125","nodeType":"YulIdentifier","src":"11320:6:125"},{"kind":"number","nativeSrc":"11328:10:125","nodeType":"YulLiteral","src":"11328:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"11316:3:125","nodeType":"YulIdentifier","src":"11316:3:125"},"nativeSrc":"11316:23:125","nodeType":"YulFunctionCall","src":"11316:23:125"}],"functionName":{"name":"mstore","nativeSrc":"11298:6:125","nodeType":"YulIdentifier","src":"11298:6:125"},"nativeSrc":"11298:42:125","nodeType":"YulFunctionCall","src":"11298:42:125"},"nativeSrc":"11298:42:125","nodeType":"YulExpressionStatement","src":"11298:42:125"}]},"name":"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed","nativeSrc":"11154:192:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11222:9:125","nodeType":"YulTypedName","src":"11222:9:125","type":""},{"name":"value0","nativeSrc":"11233:6:125","nodeType":"YulTypedName","src":"11233:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11244:4:125","nodeType":"YulTypedName","src":"11244:4:125","type":""}],"src":"11154:192:125"},{"body":{"nativeSrc":"11473:102:125","nodeType":"YulBlock","src":"11473:102:125","statements":[{"nativeSrc":"11483:26:125","nodeType":"YulAssignment","src":"11483:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11495:9:125","nodeType":"YulIdentifier","src":"11495:9:125"},{"kind":"number","nativeSrc":"11506:2:125","nodeType":"YulLiteral","src":"11506:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11491:3:125","nodeType":"YulIdentifier","src":"11491:3:125"},"nativeSrc":"11491:18:125","nodeType":"YulFunctionCall","src":"11491:18:125"},"variableNames":[{"name":"tail","nativeSrc":"11483:4:125","nodeType":"YulIdentifier","src":"11483:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11525:9:125","nodeType":"YulIdentifier","src":"11525:9:125"},{"arguments":[{"name":"value0","nativeSrc":"11540:6:125","nodeType":"YulIdentifier","src":"11540:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11556:3:125","nodeType":"YulLiteral","src":"11556:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"11561:1:125","nodeType":"YulLiteral","src":"11561:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11552:3:125","nodeType":"YulIdentifier","src":"11552:3:125"},"nativeSrc":"11552:11:125","nodeType":"YulFunctionCall","src":"11552:11:125"},{"kind":"number","nativeSrc":"11565:1:125","nodeType":"YulLiteral","src":"11565:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11548:3:125","nodeType":"YulIdentifier","src":"11548:3:125"},"nativeSrc":"11548:19:125","nodeType":"YulFunctionCall","src":"11548:19:125"}],"functionName":{"name":"and","nativeSrc":"11536:3:125","nodeType":"YulIdentifier","src":"11536:3:125"},"nativeSrc":"11536:32:125","nodeType":"YulFunctionCall","src":"11536:32:125"}],"functionName":{"name":"mstore","nativeSrc":"11518:6:125","nodeType":"YulIdentifier","src":"11518:6:125"},"nativeSrc":"11518:51:125","nodeType":"YulFunctionCall","src":"11518:51:125"},"nativeSrc":"11518:51:125","nodeType":"YulExpressionStatement","src":"11518:51:125"}]},"name":"abi_encode_tuple_t_contract$_IPolicyPool_$40853__to_t_address__fromStack_reversed","nativeSrc":"11351:224:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11442:9:125","nodeType":"YulTypedName","src":"11442:9:125","type":""},{"name":"value0","nativeSrc":"11453:6:125","nodeType":"YulTypedName","src":"11453:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11464:4:125","nodeType":"YulTypedName","src":"11464:4:125","type":""}],"src":"11351:224:125"},{"body":{"nativeSrc":"11676:499:125","nodeType":"YulBlock","src":"11676:499:125","statements":[{"body":{"nativeSrc":"11722:16:125","nodeType":"YulBlock","src":"11722:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11731:1:125","nodeType":"YulLiteral","src":"11731:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11734:1:125","nodeType":"YulLiteral","src":"11734:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11724:6:125","nodeType":"YulIdentifier","src":"11724:6:125"},"nativeSrc":"11724:12:125","nodeType":"YulFunctionCall","src":"11724:12:125"},"nativeSrc":"11724:12:125","nodeType":"YulExpressionStatement","src":"11724:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11697:7:125","nodeType":"YulIdentifier","src":"11697:7:125"},{"name":"headStart","nativeSrc":"11706:9:125","nodeType":"YulIdentifier","src":"11706:9:125"}],"functionName":{"name":"sub","nativeSrc":"11693:3:125","nodeType":"YulIdentifier","src":"11693:3:125"},"nativeSrc":"11693:23:125","nodeType":"YulFunctionCall","src":"11693:23:125"},{"kind":"number","nativeSrc":"11718:2:125","nodeType":"YulLiteral","src":"11718:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"11689:3:125","nodeType":"YulIdentifier","src":"11689:3:125"},"nativeSrc":"11689:32:125","nodeType":"YulFunctionCall","src":"11689:32:125"},"nativeSrc":"11686:52:125","nodeType":"YulIf","src":"11686:52:125"},{"nativeSrc":"11747:36:125","nodeType":"YulVariableDeclaration","src":"11747:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11773:9:125","nodeType":"YulIdentifier","src":"11773:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"11760:12:125","nodeType":"YulIdentifier","src":"11760:12:125"},"nativeSrc":"11760:23:125","nodeType":"YulFunctionCall","src":"11760:23:125"},"variables":[{"name":"value","nativeSrc":"11751:5:125","nodeType":"YulTypedName","src":"11751:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11827:5:125","nodeType":"YulIdentifier","src":"11827:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"11792:34:125","nodeType":"YulIdentifier","src":"11792:34:125"},"nativeSrc":"11792:41:125","nodeType":"YulFunctionCall","src":"11792:41:125"},"nativeSrc":"11792:41:125","nodeType":"YulExpressionStatement","src":"11792:41:125"},{"nativeSrc":"11842:15:125","nodeType":"YulAssignment","src":"11842:15:125","value":{"name":"value","nativeSrc":"11852:5:125","nodeType":"YulIdentifier","src":"11852:5:125"},"variableNames":[{"name":"value0","nativeSrc":"11842:6:125","nodeType":"YulIdentifier","src":"11842:6:125"}]},{"nativeSrc":"11866:46:125","nodeType":"YulVariableDeclaration","src":"11866:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11897:9:125","nodeType":"YulIdentifier","src":"11897:9:125"},{"kind":"number","nativeSrc":"11908:2:125","nodeType":"YulLiteral","src":"11908:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11893:3:125","nodeType":"YulIdentifier","src":"11893:3:125"},"nativeSrc":"11893:18:125","nodeType":"YulFunctionCall","src":"11893:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"11880:12:125","nodeType":"YulIdentifier","src":"11880:12:125"},"nativeSrc":"11880:32:125","nodeType":"YulFunctionCall","src":"11880:32:125"},"variables":[{"name":"offset","nativeSrc":"11870:6:125","nodeType":"YulTypedName","src":"11870:6:125","type":""}]},{"body":{"nativeSrc":"11955:16:125","nodeType":"YulBlock","src":"11955:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11964:1:125","nodeType":"YulLiteral","src":"11964:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"11967:1:125","nodeType":"YulLiteral","src":"11967:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11957:6:125","nodeType":"YulIdentifier","src":"11957:6:125"},"nativeSrc":"11957:12:125","nodeType":"YulFunctionCall","src":"11957:12:125"},"nativeSrc":"11957:12:125","nodeType":"YulExpressionStatement","src":"11957:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"11927:6:125","nodeType":"YulIdentifier","src":"11927:6:125"},{"kind":"number","nativeSrc":"11935:18:125","nodeType":"YulLiteral","src":"11935:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"11924:2:125","nodeType":"YulIdentifier","src":"11924:2:125"},"nativeSrc":"11924:30:125","nodeType":"YulFunctionCall","src":"11924:30:125"},"nativeSrc":"11921:50:125","nodeType":"YulIf","src":"11921:50:125"},{"nativeSrc":"11980:32:125","nodeType":"YulVariableDeclaration","src":"11980:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"11994:9:125","nodeType":"YulIdentifier","src":"11994:9:125"},{"name":"offset","nativeSrc":"12005:6:125","nodeType":"YulIdentifier","src":"12005:6:125"}],"functionName":{"name":"add","nativeSrc":"11990:3:125","nodeType":"YulIdentifier","src":"11990:3:125"},"nativeSrc":"11990:22:125","nodeType":"YulFunctionCall","src":"11990:22:125"},"variables":[{"name":"_1","nativeSrc":"11984:2:125","nodeType":"YulTypedName","src":"11984:2:125","type":""}]},{"body":{"nativeSrc":"12060:16:125","nodeType":"YulBlock","src":"12060:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12069:1:125","nodeType":"YulLiteral","src":"12069:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12072:1:125","nodeType":"YulLiteral","src":"12072:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12062:6:125","nodeType":"YulIdentifier","src":"12062:6:125"},"nativeSrc":"12062:12:125","nodeType":"YulFunctionCall","src":"12062:12:125"},"nativeSrc":"12062:12:125","nodeType":"YulExpressionStatement","src":"12062:12:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"12039:2:125","nodeType":"YulIdentifier","src":"12039:2:125"},{"kind":"number","nativeSrc":"12043:4:125","nodeType":"YulLiteral","src":"12043:4:125","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"12035:3:125","nodeType":"YulIdentifier","src":"12035:3:125"},"nativeSrc":"12035:13:125","nodeType":"YulFunctionCall","src":"12035:13:125"},{"name":"dataEnd","nativeSrc":"12050:7:125","nodeType":"YulIdentifier","src":"12050:7:125"}],"functionName":{"name":"slt","nativeSrc":"12031:3:125","nodeType":"YulIdentifier","src":"12031:3:125"},"nativeSrc":"12031:27:125","nodeType":"YulFunctionCall","src":"12031:27:125"}],"functionName":{"name":"iszero","nativeSrc":"12024:6:125","nodeType":"YulIdentifier","src":"12024:6:125"},"nativeSrc":"12024:35:125","nodeType":"YulFunctionCall","src":"12024:35:125"},"nativeSrc":"12021:55:125","nodeType":"YulIf","src":"12021:55:125"},{"nativeSrc":"12085:84:125","nodeType":"YulAssignment","src":"12085:84:125","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"12134:2:125","nodeType":"YulIdentifier","src":"12134:2:125"},{"kind":"number","nativeSrc":"12138:2:125","nodeType":"YulLiteral","src":"12138:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12130:3:125","nodeType":"YulIdentifier","src":"12130:3:125"},"nativeSrc":"12130:11:125","nodeType":"YulFunctionCall","src":"12130:11:125"},{"arguments":[{"name":"_1","nativeSrc":"12156:2:125","nodeType":"YulIdentifier","src":"12156:2:125"}],"functionName":{"name":"calldataload","nativeSrc":"12143:12:125","nodeType":"YulIdentifier","src":"12143:12:125"},"nativeSrc":"12143:16:125","nodeType":"YulFunctionCall","src":"12143:16:125"},{"name":"dataEnd","nativeSrc":"12161:7:125","nodeType":"YulIdentifier","src":"12161:7:125"}],"functionName":{"name":"abi_decode_available_length_string","nativeSrc":"12095:34:125","nodeType":"YulIdentifier","src":"12095:34:125"},"nativeSrc":"12095:74:125","nodeType":"YulFunctionCall","src":"12095:74:125"},"variableNames":[{"name":"value1","nativeSrc":"12085:6:125","nodeType":"YulIdentifier","src":"12085:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_memory_ptr","nativeSrc":"11580:595:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11634:9:125","nodeType":"YulTypedName","src":"11634:9:125","type":""},{"name":"dataEnd","nativeSrc":"11645:7:125","nodeType":"YulTypedName","src":"11645:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11657:6:125","nodeType":"YulTypedName","src":"11657:6:125","type":""},{"name":"value1","nativeSrc":"11665:6:125","nodeType":"YulTypedName","src":"11665:6:125","type":""}],"src":"11580:595:125"},{"body":{"nativeSrc":"12281:76:125","nodeType":"YulBlock","src":"12281:76:125","statements":[{"nativeSrc":"12291:26:125","nodeType":"YulAssignment","src":"12291:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12303:9:125","nodeType":"YulIdentifier","src":"12303:9:125"},{"kind":"number","nativeSrc":"12314:2:125","nodeType":"YulLiteral","src":"12314:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12299:3:125","nodeType":"YulIdentifier","src":"12299:3:125"},"nativeSrc":"12299:18:125","nodeType":"YulFunctionCall","src":"12299:18:125"},"variableNames":[{"name":"tail","nativeSrc":"12291:4:125","nodeType":"YulIdentifier","src":"12291:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12333:9:125","nodeType":"YulIdentifier","src":"12333:9:125"},{"name":"value0","nativeSrc":"12344:6:125","nodeType":"YulIdentifier","src":"12344:6:125"}],"functionName":{"name":"mstore","nativeSrc":"12326:6:125","nodeType":"YulIdentifier","src":"12326:6:125"},"nativeSrc":"12326:25:125","nodeType":"YulFunctionCall","src":"12326:25:125"},"nativeSrc":"12326:25:125","nodeType":"YulExpressionStatement","src":"12326:25:125"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"12180:177:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12250:9:125","nodeType":"YulTypedName","src":"12250:9:125","type":""},{"name":"value0","nativeSrc":"12261:6:125","nodeType":"YulTypedName","src":"12261:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12272:4:125","nodeType":"YulTypedName","src":"12272:4:125","type":""}],"src":"12180:177:125"},{"body":{"nativeSrc":"12483:528:125","nodeType":"YulBlock","src":"12483:528:125","statements":[{"body":{"nativeSrc":"12530:16:125","nodeType":"YulBlock","src":"12530:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12539:1:125","nodeType":"YulLiteral","src":"12539:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"12542:1:125","nodeType":"YulLiteral","src":"12542:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12532:6:125","nodeType":"YulIdentifier","src":"12532:6:125"},"nativeSrc":"12532:12:125","nodeType":"YulFunctionCall","src":"12532:12:125"},"nativeSrc":"12532:12:125","nodeType":"YulExpressionStatement","src":"12532:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12504:7:125","nodeType":"YulIdentifier","src":"12504:7:125"},{"name":"headStart","nativeSrc":"12513:9:125","nodeType":"YulIdentifier","src":"12513:9:125"}],"functionName":{"name":"sub","nativeSrc":"12500:3:125","nodeType":"YulIdentifier","src":"12500:3:125"},"nativeSrc":"12500:23:125","nodeType":"YulFunctionCall","src":"12500:23:125"},{"kind":"number","nativeSrc":"12525:3:125","nodeType":"YulLiteral","src":"12525:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"12496:3:125","nodeType":"YulIdentifier","src":"12496:3:125"},"nativeSrc":"12496:33:125","nodeType":"YulFunctionCall","src":"12496:33:125"},"nativeSrc":"12493:53:125","nodeType":"YulIf","src":"12493:53:125"},{"nativeSrc":"12555:36:125","nodeType":"YulVariableDeclaration","src":"12555:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"12581:9:125","nodeType":"YulIdentifier","src":"12581:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"12568:12:125","nodeType":"YulIdentifier","src":"12568:12:125"},"nativeSrc":"12568:23:125","nodeType":"YulFunctionCall","src":"12568:23:125"},"variables":[{"name":"value","nativeSrc":"12559:5:125","nodeType":"YulTypedName","src":"12559:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12635:5:125","nodeType":"YulIdentifier","src":"12635:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"12600:34:125","nodeType":"YulIdentifier","src":"12600:34:125"},"nativeSrc":"12600:41:125","nodeType":"YulFunctionCall","src":"12600:41:125"},"nativeSrc":"12600:41:125","nodeType":"YulExpressionStatement","src":"12600:41:125"},{"nativeSrc":"12650:15:125","nodeType":"YulAssignment","src":"12650:15:125","value":{"name":"value","nativeSrc":"12660:5:125","nodeType":"YulIdentifier","src":"12660:5:125"},"variableNames":[{"name":"value0","nativeSrc":"12650:6:125","nodeType":"YulIdentifier","src":"12650:6:125"}]},{"nativeSrc":"12674:47:125","nodeType":"YulVariableDeclaration","src":"12674:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12706:9:125","nodeType":"YulIdentifier","src":"12706:9:125"},{"kind":"number","nativeSrc":"12717:2:125","nodeType":"YulLiteral","src":"12717:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12702:3:125","nodeType":"YulIdentifier","src":"12702:3:125"},"nativeSrc":"12702:18:125","nodeType":"YulFunctionCall","src":"12702:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"12689:12:125","nodeType":"YulIdentifier","src":"12689:12:125"},"nativeSrc":"12689:32:125","nodeType":"YulFunctionCall","src":"12689:32:125"},"variables":[{"name":"value_1","nativeSrc":"12678:7:125","nodeType":"YulTypedName","src":"12678:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"12765:7:125","nodeType":"YulIdentifier","src":"12765:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"12730:34:125","nodeType":"YulIdentifier","src":"12730:34:125"},"nativeSrc":"12730:43:125","nodeType":"YulFunctionCall","src":"12730:43:125"},"nativeSrc":"12730:43:125","nodeType":"YulExpressionStatement","src":"12730:43:125"},{"nativeSrc":"12782:17:125","nodeType":"YulAssignment","src":"12782:17:125","value":{"name":"value_1","nativeSrc":"12792:7:125","nodeType":"YulIdentifier","src":"12792:7:125"},"variableNames":[{"name":"value1","nativeSrc":"12782:6:125","nodeType":"YulIdentifier","src":"12782:6:125"}]},{"nativeSrc":"12808:16:125","nodeType":"YulVariableDeclaration","src":"12808:16:125","value":{"kind":"number","nativeSrc":"12823:1:125","nodeType":"YulLiteral","src":"12823:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"12812:7:125","nodeType":"YulTypedName","src":"12812:7:125","type":""}]},{"nativeSrc":"12833:43:125","nodeType":"YulAssignment","src":"12833:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12861:9:125","nodeType":"YulIdentifier","src":"12861:9:125"},{"kind":"number","nativeSrc":"12872:2:125","nodeType":"YulLiteral","src":"12872:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12857:3:125","nodeType":"YulIdentifier","src":"12857:3:125"},"nativeSrc":"12857:18:125","nodeType":"YulFunctionCall","src":"12857:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"12844:12:125","nodeType":"YulIdentifier","src":"12844:12:125"},"nativeSrc":"12844:32:125","nodeType":"YulFunctionCall","src":"12844:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"12833:7:125","nodeType":"YulIdentifier","src":"12833:7:125"}]},{"nativeSrc":"12885:17:125","nodeType":"YulAssignment","src":"12885:17:125","value":{"name":"value_2","nativeSrc":"12895:7:125","nodeType":"YulIdentifier","src":"12895:7:125"},"variableNames":[{"name":"value2","nativeSrc":"12885:6:125","nodeType":"YulIdentifier","src":"12885:6:125"}]},{"nativeSrc":"12911:16:125","nodeType":"YulVariableDeclaration","src":"12911:16:125","value":{"kind":"number","nativeSrc":"12926:1:125","nodeType":"YulLiteral","src":"12926:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"12915:7:125","nodeType":"YulTypedName","src":"12915:7:125","type":""}]},{"nativeSrc":"12936:43:125","nodeType":"YulAssignment","src":"12936:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12964:9:125","nodeType":"YulIdentifier","src":"12964:9:125"},{"kind":"number","nativeSrc":"12975:2:125","nodeType":"YulLiteral","src":"12975:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12960:3:125","nodeType":"YulIdentifier","src":"12960:3:125"},"nativeSrc":"12960:18:125","nodeType":"YulFunctionCall","src":"12960:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"12947:12:125","nodeType":"YulIdentifier","src":"12947:12:125"},"nativeSrc":"12947:32:125","nodeType":"YulFunctionCall","src":"12947:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"12936:7:125","nodeType":"YulIdentifier","src":"12936:7:125"}]},{"nativeSrc":"12988:17:125","nodeType":"YulAssignment","src":"12988:17:125","value":{"name":"value_3","nativeSrc":"12998:7:125","nodeType":"YulIdentifier","src":"12998:7:125"},"variableNames":[{"name":"value3","nativeSrc":"12988:6:125","nodeType":"YulIdentifier","src":"12988:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256","nativeSrc":"12362:649:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12425:9:125","nodeType":"YulTypedName","src":"12425:9:125","type":""},{"name":"dataEnd","nativeSrc":"12436:7:125","nodeType":"YulTypedName","src":"12436:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12448:6:125","nodeType":"YulTypedName","src":"12448:6:125","type":""},{"name":"value1","nativeSrc":"12456:6:125","nodeType":"YulTypedName","src":"12456:6:125","type":""},{"name":"value2","nativeSrc":"12464:6:125","nodeType":"YulTypedName","src":"12464:6:125","type":""},{"name":"value3","nativeSrc":"12472:6:125","nodeType":"YulTypedName","src":"12472:6:125","type":""}],"src":"12362:649:125"},{"body":{"nativeSrc":"13171:736:125","nodeType":"YulBlock","src":"13171:736:125","statements":[{"body":{"nativeSrc":"13218:16:125","nodeType":"YulBlock","src":"13218:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13227:1:125","nodeType":"YulLiteral","src":"13227:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"13230:1:125","nodeType":"YulLiteral","src":"13230:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13220:6:125","nodeType":"YulIdentifier","src":"13220:6:125"},"nativeSrc":"13220:12:125","nodeType":"YulFunctionCall","src":"13220:12:125"},"nativeSrc":"13220:12:125","nodeType":"YulExpressionStatement","src":"13220:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13192:7:125","nodeType":"YulIdentifier","src":"13192:7:125"},{"name":"headStart","nativeSrc":"13201:9:125","nodeType":"YulIdentifier","src":"13201:9:125"}],"functionName":{"name":"sub","nativeSrc":"13188:3:125","nodeType":"YulIdentifier","src":"13188:3:125"},"nativeSrc":"13188:23:125","nodeType":"YulFunctionCall","src":"13188:23:125"},{"kind":"number","nativeSrc":"13213:3:125","nodeType":"YulLiteral","src":"13213:3:125","type":"","value":"192"}],"functionName":{"name":"slt","nativeSrc":"13184:3:125","nodeType":"YulIdentifier","src":"13184:3:125"},"nativeSrc":"13184:33:125","nodeType":"YulFunctionCall","src":"13184:33:125"},"nativeSrc":"13181:53:125","nodeType":"YulIf","src":"13181:53:125"},{"nativeSrc":"13243:36:125","nodeType":"YulVariableDeclaration","src":"13243:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"13269:9:125","nodeType":"YulIdentifier","src":"13269:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"13256:12:125","nodeType":"YulIdentifier","src":"13256:12:125"},"nativeSrc":"13256:23:125","nodeType":"YulFunctionCall","src":"13256:23:125"},"variables":[{"name":"value","nativeSrc":"13247:5:125","nodeType":"YulTypedName","src":"13247:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13323:5:125","nodeType":"YulIdentifier","src":"13323:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"13288:34:125","nodeType":"YulIdentifier","src":"13288:34:125"},"nativeSrc":"13288:41:125","nodeType":"YulFunctionCall","src":"13288:41:125"},"nativeSrc":"13288:41:125","nodeType":"YulExpressionStatement","src":"13288:41:125"},{"nativeSrc":"13338:15:125","nodeType":"YulAssignment","src":"13338:15:125","value":{"name":"value","nativeSrc":"13348:5:125","nodeType":"YulIdentifier","src":"13348:5:125"},"variableNames":[{"name":"value0","nativeSrc":"13338:6:125","nodeType":"YulIdentifier","src":"13338:6:125"}]},{"nativeSrc":"13362:47:125","nodeType":"YulVariableDeclaration","src":"13362:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13394:9:125","nodeType":"YulIdentifier","src":"13394:9:125"},{"kind":"number","nativeSrc":"13405:2:125","nodeType":"YulLiteral","src":"13405:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13390:3:125","nodeType":"YulIdentifier","src":"13390:3:125"},"nativeSrc":"13390:18:125","nodeType":"YulFunctionCall","src":"13390:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"13377:12:125","nodeType":"YulIdentifier","src":"13377:12:125"},"nativeSrc":"13377:32:125","nodeType":"YulFunctionCall","src":"13377:32:125"},"variables":[{"name":"value_1","nativeSrc":"13366:7:125","nodeType":"YulTypedName","src":"13366:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"13453:7:125","nodeType":"YulIdentifier","src":"13453:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"13418:34:125","nodeType":"YulIdentifier","src":"13418:34:125"},"nativeSrc":"13418:43:125","nodeType":"YulFunctionCall","src":"13418:43:125"},"nativeSrc":"13418:43:125","nodeType":"YulExpressionStatement","src":"13418:43:125"},{"nativeSrc":"13470:17:125","nodeType":"YulAssignment","src":"13470:17:125","value":{"name":"value_1","nativeSrc":"13480:7:125","nodeType":"YulIdentifier","src":"13480:7:125"},"variableNames":[{"name":"value1","nativeSrc":"13470:6:125","nodeType":"YulIdentifier","src":"13470:6:125"}]},{"nativeSrc":"13496:16:125","nodeType":"YulVariableDeclaration","src":"13496:16:125","value":{"kind":"number","nativeSrc":"13511:1:125","nodeType":"YulLiteral","src":"13511:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"13500:7:125","nodeType":"YulTypedName","src":"13500:7:125","type":""}]},{"nativeSrc":"13521:43:125","nodeType":"YulAssignment","src":"13521:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13549:9:125","nodeType":"YulIdentifier","src":"13549:9:125"},{"kind":"number","nativeSrc":"13560:2:125","nodeType":"YulLiteral","src":"13560:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13545:3:125","nodeType":"YulIdentifier","src":"13545:3:125"},"nativeSrc":"13545:18:125","nodeType":"YulFunctionCall","src":"13545:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"13532:12:125","nodeType":"YulIdentifier","src":"13532:12:125"},"nativeSrc":"13532:32:125","nodeType":"YulFunctionCall","src":"13532:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"13521:7:125","nodeType":"YulIdentifier","src":"13521:7:125"}]},{"nativeSrc":"13573:17:125","nodeType":"YulAssignment","src":"13573:17:125","value":{"name":"value_2","nativeSrc":"13583:7:125","nodeType":"YulIdentifier","src":"13583:7:125"},"variableNames":[{"name":"value2","nativeSrc":"13573:6:125","nodeType":"YulIdentifier","src":"13573:6:125"}]},{"nativeSrc":"13599:16:125","nodeType":"YulVariableDeclaration","src":"13599:16:125","value":{"kind":"number","nativeSrc":"13614:1:125","nodeType":"YulLiteral","src":"13614:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"13603:7:125","nodeType":"YulTypedName","src":"13603:7:125","type":""}]},{"nativeSrc":"13624:43:125","nodeType":"YulAssignment","src":"13624:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13652:9:125","nodeType":"YulIdentifier","src":"13652:9:125"},{"kind":"number","nativeSrc":"13663:2:125","nodeType":"YulLiteral","src":"13663:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13648:3:125","nodeType":"YulIdentifier","src":"13648:3:125"},"nativeSrc":"13648:18:125","nodeType":"YulFunctionCall","src":"13648:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"13635:12:125","nodeType":"YulIdentifier","src":"13635:12:125"},"nativeSrc":"13635:32:125","nodeType":"YulFunctionCall","src":"13635:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"13624:7:125","nodeType":"YulIdentifier","src":"13624:7:125"}]},{"nativeSrc":"13676:17:125","nodeType":"YulAssignment","src":"13676:17:125","value":{"name":"value_3","nativeSrc":"13686:7:125","nodeType":"YulIdentifier","src":"13686:7:125"},"variableNames":[{"name":"value3","nativeSrc":"13676:6:125","nodeType":"YulIdentifier","src":"13676:6:125"}]},{"nativeSrc":"13702:16:125","nodeType":"YulVariableDeclaration","src":"13702:16:125","value":{"kind":"number","nativeSrc":"13717:1:125","nodeType":"YulLiteral","src":"13717:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"13706:7:125","nodeType":"YulTypedName","src":"13706:7:125","type":""}]},{"nativeSrc":"13727:44:125","nodeType":"YulAssignment","src":"13727:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13755:9:125","nodeType":"YulIdentifier","src":"13755:9:125"},{"kind":"number","nativeSrc":"13766:3:125","nodeType":"YulLiteral","src":"13766:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"13751:3:125","nodeType":"YulIdentifier","src":"13751:3:125"},"nativeSrc":"13751:19:125","nodeType":"YulFunctionCall","src":"13751:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"13738:12:125","nodeType":"YulIdentifier","src":"13738:12:125"},"nativeSrc":"13738:33:125","nodeType":"YulFunctionCall","src":"13738:33:125"},"variableNames":[{"name":"value_4","nativeSrc":"13727:7:125","nodeType":"YulIdentifier","src":"13727:7:125"}]},{"nativeSrc":"13780:17:125","nodeType":"YulAssignment","src":"13780:17:125","value":{"name":"value_4","nativeSrc":"13790:7:125","nodeType":"YulIdentifier","src":"13790:7:125"},"variableNames":[{"name":"value4","nativeSrc":"13780:6:125","nodeType":"YulIdentifier","src":"13780:6:125"}]},{"nativeSrc":"13806:16:125","nodeType":"YulVariableDeclaration","src":"13806:16:125","value":{"kind":"number","nativeSrc":"13821:1:125","nodeType":"YulLiteral","src":"13821:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"13810:7:125","nodeType":"YulTypedName","src":"13810:7:125","type":""}]},{"nativeSrc":"13831:44:125","nodeType":"YulAssignment","src":"13831:44:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13859:9:125","nodeType":"YulIdentifier","src":"13859:9:125"},{"kind":"number","nativeSrc":"13870:3:125","nodeType":"YulLiteral","src":"13870:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"13855:3:125","nodeType":"YulIdentifier","src":"13855:3:125"},"nativeSrc":"13855:19:125","nodeType":"YulFunctionCall","src":"13855:19:125"}],"functionName":{"name":"calldataload","nativeSrc":"13842:12:125","nodeType":"YulIdentifier","src":"13842:12:125"},"nativeSrc":"13842:33:125","nodeType":"YulFunctionCall","src":"13842:33:125"},"variableNames":[{"name":"value_5","nativeSrc":"13831:7:125","nodeType":"YulIdentifier","src":"13831:7:125"}]},{"nativeSrc":"13884:17:125","nodeType":"YulAssignment","src":"13884:17:125","value":{"name":"value_5","nativeSrc":"13894:7:125","nodeType":"YulIdentifier","src":"13894:7:125"},"variableNames":[{"name":"value5","nativeSrc":"13884:6:125","nodeType":"YulIdentifier","src":"13884:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256t_uint256","nativeSrc":"13016:891:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13097:9:125","nodeType":"YulTypedName","src":"13097:9:125","type":""},{"name":"dataEnd","nativeSrc":"13108:7:125","nodeType":"YulTypedName","src":"13108:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13120:6:125","nodeType":"YulTypedName","src":"13120:6:125","type":""},{"name":"value1","nativeSrc":"13128:6:125","nodeType":"YulTypedName","src":"13128:6:125","type":""},{"name":"value2","nativeSrc":"13136:6:125","nodeType":"YulTypedName","src":"13136:6:125","type":""},{"name":"value3","nativeSrc":"13144:6:125","nodeType":"YulTypedName","src":"13144:6:125","type":""},{"name":"value4","nativeSrc":"13152:6:125","nodeType":"YulTypedName","src":"13152:6:125","type":""},{"name":"value5","nativeSrc":"13160:6:125","nodeType":"YulTypedName","src":"13160:6:125","type":""}],"src":"13016:891:125"},{"body":{"nativeSrc":"13999:290:125","nodeType":"YulBlock","src":"13999:290:125","statements":[{"body":{"nativeSrc":"14045:16:125","nodeType":"YulBlock","src":"14045:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14054:1:125","nodeType":"YulLiteral","src":"14054:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"14057:1:125","nodeType":"YulLiteral","src":"14057:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14047:6:125","nodeType":"YulIdentifier","src":"14047:6:125"},"nativeSrc":"14047:12:125","nodeType":"YulFunctionCall","src":"14047:12:125"},"nativeSrc":"14047:12:125","nodeType":"YulExpressionStatement","src":"14047:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14020:7:125","nodeType":"YulIdentifier","src":"14020:7:125"},{"name":"headStart","nativeSrc":"14029:9:125","nodeType":"YulIdentifier","src":"14029:9:125"}],"functionName":{"name":"sub","nativeSrc":"14016:3:125","nodeType":"YulIdentifier","src":"14016:3:125"},"nativeSrc":"14016:23:125","nodeType":"YulFunctionCall","src":"14016:23:125"},{"kind":"number","nativeSrc":"14041:2:125","nodeType":"YulLiteral","src":"14041:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"14012:3:125","nodeType":"YulIdentifier","src":"14012:3:125"},"nativeSrc":"14012:32:125","nodeType":"YulFunctionCall","src":"14012:32:125"},"nativeSrc":"14009:52:125","nodeType":"YulIf","src":"14009:52:125"},{"nativeSrc":"14070:14:125","nodeType":"YulVariableDeclaration","src":"14070:14:125","value":{"kind":"number","nativeSrc":"14083:1:125","nodeType":"YulLiteral","src":"14083:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"14074:5:125","nodeType":"YulTypedName","src":"14074:5:125","type":""}]},{"nativeSrc":"14093:32:125","nodeType":"YulAssignment","src":"14093:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14115:9:125","nodeType":"YulIdentifier","src":"14115:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"14102:12:125","nodeType":"YulIdentifier","src":"14102:12:125"},"nativeSrc":"14102:23:125","nodeType":"YulFunctionCall","src":"14102:23:125"},"variableNames":[{"name":"value","nativeSrc":"14093:5:125","nodeType":"YulIdentifier","src":"14093:5:125"}]},{"nativeSrc":"14134:15:125","nodeType":"YulAssignment","src":"14134:15:125","value":{"name":"value","nativeSrc":"14144:5:125","nodeType":"YulIdentifier","src":"14144:5:125"},"variableNames":[{"name":"value0","nativeSrc":"14134:6:125","nodeType":"YulIdentifier","src":"14134:6:125"}]},{"nativeSrc":"14158:47:125","nodeType":"YulVariableDeclaration","src":"14158:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14190:9:125","nodeType":"YulIdentifier","src":"14190:9:125"},{"kind":"number","nativeSrc":"14201:2:125","nodeType":"YulLiteral","src":"14201:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14186:3:125","nodeType":"YulIdentifier","src":"14186:3:125"},"nativeSrc":"14186:18:125","nodeType":"YulFunctionCall","src":"14186:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"14173:12:125","nodeType":"YulIdentifier","src":"14173:12:125"},"nativeSrc":"14173:32:125","nodeType":"YulFunctionCall","src":"14173:32:125"},"variables":[{"name":"value_1","nativeSrc":"14162:7:125","nodeType":"YulTypedName","src":"14162:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"14249:7:125","nodeType":"YulIdentifier","src":"14249:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"14214:34:125","nodeType":"YulIdentifier","src":"14214:34:125"},"nativeSrc":"14214:43:125","nodeType":"YulFunctionCall","src":"14214:43:125"},"nativeSrc":"14214:43:125","nodeType":"YulExpressionStatement","src":"14214:43:125"},{"nativeSrc":"14266:17:125","nodeType":"YulAssignment","src":"14266:17:125","value":{"name":"value_1","nativeSrc":"14276:7:125","nodeType":"YulIdentifier","src":"14276:7:125"},"variableNames":[{"name":"value1","nativeSrc":"14266:6:125","nodeType":"YulIdentifier","src":"14266:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_address","nativeSrc":"13912:377:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13957:9:125","nodeType":"YulTypedName","src":"13957:9:125","type":""},{"name":"dataEnd","nativeSrc":"13968:7:125","nodeType":"YulTypedName","src":"13968:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13980:6:125","nodeType":"YulTypedName","src":"13980:6:125","type":""},{"name":"value1","nativeSrc":"13988:6:125","nodeType":"YulTypedName","src":"13988:6:125","type":""}],"src":"13912:377:125"},{"body":{"nativeSrc":"14393:76:125","nodeType":"YulBlock","src":"14393:76:125","statements":[{"nativeSrc":"14403:26:125","nodeType":"YulAssignment","src":"14403:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14415:9:125","nodeType":"YulIdentifier","src":"14415:9:125"},{"kind":"number","nativeSrc":"14426:2:125","nodeType":"YulLiteral","src":"14426:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14411:3:125","nodeType":"YulIdentifier","src":"14411:3:125"},"nativeSrc":"14411:18:125","nodeType":"YulFunctionCall","src":"14411:18:125"},"variableNames":[{"name":"tail","nativeSrc":"14403:4:125","nodeType":"YulIdentifier","src":"14403:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14445:9:125","nodeType":"YulIdentifier","src":"14445:9:125"},{"name":"value0","nativeSrc":"14456:6:125","nodeType":"YulIdentifier","src":"14456:6:125"}],"functionName":{"name":"mstore","nativeSrc":"14438:6:125","nodeType":"YulIdentifier","src":"14438:6:125"},"nativeSrc":"14438:25:125","nodeType":"YulFunctionCall","src":"14438:25:125"},"nativeSrc":"14438:25:125","nodeType":"YulExpressionStatement","src":"14438:25:125"}]},"name":"abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed","nativeSrc":"14294:175:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14362:9:125","nodeType":"YulTypedName","src":"14362:9:125","type":""},{"name":"value0","nativeSrc":"14373:6:125","nodeType":"YulTypedName","src":"14373:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14384:4:125","nodeType":"YulTypedName","src":"14384:4:125","type":""}],"src":"14294:175:125"},{"body":{"nativeSrc":"14593:537:125","nodeType":"YulBlock","src":"14593:537:125","statements":[{"body":{"nativeSrc":"14640:16:125","nodeType":"YulBlock","src":"14640:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14649:1:125","nodeType":"YulLiteral","src":"14649:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"14652:1:125","nodeType":"YulLiteral","src":"14652:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14642:6:125","nodeType":"YulIdentifier","src":"14642:6:125"},"nativeSrc":"14642:12:125","nodeType":"YulFunctionCall","src":"14642:12:125"},"nativeSrc":"14642:12:125","nodeType":"YulExpressionStatement","src":"14642:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14614:7:125","nodeType":"YulIdentifier","src":"14614:7:125"},{"name":"headStart","nativeSrc":"14623:9:125","nodeType":"YulIdentifier","src":"14623:9:125"}],"functionName":{"name":"sub","nativeSrc":"14610:3:125","nodeType":"YulIdentifier","src":"14610:3:125"},"nativeSrc":"14610:23:125","nodeType":"YulFunctionCall","src":"14610:23:125"},{"kind":"number","nativeSrc":"14635:3:125","nodeType":"YulLiteral","src":"14635:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"14606:3:125","nodeType":"YulIdentifier","src":"14606:3:125"},"nativeSrc":"14606:33:125","nodeType":"YulFunctionCall","src":"14606:33:125"},"nativeSrc":"14603:53:125","nodeType":"YulIf","src":"14603:53:125"},{"nativeSrc":"14665:36:125","nodeType":"YulVariableDeclaration","src":"14665:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"14691:9:125","nodeType":"YulIdentifier","src":"14691:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"14678:12:125","nodeType":"YulIdentifier","src":"14678:12:125"},"nativeSrc":"14678:23:125","nodeType":"YulFunctionCall","src":"14678:23:125"},"variables":[{"name":"value","nativeSrc":"14669:5:125","nodeType":"YulTypedName","src":"14669:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"14745:5:125","nodeType":"YulIdentifier","src":"14745:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"14710:34:125","nodeType":"YulIdentifier","src":"14710:34:125"},"nativeSrc":"14710:41:125","nodeType":"YulFunctionCall","src":"14710:41:125"},"nativeSrc":"14710:41:125","nodeType":"YulExpressionStatement","src":"14710:41:125"},{"nativeSrc":"14760:15:125","nodeType":"YulAssignment","src":"14760:15:125","value":{"name":"value","nativeSrc":"14770:5:125","nodeType":"YulIdentifier","src":"14770:5:125"},"variableNames":[{"name":"value0","nativeSrc":"14760:6:125","nodeType":"YulIdentifier","src":"14760:6:125"}]},{"nativeSrc":"14784:47:125","nodeType":"YulVariableDeclaration","src":"14784:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14816:9:125","nodeType":"YulIdentifier","src":"14816:9:125"},{"kind":"number","nativeSrc":"14827:2:125","nodeType":"YulLiteral","src":"14827:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14812:3:125","nodeType":"YulIdentifier","src":"14812:3:125"},"nativeSrc":"14812:18:125","nodeType":"YulFunctionCall","src":"14812:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"14799:12:125","nodeType":"YulIdentifier","src":"14799:12:125"},"nativeSrc":"14799:32:125","nodeType":"YulFunctionCall","src":"14799:32:125"},"variables":[{"name":"value_1","nativeSrc":"14788:7:125","nodeType":"YulTypedName","src":"14788:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"14864:7:125","nodeType":"YulIdentifier","src":"14864:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"14840:23:125","nodeType":"YulIdentifier","src":"14840:23:125"},"nativeSrc":"14840:32:125","nodeType":"YulFunctionCall","src":"14840:32:125"},"nativeSrc":"14840:32:125","nodeType":"YulExpressionStatement","src":"14840:32:125"},{"nativeSrc":"14881:17:125","nodeType":"YulAssignment","src":"14881:17:125","value":{"name":"value_1","nativeSrc":"14891:7:125","nodeType":"YulIdentifier","src":"14891:7:125"},"variableNames":[{"name":"value1","nativeSrc":"14881:6:125","nodeType":"YulIdentifier","src":"14881:6:125"}]},{"nativeSrc":"14907:47:125","nodeType":"YulVariableDeclaration","src":"14907:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14939:9:125","nodeType":"YulIdentifier","src":"14939:9:125"},{"kind":"number","nativeSrc":"14950:2:125","nodeType":"YulLiteral","src":"14950:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14935:3:125","nodeType":"YulIdentifier","src":"14935:3:125"},"nativeSrc":"14935:18:125","nodeType":"YulFunctionCall","src":"14935:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"14922:12:125","nodeType":"YulIdentifier","src":"14922:12:125"},"nativeSrc":"14922:32:125","nodeType":"YulFunctionCall","src":"14922:32:125"},"variables":[{"name":"value_2","nativeSrc":"14911:7:125","nodeType":"YulTypedName","src":"14911:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"14987:7:125","nodeType":"YulIdentifier","src":"14987:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"14963:23:125","nodeType":"YulIdentifier","src":"14963:23:125"},"nativeSrc":"14963:32:125","nodeType":"YulFunctionCall","src":"14963:32:125"},"nativeSrc":"14963:32:125","nodeType":"YulExpressionStatement","src":"14963:32:125"},{"nativeSrc":"15004:17:125","nodeType":"YulAssignment","src":"15004:17:125","value":{"name":"value_2","nativeSrc":"15014:7:125","nodeType":"YulIdentifier","src":"15014:7:125"},"variableNames":[{"name":"value2","nativeSrc":"15004:6:125","nodeType":"YulIdentifier","src":"15004:6:125"}]},{"nativeSrc":"15030:16:125","nodeType":"YulVariableDeclaration","src":"15030:16:125","value":{"kind":"number","nativeSrc":"15045:1:125","nodeType":"YulLiteral","src":"15045:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"15034:7:125","nodeType":"YulTypedName","src":"15034:7:125","type":""}]},{"nativeSrc":"15055:43:125","nodeType":"YulAssignment","src":"15055:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15083:9:125","nodeType":"YulIdentifier","src":"15083:9:125"},{"kind":"number","nativeSrc":"15094:2:125","nodeType":"YulLiteral","src":"15094:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15079:3:125","nodeType":"YulIdentifier","src":"15079:3:125"},"nativeSrc":"15079:18:125","nodeType":"YulFunctionCall","src":"15079:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"15066:12:125","nodeType":"YulIdentifier","src":"15066:12:125"},"nativeSrc":"15066:32:125","nodeType":"YulFunctionCall","src":"15066:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"15055:7:125","nodeType":"YulIdentifier","src":"15055:7:125"}]},{"nativeSrc":"15107:17:125","nodeType":"YulAssignment","src":"15107:17:125","value":{"name":"value_3","nativeSrc":"15117:7:125","nodeType":"YulIdentifier","src":"15117:7:125"},"variableNames":[{"name":"value3","nativeSrc":"15107:6:125","nodeType":"YulIdentifier","src":"15107:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint32t_uint256","nativeSrc":"14474:656:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14535:9:125","nodeType":"YulTypedName","src":"14535:9:125","type":""},{"name":"dataEnd","nativeSrc":"14546:7:125","nodeType":"YulTypedName","src":"14546:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"14558:6:125","nodeType":"YulTypedName","src":"14558:6:125","type":""},{"name":"value1","nativeSrc":"14566:6:125","nodeType":"YulTypedName","src":"14566:6:125","type":""},{"name":"value2","nativeSrc":"14574:6:125","nodeType":"YulTypedName","src":"14574:6:125","type":""},{"name":"value3","nativeSrc":"14582:6:125","nodeType":"YulTypedName","src":"14582:6:125","type":""}],"src":"14474:656:125"},{"body":{"nativeSrc":"15237:433:125","nodeType":"YulBlock","src":"15237:433:125","statements":[{"body":{"nativeSrc":"15283:16:125","nodeType":"YulBlock","src":"15283:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15292:1:125","nodeType":"YulLiteral","src":"15292:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"15295:1:125","nodeType":"YulLiteral","src":"15295:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15285:6:125","nodeType":"YulIdentifier","src":"15285:6:125"},"nativeSrc":"15285:12:125","nodeType":"YulFunctionCall","src":"15285:12:125"},"nativeSrc":"15285:12:125","nodeType":"YulExpressionStatement","src":"15285:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15258:7:125","nodeType":"YulIdentifier","src":"15258:7:125"},{"name":"headStart","nativeSrc":"15267:9:125","nodeType":"YulIdentifier","src":"15267:9:125"}],"functionName":{"name":"sub","nativeSrc":"15254:3:125","nodeType":"YulIdentifier","src":"15254:3:125"},"nativeSrc":"15254:23:125","nodeType":"YulFunctionCall","src":"15254:23:125"},{"kind":"number","nativeSrc":"15279:2:125","nodeType":"YulLiteral","src":"15279:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"15250:3:125","nodeType":"YulIdentifier","src":"15250:3:125"},"nativeSrc":"15250:32:125","nodeType":"YulFunctionCall","src":"15250:32:125"},"nativeSrc":"15247:52:125","nodeType":"YulIf","src":"15247:52:125"},{"nativeSrc":"15308:36:125","nodeType":"YulVariableDeclaration","src":"15308:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"15334:9:125","nodeType":"YulIdentifier","src":"15334:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"15321:12:125","nodeType":"YulIdentifier","src":"15321:12:125"},"nativeSrc":"15321:23:125","nodeType":"YulFunctionCall","src":"15321:23:125"},"variables":[{"name":"value","nativeSrc":"15312:5:125","nodeType":"YulTypedName","src":"15312:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"15388:5:125","nodeType":"YulIdentifier","src":"15388:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"15353:34:125","nodeType":"YulIdentifier","src":"15353:34:125"},"nativeSrc":"15353:41:125","nodeType":"YulFunctionCall","src":"15353:41:125"},"nativeSrc":"15353:41:125","nodeType":"YulExpressionStatement","src":"15353:41:125"},{"nativeSrc":"15403:15:125","nodeType":"YulAssignment","src":"15403:15:125","value":{"name":"value","nativeSrc":"15413:5:125","nodeType":"YulIdentifier","src":"15413:5:125"},"variableNames":[{"name":"value0","nativeSrc":"15403:6:125","nodeType":"YulIdentifier","src":"15403:6:125"}]},{"nativeSrc":"15427:47:125","nodeType":"YulVariableDeclaration","src":"15427:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15459:9:125","nodeType":"YulIdentifier","src":"15459:9:125"},{"kind":"number","nativeSrc":"15470:2:125","nodeType":"YulLiteral","src":"15470:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15455:3:125","nodeType":"YulIdentifier","src":"15455:3:125"},"nativeSrc":"15455:18:125","nodeType":"YulFunctionCall","src":"15455:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"15442:12:125","nodeType":"YulIdentifier","src":"15442:12:125"},"nativeSrc":"15442:32:125","nodeType":"YulFunctionCall","src":"15442:32:125"},"variables":[{"name":"value_1","nativeSrc":"15431:7:125","nodeType":"YulTypedName","src":"15431:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"15507:7:125","nodeType":"YulIdentifier","src":"15507:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"15483:23:125","nodeType":"YulIdentifier","src":"15483:23:125"},"nativeSrc":"15483:32:125","nodeType":"YulFunctionCall","src":"15483:32:125"},"nativeSrc":"15483:32:125","nodeType":"YulExpressionStatement","src":"15483:32:125"},{"nativeSrc":"15524:17:125","nodeType":"YulAssignment","src":"15524:17:125","value":{"name":"value_1","nativeSrc":"15534:7:125","nodeType":"YulIdentifier","src":"15534:7:125"},"variableNames":[{"name":"value1","nativeSrc":"15524:6:125","nodeType":"YulIdentifier","src":"15524:6:125"}]},{"nativeSrc":"15550:47:125","nodeType":"YulVariableDeclaration","src":"15550:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15582:9:125","nodeType":"YulIdentifier","src":"15582:9:125"},{"kind":"number","nativeSrc":"15593:2:125","nodeType":"YulLiteral","src":"15593:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15578:3:125","nodeType":"YulIdentifier","src":"15578:3:125"},"nativeSrc":"15578:18:125","nodeType":"YulFunctionCall","src":"15578:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"15565:12:125","nodeType":"YulIdentifier","src":"15565:12:125"},"nativeSrc":"15565:32:125","nodeType":"YulFunctionCall","src":"15565:32:125"},"variables":[{"name":"value_2","nativeSrc":"15554:7:125","nodeType":"YulTypedName","src":"15554:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"15630:7:125","nodeType":"YulIdentifier","src":"15630:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"15606:23:125","nodeType":"YulIdentifier","src":"15606:23:125"},"nativeSrc":"15606:32:125","nodeType":"YulFunctionCall","src":"15606:32:125"},"nativeSrc":"15606:32:125","nodeType":"YulExpressionStatement","src":"15606:32:125"},{"nativeSrc":"15647:17:125","nodeType":"YulAssignment","src":"15647:17:125","value":{"name":"value_2","nativeSrc":"15657:7:125","nodeType":"YulIdentifier","src":"15657:7:125"},"variableNames":[{"name":"value2","nativeSrc":"15647:6:125","nodeType":"YulIdentifier","src":"15647:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint32","nativeSrc":"15135:535:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15187:9:125","nodeType":"YulTypedName","src":"15187:9:125","type":""},{"name":"dataEnd","nativeSrc":"15198:7:125","nodeType":"YulTypedName","src":"15198:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15210:6:125","nodeType":"YulTypedName","src":"15210:6:125","type":""},{"name":"value1","nativeSrc":"15218:6:125","nodeType":"YulTypedName","src":"15218:6:125","type":""},{"name":"value2","nativeSrc":"15226:6:125","nodeType":"YulTypedName","src":"15226:6:125","type":""}],"src":"15135:535:125"},{"body":{"nativeSrc":"15794:102:125","nodeType":"YulBlock","src":"15794:102:125","statements":[{"nativeSrc":"15804:26:125","nodeType":"YulAssignment","src":"15804:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"15816:9:125","nodeType":"YulIdentifier","src":"15816:9:125"},{"kind":"number","nativeSrc":"15827:2:125","nodeType":"YulLiteral","src":"15827:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15812:3:125","nodeType":"YulIdentifier","src":"15812:3:125"},"nativeSrc":"15812:18:125","nodeType":"YulFunctionCall","src":"15812:18:125"},"variableNames":[{"name":"tail","nativeSrc":"15804:4:125","nodeType":"YulIdentifier","src":"15804:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15846:9:125","nodeType":"YulIdentifier","src":"15846:9:125"},{"arguments":[{"name":"value0","nativeSrc":"15861:6:125","nodeType":"YulIdentifier","src":"15861:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"15877:3:125","nodeType":"YulLiteral","src":"15877:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"15882:1:125","nodeType":"YulLiteral","src":"15882:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"15873:3:125","nodeType":"YulIdentifier","src":"15873:3:125"},"nativeSrc":"15873:11:125","nodeType":"YulFunctionCall","src":"15873:11:125"},{"kind":"number","nativeSrc":"15886:1:125","nodeType":"YulLiteral","src":"15886:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"15869:3:125","nodeType":"YulIdentifier","src":"15869:3:125"},"nativeSrc":"15869:19:125","nodeType":"YulFunctionCall","src":"15869:19:125"}],"functionName":{"name":"and","nativeSrc":"15857:3:125","nodeType":"YulIdentifier","src":"15857:3:125"},"nativeSrc":"15857:32:125","nodeType":"YulFunctionCall","src":"15857:32:125"}],"functionName":{"name":"mstore","nativeSrc":"15839:6:125","nodeType":"YulIdentifier","src":"15839:6:125"},"nativeSrc":"15839:51:125","nodeType":"YulFunctionCall","src":"15839:51:125"},"nativeSrc":"15839:51:125","nodeType":"YulExpressionStatement","src":"15839:51:125"}]},"name":"abi_encode_tuple_t_contract$_IERC4626_$22463__to_t_address__fromStack_reversed","nativeSrc":"15675:221:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15763:9:125","nodeType":"YulTypedName","src":"15763:9:125","type":""},{"name":"value0","nativeSrc":"15774:6:125","nodeType":"YulTypedName","src":"15774:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15785:4:125","nodeType":"YulTypedName","src":"15785:4:125","type":""}],"src":"15675:221:125"},{"body":{"nativeSrc":"16005:424:125","nodeType":"YulBlock","src":"16005:424:125","statements":[{"body":{"nativeSrc":"16051:16:125","nodeType":"YulBlock","src":"16051:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16060:1:125","nodeType":"YulLiteral","src":"16060:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"16063:1:125","nodeType":"YulLiteral","src":"16063:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16053:6:125","nodeType":"YulIdentifier","src":"16053:6:125"},"nativeSrc":"16053:12:125","nodeType":"YulFunctionCall","src":"16053:12:125"},"nativeSrc":"16053:12:125","nodeType":"YulExpressionStatement","src":"16053:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"16026:7:125","nodeType":"YulIdentifier","src":"16026:7:125"},{"name":"headStart","nativeSrc":"16035:9:125","nodeType":"YulIdentifier","src":"16035:9:125"}],"functionName":{"name":"sub","nativeSrc":"16022:3:125","nodeType":"YulIdentifier","src":"16022:3:125"},"nativeSrc":"16022:23:125","nodeType":"YulFunctionCall","src":"16022:23:125"},{"kind":"number","nativeSrc":"16047:2:125","nodeType":"YulLiteral","src":"16047:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"16018:3:125","nodeType":"YulIdentifier","src":"16018:3:125"},"nativeSrc":"16018:32:125","nodeType":"YulFunctionCall","src":"16018:32:125"},"nativeSrc":"16015:52:125","nodeType":"YulIf","src":"16015:52:125"},{"nativeSrc":"16076:14:125","nodeType":"YulVariableDeclaration","src":"16076:14:125","value":{"kind":"number","nativeSrc":"16089:1:125","nodeType":"YulLiteral","src":"16089:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"16080:5:125","nodeType":"YulTypedName","src":"16080:5:125","type":""}]},{"nativeSrc":"16099:32:125","nodeType":"YulAssignment","src":"16099:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"16121:9:125","nodeType":"YulIdentifier","src":"16121:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"16108:12:125","nodeType":"YulIdentifier","src":"16108:12:125"},"nativeSrc":"16108:23:125","nodeType":"YulFunctionCall","src":"16108:23:125"},"variableNames":[{"name":"value","nativeSrc":"16099:5:125","nodeType":"YulIdentifier","src":"16099:5:125"}]},{"nativeSrc":"16140:15:125","nodeType":"YulAssignment","src":"16140:15:125","value":{"name":"value","nativeSrc":"16150:5:125","nodeType":"YulIdentifier","src":"16150:5:125"},"variableNames":[{"name":"value0","nativeSrc":"16140:6:125","nodeType":"YulIdentifier","src":"16140:6:125"}]},{"nativeSrc":"16164:47:125","nodeType":"YulVariableDeclaration","src":"16164:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16196:9:125","nodeType":"YulIdentifier","src":"16196:9:125"},{"kind":"number","nativeSrc":"16207:2:125","nodeType":"YulLiteral","src":"16207:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16192:3:125","nodeType":"YulIdentifier","src":"16192:3:125"},"nativeSrc":"16192:18:125","nodeType":"YulFunctionCall","src":"16192:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"16179:12:125","nodeType":"YulIdentifier","src":"16179:12:125"},"nativeSrc":"16179:32:125","nodeType":"YulFunctionCall","src":"16179:32:125"},"variables":[{"name":"value_1","nativeSrc":"16168:7:125","nodeType":"YulTypedName","src":"16168:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"16255:7:125","nodeType":"YulIdentifier","src":"16255:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"16220:34:125","nodeType":"YulIdentifier","src":"16220:34:125"},"nativeSrc":"16220:43:125","nodeType":"YulFunctionCall","src":"16220:43:125"},"nativeSrc":"16220:43:125","nodeType":"YulExpressionStatement","src":"16220:43:125"},{"nativeSrc":"16272:17:125","nodeType":"YulAssignment","src":"16272:17:125","value":{"name":"value_1","nativeSrc":"16282:7:125","nodeType":"YulIdentifier","src":"16282:7:125"},"variableNames":[{"name":"value1","nativeSrc":"16272:6:125","nodeType":"YulIdentifier","src":"16272:6:125"}]},{"nativeSrc":"16298:47:125","nodeType":"YulVariableDeclaration","src":"16298:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16330:9:125","nodeType":"YulIdentifier","src":"16330:9:125"},{"kind":"number","nativeSrc":"16341:2:125","nodeType":"YulLiteral","src":"16341:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16326:3:125","nodeType":"YulIdentifier","src":"16326:3:125"},"nativeSrc":"16326:18:125","nodeType":"YulFunctionCall","src":"16326:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"16313:12:125","nodeType":"YulIdentifier","src":"16313:12:125"},"nativeSrc":"16313:32:125","nodeType":"YulFunctionCall","src":"16313:32:125"},"variables":[{"name":"value_2","nativeSrc":"16302:7:125","nodeType":"YulTypedName","src":"16302:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"16389:7:125","nodeType":"YulIdentifier","src":"16389:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"16354:34:125","nodeType":"YulIdentifier","src":"16354:34:125"},"nativeSrc":"16354:43:125","nodeType":"YulFunctionCall","src":"16354:43:125"},"nativeSrc":"16354:43:125","nodeType":"YulExpressionStatement","src":"16354:43:125"},{"nativeSrc":"16406:17:125","nodeType":"YulAssignment","src":"16406:17:125","value":{"name":"value_2","nativeSrc":"16416:7:125","nodeType":"YulIdentifier","src":"16416:7:125"},"variableNames":[{"name":"value2","nativeSrc":"16406:6:125","nodeType":"YulIdentifier","src":"16406:6:125"}]}]},"name":"abi_decode_tuple_t_uint256t_addresst_address","nativeSrc":"15901:528:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15955:9:125","nodeType":"YulTypedName","src":"15955:9:125","type":""},{"name":"dataEnd","nativeSrc":"15966:7:125","nodeType":"YulTypedName","src":"15966:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15978:6:125","nodeType":"YulTypedName","src":"15978:6:125","type":""},{"name":"value1","nativeSrc":"15986:6:125","nodeType":"YulTypedName","src":"15986:6:125","type":""},{"name":"value2","nativeSrc":"15994:6:125","nodeType":"YulTypedName","src":"15994:6:125","type":""}],"src":"15901:528:125"},{"body":{"nativeSrc":"16538:393:125","nodeType":"YulBlock","src":"16538:393:125","statements":[{"body":{"nativeSrc":"16584:16:125","nodeType":"YulBlock","src":"16584:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16593:1:125","nodeType":"YulLiteral","src":"16593:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"16596:1:125","nodeType":"YulLiteral","src":"16596:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16586:6:125","nodeType":"YulIdentifier","src":"16586:6:125"},"nativeSrc":"16586:12:125","nodeType":"YulFunctionCall","src":"16586:12:125"},"nativeSrc":"16586:12:125","nodeType":"YulExpressionStatement","src":"16586:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"16559:7:125","nodeType":"YulIdentifier","src":"16559:7:125"},{"name":"headStart","nativeSrc":"16568:9:125","nodeType":"YulIdentifier","src":"16568:9:125"}],"functionName":{"name":"sub","nativeSrc":"16555:3:125","nodeType":"YulIdentifier","src":"16555:3:125"},"nativeSrc":"16555:23:125","nodeType":"YulFunctionCall","src":"16555:23:125"},{"kind":"number","nativeSrc":"16580:2:125","nodeType":"YulLiteral","src":"16580:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"16551:3:125","nodeType":"YulIdentifier","src":"16551:3:125"},"nativeSrc":"16551:32:125","nodeType":"YulFunctionCall","src":"16551:32:125"},"nativeSrc":"16548:52:125","nodeType":"YulIf","src":"16548:52:125"},{"nativeSrc":"16609:36:125","nodeType":"YulVariableDeclaration","src":"16609:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"16635:9:125","nodeType":"YulIdentifier","src":"16635:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"16622:12:125","nodeType":"YulIdentifier","src":"16622:12:125"},"nativeSrc":"16622:23:125","nodeType":"YulFunctionCall","src":"16622:23:125"},"variables":[{"name":"value","nativeSrc":"16613:5:125","nodeType":"YulTypedName","src":"16613:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"16689:5:125","nodeType":"YulIdentifier","src":"16689:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"16654:34:125","nodeType":"YulIdentifier","src":"16654:34:125"},"nativeSrc":"16654:41:125","nodeType":"YulFunctionCall","src":"16654:41:125"},"nativeSrc":"16654:41:125","nodeType":"YulExpressionStatement","src":"16654:41:125"},{"nativeSrc":"16704:15:125","nodeType":"YulAssignment","src":"16704:15:125","value":{"name":"value","nativeSrc":"16714:5:125","nodeType":"YulIdentifier","src":"16714:5:125"},"variableNames":[{"name":"value0","nativeSrc":"16704:6:125","nodeType":"YulIdentifier","src":"16704:6:125"}]},{"nativeSrc":"16728:16:125","nodeType":"YulVariableDeclaration","src":"16728:16:125","value":{"kind":"number","nativeSrc":"16743:1:125","nodeType":"YulLiteral","src":"16743:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"16732:7:125","nodeType":"YulTypedName","src":"16732:7:125","type":""}]},{"nativeSrc":"16753:43:125","nodeType":"YulAssignment","src":"16753:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16781:9:125","nodeType":"YulIdentifier","src":"16781:9:125"},{"kind":"number","nativeSrc":"16792:2:125","nodeType":"YulLiteral","src":"16792:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16777:3:125","nodeType":"YulIdentifier","src":"16777:3:125"},"nativeSrc":"16777:18:125","nodeType":"YulFunctionCall","src":"16777:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"16764:12:125","nodeType":"YulIdentifier","src":"16764:12:125"},"nativeSrc":"16764:32:125","nodeType":"YulFunctionCall","src":"16764:32:125"},"variableNames":[{"name":"value_1","nativeSrc":"16753:7:125","nodeType":"YulIdentifier","src":"16753:7:125"}]},{"nativeSrc":"16805:17:125","nodeType":"YulAssignment","src":"16805:17:125","value":{"name":"value_1","nativeSrc":"16815:7:125","nodeType":"YulIdentifier","src":"16815:7:125"},"variableNames":[{"name":"value1","nativeSrc":"16805:6:125","nodeType":"YulIdentifier","src":"16805:6:125"}]},{"nativeSrc":"16831:16:125","nodeType":"YulVariableDeclaration","src":"16831:16:125","value":{"kind":"number","nativeSrc":"16846:1:125","nodeType":"YulLiteral","src":"16846:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"16835:7:125","nodeType":"YulTypedName","src":"16835:7:125","type":""}]},{"nativeSrc":"16856:43:125","nodeType":"YulAssignment","src":"16856:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16884:9:125","nodeType":"YulIdentifier","src":"16884:9:125"},{"kind":"number","nativeSrc":"16895:2:125","nodeType":"YulLiteral","src":"16895:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16880:3:125","nodeType":"YulIdentifier","src":"16880:3:125"},"nativeSrc":"16880:18:125","nodeType":"YulFunctionCall","src":"16880:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"16867:12:125","nodeType":"YulIdentifier","src":"16867:12:125"},"nativeSrc":"16867:32:125","nodeType":"YulFunctionCall","src":"16867:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"16856:7:125","nodeType":"YulIdentifier","src":"16856:7:125"}]},{"nativeSrc":"16908:17:125","nodeType":"YulAssignment","src":"16908:17:125","value":{"name":"value_2","nativeSrc":"16918:7:125","nodeType":"YulIdentifier","src":"16918:7:125"},"variableNames":[{"name":"value2","nativeSrc":"16908:6:125","nodeType":"YulIdentifier","src":"16908:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256","nativeSrc":"16434:497:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16488:9:125","nodeType":"YulTypedName","src":"16488:9:125","type":""},{"name":"dataEnd","nativeSrc":"16499:7:125","nodeType":"YulTypedName","src":"16499:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"16511:6:125","nodeType":"YulTypedName","src":"16511:6:125","type":""},{"name":"value1","nativeSrc":"16519:6:125","nodeType":"YulTypedName","src":"16519:6:125","type":""},{"name":"value2","nativeSrc":"16527:6:125","nodeType":"YulTypedName","src":"16527:6:125","type":""}],"src":"16434:497:125"},{"body":{"nativeSrc":"17056:517:125","nodeType":"YulBlock","src":"17056:517:125","statements":[{"body":{"nativeSrc":"17103:16:125","nodeType":"YulBlock","src":"17103:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17112:1:125","nodeType":"YulLiteral","src":"17112:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"17115:1:125","nodeType":"YulLiteral","src":"17115:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17105:6:125","nodeType":"YulIdentifier","src":"17105:6:125"},"nativeSrc":"17105:12:125","nodeType":"YulFunctionCall","src":"17105:12:125"},"nativeSrc":"17105:12:125","nodeType":"YulExpressionStatement","src":"17105:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17077:7:125","nodeType":"YulIdentifier","src":"17077:7:125"},{"name":"headStart","nativeSrc":"17086:9:125","nodeType":"YulIdentifier","src":"17086:9:125"}],"functionName":{"name":"sub","nativeSrc":"17073:3:125","nodeType":"YulIdentifier","src":"17073:3:125"},"nativeSrc":"17073:23:125","nodeType":"YulFunctionCall","src":"17073:23:125"},{"kind":"number","nativeSrc":"17098:3:125","nodeType":"YulLiteral","src":"17098:3:125","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"17069:3:125","nodeType":"YulIdentifier","src":"17069:3:125"},"nativeSrc":"17069:33:125","nodeType":"YulFunctionCall","src":"17069:33:125"},"nativeSrc":"17066:53:125","nodeType":"YulIf","src":"17066:53:125"},{"nativeSrc":"17128:36:125","nodeType":"YulVariableDeclaration","src":"17128:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17154:9:125","nodeType":"YulIdentifier","src":"17154:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"17141:12:125","nodeType":"YulIdentifier","src":"17141:12:125"},"nativeSrc":"17141:23:125","nodeType":"YulFunctionCall","src":"17141:23:125"},"variables":[{"name":"value","nativeSrc":"17132:5:125","nodeType":"YulTypedName","src":"17132:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"17208:5:125","nodeType":"YulIdentifier","src":"17208:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"17173:34:125","nodeType":"YulIdentifier","src":"17173:34:125"},"nativeSrc":"17173:41:125","nodeType":"YulFunctionCall","src":"17173:41:125"},"nativeSrc":"17173:41:125","nodeType":"YulExpressionStatement","src":"17173:41:125"},{"nativeSrc":"17223:15:125","nodeType":"YulAssignment","src":"17223:15:125","value":{"name":"value","nativeSrc":"17233:5:125","nodeType":"YulIdentifier","src":"17233:5:125"},"variableNames":[{"name":"value0","nativeSrc":"17223:6:125","nodeType":"YulIdentifier","src":"17223:6:125"}]},{"nativeSrc":"17247:47:125","nodeType":"YulVariableDeclaration","src":"17247:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17279:9:125","nodeType":"YulIdentifier","src":"17279:9:125"},{"kind":"number","nativeSrc":"17290:2:125","nodeType":"YulLiteral","src":"17290:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17275:3:125","nodeType":"YulIdentifier","src":"17275:3:125"},"nativeSrc":"17275:18:125","nodeType":"YulFunctionCall","src":"17275:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"17262:12:125","nodeType":"YulIdentifier","src":"17262:12:125"},"nativeSrc":"17262:32:125","nodeType":"YulFunctionCall","src":"17262:32:125"},"variables":[{"name":"value_1","nativeSrc":"17251:7:125","nodeType":"YulTypedName","src":"17251:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"17327:7:125","nodeType":"YulIdentifier","src":"17327:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"17303:23:125","nodeType":"YulIdentifier","src":"17303:23:125"},"nativeSrc":"17303:32:125","nodeType":"YulFunctionCall","src":"17303:32:125"},"nativeSrc":"17303:32:125","nodeType":"YulExpressionStatement","src":"17303:32:125"},{"nativeSrc":"17344:17:125","nodeType":"YulAssignment","src":"17344:17:125","value":{"name":"value_1","nativeSrc":"17354:7:125","nodeType":"YulIdentifier","src":"17354:7:125"},"variableNames":[{"name":"value1","nativeSrc":"17344:6:125","nodeType":"YulIdentifier","src":"17344:6:125"}]},{"nativeSrc":"17370:16:125","nodeType":"YulVariableDeclaration","src":"17370:16:125","value":{"kind":"number","nativeSrc":"17385:1:125","nodeType":"YulLiteral","src":"17385:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"17374:7:125","nodeType":"YulTypedName","src":"17374:7:125","type":""}]},{"nativeSrc":"17395:43:125","nodeType":"YulAssignment","src":"17395:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17423:9:125","nodeType":"YulIdentifier","src":"17423:9:125"},{"kind":"number","nativeSrc":"17434:2:125","nodeType":"YulLiteral","src":"17434:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17419:3:125","nodeType":"YulIdentifier","src":"17419:3:125"},"nativeSrc":"17419:18:125","nodeType":"YulFunctionCall","src":"17419:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"17406:12:125","nodeType":"YulIdentifier","src":"17406:12:125"},"nativeSrc":"17406:32:125","nodeType":"YulFunctionCall","src":"17406:32:125"},"variableNames":[{"name":"value_2","nativeSrc":"17395:7:125","nodeType":"YulIdentifier","src":"17395:7:125"}]},{"nativeSrc":"17447:17:125","nodeType":"YulAssignment","src":"17447:17:125","value":{"name":"value_2","nativeSrc":"17457:7:125","nodeType":"YulIdentifier","src":"17457:7:125"},"variableNames":[{"name":"value2","nativeSrc":"17447:6:125","nodeType":"YulIdentifier","src":"17447:6:125"}]},{"nativeSrc":"17473:16:125","nodeType":"YulVariableDeclaration","src":"17473:16:125","value":{"kind":"number","nativeSrc":"17488:1:125","nodeType":"YulLiteral","src":"17488:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"17477:7:125","nodeType":"YulTypedName","src":"17477:7:125","type":""}]},{"nativeSrc":"17498:43:125","nodeType":"YulAssignment","src":"17498:43:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17526:9:125","nodeType":"YulIdentifier","src":"17526:9:125"},{"kind":"number","nativeSrc":"17537:2:125","nodeType":"YulLiteral","src":"17537:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"17522:3:125","nodeType":"YulIdentifier","src":"17522:3:125"},"nativeSrc":"17522:18:125","nodeType":"YulFunctionCall","src":"17522:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"17509:12:125","nodeType":"YulIdentifier","src":"17509:12:125"},"nativeSrc":"17509:32:125","nodeType":"YulFunctionCall","src":"17509:32:125"},"variableNames":[{"name":"value_3","nativeSrc":"17498:7:125","nodeType":"YulIdentifier","src":"17498:7:125"}]},{"nativeSrc":"17550:17:125","nodeType":"YulAssignment","src":"17550:17:125","value":{"name":"value_3","nativeSrc":"17560:7:125","nodeType":"YulIdentifier","src":"17560:7:125"},"variableNames":[{"name":"value3","nativeSrc":"17550:6:125","nodeType":"YulIdentifier","src":"17550:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_uint32t_uint256t_uint256","nativeSrc":"16936:637:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16998:9:125","nodeType":"YulTypedName","src":"16998:9:125","type":""},{"name":"dataEnd","nativeSrc":"17009:7:125","nodeType":"YulTypedName","src":"17009:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17021:6:125","nodeType":"YulTypedName","src":"17021:6:125","type":""},{"name":"value1","nativeSrc":"17029:6:125","nodeType":"YulTypedName","src":"17029:6:125","type":""},{"name":"value2","nativeSrc":"17037:6:125","nodeType":"YulTypedName","src":"17037:6:125","type":""},{"name":"value3","nativeSrc":"17045:6:125","nodeType":"YulTypedName","src":"17045:6:125","type":""}],"src":"16936:637:125"},{"body":{"nativeSrc":"17664:243:125","nodeType":"YulBlock","src":"17664:243:125","statements":[{"body":{"nativeSrc":"17710:16:125","nodeType":"YulBlock","src":"17710:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17719:1:125","nodeType":"YulLiteral","src":"17719:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"17722:1:125","nodeType":"YulLiteral","src":"17722:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17712:6:125","nodeType":"YulIdentifier","src":"17712:6:125"},"nativeSrc":"17712:12:125","nodeType":"YulFunctionCall","src":"17712:12:125"},"nativeSrc":"17712:12:125","nodeType":"YulExpressionStatement","src":"17712:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17685:7:125","nodeType":"YulIdentifier","src":"17685:7:125"},{"name":"headStart","nativeSrc":"17694:9:125","nodeType":"YulIdentifier","src":"17694:9:125"}],"functionName":{"name":"sub","nativeSrc":"17681:3:125","nodeType":"YulIdentifier","src":"17681:3:125"},"nativeSrc":"17681:23:125","nodeType":"YulFunctionCall","src":"17681:23:125"},{"kind":"number","nativeSrc":"17706:2:125","nodeType":"YulLiteral","src":"17706:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"17677:3:125","nodeType":"YulIdentifier","src":"17677:3:125"},"nativeSrc":"17677:32:125","nodeType":"YulFunctionCall","src":"17677:32:125"},"nativeSrc":"17674:52:125","nodeType":"YulIf","src":"17674:52:125"},{"nativeSrc":"17735:36:125","nodeType":"YulVariableDeclaration","src":"17735:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"17761:9:125","nodeType":"YulIdentifier","src":"17761:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"17748:12:125","nodeType":"YulIdentifier","src":"17748:12:125"},"nativeSrc":"17748:23:125","nodeType":"YulFunctionCall","src":"17748:23:125"},"variables":[{"name":"value","nativeSrc":"17739:5:125","nodeType":"YulTypedName","src":"17739:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"17815:5:125","nodeType":"YulIdentifier","src":"17815:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"17780:34:125","nodeType":"YulIdentifier","src":"17780:34:125"},"nativeSrc":"17780:41:125","nodeType":"YulFunctionCall","src":"17780:41:125"},"nativeSrc":"17780:41:125","nodeType":"YulExpressionStatement","src":"17780:41:125"},{"nativeSrc":"17830:15:125","nodeType":"YulAssignment","src":"17830:15:125","value":{"name":"value","nativeSrc":"17840:5:125","nodeType":"YulIdentifier","src":"17840:5:125"},"variableNames":[{"name":"value0","nativeSrc":"17830:6:125","nodeType":"YulIdentifier","src":"17830:6:125"}]},{"nativeSrc":"17854:47:125","nodeType":"YulAssignment","src":"17854:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17886:9:125","nodeType":"YulIdentifier","src":"17886:9:125"},{"kind":"number","nativeSrc":"17897:2:125","nodeType":"YulLiteral","src":"17897:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17882:3:125","nodeType":"YulIdentifier","src":"17882:3:125"},"nativeSrc":"17882:18:125","nodeType":"YulFunctionCall","src":"17882:18:125"}],"functionName":{"name":"abi_decode_bytes4","nativeSrc":"17864:17:125","nodeType":"YulIdentifier","src":"17864:17:125"},"nativeSrc":"17864:37:125","nodeType":"YulFunctionCall","src":"17864:37:125"},"variableNames":[{"name":"value1","nativeSrc":"17854:6:125","nodeType":"YulIdentifier","src":"17854:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes4","nativeSrc":"17578:329:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17622:9:125","nodeType":"YulTypedName","src":"17622:9:125","type":""},{"name":"dataEnd","nativeSrc":"17633:7:125","nodeType":"YulTypedName","src":"17633:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"17645:6:125","nodeType":"YulTypedName","src":"17645:6:125","type":""},{"name":"value1","nativeSrc":"17653:6:125","nodeType":"YulTypedName","src":"17653:6:125","type":""}],"src":"17578:329:125"},{"body":{"nativeSrc":"18035:582:125","nodeType":"YulBlock","src":"18035:582:125","statements":[{"body":{"nativeSrc":"18081:16:125","nodeType":"YulBlock","src":"18081:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18090:1:125","nodeType":"YulLiteral","src":"18090:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"18093:1:125","nodeType":"YulLiteral","src":"18093:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18083:6:125","nodeType":"YulIdentifier","src":"18083:6:125"},"nativeSrc":"18083:12:125","nodeType":"YulFunctionCall","src":"18083:12:125"},"nativeSrc":"18083:12:125","nodeType":"YulExpressionStatement","src":"18083:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18056:7:125","nodeType":"YulIdentifier","src":"18056:7:125"},{"name":"headStart","nativeSrc":"18065:9:125","nodeType":"YulIdentifier","src":"18065:9:125"}],"functionName":{"name":"sub","nativeSrc":"18052:3:125","nodeType":"YulIdentifier","src":"18052:3:125"},"nativeSrc":"18052:23:125","nodeType":"YulFunctionCall","src":"18052:23:125"},{"kind":"number","nativeSrc":"18077:2:125","nodeType":"YulLiteral","src":"18077:2:125","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"18048:3:125","nodeType":"YulIdentifier","src":"18048:3:125"},"nativeSrc":"18048:32:125","nodeType":"YulFunctionCall","src":"18048:32:125"},"nativeSrc":"18045:52:125","nodeType":"YulIf","src":"18045:52:125"},{"nativeSrc":"18106:36:125","nodeType":"YulVariableDeclaration","src":"18106:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18132:9:125","nodeType":"YulIdentifier","src":"18132:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"18119:12:125","nodeType":"YulIdentifier","src":"18119:12:125"},"nativeSrc":"18119:23:125","nodeType":"YulFunctionCall","src":"18119:23:125"},"variables":[{"name":"value","nativeSrc":"18110:5:125","nodeType":"YulTypedName","src":"18110:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"18186:5:125","nodeType":"YulIdentifier","src":"18186:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"18151:34:125","nodeType":"YulIdentifier","src":"18151:34:125"},"nativeSrc":"18151:41:125","nodeType":"YulFunctionCall","src":"18151:41:125"},"nativeSrc":"18151:41:125","nodeType":"YulExpressionStatement","src":"18151:41:125"},{"nativeSrc":"18201:15:125","nodeType":"YulAssignment","src":"18201:15:125","value":{"name":"value","nativeSrc":"18211:5:125","nodeType":"YulIdentifier","src":"18211:5:125"},"variableNames":[{"name":"value0","nativeSrc":"18201:6:125","nodeType":"YulIdentifier","src":"18201:6:125"}]},{"nativeSrc":"18225:46:125","nodeType":"YulVariableDeclaration","src":"18225:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18256:9:125","nodeType":"YulIdentifier","src":"18256:9:125"},{"kind":"number","nativeSrc":"18267:2:125","nodeType":"YulLiteral","src":"18267:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18252:3:125","nodeType":"YulIdentifier","src":"18252:3:125"},"nativeSrc":"18252:18:125","nodeType":"YulFunctionCall","src":"18252:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"18239:12:125","nodeType":"YulIdentifier","src":"18239:12:125"},"nativeSrc":"18239:32:125","nodeType":"YulFunctionCall","src":"18239:32:125"},"variables":[{"name":"offset","nativeSrc":"18229:6:125","nodeType":"YulTypedName","src":"18229:6:125","type":""}]},{"body":{"nativeSrc":"18314:16:125","nodeType":"YulBlock","src":"18314:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18323:1:125","nodeType":"YulLiteral","src":"18323:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"18326:1:125","nodeType":"YulLiteral","src":"18326:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18316:6:125","nodeType":"YulIdentifier","src":"18316:6:125"},"nativeSrc":"18316:12:125","nodeType":"YulFunctionCall","src":"18316:12:125"},"nativeSrc":"18316:12:125","nodeType":"YulExpressionStatement","src":"18316:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"18286:6:125","nodeType":"YulIdentifier","src":"18286:6:125"},{"kind":"number","nativeSrc":"18294:18:125","nodeType":"YulLiteral","src":"18294:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"18283:2:125","nodeType":"YulIdentifier","src":"18283:2:125"},"nativeSrc":"18283:30:125","nodeType":"YulFunctionCall","src":"18283:30:125"},"nativeSrc":"18280:50:125","nodeType":"YulIf","src":"18280:50:125"},{"nativeSrc":"18339:84:125","nodeType":"YulVariableDeclaration","src":"18339:84:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18395:9:125","nodeType":"YulIdentifier","src":"18395:9:125"},{"name":"offset","nativeSrc":"18406:6:125","nodeType":"YulIdentifier","src":"18406:6:125"}],"functionName":{"name":"add","nativeSrc":"18391:3:125","nodeType":"YulIdentifier","src":"18391:3:125"},"nativeSrc":"18391:22:125","nodeType":"YulFunctionCall","src":"18391:22:125"},{"name":"dataEnd","nativeSrc":"18415:7:125","nodeType":"YulIdentifier","src":"18415:7:125"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"18365:25:125","nodeType":"YulIdentifier","src":"18365:25:125"},"nativeSrc":"18365:58:125","nodeType":"YulFunctionCall","src":"18365:58:125"},"variables":[{"name":"value1_1","nativeSrc":"18343:8:125","nodeType":"YulTypedName","src":"18343:8:125","type":""},{"name":"value2_1","nativeSrc":"18353:8:125","nodeType":"YulTypedName","src":"18353:8:125","type":""}]},{"nativeSrc":"18432:18:125","nodeType":"YulAssignment","src":"18432:18:125","value":{"name":"value1_1","nativeSrc":"18442:8:125","nodeType":"YulIdentifier","src":"18442:8:125"},"variableNames":[{"name":"value1","nativeSrc":"18432:6:125","nodeType":"YulIdentifier","src":"18432:6:125"}]},{"nativeSrc":"18459:18:125","nodeType":"YulAssignment","src":"18459:18:125","value":{"name":"value2_1","nativeSrc":"18469:8:125","nodeType":"YulIdentifier","src":"18469:8:125"},"variableNames":[{"name":"value2","nativeSrc":"18459:6:125","nodeType":"YulIdentifier","src":"18459:6:125"}]},{"nativeSrc":"18486:47:125","nodeType":"YulVariableDeclaration","src":"18486:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18518:9:125","nodeType":"YulIdentifier","src":"18518:9:125"},{"kind":"number","nativeSrc":"18529:2:125","nodeType":"YulLiteral","src":"18529:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18514:3:125","nodeType":"YulIdentifier","src":"18514:3:125"},"nativeSrc":"18514:18:125","nodeType":"YulFunctionCall","src":"18514:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"18501:12:125","nodeType":"YulIdentifier","src":"18501:12:125"},"nativeSrc":"18501:32:125","nodeType":"YulFunctionCall","src":"18501:32:125"},"variables":[{"name":"value_1","nativeSrc":"18490:7:125","nodeType":"YulTypedName","src":"18490:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"18577:7:125","nodeType":"YulIdentifier","src":"18577:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"18542:34:125","nodeType":"YulIdentifier","src":"18542:34:125"},"nativeSrc":"18542:43:125","nodeType":"YulFunctionCall","src":"18542:43:125"},"nativeSrc":"18542:43:125","nodeType":"YulExpressionStatement","src":"18542:43:125"},{"nativeSrc":"18594:17:125","nodeType":"YulAssignment","src":"18594:17:125","value":{"name":"value_1","nativeSrc":"18604:7:125","nodeType":"YulIdentifier","src":"18604:7:125"},"variableNames":[{"name":"value3","nativeSrc":"18594:6:125","nodeType":"YulIdentifier","src":"18594:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_bytes_calldata_ptrt_address","nativeSrc":"17912:705:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17977:9:125","nodeType":"YulTypedName","src":"17977:9:125","type":""},{"name":"dataEnd","nativeSrc":"17988:7:125","nodeType":"YulTypedName","src":"17988:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18000:6:125","nodeType":"YulTypedName","src":"18000:6:125","type":""},{"name":"value1","nativeSrc":"18008:6:125","nodeType":"YulTypedName","src":"18008:6:125","type":""},{"name":"value2","nativeSrc":"18016:6:125","nodeType":"YulTypedName","src":"18016:6:125","type":""},{"name":"value3","nativeSrc":"18024:6:125","nodeType":"YulTypedName","src":"18024:6:125","type":""}],"src":"17912:705:125"},{"body":{"nativeSrc":"18665:53:125","nodeType":"YulBlock","src":"18665:53:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"18682:3:125","nodeType":"YulIdentifier","src":"18682:3:125"},{"arguments":[{"name":"value","nativeSrc":"18691:5:125","nodeType":"YulIdentifier","src":"18691:5:125"},{"kind":"number","nativeSrc":"18698:12:125","nodeType":"YulLiteral","src":"18698:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"18687:3:125","nodeType":"YulIdentifier","src":"18687:3:125"},"nativeSrc":"18687:24:125","nodeType":"YulFunctionCall","src":"18687:24:125"}],"functionName":{"name":"mstore","nativeSrc":"18675:6:125","nodeType":"YulIdentifier","src":"18675:6:125"},"nativeSrc":"18675:37:125","nodeType":"YulFunctionCall","src":"18675:37:125"},"nativeSrc":"18675:37:125","nodeType":"YulExpressionStatement","src":"18675:37:125"}]},"name":"abi_encode_uint40","nativeSrc":"18622:96:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"18649:5:125","nodeType":"YulTypedName","src":"18649:5:125","type":""},{"name":"pos","nativeSrc":"18656:3:125","nodeType":"YulTypedName","src":"18656:3:125","type":""}],"src":"18622:96:125"},{"body":{"nativeSrc":"18880:901:125","nodeType":"YulBlock","src":"18880:901:125","statements":[{"nativeSrc":"18890:27:125","nodeType":"YulAssignment","src":"18890:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"18902:9:125","nodeType":"YulIdentifier","src":"18902:9:125"},{"kind":"number","nativeSrc":"18913:3:125","nodeType":"YulLiteral","src":"18913:3:125","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"18898:3:125","nodeType":"YulIdentifier","src":"18898:3:125"},"nativeSrc":"18898:19:125","nodeType":"YulFunctionCall","src":"18898:19:125"},"variableNames":[{"name":"tail","nativeSrc":"18890:4:125","nodeType":"YulIdentifier","src":"18890:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18933:9:125","nodeType":"YulIdentifier","src":"18933:9:125"},{"arguments":[{"name":"value0","nativeSrc":"18950:6:125","nodeType":"YulIdentifier","src":"18950:6:125"}],"functionName":{"name":"mload","nativeSrc":"18944:5:125","nodeType":"YulIdentifier","src":"18944:5:125"},"nativeSrc":"18944:13:125","nodeType":"YulFunctionCall","src":"18944:13:125"}],"functionName":{"name":"mstore","nativeSrc":"18926:6:125","nodeType":"YulIdentifier","src":"18926:6:125"},"nativeSrc":"18926:32:125","nodeType":"YulFunctionCall","src":"18926:32:125"},"nativeSrc":"18926:32:125","nodeType":"YulExpressionStatement","src":"18926:32:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18978:9:125","nodeType":"YulIdentifier","src":"18978:9:125"},{"kind":"number","nativeSrc":"18989:4:125","nodeType":"YulLiteral","src":"18989:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"18974:3:125","nodeType":"YulIdentifier","src":"18974:3:125"},"nativeSrc":"18974:20:125","nodeType":"YulFunctionCall","src":"18974:20:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"19006:6:125","nodeType":"YulIdentifier","src":"19006:6:125"},{"kind":"number","nativeSrc":"19014:4:125","nodeType":"YulLiteral","src":"19014:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"19002:3:125","nodeType":"YulIdentifier","src":"19002:3:125"},"nativeSrc":"19002:17:125","nodeType":"YulFunctionCall","src":"19002:17:125"}],"functionName":{"name":"mload","nativeSrc":"18996:5:125","nodeType":"YulIdentifier","src":"18996:5:125"},"nativeSrc":"18996:24:125","nodeType":"YulFunctionCall","src":"18996:24:125"}],"functionName":{"name":"mstore","nativeSrc":"18967:6:125","nodeType":"YulIdentifier","src":"18967:6:125"},"nativeSrc":"18967:54:125","nodeType":"YulFunctionCall","src":"18967:54:125"},"nativeSrc":"18967:54:125","nodeType":"YulExpressionStatement","src":"18967:54:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19041:9:125","nodeType":"YulIdentifier","src":"19041:9:125"},{"kind":"number","nativeSrc":"19052:4:125","nodeType":"YulLiteral","src":"19052:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"19037:3:125","nodeType":"YulIdentifier","src":"19037:3:125"},"nativeSrc":"19037:20:125","nodeType":"YulFunctionCall","src":"19037:20:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"19069:6:125","nodeType":"YulIdentifier","src":"19069:6:125"},{"kind":"number","nativeSrc":"19077:4:125","nodeType":"YulLiteral","src":"19077:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"19065:3:125","nodeType":"YulIdentifier","src":"19065:3:125"},"nativeSrc":"19065:17:125","nodeType":"YulFunctionCall","src":"19065:17:125"}],"functionName":{"name":"mload","nativeSrc":"19059:5:125","nodeType":"YulIdentifier","src":"19059:5:125"},"nativeSrc":"19059:24:125","nodeType":"YulFunctionCall","src":"19059:24:125"}],"functionName":{"name":"mstore","nativeSrc":"19030:6:125","nodeType":"YulIdentifier","src":"19030:6:125"},"nativeSrc":"19030:54:125","nodeType":"YulFunctionCall","src":"19030:54:125"},"nativeSrc":"19030:54:125","nodeType":"YulExpressionStatement","src":"19030:54:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19104:9:125","nodeType":"YulIdentifier","src":"19104:9:125"},{"kind":"number","nativeSrc":"19115:4:125","nodeType":"YulLiteral","src":"19115:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"19100:3:125","nodeType":"YulIdentifier","src":"19100:3:125"},"nativeSrc":"19100:20:125","nodeType":"YulFunctionCall","src":"19100:20:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"19132:6:125","nodeType":"YulIdentifier","src":"19132:6:125"},{"kind":"number","nativeSrc":"19140:4:125","nodeType":"YulLiteral","src":"19140:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"19128:3:125","nodeType":"YulIdentifier","src":"19128:3:125"},"nativeSrc":"19128:17:125","nodeType":"YulFunctionCall","src":"19128:17:125"}],"functionName":{"name":"mload","nativeSrc":"19122:5:125","nodeType":"YulIdentifier","src":"19122:5:125"},"nativeSrc":"19122:24:125","nodeType":"YulFunctionCall","src":"19122:24:125"}],"functionName":{"name":"mstore","nativeSrc":"19093:6:125","nodeType":"YulIdentifier","src":"19093:6:125"},"nativeSrc":"19093:54:125","nodeType":"YulFunctionCall","src":"19093:54:125"},"nativeSrc":"19093:54:125","nodeType":"YulExpressionStatement","src":"19093:54:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19167:9:125","nodeType":"YulIdentifier","src":"19167:9:125"},{"kind":"number","nativeSrc":"19178:4:125","nodeType":"YulLiteral","src":"19178:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"19163:3:125","nodeType":"YulIdentifier","src":"19163:3:125"},"nativeSrc":"19163:20:125","nodeType":"YulFunctionCall","src":"19163:20:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"19195:6:125","nodeType":"YulIdentifier","src":"19195:6:125"},{"kind":"number","nativeSrc":"19203:4:125","nodeType":"YulLiteral","src":"19203:4:125","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"19191:3:125","nodeType":"YulIdentifier","src":"19191:3:125"},"nativeSrc":"19191:17:125","nodeType":"YulFunctionCall","src":"19191:17:125"}],"functionName":{"name":"mload","nativeSrc":"19185:5:125","nodeType":"YulIdentifier","src":"19185:5:125"},"nativeSrc":"19185:24:125","nodeType":"YulFunctionCall","src":"19185:24:125"}],"functionName":{"name":"mstore","nativeSrc":"19156:6:125","nodeType":"YulIdentifier","src":"19156:6:125"},"nativeSrc":"19156:54:125","nodeType":"YulFunctionCall","src":"19156:54:125"},"nativeSrc":"19156:54:125","nodeType":"YulExpressionStatement","src":"19156:54:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19230:9:125","nodeType":"YulIdentifier","src":"19230:9:125"},{"kind":"number","nativeSrc":"19241:4:125","nodeType":"YulLiteral","src":"19241:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"19226:3:125","nodeType":"YulIdentifier","src":"19226:3:125"},"nativeSrc":"19226:20:125","nodeType":"YulFunctionCall","src":"19226:20:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"19258:6:125","nodeType":"YulIdentifier","src":"19258:6:125"},{"kind":"number","nativeSrc":"19266:4:125","nodeType":"YulLiteral","src":"19266:4:125","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"19254:3:125","nodeType":"YulIdentifier","src":"19254:3:125"},"nativeSrc":"19254:17:125","nodeType":"YulFunctionCall","src":"19254:17:125"}],"functionName":{"name":"mload","nativeSrc":"19248:5:125","nodeType":"YulIdentifier","src":"19248:5:125"},"nativeSrc":"19248:24:125","nodeType":"YulFunctionCall","src":"19248:24:125"}],"functionName":{"name":"mstore","nativeSrc":"19219:6:125","nodeType":"YulIdentifier","src":"19219:6:125"},"nativeSrc":"19219:54:125","nodeType":"YulFunctionCall","src":"19219:54:125"},"nativeSrc":"19219:54:125","nodeType":"YulExpressionStatement","src":"19219:54:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19293:9:125","nodeType":"YulIdentifier","src":"19293:9:125"},{"kind":"number","nativeSrc":"19304:4:125","nodeType":"YulLiteral","src":"19304:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"19289:3:125","nodeType":"YulIdentifier","src":"19289:3:125"},"nativeSrc":"19289:20:125","nodeType":"YulFunctionCall","src":"19289:20:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"19321:6:125","nodeType":"YulIdentifier","src":"19321:6:125"},{"kind":"number","nativeSrc":"19329:4:125","nodeType":"YulLiteral","src":"19329:4:125","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"19317:3:125","nodeType":"YulIdentifier","src":"19317:3:125"},"nativeSrc":"19317:17:125","nodeType":"YulFunctionCall","src":"19317:17:125"}],"functionName":{"name":"mload","nativeSrc":"19311:5:125","nodeType":"YulIdentifier","src":"19311:5:125"},"nativeSrc":"19311:24:125","nodeType":"YulFunctionCall","src":"19311:24:125"}],"functionName":{"name":"mstore","nativeSrc":"19282:6:125","nodeType":"YulIdentifier","src":"19282:6:125"},"nativeSrc":"19282:54:125","nodeType":"YulFunctionCall","src":"19282:54:125"},"nativeSrc":"19282:54:125","nodeType":"YulExpressionStatement","src":"19282:54:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19356:9:125","nodeType":"YulIdentifier","src":"19356:9:125"},{"kind":"number","nativeSrc":"19367:4:125","nodeType":"YulLiteral","src":"19367:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"19352:3:125","nodeType":"YulIdentifier","src":"19352:3:125"},"nativeSrc":"19352:20:125","nodeType":"YulFunctionCall","src":"19352:20:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"19384:6:125","nodeType":"YulIdentifier","src":"19384:6:125"},{"kind":"number","nativeSrc":"19392:4:125","nodeType":"YulLiteral","src":"19392:4:125","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"19380:3:125","nodeType":"YulIdentifier","src":"19380:3:125"},"nativeSrc":"19380:17:125","nodeType":"YulFunctionCall","src":"19380:17:125"}],"functionName":{"name":"mload","nativeSrc":"19374:5:125","nodeType":"YulIdentifier","src":"19374:5:125"},"nativeSrc":"19374:24:125","nodeType":"YulFunctionCall","src":"19374:24:125"}],"functionName":{"name":"mstore","nativeSrc":"19345:6:125","nodeType":"YulIdentifier","src":"19345:6:125"},"nativeSrc":"19345:54:125","nodeType":"YulFunctionCall","src":"19345:54:125"},"nativeSrc":"19345:54:125","nodeType":"YulExpressionStatement","src":"19345:54:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19419:9:125","nodeType":"YulIdentifier","src":"19419:9:125"},{"kind":"number","nativeSrc":"19430:6:125","nodeType":"YulLiteral","src":"19430:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"19415:3:125","nodeType":"YulIdentifier","src":"19415:3:125"},"nativeSrc":"19415:22:125","nodeType":"YulFunctionCall","src":"19415:22:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"19449:6:125","nodeType":"YulIdentifier","src":"19449:6:125"},{"kind":"number","nativeSrc":"19457:6:125","nodeType":"YulLiteral","src":"19457:6:125","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"19445:3:125","nodeType":"YulIdentifier","src":"19445:3:125"},"nativeSrc":"19445:19:125","nodeType":"YulFunctionCall","src":"19445:19:125"}],"functionName":{"name":"mload","nativeSrc":"19439:5:125","nodeType":"YulIdentifier","src":"19439:5:125"},"nativeSrc":"19439:26:125","nodeType":"YulFunctionCall","src":"19439:26:125"}],"functionName":{"name":"mstore","nativeSrc":"19408:6:125","nodeType":"YulIdentifier","src":"19408:6:125"},"nativeSrc":"19408:58:125","nodeType":"YulFunctionCall","src":"19408:58:125"},"nativeSrc":"19408:58:125","nodeType":"YulExpressionStatement","src":"19408:58:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19486:9:125","nodeType":"YulIdentifier","src":"19486:9:125"},{"kind":"number","nativeSrc":"19497:6:125","nodeType":"YulLiteral","src":"19497:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"19482:3:125","nodeType":"YulIdentifier","src":"19482:3:125"},"nativeSrc":"19482:22:125","nodeType":"YulFunctionCall","src":"19482:22:125"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"19516:6:125","nodeType":"YulIdentifier","src":"19516:6:125"},{"kind":"number","nativeSrc":"19524:6:125","nodeType":"YulLiteral","src":"19524:6:125","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"19512:3:125","nodeType":"YulIdentifier","src":"19512:3:125"},"nativeSrc":"19512:19:125","nodeType":"YulFunctionCall","src":"19512:19:125"}],"functionName":{"name":"mload","nativeSrc":"19506:5:125","nodeType":"YulIdentifier","src":"19506:5:125"},"nativeSrc":"19506:26:125","nodeType":"YulFunctionCall","src":"19506:26:125"}],"functionName":{"name":"mstore","nativeSrc":"19475:6:125","nodeType":"YulIdentifier","src":"19475:6:125"},"nativeSrc":"19475:58:125","nodeType":"YulFunctionCall","src":"19475:58:125"},"nativeSrc":"19475:58:125","nodeType":"YulExpressionStatement","src":"19475:58:125"},{"nativeSrc":"19542:46:125","nodeType":"YulVariableDeclaration","src":"19542:46:125","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"19572:6:125","nodeType":"YulIdentifier","src":"19572:6:125"},{"kind":"number","nativeSrc":"19580:6:125","nodeType":"YulLiteral","src":"19580:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"19568:3:125","nodeType":"YulIdentifier","src":"19568:3:125"},"nativeSrc":"19568:19:125","nodeType":"YulFunctionCall","src":"19568:19:125"}],"functionName":{"name":"mload","nativeSrc":"19562:5:125","nodeType":"YulIdentifier","src":"19562:5:125"},"nativeSrc":"19562:26:125","nodeType":"YulFunctionCall","src":"19562:26:125"},"variables":[{"name":"memberValue0","nativeSrc":"19546:12:125","nodeType":"YulTypedName","src":"19546:12:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"19615:12:125","nodeType":"YulIdentifier","src":"19615:12:125"},{"arguments":[{"name":"headStart","nativeSrc":"19633:9:125","nodeType":"YulIdentifier","src":"19633:9:125"},{"kind":"number","nativeSrc":"19644:6:125","nodeType":"YulLiteral","src":"19644:6:125","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"19629:3:125","nodeType":"YulIdentifier","src":"19629:3:125"},"nativeSrc":"19629:22:125","nodeType":"YulFunctionCall","src":"19629:22:125"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"19597:17:125","nodeType":"YulIdentifier","src":"19597:17:125"},"nativeSrc":"19597:55:125","nodeType":"YulFunctionCall","src":"19597:55:125"},"nativeSrc":"19597:55:125","nodeType":"YulExpressionStatement","src":"19597:55:125"},{"nativeSrc":"19661:48:125","nodeType":"YulVariableDeclaration","src":"19661:48:125","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"19693:6:125","nodeType":"YulIdentifier","src":"19693:6:125"},{"kind":"number","nativeSrc":"19701:6:125","nodeType":"YulLiteral","src":"19701:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"19689:3:125","nodeType":"YulIdentifier","src":"19689:3:125"},"nativeSrc":"19689:19:125","nodeType":"YulFunctionCall","src":"19689:19:125"}],"functionName":{"name":"mload","nativeSrc":"19683:5:125","nodeType":"YulIdentifier","src":"19683:5:125"},"nativeSrc":"19683:26:125","nodeType":"YulFunctionCall","src":"19683:26:125"},"variables":[{"name":"memberValue0_1","nativeSrc":"19665:14:125","nodeType":"YulTypedName","src":"19665:14:125","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_1","nativeSrc":"19736:14:125","nodeType":"YulIdentifier","src":"19736:14:125"},{"arguments":[{"name":"headStart","nativeSrc":"19756:9:125","nodeType":"YulIdentifier","src":"19756:9:125"},{"kind":"number","nativeSrc":"19767:6:125","nodeType":"YulLiteral","src":"19767:6:125","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"19752:3:125","nodeType":"YulIdentifier","src":"19752:3:125"},"nativeSrc":"19752:22:125","nodeType":"YulFunctionCall","src":"19752:22:125"}],"functionName":{"name":"abi_encode_uint40","nativeSrc":"19718:17:125","nodeType":"YulIdentifier","src":"19718:17:125"},"nativeSrc":"19718:57:125","nodeType":"YulFunctionCall","src":"19718:57:125"},"nativeSrc":"19718:57:125","nodeType":"YulExpressionStatement","src":"19718:57:125"}]},"name":"abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr__fromStack_reversed","nativeSrc":"18723:1058:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18849:9:125","nodeType":"YulTypedName","src":"18849:9:125","type":""},{"name":"value0","nativeSrc":"18860:6:125","nodeType":"YulTypedName","src":"18860:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18871:4:125","nodeType":"YulTypedName","src":"18871:4:125","type":""}],"src":"18723:1058:125"},{"body":{"nativeSrc":"19873:321:125","nodeType":"YulBlock","src":"19873:321:125","statements":[{"body":{"nativeSrc":"19919:16:125","nodeType":"YulBlock","src":"19919:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19928:1:125","nodeType":"YulLiteral","src":"19928:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"19931:1:125","nodeType":"YulLiteral","src":"19931:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19921:6:125","nodeType":"YulIdentifier","src":"19921:6:125"},"nativeSrc":"19921:12:125","nodeType":"YulFunctionCall","src":"19921:12:125"},"nativeSrc":"19921:12:125","nodeType":"YulExpressionStatement","src":"19921:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"19894:7:125","nodeType":"YulIdentifier","src":"19894:7:125"},{"name":"headStart","nativeSrc":"19903:9:125","nodeType":"YulIdentifier","src":"19903:9:125"}],"functionName":{"name":"sub","nativeSrc":"19890:3:125","nodeType":"YulIdentifier","src":"19890:3:125"},"nativeSrc":"19890:23:125","nodeType":"YulFunctionCall","src":"19890:23:125"},{"kind":"number","nativeSrc":"19915:2:125","nodeType":"YulLiteral","src":"19915:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"19886:3:125","nodeType":"YulIdentifier","src":"19886:3:125"},"nativeSrc":"19886:32:125","nodeType":"YulFunctionCall","src":"19886:32:125"},"nativeSrc":"19883:52:125","nodeType":"YulIf","src":"19883:52:125"},{"nativeSrc":"19944:36:125","nodeType":"YulVariableDeclaration","src":"19944:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"19970:9:125","nodeType":"YulIdentifier","src":"19970:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"19957:12:125","nodeType":"YulIdentifier","src":"19957:12:125"},"nativeSrc":"19957:23:125","nodeType":"YulFunctionCall","src":"19957:23:125"},"variables":[{"name":"value","nativeSrc":"19948:5:125","nodeType":"YulTypedName","src":"19948:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"20024:5:125","nodeType":"YulIdentifier","src":"20024:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"19989:34:125","nodeType":"YulIdentifier","src":"19989:34:125"},"nativeSrc":"19989:41:125","nodeType":"YulFunctionCall","src":"19989:41:125"},"nativeSrc":"19989:41:125","nodeType":"YulExpressionStatement","src":"19989:41:125"},{"nativeSrc":"20039:15:125","nodeType":"YulAssignment","src":"20039:15:125","value":{"name":"value","nativeSrc":"20049:5:125","nodeType":"YulIdentifier","src":"20049:5:125"},"variableNames":[{"name":"value0","nativeSrc":"20039:6:125","nodeType":"YulIdentifier","src":"20039:6:125"}]},{"nativeSrc":"20063:47:125","nodeType":"YulVariableDeclaration","src":"20063:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20095:9:125","nodeType":"YulIdentifier","src":"20095:9:125"},{"kind":"number","nativeSrc":"20106:2:125","nodeType":"YulLiteral","src":"20106:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20091:3:125","nodeType":"YulIdentifier","src":"20091:3:125"},"nativeSrc":"20091:18:125","nodeType":"YulFunctionCall","src":"20091:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"20078:12:125","nodeType":"YulIdentifier","src":"20078:12:125"},"nativeSrc":"20078:32:125","nodeType":"YulFunctionCall","src":"20078:32:125"},"variables":[{"name":"value_1","nativeSrc":"20067:7:125","nodeType":"YulTypedName","src":"20067:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"20154:7:125","nodeType":"YulIdentifier","src":"20154:7:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"20119:34:125","nodeType":"YulIdentifier","src":"20119:34:125"},"nativeSrc":"20119:43:125","nodeType":"YulFunctionCall","src":"20119:43:125"},"nativeSrc":"20119:43:125","nodeType":"YulExpressionStatement","src":"20119:43:125"},{"nativeSrc":"20171:17:125","nodeType":"YulAssignment","src":"20171:17:125","value":{"name":"value_1","nativeSrc":"20181:7:125","nodeType":"YulIdentifier","src":"20181:7:125"},"variableNames":[{"name":"value1","nativeSrc":"20171:6:125","nodeType":"YulIdentifier","src":"20171:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"19786:408:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19831:9:125","nodeType":"YulTypedName","src":"19831:9:125","type":""},{"name":"dataEnd","nativeSrc":"19842:7:125","nodeType":"YulTypedName","src":"19842:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"19854:6:125","nodeType":"YulTypedName","src":"19854:6:125","type":""},{"name":"value1","nativeSrc":"19862:6:125","nodeType":"YulTypedName","src":"19862:6:125","type":""}],"src":"19786:408:125"},{"body":{"nativeSrc":"20332:467:125","nodeType":"YulBlock","src":"20332:467:125","statements":[{"body":{"nativeSrc":"20378:16:125","nodeType":"YulBlock","src":"20378:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20387:1:125","nodeType":"YulLiteral","src":"20387:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"20390:1:125","nodeType":"YulLiteral","src":"20390:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"20380:6:125","nodeType":"YulIdentifier","src":"20380:6:125"},"nativeSrc":"20380:12:125","nodeType":"YulFunctionCall","src":"20380:12:125"},"nativeSrc":"20380:12:125","nodeType":"YulExpressionStatement","src":"20380:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"20353:7:125","nodeType":"YulIdentifier","src":"20353:7:125"},{"name":"headStart","nativeSrc":"20362:9:125","nodeType":"YulIdentifier","src":"20362:9:125"}],"functionName":{"name":"sub","nativeSrc":"20349:3:125","nodeType":"YulIdentifier","src":"20349:3:125"},"nativeSrc":"20349:23:125","nodeType":"YulFunctionCall","src":"20349:23:125"},{"kind":"number","nativeSrc":"20374:2:125","nodeType":"YulLiteral","src":"20374:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"20345:3:125","nodeType":"YulIdentifier","src":"20345:3:125"},"nativeSrc":"20345:32:125","nodeType":"YulFunctionCall","src":"20345:32:125"},"nativeSrc":"20342:52:125","nodeType":"YulIf","src":"20342:52:125"},{"nativeSrc":"20403:36:125","nodeType":"YulVariableDeclaration","src":"20403:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"20429:9:125","nodeType":"YulIdentifier","src":"20429:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"20416:12:125","nodeType":"YulIdentifier","src":"20416:12:125"},"nativeSrc":"20416:23:125","nodeType":"YulFunctionCall","src":"20416:23:125"},"variables":[{"name":"value","nativeSrc":"20407:5:125","nodeType":"YulTypedName","src":"20407:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"20483:5:125","nodeType":"YulIdentifier","src":"20483:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"20448:34:125","nodeType":"YulIdentifier","src":"20448:34:125"},"nativeSrc":"20448:41:125","nodeType":"YulFunctionCall","src":"20448:41:125"},"nativeSrc":"20448:41:125","nodeType":"YulExpressionStatement","src":"20448:41:125"},{"nativeSrc":"20498:15:125","nodeType":"YulAssignment","src":"20498:15:125","value":{"name":"value","nativeSrc":"20508:5:125","nodeType":"YulIdentifier","src":"20508:5:125"},"variableNames":[{"name":"value0","nativeSrc":"20498:6:125","nodeType":"YulIdentifier","src":"20498:6:125"}]},{"nativeSrc":"20522:46:125","nodeType":"YulVariableDeclaration","src":"20522:46:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20553:9:125","nodeType":"YulIdentifier","src":"20553:9:125"},{"kind":"number","nativeSrc":"20564:2:125","nodeType":"YulLiteral","src":"20564:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20549:3:125","nodeType":"YulIdentifier","src":"20549:3:125"},"nativeSrc":"20549:18:125","nodeType":"YulFunctionCall","src":"20549:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"20536:12:125","nodeType":"YulIdentifier","src":"20536:12:125"},"nativeSrc":"20536:32:125","nodeType":"YulFunctionCall","src":"20536:32:125"},"variables":[{"name":"offset","nativeSrc":"20526:6:125","nodeType":"YulTypedName","src":"20526:6:125","type":""}]},{"body":{"nativeSrc":"20611:16:125","nodeType":"YulBlock","src":"20611:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20620:1:125","nodeType":"YulLiteral","src":"20620:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"20623:1:125","nodeType":"YulLiteral","src":"20623:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"20613:6:125","nodeType":"YulIdentifier","src":"20613:6:125"},"nativeSrc":"20613:12:125","nodeType":"YulFunctionCall","src":"20613:12:125"},"nativeSrc":"20613:12:125","nodeType":"YulExpressionStatement","src":"20613:12:125"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"20583:6:125","nodeType":"YulIdentifier","src":"20583:6:125"},{"kind":"number","nativeSrc":"20591:18:125","nodeType":"YulLiteral","src":"20591:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"20580:2:125","nodeType":"YulIdentifier","src":"20580:2:125"},"nativeSrc":"20580:30:125","nodeType":"YulFunctionCall","src":"20580:30:125"},"nativeSrc":"20577:50:125","nodeType":"YulIf","src":"20577:50:125"},{"nativeSrc":"20636:103:125","nodeType":"YulVariableDeclaration","src":"20636:103:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20711:9:125","nodeType":"YulIdentifier","src":"20711:9:125"},{"name":"offset","nativeSrc":"20722:6:125","nodeType":"YulIdentifier","src":"20722:6:125"}],"functionName":{"name":"add","nativeSrc":"20707:3:125","nodeType":"YulIdentifier","src":"20707:3:125"},"nativeSrc":"20707:22:125","nodeType":"YulFunctionCall","src":"20707:22:125"},{"name":"dataEnd","nativeSrc":"20731:7:125","nodeType":"YulIdentifier","src":"20731:7:125"}],"functionName":{"name":"abi_decode_array_bytes_calldata_dyn_calldata","nativeSrc":"20662:44:125","nodeType":"YulIdentifier","src":"20662:44:125"},"nativeSrc":"20662:77:125","nodeType":"YulFunctionCall","src":"20662:77:125"},"variables":[{"name":"value1_1","nativeSrc":"20640:8:125","nodeType":"YulTypedName","src":"20640:8:125","type":""},{"name":"value2_1","nativeSrc":"20650:8:125","nodeType":"YulTypedName","src":"20650:8:125","type":""}]},{"nativeSrc":"20748:18:125","nodeType":"YulAssignment","src":"20748:18:125","value":{"name":"value1_1","nativeSrc":"20758:8:125","nodeType":"YulIdentifier","src":"20758:8:125"},"variableNames":[{"name":"value1","nativeSrc":"20748:6:125","nodeType":"YulIdentifier","src":"20748:6:125"}]},{"nativeSrc":"20775:18:125","nodeType":"YulAssignment","src":"20775:18:125","value":{"name":"value2_1","nativeSrc":"20785:8:125","nodeType":"YulIdentifier","src":"20785:8:125"},"variableNames":[{"name":"value2","nativeSrc":"20775:6:125","nodeType":"YulIdentifier","src":"20775:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr","nativeSrc":"20199:600:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20282:9:125","nodeType":"YulTypedName","src":"20282:9:125","type":""},{"name":"dataEnd","nativeSrc":"20293:7:125","nodeType":"YulTypedName","src":"20293:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"20305:6:125","nodeType":"YulTypedName","src":"20305:6:125","type":""},{"name":"value1","nativeSrc":"20313:6:125","nodeType":"YulTypedName","src":"20313:6:125","type":""},{"name":"value2","nativeSrc":"20321:6:125","nodeType":"YulTypedName","src":"20321:6:125","type":""}],"src":"20199:600:125"},{"body":{"nativeSrc":"20973:611:125","nodeType":"YulBlock","src":"20973:611:125","statements":[{"nativeSrc":"20983:32:125","nodeType":"YulVariableDeclaration","src":"20983:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"21001:9:125","nodeType":"YulIdentifier","src":"21001:9:125"},{"kind":"number","nativeSrc":"21012:2:125","nodeType":"YulLiteral","src":"21012:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20997:3:125","nodeType":"YulIdentifier","src":"20997:3:125"},"nativeSrc":"20997:18:125","nodeType":"YulFunctionCall","src":"20997:18:125"},"variables":[{"name":"tail_1","nativeSrc":"20987:6:125","nodeType":"YulTypedName","src":"20987:6:125","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"21031:9:125","nodeType":"YulIdentifier","src":"21031:9:125"},{"kind":"number","nativeSrc":"21042:2:125","nodeType":"YulLiteral","src":"21042:2:125","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"21024:6:125","nodeType":"YulIdentifier","src":"21024:6:125"},"nativeSrc":"21024:21:125","nodeType":"YulFunctionCall","src":"21024:21:125"},"nativeSrc":"21024:21:125","nodeType":"YulExpressionStatement","src":"21024:21:125"},{"nativeSrc":"21054:17:125","nodeType":"YulVariableDeclaration","src":"21054:17:125","value":{"name":"tail_1","nativeSrc":"21065:6:125","nodeType":"YulIdentifier","src":"21065:6:125"},"variables":[{"name":"pos","nativeSrc":"21058:3:125","nodeType":"YulTypedName","src":"21058:3:125","type":""}]},{"nativeSrc":"21080:27:125","nodeType":"YulVariableDeclaration","src":"21080:27:125","value":{"arguments":[{"name":"value0","nativeSrc":"21100:6:125","nodeType":"YulIdentifier","src":"21100:6:125"}],"functionName":{"name":"mload","nativeSrc":"21094:5:125","nodeType":"YulIdentifier","src":"21094:5:125"},"nativeSrc":"21094:13:125","nodeType":"YulFunctionCall","src":"21094:13:125"},"variables":[{"name":"length","nativeSrc":"21084:6:125","nodeType":"YulTypedName","src":"21084:6:125","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"21123:6:125","nodeType":"YulIdentifier","src":"21123:6:125"},{"name":"length","nativeSrc":"21131:6:125","nodeType":"YulIdentifier","src":"21131:6:125"}],"functionName":{"name":"mstore","nativeSrc":"21116:6:125","nodeType":"YulIdentifier","src":"21116:6:125"},"nativeSrc":"21116:22:125","nodeType":"YulFunctionCall","src":"21116:22:125"},"nativeSrc":"21116:22:125","nodeType":"YulExpressionStatement","src":"21116:22:125"},{"nativeSrc":"21147:25:125","nodeType":"YulAssignment","src":"21147:25:125","value":{"arguments":[{"name":"headStart","nativeSrc":"21158:9:125","nodeType":"YulIdentifier","src":"21158:9:125"},{"kind":"number","nativeSrc":"21169:2:125","nodeType":"YulLiteral","src":"21169:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21154:3:125","nodeType":"YulIdentifier","src":"21154:3:125"},"nativeSrc":"21154:18:125","nodeType":"YulFunctionCall","src":"21154:18:125"},"variableNames":[{"name":"pos","nativeSrc":"21147:3:125","nodeType":"YulIdentifier","src":"21147:3:125"}]},{"nativeSrc":"21181:53:125","nodeType":"YulVariableDeclaration","src":"21181:53:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21203:9:125","nodeType":"YulIdentifier","src":"21203:9:125"},{"arguments":[{"kind":"number","nativeSrc":"21218:1:125","nodeType":"YulLiteral","src":"21218:1:125","type":"","value":"5"},{"name":"length","nativeSrc":"21221:6:125","nodeType":"YulIdentifier","src":"21221:6:125"}],"functionName":{"name":"shl","nativeSrc":"21214:3:125","nodeType":"YulIdentifier","src":"21214:3:125"},"nativeSrc":"21214:14:125","nodeType":"YulFunctionCall","src":"21214:14:125"}],"functionName":{"name":"add","nativeSrc":"21199:3:125","nodeType":"YulIdentifier","src":"21199:3:125"},"nativeSrc":"21199:30:125","nodeType":"YulFunctionCall","src":"21199:30:125"},{"kind":"number","nativeSrc":"21231:2:125","nodeType":"YulLiteral","src":"21231:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21195:3:125","nodeType":"YulIdentifier","src":"21195:3:125"},"nativeSrc":"21195:39:125","nodeType":"YulFunctionCall","src":"21195:39:125"},"variables":[{"name":"tail_2","nativeSrc":"21185:6:125","nodeType":"YulTypedName","src":"21185:6:125","type":""}]},{"nativeSrc":"21243:29:125","nodeType":"YulVariableDeclaration","src":"21243:29:125","value":{"arguments":[{"name":"value0","nativeSrc":"21261:6:125","nodeType":"YulIdentifier","src":"21261:6:125"},{"kind":"number","nativeSrc":"21269:2:125","nodeType":"YulLiteral","src":"21269:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21257:3:125","nodeType":"YulIdentifier","src":"21257:3:125"},"nativeSrc":"21257:15:125","nodeType":"YulFunctionCall","src":"21257:15:125"},"variables":[{"name":"srcPtr","nativeSrc":"21247:6:125","nodeType":"YulTypedName","src":"21247:6:125","type":""}]},{"nativeSrc":"21281:10:125","nodeType":"YulVariableDeclaration","src":"21281:10:125","value":{"kind":"number","nativeSrc":"21290:1:125","nodeType":"YulLiteral","src":"21290:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"21285:1:125","nodeType":"YulTypedName","src":"21285:1:125","type":""}]},{"body":{"nativeSrc":"21349:206:125","nodeType":"YulBlock","src":"21349:206:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"21370:3:125","nodeType":"YulIdentifier","src":"21370:3:125"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"21383:6:125","nodeType":"YulIdentifier","src":"21383:6:125"},{"name":"headStart","nativeSrc":"21391:9:125","nodeType":"YulIdentifier","src":"21391:9:125"}],"functionName":{"name":"sub","nativeSrc":"21379:3:125","nodeType":"YulIdentifier","src":"21379:3:125"},"nativeSrc":"21379:22:125","nodeType":"YulFunctionCall","src":"21379:22:125"},{"arguments":[{"kind":"number","nativeSrc":"21407:2:125","nodeType":"YulLiteral","src":"21407:2:125","type":"","value":"63"}],"functionName":{"name":"not","nativeSrc":"21403:3:125","nodeType":"YulIdentifier","src":"21403:3:125"},"nativeSrc":"21403:7:125","nodeType":"YulFunctionCall","src":"21403:7:125"}],"functionName":{"name":"add","nativeSrc":"21375:3:125","nodeType":"YulIdentifier","src":"21375:3:125"},"nativeSrc":"21375:36:125","nodeType":"YulFunctionCall","src":"21375:36:125"}],"functionName":{"name":"mstore","nativeSrc":"21363:6:125","nodeType":"YulIdentifier","src":"21363:6:125"},"nativeSrc":"21363:49:125","nodeType":"YulFunctionCall","src":"21363:49:125"},"nativeSrc":"21363:49:125","nodeType":"YulExpressionStatement","src":"21363:49:125"},{"nativeSrc":"21425:50:125","nodeType":"YulAssignment","src":"21425:50:125","value":{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"21459:6:125","nodeType":"YulIdentifier","src":"21459:6:125"}],"functionName":{"name":"mload","nativeSrc":"21453:5:125","nodeType":"YulIdentifier","src":"21453:5:125"},"nativeSrc":"21453:13:125","nodeType":"YulFunctionCall","src":"21453:13:125"},{"name":"tail_2","nativeSrc":"21468:6:125","nodeType":"YulIdentifier","src":"21468:6:125"}],"functionName":{"name":"abi_encode_string","nativeSrc":"21435:17:125","nodeType":"YulIdentifier","src":"21435:17:125"},"nativeSrc":"21435:40:125","nodeType":"YulFunctionCall","src":"21435:40:125"},"variableNames":[{"name":"tail_2","nativeSrc":"21425:6:125","nodeType":"YulIdentifier","src":"21425:6:125"}]},{"nativeSrc":"21488:25:125","nodeType":"YulAssignment","src":"21488:25:125","value":{"arguments":[{"name":"srcPtr","nativeSrc":"21502:6:125","nodeType":"YulIdentifier","src":"21502:6:125"},{"kind":"number","nativeSrc":"21510:2:125","nodeType":"YulLiteral","src":"21510:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21498:3:125","nodeType":"YulIdentifier","src":"21498:3:125"},"nativeSrc":"21498:15:125","nodeType":"YulFunctionCall","src":"21498:15:125"},"variableNames":[{"name":"srcPtr","nativeSrc":"21488:6:125","nodeType":"YulIdentifier","src":"21488:6:125"}]},{"nativeSrc":"21526:19:125","nodeType":"YulAssignment","src":"21526:19:125","value":{"arguments":[{"name":"pos","nativeSrc":"21537:3:125","nodeType":"YulIdentifier","src":"21537:3:125"},{"kind":"number","nativeSrc":"21542:2:125","nodeType":"YulLiteral","src":"21542:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21533:3:125","nodeType":"YulIdentifier","src":"21533:3:125"},"nativeSrc":"21533:12:125","nodeType":"YulFunctionCall","src":"21533:12:125"},"variableNames":[{"name":"pos","nativeSrc":"21526:3:125","nodeType":"YulIdentifier","src":"21526:3:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"21311:1:125","nodeType":"YulIdentifier","src":"21311:1:125"},{"name":"length","nativeSrc":"21314:6:125","nodeType":"YulIdentifier","src":"21314:6:125"}],"functionName":{"name":"lt","nativeSrc":"21308:2:125","nodeType":"YulIdentifier","src":"21308:2:125"},"nativeSrc":"21308:13:125","nodeType":"YulFunctionCall","src":"21308:13:125"},"nativeSrc":"21300:255:125","nodeType":"YulForLoop","post":{"nativeSrc":"21322:18:125","nodeType":"YulBlock","src":"21322:18:125","statements":[{"nativeSrc":"21324:14:125","nodeType":"YulAssignment","src":"21324:14:125","value":{"arguments":[{"name":"i","nativeSrc":"21333:1:125","nodeType":"YulIdentifier","src":"21333:1:125"},{"kind":"number","nativeSrc":"21336:1:125","nodeType":"YulLiteral","src":"21336:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"21329:3:125","nodeType":"YulIdentifier","src":"21329:3:125"},"nativeSrc":"21329:9:125","nodeType":"YulFunctionCall","src":"21329:9:125"},"variableNames":[{"name":"i","nativeSrc":"21324:1:125","nodeType":"YulIdentifier","src":"21324:1:125"}]}]},"pre":{"nativeSrc":"21304:3:125","nodeType":"YulBlock","src":"21304:3:125","statements":[]},"src":"21300:255:125"},{"nativeSrc":"21564:14:125","nodeType":"YulAssignment","src":"21564:14:125","value":{"name":"tail_2","nativeSrc":"21572:6:125","nodeType":"YulIdentifier","src":"21572:6:125"},"variableNames":[{"name":"tail","nativeSrc":"21564:4:125","nodeType":"YulIdentifier","src":"21564:4:125"}]}]},"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":"20804:780:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20942:9:125","nodeType":"YulTypedName","src":"20942:9:125","type":""},{"name":"value0","nativeSrc":"20953:6:125","nodeType":"YulTypedName","src":"20953:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20964:4:125","nodeType":"YulTypedName","src":"20964:4:125","type":""}],"src":"20804:780:125"},{"body":{"nativeSrc":"21694:320:125","nodeType":"YulBlock","src":"21694:320:125","statements":[{"body":{"nativeSrc":"21740:16:125","nodeType":"YulBlock","src":"21740:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21749:1:125","nodeType":"YulLiteral","src":"21749:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"21752:1:125","nodeType":"YulLiteral","src":"21752:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21742:6:125","nodeType":"YulIdentifier","src":"21742:6:125"},"nativeSrc":"21742:12:125","nodeType":"YulFunctionCall","src":"21742:12:125"},"nativeSrc":"21742:12:125","nodeType":"YulExpressionStatement","src":"21742:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"21715:7:125","nodeType":"YulIdentifier","src":"21715:7:125"},{"name":"headStart","nativeSrc":"21724:9:125","nodeType":"YulIdentifier","src":"21724:9:125"}],"functionName":{"name":"sub","nativeSrc":"21711:3:125","nodeType":"YulIdentifier","src":"21711:3:125"},"nativeSrc":"21711:23:125","nodeType":"YulFunctionCall","src":"21711:23:125"},{"kind":"number","nativeSrc":"21736:2:125","nodeType":"YulLiteral","src":"21736:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"21707:3:125","nodeType":"YulIdentifier","src":"21707:3:125"},"nativeSrc":"21707:32:125","nodeType":"YulFunctionCall","src":"21707:32:125"},"nativeSrc":"21704:52:125","nodeType":"YulIf","src":"21704:52:125"},{"nativeSrc":"21765:36:125","nodeType":"YulVariableDeclaration","src":"21765:36:125","value":{"arguments":[{"name":"headStart","nativeSrc":"21791:9:125","nodeType":"YulIdentifier","src":"21791:9:125"}],"functionName":{"name":"calldataload","nativeSrc":"21778:12:125","nodeType":"YulIdentifier","src":"21778:12:125"},"nativeSrc":"21778:23:125","nodeType":"YulFunctionCall","src":"21778:23:125"},"variables":[{"name":"value","nativeSrc":"21769:5:125","nodeType":"YulTypedName","src":"21769:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"21845:5:125","nodeType":"YulIdentifier","src":"21845:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"21810:34:125","nodeType":"YulIdentifier","src":"21810:34:125"},"nativeSrc":"21810:41:125","nodeType":"YulFunctionCall","src":"21810:41:125"},"nativeSrc":"21810:41:125","nodeType":"YulExpressionStatement","src":"21810:41:125"},{"nativeSrc":"21860:15:125","nodeType":"YulAssignment","src":"21860:15:125","value":{"name":"value","nativeSrc":"21870:5:125","nodeType":"YulIdentifier","src":"21870:5:125"},"variableNames":[{"name":"value0","nativeSrc":"21860:6:125","nodeType":"YulIdentifier","src":"21860:6:125"}]},{"nativeSrc":"21884:47:125","nodeType":"YulVariableDeclaration","src":"21884:47:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21916:9:125","nodeType":"YulIdentifier","src":"21916:9:125"},{"kind":"number","nativeSrc":"21927:2:125","nodeType":"YulLiteral","src":"21927:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21912:3:125","nodeType":"YulIdentifier","src":"21912:3:125"},"nativeSrc":"21912:18:125","nodeType":"YulFunctionCall","src":"21912:18:125"}],"functionName":{"name":"calldataload","nativeSrc":"21899:12:125","nodeType":"YulIdentifier","src":"21899:12:125"},"nativeSrc":"21899:32:125","nodeType":"YulFunctionCall","src":"21899:32:125"},"variables":[{"name":"value_1","nativeSrc":"21888:7:125","nodeType":"YulTypedName","src":"21888:7:125","type":""}]},{"body":{"nativeSrc":"21966:16:125","nodeType":"YulBlock","src":"21966:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21975:1:125","nodeType":"YulLiteral","src":"21975:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"21978:1:125","nodeType":"YulLiteral","src":"21978:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21968:6:125","nodeType":"YulIdentifier","src":"21968:6:125"},"nativeSrc":"21968:12:125","nodeType":"YulFunctionCall","src":"21968:12:125"},"nativeSrc":"21968:12:125","nodeType":"YulExpressionStatement","src":"21968:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"21953:7:125","nodeType":"YulIdentifier","src":"21953:7:125"},{"kind":"number","nativeSrc":"21962:1:125","nodeType":"YulLiteral","src":"21962:1:125","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"21950:2:125","nodeType":"YulIdentifier","src":"21950:2:125"},"nativeSrc":"21950:14:125","nodeType":"YulFunctionCall","src":"21950:14:125"}],"functionName":{"name":"iszero","nativeSrc":"21943:6:125","nodeType":"YulIdentifier","src":"21943:6:125"},"nativeSrc":"21943:22:125","nodeType":"YulFunctionCall","src":"21943:22:125"},"nativeSrc":"21940:42:125","nodeType":"YulIf","src":"21940:42:125"},{"nativeSrc":"21991:17:125","nodeType":"YulAssignment","src":"21991:17:125","value":{"name":"value_1","nativeSrc":"22001:7:125","nodeType":"YulIdentifier","src":"22001:7:125"},"variableNames":[{"name":"value1","nativeSrc":"21991:6:125","nodeType":"YulIdentifier","src":"21991:6:125"}]}]},"name":"abi_decode_tuple_t_addresst_enum$_TargetStatus_$38330","nativeSrc":"21589:425:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21652:9:125","nodeType":"YulTypedName","src":"21652:9:125","type":""},{"name":"dataEnd","nativeSrc":"21663:7:125","nodeType":"YulTypedName","src":"21663:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"21675:6:125","nodeType":"YulTypedName","src":"21675:6:125","type":""},{"name":"value1","nativeSrc":"21683:6:125","nodeType":"YulTypedName","src":"21683:6:125","type":""}],"src":"21589:425:125"},{"body":{"nativeSrc":"22100:149:125","nodeType":"YulBlock","src":"22100:149:125","statements":[{"body":{"nativeSrc":"22146:16:125","nodeType":"YulBlock","src":"22146:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22155:1:125","nodeType":"YulLiteral","src":"22155:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"22158:1:125","nodeType":"YulLiteral","src":"22158:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22148:6:125","nodeType":"YulIdentifier","src":"22148:6:125"},"nativeSrc":"22148:12:125","nodeType":"YulFunctionCall","src":"22148:12:125"},"nativeSrc":"22148:12:125","nodeType":"YulExpressionStatement","src":"22148:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"22121:7:125","nodeType":"YulIdentifier","src":"22121:7:125"},{"name":"headStart","nativeSrc":"22130:9:125","nodeType":"YulIdentifier","src":"22130:9:125"}],"functionName":{"name":"sub","nativeSrc":"22117:3:125","nodeType":"YulIdentifier","src":"22117:3:125"},"nativeSrc":"22117:23:125","nodeType":"YulFunctionCall","src":"22117:23:125"},{"kind":"number","nativeSrc":"22142:2:125","nodeType":"YulLiteral","src":"22142:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"22113:3:125","nodeType":"YulIdentifier","src":"22113:3:125"},"nativeSrc":"22113:32:125","nodeType":"YulFunctionCall","src":"22113:32:125"},"nativeSrc":"22110:52:125","nodeType":"YulIf","src":"22110:52:125"},{"nativeSrc":"22171:14:125","nodeType":"YulVariableDeclaration","src":"22171:14:125","value":{"kind":"number","nativeSrc":"22184:1:125","nodeType":"YulLiteral","src":"22184:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"22175:5:125","nodeType":"YulTypedName","src":"22175:5:125","type":""}]},{"nativeSrc":"22194:25:125","nodeType":"YulAssignment","src":"22194:25:125","value":{"arguments":[{"name":"headStart","nativeSrc":"22209:9:125","nodeType":"YulIdentifier","src":"22209:9:125"}],"functionName":{"name":"mload","nativeSrc":"22203:5:125","nodeType":"YulIdentifier","src":"22203:5:125"},"nativeSrc":"22203:16:125","nodeType":"YulFunctionCall","src":"22203:16:125"},"variableNames":[{"name":"value","nativeSrc":"22194:5:125","nodeType":"YulIdentifier","src":"22194:5:125"}]},{"nativeSrc":"22228:15:125","nodeType":"YulAssignment","src":"22228:15:125","value":{"name":"value","nativeSrc":"22238:5:125","nodeType":"YulIdentifier","src":"22238:5:125"},"variableNames":[{"name":"value0","nativeSrc":"22228:6:125","nodeType":"YulIdentifier","src":"22228:6:125"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"22019:230:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22066:9:125","nodeType":"YulTypedName","src":"22066:9:125","type":""},{"name":"dataEnd","nativeSrc":"22077:7:125","nodeType":"YulTypedName","src":"22077:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"22089:6:125","nodeType":"YulTypedName","src":"22089:6:125","type":""}],"src":"22019:230:125"},{"body":{"nativeSrc":"22286:95:125","nodeType":"YulBlock","src":"22286:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22303:1:125","nodeType":"YulLiteral","src":"22303:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"22310:3:125","nodeType":"YulLiteral","src":"22310:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"22315:10:125","nodeType":"YulLiteral","src":"22315:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"22306:3:125","nodeType":"YulIdentifier","src":"22306:3:125"},"nativeSrc":"22306:20:125","nodeType":"YulFunctionCall","src":"22306:20:125"}],"functionName":{"name":"mstore","nativeSrc":"22296:6:125","nodeType":"YulIdentifier","src":"22296:6:125"},"nativeSrc":"22296:31:125","nodeType":"YulFunctionCall","src":"22296:31:125"},"nativeSrc":"22296:31:125","nodeType":"YulExpressionStatement","src":"22296:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"22343:1:125","nodeType":"YulLiteral","src":"22343:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"22346:4:125","nodeType":"YulLiteral","src":"22346:4:125","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"22336:6:125","nodeType":"YulIdentifier","src":"22336:6:125"},"nativeSrc":"22336:15:125","nodeType":"YulFunctionCall","src":"22336:15:125"},"nativeSrc":"22336:15:125","nodeType":"YulExpressionStatement","src":"22336:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"22367:1:125","nodeType":"YulLiteral","src":"22367:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"22370:4:125","nodeType":"YulLiteral","src":"22370:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"22360:6:125","nodeType":"YulIdentifier","src":"22360:6:125"},"nativeSrc":"22360:15:125","nodeType":"YulFunctionCall","src":"22360:15:125"},"nativeSrc":"22360:15:125","nodeType":"YulExpressionStatement","src":"22360:15:125"}]},"name":"panic_error_0x11","nativeSrc":"22254:127:125","nodeType":"YulFunctionDefinition","src":"22254:127:125"},{"body":{"nativeSrc":"22434:77:125","nodeType":"YulBlock","src":"22434:77:125","statements":[{"nativeSrc":"22444:16:125","nodeType":"YulAssignment","src":"22444:16:125","value":{"arguments":[{"name":"x","nativeSrc":"22455:1:125","nodeType":"YulIdentifier","src":"22455:1:125"},{"name":"y","nativeSrc":"22458:1:125","nodeType":"YulIdentifier","src":"22458:1:125"}],"functionName":{"name":"add","nativeSrc":"22451:3:125","nodeType":"YulIdentifier","src":"22451:3:125"},"nativeSrc":"22451:9:125","nodeType":"YulFunctionCall","src":"22451:9:125"},"variableNames":[{"name":"sum","nativeSrc":"22444:3:125","nodeType":"YulIdentifier","src":"22444:3:125"}]},{"body":{"nativeSrc":"22483:22:125","nodeType":"YulBlock","src":"22483:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"22485:16:125","nodeType":"YulIdentifier","src":"22485:16:125"},"nativeSrc":"22485:18:125","nodeType":"YulFunctionCall","src":"22485:18:125"},"nativeSrc":"22485:18:125","nodeType":"YulExpressionStatement","src":"22485:18:125"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"22475:1:125","nodeType":"YulIdentifier","src":"22475:1:125"},{"name":"sum","nativeSrc":"22478:3:125","nodeType":"YulIdentifier","src":"22478:3:125"}],"functionName":{"name":"gt","nativeSrc":"22472:2:125","nodeType":"YulIdentifier","src":"22472:2:125"},"nativeSrc":"22472:10:125","nodeType":"YulFunctionCall","src":"22472:10:125"},"nativeSrc":"22469:36:125","nodeType":"YulIf","src":"22469:36:125"}]},"name":"checked_add_t_uint256","nativeSrc":"22386:125:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"22417:1:125","nodeType":"YulTypedName","src":"22417:1:125","type":""},{"name":"y","nativeSrc":"22420:1:125","nodeType":"YulTypedName","src":"22420:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"22426:3:125","nodeType":"YulTypedName","src":"22426:3:125","type":""}],"src":"22386:125:125"},{"body":{"nativeSrc":"22559:93:125","nodeType":"YulBlock","src":"22559:93:125","statements":[{"body":{"nativeSrc":"22595:22:125","nodeType":"YulBlock","src":"22595:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"22597:16:125","nodeType":"YulIdentifier","src":"22597:16:125"},"nativeSrc":"22597:18:125","nodeType":"YulFunctionCall","src":"22597:18:125"},"nativeSrc":"22597:18:125","nodeType":"YulExpressionStatement","src":"22597:18:125"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"22575:5:125","nodeType":"YulIdentifier","src":"22575:5:125"},{"arguments":[{"kind":"number","nativeSrc":"22586:3:125","nodeType":"YulLiteral","src":"22586:3:125","type":"","value":"255"},{"kind":"number","nativeSrc":"22591:1:125","nodeType":"YulLiteral","src":"22591:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22582:3:125","nodeType":"YulIdentifier","src":"22582:3:125"},"nativeSrc":"22582:11:125","nodeType":"YulFunctionCall","src":"22582:11:125"}],"functionName":{"name":"eq","nativeSrc":"22572:2:125","nodeType":"YulIdentifier","src":"22572:2:125"},"nativeSrc":"22572:22:125","nodeType":"YulFunctionCall","src":"22572:22:125"},"nativeSrc":"22569:48:125","nodeType":"YulIf","src":"22569:48:125"},{"nativeSrc":"22626:20:125","nodeType":"YulAssignment","src":"22626:20:125","value":{"arguments":[{"kind":"number","nativeSrc":"22637:1:125","nodeType":"YulLiteral","src":"22637:1:125","type":"","value":"0"},{"name":"value","nativeSrc":"22640:5:125","nodeType":"YulIdentifier","src":"22640:5:125"}],"functionName":{"name":"sub","nativeSrc":"22633:3:125","nodeType":"YulIdentifier","src":"22633:3:125"},"nativeSrc":"22633:13:125","nodeType":"YulFunctionCall","src":"22633:13:125"},"variableNames":[{"name":"ret","nativeSrc":"22626:3:125","nodeType":"YulIdentifier","src":"22626:3:125"}]}]},"name":"negate_t_int256","nativeSrc":"22516:136:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"22541:5:125","nodeType":"YulTypedName","src":"22541:5:125","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"22551:3:125","nodeType":"YulTypedName","src":"22551:3:125","type":""}],"src":"22516:136:125"},{"body":{"nativeSrc":"22706:79:125","nodeType":"YulBlock","src":"22706:79:125","statements":[{"nativeSrc":"22716:17:125","nodeType":"YulAssignment","src":"22716:17:125","value":{"arguments":[{"name":"x","nativeSrc":"22728:1:125","nodeType":"YulIdentifier","src":"22728:1:125"},{"name":"y","nativeSrc":"22731:1:125","nodeType":"YulIdentifier","src":"22731:1:125"}],"functionName":{"name":"sub","nativeSrc":"22724:3:125","nodeType":"YulIdentifier","src":"22724:3:125"},"nativeSrc":"22724:9:125","nodeType":"YulFunctionCall","src":"22724:9:125"},"variableNames":[{"name":"diff","nativeSrc":"22716:4:125","nodeType":"YulIdentifier","src":"22716:4:125"}]},{"body":{"nativeSrc":"22757:22:125","nodeType":"YulBlock","src":"22757:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"22759:16:125","nodeType":"YulIdentifier","src":"22759:16:125"},"nativeSrc":"22759:18:125","nodeType":"YulFunctionCall","src":"22759:18:125"},"nativeSrc":"22759:18:125","nodeType":"YulExpressionStatement","src":"22759:18:125"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"22748:4:125","nodeType":"YulIdentifier","src":"22748:4:125"},{"name":"x","nativeSrc":"22754:1:125","nodeType":"YulIdentifier","src":"22754:1:125"}],"functionName":{"name":"gt","nativeSrc":"22745:2:125","nodeType":"YulIdentifier","src":"22745:2:125"},"nativeSrc":"22745:11:125","nodeType":"YulFunctionCall","src":"22745:11:125"},"nativeSrc":"22742:37:125","nodeType":"YulIf","src":"22742:37:125"}]},"name":"checked_sub_t_uint256","nativeSrc":"22657:128:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"22688:1:125","nodeType":"YulTypedName","src":"22688:1:125","type":""},{"name":"y","nativeSrc":"22691:1:125","nodeType":"YulTypedName","src":"22691:1:125","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"22697:4:125","nodeType":"YulTypedName","src":"22697:4:125","type":""}],"src":"22657:128:125"},{"body":{"nativeSrc":"22845:325:125","nodeType":"YulBlock","src":"22845:325:125","statements":[{"nativeSrc":"22855:22:125","nodeType":"YulAssignment","src":"22855:22:125","value":{"arguments":[{"kind":"number","nativeSrc":"22869:1:125","nodeType":"YulLiteral","src":"22869:1:125","type":"","value":"1"},{"name":"data","nativeSrc":"22872:4:125","nodeType":"YulIdentifier","src":"22872:4:125"}],"functionName":{"name":"shr","nativeSrc":"22865:3:125","nodeType":"YulIdentifier","src":"22865:3:125"},"nativeSrc":"22865:12:125","nodeType":"YulFunctionCall","src":"22865:12:125"},"variableNames":[{"name":"length","nativeSrc":"22855:6:125","nodeType":"YulIdentifier","src":"22855:6:125"}]},{"nativeSrc":"22886:38:125","nodeType":"YulVariableDeclaration","src":"22886:38:125","value":{"arguments":[{"name":"data","nativeSrc":"22916:4:125","nodeType":"YulIdentifier","src":"22916:4:125"},{"kind":"number","nativeSrc":"22922:1:125","nodeType":"YulLiteral","src":"22922:1:125","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"22912:3:125","nodeType":"YulIdentifier","src":"22912:3:125"},"nativeSrc":"22912:12:125","nodeType":"YulFunctionCall","src":"22912:12:125"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"22890:18:125","nodeType":"YulTypedName","src":"22890:18:125","type":""}]},{"body":{"nativeSrc":"22963:31:125","nodeType":"YulBlock","src":"22963:31:125","statements":[{"nativeSrc":"22965:27:125","nodeType":"YulAssignment","src":"22965:27:125","value":{"arguments":[{"name":"length","nativeSrc":"22979:6:125","nodeType":"YulIdentifier","src":"22979:6:125"},{"kind":"number","nativeSrc":"22987:4:125","nodeType":"YulLiteral","src":"22987:4:125","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"22975:3:125","nodeType":"YulIdentifier","src":"22975:3:125"},"nativeSrc":"22975:17:125","nodeType":"YulFunctionCall","src":"22975:17:125"},"variableNames":[{"name":"length","nativeSrc":"22965:6:125","nodeType":"YulIdentifier","src":"22965:6:125"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"22943:18:125","nodeType":"YulIdentifier","src":"22943:18:125"}],"functionName":{"name":"iszero","nativeSrc":"22936:6:125","nodeType":"YulIdentifier","src":"22936:6:125"},"nativeSrc":"22936:26:125","nodeType":"YulFunctionCall","src":"22936:26:125"},"nativeSrc":"22933:61:125","nodeType":"YulIf","src":"22933:61:125"},{"body":{"nativeSrc":"23053:111:125","nodeType":"YulBlock","src":"23053:111:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23074:1:125","nodeType":"YulLiteral","src":"23074:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"23081:3:125","nodeType":"YulLiteral","src":"23081:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"23086:10:125","nodeType":"YulLiteral","src":"23086:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"23077:3:125","nodeType":"YulIdentifier","src":"23077:3:125"},"nativeSrc":"23077:20:125","nodeType":"YulFunctionCall","src":"23077:20:125"}],"functionName":{"name":"mstore","nativeSrc":"23067:6:125","nodeType":"YulIdentifier","src":"23067:6:125"},"nativeSrc":"23067:31:125","nodeType":"YulFunctionCall","src":"23067:31:125"},"nativeSrc":"23067:31:125","nodeType":"YulExpressionStatement","src":"23067:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"23118:1:125","nodeType":"YulLiteral","src":"23118:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"23121:4:125","nodeType":"YulLiteral","src":"23121:4:125","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"23111:6:125","nodeType":"YulIdentifier","src":"23111:6:125"},"nativeSrc":"23111:15:125","nodeType":"YulFunctionCall","src":"23111:15:125"},"nativeSrc":"23111:15:125","nodeType":"YulExpressionStatement","src":"23111:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"23146:1:125","nodeType":"YulLiteral","src":"23146:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"23149:4:125","nodeType":"YulLiteral","src":"23149:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"23139:6:125","nodeType":"YulIdentifier","src":"23139:6:125"},"nativeSrc":"23139:15:125","nodeType":"YulFunctionCall","src":"23139:15:125"},"nativeSrc":"23139:15:125","nodeType":"YulExpressionStatement","src":"23139:15:125"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"23009:18:125","nodeType":"YulIdentifier","src":"23009:18:125"},{"arguments":[{"name":"length","nativeSrc":"23032:6:125","nodeType":"YulIdentifier","src":"23032:6:125"},{"kind":"number","nativeSrc":"23040:2:125","nodeType":"YulLiteral","src":"23040:2:125","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"23029:2:125","nodeType":"YulIdentifier","src":"23029:2:125"},"nativeSrc":"23029:14:125","nodeType":"YulFunctionCall","src":"23029:14:125"}],"functionName":{"name":"eq","nativeSrc":"23006:2:125","nodeType":"YulIdentifier","src":"23006:2:125"},"nativeSrc":"23006:38:125","nodeType":"YulFunctionCall","src":"23006:38:125"},"nativeSrc":"23003:161:125","nodeType":"YulIf","src":"23003:161:125"}]},"name":"extract_byte_array_length","nativeSrc":"22790:380:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"22825:4:125","nodeType":"YulTypedName","src":"22825:4:125","type":""}],"returnVariables":[{"name":"length","nativeSrc":"22834:6:125","nodeType":"YulTypedName","src":"22834:6:125","type":""}],"src":"22790:380:125"},{"body":{"nativeSrc":"23283:101:125","nodeType":"YulBlock","src":"23283:101:125","statements":[{"nativeSrc":"23293:26:125","nodeType":"YulAssignment","src":"23293:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"23305:9:125","nodeType":"YulIdentifier","src":"23305:9:125"},{"kind":"number","nativeSrc":"23316:2:125","nodeType":"YulLiteral","src":"23316:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23301:3:125","nodeType":"YulIdentifier","src":"23301:3:125"},"nativeSrc":"23301:18:125","nodeType":"YulFunctionCall","src":"23301:18:125"},"variableNames":[{"name":"tail","nativeSrc":"23293:4:125","nodeType":"YulIdentifier","src":"23293:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"23335:9:125","nodeType":"YulIdentifier","src":"23335:9:125"},{"arguments":[{"name":"value0","nativeSrc":"23350:6:125","nodeType":"YulIdentifier","src":"23350:6:125"},{"kind":"number","nativeSrc":"23358:18:125","nodeType":"YulLiteral","src":"23358:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"23346:3:125","nodeType":"YulIdentifier","src":"23346:3:125"},"nativeSrc":"23346:31:125","nodeType":"YulFunctionCall","src":"23346:31:125"}],"functionName":{"name":"mstore","nativeSrc":"23328:6:125","nodeType":"YulIdentifier","src":"23328:6:125"},"nativeSrc":"23328:50:125","nodeType":"YulFunctionCall","src":"23328:50:125"},"nativeSrc":"23328:50:125","nodeType":"YulExpressionStatement","src":"23328:50:125"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"23175:209:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23252:9:125","nodeType":"YulTypedName","src":"23252:9:125","type":""},{"name":"value0","nativeSrc":"23263:6:125","nodeType":"YulTypedName","src":"23263:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"23274:4:125","nodeType":"YulTypedName","src":"23274:4:125","type":""}],"src":"23175:209:125"},{"body":{"nativeSrc":"23534:167:125","nodeType":"YulBlock","src":"23534:167:125","statements":[{"nativeSrc":"23544:26:125","nodeType":"YulAssignment","src":"23544:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"23556:9:125","nodeType":"YulIdentifier","src":"23556:9:125"},{"kind":"number","nativeSrc":"23567:2:125","nodeType":"YulLiteral","src":"23567:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23552:3:125","nodeType":"YulIdentifier","src":"23552:3:125"},"nativeSrc":"23552:18:125","nodeType":"YulFunctionCall","src":"23552:18:125"},"variableNames":[{"name":"tail","nativeSrc":"23544:4:125","nodeType":"YulIdentifier","src":"23544:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"23586:9:125","nodeType":"YulIdentifier","src":"23586:9:125"},{"arguments":[{"name":"value0","nativeSrc":"23601:6:125","nodeType":"YulIdentifier","src":"23601:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23617:3:125","nodeType":"YulLiteral","src":"23617:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"23622:1:125","nodeType":"YulLiteral","src":"23622:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"23613:3:125","nodeType":"YulIdentifier","src":"23613:3:125"},"nativeSrc":"23613:11:125","nodeType":"YulFunctionCall","src":"23613:11:125"},{"kind":"number","nativeSrc":"23626:1:125","nodeType":"YulLiteral","src":"23626:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"23609:3:125","nodeType":"YulIdentifier","src":"23609:3:125"},"nativeSrc":"23609:19:125","nodeType":"YulFunctionCall","src":"23609:19:125"}],"functionName":{"name":"and","nativeSrc":"23597:3:125","nodeType":"YulIdentifier","src":"23597:3:125"},"nativeSrc":"23597:32:125","nodeType":"YulFunctionCall","src":"23597:32:125"}],"functionName":{"name":"mstore","nativeSrc":"23579:6:125","nodeType":"YulIdentifier","src":"23579:6:125"},"nativeSrc":"23579:51:125","nodeType":"YulFunctionCall","src":"23579:51:125"},"nativeSrc":"23579:51:125","nodeType":"YulExpressionStatement","src":"23579:51:125"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"23668:6:125","nodeType":"YulIdentifier","src":"23668:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"23680:9:125","nodeType":"YulIdentifier","src":"23680:9:125"},{"kind":"number","nativeSrc":"23691:2:125","nodeType":"YulLiteral","src":"23691:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23676:3:125","nodeType":"YulIdentifier","src":"23676:3:125"},"nativeSrc":"23676:18:125","nodeType":"YulFunctionCall","src":"23676:18:125"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"23639:28:125","nodeType":"YulIdentifier","src":"23639:28:125"},"nativeSrc":"23639:56:125","nodeType":"YulFunctionCall","src":"23639:56:125"},"nativeSrc":"23639:56:125","nodeType":"YulExpressionStatement","src":"23639:56:125"}]},"name":"abi_encode_tuple_t_address_t_enum$_TargetStatus_$38330__to_t_address_t_uint8__fromStack_reversed","nativeSrc":"23389:312:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23495:9:125","nodeType":"YulTypedName","src":"23495:9:125","type":""},{"name":"value1","nativeSrc":"23506:6:125","nodeType":"YulTypedName","src":"23506:6:125","type":""},{"name":"value0","nativeSrc":"23514:6:125","nodeType":"YulTypedName","src":"23514:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"23525:4:125","nodeType":"YulTypedName","src":"23525:4:125","type":""}],"src":"23389:312:125"},{"body":{"nativeSrc":"23772:200:125","nodeType":"YulBlock","src":"23772:200:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"23789:3:125","nodeType":"YulIdentifier","src":"23789:3:125"},{"name":"length","nativeSrc":"23794:6:125","nodeType":"YulIdentifier","src":"23794:6:125"}],"functionName":{"name":"mstore","nativeSrc":"23782:6:125","nodeType":"YulIdentifier","src":"23782:6:125"},"nativeSrc":"23782:19:125","nodeType":"YulFunctionCall","src":"23782:19:125"},"nativeSrc":"23782:19:125","nodeType":"YulExpressionStatement","src":"23782:19:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"23827:3:125","nodeType":"YulIdentifier","src":"23827:3:125"},{"kind":"number","nativeSrc":"23832:4:125","nodeType":"YulLiteral","src":"23832:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"23823:3:125","nodeType":"YulIdentifier","src":"23823:3:125"},"nativeSrc":"23823:14:125","nodeType":"YulFunctionCall","src":"23823:14:125"},{"name":"start","nativeSrc":"23839:5:125","nodeType":"YulIdentifier","src":"23839:5:125"},{"name":"length","nativeSrc":"23846:6:125","nodeType":"YulIdentifier","src":"23846:6:125"}],"functionName":{"name":"calldatacopy","nativeSrc":"23810:12:125","nodeType":"YulIdentifier","src":"23810:12:125"},"nativeSrc":"23810:43:125","nodeType":"YulFunctionCall","src":"23810:43:125"},"nativeSrc":"23810:43:125","nodeType":"YulExpressionStatement","src":"23810:43:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"23877:3:125","nodeType":"YulIdentifier","src":"23877:3:125"},{"name":"length","nativeSrc":"23882:6:125","nodeType":"YulIdentifier","src":"23882:6:125"}],"functionName":{"name":"add","nativeSrc":"23873:3:125","nodeType":"YulIdentifier","src":"23873:3:125"},"nativeSrc":"23873:16:125","nodeType":"YulFunctionCall","src":"23873:16:125"},{"kind":"number","nativeSrc":"23891:4:125","nodeType":"YulLiteral","src":"23891:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"23869:3:125","nodeType":"YulIdentifier","src":"23869:3:125"},"nativeSrc":"23869:27:125","nodeType":"YulFunctionCall","src":"23869:27:125"},{"kind":"number","nativeSrc":"23898:1:125","nodeType":"YulLiteral","src":"23898:1:125","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"23862:6:125","nodeType":"YulIdentifier","src":"23862:6:125"},"nativeSrc":"23862:38:125","nodeType":"YulFunctionCall","src":"23862:38:125"},"nativeSrc":"23862:38:125","nodeType":"YulExpressionStatement","src":"23862:38:125"},{"nativeSrc":"23909:57:125","nodeType":"YulAssignment","src":"23909:57:125","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"23924:3:125","nodeType":"YulIdentifier","src":"23924:3:125"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"23937:6:125","nodeType":"YulIdentifier","src":"23937:6:125"},{"kind":"number","nativeSrc":"23945:2:125","nodeType":"YulLiteral","src":"23945:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"23933:3:125","nodeType":"YulIdentifier","src":"23933:3:125"},"nativeSrc":"23933:15:125","nodeType":"YulFunctionCall","src":"23933:15:125"},{"arguments":[{"kind":"number","nativeSrc":"23954:2:125","nodeType":"YulLiteral","src":"23954:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"23950:3:125","nodeType":"YulIdentifier","src":"23950:3:125"},"nativeSrc":"23950:7:125","nodeType":"YulFunctionCall","src":"23950:7:125"}],"functionName":{"name":"and","nativeSrc":"23929:3:125","nodeType":"YulIdentifier","src":"23929:3:125"},"nativeSrc":"23929:29:125","nodeType":"YulFunctionCall","src":"23929:29:125"}],"functionName":{"name":"add","nativeSrc":"23920:3:125","nodeType":"YulIdentifier","src":"23920:3:125"},"nativeSrc":"23920:39:125","nodeType":"YulFunctionCall","src":"23920:39:125"},{"kind":"number","nativeSrc":"23961:4:125","nodeType":"YulLiteral","src":"23961:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"23916:3:125","nodeType":"YulIdentifier","src":"23916:3:125"},"nativeSrc":"23916:50:125","nodeType":"YulFunctionCall","src":"23916:50:125"},"variableNames":[{"name":"end","nativeSrc":"23909:3:125","nodeType":"YulIdentifier","src":"23909:3:125"}]}]},"name":"abi_encode_bytes_calldata","nativeSrc":"23706:266:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nativeSrc":"23741:5:125","nodeType":"YulTypedName","src":"23741:5:125","type":""},{"name":"length","nativeSrc":"23748:6:125","nodeType":"YulTypedName","src":"23748:6:125","type":""},{"name":"pos","nativeSrc":"23756:3:125","nodeType":"YulTypedName","src":"23756:3:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"23764:3:125","nodeType":"YulTypedName","src":"23764:3:125","type":""}],"src":"23706:266:125"},{"body":{"nativeSrc":"24186:1108:125","nodeType":"YulBlock","src":"24186:1108:125","statements":[{"nativeSrc":"24196:32:125","nodeType":"YulVariableDeclaration","src":"24196:32:125","value":{"arguments":[{"name":"headStart","nativeSrc":"24214:9:125","nodeType":"YulIdentifier","src":"24214:9:125"},{"kind":"number","nativeSrc":"24225:2:125","nodeType":"YulLiteral","src":"24225:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"24210:3:125","nodeType":"YulIdentifier","src":"24210:3:125"},"nativeSrc":"24210:18:125","nodeType":"YulFunctionCall","src":"24210:18:125"},"variables":[{"name":"tail_1","nativeSrc":"24200:6:125","nodeType":"YulTypedName","src":"24200:6:125","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"24244:9:125","nodeType":"YulIdentifier","src":"24244:9:125"},{"kind":"number","nativeSrc":"24255:2:125","nodeType":"YulLiteral","src":"24255:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"24237:6:125","nodeType":"YulIdentifier","src":"24237:6:125"},"nativeSrc":"24237:21:125","nodeType":"YulFunctionCall","src":"24237:21:125"},"nativeSrc":"24237:21:125","nodeType":"YulExpressionStatement","src":"24237:21:125"},{"nativeSrc":"24267:17:125","nodeType":"YulVariableDeclaration","src":"24267:17:125","value":{"name":"tail_1","nativeSrc":"24278:6:125","nodeType":"YulIdentifier","src":"24278:6:125"},"variables":[{"name":"pos","nativeSrc":"24271:3:125","nodeType":"YulTypedName","src":"24271:3:125","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"24300:6:125","nodeType":"YulIdentifier","src":"24300:6:125"},{"name":"value1","nativeSrc":"24308:6:125","nodeType":"YulIdentifier","src":"24308:6:125"}],"functionName":{"name":"mstore","nativeSrc":"24293:6:125","nodeType":"YulIdentifier","src":"24293:6:125"},"nativeSrc":"24293:22:125","nodeType":"YulFunctionCall","src":"24293:22:125"},"nativeSrc":"24293:22:125","nodeType":"YulExpressionStatement","src":"24293:22:125"},{"nativeSrc":"24324:25:125","nodeType":"YulAssignment","src":"24324:25:125","value":{"arguments":[{"name":"headStart","nativeSrc":"24335:9:125","nodeType":"YulIdentifier","src":"24335:9:125"},{"kind":"number","nativeSrc":"24346:2:125","nodeType":"YulLiteral","src":"24346:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"24331:3:125","nodeType":"YulIdentifier","src":"24331:3:125"},"nativeSrc":"24331:18:125","nodeType":"YulFunctionCall","src":"24331:18:125"},"variableNames":[{"name":"pos","nativeSrc":"24324:3:125","nodeType":"YulIdentifier","src":"24324:3:125"}]},{"nativeSrc":"24358:53:125","nodeType":"YulVariableDeclaration","src":"24358:53:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24380:9:125","nodeType":"YulIdentifier","src":"24380:9:125"},{"arguments":[{"kind":"number","nativeSrc":"24395:1:125","nodeType":"YulLiteral","src":"24395:1:125","type":"","value":"5"},{"name":"value1","nativeSrc":"24398:6:125","nodeType":"YulIdentifier","src":"24398:6:125"}],"functionName":{"name":"shl","nativeSrc":"24391:3:125","nodeType":"YulIdentifier","src":"24391:3:125"},"nativeSrc":"24391:14:125","nodeType":"YulFunctionCall","src":"24391:14:125"}],"functionName":{"name":"add","nativeSrc":"24376:3:125","nodeType":"YulIdentifier","src":"24376:3:125"},"nativeSrc":"24376:30:125","nodeType":"YulFunctionCall","src":"24376:30:125"},{"kind":"number","nativeSrc":"24408:2:125","nodeType":"YulLiteral","src":"24408:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"24372:3:125","nodeType":"YulIdentifier","src":"24372:3:125"},"nativeSrc":"24372:39:125","nodeType":"YulFunctionCall","src":"24372:39:125"},"variables":[{"name":"tail_2","nativeSrc":"24362:6:125","nodeType":"YulTypedName","src":"24362:6:125","type":""}]},{"nativeSrc":"24420:20:125","nodeType":"YulVariableDeclaration","src":"24420:20:125","value":{"name":"value0","nativeSrc":"24434:6:125","nodeType":"YulIdentifier","src":"24434:6:125"},"variables":[{"name":"srcPtr","nativeSrc":"24424:6:125","nodeType":"YulTypedName","src":"24424:6:125","type":""}]},{"nativeSrc":"24449:10:125","nodeType":"YulVariableDeclaration","src":"24449:10:125","value":{"kind":"number","nativeSrc":"24458:1:125","nodeType":"YulLiteral","src":"24458:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"24453:1:125","nodeType":"YulTypedName","src":"24453:1:125","type":""}]},{"nativeSrc":"24468:51:125","nodeType":"YulVariableDeclaration","src":"24468:51:125","value":{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"24486:12:125","nodeType":"YulIdentifier","src":"24486:12:125"},"nativeSrc":"24486:14:125","nodeType":"YulFunctionCall","src":"24486:14:125"},{"name":"value0","nativeSrc":"24502:6:125","nodeType":"YulIdentifier","src":"24502:6:125"}],"functionName":{"name":"sub","nativeSrc":"24482:3:125","nodeType":"YulIdentifier","src":"24482:3:125"},"nativeSrc":"24482:27:125","nodeType":"YulFunctionCall","src":"24482:27:125"},{"arguments":[{"kind":"number","nativeSrc":"24515:2:125","nodeType":"YulLiteral","src":"24515:2:125","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"24511:3:125","nodeType":"YulIdentifier","src":"24511:3:125"},"nativeSrc":"24511:7:125","nodeType":"YulFunctionCall","src":"24511:7:125"}],"functionName":{"name":"add","nativeSrc":"24478:3:125","nodeType":"YulIdentifier","src":"24478:3:125"},"nativeSrc":"24478:41:125","nodeType":"YulFunctionCall","src":"24478:41:125"},"variables":[{"name":"_1","nativeSrc":"24472:2:125","nodeType":"YulTypedName","src":"24472:2:125","type":""}]},{"body":{"nativeSrc":"24577:631:125","nodeType":"YulBlock","src":"24577:631:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"24598:3:125","nodeType":"YulIdentifier","src":"24598:3:125"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"24611:6:125","nodeType":"YulIdentifier","src":"24611:6:125"},{"name":"headStart","nativeSrc":"24619:9:125","nodeType":"YulIdentifier","src":"24619:9:125"}],"functionName":{"name":"sub","nativeSrc":"24607:3:125","nodeType":"YulIdentifier","src":"24607:3:125"},"nativeSrc":"24607:22:125","nodeType":"YulFunctionCall","src":"24607:22:125"},{"arguments":[{"kind":"number","nativeSrc":"24635:2:125","nodeType":"YulLiteral","src":"24635:2:125","type":"","value":"95"}],"functionName":{"name":"not","nativeSrc":"24631:3:125","nodeType":"YulIdentifier","src":"24631:3:125"},"nativeSrc":"24631:7:125","nodeType":"YulFunctionCall","src":"24631:7:125"}],"functionName":{"name":"add","nativeSrc":"24603:3:125","nodeType":"YulIdentifier","src":"24603:3:125"},"nativeSrc":"24603:36:125","nodeType":"YulFunctionCall","src":"24603:36:125"}],"functionName":{"name":"mstore","nativeSrc":"24591:6:125","nodeType":"YulIdentifier","src":"24591:6:125"},"nativeSrc":"24591:49:125","nodeType":"YulFunctionCall","src":"24591:49:125"},"nativeSrc":"24591:49:125","nodeType":"YulExpressionStatement","src":"24591:49:125"},{"nativeSrc":"24653:46:125","nodeType":"YulVariableDeclaration","src":"24653:46:125","value":{"arguments":[{"name":"srcPtr","nativeSrc":"24692:6:125","nodeType":"YulIdentifier","src":"24692:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"24679:12:125","nodeType":"YulIdentifier","src":"24679:12:125"},"nativeSrc":"24679:20:125","nodeType":"YulFunctionCall","src":"24679:20:125"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"24657:18:125","nodeType":"YulTypedName","src":"24657:18:125","type":""}]},{"body":{"nativeSrc":"24751:16:125","nodeType":"YulBlock","src":"24751:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24760:1:125","nodeType":"YulLiteral","src":"24760:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"24763:1:125","nodeType":"YulLiteral","src":"24763:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24753:6:125","nodeType":"YulIdentifier","src":"24753:6:125"},"nativeSrc":"24753:12:125","nodeType":"YulFunctionCall","src":"24753:12:125"},"nativeSrc":"24753:12:125","nodeType":"YulExpressionStatement","src":"24753:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"24726:18:125","nodeType":"YulIdentifier","src":"24726:18:125"},{"name":"_1","nativeSrc":"24746:2:125","nodeType":"YulIdentifier","src":"24746:2:125"}],"functionName":{"name":"slt","nativeSrc":"24722:3:125","nodeType":"YulIdentifier","src":"24722:3:125"},"nativeSrc":"24722:27:125","nodeType":"YulFunctionCall","src":"24722:27:125"}],"functionName":{"name":"iszero","nativeSrc":"24715:6:125","nodeType":"YulIdentifier","src":"24715:6:125"},"nativeSrc":"24715:35:125","nodeType":"YulFunctionCall","src":"24715:35:125"},"nativeSrc":"24712:55:125","nodeType":"YulIf","src":"24712:55:125"},{"nativeSrc":"24780:44:125","nodeType":"YulVariableDeclaration","src":"24780:44:125","value":{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"24797:18:125","nodeType":"YulIdentifier","src":"24797:18:125"},{"name":"value0","nativeSrc":"24817:6:125","nodeType":"YulIdentifier","src":"24817:6:125"}],"functionName":{"name":"add","nativeSrc":"24793:3:125","nodeType":"YulIdentifier","src":"24793:3:125"},"nativeSrc":"24793:31:125","nodeType":"YulFunctionCall","src":"24793:31:125"},"variables":[{"name":"value","nativeSrc":"24784:5:125","nodeType":"YulTypedName","src":"24784:5:125","type":""}]},{"nativeSrc":"24837:33:125","nodeType":"YulVariableDeclaration","src":"24837:33:125","value":{"arguments":[{"name":"value","nativeSrc":"24864:5:125","nodeType":"YulIdentifier","src":"24864:5:125"}],"functionName":{"name":"calldataload","nativeSrc":"24851:12:125","nodeType":"YulIdentifier","src":"24851:12:125"},"nativeSrc":"24851:19:125","nodeType":"YulFunctionCall","src":"24851:19:125"},"variables":[{"name":"length","nativeSrc":"24841:6:125","nodeType":"YulTypedName","src":"24841:6:125","type":""}]},{"nativeSrc":"24883:31:125","nodeType":"YulVariableDeclaration","src":"24883:31:125","value":{"arguments":[{"name":"value","nativeSrc":"24902:5:125","nodeType":"YulIdentifier","src":"24902:5:125"},{"kind":"number","nativeSrc":"24909:4:125","nodeType":"YulLiteral","src":"24909:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"24898:3:125","nodeType":"YulIdentifier","src":"24898:3:125"},"nativeSrc":"24898:16:125","nodeType":"YulFunctionCall","src":"24898:16:125"},"variables":[{"name":"value_1","nativeSrc":"24887:7:125","nodeType":"YulTypedName","src":"24887:7:125","type":""}]},{"body":{"nativeSrc":"24961:16:125","nodeType":"YulBlock","src":"24961:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24970:1:125","nodeType":"YulLiteral","src":"24970:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"24973:1:125","nodeType":"YulLiteral","src":"24973:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24963:6:125","nodeType":"YulIdentifier","src":"24963:6:125"},"nativeSrc":"24963:12:125","nodeType":"YulFunctionCall","src":"24963:12:125"},"nativeSrc":"24963:12:125","nodeType":"YulExpressionStatement","src":"24963:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"24933:6:125","nodeType":"YulIdentifier","src":"24933:6:125"},{"kind":"number","nativeSrc":"24941:18:125","nodeType":"YulLiteral","src":"24941:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"24930:2:125","nodeType":"YulIdentifier","src":"24930:2:125"},"nativeSrc":"24930:30:125","nodeType":"YulFunctionCall","src":"24930:30:125"},"nativeSrc":"24927:50:125","nodeType":"YulIf","src":"24927:50:125"},{"body":{"nativeSrc":"25035:16:125","nodeType":"YulBlock","src":"25035:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"25044:1:125","nodeType":"YulLiteral","src":"25044:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"25047:1:125","nodeType":"YulLiteral","src":"25047:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"25037:6:125","nodeType":"YulIdentifier","src":"25037:6:125"},"nativeSrc":"25037:12:125","nodeType":"YulFunctionCall","src":"25037:12:125"},"nativeSrc":"25037:12:125","nodeType":"YulExpressionStatement","src":"25037:12:125"}]},"condition":{"arguments":[{"name":"value_1","nativeSrc":"24997:7:125","nodeType":"YulIdentifier","src":"24997:7:125"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"25010:12:125","nodeType":"YulIdentifier","src":"25010:12:125"},"nativeSrc":"25010:14:125","nodeType":"YulFunctionCall","src":"25010:14:125"},{"name":"length","nativeSrc":"25026:6:125","nodeType":"YulIdentifier","src":"25026:6:125"}],"functionName":{"name":"sub","nativeSrc":"25006:3:125","nodeType":"YulIdentifier","src":"25006:3:125"},"nativeSrc":"25006:27:125","nodeType":"YulFunctionCall","src":"25006:27:125"}],"functionName":{"name":"sgt","nativeSrc":"24993:3:125","nodeType":"YulIdentifier","src":"24993:3:125"},"nativeSrc":"24993:41:125","nodeType":"YulFunctionCall","src":"24993:41:125"},"nativeSrc":"24990:61:125","nodeType":"YulIf","src":"24990:61:125"},{"nativeSrc":"25064:60:125","nodeType":"YulAssignment","src":"25064:60:125","value":{"arguments":[{"name":"value_1","nativeSrc":"25100:7:125","nodeType":"YulIdentifier","src":"25100:7:125"},{"name":"length","nativeSrc":"25109:6:125","nodeType":"YulIdentifier","src":"25109:6:125"},{"name":"tail_2","nativeSrc":"25117:6:125","nodeType":"YulIdentifier","src":"25117:6:125"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"25074:25:125","nodeType":"YulIdentifier","src":"25074:25:125"},"nativeSrc":"25074:50:125","nodeType":"YulFunctionCall","src":"25074:50:125"},"variableNames":[{"name":"tail_2","nativeSrc":"25064:6:125","nodeType":"YulIdentifier","src":"25064:6:125"}]},{"nativeSrc":"25137:27:125","nodeType":"YulAssignment","src":"25137:27:125","value":{"arguments":[{"name":"srcPtr","nativeSrc":"25151:6:125","nodeType":"YulIdentifier","src":"25151:6:125"},{"kind":"number","nativeSrc":"25159:4:125","nodeType":"YulLiteral","src":"25159:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"25147:3:125","nodeType":"YulIdentifier","src":"25147:3:125"},"nativeSrc":"25147:17:125","nodeType":"YulFunctionCall","src":"25147:17:125"},"variableNames":[{"name":"srcPtr","nativeSrc":"25137:6:125","nodeType":"YulIdentifier","src":"25137:6:125"}]},{"nativeSrc":"25177:21:125","nodeType":"YulAssignment","src":"25177:21:125","value":{"arguments":[{"name":"pos","nativeSrc":"25188:3:125","nodeType":"YulIdentifier","src":"25188:3:125"},{"kind":"number","nativeSrc":"25193:4:125","nodeType":"YulLiteral","src":"25193:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"25184:3:125","nodeType":"YulIdentifier","src":"25184:3:125"},"nativeSrc":"25184:14:125","nodeType":"YulFunctionCall","src":"25184:14:125"},"variableNames":[{"name":"pos","nativeSrc":"25177:3:125","nodeType":"YulIdentifier","src":"25177:3:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"24539:1:125","nodeType":"YulIdentifier","src":"24539:1:125"},{"name":"value1","nativeSrc":"24542:6:125","nodeType":"YulIdentifier","src":"24542:6:125"}],"functionName":{"name":"lt","nativeSrc":"24536:2:125","nodeType":"YulIdentifier","src":"24536:2:125"},"nativeSrc":"24536:13:125","nodeType":"YulFunctionCall","src":"24536:13:125"},"nativeSrc":"24528:680:125","nodeType":"YulForLoop","post":{"nativeSrc":"24550:18:125","nodeType":"YulBlock","src":"24550:18:125","statements":[{"nativeSrc":"24552:14:125","nodeType":"YulAssignment","src":"24552:14:125","value":{"arguments":[{"name":"i","nativeSrc":"24561:1:125","nodeType":"YulIdentifier","src":"24561:1:125"},{"kind":"number","nativeSrc":"24564:1:125","nodeType":"YulLiteral","src":"24564:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"24557:3:125","nodeType":"YulIdentifier","src":"24557:3:125"},"nativeSrc":"24557:9:125","nodeType":"YulFunctionCall","src":"24557:9:125"},"variableNames":[{"name":"i","nativeSrc":"24552:1:125","nodeType":"YulIdentifier","src":"24552:1:125"}]}]},"pre":{"nativeSrc":"24532:3:125","nodeType":"YulBlock","src":"24532:3:125","statements":[]},"src":"24528:680:125"},{"nativeSrc":"25217:14:125","nodeType":"YulAssignment","src":"25217:14:125","value":{"name":"tail_2","nativeSrc":"25225:6:125","nodeType":"YulIdentifier","src":"25225:6:125"},"variableNames":[{"name":"tail","nativeSrc":"25217:4:125","nodeType":"YulIdentifier","src":"25217:4:125"}]},{"expression":{"arguments":[{"name":"value2","nativeSrc":"25259:6:125","nodeType":"YulIdentifier","src":"25259:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"25271:9:125","nodeType":"YulIdentifier","src":"25271:9:125"},{"kind":"number","nativeSrc":"25282:4:125","nodeType":"YulLiteral","src":"25282:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"25267:3:125","nodeType":"YulIdentifier","src":"25267:3:125"},"nativeSrc":"25267:20:125","nodeType":"YulFunctionCall","src":"25267:20:125"}],"functionName":{"name":"abi_encode_address","nativeSrc":"25240:18:125","nodeType":"YulIdentifier","src":"25240:18:125"},"nativeSrc":"25240:48:125","nodeType":"YulFunctionCall","src":"25240:48:125"},"nativeSrc":"25240:48:125","nodeType":"YulExpressionStatement","src":"25240:48:125"}]},"name":"abi_encode_tuple_t_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr_t_address__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_t_address__fromStack_reversed","nativeSrc":"23977:1317:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24139:9:125","nodeType":"YulTypedName","src":"24139:9:125","type":""},{"name":"value2","nativeSrc":"24150:6:125","nodeType":"YulTypedName","src":"24150:6:125","type":""},{"name":"value1","nativeSrc":"24158:6:125","nodeType":"YulTypedName","src":"24158:6:125","type":""},{"name":"value0","nativeSrc":"24166:6:125","nodeType":"YulTypedName","src":"24166:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"24177:4:125","nodeType":"YulTypedName","src":"24177:4:125","type":""}],"src":"23977:1317:125"},{"body":{"nativeSrc":"25424:153:125","nodeType":"YulBlock","src":"25424:153:125","statements":[{"nativeSrc":"25434:26:125","nodeType":"YulAssignment","src":"25434:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"25446:9:125","nodeType":"YulIdentifier","src":"25446:9:125"},{"kind":"number","nativeSrc":"25457:2:125","nodeType":"YulLiteral","src":"25457:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25442:3:125","nodeType":"YulIdentifier","src":"25442:3:125"},"nativeSrc":"25442:18:125","nodeType":"YulFunctionCall","src":"25442:18:125"},"variableNames":[{"name":"tail","nativeSrc":"25434:4:125","nodeType":"YulIdentifier","src":"25434:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25476:9:125","nodeType":"YulIdentifier","src":"25476:9:125"},{"arguments":[{"name":"value0","nativeSrc":"25491:6:125","nodeType":"YulIdentifier","src":"25491:6:125"},{"kind":"number","nativeSrc":"25499:10:125","nodeType":"YulLiteral","src":"25499:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"25487:3:125","nodeType":"YulIdentifier","src":"25487:3:125"},"nativeSrc":"25487:23:125","nodeType":"YulFunctionCall","src":"25487:23:125"}],"functionName":{"name":"mstore","nativeSrc":"25469:6:125","nodeType":"YulIdentifier","src":"25469:6:125"},"nativeSrc":"25469:42:125","nodeType":"YulFunctionCall","src":"25469:42:125"},"nativeSrc":"25469:42:125","nodeType":"YulExpressionStatement","src":"25469:42:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25531:9:125","nodeType":"YulIdentifier","src":"25531:9:125"},{"kind":"number","nativeSrc":"25542:2:125","nodeType":"YulLiteral","src":"25542:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25527:3:125","nodeType":"YulIdentifier","src":"25527:3:125"},"nativeSrc":"25527:18:125","nodeType":"YulFunctionCall","src":"25527:18:125"},{"arguments":[{"name":"value1","nativeSrc":"25551:6:125","nodeType":"YulIdentifier","src":"25551:6:125"},{"kind":"number","nativeSrc":"25559:10:125","nodeType":"YulLiteral","src":"25559:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"25547:3:125","nodeType":"YulIdentifier","src":"25547:3:125"},"nativeSrc":"25547:23:125","nodeType":"YulFunctionCall","src":"25547:23:125"}],"functionName":{"name":"mstore","nativeSrc":"25520:6:125","nodeType":"YulIdentifier","src":"25520:6:125"},"nativeSrc":"25520:51:125","nodeType":"YulFunctionCall","src":"25520:51:125"},"nativeSrc":"25520:51:125","nodeType":"YulExpressionStatement","src":"25520:51:125"}]},"name":"abi_encode_tuple_t_uint32_t_uint32__to_t_uint32_t_uint32__fromStack_reversed","nativeSrc":"25299:278:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25385:9:125","nodeType":"YulTypedName","src":"25385:9:125","type":""},{"name":"value1","nativeSrc":"25396:6:125","nodeType":"YulTypedName","src":"25396:6:125","type":""},{"name":"value0","nativeSrc":"25404:6:125","nodeType":"YulTypedName","src":"25404:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25415:4:125","nodeType":"YulTypedName","src":"25415:4:125","type":""}],"src":"25299:278:125"},{"body":{"nativeSrc":"25709:119:125","nodeType":"YulBlock","src":"25709:119:125","statements":[{"nativeSrc":"25719:26:125","nodeType":"YulAssignment","src":"25719:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"25731:9:125","nodeType":"YulIdentifier","src":"25731:9:125"},{"kind":"number","nativeSrc":"25742:2:125","nodeType":"YulLiteral","src":"25742:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25727:3:125","nodeType":"YulIdentifier","src":"25727:3:125"},"nativeSrc":"25727:18:125","nodeType":"YulFunctionCall","src":"25727:18:125"},"variableNames":[{"name":"tail","nativeSrc":"25719:4:125","nodeType":"YulIdentifier","src":"25719:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25761:9:125","nodeType":"YulIdentifier","src":"25761:9:125"},{"name":"value0","nativeSrc":"25772:6:125","nodeType":"YulIdentifier","src":"25772:6:125"}],"functionName":{"name":"mstore","nativeSrc":"25754:6:125","nodeType":"YulIdentifier","src":"25754:6:125"},"nativeSrc":"25754:25:125","nodeType":"YulFunctionCall","src":"25754:25:125"},"nativeSrc":"25754:25:125","nodeType":"YulExpressionStatement","src":"25754:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25799:9:125","nodeType":"YulIdentifier","src":"25799:9:125"},{"kind":"number","nativeSrc":"25810:2:125","nodeType":"YulLiteral","src":"25810:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25795:3:125","nodeType":"YulIdentifier","src":"25795:3:125"},"nativeSrc":"25795:18:125","nodeType":"YulFunctionCall","src":"25795:18:125"},{"name":"value1","nativeSrc":"25815:6:125","nodeType":"YulIdentifier","src":"25815:6:125"}],"functionName":{"name":"mstore","nativeSrc":"25788:6:125","nodeType":"YulIdentifier","src":"25788:6:125"},"nativeSrc":"25788:34:125","nodeType":"YulFunctionCall","src":"25788:34:125"},"nativeSrc":"25788:34:125","nodeType":"YulExpressionStatement","src":"25788:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__fromStack_reversed","nativeSrc":"25582:246:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25670:9:125","nodeType":"YulTypedName","src":"25670:9:125","type":""},{"name":"value1","nativeSrc":"25681:6:125","nodeType":"YulTypedName","src":"25681:6:125","type":""},{"name":"value0","nativeSrc":"25689:6:125","nodeType":"YulTypedName","src":"25689:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25700:4:125","nodeType":"YulTypedName","src":"25700:4:125","type":""}],"src":"25582:246:125"},{"body":{"nativeSrc":"26040:310:125","nodeType":"YulBlock","src":"26040:310:125","statements":[{"nativeSrc":"26050:27:125","nodeType":"YulAssignment","src":"26050:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"26062:9:125","nodeType":"YulIdentifier","src":"26062:9:125"},{"kind":"number","nativeSrc":"26073:3:125","nodeType":"YulLiteral","src":"26073:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"26058:3:125","nodeType":"YulIdentifier","src":"26058:3:125"},"nativeSrc":"26058:19:125","nodeType":"YulFunctionCall","src":"26058:19:125"},"variableNames":[{"name":"tail","nativeSrc":"26050:4:125","nodeType":"YulIdentifier","src":"26050:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"26093:9:125","nodeType":"YulIdentifier","src":"26093:9:125"},{"arguments":[{"name":"value0","nativeSrc":"26108:6:125","nodeType":"YulIdentifier","src":"26108:6:125"},{"kind":"number","nativeSrc":"26116:10:125","nodeType":"YulLiteral","src":"26116:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"26104:3:125","nodeType":"YulIdentifier","src":"26104:3:125"},"nativeSrc":"26104:23:125","nodeType":"YulFunctionCall","src":"26104:23:125"}],"functionName":{"name":"mstore","nativeSrc":"26086:6:125","nodeType":"YulIdentifier","src":"26086:6:125"},"nativeSrc":"26086:42:125","nodeType":"YulFunctionCall","src":"26086:42:125"},"nativeSrc":"26086:42:125","nodeType":"YulExpressionStatement","src":"26086:42:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26148:9:125","nodeType":"YulIdentifier","src":"26148:9:125"},{"kind":"number","nativeSrc":"26159:2:125","nodeType":"YulLiteral","src":"26159:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"26144:3:125","nodeType":"YulIdentifier","src":"26144:3:125"},"nativeSrc":"26144:18:125","nodeType":"YulFunctionCall","src":"26144:18:125"},{"arguments":[{"name":"value1","nativeSrc":"26168:6:125","nodeType":"YulIdentifier","src":"26168:6:125"},{"kind":"number","nativeSrc":"26176:10:125","nodeType":"YulLiteral","src":"26176:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"26164:3:125","nodeType":"YulIdentifier","src":"26164:3:125"},"nativeSrc":"26164:23:125","nodeType":"YulFunctionCall","src":"26164:23:125"}],"functionName":{"name":"mstore","nativeSrc":"26137:6:125","nodeType":"YulIdentifier","src":"26137:6:125"},"nativeSrc":"26137:51:125","nodeType":"YulFunctionCall","src":"26137:51:125"},"nativeSrc":"26137:51:125","nodeType":"YulExpressionStatement","src":"26137:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26208:9:125","nodeType":"YulIdentifier","src":"26208:9:125"},{"kind":"number","nativeSrc":"26219:2:125","nodeType":"YulLiteral","src":"26219:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"26204:3:125","nodeType":"YulIdentifier","src":"26204:3:125"},"nativeSrc":"26204:18:125","nodeType":"YulFunctionCall","src":"26204:18:125"},{"name":"value2","nativeSrc":"26224:6:125","nodeType":"YulIdentifier","src":"26224:6:125"}],"functionName":{"name":"mstore","nativeSrc":"26197:6:125","nodeType":"YulIdentifier","src":"26197:6:125"},"nativeSrc":"26197:34:125","nodeType":"YulFunctionCall","src":"26197:34:125"},"nativeSrc":"26197:34:125","nodeType":"YulExpressionStatement","src":"26197:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26251:9:125","nodeType":"YulIdentifier","src":"26251:9:125"},{"kind":"number","nativeSrc":"26262:2:125","nodeType":"YulLiteral","src":"26262:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"26247:3:125","nodeType":"YulIdentifier","src":"26247:3:125"},"nativeSrc":"26247:18:125","nodeType":"YulFunctionCall","src":"26247:18:125"},{"name":"value3","nativeSrc":"26267:6:125","nodeType":"YulIdentifier","src":"26267:6:125"}],"functionName":{"name":"mstore","nativeSrc":"26240:6:125","nodeType":"YulIdentifier","src":"26240:6:125"},"nativeSrc":"26240:34:125","nodeType":"YulFunctionCall","src":"26240:34:125"},"nativeSrc":"26240:34:125","nodeType":"YulExpressionStatement","src":"26240:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26294:9:125","nodeType":"YulIdentifier","src":"26294:9:125"},{"kind":"number","nativeSrc":"26305:3:125","nodeType":"YulLiteral","src":"26305:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"26290:3:125","nodeType":"YulIdentifier","src":"26290:3:125"},"nativeSrc":"26290:19:125","nodeType":"YulFunctionCall","src":"26290:19:125"},{"arguments":[{"name":"value4","nativeSrc":"26315:6:125","nodeType":"YulIdentifier","src":"26315:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"26331:3:125","nodeType":"YulLiteral","src":"26331:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"26336:1:125","nodeType":"YulLiteral","src":"26336:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"26327:3:125","nodeType":"YulIdentifier","src":"26327:3:125"},"nativeSrc":"26327:11:125","nodeType":"YulFunctionCall","src":"26327:11:125"},{"kind":"number","nativeSrc":"26340:1:125","nodeType":"YulLiteral","src":"26340:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"26323:3:125","nodeType":"YulIdentifier","src":"26323:3:125"},"nativeSrc":"26323:19:125","nodeType":"YulFunctionCall","src":"26323:19:125"}],"functionName":{"name":"and","nativeSrc":"26311:3:125","nodeType":"YulIdentifier","src":"26311:3:125"},"nativeSrc":"26311:32:125","nodeType":"YulFunctionCall","src":"26311:32:125"}],"functionName":{"name":"mstore","nativeSrc":"26283:6:125","nodeType":"YulIdentifier","src":"26283:6:125"},"nativeSrc":"26283:61:125","nodeType":"YulFunctionCall","src":"26283:61:125"},"nativeSrc":"26283:61:125","nodeType":"YulExpressionStatement","src":"26283:61:125"}]},"name":"abi_encode_tuple_t_uint32_t_uint32_t_uint256_t_int256_t_address__to_t_uint32_t_uint32_t_uint256_t_int256_t_address__fromStack_reversed","nativeSrc":"25833:517:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25977:9:125","nodeType":"YulTypedName","src":"25977:9:125","type":""},{"name":"value4","nativeSrc":"25988:6:125","nodeType":"YulTypedName","src":"25988:6:125","type":""},{"name":"value3","nativeSrc":"25996:6:125","nodeType":"YulTypedName","src":"25996:6:125","type":""},{"name":"value2","nativeSrc":"26004:6:125","nodeType":"YulTypedName","src":"26004:6:125","type":""},{"name":"value1","nativeSrc":"26012:6:125","nodeType":"YulTypedName","src":"26012:6:125","type":""},{"name":"value0","nativeSrc":"26020:6:125","nodeType":"YulTypedName","src":"26020:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"26031:4:125","nodeType":"YulTypedName","src":"26031:4:125","type":""}],"src":"25833:517:125"},{"body":{"nativeSrc":"26401:102:125","nodeType":"YulBlock","src":"26401:102:125","statements":[{"nativeSrc":"26411:38:125","nodeType":"YulAssignment","src":"26411:38:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"26426:1:125","nodeType":"YulIdentifier","src":"26426:1:125"},{"kind":"number","nativeSrc":"26429:4:125","nodeType":"YulLiteral","src":"26429:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"26422:3:125","nodeType":"YulIdentifier","src":"26422:3:125"},"nativeSrc":"26422:12:125","nodeType":"YulFunctionCall","src":"26422:12:125"},{"arguments":[{"name":"y","nativeSrc":"26440:1:125","nodeType":"YulIdentifier","src":"26440:1:125"},{"kind":"number","nativeSrc":"26443:4:125","nodeType":"YulLiteral","src":"26443:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"26436:3:125","nodeType":"YulIdentifier","src":"26436:3:125"},"nativeSrc":"26436:12:125","nodeType":"YulFunctionCall","src":"26436:12:125"}],"functionName":{"name":"add","nativeSrc":"26418:3:125","nodeType":"YulIdentifier","src":"26418:3:125"},"nativeSrc":"26418:31:125","nodeType":"YulFunctionCall","src":"26418:31:125"},"variableNames":[{"name":"sum","nativeSrc":"26411:3:125","nodeType":"YulIdentifier","src":"26411:3:125"}]},{"body":{"nativeSrc":"26475:22:125","nodeType":"YulBlock","src":"26475:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"26477:16:125","nodeType":"YulIdentifier","src":"26477:16:125"},"nativeSrc":"26477:18:125","nodeType":"YulFunctionCall","src":"26477:18:125"},"nativeSrc":"26477:18:125","nodeType":"YulExpressionStatement","src":"26477:18:125"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"26464:3:125","nodeType":"YulIdentifier","src":"26464:3:125"},{"kind":"number","nativeSrc":"26469:4:125","nodeType":"YulLiteral","src":"26469:4:125","type":"","value":"0xff"}],"functionName":{"name":"gt","nativeSrc":"26461:2:125","nodeType":"YulIdentifier","src":"26461:2:125"},"nativeSrc":"26461:13:125","nodeType":"YulFunctionCall","src":"26461:13:125"},"nativeSrc":"26458:39:125","nodeType":"YulIf","src":"26458:39:125"}]},"name":"checked_add_t_uint8","nativeSrc":"26355:148:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"26384:1:125","nodeType":"YulTypedName","src":"26384:1:125","type":""},{"name":"y","nativeSrc":"26387:1:125","nodeType":"YulTypedName","src":"26387:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"26393:3:125","nodeType":"YulTypedName","src":"26393:3:125","type":""}],"src":"26355:148:125"},{"body":{"nativeSrc":"26638:201:125","nodeType":"YulBlock","src":"26638:201:125","statements":[{"body":{"nativeSrc":"26676:16:125","nodeType":"YulBlock","src":"26676:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26685:1:125","nodeType":"YulLiteral","src":"26685:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"26688:1:125","nodeType":"YulLiteral","src":"26688:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"26678:6:125","nodeType":"YulIdentifier","src":"26678:6:125"},"nativeSrc":"26678:12:125","nodeType":"YulFunctionCall","src":"26678:12:125"},"nativeSrc":"26678:12:125","nodeType":"YulExpressionStatement","src":"26678:12:125"}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"26654:10:125","nodeType":"YulIdentifier","src":"26654:10:125"},{"name":"endIndex","nativeSrc":"26666:8:125","nodeType":"YulIdentifier","src":"26666:8:125"}],"functionName":{"name":"gt","nativeSrc":"26651:2:125","nodeType":"YulIdentifier","src":"26651:2:125"},"nativeSrc":"26651:24:125","nodeType":"YulFunctionCall","src":"26651:24:125"},"nativeSrc":"26648:44:125","nodeType":"YulIf","src":"26648:44:125"},{"body":{"nativeSrc":"26725:16:125","nodeType":"YulBlock","src":"26725:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26734:1:125","nodeType":"YulLiteral","src":"26734:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"26737:1:125","nodeType":"YulLiteral","src":"26737:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"26727:6:125","nodeType":"YulIdentifier","src":"26727:6:125"},"nativeSrc":"26727:12:125","nodeType":"YulFunctionCall","src":"26727:12:125"},"nativeSrc":"26727:12:125","nodeType":"YulExpressionStatement","src":"26727:12:125"}]},"condition":{"arguments":[{"name":"endIndex","nativeSrc":"26707:8:125","nodeType":"YulIdentifier","src":"26707:8:125"},{"name":"length","nativeSrc":"26717:6:125","nodeType":"YulIdentifier","src":"26717:6:125"}],"functionName":{"name":"gt","nativeSrc":"26704:2:125","nodeType":"YulIdentifier","src":"26704:2:125"},"nativeSrc":"26704:20:125","nodeType":"YulFunctionCall","src":"26704:20:125"},"nativeSrc":"26701:40:125","nodeType":"YulIf","src":"26701:40:125"},{"nativeSrc":"26750:36:125","nodeType":"YulAssignment","src":"26750:36:125","value":{"arguments":[{"name":"offset","nativeSrc":"26767:6:125","nodeType":"YulIdentifier","src":"26767:6:125"},{"name":"startIndex","nativeSrc":"26775:10:125","nodeType":"YulIdentifier","src":"26775:10:125"}],"functionName":{"name":"add","nativeSrc":"26763:3:125","nodeType":"YulIdentifier","src":"26763:3:125"},"nativeSrc":"26763:23:125","nodeType":"YulFunctionCall","src":"26763:23:125"},"variableNames":[{"name":"offsetOut","nativeSrc":"26750:9:125","nodeType":"YulIdentifier","src":"26750:9:125"}]},{"nativeSrc":"26795:38:125","nodeType":"YulAssignment","src":"26795:38:125","value":{"arguments":[{"name":"endIndex","nativeSrc":"26812:8:125","nodeType":"YulIdentifier","src":"26812:8:125"},{"name":"startIndex","nativeSrc":"26822:10:125","nodeType":"YulIdentifier","src":"26822:10:125"}],"functionName":{"name":"sub","nativeSrc":"26808:3:125","nodeType":"YulIdentifier","src":"26808:3:125"},"nativeSrc":"26808:25:125","nodeType":"YulFunctionCall","src":"26808:25:125"},"variableNames":[{"name":"lengthOut","nativeSrc":"26795:9:125","nodeType":"YulIdentifier","src":"26795:9:125"}]}]},"name":"calldata_array_index_range_access_t_bytes_calldata_ptr","nativeSrc":"26508:331:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"26572:6:125","nodeType":"YulTypedName","src":"26572:6:125","type":""},{"name":"length","nativeSrc":"26580:6:125","nodeType":"YulTypedName","src":"26580:6:125","type":""},{"name":"startIndex","nativeSrc":"26588:10:125","nodeType":"YulTypedName","src":"26588:10:125","type":""},{"name":"endIndex","nativeSrc":"26600:8:125","nodeType":"YulTypedName","src":"26600:8:125","type":""}],"returnVariables":[{"name":"offsetOut","nativeSrc":"26613:9:125","nodeType":"YulTypedName","src":"26613:9:125","type":""},{"name":"lengthOut","nativeSrc":"26624:9:125","nodeType":"YulTypedName","src":"26624:9:125","type":""}],"src":"26508:331:125"},{"body":{"nativeSrc":"26944:238:125","nodeType":"YulBlock","src":"26944:238:125","statements":[{"nativeSrc":"26954:29:125","nodeType":"YulVariableDeclaration","src":"26954:29:125","value":{"arguments":[{"name":"array","nativeSrc":"26977:5:125","nodeType":"YulIdentifier","src":"26977:5:125"}],"functionName":{"name":"calldataload","nativeSrc":"26964:12:125","nodeType":"YulIdentifier","src":"26964:12:125"},"nativeSrc":"26964:19:125","nodeType":"YulFunctionCall","src":"26964:19:125"},"variables":[{"name":"_1","nativeSrc":"26958:2:125","nodeType":"YulTypedName","src":"26958:2:125","type":""}]},{"nativeSrc":"26992:38:125","nodeType":"YulAssignment","src":"26992:38:125","value":{"arguments":[{"name":"_1","nativeSrc":"27005:2:125","nodeType":"YulIdentifier","src":"27005:2:125"},{"arguments":[{"kind":"number","nativeSrc":"27013:3:125","nodeType":"YulLiteral","src":"27013:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"27018:10:125","nodeType":"YulLiteral","src":"27018:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"27009:3:125","nodeType":"YulIdentifier","src":"27009:3:125"},"nativeSrc":"27009:20:125","nodeType":"YulFunctionCall","src":"27009:20:125"}],"functionName":{"name":"and","nativeSrc":"27001:3:125","nodeType":"YulIdentifier","src":"27001:3:125"},"nativeSrc":"27001:29:125","nodeType":"YulFunctionCall","src":"27001:29:125"},"variableNames":[{"name":"value","nativeSrc":"26992:5:125","nodeType":"YulIdentifier","src":"26992:5:125"}]},{"body":{"nativeSrc":"27061:115:125","nodeType":"YulBlock","src":"27061:115:125","statements":[{"nativeSrc":"27075:91:125","nodeType":"YulAssignment","src":"27075:91:125","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"27092:2:125","nodeType":"YulIdentifier","src":"27092:2:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"27104:1:125","nodeType":"YulLiteral","src":"27104:1:125","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"27111:1:125","nodeType":"YulLiteral","src":"27111:1:125","type":"","value":"4"},{"name":"len","nativeSrc":"27114:3:125","nodeType":"YulIdentifier","src":"27114:3:125"}],"functionName":{"name":"sub","nativeSrc":"27107:3:125","nodeType":"YulIdentifier","src":"27107:3:125"},"nativeSrc":"27107:11:125","nodeType":"YulFunctionCall","src":"27107:11:125"}],"functionName":{"name":"shl","nativeSrc":"27100:3:125","nodeType":"YulIdentifier","src":"27100:3:125"},"nativeSrc":"27100:19:125","nodeType":"YulFunctionCall","src":"27100:19:125"},{"arguments":[{"kind":"number","nativeSrc":"27125:3:125","nodeType":"YulLiteral","src":"27125:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"27130:10:125","nodeType":"YulLiteral","src":"27130:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"27121:3:125","nodeType":"YulIdentifier","src":"27121:3:125"},"nativeSrc":"27121:20:125","nodeType":"YulFunctionCall","src":"27121:20:125"}],"functionName":{"name":"shl","nativeSrc":"27096:3:125","nodeType":"YulIdentifier","src":"27096:3:125"},"nativeSrc":"27096:46:125","nodeType":"YulFunctionCall","src":"27096:46:125"}],"functionName":{"name":"and","nativeSrc":"27088:3:125","nodeType":"YulIdentifier","src":"27088:3:125"},"nativeSrc":"27088:55:125","nodeType":"YulFunctionCall","src":"27088:55:125"},{"arguments":[{"kind":"number","nativeSrc":"27149:3:125","nodeType":"YulLiteral","src":"27149:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"27154:10:125","nodeType":"YulLiteral","src":"27154:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"27145:3:125","nodeType":"YulIdentifier","src":"27145:3:125"},"nativeSrc":"27145:20:125","nodeType":"YulFunctionCall","src":"27145:20:125"}],"functionName":{"name":"and","nativeSrc":"27084:3:125","nodeType":"YulIdentifier","src":"27084:3:125"},"nativeSrc":"27084:82:125","nodeType":"YulFunctionCall","src":"27084:82:125"},"variableNames":[{"name":"value","nativeSrc":"27075:5:125","nodeType":"YulIdentifier","src":"27075:5:125"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"27045:3:125","nodeType":"YulIdentifier","src":"27045:3:125"},{"kind":"number","nativeSrc":"27050:1:125","nodeType":"YulLiteral","src":"27050:1:125","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"27042:2:125","nodeType":"YulIdentifier","src":"27042:2:125"},"nativeSrc":"27042:10:125","nodeType":"YulFunctionCall","src":"27042:10:125"},"nativeSrc":"27039:137:125","nodeType":"YulIf","src":"27039:137:125"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes4","nativeSrc":"26844:338:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"26919:5:125","nodeType":"YulTypedName","src":"26919:5:125","type":""},{"name":"len","nativeSrc":"26926:3:125","nodeType":"YulTypedName","src":"26926:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"26934:5:125","nodeType":"YulTypedName","src":"26934:5:125","type":""}],"src":"26844:338:125"},{"body":{"nativeSrc":"27268:180:125","nodeType":"YulBlock","src":"27268:180:125","statements":[{"body":{"nativeSrc":"27314:16:125","nodeType":"YulBlock","src":"27314:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"27323:1:125","nodeType":"YulLiteral","src":"27323:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"27326:1:125","nodeType":"YulLiteral","src":"27326:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"27316:6:125","nodeType":"YulIdentifier","src":"27316:6:125"},"nativeSrc":"27316:12:125","nodeType":"YulFunctionCall","src":"27316:12:125"},"nativeSrc":"27316:12:125","nodeType":"YulExpressionStatement","src":"27316:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"27289:7:125","nodeType":"YulIdentifier","src":"27289:7:125"},{"name":"headStart","nativeSrc":"27298:9:125","nodeType":"YulIdentifier","src":"27298:9:125"}],"functionName":{"name":"sub","nativeSrc":"27285:3:125","nodeType":"YulIdentifier","src":"27285:3:125"},"nativeSrc":"27285:23:125","nodeType":"YulFunctionCall","src":"27285:23:125"},{"kind":"number","nativeSrc":"27310:2:125","nodeType":"YulLiteral","src":"27310:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"27281:3:125","nodeType":"YulIdentifier","src":"27281:3:125"},"nativeSrc":"27281:32:125","nodeType":"YulFunctionCall","src":"27281:32:125"},"nativeSrc":"27278:52:125","nodeType":"YulIf","src":"27278:52:125"},{"nativeSrc":"27339:29:125","nodeType":"YulVariableDeclaration","src":"27339:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"27358:9:125","nodeType":"YulIdentifier","src":"27358:9:125"}],"functionName":{"name":"mload","nativeSrc":"27352:5:125","nodeType":"YulIdentifier","src":"27352:5:125"},"nativeSrc":"27352:16:125","nodeType":"YulFunctionCall","src":"27352:16:125"},"variables":[{"name":"value","nativeSrc":"27343:5:125","nodeType":"YulTypedName","src":"27343:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"27412:5:125","nodeType":"YulIdentifier","src":"27412:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"27377:34:125","nodeType":"YulIdentifier","src":"27377:34:125"},"nativeSrc":"27377:41:125","nodeType":"YulFunctionCall","src":"27377:41:125"},"nativeSrc":"27377:41:125","nodeType":"YulExpressionStatement","src":"27377:41:125"},{"nativeSrc":"27427:15:125","nodeType":"YulAssignment","src":"27427:15:125","value":{"name":"value","nativeSrc":"27437:5:125","nodeType":"YulIdentifier","src":"27437:5:125"},"variableNames":[{"name":"value0","nativeSrc":"27427:6:125","nodeType":"YulIdentifier","src":"27427:6:125"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"27187:261:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27234:9:125","nodeType":"YulTypedName","src":"27234:9:125","type":""},{"name":"dataEnd","nativeSrc":"27245:7:125","nodeType":"YulTypedName","src":"27245:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"27257:6:125","nodeType":"YulTypedName","src":"27257:6:125","type":""}],"src":"27187:261:125"},{"body":{"nativeSrc":"27610:188:125","nodeType":"YulBlock","src":"27610:188:125","statements":[{"nativeSrc":"27620:26:125","nodeType":"YulAssignment","src":"27620:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"27632:9:125","nodeType":"YulIdentifier","src":"27632:9:125"},{"kind":"number","nativeSrc":"27643:2:125","nodeType":"YulLiteral","src":"27643:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"27628:3:125","nodeType":"YulIdentifier","src":"27628:3:125"},"nativeSrc":"27628:18:125","nodeType":"YulFunctionCall","src":"27628:18:125"},"variableNames":[{"name":"tail","nativeSrc":"27620:4:125","nodeType":"YulIdentifier","src":"27620:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"27662:9:125","nodeType":"YulIdentifier","src":"27662:9:125"},{"arguments":[{"name":"value0","nativeSrc":"27677:6:125","nodeType":"YulIdentifier","src":"27677:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"27693:3:125","nodeType":"YulLiteral","src":"27693:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"27698:1:125","nodeType":"YulLiteral","src":"27698:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"27689:3:125","nodeType":"YulIdentifier","src":"27689:3:125"},"nativeSrc":"27689:11:125","nodeType":"YulFunctionCall","src":"27689:11:125"},{"kind":"number","nativeSrc":"27702:1:125","nodeType":"YulLiteral","src":"27702:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"27685:3:125","nodeType":"YulIdentifier","src":"27685:3:125"},"nativeSrc":"27685:19:125","nodeType":"YulFunctionCall","src":"27685:19:125"}],"functionName":{"name":"and","nativeSrc":"27673:3:125","nodeType":"YulIdentifier","src":"27673:3:125"},"nativeSrc":"27673:32:125","nodeType":"YulFunctionCall","src":"27673:32:125"}],"functionName":{"name":"mstore","nativeSrc":"27655:6:125","nodeType":"YulIdentifier","src":"27655:6:125"},"nativeSrc":"27655:51:125","nodeType":"YulFunctionCall","src":"27655:51:125"},"nativeSrc":"27655:51:125","nodeType":"YulExpressionStatement","src":"27655:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27726:9:125","nodeType":"YulIdentifier","src":"27726:9:125"},{"kind":"number","nativeSrc":"27737:2:125","nodeType":"YulLiteral","src":"27737:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27722:3:125","nodeType":"YulIdentifier","src":"27722:3:125"},"nativeSrc":"27722:18:125","nodeType":"YulFunctionCall","src":"27722:18:125"},{"name":"value1","nativeSrc":"27742:6:125","nodeType":"YulIdentifier","src":"27742:6:125"}],"functionName":{"name":"mstore","nativeSrc":"27715:6:125","nodeType":"YulIdentifier","src":"27715:6:125"},"nativeSrc":"27715:34:125","nodeType":"YulFunctionCall","src":"27715:34:125"},"nativeSrc":"27715:34:125","nodeType":"YulExpressionStatement","src":"27715:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27769:9:125","nodeType":"YulIdentifier","src":"27769:9:125"},{"kind":"number","nativeSrc":"27780:2:125","nodeType":"YulLiteral","src":"27780:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"27765:3:125","nodeType":"YulIdentifier","src":"27765:3:125"},"nativeSrc":"27765:18:125","nodeType":"YulFunctionCall","src":"27765:18:125"},{"name":"value2","nativeSrc":"27785:6:125","nodeType":"YulIdentifier","src":"27785:6:125"}],"functionName":{"name":"mstore","nativeSrc":"27758:6:125","nodeType":"YulIdentifier","src":"27758:6:125"},"nativeSrc":"27758:34:125","nodeType":"YulFunctionCall","src":"27758:34:125"},"nativeSrc":"27758:34:125","nodeType":"YulExpressionStatement","src":"27758:34:125"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"27453:345:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27563:9:125","nodeType":"YulTypedName","src":"27563:9:125","type":""},{"name":"value2","nativeSrc":"27574:6:125","nodeType":"YulTypedName","src":"27574:6:125","type":""},{"name":"value1","nativeSrc":"27582:6:125","nodeType":"YulTypedName","src":"27582:6:125","type":""},{"name":"value0","nativeSrc":"27590:6:125","nodeType":"YulTypedName","src":"27590:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"27601:4:125","nodeType":"YulTypedName","src":"27601:4:125","type":""}],"src":"27453:345:125"},{"body":{"nativeSrc":"27932:145:125","nodeType":"YulBlock","src":"27932:145:125","statements":[{"nativeSrc":"27942:26:125","nodeType":"YulAssignment","src":"27942:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"27954:9:125","nodeType":"YulIdentifier","src":"27954:9:125"},{"kind":"number","nativeSrc":"27965:2:125","nodeType":"YulLiteral","src":"27965:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"27950:3:125","nodeType":"YulIdentifier","src":"27950:3:125"},"nativeSrc":"27950:18:125","nodeType":"YulFunctionCall","src":"27950:18:125"},"variableNames":[{"name":"tail","nativeSrc":"27942:4:125","nodeType":"YulIdentifier","src":"27942:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"27984:9:125","nodeType":"YulIdentifier","src":"27984:9:125"},{"name":"value0","nativeSrc":"27995:6:125","nodeType":"YulIdentifier","src":"27995:6:125"}],"functionName":{"name":"mstore","nativeSrc":"27977:6:125","nodeType":"YulIdentifier","src":"27977:6:125"},"nativeSrc":"27977:25:125","nodeType":"YulFunctionCall","src":"27977:25:125"},"nativeSrc":"27977:25:125","nodeType":"YulExpressionStatement","src":"27977:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28022:9:125","nodeType":"YulIdentifier","src":"28022:9:125"},{"kind":"number","nativeSrc":"28033:2:125","nodeType":"YulLiteral","src":"28033:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28018:3:125","nodeType":"YulIdentifier","src":"28018:3:125"},"nativeSrc":"28018:18:125","nodeType":"YulFunctionCall","src":"28018:18:125"},{"arguments":[{"name":"value1","nativeSrc":"28042:6:125","nodeType":"YulIdentifier","src":"28042:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28058:3:125","nodeType":"YulLiteral","src":"28058:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"28063:1:125","nodeType":"YulLiteral","src":"28063:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"28054:3:125","nodeType":"YulIdentifier","src":"28054:3:125"},"nativeSrc":"28054:11:125","nodeType":"YulFunctionCall","src":"28054:11:125"},{"kind":"number","nativeSrc":"28067:1:125","nodeType":"YulLiteral","src":"28067:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"28050:3:125","nodeType":"YulIdentifier","src":"28050:3:125"},"nativeSrc":"28050:19:125","nodeType":"YulFunctionCall","src":"28050:19:125"}],"functionName":{"name":"and","nativeSrc":"28038:3:125","nodeType":"YulIdentifier","src":"28038:3:125"},"nativeSrc":"28038:32:125","nodeType":"YulFunctionCall","src":"28038:32:125"}],"functionName":{"name":"mstore","nativeSrc":"28011:6:125","nodeType":"YulIdentifier","src":"28011:6:125"},"nativeSrc":"28011:60:125","nodeType":"YulFunctionCall","src":"28011:60:125"},"nativeSrc":"28011:60:125","nodeType":"YulExpressionStatement","src":"28011:60:125"}]},"name":"abi_encode_tuple_t_uint256_t_address__to_t_uint256_t_address__fromStack_reversed","nativeSrc":"27803:274:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27893:9:125","nodeType":"YulTypedName","src":"27893:9:125","type":""},{"name":"value1","nativeSrc":"27904:6:125","nodeType":"YulTypedName","src":"27904:6:125","type":""},{"name":"value0","nativeSrc":"27912:6:125","nodeType":"YulTypedName","src":"27912:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"27923:4:125","nodeType":"YulTypedName","src":"27923:4:125","type":""}],"src":"27803:274:125"},{"body":{"nativeSrc":"28265:272:125","nodeType":"YulBlock","src":"28265:272:125","statements":[{"nativeSrc":"28275:27:125","nodeType":"YulAssignment","src":"28275:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"28287:9:125","nodeType":"YulIdentifier","src":"28287:9:125"},{"kind":"number","nativeSrc":"28298:3:125","nodeType":"YulLiteral","src":"28298:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"28283:3:125","nodeType":"YulIdentifier","src":"28283:3:125"},"nativeSrc":"28283:19:125","nodeType":"YulFunctionCall","src":"28283:19:125"},"variableNames":[{"name":"tail","nativeSrc":"28275:4:125","nodeType":"YulIdentifier","src":"28275:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28318:9:125","nodeType":"YulIdentifier","src":"28318:9:125"},{"arguments":[{"name":"value0","nativeSrc":"28333:6:125","nodeType":"YulIdentifier","src":"28333:6:125"},{"kind":"number","nativeSrc":"28341:26:125","nodeType":"YulLiteral","src":"28341:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"28329:3:125","nodeType":"YulIdentifier","src":"28329:3:125"},"nativeSrc":"28329:39:125","nodeType":"YulFunctionCall","src":"28329:39:125"}],"functionName":{"name":"mstore","nativeSrc":"28311:6:125","nodeType":"YulIdentifier","src":"28311:6:125"},"nativeSrc":"28311:58:125","nodeType":"YulFunctionCall","src":"28311:58:125"},"nativeSrc":"28311:58:125","nodeType":"YulExpressionStatement","src":"28311:58:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28389:9:125","nodeType":"YulIdentifier","src":"28389:9:125"},{"kind":"number","nativeSrc":"28400:2:125","nodeType":"YulLiteral","src":"28400:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28385:3:125","nodeType":"YulIdentifier","src":"28385:3:125"},"nativeSrc":"28385:18:125","nodeType":"YulFunctionCall","src":"28385:18:125"},{"name":"value1","nativeSrc":"28405:6:125","nodeType":"YulIdentifier","src":"28405:6:125"}],"functionName":{"name":"mstore","nativeSrc":"28378:6:125","nodeType":"YulIdentifier","src":"28378:6:125"},"nativeSrc":"28378:34:125","nodeType":"YulFunctionCall","src":"28378:34:125"},"nativeSrc":"28378:34:125","nodeType":"YulExpressionStatement","src":"28378:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28432:9:125","nodeType":"YulIdentifier","src":"28432:9:125"},{"kind":"number","nativeSrc":"28443:2:125","nodeType":"YulLiteral","src":"28443:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28428:3:125","nodeType":"YulIdentifier","src":"28428:3:125"},"nativeSrc":"28428:18:125","nodeType":"YulFunctionCall","src":"28428:18:125"},{"arguments":[{"name":"value2","nativeSrc":"28452:6:125","nodeType":"YulIdentifier","src":"28452:6:125"},{"kind":"number","nativeSrc":"28460:26:125","nodeType":"YulLiteral","src":"28460:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"28448:3:125","nodeType":"YulIdentifier","src":"28448:3:125"},"nativeSrc":"28448:39:125","nodeType":"YulFunctionCall","src":"28448:39:125"}],"functionName":{"name":"mstore","nativeSrc":"28421:6:125","nodeType":"YulIdentifier","src":"28421:6:125"},"nativeSrc":"28421:67:125","nodeType":"YulFunctionCall","src":"28421:67:125"},"nativeSrc":"28421:67:125","nodeType":"YulExpressionStatement","src":"28421:67:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28508:9:125","nodeType":"YulIdentifier","src":"28508:9:125"},{"kind":"number","nativeSrc":"28519:2:125","nodeType":"YulLiteral","src":"28519:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"28504:3:125","nodeType":"YulIdentifier","src":"28504:3:125"},"nativeSrc":"28504:18:125","nodeType":"YulFunctionCall","src":"28504:18:125"},{"name":"value3","nativeSrc":"28524:6:125","nodeType":"YulIdentifier","src":"28524:6:125"}],"functionName":{"name":"mstore","nativeSrc":"28497:6:125","nodeType":"YulIdentifier","src":"28497:6:125"},"nativeSrc":"28497:34:125","nodeType":"YulFunctionCall","src":"28497:34:125"},"nativeSrc":"28497:34:125","nodeType":"YulExpressionStatement","src":"28497:34:125"}]},"name":"abi_encode_tuple_t_uint96_t_uint256_t_uint96_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"28082:455:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28210:9:125","nodeType":"YulTypedName","src":"28210:9:125","type":""},{"name":"value3","nativeSrc":"28221:6:125","nodeType":"YulTypedName","src":"28221:6:125","type":""},{"name":"value2","nativeSrc":"28229:6:125","nodeType":"YulTypedName","src":"28229:6:125","type":""},{"name":"value1","nativeSrc":"28237:6:125","nodeType":"YulTypedName","src":"28237:6:125","type":""},{"name":"value0","nativeSrc":"28245:6:125","nodeType":"YulTypedName","src":"28245:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28256:4:125","nodeType":"YulTypedName","src":"28256:4:125","type":""}],"src":"28082:455:125"},{"body":{"nativeSrc":"28706:405:125","nodeType":"YulBlock","src":"28706:405:125","statements":[{"nativeSrc":"28716:27:125","nodeType":"YulAssignment","src":"28716:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"28728:9:125","nodeType":"YulIdentifier","src":"28728:9:125"},{"kind":"number","nativeSrc":"28739:3:125","nodeType":"YulLiteral","src":"28739:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"28724:3:125","nodeType":"YulIdentifier","src":"28724:3:125"},"nativeSrc":"28724:19:125","nodeType":"YulFunctionCall","src":"28724:19:125"},"variableNames":[{"name":"tail","nativeSrc":"28716:4:125","nodeType":"YulIdentifier","src":"28716:4:125"}]},{"nativeSrc":"28752:30:125","nodeType":"YulVariableDeclaration","src":"28752:30:125","value":{"arguments":[{"name":"value0","nativeSrc":"28775:6:125","nodeType":"YulIdentifier","src":"28775:6:125"}],"functionName":{"name":"sload","nativeSrc":"28769:5:125","nodeType":"YulIdentifier","src":"28769:5:125"},"nativeSrc":"28769:13:125","nodeType":"YulFunctionCall","src":"28769:13:125"},"variables":[{"name":"slotValue","nativeSrc":"28756:9:125","nodeType":"YulTypedName","src":"28756:9:125","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28798:9:125","nodeType":"YulIdentifier","src":"28798:9:125"},{"arguments":[{"name":"slotValue","nativeSrc":"28813:9:125","nodeType":"YulIdentifier","src":"28813:9:125"},{"kind":"number","nativeSrc":"28824:10:125","nodeType":"YulLiteral","src":"28824:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"28809:3:125","nodeType":"YulIdentifier","src":"28809:3:125"},"nativeSrc":"28809:26:125","nodeType":"YulFunctionCall","src":"28809:26:125"}],"functionName":{"name":"mstore","nativeSrc":"28791:6:125","nodeType":"YulIdentifier","src":"28791:6:125"},"nativeSrc":"28791:45:125","nodeType":"YulFunctionCall","src":"28791:45:125"},"nativeSrc":"28791:45:125","nodeType":"YulExpressionStatement","src":"28791:45:125"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28882:2:125","nodeType":"YulLiteral","src":"28882:2:125","type":"","value":"32"},{"name":"slotValue","nativeSrc":"28886:9:125","nodeType":"YulIdentifier","src":"28886:9:125"}],"functionName":{"name":"shr","nativeSrc":"28878:3:125","nodeType":"YulIdentifier","src":"28878:3:125"},"nativeSrc":"28878:18:125","nodeType":"YulFunctionCall","src":"28878:18:125"},{"kind":"number","nativeSrc":"28898:4:125","nodeType":"YulLiteral","src":"28898:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"28874:3:125","nodeType":"YulIdentifier","src":"28874:3:125"},"nativeSrc":"28874:29:125","nodeType":"YulFunctionCall","src":"28874:29:125"},{"arguments":[{"name":"headStart","nativeSrc":"28909:9:125","nodeType":"YulIdentifier","src":"28909:9:125"},{"kind":"number","nativeSrc":"28920:2:125","nodeType":"YulLiteral","src":"28920:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28905:3:125","nodeType":"YulIdentifier","src":"28905:3:125"},"nativeSrc":"28905:18:125","nodeType":"YulFunctionCall","src":"28905:18:125"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"28845:28:125","nodeType":"YulIdentifier","src":"28845:28:125"},"nativeSrc":"28845:79:125","nodeType":"YulFunctionCall","src":"28845:79:125"},"nativeSrc":"28845:79:125","nodeType":"YulExpressionStatement","src":"28845:79:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28944:9:125","nodeType":"YulIdentifier","src":"28944:9:125"},{"kind":"number","nativeSrc":"28955:4:125","nodeType":"YulLiteral","src":"28955:4:125","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"28940:3:125","nodeType":"YulIdentifier","src":"28940:3:125"},"nativeSrc":"28940:20:125","nodeType":"YulFunctionCall","src":"28940:20:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"28970:2:125","nodeType":"YulLiteral","src":"28970:2:125","type":"","value":"40"},{"name":"slotValue","nativeSrc":"28974:9:125","nodeType":"YulIdentifier","src":"28974:9:125"}],"functionName":{"name":"shr","nativeSrc":"28966:3:125","nodeType":"YulIdentifier","src":"28966:3:125"},"nativeSrc":"28966:18:125","nodeType":"YulFunctionCall","src":"28966:18:125"},{"kind":"number","nativeSrc":"28986:26:125","nodeType":"YulLiteral","src":"28986:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"28962:3:125","nodeType":"YulIdentifier","src":"28962:3:125"},"nativeSrc":"28962:51:125","nodeType":"YulFunctionCall","src":"28962:51:125"}],"functionName":{"name":"mstore","nativeSrc":"28933:6:125","nodeType":"YulIdentifier","src":"28933:6:125"},"nativeSrc":"28933:81:125","nodeType":"YulFunctionCall","src":"28933:81:125"},"nativeSrc":"28933:81:125","nodeType":"YulExpressionStatement","src":"28933:81:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29034:9:125","nodeType":"YulIdentifier","src":"29034:9:125"},{"kind":"number","nativeSrc":"29045:4:125","nodeType":"YulLiteral","src":"29045:4:125","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"29030:3:125","nodeType":"YulIdentifier","src":"29030:3:125"},"nativeSrc":"29030:20:125","nodeType":"YulFunctionCall","src":"29030:20:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29060:3:125","nodeType":"YulLiteral","src":"29060:3:125","type":"","value":"136"},{"name":"slotValue","nativeSrc":"29065:9:125","nodeType":"YulIdentifier","src":"29065:9:125"}],"functionName":{"name":"shr","nativeSrc":"29056:3:125","nodeType":"YulIdentifier","src":"29056:3:125"},"nativeSrc":"29056:19:125","nodeType":"YulFunctionCall","src":"29056:19:125"},{"kind":"number","nativeSrc":"29077:26:125","nodeType":"YulLiteral","src":"29077:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"29052:3:125","nodeType":"YulIdentifier","src":"29052:3:125"},"nativeSrc":"29052:52:125","nodeType":"YulFunctionCall","src":"29052:52:125"}],"functionName":{"name":"mstore","nativeSrc":"29023:6:125","nodeType":"YulIdentifier","src":"29023:6:125"},"nativeSrc":"29023:82:125","nodeType":"YulFunctionCall","src":"29023:82:125"},"nativeSrc":"29023:82:125","nodeType":"YulExpressionStatement","src":"29023:82:125"}]},"name":"abi_encode_tuple_t_struct$_TargetConfig_$38340_storage_ptr__to_t_struct$_TargetConfig_$38340_memory_ptr__fromStack_reversed","nativeSrc":"28542:569:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28675:9:125","nodeType":"YulTypedName","src":"28675:9:125","type":""},{"name":"value0","nativeSrc":"28686:6:125","nodeType":"YulTypedName","src":"28686:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28697:4:125","nodeType":"YulTypedName","src":"28697:4:125","type":""}],"src":"28542:569:125"},{"body":{"nativeSrc":"29261:174:125","nodeType":"YulBlock","src":"29261:174:125","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"29278:3:125","nodeType":"YulIdentifier","src":"29278:3:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29291:2:125","nodeType":"YulLiteral","src":"29291:2:125","type":"","value":"96"},{"name":"value0","nativeSrc":"29295:6:125","nodeType":"YulIdentifier","src":"29295:6:125"}],"functionName":{"name":"shl","nativeSrc":"29287:3:125","nodeType":"YulIdentifier","src":"29287:3:125"},"nativeSrc":"29287:15:125","nodeType":"YulFunctionCall","src":"29287:15:125"},{"arguments":[{"kind":"number","nativeSrc":"29308:26:125","nodeType":"YulLiteral","src":"29308:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"29304:3:125","nodeType":"YulIdentifier","src":"29304:3:125"},"nativeSrc":"29304:31:125","nodeType":"YulFunctionCall","src":"29304:31:125"}],"functionName":{"name":"and","nativeSrc":"29283:3:125","nodeType":"YulIdentifier","src":"29283:3:125"},"nativeSrc":"29283:53:125","nodeType":"YulFunctionCall","src":"29283:53:125"}],"functionName":{"name":"mstore","nativeSrc":"29271:6:125","nodeType":"YulIdentifier","src":"29271:6:125"},"nativeSrc":"29271:66:125","nodeType":"YulFunctionCall","src":"29271:66:125"},"nativeSrc":"29271:66:125","nodeType":"YulExpressionStatement","src":"29271:66:125"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"29357:3:125","nodeType":"YulIdentifier","src":"29357:3:125"},{"kind":"number","nativeSrc":"29362:2:125","nodeType":"YulLiteral","src":"29362:2:125","type":"","value":"20"}],"functionName":{"name":"add","nativeSrc":"29353:3:125","nodeType":"YulIdentifier","src":"29353:3:125"},"nativeSrc":"29353:12:125","nodeType":"YulFunctionCall","src":"29353:12:125"},{"arguments":[{"name":"value1","nativeSrc":"29371:6:125","nodeType":"YulIdentifier","src":"29371:6:125"},{"arguments":[{"kind":"number","nativeSrc":"29383:3:125","nodeType":"YulLiteral","src":"29383:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"29388:10:125","nodeType":"YulLiteral","src":"29388:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"29379:3:125","nodeType":"YulIdentifier","src":"29379:3:125"},"nativeSrc":"29379:20:125","nodeType":"YulFunctionCall","src":"29379:20:125"}],"functionName":{"name":"and","nativeSrc":"29367:3:125","nodeType":"YulIdentifier","src":"29367:3:125"},"nativeSrc":"29367:33:125","nodeType":"YulFunctionCall","src":"29367:33:125"}],"functionName":{"name":"mstore","nativeSrc":"29346:6:125","nodeType":"YulIdentifier","src":"29346:6:125"},"nativeSrc":"29346:55:125","nodeType":"YulFunctionCall","src":"29346:55:125"},"nativeSrc":"29346:55:125","nodeType":"YulExpressionStatement","src":"29346:55:125"},{"nativeSrc":"29410:19:125","nodeType":"YulAssignment","src":"29410:19:125","value":{"arguments":[{"name":"pos","nativeSrc":"29421:3:125","nodeType":"YulIdentifier","src":"29421:3:125"},{"kind":"number","nativeSrc":"29426:2:125","nodeType":"YulLiteral","src":"29426:2:125","type":"","value":"24"}],"functionName":{"name":"add","nativeSrc":"29417:3:125","nodeType":"YulIdentifier","src":"29417:3:125"},"nativeSrc":"29417:12:125","nodeType":"YulFunctionCall","src":"29417:12:125"},"variableNames":[{"name":"end","nativeSrc":"29410:3:125","nodeType":"YulIdentifier","src":"29410:3:125"}]}]},"name":"abi_encode_tuple_packed_t_address_t_bytes4__to_t_address_t_bytes4__nonPadded_inplace_fromStack_reversed","nativeSrc":"29116:319:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"29229:3:125","nodeType":"YulTypedName","src":"29229:3:125","type":""},{"name":"value1","nativeSrc":"29234:6:125","nodeType":"YulTypedName","src":"29234:6:125","type":""},{"name":"value0","nativeSrc":"29242:6:125","nodeType":"YulTypedName","src":"29242:6:125","type":""}],"returnVariables":[{"name":"end","nativeSrc":"29253:3:125","nodeType":"YulTypedName","src":"29253:3:125","type":""}],"src":"29116:319:125"},{"body":{"nativeSrc":"29597:184:125","nodeType":"YulBlock","src":"29597:184:125","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29614:9:125","nodeType":"YulIdentifier","src":"29614:9:125"},{"kind":"number","nativeSrc":"29625:2:125","nodeType":"YulLiteral","src":"29625:2:125","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"29607:6:125","nodeType":"YulIdentifier","src":"29607:6:125"},"nativeSrc":"29607:21:125","nodeType":"YulFunctionCall","src":"29607:21:125"},"nativeSrc":"29607:21:125","nodeType":"YulExpressionStatement","src":"29607:21:125"},{"nativeSrc":"29637:69:125","nodeType":"YulAssignment","src":"29637:69:125","value":{"arguments":[{"name":"value0","nativeSrc":"29671:6:125","nodeType":"YulIdentifier","src":"29671:6:125"},{"name":"value1","nativeSrc":"29679:6:125","nodeType":"YulIdentifier","src":"29679:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"29691:9:125","nodeType":"YulIdentifier","src":"29691:9:125"},{"kind":"number","nativeSrc":"29702:2:125","nodeType":"YulLiteral","src":"29702:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29687:3:125","nodeType":"YulIdentifier","src":"29687:3:125"},"nativeSrc":"29687:18:125","nodeType":"YulFunctionCall","src":"29687:18:125"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"29645:25:125","nodeType":"YulIdentifier","src":"29645:25:125"},"nativeSrc":"29645:61:125","nodeType":"YulFunctionCall","src":"29645:61:125"},"variableNames":[{"name":"tail","nativeSrc":"29637:4:125","nodeType":"YulIdentifier","src":"29637:4:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29726:9:125","nodeType":"YulIdentifier","src":"29726:9:125"},{"kind":"number","nativeSrc":"29737:2:125","nodeType":"YulLiteral","src":"29737:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29722:3:125","nodeType":"YulIdentifier","src":"29722:3:125"},"nativeSrc":"29722:18:125","nodeType":"YulFunctionCall","src":"29722:18:125"},{"arguments":[{"name":"value2","nativeSrc":"29746:6:125","nodeType":"YulIdentifier","src":"29746:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29762:3:125","nodeType":"YulLiteral","src":"29762:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"29767:1:125","nodeType":"YulLiteral","src":"29767:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"29758:3:125","nodeType":"YulIdentifier","src":"29758:3:125"},"nativeSrc":"29758:11:125","nodeType":"YulFunctionCall","src":"29758:11:125"},{"kind":"number","nativeSrc":"29771:1:125","nodeType":"YulLiteral","src":"29771:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"29754:3:125","nodeType":"YulIdentifier","src":"29754:3:125"},"nativeSrc":"29754:19:125","nodeType":"YulFunctionCall","src":"29754:19:125"}],"functionName":{"name":"and","nativeSrc":"29742:3:125","nodeType":"YulIdentifier","src":"29742:3:125"},"nativeSrc":"29742:32:125","nodeType":"YulFunctionCall","src":"29742:32:125"}],"functionName":{"name":"mstore","nativeSrc":"29715:6:125","nodeType":"YulIdentifier","src":"29715:6:125"},"nativeSrc":"29715:60:125","nodeType":"YulFunctionCall","src":"29715:60:125"},"nativeSrc":"29715:60:125","nodeType":"YulExpressionStatement","src":"29715:60:125"}]},"name":"abi_encode_tuple_t_bytes_calldata_ptr_t_address__to_t_bytes_memory_ptr_t_address__fromStack_reversed","nativeSrc":"29440:341:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29550:9:125","nodeType":"YulTypedName","src":"29550:9:125","type":""},{"name":"value2","nativeSrc":"29561:6:125","nodeType":"YulTypedName","src":"29561:6:125","type":""},{"name":"value1","nativeSrc":"29569:6:125","nodeType":"YulTypedName","src":"29569:6:125","type":""},{"name":"value0","nativeSrc":"29577:6:125","nodeType":"YulTypedName","src":"29577:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29588:4:125","nodeType":"YulTypedName","src":"29588:4:125","type":""}],"src":"29440:341:125"},{"body":{"nativeSrc":"29845:110:125","nodeType":"YulBlock","src":"29845:110:125","statements":[{"nativeSrc":"29855:22:125","nodeType":"YulAssignment","src":"29855:22:125","value":{"arguments":[{"name":"offset","nativeSrc":"29870:6:125","nodeType":"YulIdentifier","src":"29870:6:125"}],"functionName":{"name":"mload","nativeSrc":"29864:5:125","nodeType":"YulIdentifier","src":"29864:5:125"},"nativeSrc":"29864:13:125","nodeType":"YulFunctionCall","src":"29864:13:125"},"variableNames":[{"name":"value","nativeSrc":"29855:5:125","nodeType":"YulIdentifier","src":"29855:5:125"}]},{"body":{"nativeSrc":"29933:16:125","nodeType":"YulBlock","src":"29933:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"29942:1:125","nodeType":"YulLiteral","src":"29942:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"29945:1:125","nodeType":"YulLiteral","src":"29945:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"29935:6:125","nodeType":"YulIdentifier","src":"29935:6:125"},"nativeSrc":"29935:12:125","nodeType":"YulFunctionCall","src":"29935:12:125"},"nativeSrc":"29935:12:125","nodeType":"YulExpressionStatement","src":"29935:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"29899:5:125","nodeType":"YulIdentifier","src":"29899:5:125"},{"arguments":[{"name":"value","nativeSrc":"29910:5:125","nodeType":"YulIdentifier","src":"29910:5:125"},{"kind":"number","nativeSrc":"29917:12:125","nodeType":"YulLiteral","src":"29917:12:125","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"29906:3:125","nodeType":"YulIdentifier","src":"29906:3:125"},"nativeSrc":"29906:24:125","nodeType":"YulFunctionCall","src":"29906:24:125"}],"functionName":{"name":"eq","nativeSrc":"29896:2:125","nodeType":"YulIdentifier","src":"29896:2:125"},"nativeSrc":"29896:35:125","nodeType":"YulFunctionCall","src":"29896:35:125"}],"functionName":{"name":"iszero","nativeSrc":"29889:6:125","nodeType":"YulIdentifier","src":"29889:6:125"},"nativeSrc":"29889:43:125","nodeType":"YulFunctionCall","src":"29889:43:125"},"nativeSrc":"29886:63:125","nodeType":"YulIf","src":"29886:63:125"}]},"name":"abi_decode_uint40_fromMemory","nativeSrc":"29786:169:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"29824:6:125","nodeType":"YulTypedName","src":"29824:6:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"29835:5:125","nodeType":"YulTypedName","src":"29835:5:125","type":""}],"src":"29786:169:125"},{"body":{"nativeSrc":"30069:1432:125","nodeType":"YulBlock","src":"30069:1432:125","statements":[{"nativeSrc":"30079:43:125","nodeType":"YulVariableDeclaration","src":"30079:43:125","value":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"30097:7:125","nodeType":"YulIdentifier","src":"30097:7:125"},{"name":"headStart","nativeSrc":"30106:9:125","nodeType":"YulIdentifier","src":"30106:9:125"}],"functionName":{"name":"sub","nativeSrc":"30093:3:125","nodeType":"YulIdentifier","src":"30093:3:125"},"nativeSrc":"30093:23:125","nodeType":"YulFunctionCall","src":"30093:23:125"},{"kind":"number","nativeSrc":"30118:3:125","nodeType":"YulLiteral","src":"30118:3:125","type":"","value":"384"}],"functionName":{"name":"slt","nativeSrc":"30089:3:125","nodeType":"YulIdentifier","src":"30089:3:125"},"nativeSrc":"30089:33:125","nodeType":"YulFunctionCall","src":"30089:33:125"},"variables":[{"name":"_1","nativeSrc":"30083:2:125","nodeType":"YulTypedName","src":"30083:2:125","type":""}]},{"body":{"nativeSrc":"30137:16:125","nodeType":"YulBlock","src":"30137:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"30146:1:125","nodeType":"YulLiteral","src":"30146:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"30149:1:125","nodeType":"YulLiteral","src":"30149:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"30139:6:125","nodeType":"YulIdentifier","src":"30139:6:125"},"nativeSrc":"30139:12:125","nodeType":"YulFunctionCall","src":"30139:12:125"},"nativeSrc":"30139:12:125","nodeType":"YulExpressionStatement","src":"30139:12:125"}]},"condition":{"name":"_1","nativeSrc":"30134:2:125","nodeType":"YulIdentifier","src":"30134:2:125"},"nativeSrc":"30131:22:125","nodeType":"YulIf","src":"30131:22:125"},{"nativeSrc":"30162:7:125","nodeType":"YulAssignment","src":"30162:7:125","value":{"kind":"number","nativeSrc":"30168:1:125","nodeType":"YulLiteral","src":"30168:1:125","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"30162:2:125","nodeType":"YulIdentifier","src":"30162:2:125"}]},{"nativeSrc":"30178:30:125","nodeType":"YulVariableDeclaration","src":"30178:30:125","value":{"arguments":[],"functionName":{"name":"allocate_memory","nativeSrc":"30191:15:125","nodeType":"YulIdentifier","src":"30191:15:125"},"nativeSrc":"30191:17:125","nodeType":"YulFunctionCall","src":"30191:17:125"},"variables":[{"name":"value","nativeSrc":"30182:5:125","nodeType":"YulTypedName","src":"30182:5:125","type":""}]},{"nativeSrc":"30217:16:125","nodeType":"YulVariableDeclaration","src":"30217:16:125","value":{"kind":"number","nativeSrc":"30232:1:125","nodeType":"YulLiteral","src":"30232:1:125","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"30221:7:125","nodeType":"YulTypedName","src":"30221:7:125","type":""}]},{"nativeSrc":"30242:27:125","nodeType":"YulAssignment","src":"30242:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"30259:9:125","nodeType":"YulIdentifier","src":"30259:9:125"}],"functionName":{"name":"mload","nativeSrc":"30253:5:125","nodeType":"YulIdentifier","src":"30253:5:125"},"nativeSrc":"30253:16:125","nodeType":"YulFunctionCall","src":"30253:16:125"},"variableNames":[{"name":"value_1","nativeSrc":"30242:7:125","nodeType":"YulIdentifier","src":"30242:7:125"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"30285:5:125","nodeType":"YulIdentifier","src":"30285:5:125"},{"name":"value_1","nativeSrc":"30292:7:125","nodeType":"YulIdentifier","src":"30292:7:125"}],"functionName":{"name":"mstore","nativeSrc":"30278:6:125","nodeType":"YulIdentifier","src":"30278:6:125"},"nativeSrc":"30278:22:125","nodeType":"YulFunctionCall","src":"30278:22:125"},"nativeSrc":"30278:22:125","nodeType":"YulExpressionStatement","src":"30278:22:125"},{"nativeSrc":"30309:16:125","nodeType":"YulVariableDeclaration","src":"30309:16:125","value":{"kind":"number","nativeSrc":"30324:1:125","nodeType":"YulLiteral","src":"30324:1:125","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"30313:7:125","nodeType":"YulTypedName","src":"30313:7:125","type":""}]},{"nativeSrc":"30334:36:125","nodeType":"YulAssignment","src":"30334:36:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30355:9:125","nodeType":"YulIdentifier","src":"30355:9:125"},{"kind":"number","nativeSrc":"30366:2:125","nodeType":"YulLiteral","src":"30366:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30351:3:125","nodeType":"YulIdentifier","src":"30351:3:125"},"nativeSrc":"30351:18:125","nodeType":"YulFunctionCall","src":"30351:18:125"}],"functionName":{"name":"mload","nativeSrc":"30345:5:125","nodeType":"YulIdentifier","src":"30345:5:125"},"nativeSrc":"30345:25:125","nodeType":"YulFunctionCall","src":"30345:25:125"},"variableNames":[{"name":"value_2","nativeSrc":"30334:7:125","nodeType":"YulIdentifier","src":"30334:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"30390:5:125","nodeType":"YulIdentifier","src":"30390:5:125"},{"kind":"number","nativeSrc":"30397:2:125","nodeType":"YulLiteral","src":"30397:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30386:3:125","nodeType":"YulIdentifier","src":"30386:3:125"},"nativeSrc":"30386:14:125","nodeType":"YulFunctionCall","src":"30386:14:125"},{"name":"value_2","nativeSrc":"30402:7:125","nodeType":"YulIdentifier","src":"30402:7:125"}],"functionName":{"name":"mstore","nativeSrc":"30379:6:125","nodeType":"YulIdentifier","src":"30379:6:125"},"nativeSrc":"30379:31:125","nodeType":"YulFunctionCall","src":"30379:31:125"},"nativeSrc":"30379:31:125","nodeType":"YulExpressionStatement","src":"30379:31:125"},{"nativeSrc":"30419:16:125","nodeType":"YulVariableDeclaration","src":"30419:16:125","value":{"kind":"number","nativeSrc":"30434:1:125","nodeType":"YulLiteral","src":"30434:1:125","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"30423:7:125","nodeType":"YulTypedName","src":"30423:7:125","type":""}]},{"nativeSrc":"30444:36:125","nodeType":"YulAssignment","src":"30444:36:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30465:9:125","nodeType":"YulIdentifier","src":"30465:9:125"},{"kind":"number","nativeSrc":"30476:2:125","nodeType":"YulLiteral","src":"30476:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30461:3:125","nodeType":"YulIdentifier","src":"30461:3:125"},"nativeSrc":"30461:18:125","nodeType":"YulFunctionCall","src":"30461:18:125"}],"functionName":{"name":"mload","nativeSrc":"30455:5:125","nodeType":"YulIdentifier","src":"30455:5:125"},"nativeSrc":"30455:25:125","nodeType":"YulFunctionCall","src":"30455:25:125"},"variableNames":[{"name":"value_3","nativeSrc":"30444:7:125","nodeType":"YulIdentifier","src":"30444:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"30500:5:125","nodeType":"YulIdentifier","src":"30500:5:125"},{"kind":"number","nativeSrc":"30507:2:125","nodeType":"YulLiteral","src":"30507:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30496:3:125","nodeType":"YulIdentifier","src":"30496:3:125"},"nativeSrc":"30496:14:125","nodeType":"YulFunctionCall","src":"30496:14:125"},{"name":"value_3","nativeSrc":"30512:7:125","nodeType":"YulIdentifier","src":"30512:7:125"}],"functionName":{"name":"mstore","nativeSrc":"30489:6:125","nodeType":"YulIdentifier","src":"30489:6:125"},"nativeSrc":"30489:31:125","nodeType":"YulFunctionCall","src":"30489:31:125"},"nativeSrc":"30489:31:125","nodeType":"YulExpressionStatement","src":"30489:31:125"},{"nativeSrc":"30529:16:125","nodeType":"YulVariableDeclaration","src":"30529:16:125","value":{"kind":"number","nativeSrc":"30544:1:125","nodeType":"YulLiteral","src":"30544:1:125","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"30533:7:125","nodeType":"YulTypedName","src":"30533:7:125","type":""}]},{"nativeSrc":"30554:36:125","nodeType":"YulAssignment","src":"30554:36:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30575:9:125","nodeType":"YulIdentifier","src":"30575:9:125"},{"kind":"number","nativeSrc":"30586:2:125","nodeType":"YulLiteral","src":"30586:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"30571:3:125","nodeType":"YulIdentifier","src":"30571:3:125"},"nativeSrc":"30571:18:125","nodeType":"YulFunctionCall","src":"30571:18:125"}],"functionName":{"name":"mload","nativeSrc":"30565:5:125","nodeType":"YulIdentifier","src":"30565:5:125"},"nativeSrc":"30565:25:125","nodeType":"YulFunctionCall","src":"30565:25:125"},"variableNames":[{"name":"value_4","nativeSrc":"30554:7:125","nodeType":"YulIdentifier","src":"30554:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"30610:5:125","nodeType":"YulIdentifier","src":"30610:5:125"},{"kind":"number","nativeSrc":"30617:2:125","nodeType":"YulLiteral","src":"30617:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"30606:3:125","nodeType":"YulIdentifier","src":"30606:3:125"},"nativeSrc":"30606:14:125","nodeType":"YulFunctionCall","src":"30606:14:125"},{"name":"value_4","nativeSrc":"30622:7:125","nodeType":"YulIdentifier","src":"30622:7:125"}],"functionName":{"name":"mstore","nativeSrc":"30599:6:125","nodeType":"YulIdentifier","src":"30599:6:125"},"nativeSrc":"30599:31:125","nodeType":"YulFunctionCall","src":"30599:31:125"},"nativeSrc":"30599:31:125","nodeType":"YulExpressionStatement","src":"30599:31:125"},{"nativeSrc":"30639:16:125","nodeType":"YulVariableDeclaration","src":"30639:16:125","value":{"kind":"number","nativeSrc":"30654:1:125","nodeType":"YulLiteral","src":"30654:1:125","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"30643:7:125","nodeType":"YulTypedName","src":"30643:7:125","type":""}]},{"nativeSrc":"30664:37:125","nodeType":"YulAssignment","src":"30664:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30685:9:125","nodeType":"YulIdentifier","src":"30685:9:125"},{"kind":"number","nativeSrc":"30696:3:125","nodeType":"YulLiteral","src":"30696:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"30681:3:125","nodeType":"YulIdentifier","src":"30681:3:125"},"nativeSrc":"30681:19:125","nodeType":"YulFunctionCall","src":"30681:19:125"}],"functionName":{"name":"mload","nativeSrc":"30675:5:125","nodeType":"YulIdentifier","src":"30675:5:125"},"nativeSrc":"30675:26:125","nodeType":"YulFunctionCall","src":"30675:26:125"},"variableNames":[{"name":"value_5","nativeSrc":"30664:7:125","nodeType":"YulIdentifier","src":"30664:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"30721:5:125","nodeType":"YulIdentifier","src":"30721:5:125"},{"kind":"number","nativeSrc":"30728:3:125","nodeType":"YulLiteral","src":"30728:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"30717:3:125","nodeType":"YulIdentifier","src":"30717:3:125"},"nativeSrc":"30717:15:125","nodeType":"YulFunctionCall","src":"30717:15:125"},{"name":"value_5","nativeSrc":"30734:7:125","nodeType":"YulIdentifier","src":"30734:7:125"}],"functionName":{"name":"mstore","nativeSrc":"30710:6:125","nodeType":"YulIdentifier","src":"30710:6:125"},"nativeSrc":"30710:32:125","nodeType":"YulFunctionCall","src":"30710:32:125"},"nativeSrc":"30710:32:125","nodeType":"YulExpressionStatement","src":"30710:32:125"},{"nativeSrc":"30751:16:125","nodeType":"YulVariableDeclaration","src":"30751:16:125","value":{"kind":"number","nativeSrc":"30766:1:125","nodeType":"YulLiteral","src":"30766:1:125","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"30755:7:125","nodeType":"YulTypedName","src":"30755:7:125","type":""}]},{"nativeSrc":"30776:37:125","nodeType":"YulAssignment","src":"30776:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30797:9:125","nodeType":"YulIdentifier","src":"30797:9:125"},{"kind":"number","nativeSrc":"30808:3:125","nodeType":"YulLiteral","src":"30808:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"30793:3:125","nodeType":"YulIdentifier","src":"30793:3:125"},"nativeSrc":"30793:19:125","nodeType":"YulFunctionCall","src":"30793:19:125"}],"functionName":{"name":"mload","nativeSrc":"30787:5:125","nodeType":"YulIdentifier","src":"30787:5:125"},"nativeSrc":"30787:26:125","nodeType":"YulFunctionCall","src":"30787:26:125"},"variableNames":[{"name":"value_6","nativeSrc":"30776:7:125","nodeType":"YulIdentifier","src":"30776:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"30833:5:125","nodeType":"YulIdentifier","src":"30833:5:125"},{"kind":"number","nativeSrc":"30840:3:125","nodeType":"YulLiteral","src":"30840:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"30829:3:125","nodeType":"YulIdentifier","src":"30829:3:125"},"nativeSrc":"30829:15:125","nodeType":"YulFunctionCall","src":"30829:15:125"},{"name":"value_6","nativeSrc":"30846:7:125","nodeType":"YulIdentifier","src":"30846:7:125"}],"functionName":{"name":"mstore","nativeSrc":"30822:6:125","nodeType":"YulIdentifier","src":"30822:6:125"},"nativeSrc":"30822:32:125","nodeType":"YulFunctionCall","src":"30822:32:125"},"nativeSrc":"30822:32:125","nodeType":"YulExpressionStatement","src":"30822:32:125"},{"nativeSrc":"30863:16:125","nodeType":"YulVariableDeclaration","src":"30863:16:125","value":{"kind":"number","nativeSrc":"30878:1:125","nodeType":"YulLiteral","src":"30878:1:125","type":"","value":"0"},"variables":[{"name":"value_7","nativeSrc":"30867:7:125","nodeType":"YulTypedName","src":"30867:7:125","type":""}]},{"nativeSrc":"30888:37:125","nodeType":"YulAssignment","src":"30888:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30909:9:125","nodeType":"YulIdentifier","src":"30909:9:125"},{"kind":"number","nativeSrc":"30920:3:125","nodeType":"YulLiteral","src":"30920:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"30905:3:125","nodeType":"YulIdentifier","src":"30905:3:125"},"nativeSrc":"30905:19:125","nodeType":"YulFunctionCall","src":"30905:19:125"}],"functionName":{"name":"mload","nativeSrc":"30899:5:125","nodeType":"YulIdentifier","src":"30899:5:125"},"nativeSrc":"30899:26:125","nodeType":"YulFunctionCall","src":"30899:26:125"},"variableNames":[{"name":"value_7","nativeSrc":"30888:7:125","nodeType":"YulIdentifier","src":"30888:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"30945:5:125","nodeType":"YulIdentifier","src":"30945:5:125"},{"kind":"number","nativeSrc":"30952:3:125","nodeType":"YulLiteral","src":"30952:3:125","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"30941:3:125","nodeType":"YulIdentifier","src":"30941:3:125"},"nativeSrc":"30941:15:125","nodeType":"YulFunctionCall","src":"30941:15:125"},{"name":"value_7","nativeSrc":"30958:7:125","nodeType":"YulIdentifier","src":"30958:7:125"}],"functionName":{"name":"mstore","nativeSrc":"30934:6:125","nodeType":"YulIdentifier","src":"30934:6:125"},"nativeSrc":"30934:32:125","nodeType":"YulFunctionCall","src":"30934:32:125"},"nativeSrc":"30934:32:125","nodeType":"YulExpressionStatement","src":"30934:32:125"},{"nativeSrc":"30975:16:125","nodeType":"YulVariableDeclaration","src":"30975:16:125","value":{"kind":"number","nativeSrc":"30990:1:125","nodeType":"YulLiteral","src":"30990:1:125","type":"","value":"0"},"variables":[{"name":"value_8","nativeSrc":"30979:7:125","nodeType":"YulTypedName","src":"30979:7:125","type":""}]},{"nativeSrc":"31000:37:125","nodeType":"YulAssignment","src":"31000:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31021:9:125","nodeType":"YulIdentifier","src":"31021:9:125"},{"kind":"number","nativeSrc":"31032:3:125","nodeType":"YulLiteral","src":"31032:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"31017:3:125","nodeType":"YulIdentifier","src":"31017:3:125"},"nativeSrc":"31017:19:125","nodeType":"YulFunctionCall","src":"31017:19:125"}],"functionName":{"name":"mload","nativeSrc":"31011:5:125","nodeType":"YulIdentifier","src":"31011:5:125"},"nativeSrc":"31011:26:125","nodeType":"YulFunctionCall","src":"31011:26:125"},"variableNames":[{"name":"value_8","nativeSrc":"31000:7:125","nodeType":"YulIdentifier","src":"31000:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"31057:5:125","nodeType":"YulIdentifier","src":"31057:5:125"},{"kind":"number","nativeSrc":"31064:3:125","nodeType":"YulLiteral","src":"31064:3:125","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"31053:3:125","nodeType":"YulIdentifier","src":"31053:3:125"},"nativeSrc":"31053:15:125","nodeType":"YulFunctionCall","src":"31053:15:125"},{"name":"value_8","nativeSrc":"31070:7:125","nodeType":"YulIdentifier","src":"31070:7:125"}],"functionName":{"name":"mstore","nativeSrc":"31046:6:125","nodeType":"YulIdentifier","src":"31046:6:125"},"nativeSrc":"31046:32:125","nodeType":"YulFunctionCall","src":"31046:32:125"},"nativeSrc":"31046:32:125","nodeType":"YulExpressionStatement","src":"31046:32:125"},{"nativeSrc":"31087:16:125","nodeType":"YulVariableDeclaration","src":"31087:16:125","value":{"kind":"number","nativeSrc":"31102:1:125","nodeType":"YulLiteral","src":"31102:1:125","type":"","value":"0"},"variables":[{"name":"value_9","nativeSrc":"31091:7:125","nodeType":"YulTypedName","src":"31091:7:125","type":""}]},{"nativeSrc":"31112:37:125","nodeType":"YulAssignment","src":"31112:37:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31133:9:125","nodeType":"YulIdentifier","src":"31133:9:125"},{"kind":"number","nativeSrc":"31144:3:125","nodeType":"YulLiteral","src":"31144:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"31129:3:125","nodeType":"YulIdentifier","src":"31129:3:125"},"nativeSrc":"31129:19:125","nodeType":"YulFunctionCall","src":"31129:19:125"}],"functionName":{"name":"mload","nativeSrc":"31123:5:125","nodeType":"YulIdentifier","src":"31123:5:125"},"nativeSrc":"31123:26:125","nodeType":"YulFunctionCall","src":"31123:26:125"},"variableNames":[{"name":"value_9","nativeSrc":"31112:7:125","nodeType":"YulIdentifier","src":"31112:7:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"31169:5:125","nodeType":"YulIdentifier","src":"31169:5:125"},{"kind":"number","nativeSrc":"31176:3:125","nodeType":"YulLiteral","src":"31176:3:125","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"31165:3:125","nodeType":"YulIdentifier","src":"31165:3:125"},"nativeSrc":"31165:15:125","nodeType":"YulFunctionCall","src":"31165:15:125"},{"name":"value_9","nativeSrc":"31182:7:125","nodeType":"YulIdentifier","src":"31182:7:125"}],"functionName":{"name":"mstore","nativeSrc":"31158:6:125","nodeType":"YulIdentifier","src":"31158:6:125"},"nativeSrc":"31158:32:125","nodeType":"YulFunctionCall","src":"31158:32:125"},"nativeSrc":"31158:32:125","nodeType":"YulExpressionStatement","src":"31158:32:125"},{"nativeSrc":"31199:17:125","nodeType":"YulVariableDeclaration","src":"31199:17:125","value":{"kind":"number","nativeSrc":"31215:1:125","nodeType":"YulLiteral","src":"31215:1:125","type":"","value":"0"},"variables":[{"name":"value_10","nativeSrc":"31203:8:125","nodeType":"YulTypedName","src":"31203:8:125","type":""}]},{"nativeSrc":"31225:38:125","nodeType":"YulAssignment","src":"31225:38:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31247:9:125","nodeType":"YulIdentifier","src":"31247:9:125"},{"kind":"number","nativeSrc":"31258:3:125","nodeType":"YulLiteral","src":"31258:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"31243:3:125","nodeType":"YulIdentifier","src":"31243:3:125"},"nativeSrc":"31243:19:125","nodeType":"YulFunctionCall","src":"31243:19:125"}],"functionName":{"name":"mload","nativeSrc":"31237:5:125","nodeType":"YulIdentifier","src":"31237:5:125"},"nativeSrc":"31237:26:125","nodeType":"YulFunctionCall","src":"31237:26:125"},"variableNames":[{"name":"value_10","nativeSrc":"31225:8:125","nodeType":"YulIdentifier","src":"31225:8:125"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"31283:5:125","nodeType":"YulIdentifier","src":"31283:5:125"},{"kind":"number","nativeSrc":"31290:3:125","nodeType":"YulLiteral","src":"31290:3:125","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"31279:3:125","nodeType":"YulIdentifier","src":"31279:3:125"},"nativeSrc":"31279:15:125","nodeType":"YulFunctionCall","src":"31279:15:125"},{"name":"value_10","nativeSrc":"31296:8:125","nodeType":"YulIdentifier","src":"31296:8:125"}],"functionName":{"name":"mstore","nativeSrc":"31272:6:125","nodeType":"YulIdentifier","src":"31272:6:125"},"nativeSrc":"31272:33:125","nodeType":"YulFunctionCall","src":"31272:33:125"},"nativeSrc":"31272:33:125","nodeType":"YulExpressionStatement","src":"31272:33:125"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"31325:5:125","nodeType":"YulIdentifier","src":"31325:5:125"},{"kind":"number","nativeSrc":"31332:3:125","nodeType":"YulLiteral","src":"31332:3:125","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"31321:3:125","nodeType":"YulIdentifier","src":"31321:3:125"},"nativeSrc":"31321:15:125","nodeType":"YulFunctionCall","src":"31321:15:125"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31371:9:125","nodeType":"YulIdentifier","src":"31371:9:125"},{"kind":"number","nativeSrc":"31382:3:125","nodeType":"YulLiteral","src":"31382:3:125","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"31367:3:125","nodeType":"YulIdentifier","src":"31367:3:125"},"nativeSrc":"31367:19:125","nodeType":"YulFunctionCall","src":"31367:19:125"}],"functionName":{"name":"abi_decode_uint40_fromMemory","nativeSrc":"31338:28:125","nodeType":"YulIdentifier","src":"31338:28:125"},"nativeSrc":"31338:49:125","nodeType":"YulFunctionCall","src":"31338:49:125"}],"functionName":{"name":"mstore","nativeSrc":"31314:6:125","nodeType":"YulIdentifier","src":"31314:6:125"},"nativeSrc":"31314:74:125","nodeType":"YulFunctionCall","src":"31314:74:125"},"nativeSrc":"31314:74:125","nodeType":"YulExpressionStatement","src":"31314:74:125"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"31408:5:125","nodeType":"YulIdentifier","src":"31408:5:125"},{"kind":"number","nativeSrc":"31415:3:125","nodeType":"YulLiteral","src":"31415:3:125","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"31404:3:125","nodeType":"YulIdentifier","src":"31404:3:125"},"nativeSrc":"31404:15:125","nodeType":"YulFunctionCall","src":"31404:15:125"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31454:9:125","nodeType":"YulIdentifier","src":"31454:9:125"},{"kind":"number","nativeSrc":"31465:3:125","nodeType":"YulLiteral","src":"31465:3:125","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"31450:3:125","nodeType":"YulIdentifier","src":"31450:3:125"},"nativeSrc":"31450:19:125","nodeType":"YulFunctionCall","src":"31450:19:125"}],"functionName":{"name":"abi_decode_uint40_fromMemory","nativeSrc":"31421:28:125","nodeType":"YulIdentifier","src":"31421:28:125"},"nativeSrc":"31421:49:125","nodeType":"YulFunctionCall","src":"31421:49:125"}],"functionName":{"name":"mstore","nativeSrc":"31397:6:125","nodeType":"YulIdentifier","src":"31397:6:125"},"nativeSrc":"31397:74:125","nodeType":"YulFunctionCall","src":"31397:74:125"},"nativeSrc":"31397:74:125","nodeType":"YulExpressionStatement","src":"31397:74:125"},{"nativeSrc":"31480:15:125","nodeType":"YulAssignment","src":"31480:15:125","value":{"name":"value","nativeSrc":"31490:5:125","nodeType":"YulIdentifier","src":"31490:5:125"},"variableNames":[{"name":"value0","nativeSrc":"31480:6:125","nodeType":"YulIdentifier","src":"31480:6:125"}]}]},"name":"abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptr_fromMemory","nativeSrc":"29960:1541:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30035:9:125","nodeType":"YulTypedName","src":"30035:9:125","type":""},{"name":"dataEnd","nativeSrc":"30046:7:125","nodeType":"YulTypedName","src":"30046:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"30058:6:125","nodeType":"YulTypedName","src":"30058:6:125","type":""}],"src":"29960:1541:125"},{"body":{"nativeSrc":"31538:95:125","nodeType":"YulBlock","src":"31538:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"31555:1:125","nodeType":"YulLiteral","src":"31555:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"31562:3:125","nodeType":"YulLiteral","src":"31562:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"31567:10:125","nodeType":"YulLiteral","src":"31567:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"31558:3:125","nodeType":"YulIdentifier","src":"31558:3:125"},"nativeSrc":"31558:20:125","nodeType":"YulFunctionCall","src":"31558:20:125"}],"functionName":{"name":"mstore","nativeSrc":"31548:6:125","nodeType":"YulIdentifier","src":"31548:6:125"},"nativeSrc":"31548:31:125","nodeType":"YulFunctionCall","src":"31548:31:125"},"nativeSrc":"31548:31:125","nodeType":"YulExpressionStatement","src":"31548:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"31595:1:125","nodeType":"YulLiteral","src":"31595:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"31598:4:125","nodeType":"YulLiteral","src":"31598:4:125","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"31588:6:125","nodeType":"YulIdentifier","src":"31588:6:125"},"nativeSrc":"31588:15:125","nodeType":"YulFunctionCall","src":"31588:15:125"},"nativeSrc":"31588:15:125","nodeType":"YulExpressionStatement","src":"31588:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"31619:1:125","nodeType":"YulLiteral","src":"31619:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"31622:4:125","nodeType":"YulLiteral","src":"31622:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"31612:6:125","nodeType":"YulIdentifier","src":"31612:6:125"},"nativeSrc":"31612:15:125","nodeType":"YulFunctionCall","src":"31612:15:125"},"nativeSrc":"31612:15:125","nodeType":"YulExpressionStatement","src":"31612:15:125"}]},"name":"panic_error_0x32","nativeSrc":"31506:127:125","nodeType":"YulFunctionDefinition","src":"31506:127:125"},{"body":{"nativeSrc":"31732:427:125","nodeType":"YulBlock","src":"31732:427:125","statements":[{"nativeSrc":"31742:51:125","nodeType":"YulVariableDeclaration","src":"31742:51:125","value":{"arguments":[{"name":"ptr_to_tail","nativeSrc":"31781:11:125","nodeType":"YulIdentifier","src":"31781:11:125"}],"functionName":{"name":"calldataload","nativeSrc":"31768:12:125","nodeType":"YulIdentifier","src":"31768:12:125"},"nativeSrc":"31768:25:125","nodeType":"YulFunctionCall","src":"31768:25:125"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"31746:18:125","nodeType":"YulTypedName","src":"31746:18:125","type":""}]},{"body":{"nativeSrc":"31882:16:125","nodeType":"YulBlock","src":"31882:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"31891:1:125","nodeType":"YulLiteral","src":"31891:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"31894:1:125","nodeType":"YulLiteral","src":"31894:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"31884:6:125","nodeType":"YulIdentifier","src":"31884:6:125"},"nativeSrc":"31884:12:125","nodeType":"YulFunctionCall","src":"31884:12:125"},"nativeSrc":"31884:12:125","nodeType":"YulExpressionStatement","src":"31884:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"31816:18:125","nodeType":"YulIdentifier","src":"31816:18:125"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"31844:12:125","nodeType":"YulIdentifier","src":"31844:12:125"},"nativeSrc":"31844:14:125","nodeType":"YulFunctionCall","src":"31844:14:125"},{"name":"base_ref","nativeSrc":"31860:8:125","nodeType":"YulIdentifier","src":"31860:8:125"}],"functionName":{"name":"sub","nativeSrc":"31840:3:125","nodeType":"YulIdentifier","src":"31840:3:125"},"nativeSrc":"31840:29:125","nodeType":"YulFunctionCall","src":"31840:29:125"},{"arguments":[{"kind":"number","nativeSrc":"31875:2:125","nodeType":"YulLiteral","src":"31875:2:125","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"31871:3:125","nodeType":"YulIdentifier","src":"31871:3:125"},"nativeSrc":"31871:7:125","nodeType":"YulFunctionCall","src":"31871:7:125"}],"functionName":{"name":"add","nativeSrc":"31836:3:125","nodeType":"YulIdentifier","src":"31836:3:125"},"nativeSrc":"31836:43:125","nodeType":"YulFunctionCall","src":"31836:43:125"}],"functionName":{"name":"slt","nativeSrc":"31812:3:125","nodeType":"YulIdentifier","src":"31812:3:125"},"nativeSrc":"31812:68:125","nodeType":"YulFunctionCall","src":"31812:68:125"}],"functionName":{"name":"iszero","nativeSrc":"31805:6:125","nodeType":"YulIdentifier","src":"31805:6:125"},"nativeSrc":"31805:76:125","nodeType":"YulFunctionCall","src":"31805:76:125"},"nativeSrc":"31802:96:125","nodeType":"YulIf","src":"31802:96:125"},{"nativeSrc":"31907:47:125","nodeType":"YulVariableDeclaration","src":"31907:47:125","value":{"arguments":[{"name":"base_ref","nativeSrc":"31925:8:125","nodeType":"YulIdentifier","src":"31925:8:125"},{"name":"rel_offset_of_tail","nativeSrc":"31935:18:125","nodeType":"YulIdentifier","src":"31935:18:125"}],"functionName":{"name":"add","nativeSrc":"31921:3:125","nodeType":"YulIdentifier","src":"31921:3:125"},"nativeSrc":"31921:33:125","nodeType":"YulFunctionCall","src":"31921:33:125"},"variables":[{"name":"addr_1","nativeSrc":"31911:6:125","nodeType":"YulTypedName","src":"31911:6:125","type":""}]},{"nativeSrc":"31963:30:125","nodeType":"YulAssignment","src":"31963:30:125","value":{"arguments":[{"name":"addr_1","nativeSrc":"31986:6:125","nodeType":"YulIdentifier","src":"31986:6:125"}],"functionName":{"name":"calldataload","nativeSrc":"31973:12:125","nodeType":"YulIdentifier","src":"31973:12:125"},"nativeSrc":"31973:20:125","nodeType":"YulFunctionCall","src":"31973:20:125"},"variableNames":[{"name":"length","nativeSrc":"31963:6:125","nodeType":"YulIdentifier","src":"31963:6:125"}]},{"body":{"nativeSrc":"32036:16:125","nodeType":"YulBlock","src":"32036:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32045:1:125","nodeType":"YulLiteral","src":"32045:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"32048:1:125","nodeType":"YulLiteral","src":"32048:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"32038:6:125","nodeType":"YulIdentifier","src":"32038:6:125"},"nativeSrc":"32038:12:125","nodeType":"YulFunctionCall","src":"32038:12:125"},"nativeSrc":"32038:12:125","nodeType":"YulExpressionStatement","src":"32038:12:125"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"32008:6:125","nodeType":"YulIdentifier","src":"32008:6:125"},{"kind":"number","nativeSrc":"32016:18:125","nodeType":"YulLiteral","src":"32016:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"32005:2:125","nodeType":"YulIdentifier","src":"32005:2:125"},"nativeSrc":"32005:30:125","nodeType":"YulFunctionCall","src":"32005:30:125"},"nativeSrc":"32002:50:125","nodeType":"YulIf","src":"32002:50:125"},{"nativeSrc":"32061:25:125","nodeType":"YulAssignment","src":"32061:25:125","value":{"arguments":[{"name":"addr_1","nativeSrc":"32073:6:125","nodeType":"YulIdentifier","src":"32073:6:125"},{"kind":"number","nativeSrc":"32081:4:125","nodeType":"YulLiteral","src":"32081:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"32069:3:125","nodeType":"YulIdentifier","src":"32069:3:125"},"nativeSrc":"32069:17:125","nodeType":"YulFunctionCall","src":"32069:17:125"},"variableNames":[{"name":"addr","nativeSrc":"32061:4:125","nodeType":"YulIdentifier","src":"32061:4:125"}]},{"body":{"nativeSrc":"32137:16:125","nodeType":"YulBlock","src":"32137:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32146:1:125","nodeType":"YulLiteral","src":"32146:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"32149:1:125","nodeType":"YulLiteral","src":"32149:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"32139:6:125","nodeType":"YulIdentifier","src":"32139:6:125"},"nativeSrc":"32139:12:125","nodeType":"YulFunctionCall","src":"32139:12:125"},"nativeSrc":"32139:12:125","nodeType":"YulExpressionStatement","src":"32139:12:125"}]},"condition":{"arguments":[{"name":"addr","nativeSrc":"32102:4:125","nodeType":"YulIdentifier","src":"32102:4:125"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"32112:12:125","nodeType":"YulIdentifier","src":"32112:12:125"},"nativeSrc":"32112:14:125","nodeType":"YulFunctionCall","src":"32112:14:125"},{"name":"length","nativeSrc":"32128:6:125","nodeType":"YulIdentifier","src":"32128:6:125"}],"functionName":{"name":"sub","nativeSrc":"32108:3:125","nodeType":"YulIdentifier","src":"32108:3:125"},"nativeSrc":"32108:27:125","nodeType":"YulFunctionCall","src":"32108:27:125"}],"functionName":{"name":"sgt","nativeSrc":"32098:3:125","nodeType":"YulIdentifier","src":"32098:3:125"},"nativeSrc":"32098:38:125","nodeType":"YulFunctionCall","src":"32098:38:125"},"nativeSrc":"32095:58:125","nodeType":"YulIf","src":"32095:58:125"}]},"name":"access_calldata_tail_t_bytes_calldata_ptr","nativeSrc":"31638:521:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"31689:8:125","nodeType":"YulTypedName","src":"31689:8:125","type":""},{"name":"ptr_to_tail","nativeSrc":"31699:11:125","nodeType":"YulTypedName","src":"31699:11:125","type":""}],"returnVariables":[{"name":"addr","nativeSrc":"31715:4:125","nodeType":"YulTypedName","src":"31715:4:125","type":""},{"name":"length","nativeSrc":"31721:6:125","nodeType":"YulTypedName","src":"31721:6:125","type":""}],"src":"31638:521:125"},{"body":{"nativeSrc":"32325:163:125","nodeType":"YulBlock","src":"32325:163:125","statements":[{"nativeSrc":"32335:26:125","nodeType":"YulAssignment","src":"32335:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"32347:9:125","nodeType":"YulIdentifier","src":"32347:9:125"},{"kind":"number","nativeSrc":"32358:2:125","nodeType":"YulLiteral","src":"32358:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"32343:3:125","nodeType":"YulIdentifier","src":"32343:3:125"},"nativeSrc":"32343:18:125","nodeType":"YulFunctionCall","src":"32343:18:125"},"variableNames":[{"name":"tail","nativeSrc":"32335:4:125","nodeType":"YulIdentifier","src":"32335:4:125"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"32399:6:125","nodeType":"YulIdentifier","src":"32399:6:125"},{"name":"headStart","nativeSrc":"32407:9:125","nodeType":"YulIdentifier","src":"32407:9:125"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"32370:28:125","nodeType":"YulIdentifier","src":"32370:28:125"},"nativeSrc":"32370:47:125","nodeType":"YulFunctionCall","src":"32370:47:125"},"nativeSrc":"32370:47:125","nodeType":"YulExpressionStatement","src":"32370:47:125"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"32455:6:125","nodeType":"YulIdentifier","src":"32455:6:125"},{"arguments":[{"name":"headStart","nativeSrc":"32467:9:125","nodeType":"YulIdentifier","src":"32467:9:125"},{"kind":"number","nativeSrc":"32478:2:125","nodeType":"YulLiteral","src":"32478:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32463:3:125","nodeType":"YulIdentifier","src":"32463:3:125"},"nativeSrc":"32463:18:125","nodeType":"YulFunctionCall","src":"32463:18:125"}],"functionName":{"name":"abi_encode_enum_TargetStatus","nativeSrc":"32426:28:125","nodeType":"YulIdentifier","src":"32426:28:125"},"nativeSrc":"32426:56:125","nodeType":"YulFunctionCall","src":"32426:56:125"},"nativeSrc":"32426:56:125","nodeType":"YulExpressionStatement","src":"32426:56:125"}]},"name":"abi_encode_tuple_t_enum$_TargetStatus_$38330_t_enum$_TargetStatus_$38330__to_t_uint8_t_uint8__fromStack_reversed","nativeSrc":"32164:324:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32286:9:125","nodeType":"YulTypedName","src":"32286:9:125","type":""},{"name":"value1","nativeSrc":"32297:6:125","nodeType":"YulTypedName","src":"32297:6:125","type":""},{"name":"value0","nativeSrc":"32305:6:125","nodeType":"YulTypedName","src":"32305:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"32316:4:125","nodeType":"YulTypedName","src":"32316:4:125","type":""}],"src":"32164:324:125"},{"body":{"nativeSrc":"32598:180:125","nodeType":"YulBlock","src":"32598:180:125","statements":[{"body":{"nativeSrc":"32644:16:125","nodeType":"YulBlock","src":"32644:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32653:1:125","nodeType":"YulLiteral","src":"32653:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"32656:1:125","nodeType":"YulLiteral","src":"32656:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"32646:6:125","nodeType":"YulIdentifier","src":"32646:6:125"},"nativeSrc":"32646:12:125","nodeType":"YulFunctionCall","src":"32646:12:125"},"nativeSrc":"32646:12:125","nodeType":"YulExpressionStatement","src":"32646:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"32619:7:125","nodeType":"YulIdentifier","src":"32619:7:125"},{"name":"headStart","nativeSrc":"32628:9:125","nodeType":"YulIdentifier","src":"32628:9:125"}],"functionName":{"name":"sub","nativeSrc":"32615:3:125","nodeType":"YulIdentifier","src":"32615:3:125"},"nativeSrc":"32615:23:125","nodeType":"YulFunctionCall","src":"32615:23:125"},{"kind":"number","nativeSrc":"32640:2:125","nodeType":"YulLiteral","src":"32640:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"32611:3:125","nodeType":"YulIdentifier","src":"32611:3:125"},"nativeSrc":"32611:32:125","nodeType":"YulFunctionCall","src":"32611:32:125"},"nativeSrc":"32608:52:125","nodeType":"YulIf","src":"32608:52:125"},{"nativeSrc":"32669:29:125","nodeType":"YulVariableDeclaration","src":"32669:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"32688:9:125","nodeType":"YulIdentifier","src":"32688:9:125"}],"functionName":{"name":"mload","nativeSrc":"32682:5:125","nodeType":"YulIdentifier","src":"32682:5:125"},"nativeSrc":"32682:16:125","nodeType":"YulFunctionCall","src":"32682:16:125"},"variables":[{"name":"value","nativeSrc":"32673:5:125","nodeType":"YulTypedName","src":"32673:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"32742:5:125","nodeType":"YulIdentifier","src":"32742:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"32707:34:125","nodeType":"YulIdentifier","src":"32707:34:125"},"nativeSrc":"32707:41:125","nodeType":"YulFunctionCall","src":"32707:41:125"},"nativeSrc":"32707:41:125","nodeType":"YulExpressionStatement","src":"32707:41:125"},{"nativeSrc":"32757:15:125","nodeType":"YulAssignment","src":"32757:15:125","value":{"name":"value","nativeSrc":"32767:5:125","nodeType":"YulIdentifier","src":"32767:5:125"},"variableNames":[{"name":"value0","nativeSrc":"32757:6:125","nodeType":"YulIdentifier","src":"32757:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory","nativeSrc":"32493:285:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32564:9:125","nodeType":"YulTypedName","src":"32564:9:125","type":""},{"name":"dataEnd","nativeSrc":"32575:7:125","nodeType":"YulTypedName","src":"32575:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"32587:6:125","nodeType":"YulTypedName","src":"32587:6:125","type":""}],"src":"32493:285:125"},{"body":{"nativeSrc":"32852:306:125","nodeType":"YulBlock","src":"32852:306:125","statements":[{"nativeSrc":"32862:10:125","nodeType":"YulAssignment","src":"32862:10:125","value":{"kind":"number","nativeSrc":"32871:1:125","nodeType":"YulLiteral","src":"32871:1:125","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"32862:5:125","nodeType":"YulIdentifier","src":"32862:5:125"}]},{"nativeSrc":"32881:13:125","nodeType":"YulAssignment","src":"32881:13:125","value":{"name":"_base","nativeSrc":"32889:5:125","nodeType":"YulIdentifier","src":"32889:5:125"},"variableNames":[{"name":"base","nativeSrc":"32881:4:125","nodeType":"YulIdentifier","src":"32881:4:125"}]},{"body":{"nativeSrc":"32939:213:125","nodeType":"YulBlock","src":"32939:213:125","statements":[{"body":{"nativeSrc":"32981:22:125","nodeType":"YulBlock","src":"32981:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"32983:16:125","nodeType":"YulIdentifier","src":"32983:16:125"},"nativeSrc":"32983:18:125","nodeType":"YulFunctionCall","src":"32983:18:125"},"nativeSrc":"32983:18:125","nodeType":"YulExpressionStatement","src":"32983:18:125"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"32959:4:125","nodeType":"YulIdentifier","src":"32959:4:125"},{"arguments":[{"name":"max","nativeSrc":"32969:3:125","nodeType":"YulIdentifier","src":"32969:3:125"},{"name":"base","nativeSrc":"32974:4:125","nodeType":"YulIdentifier","src":"32974:4:125"}],"functionName":{"name":"div","nativeSrc":"32965:3:125","nodeType":"YulIdentifier","src":"32965:3:125"},"nativeSrc":"32965:14:125","nodeType":"YulFunctionCall","src":"32965:14:125"}],"functionName":{"name":"gt","nativeSrc":"32956:2:125","nodeType":"YulIdentifier","src":"32956:2:125"},"nativeSrc":"32956:24:125","nodeType":"YulFunctionCall","src":"32956:24:125"},"nativeSrc":"32953:50:125","nodeType":"YulIf","src":"32953:50:125"},{"body":{"nativeSrc":"33036:29:125","nodeType":"YulBlock","src":"33036:29:125","statements":[{"nativeSrc":"33038:25:125","nodeType":"YulAssignment","src":"33038:25:125","value":{"arguments":[{"name":"power","nativeSrc":"33051:5:125","nodeType":"YulIdentifier","src":"33051:5:125"},{"name":"base","nativeSrc":"33058:4:125","nodeType":"YulIdentifier","src":"33058:4:125"}],"functionName":{"name":"mul","nativeSrc":"33047:3:125","nodeType":"YulIdentifier","src":"33047:3:125"},"nativeSrc":"33047:16:125","nodeType":"YulFunctionCall","src":"33047:16:125"},"variableNames":[{"name":"power","nativeSrc":"33038:5:125","nodeType":"YulIdentifier","src":"33038:5:125"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"33023:8:125","nodeType":"YulIdentifier","src":"33023:8:125"},{"kind":"number","nativeSrc":"33033:1:125","nodeType":"YulLiteral","src":"33033:1:125","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"33019:3:125","nodeType":"YulIdentifier","src":"33019:3:125"},"nativeSrc":"33019:16:125","nodeType":"YulFunctionCall","src":"33019:16:125"},"nativeSrc":"33016:49:125","nodeType":"YulIf","src":"33016:49:125"},{"nativeSrc":"33078:23:125","nodeType":"YulAssignment","src":"33078:23:125","value":{"arguments":[{"name":"base","nativeSrc":"33090:4:125","nodeType":"YulIdentifier","src":"33090:4:125"},{"name":"base","nativeSrc":"33096:4:125","nodeType":"YulIdentifier","src":"33096:4:125"}],"functionName":{"name":"mul","nativeSrc":"33086:3:125","nodeType":"YulIdentifier","src":"33086:3:125"},"nativeSrc":"33086:15:125","nodeType":"YulFunctionCall","src":"33086:15:125"},"variableNames":[{"name":"base","nativeSrc":"33078:4:125","nodeType":"YulIdentifier","src":"33078:4:125"}]},{"nativeSrc":"33114:28:125","nodeType":"YulAssignment","src":"33114:28:125","value":{"arguments":[{"kind":"number","nativeSrc":"33130:1:125","nodeType":"YulLiteral","src":"33130:1:125","type":"","value":"1"},{"name":"exponent","nativeSrc":"33133:8:125","nodeType":"YulIdentifier","src":"33133:8:125"}],"functionName":{"name":"shr","nativeSrc":"33126:3:125","nodeType":"YulIdentifier","src":"33126:3:125"},"nativeSrc":"33126:16:125","nodeType":"YulFunctionCall","src":"33126:16:125"},"variableNames":[{"name":"exponent","nativeSrc":"33114:8:125","nodeType":"YulIdentifier","src":"33114:8:125"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"32914:8:125","nodeType":"YulIdentifier","src":"32914:8:125"},{"kind":"number","nativeSrc":"32924:1:125","nodeType":"YulLiteral","src":"32924:1:125","type":"","value":"1"}],"functionName":{"name":"gt","nativeSrc":"32911:2:125","nodeType":"YulIdentifier","src":"32911:2:125"},"nativeSrc":"32911:15:125","nodeType":"YulFunctionCall","src":"32911:15:125"},"nativeSrc":"32903:249:125","nodeType":"YulForLoop","post":{"nativeSrc":"32927:3:125","nodeType":"YulBlock","src":"32927:3:125","statements":[]},"pre":{"nativeSrc":"32907:3:125","nodeType":"YulBlock","src":"32907:3:125","statements":[]},"src":"32903:249:125"}]},"name":"checked_exp_helper","nativeSrc":"32783:375:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"_base","nativeSrc":"32811:5:125","nodeType":"YulTypedName","src":"32811:5:125","type":""},{"name":"exponent","nativeSrc":"32818:8:125","nodeType":"YulTypedName","src":"32818:8:125","type":""},{"name":"max","nativeSrc":"32828:3:125","nodeType":"YulTypedName","src":"32828:3:125","type":""}],"returnVariables":[{"name":"power","nativeSrc":"32836:5:125","nodeType":"YulTypedName","src":"32836:5:125","type":""},{"name":"base","nativeSrc":"32843:4:125","nodeType":"YulTypedName","src":"32843:4:125","type":""}],"src":"32783:375:125"},{"body":{"nativeSrc":"33222:843:125","nodeType":"YulBlock","src":"33222:843:125","statements":[{"body":{"nativeSrc":"33260:52:125","nodeType":"YulBlock","src":"33260:52:125","statements":[{"nativeSrc":"33274:10:125","nodeType":"YulAssignment","src":"33274:10:125","value":{"kind":"number","nativeSrc":"33283:1:125","nodeType":"YulLiteral","src":"33283:1:125","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"33274:5:125","nodeType":"YulIdentifier","src":"33274:5:125"}]},{"nativeSrc":"33297:5:125","nodeType":"YulLeave","src":"33297:5:125"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"33242:8:125","nodeType":"YulIdentifier","src":"33242:8:125"}],"functionName":{"name":"iszero","nativeSrc":"33235:6:125","nodeType":"YulIdentifier","src":"33235:6:125"},"nativeSrc":"33235:16:125","nodeType":"YulFunctionCall","src":"33235:16:125"},"nativeSrc":"33232:80:125","nodeType":"YulIf","src":"33232:80:125"},{"body":{"nativeSrc":"33345:52:125","nodeType":"YulBlock","src":"33345:52:125","statements":[{"nativeSrc":"33359:10:125","nodeType":"YulAssignment","src":"33359:10:125","value":{"kind":"number","nativeSrc":"33368:1:125","nodeType":"YulLiteral","src":"33368:1:125","type":"","value":"0"},"variableNames":[{"name":"power","nativeSrc":"33359:5:125","nodeType":"YulIdentifier","src":"33359:5:125"}]},{"nativeSrc":"33382:5:125","nodeType":"YulLeave","src":"33382:5:125"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"33331:4:125","nodeType":"YulIdentifier","src":"33331:4:125"}],"functionName":{"name":"iszero","nativeSrc":"33324:6:125","nodeType":"YulIdentifier","src":"33324:6:125"},"nativeSrc":"33324:12:125","nodeType":"YulFunctionCall","src":"33324:12:125"},"nativeSrc":"33321:76:125","nodeType":"YulIf","src":"33321:76:125"},{"cases":[{"body":{"nativeSrc":"33433:52:125","nodeType":"YulBlock","src":"33433:52:125","statements":[{"nativeSrc":"33447:10:125","nodeType":"YulAssignment","src":"33447:10:125","value":{"kind":"number","nativeSrc":"33456:1:125","nodeType":"YulLiteral","src":"33456:1:125","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"33447:5:125","nodeType":"YulIdentifier","src":"33447:5:125"}]},{"nativeSrc":"33470:5:125","nodeType":"YulLeave","src":"33470:5:125"}]},"nativeSrc":"33426:59:125","nodeType":"YulCase","src":"33426:59:125","value":{"kind":"number","nativeSrc":"33431:1:125","nodeType":"YulLiteral","src":"33431:1:125","type":"","value":"1"}},{"body":{"nativeSrc":"33501:167:125","nodeType":"YulBlock","src":"33501:167:125","statements":[{"body":{"nativeSrc":"33536:22:125","nodeType":"YulBlock","src":"33536:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"33538:16:125","nodeType":"YulIdentifier","src":"33538:16:125"},"nativeSrc":"33538:18:125","nodeType":"YulFunctionCall","src":"33538:18:125"},"nativeSrc":"33538:18:125","nodeType":"YulExpressionStatement","src":"33538:18:125"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"33521:8:125","nodeType":"YulIdentifier","src":"33521:8:125"},{"kind":"number","nativeSrc":"33531:3:125","nodeType":"YulLiteral","src":"33531:3:125","type":"","value":"255"}],"functionName":{"name":"gt","nativeSrc":"33518:2:125","nodeType":"YulIdentifier","src":"33518:2:125"},"nativeSrc":"33518:17:125","nodeType":"YulFunctionCall","src":"33518:17:125"},"nativeSrc":"33515:43:125","nodeType":"YulIf","src":"33515:43:125"},{"nativeSrc":"33571:25:125","nodeType":"YulAssignment","src":"33571:25:125","value":{"arguments":[{"name":"exponent","nativeSrc":"33584:8:125","nodeType":"YulIdentifier","src":"33584:8:125"},{"kind":"number","nativeSrc":"33594:1:125","nodeType":"YulLiteral","src":"33594:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"33580:3:125","nodeType":"YulIdentifier","src":"33580:3:125"},"nativeSrc":"33580:16:125","nodeType":"YulFunctionCall","src":"33580:16:125"},"variableNames":[{"name":"power","nativeSrc":"33571:5:125","nodeType":"YulIdentifier","src":"33571:5:125"}]},{"nativeSrc":"33609:11:125","nodeType":"YulVariableDeclaration","src":"33609:11:125","value":{"kind":"number","nativeSrc":"33619:1:125","nodeType":"YulLiteral","src":"33619:1:125","type":"","value":"0"},"variables":[{"name":"_1","nativeSrc":"33613:2:125","nodeType":"YulTypedName","src":"33613:2:125","type":""}]},{"nativeSrc":"33633:7:125","nodeType":"YulAssignment","src":"33633:7:125","value":{"kind":"number","nativeSrc":"33639:1:125","nodeType":"YulLiteral","src":"33639:1:125","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"33633:2:125","nodeType":"YulIdentifier","src":"33633:2:125"}]},{"nativeSrc":"33653:5:125","nodeType":"YulLeave","src":"33653:5:125"}]},"nativeSrc":"33494:174:125","nodeType":"YulCase","src":"33494:174:125","value":{"kind":"number","nativeSrc":"33499:1:125","nodeType":"YulLiteral","src":"33499:1:125","type":"","value":"2"}}],"expression":{"name":"base","nativeSrc":"33413:4:125","nodeType":"YulIdentifier","src":"33413:4:125"},"nativeSrc":"33406:262:125","nodeType":"YulSwitch","src":"33406:262:125"},{"body":{"nativeSrc":"33766:114:125","nodeType":"YulBlock","src":"33766:114:125","statements":[{"nativeSrc":"33780:28:125","nodeType":"YulAssignment","src":"33780:28:125","value":{"arguments":[{"name":"base","nativeSrc":"33793:4:125","nodeType":"YulIdentifier","src":"33793:4:125"},{"name":"exponent","nativeSrc":"33799:8:125","nodeType":"YulIdentifier","src":"33799:8:125"}],"functionName":{"name":"exp","nativeSrc":"33789:3:125","nodeType":"YulIdentifier","src":"33789:3:125"},"nativeSrc":"33789:19:125","nodeType":"YulFunctionCall","src":"33789:19:125"},"variableNames":[{"name":"power","nativeSrc":"33780:5:125","nodeType":"YulIdentifier","src":"33780:5:125"}]},{"nativeSrc":"33821:11:125","nodeType":"YulVariableDeclaration","src":"33821:11:125","value":{"kind":"number","nativeSrc":"33831:1:125","nodeType":"YulLiteral","src":"33831:1:125","type":"","value":"0"},"variables":[{"name":"_2","nativeSrc":"33825:2:125","nodeType":"YulTypedName","src":"33825:2:125","type":""}]},{"nativeSrc":"33845:7:125","nodeType":"YulAssignment","src":"33845:7:125","value":{"kind":"number","nativeSrc":"33851:1:125","nodeType":"YulLiteral","src":"33851:1:125","type":"","value":"0"},"variableNames":[{"name":"_2","nativeSrc":"33845:2:125","nodeType":"YulIdentifier","src":"33845:2:125"}]},{"nativeSrc":"33865:5:125","nodeType":"YulLeave","src":"33865:5:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"base","nativeSrc":"33690:4:125","nodeType":"YulIdentifier","src":"33690:4:125"},{"kind":"number","nativeSrc":"33696:2:125","nodeType":"YulLiteral","src":"33696:2:125","type":"","value":"11"}],"functionName":{"name":"lt","nativeSrc":"33687:2:125","nodeType":"YulIdentifier","src":"33687:2:125"},"nativeSrc":"33687:12:125","nodeType":"YulFunctionCall","src":"33687:12:125"},{"arguments":[{"name":"exponent","nativeSrc":"33704:8:125","nodeType":"YulIdentifier","src":"33704:8:125"},{"kind":"number","nativeSrc":"33714:2:125","nodeType":"YulLiteral","src":"33714:2:125","type":"","value":"78"}],"functionName":{"name":"lt","nativeSrc":"33701:2:125","nodeType":"YulIdentifier","src":"33701:2:125"},"nativeSrc":"33701:16:125","nodeType":"YulFunctionCall","src":"33701:16:125"}],"functionName":{"name":"and","nativeSrc":"33683:3:125","nodeType":"YulIdentifier","src":"33683:3:125"},"nativeSrc":"33683:35:125","nodeType":"YulFunctionCall","src":"33683:35:125"},{"arguments":[{"arguments":[{"name":"base","nativeSrc":"33727:4:125","nodeType":"YulIdentifier","src":"33727:4:125"},{"kind":"number","nativeSrc":"33733:3:125","nodeType":"YulLiteral","src":"33733:3:125","type":"","value":"307"}],"functionName":{"name":"lt","nativeSrc":"33724:2:125","nodeType":"YulIdentifier","src":"33724:2:125"},"nativeSrc":"33724:13:125","nodeType":"YulFunctionCall","src":"33724:13:125"},{"arguments":[{"name":"exponent","nativeSrc":"33742:8:125","nodeType":"YulIdentifier","src":"33742:8:125"},{"kind":"number","nativeSrc":"33752:2:125","nodeType":"YulLiteral","src":"33752:2:125","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"33739:2:125","nodeType":"YulIdentifier","src":"33739:2:125"},"nativeSrc":"33739:16:125","nodeType":"YulFunctionCall","src":"33739:16:125"}],"functionName":{"name":"and","nativeSrc":"33720:3:125","nodeType":"YulIdentifier","src":"33720:3:125"},"nativeSrc":"33720:36:125","nodeType":"YulFunctionCall","src":"33720:36:125"}],"functionName":{"name":"or","nativeSrc":"33680:2:125","nodeType":"YulIdentifier","src":"33680:2:125"},"nativeSrc":"33680:77:125","nodeType":"YulFunctionCall","src":"33680:77:125"},"nativeSrc":"33677:203:125","nodeType":"YulIf","src":"33677:203:125"},{"nativeSrc":"33889:65:125","nodeType":"YulVariableDeclaration","src":"33889:65:125","value":{"arguments":[{"name":"base","nativeSrc":"33931:4:125","nodeType":"YulIdentifier","src":"33931:4:125"},{"name":"exponent","nativeSrc":"33937:8:125","nodeType":"YulIdentifier","src":"33937:8:125"},{"arguments":[{"kind":"number","nativeSrc":"33951:1:125","nodeType":"YulLiteral","src":"33951:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"33947:3:125","nodeType":"YulIdentifier","src":"33947:3:125"},"nativeSrc":"33947:6:125","nodeType":"YulFunctionCall","src":"33947:6:125"}],"functionName":{"name":"checked_exp_helper","nativeSrc":"33912:18:125","nodeType":"YulIdentifier","src":"33912:18:125"},"nativeSrc":"33912:42:125","nodeType":"YulFunctionCall","src":"33912:42:125"},"variables":[{"name":"power_1","nativeSrc":"33893:7:125","nodeType":"YulTypedName","src":"33893:7:125","type":""},{"name":"base_1","nativeSrc":"33902:6:125","nodeType":"YulTypedName","src":"33902:6:125","type":""}]},{"body":{"nativeSrc":"33999:22:125","nodeType":"YulBlock","src":"33999:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"34001:16:125","nodeType":"YulIdentifier","src":"34001:16:125"},"nativeSrc":"34001:18:125","nodeType":"YulFunctionCall","src":"34001:18:125"},"nativeSrc":"34001:18:125","nodeType":"YulExpressionStatement","src":"34001:18:125"}]},"condition":{"arguments":[{"name":"power_1","nativeSrc":"33969:7:125","nodeType":"YulIdentifier","src":"33969:7:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"33986:1:125","nodeType":"YulLiteral","src":"33986:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"33982:3:125","nodeType":"YulIdentifier","src":"33982:3:125"},"nativeSrc":"33982:6:125","nodeType":"YulFunctionCall","src":"33982:6:125"},{"name":"base_1","nativeSrc":"33990:6:125","nodeType":"YulIdentifier","src":"33990:6:125"}],"functionName":{"name":"div","nativeSrc":"33978:3:125","nodeType":"YulIdentifier","src":"33978:3:125"},"nativeSrc":"33978:19:125","nodeType":"YulFunctionCall","src":"33978:19:125"}],"functionName":{"name":"gt","nativeSrc":"33966:2:125","nodeType":"YulIdentifier","src":"33966:2:125"},"nativeSrc":"33966:32:125","nodeType":"YulFunctionCall","src":"33966:32:125"},"nativeSrc":"33963:58:125","nodeType":"YulIf","src":"33963:58:125"},{"nativeSrc":"34030:29:125","nodeType":"YulAssignment","src":"34030:29:125","value":{"arguments":[{"name":"power_1","nativeSrc":"34043:7:125","nodeType":"YulIdentifier","src":"34043:7:125"},{"name":"base_1","nativeSrc":"34052:6:125","nodeType":"YulIdentifier","src":"34052:6:125"}],"functionName":{"name":"mul","nativeSrc":"34039:3:125","nodeType":"YulIdentifier","src":"34039:3:125"},"nativeSrc":"34039:20:125","nodeType":"YulFunctionCall","src":"34039:20:125"},"variableNames":[{"name":"power","nativeSrc":"34030:5:125","nodeType":"YulIdentifier","src":"34030:5:125"}]}]},"name":"checked_exp_unsigned","nativeSrc":"33163:902:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"33193:4:125","nodeType":"YulTypedName","src":"33193:4:125","type":""},{"name":"exponent","nativeSrc":"33199:8:125","nodeType":"YulTypedName","src":"33199:8:125","type":""}],"returnVariables":[{"name":"power","nativeSrc":"33212:5:125","nodeType":"YulTypedName","src":"33212:5:125","type":""}],"src":"33163:902:125"},{"body":{"nativeSrc":"34138:72:125","nodeType":"YulBlock","src":"34138:72:125","statements":[{"nativeSrc":"34148:56:125","nodeType":"YulAssignment","src":"34148:56:125","value":{"arguments":[{"name":"base","nativeSrc":"34178:4:125","nodeType":"YulIdentifier","src":"34178:4:125"},{"arguments":[{"name":"exponent","nativeSrc":"34188:8:125","nodeType":"YulIdentifier","src":"34188:8:125"},{"kind":"number","nativeSrc":"34198:4:125","nodeType":"YulLiteral","src":"34198:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"34184:3:125","nodeType":"YulIdentifier","src":"34184:3:125"},"nativeSrc":"34184:19:125","nodeType":"YulFunctionCall","src":"34184:19:125"}],"functionName":{"name":"checked_exp_unsigned","nativeSrc":"34157:20:125","nodeType":"YulIdentifier","src":"34157:20:125"},"nativeSrc":"34157:47:125","nodeType":"YulFunctionCall","src":"34157:47:125"},"variableNames":[{"name":"power","nativeSrc":"34148:5:125","nodeType":"YulIdentifier","src":"34148:5:125"}]}]},"name":"checked_exp_t_uint256_t_uint8","nativeSrc":"34070:140:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"34109:4:125","nodeType":"YulTypedName","src":"34109:4:125","type":""},{"name":"exponent","nativeSrc":"34115:8:125","nodeType":"YulTypedName","src":"34115:8:125","type":""}],"returnVariables":[{"name":"power","nativeSrc":"34128:5:125","nodeType":"YulTypedName","src":"34128:5:125","type":""}],"src":"34070:140:125"},{"body":{"nativeSrc":"34320:180:125","nodeType":"YulBlock","src":"34320:180:125","statements":[{"body":{"nativeSrc":"34366:16:125","nodeType":"YulBlock","src":"34366:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"34375:1:125","nodeType":"YulLiteral","src":"34375:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"34378:1:125","nodeType":"YulLiteral","src":"34378:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"34368:6:125","nodeType":"YulIdentifier","src":"34368:6:125"},"nativeSrc":"34368:12:125","nodeType":"YulFunctionCall","src":"34368:12:125"},"nativeSrc":"34368:12:125","nodeType":"YulExpressionStatement","src":"34368:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"34341:7:125","nodeType":"YulIdentifier","src":"34341:7:125"},{"name":"headStart","nativeSrc":"34350:9:125","nodeType":"YulIdentifier","src":"34350:9:125"}],"functionName":{"name":"sub","nativeSrc":"34337:3:125","nodeType":"YulIdentifier","src":"34337:3:125"},"nativeSrc":"34337:23:125","nodeType":"YulFunctionCall","src":"34337:23:125"},{"kind":"number","nativeSrc":"34362:2:125","nodeType":"YulLiteral","src":"34362:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"34333:3:125","nodeType":"YulIdentifier","src":"34333:3:125"},"nativeSrc":"34333:32:125","nodeType":"YulFunctionCall","src":"34333:32:125"},"nativeSrc":"34330:52:125","nodeType":"YulIf","src":"34330:52:125"},{"nativeSrc":"34391:29:125","nodeType":"YulVariableDeclaration","src":"34391:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"34410:9:125","nodeType":"YulIdentifier","src":"34410:9:125"}],"functionName":{"name":"mload","nativeSrc":"34404:5:125","nodeType":"YulIdentifier","src":"34404:5:125"},"nativeSrc":"34404:16:125","nodeType":"YulFunctionCall","src":"34404:16:125"},"variables":[{"name":"value","nativeSrc":"34395:5:125","nodeType":"YulTypedName","src":"34395:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"34464:5:125","nodeType":"YulIdentifier","src":"34464:5:125"}],"functionName":{"name":"validator_revert_contract_IERC4626","nativeSrc":"34429:34:125","nodeType":"YulIdentifier","src":"34429:34:125"},"nativeSrc":"34429:41:125","nodeType":"YulFunctionCall","src":"34429:41:125"},"nativeSrc":"34429:41:125","nodeType":"YulExpressionStatement","src":"34429:41:125"},{"nativeSrc":"34479:15:125","nodeType":"YulAssignment","src":"34479:15:125","value":{"name":"value","nativeSrc":"34489:5:125","nodeType":"YulIdentifier","src":"34489:5:125"},"variableNames":[{"name":"value0","nativeSrc":"34479:6:125","nodeType":"YulIdentifier","src":"34479:6:125"}]}]},"name":"abi_decode_tuple_t_contract$_IAccessManager_$22178_fromMemory","nativeSrc":"34215:285:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34286:9:125","nodeType":"YulTypedName","src":"34286:9:125","type":""},{"name":"dataEnd","nativeSrc":"34297:7:125","nodeType":"YulTypedName","src":"34297:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"34309:6:125","nodeType":"YulTypedName","src":"34309:6:125","type":""}],"src":"34215:285:125"},{"body":{"nativeSrc":"34660:241:125","nodeType":"YulBlock","src":"34660:241:125","statements":[{"nativeSrc":"34670:26:125","nodeType":"YulAssignment","src":"34670:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"34682:9:125","nodeType":"YulIdentifier","src":"34682:9:125"},{"kind":"number","nativeSrc":"34693:2:125","nodeType":"YulLiteral","src":"34693:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"34678:3:125","nodeType":"YulIdentifier","src":"34678:3:125"},"nativeSrc":"34678:18:125","nodeType":"YulFunctionCall","src":"34678:18:125"},"variableNames":[{"name":"tail","nativeSrc":"34670:4:125","nodeType":"YulIdentifier","src":"34670:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"34712:9:125","nodeType":"YulIdentifier","src":"34712:9:125"},{"arguments":[{"name":"value0","nativeSrc":"34727:6:125","nodeType":"YulIdentifier","src":"34727:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34743:3:125","nodeType":"YulLiteral","src":"34743:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"34748:1:125","nodeType":"YulLiteral","src":"34748:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"34739:3:125","nodeType":"YulIdentifier","src":"34739:3:125"},"nativeSrc":"34739:11:125","nodeType":"YulFunctionCall","src":"34739:11:125"},{"kind":"number","nativeSrc":"34752:1:125","nodeType":"YulLiteral","src":"34752:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"34735:3:125","nodeType":"YulIdentifier","src":"34735:3:125"},"nativeSrc":"34735:19:125","nodeType":"YulFunctionCall","src":"34735:19:125"}],"functionName":{"name":"and","nativeSrc":"34723:3:125","nodeType":"YulIdentifier","src":"34723:3:125"},"nativeSrc":"34723:32:125","nodeType":"YulFunctionCall","src":"34723:32:125"}],"functionName":{"name":"mstore","nativeSrc":"34705:6:125","nodeType":"YulIdentifier","src":"34705:6:125"},"nativeSrc":"34705:51:125","nodeType":"YulFunctionCall","src":"34705:51:125"},"nativeSrc":"34705:51:125","nodeType":"YulExpressionStatement","src":"34705:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34776:9:125","nodeType":"YulIdentifier","src":"34776:9:125"},{"kind":"number","nativeSrc":"34787:2:125","nodeType":"YulLiteral","src":"34787:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"34772:3:125","nodeType":"YulIdentifier","src":"34772:3:125"},"nativeSrc":"34772:18:125","nodeType":"YulFunctionCall","src":"34772:18:125"},{"arguments":[{"name":"value1","nativeSrc":"34796:6:125","nodeType":"YulIdentifier","src":"34796:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34812:3:125","nodeType":"YulLiteral","src":"34812:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"34817:1:125","nodeType":"YulLiteral","src":"34817:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"34808:3:125","nodeType":"YulIdentifier","src":"34808:3:125"},"nativeSrc":"34808:11:125","nodeType":"YulFunctionCall","src":"34808:11:125"},{"kind":"number","nativeSrc":"34821:1:125","nodeType":"YulLiteral","src":"34821:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"34804:3:125","nodeType":"YulIdentifier","src":"34804:3:125"},"nativeSrc":"34804:19:125","nodeType":"YulFunctionCall","src":"34804:19:125"}],"functionName":{"name":"and","nativeSrc":"34792:3:125","nodeType":"YulIdentifier","src":"34792:3:125"},"nativeSrc":"34792:32:125","nodeType":"YulFunctionCall","src":"34792:32:125"}],"functionName":{"name":"mstore","nativeSrc":"34765:6:125","nodeType":"YulIdentifier","src":"34765:6:125"},"nativeSrc":"34765:60:125","nodeType":"YulFunctionCall","src":"34765:60:125"},"nativeSrc":"34765:60:125","nodeType":"YulExpressionStatement","src":"34765:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34845:9:125","nodeType":"YulIdentifier","src":"34845:9:125"},{"kind":"number","nativeSrc":"34856:2:125","nodeType":"YulLiteral","src":"34856:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"34841:3:125","nodeType":"YulIdentifier","src":"34841:3:125"},"nativeSrc":"34841:18:125","nodeType":"YulFunctionCall","src":"34841:18:125"},{"arguments":[{"name":"value2","nativeSrc":"34865:6:125","nodeType":"YulIdentifier","src":"34865:6:125"},{"arguments":[{"kind":"number","nativeSrc":"34877:3:125","nodeType":"YulLiteral","src":"34877:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"34882:10:125","nodeType":"YulLiteral","src":"34882:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"34873:3:125","nodeType":"YulIdentifier","src":"34873:3:125"},"nativeSrc":"34873:20:125","nodeType":"YulFunctionCall","src":"34873:20:125"}],"functionName":{"name":"and","nativeSrc":"34861:3:125","nodeType":"YulIdentifier","src":"34861:3:125"},"nativeSrc":"34861:33:125","nodeType":"YulFunctionCall","src":"34861:33:125"}],"functionName":{"name":"mstore","nativeSrc":"34834:6:125","nodeType":"YulIdentifier","src":"34834:6:125"},"nativeSrc":"34834:61:125","nodeType":"YulFunctionCall","src":"34834:61:125"},"nativeSrc":"34834:61:125","nodeType":"YulExpressionStatement","src":"34834:61:125"}]},"name":"abi_encode_tuple_t_address_t_address_t_bytes4__to_t_address_t_address_t_bytes4__fromStack_reversed","nativeSrc":"34505:396:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34613:9:125","nodeType":"YulTypedName","src":"34613:9:125","type":""},{"name":"value2","nativeSrc":"34624:6:125","nodeType":"YulTypedName","src":"34624:6:125","type":""},{"name":"value1","nativeSrc":"34632:6:125","nodeType":"YulTypedName","src":"34632:6:125","type":""},{"name":"value0","nativeSrc":"34640:6:125","nodeType":"YulTypedName","src":"34640:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"34651:4:125","nodeType":"YulTypedName","src":"34651:4:125","type":""}],"src":"34505:396:125"},{"body":{"nativeSrc":"35000:283:125","nodeType":"YulBlock","src":"35000:283:125","statements":[{"body":{"nativeSrc":"35046:16:125","nodeType":"YulBlock","src":"35046:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"35055:1:125","nodeType":"YulLiteral","src":"35055:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"35058:1:125","nodeType":"YulLiteral","src":"35058:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"35048:6:125","nodeType":"YulIdentifier","src":"35048:6:125"},"nativeSrc":"35048:12:125","nodeType":"YulFunctionCall","src":"35048:12:125"},"nativeSrc":"35048:12:125","nodeType":"YulExpressionStatement","src":"35048:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"35021:7:125","nodeType":"YulIdentifier","src":"35021:7:125"},{"name":"headStart","nativeSrc":"35030:9:125","nodeType":"YulIdentifier","src":"35030:9:125"}],"functionName":{"name":"sub","nativeSrc":"35017:3:125","nodeType":"YulIdentifier","src":"35017:3:125"},"nativeSrc":"35017:23:125","nodeType":"YulFunctionCall","src":"35017:23:125"},{"kind":"number","nativeSrc":"35042:2:125","nodeType":"YulLiteral","src":"35042:2:125","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"35013:3:125","nodeType":"YulIdentifier","src":"35013:3:125"},"nativeSrc":"35013:32:125","nodeType":"YulFunctionCall","src":"35013:32:125"},"nativeSrc":"35010:52:125","nodeType":"YulIf","src":"35010:52:125"},{"nativeSrc":"35071:29:125","nodeType":"YulVariableDeclaration","src":"35071:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"35090:9:125","nodeType":"YulIdentifier","src":"35090:9:125"}],"functionName":{"name":"mload","nativeSrc":"35084:5:125","nodeType":"YulIdentifier","src":"35084:5:125"},"nativeSrc":"35084:16:125","nodeType":"YulFunctionCall","src":"35084:16:125"},"variables":[{"name":"value","nativeSrc":"35075:5:125","nodeType":"YulTypedName","src":"35075:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"35131:5:125","nodeType":"YulIdentifier","src":"35131:5:125"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"35109:21:125","nodeType":"YulIdentifier","src":"35109:21:125"},"nativeSrc":"35109:28:125","nodeType":"YulFunctionCall","src":"35109:28:125"},"nativeSrc":"35109:28:125","nodeType":"YulExpressionStatement","src":"35109:28:125"},{"nativeSrc":"35146:15:125","nodeType":"YulAssignment","src":"35146:15:125","value":{"name":"value","nativeSrc":"35156:5:125","nodeType":"YulIdentifier","src":"35156:5:125"},"variableNames":[{"name":"value0","nativeSrc":"35146:6:125","nodeType":"YulIdentifier","src":"35146:6:125"}]},{"nativeSrc":"35170:40:125","nodeType":"YulVariableDeclaration","src":"35170:40:125","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35195:9:125","nodeType":"YulIdentifier","src":"35195:9:125"},{"kind":"number","nativeSrc":"35206:2:125","nodeType":"YulLiteral","src":"35206:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35191:3:125","nodeType":"YulIdentifier","src":"35191:3:125"},"nativeSrc":"35191:18:125","nodeType":"YulFunctionCall","src":"35191:18:125"}],"functionName":{"name":"mload","nativeSrc":"35185:5:125","nodeType":"YulIdentifier","src":"35185:5:125"},"nativeSrc":"35185:25:125","nodeType":"YulFunctionCall","src":"35185:25:125"},"variables":[{"name":"value_1","nativeSrc":"35174:7:125","nodeType":"YulTypedName","src":"35174:7:125","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"35243:7:125","nodeType":"YulIdentifier","src":"35243:7:125"}],"functionName":{"name":"validator_revert_uint32","nativeSrc":"35219:23:125","nodeType":"YulIdentifier","src":"35219:23:125"},"nativeSrc":"35219:32:125","nodeType":"YulFunctionCall","src":"35219:32:125"},"nativeSrc":"35219:32:125","nodeType":"YulExpressionStatement","src":"35219:32:125"},{"nativeSrc":"35260:17:125","nodeType":"YulAssignment","src":"35260:17:125","value":{"name":"value_1","nativeSrc":"35270:7:125","nodeType":"YulIdentifier","src":"35270:7:125"},"variableNames":[{"name":"value1","nativeSrc":"35260:6:125","nodeType":"YulIdentifier","src":"35260:6:125"}]}]},"name":"abi_decode_tuple_t_boolt_uint32_fromMemory","nativeSrc":"34906:377:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34958:9:125","nodeType":"YulTypedName","src":"34958:9:125","type":""},{"name":"dataEnd","nativeSrc":"34969:7:125","nodeType":"YulTypedName","src":"34969:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"34981:6:125","nodeType":"YulTypedName","src":"34981:6:125","type":""},{"name":"value1","nativeSrc":"34989:6:125","nodeType":"YulTypedName","src":"34989:6:125","type":""}],"src":"34906:377:125"},{"body":{"nativeSrc":"35413:152:125","nodeType":"YulBlock","src":"35413:152:125","statements":[{"nativeSrc":"35423:26:125","nodeType":"YulAssignment","src":"35423:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"35435:9:125","nodeType":"YulIdentifier","src":"35435:9:125"},{"kind":"number","nativeSrc":"35446:2:125","nodeType":"YulLiteral","src":"35446:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35431:3:125","nodeType":"YulIdentifier","src":"35431:3:125"},"nativeSrc":"35431:18:125","nodeType":"YulFunctionCall","src":"35431:18:125"},"variableNames":[{"name":"tail","nativeSrc":"35423:4:125","nodeType":"YulIdentifier","src":"35423:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35465:9:125","nodeType":"YulIdentifier","src":"35465:9:125"},{"name":"value0","nativeSrc":"35476:6:125","nodeType":"YulIdentifier","src":"35476:6:125"}],"functionName":{"name":"mstore","nativeSrc":"35458:6:125","nodeType":"YulIdentifier","src":"35458:6:125"},"nativeSrc":"35458:25:125","nodeType":"YulFunctionCall","src":"35458:25:125"},"nativeSrc":"35458:25:125","nodeType":"YulExpressionStatement","src":"35458:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35503:9:125","nodeType":"YulIdentifier","src":"35503:9:125"},{"kind":"number","nativeSrc":"35514:2:125","nodeType":"YulLiteral","src":"35514:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35499:3:125","nodeType":"YulIdentifier","src":"35499:3:125"},"nativeSrc":"35499:18:125","nodeType":"YulFunctionCall","src":"35499:18:125"},{"arguments":[{"name":"value1","nativeSrc":"35523:6:125","nodeType":"YulIdentifier","src":"35523:6:125"},{"kind":"number","nativeSrc":"35531:26:125","nodeType":"YulLiteral","src":"35531:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"35519:3:125","nodeType":"YulIdentifier","src":"35519:3:125"},"nativeSrc":"35519:39:125","nodeType":"YulFunctionCall","src":"35519:39:125"}],"functionName":{"name":"mstore","nativeSrc":"35492:6:125","nodeType":"YulIdentifier","src":"35492:6:125"},"nativeSrc":"35492:67:125","nodeType":"YulFunctionCall","src":"35492:67:125"},"nativeSrc":"35492:67:125","nodeType":"YulExpressionStatement","src":"35492:67:125"}]},"name":"abi_encode_tuple_t_int256_t_uint96__to_t_int256_t_uint96__fromStack_reversed","nativeSrc":"35288:277:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35374:9:125","nodeType":"YulTypedName","src":"35374:9:125","type":""},{"name":"value1","nativeSrc":"35385:6:125","nodeType":"YulTypedName","src":"35385:6:125","type":""},{"name":"value0","nativeSrc":"35393:6:125","nodeType":"YulTypedName","src":"35393:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35404:4:125","nodeType":"YulTypedName","src":"35404:4:125","type":""}],"src":"35288:277:125"},{"body":{"nativeSrc":"35727:214:125","nodeType":"YulBlock","src":"35727:214:125","statements":[{"nativeSrc":"35737:26:125","nodeType":"YulAssignment","src":"35737:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"35749:9:125","nodeType":"YulIdentifier","src":"35749:9:125"},{"kind":"number","nativeSrc":"35760:2:125","nodeType":"YulLiteral","src":"35760:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35745:3:125","nodeType":"YulIdentifier","src":"35745:3:125"},"nativeSrc":"35745:18:125","nodeType":"YulFunctionCall","src":"35745:18:125"},"variableNames":[{"name":"tail","nativeSrc":"35737:4:125","nodeType":"YulIdentifier","src":"35737:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35779:9:125","nodeType":"YulIdentifier","src":"35779:9:125"},{"name":"value0","nativeSrc":"35790:6:125","nodeType":"YulIdentifier","src":"35790:6:125"}],"functionName":{"name":"mstore","nativeSrc":"35772:6:125","nodeType":"YulIdentifier","src":"35772:6:125"},"nativeSrc":"35772:25:125","nodeType":"YulFunctionCall","src":"35772:25:125"},"nativeSrc":"35772:25:125","nodeType":"YulExpressionStatement","src":"35772:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35817:9:125","nodeType":"YulIdentifier","src":"35817:9:125"},{"kind":"number","nativeSrc":"35828:2:125","nodeType":"YulLiteral","src":"35828:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35813:3:125","nodeType":"YulIdentifier","src":"35813:3:125"},"nativeSrc":"35813:18:125","nodeType":"YulFunctionCall","src":"35813:18:125"},{"arguments":[{"name":"value1","nativeSrc":"35837:6:125","nodeType":"YulIdentifier","src":"35837:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35853:3:125","nodeType":"YulLiteral","src":"35853:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"35858:1:125","nodeType":"YulLiteral","src":"35858:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"35849:3:125","nodeType":"YulIdentifier","src":"35849:3:125"},"nativeSrc":"35849:11:125","nodeType":"YulFunctionCall","src":"35849:11:125"},{"kind":"number","nativeSrc":"35862:1:125","nodeType":"YulLiteral","src":"35862:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"35845:3:125","nodeType":"YulIdentifier","src":"35845:3:125"},"nativeSrc":"35845:19:125","nodeType":"YulFunctionCall","src":"35845:19:125"}],"functionName":{"name":"and","nativeSrc":"35833:3:125","nodeType":"YulIdentifier","src":"35833:3:125"},"nativeSrc":"35833:32:125","nodeType":"YulFunctionCall","src":"35833:32:125"}],"functionName":{"name":"mstore","nativeSrc":"35806:6:125","nodeType":"YulIdentifier","src":"35806:6:125"},"nativeSrc":"35806:60:125","nodeType":"YulFunctionCall","src":"35806:60:125"},"nativeSrc":"35806:60:125","nodeType":"YulExpressionStatement","src":"35806:60:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35886:9:125","nodeType":"YulIdentifier","src":"35886:9:125"},{"kind":"number","nativeSrc":"35897:2:125","nodeType":"YulLiteral","src":"35897:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35882:3:125","nodeType":"YulIdentifier","src":"35882:3:125"},"nativeSrc":"35882:18:125","nodeType":"YulFunctionCall","src":"35882:18:125"},{"arguments":[{"name":"value2","nativeSrc":"35906:6:125","nodeType":"YulIdentifier","src":"35906:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35922:3:125","nodeType":"YulLiteral","src":"35922:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"35927:1:125","nodeType":"YulLiteral","src":"35927:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"35918:3:125","nodeType":"YulIdentifier","src":"35918:3:125"},"nativeSrc":"35918:11:125","nodeType":"YulFunctionCall","src":"35918:11:125"},{"kind":"number","nativeSrc":"35931:1:125","nodeType":"YulLiteral","src":"35931:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"35914:3:125","nodeType":"YulIdentifier","src":"35914:3:125"},"nativeSrc":"35914:19:125","nodeType":"YulFunctionCall","src":"35914:19:125"}],"functionName":{"name":"and","nativeSrc":"35902:3:125","nodeType":"YulIdentifier","src":"35902:3:125"},"nativeSrc":"35902:32:125","nodeType":"YulFunctionCall","src":"35902:32:125"}],"functionName":{"name":"mstore","nativeSrc":"35875:6:125","nodeType":"YulIdentifier","src":"35875:6:125"},"nativeSrc":"35875:60:125","nodeType":"YulFunctionCall","src":"35875:60:125"},"nativeSrc":"35875:60:125","nodeType":"YulExpressionStatement","src":"35875:60:125"}]},"name":"abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed","nativeSrc":"35570:371:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35680:9:125","nodeType":"YulTypedName","src":"35680:9:125","type":""},{"name":"value2","nativeSrc":"35691:6:125","nodeType":"YulTypedName","src":"35691:6:125","type":""},{"name":"value1","nativeSrc":"35699:6:125","nodeType":"YulTypedName","src":"35699:6:125","type":""},{"name":"value0","nativeSrc":"35707:6:125","nodeType":"YulTypedName","src":"35707:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35718:4:125","nodeType":"YulTypedName","src":"35718:4:125","type":""}],"src":"35570:371:125"},{"body":{"nativeSrc":"36083:145:125","nodeType":"YulBlock","src":"36083:145:125","statements":[{"nativeSrc":"36093:26:125","nodeType":"YulAssignment","src":"36093:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"36105:9:125","nodeType":"YulIdentifier","src":"36105:9:125"},{"kind":"number","nativeSrc":"36116:2:125","nodeType":"YulLiteral","src":"36116:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"36101:3:125","nodeType":"YulIdentifier","src":"36101:3:125"},"nativeSrc":"36101:18:125","nodeType":"YulFunctionCall","src":"36101:18:125"},"variableNames":[{"name":"tail","nativeSrc":"36093:4:125","nodeType":"YulIdentifier","src":"36093:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"36135:9:125","nodeType":"YulIdentifier","src":"36135:9:125"},{"arguments":[{"name":"value0","nativeSrc":"36150:6:125","nodeType":"YulIdentifier","src":"36150:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36166:3:125","nodeType":"YulLiteral","src":"36166:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"36171:1:125","nodeType":"YulLiteral","src":"36171:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"36162:3:125","nodeType":"YulIdentifier","src":"36162:3:125"},"nativeSrc":"36162:11:125","nodeType":"YulFunctionCall","src":"36162:11:125"},{"kind":"number","nativeSrc":"36175:1:125","nodeType":"YulLiteral","src":"36175:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"36158:3:125","nodeType":"YulIdentifier","src":"36158:3:125"},"nativeSrc":"36158:19:125","nodeType":"YulFunctionCall","src":"36158:19:125"}],"functionName":{"name":"and","nativeSrc":"36146:3:125","nodeType":"YulIdentifier","src":"36146:3:125"},"nativeSrc":"36146:32:125","nodeType":"YulFunctionCall","src":"36146:32:125"}],"functionName":{"name":"mstore","nativeSrc":"36128:6:125","nodeType":"YulIdentifier","src":"36128:6:125"},"nativeSrc":"36128:51:125","nodeType":"YulFunctionCall","src":"36128:51:125"},"nativeSrc":"36128:51:125","nodeType":"YulExpressionStatement","src":"36128:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36199:9:125","nodeType":"YulIdentifier","src":"36199:9:125"},{"kind":"number","nativeSrc":"36210:2:125","nodeType":"YulLiteral","src":"36210:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"36195:3:125","nodeType":"YulIdentifier","src":"36195:3:125"},"nativeSrc":"36195:18:125","nodeType":"YulFunctionCall","src":"36195:18:125"},{"name":"value1","nativeSrc":"36215:6:125","nodeType":"YulIdentifier","src":"36215:6:125"}],"functionName":{"name":"mstore","nativeSrc":"36188:6:125","nodeType":"YulIdentifier","src":"36188:6:125"},"nativeSrc":"36188:34:125","nodeType":"YulFunctionCall","src":"36188:34:125"},"nativeSrc":"36188:34:125","nodeType":"YulExpressionStatement","src":"36188:34:125"}]},"name":"abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"35946:282:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36044:9:125","nodeType":"YulTypedName","src":"36044:9:125","type":""},{"name":"value1","nativeSrc":"36055:6:125","nodeType":"YulTypedName","src":"36055:6:125","type":""},{"name":"value0","nativeSrc":"36063:6:125","nodeType":"YulTypedName","src":"36063:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"36074:4:125","nodeType":"YulTypedName","src":"36074:4:125","type":""}],"src":"35946:282:125"},{"body":{"nativeSrc":"36311:167:125","nodeType":"YulBlock","src":"36311:167:125","statements":[{"body":{"nativeSrc":"36357:16:125","nodeType":"YulBlock","src":"36357:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"36366:1:125","nodeType":"YulLiteral","src":"36366:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"36369:1:125","nodeType":"YulLiteral","src":"36369:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"36359:6:125","nodeType":"YulIdentifier","src":"36359:6:125"},"nativeSrc":"36359:12:125","nodeType":"YulFunctionCall","src":"36359:12:125"},"nativeSrc":"36359:12:125","nodeType":"YulExpressionStatement","src":"36359:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"36332:7:125","nodeType":"YulIdentifier","src":"36332:7:125"},{"name":"headStart","nativeSrc":"36341:9:125","nodeType":"YulIdentifier","src":"36341:9:125"}],"functionName":{"name":"sub","nativeSrc":"36328:3:125","nodeType":"YulIdentifier","src":"36328:3:125"},"nativeSrc":"36328:23:125","nodeType":"YulFunctionCall","src":"36328:23:125"},{"kind":"number","nativeSrc":"36353:2:125","nodeType":"YulLiteral","src":"36353:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"36324:3:125","nodeType":"YulIdentifier","src":"36324:3:125"},"nativeSrc":"36324:32:125","nodeType":"YulFunctionCall","src":"36324:32:125"},"nativeSrc":"36321:52:125","nodeType":"YulIf","src":"36321:52:125"},{"nativeSrc":"36382:29:125","nodeType":"YulVariableDeclaration","src":"36382:29:125","value":{"arguments":[{"name":"headStart","nativeSrc":"36401:9:125","nodeType":"YulIdentifier","src":"36401:9:125"}],"functionName":{"name":"mload","nativeSrc":"36395:5:125","nodeType":"YulIdentifier","src":"36395:5:125"},"nativeSrc":"36395:16:125","nodeType":"YulFunctionCall","src":"36395:16:125"},"variables":[{"name":"value","nativeSrc":"36386:5:125","nodeType":"YulTypedName","src":"36386:5:125","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"36442:5:125","nodeType":"YulIdentifier","src":"36442:5:125"}],"functionName":{"name":"validator_revert_bool","nativeSrc":"36420:21:125","nodeType":"YulIdentifier","src":"36420:21:125"},"nativeSrc":"36420:28:125","nodeType":"YulFunctionCall","src":"36420:28:125"},"nativeSrc":"36420:28:125","nodeType":"YulExpressionStatement","src":"36420:28:125"},{"nativeSrc":"36457:15:125","nodeType":"YulAssignment","src":"36457:15:125","value":{"name":"value","nativeSrc":"36467:5:125","nodeType":"YulIdentifier","src":"36467:5:125"},"variableNames":[{"name":"value0","nativeSrc":"36457:6:125","nodeType":"YulIdentifier","src":"36457:6:125"}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nativeSrc":"36233:245:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36277:9:125","nodeType":"YulTypedName","src":"36277:9:125","type":""},{"name":"dataEnd","nativeSrc":"36288:7:125","nodeType":"YulTypedName","src":"36288:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"36300:6:125","nodeType":"YulTypedName","src":"36300:6:125","type":""}],"src":"36233:245:125"},{"body":{"nativeSrc":"36612:145:125","nodeType":"YulBlock","src":"36612:145:125","statements":[{"nativeSrc":"36622:26:125","nodeType":"YulAssignment","src":"36622:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"36634:9:125","nodeType":"YulIdentifier","src":"36634:9:125"},{"kind":"number","nativeSrc":"36645:2:125","nodeType":"YulLiteral","src":"36645:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"36630:3:125","nodeType":"YulIdentifier","src":"36630:3:125"},"nativeSrc":"36630:18:125","nodeType":"YulFunctionCall","src":"36630:18:125"},"variableNames":[{"name":"tail","nativeSrc":"36622:4:125","nodeType":"YulIdentifier","src":"36622:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"36664:9:125","nodeType":"YulIdentifier","src":"36664:9:125"},{"arguments":[{"name":"value0","nativeSrc":"36679:6:125","nodeType":"YulIdentifier","src":"36679:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36695:3:125","nodeType":"YulLiteral","src":"36695:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"36700:1:125","nodeType":"YulLiteral","src":"36700:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"36691:3:125","nodeType":"YulIdentifier","src":"36691:3:125"},"nativeSrc":"36691:11:125","nodeType":"YulFunctionCall","src":"36691:11:125"},{"kind":"number","nativeSrc":"36704:1:125","nodeType":"YulLiteral","src":"36704:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"36687:3:125","nodeType":"YulIdentifier","src":"36687:3:125"},"nativeSrc":"36687:19:125","nodeType":"YulFunctionCall","src":"36687:19:125"}],"functionName":{"name":"and","nativeSrc":"36675:3:125","nodeType":"YulIdentifier","src":"36675:3:125"},"nativeSrc":"36675:32:125","nodeType":"YulFunctionCall","src":"36675:32:125"}],"functionName":{"name":"mstore","nativeSrc":"36657:6:125","nodeType":"YulIdentifier","src":"36657:6:125"},"nativeSrc":"36657:51:125","nodeType":"YulFunctionCall","src":"36657:51:125"},"nativeSrc":"36657:51:125","nodeType":"YulExpressionStatement","src":"36657:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36728:9:125","nodeType":"YulIdentifier","src":"36728:9:125"},{"kind":"number","nativeSrc":"36739:2:125","nodeType":"YulLiteral","src":"36739:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"36724:3:125","nodeType":"YulIdentifier","src":"36724:3:125"},"nativeSrc":"36724:18:125","nodeType":"YulFunctionCall","src":"36724:18:125"},{"name":"value1","nativeSrc":"36744:6:125","nodeType":"YulIdentifier","src":"36744:6:125"}],"functionName":{"name":"mstore","nativeSrc":"36717:6:125","nodeType":"YulIdentifier","src":"36717:6:125"},"nativeSrc":"36717:34:125","nodeType":"YulFunctionCall","src":"36717:34:125"},"nativeSrc":"36717:34:125","nodeType":"YulExpressionStatement","src":"36717:34:125"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"36483:274:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36573:9:125","nodeType":"YulTypedName","src":"36573:9:125","type":""},{"name":"value1","nativeSrc":"36584:6:125","nodeType":"YulTypedName","src":"36584:6:125","type":""},{"name":"value0","nativeSrc":"36592:6:125","nodeType":"YulTypedName","src":"36592:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"36603:4:125","nodeType":"YulTypedName","src":"36603:4:125","type":""}],"src":"36483:274:125"},{"body":{"nativeSrc":"36927:171:125","nodeType":"YulBlock","src":"36927:171:125","statements":[{"nativeSrc":"36937:26:125","nodeType":"YulAssignment","src":"36937:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"36949:9:125","nodeType":"YulIdentifier","src":"36949:9:125"},{"kind":"number","nativeSrc":"36960:2:125","nodeType":"YulLiteral","src":"36960:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"36945:3:125","nodeType":"YulIdentifier","src":"36945:3:125"},"nativeSrc":"36945:18:125","nodeType":"YulFunctionCall","src":"36945:18:125"},"variableNames":[{"name":"tail","nativeSrc":"36937:4:125","nodeType":"YulIdentifier","src":"36937:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"36979:9:125","nodeType":"YulIdentifier","src":"36979:9:125"},{"arguments":[{"name":"value0","nativeSrc":"36994:6:125","nodeType":"YulIdentifier","src":"36994:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37010:3:125","nodeType":"YulLiteral","src":"37010:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"37015:1:125","nodeType":"YulLiteral","src":"37015:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"37006:3:125","nodeType":"YulIdentifier","src":"37006:3:125"},"nativeSrc":"37006:11:125","nodeType":"YulFunctionCall","src":"37006:11:125"},{"kind":"number","nativeSrc":"37019:1:125","nodeType":"YulLiteral","src":"37019:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"37002:3:125","nodeType":"YulIdentifier","src":"37002:3:125"},"nativeSrc":"37002:19:125","nodeType":"YulFunctionCall","src":"37002:19:125"}],"functionName":{"name":"and","nativeSrc":"36990:3:125","nodeType":"YulIdentifier","src":"36990:3:125"},"nativeSrc":"36990:32:125","nodeType":"YulFunctionCall","src":"36990:32:125"}],"functionName":{"name":"mstore","nativeSrc":"36972:6:125","nodeType":"YulIdentifier","src":"36972:6:125"},"nativeSrc":"36972:51:125","nodeType":"YulFunctionCall","src":"36972:51:125"},"nativeSrc":"36972:51:125","nodeType":"YulExpressionStatement","src":"36972:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37043:9:125","nodeType":"YulIdentifier","src":"37043:9:125"},{"kind":"number","nativeSrc":"37054:2:125","nodeType":"YulLiteral","src":"37054:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"37039:3:125","nodeType":"YulIdentifier","src":"37039:3:125"},"nativeSrc":"37039:18:125","nodeType":"YulFunctionCall","src":"37039:18:125"},{"arguments":[{"name":"value1","nativeSrc":"37063:6:125","nodeType":"YulIdentifier","src":"37063:6:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37079:3:125","nodeType":"YulLiteral","src":"37079:3:125","type":"","value":"160"},{"kind":"number","nativeSrc":"37084:1:125","nodeType":"YulLiteral","src":"37084:1:125","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"37075:3:125","nodeType":"YulIdentifier","src":"37075:3:125"},"nativeSrc":"37075:11:125","nodeType":"YulFunctionCall","src":"37075:11:125"},{"kind":"number","nativeSrc":"37088:1:125","nodeType":"YulLiteral","src":"37088:1:125","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"37071:3:125","nodeType":"YulIdentifier","src":"37071:3:125"},"nativeSrc":"37071:19:125","nodeType":"YulFunctionCall","src":"37071:19:125"}],"functionName":{"name":"and","nativeSrc":"37059:3:125","nodeType":"YulIdentifier","src":"37059:3:125"},"nativeSrc":"37059:32:125","nodeType":"YulFunctionCall","src":"37059:32:125"}],"functionName":{"name":"mstore","nativeSrc":"37032:6:125","nodeType":"YulIdentifier","src":"37032:6:125"},"nativeSrc":"37032:60:125","nodeType":"YulFunctionCall","src":"37032:60:125"},"nativeSrc":"37032:60:125","nodeType":"YulExpressionStatement","src":"37032:60:125"}]},"name":"abi_encode_tuple_t_contract$_IERC4626_$22463_t_contract$_IERC4626_$22463__to_t_address_t_address__fromStack_reversed","nativeSrc":"36762:336:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36888:9:125","nodeType":"YulTypedName","src":"36888:9:125","type":""},{"name":"value1","nativeSrc":"36899:6:125","nodeType":"YulTypedName","src":"36899:6:125","type":""},{"name":"value0","nativeSrc":"36907:6:125","nodeType":"YulTypedName","src":"36907:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"36918:4:125","nodeType":"YulTypedName","src":"36918:4:125","type":""}],"src":"36762:336:125"},{"body":{"nativeSrc":"37150:169:125","nodeType":"YulBlock","src":"37150:169:125","statements":[{"nativeSrc":"37160:16:125","nodeType":"YulAssignment","src":"37160:16:125","value":{"arguments":[{"name":"x","nativeSrc":"37171:1:125","nodeType":"YulIdentifier","src":"37171:1:125"},{"name":"y","nativeSrc":"37174:1:125","nodeType":"YulIdentifier","src":"37174:1:125"}],"functionName":{"name":"add","nativeSrc":"37167:3:125","nodeType":"YulIdentifier","src":"37167:3:125"},"nativeSrc":"37167:9:125","nodeType":"YulFunctionCall","src":"37167:9:125"},"variableNames":[{"name":"sum","nativeSrc":"37160:3:125","nodeType":"YulIdentifier","src":"37160:3:125"}]},{"nativeSrc":"37185:21:125","nodeType":"YulVariableDeclaration","src":"37185:21:125","value":{"arguments":[{"name":"sum","nativeSrc":"37199:3:125","nodeType":"YulIdentifier","src":"37199:3:125"},{"name":"y","nativeSrc":"37204:1:125","nodeType":"YulIdentifier","src":"37204:1:125"}],"functionName":{"name":"slt","nativeSrc":"37195:3:125","nodeType":"YulIdentifier","src":"37195:3:125"},"nativeSrc":"37195:11:125","nodeType":"YulFunctionCall","src":"37195:11:125"},"variables":[{"name":"_1","nativeSrc":"37189:2:125","nodeType":"YulTypedName","src":"37189:2:125","type":""}]},{"nativeSrc":"37215:19:125","nodeType":"YulVariableDeclaration","src":"37215:19:125","value":{"arguments":[{"name":"x","nativeSrc":"37229:1:125","nodeType":"YulIdentifier","src":"37229:1:125"},{"kind":"number","nativeSrc":"37232:1:125","nodeType":"YulLiteral","src":"37232:1:125","type":"","value":"0"}],"functionName":{"name":"slt","nativeSrc":"37225:3:125","nodeType":"YulIdentifier","src":"37225:3:125"},"nativeSrc":"37225:9:125","nodeType":"YulFunctionCall","src":"37225:9:125"},"variables":[{"name":"_2","nativeSrc":"37219:2:125","nodeType":"YulTypedName","src":"37219:2:125","type":""}]},{"body":{"nativeSrc":"37291:22:125","nodeType":"YulBlock","src":"37291:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"37293:16:125","nodeType":"YulIdentifier","src":"37293:16:125"},"nativeSrc":"37293:18:125","nodeType":"YulFunctionCall","src":"37293:18:125"},"nativeSrc":"37293:18:125","nodeType":"YulExpressionStatement","src":"37293:18:125"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"37260:2:125","nodeType":"YulIdentifier","src":"37260:2:125"}],"functionName":{"name":"iszero","nativeSrc":"37253:6:125","nodeType":"YulIdentifier","src":"37253:6:125"},"nativeSrc":"37253:10:125","nodeType":"YulFunctionCall","src":"37253:10:125"},{"name":"_1","nativeSrc":"37265:2:125","nodeType":"YulIdentifier","src":"37265:2:125"}],"functionName":{"name":"and","nativeSrc":"37249:3:125","nodeType":"YulIdentifier","src":"37249:3:125"},"nativeSrc":"37249:19:125","nodeType":"YulFunctionCall","src":"37249:19:125"},{"arguments":[{"name":"_2","nativeSrc":"37274:2:125","nodeType":"YulIdentifier","src":"37274:2:125"},{"arguments":[{"name":"_1","nativeSrc":"37285:2:125","nodeType":"YulIdentifier","src":"37285:2:125"}],"functionName":{"name":"iszero","nativeSrc":"37278:6:125","nodeType":"YulIdentifier","src":"37278:6:125"},"nativeSrc":"37278:10:125","nodeType":"YulFunctionCall","src":"37278:10:125"}],"functionName":{"name":"and","nativeSrc":"37270:3:125","nodeType":"YulIdentifier","src":"37270:3:125"},"nativeSrc":"37270:19:125","nodeType":"YulFunctionCall","src":"37270:19:125"}],"functionName":{"name":"or","nativeSrc":"37246:2:125","nodeType":"YulIdentifier","src":"37246:2:125"},"nativeSrc":"37246:44:125","nodeType":"YulFunctionCall","src":"37246:44:125"},"nativeSrc":"37243:70:125","nodeType":"YulIf","src":"37243:70:125"}]},"name":"checked_add_t_int256","nativeSrc":"37103:216:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"37133:1:125","nodeType":"YulTypedName","src":"37133:1:125","type":""},{"name":"y","nativeSrc":"37136:1:125","nodeType":"YulTypedName","src":"37136:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"37142:3:125","nodeType":"YulTypedName","src":"37142:3:125","type":""}],"src":"37103:216:125"},{"body":{"nativeSrc":"37370:182:125","nodeType":"YulBlock","src":"37370:182:125","statements":[{"nativeSrc":"37380:48:125","nodeType":"YulAssignment","src":"37380:48:125","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37402:2:125","nodeType":"YulLiteral","src":"37402:2:125","type":"","value":"11"},{"name":"x","nativeSrc":"37406:1:125","nodeType":"YulIdentifier","src":"37406:1:125"}],"functionName":{"name":"signextend","nativeSrc":"37391:10:125","nodeType":"YulIdentifier","src":"37391:10:125"},"nativeSrc":"37391:17:125","nodeType":"YulFunctionCall","src":"37391:17:125"},{"arguments":[{"kind":"number","nativeSrc":"37421:2:125","nodeType":"YulLiteral","src":"37421:2:125","type":"","value":"11"},{"name":"y","nativeSrc":"37425:1:125","nodeType":"YulIdentifier","src":"37425:1:125"}],"functionName":{"name":"signextend","nativeSrc":"37410:10:125","nodeType":"YulIdentifier","src":"37410:10:125"},"nativeSrc":"37410:17:125","nodeType":"YulFunctionCall","src":"37410:17:125"}],"functionName":{"name":"add","nativeSrc":"37387:3:125","nodeType":"YulIdentifier","src":"37387:3:125"},"nativeSrc":"37387:41:125","nodeType":"YulFunctionCall","src":"37387:41:125"},"variableNames":[{"name":"sum","nativeSrc":"37380:3:125","nodeType":"YulIdentifier","src":"37380:3:125"}]},{"body":{"nativeSrc":"37524:22:125","nodeType":"YulBlock","src":"37524:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"37526:16:125","nodeType":"YulIdentifier","src":"37526:16:125"},"nativeSrc":"37526:18:125","nodeType":"YulFunctionCall","src":"37526:18:125"},"nativeSrc":"37526:18:125","nodeType":"YulExpressionStatement","src":"37526:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"sum","nativeSrc":"37447:3:125","nodeType":"YulIdentifier","src":"37447:3:125"},{"kind":"number","nativeSrc":"37452:26:125","nodeType":"YulLiteral","src":"37452:26:125","type":"","value":"0x7fffffffffffffffffffffff"}],"functionName":{"name":"sgt","nativeSrc":"37443:3:125","nodeType":"YulIdentifier","src":"37443:3:125"},"nativeSrc":"37443:36:125","nodeType":"YulFunctionCall","src":"37443:36:125"},{"arguments":[{"name":"sum","nativeSrc":"37485:3:125","nodeType":"YulIdentifier","src":"37485:3:125"},{"arguments":[{"kind":"number","nativeSrc":"37494:26:125","nodeType":"YulLiteral","src":"37494:26:125","type":"","value":"0x7fffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"37490:3:125","nodeType":"YulIdentifier","src":"37490:3:125"},"nativeSrc":"37490:31:125","nodeType":"YulFunctionCall","src":"37490:31:125"}],"functionName":{"name":"slt","nativeSrc":"37481:3:125","nodeType":"YulIdentifier","src":"37481:3:125"},"nativeSrc":"37481:41:125","nodeType":"YulFunctionCall","src":"37481:41:125"}],"functionName":{"name":"or","nativeSrc":"37440:2:125","nodeType":"YulIdentifier","src":"37440:2:125"},"nativeSrc":"37440:83:125","nodeType":"YulFunctionCall","src":"37440:83:125"},"nativeSrc":"37437:109:125","nodeType":"YulIf","src":"37437:109:125"}]},"name":"checked_add_t_int96","nativeSrc":"37324:228:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"37353:1:125","nodeType":"YulTypedName","src":"37353:1:125","type":""},{"name":"y","nativeSrc":"37356:1:125","nodeType":"YulTypedName","src":"37356:1:125","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"37362:3:125","nodeType":"YulTypedName","src":"37362:3:125","type":""}],"src":"37324:228:125"},{"body":{"nativeSrc":"37759:300:125","nodeType":"YulBlock","src":"37759:300:125","statements":[{"nativeSrc":"37769:27:125","nodeType":"YulAssignment","src":"37769:27:125","value":{"arguments":[{"name":"headStart","nativeSrc":"37781:9:125","nodeType":"YulIdentifier","src":"37781:9:125"},{"kind":"number","nativeSrc":"37792:3:125","nodeType":"YulLiteral","src":"37792:3:125","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"37777:3:125","nodeType":"YulIdentifier","src":"37777:3:125"},"nativeSrc":"37777:19:125","nodeType":"YulFunctionCall","src":"37777:19:125"},"variableNames":[{"name":"tail","nativeSrc":"37769:4:125","nodeType":"YulIdentifier","src":"37769:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"37812:9:125","nodeType":"YulIdentifier","src":"37812:9:125"},{"arguments":[{"name":"value0","nativeSrc":"37827:6:125","nodeType":"YulIdentifier","src":"37827:6:125"},{"kind":"number","nativeSrc":"37835:10:125","nodeType":"YulLiteral","src":"37835:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"37823:3:125","nodeType":"YulIdentifier","src":"37823:3:125"},"nativeSrc":"37823:23:125","nodeType":"YulFunctionCall","src":"37823:23:125"}],"functionName":{"name":"mstore","nativeSrc":"37805:6:125","nodeType":"YulIdentifier","src":"37805:6:125"},"nativeSrc":"37805:42:125","nodeType":"YulFunctionCall","src":"37805:42:125"},"nativeSrc":"37805:42:125","nodeType":"YulExpressionStatement","src":"37805:42:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37867:9:125","nodeType":"YulIdentifier","src":"37867:9:125"},{"kind":"number","nativeSrc":"37878:2:125","nodeType":"YulLiteral","src":"37878:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"37863:3:125","nodeType":"YulIdentifier","src":"37863:3:125"},"nativeSrc":"37863:18:125","nodeType":"YulFunctionCall","src":"37863:18:125"},{"arguments":[{"name":"value1","nativeSrc":"37887:6:125","nodeType":"YulIdentifier","src":"37887:6:125"},{"kind":"number","nativeSrc":"37895:10:125","nodeType":"YulLiteral","src":"37895:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"37883:3:125","nodeType":"YulIdentifier","src":"37883:3:125"},"nativeSrc":"37883:23:125","nodeType":"YulFunctionCall","src":"37883:23:125"}],"functionName":{"name":"mstore","nativeSrc":"37856:6:125","nodeType":"YulIdentifier","src":"37856:6:125"},"nativeSrc":"37856:51:125","nodeType":"YulFunctionCall","src":"37856:51:125"},"nativeSrc":"37856:51:125","nodeType":"YulExpressionStatement","src":"37856:51:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37927:9:125","nodeType":"YulIdentifier","src":"37927:9:125"},{"kind":"number","nativeSrc":"37938:2:125","nodeType":"YulLiteral","src":"37938:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"37923:3:125","nodeType":"YulIdentifier","src":"37923:3:125"},"nativeSrc":"37923:18:125","nodeType":"YulFunctionCall","src":"37923:18:125"},{"name":"value2","nativeSrc":"37943:6:125","nodeType":"YulIdentifier","src":"37943:6:125"}],"functionName":{"name":"mstore","nativeSrc":"37916:6:125","nodeType":"YulIdentifier","src":"37916:6:125"},"nativeSrc":"37916:34:125","nodeType":"YulFunctionCall","src":"37916:34:125"},"nativeSrc":"37916:34:125","nodeType":"YulExpressionStatement","src":"37916:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37970:9:125","nodeType":"YulIdentifier","src":"37970:9:125"},{"kind":"number","nativeSrc":"37981:2:125","nodeType":"YulLiteral","src":"37981:2:125","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"37966:3:125","nodeType":"YulIdentifier","src":"37966:3:125"},"nativeSrc":"37966:18:125","nodeType":"YulFunctionCall","src":"37966:18:125"},{"name":"value3","nativeSrc":"37986:6:125","nodeType":"YulIdentifier","src":"37986:6:125"}],"functionName":{"name":"mstore","nativeSrc":"37959:6:125","nodeType":"YulIdentifier","src":"37959:6:125"},"nativeSrc":"37959:34:125","nodeType":"YulFunctionCall","src":"37959:34:125"},"nativeSrc":"37959:34:125","nodeType":"YulExpressionStatement","src":"37959:34:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38013:9:125","nodeType":"YulIdentifier","src":"38013:9:125"},{"kind":"number","nativeSrc":"38024:3:125","nodeType":"YulLiteral","src":"38024:3:125","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"38009:3:125","nodeType":"YulIdentifier","src":"38009:3:125"},"nativeSrc":"38009:19:125","nodeType":"YulFunctionCall","src":"38009:19:125"},{"arguments":[{"kind":"number","nativeSrc":"38041:2:125","nodeType":"YulLiteral","src":"38041:2:125","type":"","value":"11"},{"name":"value4","nativeSrc":"38045:6:125","nodeType":"YulIdentifier","src":"38045:6:125"}],"functionName":{"name":"signextend","nativeSrc":"38030:10:125","nodeType":"YulIdentifier","src":"38030:10:125"},"nativeSrc":"38030:22:125","nodeType":"YulFunctionCall","src":"38030:22:125"}],"functionName":{"name":"mstore","nativeSrc":"38002:6:125","nodeType":"YulIdentifier","src":"38002:6:125"},"nativeSrc":"38002:51:125","nodeType":"YulFunctionCall","src":"38002:51:125"},"nativeSrc":"38002:51:125","nodeType":"YulExpressionStatement","src":"38002:51:125"}]},"name":"abi_encode_tuple_t_uint32_t_uint32_t_int256_t_int256_t_int96__to_t_uint32_t_uint32_t_int256_t_int256_t_int256__fromStack_reversed","nativeSrc":"37557:502:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37696:9:125","nodeType":"YulTypedName","src":"37696:9:125","type":""},{"name":"value4","nativeSrc":"37707:6:125","nodeType":"YulTypedName","src":"37707:6:125","type":""},{"name":"value3","nativeSrc":"37715:6:125","nodeType":"YulTypedName","src":"37715:6:125","type":""},{"name":"value2","nativeSrc":"37723:6:125","nodeType":"YulTypedName","src":"37723:6:125","type":""},{"name":"value1","nativeSrc":"37731:6:125","nodeType":"YulTypedName","src":"37731:6:125","type":""},{"name":"value0","nativeSrc":"37739:6:125","nodeType":"YulTypedName","src":"37739:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"37750:4:125","nodeType":"YulTypedName","src":"37750:4:125","type":""}],"src":"37557:502:125"},{"body":{"nativeSrc":"38145:103:125","nodeType":"YulBlock","src":"38145:103:125","statements":[{"body":{"nativeSrc":"38191:16:125","nodeType":"YulBlock","src":"38191:16:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"38200:1:125","nodeType":"YulLiteral","src":"38200:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"38203:1:125","nodeType":"YulLiteral","src":"38203:1:125","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"38193:6:125","nodeType":"YulIdentifier","src":"38193:6:125"},"nativeSrc":"38193:12:125","nodeType":"YulFunctionCall","src":"38193:12:125"},"nativeSrc":"38193:12:125","nodeType":"YulExpressionStatement","src":"38193:12:125"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"38166:7:125","nodeType":"YulIdentifier","src":"38166:7:125"},{"name":"headStart","nativeSrc":"38175:9:125","nodeType":"YulIdentifier","src":"38175:9:125"}],"functionName":{"name":"sub","nativeSrc":"38162:3:125","nodeType":"YulIdentifier","src":"38162:3:125"},"nativeSrc":"38162:23:125","nodeType":"YulFunctionCall","src":"38162:23:125"},{"kind":"number","nativeSrc":"38187:2:125","nodeType":"YulLiteral","src":"38187:2:125","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"38158:3:125","nodeType":"YulIdentifier","src":"38158:3:125"},"nativeSrc":"38158:32:125","nodeType":"YulFunctionCall","src":"38158:32:125"},"nativeSrc":"38155:52:125","nodeType":"YulIf","src":"38155:52:125"},{"nativeSrc":"38216:26:125","nodeType":"YulAssignment","src":"38216:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"38232:9:125","nodeType":"YulIdentifier","src":"38232:9:125"}],"functionName":{"name":"mload","nativeSrc":"38226:5:125","nodeType":"YulIdentifier","src":"38226:5:125"},"nativeSrc":"38226:16:125","nodeType":"YulFunctionCall","src":"38226:16:125"},"variableNames":[{"name":"value0","nativeSrc":"38216:6:125","nodeType":"YulIdentifier","src":"38216:6:125"}]}]},"name":"abi_decode_tuple_t_bytes32_fromMemory","nativeSrc":"38064:184:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38111:9:125","nodeType":"YulTypedName","src":"38111:9:125","type":""},{"name":"dataEnd","nativeSrc":"38122:7:125","nodeType":"YulTypedName","src":"38122:7:125","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"38134:6:125","nodeType":"YulTypedName","src":"38134:6:125","type":""}],"src":"38064:184:125"},{"body":{"nativeSrc":"38285:95:125","nodeType":"YulBlock","src":"38285:95:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"38302:1:125","nodeType":"YulLiteral","src":"38302:1:125","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"38309:3:125","nodeType":"YulLiteral","src":"38309:3:125","type":"","value":"224"},{"kind":"number","nativeSrc":"38314:10:125","nodeType":"YulLiteral","src":"38314:10:125","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"38305:3:125","nodeType":"YulIdentifier","src":"38305:3:125"},"nativeSrc":"38305:20:125","nodeType":"YulFunctionCall","src":"38305:20:125"}],"functionName":{"name":"mstore","nativeSrc":"38295:6:125","nodeType":"YulIdentifier","src":"38295:6:125"},"nativeSrc":"38295:31:125","nodeType":"YulFunctionCall","src":"38295:31:125"},"nativeSrc":"38295:31:125","nodeType":"YulExpressionStatement","src":"38295:31:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"38342:1:125","nodeType":"YulLiteral","src":"38342:1:125","type":"","value":"4"},{"kind":"number","nativeSrc":"38345:4:125","nodeType":"YulLiteral","src":"38345:4:125","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"38335:6:125","nodeType":"YulIdentifier","src":"38335:6:125"},"nativeSrc":"38335:15:125","nodeType":"YulFunctionCall","src":"38335:15:125"},"nativeSrc":"38335:15:125","nodeType":"YulExpressionStatement","src":"38335:15:125"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"38366:1:125","nodeType":"YulLiteral","src":"38366:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"38369:4:125","nodeType":"YulLiteral","src":"38369:4:125","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"38359:6:125","nodeType":"YulIdentifier","src":"38359:6:125"},"nativeSrc":"38359:15:125","nodeType":"YulFunctionCall","src":"38359:15:125"},"nativeSrc":"38359:15:125","nodeType":"YulExpressionStatement","src":"38359:15:125"}]},"name":"panic_error_0x12","nativeSrc":"38253:127:125","nodeType":"YulFunctionDefinition","src":"38253:127:125"},{"body":{"nativeSrc":"38431:74:125","nodeType":"YulBlock","src":"38431:74:125","statements":[{"body":{"nativeSrc":"38454:22:125","nodeType":"YulBlock","src":"38454:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"38456:16:125","nodeType":"YulIdentifier","src":"38456:16:125"},"nativeSrc":"38456:18:125","nodeType":"YulFunctionCall","src":"38456:18:125"},"nativeSrc":"38456:18:125","nodeType":"YulExpressionStatement","src":"38456:18:125"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"38451:1:125","nodeType":"YulIdentifier","src":"38451:1:125"}],"functionName":{"name":"iszero","nativeSrc":"38444:6:125","nodeType":"YulIdentifier","src":"38444:6:125"},"nativeSrc":"38444:9:125","nodeType":"YulFunctionCall","src":"38444:9:125"},"nativeSrc":"38441:35:125","nodeType":"YulIf","src":"38441:35:125"},{"nativeSrc":"38485:14:125","nodeType":"YulAssignment","src":"38485:14:125","value":{"arguments":[{"name":"x","nativeSrc":"38494:1:125","nodeType":"YulIdentifier","src":"38494:1:125"},{"name":"y","nativeSrc":"38497:1:125","nodeType":"YulIdentifier","src":"38497:1:125"}],"functionName":{"name":"div","nativeSrc":"38490:3:125","nodeType":"YulIdentifier","src":"38490:3:125"},"nativeSrc":"38490:9:125","nodeType":"YulFunctionCall","src":"38490:9:125"},"variableNames":[{"name":"r","nativeSrc":"38485:1:125","nodeType":"YulIdentifier","src":"38485:1:125"}]}]},"name":"checked_div_t_uint256","nativeSrc":"38385:120:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"38416:1:125","nodeType":"YulTypedName","src":"38416:1:125","type":""},{"name":"y","nativeSrc":"38419:1:125","nodeType":"YulTypedName","src":"38419:1:125","type":""}],"returnVariables":[{"name":"r","nativeSrc":"38425:1:125","nodeType":"YulTypedName","src":"38425:1:125","type":""}],"src":"38385:120:125"},{"body":{"nativeSrc":"38639:119:125","nodeType":"YulBlock","src":"38639:119:125","statements":[{"nativeSrc":"38649:26:125","nodeType":"YulAssignment","src":"38649:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"38661:9:125","nodeType":"YulIdentifier","src":"38661:9:125"},{"kind":"number","nativeSrc":"38672:2:125","nodeType":"YulLiteral","src":"38672:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"38657:3:125","nodeType":"YulIdentifier","src":"38657:3:125"},"nativeSrc":"38657:18:125","nodeType":"YulFunctionCall","src":"38657:18:125"},"variableNames":[{"name":"tail","nativeSrc":"38649:4:125","nodeType":"YulIdentifier","src":"38649:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"38691:9:125","nodeType":"YulIdentifier","src":"38691:9:125"},{"name":"value0","nativeSrc":"38702:6:125","nodeType":"YulIdentifier","src":"38702:6:125"}],"functionName":{"name":"mstore","nativeSrc":"38684:6:125","nodeType":"YulIdentifier","src":"38684:6:125"},"nativeSrc":"38684:25:125","nodeType":"YulFunctionCall","src":"38684:25:125"},"nativeSrc":"38684:25:125","nodeType":"YulExpressionStatement","src":"38684:25:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38729:9:125","nodeType":"YulIdentifier","src":"38729:9:125"},{"kind":"number","nativeSrc":"38740:2:125","nodeType":"YulLiteral","src":"38740:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"38725:3:125","nodeType":"YulIdentifier","src":"38725:3:125"},"nativeSrc":"38725:18:125","nodeType":"YulFunctionCall","src":"38725:18:125"},{"name":"value1","nativeSrc":"38745:6:125","nodeType":"YulIdentifier","src":"38745:6:125"}],"functionName":{"name":"mstore","nativeSrc":"38718:6:125","nodeType":"YulIdentifier","src":"38718:6:125"},"nativeSrc":"38718:34:125","nodeType":"YulFunctionCall","src":"38718:34:125"},"nativeSrc":"38718:34:125","nodeType":"YulExpressionStatement","src":"38718:34:125"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"38510:248:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38600:9:125","nodeType":"YulTypedName","src":"38600:9:125","type":""},{"name":"value1","nativeSrc":"38611:6:125","nodeType":"YulTypedName","src":"38611:6:125","type":""},{"name":"value0","nativeSrc":"38619:6:125","nodeType":"YulTypedName","src":"38619:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"38630:4:125","nodeType":"YulTypedName","src":"38630:4:125","type":""}],"src":"38510:248:125"},{"body":{"nativeSrc":"38899:130:125","nodeType":"YulBlock","src":"38899:130:125","statements":[{"nativeSrc":"38909:26:125","nodeType":"YulAssignment","src":"38909:26:125","value":{"arguments":[{"name":"headStart","nativeSrc":"38921:9:125","nodeType":"YulIdentifier","src":"38921:9:125"},{"kind":"number","nativeSrc":"38932:2:125","nodeType":"YulLiteral","src":"38932:2:125","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"38917:3:125","nodeType":"YulIdentifier","src":"38917:3:125"},"nativeSrc":"38917:18:125","nodeType":"YulFunctionCall","src":"38917:18:125"},"variableNames":[{"name":"tail","nativeSrc":"38909:4:125","nodeType":"YulIdentifier","src":"38909:4:125"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"38951:9:125","nodeType":"YulIdentifier","src":"38951:9:125"},{"arguments":[{"name":"value0","nativeSrc":"38966:6:125","nodeType":"YulIdentifier","src":"38966:6:125"},{"kind":"number","nativeSrc":"38974:4:125","nodeType":"YulLiteral","src":"38974:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"38962:3:125","nodeType":"YulIdentifier","src":"38962:3:125"},"nativeSrc":"38962:17:125","nodeType":"YulFunctionCall","src":"38962:17:125"}],"functionName":{"name":"mstore","nativeSrc":"38944:6:125","nodeType":"YulIdentifier","src":"38944:6:125"},"nativeSrc":"38944:36:125","nodeType":"YulFunctionCall","src":"38944:36:125"},"nativeSrc":"38944:36:125","nodeType":"YulExpressionStatement","src":"38944:36:125"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39000:9:125","nodeType":"YulIdentifier","src":"39000:9:125"},{"kind":"number","nativeSrc":"39011:2:125","nodeType":"YulLiteral","src":"39011:2:125","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"38996:3:125","nodeType":"YulIdentifier","src":"38996:3:125"},"nativeSrc":"38996:18:125","nodeType":"YulFunctionCall","src":"38996:18:125"},{"name":"value1","nativeSrc":"39016:6:125","nodeType":"YulIdentifier","src":"39016:6:125"}],"functionName":{"name":"mstore","nativeSrc":"38989:6:125","nodeType":"YulIdentifier","src":"38989:6:125"},"nativeSrc":"38989:34:125","nodeType":"YulFunctionCall","src":"38989:34:125"},"nativeSrc":"38989:34:125","nodeType":"YulExpressionStatement","src":"38989:34:125"}]},"name":"abi_encode_tuple_t_rational_96_by_1_t_uint256__to_t_uint8_t_uint256__fromStack_reversed","nativeSrc":"38763:266:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38860:9:125","nodeType":"YulTypedName","src":"38860:9:125","type":""},{"name":"value1","nativeSrc":"38871:6:125","nodeType":"YulTypedName","src":"38871:6:125","type":""},{"name":"value0","nativeSrc":"38879:6:125","nodeType":"YulTypedName","src":"38879:6:125","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"38890:4:125","nodeType":"YulTypedName","src":"38890:4:125","type":""}],"src":"38763:266:125"},{"body":{"nativeSrc":"39135:273:125","nodeType":"YulBlock","src":"39135:273:125","statements":[{"nativeSrc":"39145:29:125","nodeType":"YulVariableDeclaration","src":"39145:29:125","value":{"arguments":[{"name":"array","nativeSrc":"39168:5:125","nodeType":"YulIdentifier","src":"39168:5:125"}],"functionName":{"name":"calldataload","nativeSrc":"39155:12:125","nodeType":"YulIdentifier","src":"39155:12:125"},"nativeSrc":"39155:19:125","nodeType":"YulFunctionCall","src":"39155:19:125"},"variables":[{"name":"_1","nativeSrc":"39149:2:125","nodeType":"YulTypedName","src":"39149:2:125","type":""}]},{"nativeSrc":"39183:49:125","nodeType":"YulAssignment","src":"39183:49:125","value":{"arguments":[{"name":"_1","nativeSrc":"39196:2:125","nodeType":"YulIdentifier","src":"39196:2:125"},{"arguments":[{"kind":"number","nativeSrc":"39204:26:125","nodeType":"YulLiteral","src":"39204:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"39200:3:125","nodeType":"YulIdentifier","src":"39200:3:125"},"nativeSrc":"39200:31:125","nodeType":"YulFunctionCall","src":"39200:31:125"}],"functionName":{"name":"and","nativeSrc":"39192:3:125","nodeType":"YulIdentifier","src":"39192:3:125"},"nativeSrc":"39192:40:125","nodeType":"YulFunctionCall","src":"39192:40:125"},"variableNames":[{"name":"value","nativeSrc":"39183:5:125","nodeType":"YulIdentifier","src":"39183:5:125"}]},{"body":{"nativeSrc":"39264:138:125","nodeType":"YulBlock","src":"39264:138:125","statements":[{"nativeSrc":"39278:114:125","nodeType":"YulAssignment","src":"39278:114:125","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"39295:2:125","nodeType":"YulIdentifier","src":"39295:2:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"39307:1:125","nodeType":"YulLiteral","src":"39307:1:125","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"39314:2:125","nodeType":"YulLiteral","src":"39314:2:125","type":"","value":"20"},{"name":"len","nativeSrc":"39318:3:125","nodeType":"YulIdentifier","src":"39318:3:125"}],"functionName":{"name":"sub","nativeSrc":"39310:3:125","nodeType":"YulIdentifier","src":"39310:3:125"},"nativeSrc":"39310:12:125","nodeType":"YulFunctionCall","src":"39310:12:125"}],"functionName":{"name":"shl","nativeSrc":"39303:3:125","nodeType":"YulIdentifier","src":"39303:3:125"},"nativeSrc":"39303:20:125","nodeType":"YulFunctionCall","src":"39303:20:125"},{"arguments":[{"kind":"number","nativeSrc":"39329:26:125","nodeType":"YulLiteral","src":"39329:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"39325:3:125","nodeType":"YulIdentifier","src":"39325:3:125"},"nativeSrc":"39325:31:125","nodeType":"YulFunctionCall","src":"39325:31:125"}],"functionName":{"name":"shl","nativeSrc":"39299:3:125","nodeType":"YulIdentifier","src":"39299:3:125"},"nativeSrc":"39299:58:125","nodeType":"YulFunctionCall","src":"39299:58:125"}],"functionName":{"name":"and","nativeSrc":"39291:3:125","nodeType":"YulIdentifier","src":"39291:3:125"},"nativeSrc":"39291:67:125","nodeType":"YulFunctionCall","src":"39291:67:125"},{"arguments":[{"kind":"number","nativeSrc":"39364:26:125","nodeType":"YulLiteral","src":"39364:26:125","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"39360:3:125","nodeType":"YulIdentifier","src":"39360:3:125"},"nativeSrc":"39360:31:125","nodeType":"YulFunctionCall","src":"39360:31:125"}],"functionName":{"name":"and","nativeSrc":"39287:3:125","nodeType":"YulIdentifier","src":"39287:3:125"},"nativeSrc":"39287:105:125","nodeType":"YulFunctionCall","src":"39287:105:125"},"variableNames":[{"name":"value","nativeSrc":"39278:5:125","nodeType":"YulIdentifier","src":"39278:5:125"}]}]},"condition":{"arguments":[{"name":"len","nativeSrc":"39247:3:125","nodeType":"YulIdentifier","src":"39247:3:125"},{"kind":"number","nativeSrc":"39252:2:125","nodeType":"YulLiteral","src":"39252:2:125","type":"","value":"20"}],"functionName":{"name":"lt","nativeSrc":"39244:2:125","nodeType":"YulIdentifier","src":"39244:2:125"},"nativeSrc":"39244:11:125","nodeType":"YulFunctionCall","src":"39244:11:125"},"nativeSrc":"39241:161:125","nodeType":"YulIf","src":"39241:161:125"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_calldata_ptr_to_t_bytes20","nativeSrc":"39034:374:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"39110:5:125","nodeType":"YulTypedName","src":"39110:5:125","type":""},{"name":"len","nativeSrc":"39117:3:125","nodeType":"YulTypedName","src":"39117:3:125","type":""}],"returnVariables":[{"name":"value","nativeSrc":"39125:5:125","nodeType":"YulTypedName","src":"39125:5:125","type":""}],"src":"39034:374:125"},{"body":{"nativeSrc":"39459:142:125","nodeType":"YulBlock","src":"39459:142:125","statements":[{"nativeSrc":"39469:37:125","nodeType":"YulVariableDeclaration","src":"39469:37:125","value":{"arguments":[{"name":"value","nativeSrc":"39488:5:125","nodeType":"YulIdentifier","src":"39488:5:125"},{"kind":"number","nativeSrc":"39495:10:125","nodeType":"YulLiteral","src":"39495:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"39484:3:125","nodeType":"YulIdentifier","src":"39484:3:125"},"nativeSrc":"39484:22:125","nodeType":"YulFunctionCall","src":"39484:22:125"},"variables":[{"name":"value_1","nativeSrc":"39473:7:125","nodeType":"YulTypedName","src":"39473:7:125","type":""}]},{"body":{"nativeSrc":"39542:22:125","nodeType":"YulBlock","src":"39542:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"39544:16:125","nodeType":"YulIdentifier","src":"39544:16:125"},"nativeSrc":"39544:18:125","nodeType":"YulFunctionCall","src":"39544:18:125"},"nativeSrc":"39544:18:125","nodeType":"YulExpressionStatement","src":"39544:18:125"}]},"condition":{"arguments":[{"name":"value_1","nativeSrc":"39521:7:125","nodeType":"YulIdentifier","src":"39521:7:125"},{"kind":"number","nativeSrc":"39530:10:125","nodeType":"YulLiteral","src":"39530:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"eq","nativeSrc":"39518:2:125","nodeType":"YulIdentifier","src":"39518:2:125"},"nativeSrc":"39518:23:125","nodeType":"YulFunctionCall","src":"39518:23:125"},"nativeSrc":"39515:49:125","nodeType":"YulIf","src":"39515:49:125"},{"nativeSrc":"39573:22:125","nodeType":"YulAssignment","src":"39573:22:125","value":{"arguments":[{"name":"value_1","nativeSrc":"39584:7:125","nodeType":"YulIdentifier","src":"39584:7:125"},{"kind":"number","nativeSrc":"39593:1:125","nodeType":"YulLiteral","src":"39593:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"39580:3:125","nodeType":"YulIdentifier","src":"39580:3:125"},"nativeSrc":"39580:15:125","nodeType":"YulFunctionCall","src":"39580:15:125"},"variableNames":[{"name":"ret","nativeSrc":"39573:3:125","nodeType":"YulIdentifier","src":"39573:3:125"}]}]},"name":"increment_t_uint32","nativeSrc":"39413:188:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"39441:5:125","nodeType":"YulTypedName","src":"39441:5:125","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"39451:3:125","nodeType":"YulTypedName","src":"39451:3:125","type":""}],"src":"39413:188:125"},{"body":{"nativeSrc":"39643:133:125","nodeType":"YulBlock","src":"39643:133:125","statements":[{"nativeSrc":"39653:29:125","nodeType":"YulVariableDeclaration","src":"39653:29:125","value":{"arguments":[{"name":"y","nativeSrc":"39668:1:125","nodeType":"YulIdentifier","src":"39668:1:125"},{"kind":"number","nativeSrc":"39671:10:125","nodeType":"YulLiteral","src":"39671:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"39664:3:125","nodeType":"YulIdentifier","src":"39664:3:125"},"nativeSrc":"39664:18:125","nodeType":"YulFunctionCall","src":"39664:18:125"},"variables":[{"name":"y_1","nativeSrc":"39657:3:125","nodeType":"YulTypedName","src":"39657:3:125","type":""}]},{"body":{"nativeSrc":"39706:22:125","nodeType":"YulBlock","src":"39706:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"39708:16:125","nodeType":"YulIdentifier","src":"39708:16:125"},"nativeSrc":"39708:18:125","nodeType":"YulFunctionCall","src":"39708:18:125"},"nativeSrc":"39708:18:125","nodeType":"YulExpressionStatement","src":"39708:18:125"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"39701:3:125","nodeType":"YulIdentifier","src":"39701:3:125"}],"functionName":{"name":"iszero","nativeSrc":"39694:6:125","nodeType":"YulIdentifier","src":"39694:6:125"},"nativeSrc":"39694:11:125","nodeType":"YulFunctionCall","src":"39694:11:125"},"nativeSrc":"39691:37:125","nodeType":"YulIf","src":"39691:37:125"},{"nativeSrc":"39737:33:125","nodeType":"YulAssignment","src":"39737:33:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"39750:1:125","nodeType":"YulIdentifier","src":"39750:1:125"},{"kind":"number","nativeSrc":"39753:10:125","nodeType":"YulLiteral","src":"39753:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"39746:3:125","nodeType":"YulIdentifier","src":"39746:3:125"},"nativeSrc":"39746:18:125","nodeType":"YulFunctionCall","src":"39746:18:125"},{"name":"y_1","nativeSrc":"39766:3:125","nodeType":"YulIdentifier","src":"39766:3:125"}],"functionName":{"name":"mod","nativeSrc":"39742:3:125","nodeType":"YulIdentifier","src":"39742:3:125"},"nativeSrc":"39742:28:125","nodeType":"YulFunctionCall","src":"39742:28:125"},"variableNames":[{"name":"r","nativeSrc":"39737:1:125","nodeType":"YulIdentifier","src":"39737:1:125"}]}]},"name":"mod_t_uint32","nativeSrc":"39606:170:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"39628:1:125","nodeType":"YulTypedName","src":"39628:1:125","type":""},{"name":"y","nativeSrc":"39631:1:125","nodeType":"YulTypedName","src":"39631:1:125","type":""}],"returnVariables":[{"name":"r","nativeSrc":"39637:1:125","nodeType":"YulTypedName","src":"39637:1:125","type":""}],"src":"39606:170:125"},{"body":{"nativeSrc":"39832:193:125","nodeType":"YulBlock","src":"39832:193:125","statements":[{"nativeSrc":"39842:62:125","nodeType":"YulVariableDeclaration","src":"39842:62:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"39869:1:125","nodeType":"YulIdentifier","src":"39869:1:125"},{"kind":"number","nativeSrc":"39872:10:125","nodeType":"YulLiteral","src":"39872:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"39865:3:125","nodeType":"YulIdentifier","src":"39865:3:125"},"nativeSrc":"39865:18:125","nodeType":"YulFunctionCall","src":"39865:18:125"},{"arguments":[{"name":"y","nativeSrc":"39889:1:125","nodeType":"YulIdentifier","src":"39889:1:125"},{"kind":"number","nativeSrc":"39892:10:125","nodeType":"YulLiteral","src":"39892:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"39885:3:125","nodeType":"YulIdentifier","src":"39885:3:125"},"nativeSrc":"39885:18:125","nodeType":"YulFunctionCall","src":"39885:18:125"}],"functionName":{"name":"mul","nativeSrc":"39861:3:125","nodeType":"YulIdentifier","src":"39861:3:125"},"nativeSrc":"39861:43:125","nodeType":"YulFunctionCall","src":"39861:43:125"},"variables":[{"name":"product_raw","nativeSrc":"39846:11:125","nodeType":"YulTypedName","src":"39846:11:125","type":""}]},{"nativeSrc":"39913:39:125","nodeType":"YulAssignment","src":"39913:39:125","value":{"arguments":[{"name":"product_raw","nativeSrc":"39928:11:125","nodeType":"YulIdentifier","src":"39928:11:125"},{"kind":"number","nativeSrc":"39941:10:125","nodeType":"YulLiteral","src":"39941:10:125","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"39924:3:125","nodeType":"YulIdentifier","src":"39924:3:125"},"nativeSrc":"39924:28:125","nodeType":"YulFunctionCall","src":"39924:28:125"},"variableNames":[{"name":"product","nativeSrc":"39913:7:125","nodeType":"YulIdentifier","src":"39913:7:125"}]},{"body":{"nativeSrc":"39997:22:125","nodeType":"YulBlock","src":"39997:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"39999:16:125","nodeType":"YulIdentifier","src":"39999:16:125"},"nativeSrc":"39999:18:125","nodeType":"YulFunctionCall","src":"39999:18:125"},"nativeSrc":"39999:18:125","nodeType":"YulExpressionStatement","src":"39999:18:125"}]},"condition":{"arguments":[{"arguments":[{"name":"product","nativeSrc":"39974:7:125","nodeType":"YulIdentifier","src":"39974:7:125"},{"name":"product_raw","nativeSrc":"39983:11:125","nodeType":"YulIdentifier","src":"39983:11:125"}],"functionName":{"name":"eq","nativeSrc":"39971:2:125","nodeType":"YulIdentifier","src":"39971:2:125"},"nativeSrc":"39971:24:125","nodeType":"YulFunctionCall","src":"39971:24:125"}],"functionName":{"name":"iszero","nativeSrc":"39964:6:125","nodeType":"YulIdentifier","src":"39964:6:125"},"nativeSrc":"39964:32:125","nodeType":"YulFunctionCall","src":"39964:32:125"},"nativeSrc":"39961:58:125","nodeType":"YulIf","src":"39961:58:125"}]},"name":"checked_mul_t_uint32","nativeSrc":"39781:244:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"39811:1:125","nodeType":"YulTypedName","src":"39811:1:125","type":""},{"name":"y","nativeSrc":"39814:1:125","nodeType":"YulTypedName","src":"39814:1:125","type":""}],"returnVariables":[{"name":"product","nativeSrc":"39820:7:125","nodeType":"YulTypedName","src":"39820:7:125","type":""}],"src":"39781:244:125"},{"body":{"nativeSrc":"40086:65:125","nodeType":"YulBlock","src":"40086:65:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"40103:1:125","nodeType":"YulLiteral","src":"40103:1:125","type":"","value":"0"},{"name":"ptr","nativeSrc":"40106:3:125","nodeType":"YulIdentifier","src":"40106:3:125"}],"functionName":{"name":"mstore","nativeSrc":"40096:6:125","nodeType":"YulIdentifier","src":"40096:6:125"},"nativeSrc":"40096:14:125","nodeType":"YulFunctionCall","src":"40096:14:125"},"nativeSrc":"40096:14:125","nodeType":"YulExpressionStatement","src":"40096:14:125"},{"nativeSrc":"40119:26:125","nodeType":"YulAssignment","src":"40119:26:125","value":{"arguments":[{"kind":"number","nativeSrc":"40137:1:125","nodeType":"YulLiteral","src":"40137:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"40140:4:125","nodeType":"YulLiteral","src":"40140:4:125","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"40127:9:125","nodeType":"YulIdentifier","src":"40127:9:125"},"nativeSrc":"40127:18:125","nodeType":"YulFunctionCall","src":"40127:18:125"},"variableNames":[{"name":"data","nativeSrc":"40119:4:125","nodeType":"YulIdentifier","src":"40119:4:125"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"40030:121:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"40069:3:125","nodeType":"YulTypedName","src":"40069:3:125","type":""}],"returnVariables":[{"name":"data","nativeSrc":"40077:4:125","nodeType":"YulTypedName","src":"40077:4:125","type":""}],"src":"40030:121:125"},{"body":{"nativeSrc":"40237:437:125","nodeType":"YulBlock","src":"40237:437:125","statements":[{"body":{"nativeSrc":"40270:398:125","nodeType":"YulBlock","src":"40270:398:125","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"40291:1:125","nodeType":"YulLiteral","src":"40291:1:125","type":"","value":"0"},{"name":"array","nativeSrc":"40294:5:125","nodeType":"YulIdentifier","src":"40294:5:125"}],"functionName":{"name":"mstore","nativeSrc":"40284:6:125","nodeType":"YulIdentifier","src":"40284:6:125"},"nativeSrc":"40284:16:125","nodeType":"YulFunctionCall","src":"40284:16:125"},"nativeSrc":"40284:16:125","nodeType":"YulExpressionStatement","src":"40284:16:125"},{"nativeSrc":"40313:30:125","nodeType":"YulVariableDeclaration","src":"40313:30:125","value":{"arguments":[{"kind":"number","nativeSrc":"40335:1:125","nodeType":"YulLiteral","src":"40335:1:125","type":"","value":"0"},{"kind":"number","nativeSrc":"40338:4:125","nodeType":"YulLiteral","src":"40338:4:125","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"40325:9:125","nodeType":"YulIdentifier","src":"40325:9:125"},"nativeSrc":"40325:18:125","nodeType":"YulFunctionCall","src":"40325:18:125"},"variables":[{"name":"data","nativeSrc":"40317:4:125","nodeType":"YulTypedName","src":"40317:4:125","type":""}]},{"nativeSrc":"40356:57:125","nodeType":"YulVariableDeclaration","src":"40356:57:125","value":{"arguments":[{"name":"data","nativeSrc":"40379:4:125","nodeType":"YulIdentifier","src":"40379:4:125"},{"arguments":[{"kind":"number","nativeSrc":"40389:1:125","nodeType":"YulLiteral","src":"40389:1:125","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"40396:10:125","nodeType":"YulIdentifier","src":"40396:10:125"},{"kind":"number","nativeSrc":"40408:2:125","nodeType":"YulLiteral","src":"40408:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"40392:3:125","nodeType":"YulIdentifier","src":"40392:3:125"},"nativeSrc":"40392:19:125","nodeType":"YulFunctionCall","src":"40392:19:125"}],"functionName":{"name":"shr","nativeSrc":"40385:3:125","nodeType":"YulIdentifier","src":"40385:3:125"},"nativeSrc":"40385:27:125","nodeType":"YulFunctionCall","src":"40385:27:125"}],"functionName":{"name":"add","nativeSrc":"40375:3:125","nodeType":"YulIdentifier","src":"40375:3:125"},"nativeSrc":"40375:38:125","nodeType":"YulFunctionCall","src":"40375:38:125"},"variables":[{"name":"deleteStart","nativeSrc":"40360:11:125","nodeType":"YulTypedName","src":"40360:11:125","type":""}]},{"body":{"nativeSrc":"40450:23:125","nodeType":"YulBlock","src":"40450:23:125","statements":[{"nativeSrc":"40452:19:125","nodeType":"YulAssignment","src":"40452:19:125","value":{"name":"data","nativeSrc":"40467:4:125","nodeType":"YulIdentifier","src":"40467:4:125"},"variableNames":[{"name":"deleteStart","nativeSrc":"40452:11:125","nodeType":"YulIdentifier","src":"40452:11:125"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"40432:10:125","nodeType":"YulIdentifier","src":"40432:10:125"},{"kind":"number","nativeSrc":"40444:4:125","nodeType":"YulLiteral","src":"40444:4:125","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"40429:2:125","nodeType":"YulIdentifier","src":"40429:2:125"},"nativeSrc":"40429:20:125","nodeType":"YulFunctionCall","src":"40429:20:125"},"nativeSrc":"40426:47:125","nodeType":"YulIf","src":"40426:47:125"},{"nativeSrc":"40486:41:125","nodeType":"YulVariableDeclaration","src":"40486:41:125","value":{"arguments":[{"name":"data","nativeSrc":"40500:4:125","nodeType":"YulIdentifier","src":"40500:4:125"},{"arguments":[{"kind":"number","nativeSrc":"40510:1:125","nodeType":"YulLiteral","src":"40510:1:125","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"40517:3:125","nodeType":"YulIdentifier","src":"40517:3:125"},{"kind":"number","nativeSrc":"40522:2:125","nodeType":"YulLiteral","src":"40522:2:125","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"40513:3:125","nodeType":"YulIdentifier","src":"40513:3:125"},"nativeSrc":"40513:12:125","nodeType":"YulFunctionCall","src":"40513:12:125"}],"functionName":{"name":"shr","nativeSrc":"40506:3:125","nodeType":"YulIdentifier","src":"40506:3:125"},"nativeSrc":"40506:20:125","nodeType":"YulFunctionCall","src":"40506:20:125"}],"functionName":{"name":"add","nativeSrc":"40496:3:125","nodeType":"YulIdentifier","src":"40496:3:125"},"nativeSrc":"40496:31:125","nodeType":"YulFunctionCall","src":"40496:31:125"},"variables":[{"name":"_1","nativeSrc":"40490:2:125","nodeType":"YulTypedName","src":"40490:2:125","type":""}]},{"nativeSrc":"40540:24:125","nodeType":"YulVariableDeclaration","src":"40540:24:125","value":{"name":"deleteStart","nativeSrc":"40553:11:125","nodeType":"YulIdentifier","src":"40553:11:125"},"variables":[{"name":"start","nativeSrc":"40544:5:125","nodeType":"YulTypedName","src":"40544:5:125","type":""}]},{"body":{"nativeSrc":"40638:20:125","nodeType":"YulBlock","src":"40638:20:125","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"40647:5:125","nodeType":"YulIdentifier","src":"40647:5:125"},{"kind":"number","nativeSrc":"40654:1:125","nodeType":"YulLiteral","src":"40654:1:125","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"40640:6:125","nodeType":"YulIdentifier","src":"40640:6:125"},"nativeSrc":"40640:16:125","nodeType":"YulFunctionCall","src":"40640:16:125"},"nativeSrc":"40640:16:125","nodeType":"YulExpressionStatement","src":"40640:16:125"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"40588:5:125","nodeType":"YulIdentifier","src":"40588:5:125"},{"name":"_1","nativeSrc":"40595:2:125","nodeType":"YulIdentifier","src":"40595:2:125"}],"functionName":{"name":"lt","nativeSrc":"40585:2:125","nodeType":"YulIdentifier","src":"40585:2:125"},"nativeSrc":"40585:13:125","nodeType":"YulFunctionCall","src":"40585:13:125"},"nativeSrc":"40577:81:125","nodeType":"YulForLoop","post":{"nativeSrc":"40599:26:125","nodeType":"YulBlock","src":"40599:26:125","statements":[{"nativeSrc":"40601:22:125","nodeType":"YulAssignment","src":"40601:22:125","value":{"arguments":[{"name":"start","nativeSrc":"40614:5:125","nodeType":"YulIdentifier","src":"40614:5:125"},{"kind":"number","nativeSrc":"40621:1:125","nodeType":"YulLiteral","src":"40621:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"40610:3:125","nodeType":"YulIdentifier","src":"40610:3:125"},"nativeSrc":"40610:13:125","nodeType":"YulFunctionCall","src":"40610:13:125"},"variableNames":[{"name":"start","nativeSrc":"40601:5:125","nodeType":"YulIdentifier","src":"40601:5:125"}]}]},"pre":{"nativeSrc":"40581:3:125","nodeType":"YulBlock","src":"40581:3:125","statements":[]},"src":"40577:81:125"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"40253:3:125","nodeType":"YulIdentifier","src":"40253:3:125"},{"kind":"number","nativeSrc":"40258:2:125","nodeType":"YulLiteral","src":"40258:2:125","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"40250:2:125","nodeType":"YulIdentifier","src":"40250:2:125"},"nativeSrc":"40250:11:125","nodeType":"YulFunctionCall","src":"40250:11:125"},"nativeSrc":"40247:421:125","nodeType":"YulIf","src":"40247:421:125"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"40156:518:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"40209:5:125","nodeType":"YulTypedName","src":"40209:5:125","type":""},{"name":"len","nativeSrc":"40216:3:125","nodeType":"YulTypedName","src":"40216:3:125","type":""},{"name":"startIndex","nativeSrc":"40221:10:125","nodeType":"YulTypedName","src":"40221:10:125","type":""}],"src":"40156:518:125"},{"body":{"nativeSrc":"40764:81:125","nodeType":"YulBlock","src":"40764:81:125","statements":[{"nativeSrc":"40774:65:125","nodeType":"YulAssignment","src":"40774:65:125","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"40789:4:125","nodeType":"YulIdentifier","src":"40789:4:125"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40807:1:125","nodeType":"YulLiteral","src":"40807:1:125","type":"","value":"3"},{"name":"len","nativeSrc":"40810:3:125","nodeType":"YulIdentifier","src":"40810:3:125"}],"functionName":{"name":"shl","nativeSrc":"40803:3:125","nodeType":"YulIdentifier","src":"40803:3:125"},"nativeSrc":"40803:11:125","nodeType":"YulFunctionCall","src":"40803:11:125"},{"arguments":[{"kind":"number","nativeSrc":"40820:1:125","nodeType":"YulLiteral","src":"40820:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"40816:3:125","nodeType":"YulIdentifier","src":"40816:3:125"},"nativeSrc":"40816:6:125","nodeType":"YulFunctionCall","src":"40816:6:125"}],"functionName":{"name":"shr","nativeSrc":"40799:3:125","nodeType":"YulIdentifier","src":"40799:3:125"},"nativeSrc":"40799:24:125","nodeType":"YulFunctionCall","src":"40799:24:125"}],"functionName":{"name":"not","nativeSrc":"40795:3:125","nodeType":"YulIdentifier","src":"40795:3:125"},"nativeSrc":"40795:29:125","nodeType":"YulFunctionCall","src":"40795:29:125"}],"functionName":{"name":"and","nativeSrc":"40785:3:125","nodeType":"YulIdentifier","src":"40785:3:125"},"nativeSrc":"40785:40:125","nodeType":"YulFunctionCall","src":"40785:40:125"},{"arguments":[{"kind":"number","nativeSrc":"40831:1:125","nodeType":"YulLiteral","src":"40831:1:125","type":"","value":"1"},{"name":"len","nativeSrc":"40834:3:125","nodeType":"YulIdentifier","src":"40834:3:125"}],"functionName":{"name":"shl","nativeSrc":"40827:3:125","nodeType":"YulIdentifier","src":"40827:3:125"},"nativeSrc":"40827:11:125","nodeType":"YulFunctionCall","src":"40827:11:125"}],"functionName":{"name":"or","nativeSrc":"40782:2:125","nodeType":"YulIdentifier","src":"40782:2:125"},"nativeSrc":"40782:57:125","nodeType":"YulFunctionCall","src":"40782:57:125"},"variableNames":[{"name":"used","nativeSrc":"40774:4:125","nodeType":"YulIdentifier","src":"40774:4:125"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"40679:166:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"40741:4:125","nodeType":"YulTypedName","src":"40741:4:125","type":""},{"name":"len","nativeSrc":"40747:3:125","nodeType":"YulTypedName","src":"40747:3:125","type":""}],"returnVariables":[{"name":"used","nativeSrc":"40755:4:125","nodeType":"YulTypedName","src":"40755:4:125","type":""}],"src":"40679:166:125"},{"body":{"nativeSrc":"40946:1203:125","nodeType":"YulBlock","src":"40946:1203:125","statements":[{"nativeSrc":"40956:24:125","nodeType":"YulVariableDeclaration","src":"40956:24:125","value":{"arguments":[{"name":"src","nativeSrc":"40976:3:125","nodeType":"YulIdentifier","src":"40976:3:125"}],"functionName":{"name":"mload","nativeSrc":"40970:5:125","nodeType":"YulIdentifier","src":"40970:5:125"},"nativeSrc":"40970:10:125","nodeType":"YulFunctionCall","src":"40970:10:125"},"variables":[{"name":"newLen","nativeSrc":"40960:6:125","nodeType":"YulTypedName","src":"40960:6:125","type":""}]},{"body":{"nativeSrc":"41023:22:125","nodeType":"YulBlock","src":"41023:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"41025:16:125","nodeType":"YulIdentifier","src":"41025:16:125"},"nativeSrc":"41025:18:125","nodeType":"YulFunctionCall","src":"41025:18:125"},"nativeSrc":"41025:18:125","nodeType":"YulExpressionStatement","src":"41025:18:125"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"40995:6:125","nodeType":"YulIdentifier","src":"40995:6:125"},{"kind":"number","nativeSrc":"41003:18:125","nodeType":"YulLiteral","src":"41003:18:125","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"40992:2:125","nodeType":"YulIdentifier","src":"40992:2:125"},"nativeSrc":"40992:30:125","nodeType":"YulFunctionCall","src":"40992:30:125"},"nativeSrc":"40989:56:125","nodeType":"YulIf","src":"40989:56:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"41098:4:125","nodeType":"YulIdentifier","src":"41098:4:125"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"41136:4:125","nodeType":"YulIdentifier","src":"41136:4:125"}],"functionName":{"name":"sload","nativeSrc":"41130:5:125","nodeType":"YulIdentifier","src":"41130:5:125"},"nativeSrc":"41130:11:125","nodeType":"YulFunctionCall","src":"41130:11:125"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"41104:25:125","nodeType":"YulIdentifier","src":"41104:25:125"},"nativeSrc":"41104:38:125","nodeType":"YulFunctionCall","src":"41104:38:125"},{"name":"newLen","nativeSrc":"41144:6:125","nodeType":"YulIdentifier","src":"41144:6:125"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"41054:43:125","nodeType":"YulIdentifier","src":"41054:43:125"},"nativeSrc":"41054:97:125","nodeType":"YulFunctionCall","src":"41054:97:125"},"nativeSrc":"41054:97:125","nodeType":"YulExpressionStatement","src":"41054:97:125"},{"nativeSrc":"41160:18:125","nodeType":"YulVariableDeclaration","src":"41160:18:125","value":{"kind":"number","nativeSrc":"41177:1:125","nodeType":"YulLiteral","src":"41177:1:125","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"41164:9:125","nodeType":"YulTypedName","src":"41164:9:125","type":""}]},{"nativeSrc":"41187:17:125","nodeType":"YulAssignment","src":"41187:17:125","value":{"kind":"number","nativeSrc":"41200:4:125","nodeType":"YulLiteral","src":"41200:4:125","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"41187:9:125","nodeType":"YulIdentifier","src":"41187:9:125"}]},{"cases":[{"body":{"nativeSrc":"41250:642:125","nodeType":"YulBlock","src":"41250:642:125","statements":[{"nativeSrc":"41264:35:125","nodeType":"YulVariableDeclaration","src":"41264:35:125","value":{"arguments":[{"name":"newLen","nativeSrc":"41283:6:125","nodeType":"YulIdentifier","src":"41283:6:125"},{"arguments":[{"kind":"number","nativeSrc":"41295:2:125","nodeType":"YulLiteral","src":"41295:2:125","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"41291:3:125","nodeType":"YulIdentifier","src":"41291:3:125"},"nativeSrc":"41291:7:125","nodeType":"YulFunctionCall","src":"41291:7:125"}],"functionName":{"name":"and","nativeSrc":"41279:3:125","nodeType":"YulIdentifier","src":"41279:3:125"},"nativeSrc":"41279:20:125","nodeType":"YulFunctionCall","src":"41279:20:125"},"variables":[{"name":"loopEnd","nativeSrc":"41268:7:125","nodeType":"YulTypedName","src":"41268:7:125","type":""}]},{"nativeSrc":"41312:49:125","nodeType":"YulVariableDeclaration","src":"41312:49:125","value":{"arguments":[{"name":"slot","nativeSrc":"41356:4:125","nodeType":"YulIdentifier","src":"41356:4:125"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"41326:29:125","nodeType":"YulIdentifier","src":"41326:29:125"},"nativeSrc":"41326:35:125","nodeType":"YulFunctionCall","src":"41326:35:125"},"variables":[{"name":"dstPtr","nativeSrc":"41316:6:125","nodeType":"YulTypedName","src":"41316:6:125","type":""}]},{"nativeSrc":"41374:10:125","nodeType":"YulVariableDeclaration","src":"41374:10:125","value":{"kind":"number","nativeSrc":"41383:1:125","nodeType":"YulLiteral","src":"41383:1:125","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"41378:1:125","nodeType":"YulTypedName","src":"41378:1:125","type":""}]},{"body":{"nativeSrc":"41454:165:125","nodeType":"YulBlock","src":"41454:165:125","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"41479:6:125","nodeType":"YulIdentifier","src":"41479:6:125"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"41497:3:125","nodeType":"YulIdentifier","src":"41497:3:125"},{"name":"srcOffset","nativeSrc":"41502:9:125","nodeType":"YulIdentifier","src":"41502:9:125"}],"functionName":{"name":"add","nativeSrc":"41493:3:125","nodeType":"YulIdentifier","src":"41493:3:125"},"nativeSrc":"41493:19:125","nodeType":"YulFunctionCall","src":"41493:19:125"}],"functionName":{"name":"mload","nativeSrc":"41487:5:125","nodeType":"YulIdentifier","src":"41487:5:125"},"nativeSrc":"41487:26:125","nodeType":"YulFunctionCall","src":"41487:26:125"}],"functionName":{"name":"sstore","nativeSrc":"41472:6:125","nodeType":"YulIdentifier","src":"41472:6:125"},"nativeSrc":"41472:42:125","nodeType":"YulFunctionCall","src":"41472:42:125"},"nativeSrc":"41472:42:125","nodeType":"YulExpressionStatement","src":"41472:42:125"},{"nativeSrc":"41531:24:125","nodeType":"YulAssignment","src":"41531:24:125","value":{"arguments":[{"name":"dstPtr","nativeSrc":"41545:6:125","nodeType":"YulIdentifier","src":"41545:6:125"},{"kind":"number","nativeSrc":"41553:1:125","nodeType":"YulLiteral","src":"41553:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"41541:3:125","nodeType":"YulIdentifier","src":"41541:3:125"},"nativeSrc":"41541:14:125","nodeType":"YulFunctionCall","src":"41541:14:125"},"variableNames":[{"name":"dstPtr","nativeSrc":"41531:6:125","nodeType":"YulIdentifier","src":"41531:6:125"}]},{"nativeSrc":"41572:33:125","nodeType":"YulAssignment","src":"41572:33:125","value":{"arguments":[{"name":"srcOffset","nativeSrc":"41589:9:125","nodeType":"YulIdentifier","src":"41589:9:125"},{"kind":"number","nativeSrc":"41600:4:125","nodeType":"YulLiteral","src":"41600:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"41585:3:125","nodeType":"YulIdentifier","src":"41585:3:125"},"nativeSrc":"41585:20:125","nodeType":"YulFunctionCall","src":"41585:20:125"},"variableNames":[{"name":"srcOffset","nativeSrc":"41572:9:125","nodeType":"YulIdentifier","src":"41572:9:125"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"41408:1:125","nodeType":"YulIdentifier","src":"41408:1:125"},{"name":"loopEnd","nativeSrc":"41411:7:125","nodeType":"YulIdentifier","src":"41411:7:125"}],"functionName":{"name":"lt","nativeSrc":"41405:2:125","nodeType":"YulIdentifier","src":"41405:2:125"},"nativeSrc":"41405:14:125","nodeType":"YulFunctionCall","src":"41405:14:125"},"nativeSrc":"41397:222:125","nodeType":"YulForLoop","post":{"nativeSrc":"41420:21:125","nodeType":"YulBlock","src":"41420:21:125","statements":[{"nativeSrc":"41422:17:125","nodeType":"YulAssignment","src":"41422:17:125","value":{"arguments":[{"name":"i","nativeSrc":"41431:1:125","nodeType":"YulIdentifier","src":"41431:1:125"},{"kind":"number","nativeSrc":"41434:4:125","nodeType":"YulLiteral","src":"41434:4:125","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"41427:3:125","nodeType":"YulIdentifier","src":"41427:3:125"},"nativeSrc":"41427:12:125","nodeType":"YulFunctionCall","src":"41427:12:125"},"variableNames":[{"name":"i","nativeSrc":"41422:1:125","nodeType":"YulIdentifier","src":"41422:1:125"}]}]},"pre":{"nativeSrc":"41401:3:125","nodeType":"YulBlock","src":"41401:3:125","statements":[]},"src":"41397:222:125"},{"body":{"nativeSrc":"41667:166:125","nodeType":"YulBlock","src":"41667:166:125","statements":[{"nativeSrc":"41685:43:125","nodeType":"YulVariableDeclaration","src":"41685:43:125","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"41712:3:125","nodeType":"YulIdentifier","src":"41712:3:125"},{"name":"srcOffset","nativeSrc":"41717:9:125","nodeType":"YulIdentifier","src":"41717:9:125"}],"functionName":{"name":"add","nativeSrc":"41708:3:125","nodeType":"YulIdentifier","src":"41708:3:125"},"nativeSrc":"41708:19:125","nodeType":"YulFunctionCall","src":"41708:19:125"}],"functionName":{"name":"mload","nativeSrc":"41702:5:125","nodeType":"YulIdentifier","src":"41702:5:125"},"nativeSrc":"41702:26:125","nodeType":"YulFunctionCall","src":"41702:26:125"},"variables":[{"name":"lastValue","nativeSrc":"41689:9:125","nodeType":"YulTypedName","src":"41689:9:125","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"41752:6:125","nodeType":"YulIdentifier","src":"41752:6:125"},{"arguments":[{"name":"lastValue","nativeSrc":"41764:9:125","nodeType":"YulIdentifier","src":"41764:9:125"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"41791:1:125","nodeType":"YulLiteral","src":"41791:1:125","type":"","value":"3"},{"name":"newLen","nativeSrc":"41794:6:125","nodeType":"YulIdentifier","src":"41794:6:125"}],"functionName":{"name":"shl","nativeSrc":"41787:3:125","nodeType":"YulIdentifier","src":"41787:3:125"},"nativeSrc":"41787:14:125","nodeType":"YulFunctionCall","src":"41787:14:125"},{"kind":"number","nativeSrc":"41803:3:125","nodeType":"YulLiteral","src":"41803:3:125","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"41783:3:125","nodeType":"YulIdentifier","src":"41783:3:125"},"nativeSrc":"41783:24:125","nodeType":"YulFunctionCall","src":"41783:24:125"},{"arguments":[{"kind":"number","nativeSrc":"41813:1:125","nodeType":"YulLiteral","src":"41813:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"41809:3:125","nodeType":"YulIdentifier","src":"41809:3:125"},"nativeSrc":"41809:6:125","nodeType":"YulFunctionCall","src":"41809:6:125"}],"functionName":{"name":"shr","nativeSrc":"41779:3:125","nodeType":"YulIdentifier","src":"41779:3:125"},"nativeSrc":"41779:37:125","nodeType":"YulFunctionCall","src":"41779:37:125"}],"functionName":{"name":"not","nativeSrc":"41775:3:125","nodeType":"YulIdentifier","src":"41775:3:125"},"nativeSrc":"41775:42:125","nodeType":"YulFunctionCall","src":"41775:42:125"}],"functionName":{"name":"and","nativeSrc":"41760:3:125","nodeType":"YulIdentifier","src":"41760:3:125"},"nativeSrc":"41760:58:125","nodeType":"YulFunctionCall","src":"41760:58:125"}],"functionName":{"name":"sstore","nativeSrc":"41745:6:125","nodeType":"YulIdentifier","src":"41745:6:125"},"nativeSrc":"41745:74:125","nodeType":"YulFunctionCall","src":"41745:74:125"},"nativeSrc":"41745:74:125","nodeType":"YulExpressionStatement","src":"41745:74:125"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"41638:7:125","nodeType":"YulIdentifier","src":"41638:7:125"},{"name":"newLen","nativeSrc":"41647:6:125","nodeType":"YulIdentifier","src":"41647:6:125"}],"functionName":{"name":"lt","nativeSrc":"41635:2:125","nodeType":"YulIdentifier","src":"41635:2:125"},"nativeSrc":"41635:19:125","nodeType":"YulFunctionCall","src":"41635:19:125"},"nativeSrc":"41632:201:125","nodeType":"YulIf","src":"41632:201:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"41853:4:125","nodeType":"YulIdentifier","src":"41853:4:125"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"41867:1:125","nodeType":"YulLiteral","src":"41867:1:125","type":"","value":"1"},{"name":"newLen","nativeSrc":"41870:6:125","nodeType":"YulIdentifier","src":"41870:6:125"}],"functionName":{"name":"shl","nativeSrc":"41863:3:125","nodeType":"YulIdentifier","src":"41863:3:125"},"nativeSrc":"41863:14:125","nodeType":"YulFunctionCall","src":"41863:14:125"},{"kind":"number","nativeSrc":"41879:1:125","nodeType":"YulLiteral","src":"41879:1:125","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"41859:3:125","nodeType":"YulIdentifier","src":"41859:3:125"},"nativeSrc":"41859:22:125","nodeType":"YulFunctionCall","src":"41859:22:125"}],"functionName":{"name":"sstore","nativeSrc":"41846:6:125","nodeType":"YulIdentifier","src":"41846:6:125"},"nativeSrc":"41846:36:125","nodeType":"YulFunctionCall","src":"41846:36:125"},"nativeSrc":"41846:36:125","nodeType":"YulExpressionStatement","src":"41846:36:125"}]},"nativeSrc":"41243:649:125","nodeType":"YulCase","src":"41243:649:125","value":{"kind":"number","nativeSrc":"41248:1:125","nodeType":"YulLiteral","src":"41248:1:125","type":"","value":"1"}},{"body":{"nativeSrc":"41909:234:125","nodeType":"YulBlock","src":"41909:234:125","statements":[{"nativeSrc":"41923:14:125","nodeType":"YulVariableDeclaration","src":"41923:14:125","value":{"kind":"number","nativeSrc":"41936:1:125","nodeType":"YulLiteral","src":"41936:1:125","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"41927:5:125","nodeType":"YulTypedName","src":"41927:5:125","type":""}]},{"body":{"nativeSrc":"41972:67:125","nodeType":"YulBlock","src":"41972:67:125","statements":[{"nativeSrc":"41990:35:125","nodeType":"YulAssignment","src":"41990:35:125","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"42009:3:125","nodeType":"YulIdentifier","src":"42009:3:125"},{"name":"srcOffset","nativeSrc":"42014:9:125","nodeType":"YulIdentifier","src":"42014:9:125"}],"functionName":{"name":"add","nativeSrc":"42005:3:125","nodeType":"YulIdentifier","src":"42005:3:125"},"nativeSrc":"42005:19:125","nodeType":"YulFunctionCall","src":"42005:19:125"}],"functionName":{"name":"mload","nativeSrc":"41999:5:125","nodeType":"YulIdentifier","src":"41999:5:125"},"nativeSrc":"41999:26:125","nodeType":"YulFunctionCall","src":"41999:26:125"},"variableNames":[{"name":"value","nativeSrc":"41990:5:125","nodeType":"YulIdentifier","src":"41990:5:125"}]}]},"condition":{"name":"newLen","nativeSrc":"41953:6:125","nodeType":"YulIdentifier","src":"41953:6:125"},"nativeSrc":"41950:89:125","nodeType":"YulIf","src":"41950:89:125"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"42059:4:125","nodeType":"YulIdentifier","src":"42059:4:125"},{"arguments":[{"name":"value","nativeSrc":"42118:5:125","nodeType":"YulIdentifier","src":"42118:5:125"},{"name":"newLen","nativeSrc":"42125:6:125","nodeType":"YulIdentifier","src":"42125:6:125"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"42065:52:125","nodeType":"YulIdentifier","src":"42065:52:125"},"nativeSrc":"42065:67:125","nodeType":"YulFunctionCall","src":"42065:67:125"}],"functionName":{"name":"sstore","nativeSrc":"42052:6:125","nodeType":"YulIdentifier","src":"42052:6:125"},"nativeSrc":"42052:81:125","nodeType":"YulFunctionCall","src":"42052:81:125"},"nativeSrc":"42052:81:125","nodeType":"YulExpressionStatement","src":"42052:81:125"}]},"nativeSrc":"41901:242:125","nodeType":"YulCase","src":"41901:242:125","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"41223:6:125","nodeType":"YulIdentifier","src":"41223:6:125"},{"kind":"number","nativeSrc":"41231:2:125","nodeType":"YulLiteral","src":"41231:2:125","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"41220:2:125","nodeType":"YulIdentifier","src":"41220:2:125"},"nativeSrc":"41220:14:125","nodeType":"YulFunctionCall","src":"41220:14:125"},"nativeSrc":"41213:930:125","nodeType":"YulSwitch","src":"41213:930:125"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"40850:1299:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"40931:4:125","nodeType":"YulTypedName","src":"40931:4:125","type":""},{"name":"src","nativeSrc":"40937:3:125","nodeType":"YulTypedName","src":"40937:3:125","type":""}],"src":"40850:1299:125"},{"body":{"nativeSrc":"42190:121:125","nodeType":"YulBlock","src":"42190:121:125","statements":[{"nativeSrc":"42200:23:125","nodeType":"YulVariableDeclaration","src":"42200:23:125","value":{"arguments":[{"name":"y","nativeSrc":"42215:1:125","nodeType":"YulIdentifier","src":"42215:1:125"},{"kind":"number","nativeSrc":"42218:4:125","nodeType":"YulLiteral","src":"42218:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"42211:3:125","nodeType":"YulIdentifier","src":"42211:3:125"},"nativeSrc":"42211:12:125","nodeType":"YulFunctionCall","src":"42211:12:125"},"variables":[{"name":"y_1","nativeSrc":"42204:3:125","nodeType":"YulTypedName","src":"42204:3:125","type":""}]},{"body":{"nativeSrc":"42247:22:125","nodeType":"YulBlock","src":"42247:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"42249:16:125","nodeType":"YulIdentifier","src":"42249:16:125"},"nativeSrc":"42249:18:125","nodeType":"YulFunctionCall","src":"42249:18:125"},"nativeSrc":"42249:18:125","nodeType":"YulExpressionStatement","src":"42249:18:125"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"42242:3:125","nodeType":"YulIdentifier","src":"42242:3:125"}],"functionName":{"name":"iszero","nativeSrc":"42235:6:125","nodeType":"YulIdentifier","src":"42235:6:125"},"nativeSrc":"42235:11:125","nodeType":"YulFunctionCall","src":"42235:11:125"},"nativeSrc":"42232:37:125","nodeType":"YulIf","src":"42232:37:125"},{"nativeSrc":"42278:27:125","nodeType":"YulAssignment","src":"42278:27:125","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"42291:1:125","nodeType":"YulIdentifier","src":"42291:1:125"},{"kind":"number","nativeSrc":"42294:4:125","nodeType":"YulLiteral","src":"42294:4:125","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"42287:3:125","nodeType":"YulIdentifier","src":"42287:3:125"},"nativeSrc":"42287:12:125","nodeType":"YulFunctionCall","src":"42287:12:125"},{"name":"y_1","nativeSrc":"42301:3:125","nodeType":"YulIdentifier","src":"42301:3:125"}],"functionName":{"name":"mod","nativeSrc":"42283:3:125","nodeType":"YulIdentifier","src":"42283:3:125"},"nativeSrc":"42283:22:125","nodeType":"YulFunctionCall","src":"42283:22:125"},"variableNames":[{"name":"r","nativeSrc":"42278:1:125","nodeType":"YulIdentifier","src":"42278:1:125"}]}]},"name":"mod_t_uint8","nativeSrc":"42154:157:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"42175:1:125","nodeType":"YulTypedName","src":"42175:1:125","type":""},{"name":"y","nativeSrc":"42178:1:125","nodeType":"YulTypedName","src":"42178:1:125","type":""}],"returnVariables":[{"name":"r","nativeSrc":"42184:1:125","nodeType":"YulTypedName","src":"42184:1:125","type":""}],"src":"42154:157:125"},{"body":{"nativeSrc":"42363:89:125","nodeType":"YulBlock","src":"42363:89:125","statements":[{"body":{"nativeSrc":"42390:22:125","nodeType":"YulBlock","src":"42390:22:125","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"42392:16:125","nodeType":"YulIdentifier","src":"42392:16:125"},"nativeSrc":"42392:18:125","nodeType":"YulFunctionCall","src":"42392:18:125"},"nativeSrc":"42392:18:125","nodeType":"YulExpressionStatement","src":"42392:18:125"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"42383:5:125","nodeType":"YulIdentifier","src":"42383:5:125"}],"functionName":{"name":"iszero","nativeSrc":"42376:6:125","nodeType":"YulIdentifier","src":"42376:6:125"},"nativeSrc":"42376:13:125","nodeType":"YulFunctionCall","src":"42376:13:125"},"nativeSrc":"42373:39:125","nodeType":"YulIf","src":"42373:39:125"},{"nativeSrc":"42421:25:125","nodeType":"YulAssignment","src":"42421:25:125","value":{"arguments":[{"name":"value","nativeSrc":"42432:5:125","nodeType":"YulIdentifier","src":"42432:5:125"},{"arguments":[{"kind":"number","nativeSrc":"42443:1:125","nodeType":"YulLiteral","src":"42443:1:125","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"42439:3:125","nodeType":"YulIdentifier","src":"42439:3:125"},"nativeSrc":"42439:6:125","nodeType":"YulFunctionCall","src":"42439:6:125"}],"functionName":{"name":"add","nativeSrc":"42428:3:125","nodeType":"YulIdentifier","src":"42428:3:125"},"nativeSrc":"42428:18:125","nodeType":"YulFunctionCall","src":"42428:18:125"},"variableNames":[{"name":"ret","nativeSrc":"42421:3:125","nodeType":"YulIdentifier","src":"42421:3:125"}]}]},"name":"decrement_t_uint256","nativeSrc":"42316:136:125","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"42345:5:125","nodeType":"YulTypedName","src":"42345:5:125","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"42355:3:125","nodeType":"YulTypedName","src":"42355:3:125","type":""}],"src":"42316:136:125"}]},"contents":"{\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_bytes4(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_bytes4(headStart)\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_string(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_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string(value0, add(headStart, 32))\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function allocate_memory() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 384)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_available_length_string(src, length, end) -> array\n    {\n        let size := 0\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let result := and(add(length, 31), not(31))\n        size := add(result, 0x20)\n        let memPtr := 0\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(result, 63), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        array := memPtr\n        mstore(memPtr, length)\n        if gt(add(src, length), end) { revert(0, 0) }\n        calldatacopy(add(memPtr, 0x20), src, length)\n        mstore(add(add(memPtr, length), 0x20), 0)\n    }\n    function abi_decode_string(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        array := abi_decode_available_length_string(add(offset, 0x20), calldataload(offset), end)\n    }\n    function validator_revert_contract_IERC4626(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_contract$_IERC4626_$22463(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        value0 := abi_decode_string(add(headStart, offset), dataEnd)\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        value1 := abi_decode_string(add(headStart, offset_1), dataEnd)\n        let value := calldataload(add(headStart, 64))\n        validator_revert_contract_IERC4626(value)\n        value2 := value\n    }\n    function abi_decode_tuple_t_uint256(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_decode_array_bytes_calldata_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_addresst_array$_t_bytes_calldata_ptr_$dyn_calldata_ptrt_address(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_contract_IERC4626(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_bytes_calldata_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        let value_1 := calldataload(add(headStart, 64))\n        validator_revert_contract_IERC4626(value_1)\n        value3 := value_1\n    }\n    function validator_revert_uint32(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffff))) { revert(0, 0) }\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_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\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_contract_IERC4626(value)\n        value0 := value\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_enum_TargetStatus(value, pos)\n    {\n        if iszero(lt(value, 4))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n        mstore(pos, value)\n    }\n    function abi_encode_tuple_t_enum$_TargetStatus_$38330__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        abi_encode_enum_TargetStatus(value0, headStart)\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        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\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_addresst_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let offset := calldataload(add(headStart, 96))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value3_1, value4_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value3 := value3_1\n        value4 := value4_1\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 validator_revert_bool(value)\n    {\n        if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IERC4626_$22463t_bool(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_bool(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_addresst_uint32t_uint32t_uint256t_address(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_uint32(value_2)\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := calldataload(add(headStart, 128))\n        validator_revert_contract_IERC4626(value_4)\n        value4 := value_4\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        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\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_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_contract_IERC4626(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_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string(value0, add(headStart, 32))\n    }\n    function abi_encode_address(value, pos)\n    {\n        mstore(pos, and(value, sub(shl(160, 1), 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_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_encode_tuple_t_contract$_IPolicyPool_$40853__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_bytes_memory_ptr(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\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        value1 := abi_decode_available_length_string(add(_1, 32), calldataload(_1), dataEnd)\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_addresst_addresst_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 192) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 128))\n        value4 := value_4\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 160))\n        value5 := value_5\n    }\n    function abi_decode_tuple_t_uint256t_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_contract_IERC4626(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_int256__to_t_int256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_addresst_uint32t_uint32t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_uint32(value_2)\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n    }\n    function abi_decode_tuple_t_addresst_uint32t_uint32(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_uint32(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_contract$_IERC4626_$22463__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_uint256t_addresst_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { 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_contract_IERC4626(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_contract_IERC4626(value_2)\n        value2 := value_2\n    }\n    function abi_decode_tuple_t_addresst_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_decode_tuple_t_addresst_uint32t_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\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_contract_IERC4626(value)\n        value0 := value\n        value1 := abi_decode_bytes4(add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_bytes_calldata_ptrt_address(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_contract_IERC4626(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        validator_revert_contract_IERC4626(value_1)\n        value3 := value_1\n    }\n    function abi_encode_uint40(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffff))\n    }\n    function abi_encode_tuple_t_struct$_PolicyData_$7744_memory_ptr__to_t_struct$_PolicyData_$7744_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 384)\n        mstore(headStart, mload(value0))\n        mstore(add(headStart, 0x20), mload(add(value0, 0x20)))\n        mstore(add(headStart, 0x40), mload(add(value0, 0x40)))\n        mstore(add(headStart, 0x60), mload(add(value0, 0x60)))\n        mstore(add(headStart, 0x80), mload(add(value0, 0x80)))\n        mstore(add(headStart, 0xa0), mload(add(value0, 0xa0)))\n        mstore(add(headStart, 0xc0), mload(add(value0, 0xc0)))\n        mstore(add(headStart, 0xe0), mload(add(value0, 0xe0)))\n        mstore(add(headStart, 0x0100), mload(add(value0, 0x0100)))\n        mstore(add(headStart, 0x0120), mload(add(value0, 0x0120)))\n        let memberValue0 := mload(add(value0, 0x0140))\n        abi_encode_uint40(memberValue0, add(headStart, 0x0140))\n        let memberValue0_1 := mload(add(value0, 0x0160))\n        abi_encode_uint40(memberValue0_1, add(headStart, 0x0160))\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_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_IERC4626(value_1)\n        value1 := value_1\n    }\n    function abi_decode_tuple_t_addresst_array$_t_bytes_calldata_ptr_$dyn_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_contract_IERC4626(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_bytes_calldata_dyn_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_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            tail_2 := abi_encode_string(mload(srcPtr), tail_2)\n            srcPtr := add(srcPtr, 32)\n            pos := add(pos, 32)\n        }\n        tail := tail_2\n    }\n    function abi_decode_tuple_t_addresst_enum$_TargetStatus_$38330(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        if iszero(lt(value_1, 4)) { revert(0, 0) }\n        value1 := value_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        let value := 0\n        value := mload(headStart)\n        value0 := value\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_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function negate_t_int256(value) -> ret\n    {\n        if eq(value, shl(255, 1)) { panic_error_0x11() }\n        ret := sub(0, value)\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 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_rational_1_by_1__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_address_t_enum$_TargetStatus_$38330__to_t_address_t_uint8__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        abi_encode_enum_TargetStatus(value1, add(headStart, 32))\n    }\n    function abi_encode_bytes_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_array$_t_bytes_calldata_ptr_$dyn_calldata_ptr_t_address__to_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        let tail_1 := add(headStart, 64)\n        mstore(headStart, 64)\n        let pos := tail_1\n        mstore(tail_1, value1)\n        pos := add(headStart, 96)\n        let tail_2 := add(add(headStart, shl(5, value1)), 96)\n        let srcPtr := value0\n        let i := 0\n        let _1 := add(sub(calldatasize(), value0), not(30))\n        for { } lt(i, value1) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), not(95)))\n            let rel_offset_of_tail := calldataload(srcPtr)\n            if iszero(slt(rel_offset_of_tail, _1)) { revert(0, 0) }\n            let value := add(rel_offset_of_tail, value0)\n            let length := calldataload(value)\n            let value_1 := add(value, 0x20)\n            if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n            if sgt(value_1, sub(calldatasize(), length)) { revert(0, 0) }\n            tail_2 := abi_encode_bytes_calldata(value_1, length, tail_2)\n            srcPtr := add(srcPtr, 0x20)\n            pos := add(pos, 0x20)\n        }\n        tail := tail_2\n        abi_encode_address(value2, add(headStart, 0x20))\n    }\n    function abi_encode_tuple_t_uint32_t_uint32__to_t_uint32_t_uint32__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, 0xffffffff))\n    }\n    function abi_encode_tuple_t_uint256_t_int256__to_t_uint256_t_int256__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_t_uint32_t_uint32_t_uint256_t_int256_t_address__to_t_uint32_t_uint32_t_uint256_t_int256_t_address__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n    }\n    function checked_add_t_uint8(x, y) -> sum\n    {\n        sum := add(and(x, 0xff), and(y, 0xff))\n        if gt(sum, 0xff) { 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_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_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\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_t_address__to_t_uint256_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_uint96_t_uint256_t_uint96_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), and(value2, 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 96), value3)\n    }\n    function abi_encode_tuple_t_struct$_TargetConfig_$38340_storage_ptr__to_t_struct$_TargetConfig_$38340_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        let slotValue := sload(value0)\n        mstore(headStart, and(slotValue, 0xffffffff))\n        abi_encode_enum_TargetStatus(and(shr(32, slotValue), 0xff), add(headStart, 32))\n        mstore(add(headStart, 0x40), and(shr(40, slotValue), 0xffffffffffffffffffffffff))\n        mstore(add(headStart, 0x60), and(shr(136, slotValue), 0xffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_packed_t_address_t_bytes4__to_t_address_t_bytes4__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        mstore(pos, and(shl(96, value0), not(0xffffffffffffffffffffffff)))\n        mstore(add(pos, 20), and(value1, shl(224, 0xffffffff)))\n        end := add(pos, 24)\n    }\n    function abi_encode_tuple_t_bytes_calldata_ptr_t_address__to_t_bytes_memory_ptr_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        tail := abi_encode_bytes_calldata(value0, value1, add(headStart, 64))\n        mstore(add(headStart, 32), and(value2, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_uint40_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, 0xffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_struct$_PolicyData_$7744_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        let _1 := slt(sub(dataEnd, headStart), 384)\n        if _1 { revert(0, 0) }\n        _1 := 0\n        let value := allocate_memory()\n        let value_1 := 0\n        value_1 := mload(headStart)\n        mstore(value, value_1)\n        let value_2 := 0\n        value_2 := mload(add(headStart, 32))\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := mload(add(headStart, 64))\n        mstore(add(value, 64), value_3)\n        let value_4 := 0\n        value_4 := mload(add(headStart, 96))\n        mstore(add(value, 96), value_4)\n        let value_5 := 0\n        value_5 := mload(add(headStart, 128))\n        mstore(add(value, 128), value_5)\n        let value_6 := 0\n        value_6 := mload(add(headStart, 160))\n        mstore(add(value, 160), value_6)\n        let value_7 := 0\n        value_7 := mload(add(headStart, 192))\n        mstore(add(value, 192), value_7)\n        let value_8 := 0\n        value_8 := mload(add(headStart, 224))\n        mstore(add(value, 224), value_8)\n        let value_9 := 0\n        value_9 := mload(add(headStart, 256))\n        mstore(add(value, 256), value_9)\n        let value_10 := 0\n        value_10 := mload(add(headStart, 288))\n        mstore(add(value, 288), value_10)\n        mstore(add(value, 320), abi_decode_uint40_fromMemory(add(headStart, 320)))\n        mstore(add(value, 352), abi_decode_uint40_fromMemory(add(headStart, 352)))\n        value0 := value\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\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_tuple_t_enum$_TargetStatus_$38330_t_enum$_TargetStatus_$38330__to_t_uint8_t_uint8__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        abi_encode_enum_TargetStatus(value0, headStart)\n        abi_encode_enum_TargetStatus(value1, add(headStart, 32))\n    }\n    function abi_decode_tuple_t_contract$_IERC20Metadata_$24925_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\n    }\n    function checked_exp_helper(_base, exponent, max) -> power, base\n    {\n        power := 1\n        base := _base\n        for { } gt(exponent, 1) { }\n        {\n            if gt(base, div(max, base)) { panic_error_0x11() }\n            if and(exponent, 1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(1, exponent)\n        }\n    }\n    function checked_exp_unsigned(base, exponent) -> power\n    {\n        if iszero(exponent)\n        {\n            power := 1\n            leave\n        }\n        if iszero(base)\n        {\n            power := 0\n            leave\n        }\n        switch base\n        case 1 {\n            power := 1\n            leave\n        }\n        case 2 {\n            if gt(exponent, 255) { panic_error_0x11() }\n            power := shl(exponent, 1)\n            let _1 := 0\n            _1 := 0\n            leave\n        }\n        if or(and(lt(base, 11), lt(exponent, 78)), and(lt(base, 307), lt(exponent, 32)))\n        {\n            power := exp(base, exponent)\n            let _2 := 0\n            _2 := 0\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent, not(0))\n        if gt(power_1, div(not(0), base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_exp_t_uint256_t_uint8(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, and(exponent, 0xff))\n    }\n    function abi_decode_tuple_t_contract$_IAccessManager_$22178_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC4626(value)\n        value0 := value\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_decode_tuple_t_boolt_uint32_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_uint32(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_int256_t_uint96__to_t_int256_t_uint96__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_uint256_t_address_t_address__to_t_uint256_t_address_t_address__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, value0)\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    }\n    function abi_encode_tuple_t_address_t_rational_0_by_1__to_t_address_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_bool_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_bool(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_address_t_uint256__to_t_address_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_tuple_t_contract$_IERC4626_$22463_t_contract$_IERC4626_$22463__to_t_address_t_address__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(160, 1), 1)))\n    }\n    function checked_add_t_int256(x, y) -> sum\n    {\n        sum := add(x, y)\n        let _1 := slt(sum, y)\n        let _2 := slt(x, 0)\n        if or(and(iszero(_2), _1), and(_2, iszero(_1))) { panic_error_0x11() }\n    }\n    function checked_add_t_int96(x, y) -> sum\n    {\n        sum := add(signextend(11, x), signextend(11, y))\n        if or(sgt(sum, 0x7fffffffffffffffffffffff), slt(sum, not(0x7fffffffffffffffffffffff))) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint32_t_uint32_t_int256_t_int256_t_int96__to_t_uint32_t_uint32_t_int256_t_int256_t_int256__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, and(value0, 0xffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffff))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), signextend(11, value4))\n    }\n    function abi_decode_tuple_t_bytes32_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y) { panic_error_0x12() }\n        r := div(x, y)\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_t_rational_96_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 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 increment_t_uint32(value) -> ret\n    {\n        let value_1 := and(value, 0xffffffff)\n        if eq(value_1, 0xffffffff) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function mod_t_uint32(x, y) -> r\n    {\n        let y_1 := and(y, 0xffffffff)\n        if iszero(y_1) { panic_error_0x12() }\n        r := mod(and(x, 0xffffffff), y_1)\n    }\n    function checked_mul_t_uint32(x, y) -> product\n    {\n        let product_raw := mul(and(x, 0xffffffff), and(y, 0xffffffff))\n        product := and(product_raw, 0xffffffff)\n        if iszero(eq(product, product_raw)) { panic_error_0x11() }\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, 0xffffffffffffffff) { 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 mod_t_uint8(x, y) -> r\n    {\n        let y_1 := and(y, 0xff)\n        if iszero(y_1) { panic_error_0x12() }\n        r := mod(and(x, 0xff), y_1)\n    }\n    function decrement_t_uint256(value) -> ret\n    {\n        if iszero(value) { panic_error_0x11() }\n        ret := add(value, not(0))\n    }\n}","id":125,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"15857":[{"length":32,"start":1837},{"length":32,"start":2065},{"length":32,"start":14723}],"23450":[{"length":32,"start":13163},{"length":32,"start":13204},{"length":32,"start":13495}],"38322":[{"length":32,"start":1734},{"length":32,"start":4421},{"length":32,"start":5483},{"length":32,"start":5757},{"length":32,"start":5864},{"length":32,"start":8950},{"length":32,"start":9842},{"length":32,"start":10029},{"length":32,"start":10987},{"length":32,"start":14358},{"length":32,"start":14507}]},"linkReferences":{},"object":"608060405260043610610392575f3560e01c80637da0a877116101de578063bfdb20da11610108578063d6281d3e1161009d578063e8e617b71161006d578063e8e617b714610b42578063ee07abbb14610b61578063ef8b30f714610a1c578063f7a3933314610b80575f5ffd5b8063d6281d3e14610ab9578063d905777e14610ad8578063dd62ed3e14610af7578063e77659fd14610b16575f5ffd5b8063cc671a18116100d8578063cc671a1814610a3b578063ce96cb7714610a4f578063d336078c14610a6e578063d52f99ce14610a8d575f5ffd5b8063bfdb20da146109de578063c0c51217146109fd578063c63d75b614610698578063c6e6f59214610a1c575f5ffd5b8063a9059cbb1161017e578063b3d7f6b91161014e578063b3d7f6b914610962578063b460af9414610981578063ba087652146109a0578063bdb5371d146109bf575f5ffd5b8063a9059cbb146108d9578063a9ed1487146108f8578063ac860f7414610913578063ad3cb1cc14610932575f5ffd5b806394bf804d116101b957806394bf804d1461087357806395d89b4114610892578063a3ac9390146108a6578063a7f8a5e2146108c5575f5ffd5b80637da0a8771461080357806382dbbd711461083557806386b4408314610854575f5ffd5b8063313ce567116102bf5780634f1ef2861161025f57806362eb345e1161022f57806362eb345e1461077c5780636e553f651461079b57806370a08231146107ba578063759076e5146107d9575f5ffd5b80634f1ef286146106ea57806352d1902d146106fd578063572b6c05146107115780635ee0c7dd1461075d575f5ffd5b80633edeb2571161029a5780633edeb2571461066c578063402d267d146106985780634cdad5061461042e5780634d15eb03146106b8575f5ffd5b8063313ce567146105fb57806333bded3c1461062157806338d52e0f14610640575f5ffd5b8063091ea8a61161033557806318160ddd1161030557806318160ddd1461056b578063194448e51461059e578063225c531e146105bd57806323b872dd146105dc575f5ffd5b8063091ea8a61461048b578063095ea7b3146104f55780630a28a47714610514578063150b7a0214610533575f5ffd5b8063077f224a11610370578063077f224a1461040d57806307a2d13a1461042e57806307c2e8781461044d57806308742d901461046c575f5ffd5b806301e1d1141461039657806301ffc9a7146103bd57806306fdde03146103ec575b5f5ffd5b3480156103a1575f5ffd5b506103aa610b9f565b6040519081526020015b60405180910390f35b3480156103c8575f5ffd5b506103dc6103d73660046144b3565b610ce1565b60405190151581526020016103b4565b3480156103f7575f5ffd5b50610400610d83565b6040516103b491906144fa565b348015610418575f5ffd5b5061042c6104273660046145f0565b610e43565b005b348015610439575f5ffd5b506103aa610448366004614666565b610f3e565b348015610458575f5ffd5b5061042c6104673660046146c4565b610f49565b348015610477575f5ffd5b5061042c610486366004614738565b611070565b348015610496575f5ffd5b506104e86104a536600461476f565b6001600160a01b03165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af016020526040902054600160201b900460ff1690565b6040516103b491906147be565b348015610500575f5ffd5b506103dc61050f3660046147cc565b61110c565b34801561051f575f5ffd5b506103aa61052e366004614666565b61112d565b34801561053e575f5ffd5b5061055261054d366004614833565b611139565b6040516001600160e01b031990911681526020016103b4565b348015610576575f5ffd5b507f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace02546103aa565b3480156105a9575f5ffd5b5061042c6105b83660046148ad565b6111a3565b3480156105c8575f5ffd5b5061042c6105d73660046148d9565b6112c6565b3480156105e7575f5ffd5b506103dc6105f636600461493d565b6113ea565b348015610606575f5ffd5b5061060f611419565b60405160ff90911681526020016103b4565b34801561062c575f5ffd5b5061040061063b36600461497b565b611455565b34801561064b575f5ffd5b50610654611612565b6040516001600160a01b0390911681526020016103b4565b348015610677575f5ffd5b5061068363ffffffff81565b60405163ffffffff90911681526020016103b4565b3480156106a3575f5ffd5b506103aa6106b236600461476f565b505f1990565b3480156106c3575f5ffd5b507f0000000000000000000000000000000000000000000000000000000000000000610654565b61042c6106f83660046149cb565b611640565b348015610708575f5ffd5b506103aa611656565b34801561071c575f5ffd5b506103dc61072b36600461476f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b348015610768575f5ffd5b50610552610777366004614a2a565b611671565b348015610787575f5ffd5b50610552610796366004614a6d565b6116dc565b3480156107a6575f5ffd5b506103aa6107b5366004614ac2565b611812565b3480156107c5575f5ffd5b506103aa6107d436600461476f565b611834565b3480156107e4575f5ffd5b505f5160206156085f395f51905f5254600160a01b9004600b0b6103aa565b34801561080e575f5ffd5b507f0000000000000000000000000000000000000000000000000000000000000000610654565b348015610840575f5ffd5b5061042c61084f366004614ae5565b61185a565b34801561085f575f5ffd5b5061040061086e36600461497b565b611944565b34801561087e575f5ffd5b506103aa61088d366004614ac2565b611a70565b34801561089d575f5ffd5b50610400611a92565b3480156108b1575f5ffd5b506103aa6108c0366004614b33565b611ad0565b3480156108d0575f5ffd5b50610654611b24565b3480156108e4575f5ffd5b506103dc6108f33660046147cc565b611b43565b348015610903575f5ffd5b506105526001600160e01b031981565b34801561091e575f5ffd5b5061042c61092d366004614666565b611b5a565b34801561093d575f5ffd5b50610400604051806040016040528060058152602001640352e302e360dc1b81525081565b34801561096d575f5ffd5b506103aa61097c366004614666565b611c1f565b34801561098c575f5ffd5b506103aa61099b366004614b70565b611c2b565b3480156109ab575f5ffd5b506103aa6109ba366004614b70565b611c88565b3480156109ca575f5ffd5b5061042c6109d9366004614ba4565b611cdc565b3480156109e9575f5ffd5b5061042c6109f8366004614bd6565b611dc6565b348015610a08575f5ffd5b50610552610a17366004614c04565b611fb2565b348015610a27575f5ffd5b506103aa610a36366004614666565b611ffc565b348015610a46575f5ffd5b506103aa612007565b348015610a5a575f5ffd5b506103aa610a6936600461476f565b612093565b348015610a79575f5ffd5b5061042c610a88366004614666565b6120ad565b348015610a98575f5ffd5b50610aac610aa7366004614c37565b61215d565b6040516103b49190614c7b565b348015610ac4575f5ffd5b50610552610ad3366004614a2a565b6122ea565b348015610ae3575f5ffd5b506103aa610af236600461476f565b6123fa565b348015610b02575f5ffd5b506103aa610b11366004614d1a565b612412565b348015610b21575f5ffd5b50610b35610b30366004614d46565b61245b565b6040516103b49190614d89565b348015610b4d575f5ffd5b50610552610b5c36600461493d565b612721565b348015610b6c575f5ffd5b50610b35610b7b366004614d46565b612789565b348015610b8b575f5ffd5b5061042c610b9a366004614dec565b612983565b5f5f5160206156085f395f51905f52610bb6612a42565b81546040516370a0823160e01b81523060048201529193506001600160a01b0316906307a2d13a9082906370a0823190602401602060405180830381865afa158015610c04573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c289190614e1b565b6040518263ffffffff1660e01b8152600401610c4691815260200190565b602060405180830381865afa158015610c61573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c859190614e1b565b610c8f9083614e46565b81549092505f600160a01b909104600b0b1215610ccb578054610cbb90600160a01b9004600b0b614e59565b610cc59083614e73565b91505090565b8054610cc590600160a01b9004600b0b83614e46565b5f6001600160e01b03198216630a85bd0160e11b1480610d1157506001600160e01b03198216630162fc8560e11b145b80610d2c57506001600160e01b031982166336372b0760e01b145b80610d4757506001600160e01b0319821663a219a02560e01b145b80610d6257506001600160e01b0319821663043eff2d60e51b145b80610d7d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0380546060915f5160206155c85f395f51905f5291610dc190614e86565b80601f0160208091040260200160405190810160405280929190818152602001828054610ded90614e86565b8015610e385780601f10610e0f57610100808354040283529160200191610e38565b820191905f5260205f20905b815481529060010190602001808311610e1b57829003601f168201915b505050505091505090565b5f610e4c612ab8565b805490915060ff600160401b82041615906001600160401b03165f81158015610e725750825b90505f826001600160401b03166001148015610e8d5750303b155b905081158015610e9b575080155b15610eb95760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610ee357845460ff60401b1916600160401b1785555b610eee888888612ae0565b8315610f3457845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b5f610d7d825f612b87565b835f610f5482612bde565b905060018154600160201b900460ff166003811115610f7557610f7561478a565b82548492600160201b90910460ff169114610fae57604051630e851c7960e31b8152600401610fa5929190614ebe565b60405180910390fd5b50505f610fba82612c76565b9050610fd5610fc7612cca565b886346d58ca960e11b612cd3565b6001600160a01b0384163014610fff57610fff610ff0612cca565b886001600160e01b0319612cd3565b6040516303e1e7c360e31b81526001600160a01b03881690631f0f3e189061102f90899089908990600401614f03565b5f604051808303815f87803b158015611046575f5ffd5b505af1158015611058573d5f5f3e3d5ffd5b50505050611067838383612dd5565b50505050505050565b8063ffffffff165f036110965760405163294da6c760e21b815260040160405180910390fd5b5f6110a083612bde565b80546040805163ffffffff928316815291851660208301529192506001600160a01b038516917f4345ec61f717774fdb684b701c34934889550330da2b93f2c3a33379db77f817910160405180910390a2805463ffffffff191663ffffffff9290921691909117905550565b5f5f611116612cca565b9050611123818585612e5e565b5060019392505050565b5f610d7d826001612e6b565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146111905760405163950d88bf60e01b81526001600160a01b039091166004820152602401610fa5565b50630a85bd0160e11b9695505050505050565b5f5f5160206156085f395f51905f5280546040516370a0823160e01b81523060048201529192505f916001600160a01b03909116906307a2d13a9082906370a0823190602401602060405180830381865afa158015611204573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112289190614e1b565b6040518263ffffffff1660e01b815260040161124691815260200190565b602060405180830381865afa158015611261573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112859190614e1b565b90508061129182612eb9565b148061129a5750825b6112b75760405163292d4c4b60e11b815260040160405180910390fd5b6112c084612fb2565b50505050565b6112cf85612bde565b505f6112e58686866112e087613147565b613177565b905082815f81131561131357604051630c97a6bf60e41b815260048101929092526024820152604401610fa5565b50505f61131e612a42565b905083811015611362576113328185614e73565b61134461133f8387614e73565b612eb9565b146113625760405163af8075e960e01b815260040160405180910390fd5b61137f838561136f611612565b6001600160a01b03169190613276565b6040805163ffffffff808916825287166020820152908101859052606081018390526001600160a01b0384811660808301528816907fcc010dd322eb2bc19138cf20160ad5643925810f442fc6c5d48b9b4c59b34efe9060a00160405180910390a250505050505050565b5f5f6113f4612cca565b90506114018582856132ab565b61140c8585856132f6565b60019150505b9392505050565b5f807f0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e0090505f8154610cc59190600160a01b900460ff16614fae565b6060835f61146282612bde565b905060018154600160201b900460ff1660038111156114835761148361478a565b82548492600160201b90910460ff1691146114b357604051630e851c7960e31b8152600401610fa5929190614ebe565b50505f6114bf82612c76565b90506114e86114cc612cca565b886114da60045f8a8c614fc7565b6114e391614fee565b612cd3565b61153186868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038b1692915050613353565b93505f848060200190518101906115489190614e1b565b6040516331a9108f60e11b81526004810182905290915030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa1580156115b0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115d49190615024565b6001600160a01b0316146115fc576115fc6115ed612cca565b896001600160e01b0319612cd3565b50611608838383612dd5565b5050509392505050565b7f0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e00546001600160a01b031690565b611648613360565b61165282826133f0565b5050565b5f61165f6134ac565b505f5160206155e85f395f51905f5290565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146116c85760405163950d88bf60e01b81526001600160a01b039091166004820152602401610fa5565b50635ee0c7dd60e01b90505b949350505050565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146117335760405163950d88bf60e01b81526001600160a01b039091166004820152602401610fa5565b505f61173e88612bde565b905060018154600160201b900460ff16600381111561175f5761175f61478a565b1480611787575060028154600160201b900460ff1660038111156117855761178561478a565b145b81548991600160201b90910460ff16906117b657604051630e851c7960e31b8152600401610fa5929190614ebe565b505f9050836117c58688614e46565b6117cf9190614e46565b82549091506117fc908a9063ffffffff166117ea81426134f5565b6117f385613147565b6112e090614e59565b506331759a2f60e11b9998505050505050505050565b5f5f195f61181f85611ffc565b90506116d461182c612cca565b858784613521565b6001600160a01b03165f9081525f5160206155c85f395f51905f52602052604090205490565b61186384612bde565b505f6118748585856117f386613147565b905081815f8112156118a25760405163239de57160e11b815260048101929092526024820152604401610fa5565b50506118ca6118af612cca565b30846118b9611612565b6001600160a01b031692919061359a565b846001600160a01b03167ffe14813540c7709c2d7e702f39b104eeed265dd484f899e9f2f89c801aa6395c85858585611901612cca565b6040805163ffffffff96871681529590941660208601529284019190915260608301526001600160a01b0316608082015260a00160405180910390a25050505050565b6060835f61195182612bde565b905060018154600160201b900460ff1660038111156119725761197261478a565b148061199a575060028154600160201b900460ff1660038111156119985761199861478a565b145b81548391600160201b90910460ff16906119c957604051630e851c7960e31b8152600401610fa5929190614ebe565b50505f6119d4612a42565b90506119e16114cc612cca565b611a2a86868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038b1692915050613353565b93505f611a35612a42565b905081811015611a6557611a498183614e73565b6040516351f5977560e11b8152600401610fa591815260200190565b505050509392505050565b5f5f195f611a7d85611c1f565b90506116d4611a8a612cca565b858388613521565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0480546060915f5160206155c85f395f51905f5291610dc190614e86565b5f5f5160206156085f395f51905f527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af0282611b0c8787876135d0565b81526020019081526020015f20549150509392505050565b5f5f5160206156085f395f51905f525b546001600160a01b0316919050565b5f5f611b4d612cca565b90506111238185856132f6565b5f198103611b7157611b6a612a42565b9050611b99565b611b79612a42565b811115611b995760405163af8075e960e01b815260040160405180910390fd5b5f5f5160206156085f395f51905f528054604051636e553f6560e01b8152600481018590523060248201529192506001600160a01b031690636e553f65906044016020604051808303815f875af1158015611bf6573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c1a9190614e1b565b505050565b5f610d7d826001612b87565b5f5f611c3683612093565b905080851115611c5f57828582604051633fa733bb60e21b8152600401610fa59392919061503f565b5f611c698661112d565b9050611c7f611c76612cca565b86868985613618565b95945050505050565b5f5f611c93836123fa565b905080851115611cbc57828582604051632e52afbb60e21b8152600401610fa59392919061503f565b5f611cc686610f3e565b9050611c7f611cd3612cca565b8686848a613618565b5f611ce684612bde565b8054604080516001600160601b03600160281b84048116825260208201889052600160881b90930490921690820152606081018490529091506001600160a01b038516907f7e293d291e9dd159f2fbde9523c4191674384553a72c0833ba9cf7dcb5381fb79060800160405180910390a2611d608361376b565b81546001600160601b0391909116600160281b0270ffffffffffffffffffffffff000000000019909116178155611d968261376b565b81546001600160601b0391909116600160881b026bffffffffffffffffffffffff60881b19909116179055505050565b6001600160a01b0384165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af016020526040812080545f5160206156085f395f51905f529290600160201b900460ff166003811115611e2957611e2961478a565b14611e475760405163cd43efa160e01b815260040160405180910390fd5b8463ffffffff165f03611e6d5760405163294da6c760e21b815260040160405180910390fd5b6040805160808101825263ffffffff8716815260016020820152908101611e938661376b565b6001600160601b03168152602001611eaa8561376b565b6001600160601b031690526001600160a01b0387165f90815260018401602090815260409091208251815463ffffffff90911663ffffffff19821681178355928401519192839164ffffffffff191617600160201b836003811115611f1157611f1161478a565b0217905550604082810151825460609094015165010000000000600160e81b0319909416600160281b6001600160601b03928316026bffffffffffffffffffffffff60881b191617600160881b9190941602929092179055516001600160a01b038716907f422c963a67d52178b43a807b8c9df3a99468f416b736f9f040b6392cf790752e90611fa2908490615060565b60405180910390a2505050505050565b6040516001600160601b0319606084901b1660208201526001600160e01b0319821660348201525f9061141290603801604051602081830303815290604052805160209091012090565b5f610d7d825f612e6b565b5f805f5160206156085f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa15801561205d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120819190614e1b565b612089612a42565b610cc59190614e46565b5f610d7d6120a08361379e565b6120a8612007565b6137ab565b5f198103612132575f5f5160206156085f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa15801561210a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061212e9190614e1b565b9150505b8061213c82612eb9565b1461215a5760405163af8075e960e01b815260040160405180910390fd5b50565b6121c36040518061018001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f64ffffffffff1681526020015f64ffffffffff1681525090565b845f6121ce82612bde565b905060018154600160201b900460ff1660038111156121ef576121ef61478a565b82548492600160201b90910460ff16911461221f57604051630e851c7960e31b8152600401610fa5929190614ebe565b50505f61222b82612c76565b9050612246612238612cca565b896346d58ca960e11b612cd3565b6001600160a01b0385163014612261576122616115ed612cca565b6040516346d58ca960e11b81526001600160a01b03891690638dab195290612291908a908a908a906004016150b0565b610180604051808303815f875af11580156122ae573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122d291906150ef565b93506122df838383612dd5565b505050949350505050565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146123415760405163950d88bf60e01b81526001600160a01b039091166004820152602401610fa5565b505f61234c86612bde565b905060018154600160201b900460ff16600381111561236d5761236d61478a565b1480612395575060028154600160201b900460ff1660038111156123935761239361478a565b145b81548791600160201b90910460ff16906123c457604051630e851c7960e31b8152600401610fa5929190614ebe565b505080546123e790879063ffffffff166123de81426134f5565b6117f387613147565b50636b140e9f60e11b9695505050505050565b5f610d7d612407836137ba565b6120a8610a36612007565b6001600160a01b039182165f9081527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace016020908152604080832093909416825291909152205490565b6060835f61246882612bde565b905060018154600160201b900460ff1660038111156124895761248961478a565b82548492600160201b90910460ff1691146124b957604051630e851c7960e31b8152600401610fa5929190614ebe565b50505f6124c582612c76565b90505f80866001600160401b038111156124e1576124e161450c565b60405190808252806020026020018201604052801561251457816020015b60608152602001906001900390816124ff5790505b5095505f5b87811015612713575f89898381811061253457612534615197565b905060200281019061254691906151ab565b612554916004915f91614fc7565b61255d91614fee565b905081158061257957506001600160e01b031981811690851614155b1561259457612590612589612cca565b8c83612cd3565b8093505b6125ff8a8a848181106125a9576125a9615197565b90506020028101906125bb91906151ab565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038f1692915050613353565b88838151811061261157612611615197565b60200260200101819052508261270a575f88838151811061263457612634615197565b602002602001015180602001905181019061264f9190614e1b565b6040516331a9108f60e11b81526004810182905290915030906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e90602401602060405180830381865afa1580156126b7573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126db9190615024565b6001600160a01b031614612708576127036126f4612cca565b8d6001600160e01b0319612cd3565b600193505b505b50600101612519565b505050611608838383612dd5565b5f336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001681146127785760405163950d88bf60e01b81526001600160a01b039091166004820152602401610fa5565b5063e8e617b760e01b949350505050565b6060835f61279682612bde565b905060018154600160201b900460ff1660038111156127b7576127b761478a565b14806127df575060028154600160201b900460ff1660038111156127dd576127dd61478a565b145b81548391600160201b90910460ff169061280e57604051630e851c7960e31b8152600401610fa5929190614ebe565b50505f612819612a42565b90505f856001600160401b038111156128345761283461450c565b60405190808252806020026020018201604052801561286757816020015b60608152602001906001900390816128525790505b5094505f5b86811015612978575f88888381811061288757612887615197565b905060200281019061289991906151ab565b6128a7916004915f91614fc7565b6128b091614fee565b90508115806128cc57506001600160e01b031981811690841614155b156128e7576128e36128dc612cca565b8b83612cd3565b8092505b6129528989848181106128fc576128fc615197565b905060200281019061290e91906151ab565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250506001600160a01b038e1692915050613353565b87838151811061296457612964615197565b60209081029190910101525060010161286c565b50505f611a35612a42565b5f8160038111156129965761299661478a565b036129b457604051635e64536560e11b815260040160405180910390fd5b5f6129be83612bde565b9050826001600160a01b03167f0638a5c17c348b99c05e7985ee5ee8bc0c41bc7a12265aec4a488d62350c1d24825f0160049054906101000a900460ff1684604051612a0b9291906151ed565b60405180910390a280548290829064ff000000001916600160201b836003811115612a3857612a3861478a565b0217905550505050565b5f612a4b611612565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa158015612a8f573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ab39190614e1b565b905090565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610d7d565b612ae86137c4565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b45573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b699190615024565b9050612b74816137e9565b612b7e84846137fa565b6112c08261380c565b5f611412612b93610b9f565b612b9e906001614e46565b612ba95f600a6152eb565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254612bd59190614e46565b85919085613930565b6001600160a01b0381165f9081527f0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af0160205260408120805490915f5160206156085f395f51905f5291600160201b900460ff166003811115612c4257612c4261478a565b14158390612c6f57604051632dad902160e01b81526001600160a01b039091166004820152602401610fa5565b5050919050565b5f612c7f612a42565b8254909150600160881b90046001600160601b0316811015612cc5578154612cbc9061133f908390600160881b90046001600160601b0316614e73565b50610d7d612a42565b919050565b5f612ab3613972565b5f612cde8383611fb2565b90505f306001600160a01b0316633a7b7a396040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d1d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d419190615024565b6001600160a01b031663b70096138630856040518463ffffffff1660e01b8152600401612d70939291906152f9565b6040805180830381865afa158015612d8a573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dae9190615326565b50905084848383610f345760405163c294136d60e01b8152600401610fa5939291906152f9565b5f612dde612a42565b9050818110156112c05782545f90612e1490869063ffffffff16612e0281426134f5565b6112e0612e0f8789614e73565b613147565b84549091508190600160281b90046001600160601b0316808213156110675760405163395192c560e21b815260048101929092526001600160601b03166024820152604401610fa5565b611c1a83838360016139dc565b5f611412612e7a82600a6152eb565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0254612ea69190614e46565b612eae610b9f565b612bd5906001614e46565b5f805f5160206156085f395f51905f52805460405163ce96cb7760e01b8152306004820152919250612f399185916001600160a01b03169063ce96cb7790602401602060405180830381865afa158015612f15573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120a89190614e1b565b8154604051632d182be560e21b815260048101839052306024820181905260448201529193506001600160a01b03169063b460af94906064016020604051808303815f875af1158015612f8e573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c6f9190614e1b565b6001600160a01b038116612fd9576040516347ddf9c760e01b815260040160405180910390fd5b5f5160206156085f395f51905f5280546001600160a01b038381166001600160a01b0319831617835516801561308457613011611612565b60405163095ea7b360e01b81526001600160a01b0383811660048301525f6024830152919091169063095ea7b3906044016020604051808303815f875af115801561305e573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130829190615353565b505b61308c611612565b60405163095ea7b360e01b81526001600160a01b0385811660048301525f196024830152919091169063095ea7b3906044016020604051808303815f875af11580156130da573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130fe9190615353565b50604080516001600160a01b038084168252851660208201527f9baaddad37a65ca0df0360563fca87a13c1ce354be76d7ec35eac48bd766332a910160405180910390a1505050565b5f6001600160ff1b038211156131735760405163123baf0360e11b815260048101839052602401610fa5565b5090565b5f5f5160206156085f395f51905f52816131928787876135d0565b905083826002015f8381526020019081526020015f205f8282546131b6919061536e565b9182905550835490945085915083906014906131dd908490600160a01b9004600b0b615395565b82546001600160601b039182166101009390930a92830291909202199091161790555081546040805163ffffffff808a1682528816602082015290810186905260608101859052600160a01b909104600b0b60808201526001600160a01b038816907fbc0ff1d27e119160a9a107d0725b9ed31b90773cf47e89332a35a8c1a319eaee9060a00160405180910390a25050949350505050565b6132838383836001613ac0565b611c1a57604051635274afe760e01b81526001600160a01b0384166004820152602401610fa5565b5f6132b68484612412565b90505f198110156112c057818110156132e857828183604051637dc7a0d960e11b8152600401610fa59392919061503f565b6112c084848484035f6139dc565b6001600160a01b03831661331f57604051634b637e8f60e11b81525f6004820152602401610fa5565b6001600160a01b0382166133485760405163ec442f0560e01b81525f6004820152602401610fa5565b611c1a838383613b22565b606061141283835f613c3a565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806133d057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166133c4613d06565b6001600160a01b031614155b156133ee5760405163703e46dd60e11b815260040160405180910390fd5b565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561344a575060408051601f3d908101601f1916820190925261344791810190614e1b565b60015b61347257604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610fa5565b5f5160206155e85f395f51905f5281146134a257604051632a87526960e21b815260048101829052602401610fa5565b611c1a8383613d1a565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146133ee5760405163703e46dd60e11b815260040160405180910390fd5b5f63ffffffff838116146135185761351363ffffffff8416836153e0565b611412565b61141282613d6f565b61353461352c611612565b85308561359a565b61353e8382613e4c565b826001600160a01b0316846001600160a01b03167fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7848460405161358c929190918252602082015260400190565b60405180910390a350505050565b6135a8848484846001613e80565b6112c057604051635274afe760e01b81526001600160a01b0385166004820152602401610fa5565b6bffffffffffffffff000000006001600160e01b031960e09390931b9290921660c09190911b63ffffffff60c01b161760a01c1660609190911b6001600160601b0319161790565b5f613621612a42565b905082811015613756575f5f5160206156085f395f51905f52805460405163ce96cb7760e01b81523060048201529192506001600160a01b03169063ce96cb7790602401602060405180830381865afa158015613680573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136a49190614e1b565b6136ae8386614e73565b11156136cd5760405163af8075e960e01b815260040160405180910390fd5b80546001600160a01b031663b460af946136e78487614e73565b6040516001600160e01b031960e084901b1681526004810191909152306024820181905260448201526064016020604051808303815f875af115801561372f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137539190614e1b565b50505b6137638686868686613eed565b505050505050565b5f6001600160601b03821115613173576040516306dfcc6560e41b81526060600482015260248101839052604401610fa5565b5f610d7d610448836123fa565b5f828218828410028218611412565b5f610d7d82611834565b6137cc613f94565b6133ee57604051631afcd79f60e31b815260040160405180910390fd5b6137f16137c4565b61215a81613fad565b6138026137c4565b6116528282614030565b6138146137c4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e5a6b10f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613870573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138949190615024565b60405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f196024830152919091169063095ea7b3906044016020604051808303815f875af1158015613902573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139269190615353565b5061215a81612fb2565b5f61395d61393d83614080565b801561395857505f8480613953576139536153cc565b868809115b151590565b6139688686866140ac565b611c7f9190614e46565b5f3660148082108015906139ae57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633145b156139d4576139c136828403815f614fc7565b6139ca916153f3565b60601c9250505090565b339250505090565b5f5160206155c85f395f51905f526001600160a01b038516613a135760405163e602df0560e01b81525f6004820152602401610fa5565b6001600160a01b038416613a3c57604051634a1406b160e11b81525f6004820152602401610fa5565b6001600160a01b038086165f90815260018301602090815260408083209388168352929052208390558115613ab957836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051613ab091815260200190565b60405180910390a35b5050505050565b60405163a9059cbb60e01b5f8181526001600160a01b038616600452602485905291602083604481808b5af1925060015f51148316613b16578383151615613b0a573d5f823e3d81fd5b5f873b113d1516831692505b60405250949350505050565b5f5160206155c85f395f51905f526001600160a01b038416613b5c5781816002015f828254613b519190614e46565b90915550613bb99050565b6001600160a01b0384165f9081526020829052604090205482811015613b9b5784818460405163391434e360e21b8152600401610fa59392919061503f565b6001600160a01b0385165f9081526020839052604090209083900390555b6001600160a01b038316613bd7576002810180548390039055613bf5565b6001600160a01b0383165f9081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161358c91815260200190565b606081471015613c665760405163cf47918160e01b815247600482015260248101839052604401610fa5565b5f613c7285848661415c565b9050808015613c9357505f3d1180613c9357505f856001600160a01b03163b115b15613ca857613ca0614171565b915050611412565b8015613cd257604051639996b31560e01b81526001600160a01b0386166004820152602401610fa5565b3d15613ce557613ce061418a565b613cfe565b60405163d6bda27560e01b815260040160405180910390fd5b509392505050565b5f5f5160206155e85f395f51905f52611b34565b613d2382614195565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a2805115613d6757611c1a82826141f8565b61165261427a565b6107e95f8062015180613d86636774858086614e73565b613d9091906153e0565b90505b81613da05761016d613da4565b61016e5b61ffff168110613e275781613dbb5761016d613dbf565b61016e5b613dcd9061ffff1682614e73565b9050613dd883615429565b9250613de560048461544d565b63ffffffff16158015613e205750613dfe60648461544d565b63ffffffff16151580613e205750613e186101908461544d565b63ffffffff16155b9150613d93565b613e318183614299565b613e3c846064615474565b63ffffffff166116d49190614e46565b6001600160a01b038216613e755760405163ec442f0560e01b81525f6004820152602401610fa5565b6116525f8383613b22565b6040516323b872dd60e01b5f8181526001600160a01b038781166004528616602452604485905291602083606481808c5af1925060015f51148316613edc578383151615613ed0573d5f823e3d81fd5b5f883b113d1516831692505b604052505f60605295945050505050565b826001600160a01b0316856001600160a01b031614613f1157613f118386836132ab565b613f1b838261437c565b613f2d613f26611612565b8584613276565b826001600160a01b0316846001600160a01b0316866001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db8585604051613f85929190918252602082015260400190565b60405180910390a45050505050565b5f613f9d612ab8565b54600160401b900460ff16919050565b613fb56137c4565b7f0773e532dfede91f04b12a73d3d2acd361424f41f76b4fb79f090161e36b4e005f80613fe1846143b0565b9150915081613ff1576012613ff3565b805b83546001600160a81b031916600160a01b60ff92909216919091026001600160a01b031916176001600160a01b0394909416939093179091555050565b6140386137c4565b5f5160206155c85f395f51905f527f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0361407184826154d7565b50600481016112c083826154d7565b5f60028260038111156140955761409561478a565b61409f9190615591565b60ff166001149050919050565b5f5f5f6140b9868661443b565b91509150815f036140dd578381816140d3576140d36153cc565b0492505050611412565b8184116140f4576140f46003851502601118614457565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b5f5f5f83516020850186885af1949350505050565b6040513d81523d5f602083013e3d602001810160405290565b6040513d5f823e3d81fd5b806001600160a01b03163b5f036141ca57604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610fa5565b5f5160206155e85f395f51905f5280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f6142058484614468565b905080801561422657505f3d118061422657505f846001600160a01b03163b115b1561423b57614233614171565b915050610d7d565b801561426557604051639996b31560e01b81526001600160a01b0385166004820152602401610fa5565b3d15613ce55761427361418a565b5092915050565b34156133ee5760405163b398979f60e01b815260040160405180910390fd5b5f601f8310156142ab57506001610d7d565b81156142d457603c8310156142c257506002610d7d565b826142cc816155b2565b9350506142e5565b603b8310156142e557506002610d7d565b605a831061436f576078831061436857609783106143615760b5831061435a5760d483106143535760f3831061434c57610111831061434557610130831061433e5761014e831061433757600c614372565b600b614372565b600a614372565b6009614372565b6008614372565b6007614372565b6006614372565b6005614372565b6004614372565b60035b60ff169392505050565b6001600160a01b0382166143a557604051634b637e8f60e11b81525f6004820152602401610fa5565b611652825f83613b22565b5f5f5f6143bc60405190565b6040805160048152602481019091526020810180516001600160e01b031663313ce56760e01b1790529091505f9081906143f790879061447b565b509150915061440583604052565b818015614413575060203d10155b8015614420575060ff8111155b61442b575f5f61442f565b6001815b94509450505050915091565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b5f5f5f835160208501865af49392505050565b5f5f5f60405f855160208701885afa92505f51915060205190509250925092565b80356001600160e01b031981168114612cc5575f5ffd5b5f602082840312156144c3575f5ffd5b6114128261449c565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61141260208301846144cc565b634e487b7160e01b5f52604160045260245ffd5b60405161018081016001600160401b03811182821017156145435761454361450c565b60405290565b5f5f6001600160401b038411156145625761456261450c565b50604051601f19601f85018116603f011681018181106001600160401b03821117156145905761459061450c565b6040528381529050808284018510156145a7575f5ffd5b838360208301375f60208583010152509392505050565b5f82601f8301126145cd575f5ffd5b61141283833560208501614549565b6001600160a01b038116811461215a575f5ffd5b5f5f5f60608486031215614602575f5ffd5b83356001600160401b03811115614617575f5ffd5b614623868287016145be565b93505060208401356001600160401b0381111561463e575f5ffd5b61464a868287016145be565b925050604084013561465b816145dc565b809150509250925092565b5f60208284031215614676575f5ffd5b5035919050565b5f5f83601f84011261468d575f5ffd5b5081356001600160401b038111156146a3575f5ffd5b6020830191508360208260051b85010111156146bd575f5ffd5b9250929050565b5f5f5f5f606085870312156146d7575f5ffd5b84356146e2816145dc565b935060208501356001600160401b038111156146fc575f5ffd5b6147088782880161467d565b909450925050604085013561471c816145dc565b939692955090935050565b63ffffffff8116811461215a575f5ffd5b5f5f60408385031215614749575f5ffd5b8235614754816145dc565b9150602083013561476481614727565b809150509250929050565b5f6020828403121561477f575f5ffd5b8135611412816145dc565b634e487b7160e01b5f52602160045260245ffd5b600481106147ba57634e487b7160e01b5f52602160045260245ffd5b9052565b60208101610d7d828461479e565b5f5f604083850312156147dd575f5ffd5b82356147e8816145dc565b946020939093013593505050565b5f5f83601f840112614806575f5ffd5b5081356001600160401b0381111561481c575f5ffd5b6020830191508360208285010111156146bd575f5ffd5b5f5f5f5f5f60808688031215614847575f5ffd5b8535614852816145dc565b94506020860135614862816145dc565b93506040860135925060608601356001600160401b03811115614883575f5ffd5b61488f888289016147f6565b969995985093965092949392505050565b801515811461215a575f5ffd5b5f5f604083850312156148be575f5ffd5b82356148c9816145dc565b91506020830135614764816148a0565b5f5f5f5f5f60a086880312156148ed575f5ffd5b85356148f8816145dc565b9450602086013561490881614727565b9350604086013561491881614727565b925060608601359150608086013561492f816145dc565b809150509295509295909350565b5f5f5f6060848603121561494f575f5ffd5b833561495a816145dc565b9250602084013561496a816145dc565b929592945050506040919091013590565b5f5f5f6040848603121561498d575f5ffd5b8335614998816145dc565b925060208401356001600160401b038111156149b2575f5ffd5b6149be868287016147f6565b9497909650939450505050565b5f5f604083850312156149dc575f5ffd5b82356149e7816145dc565b915060208301356001600160401b03811115614a01575f5ffd5b8301601f81018513614a11575f5ffd5b614a2085823560208401614549565b9150509250929050565b5f5f5f5f60808587031215614a3d575f5ffd5b8435614a48816145dc565b93506020850135614a58816145dc565b93969395505050506040820135916060013590565b5f5f5f5f5f5f60c08789031215614a82575f5ffd5b8635614a8d816145dc565b95506020870135614a9d816145dc565b95989597505050506040840135936060810135936080820135935060a0909101359150565b5f5f60408385031215614ad3575f5ffd5b823591506020830135614764816145dc565b5f5f5f5f60808587031215614af8575f5ffd5b8435614b03816145dc565b93506020850135614b1381614727565b92506040850135614b2381614727565b9396929550929360600135925050565b5f5f5f60608486031215614b45575f5ffd5b8335614b50816145dc565b92506020840135614b6081614727565b9150604084013561465b81614727565b5f5f5f60608486031215614b82575f5ffd5b833592506020840135614b94816145dc565b9150604084013561465b816145dc565b5f5f5f60608486031215614bb6575f5ffd5b8335614bc1816145dc565b95602085013595506040909401359392505050565b5f5f5f5f60808587031215614be9575f5ffd5b8435614bf4816145dc565b93506020850135614a5881614727565b5f5f60408385031215614c15575f5ffd5b8235614c20816145dc565b9150614c2e6020840161449c565b90509250929050565b5f5f5f5f60608587031215614c4a575f5ffd5b8435614c55816145dc565b935060208501356001600160401b03811115614c6f575f5ffd5b614708878288016147f6565b5f61018082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e083015160e0830152610100830151610100830152610120830151610120830152610140830151614cff61014084018264ffffffffff169052565b5061016083015161427361016084018264ffffffffff169052565b5f5f60408385031215614d2b575f5ffd5b8235614d36816145dc565b91506020830135614764816145dc565b5f5f5f60408486031215614d58575f5ffd5b8335614d63816145dc565b925060208401356001600160401b03811115614d7d575f5ffd5b6149be8682870161467d565b5f602082016020835280845180835260408501915060408160051b8601019250602086015f5b82811015614de057603f19878603018452614dcb8583516144cc565b94506020938401939190910190600101614daf565b50929695505050505050565b5f5f60408385031215614dfd575f5ffd5b8235614e08816145dc565b9150602083013560048110614764575f5ffd5b5f60208284031215614e2b575f5ffd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610d7d57610d7d614e32565b5f600160ff1b8201614e6d57614e6d614e32565b505f0390565b81810381811115610d7d57610d7d614e32565b600181811c90821680614e9a57607f821691505b602082108103614eb857634e487b7160e01b5f52602260045260245ffd5b50919050565b6001600160a01b038316815260408101611412602083018461479e565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b604080825281018390525f6060600585901b830181019083018683601e1936839003015b88821015614f9457868503605f190184528235818112614f45575f5ffd5b8a016020810190356001600160401b03811115614f60575f5ffd5b803603821315614f6e575f5ffd5b614f79878284614edb565b96505050602083019250602084019350600182019150614f27565b5050506001600160a01b03851660208501525090506116d4565b60ff8181168382160190811115610d7d57610d7d614e32565b5f5f85851115614fd5575f5ffd5b83861115614fe1575f5ffd5b5050820193919092039150565b80356001600160e01b03198116906004841015614273576001600160e01b031960049490940360031b84901b1690921692915050565b5f60208284031215615034575f5ffd5b8151611412816145dc565b6001600160a01b039390931683526020830191909152604082015260600190565b5f608082019050825463ffffffff811683526150856020840160ff8360201c1661479e565b6001600160601b038160281c1660408401526001600160601b038160881c1660608401525092915050565b604081525f6150c3604083018587614edb565b905060018060a01b0383166020830152949350505050565b805164ffffffffff81168114612cc5575f5ffd5b5f610180828403128015615101575f5ffd5b5061510a614520565b825181526020808401519082015260408084015190820152606080840151908201526080808401519082015260a0808401519082015260c0808401519082015260e080840151908201526101008084015190820152610120808401519082015261517761014084016150db565b61014082015261518a61016084016150db565b6101608201529392505050565b634e487b7160e01b5f52603260045260245ffd5b5f5f8335601e198436030181126151c0575f5ffd5b8301803591506001600160401b038211156151d9575f5ffd5b6020019150368190038213156146bd575f5ffd5b604081016151fb828561479e565b611412602083018461479e565b6001815b60018411156152435780850481111561522757615227614e32565b600184161561523557908102905b60019390931c92800261520c565b935093915050565b5f8261525957506001610d7d565b8161526557505f610d7d565b816001811461527b5760028114615285576152a1565b6001915050610d7d565b60ff84111561529657615296614e32565b50506001821b610d7d565b5060208310610133831016604e8410600b84101617156152c4575081810a610d7d565b6152d05f198484615208565b805f19048211156152e3576152e3614e32565b029392505050565b5f61141260ff84168361524b565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b5f5f60408385031215615337575f5ffd5b8251615342816148a0565b602084015190925061476481614727565b5f60208284031215615363575f5ffd5b8151611412816148a0565b8082018281125f83128015821682158216171561538d5761538d614e32565b505092915050565b600b81810b9083900b016b7fffffffffffffffffffffff81136b7fffffffffffffffffffffff1982121715610d7d57610d7d614e32565b634e487b7160e01b5f52601260045260245ffd5b5f826153ee576153ee6153cc565b500490565b80356001600160601b03198116906014841015614273576001600160601b031960149490940360031b84901b1690921692915050565b5f63ffffffff821663ffffffff810361544457615444614e32565b60010192915050565b5f63ffffffff831680615462576154626153cc565b8063ffffffff84160691505092915050565b63ffffffff818116838216029081169081811461427357614273614e32565b601f821115611c1a57805f5260205f20601f840160051c810160208510156154b85750805b601f840160051c820191505b81811015613ab9575f81556001016154c4565b81516001600160401b038111156154f0576154f061450c565b615504816154fe8454614e86565b84615493565b6020601f821160018114615536575f831561551f5750848201515b5f19600385901b1c1916600184901b178455613ab9565b5f84815260208120601f198516915b828110156155655787850151825560209485019460019092019101615545565b508482101561558257868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60ff8316806155a3576155a36153cc565b8060ff84160691505092915050565b5f816155c0576155c0614e32565b505f19019056fe52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc0dff660c705ec490383ffafc9e8e3ab4714559f9ec8567c5380d4ad2dff5af00a26469706673582212203faa8777e79c7e94e6f208b881608764231d9f4d05936629119d589c2645769264736f6c634300081e0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x392 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7DA0A877 GT PUSH2 0x1DE JUMPI DUP1 PUSH4 0xBFDB20DA GT PUSH2 0x108 JUMPI DUP1 PUSH4 0xD6281D3E GT PUSH2 0x9D JUMPI DUP1 PUSH4 0xE8E617B7 GT PUSH2 0x6D JUMPI DUP1 PUSH4 0xE8E617B7 EQ PUSH2 0xB42 JUMPI DUP1 PUSH4 0xEE07ABBB EQ PUSH2 0xB61 JUMPI DUP1 PUSH4 0xEF8B30F7 EQ PUSH2 0xA1C JUMPI DUP1 PUSH4 0xF7A39333 EQ PUSH2 0xB80 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xD6281D3E EQ PUSH2 0xAB9 JUMPI DUP1 PUSH4 0xD905777E EQ PUSH2 0xAD8 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0xAF7 JUMPI DUP1 PUSH4 0xE77659FD EQ PUSH2 0xB16 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xCC671A18 GT PUSH2 0xD8 JUMPI DUP1 PUSH4 0xCC671A18 EQ PUSH2 0xA3B JUMPI DUP1 PUSH4 0xCE96CB77 EQ PUSH2 0xA4F JUMPI DUP1 PUSH4 0xD336078C EQ PUSH2 0xA6E JUMPI DUP1 PUSH4 0xD52F99CE EQ PUSH2 0xA8D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xBFDB20DA EQ PUSH2 0x9DE JUMPI DUP1 PUSH4 0xC0C51217 EQ PUSH2 0x9FD JUMPI DUP1 PUSH4 0xC63D75B6 EQ PUSH2 0x698 JUMPI DUP1 PUSH4 0xC6E6F592 EQ PUSH2 0xA1C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA9059CBB GT PUSH2 0x17E JUMPI DUP1 PUSH4 0xB3D7F6B9 GT PUSH2 0x14E JUMPI DUP1 PUSH4 0xB3D7F6B9 EQ PUSH2 0x962 JUMPI DUP1 PUSH4 0xB460AF94 EQ PUSH2 0x981 JUMPI DUP1 PUSH4 0xBA087652 EQ PUSH2 0x9A0 JUMPI DUP1 PUSH4 0xBDB5371D EQ PUSH2 0x9BF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x8D9 JUMPI DUP1 PUSH4 0xA9ED1487 EQ PUSH2 0x8F8 JUMPI DUP1 PUSH4 0xAC860F74 EQ PUSH2 0x913 JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0x932 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x94BF804D GT PUSH2 0x1B9 JUMPI DUP1 PUSH4 0x94BF804D EQ PUSH2 0x873 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x892 JUMPI DUP1 PUSH4 0xA3AC9390 EQ PUSH2 0x8A6 JUMPI DUP1 PUSH4 0xA7F8A5E2 EQ PUSH2 0x8C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x7DA0A877 EQ PUSH2 0x803 JUMPI DUP1 PUSH4 0x82DBBD71 EQ PUSH2 0x835 JUMPI DUP1 PUSH4 0x86B44083 EQ PUSH2 0x854 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 GT PUSH2 0x2BF JUMPI DUP1 PUSH4 0x4F1EF286 GT PUSH2 0x25F JUMPI DUP1 PUSH4 0x62EB345E GT PUSH2 0x22F JUMPI DUP1 PUSH4 0x62EB345E EQ PUSH2 0x77C JUMPI DUP1 PUSH4 0x6E553F65 EQ PUSH2 0x79B JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x7BA JUMPI DUP1 PUSH4 0x759076E5 EQ PUSH2 0x7D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x6EA JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x6FD JUMPI DUP1 PUSH4 0x572B6C05 EQ PUSH2 0x711 JUMPI DUP1 PUSH4 0x5EE0C7DD EQ PUSH2 0x75D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x3EDEB257 GT PUSH2 0x29A JUMPI DUP1 PUSH4 0x3EDEB257 EQ PUSH2 0x66C JUMPI DUP1 PUSH4 0x402D267D EQ PUSH2 0x698 JUMPI DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x42E JUMPI DUP1 PUSH4 0x4D15EB03 EQ PUSH2 0x6B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x313CE567 EQ PUSH2 0x5FB JUMPI DUP1 PUSH4 0x33BDED3C EQ PUSH2 0x621 JUMPI DUP1 PUSH4 0x38D52E0F EQ PUSH2 0x640 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x91EA8A6 GT PUSH2 0x335 JUMPI DUP1 PUSH4 0x18160DDD GT PUSH2 0x305 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x56B JUMPI DUP1 PUSH4 0x194448E5 EQ PUSH2 0x59E JUMPI DUP1 PUSH4 0x225C531E EQ PUSH2 0x5BD JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x5DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x91EA8A6 EQ PUSH2 0x48B JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x4F5 JUMPI DUP1 PUSH4 0xA28A477 EQ PUSH2 0x514 JUMPI DUP1 PUSH4 0x150B7A02 EQ PUSH2 0x533 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x77F224A GT PUSH2 0x370 JUMPI DUP1 PUSH4 0x77F224A EQ PUSH2 0x40D JUMPI DUP1 PUSH4 0x7A2D13A EQ PUSH2 0x42E JUMPI DUP1 PUSH4 0x7C2E878 EQ PUSH2 0x44D JUMPI DUP1 PUSH4 0x8742D90 EQ PUSH2 0x46C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1E1D114 EQ PUSH2 0x396 JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x3BD JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x3EC JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0xB9F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DC PUSH2 0x3D7 CALLDATASIZE PUSH1 0x4 PUSH2 0x44B3 JUMP JUMPDEST PUSH2 0xCE1 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3F7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x400 PUSH2 0xD83 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B4 SWAP2 SWAP1 PUSH2 0x44FA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x418 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x427 CALLDATASIZE PUSH1 0x4 PUSH2 0x45F0 JUMP JUMPDEST PUSH2 0xE43 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x439 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x448 CALLDATASIZE PUSH1 0x4 PUSH2 0x4666 JUMP JUMPDEST PUSH2 0xF3E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x458 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x467 CALLDATASIZE PUSH1 0x4 PUSH2 0x46C4 JUMP JUMPDEST PUSH2 0xF49 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x477 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x486 CALLDATASIZE PUSH1 0x4 PUSH2 0x4738 JUMP JUMPDEST PUSH2 0x1070 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x496 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x4E8 PUSH2 0x4A5 CALLDATASIZE PUSH1 0x4 PUSH2 0x476F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B4 SWAP2 SWAP1 PUSH2 0x47BE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x500 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DC PUSH2 0x50F CALLDATASIZE PUSH1 0x4 PUSH2 0x47CC JUMP JUMPDEST PUSH2 0x110C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x51F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x52E CALLDATASIZE PUSH1 0x4 PUSH2 0x4666 JUMP JUMPDEST PUSH2 0x112D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x53E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x552 PUSH2 0x54D CALLDATASIZE PUSH1 0x4 PUSH2 0x4833 JUMP JUMPDEST PUSH2 0x1139 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x576 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x3AA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5A9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x5B8 CALLDATASIZE PUSH1 0x4 PUSH2 0x48AD JUMP JUMPDEST PUSH2 0x11A3 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5C8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x5D7 CALLDATASIZE PUSH1 0x4 PUSH2 0x48D9 JUMP JUMPDEST PUSH2 0x12C6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5E7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DC PUSH2 0x5F6 CALLDATASIZE PUSH1 0x4 PUSH2 0x493D JUMP JUMPDEST PUSH2 0x13EA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x606 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x60F PUSH2 0x1419 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x62C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x400 PUSH2 0x63B CALLDATASIZE PUSH1 0x4 PUSH2 0x497B JUMP JUMPDEST PUSH2 0x1455 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x64B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x654 PUSH2 0x1612 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x677 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x683 PUSH4 0xFFFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x3B4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x6B2 CALLDATASIZE PUSH1 0x4 PUSH2 0x476F JUMP JUMPDEST POP PUSH0 NOT SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6C3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x654 JUMP JUMPDEST PUSH2 0x42C PUSH2 0x6F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x49CB JUMP JUMPDEST PUSH2 0x1640 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x708 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x1656 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x71C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DC PUSH2 0x72B CALLDATASIZE PUSH1 0x4 PUSH2 0x476F JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 AND EQ SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x768 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x552 PUSH2 0x777 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A2A JUMP JUMPDEST PUSH2 0x1671 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x787 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x552 PUSH2 0x796 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A6D JUMP JUMPDEST PUSH2 0x16DC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7A6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x7B5 CALLDATASIZE PUSH1 0x4 PUSH2 0x4AC2 JUMP JUMPDEST PUSH2 0x1812 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x7D4 CALLDATASIZE PUSH1 0x4 PUSH2 0x476F JUMP JUMPDEST PUSH2 0x1834 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x3AA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x80E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH32 0x0 PUSH2 0x654 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x840 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x84F CALLDATASIZE PUSH1 0x4 PUSH2 0x4AE5 JUMP JUMPDEST PUSH2 0x185A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x85F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x400 PUSH2 0x86E CALLDATASIZE PUSH1 0x4 PUSH2 0x497B JUMP JUMPDEST PUSH2 0x1944 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x87E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x88D CALLDATASIZE PUSH1 0x4 PUSH2 0x4AC2 JUMP JUMPDEST PUSH2 0x1A70 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x89D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x400 PUSH2 0x1A92 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x8C0 CALLDATASIZE PUSH1 0x4 PUSH2 0x4B33 JUMP JUMPDEST PUSH2 0x1AD0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8D0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x654 PUSH2 0x1B24 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8E4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3DC PUSH2 0x8F3 CALLDATASIZE PUSH1 0x4 PUSH2 0x47CC JUMP JUMPDEST PUSH2 0x1B43 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x903 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x552 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x91E JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x92D CALLDATASIZE PUSH1 0x4 PUSH2 0x4666 JUMP JUMPDEST PUSH2 0x1B5A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x93D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x400 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH5 0x352E302E3 PUSH1 0xDC SHL DUP2 MSTORE POP DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x96D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x97C CALLDATASIZE PUSH1 0x4 PUSH2 0x4666 JUMP JUMPDEST PUSH2 0x1C1F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x98C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x99B CALLDATASIZE PUSH1 0x4 PUSH2 0x4B70 JUMP JUMPDEST PUSH2 0x1C2B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9AB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x9BA CALLDATASIZE PUSH1 0x4 PUSH2 0x4B70 JUMP JUMPDEST PUSH2 0x1C88 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9CA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x9D9 CALLDATASIZE PUSH1 0x4 PUSH2 0x4BA4 JUMP JUMPDEST PUSH2 0x1CDC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0x9F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x4BD6 JUMP JUMPDEST PUSH2 0x1DC6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA08 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x552 PUSH2 0xA17 CALLDATASIZE PUSH1 0x4 PUSH2 0x4C04 JUMP JUMPDEST PUSH2 0x1FB2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA27 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0xA36 CALLDATASIZE PUSH1 0x4 PUSH2 0x4666 JUMP JUMPDEST PUSH2 0x1FFC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA46 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0x2007 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA5A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0xA69 CALLDATASIZE PUSH1 0x4 PUSH2 0x476F JUMP JUMPDEST PUSH2 0x2093 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA79 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0xA88 CALLDATASIZE PUSH1 0x4 PUSH2 0x4666 JUMP JUMPDEST PUSH2 0x20AD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA98 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xAAC PUSH2 0xAA7 CALLDATASIZE PUSH1 0x4 PUSH2 0x4C37 JUMP JUMPDEST PUSH2 0x215D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B4 SWAP2 SWAP1 PUSH2 0x4C7B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAC4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x552 PUSH2 0xAD3 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A2A JUMP JUMPDEST PUSH2 0x22EA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAE3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0xAF2 CALLDATASIZE PUSH1 0x4 PUSH2 0x476F JUMP JUMPDEST PUSH2 0x23FA JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB02 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x3AA PUSH2 0xB11 CALLDATASIZE PUSH1 0x4 PUSH2 0x4D1A JUMP JUMPDEST PUSH2 0x2412 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB21 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xB35 PUSH2 0xB30 CALLDATASIZE PUSH1 0x4 PUSH2 0x4D46 JUMP JUMPDEST PUSH2 0x245B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B4 SWAP2 SWAP1 PUSH2 0x4D89 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB4D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x552 PUSH2 0xB5C CALLDATASIZE PUSH1 0x4 PUSH2 0x493D JUMP JUMPDEST PUSH2 0x2721 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB6C JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0xB35 PUSH2 0xB7B CALLDATASIZE PUSH1 0x4 PUSH2 0x4D46 JUMP JUMPDEST PUSH2 0x2789 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB8B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x42C PUSH2 0xB9A CALLDATASIZE PUSH1 0x4 PUSH2 0x4DEC JUMP JUMPDEST PUSH2 0x2983 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0xBB6 PUSH2 0x2A42 JUMP JUMPDEST DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC04 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 0xC28 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC46 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC61 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 0xC85 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH2 0xC8F SWAP1 DUP4 PUSH2 0x4E46 JUMP JUMPDEST DUP2 SLOAD SWAP1 SWAP3 POP PUSH0 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xB SIGNEXTEND SLT ISZERO PUSH2 0xCCB JUMPI DUP1 SLOAD PUSH2 0xCBB SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x4E59 JUMP JUMPDEST PUSH2 0xCC5 SWAP1 DUP4 PUSH2 0x4E73 JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST DUP1 SLOAD PUSH2 0xCC5 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND DUP4 PUSH2 0x4E46 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ DUP1 PUSH2 0xD11 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x162FC85 PUSH1 0xE1 SHL EQ JUMPDEST DUP1 PUSH2 0xD2C JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x36372B07 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xD47 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xA219A025 PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0xD62 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x43EFF2D PUSH1 0xE5 SHL EQ JUMPDEST DUP1 PUSH2 0xD7D 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 PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0xDC1 SWAP1 PUSH2 0x4E86 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 0xDED SWAP1 PUSH2 0x4E86 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xE38 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xE0F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xE38 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 0xE1B JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xE4C PUSH2 0x2AB8 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0xE72 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0xE8D JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0xE9B JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0xEB9 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0xEE3 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST PUSH2 0xEEE DUP9 DUP9 DUP9 PUSH2 0x2AE0 JUMP JUMPDEST DUP4 ISZERO PUSH2 0xF34 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD7D DUP3 PUSH0 PUSH2 0x2B87 JUMP JUMPDEST DUP4 PUSH0 PUSH2 0xF54 DUP3 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xF75 JUMPI PUSH2 0xF75 PUSH2 0x478A JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0xFAE JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP3 SWAP2 SWAP1 PUSH2 0x4EBE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP PUSH0 PUSH2 0xFBA DUP3 PUSH2 0x2C76 JUMP JUMPDEST SWAP1 POP PUSH2 0xFD5 PUSH2 0xFC7 PUSH2 0x2CCA JUMP JUMPDEST DUP9 PUSH4 0x46D58CA9 PUSH1 0xE1 SHL PUSH2 0x2CD3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ADDRESS EQ PUSH2 0xFFF JUMPI PUSH2 0xFFF PUSH2 0xFF0 PUSH2 0x2CCA JUMP JUMPDEST DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x2CD3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3E1E7C3 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 PUSH4 0x1F0F3E18 SWAP1 PUSH2 0x102F SWAP1 DUP10 SWAP1 DUP10 SWAP1 DUP10 SWAP1 PUSH1 0x4 ADD PUSH2 0x4F03 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1046 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1058 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH2 0x1067 DUP4 DUP4 DUP4 PUSH2 0x2DD5 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x1096 JUMPI PUSH1 0x40 MLOAD PUSH4 0x294DA6C7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x10A0 DUP4 PUSH2 0x2BDE JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP6 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP2 PUSH32 0x4345EC61F717774FDB684B701C34934889550330DA2B93F2C3A33379DB77F817 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 SLOAD PUSH4 0xFFFFFFFF NOT AND PUSH4 0xFFFFFFFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1116 PUSH2 0x2CCA JUMP JUMPDEST SWAP1 POP PUSH2 0x1123 DUP2 DUP6 DUP6 PUSH2 0x2E5E JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD7D DUP3 PUSH1 0x1 PUSH2 0x2E6B JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x1190 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0xFA5 JUMP JUMPDEST POP PUSH4 0xA85BD01 PUSH1 0xE1 SHL SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH0 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH4 0x7A2D13A SWAP1 DUP3 SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1204 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 0x1228 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1246 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1261 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 0x1285 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST SWAP1 POP DUP1 PUSH2 0x1291 DUP3 PUSH2 0x2EB9 JUMP JUMPDEST EQ DUP1 PUSH2 0x129A JUMPI POP DUP3 JUMPDEST PUSH2 0x12B7 JUMPI PUSH1 0x40 MLOAD PUSH4 0x292D4C4B PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x12C0 DUP5 PUSH2 0x2FB2 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x12CF DUP6 PUSH2 0x2BDE JUMP JUMPDEST POP PUSH0 PUSH2 0x12E5 DUP7 DUP7 DUP7 PUSH2 0x12E0 DUP8 PUSH2 0x3147 JUMP JUMPDEST PUSH2 0x3177 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 PUSH0 DUP2 SGT ISZERO PUSH2 0x1313 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC97A6BF PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xFA5 JUMP JUMPDEST POP POP PUSH0 PUSH2 0x131E PUSH2 0x2A42 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x1362 JUMPI PUSH2 0x1332 DUP2 DUP6 PUSH2 0x4E73 JUMP JUMPDEST PUSH2 0x1344 PUSH2 0x133F DUP4 DUP8 PUSH2 0x4E73 JUMP JUMPDEST PUSH2 0x2EB9 JUMP JUMPDEST EQ PUSH2 0x1362 JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x137F DUP4 DUP6 PUSH2 0x136F PUSH2 0x1612 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 PUSH2 0x3276 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP1 DUP10 AND DUP3 MSTORE DUP8 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x80 DUP4 ADD MSTORE DUP9 AND SWAP1 PUSH32 0xCC010DD322EB2BC19138CF20160AD5643925810F442FC6C5D48B9B4C59B34EFE SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x13F4 PUSH2 0x2CCA JUMP JUMPDEST SWAP1 POP PUSH2 0x1401 DUP6 DUP3 DUP6 PUSH2 0x32AB JUMP JUMPDEST PUSH2 0x140C DUP6 DUP6 DUP6 PUSH2 0x32F6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH32 0x773E532DFEDE91F04B12A73D3D2ACD361424F41F76B4FB79F090161E36B4E00 SWAP1 POP PUSH0 DUP2 SLOAD PUSH2 0xCC5 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x4FAE JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x1462 DUP3 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1483 JUMPI PUSH2 0x1483 PUSH2 0x478A JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x14B3 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP3 SWAP2 SWAP1 PUSH2 0x4EBE JUMP JUMPDEST POP POP PUSH0 PUSH2 0x14BF DUP3 PUSH2 0x2C76 JUMP JUMPDEST SWAP1 POP PUSH2 0x14E8 PUSH2 0x14CC PUSH2 0x2CCA JUMP JUMPDEST DUP9 PUSH2 0x14DA PUSH1 0x4 PUSH0 DUP11 DUP13 PUSH2 0x4FC7 JUMP JUMPDEST PUSH2 0x14E3 SWAP2 PUSH2 0x4FEE JUMP JUMPDEST PUSH2 0x2CD3 JUMP JUMPDEST PUSH2 0x1531 DUP7 DUP7 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 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP3 SWAP2 POP POP PUSH2 0x3353 JUMP JUMPDEST SWAP4 POP PUSH0 DUP5 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1548 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x15B0 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 0x15D4 SWAP2 SWAP1 PUSH2 0x5024 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x15FC JUMPI PUSH2 0x15FC PUSH2 0x15ED PUSH2 0x2CCA JUMP JUMPDEST DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x2CD3 JUMP JUMPDEST POP PUSH2 0x1608 DUP4 DUP4 DUP4 PUSH2 0x2DD5 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x773E532DFEDE91F04B12A73D3D2ACD361424F41F76B4FB79F090161E36B4E00 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x1648 PUSH2 0x3360 JUMP JUMPDEST PUSH2 0x1652 DUP3 DUP3 PUSH2 0x33F0 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x165F PUSH2 0x34AC JUMP JUMPDEST POP PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55E8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x16C8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0xFA5 JUMP JUMPDEST POP PUSH4 0x5EE0C7DD PUSH1 0xE0 SHL SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x1733 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0xFA5 JUMP JUMPDEST POP PUSH0 PUSH2 0x173E DUP9 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x175F JUMPI PUSH2 0x175F PUSH2 0x478A JUMP JUMPDEST EQ DUP1 PUSH2 0x1787 JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1785 JUMPI PUSH2 0x1785 PUSH2 0x478A JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP10 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x17B6 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP3 SWAP2 SWAP1 PUSH2 0x4EBE JUMP JUMPDEST POP PUSH0 SWAP1 POP DUP4 PUSH2 0x17C5 DUP7 DUP9 PUSH2 0x4E46 JUMP JUMPDEST PUSH2 0x17CF SWAP2 SWAP1 PUSH2 0x4E46 JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH2 0x17FC SWAP1 DUP11 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x17EA DUP2 TIMESTAMP PUSH2 0x34F5 JUMP JUMPDEST PUSH2 0x17F3 DUP6 PUSH2 0x3147 JUMP JUMPDEST PUSH2 0x12E0 SWAP1 PUSH2 0x4E59 JUMP JUMPDEST POP PUSH4 0x31759A2F PUSH1 0xE1 SHL SWAP10 SWAP9 POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 NOT PUSH0 PUSH2 0x181F DUP6 PUSH2 0x1FFC JUMP JUMPDEST SWAP1 POP PUSH2 0x16D4 PUSH2 0x182C PUSH2 0x2CCA JUMP JUMPDEST DUP6 DUP8 DUP5 PUSH2 0x3521 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x1863 DUP5 PUSH2 0x2BDE JUMP JUMPDEST POP PUSH0 PUSH2 0x1874 DUP6 DUP6 DUP6 PUSH2 0x17F3 DUP7 PUSH2 0x3147 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 PUSH0 DUP2 SLT ISZERO PUSH2 0x18A2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x239DE571 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xFA5 JUMP JUMPDEST POP POP PUSH2 0x18CA PUSH2 0x18AF PUSH2 0x2CCA JUMP JUMPDEST ADDRESS DUP5 PUSH2 0x18B9 PUSH2 0x1612 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP3 SWAP2 SWAP1 PUSH2 0x359A JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFE14813540C7709C2D7E702F39B104EEED265DD484F899E9F2F89C801AA6395C DUP6 DUP6 DUP6 DUP6 PUSH2 0x1901 PUSH2 0x2CCA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF SWAP7 DUP8 AND DUP2 MSTORE SWAP6 SWAP1 SWAP5 AND PUSH1 0x20 DUP7 ADD MSTORE SWAP3 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x1951 DUP3 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1972 JUMPI PUSH2 0x1972 PUSH2 0x478A JUMP JUMPDEST EQ DUP1 PUSH2 0x199A JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1998 JUMPI PUSH2 0x1998 PUSH2 0x478A JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x19C9 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP3 SWAP2 SWAP1 PUSH2 0x4EBE JUMP JUMPDEST POP POP PUSH0 PUSH2 0x19D4 PUSH2 0x2A42 JUMP JUMPDEST SWAP1 POP PUSH2 0x19E1 PUSH2 0x14CC PUSH2 0x2CCA JUMP JUMPDEST PUSH2 0x1A2A DUP7 DUP7 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 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP12 AND SWAP3 SWAP2 POP POP PUSH2 0x3353 JUMP JUMPDEST SWAP4 POP PUSH0 PUSH2 0x1A35 PUSH2 0x2A42 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x1A65 JUMPI PUSH2 0x1A49 DUP2 DUP4 PUSH2 0x4E73 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x51F59775 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST POP POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 NOT PUSH0 PUSH2 0x1A7D DUP6 PUSH2 0x1C1F JUMP JUMPDEST SWAP1 POP PUSH2 0x16D4 PUSH2 0x1A8A PUSH2 0x2CCA JUMP JUMPDEST DUP6 DUP4 DUP9 PUSH2 0x3521 JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE04 DUP1 SLOAD PUSH1 0x60 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH2 0xDC1 SWAP1 PUSH2 0x4E86 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF02 DUP3 PUSH2 0x1B0C DUP8 DUP8 DUP8 PUSH2 0x35D0 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1B4D PUSH2 0x2CCA JUMP JUMPDEST SWAP1 POP PUSH2 0x1123 DUP2 DUP6 DUP6 PUSH2 0x32F6 JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x1B71 JUMPI PUSH2 0x1B6A PUSH2 0x2A42 JUMP JUMPDEST SWAP1 POP PUSH2 0x1B99 JUMP JUMPDEST PUSH2 0x1B79 PUSH2 0x2A42 JUMP JUMPDEST DUP2 GT ISZERO PUSH2 0x1B99 JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0x6E553F65 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x6E553F65 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1BF6 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 0x1C1A SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD7D DUP3 PUSH1 0x1 PUSH2 0x2B87 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1C36 DUP4 PUSH2 0x2093 JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x1C5F JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x3FA733BB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x503F JUMP JUMPDEST PUSH0 PUSH2 0x1C69 DUP7 PUSH2 0x112D JUMP JUMPDEST SWAP1 POP PUSH2 0x1C7F PUSH2 0x1C76 PUSH2 0x2CCA JUMP JUMPDEST DUP7 DUP7 DUP10 DUP6 PUSH2 0x3618 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1C93 DUP4 PUSH2 0x23FA JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0x1CBC JUMPI DUP3 DUP6 DUP3 PUSH1 0x40 MLOAD PUSH4 0x2E52AFBB PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x503F JUMP JUMPDEST PUSH0 PUSH2 0x1CC6 DUP7 PUSH2 0xF3E JUMP JUMPDEST SWAP1 POP PUSH2 0x1C7F PUSH2 0x1CD3 PUSH2 0x2CCA JUMP JUMPDEST DUP7 DUP7 DUP5 DUP11 PUSH2 0x3618 JUMP JUMPDEST PUSH0 PUSH2 0x1CE6 DUP5 PUSH2 0x2BDE JUMP JUMPDEST DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB PUSH1 0x1 PUSH1 0x28 SHL DUP5 DIV DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x88 SHL SWAP1 SWAP4 DIV SWAP1 SWAP3 AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP2 ADD DUP5 SWAP1 MSTORE SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH32 0x7E293D291E9DD159F2FBDE9523C4191674384553A72C0833BA9CF7DCB5381FB7 SWAP1 PUSH1 0x80 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH2 0x1D60 DUP4 PUSH2 0x376B JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH17 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000 NOT SWAP1 SWAP2 AND OR DUP2 SSTORE PUSH2 0x1D96 DUP3 PUSH2 0x376B JUMP JUMPDEST DUP2 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x1 PUSH1 0x88 SHL MUL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x88 SHL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP3 SWAP1 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1E29 JUMPI PUSH2 0x1E29 PUSH2 0x478A JUMP JUMPDEST EQ PUSH2 0x1E47 JUMPI PUSH1 0x40 MLOAD PUSH4 0xCD43EFA1 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 PUSH4 0xFFFFFFFF AND PUSH0 SUB PUSH2 0x1E6D JUMPI PUSH1 0x40 MLOAD PUSH4 0x294DA6C7 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH4 0xFFFFFFFF DUP8 AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD PUSH2 0x1E93 DUP7 PUSH2 0x376B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1EAA DUP6 PUSH2 0x376B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP5 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 SWAP2 KECCAK256 DUP3 MLOAD DUP2 SLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND PUSH4 0xFFFFFFFF NOT DUP3 AND DUP2 OR DUP4 SSTORE SWAP3 DUP5 ADD MLOAD SWAP2 SWAP3 DUP4 SWAP2 PUSH5 0xFFFFFFFFFF NOT AND OR PUSH1 0x1 PUSH1 0x20 SHL DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1F11 JUMPI PUSH2 0x1F11 PUSH2 0x478A JUMP JUMPDEST MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 DUP2 ADD MLOAD DUP3 SLOAD PUSH1 0x60 SWAP1 SWAP5 ADD MLOAD PUSH6 0x10000000000 PUSH1 0x1 PUSH1 0xE8 SHL SUB NOT SWAP1 SWAP5 AND PUSH1 0x1 PUSH1 0x28 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP3 DUP4 AND MUL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x88 SHL NOT AND OR PUSH1 0x1 PUSH1 0x88 SHL SWAP2 SWAP1 SWAP5 AND MUL SWAP3 SWAP1 SWAP3 OR SWAP1 SSTORE MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND SWAP1 PUSH32 0x422C963A67D52178B43A807B8C9DF3A99468F416B736F9F040B6392CF790752E SWAP1 PUSH2 0x1FA2 SWAP1 DUP5 SWAP1 PUSH2 0x5060 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x60 DUP5 SWAP1 SHL AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH1 0x34 DUP3 ADD MSTORE PUSH0 SWAP1 PUSH2 0x1412 SWAP1 PUSH1 0x38 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xD7D DUP3 PUSH0 PUSH2 0x2E6B JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x205D 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 0x2081 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH2 0x2089 PUSH2 0x2A42 JUMP JUMPDEST PUSH2 0xCC5 SWAP2 SWAP1 PUSH2 0x4E46 JUMP JUMPDEST PUSH0 PUSH2 0xD7D PUSH2 0x20A0 DUP4 PUSH2 0x379E JUMP JUMPDEST PUSH2 0x20A8 PUSH2 0x2007 JUMP JUMPDEST PUSH2 0x37AB JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x2132 JUMPI PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x210A 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 0x212E SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST SWAP2 POP POP JUMPDEST DUP1 PUSH2 0x213C DUP3 PUSH2 0x2EB9 JUMP JUMPDEST EQ PUSH2 0x215A JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x21C3 PUSH1 0x40 MLOAD DUP1 PUSH2 0x180 ADD PUSH1 0x40 MSTORE DUP1 PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP5 PUSH0 PUSH2 0x21CE DUP3 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x21EF JUMPI PUSH2 0x21EF PUSH2 0x478A JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x221F JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP3 SWAP2 SWAP1 PUSH2 0x4EBE JUMP JUMPDEST POP POP PUSH0 PUSH2 0x222B DUP3 PUSH2 0x2C76 JUMP JUMPDEST SWAP1 POP PUSH2 0x2246 PUSH2 0x2238 PUSH2 0x2CCA JUMP JUMPDEST DUP10 PUSH4 0x46D58CA9 PUSH1 0xE1 SHL PUSH2 0x2CD3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND ADDRESS EQ PUSH2 0x2261 JUMPI PUSH2 0x2261 PUSH2 0x15ED PUSH2 0x2CCA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x46D58CA9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND SWAP1 PUSH4 0x8DAB1952 SWAP1 PUSH2 0x2291 SWAP1 DUP11 SWAP1 DUP11 SWAP1 DUP11 SWAP1 PUSH1 0x4 ADD PUSH2 0x50B0 JUMP JUMPDEST PUSH2 0x180 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x22AE 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 0x22D2 SWAP2 SWAP1 PUSH2 0x50EF JUMP JUMPDEST SWAP4 POP PUSH2 0x22DF DUP4 DUP4 DUP4 PUSH2 0x2DD5 JUMP JUMPDEST POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x2341 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0xFA5 JUMP JUMPDEST POP PUSH0 PUSH2 0x234C DUP7 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x236D JUMPI PUSH2 0x236D PUSH2 0x478A JUMP JUMPDEST EQ DUP1 PUSH2 0x2395 JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2393 JUMPI PUSH2 0x2393 PUSH2 0x478A JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP8 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x23C4 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP3 SWAP2 SWAP1 PUSH2 0x4EBE JUMP JUMPDEST POP POP DUP1 SLOAD PUSH2 0x23E7 SWAP1 DUP8 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x23DE DUP2 TIMESTAMP PUSH2 0x34F5 JUMP JUMPDEST PUSH2 0x17F3 DUP8 PUSH2 0x3147 JUMP JUMPDEST POP PUSH4 0x6B140E9F PUSH1 0xE1 SHL SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xD7D PUSH2 0x2407 DUP4 PUSH2 0x37BA JUMP JUMPDEST PUSH2 0x20A8 PUSH2 0xA36 PUSH2 0x2007 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE01 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 DUP4 PUSH0 PUSH2 0x2468 DUP3 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2489 JUMPI PUSH2 0x2489 PUSH2 0x478A JUMP JUMPDEST DUP3 SLOAD DUP5 SWAP3 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP2 EQ PUSH2 0x24B9 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP3 SWAP2 SWAP1 PUSH2 0x4EBE JUMP JUMPDEST POP POP PUSH0 PUSH2 0x24C5 DUP3 PUSH2 0x2C76 JUMP JUMPDEST SWAP1 POP PUSH0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x24E1 JUMPI PUSH2 0x24E1 PUSH2 0x450C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2514 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x24FF JUMPI SWAP1 POP JUMPDEST POP SWAP6 POP PUSH0 JUMPDEST DUP8 DUP2 LT ISZERO PUSH2 0x2713 JUMPI PUSH0 DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x2534 JUMPI PUSH2 0x2534 PUSH2 0x5197 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x2546 SWAP2 SWAP1 PUSH2 0x51AB JUMP JUMPDEST PUSH2 0x2554 SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x4FC7 JUMP JUMPDEST PUSH2 0x255D SWAP2 PUSH2 0x4FEE JUMP JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 PUSH2 0x2579 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 DUP2 AND SWAP1 DUP6 AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x2594 JUMPI PUSH2 0x2590 PUSH2 0x2589 PUSH2 0x2CCA JUMP JUMPDEST DUP13 DUP4 PUSH2 0x2CD3 JUMP JUMPDEST DUP1 SWAP4 POP JUMPDEST PUSH2 0x25FF DUP11 DUP11 DUP5 DUP2 DUP2 LT PUSH2 0x25A9 JUMPI PUSH2 0x25A9 PUSH2 0x5197 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x25BB SWAP2 SWAP1 PUSH2 0x51AB 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 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP16 AND SWAP3 SWAP2 POP POP PUSH2 0x3353 JUMP JUMPDEST DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2611 JUMPI PUSH2 0x2611 PUSH2 0x5197 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP3 PUSH2 0x270A JUMPI PUSH0 DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2634 JUMPI PUSH2 0x2634 PUSH2 0x5197 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x264F SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x31A9108F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE SWAP1 SWAP2 POP ADDRESS SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6352211E SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x26B7 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 0x26DB SWAP2 SWAP1 PUSH2 0x5024 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2708 JUMPI PUSH2 0x2703 PUSH2 0x26F4 PUSH2 0x2CCA JUMP JUMPDEST DUP14 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH2 0x2CD3 JUMP JUMPDEST PUSH1 0x1 SWAP4 POP JUMPDEST POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x2519 JUMP JUMPDEST POP POP POP PUSH2 0x1608 DUP4 DUP4 DUP4 PUSH2 0x2DD5 JUMP JUMPDEST PUSH0 CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP2 EQ PUSH2 0x2778 JUMPI PUSH1 0x40 MLOAD PUSH4 0x950D88BF 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 0xFA5 JUMP JUMPDEST POP PUSH4 0xE8E617B7 PUSH1 0xE0 SHL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 PUSH0 PUSH2 0x2796 DUP3 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x27B7 JUMPI PUSH2 0x27B7 PUSH2 0x478A JUMP JUMPDEST EQ DUP1 PUSH2 0x27DF JUMPI POP PUSH1 0x2 DUP2 SLOAD PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x27DD JUMPI PUSH2 0x27DD PUSH2 0x478A JUMP JUMPDEST EQ JUMPDEST DUP2 SLOAD DUP4 SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 SWAP2 DIV PUSH1 0xFF AND SWAP1 PUSH2 0x280E JUMPI PUSH1 0x40 MLOAD PUSH4 0xE851C79 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP3 SWAP2 SWAP1 PUSH2 0x4EBE JUMP JUMPDEST POP POP PUSH0 PUSH2 0x2819 PUSH2 0x2A42 JUMP JUMPDEST SWAP1 POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2834 JUMPI PUSH2 0x2834 PUSH2 0x450C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2867 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x2852 JUMPI SWAP1 POP JUMPDEST POP SWAP5 POP PUSH0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0x2978 JUMPI PUSH0 DUP9 DUP9 DUP4 DUP2 DUP2 LT PUSH2 0x2887 JUMPI PUSH2 0x2887 PUSH2 0x5197 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x2899 SWAP2 SWAP1 PUSH2 0x51AB JUMP JUMPDEST PUSH2 0x28A7 SWAP2 PUSH1 0x4 SWAP2 PUSH0 SWAP2 PUSH2 0x4FC7 JUMP JUMPDEST PUSH2 0x28B0 SWAP2 PUSH2 0x4FEE JUMP JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 PUSH2 0x28CC JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 DUP2 AND SWAP1 DUP5 AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x28E7 JUMPI PUSH2 0x28E3 PUSH2 0x28DC PUSH2 0x2CCA JUMP JUMPDEST DUP12 DUP4 PUSH2 0x2CD3 JUMP JUMPDEST DUP1 SWAP3 POP JUMPDEST PUSH2 0x2952 DUP10 DUP10 DUP5 DUP2 DUP2 LT PUSH2 0x28FC JUMPI PUSH2 0x28FC PUSH2 0x5197 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL DUP2 ADD SWAP1 PUSH2 0x290E SWAP2 SWAP1 PUSH2 0x51AB 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 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP15 AND SWAP3 SWAP2 POP POP PUSH2 0x3353 JUMP JUMPDEST DUP8 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2964 JUMPI PUSH2 0x2964 PUSH2 0x5197 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE POP PUSH1 0x1 ADD PUSH2 0x286C JUMP JUMPDEST POP POP PUSH0 PUSH2 0x1A35 PUSH2 0x2A42 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2996 JUMPI PUSH2 0x2996 PUSH2 0x478A JUMP JUMPDEST SUB PUSH2 0x29B4 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5E645365 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH2 0x29BE DUP4 PUSH2 0x2BDE JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x638A5C17C348B99C05E7985EE5EE8BC0C41BC7A12265AEC4A488D62350C1D24 DUP3 PUSH0 ADD PUSH1 0x4 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP5 PUSH1 0x40 MLOAD PUSH2 0x2A0B SWAP3 SWAP2 SWAP1 PUSH2 0x51ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP1 SLOAD DUP3 SWAP1 DUP3 SWAP1 PUSH5 0xFF00000000 NOT AND PUSH1 0x1 PUSH1 0x20 SHL DUP4 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2A38 JUMPI PUSH2 0x2A38 PUSH2 0x478A JUMP JUMPDEST MUL OR SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x2A4B PUSH2 0x1612 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 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 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2A8F 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 0x2AB3 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0xD7D JUMP JUMPDEST PUSH2 0x2AE8 PUSH2 0x37C4 JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2B45 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 0x2B69 SWAP2 SWAP1 PUSH2 0x5024 JUMP JUMPDEST SWAP1 POP PUSH2 0x2B74 DUP2 PUSH2 0x37E9 JUMP JUMPDEST PUSH2 0x2B7E DUP5 DUP5 PUSH2 0x37FA JUMP JUMPDEST PUSH2 0x12C0 DUP3 PUSH2 0x380C JUMP JUMPDEST PUSH0 PUSH2 0x1412 PUSH2 0x2B93 PUSH2 0xB9F JUMP JUMPDEST PUSH2 0x2B9E SWAP1 PUSH1 0x1 PUSH2 0x4E46 JUMP JUMPDEST PUSH2 0x2BA9 PUSH0 PUSH1 0xA PUSH2 0x52EB JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x2BD5 SWAP2 SWAP1 PUSH2 0x4E46 JUMP JUMPDEST DUP6 SWAP2 SWAP1 DUP6 PUSH2 0x3930 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH32 0xDFF660C705EC490383FFAFC9E8E3AB4714559F9EC8567C5380D4AD2DFF5AF01 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP1 SWAP2 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP2 PUSH1 0x1 PUSH1 0x20 SHL SWAP1 DIV PUSH1 0xFF AND PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2C42 JUMPI PUSH2 0x2C42 PUSH2 0x478A JUMP JUMPDEST EQ ISZERO DUP4 SWAP1 PUSH2 0x2C6F JUMPI PUSH1 0x40 MLOAD PUSH4 0x2DAD9021 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 0xFA5 JUMP JUMPDEST POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2C7F PUSH2 0x2A42 JUMP JUMPDEST DUP3 SLOAD SWAP1 SWAP2 POP PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP2 LT ISZERO PUSH2 0x2CC5 JUMPI DUP2 SLOAD PUSH2 0x2CBC SWAP1 PUSH2 0x133F SWAP1 DUP4 SWAP1 PUSH1 0x1 PUSH1 0x88 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH2 0x4E73 JUMP JUMPDEST POP PUSH2 0xD7D PUSH2 0x2A42 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x2AB3 PUSH2 0x3972 JUMP JUMPDEST PUSH0 PUSH2 0x2CDE DUP4 DUP4 PUSH2 0x1FB2 JUMP JUMPDEST SWAP1 POP PUSH0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3A7B7A39 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2D1D 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 0x2D41 SWAP2 SWAP1 PUSH2 0x5024 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xB7009613 DUP7 ADDRESS DUP6 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2D70 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x52F9 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2D8A 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 0x2DAE SWAP2 SWAP1 PUSH2 0x5326 JUMP JUMPDEST POP SWAP1 POP DUP5 DUP5 DUP4 DUP4 PUSH2 0xF34 JUMPI PUSH1 0x40 MLOAD PUSH4 0xC294136D PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x52F9 JUMP JUMPDEST PUSH0 PUSH2 0x2DDE PUSH2 0x2A42 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x12C0 JUMPI DUP3 SLOAD PUSH0 SWAP1 PUSH2 0x2E14 SWAP1 DUP7 SWAP1 PUSH4 0xFFFFFFFF AND PUSH2 0x2E02 DUP2 TIMESTAMP PUSH2 0x34F5 JUMP JUMPDEST PUSH2 0x12E0 PUSH2 0x2E0F DUP8 DUP10 PUSH2 0x4E73 JUMP JUMPDEST PUSH2 0x3147 JUMP JUMPDEST DUP5 SLOAD SWAP1 SWAP2 POP DUP2 SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND DUP1 DUP3 SGT ISZERO PUSH2 0x1067 JUMPI PUSH1 0x40 MLOAD PUSH4 0x395192C5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH2 0x1C1A DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x39DC JUMP JUMPDEST PUSH0 PUSH2 0x1412 PUSH2 0x2E7A DUP3 PUSH1 0xA PUSH2 0x52EB JUMP JUMPDEST PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE02 SLOAD PUSH2 0x2EA6 SWAP2 SWAP1 PUSH2 0x4E46 JUMP JUMPDEST PUSH2 0x2EAE PUSH2 0xB9F JUMP JUMPDEST PUSH2 0x2BD5 SWAP1 PUSH1 0x1 PUSH2 0x4E46 JUMP JUMPDEST PUSH0 DUP1 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH2 0x2F39 SWAP2 DUP6 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2F15 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 0x20A8 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST DUP2 SLOAD PUSH1 0x40 MLOAD PUSH4 0x2D182BE5 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE SWAP2 SWAP4 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xB460AF94 SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2F8E 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 0x2C6F SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x2FD9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x47DDF9C7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND OR DUP4 SSTORE AND DUP1 ISZERO PUSH2 0x3084 JUMPI PUSH2 0x3011 PUSH2 0x1612 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x305E 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 0x3082 SWAP2 SWAP1 PUSH2 0x5353 JUMP JUMPDEST POP JUMPDEST PUSH2 0x308C PUSH2 0x1612 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x30DA 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 0x30FE SWAP2 SWAP1 PUSH2 0x5353 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND DUP3 MSTORE DUP6 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x9BAADDAD37A65CA0DF0360563FCA87A13C1CE354BE76D7EC35EAC48BD766332A SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xFF SHL SUB DUP3 GT ISZERO PUSH2 0x3173 JUMPI PUSH1 0x40 MLOAD PUSH4 0x123BAF03 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 PUSH2 0x3192 DUP8 DUP8 DUP8 PUSH2 0x35D0 JUMP JUMPDEST SWAP1 POP DUP4 DUP3 PUSH1 0x2 ADD PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x31B6 SWAP2 SWAP1 PUSH2 0x536E JUMP JUMPDEST SWAP2 DUP3 SWAP1 SSTORE POP DUP4 SLOAD SWAP1 SWAP5 POP DUP6 SWAP2 POP DUP4 SWAP1 PUSH1 0x14 SWAP1 PUSH2 0x31DD SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 DIV PUSH1 0xB SIGNEXTEND PUSH2 0x5395 JUMP JUMPDEST DUP3 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB SWAP2 DUP3 AND PUSH2 0x100 SWAP4 SWAP1 SWAP4 EXP SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP3 MUL NOT SWAP1 SWAP2 AND OR SWAP1 SSTORE POP DUP2 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH4 0xFFFFFFFF DUP1 DUP11 AND DUP3 MSTORE DUP9 AND PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x60 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x1 PUSH1 0xA0 SHL SWAP1 SWAP2 DIV PUSH1 0xB SIGNEXTEND PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 PUSH32 0xBC0FF1D27E119160A9A107D0725B9ED31B90773CF47E89332A35A8C1A319EAEE SWAP1 PUSH1 0xA0 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x3283 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x3AC0 JUMP JUMPDEST PUSH2 0x1C1A JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH0 PUSH2 0x32B6 DUP5 DUP5 PUSH2 0x2412 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 LT ISZERO PUSH2 0x12C0 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x32E8 JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x503F JUMP JUMPDEST PUSH2 0x12C0 DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x39DC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x331F JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3348 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH2 0x1C1A DUP4 DUP4 DUP4 PUSH2 0x3B22 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1412 DUP4 DUP4 PUSH0 PUSH2 0x3C3A JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 PUSH2 0x33D0 JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x33C4 PUSH2 0x3D06 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x33EE JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x344A JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x3447 SWAP2 DUP2 ADD SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x3472 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55E8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 EQ PUSH2 0x34A2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2A875269 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH2 0x1C1A DUP4 DUP4 PUSH2 0x3D1A JUMP JUMPDEST ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x33EE JUMPI PUSH1 0x40 MLOAD PUSH4 0x703E46DD PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP4 DUP2 AND EQ PUSH2 0x3518 JUMPI PUSH2 0x3513 PUSH4 0xFFFFFFFF DUP5 AND DUP4 PUSH2 0x53E0 JUMP JUMPDEST PUSH2 0x1412 JUMP JUMPDEST PUSH2 0x1412 DUP3 PUSH2 0x3D6F JUMP JUMPDEST PUSH2 0x3534 PUSH2 0x352C PUSH2 0x1612 JUMP JUMPDEST DUP6 ADDRESS DUP6 PUSH2 0x359A JUMP JUMPDEST PUSH2 0x353E DUP4 DUP3 PUSH2 0x3E4C JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDCBC1C05240F31FF3AD067EF1EE35CE4997762752E3A095284754544F4C709D7 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0x358C SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH2 0x35A8 DUP5 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0x3E80 JUMP JUMPDEST PUSH2 0x12C0 JUMPI PUSH1 0x40 MLOAD PUSH4 0x5274AFE7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFF00000000 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 SWAP4 SWAP1 SWAP4 SHL SWAP3 SWAP1 SWAP3 AND PUSH1 0xC0 SWAP2 SWAP1 SWAP2 SHL PUSH4 0xFFFFFFFF PUSH1 0xC0 SHL AND OR PUSH1 0xA0 SHR AND PUSH1 0x60 SWAP2 SWAP1 SWAP2 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND OR SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x3621 PUSH2 0x2A42 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x3756 JUMPI PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x5608 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x40 MLOAD PUSH4 0xCE96CB77 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE SWAP2 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0xCE96CB77 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3680 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 0x36A4 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST PUSH2 0x36AE DUP4 DUP7 PUSH2 0x4E73 JUMP JUMPDEST GT ISZERO PUSH2 0x36CD JUMPI PUSH1 0x40 MLOAD PUSH4 0xAF8075E9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xB460AF94 PUSH2 0x36E7 DUP5 DUP8 PUSH2 0x4E73 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP5 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE ADDRESS PUSH1 0x24 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x372F 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 0x3753 SWAP2 SWAP1 PUSH2 0x4E1B JUMP JUMPDEST POP POP JUMPDEST PUSH2 0x3763 DUP7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x3EED JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP3 GT ISZERO PUSH2 0x3173 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6DFCC65 PUSH1 0xE4 SHL DUP2 MSTORE PUSH1 0x60 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH0 PUSH2 0xD7D PUSH2 0x448 DUP4 PUSH2 0x23FA JUMP JUMPDEST PUSH0 DUP3 DUP3 XOR DUP3 DUP5 LT MUL DUP3 XOR PUSH2 0x1412 JUMP JUMPDEST PUSH0 PUSH2 0xD7D DUP3 PUSH2 0x1834 JUMP JUMPDEST PUSH2 0x37CC PUSH2 0x3F94 JUMP JUMPDEST PUSH2 0x33EE JUMPI PUSH1 0x40 MLOAD PUSH4 0x1AFCD79F PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x37F1 PUSH2 0x37C4 JUMP JUMPDEST PUSH2 0x215A DUP2 PUSH2 0x3FAD JUMP JUMPDEST PUSH2 0x3802 PUSH2 0x37C4 JUMP JUMPDEST PUSH2 0x1652 DUP3 DUP3 PUSH2 0x4030 JUMP JUMPDEST PUSH2 0x3814 PUSH2 0x37C4 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE5A6B10F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3870 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 0x3894 SWAP2 SWAP1 PUSH2 0x5024 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH0 NOT PUSH1 0x24 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x3902 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 0x3926 SWAP2 SWAP1 PUSH2 0x5353 JUMP JUMPDEST POP PUSH2 0x215A DUP2 PUSH2 0x2FB2 JUMP JUMPDEST PUSH0 PUSH2 0x395D PUSH2 0x393D DUP4 PUSH2 0x4080 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3958 JUMPI POP PUSH0 DUP5 DUP1 PUSH2 0x3953 JUMPI PUSH2 0x3953 PUSH2 0x53CC JUMP JUMPDEST DUP7 DUP9 MULMOD GT JUMPDEST ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH2 0x3968 DUP7 DUP7 DUP7 PUSH2 0x40AC JUMP JUMPDEST PUSH2 0x1C7F SWAP2 SWAP1 PUSH2 0x4E46 JUMP JUMPDEST PUSH0 CALLDATASIZE PUSH1 0x14 DUP1 DUP3 LT DUP1 ISZERO SWAP1 PUSH2 0x39AE JUMPI POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ JUMPDEST ISZERO PUSH2 0x39D4 JUMPI PUSH2 0x39C1 CALLDATASIZE DUP3 DUP5 SUB DUP2 PUSH0 PUSH2 0x4FC7 JUMP JUMPDEST PUSH2 0x39CA SWAP2 PUSH2 0x53F3 JUMP JUMPDEST PUSH1 0x60 SHR SWAP3 POP POP POP SWAP1 JUMP JUMPDEST CALLER SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH2 0x3A13 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3A3C JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP7 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x1 DUP4 ADD PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 DUP4 SWAP1 SSTORE DUP2 ISZERO PUSH2 0x3AB9 JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3AB0 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xA9059CBB PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x44 DUP2 DUP1 DUP12 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x3B16 JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x3B0A JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP8 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x3B5C JUMPI DUP2 DUP2 PUSH1 0x2 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x3B51 SWAP2 SWAP1 PUSH2 0x4E46 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x3BB9 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 DUP2 LT ISZERO PUSH2 0x3B9B JUMPI DUP5 DUP2 DUP5 PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x503F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP4 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP4 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3BD7 JUMPI PUSH1 0x2 DUP2 ADD DUP1 SLOAD DUP4 SWAP1 SUB SWAP1 SSTORE PUSH2 0x3BF5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD DUP4 ADD SWAP1 SSTORE JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x358C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP2 SELFBALANCE LT ISZERO PUSH2 0x3C66 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 0xFA5 JUMP JUMPDEST PUSH0 PUSH2 0x3C72 DUP6 DUP5 DUP7 PUSH2 0x415C JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x3C93 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x3C93 JUMPI POP PUSH0 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x3CA8 JUMPI PUSH2 0x3CA0 PUSH2 0x4171 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1412 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3CD2 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9996B315 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x3CE5 JUMPI PUSH2 0x3CE0 PUSH2 0x418A JUMP JUMPDEST PUSH2 0x3CFE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD6BDA275 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55E8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH2 0x1B34 JUMP JUMPDEST PUSH2 0x3D23 DUP3 PUSH2 0x4195 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH0 SWAP1 LOG2 DUP1 MLOAD ISZERO PUSH2 0x3D67 JUMPI PUSH2 0x1C1A DUP3 DUP3 PUSH2 0x41F8 JUMP JUMPDEST PUSH2 0x1652 PUSH2 0x427A JUMP JUMPDEST PUSH2 0x7E9 PUSH0 DUP1 PUSH3 0x15180 PUSH2 0x3D86 PUSH4 0x67748580 DUP7 PUSH2 0x4E73 JUMP JUMPDEST PUSH2 0x3D90 SWAP2 SWAP1 PUSH2 0x53E0 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP2 PUSH2 0x3DA0 JUMPI PUSH2 0x16D PUSH2 0x3DA4 JUMP JUMPDEST PUSH2 0x16E JUMPDEST PUSH2 0xFFFF AND DUP2 LT PUSH2 0x3E27 JUMPI DUP2 PUSH2 0x3DBB JUMPI PUSH2 0x16D PUSH2 0x3DBF JUMP JUMPDEST PUSH2 0x16E JUMPDEST PUSH2 0x3DCD SWAP1 PUSH2 0xFFFF AND DUP3 PUSH2 0x4E73 JUMP JUMPDEST SWAP1 POP PUSH2 0x3DD8 DUP4 PUSH2 0x5429 JUMP JUMPDEST SWAP3 POP PUSH2 0x3DE5 PUSH1 0x4 DUP5 PUSH2 0x544D JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO DUP1 ISZERO PUSH2 0x3E20 JUMPI POP PUSH2 0x3DFE PUSH1 0x64 DUP5 PUSH2 0x544D JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO ISZERO DUP1 PUSH2 0x3E20 JUMPI POP PUSH2 0x3E18 PUSH2 0x190 DUP5 PUSH2 0x544D JUMP JUMPDEST PUSH4 0xFFFFFFFF AND ISZERO JUMPDEST SWAP2 POP PUSH2 0x3D93 JUMP JUMPDEST PUSH2 0x3E31 DUP2 DUP4 PUSH2 0x4299 JUMP JUMPDEST PUSH2 0x3E3C DUP5 PUSH1 0x64 PUSH2 0x5474 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND PUSH2 0x16D4 SWAP2 SWAP1 PUSH2 0x4E46 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3E75 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH2 0x1652 PUSH0 DUP4 DUP4 PUSH2 0x3B22 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x23B872DD PUSH1 0xE0 SHL PUSH0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 MSTORE DUP7 AND PUSH1 0x24 MSTORE PUSH1 0x44 DUP6 SWAP1 MSTORE SWAP2 PUSH1 0x20 DUP4 PUSH1 0x64 DUP2 DUP1 DUP13 GAS CALL SWAP3 POP PUSH1 0x1 PUSH0 MLOAD EQ DUP4 AND PUSH2 0x3EDC JUMPI DUP4 DUP4 ISZERO AND ISZERO PUSH2 0x3ED0 JUMPI RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST PUSH0 DUP9 EXTCODESIZE GT RETURNDATASIZE ISZERO AND DUP4 AND SWAP3 POP JUMPDEST PUSH1 0x40 MSTORE POP PUSH0 PUSH1 0x60 MSTORE SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x3F11 JUMPI PUSH2 0x3F11 DUP4 DUP7 DUP4 PUSH2 0x32AB JUMP JUMPDEST PUSH2 0x3F1B DUP4 DUP3 PUSH2 0x437C JUMP JUMPDEST PUSH2 0x3F2D PUSH2 0x3F26 PUSH2 0x1612 JUMP JUMPDEST DUP6 DUP5 PUSH2 0x3276 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xFBDE797D201C681B91056529119E0B02407C7BB96A4A2C75C01FC9667232C8DB DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x3F85 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x3F9D PUSH2 0x2AB8 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0xFF AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3FB5 PUSH2 0x37C4 JUMP JUMPDEST PUSH32 0x773E532DFEDE91F04B12A73D3D2ACD361424F41F76B4FB79F090161E36B4E00 PUSH0 DUP1 PUSH2 0x3FE1 DUP5 PUSH2 0x43B0 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH2 0x3FF1 JUMPI PUSH1 0x12 PUSH2 0x3FF3 JUMP JUMPDEST DUP1 JUMPDEST DUP4 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA8 SHL SUB NOT AND PUSH1 0x1 PUSH1 0xA0 SHL PUSH1 0xFF SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND OR PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP1 SWAP2 SSTORE POP POP JUMP JUMPDEST PUSH2 0x4038 PUSH2 0x37C4 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55C8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH32 0x52C63247E1F47DB19D5CE0460030C497F067CA4CEBF71BA98EEADABE20BACE03 PUSH2 0x4071 DUP5 DUP3 PUSH2 0x54D7 JUMP JUMPDEST POP PUSH1 0x4 DUP2 ADD PUSH2 0x12C0 DUP4 DUP3 PUSH2 0x54D7 JUMP JUMPDEST PUSH0 PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x4095 JUMPI PUSH2 0x4095 PUSH2 0x478A JUMP JUMPDEST PUSH2 0x409F SWAP2 SWAP1 PUSH2 0x5591 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x1 EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x40B9 DUP7 DUP7 PUSH2 0x443B JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP2 PUSH0 SUB PUSH2 0x40DD JUMPI DUP4 DUP2 DUP2 PUSH2 0x40D3 JUMPI PUSH2 0x40D3 PUSH2 0x53CC JUMP JUMPDEST DIV SWAP3 POP POP POP PUSH2 0x1412 JUMP JUMPDEST DUP2 DUP5 GT PUSH2 0x40F4 JUMPI PUSH2 0x40F4 PUSH1 0x3 DUP6 ISZERO MUL PUSH1 0x11 XOR PUSH2 0x4457 JUMP JUMPDEST PUSH0 DUP5 DUP7 DUP9 MULMOD PUSH0 DUP7 DUP2 SUB DUP8 AND SWAP7 DUP8 SWAP1 DIV SWAP7 PUSH1 0x2 PUSH1 0x3 DUP10 MUL DUP2 XOR DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL DUP3 SUB MUL DUP1 DUP11 MUL SWAP1 SWAP2 SUB MUL SWAP2 DUP2 SWAP1 SUB DUP2 SWAP1 DIV PUSH1 0x1 ADD DUP6 DUP5 GT SWAP1 SWAP7 SUB SWAP6 SWAP1 SWAP6 MUL SWAP2 SWAP1 SWAP4 SUB SWAP4 SWAP1 SWAP4 DIV SWAP3 SWAP1 SWAP3 OR MUL SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 DUP9 GAS CALL SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE DUP2 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP4 ADD RETURNDATACOPY RETURNDATASIZE PUSH1 0x20 ADD DUP2 ADD PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY RETURNDATASIZE DUP2 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE PUSH0 SUB PUSH2 0x41CA JUMPI PUSH1 0x40 MLOAD PUSH4 0x4C9C8CE3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH0 MLOAD PUSH1 0x20 PUSH2 0x55E8 PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x4205 DUP5 DUP5 PUSH2 0x4468 JUMP JUMPDEST SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x4226 JUMPI POP PUSH0 RETURNDATASIZE GT DUP1 PUSH2 0x4226 JUMPI POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EXTCODESIZE GT JUMPDEST ISZERO PUSH2 0x423B JUMPI PUSH2 0x4233 PUSH2 0x4171 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xD7D JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4265 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 0xFA5 JUMP JUMPDEST RETURNDATASIZE ISZERO PUSH2 0x3CE5 JUMPI PUSH2 0x4273 PUSH2 0x418A JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE ISZERO PUSH2 0x33EE JUMPI PUSH1 0x40 MLOAD PUSH4 0xB398979F PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F DUP4 LT ISZERO PUSH2 0x42AB JUMPI POP PUSH1 0x1 PUSH2 0xD7D JUMP JUMPDEST DUP2 ISZERO PUSH2 0x42D4 JUMPI PUSH1 0x3C DUP4 LT ISZERO PUSH2 0x42C2 JUMPI POP PUSH1 0x2 PUSH2 0xD7D JUMP JUMPDEST DUP3 PUSH2 0x42CC DUP2 PUSH2 0x55B2 JUMP JUMPDEST SWAP4 POP POP PUSH2 0x42E5 JUMP JUMPDEST PUSH1 0x3B DUP4 LT ISZERO PUSH2 0x42E5 JUMPI POP PUSH1 0x2 PUSH2 0xD7D JUMP JUMPDEST PUSH1 0x5A DUP4 LT PUSH2 0x436F JUMPI PUSH1 0x78 DUP4 LT PUSH2 0x4368 JUMPI PUSH1 0x97 DUP4 LT PUSH2 0x4361 JUMPI PUSH1 0xB5 DUP4 LT PUSH2 0x435A JUMPI PUSH1 0xD4 DUP4 LT PUSH2 0x4353 JUMPI PUSH1 0xF3 DUP4 LT PUSH2 0x434C JUMPI PUSH2 0x111 DUP4 LT PUSH2 0x4345 JUMPI PUSH2 0x130 DUP4 LT PUSH2 0x433E JUMPI PUSH2 0x14E DUP4 LT PUSH2 0x4337 JUMPI PUSH1 0xC PUSH2 0x4372 JUMP JUMPDEST PUSH1 0xB PUSH2 0x4372 JUMP JUMPDEST PUSH1 0xA PUSH2 0x4372 JUMP JUMPDEST PUSH1 0x9 PUSH2 0x4372 JUMP JUMPDEST PUSH1 0x8 PUSH2 0x4372 JUMP JUMPDEST PUSH1 0x7 PUSH2 0x4372 JUMP JUMPDEST PUSH1 0x6 PUSH2 0x4372 JUMP JUMPDEST PUSH1 0x5 PUSH2 0x4372 JUMP JUMPDEST PUSH1 0x4 PUSH2 0x4372 JUMP JUMPDEST PUSH1 0x3 JUMPDEST PUSH1 0xFF AND SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x43A5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xFA5 JUMP JUMPDEST PUSH2 0x1652 DUP3 PUSH0 DUP4 PUSH2 0x3B22 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x43BC PUSH1 0x40 MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x4 DUP2 MSTORE PUSH1 0x24 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x20 DUP2 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x313CE567 PUSH1 0xE0 SHL OR SWAP1 MSTORE SWAP1 SWAP2 POP PUSH0 SWAP1 DUP2 SWAP1 PUSH2 0x43F7 SWAP1 DUP8 SWAP1 PUSH2 0x447B JUMP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x4405 DUP4 PUSH1 0x40 MSTORE JUMP JUMPDEST DUP2 DUP1 ISZERO PUSH2 0x4413 JUMPI POP PUSH1 0x20 RETURNDATASIZE LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x4420 JUMPI POP PUSH1 0xFF DUP2 GT ISZERO JUMPDEST PUSH2 0x442B JUMPI PUSH0 PUSH0 PUSH2 0x442F JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST SWAP5 POP SWAP5 POP POP POP POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH0 DUP1 PUSH0 NOT DUP4 DUP6 MULMOD SWAP4 SWAP1 SWAP3 MUL DUP1 DUP5 LT SWAP4 DUP2 SWAP1 SUB SWAP4 SWAP1 SWAP4 SUB SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH0 MSTORE DUP1 PUSH1 0x20 MSTORE PUSH1 0x24 PUSH1 0x1C REVERT JUMPDEST PUSH0 PUSH0 PUSH0 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP7 GAS DELEGATECALL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 PUSH0 DUP6 MLOAD PUSH1 0x20 DUP8 ADD DUP9 GAS STATICCALL SWAP3 POP PUSH0 MLOAD SWAP2 POP PUSH1 0x20 MLOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x2CC5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x44C3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1412 DUP3 PUSH2 0x449C 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 PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x1412 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x44CC JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x180 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x4543 JUMPI PUSH2 0x4543 PUSH2 0x450C JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 GT ISZERO PUSH2 0x4562 JUMPI PUSH2 0x4562 PUSH2 0x450C JUMP JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x1F NOT PUSH1 0x1F DUP6 ADD DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x4590 JUMPI PUSH2 0x4590 PUSH2 0x450C JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE SWAP1 POP DUP1 DUP3 DUP5 ADD DUP6 LT ISZERO PUSH2 0x45A7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP4 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 DUP6 DUP4 ADD ADD MSTORE POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x45CD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1412 DUP4 DUP4 CALLDATALOAD PUSH1 0x20 DUP6 ADD PUSH2 0x4549 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x215A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4602 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4617 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4623 DUP7 DUP3 DUP8 ADD PUSH2 0x45BE JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x463E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x464A DUP7 DUP3 DUP8 ADD PUSH2 0x45BE JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x465B DUP2 PUSH2 0x45DC JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4676 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x468D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x46A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x46BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x46D7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x46E2 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x46FC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4708 DUP8 DUP3 DUP9 ADD PUSH2 0x467D JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x471C DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x215A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4749 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4754 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4764 DUP2 PUSH2 0x4727 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x477F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1412 DUP2 PUSH2 0x45DC JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x47BA JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0xD7D DUP3 DUP5 PUSH2 0x479E JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x47DD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x47E8 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x4806 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x481C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x46BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x4847 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x4852 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x4862 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4883 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x488F DUP9 DUP3 DUP10 ADD PUSH2 0x47F6 JUMP JUMPDEST SWAP7 SWAP10 SWAP6 SWAP9 POP SWAP4 SWAP7 POP SWAP3 SWAP5 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x215A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x48BE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x48C9 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4764 DUP2 PUSH2 0x48A0 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x48ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x48F8 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x4908 DUP2 PUSH2 0x4727 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x4918 DUP2 PUSH2 0x4727 JUMP JUMPDEST SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD SWAP2 POP PUSH1 0x80 DUP7 ADD CALLDATALOAD PUSH2 0x492F DUP2 PUSH2 0x45DC JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x494F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x495A DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x496A DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x498D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4998 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x49B2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x49BE DUP7 DUP3 DUP8 ADD PUSH2 0x47F6 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x49DC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x49E7 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4A01 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x4A11 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4A20 DUP6 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x4549 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4A3D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x4A48 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x4A58 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP4 SWAP7 SWAP4 SWAP6 POP POP POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD SWAP2 PUSH1 0x60 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x4A82 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH2 0x4A8D DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD PUSH2 0x4A9D DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP6 SWAP9 SWAP6 SWAP8 POP POP POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP4 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP4 PUSH1 0x80 DUP3 ADD CALLDATALOAD SWAP4 POP PUSH1 0xA0 SWAP1 SWAP2 ADD CALLDATALOAD SWAP2 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4AD3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4764 DUP2 PUSH2 0x45DC JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4AF8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x4B03 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x4B13 DUP2 PUSH2 0x4727 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x4B23 DUP2 PUSH2 0x4727 JUMP JUMPDEST SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP3 SWAP4 PUSH1 0x60 ADD CALLDATALOAD SWAP3 POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4B45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4B50 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x4B60 DUP2 PUSH2 0x4727 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x465B DUP2 PUSH2 0x4727 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4B82 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x4B94 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x465B DUP2 PUSH2 0x45DC JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4BB6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4BC1 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4BE9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x4BF4 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x4A58 DUP2 PUSH2 0x4727 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4C15 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4C20 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP2 POP PUSH2 0x4C2E PUSH1 0x20 DUP5 ADD PUSH2 0x449C JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4C4A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x4C55 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4C6F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4708 DUP8 DUP3 DUP9 ADD PUSH2 0x47F6 JUMP JUMPDEST PUSH0 PUSH2 0x180 DUP3 ADD SWAP1 POP DUP3 MLOAD DUP3 MSTORE PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP4 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP4 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP4 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP4 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP4 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP4 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP4 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP4 ADD MLOAD PUSH2 0x4CFF PUSH2 0x140 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST POP PUSH2 0x160 DUP4 ADD MLOAD PUSH2 0x4273 PUSH2 0x160 DUP5 ADD DUP3 PUSH5 0xFFFFFFFFFF AND SWAP1 MSTORE JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4D2B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4D36 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4764 DUP2 PUSH2 0x45DC JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4D58 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4D63 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4D7D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x49BE DUP7 DUP3 DUP8 ADD PUSH2 0x467D 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 0x4DE0 JUMPI PUSH1 0x3F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x4DCB DUP6 DUP4 MLOAD PUSH2 0x44CC JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x4DAF JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4DFD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4E08 DUP2 PUSH2 0x45DC JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x4 DUP2 LT PUSH2 0x4764 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4E2B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xD7D JUMPI PUSH2 0xD7D PUSH2 0x4E32 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0xFF SHL DUP3 ADD PUSH2 0x4E6D JUMPI PUSH2 0x4E6D PUSH2 0x4E32 JUMP JUMPDEST POP PUSH0 SUB SWAP1 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xD7D JUMPI PUSH2 0xD7D PUSH2 0x4E32 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4E9A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x4EB8 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 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0x40 DUP2 ADD PUSH2 0x1412 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x479E 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 0x40 DUP1 DUP3 MSTORE DUP2 ADD DUP4 SWAP1 MSTORE PUSH0 PUSH1 0x60 PUSH1 0x5 DUP6 SWAP1 SHL DUP4 ADD DUP2 ADD SWAP1 DUP4 ADD DUP7 DUP4 PUSH1 0x1E NOT CALLDATASIZE DUP4 SWAP1 SUB ADD JUMPDEST DUP9 DUP3 LT ISZERO PUSH2 0x4F94 JUMPI DUP7 DUP6 SUB PUSH1 0x5F NOT ADD DUP5 MSTORE DUP3 CALLDATALOAD DUP2 DUP2 SLT PUSH2 0x4F45 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP11 ADD PUSH1 0x20 DUP2 ADD SWAP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4F60 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATASIZE SUB DUP3 SGT ISZERO PUSH2 0x4F6E JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4F79 DUP8 DUP3 DUP5 PUSH2 0x4EDB JUMP JUMPDEST SWAP7 POP POP POP PUSH1 0x20 DUP4 ADD SWAP3 POP PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH2 0x4F27 JUMP JUMPDEST POP POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x20 DUP6 ADD MSTORE POP SWAP1 POP PUSH2 0x16D4 JUMP JUMPDEST PUSH1 0xFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0xD7D JUMPI PUSH2 0xD7D PUSH2 0x4E32 JUMP JUMPDEST PUSH0 PUSH0 DUP6 DUP6 GT ISZERO PUSH2 0x4FD5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x4FE1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP POP DUP3 ADD SWAP4 SWAP2 SWAP1 SWAP3 SUB SWAP2 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x4 DUP5 LT ISZERO PUSH2 0x4273 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0x4 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5034 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1412 DUP2 PUSH2 0x45DC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP DUP3 SLOAD PUSH4 0xFFFFFFFF DUP2 AND DUP4 MSTORE PUSH2 0x5085 PUSH1 0x20 DUP5 ADD PUSH1 0xFF DUP4 PUSH1 0x20 SHR AND PUSH2 0x479E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 PUSH1 0x28 SHR AND PUSH1 0x40 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB DUP2 PUSH1 0x88 SHR AND PUSH1 0x60 DUP5 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH0 PUSH2 0x50C3 PUSH1 0x40 DUP4 ADD DUP6 DUP8 PUSH2 0x4EDB JUMP JUMPDEST SWAP1 POP PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x20 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x2CC5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x180 DUP3 DUP5 SUB SLT DUP1 ISZERO PUSH2 0x5101 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x510A PUSH2 0x4520 JUMP JUMPDEST DUP3 MLOAD DUP2 MSTORE PUSH1 0x20 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x60 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x80 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xA0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xC0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH1 0xE0 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x100 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x120 DUP1 DUP5 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x5177 PUSH2 0x140 DUP5 ADD PUSH2 0x50DB JUMP JUMPDEST PUSH2 0x140 DUP3 ADD MSTORE PUSH2 0x518A PUSH2 0x160 DUP5 ADD PUSH2 0x50DB JUMP JUMPDEST PUSH2 0x160 DUP3 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x51C0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD DUP1 CALLDATALOAD SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x51D9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 ADD SWAP2 POP CALLDATASIZE DUP2 SWAP1 SUB DUP3 SGT ISZERO PUSH2 0x46BD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 DUP2 ADD PUSH2 0x51FB DUP3 DUP6 PUSH2 0x479E JUMP JUMPDEST PUSH2 0x1412 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x479E JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x5243 JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x5227 JUMPI PUSH2 0x5227 PUSH2 0x4E32 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x5235 JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x520C JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x5259 JUMPI POP PUSH1 0x1 PUSH2 0xD7D JUMP JUMPDEST DUP2 PUSH2 0x5265 JUMPI POP PUSH0 PUSH2 0xD7D JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x527B JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x5285 JUMPI PUSH2 0x52A1 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0xD7D JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x5296 JUMPI PUSH2 0x5296 PUSH2 0x4E32 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0xD7D JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x52C4 JUMPI POP DUP2 DUP2 EXP PUSH2 0xD7D JUMP JUMPDEST PUSH2 0x52D0 PUSH0 NOT DUP5 DUP5 PUSH2 0x5208 JUMP JUMPDEST DUP1 PUSH0 NOT DIV DUP3 GT ISZERO PUSH2 0x52E3 JUMPI PUSH2 0x52E3 PUSH2 0x4E32 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1412 PUSH1 0xFF DUP5 AND DUP4 PUSH2 0x524B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP2 SWAP1 SWAP3 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP2 AND PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x5337 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x5342 DUP2 PUSH2 0x48A0 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x4764 DUP2 PUSH2 0x4727 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5363 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1412 DUP2 PUSH2 0x48A0 JUMP JUMPDEST DUP1 DUP3 ADD DUP3 DUP2 SLT PUSH0 DUP4 SLT DUP1 ISZERO DUP3 AND DUP3 ISZERO DUP3 AND OR ISZERO PUSH2 0x538D JUMPI PUSH2 0x538D PUSH2 0x4E32 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xB DUP2 DUP2 SIGNEXTEND SWAP1 DUP4 SWAP1 SIGNEXTEND ADD PUSH12 0x7FFFFFFFFFFFFFFFFFFFFFFF DUP2 SGT PUSH12 0x7FFFFFFFFFFFFFFFFFFFFFFF NOT DUP3 SLT OR ISZERO PUSH2 0xD7D JUMPI PUSH2 0xD7D PUSH2 0x4E32 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH2 0x53EE JUMPI PUSH2 0x53EE PUSH2 0x53CC JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT DUP2 AND SWAP1 PUSH1 0x14 DUP5 LT ISZERO PUSH2 0x4273 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH1 0x14 SWAP5 SWAP1 SWAP5 SUB PUSH1 0x3 SHL DUP5 SWAP1 SHL AND SWAP1 SWAP3 AND SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP3 AND PUSH4 0xFFFFFFFF DUP2 SUB PUSH2 0x5444 JUMPI PUSH2 0x5444 PUSH2 0x4E32 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP4 AND DUP1 PUSH2 0x5462 JUMPI PUSH2 0x5462 PUSH2 0x53CC JUMP JUMPDEST DUP1 PUSH4 0xFFFFFFFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0xFFFFFFFF DUP2 DUP2 AND DUP4 DUP3 AND MUL SWAP1 DUP2 AND SWAP1 DUP2 DUP2 EQ PUSH2 0x4273 JUMPI PUSH2 0x4273 PUSH2 0x4E32 JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x1C1A JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x54B8 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3AB9 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x54C4 JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x54F0 JUMPI PUSH2 0x54F0 PUSH2 0x450C JUMP JUMPDEST PUSH2 0x5504 DUP2 PUSH2 0x54FE DUP5 SLOAD PUSH2 0x4E86 JUMP JUMPDEST DUP5 PUSH2 0x5493 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x5536 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x551F 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 0x3AB9 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x5565 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x5545 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x5582 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 PUSH0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x55A3 JUMPI PUSH2 0x55A3 PUSH2 0x53CC JUMP JUMPDEST DUP1 PUSH1 0xFF DUP5 AND MOD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x55C0 JUMPI PUSH2 0x55C0 PUSH2 0x4E32 JUMP JUMPDEST POP PUSH0 NOT ADD SWAP1 JUMP INVALID MSTORE 0xC6 ORIGIN SELFBALANCE RJUMPI 0xF47D 0xB1 SWAP14 TLOAD RJUMP 0x4600 ADDRESS 0xC4 SWAP8 CREATE PUSH8 0xCA4CEBF71BA98EEA 0xDA 0xBE KECCAK256 0xBA 0xCE STOP CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBC0DFF660C705EC490383FFA 0xFC SWAP15 DUP15 GASPRICE 0xB4 PUSH18 0x4559F9EC8567C5380D4AD2DFF5AF00A26469 PUSH17 0x6673582212203FAA8777E79C7E94E6F208 0xB8 DUP2 PUSH1 0x87 PUSH5 0x231D9F4D05 SWAP4 PUSH7 0x29119D589C2645 PUSH23 0x9264736F6C634300081E00330000000000000000000000 ","sourceMap":"3399:33077:110:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31313:393;;;;;;;;;;;;;:::i;:::-;;;160:25:125;;;148:2;133:18;31313:393:110;;;;;;;;15853:422;;;;;;;;;;-1:-1:-1;15853:422:110;;;;;:::i;:::-;;:::i;:::-;;;728:14:125;;721:22;703:41;;691:2;676:18;15853:422:110;563:187:125;2715:144:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9262:174:110:-;;;;;;;;;;-1:-1:-1;9262:174:110;;;;;:::i;:::-;;:::i;:::-;;8750:148:46;;;;;;;;;;-1:-1:-1;8750:148:46;;;;;:::i;:::-;;:::i;24591:398:110:-;;;;;;;;;;-1:-1:-1;24591:398:110;;;;;:::i;:::-;;:::i;15514:310::-;;;;;;;;;;-1:-1:-1;15514:310:110;;;;;:::i;:::-;;:::i;14990:188::-;;;;;;;;;;-1:-1:-1;14990:188:110;;;;;:::i;:::-;-1:-1:-1;;;;;15148:18:110;15054:12;15148:18;;;:10;:18;;;;;:25;-1:-1:-1;;;15148:25:110;;;;;14990:188;;;;;;;;:::i;5132:186:44:-;;;;;;;;;;-1:-1:-1;5132:186:44;;;;;:::i;:::-;;:::i;9887:147:46:-;;;;;;;;;;-1:-1:-1;9887:147:46;;;;;:::i;:::-;;:::i;16433:203:110:-;;;;;;;;;;-1:-1:-1;16433:203:110;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;7937:33:125;;;7919:52;;7907:2;7892:18;16433:203:110;7775:202:125;3868:152:44;;;;;;;;;;-1:-1:-1;3999:14:44;;3868:152;;11236:357:110;;;;;;;;;;-1:-1:-1;11236:357:110;;;;;:::i;:::-;;:::i;34752:703::-;;;;;;;;;;-1:-1:-1;34752:703:110;;;;;:::i;:::-;;:::i;5910:244:44:-;;;;;;;;;;-1:-1:-1;5910:244:44;;;;;:::i;:::-;;:::i;7963:221:46:-;;;;;;;;;;;;;:::i;:::-;;;10038:4:125;10026:17;;;10008:36;;9996:2;9981:18;7963:221:46;9866:184:125;26139:534:110;;;;;;;;;;-1:-1:-1;26139:534:110;;;;;:::i;:::-;;:::i;8219:153:46:-;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;11110:32:125;;;11092:51;;11080:2;11065:18;8219:153:46;10946:203:125;3836:65:110;;;;;;;;;;;;3885:16;3836:65;;;;;11328:10:125;11316:23;;;11298:42;;11286:2;11271:18;3836:65:110;11154:192:125;8933:108:46;;;;;;;;;;-1:-1:-1;8933:108:46;;;;;:::i;:::-;-1:-1:-1;;;9017:17:46;8933:108;11713:87:110;;;;;;;;;;-1:-1:-1;11784:11:110;11713:87;;3911:214:76;;;;;;:::i;:::-;;:::i;3466:126::-;;;;;;;;;;;;;:::i;1976:137:42:-;;;;;;;;;;-1:-1:-1;1976:137:42;;;;;:::i;:::-;1851:17;-1:-1:-1;;;;;2075:31:42;;;;;;;1976:137;17661:174:110;;;;;;;;;;-1:-1:-1;17661:174:110;;;;;:::i;:::-;;:::i;17871:895::-;;;;;;;;;;-1:-1:-1;17871:895:110;;;;;:::i;:::-;;:::i;10250:392:46:-;;;;;;;;;;-1:-1:-1;10250:392:46;;;;;:::i;:::-;;:::i;4053:171:44:-;;;;;;;;;;-1:-1:-1;4053:171:44;;;;;:::i;:::-;;:::i;30855:159:110:-;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;30996:12:110;-1:-1:-1;;;30996:12:110;;;;30855:159;;1768:107:42;;;;;;;;;;-1:-1:-1;1851:17:42;1768:107;;35998:476:110;;;;;;;;;;-1:-1:-1;35998:476:110;;;;;:::i;:::-;;:::i;29392:262::-;;;;;;;;;;-1:-1:-1;29392:262:110;;;;;:::i;:::-;;:::i;10677:380:46:-;;;;;;;;;;-1:-1:-1;10677:380:46;;;;;:::i;:::-;;:::i;2972:148:44:-;;;;;;;;;;;;;:::i;31018:254:110:-;;;;;;;;;;-1:-1:-1;31018:254:110;;;;;:::i;:::-;;:::i;11597:112::-;;;;;;;;;;;;;:::i;4419:178:44:-;;;;;;;;;;-1:-1:-1;4419:178:44;;;;;:::i;:::-;;:::i;3643:55:110:-;;;;;;;;;;-1:-1:-1;3643:55:110;-1:-1:-1;;;;;;3643:55:110;;33732:317;;;;;;;;;;-1:-1:-1;33732:317:110;;;;;:::i;:::-;;:::i;1732:58:76:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1732:58:76;;;;;9709:143:46;;;;;;;;;;-1:-1:-1;9709:143:46;;;;;:::i;:::-;;:::i;11092:413::-;;;;;;;;;;-1:-1:-1;11092:413:46;;;;;:::i;:::-;;:::i;11540:405::-;;;;;;;;;;-1:-1:-1;11540:405:46;;;;;:::i;:::-;;:::i;13896:384:110:-;;;;;;;;;;-1:-1:-1;13896:384:110;;;;;:::i;:::-;;:::i;12753:599::-;;;;;;;;;;-1:-1:-1;12753:599:110;;;;;:::i;:::-;;:::i;22615:163::-;;;;;;;;;;-1:-1:-1;22615:163:110;;;;;:::i;:::-;;:::i;8567:148:46:-;;;;;;;;;;-1:-1:-1;8567:148:46;;;;;:::i;:::-;;:::i;31710:196:110:-;;;;;;;;;;;;;:::i;32156:155::-;;;;;;;;;;-1:-1:-1;32156:155:110;;;;;:::i;:::-;;:::i;33170:292::-;;;;;;;;;;-1:-1:-1;33170:292:110;;;;;:::i;:::-;;:::i;24146:441::-;;;;;;;;;;-1:-1:-1;24146:441:110;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;16871:754::-;;;;;;;;;;-1:-1:-1;16871:754:110;;;;;:::i;:::-;;:::i;31947:168::-;;;;;;;;;;-1:-1:-1;31947:168:110;;;;;:::i;:::-;;:::i;4630:195:44:-;;;;;;;;;;-1:-1:-1;4630:195:44;;;;;:::i;:::-;;:::i;27866:965:110:-;;;;;;;;;;-1:-1:-1;27866:965:110;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;16672:163::-;;;;;;;;;;-1:-1:-1;16672:163:110;;;;;:::i;:::-;;:::i;30257:594::-;;;;;;;;;;-1:-1:-1;30257:594:110;;;;;:::i;:::-;;:::i;14565:421::-;;;;;;;;;;-1:-1:-1;14565:421:110;;;;;:::i;:::-;;:::i;31313:393::-;31366:14;-1:-1:-1;;;;;;;;;;;31464:10:110;:8;:10::i;:::-;31490:13;;31520:38;;-1:-1:-1;;;31520:38:110;;31552:4;31520:38;;;11092:51:125;31455:19:110;;-1:-1:-1;;;;;;31490:13:110;;:29;;:13;;31520:23;;11065:18:125;;31520:38:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31490:69;;;;;;;;;;;;;160:25:125;;148:2;133:18;;14:177;31490:69:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31480:79;;;;:::i;:::-;31569:12;;31480:79;;-1:-1:-1;31584:1:110;-1:-1:-1;;;31569:12:110;;;;;:16;31565:137;;;31621:12;;31613:21;;-1:-1:-1;;;31621:12:110;;;;31613:21;:::i;:::-;31595:40;;;;:::i;:::-;;;31382:324;31313:393;:::o;31565:137::-;31681:12;;31656:39;;-1:-1:-1;;;31681:12:110;;;;31656:39;;:::i;15853:422::-;15938:4;-1:-1:-1;;;;;;15963:48:110;;-1:-1:-1;;;15963:48:110;;:104;;-1:-1:-1;;;;;;;16021:46:110;;-1:-1:-1;;;16021:46:110;15963:104;:153;;;-1:-1:-1;;;;;;;16077:39:110;;-1:-1:-1;;;16077:39:110;15963:153;:210;;;-1:-1:-1;;;;;;;16126:47:110;;-1:-1:-1;;;16126:47:110;15963:210;:261;;;-1:-1:-1;;;;;;;16183:41:110;;-1:-1:-1;;;16183:41:110;15963:261;:307;;;-1:-1:-1;;;;;;;;;;829:40:102;;;16234:36:110;15950:320;15853:422;-1:-1:-1;;15853:422:110:o;2715:144:44:-;2845:7;2838:14;;2760:13;;-1:-1:-1;;;;;;;;;;;2082:20:44;2838:14;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2715:144;:::o;9262:174:110:-;4158:30:75;4191:26;:24;:26::i;:::-;4302:15;;4158:59;;-1:-1:-1;4302:15:75;-1:-1:-1;;;4302:15:75;;;4301:16;;-1:-1:-1;;;;;4348:14:75;4279:19;4724:16;;:34;;;;;4744:14;4724:34;4704:54;;4768:17;4788:11;-1:-1:-1;;;;;4788:16:75;4803:1;4788:16;:50;;;;-1:-1:-1;4816:4:75;4808:25;:30;4788:50;4768:70;;4854:12;4853:13;:30;;;;;4871:12;4870:13;4853:30;4849:91;;;4906:23;;-1:-1:-1;;;4906:23:75;;;;;;;;;;;4849:91;4949:18;;-1:-1:-1;;4949:18:75;4966:1;4949:18;;;4977:67;;;;5011:22;;-1:-1:-1;;;;5011:22:75;-1:-1:-1;;;5011:22:75;;;4977:67;9381:50:110::1;9403:5;9410:7;9419:11;9381:21;:50::i;:::-;5068:14:75::0;5064:101;;;5098:23;;-1:-1:-1;;;;5098:23:75;;;5140:14;;-1:-1:-1;23328:50:125;;5140:14:75;;23316:2:125;23301:18;5140:14:75;;;;;;;5064:101;4092:1079;;;;;9262:174:110;;;:::o;8750:148:46:-;8820:7;8846:45;8863:6;8871:19;8846:16;:45::i;24591:398:110:-;24734:6;7811:33;7847:24;7864:6;7847:16;:24::i;:::-;7811:60;-1:-1:-1;7908:19:110;7885;;-1:-1:-1;;;7885:19:110;;;;:42;;;;;;;;:::i;:::-;7953:19;;7945:6;;-1:-1:-1;;;7953:19:110;;;;;;7885:42;7877:97;;;;-1:-1:-1;;;7877:97:110;;;;;;;;;:::i;:::-;;;;;;;;;;;8015:21;8039:34;8060:12;8039:20;:34::i;:::-;8015:58;;24748:78:::1;24765:12;:10;:12::i;:::-;24779:6:::0;-1:-1:-1;;;24748:16:110::1;:78::i;:::-;-1:-1:-1::0;;;;;24836:27:110;::::1;24858:4;24836:27;24832:92;;24865:59;24882:12;:10;:12::i;:::-;24896:6:::0;-1:-1:-1;;;;;;24865:16:110::1;:59::i;:::-;24930:54;::::0;-1:-1:-1;;;24930:54:110;;-1:-1:-1;;;;;24930:31:110;::::1;::::0;::::1;::::0;:54:::1;::::0;24962:9;;;;24973:10;;24930:54:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8086:64:::0;8114:6;8122:12;8136:13;8086:27;:64::i;:::-;7805:350;;24591:398;;;;;:::o;15514:310::-;15600:11;:16;;15615:1;15600:16;15592:44;;;;-1:-1:-1;;;15592:44:110;;;;;;;;;;;;15642:33;15678:24;15695:6;15678:16;:24::i;:::-;15743:21;;15713:65;;;15743:21;;;;25469:42:125;;25547:23;;;25542:2;25527:18;;25520:51;15743:21:110;;-1:-1:-1;;;;;;15713:65:110;;;;;25442:18:125;15713:65:110;;;;;;;15784:35;;-1:-1:-1;;15784:35:110;;;;;;;;;;;;-1:-1:-1;15514:310:110:o;5132:186:44:-;5205:4;5221:13;5237:12;:10;:12::i;:::-;5221:28;;5259:31;5268:5;5275:7;5284:5;5259:8;:31::i;:::-;-1:-1:-1;5307:4:44;;5132:186;-1:-1:-1;;;5132:186:44:o;9887:147:46:-;9957:7;9983:44;10000:6;10008:18;9983:16;:44::i;16433:203:110:-;16569:6;7677:10;-1:-1:-1;;;;;7699:11:110;7677:34;;;7669:71;;;;-1:-1:-1;;;7669:71:110;;-1:-1:-1;;;;;11110:32:125;;;7669:71:110;;;11092:51:125;11065:18;;7669:71:110;10946:203:125;7669:71:110;-1:-1:-1;;;;16590:41:110;16433:203;-1:-1:-1;;;;;;16433:203:110:o;11236:357::-;11308:31;-1:-1:-1;;;;;;;;;;;11397:13:110;;11427:38;;-1:-1:-1;;;11427:38:110;;11459:4;11427:38;;;11092:51:125;11397:13:110;;-1:-1:-1;11375:19:110;;-1:-1:-1;;;;;11397:13:110;;;;:29;;:13;;11427:23;;11065:18:125;;11427:38:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11397:69;;;;;;;;;;;;;160:25:125;;148:2;133:18;;14:177;11397:69:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11375:91;;11506:11;11480:22;11490:11;11480:9;:22::i;:::-;:37;:46;;;;11521:5;11480:46;11472:83;;;;-1:-1:-1;;;11472:83:110;;;;;;;;;;;;11561:27;11576:11;11561:14;:27::i;:::-;11302:291;;11236:357;;:::o;34752:703::-;34903:24;34920:6;34903:16;:24::i;:::-;;34956:16;34975:59;34987:6;34995:8;35005:9;35016:17;:6;:15;:17::i;:::-;34975:11;:59::i;:::-;34956:78;-1:-1:-1;35084:6:110;34956:78;35061:1;35048:14;;;35040:63;;;;-1:-1:-1;;;35040:63:110;;;;;25754:25:125;;;;25795:18;;;25788:34;25727:18;;35040:63:110;25582:246:125;35040:63:110;;;35157:15;35175:10;:8;:10::i;:::-;35157:28;;35205:6;35195:7;:16;35191:112;;;35261:16;35270:7;35261:6;:16;:::i;:::-;35229:27;35239:16;35248:7;35239:6;:16;:::i;:::-;35229:9;:27::i;:::-;:49;35221:75;;;;-1:-1:-1;;;35221:75:110;;;;;;;;;;;;35308:57;35345:11;35358:6;35323:7;:5;:7::i;:::-;-1:-1:-1;;;;;35308:36:110;;:57;:36;:57::i;:::-;35376:74;;;26116:10:125;26104:23;;;26086:42;;26164:23;;26159:2;26144:18;;26137:51;26204:18;;;26197:34;;;26262:2;26247:18;;26240:34;;;-1:-1:-1;;;;;26311:32:125;;;26305:3;26290:19;;26283:61;35376:74:110;;;;;26073:3:125;26058:19;35376:74:110;;;;;;;34897:558;;34752:703;;;;;:::o;5910:244:44:-;5997:4;6013:15;6031:12;:10;:12::i;:::-;6013:30;;6053:37;6069:4;6075:7;6084:5;6053:15;:37::i;:::-;6100:26;6110:4;6116:2;6120:5;6100:9;:26::i;:::-;6143:4;6136:11;;;5910:244;;;;;;:::o;7963:221:46:-;8055:5;;5498:22;8072:47;-1:-1:-1;14580:5:46;8136:21;;:41;;;-1:-1:-1;;;8136:21:46;;;;:41;:::i;26139:534:110:-;26264:19;26247:6;7811:33;7847:24;7864:6;7847:16;:24::i;:::-;7811:60;-1:-1:-1;7908:19:110;7885;;-1:-1:-1;;;7885:19:110;;;;:42;;;;;;;;:::i;:::-;7953:19;;7945:6;;-1:-1:-1;;;7953:19:110;;;;;;7885:42;7877:97;;;;-1:-1:-1;;;7877:97:110;;;;;;;;;:::i;:::-;;;8015:21;8039:34;8060:12;8039:20;:34::i;:::-;8015:58;;26291:57:::1;26308:12;:10;:12::i;:::-;26322:6:::0;26337:9:::1;26344:1;26342;26337:4:::0;;:9:::1;:::i;:::-;26330:17;::::0;::::1;:::i;:::-;26291:16;:57::i;:::-;26363:25;26383:4;;26363:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;26363:19:110;::::1;::::0;:25;-1:-1:-1;;26363:19:110::1;:25::i;:::-;26354:34;;26394:16;26424:6;26413:29;;;;;;;;;;;;:::i;:::-;26452:47;::::0;-1:-1:-1;;;26452:47:110;;::::1;::::0;::::1;160:25:125::0;;;26394:48:110;;-1:-1:-1;26511:4:110::1;::::0;-1:-1:-1;;;;;26468:11:110::1;26452:37;::::0;::::1;::::0;133:18:125;;26452:47:110::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;26452:64:110::1;;26448:221;;26603:59;26620:12;:10;:12::i;:::-;26634:6:::0;-1:-1:-1;;;;;;26603:16:110::1;:59::i;:::-;26285:388;8086:64:::0;8114:6;8122:12;8136:13;8086:27;:64::i;:::-;7805:350;;26139:534;;;;;;:::o;8219:153:46:-;5498:22;8356:8;-1:-1:-1;;;;;8356:8:46;;8219:153::o;3911:214:76:-;2568:13;:11;:13::i;:::-;4072:46:::1;4094:17;4113:4;4072:21;:46::i;:::-;3911:214:::0;;:::o;3466:126::-;3527:7;2839:20;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;;3466:126:76;:::o;17661:174:110:-;17770:6;7677:10;-1:-1:-1;;;;;7699:11:110;7677:34;;;7669:71;;;;-1:-1:-1;;;7669:71:110;;-1:-1:-1;;;;;11110:32:125;;;7669:71:110;;;11092:51:125;11065:18;;7669:71:110;10946:203:125;7669:71:110;-1:-1:-1;;;;17791:39:110;-1:-1:-1;7746:1:110::1;17661:174:::0;;;;;;:::o;17871:895::-;18073:6;7677:10;-1:-1:-1;;;;;7699:11:110;7677:34;;;7669:71;;;;-1:-1:-1;;;7669:71:110;;-1:-1:-1;;;;;11110:32:125;;;7669:71:110;;;11092:51:125;11065:18;;7669:71:110;10946:203:125;7669:71:110;;18239:33:::1;18275:26;18292:8;18275:16;:26::i;:::-;18239:62:::0;-1:-1:-1;18345:19:110::1;18322::::0;;-1:-1:-1;;;18322:19:110;::::1;;;:42;::::0;::::1;;;;;;:::i;:::-;;:92;;;-1:-1:-1::0;18391:23:110::1;18368:19:::0;;-1:-1:-1;;;18368:19:110;::::1;;;:46;::::0;::::1;;;;;;:::i;:::-;;18322:92;18448:19:::0;;18438:8;;-1:-1:-1;;;18448:19:110;;::::1;;;::::0;18307:167:::1;;;;-1:-1:-1::0;;;18307:167:110::1;;;;;;;;;:::i;:::-;-1:-1:-1::0;18480:19:110::1;::::0;-1:-1:-1;18536:11:110;18502:31:::1;18522:11:::0;18502:17;:31:::1;:::i;:::-;:45;;;;:::i;:::-;18588:21:::0;;18480:67;;-1:-1:-1;18553:155:110::1;::::0;18572:8;;18588:21:::1;;18617:54;18588:21:::0;18655:15:::1;18617:14;:54::i;:::-;18680:22;:11;:20;:22::i;:::-;18679:23;;;:::i;18553:155::-;-1:-1:-1::0;;;;18721:40:110;17871:895;-1:-1:-1;;;;;;;;;17871:895:110:o;10250:392:46:-;10325:7;-1:-1:-1;;10514:14:46;10531:22;10546:6;10531:14;:22::i;:::-;10514:39;;10563:48;10572:12;:10;:12::i;:::-;10586:8;10596:6;10604;10563:8;:48::i;4053:171:44:-;-1:-1:-1;;;;;4197:20:44;4118:7;4197:20;;;-1:-1:-1;;;;;;;;;;;4197:20:44;;;;;;;4053:171::o;35998:476:110:-;36099:24;36116:6;36099:16;:24::i;:::-;;36153:16;36172:60;36184:6;36192:8;36202:9;36214:17;:6;:15;:17::i;36172:60::-;36153:79;-1:-1:-1;36284:6:110;36153:79;36259:1;36246:14;;;36238:65;;;;-1:-1:-1;;;36238:65:110;;;;;25754:25:125;;;;25795:18;;;25788:34;25727:18;;36238:65:110;25582:246:125;36238:65:110;;;36310:77;36351:12;:10;:12::i;:::-;36373:4;36380:6;36325:7;:5;:7::i;:::-;-1:-1:-1;;;;;36310:40:110;;:77;;:40;:77::i;:::-;36408:6;-1:-1:-1;;;;;36398:71:110;;36416:8;36426:9;36437:6;36445:9;36456:12;:10;:12::i;:::-;36398:71;;;26116:10:125;26104:23;;;26086:42;;26164:23;;;;26159:2;26144:18;;26137:51;26204:18;;;26197:34;;;;26262:2;26247:18;;26240:34;-1:-1:-1;;;;;26311:32:125;26305:3;26290:19;;26283:61;26073:3;26058:19;36398:71:110;;;;;;;36093:381;35998:476;;;;:::o;29392:262::-;29525:19;29508:6;8218:33;8254:24;8271:6;8254:16;:24::i;:::-;8218:60;-1:-1:-1;8322:19:110;8299;;-1:-1:-1;;;8299:19:110;;;;:42;;;;;;;;:::i;:::-;;:92;;;-1:-1:-1;8368:23:110;8345:19;;-1:-1:-1;;;8345:19:110;;;;:46;;;;;;;;:::i;:::-;;8299:92;8423:19;;8415:6;;-1:-1:-1;;;8423:19:110;;;;;;8284:165;;;;-1:-1:-1;;;8284:165:110;;;;;;;;;:::i;:::-;;;8520:21;8544:10;:8;:10::i;:::-;8520:34;;29552:57:::1;29569:12;:10;:12::i;29552:57::-;29624:25;29644:4;;29624:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;29624:19:110;::::1;::::0;:25;-1:-1:-1;;29624:19:110::1;:25::i;:::-;29615:34;;8567:20:::0;8590:10;:8;:10::i;:::-;8567:33;;8626:13;8611:12;:28;8607:111;;;8682:28;8698:12;8682:13;:28;:::i;:::-;8656:55;;-1:-1:-1;;;8656:55:110;;;;;;160:25:125;;148:2;133:18;;14:177;8607:111:110;8212:510;;;29392:262;;;;;;:::o;10677:380:46:-;10749:7;-1:-1:-1;;10932:14:46;10949:19;10961:6;10949:11;:19::i;:::-;10932:36;;10978:48;10987:12;:10;:12::i;:::-;11001:8;11011:6;11019;10978:8;:48::i;2972:148:44:-;3104:9;3097:16;;3019:13;;-1:-1:-1;;;;;;;;;;;2082:20:44;3097:16;;;:::i;31018:254:110:-;31118:6;-1:-1:-1;;;;;;;;;;;31206:15:110;31118:6;31222:44;31238:6;31246:8;31256:9;31222:15;:44::i;:::-;31206:61;;;;;;;;;;;;31199:68;;;31018:254;;;;;:::o;11597:112::-;11642:8;-1:-1:-1;;;;;;;;;;;11665:27:110;:39;-1:-1:-1;;;;;11665:39:110;;11597:112;-1:-1:-1;11597:112:110:o;4419:178:44:-;4488:4;4504:13;4520:12;:10;:12::i;:::-;4504:28;;4542:27;4552:5;4559:2;4563:5;4542:9;:27::i;33732:317:110:-;-1:-1:-1;;33798:6:110;:27;33794:134;;33844:10;:8;:10::i;:::-;33835:19;;33794:134;;;33893:10;:8;:10::i;:::-;33883:6;:20;;33875:46;;;;-1:-1:-1;;;33875:46:110;;;;;;;;;;;;33933:31;-1:-1:-1;;;;;;;;;;;34000:13:110;;:44;;-1:-1:-1;;;34000:44:110;;;;;27977:25:125;;;34038:4:110;28018:18:125;;;28011:60;34000:13:110;;-1:-1:-1;;;;;;34000:13:110;;:21;;27950:18:125;;34000:44:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33788:261;33732:317;:::o;9709:143:46:-;9775:7;9801:44;9818:6;9826:18;9801:16;:44::i;11092:413::-;11183:7;11202:17;11222:18;11234:5;11222:11;:18::i;:::-;11202:38;;11263:9;11254:6;:18;11250:108;;;11322:5;11329:6;11337:9;11295:52;;-1:-1:-1;;;11295:52:46;;;;;;;;;;:::i;11250:108::-;11368:14;11385:23;11401:6;11385:15;:23::i;:::-;11368:40;;11418:56;11428:12;:10;:12::i;:::-;11442:8;11452:5;11459:6;11467;11418:9;:56::i;:::-;11492:6;11092:413;-1:-1:-1;;;;;11092:413:46:o;11540:405::-;11629:7;11648:17;11668:16;11678:5;11668:9;:16::i;:::-;11648:36;;11707:9;11698:6;:18;11694:106;;;11764:5;11771:6;11779:9;11739:50;;-1:-1:-1;;;11739:50:46;;;;;;;;;;:::i;11694:106::-;11810:14;11827:21;11841:6;11827:13;:21::i;:::-;11810:38;;11858:56;11868:12;:10;:12::i;:::-;11882:8;11892:5;11899:6;11907;11858:9;:56::i;13896:384:110:-;13993:33;14029:24;14046:6;14029:16;:24::i;:::-;14092:22;;14064:103;;;-1:-1:-1;;;;;;;;14092:22:110;;;;28311:58:125;;28400:2;28385:18;;28378:34;;;-1:-1:-1;;;14127:25:110;;;;;;28428:18:125;;;28421:67;28519:2;28504:18;;28497:34;;;14092:22:110;;-1:-1:-1;;;;;;14064:103:110;;;;;28298:3:125;28283:19;14064:103:110;;;;;;;14198:20;:9;:18;:20::i;:::-;14173:45;;-1:-1:-1;;;;;14173:45:110;;;;-1:-1:-1;;;14173:45:110;-1:-1:-1;;14173:45:110;;;;;;14252:23;:12;:21;:23::i;:::-;14224:51;;-1:-1:-1;;;;;14224:51:110;;;;-1:-1:-1;;;14224:51:110;-1:-1:-1;;;;14224:51:110;;;;;;-1:-1:-1;;;13896:384:110:o;12753:599::-;-1:-1:-1;;;;;12964:18:110;;12861:31;12964:18;;;:10;:18;;;;;12996:19;;-1:-1:-1;;;;;;;;;;;5762:29:110;12861:31;-1:-1:-1;;;12996:19:110;;;;:44;;;;;;;;:::i;:::-;;12988:76;;;;-1:-1:-1;;;12988:76:110;;;;;;;;;;;;13078:8;:13;;13090:1;13078:13;13070:41;;;;-1:-1:-1;;;13070:41:110;;;;;;;;;;;;13138:165;;;;;;;;;;;;;13167:19;13138:165;;;;;;;13231:20;:9;:18;:20::i;:::-;-1:-1:-1;;;;;13138:165:110;;;;;13273:23;:12;:21;:23::i;:::-;-1:-1:-1;;;;;13138:165:110;;;-1:-1:-1;;;;;13117:18:110;;;;;;:10;;;:18;;;;;;;;:186;;;;;;;;-1:-1:-1;;13117:186:110;;;;;;;;;;:18;;;;-1:-1:-1;;13117:186:110;;-1:-1:-1;;;13117:186:110;;;;;;;;;:::i;:::-;;;;;-1:-1:-1;13117:186:110;;;;;;;;;;;;-1:-1:-1;;;;;;13117:186:110;;;-1:-1:-1;;;;;;;;13117:186:110;;;;-1:-1:-1;;;;13117:186:110;;-1:-1:-1;;;13117:186:110;;;;;;;;;;;13314:33;-1:-1:-1;;;;;13314:33:110;;;;;;;13334:12;;13314:33;:::i;:::-;;;;;;;;12855:497;;12753:599;;;;:::o;22615:163::-;22738:34;;-1:-1:-1;;;;;;29291:2:125;29287:15;;;29283:53;22738:34:110;;;29271:66:125;-1:-1:-1;;;;;;29367:33:125;;29353:12;;;29346:55;22695:6:110;;22716:57;;29417:12:125;;22738:34:110;;;;;;;;;;;;3409:20:16;;;;;;;;3312:123;8567:148:46;8637:7;8663:45;8680:6;8688:19;8663:16;:45::i;31710:196:110:-;31759:7;;-1:-1:-1;;;;;;;;;;;31861:13:110;;:40;;-1:-1:-1;;;31861:40:110;;31895:4;31861:40;;;11092:51:125;31861:13:110;;-1:-1:-1;;;;;;31861:13:110;;:25;;11065:18:125;;31861:40:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31848:10;:8;:10::i;:::-;:53;;;;:::i;32156:155::-;32230:7;32252:54;32261:24;32279:5;32261:17;:24::i;:::-;32287:18;:16;:18::i;:::-;32252:8;:54::i;33170:292::-;-1:-1:-1;;33237:6:110;:27;33233:166;;33274:31;-1:-1:-1;;;;;;;;;;;33352:13:110;;:40;;-1:-1:-1;;;33352:40:110;;33386:4;33352:40;;;11092:51:125;33352:13:110;;-1:-1:-1;;;;;;33352:13:110;;:25;;11065:18:125;;33352:40:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33343:49;;33266:133;33233:166;33433:6;33412:17;33422:6;33412:9;:17::i;:::-;:27;33404:53;;;;-1:-1:-1;;;33404:53:110;;;;;;;;;;;;33170:292;:::o;24146:441::-;24302:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24302:31:110;24285:6;7811:33;7847:24;7864:6;7847:16;:24::i;:::-;7811:60;-1:-1:-1;7908:19:110;7885;;-1:-1:-1;;;7885:19:110;;;;:42;;;;;;;;:::i;:::-;7953:19;;7945:6;;-1:-1:-1;;;7953:19:110;;;;;;7885:42;7877:97;;;;-1:-1:-1;;;7877:97:110;;;;;;;;;:::i;:::-;;;8015:21;8039:34;8060:12;8039:20;:34::i;:::-;8015:58;;24341:78:::1;24358:12;:10;:12::i;:::-;24372:6:::0;-1:-1:-1;;;24341:16:110::1;:78::i;:::-;-1:-1:-1::0;;;;;24429:27:110;::::1;24451:4;24429:27;24425:92;;24458:59;24475:12;:10;:12::i;24458:59::-;24530:52;::::0;-1:-1:-1;;;24530:52:110;;-1:-1:-1;;;;;24530:29:110;::::1;::::0;::::1;::::0;:52:::1;::::0;24560:9;;;;24571:10;;24530:52:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24523:59;;8086:64:::0;8114:6;8122:12;8136:13;8086:27;:64::i;:::-;7805:350;;24146:441;;;;;;;:::o;16871:754::-;17011:6;7677:10;-1:-1:-1;;;;;7699:11:110;7677:34;;;7669:71;;;;-1:-1:-1;;;7669:71:110;;-1:-1:-1;;;;;11110:32:125;;;7669:71:110;;;11092:51:125;11065:18;;7669:71:110;10946:203:125;7669:71:110;;17177:33:::1;17213:26;17230:8;17213:16;:26::i;:::-;17177:62:::0;-1:-1:-1;17283:19:110::1;17260::::0;;-1:-1:-1;;;17260:19:110;::::1;;;:42;::::0;::::1;;;;;;:::i;:::-;;:92;;;-1:-1:-1::0;17329:23:110::1;17306:19:::0;;-1:-1:-1;;;17306:19:110;::::1;;;:46;::::0;::::1;;;;;;:::i;:::-;;17260:92;17386:19:::0;;17376:8;;-1:-1:-1;;;17386:19:110;;::::1;;;::::0;17245:167:::1;;;;-1:-1:-1::0;;;17245:167:110::1;;;;;;;;;:::i;:::-;-1:-1:-1::0;;17453:21:110;;17418:150:::1;::::0;17437:8;;17453:21:::1;;17482:54;17453:21:::0;17520:15:::1;17482:14;:54::i;:::-;17545:17;:6;:15;:17::i;17418:150::-;-1:-1:-1::0;;;;17581:39:110;16871:754;-1:-1:-1;;;;;;16871:754:110:o;31947:168::-;32019:7;32041:69;32050:22;32066:5;32050:15;:22::i;:::-;32074:35;32090:18;:16;:18::i;4630:195:44:-;-1:-1:-1;;;;;4789:20:44;;;4710:7;4789:20;;;:13;:20;;;;;;;;:29;;;;;;;;;;;;;4630:195::o;27866:965:110:-;27998:21;27981:6;7811:33;7847:24;7864:6;7847:16;:24::i;:::-;7811:60;-1:-1:-1;7908:19:110;7885;;-1:-1:-1;;;7885:19:110;;;;:42;;;;;;;;:::i;:::-;7953:19;;7945:6;;-1:-1:-1;;;7953:19:110;;;;;;7885:42;7877:97;;;;-1:-1:-1;;;7877:97:110;;;;;;;;;:::i;:::-;;;8015:21;8039:34;8060:12;8039:20;:34::i;:::-;8015:58;-1:-1:-1;28027:19:110::1;::::0;28097:4;-1:-1:-1;;;;;28085:24:110;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28076:33;;28120:9;28115:712;28131:15:::0;;::::1;28115:712;;;28161:15;28186:4;;28191:1;28186:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:12;::::0;28196:1:::1;::::0;28194::::1;::::0;28186:12:::1;:::i;:::-;28179:20;::::0;::::1;:::i;:::-;28161:38:::0;-1:-1:-1;28211:6:110;;;:34:::1;;-1:-1:-1::0;;;;;;;28221:24:110;;::::1;::::0;;::::1;;;28211:34;28207:211;;;28328:48;28345:12;:10;:12::i;:::-;28359:6;28367:8;28328:16;:48::i;:::-;28401:8;28386:23;;28207:211;28437:28;28457:4;;28462:1;28457:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;28437:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;28437:19:110;::::1;::::0;:28;-1:-1:-1;;28437:19:110::1;:28::i;:::-;28425:6;28432:1;28425:9;;;;;;;;:::i;:::-;;;;;;:40;;;;28478:5;28473:348;;28495:16;28525:6;28532:1;28525:9;;;;;;;;:::i;:::-;;;;;;;28514:32;;;;;;;;;;;;:::i;:::-;28560:47;::::0;-1:-1:-1;;;28560:47:110;;::::1;::::0;::::1;160:25:125::0;;;28495:51:110;;-1:-1:-1;28619:4:110::1;::::0;-1:-1:-1;;;;;28576:11:110::1;28560:37;::::0;::::1;::::0;133:18:125;;28560:47:110::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28560:64:110::1;;28556:257;;28719:59;28736:12;:10;:12::i;:::-;28750:6:::0;-1:-1:-1;;;;;;28719:16:110::1;:59::i;:::-;28798:4;28790:12;;28556:257;28485:336;28473:348;-1:-1:-1::0;28148:3:110::1;;28115:712;;;;28021:810;;8086:64:::0;8114:6;8122:12;8136:13;8086:27;:64::i;16672:163::-;16771:6;7677:10;-1:-1:-1;;;;;7699:11:110;7677:34;;;7669:71;;;;-1:-1:-1;;;7669:71:110;;-1:-1:-1;;;;;11110:32:125;;;7669:71:110;;;11092:51:125;11065:18;;7669:71:110;10946:203:125;7669:71:110;-1:-1:-1;;;;16792:38:110;16672:163;-1:-1:-1;;;;16672:163:110:o;30257:594::-;30397:21;30380:6;8218:33;8254:24;8271:6;8254:16;:24::i;:::-;8218:60;-1:-1:-1;8322:19:110;8299;;-1:-1:-1;;;8299:19:110;;;;:42;;;;;;;;:::i;:::-;;:92;;;-1:-1:-1;8368:23:110;8345:19;;-1:-1:-1;;;8345:19:110;;;;:46;;;;;;;;:::i;:::-;;8299:92;8423:19;;8415:6;;-1:-1:-1;;;8423:19:110;;;;;;8284:165;;;;-1:-1:-1;;;8284:165:110;;;;;;;;;:::i;:::-;;;8520:21;8544:10;:8;:10::i;:::-;8520:34;-1:-1:-1;30426:19:110::1;30472:4:::0;-1:-1:-1;;;;;30460:24:110;::::1;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30451:33;;30495:9;30490:357;30506:15:::0;;::::1;30490:357;;;30536:15;30561:4;;30566:1;30561:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:12;::::0;30571:1:::1;::::0;30569::::1;::::0;30561:12:::1;:::i;:::-;30554:20;::::0;::::1;:::i;:::-;30536:38:::0;-1:-1:-1;30586:6:110;;;:34:::1;;-1:-1:-1::0;;;;;;;30596:24:110;;::::1;::::0;;::::1;;;30586:34;30582:211;;;30703:48;30720:12;:10;:12::i;:::-;30734:6;30742:8;30703:16;:48::i;:::-;30776:8;30761:23;;30582:211;30812:28;30832:4;;30837:1;30832:7;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;30812:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;30812:19:110;::::1;::::0;:28;-1:-1:-1;;30812:19:110::1;:28::i;:::-;30800:6;30807:1;30800:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;:40;-1:-1:-1;30523:3:110::1;;30490:357;;;;30420:431;8567:20:::0;8590:10;:8;:10::i;14565:421::-;14760:21;14747:9;:34;;;;;;;;:::i;:::-;;14739:69;;;;-1:-1:-1;;;14739:69:110;;;;;;;;;;;;14814:33;14850:24;14867:6;14850:16;:24::i;:::-;14814:60;;14905:6;-1:-1:-1;;;;;14885:59:110;;14913:12;:19;;;;;;;;;;;;14934:9;14885:59;;;;;;;:::i;:::-;;;;;;;;14950:31;;14972:9;;14950:12;;-1:-1:-1;;14950:31:110;-1:-1:-1;;;14972:9:110;14950:31;;;;;;;;:::i;:::-;;;;;;14639:347;14565:421;;:::o;19496:118::-;19539:7;19576;:5;:7::i;:::-;19561:48;;-1:-1:-1;;;19561:48:110;;19603:4;19561:48;;;11092:51:125;-1:-1:-1;;;;;19561:33:110;;;;;;;11065:18:125;;19561:48:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19554:55;;19496:118;:::o;9071:205:75:-;9129:30;;3147:66;9186:27;8819:122;9491:318:110;6929:20:75;:18;:20::i;:::-;9636:14:110::1;9661:11;-1:-1:-1::0;;;;;9661:20:110::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9636:48;;9690:30;9712:6;9690:14;:30::i;:::-;9726:28;9739:5;9746:7;9726:12;:28::i;:::-;9760:44;9792:11;9760:31;:44::i;12406:213:46:-:0;12503:7;12529:83;12543:13;:11;:13::i;:::-;:17;;12559:1;12543:17;:::i;:::-;12578:23;14580:5;12578:2;:23;:::i;:::-;3999:14:44;;12562:39:46;;;;:::i;:::-;12529:6;;:83;12603:8;12529:13;:83::i;11804:294:110:-;-1:-1:-1;;;;;11992:18:110;;11869:33;11992:18;;;:10;:18;;;;;12024:19;;11992:18;;-1:-1:-1;;;;;;;;;;;5762:29:110;-1:-1:-1;;;12024:19:110;;;;:44;;;;;;;;:::i;:::-;;;12085:6;12016:77;;;;;-1:-1:-1;;;12016:77:110;;-1:-1:-1;;;;;11110:32:125;;;12016:77:110;;;11092:51:125;11065:18;;12016:77:110;10946:203:125;12016:77:110;;11904:194;11804:294;;;:::o;22782:349::-;22865:21;22944:10;:8;:10::i;:::-;22989:25;;22928:26;;-1:-1:-1;;;;22989:25:110;;-1:-1:-1;;;;;22989:25:110;22965:50;;22961:166;;;23043:25;;23025:61;;23035:50;;23072:13;;-1:-1:-1;;;23043:25:110;;-1:-1:-1;;;;;23043:25:110;23035:50;:::i;23025:61::-;;23110:10;:8;:10::i;22961:166::-;22782:349;;;:::o;19109:166::-;19210:7;19232:38;:36;:38::i;23756:386::-;23851:19;23873:34;23890:6;23898:8;23873:16;:34::i;:::-;23851:56;;23914:14;23969:4;-1:-1:-1;;;;;23934:57:110;;:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;23934:67:110;;24009:6;24031:4;24044:12;23934:128;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;23913:149:110;-1:-1:-1;24107:6:110;24115;24123:12;23913:149;24068:69;;;;-1:-1:-1;;;24068:69:110;;;;;;;;;;:::i;23135:617::-;23277:20;23300:10;:8;:10::i;:::-;23277:33;;23336:13;23321:12;:28;23317:431;;;23476:21;;23421:15;;23439:181;;23460:6;;23476:21;;23507:54;23476:21;23545:15;23507:14;:54::i;:::-;23571:41;23572:28;23588:12;23572:13;:28;:::i;:::-;23571:39;:41::i;23439:181::-;23663:22;;23421:199;;-1:-1:-1;23421:199:110;;-1:-1:-1;;;23663:22:110;;-1:-1:-1;;;;;23663:22:110;23636:51;;;;23628:113;;;;-1:-1:-1;;;23628:113:110;;;;;35458:25:125;;;;-1:-1:-1;;;;;35519:39:125;35499:18;;;35492:67;35431:18;;23628:113:110;35288:277:125;9923:128:44;10007:37;10016:5;10023:7;10032:5;10039:4;10007:8;:37::i;12069:213:46:-;12166:7;12192:83;12222:23;12166:7;12222:2;:23;:::i;:::-;3999:14:44;;12206:39:46;;;;:::i;:::-;12247:13;:11;:13::i;:::-;:17;;12263:1;12247:17;:::i;21522:292:110:-;21575:18;;-1:-1:-1;;;;;;;;;;;21698:13:110;;:40;;-1:-1:-1;;;21698:40:110;;21732:4;21698:40;;;11092:51:125;21698:13:110;;-1:-1:-1;21681:58:110;;21690:6;;-1:-1:-1;;;;;21698:13:110;;:25;;11065:18:125;;21698:40:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;21681:58::-;21745:13;;:64;;-1:-1:-1;;;21745:64:110;;;;;35772:25:125;;;21788:4:110;35813:18:125;;;35806:60;;;35882:18;;;35875:60;21668:71:110;;-1:-1:-1;;;;;;21745:13:110;;:22;;35745:18:125;;21745:64:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;10135:745::-;-1:-1:-1;;;;;10204:34:110;;10196:67;;;;-1:-1:-1;;;10196:67:110;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10604:13:110;;-1:-1:-1;;;;;10623:27:110;;;-1:-1:-1;;;;;;10623:27:110;;;;;10604:13;10660:31;;10656:90;;10708:7;:5;:7::i;:::-;10693:53;;-1:-1:-1;;;10693:53:110;;-1:-1:-1;;;;;36146:32:125;;;10693:53:110;;;36128:51:125;10744:1:110;36195:18:125;;;36188:34;10693:31:110;;;;;;;36101:18:125;;10693:53:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10656:90;10767:7;:5;:7::i;:::-;10752:72;;-1:-1:-1;;;10752:72:110;;-1:-1:-1;;;;;36146:32:125;;;10752:72:110;;;36128:51:125;-1:-1:-1;;36195:18:125;;;36188:34;10752:31:110;;;;;;;36101:18:125;;10752:72:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;10835:40:110;;;-1:-1:-1;;;;;36990:32:125;;;36972:51;;37059:32;;37054:2;37039:18;;37032:60;10835:40:110;;36945:18:125;10835:40:110;;;;;;;10190:690;;10135:745;:::o;34380:314:106:-;34436:6;-1:-1:-1;;;;;34557:5:106;:33;34553:105;;;34613:34;;-1:-1:-1;;;34613:34:106;;;;;160:25:125;;;133:18;;34613:34:106;14:177:125;34553:105:106;-1:-1:-1;34681:5:106;34380:314::o;21818:468:110:-;21943:19;-1:-1:-1;;;;;;;;;;;21943:19:110;22055:44;22071:6;22079:8;22089:9;22055:15;:44::i;:::-;22037:62;;22145:6;22120:1;:15;;:21;22136:4;22120:21;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;-1:-1:-1;22157:29:110;;22120:31;;-1:-1:-1;22179:6:110;;-1:-1:-1;22157:1:110;;:12;;:29;;22179:6;;-1:-1:-1;;;22157:29:110;;;;;:::i;:::-;;;-1:-1:-1;;;;;22157:29:110;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22268:12:110;;22197:84;;;37835:10:125;37823:23;;;37805:42;;37883:23;;37878:2;37863:18;;37856:51;37923:18;;;37916:34;;;37981:2;37966:18;;37959:34;;;-1:-1:-1;;;22268:12:110;;;22157:29;22268:12;38024:3:125;38009:19;;38002:51;-1:-1:-1;;;;;22197:84:110;;;;;37792:3:125;37777:19;22197:84:110;;;;;;;21964:322;;21818:468;;;;;;:::o;1219:204:82:-;1306:37;1320:5;1327:2;1331:5;1338:4;1306:13;:37::i;:::-;1301:116;;1366:40;;-1:-1:-1;;;1366:40:82;;-1:-1:-1;;;;;11110:32:125;;1366:40:82;;;11092:51:125;11065:18;;1366:40:82;10946:203:125;11669:476:44;11768:24;11795:25;11805:5;11812:7;11795:9;:25::i;:::-;11768:52;;-1:-1:-1;;11834:16:44;:36;11830:309;;;11909:5;11890:16;:24;11886:130;;;11968:7;11977:16;11995:5;11941:60;;-1:-1:-1;;;11941:60:44;;;;;;;;;;:::i;11886:130::-;12057:57;12066:5;12073:7;12101:5;12082:16;:24;12108:5;12057:8;:57::i;6527:300::-;-1:-1:-1;;;;;6610:18:44;;6606:86;;6651:30;;-1:-1:-1;;;6651:30:44;;6678:1;6651:30;;;11092:51:125;11065:18;;6651:30:44;10946:203:125;6606:86:44;-1:-1:-1;;;;;6705:16:44;;6701:86;;6744:32;;-1:-1:-1;;;6744:32:44;;6773:1;6744:32;;;11092:51:125;11065:18;;6744:32:44;10946:203:125;6701:86:44;6796:24;6804:4;6810:2;6814:5;6796:7;:24::i;2690:151:87:-;2765:12;2796:38;2818:6;2826:4;2832:1;2796:21;:38::i;4328:312:76:-;4408:4;-1:-1:-1;;;;;4417:6:76;4400:23;;;:120;;;4514:6;-1:-1:-1;;;;;4478:42:76;:32;:30;:32::i;:::-;-1:-1:-1;;;;;4478:42:76;;;4400:120;4383:251;;;4594:29;;-1:-1:-1;;;4594:29:76;;;;;;;;;;;4383:251;4328:312::o;5782:538::-;5899:17;-1:-1:-1;;;;;5881:50:76;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5881:52:76;;;;;;;;-1:-1:-1;;5881:52:76;;;;;;;;;;;;:::i;:::-;;;5877:437;;6243:60;;-1:-1:-1;;;6243:60:76;;-1:-1:-1;;;;;11110:32:125;;6243:60:76;;;11092:51:125;11065:18;;6243:60:76;10946:203:125;5877:437:76;-1:-1:-1;;;;;;;;;;;5975:40:76;;5971:120;;6042:34;;-1:-1:-1;;;6042:34:76;;;;;160:25:125;;;133:18;;6042:34:76;14:177:125;5971:120:76;6104:54;6134:17;6153:4;6104:29;:54::i;4757:213::-;4831:4;-1:-1:-1;;;;;4840:6:76;4823:23;;4819:145;;4924:29;;-1:-1:-1;;;4924:29:76;;;;;;;;;;;21052:222:110;21135:16;3885;21167:35;;;;21166:103;;21248:20;;;;:9;:20;:::i;:::-;21166:103;;;21206:32;21228:9;21206:21;:32::i;12683:841:46:-;13353:74;13387:7;:5;:7::i;:::-;13397:6;13413:4;13420:6;13353:26;:74::i;:::-;13437:23;13443:8;13453:6;13437:5;:23::i;:::-;13492:8;-1:-1:-1;;;;;13476:41:46;13484:6;-1:-1:-1;;;;;13476:41:46;;13502:6;13510;13476:41;;;;;;25754:25:125;;;25810:2;25795:18;;25788:34;25742:2;25727:18;;25582:246;13476:41:46;;;;;;;;12683:841;;;;:::o;1662:232:82:-;1767:47;1785:5;1792:4;1798:2;1802:5;1809:4;1767:17;:47::i;:::-;1762:126;;1837:40;;-1:-1:-1;;;1837:40:82;;-1:-1:-1;;;;;11110:32:125;;1837:40:82;;;11092:51:125;11065:18;;1837:40:82;10946:203:125;21278:240:110;15254:15:94;-1:-1:-1;;;;;;21475:16:110;;;;;3877:27:94;;;;3986:14;;;;;-1:-1:-1;;;3986:14:94;3977:24;15258:3;15254:15;;21441::110;;;;;-1:-1:-1;;;;;;15146:26:94;15245:25;;21278:240:110:o;32315:606::-;32471:15;32489:10;:8;:10::i;:::-;32471:28;;32519:6;32509:7;:16;32505:350;;;32613:31;-1:-1:-1;;;;;;;;;;;32712:13:110;;:40;;-1:-1:-1;;;32712:40:110;;32746:4;32712:40;;;11092:51:125;32712:13:110;;-1:-1:-1;;;;;;32712:13:110;;:25;;11065:18:125;;32712:40:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32691:16;32700:7;32691:6;:16;:::i;:::-;32690:62;;32682:88;;;;-1:-1:-1;;;32682:88:110;;;;;;;;;;;;32778:13;;-1:-1:-1;;;;;32778:13:110;:22;32801:16;32810:7;32801:6;:16;:::i;:::-;32778:70;;-1:-1:-1;;;;;;32778:70:110;;;;;;;;;;35772:25:125;;;;32827:4:110;35813:18:125;;;35806:60;;;35882:18;;;35875:60;35745:18;;32778:70:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32527:328;32505:350;32860:56;32876:6;32884:8;32894:5;32901:6;32909;32860:15;:56::i;:::-;32465:456;32315:606;;;;;:::o;11296:213:106:-;11352:6;-1:-1:-1;;;;;11374:24:106;;11370:103;;;11421:41;;-1:-1:-1;;;11421:41:106;;11452:2;11421:41;;;38944:36:125;38996:18;;;38989:34;;;38917:18;;11421:41:106;38763:266:125;9216:129:46;9281:7;9307:31;9321:16;9331:5;9321:9;:16::i;5633:111:105:-;5691:7;5328:5;;;5725;;;5327:36;5322:42;;5717:20;5087:294;9380:112:46;9443:7;9469:16;9479:5;9469:9;:16::i;7082:141:75:-;7149:17;:15;:17::i;:::-;7144:73;;7189:17;;-1:-1:-1;;;7189:17:75;;;;;;;;;;;6384:114:46;6929:20:75;:18;:20::i;:::-;6459:32:46::1;6484:6;6459:24;:32::i;2281:147:44:-:0;6929:20:75;:18;:20::i;:::-;2383:38:44::1;2406:5;2413:7;2383:22;:38::i;9864:267:110:-:0;6929:20:75;:18;:20::i;:::-;10022:11:110::1;-1:-1:-1::0;;;;;10022:20:110::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:71;::::0;-1:-1:-1;;;10022:71:110;;-1:-1:-1;;;;;10061:11:110::1;36146:32:125::0;;10022:71:110::1;::::0;::::1;36128:51:125::0;-1:-1:-1;;36195:18:125;;;36188:34;10022:30:110;;;::::1;::::0;::::1;::::0;36101:18:125;;10022:71:110::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10099:27;10114:11;10099:14;:27::i;11070:238:105:-:0;11171:7;11225:76;11241:26;11258:8;11241:16;:26::i;:::-;:59;;;;;11299:1;11284:11;11271:25;;;;;:::i;:::-;11281:1;11278;11271:25;:29;11241:59;34914:9:106;34907:17;;34795:145;11225:76:105;11197:25;11204:1;11207;11210:11;11197:6;:25::i;:::-;:104;;;;:::i;2350:471:42:-;2412:7;2456:8;3711:2;2547:37;;;;;;:71;;-1:-1:-1;1851:17:42;-1:-1:-1;;;;;2075:31:42;2607:10;2075:31;2588:30;2543:272;;;2685:47;:8;2694:36;;;2685:8;;:47;:::i;:::-;2677:56;;;:::i;:::-;2669:65;;2662:72;;;;2350:471;:::o;2543:272::-;987:10:48;2779:25:42;;;;2350:471;:::o;10900:487:44:-;-1:-1:-1;;;;;;;;;;;;;;;;11065:19:44;;11061:89;;11107:32;;-1:-1:-1;;;11107:32:44;;11136:1;11107:32;;;11092:51:125;11065:18;;11107:32:44;10946:203:125;11061:89:44;-1:-1:-1;;;;;11163:21:44;;11159:90;;11207:31;;-1:-1:-1;;;11207:31:44;;11235:1;11207:31;;;11092:51:125;11065:18;;11207:31:44;10946:203:125;11159:90:44;-1:-1:-1;;;;;11258:20:44;;;;;;;:13;;;:20;;;;;;;;:29;;;;;;;;;:37;;;11305:76;;;;11355:7;-1:-1:-1;;;;;11339:31:44;11348:5;-1:-1:-1;;;;;11339:31:44;;11364:5;11339:31;;;;160:25:125;;148:2;133:18;;14:177;11339:31:44;;;;;;;;11305:76;10998:389;10900:487;;;;:::o;8373:1244:82:-;8600:4;8594:11;-1:-1:-1;;;8467:12:82;8618:22;;;-1:-1:-1;;;;;8666:24:82;;8660:4;8653:38;8711:4;8704:19;;;8467:12;8787:4;8467:12;8775:4;8467:12;;8759:5;8752;8747:45;8736:56;;9004:1;8997:4;8991:11;8988:18;8979:7;8975:32;8965:606;;9136:6;9126:7;9119:15;9115:28;9112:165;;;9192:16;9186:4;9181:3;9166:43;9242:16;9237:3;9230:29;9112:165;9553:1;9545:5;9533:18;9530:25;9511:16;9504:24;9500:56;9491:7;9487:70;9476:81;;8965:606;9591:4;9584:17;-1:-1:-1;8373:1244:82;;-1:-1:-1;;;;8373:1244:82:o;7142:1170:44:-;-1:-1:-1;;;;;;;;;;;;;;;;7284:18:44;;7280:546;;7438:5;7420:1;:14;;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;7280:546:44;;-1:-1:-1;7280:546:44;;-1:-1:-1;;;;;7496:17:44;;7474:19;7496:17;;;;;;;;;;;7531:19;;;7527:115;;;7602:4;7608:11;7621:5;7577:50;;-1:-1:-1;;;7577:50:44;;;;;;;;;;:::i;7527:115::-;-1:-1:-1;;;;;7762:17:44;;:11;:17;;;;;;;;;;7782:19;;;;7762:39;;7280:546;-1:-1:-1;;;;;7840:16:44;;7836:429;;8003:14;;;:23;;;;;;;7836:429;;;-1:-1:-1;;;;;8216:15:44;;:11;:15;;;;;;;;;;:24;;;;;;7836:429;8295:2;-1:-1:-1;;;;;8280:25:44;8289:4;-1:-1:-1;;;;;8280:25:44;;8299:5;8280:25;;;;160::125;;148:2;133:18;;14:177;3165:696:87;3264:12;3316:5;3292:21;:29;3288:123;;;3344:56;;-1:-1:-1;;;3344:56:87;;3371:21;3344:56;;;25754:25:125;25795:18;;;25788:34;;;25727:18;;3344:56:87;25582:246:125;3288:123:87;3420:12;3435:46;3461:6;3469:5;3476:4;3435:25;:46::i;:::-;3420:61;;3495:7;:72;;;;-1:-1:-1;3539:1:87;4583:16:91;3507:33:87;:59;;;;3565:1;3544:6;-1:-1:-1;;;;;3544:18:87;;:22;3507:59;3491:364;;;3590:25;:23;:25::i;:::-;3583:32;;;;;3491:364;3636:7;3632:223;;;3666:24;;-1:-1:-1;;;3666:24:87;;-1:-1:-1;;;;;11110:32:125;;3666:24:87;;;11092:51:125;11065:18;;3666:24:87;10946:203:125;3632:223:87;4583:16:91;3711:33:87;3707:148;;3760:27;:25;:27::i;:::-;3707:148;;;3825:19;;-1:-1:-1;;;3825:19:87;;;;;;;;;;;3707:148;3278:583;3165:696;;;;;:::o;1441:138:72:-;1493:7;-1:-1:-1;;;;;;;;;;;1519:47:72;1899:163:97;2264:344:72;2355:37;2374:17;2355:18;:37::i;:::-;2407:36;;-1:-1:-1;;;;;2407:36:72;;;;;;;;2458:11;;:15;2454:148;;2489:53;2518:17;2537:4;2489:28;:53::i;2454:148::-;2573:18;:16;:18::i;20508:540:110:-;20634:4;20581:16;;4005:5;20669:24;3947:10;20669:9;:24;:::i;:::-;20668:44;;;;:::i;:::-;20644:68;;20773:200;20798:6;:18;;20813:3;20798:18;;;20807:3;20798:18;20780:37;;:13;:37;20773:200;;20844:6;:18;;20859:3;20844:18;;;20853:3;20844:18;20827:35;;;;;;:::i;:::-;;-1:-1:-1;20870:11:110;;;:::i;:::-;;-1:-1:-1;20898:13:110;20910:1;20870:11;20898:13;:::i;:::-;:18;;;:68;;;;-1:-1:-1;20921:15:110;20933:3;20921:9;:15;:::i;:::-;:20;;;;;:44;;-1:-1:-1;20945:15:110;20957:3;20945:9;:15;:::i;:::-;:20;;;20921:44;20889:77;;20773:200;;;21010:32;21020:13;21035:6;21010:9;:32::i;:::-;20992:15;:9;21004:3;20992:15;:::i;:::-;:50;;;;;;:::i;8655:208:44:-;-1:-1:-1;;;;;8725:21:44;;8721:91;;8769:32;;-1:-1:-1;;;8769:32:44;;8798:1;8769:32;;;11092:51:125;11065:18;;8769:32:44;10946:203:125;8721:91:44;8821:35;8837:1;8841:7;8850:5;8821:7;:35::i;10165:1393:82:-;10460:4;10454:11;-1:-1:-1;;;10323:12:82;10478:22;;;-1:-1:-1;;;;;10526:26:82;;;10520:4;10513:40;10579:24;;10573:4;10566:38;10624:4;10617:19;;;10323:12;10700:4;10323:12;10688:4;10323:12;;10672:5;10665;10660:45;10649:56;;10917:1;10910:4;10904:11;10901:18;10892:7;10888:32;10878:606;;11049:6;11039:7;11032:15;11028:28;11025:165;;;11105:16;11099:4;11094:3;11079:43;11155:16;11150:3;11143:29;11025:165;11466:1;11458:5;11446:18;11443:25;11424:16;11417:24;11413:56;11404:7;11400:70;11389:81;;10878:606;11504:4;11497:17;-1:-1:-1;11540:1:82;11534:4;11527:15;10165:1393;;-1:-1:-1;;;;;10165:1393:82:o;13591:925:46:-;13778:5;-1:-1:-1;;;;;13768:15:46;:6;-1:-1:-1;;;;;13768:15:46;;13764:84;;13799:38;13815:5;13822:6;13830;13799:15;:38::i;:::-;14357:20;14363:5;14370:6;14357:5;:20::i;:::-;14387:57;14417:7;:5;:7::i;:::-;14427:8;14437:6;14387:22;:57::i;:::-;14487:5;-1:-1:-1;;;;;14460:49:46;14477:8;-1:-1:-1;;;;;14460:49:46;14469:6;-1:-1:-1;;;;;14460:49:46;;14494:6;14502;14460:49;;;;;;25754:25:125;;;25810:2;25795:18;;25788:34;25742:2;25727:18;;25582:246;14460:49:46;;;;;;;;13591:925;;;;;:::o;8485:120:75:-;8535:4;8558:26;:24;:26::i;:::-;:40;-1:-1:-1;;;8558:40:75;;;;;;-1:-1:-1;8485:120:75:o;6504:304:46:-;6929:20:75;:18;:20::i;:::-;5498:22:46;6589:24:::1;::::0;6684:28:::1;6705:6:::0;6684:20:::1;:28::i;:::-;6646:66;;;;6746:7;:28;;6772:2;6746:28;;;6756:13;6746:28;6722:52:::0;;-1:-1:-1;;;;;;6784:17:46;-1:-1:-1;;;6722:52:46::1;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;;;6784:17:46;;-1:-1:-1;;;;;6784:17:46;;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;6504:304:46:o;2434:216:44:-;6929:20:75;:18;:20::i;:::-;-1:-1:-1;;;;;;;;;;;2599:7:44;:15:::1;2609:5:::0;2599:7;:15:::1;:::i;:::-;-1:-1:-1::0;2624:9:44::1;::::0;::::1;:19;2636:7:::0;2624:9;:19:::1;:::i;32036:122:105:-:0;32104:4;32145:1;32133:8;32127:15;;;;;;;;:::i;:::-;:19;;;;:::i;:::-;:24;;32150:1;32127:24;32120:31;;32036:122;;;:::o;7258:3683::-;7340:14;7391:12;7405:11;7420:12;7427:1;7430;7420:6;:12::i;:::-;7390:42;;;;7514:4;7522:1;7514:9;7510:365;;7849:11;7843:3;:17;;;;;:::i;:::-;;7836:24;;;;;;7510:365;8000:4;7985:11;:19;7981:142;;8024:84;5328:5;8044:16;;5327:36;940:4:95;5322:42:105;8024:11;:84::i;:::-;8375:17;8526:11;8523:1;8520;8513:25;8918:12;8948:15;;;8933:31;;9083:22;;;;;9816:1;9797;:15;;9796:21;;10049;;;10045:25;;10034:36;10119:21;;;10115:25;;10104:36;10191:21;;;10187:25;;10176:36;10262:21;;;10258:25;;10247:36;10335:21;;;10331:25;;10320:36;10409:21;;;10405:25;;;10394:36;9325:12;;;;9321:23;;;9346:1;9317:31;8638:18;;;8628:29;;;9432:11;;;;8681:19;;;;9176:14;;;;9425:18;;;;10884:13;;-1:-1:-1;;7258:3683:105;;;;;:::o;791:248:91:-;881:12;1018:4;1012;1005;999:11;992:4;986;982:15;975:5;967:6;960:5;955:68;944:79;791:248;-1:-1:-1;;;;791:248:91:o;4698:334::-;4829:4;4823:11;4862:16;4847:32;;4932:16;4926:4;4919;4907:17;;4892:57;4997:16;4991:4;4987:27;4979:6;4975:40;4969:4;4962:54;4698:334;:::o;5099:223::-;5203:4;5197:11;5247:16;5241:4;5236:3;5221:43;5289:16;5284:3;5277:29;1671:281:72;1748:17;-1:-1:-1;;;;;1748:29:72;;1781:1;1748:34;1744:119;;1805:47;;-1:-1:-1;;;1805:47:72;;-1:-1:-1;;;;;11110:32:125;;1805:47:72;;;11092:51:125;11065:18;;1805:47:72;10946:203:125;1744:119:72;-1:-1:-1;;;;;;;;;;;1872:73:72;;-1:-1:-1;;;;;;1872:73:72;-1:-1:-1;;;;;1872:73:72;;;;;;;;;;1671:281::o;4691:549:87:-;4774:12;4798;4813:47;4847:6;4855:4;4813:33;:47::i;:::-;4798:62;;4874:7;:72;;;;-1:-1:-1;4918:1:87;4583:16:91;4886:33:87;:59;;;;4944:1;4923:6;-1:-1:-1;;;;;4923:18:87;;:22;4886:59;4870:364;;;4969:25;:23;:25::i;:::-;4962:32;;;;;4870:364;5015:7;5011:223;;;5045:24;;-1:-1:-1;;;5045:24:87;;-1:-1:-1;;;;;11110:32:125;;5045:24:87;;;11092:51:125;11065:18;;5045:24:87;10946:203:125;5011:223:87;4583:16:91;5090:33:87;5086:148;;5139:27;:25;:27::i;:::-;4788:452;4691:549;;;;:::o;6113:122:72:-;6163:9;:13;6159:70;;6199:19;;-1:-1:-1;;;6199:19:72;;;;;;;;;;;19618:886:110;19692:7;19833:2;19821:9;:14;19817:28;;;-1:-1:-1;19844:1:110;19837:8;;19817:28;19855:6;19851:123;;;19887:2;19875:9;:14;19871:28;;;-1:-1:-1;19898:1:110;19891:8;;19871:28;19907:11;;;;:::i;:::-;;;;19851:123;;;19955:2;19943:9;:14;19939:28;;;-1:-1:-1;19966:1:110;19959:8;;19939:28;20005:2;19993:9;:14;19992:507;;20044:3;20032:9;:15;20031:468;;20088:3;20076:9;:15;20075:424;;20136:3;20124:9;:15;20123:376;;20188:3;20176:9;:15;20175:324;;20244:3;20232:9;:15;20231:268;;20304:3;20292:9;:15;20291:208;;20368:3;20356:9;:15;20355:144;;20437:3;20425:9;:15;20424:75;;20497:2;19992:507;;20424:75;20468:2;19992:507;;20355:144;20397:2;19992:507;;20291:208;20331:1;19992:507;;20231:268;20269:1;19992:507;;20175:324;20211:1;19992:507;;20123:376;20157:1;19992:507;;20075:424;20107:1;19992:507;;20031:468;20061:1;19992:507;;;20019:1;19992:507;19979:520;;;19618:886;-1:-1:-1;;;19618:886:110:o;9181:206:44:-;-1:-1:-1;;;;;9251:21:44;;9247:89;;9295:30;;-1:-1:-1;;;9295:30:44;;9322:1;9295:30;;;11092:51:125;11065:18;;9295:30:44;10946:203:125;9247:89:44;9345:35;9353:7;9370:1;9374:5;9345:7;:35::i;6951:607:46:-;7018:7;7027:19;7058:18;7079:29;1025:4:92;1019:11;;895:151;7079:29:46;7242:43;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7242:43:46;-1:-1:-1;;;7242:43:46;;;7058:50;;-1:-1:-1;7119:12:46;;;;7163:132;;7221:6;;7163:36;:132::i;:::-;7118:177;;;;;7305:32;7333:3;1311:4:92;1304:17;1198:139;7305:32:46;7368:7;:46;;;;-1:-1:-1;7412:2:46;4583:16:91;7379:35:46;;7368:46;:94;;;;-1:-1:-1;7447:15:46;7418:44;;;7368:94;7367:184;;7542:5;7549:1;7367:184;;;7483:4;7503:16;7367:184;7348:203;;;;;;;6951:607;;;:::o;1027:550:105:-;1088:12;;-1:-1:-1;;1471:1:105;1468;1461:20;1501:9;;;;1549:11;;;1535:12;;;;1531:30;;;;;1027:550;-1:-1:-1;;1027:550:105:o;1776:194:95:-;1881:10;1875:4;1868:24;1918:4;1912;1905:18;1949:4;1943;1936:18;3383:242:91;3466:12;3604:4;3598;3591;3585:11;3578:4;3572;3568:15;3560:6;3553:5;3540:69;3529:80;3383:242;-1:-1:-1;;;3383:242:91:o;2893:374::-;3006:12;3020:15;3037;3176:4;3170;3163;3157:11;3150:4;3144;3140:15;3132:6;3125:5;3114:67;3103:78;;3211:4;3205:11;3194:22;;3246:4;3240:11;3229:22;;2893:374;;;;;:::o;196:173:125:-;263:20;;-1:-1:-1;;;;;;312:32:125;;302:43;;292:71;;359:1;356;349:12;374:184;432:6;485:2;473:9;464:7;460:23;456:32;453:52;;;501:1;498;491:12;453:52;524:28;542:9;524:28;:::i;755:289::-;797:3;835:5;829:12;862:6;857:3;850:19;918:6;911:4;904:5;900:16;893:4;888:3;884:14;878:47;970:1;963:4;954:6;949:3;945:16;941:27;934:38;1033:4;1026:2;1022:7;1017:2;1009:6;1005:15;1001:29;996:3;992:39;988:50;981:57;;;755:289;;;;:::o;1049:220::-;1198:2;1187:9;1180:21;1161:4;1218:45;1259:2;1248:9;1244:18;1236:6;1218:45;:::i;1274:127::-;1335:10;1330:3;1326:20;1323:1;1316:31;1366:4;1363:1;1356:15;1390:4;1387:1;1380:15;1406:247;1473:2;1467:9;1515:3;1503:16;;-1:-1:-1;;;;;1534:34:125;;1570:22;;;1531:62;1528:88;;;1596:18;;:::i;:::-;1632:2;1625:22;1406:247;:::o;1658:716::-;1723:5;1755:1;-1:-1:-1;;;;;1771:6:125;1768:30;1765:56;;;1801:18;;:::i;:::-;-1:-1:-1;1956:2:125;1950:9;-1:-1:-1;;1869:2:125;1848:15;;1844:29;;2014:2;2002:15;1998:29;1986:42;;2079:22;;;-1:-1:-1;;;;;2043:34:125;;2040:62;2037:88;;;2105:18;;:::i;:::-;2141:2;2134:22;2189;;;2174:6;-1:-1:-1;2174:6:125;2226:16;;;2223:25;-1:-1:-1;2220:45:125;;;2261:1;2258;2251:12;2220:45;2311:6;2306:3;2299:4;2291:6;2287:17;2274:44;2366:1;2359:4;2350:6;2342;2338:19;2334:30;2327:41;;1658:716;;;;;:::o;2379:222::-;2422:5;2475:3;2468:4;2460:6;2456:17;2452:27;2442:55;;2493:1;2490;2483:12;2442:55;2515:80;2591:3;2582:6;2569:20;2562:4;2554:6;2550:17;2515:80;:::i;2606:141::-;-1:-1:-1;;;;;2691:31:125;;2681:42;;2671:70;;2737:1;2734;2727:12;2752:701;2867:6;2875;2883;2936:2;2924:9;2915:7;2911:23;2907:32;2904:52;;;2952:1;2949;2942:12;2904:52;2992:9;2979:23;-1:-1:-1;;;;;3017:6:125;3014:30;3011:50;;;3057:1;3054;3047:12;3011:50;3080;3122:7;3113:6;3102:9;3098:22;3080:50;:::i;:::-;3070:60;;;3183:2;3172:9;3168:18;3155:32;-1:-1:-1;;;;;3202:8:125;3199:32;3196:52;;;3244:1;3241;3234:12;3196:52;3267;3311:7;3300:8;3289:9;3285:24;3267:52;:::i;:::-;3257:62;;;3369:2;3358:9;3354:18;3341:32;3382:41;3417:5;3382:41;:::i;:::-;3442:5;3432:15;;;2752:701;;;;;:::o;3458:226::-;3517:6;3570:2;3558:9;3549:7;3545:23;3541:32;3538:52;;;3586:1;3583;3576:12;3538:52;-1:-1:-1;3631:23:125;;3458:226;-1:-1:-1;3458:226:125:o;3689:374::-;3759:8;3769:6;3823:3;3816:4;3808:6;3804:17;3800:27;3790:55;;3841:1;3838;3831:12;3790:55;-1:-1:-1;3864:20:125;;-1:-1:-1;;;;;3896:30:125;;3893:50;;;3939:1;3936;3929:12;3893:50;3976:4;3968:6;3964:17;3952:29;;4036:3;4029:4;4019:6;4016:1;4012:14;4004:6;4000:27;3996:38;3993:47;3990:67;;;4053:1;4050;4043:12;3990:67;3689:374;;;;;:::o;4068:751::-;4183:6;4191;4199;4207;4260:2;4248:9;4239:7;4235:23;4231:32;4228:52;;;4276:1;4273;4266:12;4228:52;4315:9;4302:23;4334:41;4369:5;4334:41;:::i;:::-;4394:5;-1:-1:-1;4450:2:125;4435:18;;4422:32;-1:-1:-1;;;;;4466:30:125;;4463:50;;;4509:1;4506;4499:12;4463:50;4548:77;4617:7;4608:6;4597:9;4593:22;4548:77;:::i;:::-;4644:8;;-1:-1:-1;4522:103:125;-1:-1:-1;;4731:2:125;4716:18;;4703:32;4744:43;4703:32;4744:43;:::i;:::-;4068:751;;;;-1:-1:-1;4068:751:125;;-1:-1:-1;;4068:751:125:o;4824:121::-;4909:10;4902:5;4898:22;4891:5;4888:33;4878:61;;4935:1;4932;4925:12;4950:396;5017:6;5025;5078:2;5066:9;5057:7;5053:23;5049:32;5046:52;;;5094:1;5091;5084:12;5046:52;5133:9;5120:23;5152:41;5187:5;5152:41;:::i;:::-;5212:5;-1:-1:-1;5269:2:125;5254:18;;5241:32;5282;5241;5282;:::i;:::-;5333:7;5323:17;;;4950:396;;;;;:::o;5351:257::-;5410:6;5463:2;5451:9;5442:7;5438:23;5434:32;5431:52;;;5479:1;5476;5469:12;5431:52;5518:9;5505:23;5537:41;5572:5;5537:41;:::i;5613:127::-;5674:10;5669:3;5665:20;5662:1;5655:31;5705:4;5702:1;5695:15;5729:4;5726:1;5719:15;5745:240;5829:1;5822:5;5819:12;5809:143;;5874:10;5869:3;5865:20;5862:1;5855:31;5909:4;5906:1;5899:15;5937:4;5934:1;5927:15;5809:143;5961:18;;5745:240::o;5990:215::-;6140:2;6125:18;;6152:47;6129:9;6181:6;6152:47;:::i;6210:377::-;6278:6;6286;6339:2;6327:9;6318:7;6314:23;6310:32;6307:52;;;6355:1;6352;6345:12;6307:52;6394:9;6381:23;6413:41;6448:5;6413:41;:::i;:::-;6473:5;6551:2;6536:18;;;;6523:32;;-1:-1:-1;;;6210:377:125:o;6592:347::-;6643:8;6653:6;6707:3;6700:4;6692:6;6688:17;6684:27;6674:55;;6725:1;6722;6715:12;6674:55;-1:-1:-1;6748:20:125;;-1:-1:-1;;;;;6780:30:125;;6777:50;;;6823:1;6820;6813:12;6777:50;6860:4;6852:6;6848:17;6836:29;;6912:3;6905:4;6896:6;6888;6884:19;6880:30;6877:39;6874:59;;;6929:1;6926;6919:12;6944:826;7041:6;7049;7057;7065;7073;7126:3;7114:9;7105:7;7101:23;7097:33;7094:53;;;7143:1;7140;7133:12;7094:53;7182:9;7169:23;7201:41;7236:5;7201:41;:::i;:::-;7261:5;-1:-1:-1;7318:2:125;7303:18;;7290:32;7331:43;7290:32;7331:43;:::i;:::-;7393:7;-1:-1:-1;7473:2:125;7458:18;;7445:32;;-1:-1:-1;7554:2:125;7539:18;;7526:32;-1:-1:-1;;;;;7570:30:125;;7567:50;;;7613:1;7610;7603:12;7567:50;7652:58;7702:7;7693:6;7682:9;7678:22;7652:58;:::i;:::-;6944:826;;;;-1:-1:-1;6944:826:125;;-1:-1:-1;7729:8:125;;7626:84;6944:826;-1:-1:-1;;;6944:826:125:o;7982:118::-;8068:5;8061:13;8054:21;8047:5;8044:32;8034:60;;8090:1;8087;8080:12;8105:410;8188:6;8196;8249:2;8237:9;8228:7;8224:23;8220:32;8217:52;;;8265:1;8262;8255:12;8217:52;8304:9;8291:23;8323:41;8358:5;8323:41;:::i;:::-;8383:5;-1:-1:-1;8440:2:125;8425:18;;8412:32;8453:30;8412:32;8453:30;:::i;8520:808::-;8613:6;8621;8629;8637;8645;8698:3;8686:9;8677:7;8673:23;8669:33;8666:53;;;8715:1;8712;8705:12;8666:53;8754:9;8741:23;8773:41;8808:5;8773:41;:::i;:::-;8833:5;-1:-1:-1;8890:2:125;8875:18;;8862:32;8903;8862;8903;:::i;:::-;8954:7;-1:-1:-1;9013:2:125;8998:18;;8985:32;9026;8985;9026;:::i;:::-;9077:7;-1:-1:-1;9157:2:125;9142:18;;9129:32;;-1:-1:-1;9239:3:125;9224:19;;9211:33;9253:43;9211:33;9253:43;:::i;:::-;9315:7;9305:17;;;8520:808;;;;;;;;:::o;9333:528::-;9410:6;9418;9426;9479:2;9467:9;9458:7;9454:23;9450:32;9447:52;;;9495:1;9492;9485:12;9447:52;9534:9;9521:23;9553:41;9588:5;9553:41;:::i;:::-;9613:5;-1:-1:-1;9670:2:125;9655:18;;9642:32;9683:43;9642:32;9683:43;:::i;:::-;9333:528;;9745:7;;-1:-1:-1;;;9825:2:125;9810:18;;;;9797:32;;9333:528::o;10055:554::-;10134:6;10142;10150;10203:2;10191:9;10182:7;10178:23;10174:32;10171:52;;;10219:1;10216;10209:12;10171:52;10258:9;10245:23;10277:41;10312:5;10277:41;:::i;:::-;10337:5;-1:-1:-1;10393:2:125;10378:18;;10365:32;-1:-1:-1;;;;;10409:30:125;;10406:50;;;10452:1;10449;10442:12;10406:50;10491:58;10541:7;10532:6;10521:9;10517:22;10491:58;:::i;:::-;10055:554;;10568:8;;-1:-1:-1;10465:84:125;;-1:-1:-1;;;;10055:554:125:o;11580:595::-;11657:6;11665;11718:2;11706:9;11697:7;11693:23;11689:32;11686:52;;;11734:1;11731;11724:12;11686:52;11773:9;11760:23;11792:41;11827:5;11792:41;:::i;:::-;11852:5;-1:-1:-1;11908:2:125;11893:18;;11880:32;-1:-1:-1;;;;;11924:30:125;;11921:50;;;11967:1;11964;11957:12;11921:50;11990:22;;12043:4;12035:13;;12031:27;-1:-1:-1;12021:55:125;;12072:1;12069;12062:12;12021:55;12095:74;12161:7;12156:2;12143:16;12138:2;12134;12130:11;12095:74;:::i;:::-;12085:84;;;11580:595;;;;;:::o;12362:649::-;12448:6;12456;12464;12472;12525:3;12513:9;12504:7;12500:23;12496:33;12493:53;;;12542:1;12539;12532:12;12493:53;12581:9;12568:23;12600:41;12635:5;12600:41;:::i;:::-;12660:5;-1:-1:-1;12717:2:125;12702:18;;12689:32;12730:43;12689:32;12730:43;:::i;:::-;12362:649;;12792:7;;-1:-1:-1;;;;12872:2:125;12857:18;;12844:32;;12975:2;12960:18;12947:32;;12362:649::o;13016:891::-;13120:6;13128;13136;13144;13152;13160;13213:3;13201:9;13192:7;13188:23;13184:33;13181:53;;;13230:1;13227;13220:12;13181:53;13269:9;13256:23;13288:41;13323:5;13288:41;:::i;:::-;13348:5;-1:-1:-1;13405:2:125;13390:18;;13377:32;13418:43;13377:32;13418:43;:::i;:::-;13016:891;;13480:7;;-1:-1:-1;;;;13560:2:125;13545:18;;13532:32;;13663:2;13648:18;;13635:32;;13766:3;13751:19;;13738:33;;-1:-1:-1;13870:3:125;13855:19;;;13842:33;;-1:-1:-1;13016:891:125:o;13912:377::-;13980:6;13988;14041:2;14029:9;14020:7;14016:23;14012:32;14009:52;;;14057:1;14054;14047:12;14009:52;14102:23;;;-1:-1:-1;14201:2:125;14186:18;;14173:32;14214:43;14173:32;14214:43;:::i;14474:656::-;14558:6;14566;14574;14582;14635:3;14623:9;14614:7;14610:23;14606:33;14603:53;;;14652:1;14649;14642:12;14603:53;14691:9;14678:23;14710:41;14745:5;14710:41;:::i;:::-;14770:5;-1:-1:-1;14827:2:125;14812:18;;14799:32;14840;14799;14840;:::i;:::-;14891:7;-1:-1:-1;14950:2:125;14935:18;;14922:32;14963;14922;14963;:::i;:::-;14474:656;;;;-1:-1:-1;15014:7:125;;15094:2;15079:18;15066:32;;-1:-1:-1;;14474:656:125:o;15135:535::-;15210:6;15218;15226;15279:2;15267:9;15258:7;15254:23;15250:32;15247:52;;;15295:1;15292;15285:12;15247:52;15334:9;15321:23;15353:41;15388:5;15353:41;:::i;:::-;15413:5;-1:-1:-1;15470:2:125;15455:18;;15442:32;15483;15442;15483;:::i;:::-;15534:7;-1:-1:-1;15593:2:125;15578:18;;15565:32;15606;15565;15606;:::i;15901:528::-;15978:6;15986;15994;16047:2;16035:9;16026:7;16022:23;16018:32;16015:52;;;16063:1;16060;16053:12;16015:52;16108:23;;;-1:-1:-1;16207:2:125;16192:18;;16179:32;16220:43;16179:32;16220:43;:::i;:::-;16282:7;-1:-1:-1;16341:2:125;16326:18;;16313:32;16354:43;16313:32;16354:43;:::i;16434:497::-;16511:6;16519;16527;16580:2;16568:9;16559:7;16555:23;16551:32;16548:52;;;16596:1;16593;16586:12;16548:52;16635:9;16622:23;16654:41;16689:5;16654:41;:::i;:::-;16714:5;16792:2;16777:18;;16764:32;;-1:-1:-1;16895:2:125;16880:18;;;16867:32;;16434:497;-1:-1:-1;;;16434:497:125:o;16936:637::-;17021:6;17029;17037;17045;17098:3;17086:9;17077:7;17073:23;17069:33;17066:53;;;17115:1;17112;17105:12;17066:53;17154:9;17141:23;17173:41;17208:5;17173:41;:::i;:::-;17233:5;-1:-1:-1;17290:2:125;17275:18;;17262:32;17303;17262;17303;:::i;17578:329::-;17645:6;17653;17706:2;17694:9;17685:7;17681:23;17677:32;17674:52;;;17722:1;17719;17712:12;17674:52;17761:9;17748:23;17780:41;17815:5;17780:41;:::i;:::-;17840:5;-1:-1:-1;17864:37:125;17897:2;17882:18;;17864:37;:::i;:::-;17854:47;;17578:329;;;;;:::o;17912:705::-;18000:6;18008;18016;18024;18077:2;18065:9;18056:7;18052:23;18048:32;18045:52;;;18093:1;18090;18083:12;18045:52;18132:9;18119:23;18151:41;18186:5;18151:41;:::i;:::-;18211:5;-1:-1:-1;18267:2:125;18252:18;;18239:32;-1:-1:-1;;;;;18283:30:125;;18280:50;;;18326:1;18323;18316:12;18280:50;18365:58;18415:7;18406:6;18395:9;18391:22;18365:58;:::i;18723:1058::-;18871:4;18913:3;18902:9;18898:19;18890:27;;18950:6;18944:13;18933:9;18926:32;19014:4;19006:6;19002:17;18996:24;18989:4;18978:9;18974:20;18967:54;19077:4;19069:6;19065:17;19059:24;19052:4;19041:9;19037:20;19030:54;19140:4;19132:6;19128:17;19122:24;19115:4;19104:9;19100:20;19093:54;19203:4;19195:6;19191:17;19185:24;19178:4;19167:9;19163:20;19156:54;19266:4;19258:6;19254:17;19248:24;19241:4;19230:9;19226:20;19219:54;19329:4;19321:6;19317:17;19311:24;19304:4;19293:9;19289:20;19282:54;19392:4;19384:6;19380:17;19374:24;19367:4;19356:9;19352:20;19345:54;19457:6;19449;19445:19;19439:26;19430:6;19419:9;19415:22;19408:58;19524:6;19516;19512:19;19506:26;19497:6;19486:9;19482:22;19475:58;19580:6;19572;19568:19;19562:26;19597:55;19644:6;19633:9;19629:22;19615:12;18698;18687:24;18675:37;;18622:96;19597:55;;19701:6;19693;19689:19;19683:26;19718:57;19767:6;19756:9;19752:22;19736:14;18698:12;18687:24;18675:37;;18622:96;19786:408;19854:6;19862;19915:2;19903:9;19894:7;19890:23;19886:32;19883:52;;;19931:1;19928;19921:12;19883:52;19970:9;19957:23;19989:41;20024:5;19989:41;:::i;:::-;20049:5;-1:-1:-1;20106:2:125;20091:18;;20078:32;20119:43;20078:32;20119:43;:::i;20199:600::-;20305:6;20313;20321;20374:2;20362:9;20353:7;20349:23;20345:32;20342:52;;;20390:1;20387;20380:12;20342:52;20429:9;20416:23;20448:41;20483:5;20448:41;:::i;:::-;20508:5;-1:-1:-1;20564:2:125;20549:18;;20536:32;-1:-1:-1;;;;;20580:30:125;;20577:50;;;20623:1;20620;20613:12;20577:50;20662:77;20731:7;20722:6;20711:9;20707:22;20662:77;:::i;20804:780::-;20964:4;21012:2;21001:9;20997:18;21042:2;21031:9;21024:21;21065:6;21100;21094:13;21131:6;21123;21116:22;21169:2;21158:9;21154:18;21147:25;;21231:2;21221:6;21218:1;21214:14;21203:9;21199:30;21195:39;21181:53;;21269:2;21261:6;21257:15;21290:1;21300:255;21314:6;21311:1;21308:13;21300:255;;;21407:2;21403:7;21391:9;21383:6;21379:22;21375:36;21370:3;21363:49;21435:40;21468:6;21459;21453:13;21435:40;:::i;:::-;21425:50;-1:-1:-1;21510:2:125;21533:12;;;;21498:15;;;;;21336:1;21329:9;21300:255;;;-1:-1:-1;21572:6:125;;20804:780;-1:-1:-1;;;;;;20804:780:125:o;21589:425::-;21675:6;21683;21736:2;21724:9;21715:7;21711:23;21707:32;21704:52;;;21752:1;21749;21742:12;21704:52;21791:9;21778:23;21810:41;21845:5;21810:41;:::i;:::-;21870:5;-1:-1:-1;21927:2:125;21912:18;;21899:32;21962:1;21950:14;;21940:42;;21978:1;21975;21968:12;22019:230;22089:6;22142:2;22130:9;22121:7;22117:23;22113:32;22110:52;;;22158:1;22155;22148:12;22110:52;-1:-1:-1;22203:16:125;;22019:230;-1:-1:-1;22019:230:125:o;22254:127::-;22315:10;22310:3;22306:20;22303:1;22296:31;22346:4;22343:1;22336:15;22370:4;22367:1;22360:15;22386:125;22451:9;;;22472:10;;;22469:36;;;22485:18;;:::i;22516:136::-;22551:3;-1:-1:-1;;;22572:22:125;;22569:48;;22597:18;;:::i;:::-;-1:-1:-1;22637:1:125;22633:13;;22516:136::o;22657:128::-;22724:9;;;22745:11;;;22742:37;;;22759:18;;:::i;22790:380::-;22869:1;22865:12;;;;22912;;;22933:61;;22987:4;22979:6;22975:17;22965:27;;22933:61;23040:2;23032:6;23029:14;23009:18;23006:38;23003:161;;23086:10;23081:3;23077:20;23074:1;23067:31;23121:4;23118:1;23111:15;23149:4;23146:1;23139:15;23003:161;;22790:380;;;:::o;23389:312::-;-1:-1:-1;;;;;23597:32:125;;23579:51;;23567:2;23552:18;;23639:56;23691:2;23676:18;;23668:6;23639:56;:::i;23706:266::-;23794:6;23789:3;23782:19;23846:6;23839:5;23832:4;23827:3;23823:14;23810:43;-1:-1:-1;23898:1:125;23873:16;;;23891:4;23869:27;;;23862:38;;;;23954:2;23933:15;;;-1:-1:-1;;23929:29:125;23920:39;;;23916:50;;23706:266::o;23977:1317::-;24225:2;24237:21;;;24210:18;;24293:22;;;-1:-1:-1;24346:2:125;24395:1;24391:14;;;24376:30;;24372:39;;;24331:18;;24434:6;-1:-1:-1;;;24486:14:125;24482:27;;;24478:41;24528:680;24542:6;24539:1;24536:13;24528:680;;;24607:22;;;-1:-1:-1;;24603:36:125;24591:49;;24679:20;;24722:27;;;24712:55;;24763:1;24760;24753:12;24712:55;24793:31;;24909:4;24898:16;;;24851:19;-1:-1:-1;;;;;24930:30:125;;24927:50;;;24973:1;24970;24963:12;24927:50;25026:6;25010:14;25006:27;24997:7;24993:41;24990:61;;;25047:1;25044;25037:12;24990:61;25074:50;25117:6;25109;25100:7;25074:50;:::i;:::-;25064:60;;;;25159:4;25151:6;25147:17;25137:27;;25193:4;25188:3;25184:14;25177:21;;24564:1;24561;24557:9;24552:14;;24528:680;;;-1:-1:-1;;;;;;;;10903:31:125;;25282:4;25267:20;;10891:44;-1:-1:-1;25225:6:125;-1:-1:-1;25240:48:125;10837:104;26355:148;26443:4;26422:12;;;26436;;;26418:31;;26461:13;;26458:39;;;26477:18;;:::i;26508:331::-;26613:9;26624;26666:8;26654:10;26651:24;26648:44;;;26688:1;26685;26678:12;26648:44;26717:6;26707:8;26704:20;26701:40;;;26737:1;26734;26727:12;26701:40;-1:-1:-1;;26763:23:125;;;26808:25;;;;;-1:-1:-1;26508:331:125:o;26844:338::-;26964:19;;-1:-1:-1;;;;;;27001:29:125;;;27050:1;27042:10;;27039:137;;;-1:-1:-1;;;;;;27111:1:125;27107:11;;;;27104:1;27100:19;27096:46;;;27088:55;27084:82;;;;26844:338;-1:-1:-1;;26844:338:125:o;27187:261::-;27257:6;27310:2;27298:9;27289:7;27285:23;27281:32;27278:52;;;27326:1;27323;27316:12;27278:52;27358:9;27352:16;27377:41;27412:5;27377:41;:::i;27453:345::-;-1:-1:-1;;;;;27673:32:125;;;;27655:51;;27737:2;27722:18;;27715:34;;;;27780:2;27765:18;;27758:34;27643:2;27628:18;;27453:345::o;28542:569::-;28697:4;28739:3;28728:9;28724:19;28716:27;;28775:6;28769:13;28824:10;28813:9;28809:26;28798:9;28791:45;28845:79;28920:2;28909:9;28905:18;28898:4;28886:9;28882:2;28878:18;28874:29;28845:79;:::i;:::-;-1:-1:-1;;;;;28974:9:125;28970:2;28966:18;28962:51;28955:4;28944:9;28940:20;28933:81;-1:-1:-1;;;;;29065:9:125;29060:3;29056:19;29052:52;29045:4;29034:9;29030:20;29023:82;;28542:569;;;;:::o;29440:341::-;29625:2;29614:9;29607:21;29588:4;29645:61;29702:2;29691:9;29687:18;29679:6;29671;29645:61;:::i;:::-;29637:69;;29771:1;29767;29762:3;29758:11;29754:19;29746:6;29742:32;29737:2;29726:9;29722:18;29715:60;29440:341;;;;;;:::o;29786:169::-;29864:13;;29917:12;29906:24;;29896:35;;29886:63;;29945:1;29942;29935:12;29960:1541;30058:6;30118:3;30106:9;30097:7;30093:23;30089:33;30134:2;30131:22;;;30149:1;30146;30139:12;30131:22;-1:-1:-1;30191:17:125;;:::i;:::-;30253:16;;30278:22;;30366:2;30351:18;;;30345:25;30386:14;;;30379:31;30476:2;30461:18;;;30455:25;30496:14;;;30489:31;30586:2;30571:18;;;30565:25;30606:14;;;30599:31;30696:3;30681:19;;;30675:26;30717:15;;;30710:32;30808:3;30793:19;;;30787:26;30829:15;;;30822:32;30920:3;30905:19;;;30899:26;30941:15;;;30934:32;31032:3;31017:19;;;31011:26;31053:15;;;31046:32;31144:3;31129:19;;;31123:26;31165:15;;;31158:32;31258:3;31243:19;;;31237:26;31279:15;;;31272:33;31338:49;31382:3;31367:19;;31338:49;:::i;:::-;31332:3;31325:5;31321:15;31314:74;31421:49;31465:3;31454:9;31450:19;31421:49;:::i;:::-;31415:3;31404:15;;31397:74;31408:5;29960:1541;-1:-1:-1;;;29960:1541:125:o;31506:127::-;31567:10;31562:3;31558:20;31555:1;31548:31;31598:4;31595:1;31588:15;31622:4;31619:1;31612:15;31638:521;31715:4;31721:6;31781:11;31768:25;31875:2;31871:7;31860:8;31844:14;31840:29;31836:43;31816:18;31812:68;31802:96;;31894:1;31891;31884:12;31802:96;31921:33;;31973:20;;;-1:-1:-1;;;;;;32005:30:125;;32002:50;;;32048:1;32045;32038:12;32002:50;32081:4;32069:17;;-1:-1:-1;32112:14:125;32108:27;;;32098:38;;32095:58;;;32149:1;32146;32139:12;32164:324;32358:2;32343:18;;32370:47;32347:9;32399:6;32370:47;:::i;:::-;32426:56;32478:2;32467:9;32463:18;32455:6;32426:56;:::i;32783:375::-;32871:1;32889:5;32903:249;32924:1;32914:8;32911:15;32903:249;;;32974:4;32969:3;32965:14;32959:4;32956:24;32953:50;;;32983:18;;:::i;:::-;33033:1;33023:8;33019:16;33016:49;;;33047:16;;;;33016:49;33130:1;33126:16;;;;;33086:15;;32903:249;;;32783:375;;;;;;:::o;33163:902::-;33212:5;33242:8;33232:80;;-1:-1:-1;33283:1:125;33297:5;;33232:80;33331:4;33321:76;;-1:-1:-1;33368:1:125;33382:5;;33321:76;33413:4;33431:1;33426:59;;;;33499:1;33494:174;;;;33406:262;;33426:59;33456:1;33447:10;;33470:5;;;33494:174;33531:3;33521:8;33518:17;33515:43;;;33538:18;;:::i;:::-;-1:-1:-1;;33594:1:125;33580:16;;33653:5;;33406:262;;33752:2;33742:8;33739:16;33733:3;33727:4;33724:13;33720:36;33714:2;33704:8;33701:16;33696:2;33690:4;33687:12;33683:35;33680:77;33677:203;;;-1:-1:-1;33789:19:125;;;33865:5;;33677:203;33912:42;-1:-1:-1;;33937:8:125;33931:4;33912:42;:::i;:::-;33990:6;33986:1;33982:6;33978:19;33969:7;33966:32;33963:58;;;34001:18;;:::i;:::-;34039:20;;33163:902;-1:-1:-1;;;33163:902:125:o;34070:140::-;34128:5;34157:47;34198:4;34188:8;34184:19;34178:4;34157:47;:::i;34505:396::-;-1:-1:-1;;;;;34723:32:125;;;34705:51;;34792:32;;;;34787:2;34772:18;;34765:60;-1:-1:-1;;;;;;34861:33:125;;;34856:2;34841:18;;34834:61;34693:2;34678:18;;34505:396::o;34906:377::-;34981:6;34989;35042:2;35030:9;35021:7;35017:23;35013:32;35010:52;;;35058:1;35055;35048:12;35010:52;35090:9;35084:16;35109:28;35131:5;35109:28;:::i;:::-;35206:2;35191:18;;35185:25;35156:5;;-1:-1:-1;35219:32:125;35185:25;35219:32;:::i;36233:245::-;36300:6;36353:2;36341:9;36332:7;36328:23;36324:32;36321:52;;;36369:1;36366;36359:12;36321:52;36401:9;36395:16;36420:28;36442:5;36420:28;:::i;37103:216::-;37167:9;;;37195:11;;;37142:3;37225:9;;37253:10;;37249:19;;37278:10;;37270:19;;37246:44;37243:70;;;37293:18;;:::i;:::-;37243:70;;37103:216;;;;:::o;37324:228::-;37421:2;37391:17;;;37410;;;;37387:41;37494:26;37443:36;;-1:-1:-1;;37481:41:125;;37440:83;37437:109;;;37526:18;;:::i;38253:127::-;38314:10;38309:3;38305:20;38302:1;38295:31;38345:4;38342:1;38335:15;38369:4;38366:1;38359:15;38385:120;38425:1;38451;38441:35;;38456:18;;:::i;:::-;-1:-1:-1;38490:9:125;;38385:120::o;39034:374::-;39155:19;;-1:-1:-1;;;;;;39192:40:125;;;39252:2;39244:11;;39241:161;;;-1:-1:-1;;;;;;39314:2:125;39310:12;;;;39307:1;39303:20;39299:58;;;39291:67;39287:105;;;;39034:374;-1:-1:-1;;39034:374:125:o;39413:188::-;39451:3;39495:10;39488:5;39484:22;39530:10;39521:7;39518:23;39515:49;;39544:18;;:::i;:::-;39593:1;39580:15;;39413:188;-1:-1:-1;;39413:188:125:o;39606:170::-;39637:1;39671:10;39668:1;39664:18;39701:3;39691:37;;39708:18;;:::i;:::-;39766:3;39753:10;39750:1;39746:18;39742:28;39737:33;;;39606:170;;;;:::o;39781:244::-;39892:10;39865:18;;;39885;;;39861:43;39924:28;;;;39971:24;;;39961:58;;39999:18;;:::i;40156:518::-;40258:2;40253:3;40250:11;40247:421;;;40294:5;40291:1;40284:16;40338:4;40335:1;40325:18;40408:2;40396:10;40392:19;40389:1;40385:27;40379:4;40375:38;40444:4;40432:10;40429:20;40426:47;;;-1:-1:-1;40467:4:125;40426:47;40522:2;40517:3;40513:12;40510:1;40506:20;40500:4;40496:31;40486:41;;40577:81;40595:2;40588:5;40585:13;40577:81;;;40654:1;40640:16;;40621:1;40610:13;40577:81;;40850:1299;40976:3;40970:10;-1:-1:-1;;;;;40995:6:125;40992:30;40989:56;;;41025:18;;:::i;:::-;41054:97;41144:6;41104:38;41136:4;41130:11;41104:38;:::i;:::-;41098:4;41054:97;:::i;:::-;41200:4;41231:2;41220:14;;41248:1;41243:649;;;;41936:1;41953:6;41950:89;;;-1:-1:-1;42005:19:125;;;41999:26;41950:89;-1:-1:-1;;40807:1:125;40803:11;;;40799:24;40795:29;40785:40;40831:1;40827:11;;;40782:57;42052:81;;41213:930;;41243:649;40103:1;40096:14;;;40140:4;40127:18;;-1:-1:-1;;41279:20:125;;;41397:222;41411:7;41408:1;41405:14;41397:222;;;41493:19;;;41487:26;41472:42;;41600:4;41585:20;;;;41553:1;41541:14;;;;41427:12;41397:222;;;41401:3;41647:6;41638:7;41635:19;41632:201;;;41708:19;;;41702:26;-1:-1:-1;;41791:1:125;41787:14;;;41803:3;41783:24;41779:37;41775:42;41760:58;41745:74;;41632:201;-1:-1:-1;;;;41879:1:125;41863:14;;;41859:22;41846:36;;-1:-1:-1;40850:1299:125:o;42154:157::-;42184:1;42218:4;42215:1;42211:12;42242:3;42232:37;;42249:18;;:::i;:::-;42301:3;42294:4;42291:1;42287:12;42283:22;42278:27;;;42154:157;;;;:::o;42316:136::-;42355:3;42383:5;42373:39;;42392:18;;:::i;:::-;-1:-1:-1;;;42428:18:125;;42316:136::o"},"methodIdentifiers":{"OWN_POLICY_SELECTOR()":"a9ed1487","SLOTSIZE_CALENDAR_MONTH()":"3edeb257","UPGRADE_INTERFACE_VERSION()":"ad3cb1cc","addTarget(address,uint32,uint256,uint256)":"bfdb20da","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","asset()":"38d52e0f","balanceOf(address)":"70a08231","cashOutPayouts(address,uint32,uint32,uint256,address)":"225c531e","cashWithdrawable()":"cc671a18","convertToAssets(uint256)":"07a2d13a","convertToShares(uint256)":"c6e6f592","currentDebt()":"759076e5","decimals()":"313ce567","deposit(uint256,address)":"6e553f65","depositIntoYieldVault(uint256)":"ac860f74","forwardNewPoliciesV3(address,bytes[],address)":"07c2e878","forwardNewPolicy(address,bytes)":"33bded3c","forwardNewPolicyBatch(address,bytes[])":"e77659fd","forwardNewPolicyV3(address,bytes,address)":"d52f99ce","forwardResolvePolicy(address,bytes)":"86b44083","forwardResolvePolicyBatch(address,bytes[])":"ee07abbb","getDebtForPeriod(address,uint32,uint32)":"a3ac9390","getTargetStatus(address)":"091ea8a6","initialize(string,string,address)":"077f224a","isTrustedForwarder(address)":"572b6c05","makeFakeSelector(address,bytes4)":"c0c51217","maxDeposit(address)":"402d267d","maxMint(address)":"c63d75b6","maxRedeem(address)":"d905777e","maxWithdraw(address)":"ce96cb77","mint(uint256,address)":"94bf804d","name()":"06fdde03","onERC721Received(address,address,uint256,bytes)":"150b7a02","onPayoutReceived(address,address,uint256,uint256)":"d6281d3e","onPolicyCancelled(address,address,uint256,uint256,uint256,uint256)":"62eb345e","onPolicyExpired(address,address,uint256)":"e8e617b7","onPolicyReplaced(address,address,uint256,uint256)":"5ee0c7dd","policyPool()":"4d15eb03","previewDeposit(uint256)":"ef8b30f7","previewMint(uint256)":"b3d7f6b9","previewRedeem(uint256)":"4cdad506","previewWithdraw(uint256)":"0a28a477","proxiableUUID()":"52d1902d","redeem(uint256,address,address)":"ba087652","repayDebt(address,uint32,uint32,uint256)":"82dbbd71","setTargetLimits(address,uint256,uint256)":"bdb5371d","setTargetSlotSize(address,uint32)":"08742d90","setTargetStatus(address,uint8)":"f7a39333","setYieldVault(address,bool)":"194448e5","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","totalAssets()":"01e1d114","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd","trustedForwarder()":"7da0a877","upgradeToAndCall(address,bytes)":"4f1ef286","withdraw(uint256,address,address)":"b460af94","withdrawFromYieldVault(uint256)":"d336078c","yieldVault()":"a7f8a5e2"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"trustedForwarder_\",\"type\":\"address\"},{\"internalType\":\"contract IPolicyPool\",\"name\":\"policyPool_\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balanceReduction\",\"type\":\"uint256\"}],\"name\":\"BalanceDecreasedOnResolve\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"CannotDeactivateTarget\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"CannotDeinvestYieldVault\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"debtAfter\",\"type\":\"int256\"}],\"name\":\"CashOutExceedsLimit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"int256\",\"name\":\"currentDebt\",\"type\":\"int256\"},{\"internalType\":\"uint96\",\"name\":\"debtLimit\",\"type\":\"uint96\"}],\"name\":\"DebtLimitExceeded\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"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\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxDeposit\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxMint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxRedeem\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"max\",\"type\":\"uint256\"}],\"name\":\"ERC4626ExceededMaxWithdraw\",\"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\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidPolicyPool\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidSlotSize\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotEnoughCash\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"OnlyPolicyPool\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"int256\",\"name\":\"debtAfter\",\"type\":\"int256\"}],\"name\":\"RepaymentExceedsLimit\",\"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\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"SafeERC20FailedOperation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"TargetAlreadyExists\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"status\",\"type\":\"uint8\"}],\"name\":\"TargetNotActive\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"TargetNotFound\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"requiredSelector\",\"type\":\"bytes4\"}],\"name\":\"UnauthorizedForward\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"YieldVaultIsRequired\",\"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\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"debtAfterChange\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"}],\"name\":\"CashOutPayout\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"value\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"debtAfterChange\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"totalDebtAfterChange\",\"type\":\"int256\"}],\"name\":\"DebtChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Deposit\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"int256\",\"name\":\"debtAfterChange\",\"type\":\"int256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"payer\",\"type\":\"address\"}],\"name\":\"RepayDebt\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"status\",\"type\":\"uint8\"},{\"internalType\":\"uint96\",\"name\":\"debtLimit\",\"type\":\"uint96\"},{\"internalType\":\"uint96\",\"name\":\"minLiquidity\",\"type\":\"uint96\"}],\"indexed\":false,\"internalType\":\"struct CashFlowLender.TargetConfig\",\"name\":\"config\",\"type\":\"tuple\"}],\"name\":\"TargetAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldDebtLimit\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newDebtLimit\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"oldMinLiquidity\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newMinLiquidity\",\"type\":\"uint256\"}],\"name\":\"TargetLimitsChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"oldSlotSize\",\"type\":\"uint32\"},{\"indexed\":false,\"internalType\":\"uint32\",\"name\":\"newSlotSize\",\"type\":\"uint32\"}],\"name\":\"TargetSlotSizeChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"oldStatus\",\"type\":\"uint8\"},{\"indexed\":false,\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"newStatus\",\"type\":\"uint8\"}],\"name\":\"TargetStatusChanged\",\"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\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Withdraw\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"contract IERC4626\",\"name\":\"oldVault\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"contract IERC4626\",\"name\":\"newVault\",\"type\":\"address\"}],\"name\":\"YieldVaultChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"OWN_POLICY_SELECTOR\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"SLOTSIZE_CALENDAR_MONTH\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"debtLimit\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minLiquidity\",\"type\":\"uint256\"}],\"name\":\"addTarget\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"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\":[],\"name\":\"asset\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"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\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"}],\"name\":\"cashOutPayouts\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cashWithdrawable\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"convertToAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"convertToShares\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"currentDebt\",\"outputs\":[{\"internalType\":\"int256\",\"name\":\"\",\"type\":\"int256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"deposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"depositIntoYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes[]\",\"name\":\"inputData\",\"type\":\"bytes[]\"},{\"internalType\":\"address\",\"name\":\"onBehalfOf\",\"type\":\"address\"}],\"name\":\"forwardNewPoliciesV3\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"forwardNewPolicy\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"result\",\"type\":\"bytes\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"forwardNewPolicyBatch\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"result\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"},{\"internalType\":\"address\",\"name\":\"onBehalfOf\",\"type\":\"address\"}],\"name\":\"forwardNewPolicyV3\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"forwardResolvePolicy\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"result\",\"type\":\"bytes\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes[]\",\"name\":\"data\",\"type\":\"bytes[]\"}],\"name\":\"forwardResolvePolicyBatch\",\"outputs\":[{\"internalType\":\"bytes[]\",\"name\":\"result\",\"type\":\"bytes[]\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"}],\"name\":\"getDebtForPeriod\",\"outputs\":[{\"internalType\":\"int256\",\"name\":\"\",\"type\":\"int256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"getTargetStatus\",\"outputs\":[{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"contract IERC4626\",\"name\":\"yieldVault_\",\"type\":\"address\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"forwarder\",\"type\":\"address\"}],\"name\":\"isTrustedForwarder\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"bytes4\",\"name\":\"selector\",\"type\":\"bytes4\"}],\"name\":\"makeFakeSelector\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"maxMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"maxWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"mint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"onPayoutReceived\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremiumRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCocRefund\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCocRefund\",\"type\":\"uint256\"}],\"name\":\"onPolicyCancelled\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"onPolicyExpired\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"onPolicyReplaced\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"policyPool\",\"outputs\":[{\"internalType\":\"contract IPolicyPool\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewDeposit\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewMint\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewWithdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"redeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"slotSize\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"slotIndex\",\"type\":\"uint32\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"repayDebt\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"debtLimit\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"minLiquidity\",\"type\":\"uint256\"}],\"name\":\"setTargetLimits\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"newSlotSize\",\"type\":\"uint32\"}],\"name\":\"setTargetSlotSize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"},{\"internalType\":\"enum CashFlowLender.TargetStatus\",\"name\":\"newStatus\",\"type\":\"uint8\"}],\"name\":\"setTargetStatus\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"yieldVault_\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"force\",\"type\":\"bool\"}],\"name\":\"setYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalAssets\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"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\"},{\"inputs\":[],\"name\":\"trustedForwarder\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"withdraw\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawFromYieldVault\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"yieldVault\",\"outputs\":[{\"internalType\":\"contract IERC4626\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Ensuro\",\"custom:security-contact\":\"security@ensuro.co\",\"details\":\"Implements the ERC-4626 standard tracking how much liquidity was provided by each LP.      The assets managed by the vault are a mix of liquid USDC + the $._totalDebt tracked by the CFL.      The debt is tracked as a global number, but also for each target and period (month for example). If the debt      is negative, it means Ensuro owes to the customer.      The funds can also be sent to a $._yieldVault to generate yields on the idle funds.      The contract forwards the calls to the targets (Ensuro risk modules), but it has two variants for doing that      a. forwardNewPolicy (and the batch variant): this method tracks the balance reduction caused by paying the         premiums, and in base of that number increases the debt.      b. forwardResolvePolicy (and the batch variant): this method just forwards the call (after doing access         validations). The debt will be reduced when the policies are resolved and the PolicyPool calls         `onPayoutReceived(...)`      The contract is a UUPSUpgradeable contract but MUST NOT be used with a plain ERC1967 proxy, but instead with      an `AccessManagedProxy` that executes the access control. The contract DOESN'T IMPLEMENT ACCESS CONTROL      validations on the critical methods. It's assumed it will be deployed behind an AccessManagedProxy with      the proper access control setup.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"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.\"}}],\"ERC4626ExceededMaxDeposit(address,uint256,uint256)\":[{\"details\":\"Attempted to deposit more assets than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxMint(address,uint256,uint256)\":[{\"details\":\"Attempted to mint more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxRedeem(address,uint256,uint256)\":[{\"details\":\"Attempted to redeem more shares than the max amount for `receiver`.\"}],\"ERC4626ExceededMaxWithdraw(address,uint256,uint256)\":[{\"details\":\"Attempted to withdraw more assets than the max amount for `receiver`.\"}],\"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.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"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.\"}],\"SafeERC20FailedOperation(address)\":[{\"details\":\"An operation with an ERC-20 token failed.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"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.\"},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"addTarget(address,uint32,uint256,uint256)\":{\"details\":\"Adds a new target that can be used later to forward policies and track the debt.\",\"params\":{\"debtLimit\":\"Limit of the debt in a given period for the target.\",\"minLiquidity\":\"Minimum liquidity tried to achieve before forwardNewPolicy. If cash (see `_balance()`) is                     lower than this amount, it will try to deinvest the funds to leave _balance() = minLiquidity Emits a {TargetAdded} event\",\"slotSize\":\"Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\",\"target\":\"Address of the target contract. It should be an Ensuro's RiskModule\"}},\"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\":\"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.\"},\"asset()\":{\"details\":\"Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing. - MUST be an ERC-20 token contract. - MUST NOT revert.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"cashOutPayouts(address,uint32,uint32,uint256,address)\":{\"details\":\"Extracts money from the CFL that's owed to the customer, adjusting the debt (from negative to less negative)      in a given slot      Requires the debt of the slot <= -amount      Requires the CFL has enough funds (liquid + invested in the $._yieldVault)      emits {CashOutPayout}\",\"params\":{\"amount\":\"Amount to cash out\",\"destination\":\"Address that will receive the funds\",\"slotIndex\":\"Current slot time selected\",\"slotSize\":\"Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"convertToAssets(uint256)\":{\"details\":\"Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"convertToShares(uint256)\":{\"details\":\"Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal scenario where all the conditions are met. - MUST NOT be inclusive of any fees that are charged against assets in the Vault. - MUST NOT show any variations depending on the caller. - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. - MUST NOT revert. NOTE: This calculation MAY NOT reflect the \\u201cper-user\\u201d price-per-share, and instead should reflect the \\u201caverage-user\\u2019s\\u201d price-per-share, meaning what the average user should expect to see when exchanging to and from.\"},\"decimals()\":{\"details\":\"Decimals are computed by adding the decimal offset on top of the underlying asset's decimals. This \\\"original\\\" value is cached during construction of the vault contract. If this read operation fails (e.g., the asset has not been created yet), a default of 18 is used to represent the underlying asset's decimals. See {IERC20Metadata-decimals}.\"},\"deposit(uint256,address)\":{\"details\":\"Deposit `assets` underlying tokens and send the corresponding number of vault shares (`shares`) to `receiver`. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   deposit execution, and are accounted for during deposit. - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"depositIntoYieldVault(uint256)\":{\"details\":\"Moves money that's liquid in the contract to the yield vault, to generate yields      Requires _balance() >= amount\",\"params\":{\"amount\":\"Amount to transfer to the `$._yieldVault`. If equal type(uint256).max, transfers `_balance()`\"}},\"forwardNewPolicy(address,bytes)\":{\"details\":\"Forwards a call to the target contract, previously checking the target is active and tracking the increased      debt (in the current time slot).      When the `_balance()` is lower than `targetConfig.minLiquidity` it deinvests, but it doesn't fail if can't      deinvest all the required funds. If the required premiums are higher than the available balance, then it      will fail anyway.      If after the operation the debt is higher than targetConfig.debtLimit, it reverts.      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})      Requires the return value of the called function returns the policyId and checks if the resulting policy      (a PolicyPool NFT), is owned by the CFL.      If it's not, it requires the _msgSender() has permission to call address(this) on      `makeFakeSelector(target, OWN_POLICY_SELECTOR)`\",\"params\":{\"data\":\"The call to execute on the target contract\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"forwardNewPolicyBatch(address,bytes[])\":{\"details\":\"Forwards a call to the target contract, previously checking the target is active and tracking the increased      debt (in the current time slot). Batch version (multiple calls at once).      When the `_balance()` is lower than `targetConfig.minLiquidity` it deinvests, but it doesn't fail if can't      deinvest all the required funds. If the required premiums are higher than the available balance, then it      will fail anyway.      If after the operation the debt is higher than targetConfig.debtLimit, it reverts.      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})      Requires the return value of the called function returns the policyId and checks if the resulting policy      (a PolicyPool NFT), is owned by the CFL.      If it's not, it requires the _msgSender() has permission to call address(this) on      `makeFakeSelector(target, OWN_POLICY_SELECTOR)`\",\"params\":{\"data\":\"[] The calls to execute on the target contract\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"forwardResolvePolicy(address,bytes)\":{\"details\":\"Forwards a call to the target contract, previously checking the target is active (or deprecated). It doesn't      track the debt change explicitly, but this should change when policies are resolved and onPayoutReceived      is called.      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\",\"params\":{\"data\":\"The calls to execute on the target contract\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"forwardResolvePolicyBatch(address,bytes[])\":{\"details\":\"Forwards a call to the target contract, previously checking the target is active (or deprecated). It doesn't      track the debt change explicitly, but this should change when policies are resolved and onPayoutReceived      is called. Batch version (multiple calls at once).      Requires the _msgSender() has permission to call address(this) on the fakeSelector (see {makeFakeSelector})\",\"params\":{\"data\":\"[] The calls to execute on the target contract\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"initialize(string,string,address)\":{\"details\":\"Initializes the CashFlowLender\",\"params\":{\"name_\":\"Name of the accounting token (ERC20) for the LPs\",\"symbol_\":\"Symbol of the accounting token (ERC20) for the LPs\",\"yieldVault_\":\"An ERC-4626 vault where funds can be deployed to generate extra yields for the CFL LPs.\"}},\"isTrustedForwarder(address)\":{\"details\":\"Indicates whether any particular address is the trusted forwarder.\"},\"makeFakeSelector(address,bytes4)\":{\"details\":\"Computes a fake selector used to enable or disable in the AccessManager linked to the contract to enable      a given call (selector) to a given target\",\"params\":{\"selector\":\"The 4-bytes method selector of the method to be called in the target\",\"target\":\"Address of the target contract.\"}},\"maxDeposit(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver, through a deposit call. - MUST return a limited value if receiver is subject to some deposit limit. - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited. - MUST NOT revert.\"},\"maxMint(address)\":{\"details\":\"Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call. - MUST return a limited value if receiver is subject to some mint limit. - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted. - MUST NOT revert.\"},\"maxRedeem(address)\":{\"details\":\"Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault, through a redeem call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock. - MUST NOT revert.\"},\"maxWithdraw(address)\":{\"details\":\"Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the Vault, through a withdraw call. - MUST return a limited value if owner is subject to some withdrawal limit or timelock. - MUST NOT revert.\"},\"mint(uint256,address)\":{\"details\":\"Mints exactly `shares` vault shares to `receiver` in exchange for `assets` underlying tokens. - MUST emit the Deposit event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint   execution, and are accounted for during mint. - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not   approving enough underlying tokens to the Vault contract, etc). NOTE: most implementations will require pre-approval of the Vault with the Vault\\u2019s underlying asset token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} by `operator` from `from`, this function is called. It must return its Solidity selector to confirm the token transfer. If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\"},\"onPayoutReceived(address,address,uint256,uint256)\":{\"details\":\"Whenever an Policy is resolved with payout > 0, this function is called It must return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the payout will be successful. If any other value is returned or it reverts, the policy resolution / payout will be reverted. The selector can be obtained in Solidity with `IPolicyHolder.onPayoutReceived.selector`.\"},\"onPolicyCancelled(address,address,uint256,uint256,uint256,uint256)\":{\"details\":\"Whenever a policy is cancelled, this function is called It must return its Solidity selector to confirm the operation. If interface is not implemented by the recipient, it will be ignored and the cancellation will be successful. If any other value is returned or it reverts, the policy cancellation will be reverted. The selector can be obtained in Solidity with `IPolicyHolder.onPolicyCancelled.selector`.\"},\"onPolicyExpired(address,address,uint256)\":{\"details\":\"Whenever an Policy is expired or resolved with payout = 0, this function is called It should return its Solidity selector to confirm the payout. If interface is not implemented by the recipient, it will be ignored and the payout will be successful. No mather what's the return value or even if this function reverts, this function will not revert the policy expiration. The selector can be obtained in Solidity with `IPolicyHolder.onPolicyExpired.selector`.\"},\"onPolicyReplaced(address,address,uint256,uint256)\":{\"details\":\"Whenever a policy is replaced, this function is called It must return its Solidity selector to confirm the operation. If interface is not implemented by the recipient, it will be ignored and the replacement will be successful. If any other value is returned or it reverts, the policy replacement will be reverted. The selector can be obtained in Solidity with `IPolicyHolder.onPolicyReplaced.selector`.\"},\"previewDeposit(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit   call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called   in the same transaction. - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the   deposit would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"previewMint(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call   in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the   same transaction. - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint   would be accepted, regardless if the user has enough tokens approved, etc. - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by minting.\"},\"previewRedeem(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block, given current on-chain conditions. - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call   in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the   same transaction. - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the   redemption would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by redeeming.\"},\"previewWithdraw(uint256)\":{\"details\":\"Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block, given current on-chain conditions. - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw   call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if   called   in the same transaction. - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though   the withdrawal would be accepted, regardless if the user has enough shares, etc. - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. - MUST NOT revert. NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in share price or some other type of condition, meaning the depositor will lose assets by depositing.\"},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"redeem(uint256,address,address)\":{\"details\":\"Burns exactly shares from owner and sends assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   redeem execution, and are accounted for during redeem. - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"},\"repayDebt(address,uint32,uint32,uint256)\":{\"details\":\"Repays debt to the CFL that's owed by the customer, adjusting the debt (from positive to less positive)      in a given slot      Requires the debt of the slot >= amount      emits {RepayDebt}\",\"params\":{\"amount\":\"Amount to pay\",\"slotIndex\":\"Current slot time selected\",\"slotSize\":\"Duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots.\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"setTargetLimits(address,uint256,uint256)\":{\"details\":\"Changes debtLimit and minLiquidity for a given target.\",\"params\":{\"debtLimit\":\"New limit of the debt in a given period for the target.\",\"minLiquidity\":\"Minimum liquidity tried to achieve before forwardNewPolicy. If cash (see `_balance()`) is                     lower than this amount, it will try to deinvest the funds to leave _balance() = minLiquidity Emits a {TargetLimitsChanged} event\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"setTargetSlotSize(address,uint32)\":{\"details\":\"Changes the slotSize of a given target.\",\"params\":{\"newSlotSize\":\"New duration in seconds of the slots used to track the debt. The debt uses UTC aligned slots. Emits a {TargetStatusChanged} event\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"setTargetStatus(address,uint8)\":{\"details\":\"Changes status of a given target. See {TargetStatus}.\",\"params\":{\"newStatus\":\"The new status of the contract Emits a {TargetStatusChanged} event\",\"target\":\"Address of the target contract. It must be one previously added with {addTarget}.\"}},\"setYieldVault(address,bool)\":{\"details\":\"Changes the Yield Vault, deinvesting all the funds before doing it.\",\"params\":{\"force\":\"If true, it continues the operation even if some of the funds aren't withdrawable. Emits a {YieldVaultChanged} event\",\"yieldVault_\":\"An ERC-4626 vault where funds can be deployed to generate extra yields for the CFL LPs.\"}},\"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.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalAssets()\":{\"details\":\"Returns the total amount of the underlying asset that is \\u201cmanaged\\u201d by Vault. - SHOULD include any compounding that occurs from yield. - MUST be inclusive of any fees that are charged against assets in the Vault. - MUST NOT revert.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"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.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"},\"withdraw(uint256,address,address)\":{\"details\":\"Burns shares from owner and sends exactly assets of underlying tokens to receiver. - MUST emit the Withdraw event. - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the   withdraw execution, and are accounted for during withdraw. - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner   not having enough shares, etc). Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed. Those methods should be performed separately.\"},\"withdrawFromYieldVault(uint256)\":{\"details\":\"Deinvest from the vault a given amount.      Requires $._yieldVault.maxWithdraw() <= amount\",\"params\":{\"amount\":\"Amount to withdraw from the `$._yieldVault`. If equal type(uint256).max, deinvests maxWithdraw()\"}}},\"stateVariables\":{\"SLOTSIZE_CALENDAR_MONTH\":{\"details\":\"Slot size used to indicate the slots use calendar months.      Only years from 2025 to 2099 are supported\"},\"_policyPool\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"}},\"title\":\"CashFlow Lender Module that tracks ownership\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/CashFlowLender.sol\":\"CashFlowLender\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/access-managed-proxy/contracts/AMPUtils.sol\":{\"keccak256\":\"0x3f25097d759aa89ce9a7a94f98b854a3dc23c51f7f895b95a8d489e74d5f1d98\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://2912cf8c79b973d07fbb741e7d1048026f0a71489df2adf97552b83b23b427d7\",\"dweb:/ipfs/QmRTfFaqy72p4RfY99hKM1K9wH5kxaTnikH5VJjpL7K7sD\"]},\"@ensuro/access-managed-proxy/contracts/AccessManagedProxy.sol\":{\"keccak256\":\"0x0d3a66feed9000ccbc8a8e6c597b7fe4659f56b5a4dfa2ab1eea314171ae9745\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fa3f292954915546ce72159da1dbcd44b8cdc19ea0b5b3fc6dbb47070451583c\",\"dweb:/ipfs/QmeL7krtsKLpuS9hy5w6eRoRsXU874XtgNWutUavxRKzmA\"]},\"@ensuro/access-managed-proxy/contracts/AccessManagedProxyBase.sol\":{\"keccak256\":\"0xe84ff4706a5ae4c03f011343dfb73ce8b731e1eb2287d25018a449b3e802092e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://53202b0391daa08f69fda5c471f957f9811dba1d2033e5e3e3a7a78c1d05eb39\",\"dweb:/ipfs/QmabycaktcAsVJFEdf7F4Lk1WsAz9qesqQARLwjYvM722m\"]},\"@ensuro/access-managed-proxy/contracts/interfaces/IAccessManagedProxy.sol\":{\"keccak256\":\"0xdd762bad2f6ad362f5a38fb333d2a953f6c9d0beea122dbaef0e333a7b83a054\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://a2bb86de08187cee5956393ca2cf096a09eb6ac694471e436ca12e377d97cb40\",\"dweb:/ipfs/Qmf6cNjug4swjsvTJYjbzhMMfAfSFdUuyJjkEf3b1cu2hn\"]},\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@ensuro/core/contracts/interfaces/IPolicyHolder.sol\":{\"keccak256\":\"0xedfdb90379573eaab3213424a517042dd7f015cdb4ee734859609a019275797e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://321e424f1c9afd92e0cb38e4131ce30aaf7df551388b6d1d1abe60ea9dcd0e8a\",\"dweb:/ipfs/QmfFraGLbyy67ugA373JcZfPf7J34uzMHXbyBjoH9enWsK\"]},\"@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol\":{\"keccak256\":\"0x98d2543d4c386c70cd2d6ac763e6425631f76a944113cf594f90c59357b41cb1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4fa767e1bf957ac88a7477b1710e9f788b815d0ad412e89d3e791d8629549edc\",\"dweb:/ipfs/QmdnDDZy64QjzXXLrjC5zjDTMCHrJo3c4RGmnEpZLKWhhw\"]},\"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x4918e374e9ce84e9b196486bafbd46851d5e72ab315e31f0b1d7c443dcfea5bf\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2ced247afc54a93a13922ebbd63add61130abe483ab5b5b78e7e991d564d150e\",\"dweb:/ipfs/QmTfxjcTgfekiguegjvYMyfqhyRNffui17f8xi86BCZNVt\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol\":{\"keccak256\":\"0xd518def45c722a6e803e1e26e625db25e01497f672ca566cca585d234ec903b0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6e7de3fccd96783244790cde282435ce0fd3a44ab4ccb10f17005c743202882f\",\"dweb:/ipfs/QmYSepstTqs5UPJvjeJXkWU5R659yReqrSgSGGh65hkbdK\"]},\"@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC4626Upgradeable.sol\":{\"keccak256\":\"0x9a451617fef51e7faef5f46de537f9aaca837d470750cfbd7b8a733341dc3951\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1cdebfebb9bbfe1558d15eab9cf8bd1bd5ad8bb934f6a3d9ea8ef022603c1d59\",\"dweb:/ipfs/QmT83ko5MwSdEJsHz8cQbQGBDyM1q9PvzGm9RFmXfWXMgA\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xad316bdc3ee64a0e29773256245045dc57b92660799ff14f668f7c0da9456a9d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://66463434d266816fca2a3a2734ceee88544e61b7cc3899c50333b46e8e771455\",\"dweb:/ipfs/QmPYCzHjki1HQLvBub3uUqoUKGrwdgR3xP9Zpya14YTdXS\"]},\"@openzeppelin/contracts/access/manager/IAccessManager.sol\":{\"keccak256\":\"0x71e3e350e83af0018a1683cc2ce4c13893cc01f78e5c9c305f6828608ffcfa18\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0a7b521c9999007715c9bdedffaad2ef7d2ccfa07bca2a39ba9e0c2e8a944a63\",\"dweb:/ipfs/QmamPG6Y1p7iZh4cF8Hfp3oufowSRyB3S3DisTKkmVWSai\"]},\"@openzeppelin/contracts/interfaces/IERC1363.sol\":{\"keccak256\":\"0xd5ea07362ab630a6a3dee4285a74cf2377044ca2e4be472755ad64d7c5d4b69d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da5e832b40fc5c3145d3781e2e5fa60ac2052c9d08af7e300dc8ab80c4343100\",\"dweb:/ipfs/QmTzf7N5ZUdh5raqtzbM11yexiUoLC9z3Ws632MCuycq1d\"]},\"@openzeppelin/contracts/interfaces/IERC165.sol\":{\"keccak256\":\"0x0afcb7e740d1537b252cb2676f600465ce6938398569f09ba1b9ca240dde2dfc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1c299900ac4ec268d4570ecef0d697a3013cd11a6eb74e295ee3fbc945056037\",\"dweb:/ipfs/Qmab9owJoxcA7vJT5XNayCMaUR1qxqj1NDzzisduwaJMcZ\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xbf2aefe54b76d7f7bcd4f6da1080b7b1662611937d870b880db584d09cea56b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f5e7e2f12e0feec75296e57f51f82fdaa8bd1551f4b8cc6560442c0bf60f818c\",\"dweb:/ipfs/QmcW9wDMaQ8RbQibMarfp17a3bABzY5KraWe2YDwuUrUoz\"]},\"@openzeppelin/contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0x1a6221315ce0307746c2c4827c125d821ee796c74a676787762f4778671d4f44\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1bb2332a7ee26dd0b0de9b7fe266749f54820c99ab6a3bcb6f7e6b751d47ee2d\",\"dweb:/ipfs/QmcRWpaBeCYkhy68PR3B4AgD7asuQk7PwkWxrvJbZcikLF\"]},\"@openzeppelin/contracts/interfaces/IERC20Metadata.sol\":{\"keccak256\":\"0xd735962e3d6660884153ba8a972b5f100dde4c482f2ff1c525ba7fdefb154cbd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a264d17b093f585844b0d977e9f60555b8c8d6513b304fde863cdf652a0d336\",\"dweb:/ipfs/QmWXfaJisjVnrjTUjZGryZpMob9wKivvtbodLS3PTc1ttq\"]},\"@openzeppelin/contracts/interfaces/IERC4626.sol\":{\"keccak256\":\"0xece5cbf726293ae6be1fbfade2936f052e1b399ed395ba1e221540ab82b62628\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a9b97e58e90799e681dccbd4a8e469c6ebc2baf11312ad08f14332646123dd4b\",\"dweb:/ipfs/QmdamCQfxcuYinSNd3Et7VNo3oY98XSv4XCUQyq9xfMNUy\"]},\"@openzeppelin/contracts/interfaces/IERC721.sol\":{\"keccak256\":\"0xca34c490d41c332106d30b657f00dc028532cb6b9fef2b1729670ce476b36bce\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ef5e7685d50ed8aae2104a7eb2c31ae5a3b508f24fadfa7611f92f819201aee9\",\"dweb:/ipfs/QmYbTD32FPrEfP1hkniQmRxVUWp8GTSqFV1Bhwx1HVirse\"]},\"@openzeppelin/contracts/interfaces/IERC721Receiver.sol\":{\"keccak256\":\"0xfc922a810763205fd582dd5a6548ac5f41f8d0c8e8c1fbf48b01dc08d99f74af\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://03b9b7719252b914d6011d919ddb176e99021cab45bee58f9a175f53bd2e952b\",\"dweb:/ipfs/QmTQLufNv8sFmnjbRqXueCQrLSrwzDvEHNXmwTyu3EVaWS\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0x82f757819bf2429a0d4db141b99a4bbe5039e4ef86dfb94e2e6d40577ed5b28b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://37c30ed931e19fb71fdb806bb504cfdb9913b7127545001b64d4487783374422\",\"dweb:/ipfs/QmUBHpv4hm3ZmwJ4GH8BeVzK4mv41Q6vBbWXxn8HExPXza\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x1b88b3fb3d85ba5496d7d5f396f83ee1fddcdd6762059ff65992655b67920998\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://89393bb3212da1c0889601b9706a07b39419ddc4d2faab9eaf6e7f9152cf6a1c\",\"dweb:/ipfs/QmcCfzzxv1Bkdz1c1yF4gQCeYb6Us5BJANnzTFqawfd1HL\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol\":{\"keccak256\":\"0xa3066ff86b94128a9d3956a63a0511fa1aae41bd455772ab587b32ff322acb2e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bf7b192fd82acf6187970c80548f624b1b9c80425b62fa49e7fdb538a52de049\",\"dweb:/ipfs/QmWXG1YCde1tqDYTbNwjkZDWVgPEjzaQGSDqWkyKLzaNua\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0xa1ad192cd45317c788618bef5cb1fb3ca4ce8b230f6433ac68cc1d850fb81618\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b43447bb85a53679d269a403c693b9d88d6c74177dfb35eddca63abaf7cf110a\",\"dweb:/ipfs/QmXSDmpd4bNZj1PDgegr6C4w1jDaWHXCconC3rYiw9TSkQ\"]},\"@openzeppelin/contracts/proxy/Proxy.sol\":{\"keccak256\":\"0x80935e4fae2c414f4e7789e13a820d06901182a5733ab006f8d68b5b09db993f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://752d991d6ca1087587b48103bc623f74888054f58581ff29166d90889c4765c5\",\"dweb:/ipfs/QmRBsa6K2ChKxVWYY54YiyYhDBPbmY5HyKCtij5LoWh56o\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0x20462ddb2665e9521372c76b001d0ce196e59dbbd989de9af5576cad0bd5628b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f417fd12aeec8fbfaceaa30e3a08a0724c0bc39de363e2acf6773c897abbaf6d\",\"dweb:/ipfs/QmU4Hko6sApdweVM92CsiuLKkCk8HfyBeutF89PCTz5Tye\"]},\"@openzeppelin/contracts/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0x1a26353563a2c63b4120ea0b94727253eeff84fe2241d42c1452308b9080e66a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://49a95e36d267828b4357186a79917002d616d8634e25d1f9818e2354cd2e7d34\",\"dweb:/ipfs/QmWDkqE4KkyLAS2UkLsRgXE1FGB1qfEgBC3zMXBVsVWfdk\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"keccak256\":\"0x304d732678032a9781ae85c8f204c8fba3d3a5e31c02616964e75cfdc5049098\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://299ced486011781dc98f638059678323c03079fefae1482abaa2135b22fa92d0\",\"dweb:/ipfs/QmbZNbcPTBxNvwChavN2kkZZs7xHhYL7mv51KrxMhsMs3j\"]},\"@openzeppelin/contracts/token/ERC721/IERC721.sol\":{\"keccak256\":\"0xf78f05f3b8c9f75570e85300d7b4600d7f6f6a198449273f31d44c1641adb46f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e28b872613b45e0e801d4995aa4380be2531147bfe2d85c1d6275f1de514fba3\",\"dweb:/ipfs/QmeeFcfShHYaS3BdgVj78nxR28ZaVUwbvr66ud8bT6kzw9\"]},\"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0x88cd5e3bee2e8c36b8d9058fbcaa81ad5704281b25634122234b55ea853d8055\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8dc7e7ab5b8ea36c15027ab04221b05d1c970f47a53e9fd47ead8ca665d49c7e\",\"dweb:/ipfs/Qmeeph7fsDyfRr8vb2L8KcDEmKPb224TAayMvgqgGAnqpL\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x0fa9e0d3a859900b5a46f70a03c73adf259603d5e05027a37fe0b45529d85346\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c2add4da0240c9f2ce47649c8bb6b11b40e98cf6f88b8bdc76b2704e89391710\",\"dweb:/ipfs/QmNQTwF2uVzu4CRtNxr8bxyP9XuW6VsZuo2Nr4KR2bZr3d\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/LowLevelCall.sol\":{\"keccak256\":\"0x5b4802a4352474792df3107e961d1cc593e47b820c14f69d3505cb28f5a6a583\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a6f86fd01f829499fe0545ff5dda07d4521988e88bfe0bf801fc15650921ed56\",\"dweb:/ipfs/QmUUKu4ZDffHAmfkf3asuQfmLTyfpuy2Amdncc3SqfzKPG\"]},\"@openzeppelin/contracts/utils/Memory.sol\":{\"keccak256\":\"0x35feec480590c0ed9c1623df077ba9af406ad57cd9d149ff278c7316d6fe8fe0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://839967d079db4cd624c3f735a6e911953c0e2347418c016f6a0cc18ed1aa9603\",\"dweb:/ipfs/QmaWxNL8Ymkwerfvq1LNzpbq2PMzTGsnXzqsYExNyvKWka\"]},\"@openzeppelin/contracts/utils/Packing.sol\":{\"keccak256\":\"0xea9f5d3cdd11b7af7d8662a5c0e952f3666145cb4c9fe1452bd15c30abc462dd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8fcae95be7077d103530c4e6a5f1248aa64102dad62d642e2530316ab002e02c\",\"dweb:/ipfs/QmWCr2qicfaqsTbpgq7CJhedUHcPQv34k8HNs4f5kGjVnw\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0x2d9dc2fe26180f74c11c13663647d38e259e45f95eb88f57b61d2160b0109d3e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81233d1f98060113d9922180bb0f14f8335856fe9f339134b09335e9f678c377\",\"dweb:/ipfs/QmWh6R35SarhAn4z2wH8SU456jJSYL2FgucfTFgbHJJN4E\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/CashFlowLender.sol\":{\"keccak256\":\"0xa99d192203ec1836e089dbb5ccc8a7771bfa7e1250516c9f7336c5eeb2eb66f7\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://d35bc7b55b5199d159f03738a40e340e72d1f94f614dbb0605d88c0800ec5e40\",\"dweb:/ipfs/QmTPoNwGPAE89PKvju4E3PqUcaow3af16saJ4CWgVNNp8P\"]},\"contracts/dependencies/IPolicyPool.sol\":{\"keccak256\":\"0x2cd6afa72791cac7be2cd930ebadec4e906207076960778e59a1160f66a91a0e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe5b8ee24484498806a9b5034ba0b7c33668bb1f52fbb72fc5831b2e71836a86\",\"dweb:/ipfs/QmUmxGeCGZWp1zWFLYGrjychqxzCrLY18MhRkKvviVa3BE\"]},\"contracts/dependencies/IRiskModule.sol\":{\"keccak256\":\"0xfd842143b254f4d57b27cffb2feac152c6105d8f77e12f3c4fddea9b15f53723\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://2f1791f937baa7591ba32c320db08c285efde638b489f6f8a1f65e06dde6eceb\",\"dweb:/ipfs/QmYfCJ6FXa3bBFxiYmevN1SnBaqbcF8Gnp5wCuVfHRS4vQ\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/dependencies/IPolicyPool.sol":{"IPolicyPool":{"abi":[{"inputs":[],"name":"currency","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"currency()":"e5a6b10f"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"currency\",\"outputs\":[{\"internalType\":\"contract IERC20Metadata\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Minimalistic version of the IPolicyPool interface, just the methods needed for this project\",\"kind\":\"dev\",\"methods\":{\"currency()\":{\"details\":\"Reference to the main currency (ERC20) used in the protocol\",\"returns\":{\"_0\":\"The address of the currency (e.g. USDC) token used in the protocol\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/dependencies/IPolicyPool.sol\":\"IPolicyPool\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"contracts/dependencies/IPolicyPool.sol\":{\"keccak256\":\"0x2cd6afa72791cac7be2cd930ebadec4e906207076960778e59a1160f66a91a0e\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://fe5b8ee24484498806a9b5034ba0b7c33668bb1f52fbb72fc5831b2e71836a86\",\"dweb:/ipfs/QmUmxGeCGZWp1zWFLYGrjychqxzCrLY18MhRkKvviVa3BE\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}},"contracts/dependencies/IRiskModule.sol":{"IRiskModule":{"abi":[{"inputs":[{"internalType":"bytes[]","name":"inputData","type":"bytes[]"},{"internalType":"address","name":"onBehalfOf","type":"address"}],"name":"newPolicies","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"inputData","type":"bytes"},{"internalType":"address","name":"onBehalfOf","type":"address"}],"name":"newPolicy","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"jrScr","type":"uint256"},{"internalType":"uint256","name":"srScr","type":"uint256"},{"internalType":"uint256","name":"lossProb","type":"uint256"},{"internalType":"uint256","name":"purePremium","type":"uint256"},{"internalType":"uint256","name":"ensuroCommission","type":"uint256"},{"internalType":"uint256","name":"partnerCommission","type":"uint256"},{"internalType":"uint256","name":"jrCoc","type":"uint256"},{"internalType":"uint256","name":"srCoc","type":"uint256"},{"internalType":"uint40","name":"start","type":"uint40"},{"internalType":"uint40","name":"expiration","type":"uint40"}],"internalType":"struct Policy.PolicyData","name":"policy","type":"tuple"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"newPolicies(bytes[],address)":"1f0f3e18","newPolicy(bytes,address)":"8dab1952"}},"metadata":"{\"compiler\":{\"version\":\"0.8.30+commit.73712a01\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"inputData\",\"type\":\"bytes[]\"},{\"internalType\":\"address\",\"name\":\"onBehalfOf\",\"type\":\"address\"}],\"name\":\"newPolicies\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"inputData\",\"type\":\"bytes\"},{\"internalType\":\"address\",\"name\":\"onBehalfOf\",\"type\":\"address\"}],\"name\":\"newPolicy\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"payout\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srScr\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lossProb\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"purePremium\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"ensuroCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"partnerCommission\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"jrCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"srCoc\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"start\",\"type\":\"uint40\"},{\"internalType\":\"uint40\",\"name\":\"expiration\",\"type\":\"uint40\"}],\"internalType\":\"struct Policy.PolicyData\",\"name\":\"policy\",\"type\":\"tuple\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Minimalistic version of the IRiskModule interface, just the methods needed for this project\",\"kind\":\"dev\",\"methods\":{\"newPolicies(bytes[],address)\":{\"details\":\"Creates several policies, the premium is paid by msg.sender\",\"params\":{\"inputData\":\"Input data that will be decoded by the _underwriter to construct the parameters for the                  new policy.\",\"onBehalfOf\":\"The address that will be the owner of the created policy (same for all the policies)\"}},\"newPolicy(bytes,address)\":{\"details\":\"Creates a new policy. The premium will paid by msg.sender\",\"params\":{\"inputData\":\"Input data that will be decoded by the _underwriter to construct the parameters for the                  new policy.\",\"onBehalfOf\":\"The address that will be the owner of the created policy\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/dependencies/IRiskModule.sol\":\"IRiskModule\"},\"evmVersion\":\"prague\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@ensuro/core/contracts/Policy.sol\":{\"keccak256\":\"0x9592f1cf77f0d4ea45c9200ec16afde47c337ac0277336272559ce97bc47c640\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://4d987357c546402a0af01a4f11314994c03a450651863b05f028712649c71bd3\",\"dweb:/ipfs/QmefEuPvLs4Gt8RBttH7TD5HmEwV2uLo5JgXDjnYETEemD\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x09e3f1c72d4c5cbe8e2644ab7313f8f7177533ae2f4c24cdcbbeaf520a73734c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://93208401215d539fa2d81626b207c1f611def7883d0e447b3b5969ebaa7b3c2c\",\"dweb:/ipfs/QmXPxDnQPx8LAweX5ZJqEcwkvs59kP4c64VVDG1Jjq1mef\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"contracts/dependencies/IRiskModule.sol\":{\"keccak256\":\"0xfd842143b254f4d57b27cffb2feac152c6105d8f77e12f3c4fddea9b15f53723\",\"license\":\"Apache-2.0\",\"urls\":[\"bzz-raw://2f1791f937baa7591ba32c320db08c285efde638b489f6f8a1f65e06dde6eceb\",\"dweb:/ipfs/QmYfCJ6FXa3bBFxiYmevN1SnBaqbcF8Gnp5wCuVfHRS4vQ\"]}},\"version\":1}","storageLayout":{"storage":[],"types":null}}}}}}